From 652631c34d55fe905e46191055161e0a777393af Mon Sep 17 00:00:00 2001 From: Victor <162306106+valber-ledger@users.noreply.github.com> Date: Wed, 5 Jun 2024 10:26:57 +0200 Subject: [PATCH] Test: Improving speculos Tests + adding new currencies (#6984) * test: fix countAccounts function + typescript issues * test: updating the app.JSON * test: changing app.json name * test: removing 1 ETH send + update on account.page --- .changeset/warm-pens-fold.md | 5 + .../ledger-live-desktop/tests/enum/Account.ts | 71 + .../tests/enum/Currency.ts | 47 + .../tests/enum/DeviceLabels.ts | 7 + .../tests/page/account.page.ts | 8 + .../tests/page/accounts.page.ts | 7 +- .../tests/page/portfolio.page.ts | 2 +- .../tests/page/speculos.page.ts | 8 +- .../tests/specs/speculos/add.account.spec.ts | 10 +- .../specs/speculos/delete.account.spec.ts | 13 +- .../tests/specs/speculos/erc20.spec.ts | 2 +- .../specs/speculos/receive.address.spec.ts | 14 +- .../tests/specs/speculos/send.tx.spec.ts | 10 +- .../tests/userdata/speculos-tests-app.json | 61440 ++++++++++++++++ .../tests/userdata/speculos.json | 25205 ------- .../tests/utils/speculos.ts | 45 + 16 files changed, 61658 insertions(+), 25236 deletions(-) create mode 100644 .changeset/warm-pens-fold.md create mode 100644 apps/ledger-live-desktop/tests/userdata/speculos-tests-app.json delete mode 100644 apps/ledger-live-desktop/tests/userdata/speculos.json diff --git a/.changeset/warm-pens-fold.md b/.changeset/warm-pens-fold.md new file mode 100644 index 000000000000..9b6bd71298ca --- /dev/null +++ b/.changeset/warm-pens-fold.md @@ -0,0 +1,5 @@ +--- +"ledger-live-desktop": minor +--- + +improving speculos tests: adding new checks + new currencies diff --git a/apps/ledger-live-desktop/tests/enum/Account.ts b/apps/ledger-live-desktop/tests/enum/Account.ts index 358b3dca8fbe..0e8e3122e7ca 100644 --- a/apps/ledger-live-desktop/tests/enum/Account.ts +++ b/apps/ledger-live-desktop/tests/enum/Account.ts @@ -98,4 +98,75 @@ export class Account { static readonly XRP_1 = new Account(Currency.XRP, "XRP 1", "rhQvt8XfAGn1hVVtMUmdGKBUdnKzi2oimV"); static readonly XRP_2 = new Account(Currency.XRP, "XRP 2", "r36cgyrfC1xSQMvjuiSeFJEcBTq31imZS"); + + static readonly ADA_1 = new Account( + Currency.ADA, + "Cardano 1", + " addr1q9q9q55zyew785z6c2lnrhnzghy038r6mepmqn6v28kupk5ug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ews8d5td8", + ); + static readonly ADA_2 = new Account( + Currency.ADA, + "Cardano 2", + "addr1qyjd47qfktpza4ycjddjadaarzwdumwrqws0xage8gvsmrq5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2qwzv6ac", + ); + + static readonly ALGO_1 = new Account( + Currency.ALGO, + "Algorand 1", + "HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU", + ); + + static readonly ALGO_2 = new Account( + Currency.ALGO, + "Algorand 2", + "6TFDU3BYQ2FO32SOYQDTHDW5XKGEYH4FCT34ZQRHFPJRVMLEQWOO2OEUU4", + ); + + static readonly XLM_1 = new Account( + Currency.XLM, + "Stellar 1", + "GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX", + ); + + static readonly XLM_2 = new Account( + Currency.XLM, + "Stellar 2", + "GCTGRCFN7AT6NW4DZVI4QN55BRNQA64TXEZSMYPE7BNUZMLMVISXT652", + ); + + static readonly BCH_1 = new Account( + Currency.BCH, + "Bitcoin Cash 1", + "qz82kem69vdafku8xf4zpt9p5ytj8umwpujj7wjcv6", + ); + + static readonly BCH_2 = new Account( + Currency.BCH, + "Bitcoin Cash 2", + "qp2ka732e6h82djvr5ge4vtru0cl3g8lxqtyfmzzl9", + ); + + static readonly ATOM_1 = new Account( + Currency.ATOM, + "Cosmos 1", + "cosmos18sdl4lvyjtvpjkkt5smglux9sf4phdcpaddfae", + ); + + static readonly ATOM_2 = new Account( + Currency.ATOM, + "Cosmos 2", + "cosmos12d854g9mut943gu5ncyhalapukttkddnvlxaq6", + ); + + static readonly XTZ_1 = new Account( + Currency.XTZ, + "Tezos 1", + "tz1UD2zz5eFTW2Jy26kBnC3ZkdeazUgeFWST", + ); + + static readonly XTZ_2 = new Account( + Currency.XTZ, + "Tezos 2", + "tz1g3uEPZ9T3AhUZDTbGW9V43JRfizJmSnPv", + ); } diff --git a/apps/ledger-live-desktop/tests/enum/Currency.ts b/apps/ledger-live-desktop/tests/enum/Currency.ts index 15480c65e6b3..ee556db3918b 100644 --- a/apps/ledger-live-desktop/tests/enum/Currency.ts +++ b/apps/ledger-live-desktop/tests/enum/Currency.ts @@ -84,4 +84,51 @@ export class Currency { [DeviceLabels.AMOUT, DeviceLabels.DESTINATION, DeviceLabels.SIGN, DeviceLabels.REJECT], [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], ); + static readonly ADA = new Currency( + "Cardano", + "ADA", + "Cardano", + [DeviceLabels.SEND, DeviceLabels.SEND_TO_ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], + [DeviceLabels.ADDRESS, DeviceLabels.CONFIRM, DeviceLabels.REJECT], + ); + static readonly XLM = new Currency( + "Stellar", + "XLM", + "Stellar", + [DeviceLabels.SEND, DeviceLabels.DESTINATION, DeviceLabels.FINALIZE, DeviceLabels.CANCEL], + [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], + ); + static readonly BCH = new Currency( + "Bitcoin Cash", + "BCH", + "Bitcoin Cash", + [DeviceLabels.AMOUT, DeviceLabels.ADDRESS, DeviceLabels.ACCEPT, DeviceLabels.REJECT], + [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], + ); + static readonly ALGO = new Currency( + "Algorand", + "ALGO", + "Algorand", + [ + DeviceLabels.AMOUT, + DeviceLabels.RECEIVER, + DeviceLabels.CAPS_APPROVE, + DeviceLabels.CAPS_REJECT, + ], + [DeviceLabels.ADDRESS, DeviceLabels.CAPS_APPROVE, DeviceLabels.CAPS_REJECT], + ); + static readonly ATOM = new Currency( + "Cosmos", + "ATOM", + "Cosmos", + [DeviceLabels.AMOUT, DeviceLabels.TO, DeviceLabels.CAPS_APPROVE, DeviceLabels.CAPS_REJECT], + [DeviceLabels.ADDRESS, DeviceLabels.CAPS_APPROVE, DeviceLabels.CAPS_REJECT], + ); + static readonly XTZ = new Currency( + "Tezos", + "XTZ", + "Tezos", + [DeviceLabels.AMOUT, DeviceLabels.DESTINATION, DeviceLabels.ACCEPT, DeviceLabels.REJECT], + [DeviceLabels.PUBLICKEY, DeviceLabels.ACCEPT, DeviceLabels.REJECT], + ); } diff --git a/apps/ledger-live-desktop/tests/enum/DeviceLabels.ts b/apps/ledger-live-desktop/tests/enum/DeviceLabels.ts index f81845d094d8..093d94e84c19 100644 --- a/apps/ledger-live-desktop/tests/enum/DeviceLabels.ts +++ b/apps/ledger-live-desktop/tests/enum/DeviceLabels.ts @@ -16,4 +16,11 @@ export enum DeviceLabels { CANCEL = "Cancel", ACCOUNT = "Account", DESTINATION = "Destination", + CONFIRM = "Confirm", + PUBLICKEY = "Public Key Hash", + SEND_TO_ADDRESS = "Send to address", + SEND = "Send", + TRANSACTION_FEE = "Transaction fee", + FINALIZE = "Finalize", + RECEIVER = "Receiver", } diff --git a/apps/ledger-live-desktop/tests/page/account.page.ts b/apps/ledger-live-desktop/tests/page/account.page.ts index ac63f9b72abe..97278873fd61 100644 --- a/apps/ledger-live-desktop/tests/page/account.page.ts +++ b/apps/ledger-live-desktop/tests/page/account.page.ts @@ -19,6 +19,8 @@ export class AccountPage extends AppPage { private lastOperation = this.page.locator("text=Latest operations"); private tokenValue = (tokenName: string) => this.page.locator(`data-test-id=account-row-${tokenName.toLowerCase()}`); + private accountBalance = this.page.locator("data-test-id=total-balance"); + private operationList = this.page.locator("id=operation-list"); @step("Navigate to token $0") async navigateToToken(token: string) { @@ -83,9 +85,15 @@ export class AccountPage extends AppPage { await this.settingsButton.waitFor({ state: "visible" }); } + @step("Expect account to be not null") + async expectAccountBalance() { + expect(this.accountBalance).toBeTruthy(); + } + @step("Expect `Last operations` to be visible") async expectLastOperationsVisibility() { await this.scrollToOperations(); await expect(this.lastOperation).toBeVisible(); + await expect(this.operationList).not.toBeEmpty(); } } diff --git a/apps/ledger-live-desktop/tests/page/accounts.page.ts b/apps/ledger-live-desktop/tests/page/accounts.page.ts index 55c470c5818d..311830edd908 100644 --- a/apps/ledger-live-desktop/tests/page/accounts.page.ts +++ b/apps/ledger-live-desktop/tests/page/accounts.page.ts @@ -46,8 +46,11 @@ export class AccountsPage extends AppPage { const accountElements = await this.accountListNumber.all(); const accountNames = []; for (const element of accountElements) { - const accountName = await element.getAttribute("data-test-id"); - accountNames.push(accountName); + let accountName = await element.getAttribute("data-test-id"); + if (accountName) { + accountName = accountName.replace("account-component-", ""); + accountNames.push(accountName); + } } return accountNames; } diff --git a/apps/ledger-live-desktop/tests/page/portfolio.page.ts b/apps/ledger-live-desktop/tests/page/portfolio.page.ts index d6287a2a56ac..c15bd7a6a11b 100644 --- a/apps/ledger-live-desktop/tests/page/portfolio.page.ts +++ b/apps/ledger-live-desktop/tests/page/portfolio.page.ts @@ -8,7 +8,7 @@ export class PortfolioPage extends AppPage { ); private buySellEntryButton = this.page.locator("data-test-id=buy-sell-entry-button"); private stakeEntryButton = this.page.locator("data-test-id=stake-entry-button"); - private showAllButton = this.page.locator("text=Show all"); + private showAllButton = this.page.getByText("Show all"); private assetRow = (currency: string) => this.page.locator(`data-test-id=asset-row-${currency.toLowerCase()}`); diff --git a/apps/ledger-live-desktop/tests/page/speculos.page.ts b/apps/ledger-live-desktop/tests/page/speculos.page.ts index c5a681150fa9..a2fa47fdd0e1 100644 --- a/apps/ledger-live-desktop/tests/page/speculos.page.ts +++ b/apps/ledger-live-desktop/tests/page/speculos.page.ts @@ -3,7 +3,7 @@ import { step } from "tests/misc/reporters/step"; import { pressBoth, pressRightUntil, - verifyAddress, + verifyAddress as assertAddressesEquality, verifyAmount, waitFor, } from "tests/utils/speculos"; @@ -17,8 +17,8 @@ export class SpeculosPage extends AppPage { @step("Verify receive address correctness $0") async expectValidReceiveAddress(account: Account) { await waitFor(account.currency.receivePattern[0]); - const addressScreen = await pressRightUntil(account.currency.receivePattern[0]); - expect(verifyAddress(account.address, addressScreen)).toBe(true); + const actualAddress = await pressRightUntil(account.currency.receivePattern[0]); + expect(assertAddressesEquality(account.address, actualAddress)).toBe(true); await pressRightUntil(account.currency.receivePattern[1]); await pressBoth(); } @@ -28,7 +28,7 @@ export class SpeculosPage extends AppPage { const amountScreen = await pressRightUntil(DeviceLabels.AMOUT); expect(verifyAmount(tx.amount, amountScreen)).toBe(true); const addressScreen = await pressRightUntil(DeviceLabels.ADDRESS); - expect(verifyAddress(tx.recipient, addressScreen)).toBe(true); + expect(assertAddressesEquality(tx.recipient, addressScreen)).toBe(true); await pressRightUntil(tx.accountToDebit.currency.sendPattern[2]); await pressBoth(); if (tx.accountToDebit.currency.uiName === Currency.tBTC.uiName) { diff --git a/apps/ledger-live-desktop/tests/specs/speculos/add.account.spec.ts b/apps/ledger-live-desktop/tests/specs/speculos/add.account.spec.ts index 3212b7ab345f..b4e43732e53f 100644 --- a/apps/ledger-live-desktop/tests/specs/speculos/add.account.spec.ts +++ b/apps/ledger-live-desktop/tests/specs/speculos/add.account.spec.ts @@ -5,13 +5,16 @@ import { Application } from "tests/page"; const currencies: Currency[] = [ Currency.BTC, - Currency.tBTC, Currency.ETH, - Currency.tETH, - Currency.sepETH, Currency.XRP, Currency.DOT, Currency.TRX, + Currency.ADA, + //Currency.XLM, //TODO: Reactivate when Date.Parse issue is fixed - desactivate time machine for Speculos tests + Currency.BCH, + Currency.ALGO, + Currency.ATOM, + Currency.XTZ, ]; for (const [i, currency] of currencies.entries()) { @@ -45,6 +48,7 @@ for (const [i, currency] of currencies.entries()) { await app.layout.goToAccounts(); await app.accounts.navigateToAccountByName(firstAccountName); await app.account.expectAccountVisibility(firstAccountName); + await app.account.expectAccountBalance(); await app.account.expectLastOperationsVisibility(); }); }); diff --git a/apps/ledger-live-desktop/tests/specs/speculos/delete.account.spec.ts b/apps/ledger-live-desktop/tests/specs/speculos/delete.account.spec.ts index 022a6e0c8cf9..bc257e952324 100644 --- a/apps/ledger-live-desktop/tests/specs/speculos/delete.account.spec.ts +++ b/apps/ledger-live-desktop/tests/specs/speculos/delete.account.spec.ts @@ -5,20 +5,23 @@ import { Application } from "tests/page"; const accounts: Account[] = [ Account.BTC_1, - Account.tBTC_1, Account.ETH_1, - Account.tETH_1, - Account.sep_ETH_1, Account.SOL_1, Account.TRX_1, Account.DOT_1, Account.XRP_1, + Account.ADA_1, + Account.ALGO_1, + Account.XLM_1, + Account.BCH_1, + Account.ATOM_1, + Account.XTZ_1, ]; for (const [i, account] of accounts.entries()) { test.describe.parallel("Accounts @smoke", () => { test.use({ - userdata: "speculos", + userdata: "speculos-tests-app", testName: `deleteAccount_${account.currency.uiName}`, speculosCurrency: specs[account.currency.deviceLabel.replace(/ /g, "_")], speculosOffset: i, @@ -26,7 +29,7 @@ for (const [i, account] of accounts.entries()) { //@TmsLink("B2CQA-320") - test(`[${account.currency.uiName}] Receive`, async ({ page }) => { + test(`[${account.currency.uiName}] Delete Account`, async ({ page }) => { const app = new Application(page); await app.layout.goToAccounts(); diff --git a/apps/ledger-live-desktop/tests/specs/speculos/erc20.spec.ts b/apps/ledger-live-desktop/tests/specs/speculos/erc20.spec.ts index 7fc470e651eb..364ff46c1c29 100644 --- a/apps/ledger-live-desktop/tests/specs/speculos/erc20.spec.ts +++ b/apps/ledger-live-desktop/tests/specs/speculos/erc20.spec.ts @@ -3,7 +3,7 @@ import { specs } from "../../utils/speculos"; import { Application } from "tests/page"; test.use({ - userdata: "speculos", + userdata: "speculos-tests-app", testName: "tokenERC20", speculosCurrency: specs["Ethereum".replace(/ /g, "_")], speculosOffset: 0, diff --git a/apps/ledger-live-desktop/tests/specs/speculos/receive.address.spec.ts b/apps/ledger-live-desktop/tests/specs/speculos/receive.address.spec.ts index 75e0bb41804f..e1246b6eeede 100644 --- a/apps/ledger-live-desktop/tests/specs/speculos/receive.address.spec.ts +++ b/apps/ledger-live-desktop/tests/specs/speculos/receive.address.spec.ts @@ -4,23 +4,23 @@ import { specs } from "../../utils/speculos"; import { Application } from "tests/page"; const accounts: Account[] = [ - // Derivation path is updated when account (BTC and tBTC) receive money + // Derivation path is updated when account receive money Account.BTC_1, - Account.tBTC_1, Account.ETH_1, - Account.tETH_1, - Account.sep_ETH_1, Account.SOL_1, Account.TRX_1, Account.DOT_1, Account.XRP_1, + Account.BCH_1, + Account.ATOM_1, + Account.XTZ_1, ]; -//This test might sporadically fail due to getAppAndVersion issue - Jira: LIVE-12581 +//Reactivate test after fixing the GetAppAndVersion issue - Jira: LIVE-12581 for (const [i, account] of accounts.entries()) { - test.describe.parallel("Receive @smoke", () => { + test.describe.skip("Receive @smoke", () => { test.use({ - userdata: "speculos", + userdata: "speculos-tests-app", testName: `receiveSpeculos_${account.currency.uiName}`, speculosCurrency: specs[account.currency.deviceLabel.replace(/ /g, "_")], speculosOffset: i, diff --git a/apps/ledger-live-desktop/tests/specs/speculos/send.tx.spec.ts b/apps/ledger-live-desktop/tests/specs/speculos/send.tx.spec.ts index 45d43d83ff04..60597e908e26 100644 --- a/apps/ledger-live-desktop/tests/specs/speculos/send.tx.spec.ts +++ b/apps/ledger-live-desktop/tests/specs/speculos/send.tx.spec.ts @@ -8,8 +8,6 @@ import { Application } from "tests/page"; const transactions = [ //TODO: Reactivate when fees will be stable //new Transaction(Account.tBTC_1, Account.tBTC_2, "0.00001", "medium"), - //TODO: Reactivate after blobs limit in txpool is full (-32000) resolved - JIRA: BACK-7135 - //new Transaction(Account.tETH_1, Account.tETH_2, "0.00001", "medium"), new Transaction(Account.sep_ETH_1, Account.sep_ETH_2.address, "0.00001", "medium"), ]; @@ -17,17 +15,13 @@ const transactions = [ for (const [i, transaction] of transactions.entries()) { test.describe.parallel("Send Approve @smoke", () => { test.use({ - userdata: "speculos", + userdata: "speculos-tests-app", testName: `sendApprove_${transaction.accountToDebit.currency.uiName}`, speculosCurrency: specs[transaction.accountToDebit.currency.deviceLabel.replace(/ /g, "_")], speculosOffset: i, }); - //@TmsLink("B2CQA-479") - //@TmsLink("B2CQA-1904") - //@TmsLink("B2CQA-473") - //@TmsLink("B2CQA-472") - //@TmsLink("B2CQA-475") + //@TmsLink("TODO") test(`[${transaction.accountToDebit.accountName}] send Approve`, async ({ page }) => { const app = new Application(page); diff --git a/apps/ledger-live-desktop/tests/userdata/speculos-tests-app.json b/apps/ledger-live-desktop/tests/userdata/speculos-tests-app.json new file mode 100644 index 000000000000..cdc2d6a39a1c --- /dev/null +++ b/apps/ledger-live-desktop/tests/userdata/speculos-tests-app.json @@ -0,0 +1,61440 @@ +{ +"data": { + "PLAYWRIGHT_RUN": { + "localStorage": { + "acceptedTermsVersion": "2042-01-01" + } + }, + "settings": { + "hasCompletedOnboarding": true, + "counterValue": "USD", + "language": "en", + "locale": "en-US", + "theme": null, + "region": null, + "orderAccounts": "name|asc", + "countervalueFirst": false, + "autoLockTimeout": 10, + "selectedTimeRange": "week", + "currenciesSettings": {}, + "pairExchanges": {}, + "developerMode": true, + "loaded": true, + "shareAnalytics": true, + "sharePersonalizedRecommandations": false, + "hasSeenAnalyticsOptInPrompt": false, + "sentryLogs": true, + "lastUsedVersion": "99.99.99", + "dismissedBanners": [], + "accountsViewMode": "list", + "nftsViewMode": "list", + "showAccountsHelperBanner": true, + "hideEmptyTokenAccounts": false, + "filterTokenOperationsZeroAmount": true, + "sidebarCollapsed": false, + "discreetMode": false, + "preferredDeviceModel": "nanoSP", + "hasInstalledApps": true, + "lastSeenDevice": { + "modelId": "nanoSP", + "deviceInfo": { + "version": "1.2.0", + "mcuVersion": "4.04", + "seVersion": "1.2.0", + "majMin": "1.2.0", + "providerName": null, + "targetId": 856686596, + "hasDevFirmware": false, + "seTargetId": 856686596, + "isOSU": false, + "isBootloader": false, + "isRecoveryMode": false, + "managerAllowed": false, + "pinValidated": true, + "onboarded": true, + "bootloaderVersion": "3.13", + "languageId": 0 + }, + "apps": [] + }, + "devicesModelList": [ + "stax", + "nanoX", + "nanoSP" + ], + "lastSeenCustomImage": { + "size": 0, + "hash": "" + }, + "latestFirmware": null, + "blacklistedTokenIds": [], + "hiddenNftCollections": [], + "deepLinkUrl": null, + "firstTimeLend": false, + "showClearCacheBanner": false, + "fullNodeEnabled": false, + "allowDebugApps": false, + "allowReactQueryDebug": false, + "allowExperimentalApps": false, + "enablePlatformDevTools": false, + "catalogProvider": "production", + "enableLearnPageStagingUrl": false, + "swap": { + "hasAcceptedIPSharing": false, + "acceptedProviders": [], + "selectableCurrencies": [] + }, + "overriddenFeatureFlags": { + "customImage": { + "enabled": true, + "overridesRemote": true + }, + "llmNewDeviceSelection": { + "enabled": true, + "overridesRemote": true + }, + "postOnboardingClaimNft": { + "enabled": true, + "overridesRemote": true + }, + "staxWelcomeScreen": { + "enabled": true, + "overridesRemote": true + }, + "syncOnboarding": { + "enabled": true, + "overridesRemote": true + }, + "llmNewFirmwareUpdateUx": { + "enabled": true, + "overridesRemote": true + }, + "supportDeviceEuropa": { + "enabled": true, + "overridesRemote": true + }, + "supportDeviceStax": { + "enabled": true, + "overridesRemote": true + } + }, + "featureFlagsButtonVisible": false, + "vaultSigner": { + "enabled": false, + "host": "", + "token": "", + "workspace": "" + }, + "supportedCounterValues": [ + { + "value": "AUD", + "label": "Australian Dollar - AUD", + "currency": { + "type": "FiatCurrency", + "ticker": "AUD", + "name": "Australian Dollar", + "symbol": "AU$", + "units": [ + { + "code": "AU$", + "name": "Australian Dollar", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "BHD", + "label": "Bahraini Dinar - BHD", + "currency": { + "type": "FiatCurrency", + "ticker": "BHD", + "name": "Bahraini Dinar", + "symbol": "د.ب.", + "units": [ + { + "code": "د.ب.", + "name": "Bahraini Dinar", + "magnitude": 3, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "BTC", + "label": "Bitcoin - BTC", + "currency": { + "type": "CryptoCurrency", + "id": "bitcoin", + "coinType": 0, + "name": "Bitcoin", + "managerAppName": "Bitcoin", + "ticker": "BTC", + "scheme": "bitcoin", + "color": "#ffae35", + "symbol": "Ƀ", + "units": [ + { + "name": "bitcoin", + "code": "BTC", + "magnitude": 8 + }, + { + "name": "mBTC", + "code": "mBTC", + "magnitude": 5 + }, + { + "name": "bit", + "code": "bit", + "magnitude": 2 + }, + { + "name": "satoshi", + "code": "sat", + "magnitude": 0 + } + ], + "supportsSegwit": true, + "supportsNativeSegwit": true, + "family": "bitcoin", + "blockAvgTime": 900, + "bitcoinLikeInfo": { + "P2PKH": 0, + "P2SH": 5, + "XPUBVersion": 76067358 + }, + "explorerViews": [ + { + "address": "https://blockstream.info/address/$address", + "tx": "https://blockstream.info/tx/$hash" + }, + { + "address": "https://www.blockchain.com/btc/address/$address", + "tx": "https://blockchain.info/btc/tx/$hash" + } + ], + "keywords": [ + "btc", + "bitcoin" + ], + "explorerId": "btc" + } + }, + { + "value": "BRL", + "label": "Brazilian Real - BRL", + "currency": { + "type": "FiatCurrency", + "ticker": "BRL", + "name": "Brazilian Real", + "symbol": "R$", + "units": [ + { + "code": "R$", + "name": "Brazilian Real", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "GBP", + "label": "British Pound - GBP", + "currency": { + "type": "FiatCurrency", + "ticker": "GBP", + "name": "British Pound", + "symbol": "£", + "units": [ + { + "code": "£", + "name": "British Pound", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "CAD", + "label": "Canadian Dollar - CAD", + "currency": { + "type": "FiatCurrency", + "ticker": "CAD", + "name": "Canadian Dollar", + "symbol": "CA$", + "units": [ + { + "code": "CA$", + "name": "Canadian Dollar", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "CLP", + "label": "Chilean Peso - CLP", + "currency": { + "type": "FiatCurrency", + "ticker": "CLP", + "name": "Chilean Peso", + "symbol": "CLP$", + "units": [ + { + "code": "CLP$", + "name": "Chilean Peso", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "CZK", + "label": "Czech Koruna - CZK", + "currency": { + "type": "FiatCurrency", + "ticker": "CZK", + "name": "Czech Koruna", + "symbol": "Kč", + "units": [ + { + "code": "Kč", + "name": "Czech Koruna", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "DKK", + "label": "Danish Krone - DKK", + "currency": { + "type": "FiatCurrency", + "ticker": "DKK", + "name": "Danish Krone", + "symbol": "kr.", + "units": [ + { + "code": "kr.", + "name": "Danish Krone", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "AED", + "label": "Emirati Dirham - AED", + "currency": { + "type": "FiatCurrency", + "ticker": "AED", + "name": "Emirati Dirham", + "symbol": "د.إ.", + "units": [ + { + "code": "د.إ.", + "name": "Emirati Dirham", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "ETH", + "label": "Ethereum - ETH", + "currency": { + "type": "CryptoCurrency", + "id": "ethereum", + "coinType": 60, + "name": "Ethereum", + "managerAppName": "Ethereum", + "ticker": "ETH", + "scheme": "ethereum", + "color": "#0ebdcd", + "symbol": "Ξ", + "family": "evm", + "blockAvgTime": 15, + "units": [ + { + "name": "ether", + "code": "ETH", + "magnitude": 18 + }, + { + "name": "Gwei", + "code": "Gwei", + "magnitude": 9 + }, + { + "name": "Mwei", + "code": "Mwei", + "magnitude": 6 + }, + { + "name": "Kwei", + "code": "Kwei", + "magnitude": 3 + }, + { + "name": "wei", + "code": "wei", + "magnitude": 0 + } + ], + "ethereumLikeInfo": { + "chainId": 1 + }, + "explorerViews": [ + { + "tx": "https://etherscan.io/tx/$hash", + "address": "https://etherscan.io/address/$address", + "token": "https://etherscan.io/token/$contractAddress?a=$address" + } + ], + "keywords": [ + "eth", + "ethereum" + ], + "explorerId": "eth" + } + }, + { + "value": "EUR", + "label": "Euro - EUR", + "currency": { + "type": "FiatCurrency", + "ticker": "EUR", + "name": "Euro", + "symbol": "€", + "units": [ + { + "code": "€", + "name": "Euro", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "HKD", + "label": "Hong Kong Dollar - HKD", + "currency": { + "type": "FiatCurrency", + "ticker": "HKD", + "name": "Hong Kong Dollar", + "symbol": "HK$", + "units": [ + { + "code": "HK$", + "name": "Hong Kong Dollar", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "HUF", + "label": "Hungarian Forint - HUF", + "currency": { + "type": "FiatCurrency", + "ticker": "HUF", + "name": "Hungarian Forint", + "symbol": "Ft", + "units": [ + { + "code": "Ft", + "name": "Hungarian Forint", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "INR", + "label": "Indian Rupee - INR", + "currency": { + "type": "FiatCurrency", + "ticker": "INR", + "name": "Indian Rupee", + "symbol": "₹", + "units": [ + { + "code": "₹", + "name": "Indian Rupee", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "IDR", + "label": "Indonesian Rupiah - IDR", + "currency": { + "type": "FiatCurrency", + "ticker": "IDR", + "name": "Indonesian Rupiah", + "symbol": "Rp", + "units": [ + { + "code": "Rp", + "name": "Indonesian Rupiah", + "magnitude": 0, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "ILS", + "label": "Israeli Shekel - ILS", + "currency": { + "type": "FiatCurrency", + "ticker": "ILS", + "name": "Israeli Shekel", + "symbol": "₪", + "units": [ + { + "code": "₪", + "name": "Israeli Shekel", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "JPY", + "label": "Japanese Yen - JPY", + "currency": { + "type": "FiatCurrency", + "ticker": "JPY", + "name": "Japanese Yen", + "symbol": "¥", + "units": [ + { + "code": "¥", + "name": "Japanese Yen", + "magnitude": 0, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "MYR", + "label": "Malaysian Ringgit - MYR", + "currency": { + "type": "FiatCurrency", + "ticker": "MYR", + "name": "Malaysian Ringgit", + "symbol": "RM", + "units": [ + { + "code": "RM", + "name": "Malaysian Ringgit", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "MXN", + "label": "Mexico Peso - MXN", + "currency": { + "type": "FiatCurrency", + "ticker": "MXN", + "name": "Mexico Peso", + "symbol": "Mex$", + "units": [ + { + "code": "Mex$", + "name": "Mexico Peso", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "NZD", + "label": "New Zealand Dollar - NZD", + "currency": { + "type": "FiatCurrency", + "ticker": "NZD", + "name": "New Zealand Dollar", + "symbol": "NZ$", + "units": [ + { + "code": "NZ$", + "name": "New Zealand Dollar", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "NGN", + "label": "Nigerian Naira - NGN", + "currency": { + "type": "FiatCurrency", + "ticker": "NGN", + "name": "Nigerian Naira", + "symbol": "₦", + "units": [ + { + "code": "₦", + "name": "Nigerian Naira", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "NOK", + "label": "Norwegian Krone - NOK", + "currency": { + "type": "FiatCurrency", + "ticker": "NOK", + "name": "Norwegian Krone", + "symbol": "kr", + "units": [ + { + "code": "kr", + "name": "Norwegian Krone", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "PKR", + "label": "Pakistani Rupee - PKR", + "currency": { + "type": "FiatCurrency", + "ticker": "PKR", + "name": "Pakistani Rupee", + "symbol": "₨", + "units": [ + { + "code": "₨", + "name": "Pakistani Rupee", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "PHP", + "label": "Philippine Peso - PHP", + "currency": { + "type": "FiatCurrency", + "ticker": "PHP", + "name": "Philippine Peso", + "symbol": "₱", + "units": [ + { + "code": "₱", + "name": "Philippine Peso", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "PLN", + "label": "Polish Złoty - PLN", + "currency": { + "type": "FiatCurrency", + "ticker": "PLN", + "name": "Polish Złoty", + "symbol": "zł", + "units": [ + { + "code": "zł", + "name": "Polish Złoty", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "RUB", + "label": "Russian Rouble - RUB", + "currency": { + "type": "FiatCurrency", + "ticker": "RUB", + "name": "Russian Rouble", + "symbol": "₽", + "units": [ + { + "code": "₽", + "name": "Russian Rouble", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "SGD", + "label": "Singapore Dollar - SGD", + "currency": { + "type": "FiatCurrency", + "ticker": "SGD", + "name": "Singapore Dollar", + "symbol": "S$", + "units": [ + { + "code": "S$", + "name": "Singapore Dollar", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "ZAR", + "label": "South African Rand - ZAR", + "currency": { + "type": "FiatCurrency", + "ticker": "ZAR", + "name": "South African Rand", + "symbol": "R", + "units": [ + { + "code": "R", + "name": "South African Rand", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "KRW", + "label": "South Korean Won - KRW", + "currency": { + "type": "FiatCurrency", + "ticker": "KRW", + "name": "South Korean Won", + "symbol": "₩", + "units": [ + { + "code": "₩", + "name": "South Korean Won", + "magnitude": 0, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "SEK", + "label": "Swedish Krona - SEK", + "currency": { + "type": "FiatCurrency", + "ticker": "SEK", + "name": "Swedish Krona", + "symbol": "kr", + "units": [ + { + "code": "kr", + "name": "Swedish Krona", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "CHF", + "label": "Swiss Franc - CHF", + "currency": { + "type": "FiatCurrency", + "ticker": "CHF", + "name": "Swiss Franc", + "symbol": "CHF", + "units": [ + { + "code": "CHF", + "name": "Swiss Franc", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "THB", + "label": "Thai Baht - THB", + "currency": { + "type": "FiatCurrency", + "ticker": "THB", + "name": "Thai Baht", + "symbol": "฿", + "units": [ + { + "code": "฿", + "name": "Thai Baht", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "TRY", + "label": "Turkish Lira - TRY", + "currency": { + "type": "FiatCurrency", + "ticker": "TRY", + "name": "Turkish Lira", + "symbol": "TL", + "units": [ + { + "code": "TL", + "name": "Turkish Lira", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "USD", + "label": "US Dollar - USD", + "currency": { + "type": "FiatCurrency", + "ticker": "USD", + "name": "US Dollar", + "symbol": "$", + "units": [ + { + "code": "$", + "name": "US Dollar", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "UAH", + "label": "Ukrainian Hryvnia - UAH", + "currency": { + "type": "FiatCurrency", + "ticker": "UAH", + "name": "Ukrainian Hryvnia", + "symbol": "₴", + "units": [ + { + "code": "₴", + "name": "Ukrainian Hryvnia", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "VND", + "label": "Vietnamese Dong - VND", + "currency": { + "type": "FiatCurrency", + "ticker": "VND", + "name": "Vietnamese Dong", + "symbol": "₫", + "units": [ + { + "code": "₫", + "name": "Vietnamese Dong", + "magnitude": 1, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "CNY", + "label": "Yuan or Chinese Renminbi - CNY", + "currency": { + "type": "FiatCurrency", + "ticker": "CNY", + "name": "Yuan or Chinese Renminbi", + "symbol": "¥", + "units": [ + { + "code": "¥", + "name": "Yuan or Chinese Renminbi", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + } + ], + "dismissedContentCards": {}, + "anonymousBrazeId": "anonymous_id_18", + "starredMarketCoins": [] + }, + "user": { + "id": "1af6fd6d-bfa6-4219-afbf-3d670f9a238f" + }, + "announcements": { + "announcements": [], + "seenIds": [], + "lastUpdateTime": 1717401331408 + }, + "accounts": [ + { + "data": { + "id": "js:2:algorand:HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU:", + "seedIdentifier": "3c3d84da5536d55893beafa86b328958ead7c28dba438fd53df558d6190aa8e6", + "name": "Algorand 1", + "starred": false, + "used": true, + "derivationMode": "", + "index": 0, + "freshAddress": "HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU", + "freshAddressPath": "44'/283'/0'/0/0", + "freshAddresses": [ + { + "address": "HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU", + "derivationPath": "44'/283'/0'/0/0" + } + ], + "blockHeight": 39422999, + "creationDate": "2024-05-29T14:19:19.000Z", + "operationsCount": 1, + "operations": [ + { + "id": "js:2:algorand:HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU:-IY5LC6CQKW7LGO5SS54N42SQBEQ5QSG32NEVRNELHVWSQAOUNLRQ-IN", + "hash": "IY5LC6CQKW7LGO5SS54N42SQBEQ5QSG32NEVRNELHVWSQAOUNLRQ", + "type": "IN", + "senders": [ + "EFNDKIMSO3KBJOUTGYNBBZAXLZM6OH7E7YZC43QQ3UUKLY43CWFLC2BXT4" + ], + "recipients": [ + "HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU" + ], + "accountId": "js:2:algorand:HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU:", + "blockHash": null, + "blockHeight": 39280936, + "extra": { + "rewards": "0" + }, + "date": "2024-05-29T14:19:19.000Z", + "value": "66260389", + "fee": "1000" + } + ], + "pendingOperations": [], + "currencyId": "algorand", + "unitMagnitude": 6, + "lastSyncDate": "2024-06-03T07:55:37.825Z", + "balance": "66260389", + "spendableBalance": "66160389", + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 0, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389 + ], + "latestDate": 1717398000000 + }, + "DAY": { + "balances": [ + 0, + 66260389, + 66260389, + 66260389, + 66260389, + 66260389 + ], + "latestDate": 1717365600000 + }, + "WEEK": { + "balances": [ + 0, + 66260389 + ], + "latestDate": 1717279200000 + } + }, + "xpub": "HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU", + "subAccounts": [], + "algorandResources": { + "rewards": "0", + "nbAssets": 0 + }, + "swapHistory": [] + }, + "version": 1 + }, + { + "data": { + "id": "js:2:bitcoin:xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB:native_segwit", + "seedIdentifier": "048935555dec2a20c96f40434fca2817abfa16bfb19933eb0d65bdcd5ec1ab8b659491c0dc9510ffcf4fdd5c1b55c9077d79e9e4fdd9e6b88e899757cfa15d121d", + "name": "Bitcoin 1", + "starred": false, + "used": true, + "derivationMode": "native_segwit", + "index": 0, + "freshAddress": "bc1qx7f9plgr8msjatkv0dw2ne8gguwfjqr6xyjp50", + "freshAddressPath": "84'/0'/0'/0/1", + "freshAddresses": [ + { + "address": "bc1qmkhvthj7lrxlpfm4gj3e0ww0a5v3p3dy5a85fv", + "derivationPath": "84'/0'/0'/0/0" + } + ], + "blockHeight": 846317, + "creationDate": "2024-04-10T12:18:05.000Z", + "operationsCount": 1, + "operations": [ + { + "id": "js:2:bitcoin:xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB:native_segwit-240876da9a80b15d379af3f72d9881184bf80f32f2cee9b72834e0ec3d788b19-IN", + "hash": "240876da9a80b15d379af3f72d9881184bf80f32f2cee9b72834e0ec3d788b19", + "type": "IN", + "senders": [ + "bc1qgdhkyajg2k95hqx85z3ndugh0ufhz0nk03ffq0" + ], + "recipients": [ + "bc1qmkhvthj7lrxlpfm4gj3e0ww0a5v3p3dy5a85fv" + ], + "accountId": "js:2:bitcoin:xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB:native_segwit", + "blockHash": "00000000000000000001165e07b3df13b3c40b54dd017a9a92bbe4be06e2775b", + "blockHeight": 838601, + "extra": {}, + "date": "2024-04-10T12:18:05.000Z", + "value": "6205", + "fee": "5390", + "hasFailed": false + } + ], + "pendingOperations": [], + "currencyId": "bitcoin", + "unitMagnitude": 8, + "lastSyncDate": "2024-06-03T07:55:38.957Z", + "balance": "6205", + "spendableBalance": "6205", + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205 + ], + "latestDate": 1717398000000 + }, + "DAY": { + "balances": [ + 0, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205 + ], + "latestDate": 1717365600000 + }, + "WEEK": { + "balances": [ + 0, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205, + 6205 + ], + "latestDate": 1717279200000 + } + }, + "xpub": "xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB", + "bitcoinResources": { + "utxos": [ + [ + "240876da9a80b15d379af3f72d9881184bf80f32f2cee9b72834e0ec3d788b19", + 0, + 838601, + "bc1qmkhvthj7lrxlpfm4gj3e0ww0a5v3p3dy5a85fv", + "6205", + 1, + 0 + ] + ], + "walletAccount": { + "params": { + "xpub": "xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB", + "path": "84'/0'", + "index": 0, + "currency": "bitcoin", + "network": "mainnet", + "derivationMode": "Native SegWit" + }, + "xpub": { + "xpub": "xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB", + "data": { + "txs": [ + { + "id": "240876da9a80b15d379af3f72d9881184bf80f32f2cee9b72834e0ec3d788b19", + "received_at": "2024-04-10T12:18:05Z", + "fees": "5390", + "inputs": [ + { + "output_hash": "4e24e5145049cc16fea258e12b4cf4a3a7b6797024264212001e7382120f41a1", + "output_index": 0, + "value": "11595", + "address": "bc1qgdhkyajg2k95hqx85z3ndugh0ufhz0nk03ffq0", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "6205", + "address": "bc1qmkhvthj7lrxlpfm4gj3e0ww0a5v3p3dy5a85fv", + "spent_at_height": null, + "output_hash": "240876da9a80b15d379af3f72d9881184bf80f32f2cee9b72834e0ec3d788b19", + "block_height": 838601, + "rbf": true + } + ], + "block": { + "hash": "00000000000000000001165e07b3df13b3c40b54dd017a9a92bbe4be06e2775b", + "height": 838601, + "time": "2024-04-10T12:18:05Z" + }, + "tx_index": 852, + "account": 0, + "index": 0, + "address": "bc1qmkhvthj7lrxlpfm4gj3e0ww0a5v3p3dy5a85fv" + } + ], + "addressCache": { + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-1": "bc1qx7f9plgr8msjatkv0dw2ne8gguwfjqr6xyjp50", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-2": "bc1qm6tw2c0u842qjs7g2n2c7ulh76f6xn4sk0dsyt", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-0": "bc1qmkhvthj7lrxlpfm4gj3e0ww0a5v3p3dy5a85fv", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-4": "bc1q5gygy3ywwcmdyky7q098jgjld4g9mkgslh6wrp", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-5": "bc1q82phqmfukzmfwf6t3tgprm5hzsh47e6l9cevaw", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-3": "bc1qm4mm7usmutz9sryheuytjpzj0yuy83pkg49qzk", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-7": "bc1qd0jevdq89hlcazal9cak8t850t6nn9fmn5flnj", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-8": "bc1q9cpp30ke572kl5swmxkw2xnuucp0a4psxqnk6h", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-10": "bc1q2j7y9768yrf0zgepu6up9nfxaa9jz2g68rr77m", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-6": "bc1q4nrdyq8ztm3v86wfrp7rmdxz9e7ew28qvpvusw", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-11": "bc1qk903vzzt485v6k8smfapgtl7tvppxv3989syw7", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-13": "bc1qa3ar6fwgff2ag2kx965vyqf8k2wrk3fke8renh", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-14": "bc1qhw6ry8av9tds23jxs49germfdg053pegxygxa5", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-9": "bc1qw3ecp854rpd3aqd4cc8cgev8hjpfuv0vyckmur", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-16": "bc1qy3jdtz2qu5lhh32agnjw2cxfr8ugjulhmtlhxx", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-17": "bc1qlgnzp9yqazjdxj0a88fhh9drkru5slzm9xtxr2", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-12": "bc1qt8aev946g87zdsz6c0wus4v04kd3pc9rjw6tup", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-0": "bc1qyfgqn8fke74qqk5gxeunrkahzsjwdpvtu4w3uw", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-19": "bc1q7dehctzmpymjlznc47ppvscxjmswjtjl2s9nvc", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-15": "bc1q3e5k4rr3kqqpfsyw45j0272n33yhq8sm6x6wt6", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-3": "bc1qrhxzhlquqst9dr88ukuf4jjql7kcp223nyd4sc", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-2": "bc1qr3m7tgd55s97gunrmd00hhhfvknnec723hhw6s", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-18": "bc1qvfdn7xdfcnf6d3gkkntrqfv0sfzve3nympnhq5", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-6": "bc1qajpassyzqgkrx7trl3tn5ekzarshvxqsej3req", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-5": "bc1q8flt9qc7q3l28uewrklw0jj0l4saj6jtkrxtd8", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-8": "bc1qw3tgz03f6l7tpmlftzt974cwnunzc9rk0x8zf3", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-1": "bc1qllefeacr0z2hwj9s6lz2mtjw2up0vfcfz5pdwc", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-11": "bc1qaj7gnuf59dw6ng3uxle706xhpcz7jl9nrmx3d9", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-9": "bc1qaqjyqtn6tayespq848c4gqszyjaxasw0c3vset", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-14": "bc1q0d24txphdg7zqcf9xvatcjac4s2z844rm8x7yl", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-12": "bc1qy2strxr0ef65pgnee4y72d2uavlgk5dex62v4u", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-17": "bc1qsy664lafkagrhq53fvt9mqth475cunfe9s8r9v", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-15": "bc1qvpnnmqvu4s95uj2vgst3wp0h4q5ut0amk9enr3", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-4": "bc1qn8yvjn09srgxrv3rep8swg8ae5x5hvfpetfrpq", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-18": "bc1qrseq5f8dl95ht6nxa555mt2m6kqmtvrm5c3exp", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-7": "bc1q3s6dd4xeqcqey34k8786m32y83av2pdq68m5zh", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-10": "bc1qesuj6ecg583cr86km4gu8u96gvtck6ffz4ltzf", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-13": "bc1q0md9s9ujgnl07whnh3alun5cvlwv4fjzdhwv6p", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-16": "bc1qcufy8pc8dp85tggzmh9hvwcf924k3447slxl2c", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-19": "bc1q2r4ux5hl878rmn4ywveytwxsa0ra202cuyqksv", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-22": "bc1qcm73kldqunlz0zc3x5jxqrgm8m280qjw58ta46", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-25": "bc1qu47yuv7cjhttglju24nj0qdl20pjt7m7epjlcm", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-20": "bc1qe7uazljj85y4vl37ustjqdnvc64rnwux0s32ph", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-21": "bc1q9pywjsyjuzj3rjvtjhfnw5fxj4ccd2r642xmc4", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-28": "bc1q98r07n0mvsgaevfrd0tx55g3x028347c3aedlg", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-23": "bc1qfkmf272x979486vujul0aam4kkwwwum35nm033", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-24": "bc1q0706hw8pdt2htjq767mwwyd2f9v0tqxpdn9cxv", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-31": "bc1qptdachestqs056ay455cfqzqtuh54v0x79eqgs", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-26": "bc1qz2f35hu7lmas55mjeflwnkesj97twprzuv4gzk", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-27": "bc1qx9a384t9yfgv52kumzhqs7f2033s0wkft9sgf9", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-34": "bc1qvuwp3x2jwpq4llhcvtlg3gla8mj25d2m484gjd", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-29": "bc1q94vxg7d3dj43me4m5jzvyjsf4unndvj39j6gje", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-37": "bc1q4x0je3hyvkmrnwryjde2edgaj38knu8k9p6cw0", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-30": "bc1qez0r6qhqevzd8f32gz9e90au597jcjmu609y8j", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-32": "bc1qu6g4d9qklddn9j97py7cwndkvxg0wedg5yzchw", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-33": "bc1q96ql5d4fz2f6tzharfv88qgmr8hfr6zrdq8jzd", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-35": "bc1qhjq0lw6vstqj9dha9u7x5m4zf27jyv8wjelsrq", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-36": "bc1qugz20mkcw7rjt3tslxfg5ay7fewmtc05s3ctvj", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-38": "bc1qjgxkemk3c82nyxmxj0tx48lurpl399lk7677cz", + "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-39": "bc1q7r6dckz6s9xry0gjjk0vrwk58hd6n4324c8mgf" + } + } + } + } + }, + "swapHistory": [] + }, + "version": 1 + }, + { + "data": { + "id": "js:2:bitcoin_cash:xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR:", + "seedIdentifier": "041d74833cc972800d910da70c28478056d9dc8f41a1069a42ee7560fd1760d37ac8c6d5611487656532b60ad6b2ad9cedc23be96d1e4efde3c89e9be85baca16c", + "name": "Bitcoin Cash 1", + "starred": false, + "used": true, + "derivationMode": "", + "index": 0, + "freshAddress": "qz82kem69vdafku8xf4zpt9p5ytj8umwpujj7wjcv6", + "freshAddressPath": "44'/145'/0'/0/1", + "freshAddresses": [ + { + "address": "1EDsMgy6i5pYSCp8YiLPfgQpQDgv1dxWxo", + "derivationPath": "44'/145'/0'/0/0" + } + ], + "blockHeight": 848588, + "creationDate": "2024-05-29T14:10:16.000Z", + "operationsCount": 1, + "operations": [ + { + "id": "js:2:bitcoin_cash:xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR:-f7758e6e2b537c91b96ad0d75dff72c5cca0f04decd38e6552f3bad2603b4454-IN", + "hash": "f7758e6e2b537c91b96ad0d75dff72c5cca0f04decd38e6552f3bad2603b4454", + "type": "IN", + "senders": [ + "qqtm7vyxveyymdxyerrfe2w8ygcwtmuhqcjc0s9mvc" + ], + "recipients": [ + "qzgs32vj540akut0m2yu8m8hdg7vtumnlcr778gr5y" + ], + "accountId": "js:2:bitcoin_cash:xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR:", + "blockHash": "0000000000000000009a9009b9609b3b57e514ec7681d2c6eb70bd44ca3ce3e9", + "blockHeight": 847910, + "extra": {}, + "date": "2024-05-29T14:10:16.000Z", + "value": "3030448", + "fee": "4304", + "hasFailed": false + } + ], + "pendingOperations": [], + "currencyId": "bitcoin_cash", + "unitMagnitude": 8, + "lastSyncDate": "2024-06-03T07:55:39.929Z", + "balance": "3030448", + "spendableBalance": "3030448", + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 0, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448 + ], + "latestDate": 1717398000000 + }, + "DAY": { + "balances": [ + 0, + 3030448, + 3030448, + 3030448, + 3030448, + 3030448 + ], + "latestDate": 1717365600000 + }, + "WEEK": { + "balances": [ + 0, + 3030448 + ], + "latestDate": 1717279200000 + } + }, + "xpub": "xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR", + "bitcoinResources": { + "utxos": [ + [ + "f7758e6e2b537c91b96ad0d75dff72c5cca0f04decd38e6552f3bad2603b4454", + 0, + 847910, + "qzgs32vj540akut0m2yu8m8hdg7vtumnlcr778gr5y", + "3030448", + 0, + 0 + ] + ], + "walletAccount": { + "params": { + "xpub": "xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR", + "path": "44'/145'", + "index": 0, + "currency": "bitcoin_cash", + "network": "mainnet", + "derivationMode": "Legacy" + }, + "xpub": { + "xpub": "xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR", + "data": { + "txs": [ + { + "id": "f7758e6e2b537c91b96ad0d75dff72c5cca0f04decd38e6552f3bad2603b4454", + "received_at": "2024-05-29T14:10:16Z", + "fees": "4304", + "inputs": [ + { + "output_hash": "4a2733b09fe667004ad36f66b5a9b51ef42f1200b33724c9db5670db0dd664ac", + "output_index": 1, + "value": "210080057956", + "address": "bitcoincash:qqtm7vyxveyymdxyerrfe2w8ygcwtmuhqcjc0s9mvc", + "sequence": 4294967295 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "3030448", + "address": "bitcoincash:qzgs32vj540akut0m2yu8m8hdg7vtumnlcr778gr5y", + "spent_at_height": null, + "output_hash": "f7758e6e2b537c91b96ad0d75dff72c5cca0f04decd38e6552f3bad2603b4454", + "block_height": 847910, + "rbf": false + }, + { + "output_index": 1, + "value": "210077023204", + "address": "bitcoincash:qqtm7vyxveyymdxyerrfe2w8ygcwtmuhqcjc0s9mvc", + "spent_at_height": null, + "output_hash": "f7758e6e2b537c91b96ad0d75dff72c5cca0f04decd38e6552f3bad2603b4454", + "block_height": 847910, + "rbf": false + }, + { + "output_index": 2, + "value": "0", + "address": "", + "spent_at_height": null, + "output_hash": "f7758e6e2b537c91b96ad0d75dff72c5cca0f04decd38e6552f3bad2603b4454", + "block_height": 847910, + "rbf": false + } + ], + "block": { + "hash": "0000000000000000009a9009b9609b3b57e514ec7681d2c6eb70bd44ca3ce3e9", + "height": 847910, + "time": "2024-05-29T14:10:16Z" + }, + "tx_index": 280, + "account": 0, + "index": 0, + "address": "bitcoincash:qzgs32vj540akut0m2yu8m8hdg7vtumnlcr778gr5y" + } + ], + "addressCache": { + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-1": "bitcoincash:qz82kem69vdafku8xf4zpt9p5ytj8umwpujj7wjcv6", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-2": "bitcoincash:qqxdsfuntq33pes0e47a778qus723ytseyp0k56wdw", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-0": "bitcoincash:qzgs32vj540akut0m2yu8m8hdg7vtumnlcr778gr5y", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-4": "bitcoincash:qq3u47k2rg20l47f0kxxk4u584kkcwjjqsha8qmegy", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-5": "bitcoincash:qpkd55p3ygh5gk8ehc670wmqvnp0l2lxegldvv97hl", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-3": "bitcoincash:qrphdgj2raejjdssq6l4zqegth6m4fpr2vxmz55hen", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-7": "bitcoincash:qrfd72an44nsp0vnvk84f8zf5f4dudyvpqxgx2vtte", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-8": "bitcoincash:qqhrltne00lyt2wmhl54kkx4dpyshv3qy57r3lea4g", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-6": "bitcoincash:qqgzltlpzd3q4rszfzyyym3avd0v55zvhuc5teshu5", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-11": "bitcoincash:qqc0pa22p3z0vwxm6y3h4gngfr3w7ehanq8fftj8rs", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-10": "bitcoincash:qz6dwy4h2wtcna8ll6eglpnw67swylu0uuguv22lp4", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-9": "bitcoincash:qqqzar66tsgwx9kn5dhndq5jc6t83ezd0y655amypr", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-14": "bitcoincash:qq7nmu8gltaqde2sj9m6zhgna374my7wxv4wnr0pgp", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-13": "bitcoincash:qqnxqsnumpmh7qh3n0rahlgeyn2em2ujvvx9643nhg", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-12": "bitcoincash:qrd7xjup6ecyanyre9v4ufu2qsnh9n7g4s3yye80hs", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-16": "bitcoincash:qzgfqmukk9j4nwju3l2mwdu9l7qh0aznesqtcztmdl", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-17": "bitcoincash:qrmq9m7msgycygpyxne9f3jmzc288q57fctlr37ttq", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-15": "bitcoincash:qzjwwxefwkjvyl35pxces3tdeyqyp2ur5q3nasgn3t", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-19": "bitcoincash:qr74czchnqcvcnx3fehc2ktyvjy7vd3a9568ckzscz", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-1-0": "bitcoincash:qr0q895rw06r4fnkunnzdqrajc7sw6vwagect4x68f", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-1-2": "bitcoincash:qre8djuem4jfvrhpy29s4ec6p035u7lxygzhtclkdv", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-18": "bitcoincash:qppc0xzd0ha0jl96l87gethp42gnl9qr3slq0j5skq", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-1-3": "bitcoincash:qqp7d5h8c06wp6008an34mafj2r4g5pcusqwlzmggy", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-1-5": "bitcoincash:qzzmaf3lu96xjnfry08umgv8hqrr7ehs3c4c3kfre3", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-1-1": "bitcoincash:qqvd8pjvllhvz0rdkvqqgwvfe4dvl4wwacl4zsytdj", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-1-6": "bitcoincash:qq9u4dwqv677d7ecdqazwr0zumlj024nlc8pa67e7d", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-1-8": "bitcoincash:qzlcdvj3ct0faasy3z3at3k85mgptyqu5gwptkvd3l", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-1-4": "bitcoincash:qqj8q7ezt7avc7kkn3qrcj90rh9m5ulmzqeevdr9ve", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-1-9": "bitcoincash:qzyu3yekc3gch0vv08yee3865gy3t7kjrclssrch63", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-1-11": "bitcoincash:qrgqpsnayk4vuysnyt50zfdlwl3lnz76j5eddmnzqv", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-1-7": "bitcoincash:qpmcc9209e3tdmkwldwp9y0wyuldsc0dsu6mqlsssg", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-1-12": "bitcoincash:qzptm5j04ulqxynp866whg46d2u7vzx645rd3ue9t7", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-1-14": "bitcoincash:qz8gsuu05zznt4p3np7x9852t0jye4l6wy99xps929", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-1-10": "bitcoincash:qr8uscq3896ga4gpfs4qtf3cszjt80u865kr9ddv0u", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-1-15": "bitcoincash:qztdtguez5f4ca5ffal8wjksj7m03dgwpug27fz0dh", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-1-17": "bitcoincash:qztgyevlhhjmy525z5x2fxz2xr62y44kkvfn4svcre", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-1-18": "bitcoincash:qpr9p0m8xy058wekzvvx9je9gv0amfas8q0w9dvsmh", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-1-13": "bitcoincash:qzuj4023szscy8hugkfqm6tqqdr7ns4n0y5mefyhjk", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-1-16": "bitcoincash:qqmw8m2llhr9hpxxmss8tfm924jgv08ldv8k4l0mgk", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-1-19": "bitcoincash:qz6qq66mxk025ht0ep9p7stjsfvdalqvuc0fuvz37v", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-22": "bitcoincash:qqfch5xc2ehjq47en22z3qs9aykrmw6qu5w9u9djem", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-25": "bitcoincash:qzn4n2r62w04mratl97m6dfafmw69syc4s4jhrfjhs", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-21": "bitcoincash:qrhjum6jsgj6xyxjpzxg86a8nmgzhmlwps0v4us0yq", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-20": "bitcoincash:qz577sr587suvw3j684lpp96vurk0wl7pqfkm4tdva", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-28": "bitcoincash:qq9gem8anpch293vt7mkm9mafpp2vzmfmqhedylhz4", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-24": "bitcoincash:qp5wtu5zu6qadjt450j9x8c79p32f7zc7cxvdwf755", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-31": "bitcoincash:qqv8sckkp9w0f2raue7mvphreu0esesw9vw7fcmfca", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-23": "bitcoincash:qqlkzf9r6686ddlh32xq7ekm43kmarhxgy6y3u3c4l", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-34": "bitcoincash:qpv4lh7dzaqh2u6qxdklagqh66q7gz8e5scdq7q48j", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-27": "bitcoincash:qqjre4cy84cczsgaqy6unl6ga2ysgrutlyj0m6urky", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-26": "bitcoincash:qrl629nfqnlw2p6rullrk3j85gnfz2ulmuhgfl24el", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-37": "bitcoincash:qrn2whc8gey0yw5ckydp3p3uhzr57lggqu06x7529c", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-30": "bitcoincash:qqwcavxvr2ytwncdg4mrsmhf9fnp9v5a2clmtfge3z", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-29": "bitcoincash:qpe2yg2puv32gmqycfa78m2lvgttp5scjymjh9qgu2", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-33": "bitcoincash:qrq8h0la5ldne44vhdnf7pd3797dg0mrqspetcdl8v", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-32": "bitcoincash:qqat7e3u0x50307lfgz53zp6h4vt5vv3pcjvvj87wu", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-36": "bitcoincash:qz43adtgj643xwcc0zcxf3h62cazqfyeqs2p8wdg7g", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-35": "bitcoincash:qp4y7jpd33cjemf82jnlr7mc4vm5zpqscy0pdsj50f", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-39": "bitcoincash:qqmgkdf0xy70375dt5lufyh0aw02d88c6qj00w29nt", + "BitcoinCash-Legacy-xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR-0-38": "bitcoincash:qrd8fgs5208w92ufx8c76tdj977pfq9gsvxudrzh0g" + } + } + } + } + }, + "swapHistory": [] + }, + "version": 1 + }, + { + "data": { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", + "seedIdentifier": "045149ac56e773488fc925cafe39fe5814d1f7102b05035ad4246d206e7ec57260727f8a06040e7631a3e997d6203639a90f2e384a83535eb0034d12b90fa2acbb", + "name": "Bitcoin Testnet 1", + "starred": false, + "used": true, + "derivationMode": "native_segwit", + "index": 0, + "freshAddress": "tb1qxmwe6n93fls8r69837cmyt6ua406xaen9hy24d", + "freshAddressPath": "84'/1'/0'/0/4", + "freshAddresses": [ + { + "address": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk", + "derivationPath": "84'/1'/0'/0/0" + } + ], + "blockHeight": 2819697, + "creationDate": "2024-04-10T12:47:03.000Z", + "operationsCount": 29, + "operations": [ + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-ca716f4736eaf5c24f0e9190c7173408c7a46c925e10c76cb4488d14278235ac-IN", + "hash": "ca716f4736eaf5c24f0e9190c7173408c7a46c925e10c76cb4488d14278235ac", + "type": "IN", + "senders": [ + "tb1qhxjdvd53z73r3e3kdn2nt8h2lqayw93jhr43rw" + ], + "recipients": [ + "tb1qjnl3f0lahssa62qvn6vm2fruejfc6e9x2r8c5z" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", + "blockHash": "000000000000000cebb4e30283a056706c8e456ed76e6503a0be8abd70701d19", + "blockHeight": 2815481, + "extra": {}, + "date": "2024-05-15T13:14:19.000Z", + "value": "30197", + "fee": "6895", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-f6ee9f6eb35fc2abb14ef246ee6faa3105f3af657cb447761df79743553605c0-OUT", + "hash": "f6ee9f6eb35fc2abb14ef246ee6faa3105f3af657cb447761df79743553605c0", + "type": "OUT", + "senders": [ + "tb1qdy7rh3f3d4v08sx50zwwuv29m206qnu3nehj7j" + ], + "recipients": [ + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", + "blockHash": "000000000000000d6cd593acf0cc74f17f3a51a620e5531e8d313fc82c4cdf63", + "blockHeight": 2815479, + "extra": {}, + "date": "2024-05-15T12:55:09.000Z", + "value": "15090", + "fee": "14090", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-507107ff04a3185909cc891cddf906d98c8a4695bd53f38e7c62008ff54788e4-OUT", + "hash": "507107ff04a3185909cc891cddf906d98c8a4695bd53f38e7c62008ff54788e4", + "type": "OUT", + "senders": [ + "tb1qfljcl04fyxq3zm8x7gkduca43gjxn65uky07t5" + ], + "recipients": [ + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", + "blockHash": "000000000000000d6cd593acf0cc74f17f3a51a620e5531e8d313fc82c4cdf63", + "blockHeight": 2815479, + "extra": {}, + "date": "2024-05-15T12:55:09.000Z", + "value": "15090", + "fee": "14090", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-e1f91c616f34b1048e635fbe10b1d715e953ad982c73f8f252a3d59d6caa985e-OUT", + "hash": "e1f91c616f34b1048e635fbe10b1d715e953ad982c73f8f252a3d59d6caa985e", + "type": "OUT", + "senders": [ + "tb1qta50jk5cs3cece26p26tepqenjs96zk9y02mdm" + ], + "recipients": [ + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", + "blockHash": "00000000000000164ad9408b1ed139e3a7fba0540348f081f8c392e767fbd7ab", + "blockHeight": 2815460, + "extra": {}, + "date": "2024-05-15T10:51:05.000Z", + "value": "15090", + "fee": "14090", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-58d21eece42b687fb811cf5fffae58f31454f5339b22a93f3407405c997b48fd-OUT", + "hash": "58d21eece42b687fb811cf5fffae58f31454f5339b22a93f3407405c997b48fd", + "type": "OUT", + "senders": [ + "tb1qgjuuqs4pkaukww7dgdukm84cg8n4h9dv0t0j8y" + ], + "recipients": [ + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", + "blockHash": "00000000000000164ad9408b1ed139e3a7fba0540348f081f8c392e767fbd7ab", + "blockHeight": 2815460, + "extra": {}, + "date": "2024-05-15T10:51:05.000Z", + "value": "15090", + "fee": "14090", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-2ae182dc9906bafa7404e51be13b8bdfd3b2a408ae0efade21fa74ed234a4601-OUT", + "hash": "2ae182dc9906bafa7404e51be13b8bdfd3b2a408ae0efade21fa74ed234a4601", + "type": "OUT", + "senders": [ + "tb1qarvwul33lpgqagp8pkr7qxuu7yvm3mwpxe8e0z" + ], + "recipients": [ + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", + "blockHash": "00000000000000164ad9408b1ed139e3a7fba0540348f081f8c392e767fbd7ab", + "blockHeight": 2815460, + "extra": {}, + "date": "2024-05-15T10:51:05.000Z", + "value": "15090", + "fee": "14090", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f-OUT", + "hash": "1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f", + "type": "OUT", + "senders": [ + "tb1qs2ex5k9z7t96fgkp4l5c2cs4lfdf64unymwe79", + "tb1qmk6cuwhq9r3jjckq56ctv896fn2erg7fpnm0xz" + ], + "recipients": [ + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", + "blockHash": "00000000000000176ff48d54445b1ef7e934f1ef13f03c6144a963e789982542", + "blockHeight": 2815454, + "extra": {}, + "date": "2024-05-15T10:12:36.000Z", + "value": "134308", + "fee": "133308", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019-OUT", + "hash": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", + "type": "OUT", + "senders": [ + "tb1qlfnf6f09wc5ukp346ty7w462rcf3t7n4utvy40", + "tb1qjnl3f0lahssa62qvn6vm2fruejfc6e9x2r8c5z", + "tb1qhvearg8afglty8rsmfta8j06el0qetxcyu2jun" + ], + "recipients": [ + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", + "blockHash": "000000000000000d27a09b060bc13bbdde3cedd1a9aeee148c80d70d95ca82fd", + "blockHeight": 2815444, + "extra": {}, + "date": "2024-05-15T08:11:02.000Z", + "value": "102016", + "fee": "101016", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea-OUT", + "hash": "762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea", + "type": "OUT", + "senders": [ + "tb1qnf94s85m3qqfu2pgda2pdz5f6xfjxg6p4z9qkh" + ], + "recipients": [ + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", + "blockHash": "000000000000000d27a09b060bc13bbdde3cedd1a9aeee148c80d70d95ca82fd", + "blockHeight": 2815444, + "extra": {}, + "date": "2024-05-15T08:11:02.000Z", + "value": "52336", + "fee": "51336", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075-OUT", + "hash": "8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075", + "type": "OUT", + "senders": [ + "tb1q3hmw2894p6fhencz0syk9v6kyh4heyffm4hz4f" + ], + "recipients": [ + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", + "blockHash": "0000000000000007f533a45f5f92a4d1ca52850333132a79dac787109f2445db", + "blockHeight": 2815108, + "extra": {}, + "date": "2024-05-13T13:19:27.000Z", + "value": "7417", + "fee": "6417", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f-OUT", + "hash": "0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f", + "type": "OUT", + "senders": [ + "tb1qslf059lsyurz6k0kgvjj9rw8pr75f0ts2a66a3" + ], + "recipients": [ + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", + "blockHash": "00000000000000f1ab393053a5b2e3e948458b40ec204de53b869478845f3565", + "blockHeight": 2812143, + "extra": {}, + "date": "2024-05-06T16:50:47.000Z", + "value": "13137", + "fee": "12137", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-db6b8183e8c8bed2551de17045e30600b8552496fe9a3db869abfe5be432f955-IN", + "hash": "db6b8183e8c8bed2551de17045e30600b8552496fe9a3db869abfe5be432f955", + "type": "IN", + "senders": [ + "tb1pxvwvelj9p6ug7vxxqvdq8r8hd7vlgp0w45ety53a5juzt9cffl6q2haz3p" + ], + "recipients": [ + "tb1qjnl3f0lahssa62qvn6vm2fruejfc6e9x2r8c5z" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", + "blockHash": "000000000000009bb4143dffff985f5750400d6b5b691e982daec9efab2b78da", + "blockHeight": 2812062, + "extra": {}, + "date": "2024-05-06T14:25:34.000Z", + "value": "4900", + "fee": "17241", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c-OUT", + "hash": "b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c", + "type": "OUT", + "senders": [ + "tb1q5q9ted8tnvj36x6ndl82p7wze4zhs6gxrt8rdu" + ], + "recipients": [ + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", + "blockHash": "000000000000008e9b0cd4eb69f924afa9112a12ed35f4c5d3a862757099ff7a", + "blockHeight": 2812060, + "extra": {}, + "date": "2024-05-06T14:25:31.000Z", + "value": "7975", + "fee": "6975", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-9dbd0423ef356dda8ab6a7d44d8bdce6f4cf9e7a8852b23214a4f356919103f7-OUT", + "hash": "9dbd0423ef356dda8ab6a7d44d8bdce6f4cf9e7a8852b23214a4f356919103f7", + "type": "OUT", + "senders": [ + "tb1qqrx4qnvvrltfqkjz2rya0xxx7fhjgv55fmpgmy" + ], + "recipients": [ + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", + "blockHash": "00000000000000df392c19e655e3cb90065767f8cb52a60b087e8bef4a3d2fd4", + "blockHeight": 2810662, + "extra": {}, + "date": "2024-05-02T07:53:19.000Z", + "value": "7975", + "fee": "6975", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-12ebf312956be518826b9989b6925e41c1e86b54a1a655726aee9a73326b8450-OUT", + "hash": "12ebf312956be518826b9989b6925e41c1e86b54a1a655726aee9a73326b8450", + "type": "OUT", + "senders": [ + "tb1qr4ckf85dgctzmaca7zg9z2xj5q5qx75x0uvpz0" + ], + "recipients": [ + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", + "blockHash": "000000000000029c1d61c5accc2cf0bb4122b5adffa2016a6e7c315eea9a5ba5", + "blockHeight": 2808871, + "extra": {}, + "date": "2024-04-30T16:23:21.000Z", + "value": "3651", + "fee": "2651", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a-OUT", + "hash": "fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a", + "type": "OUT", + "senders": [ + "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", + "tb1q0rczr7cpz48jq3747z8ez8x2hyx2xunwr0lm5y" + ], + "recipients": [ + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", + "blockHash": "00000000000002300b019883058de5064a4adcf02fc613bcdc45fcbfab38c0fd", + "blockHeight": 2808759, + "extra": {}, + "date": "2024-04-30T15:02:55.000Z", + "value": "6216", + "fee": "5216", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-5351b3a1d1c2f832ab5236a6bb472c19c0554dcfe82067408ae9ff02abae53bd-OUT", + "hash": "5351b3a1d1c2f832ab5236a6bb472c19c0554dcfe82067408ae9ff02abae53bd", + "type": "OUT", + "senders": [ + "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0" + ], + "recipients": [ + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", + "blockHash": "0000000000000338630f87263192a22fed26a325824009fc04bc306d4c00e6c3", + "blockHeight": 2808748, + "extra": {}, + "date": "2024-04-30T14:49:05.000Z", + "value": "3651", + "fee": "2651", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-ea0071ab676dc35448c7ba6b275aad69dfa98e0346f846dd529d7322c88aabf8-OUT", + "hash": "ea0071ab676dc35448c7ba6b275aad69dfa98e0346f846dd529d7322c88aabf8", + "type": "OUT", + "senders": [ + "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0" + ], + "recipients": [ + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", + "blockHash": "0000000000000055c5690cb5ba47beda5d40a8e7e0bea4519a183b9f1f20ef8c", + "blockHeight": 2808681, + "extra": {}, + "date": "2024-04-30T14:03:12.000Z", + "value": "3651", + "fee": "2651", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6-OUT", + "hash": "fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6", + "type": "OUT", + "senders": [ + "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk", + "tb1qx86xqtf50d287uq89unn0w373k5drmavf75vkh" + ], + "recipients": [ + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", + "blockHash": "00000000000002d0e8c9b1fd3a5a499d5c684060025e9d56797e2cb81089ca47", + "blockHeight": 2808671, + "extra": {}, + "date": "2024-04-30T13:58:35.000Z", + "value": "4933", + "fee": "3933", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-4b403adf0e193ca294f6418f517b1ac1358d9f5a2ceb53d8863e92227a7c1938-OUT", + "hash": "4b403adf0e193ca294f6418f517b1ac1358d9f5a2ceb53d8863e92227a7c1938", + "type": "OUT", + "senders": [ + "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk" + ], + "recipients": [ + "tb1q8kkh3hkwaq6frqrfdkhpmxzzhe5dtclzwlu4y9" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", + "blockHash": "000000000024db40b1e77e9beefd5323e65b1d34b767f3654bc0eada1390a7f3", + "blockHeight": 2586529, + "extra": {}, + "date": "2024-04-16T09:27:18.000Z", + "value": "3000", + "fee": "2000", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902-OUT", + "hash": "f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902", + "type": "OUT", + "senders": [ + "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk" + ], + "recipients": [ + "tb1q8kkh3hkwaq6frqrfdkhpmxzzhe5dtclzwlu4y9" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", + "blockHash": "0000000000000000aed4c9f3d04c79b3446e87e6a4e9cb84986631a9d97c97ad", + "blockHeight": 2586394, + "extra": {}, + "date": "2024-04-15T15:45:15.000Z", + "value": "3232", + "fee": "2232", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-1a4b3b55909256ecca18c215a0bcd8e862a81427afa8760a6fa245a6a72c9888-IN", + "hash": "1a4b3b55909256ecca18c215a0bcd8e862a81427afa8760a6fa245a6a72c9888", + "type": "IN", + "senders": [ + "tb1q3vv6s54gr7ftmlz3rdafvhszqfltntnvwrkwvg", + "tb1qx0psqru962yk34u8zjhzumzvgjv2c7uz35ag2j" + ], + "recipients": [ + "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", + "blockHash": "000000000000124ee9e7aec1fc00e0b343920f6047b11e7fc42fd28f9d84042d", + "blockHeight": 2586076, + "extra": {}, + "date": "2024-04-12T14:11:02.000Z", + "value": "1000000", + "fee": "549", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-dcb3b6a870d0a1b87b7dd05201b2fa16ae6965c08f46eae024dc8300c4e6e44e-IN", + "hash": "dcb3b6a870d0a1b87b7dd05201b2fa16ae6965c08f46eae024dc8300c4e6e44e", + "type": "IN", + "senders": [ + "tb1p2aa8fs4d9h4yeu3e2q6jt7xkzqgp6klc2vavhhf5njzm0vrh3tyq46g67p" + ], + "recipients": [ + "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", + "blockHash": "000000000000124ee9e7aec1fc00e0b343920f6047b11e7fc42fd28f9d84042d", + "blockHeight": 2586076, + "extra": {}, + "date": "2024-04-12T14:11:02.000Z", + "value": "14764", + "fee": "132", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-3a81b0e315a34becc02405fde400f79c4afe2c5f07d855df21f59576a662419f-IN", + "hash": "3a81b0e315a34becc02405fde400f79c4afe2c5f07d855df21f59576a662419f", + "type": "IN", + "senders": [ + "tb1pecshtass32dxesxf69rqerrmrvp8a9va46wgk8r9rfzx2ev4g06ss2jx4s" + ], + "recipients": [ + "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", + "blockHash": "000000000000124ee9e7aec1fc00e0b343920f6047b11e7fc42fd28f9d84042d", + "blockHeight": 2586076, + "extra": {}, + "date": "2024-04-12T14:11:02.000Z", + "value": "1000", + "fee": "291", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-b4ea6cb6403312cb02fbdb0a4a98ea1fe9221672eebdbba3c68f17f5cc8d4612-IN", + "hash": "b4ea6cb6403312cb02fbdb0a4a98ea1fe9221672eebdbba3c68f17f5cc8d4612", + "type": "IN", + "senders": [ + "tb1pc5e5pnt766qp9d6dlhufp0nern556u0cv9klg6w40t23xkg6882s27yhy7" + ], + "recipients": [ + "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", + "blockHash": "000000000000124ee9e7aec1fc00e0b343920f6047b11e7fc42fd28f9d84042d", + "blockHeight": 2586076, + "extra": {}, + "date": "2024-04-12T14:11:02.000Z", + "value": "1000", + "fee": "322", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-292bf44de2a8713cbcbceccfeab33f0478ebfb73cb1e8b09252942d849bcfcdd-IN", + "hash": "292bf44de2a8713cbcbceccfeab33f0478ebfb73cb1e8b09252942d849bcfcdd", + "type": "IN", + "senders": [ + "tb1p7qhtmu58ks34ddgwlfxzqfye7el4hzugga07hg9stz9kpr8k36uqan4rq3" + ], + "recipients": [ + "tb1qx86xqtf50d287uq89unn0w373k5drmavf75vkh" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", + "blockHash": "000000000028f602c2e9c2146b394392270365a394e9c0287c0605207999eeb7", + "blockHeight": 2585947, + "extra": {}, + "date": "2024-04-11T08:24:47.000Z", + "value": "18752", + "fee": "130", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-185b469ab015a7ed5e102543912dc268c1509e3beb222b48cffc6d6e5213f474-IN", + "hash": "185b469ab015a7ed5e102543912dc268c1509e3beb222b48cffc6d6e5213f474", + "type": "IN", + "senders": [ + "tb1pl3pp4x2cxleskff939kd9f90a8ycfprq0w7jlahceafy0cqa9h8qgum8gs" + ], + "recipients": [ + "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", + "blockHash": "00000000015a1f0b83a9c6d145ba3421390ef72f65628fd4b088220649184087", + "blockHeight": 2585850, + "extra": {}, + "date": "2024-04-10T13:07:51.000Z", + "value": "3000", + "fee": "291", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-cdc50ee65b9557642190cfe1d6a4f2b89ade172fa5c15addce1a4d242434d725-IN", + "hash": "cdc50ee65b9557642190cfe1d6a4f2b89ade172fa5c15addce1a4d242434d725", + "type": "IN", + "senders": [ + "tb1ppzsd0ady8k9wcz578a8gphpz746s6vp483zd8phgqx3vy080kwtqqplapn" + ], + "recipients": [ + "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", + "blockHash": "00000000015a1f0b83a9c6d145ba3421390ef72f65628fd4b088220649184087", + "blockHeight": 2585850, + "extra": {}, + "date": "2024-04-10T13:07:51.000Z", + "value": "1000", + "fee": "291", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-1756ba36fae7733fdffc0c5314d556a00b5990564a61d811c0938981ef830cbc-IN", + "hash": "1756ba36fae7733fdffc0c5314d556a00b5990564a61d811c0938981ef830cbc", + "type": "IN", + "senders": [ + "tb1qt0h29js84pupjarxgxf9uc57vh3v3euj7r5fak" + ], + "recipients": [ + "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", + "blockHash": "00000000009c8bb50b2b9bf034e2bc1e228cb0d12439e803579d5767041fee64", + "blockHeight": 2585849, + "extra": {}, + "date": "2024-04-10T12:47:03.000Z", + "value": "489501", + "fee": "220", + "hasFailed": false + } + ], + "pendingOperations": [], + "currencyId": "bitcoin_testnet", + "unitMagnitude": 8, + "lastSyncDate": "2024-06-03T07:55:37.743Z", + "balance": "1135166", + "spendableBalance": "1135166", + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166 + ], + "latestDate": 1717398000000 + }, + "DAY": { + "balances": [ + 0, + 493501, + 512253, + 1529017, + 1529017, + 1529017, + 1525785, + 1522785, + 1522785, + 1522785, + 1522785, + 1522785, + 1522785, + 1522785, + 1522785, + 1522785, + 1522785, + 1522785, + 1522785, + 1522785, + 1522785, + 1500683, + 1500683, + 1492708, + 1492708, + 1492708, + 1492708, + 1476496, + 1476496, + 1476496, + 1476496, + 1476496, + 1476496, + 1476496, + 1469079, + 1469079, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166, + 1135166 + ], + "latestDate": 1717365600000 + }, + "WEEK": { + "balances": [ + 0, + 1529017, + 1522785, + 1522785, + 1492708, + 1476496, + 1135166, + 1135166, + 1135166 + ], + "latestDate": 1717279200000 + } + }, + "xpub": "tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h", + "bitcoinResources": { + "utxos": [ + [ + "f6ee9f6eb35fc2abb14ef246ee6faa3105f3af657cb447761df79743553605c0", + 1, + 2815479, + "tb1qn9mfj32wvxem4m9dujgqsqwp9arp8zp3c7e2ke", + "760211", + 1, + 1 + ], + [ + "507107ff04a3185909cc891cddf906d98c8a4695bd53f38e7c62008ff54788e4", + 1, + 2815479, + "tb1q8t2nc9phmeu39sewkqnca84kh2ffnrkyhww9j0", + "344758", + 1, + 1 + ], + [ + "ca716f4736eaf5c24f0e9190c7173408c7a46c925e10c76cb4488d14278235ac", + 1, + 2815481, + "tb1qjnl3f0lahssa62qvn6vm2fruejfc6e9x2r8c5z", + "30197", + 1, + 0 + ] + ], + "walletAccount": { + "params": { + "xpub": "tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h", + "path": "84'/1'", + "index": 0, + "currency": "bitcoin_testnet", + "network": "testnet", + "derivationMode": "Native SegWit" + }, + "xpub": { + "xpub": "tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h", + "data": { + "txs": [ + { + "id": "292bf44de2a8713cbcbceccfeab33f0478ebfb73cb1e8b09252942d849bcfcdd", + "received_at": "2024-04-11T08:24:47Z", + "fees": "130", + "inputs": [ + { + "output_hash": "325d3c180e46899cd727b90ce9b73839adbebd7f2307f19db186db133100d7ce", + "output_index": 0, + "value": "2013656253", + "address": "tb1p7qhtmu58ks34ddgwlfxzqfye7el4hzugga07hg9stz9kpr8k36uqan4rq3", + "sequence": 4294967293 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "18752", + "address": "tb1qx86xqtf50d287uq89unn0w373k5drmavf75vkh", + "spent_at_height": null, + "output_hash": "292bf44de2a8713cbcbceccfeab33f0478ebfb73cb1e8b09252942d849bcfcdd", + "block_height": 2585947, + "rbf": true + }, + { + "output_index": 1, + "value": "2013637371", + "address": "tb1qu5cutnd0d26upy4qcjuwjqma9s5mpsfx7ltc0l", + "spent_at_height": null, + "output_hash": "292bf44de2a8713cbcbceccfeab33f0478ebfb73cb1e8b09252942d849bcfcdd", + "block_height": 2585947, + "rbf": true + } + ], + "block": { + "hash": "000000000028f602c2e9c2146b394392270365a394e9c0287c0605207999eeb7", + "height": 2585947, + "time": "2024-04-11T08:24:47Z" + }, + "tx_index": 1279, + "account": 0, + "index": 1, + "address": "tb1qx86xqtf50d287uq89unn0w373k5drmavf75vkh" + }, + { + "id": "1756ba36fae7733fdffc0c5314d556a00b5990564a61d811c0938981ef830cbc", + "received_at": "2024-04-10T12:47:03Z", + "fees": "220", + "inputs": [ + { + "output_hash": "f6b8c04a98acbba18c59d17c021e4c91aef6fd5f05938529285aa955cd1d399c", + "output_index": 1, + "value": "489721", + "address": "tb1qt0h29js84pupjarxgxf9uc57vh3v3euj7r5fak", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "489501", + "address": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk", + "spent_at_height": null, + "output_hash": "1756ba36fae7733fdffc0c5314d556a00b5990564a61d811c0938981ef830cbc", + "block_height": 2585849, + "rbf": true + } + ], + "block": { + "hash": "00000000009c8bb50b2b9bf034e2bc1e228cb0d12439e803579d5767041fee64", + "height": 2585849, + "time": "2024-04-10T12:47:03Z" + }, + "tx_index": 268, + "account": 0, + "index": 0, + "address": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk" + }, + { + "id": "185b469ab015a7ed5e102543912dc268c1509e3beb222b48cffc6d6e5213f474", + "received_at": "2024-04-10T13:07:51Z", + "fees": "291", + "inputs": [ + { + "output_hash": "287f720e73e9c0e2cbb95b9647df0b6251bd09c4a70e34bf2d615655e72960ea", + "output_index": 4, + "value": "652609929", + "address": "tb1pl3pp4x2cxleskff939kd9f90a8ycfprq0w7jlahceafy0cqa9h8qgum8gs", + "sequence": 4294967293 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "3000", + "address": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk", + "spent_at_height": null, + "output_hash": "185b469ab015a7ed5e102543912dc268c1509e3beb222b48cffc6d6e5213f474", + "block_height": 2585850, + "rbf": true + }, + { + "output_index": 1, + "value": "6000", + "address": "tb1q3nv2zmqjl98rv6reeqnng537uc439p0ht94a08", + "spent_at_height": null, + "output_hash": "185b469ab015a7ed5e102543912dc268c1509e3beb222b48cffc6d6e5213f474", + "block_height": 2585850, + "rbf": true + }, + { + "output_index": 2, + "value": "652516638", + "address": "tb1ppwj82sgfkkk22qu452efu5f87pdjw2wtz68nf65u0lawre08xcpqkspdcl", + "spent_at_height": 2585850, + "output_hash": "185b469ab015a7ed5e102543912dc268c1509e3beb222b48cffc6d6e5213f474", + "block_height": 2585850, + "rbf": true + }, + { + "output_index": 3, + "value": "73000", + "address": "tb1ph4c5egccqdkw62n7vtztrmyknf7caxjuzv96ptlzewh8skkedhxsgzc4d2", + "spent_at_height": null, + "output_hash": "185b469ab015a7ed5e102543912dc268c1509e3beb222b48cffc6d6e5213f474", + "block_height": 2585850, + "rbf": true + }, + { + "output_index": 4, + "value": "10000", + "address": "tb1p5r87v4lhczhv4h4aduly8ytl8lx55y2ak9xkkt0taqxa7hql506suqa3sm", + "spent_at_height": null, + "output_hash": "185b469ab015a7ed5e102543912dc268c1509e3beb222b48cffc6d6e5213f474", + "block_height": 2585850, + "rbf": true + }, + { + "output_index": 5, + "value": "1000", + "address": "tb1qrvh2qtvwj2skkj2k4psgj5j5wxemwy4ddc3394", + "spent_at_height": null, + "output_hash": "185b469ab015a7ed5e102543912dc268c1509e3beb222b48cffc6d6e5213f474", + "block_height": 2585850, + "rbf": true + } + ], + "block": { + "hash": "00000000015a1f0b83a9c6d145ba3421390ef72f65628fd4b088220649184087", + "height": 2585850, + "time": "2024-04-10T13:07:51Z" + }, + "tx_index": 1688, + "account": 0, + "index": 0, + "address": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk" + }, + { + "id": "cdc50ee65b9557642190cfe1d6a4f2b89ade172fa5c15addce1a4d242434d725", + "received_at": "2024-04-10T13:07:51Z", + "fees": "291", + "inputs": [ + { + "output_hash": "109add5ba40419f25dcd4dda0e06c6cedf8b5940280f8851f810385778ba4b6a", + "output_index": 1, + "value": "740811180", + "address": "tb1ppzsd0ady8k9wcz578a8gphpz746s6vp483zd8phgqx3vy080kwtqqplapn", + "sequence": 4294967293 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk", + "spent_at_height": null, + "output_hash": "cdc50ee65b9557642190cfe1d6a4f2b89ade172fa5c15addce1a4d242434d725", + "block_height": 2585850, + "rbf": true + }, + { + "output_index": 1, + "value": "19000", + "address": "tb1p5r87v4lhczhv4h4aduly8ytl8lx55y2ak9xkkt0taqxa7hql506suqa3sm", + "spent_at_height": null, + "output_hash": "cdc50ee65b9557642190cfe1d6a4f2b89ade172fa5c15addce1a4d242434d725", + "block_height": 2585850, + "rbf": true + }, + { + "output_index": 2, + "value": "3000", + "address": "tb1q3nv2zmqjl98rv6reeqnng537uc439p0ht94a08", + "spent_at_height": null, + "output_hash": "cdc50ee65b9557642190cfe1d6a4f2b89ade172fa5c15addce1a4d242434d725", + "block_height": 2585850, + "rbf": true + }, + { + "output_index": 3, + "value": "1000", + "address": "tb1qvtgdvlva0sal0j09k84mp72ppyg7n5df0nmdzp", + "spent_at_height": null, + "output_hash": "cdc50ee65b9557642190cfe1d6a4f2b89ade172fa5c15addce1a4d242434d725", + "block_height": 2585850, + "rbf": true + }, + { + "output_index": 4, + "value": "740713889", + "address": "tb1p5wt63s45h528n96zd68y9ljvfdz3n8pjatyu5m7aa8nc9yn6m4cqn9j0xm", + "spent_at_height": 2585850, + "output_hash": "cdc50ee65b9557642190cfe1d6a4f2b89ade172fa5c15addce1a4d242434d725", + "block_height": 2585850, + "rbf": true + }, + { + "output_index": 5, + "value": "73000", + "address": "tb1ph4c5egccqdkw62n7vtztrmyknf7caxjuzv96ptlzewh8skkedhxsgzc4d2", + "spent_at_height": null, + "output_hash": "cdc50ee65b9557642190cfe1d6a4f2b89ade172fa5c15addce1a4d242434d725", + "block_height": 2585850, + "rbf": true + } + ], + "block": { + "hash": "00000000015a1f0b83a9c6d145ba3421390ef72f65628fd4b088220649184087", + "height": 2585850, + "time": "2024-04-10T13:07:51Z" + }, + "tx_index": 1715, + "account": 0, + "index": 0, + "address": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk" + }, + { + "id": "f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902", + "received_at": "2024-04-15T15:45:15Z", + "fees": "2232", + "inputs": [ + { + "output_hash": "1756ba36fae7733fdffc0c5314d556a00b5990564a61d811c0938981ef830cbc", + "output_index": 0, + "value": "489501", + "address": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1q8kkh3hkwaq6frqrfdkhpmxzzhe5dtclzwlu4y9", + "spent_at_height": null, + "output_hash": "f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902", + "block_height": 2586394, + "rbf": true + }, + { + "output_index": 1, + "value": "486269", + "address": "tb1q0rczr7cpz48jq3747z8ez8x2hyx2xunwr0lm5y", + "spent_at_height": null, + "output_hash": "f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902", + "block_height": 2586394, + "rbf": true + } + ], + "block": { + "hash": "0000000000000000aed4c9f3d04c79b3446e87e6a4e9cb84986631a9d97c97ad", + "height": 2586394, + "time": "2024-04-15T15:45:15Z" + }, + "tx_index": 898, + "account": 0, + "index": 0, + "address": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk" + }, + { + "id": "f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902", + "received_at": "2024-04-15T15:45:15Z", + "fees": "2232", + "inputs": [ + { + "output_hash": "1756ba36fae7733fdffc0c5314d556a00b5990564a61d811c0938981ef830cbc", + "output_index": 0, + "value": "489501", + "address": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1q8kkh3hkwaq6frqrfdkhpmxzzhe5dtclzwlu4y9", + "spent_at_height": null, + "output_hash": "f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902", + "block_height": 2586394, + "rbf": true + }, + { + "output_index": 1, + "value": "486269", + "address": "tb1q0rczr7cpz48jq3747z8ez8x2hyx2xunwr0lm5y", + "spent_at_height": null, + "output_hash": "f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902", + "block_height": 2586394, + "rbf": true + } + ], + "block": { + "hash": "0000000000000000aed4c9f3d04c79b3446e87e6a4e9cb84986631a9d97c97ad", + "height": 2586394, + "time": "2024-04-15T15:45:15Z" + }, + "tx_index": 898, + "account": 1, + "index": 0, + "address": "tb1q0rczr7cpz48jq3747z8ez8x2hyx2xunwr0lm5y" + }, + { + "id": "4b403adf0e193ca294f6418f517b1ac1358d9f5a2ceb53d8863e92227a7c1938", + "received_at": "2024-04-16T09:27:18Z", + "fees": "2000", + "inputs": [ + { + "output_hash": "185b469ab015a7ed5e102543912dc268c1509e3beb222b48cffc6d6e5213f474", + "output_index": 0, + "value": "3000", + "address": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1q8kkh3hkwaq6frqrfdkhpmxzzhe5dtclzwlu4y9", + "spent_at_height": null, + "output_hash": "4b403adf0e193ca294f6418f517b1ac1358d9f5a2ceb53d8863e92227a7c1938", + "block_height": 2586529, + "rbf": true + } + ], + "block": { + "hash": "000000000024db40b1e77e9beefd5323e65b1d34b767f3654bc0eada1390a7f3", + "height": 2586529, + "time": "2024-04-16T09:27:18Z" + }, + "tx_index": 3084, + "account": 0, + "index": 0, + "address": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk" + }, + { + "id": "fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6", + "received_at": "2024-04-30T13:58:35Z", + "fees": "3933", + "inputs": [ + { + "output_hash": "cdc50ee65b9557642190cfe1d6a4f2b89ade172fa5c15addce1a4d242434d725", + "output_index": 0, + "value": "1000", + "address": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk", + "sequence": 0 + }, + { + "output_hash": "292bf44de2a8713cbcbceccfeab33f0478ebfb73cb1e8b09252942d849bcfcdd", + "output_index": 0, + "value": "18752", + "address": "tb1qx86xqtf50d287uq89unn0w373k5drmavf75vkh", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6", + "block_height": 2808671, + "rbf": true + }, + { + "output_index": 1, + "value": "14819", + "address": "tb1qr4ckf85dgctzmaca7zg9z2xj5q5qx75x0uvpz0", + "spent_at_height": null, + "output_hash": "fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6", + "block_height": 2808671, + "rbf": true + } + ], + "block": { + "hash": "00000000000002d0e8c9b1fd3a5a499d5c684060025e9d56797e2cb81089ca47", + "height": 2808671, + "time": "2024-04-30T13:58:35Z" + }, + "tx_index": 271, + "account": 0, + "index": 0, + "address": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk" + }, + { + "id": "fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6", + "received_at": "2024-04-30T13:58:35Z", + "fees": "3933", + "inputs": [ + { + "output_hash": "cdc50ee65b9557642190cfe1d6a4f2b89ade172fa5c15addce1a4d242434d725", + "output_index": 0, + "value": "1000", + "address": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk", + "sequence": 0 + }, + { + "output_hash": "292bf44de2a8713cbcbceccfeab33f0478ebfb73cb1e8b09252942d849bcfcdd", + "output_index": 0, + "value": "18752", + "address": "tb1qx86xqtf50d287uq89unn0w373k5drmavf75vkh", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6", + "block_height": 2808671, + "rbf": true + }, + { + "output_index": 1, + "value": "14819", + "address": "tb1qr4ckf85dgctzmaca7zg9z2xj5q5qx75x0uvpz0", + "spent_at_height": null, + "output_hash": "fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6", + "block_height": 2808671, + "rbf": true + } + ], + "block": { + "hash": "00000000000002d0e8c9b1fd3a5a499d5c684060025e9d56797e2cb81089ca47", + "height": 2808671, + "time": "2024-04-30T13:58:35Z" + }, + "tx_index": 271, + "account": 0, + "index": 1, + "address": "tb1qx86xqtf50d287uq89unn0w373k5drmavf75vkh" + }, + { + "id": "fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6", + "received_at": "2024-04-30T13:58:35Z", + "fees": "3933", + "inputs": [ + { + "output_hash": "cdc50ee65b9557642190cfe1d6a4f2b89ade172fa5c15addce1a4d242434d725", + "output_index": 0, + "value": "1000", + "address": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk", + "sequence": 0 + }, + { + "output_hash": "292bf44de2a8713cbcbceccfeab33f0478ebfb73cb1e8b09252942d849bcfcdd", + "output_index": 0, + "value": "18752", + "address": "tb1qx86xqtf50d287uq89unn0w373k5drmavf75vkh", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6", + "block_height": 2808671, + "rbf": true + }, + { + "output_index": 1, + "value": "14819", + "address": "tb1qr4ckf85dgctzmaca7zg9z2xj5q5qx75x0uvpz0", + "spent_at_height": null, + "output_hash": "fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6", + "block_height": 2808671, + "rbf": true + } + ], + "block": { + "hash": "00000000000002d0e8c9b1fd3a5a499d5c684060025e9d56797e2cb81089ca47", + "height": 2808671, + "time": "2024-04-30T13:58:35Z" + }, + "tx_index": 271, + "account": 1, + "index": 1, + "address": "tb1qr4ckf85dgctzmaca7zg9z2xj5q5qx75x0uvpz0" + }, + { + "id": "ea0071ab676dc35448c7ba6b275aad69dfa98e0346f846dd529d7322c88aabf8", + "received_at": "2024-04-30T14:03:12Z", + "fees": "2651", + "inputs": [ + { + "output_hash": "1a4b3b55909256ecca18c215a0bcd8e862a81427afa8760a6fa245a6a72c9888", + "output_index": 0, + "value": "1000000", + "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "ea0071ab676dc35448c7ba6b275aad69dfa98e0346f846dd529d7322c88aabf8", + "block_height": 2808681, + "rbf": true + }, + { + "output_index": 1, + "value": "996349", + "address": "tb1qqrx4qnvvrltfqkjz2rya0xxx7fhjgv55fmpgmy", + "spent_at_height": null, + "output_hash": "ea0071ab676dc35448c7ba6b275aad69dfa98e0346f846dd529d7322c88aabf8", + "block_height": 2808681, + "rbf": true + } + ], + "block": { + "hash": "0000000000000055c5690cb5ba47beda5d40a8e7e0bea4519a183b9f1f20ef8c", + "height": 2808681, + "time": "2024-04-30T14:03:12Z" + }, + "tx_index": 53, + "account": 1, + "index": 2, + "address": "tb1qqrx4qnvvrltfqkjz2rya0xxx7fhjgv55fmpgmy" + }, + { + "id": "1a4b3b55909256ecca18c215a0bcd8e862a81427afa8760a6fa245a6a72c9888", + "received_at": "2024-04-12T14:11:02Z", + "fees": "549", + "inputs": [ + { + "output_hash": "158795770aaa24420aff7f11b8769f71337540b1066b8d16dbf1969ea92fa991", + "output_index": 0, + "value": "100", + "address": "tb1q3vv6s54gr7ftmlz3rdafvhszqfltntnvwrkwvg", + "sequence": 0 + }, + { + "output_hash": "bfa1e34839fb666474271ef446e82f688a9522b480bb5c94d2d40d30511b75e6", + "output_index": 0, + "value": "800000", + "address": "tb1q3vv6s54gr7ftmlz3rdafvhszqfltntnvwrkwvg", + "sequence": 0 + }, + { + "output_hash": "f179a6ff7712287b00c2a3236a6e85ba9d55150f347da206fd21e53035c1afc0", + "output_index": 1, + "value": "681552", + "address": "tb1qx0psqru962yk34u8zjhzumzvgjv2c7uz35ag2j", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000000", + "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", + "spent_at_height": null, + "output_hash": "1a4b3b55909256ecca18c215a0bcd8e862a81427afa8760a6fa245a6a72c9888", + "block_height": 2586076, + "rbf": true + }, + { + "output_index": 1, + "value": "481103", + "address": "tb1qkglmpj3584ppyxmyh8ehc0643uku3uwdf93u8s", + "spent_at_height": null, + "output_hash": "1a4b3b55909256ecca18c215a0bcd8e862a81427afa8760a6fa245a6a72c9888", + "block_height": 2586076, + "rbf": true + } + ], + "block": { + "hash": "000000000000124ee9e7aec1fc00e0b343920f6047b11e7fc42fd28f9d84042d", + "height": 2586076, + "time": "2024-04-12T14:11:02Z" + }, + "tx_index": 2104, + "account": 0, + "index": 2, + "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0" + }, + { + "id": "dcb3b6a870d0a1b87b7dd05201b2fa16ae6965c08f46eae024dc8300c4e6e44e", + "received_at": "2024-04-12T14:11:02Z", + "fees": "132", + "inputs": [ + { + "output_hash": "e4eccfce9caf08afbf205d50b8ed0a57f27fbdcf5dead07f9bf419772f80514c", + "output_index": 1, + "value": "2865033137", + "address": "tb1p2aa8fs4d9h4yeu3e2q6jt7xkzqgp6klc2vavhhf5njzm0vrh3tyq46g67p", + "sequence": 4294967293 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "14764", + "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", + "spent_at_height": null, + "output_hash": "dcb3b6a870d0a1b87b7dd05201b2fa16ae6965c08f46eae024dc8300c4e6e44e", + "block_height": 2586076, + "rbf": true + }, + { + "output_index": 1, + "value": "2865018241", + "address": "tb1qrc2pquldld7kylqxu09hdzta9r7qcc4tcz7mjd", + "spent_at_height": null, + "output_hash": "dcb3b6a870d0a1b87b7dd05201b2fa16ae6965c08f46eae024dc8300c4e6e44e", + "block_height": 2586076, + "rbf": true + } + ], + "block": { + "hash": "000000000000124ee9e7aec1fc00e0b343920f6047b11e7fc42fd28f9d84042d", + "height": 2586076, + "time": "2024-04-12T14:11:02Z" + }, + "tx_index": 3965, + "account": 0, + "index": 2, + "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0" + }, + { + "id": "3a81b0e315a34becc02405fde400f79c4afe2c5f07d855df21f59576a662419f", + "received_at": "2024-04-12T14:11:02Z", + "fees": "291", + "inputs": [ + { + "output_hash": "82a5412ea5f1397dabdda2b738a3f0f90b9955d244580dacb5938fae1ef9df06", + "output_index": 2, + "value": "715365582", + "address": "tb1pecshtass32dxesxf69rqerrmrvp8a9va46wgk8r9rfzx2ev4g06ss2jx4s", + "sequence": 4294967293 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "2000", + "address": "tb1q3nv2zmqjl98rv6reeqnng537uc439p0ht94a08", + "spent_at_height": null, + "output_hash": "3a81b0e315a34becc02405fde400f79c4afe2c5f07d855df21f59576a662419f", + "block_height": 2586076, + "rbf": true + }, + { + "output_index": 1, + "value": "1000", + "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", + "spent_at_height": null, + "output_hash": "3a81b0e315a34becc02405fde400f79c4afe2c5f07d855df21f59576a662419f", + "block_height": 2586076, + "rbf": true + }, + { + "output_index": 2, + "value": "3000", + "address": "tb1p9rgq4h2qr372eaue4fpaqayhy5vv0hxq9346c9qrzec8p9krs5gqfj6h0c", + "spent_at_height": null, + "output_hash": "3a81b0e315a34becc02405fde400f79c4afe2c5f07d855df21f59576a662419f", + "block_height": 2586076, + "rbf": true + }, + { + "output_index": 3, + "value": "1000", + "address": "tb1q9y0tnqzskhuv2x9qeusz8znxwtsz9rz06s6v8y", + "spent_at_height": null, + "output_hash": "3a81b0e315a34becc02405fde400f79c4afe2c5f07d855df21f59576a662419f", + "block_height": 2586076, + "rbf": true + }, + { + "output_index": 4, + "value": "98000", + "address": "tb1ph4c5egccqdkw62n7vtztrmyknf7caxjuzv96ptlzewh8skkedhxsgzc4d2", + "spent_at_height": null, + "output_hash": "3a81b0e315a34becc02405fde400f79c4afe2c5f07d855df21f59576a662419f", + "block_height": 2586076, + "rbf": true + }, + { + "output_index": 5, + "value": "715260291", + "address": "tb1pc5e5pnt766qp9d6dlhufp0nern556u0cv9klg6w40t23xkg6882s27yhy7", + "spent_at_height": 2586076, + "output_hash": "3a81b0e315a34becc02405fde400f79c4afe2c5f07d855df21f59576a662419f", + "block_height": 2586076, + "rbf": true + } + ], + "block": { + "hash": "000000000000124ee9e7aec1fc00e0b343920f6047b11e7fc42fd28f9d84042d", + "height": 2586076, + "time": "2024-04-12T14:11:02Z" + }, + "tx_index": 4161, + "account": 0, + "index": 2, + "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0" + }, + { + "id": "b4ea6cb6403312cb02fbdb0a4a98ea1fe9221672eebdbba3c68f17f5cc8d4612", + "received_at": "2024-04-12T14:11:02Z", + "fees": "322", + "inputs": [ + { + "output_hash": "3a81b0e315a34becc02405fde400f79c4afe2c5f07d855df21f59576a662419f", + "output_index": 5, + "value": "715260291", + "address": "tb1pc5e5pnt766qp9d6dlhufp0nern556u0cv9klg6w40t23xkg6882s27yhy7", + "sequence": 4294967293 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "3000", + "address": "tb1qy4n0amufsudmkvscalkaze9ygnmdh8nxuyn0su", + "spent_at_height": null, + "output_hash": "b4ea6cb6403312cb02fbdb0a4a98ea1fe9221672eebdbba3c68f17f5cc8d4612", + "block_height": 2586076, + "rbf": true + }, + { + "output_index": 1, + "value": "715166969", + "address": "tb1pk7kaxs533dglczwuxz3cfse4d80jvpyyl03z2e6ww43xp0aet6lsjayck7", + "spent_at_height": 2586077, + "output_hash": "b4ea6cb6403312cb02fbdb0a4a98ea1fe9221672eebdbba3c68f17f5cc8d4612", + "block_height": 2586076, + "rbf": true + }, + { + "output_index": 2, + "value": "82000", + "address": "tb1ph4c5egccqdkw62n7vtztrmyknf7caxjuzv96ptlzewh8skkedhxsgzc4d2", + "spent_at_height": null, + "output_hash": "b4ea6cb6403312cb02fbdb0a4a98ea1fe9221672eebdbba3c68f17f5cc8d4612", + "block_height": 2586076, + "rbf": true + }, + { + "output_index": 3, + "value": "1000", + "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", + "spent_at_height": null, + "output_hash": "b4ea6cb6403312cb02fbdb0a4a98ea1fe9221672eebdbba3c68f17f5cc8d4612", + "block_height": 2586076, + "rbf": true + }, + { + "output_index": 4, + "value": "1000", + "address": "tb1q9y0tnqzskhuv2x9qeusz8znxwtsz9rz06s6v8y", + "spent_at_height": null, + "output_hash": "b4ea6cb6403312cb02fbdb0a4a98ea1fe9221672eebdbba3c68f17f5cc8d4612", + "block_height": 2586076, + "rbf": true + }, + { + "output_index": 5, + "value": "3000", + "address": "tb1q3nv2zmqjl98rv6reeqnng537uc439p0ht94a08", + "spent_at_height": null, + "output_hash": "b4ea6cb6403312cb02fbdb0a4a98ea1fe9221672eebdbba3c68f17f5cc8d4612", + "block_height": 2586076, + "rbf": true + }, + { + "output_index": 6, + "value": "3000", + "address": "tb1p9rgq4h2qr372eaue4fpaqayhy5vv0hxq9346c9qrzec8p9krs5gqfj6h0c", + "spent_at_height": null, + "output_hash": "b4ea6cb6403312cb02fbdb0a4a98ea1fe9221672eebdbba3c68f17f5cc8d4612", + "block_height": 2586076, + "rbf": true + } + ], + "block": { + "hash": "000000000000124ee9e7aec1fc00e0b343920f6047b11e7fc42fd28f9d84042d", + "height": 2586076, + "time": "2024-04-12T14:11:02Z" + }, + "tx_index": 4172, + "account": 0, + "index": 2, + "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0" + }, + { + "id": "ea0071ab676dc35448c7ba6b275aad69dfa98e0346f846dd529d7322c88aabf8", + "received_at": "2024-04-30T14:03:12Z", + "fees": "2651", + "inputs": [ + { + "output_hash": "1a4b3b55909256ecca18c215a0bcd8e862a81427afa8760a6fa245a6a72c9888", + "output_index": 0, + "value": "1000000", + "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "ea0071ab676dc35448c7ba6b275aad69dfa98e0346f846dd529d7322c88aabf8", + "block_height": 2808681, + "rbf": true + }, + { + "output_index": 1, + "value": "996349", + "address": "tb1qqrx4qnvvrltfqkjz2rya0xxx7fhjgv55fmpgmy", + "spent_at_height": null, + "output_hash": "ea0071ab676dc35448c7ba6b275aad69dfa98e0346f846dd529d7322c88aabf8", + "block_height": 2808681, + "rbf": true + } + ], + "block": { + "hash": "0000000000000055c5690cb5ba47beda5d40a8e7e0bea4519a183b9f1f20ef8c", + "height": 2808681, + "time": "2024-04-30T14:03:12Z" + }, + "tx_index": 53, + "account": 0, + "index": 2, + "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0" + }, + { + "id": "5351b3a1d1c2f832ab5236a6bb472c19c0554dcfe82067408ae9ff02abae53bd", + "received_at": "2024-04-30T14:49:05Z", + "fees": "2651", + "inputs": [ + { + "output_hash": "dcb3b6a870d0a1b87b7dd05201b2fa16ae6965c08f46eae024dc8300c4e6e44e", + "output_index": 0, + "value": "14764", + "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "5351b3a1d1c2f832ab5236a6bb472c19c0554dcfe82067408ae9ff02abae53bd", + "block_height": 2808748, + "rbf": true + }, + { + "output_index": 1, + "value": "11113", + "address": "tb1q5q9ted8tnvj36x6ndl82p7wze4zhs6gxrt8rdu", + "spent_at_height": null, + "output_hash": "5351b3a1d1c2f832ab5236a6bb472c19c0554dcfe82067408ae9ff02abae53bd", + "block_height": 2808748, + "rbf": true + } + ], + "block": { + "hash": "0000000000000338630f87263192a22fed26a325824009fc04bc306d4c00e6c3", + "height": 2808748, + "time": "2024-04-30T14:49:05Z" + }, + "tx_index": 238, + "account": 0, + "index": 2, + "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0" + }, + { + "id": "fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a", + "received_at": "2024-04-30T15:02:55Z", + "fees": "5216", + "inputs": [ + { + "output_hash": "3a81b0e315a34becc02405fde400f79c4afe2c5f07d855df21f59576a662419f", + "output_index": 1, + "value": "1000", + "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", + "sequence": 0 + }, + { + "output_hash": "b4ea6cb6403312cb02fbdb0a4a98ea1fe9221672eebdbba3c68f17f5cc8d4612", + "output_index": 3, + "value": "1000", + "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", + "sequence": 0 + }, + { + "output_hash": "f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902", + "output_index": 1, + "value": "486269", + "address": "tb1q0rczr7cpz48jq3747z8ez8x2hyx2xunwr0lm5y", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a", + "block_height": 2808759, + "rbf": true + }, + { + "output_index": 1, + "value": "482053", + "address": "tb1qslf059lsyurz6k0kgvjj9rw8pr75f0ts2a66a3", + "spent_at_height": null, + "output_hash": "fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a", + "block_height": 2808759, + "rbf": true + } + ], + "block": { + "hash": "00000000000002300b019883058de5064a4adcf02fc613bcdc45fcbfab38c0fd", + "height": 2808759, + "time": "2024-04-30T15:02:55Z" + }, + "tx_index": 221, + "account": 0, + "index": 2, + "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0" + }, + { + "id": "fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a", + "received_at": "2024-04-30T15:02:55Z", + "fees": "5216", + "inputs": [ + { + "output_hash": "3a81b0e315a34becc02405fde400f79c4afe2c5f07d855df21f59576a662419f", + "output_index": 1, + "value": "1000", + "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", + "sequence": 0 + }, + { + "output_hash": "b4ea6cb6403312cb02fbdb0a4a98ea1fe9221672eebdbba3c68f17f5cc8d4612", + "output_index": 3, + "value": "1000", + "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", + "sequence": 0 + }, + { + "output_hash": "f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902", + "output_index": 1, + "value": "486269", + "address": "tb1q0rczr7cpz48jq3747z8ez8x2hyx2xunwr0lm5y", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a", + "block_height": 2808759, + "rbf": true + }, + { + "output_index": 1, + "value": "482053", + "address": "tb1qslf059lsyurz6k0kgvjj9rw8pr75f0ts2a66a3", + "spent_at_height": null, + "output_hash": "fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a", + "block_height": 2808759, + "rbf": true + } + ], + "block": { + "hash": "00000000000002300b019883058de5064a4adcf02fc613bcdc45fcbfab38c0fd", + "height": 2808759, + "time": "2024-04-30T15:02:55Z" + }, + "tx_index": 221, + "account": 1, + "index": 0, + "address": "tb1q0rczr7cpz48jq3747z8ez8x2hyx2xunwr0lm5y" + }, + { + "id": "fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a", + "received_at": "2024-04-30T15:02:55Z", + "fees": "5216", + "inputs": [ + { + "output_hash": "3a81b0e315a34becc02405fde400f79c4afe2c5f07d855df21f59576a662419f", + "output_index": 1, + "value": "1000", + "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", + "sequence": 0 + }, + { + "output_hash": "b4ea6cb6403312cb02fbdb0a4a98ea1fe9221672eebdbba3c68f17f5cc8d4612", + "output_index": 3, + "value": "1000", + "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", + "sequence": 0 + }, + { + "output_hash": "f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902", + "output_index": 1, + "value": "486269", + "address": "tb1q0rczr7cpz48jq3747z8ez8x2hyx2xunwr0lm5y", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a", + "block_height": 2808759, + "rbf": true + }, + { + "output_index": 1, + "value": "482053", + "address": "tb1qslf059lsyurz6k0kgvjj9rw8pr75f0ts2a66a3", + "spent_at_height": null, + "output_hash": "fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a", + "block_height": 2808759, + "rbf": true + } + ], + "block": { + "hash": "00000000000002300b019883058de5064a4adcf02fc613bcdc45fcbfab38c0fd", + "height": 2808759, + "time": "2024-04-30T15:02:55Z" + }, + "tx_index": 221, + "account": 1, + "index": 4, + "address": "tb1qslf059lsyurz6k0kgvjj9rw8pr75f0ts2a66a3" + }, + { + "id": "12ebf312956be518826b9989b6925e41c1e86b54a1a655726aee9a73326b8450", + "received_at": "2024-04-30T16:23:21Z", + "fees": "2651", + "inputs": [ + { + "output_hash": "fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6", + "output_index": 1, + "value": "14819", + "address": "tb1qr4ckf85dgctzmaca7zg9z2xj5q5qx75x0uvpz0", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "12ebf312956be518826b9989b6925e41c1e86b54a1a655726aee9a73326b8450", + "block_height": 2808871, + "rbf": true + }, + { + "output_index": 1, + "value": "11168", + "address": "tb1q3hmw2894p6fhencz0syk9v6kyh4heyffm4hz4f", + "spent_at_height": null, + "output_hash": "12ebf312956be518826b9989b6925e41c1e86b54a1a655726aee9a73326b8450", + "block_height": 2808871, + "rbf": true + } + ], + "block": { + "hash": "000000000000029c1d61c5accc2cf0bb4122b5adffa2016a6e7c315eea9a5ba5", + "height": 2808871, + "time": "2024-04-30T16:23:21Z" + }, + "tx_index": 196, + "account": 1, + "index": 1, + "address": "tb1qr4ckf85dgctzmaca7zg9z2xj5q5qx75x0uvpz0" + }, + { + "id": "12ebf312956be518826b9989b6925e41c1e86b54a1a655726aee9a73326b8450", + "received_at": "2024-04-30T16:23:21Z", + "fees": "2651", + "inputs": [ + { + "output_hash": "fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6", + "output_index": 1, + "value": "14819", + "address": "tb1qr4ckf85dgctzmaca7zg9z2xj5q5qx75x0uvpz0", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "12ebf312956be518826b9989b6925e41c1e86b54a1a655726aee9a73326b8450", + "block_height": 2808871, + "rbf": true + }, + { + "output_index": 1, + "value": "11168", + "address": "tb1q3hmw2894p6fhencz0syk9v6kyh4heyffm4hz4f", + "spent_at_height": null, + "output_hash": "12ebf312956be518826b9989b6925e41c1e86b54a1a655726aee9a73326b8450", + "block_height": 2808871, + "rbf": true + } + ], + "block": { + "hash": "000000000000029c1d61c5accc2cf0bb4122b5adffa2016a6e7c315eea9a5ba5", + "height": 2808871, + "time": "2024-04-30T16:23:21Z" + }, + "tx_index": 196, + "account": 1, + "index": 5, + "address": "tb1q3hmw2894p6fhencz0syk9v6kyh4heyffm4hz4f" + }, + { + "id": "9dbd0423ef356dda8ab6a7d44d8bdce6f4cf9e7a8852b23214a4f356919103f7", + "received_at": "2024-05-02T07:53:19Z", + "fees": "6975", + "inputs": [ + { + "output_hash": "ea0071ab676dc35448c7ba6b275aad69dfa98e0346f846dd529d7322c88aabf8", + "output_index": 1, + "value": "996349", + "address": "tb1qqrx4qnvvrltfqkjz2rya0xxx7fhjgv55fmpgmy", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "9dbd0423ef356dda8ab6a7d44d8bdce6f4cf9e7a8852b23214a4f356919103f7", + "block_height": 2810662, + "rbf": true + }, + { + "output_index": 1, + "value": "988374", + "address": "tb1qnf94s85m3qqfu2pgda2pdz5f6xfjxg6p4z9qkh", + "spent_at_height": null, + "output_hash": "9dbd0423ef356dda8ab6a7d44d8bdce6f4cf9e7a8852b23214a4f356919103f7", + "block_height": 2810662, + "rbf": true + } + ], + "block": { + "hash": "00000000000000df392c19e655e3cb90065767f8cb52a60b087e8bef4a3d2fd4", + "height": 2810662, + "time": "2024-05-02T07:53:19Z" + }, + "tx_index": 611, + "account": 1, + "index": 2, + "address": "tb1qqrx4qnvvrltfqkjz2rya0xxx7fhjgv55fmpgmy" + }, + { + "id": "5351b3a1d1c2f832ab5236a6bb472c19c0554dcfe82067408ae9ff02abae53bd", + "received_at": "2024-04-30T14:49:05Z", + "fees": "2651", + "inputs": [ + { + "output_hash": "dcb3b6a870d0a1b87b7dd05201b2fa16ae6965c08f46eae024dc8300c4e6e44e", + "output_index": 0, + "value": "14764", + "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "5351b3a1d1c2f832ab5236a6bb472c19c0554dcfe82067408ae9ff02abae53bd", + "block_height": 2808748, + "rbf": true + }, + { + "output_index": 1, + "value": "11113", + "address": "tb1q5q9ted8tnvj36x6ndl82p7wze4zhs6gxrt8rdu", + "spent_at_height": null, + "output_hash": "5351b3a1d1c2f832ab5236a6bb472c19c0554dcfe82067408ae9ff02abae53bd", + "block_height": 2808748, + "rbf": true + } + ], + "block": { + "hash": "0000000000000338630f87263192a22fed26a325824009fc04bc306d4c00e6c3", + "height": 2808748, + "time": "2024-04-30T14:49:05Z" + }, + "tx_index": 238, + "account": 1, + "index": 3, + "address": "tb1q5q9ted8tnvj36x6ndl82p7wze4zhs6gxrt8rdu" + }, + { + "id": "b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c", + "received_at": "2024-05-06T14:25:31Z", + "fees": "6975", + "inputs": [ + { + "output_hash": "5351b3a1d1c2f832ab5236a6bb472c19c0554dcfe82067408ae9ff02abae53bd", + "output_index": 1, + "value": "11113", + "address": "tb1q5q9ted8tnvj36x6ndl82p7wze4zhs6gxrt8rdu", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c", + "block_height": 2812060, + "rbf": true + }, + { + "output_index": 1, + "value": "3138", + "address": "tb1qlfnf6f09wc5ukp346ty7w462rcf3t7n4utvy40", + "spent_at_height": null, + "output_hash": "b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c", + "block_height": 2812060, + "rbf": true + } + ], + "block": { + "hash": "000000000000008e9b0cd4eb69f924afa9112a12ed35f4c5d3a862757099ff7a", + "height": 2812060, + "time": "2024-05-06T14:25:31Z" + }, + "tx_index": 246, + "account": 1, + "index": 3, + "address": "tb1q5q9ted8tnvj36x6ndl82p7wze4zhs6gxrt8rdu" + }, + { + "id": "0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f", + "received_at": "2024-05-06T16:50:47Z", + "fees": "12137", + "inputs": [ + { + "output_hash": "fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a", + "output_index": 1, + "value": "482053", + "address": "tb1qslf059lsyurz6k0kgvjj9rw8pr75f0ts2a66a3", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f", + "block_height": 2812143, + "rbf": true + }, + { + "output_index": 1, + "value": "468916", + "address": "tb1qhvearg8afglty8rsmfta8j06el0qetxcyu2jun", + "spent_at_height": null, + "output_hash": "0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f", + "block_height": 2812143, + "rbf": true + } + ], + "block": { + "hash": "00000000000000f1ab393053a5b2e3e948458b40ec204de53b869478845f3565", + "height": 2812143, + "time": "2024-05-06T16:50:47Z" + }, + "tx_index": 3, + "account": 1, + "index": 4, + "address": "tb1qslf059lsyurz6k0kgvjj9rw8pr75f0ts2a66a3" + }, + { + "id": "8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075", + "received_at": "2024-05-13T13:19:27Z", + "fees": "6417", + "inputs": [ + { + "output_hash": "12ebf312956be518826b9989b6925e41c1e86b54a1a655726aee9a73326b8450", + "output_index": 1, + "value": "11168", + "address": "tb1q3hmw2894p6fhencz0syk9v6kyh4heyffm4hz4f", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075", + "block_height": 2815108, + "rbf": true + }, + { + "output_index": 1, + "value": "3751", + "address": "tb1qs2ex5k9z7t96fgkp4l5c2cs4lfdf64unymwe79", + "spent_at_height": null, + "output_hash": "8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075", + "block_height": 2815108, + "rbf": true + } + ], + "block": { + "hash": "0000000000000007f533a45f5f92a4d1ca52850333132a79dac787109f2445db", + "height": 2815108, + "time": "2024-05-13T13:19:27Z" + }, + "tx_index": 242, + "account": 1, + "index": 5, + "address": "tb1q3hmw2894p6fhencz0syk9v6kyh4heyffm4hz4f" + }, + { + "id": "9dbd0423ef356dda8ab6a7d44d8bdce6f4cf9e7a8852b23214a4f356919103f7", + "received_at": "2024-05-02T07:53:19Z", + "fees": "6975", + "inputs": [ + { + "output_hash": "ea0071ab676dc35448c7ba6b275aad69dfa98e0346f846dd529d7322c88aabf8", + "output_index": 1, + "value": "996349", + "address": "tb1qqrx4qnvvrltfqkjz2rya0xxx7fhjgv55fmpgmy", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "9dbd0423ef356dda8ab6a7d44d8bdce6f4cf9e7a8852b23214a4f356919103f7", + "block_height": 2810662, + "rbf": true + }, + { + "output_index": 1, + "value": "988374", + "address": "tb1qnf94s85m3qqfu2pgda2pdz5f6xfjxg6p4z9qkh", + "spent_at_height": null, + "output_hash": "9dbd0423ef356dda8ab6a7d44d8bdce6f4cf9e7a8852b23214a4f356919103f7", + "block_height": 2810662, + "rbf": true + } + ], + "block": { + "hash": "00000000000000df392c19e655e3cb90065767f8cb52a60b087e8bef4a3d2fd4", + "height": 2810662, + "time": "2024-05-02T07:53:19Z" + }, + "tx_index": 611, + "account": 1, + "index": 6, + "address": "tb1qnf94s85m3qqfu2pgda2pdz5f6xfjxg6p4z9qkh" + }, + { + "id": "b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c", + "received_at": "2024-05-06T14:25:31Z", + "fees": "6975", + "inputs": [ + { + "output_hash": "5351b3a1d1c2f832ab5236a6bb472c19c0554dcfe82067408ae9ff02abae53bd", + "output_index": 1, + "value": "11113", + "address": "tb1q5q9ted8tnvj36x6ndl82p7wze4zhs6gxrt8rdu", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c", + "block_height": 2812060, + "rbf": true + }, + { + "output_index": 1, + "value": "3138", + "address": "tb1qlfnf6f09wc5ukp346ty7w462rcf3t7n4utvy40", + "spent_at_height": null, + "output_hash": "b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c", + "block_height": 2812060, + "rbf": true + } + ], + "block": { + "hash": "000000000000008e9b0cd4eb69f924afa9112a12ed35f4c5d3a862757099ff7a", + "height": 2812060, + "time": "2024-05-06T14:25:31Z" + }, + "tx_index": 246, + "account": 1, + "index": 7, + "address": "tb1qlfnf6f09wc5ukp346ty7w462rcf3t7n4utvy40" + }, + { + "id": "0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f", + "received_at": "2024-05-06T16:50:47Z", + "fees": "12137", + "inputs": [ + { + "output_hash": "fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a", + "output_index": 1, + "value": "482053", + "address": "tb1qslf059lsyurz6k0kgvjj9rw8pr75f0ts2a66a3", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f", + "block_height": 2812143, + "rbf": true + }, + { + "output_index": 1, + "value": "468916", + "address": "tb1qhvearg8afglty8rsmfta8j06el0qetxcyu2jun", + "spent_at_height": null, + "output_hash": "0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f", + "block_height": 2812143, + "rbf": true + } + ], + "block": { + "hash": "00000000000000f1ab393053a5b2e3e948458b40ec204de53b869478845f3565", + "height": 2812143, + "time": "2024-05-06T16:50:47Z" + }, + "tx_index": 3, + "account": 1, + "index": 8, + "address": "tb1qhvearg8afglty8rsmfta8j06el0qetxcyu2jun" + }, + { + "id": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", + "received_at": "2024-05-15T08:11:02Z", + "fees": "101016", + "inputs": [ + { + "output_hash": "b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c", + "output_index": 1, + "value": "3138", + "address": "tb1qlfnf6f09wc5ukp346ty7w462rcf3t7n4utvy40", + "sequence": 0 + }, + { + "output_hash": "db6b8183e8c8bed2551de17045e30600b8552496fe9a3db869abfe5be432f955", + "output_index": 0, + "value": "4900", + "address": "tb1qjnl3f0lahssa62qvn6vm2fruejfc6e9x2r8c5z", + "sequence": 0 + }, + { + "output_hash": "0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f", + "output_index": 1, + "value": "468916", + "address": "tb1qhvearg8afglty8rsmfta8j06el0qetxcyu2jun", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", + "block_height": 2815444, + "rbf": true + }, + { + "output_index": 1, + "value": "374938", + "address": "tb1qta50jk5cs3cece26p26tepqenjs96zk9y02mdm", + "spent_at_height": null, + "output_hash": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", + "block_height": 2815444, + "rbf": true + } + ], + "block": { + "hash": "000000000000000d27a09b060bc13bbdde3cedd1a9aeee148c80d70d95ca82fd", + "height": 2815444, + "time": "2024-05-15T08:11:02Z" + }, + "tx_index": 14, + "account": 1, + "index": 8, + "address": "tb1qhvearg8afglty8rsmfta8j06el0qetxcyu2jun" + }, + { + "id": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", + "received_at": "2024-05-15T08:11:02Z", + "fees": "101016", + "inputs": [ + { + "output_hash": "b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c", + "output_index": 1, + "value": "3138", + "address": "tb1qlfnf6f09wc5ukp346ty7w462rcf3t7n4utvy40", + "sequence": 0 + }, + { + "output_hash": "db6b8183e8c8bed2551de17045e30600b8552496fe9a3db869abfe5be432f955", + "output_index": 0, + "value": "4900", + "address": "tb1qjnl3f0lahssa62qvn6vm2fruejfc6e9x2r8c5z", + "sequence": 0 + }, + { + "output_hash": "0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f", + "output_index": 1, + "value": "468916", + "address": "tb1qhvearg8afglty8rsmfta8j06el0qetxcyu2jun", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", + "block_height": 2815444, + "rbf": true + }, + { + "output_index": 1, + "value": "374938", + "address": "tb1qta50jk5cs3cece26p26tepqenjs96zk9y02mdm", + "spent_at_height": null, + "output_hash": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", + "block_height": 2815444, + "rbf": true + } + ], + "block": { + "hash": "000000000000000d27a09b060bc13bbdde3cedd1a9aeee148c80d70d95ca82fd", + "height": 2815444, + "time": "2024-05-15T08:11:02Z" + }, + "tx_index": 14, + "account": 1, + "index": 7, + "address": "tb1qlfnf6f09wc5ukp346ty7w462rcf3t7n4utvy40" + }, + { + "id": "762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea", + "received_at": "2024-05-15T08:11:02Z", + "fees": "51336", + "inputs": [ + { + "output_hash": "9dbd0423ef356dda8ab6a7d44d8bdce6f4cf9e7a8852b23214a4f356919103f7", + "output_index": 1, + "value": "988374", + "address": "tb1qnf94s85m3qqfu2pgda2pdz5f6xfjxg6p4z9qkh", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea", + "block_height": 2815444, + "rbf": true + }, + { + "output_index": 1, + "value": "936038", + "address": "tb1qmk6cuwhq9r3jjckq56ctv896fn2erg7fpnm0xz", + "spent_at_height": null, + "output_hash": "762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea", + "block_height": 2815444, + "rbf": true + } + ], + "block": { + "hash": "000000000000000d27a09b060bc13bbdde3cedd1a9aeee148c80d70d95ca82fd", + "height": 2815444, + "time": "2024-05-15T08:11:02Z" + }, + "tx_index": 15, + "account": 1, + "index": 6, + "address": "tb1qnf94s85m3qqfu2pgda2pdz5f6xfjxg6p4z9qkh" + }, + { + "id": "8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075", + "received_at": "2024-05-13T13:19:27Z", + "fees": "6417", + "inputs": [ + { + "output_hash": "12ebf312956be518826b9989b6925e41c1e86b54a1a655726aee9a73326b8450", + "output_index": 1, + "value": "11168", + "address": "tb1q3hmw2894p6fhencz0syk9v6kyh4heyffm4hz4f", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075", + "block_height": 2815108, + "rbf": true + }, + { + "output_index": 1, + "value": "3751", + "address": "tb1qs2ex5k9z7t96fgkp4l5c2cs4lfdf64unymwe79", + "spent_at_height": null, + "output_hash": "8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075", + "block_height": 2815108, + "rbf": true + } + ], + "block": { + "hash": "0000000000000007f533a45f5f92a4d1ca52850333132a79dac787109f2445db", + "height": 2815108, + "time": "2024-05-13T13:19:27Z" + }, + "tx_index": 242, + "account": 1, + "index": 9, + "address": "tb1qs2ex5k9z7t96fgkp4l5c2cs4lfdf64unymwe79" + }, + { + "id": "762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea", + "received_at": "2024-05-15T08:11:02Z", + "fees": "51336", + "inputs": [ + { + "output_hash": "9dbd0423ef356dda8ab6a7d44d8bdce6f4cf9e7a8852b23214a4f356919103f7", + "output_index": 1, + "value": "988374", + "address": "tb1qnf94s85m3qqfu2pgda2pdz5f6xfjxg6p4z9qkh", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea", + "block_height": 2815444, + "rbf": true + }, + { + "output_index": 1, + "value": "936038", + "address": "tb1qmk6cuwhq9r3jjckq56ctv896fn2erg7fpnm0xz", + "spent_at_height": null, + "output_hash": "762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea", + "block_height": 2815444, + "rbf": true + } + ], + "block": { + "hash": "000000000000000d27a09b060bc13bbdde3cedd1a9aeee148c80d70d95ca82fd", + "height": 2815444, + "time": "2024-05-15T08:11:02Z" + }, + "tx_index": 15, + "account": 1, + "index": 10, + "address": "tb1qmk6cuwhq9r3jjckq56ctv896fn2erg7fpnm0xz" + }, + { + "id": "1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f", + "received_at": "2024-05-15T10:12:36Z", + "fees": "133308", + "inputs": [ + { + "output_hash": "8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075", + "output_index": 1, + "value": "3751", + "address": "tb1qs2ex5k9z7t96fgkp4l5c2cs4lfdf64unymwe79", + "sequence": 0 + }, + { + "output_hash": "762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea", + "output_index": 1, + "value": "936038", + "address": "tb1qmk6cuwhq9r3jjckq56ctv896fn2erg7fpnm0xz", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f", + "block_height": 2815454, + "rbf": true + }, + { + "output_index": 1, + "value": "805481", + "address": "tb1qgjuuqs4pkaukww7dgdukm84cg8n4h9dv0t0j8y", + "spent_at_height": null, + "output_hash": "1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f", + "block_height": 2815454, + "rbf": true + } + ], + "block": { + "hash": "00000000000000176ff48d54445b1ef7e934f1ef13f03c6144a963e789982542", + "height": 2815454, + "time": "2024-05-15T10:12:36Z" + }, + "tx_index": 12, + "account": 1, + "index": 9, + "address": "tb1qs2ex5k9z7t96fgkp4l5c2cs4lfdf64unymwe79" + }, + { + "id": "1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f", + "received_at": "2024-05-15T10:12:36Z", + "fees": "133308", + "inputs": [ + { + "output_hash": "8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075", + "output_index": 1, + "value": "3751", + "address": "tb1qs2ex5k9z7t96fgkp4l5c2cs4lfdf64unymwe79", + "sequence": 0 + }, + { + "output_hash": "762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea", + "output_index": 1, + "value": "936038", + "address": "tb1qmk6cuwhq9r3jjckq56ctv896fn2erg7fpnm0xz", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f", + "block_height": 2815454, + "rbf": true + }, + { + "output_index": 1, + "value": "805481", + "address": "tb1qgjuuqs4pkaukww7dgdukm84cg8n4h9dv0t0j8y", + "spent_at_height": null, + "output_hash": "1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f", + "block_height": 2815454, + "rbf": true + } + ], + "block": { + "hash": "00000000000000176ff48d54445b1ef7e934f1ef13f03c6144a963e789982542", + "height": 2815454, + "time": "2024-05-15T10:12:36Z" + }, + "tx_index": 12, + "account": 1, + "index": 10, + "address": "tb1qmk6cuwhq9r3jjckq56ctv896fn2erg7fpnm0xz" + }, + { + "id": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", + "received_at": "2024-05-15T08:11:02Z", + "fees": "101016", + "inputs": [ + { + "output_hash": "b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c", + "output_index": 1, + "value": "3138", + "address": "tb1qlfnf6f09wc5ukp346ty7w462rcf3t7n4utvy40", + "sequence": 0 + }, + { + "output_hash": "db6b8183e8c8bed2551de17045e30600b8552496fe9a3db869abfe5be432f955", + "output_index": 0, + "value": "4900", + "address": "tb1qjnl3f0lahssa62qvn6vm2fruejfc6e9x2r8c5z", + "sequence": 0 + }, + { + "output_hash": "0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f", + "output_index": 1, + "value": "468916", + "address": "tb1qhvearg8afglty8rsmfta8j06el0qetxcyu2jun", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", + "block_height": 2815444, + "rbf": true + }, + { + "output_index": 1, + "value": "374938", + "address": "tb1qta50jk5cs3cece26p26tepqenjs96zk9y02mdm", + "spent_at_height": null, + "output_hash": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", + "block_height": 2815444, + "rbf": true + } + ], + "block": { + "hash": "000000000000000d27a09b060bc13bbdde3cedd1a9aeee148c80d70d95ca82fd", + "height": 2815444, + "time": "2024-05-15T08:11:02Z" + }, + "tx_index": 14, + "account": 1, + "index": 11, + "address": "tb1qta50jk5cs3cece26p26tepqenjs96zk9y02mdm" + }, + { + "id": "1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f", + "received_at": "2024-05-15T10:12:36Z", + "fees": "133308", + "inputs": [ + { + "output_hash": "8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075", + "output_index": 1, + "value": "3751", + "address": "tb1qs2ex5k9z7t96fgkp4l5c2cs4lfdf64unymwe79", + "sequence": 0 + }, + { + "output_hash": "762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea", + "output_index": 1, + "value": "936038", + "address": "tb1qmk6cuwhq9r3jjckq56ctv896fn2erg7fpnm0xz", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f", + "block_height": 2815454, + "rbf": true + }, + { + "output_index": 1, + "value": "805481", + "address": "tb1qgjuuqs4pkaukww7dgdukm84cg8n4h9dv0t0j8y", + "spent_at_height": null, + "output_hash": "1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f", + "block_height": 2815454, + "rbf": true + } + ], + "block": { + "hash": "00000000000000176ff48d54445b1ef7e934f1ef13f03c6144a963e789982542", + "height": 2815454, + "time": "2024-05-15T10:12:36Z" + }, + "tx_index": 12, + "account": 1, + "index": 12, + "address": "tb1qgjuuqs4pkaukww7dgdukm84cg8n4h9dv0t0j8y" + }, + { + "id": "58d21eece42b687fb811cf5fffae58f31454f5339b22a93f3407405c997b48fd", + "received_at": "2024-05-15T10:51:05Z", + "fees": "14090", + "inputs": [ + { + "output_hash": "1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f", + "output_index": 1, + "value": "805481", + "address": "tb1qgjuuqs4pkaukww7dgdukm84cg8n4h9dv0t0j8y", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "58d21eece42b687fb811cf5fffae58f31454f5339b22a93f3407405c997b48fd", + "block_height": 2815460, + "rbf": true + }, + { + "output_index": 1, + "value": "790391", + "address": "tb1qarvwul33lpgqagp8pkr7qxuu7yvm3mwpxe8e0z", + "spent_at_height": 2815460, + "output_hash": "58d21eece42b687fb811cf5fffae58f31454f5339b22a93f3407405c997b48fd", + "block_height": 2815460, + "rbf": true + } + ], + "block": { + "hash": "00000000000000164ad9408b1ed139e3a7fba0540348f081f8c392e767fbd7ab", + "height": 2815460, + "time": "2024-05-15T10:51:05Z" + }, + "tx_index": 441, + "account": 1, + "index": 14, + "address": "tb1qarvwul33lpgqagp8pkr7qxuu7yvm3mwpxe8e0z" + }, + { + "id": "2ae182dc9906bafa7404e51be13b8bdfd3b2a408ae0efade21fa74ed234a4601", + "received_at": "2024-05-15T10:51:05Z", + "fees": "14090", + "inputs": [ + { + "output_hash": "58d21eece42b687fb811cf5fffae58f31454f5339b22a93f3407405c997b48fd", + "output_index": 1, + "value": "790391", + "address": "tb1qarvwul33lpgqagp8pkr7qxuu7yvm3mwpxe8e0z", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "2ae182dc9906bafa7404e51be13b8bdfd3b2a408ae0efade21fa74ed234a4601", + "block_height": 2815460, + "rbf": true + }, + { + "output_index": 1, + "value": "775301", + "address": "tb1qdy7rh3f3d4v08sx50zwwuv29m206qnu3nehj7j", + "spent_at_height": null, + "output_hash": "2ae182dc9906bafa7404e51be13b8bdfd3b2a408ae0efade21fa74ed234a4601", + "block_height": 2815460, + "rbf": true + } + ], + "block": { + "hash": "00000000000000164ad9408b1ed139e3a7fba0540348f081f8c392e767fbd7ab", + "height": 2815460, + "time": "2024-05-15T10:51:05Z" + }, + "tx_index": 442, + "account": 1, + "index": 14, + "address": "tb1qarvwul33lpgqagp8pkr7qxuu7yvm3mwpxe8e0z" + }, + { + "id": "58d21eece42b687fb811cf5fffae58f31454f5339b22a93f3407405c997b48fd", + "received_at": "2024-05-15T10:51:05Z", + "fees": "14090", + "inputs": [ + { + "output_hash": "1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f", + "output_index": 1, + "value": "805481", + "address": "tb1qgjuuqs4pkaukww7dgdukm84cg8n4h9dv0t0j8y", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "58d21eece42b687fb811cf5fffae58f31454f5339b22a93f3407405c997b48fd", + "block_height": 2815460, + "rbf": true + }, + { + "output_index": 1, + "value": "790391", + "address": "tb1qarvwul33lpgqagp8pkr7qxuu7yvm3mwpxe8e0z", + "spent_at_height": 2815460, + "output_hash": "58d21eece42b687fb811cf5fffae58f31454f5339b22a93f3407405c997b48fd", + "block_height": 2815460, + "rbf": true + } + ], + "block": { + "hash": "00000000000000164ad9408b1ed139e3a7fba0540348f081f8c392e767fbd7ab", + "height": 2815460, + "time": "2024-05-15T10:51:05Z" + }, + "tx_index": 441, + "account": 1, + "index": 12, + "address": "tb1qgjuuqs4pkaukww7dgdukm84cg8n4h9dv0t0j8y" + }, + { + "id": "e1f91c616f34b1048e635fbe10b1d715e953ad982c73f8f252a3d59d6caa985e", + "received_at": "2024-05-15T10:51:05Z", + "fees": "14090", + "inputs": [ + { + "output_hash": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", + "output_index": 1, + "value": "374938", + "address": "tb1qta50jk5cs3cece26p26tepqenjs96zk9y02mdm", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "e1f91c616f34b1048e635fbe10b1d715e953ad982c73f8f252a3d59d6caa985e", + "block_height": 2815460, + "rbf": true + }, + { + "output_index": 1, + "value": "359848", + "address": "tb1qfljcl04fyxq3zm8x7gkduca43gjxn65uky07t5", + "spent_at_height": null, + "output_hash": "e1f91c616f34b1048e635fbe10b1d715e953ad982c73f8f252a3d59d6caa985e", + "block_height": 2815460, + "rbf": true + } + ], + "block": { + "hash": "00000000000000164ad9408b1ed139e3a7fba0540348f081f8c392e767fbd7ab", + "height": 2815460, + "time": "2024-05-15T10:51:05Z" + }, + "tx_index": 443, + "account": 1, + "index": 11, + "address": "tb1qta50jk5cs3cece26p26tepqenjs96zk9y02mdm" + }, + { + "id": "e1f91c616f34b1048e635fbe10b1d715e953ad982c73f8f252a3d59d6caa985e", + "received_at": "2024-05-15T10:51:05Z", + "fees": "14090", + "inputs": [ + { + "output_hash": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", + "output_index": 1, + "value": "374938", + "address": "tb1qta50jk5cs3cece26p26tepqenjs96zk9y02mdm", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "e1f91c616f34b1048e635fbe10b1d715e953ad982c73f8f252a3d59d6caa985e", + "block_height": 2815460, + "rbf": true + }, + { + "output_index": 1, + "value": "359848", + "address": "tb1qfljcl04fyxq3zm8x7gkduca43gjxn65uky07t5", + "spent_at_height": null, + "output_hash": "e1f91c616f34b1048e635fbe10b1d715e953ad982c73f8f252a3d59d6caa985e", + "block_height": 2815460, + "rbf": true + } + ], + "block": { + "hash": "00000000000000164ad9408b1ed139e3a7fba0540348f081f8c392e767fbd7ab", + "height": 2815460, + "time": "2024-05-15T10:51:05Z" + }, + "tx_index": 443, + "account": 1, + "index": 13, + "address": "tb1qfljcl04fyxq3zm8x7gkduca43gjxn65uky07t5" + }, + { + "id": "2ae182dc9906bafa7404e51be13b8bdfd3b2a408ae0efade21fa74ed234a4601", + "received_at": "2024-05-15T10:51:05Z", + "fees": "14090", + "inputs": [ + { + "output_hash": "58d21eece42b687fb811cf5fffae58f31454f5339b22a93f3407405c997b48fd", + "output_index": 1, + "value": "790391", + "address": "tb1qarvwul33lpgqagp8pkr7qxuu7yvm3mwpxe8e0z", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "2ae182dc9906bafa7404e51be13b8bdfd3b2a408ae0efade21fa74ed234a4601", + "block_height": 2815460, + "rbf": true + }, + { + "output_index": 1, + "value": "775301", + "address": "tb1qdy7rh3f3d4v08sx50zwwuv29m206qnu3nehj7j", + "spent_at_height": null, + "output_hash": "2ae182dc9906bafa7404e51be13b8bdfd3b2a408ae0efade21fa74ed234a4601", + "block_height": 2815460, + "rbf": true + } + ], + "block": { + "hash": "00000000000000164ad9408b1ed139e3a7fba0540348f081f8c392e767fbd7ab", + "height": 2815460, + "time": "2024-05-15T10:51:05Z" + }, + "tx_index": 442, + "account": 1, + "index": 15, + "address": "tb1qdy7rh3f3d4v08sx50zwwuv29m206qnu3nehj7j" + }, + { + "id": "f6ee9f6eb35fc2abb14ef246ee6faa3105f3af657cb447761df79743553605c0", + "received_at": "2024-05-15T12:55:09Z", + "fees": "14090", + "inputs": [ + { + "output_hash": "2ae182dc9906bafa7404e51be13b8bdfd3b2a408ae0efade21fa74ed234a4601", + "output_index": 1, + "value": "775301", + "address": "tb1qdy7rh3f3d4v08sx50zwwuv29m206qnu3nehj7j", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "f6ee9f6eb35fc2abb14ef246ee6faa3105f3af657cb447761df79743553605c0", + "block_height": 2815479, + "rbf": true + }, + { + "output_index": 1, + "value": "760211", + "address": "tb1qn9mfj32wvxem4m9dujgqsqwp9arp8zp3c7e2ke", + "spent_at_height": null, + "output_hash": "f6ee9f6eb35fc2abb14ef246ee6faa3105f3af657cb447761df79743553605c0", + "block_height": 2815479, + "rbf": true + } + ], + "block": { + "hash": "000000000000000d6cd593acf0cc74f17f3a51a620e5531e8d313fc82c4cdf63", + "height": 2815479, + "time": "2024-05-15T12:55:09Z" + }, + "tx_index": 1044, + "account": 1, + "index": 15, + "address": "tb1qdy7rh3f3d4v08sx50zwwuv29m206qnu3nehj7j" + }, + { + "id": "f6ee9f6eb35fc2abb14ef246ee6faa3105f3af657cb447761df79743553605c0", + "received_at": "2024-05-15T12:55:09Z", + "fees": "14090", + "inputs": [ + { + "output_hash": "2ae182dc9906bafa7404e51be13b8bdfd3b2a408ae0efade21fa74ed234a4601", + "output_index": 1, + "value": "775301", + "address": "tb1qdy7rh3f3d4v08sx50zwwuv29m206qnu3nehj7j", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "f6ee9f6eb35fc2abb14ef246ee6faa3105f3af657cb447761df79743553605c0", + "block_height": 2815479, + "rbf": true + }, + { + "output_index": 1, + "value": "760211", + "address": "tb1qn9mfj32wvxem4m9dujgqsqwp9arp8zp3c7e2ke", + "spent_at_height": null, + "output_hash": "f6ee9f6eb35fc2abb14ef246ee6faa3105f3af657cb447761df79743553605c0", + "block_height": 2815479, + "rbf": true + } + ], + "block": { + "hash": "000000000000000d6cd593acf0cc74f17f3a51a620e5531e8d313fc82c4cdf63", + "height": 2815479, + "time": "2024-05-15T12:55:09Z" + }, + "tx_index": 1044, + "account": 1, + "index": 16, + "address": "tb1qn9mfj32wvxem4m9dujgqsqwp9arp8zp3c7e2ke" + }, + { + "id": "507107ff04a3185909cc891cddf906d98c8a4695bd53f38e7c62008ff54788e4", + "received_at": "2024-05-15T12:55:09Z", + "fees": "14090", + "inputs": [ + { + "output_hash": "e1f91c616f34b1048e635fbe10b1d715e953ad982c73f8f252a3d59d6caa985e", + "output_index": 1, + "value": "359848", + "address": "tb1qfljcl04fyxq3zm8x7gkduca43gjxn65uky07t5", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "507107ff04a3185909cc891cddf906d98c8a4695bd53f38e7c62008ff54788e4", + "block_height": 2815479, + "rbf": true + }, + { + "output_index": 1, + "value": "344758", + "address": "tb1q8t2nc9phmeu39sewkqnca84kh2ffnrkyhww9j0", + "spent_at_height": null, + "output_hash": "507107ff04a3185909cc891cddf906d98c8a4695bd53f38e7c62008ff54788e4", + "block_height": 2815479, + "rbf": true + } + ], + "block": { + "hash": "000000000000000d6cd593acf0cc74f17f3a51a620e5531e8d313fc82c4cdf63", + "height": 2815479, + "time": "2024-05-15T12:55:09Z" + }, + "tx_index": 1045, + "account": 1, + "index": 17, + "address": "tb1q8t2nc9phmeu39sewkqnca84kh2ffnrkyhww9j0" + }, + { + "id": "507107ff04a3185909cc891cddf906d98c8a4695bd53f38e7c62008ff54788e4", + "received_at": "2024-05-15T12:55:09Z", + "fees": "14090", + "inputs": [ + { + "output_hash": "e1f91c616f34b1048e635fbe10b1d715e953ad982c73f8f252a3d59d6caa985e", + "output_index": 1, + "value": "359848", + "address": "tb1qfljcl04fyxq3zm8x7gkduca43gjxn65uky07t5", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "507107ff04a3185909cc891cddf906d98c8a4695bd53f38e7c62008ff54788e4", + "block_height": 2815479, + "rbf": true + }, + { + "output_index": 1, + "value": "344758", + "address": "tb1q8t2nc9phmeu39sewkqnca84kh2ffnrkyhww9j0", + "spent_at_height": null, + "output_hash": "507107ff04a3185909cc891cddf906d98c8a4695bd53f38e7c62008ff54788e4", + "block_height": 2815479, + "rbf": true + } + ], + "block": { + "hash": "000000000000000d6cd593acf0cc74f17f3a51a620e5531e8d313fc82c4cdf63", + "height": 2815479, + "time": "2024-05-15T12:55:09Z" + }, + "tx_index": 1045, + "account": 1, + "index": 13, + "address": "tb1qfljcl04fyxq3zm8x7gkduca43gjxn65uky07t5" + }, + { + "id": "db6b8183e8c8bed2551de17045e30600b8552496fe9a3db869abfe5be432f955", + "received_at": "2024-05-06T14:25:34Z", + "fees": "17241", + "inputs": [ + { + "output_hash": "f121e02ba088ca19bd2dbd832902d2617cf11fc7a5ed1168f927ed1e708e11a7", + "output_index": 1, + "value": "44153925", + "address": "tb1pxvwvelj9p6ug7vxxqvdq8r8hd7vlgp0w45ety53a5juzt9cffl6q2haz3p", + "sequence": 4294967293 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "4900", + "address": "tb1qjnl3f0lahssa62qvn6vm2fruejfc6e9x2r8c5z", + "spent_at_height": null, + "output_hash": "db6b8183e8c8bed2551de17045e30600b8552496fe9a3db869abfe5be432f955", + "block_height": 2812062, + "rbf": true + }, + { + "output_index": 1, + "value": "1000", + "address": "tb1pcyuraxw8vrrpwqzchw8jrrgrsf68xmfq3x78ux7xf2nlttng0esqj3sr48", + "spent_at_height": null, + "output_hash": "db6b8183e8c8bed2551de17045e30600b8552496fe9a3db869abfe5be432f955", + "block_height": 2812062, + "rbf": true + }, + { + "output_index": 2, + "value": "3990", + "address": "tb1qud28dkclhmeylmx3mgr8mvcvrxy5z2vp97rpz2", + "spent_at_height": null, + "output_hash": "db6b8183e8c8bed2551de17045e30600b8552496fe9a3db869abfe5be432f955", + "block_height": 2812062, + "rbf": true + }, + { + "output_index": 3, + "value": "44126794", + "address": "tb1pgcpu7y3ula4axhgzwmhs5je9xfqxw39v56d2yqy4qsdznu3l7w7sxp6kja", + "spent_at_height": 2812065, + "output_hash": "db6b8183e8c8bed2551de17045e30600b8552496fe9a3db869abfe5be432f955", + "block_height": 2812062, + "rbf": true + } + ], + "block": { + "hash": "000000000000009bb4143dffff985f5750400d6b5b691e982daec9efab2b78da", + "height": 2812062, + "time": "2024-05-06T14:25:34Z" + }, + "tx_index": 13, + "account": 0, + "index": 3, + "address": "tb1qjnl3f0lahssa62qvn6vm2fruejfc6e9x2r8c5z" + }, + { + "id": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", + "received_at": "2024-05-15T08:11:02Z", + "fees": "101016", + "inputs": [ + { + "output_hash": "b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c", + "output_index": 1, + "value": "3138", + "address": "tb1qlfnf6f09wc5ukp346ty7w462rcf3t7n4utvy40", + "sequence": 0 + }, + { + "output_hash": "db6b8183e8c8bed2551de17045e30600b8552496fe9a3db869abfe5be432f955", + "output_index": 0, + "value": "4900", + "address": "tb1qjnl3f0lahssa62qvn6vm2fruejfc6e9x2r8c5z", + "sequence": 0 + }, + { + "output_hash": "0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f", + "output_index": 1, + "value": "468916", + "address": "tb1qhvearg8afglty8rsmfta8j06el0qetxcyu2jun", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", + "block_height": 2815444, + "rbf": true + }, + { + "output_index": 1, + "value": "374938", + "address": "tb1qta50jk5cs3cece26p26tepqenjs96zk9y02mdm", + "spent_at_height": null, + "output_hash": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", + "block_height": 2815444, + "rbf": true + } + ], + "block": { + "hash": "000000000000000d27a09b060bc13bbdde3cedd1a9aeee148c80d70d95ca82fd", + "height": 2815444, + "time": "2024-05-15T08:11:02Z" + }, + "tx_index": 14, + "account": 0, + "index": 3, + "address": "tb1qjnl3f0lahssa62qvn6vm2fruejfc6e9x2r8c5z" + }, + { + "id": "ca716f4736eaf5c24f0e9190c7173408c7a46c925e10c76cb4488d14278235ac", + "received_at": "2024-05-15T13:14:19Z", + "fees": "6895", + "inputs": [ + { + "output_hash": "e0808b93d68f4cef0054bffd9c93fa705e474a1a109c90b8a1174b7440de131b", + "output_index": 0, + "value": "290118603", + "address": "tb1qhxjdvd53z73r3e3kdn2nt8h2lqayw93jhr43rw", + "sequence": 4294967293 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "290081511", + "address": "tb1qz3nw7l85hzy78we650p53h7369ty85jmf2qp2x", + "spent_at_height": 2815483, + "output_hash": "ca716f4736eaf5c24f0e9190c7173408c7a46c925e10c76cb4488d14278235ac", + "block_height": 2815481, + "rbf": true + }, + { + "output_index": 1, + "value": "30197", + "address": "tb1qjnl3f0lahssa62qvn6vm2fruejfc6e9x2r8c5z", + "spent_at_height": null, + "output_hash": "ca716f4736eaf5c24f0e9190c7173408c7a46c925e10c76cb4488d14278235ac", + "block_height": 2815481, + "rbf": true + } + ], + "block": { + "hash": "000000000000000cebb4e30283a056706c8e456ed76e6503a0be8abd70701d19", + "height": 2815481, + "time": "2024-05-15T13:14:19Z" + }, + "tx_index": 3428, + "account": 0, + "index": 3, + "address": "tb1qjnl3f0lahssa62qvn6vm2fruejfc6e9x2r8c5z" + } + ], + "addressCache": { + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-1": "tb1qx86xqtf50d287uq89unn0w373k5drmavf75vkh", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-2": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-0": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-4": "tb1qxmwe6n93fls8r69837cmyt6ua406xaen9hy24d", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-3": "tb1qjnl3f0lahssa62qvn6vm2fruejfc6e9x2r8c5z", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-5": "tb1q05hpnj2ax0y93m05ds52m7gjt8rvj2nyctpqfz", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-7": "tb1qvl8runktfnc4t76edzsqfph86ax8xpcynyh2zk", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-6": "tb1qqtps7vrsjxkkp2gt3c5al9ll6k93u6yrp8vnww", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-8": "tb1qg7n5stkrzcyqagk3aa65v7fl96qtwa9fw9wzh6", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-10": "tb1qr484cv4e8nfwt7tnsgml6n9zr3pvwujpewz9gd", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-9": "tb1q5dg3rhdjm353w0xws7jzmaq7kt6j97g0g03y79", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-11": "tb1qvtcc8f8u54d3e0lf27x6vt9u5spxld09jzvvkc", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-13": "tb1q4vax46yusv3a7zwhzwtkfjhtze8k72ueyuu36d", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-12": "tb1q255gj7g4jpmv6m3ntt2grau28wgzcd5xzdl6dh", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-14": "tb1qg8m6rn3lgqzktg7ecseh6s98x5d7267mrzveys", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-16": "tb1q5grrr3m3lyqmklppm00yzjxlrqaww7lfwyxxf4", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-17": "tb1qa08asf3aqjg04u4qhdf7wyv9hmz3lrexhz0zsx", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-15": "tb1qtuwvet7349zkxu6umps48e8egymd5q4e0khtpn", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-19": "tb1qz7vkfrxxu3j43w3a80fnkz2yhyf7r99zdzd3rz", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-18": "tb1qkl09k2n4tq20sqjgvcl6y8w3m5j5pa4cp05urr", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-0": "tb1q0rczr7cpz48jq3747z8ez8x2hyx2xunwr0lm5y", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-2": "tb1qqrx4qnvvrltfqkjz2rya0xxx7fhjgv55fmpgmy", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-3": "tb1q5q9ted8tnvj36x6ndl82p7wze4zhs6gxrt8rdu", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-1": "tb1qr4ckf85dgctzmaca7zg9z2xj5q5qx75x0uvpz0", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-5": "tb1q3hmw2894p6fhencz0syk9v6kyh4heyffm4hz4f", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-6": "tb1qnf94s85m3qqfu2pgda2pdz5f6xfjxg6p4z9qkh", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-4": "tb1qslf059lsyurz6k0kgvjj9rw8pr75f0ts2a66a3", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-8": "tb1qhvearg8afglty8rsmfta8j06el0qetxcyu2jun", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-7": "tb1qlfnf6f09wc5ukp346ty7w462rcf3t7n4utvy40", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-9": "tb1qs2ex5k9z7t96fgkp4l5c2cs4lfdf64unymwe79", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-11": "tb1qta50jk5cs3cece26p26tepqenjs96zk9y02mdm", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-10": "tb1qmk6cuwhq9r3jjckq56ctv896fn2erg7fpnm0xz", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-12": "tb1qgjuuqs4pkaukww7dgdukm84cg8n4h9dv0t0j8y", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-14": "tb1qarvwul33lpgqagp8pkr7qxuu7yvm3mwpxe8e0z", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-13": "tb1qfljcl04fyxq3zm8x7gkduca43gjxn65uky07t5", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-15": "tb1qdy7rh3f3d4v08sx50zwwuv29m206qnu3nehj7j", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-17": "tb1q8t2nc9phmeu39sewkqnca84kh2ffnrkyhww9j0", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-18": "tb1qhky8u83jhv99hsfgcfujysaapxxf9f7tlnnfru", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-16": "tb1qn9mfj32wvxem4m9dujgqsqwp9arp8zp3c7e2ke", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-19": "tb1qh8sk5cy95cmgkge5wjnq4anhu0e9hku5e2fksc", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-22": "tb1q64rm6hu4xe7s5ewa0sfap85umyatg78etyga4s", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-25": "tb1ql0rkdyw8fe9a0y7dpvkmwdfpf4c2lll7tm66ne", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-20": "tb1qgv0ycetyywfx83evaj0jsgnldcktv634p2qk28", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-21": "tb1qddwrtknzatk9a4y3h4tka257tulhzpdhdm944n", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-28": "tb1qh9j3xcqy8pl68aekh3zjjdhwwker3ahcgnnhya", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-23": "tb1q0kmpz5z2gdxxxlg9p62hxx27pp3hvhdr2lhuu3", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-24": "tb1q5p4k3qzhmlwtgz8qn25pspqcx9lhu52cvx8xpq", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-31": "tb1q3agefz4tj6lf4mz7ca67ajd3wln8gjagszps72", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-26": "tb1qrg02ajtkndd57acg75xxur0sdte0y6g92s4kdz", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-27": "tb1qwfxj48ggm4ycvql54gtchks3guh99dehwrazjc", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-34": "tb1qew5zekp00f3ndnlkq5argm09pgl0xw6l80mu8a", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-29": "tb1qh3uj3a7zpqkjn7506ay0pf5d7su2ysdw0mpn0v", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-37": "tb1ql038dc4us53wzc9d8uqqzs93p8gm3d982cp7kv", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-30": "tb1qvgp5h03hlwvw2jlkgsfqka3gvpnwcqa0n0ghny", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-32": "tb1q48gt6e3j6mxzwg0d84c7dcewth7ycmyk332qgg", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-33": "tb1qglxz48n82hqr34j484gj05xwrc2w5r30a0h999", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-35": "tb1qt70m797lzxfdaqzfnmq8nmqdvg7hdx24wg93vy", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-36": "tb1qm2mfnljxw2nrn4fuz5vrsznl2v7jqkzdks4px3", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-38": "tb1q72e5gyc29gupga5uxunje3dyvhgp8q6zch84pj", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-39": "tb1qn30u0gy94hv2cmgl2fhcykt0jurq9f2ee8lnrx", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-22": "tb1q8hjez3ckzd2qm82rkkr7e03jx7curpzze3x4mw", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-25": "tb1q2vfls5ndpqd03263mwsvypklh7svh62hh7h0c9", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-21": "tb1qcs7czzls6mxzrq5gcg4kz87en0zgy7r6rsqgk2", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-20": "tb1qw87hx00arcycwudpjmzvmaf7yslaarcr9vm0xv", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-28": "tb1q2lkmwur2gt5uf303w65fsy6hl0p4680vkyan6w", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-24": "tb1qwrg4w98w8ju2gk4vrrr07n9g6xv4ej8latu6lc", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-23": "tb1qg787hv33nj2z57zwltf3p3huvxwgma9d7prldj", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-31": "tb1qmyyh2lrhv4nwn4kdgcyp59ugykny4lsdmuzy83", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-26": "tb1qrp2nh6yn443p8hd9ksqg99uajjkjmua4c60z2n", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-27": "tb1qnj33kr4p0p7pmdxxnrpaxr9v9ne83v859r4wcg", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-29": "tb1qph42ht325dhskasgenvwdce2d6u5kqrt829j5f", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-34": "tb1q2luv7unnsx84dm3dc3rf7x4lt82qgmk398gj6f", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-30": "tb1qmhtn49y7ehf2937tpuwjg2lzvd3vm6xrzlmzd6", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-32": "tb1qdvde4kyyavkqsk6ww7f8tzvnp0czy8qrln92en", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-37": "tb1q6k2zs6cc3ng5qe5ln8aw86x694y5edzns9j9hr", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-33": "tb1q3mk8wh0aaglcxagfnsacpkxzmcjzztl5wfrttz", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-35": "tb1q3j20uknfxkz742nsrtqu30p9ffc94vhaxpzjcp", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-36": "tb1qqd02kg5fxfq4v7nlyc70698ankqwsurh88p9l2", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-38": "tb1q865jjq2xnyhm3mtk28vwa06ztaz3zt9hpur3zj", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-39": "tb1qwjt6zzyn6qxm22r85v7e3ll2xjmf9yt49wq9af" + } + } + } + } + }, + "swapHistory": [] + }, + "version": 1 + }, + { + "data": { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", + "seedIdentifier": "045149ac56e773488fc925cafe39fe5814d1f7102b05035ad4246d206e7ec57260727f8a06040e7631a3e997d6203639a90f2e384a83535eb0034d12b90fa2acbb", + "name": "Bitcoin Testnet 2", + "starred": false, + "used": true, + "derivationMode": "native_segwit", + "index": 1, + "freshAddress": "tb1q4efvpk2ttsefx0gzkqv2eqd4lgugh7jyvj29de", + "freshAddressPath": "84'/1'/1'/0/3", + "freshAddresses": [ + { + "address": "tb1q8gc0lnlcyf8sqld5swnf2wzyh5x9k66dtruf8x", + "derivationPath": "84'/1'/1'/0/0" + } + ], + "blockHeight": 2819697, + "creationDate": "2024-04-10T13:17:50.000Z", + "operationsCount": 20, + "operations": [ + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-f6ee9f6eb35fc2abb14ef246ee6faa3105f3af657cb447761df79743553605c0-IN", + "hash": "f6ee9f6eb35fc2abb14ef246ee6faa3105f3af657cb447761df79743553605c0", + "type": "IN", + "senders": [ + "tb1qdy7rh3f3d4v08sx50zwwuv29m206qnu3nehj7j" + ], + "recipients": [ + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", + "blockHash": "000000000000000d6cd593acf0cc74f17f3a51a620e5531e8d313fc82c4cdf63", + "blockHeight": 2815479, + "extra": {}, + "date": "2024-05-15T12:55:09.000Z", + "value": "1000", + "fee": "14090", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-507107ff04a3185909cc891cddf906d98c8a4695bd53f38e7c62008ff54788e4-IN", + "hash": "507107ff04a3185909cc891cddf906d98c8a4695bd53f38e7c62008ff54788e4", + "type": "IN", + "senders": [ + "tb1qfljcl04fyxq3zm8x7gkduca43gjxn65uky07t5" + ], + "recipients": [ + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", + "blockHash": "000000000000000d6cd593acf0cc74f17f3a51a620e5531e8d313fc82c4cdf63", + "blockHeight": 2815479, + "extra": {}, + "date": "2024-05-15T12:55:09.000Z", + "value": "1000", + "fee": "14090", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-58d21eece42b687fb811cf5fffae58f31454f5339b22a93f3407405c997b48fd-IN", + "hash": "58d21eece42b687fb811cf5fffae58f31454f5339b22a93f3407405c997b48fd", + "type": "IN", + "senders": [ + "tb1qgjuuqs4pkaukww7dgdukm84cg8n4h9dv0t0j8y" + ], + "recipients": [ + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", + "blockHash": "00000000000000164ad9408b1ed139e3a7fba0540348f081f8c392e767fbd7ab", + "blockHeight": 2815460, + "extra": {}, + "date": "2024-05-15T10:51:05.000Z", + "value": "1000", + "fee": "14090", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-2ae182dc9906bafa7404e51be13b8bdfd3b2a408ae0efade21fa74ed234a4601-IN", + "hash": "2ae182dc9906bafa7404e51be13b8bdfd3b2a408ae0efade21fa74ed234a4601", + "type": "IN", + "senders": [ + "tb1qarvwul33lpgqagp8pkr7qxuu7yvm3mwpxe8e0z" + ], + "recipients": [ + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", + "blockHash": "00000000000000164ad9408b1ed139e3a7fba0540348f081f8c392e767fbd7ab", + "blockHeight": 2815460, + "extra": {}, + "date": "2024-05-15T10:51:05.000Z", + "value": "1000", + "fee": "14090", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-e1f91c616f34b1048e635fbe10b1d715e953ad982c73f8f252a3d59d6caa985e-IN", + "hash": "e1f91c616f34b1048e635fbe10b1d715e953ad982c73f8f252a3d59d6caa985e", + "type": "IN", + "senders": [ + "tb1qta50jk5cs3cece26p26tepqenjs96zk9y02mdm" + ], + "recipients": [ + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", + "blockHash": "00000000000000164ad9408b1ed139e3a7fba0540348f081f8c392e767fbd7ab", + "blockHeight": 2815460, + "extra": {}, + "date": "2024-05-15T10:51:05.000Z", + "value": "1000", + "fee": "14090", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f-IN", + "hash": "1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f", + "type": "IN", + "senders": [ + "tb1qs2ex5k9z7t96fgkp4l5c2cs4lfdf64unymwe79", + "tb1qmk6cuwhq9r3jjckq56ctv896fn2erg7fpnm0xz" + ], + "recipients": [ + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", + "blockHash": "00000000000000176ff48d54445b1ef7e934f1ef13f03c6144a963e789982542", + "blockHeight": 2815454, + "extra": {}, + "date": "2024-05-15T10:12:36.000Z", + "value": "1000", + "fee": "133308", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019-IN", + "hash": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", + "type": "IN", + "senders": [ + "tb1qlfnf6f09wc5ukp346ty7w462rcf3t7n4utvy40", + "tb1qjnl3f0lahssa62qvn6vm2fruejfc6e9x2r8c5z", + "tb1qhvearg8afglty8rsmfta8j06el0qetxcyu2jun" + ], + "recipients": [ + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", + "blockHash": "000000000000000d27a09b060bc13bbdde3cedd1a9aeee148c80d70d95ca82fd", + "blockHeight": 2815444, + "extra": {}, + "date": "2024-05-15T08:11:02.000Z", + "value": "1000", + "fee": "101016", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea-IN", + "hash": "762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea", + "type": "IN", + "senders": [ + "tb1qnf94s85m3qqfu2pgda2pdz5f6xfjxg6p4z9qkh" + ], + "recipients": [ + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", + "blockHash": "000000000000000d27a09b060bc13bbdde3cedd1a9aeee148c80d70d95ca82fd", + "blockHeight": 2815444, + "extra": {}, + "date": "2024-05-15T08:11:02.000Z", + "value": "1000", + "fee": "51336", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075-IN", + "hash": "8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075", + "type": "IN", + "senders": [ + "tb1q3hmw2894p6fhencz0syk9v6kyh4heyffm4hz4f" + ], + "recipients": [ + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", + "blockHash": "0000000000000007f533a45f5f92a4d1ca52850333132a79dac787109f2445db", + "blockHeight": 2815108, + "extra": {}, + "date": "2024-05-13T13:19:27.000Z", + "value": "1000", + "fee": "6417", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f-IN", + "hash": "0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f", + "type": "IN", + "senders": [ + "tb1qslf059lsyurz6k0kgvjj9rw8pr75f0ts2a66a3" + ], + "recipients": [ + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", + "blockHash": "00000000000000f1ab393053a5b2e3e948458b40ec204de53b869478845f3565", + "blockHeight": 2812143, + "extra": {}, + "date": "2024-05-06T16:50:47.000Z", + "value": "1000", + "fee": "12137", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c-IN", + "hash": "b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c", + "type": "IN", + "senders": [ + "tb1q5q9ted8tnvj36x6ndl82p7wze4zhs6gxrt8rdu" + ], + "recipients": [ + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", + "blockHash": "000000000000008e9b0cd4eb69f924afa9112a12ed35f4c5d3a862757099ff7a", + "blockHeight": 2812060, + "extra": {}, + "date": "2024-05-06T14:25:31.000Z", + "value": "1000", + "fee": "6975", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-9dbd0423ef356dda8ab6a7d44d8bdce6f4cf9e7a8852b23214a4f356919103f7-IN", + "hash": "9dbd0423ef356dda8ab6a7d44d8bdce6f4cf9e7a8852b23214a4f356919103f7", + "type": "IN", + "senders": [ + "tb1qqrx4qnvvrltfqkjz2rya0xxx7fhjgv55fmpgmy" + ], + "recipients": [ + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", + "blockHash": "00000000000000df392c19e655e3cb90065767f8cb52a60b087e8bef4a3d2fd4", + "blockHeight": 2810662, + "extra": {}, + "date": "2024-05-02T07:53:19.000Z", + "value": "1000", + "fee": "6975", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-12ebf312956be518826b9989b6925e41c1e86b54a1a655726aee9a73326b8450-IN", + "hash": "12ebf312956be518826b9989b6925e41c1e86b54a1a655726aee9a73326b8450", + "type": "IN", + "senders": [ + "tb1qr4ckf85dgctzmaca7zg9z2xj5q5qx75x0uvpz0" + ], + "recipients": [ + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", + "blockHash": "000000000000029c1d61c5accc2cf0bb4122b5adffa2016a6e7c315eea9a5ba5", + "blockHeight": 2808871, + "extra": {}, + "date": "2024-04-30T16:23:21.000Z", + "value": "1000", + "fee": "2651", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a-IN", + "hash": "fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a", + "type": "IN", + "senders": [ + "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", + "tb1q0rczr7cpz48jq3747z8ez8x2hyx2xunwr0lm5y" + ], + "recipients": [ + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", + "blockHash": "00000000000002300b019883058de5064a4adcf02fc613bcdc45fcbfab38c0fd", + "blockHeight": 2808759, + "extra": {}, + "date": "2024-04-30T15:02:55.000Z", + "value": "1000", + "fee": "5216", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-5351b3a1d1c2f832ab5236a6bb472c19c0554dcfe82067408ae9ff02abae53bd-IN", + "hash": "5351b3a1d1c2f832ab5236a6bb472c19c0554dcfe82067408ae9ff02abae53bd", + "type": "IN", + "senders": [ + "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0" + ], + "recipients": [ + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", + "blockHash": "0000000000000338630f87263192a22fed26a325824009fc04bc306d4c00e6c3", + "blockHeight": 2808748, + "extra": {}, + "date": "2024-04-30T14:49:05.000Z", + "value": "1000", + "fee": "2651", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-ea0071ab676dc35448c7ba6b275aad69dfa98e0346f846dd529d7322c88aabf8-IN", + "hash": "ea0071ab676dc35448c7ba6b275aad69dfa98e0346f846dd529d7322c88aabf8", + "type": "IN", + "senders": [ + "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0" + ], + "recipients": [ + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", + "blockHash": "0000000000000055c5690cb5ba47beda5d40a8e7e0bea4519a183b9f1f20ef8c", + "blockHeight": 2808681, + "extra": {}, + "date": "2024-04-30T14:03:12.000Z", + "value": "1000", + "fee": "2651", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6-IN", + "hash": "fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6", + "type": "IN", + "senders": [ + "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk", + "tb1qx86xqtf50d287uq89unn0w373k5drmavf75vkh" + ], + "recipients": [ + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", + "blockHash": "00000000000002d0e8c9b1fd3a5a499d5c684060025e9d56797e2cb81089ca47", + "blockHeight": 2808671, + "extra": {}, + "date": "2024-04-30T13:58:35.000Z", + "value": "1000", + "fee": "3933", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-4b403adf0e193ca294f6418f517b1ac1358d9f5a2ceb53d8863e92227a7c1938-IN", + "hash": "4b403adf0e193ca294f6418f517b1ac1358d9f5a2ceb53d8863e92227a7c1938", + "type": "IN", + "senders": [ + "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk" + ], + "recipients": [ + "tb1q8kkh3hkwaq6frqrfdkhpmxzzhe5dtclzwlu4y9" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", + "blockHash": "000000000024db40b1e77e9beefd5323e65b1d34b767f3654bc0eada1390a7f3", + "blockHeight": 2586529, + "extra": {}, + "date": "2024-04-16T09:27:18.000Z", + "value": "1000", + "fee": "2000", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902-IN", + "hash": "f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902", + "type": "IN", + "senders": [ + "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk" + ], + "recipients": [ + "tb1q8kkh3hkwaq6frqrfdkhpmxzzhe5dtclzwlu4y9" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", + "blockHash": "0000000000000000aed4c9f3d04c79b3446e87e6a4e9cb84986631a9d97c97ad", + "blockHeight": 2586394, + "extra": {}, + "date": "2024-04-15T15:45:15.000Z", + "value": "1000", + "fee": "2232", + "hasFailed": false + }, + { + "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-88b684a739e415beaedf0a791a0ab836cd788bc44340ac5c3a6b72ad567ff983-IN", + "hash": "88b684a739e415beaedf0a791a0ab836cd788bc44340ac5c3a6b72ad567ff983", + "type": "IN", + "senders": [ + "tb1pnxgxlsurkxrqxmq00phy4kk268jct6afxehy8nc2dqfx2saa5hhql7sxed" + ], + "recipients": [ + "tb1q8gc0lnlcyf8sqld5swnf2wzyh5x9k66dtruf8x" + ], + "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", + "blockHash": "0000000000000023aa2bf7e7113c947e0fa80c7465726a43519fe9dc696b2ecc", + "blockHeight": 2585852, + "extra": {}, + "date": "2024-04-10T13:17:50.000Z", + "value": "2990", + "fee": "353", + "hasFailed": false + } + ], + "pendingOperations": [], + "currencyId": "bitcoin_testnet", + "unitMagnitude": 8, + "lastSyncDate": "2024-06-03T07:55:37.996Z", + "balance": "21990", + "spendableBalance": "21990", + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990 + ], + "latestDate": 1717398000000 + }, + "DAY": { + "balances": [ + 0, + 2990, + 2990, + 2990, + 2990, + 2990, + 3990, + 4990, + 4990, + 4990, + 4990, + 4990, + 4990, + 4990, + 4990, + 4990, + 4990, + 4990, + 4990, + 4990, + 4990, + 9990, + 9990, + 10990, + 10990, + 10990, + 10990, + 12990, + 12990, + 12990, + 12990, + 12990, + 12990, + 12990, + 13990, + 13990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990, + 21990 + ], + "latestDate": 1717365600000 + }, + "WEEK": { + "balances": [ + 0, + 2990, + 4990, + 4990, + 10990, + 12990, + 21990, + 21990, + 21990 + ], + "latestDate": 1717279200000 + } + }, + "xpub": "tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7", + "bitcoinResources": { + "utxos": [ + [ + "88b684a739e415beaedf0a791a0ab836cd788bc44340ac5c3a6b72ad567ff983", + 0, + 2585852, + "tb1q8gc0lnlcyf8sqld5swnf2wzyh5x9k66dtruf8x", + "2990", + 1, + 0 + ], + [ + "f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902", + 0, + 2586394, + "tb1q8kkh3hkwaq6frqrfdkhpmxzzhe5dtclzwlu4y9", + "1000", + 1, + 0 + ], + [ + "4b403adf0e193ca294f6418f517b1ac1358d9f5a2ceb53d8863e92227a7c1938", + 0, + 2586529, + "tb1q8kkh3hkwaq6frqrfdkhpmxzzhe5dtclzwlu4y9", + "1000", + 1, + 0 + ], + [ + "fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6", + 0, + 2808671, + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "1000", + 1, + 0 + ], + [ + "ea0071ab676dc35448c7ba6b275aad69dfa98e0346f846dd529d7322c88aabf8", + 0, + 2808681, + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "1000", + 1, + 0 + ], + [ + "5351b3a1d1c2f832ab5236a6bb472c19c0554dcfe82067408ae9ff02abae53bd", + 0, + 2808748, + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "1000", + 1, + 0 + ], + [ + "fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a", + 0, + 2808759, + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "1000", + 1, + 0 + ], + [ + "12ebf312956be518826b9989b6925e41c1e86b54a1a655726aee9a73326b8450", + 0, + 2808871, + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "1000", + 1, + 0 + ], + [ + "9dbd0423ef356dda8ab6a7d44d8bdce6f4cf9e7a8852b23214a4f356919103f7", + 0, + 2810662, + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "1000", + 1, + 0 + ], + [ + "b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c", + 0, + 2812060, + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "1000", + 1, + 0 + ], + [ + "0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f", + 0, + 2812143, + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "1000", + 1, + 0 + ], + [ + "8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075", + 0, + 2815108, + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "1000", + 1, + 0 + ], + [ + "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", + 0, + 2815444, + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "1000", + 1, + 0 + ], + [ + "762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea", + 0, + 2815444, + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "1000", + 1, + 0 + ], + [ + "1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f", + 0, + 2815454, + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "1000", + 1, + 0 + ], + [ + "58d21eece42b687fb811cf5fffae58f31454f5339b22a93f3407405c997b48fd", + 0, + 2815460, + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "1000", + 1, + 0 + ], + [ + "2ae182dc9906bafa7404e51be13b8bdfd3b2a408ae0efade21fa74ed234a4601", + 0, + 2815460, + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "1000", + 1, + 0 + ], + [ + "e1f91c616f34b1048e635fbe10b1d715e953ad982c73f8f252a3d59d6caa985e", + 0, + 2815460, + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "1000", + 1, + 0 + ], + [ + "f6ee9f6eb35fc2abb14ef246ee6faa3105f3af657cb447761df79743553605c0", + 0, + 2815479, + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "1000", + 1, + 0 + ], + [ + "507107ff04a3185909cc891cddf906d98c8a4695bd53f38e7c62008ff54788e4", + 0, + 2815479, + "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "1000", + 1, + 0 + ] + ], + "walletAccount": { + "params": { + "xpub": "tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7", + "path": "84'/1'", + "index": 1, + "currency": "bitcoin_testnet", + "network": "testnet", + "derivationMode": "Native SegWit" + }, + "xpub": { + "xpub": "tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7", + "data": { + "txs": [ + { + "id": "88b684a739e415beaedf0a791a0ab836cd788bc44340ac5c3a6b72ad567ff983", + "received_at": "2024-04-10T13:17:50Z", + "fees": "353", + "inputs": [ + { + "output_hash": "800ded928da888280fd9d99ba99174fe8a26a1e5fcd6461100c16945456ef7ff", + "output_index": 4, + "value": "483218529", + "address": "tb1pnxgxlsurkxrqxmq00phy4kk268jct6afxehy8nc2dqfx2saa5hhql7sxed", + "sequence": 4294967293 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "2990", + "address": "tb1q8gc0lnlcyf8sqld5swnf2wzyh5x9k66dtruf8x", + "spent_at_height": null, + "output_hash": "88b684a739e415beaedf0a791a0ab836cd788bc44340ac5c3a6b72ad567ff983", + "block_height": 2585852, + "rbf": true + }, + { + "output_index": 1, + "value": "16000", + "address": "tb1p5r87v4lhczhv4h4aduly8ytl8lx55y2ak9xkkt0taqxa7hql506suqa3sm", + "spent_at_height": null, + "output_hash": "88b684a739e415beaedf0a791a0ab836cd788bc44340ac5c3a6b72ad567ff983", + "block_height": 2585852, + "rbf": true + }, + { + "output_index": 2, + "value": "483123186", + "address": "tb1p8hnglyhxavad4ucaa4zt7k5lrukwdn6tssmx5nyzdac76fmj0pjqpyrp78", + "spent_at_height": 2585852, + "output_hash": "88b684a739e415beaedf0a791a0ab836cd788bc44340ac5c3a6b72ad567ff983", + "block_height": 2585852, + "rbf": true + }, + { + "output_index": 3, + "value": "1000", + "address": "tb1q6rqva052q5ue3tl3te0u7pwkpm3h9yx35akam7", + "spent_at_height": null, + "output_hash": "88b684a739e415beaedf0a791a0ab836cd788bc44340ac5c3a6b72ad567ff983", + "block_height": 2585852, + "rbf": true + }, + { + "output_index": 4, + "value": "1000", + "address": "tb1qfu2qp6xwqh2w3t65xaadvn7cfrf0f4u0m47xmd", + "spent_at_height": null, + "output_hash": "88b684a739e415beaedf0a791a0ab836cd788bc44340ac5c3a6b72ad567ff983", + "block_height": 2585852, + "rbf": true + }, + { + "output_index": 5, + "value": "1000", + "address": "tb1q2kycsgntv2j6l8xaf5wj7nz4xq0lp3e5dlzftg", + "spent_at_height": null, + "output_hash": "88b684a739e415beaedf0a791a0ab836cd788bc44340ac5c3a6b72ad567ff983", + "block_height": 2585852, + "rbf": true + }, + { + "output_index": 6, + "value": "2000", + "address": "tb1qqym38kje75x3ymsuegkdaq9gczm4rgh65yrtfu", + "spent_at_height": null, + "output_hash": "88b684a739e415beaedf0a791a0ab836cd788bc44340ac5c3a6b72ad567ff983", + "block_height": 2585852, + "rbf": true + }, + { + "output_index": 7, + "value": "71000", + "address": "tb1ph4c5egccqdkw62n7vtztrmyknf7caxjuzv96ptlzewh8skkedhxsgzc4d2", + "spent_at_height": null, + "output_hash": "88b684a739e415beaedf0a791a0ab836cd788bc44340ac5c3a6b72ad567ff983", + "block_height": 2585852, + "rbf": true + } + ], + "block": { + "hash": "0000000000000023aa2bf7e7113c947e0fa80c7465726a43519fe9dc696b2ecc", + "height": 2585852, + "time": "2024-04-10T13:17:50Z" + }, + "tx_index": 753, + "account": 0, + "index": 0, + "address": "tb1q8gc0lnlcyf8sqld5swnf2wzyh5x9k66dtruf8x" + }, + { + "id": "f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902", + "received_at": "2024-04-15T15:45:15Z", + "fees": "2232", + "inputs": [ + { + "output_hash": "1756ba36fae7733fdffc0c5314d556a00b5990564a61d811c0938981ef830cbc", + "output_index": 0, + "value": "489501", + "address": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1q8kkh3hkwaq6frqrfdkhpmxzzhe5dtclzwlu4y9", + "spent_at_height": null, + "output_hash": "f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902", + "block_height": 2586394, + "rbf": true + }, + { + "output_index": 1, + "value": "486269", + "address": "tb1q0rczr7cpz48jq3747z8ez8x2hyx2xunwr0lm5y", + "spent_at_height": null, + "output_hash": "f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902", + "block_height": 2586394, + "rbf": true + } + ], + "block": { + "hash": "0000000000000000aed4c9f3d04c79b3446e87e6a4e9cb84986631a9d97c97ad", + "height": 2586394, + "time": "2024-04-15T15:45:15Z" + }, + "tx_index": 898, + "account": 0, + "index": 1, + "address": "tb1q8kkh3hkwaq6frqrfdkhpmxzzhe5dtclzwlu4y9" + }, + { + "id": "4b403adf0e193ca294f6418f517b1ac1358d9f5a2ceb53d8863e92227a7c1938", + "received_at": "2024-04-16T09:27:18Z", + "fees": "2000", + "inputs": [ + { + "output_hash": "185b469ab015a7ed5e102543912dc268c1509e3beb222b48cffc6d6e5213f474", + "output_index": 0, + "value": "3000", + "address": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1q8kkh3hkwaq6frqrfdkhpmxzzhe5dtclzwlu4y9", + "spent_at_height": null, + "output_hash": "4b403adf0e193ca294f6418f517b1ac1358d9f5a2ceb53d8863e92227a7c1938", + "block_height": 2586529, + "rbf": true + } + ], + "block": { + "hash": "000000000024db40b1e77e9beefd5323e65b1d34b767f3654bc0eada1390a7f3", + "height": 2586529, + "time": "2024-04-16T09:27:18Z" + }, + "tx_index": 3084, + "account": 0, + "index": 1, + "address": "tb1q8kkh3hkwaq6frqrfdkhpmxzzhe5dtclzwlu4y9" + }, + { + "id": "fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6", + "received_at": "2024-04-30T13:58:35Z", + "fees": "3933", + "inputs": [ + { + "output_hash": "cdc50ee65b9557642190cfe1d6a4f2b89ade172fa5c15addce1a4d242434d725", + "output_index": 0, + "value": "1000", + "address": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk", + "sequence": 0 + }, + { + "output_hash": "292bf44de2a8713cbcbceccfeab33f0478ebfb73cb1e8b09252942d849bcfcdd", + "output_index": 0, + "value": "18752", + "address": "tb1qx86xqtf50d287uq89unn0w373k5drmavf75vkh", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6", + "block_height": 2808671, + "rbf": true + }, + { + "output_index": 1, + "value": "14819", + "address": "tb1qr4ckf85dgctzmaca7zg9z2xj5q5qx75x0uvpz0", + "spent_at_height": null, + "output_hash": "fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6", + "block_height": 2808671, + "rbf": true + } + ], + "block": { + "hash": "00000000000002d0e8c9b1fd3a5a499d5c684060025e9d56797e2cb81089ca47", + "height": 2808671, + "time": "2024-04-30T13:58:35Z" + }, + "tx_index": 271, + "account": 0, + "index": 2, + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + }, + { + "id": "ea0071ab676dc35448c7ba6b275aad69dfa98e0346f846dd529d7322c88aabf8", + "received_at": "2024-04-30T14:03:12Z", + "fees": "2651", + "inputs": [ + { + "output_hash": "1a4b3b55909256ecca18c215a0bcd8e862a81427afa8760a6fa245a6a72c9888", + "output_index": 0, + "value": "1000000", + "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "ea0071ab676dc35448c7ba6b275aad69dfa98e0346f846dd529d7322c88aabf8", + "block_height": 2808681, + "rbf": true + }, + { + "output_index": 1, + "value": "996349", + "address": "tb1qqrx4qnvvrltfqkjz2rya0xxx7fhjgv55fmpgmy", + "spent_at_height": null, + "output_hash": "ea0071ab676dc35448c7ba6b275aad69dfa98e0346f846dd529d7322c88aabf8", + "block_height": 2808681, + "rbf": true + } + ], + "block": { + "hash": "0000000000000055c5690cb5ba47beda5d40a8e7e0bea4519a183b9f1f20ef8c", + "height": 2808681, + "time": "2024-04-30T14:03:12Z" + }, + "tx_index": 53, + "account": 0, + "index": 2, + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + }, + { + "id": "5351b3a1d1c2f832ab5236a6bb472c19c0554dcfe82067408ae9ff02abae53bd", + "received_at": "2024-04-30T14:49:05Z", + "fees": "2651", + "inputs": [ + { + "output_hash": "dcb3b6a870d0a1b87b7dd05201b2fa16ae6965c08f46eae024dc8300c4e6e44e", + "output_index": 0, + "value": "14764", + "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "5351b3a1d1c2f832ab5236a6bb472c19c0554dcfe82067408ae9ff02abae53bd", + "block_height": 2808748, + "rbf": true + }, + { + "output_index": 1, + "value": "11113", + "address": "tb1q5q9ted8tnvj36x6ndl82p7wze4zhs6gxrt8rdu", + "spent_at_height": null, + "output_hash": "5351b3a1d1c2f832ab5236a6bb472c19c0554dcfe82067408ae9ff02abae53bd", + "block_height": 2808748, + "rbf": true + } + ], + "block": { + "hash": "0000000000000338630f87263192a22fed26a325824009fc04bc306d4c00e6c3", + "height": 2808748, + "time": "2024-04-30T14:49:05Z" + }, + "tx_index": 238, + "account": 0, + "index": 2, + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + }, + { + "id": "fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a", + "received_at": "2024-04-30T15:02:55Z", + "fees": "5216", + "inputs": [ + { + "output_hash": "3a81b0e315a34becc02405fde400f79c4afe2c5f07d855df21f59576a662419f", + "output_index": 1, + "value": "1000", + "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", + "sequence": 0 + }, + { + "output_hash": "b4ea6cb6403312cb02fbdb0a4a98ea1fe9221672eebdbba3c68f17f5cc8d4612", + "output_index": 3, + "value": "1000", + "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", + "sequence": 0 + }, + { + "output_hash": "f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902", + "output_index": 1, + "value": "486269", + "address": "tb1q0rczr7cpz48jq3747z8ez8x2hyx2xunwr0lm5y", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a", + "block_height": 2808759, + "rbf": true + }, + { + "output_index": 1, + "value": "482053", + "address": "tb1qslf059lsyurz6k0kgvjj9rw8pr75f0ts2a66a3", + "spent_at_height": null, + "output_hash": "fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a", + "block_height": 2808759, + "rbf": true + } + ], + "block": { + "hash": "00000000000002300b019883058de5064a4adcf02fc613bcdc45fcbfab38c0fd", + "height": 2808759, + "time": "2024-04-30T15:02:55Z" + }, + "tx_index": 221, + "account": 0, + "index": 2, + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + }, + { + "id": "12ebf312956be518826b9989b6925e41c1e86b54a1a655726aee9a73326b8450", + "received_at": "2024-04-30T16:23:21Z", + "fees": "2651", + "inputs": [ + { + "output_hash": "fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6", + "output_index": 1, + "value": "14819", + "address": "tb1qr4ckf85dgctzmaca7zg9z2xj5q5qx75x0uvpz0", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "12ebf312956be518826b9989b6925e41c1e86b54a1a655726aee9a73326b8450", + "block_height": 2808871, + "rbf": true + }, + { + "output_index": 1, + "value": "11168", + "address": "tb1q3hmw2894p6fhencz0syk9v6kyh4heyffm4hz4f", + "spent_at_height": null, + "output_hash": "12ebf312956be518826b9989b6925e41c1e86b54a1a655726aee9a73326b8450", + "block_height": 2808871, + "rbf": true + } + ], + "block": { + "hash": "000000000000029c1d61c5accc2cf0bb4122b5adffa2016a6e7c315eea9a5ba5", + "height": 2808871, + "time": "2024-04-30T16:23:21Z" + }, + "tx_index": 196, + "account": 0, + "index": 2, + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + }, + { + "id": "9dbd0423ef356dda8ab6a7d44d8bdce6f4cf9e7a8852b23214a4f356919103f7", + "received_at": "2024-05-02T07:53:19Z", + "fees": "6975", + "inputs": [ + { + "output_hash": "ea0071ab676dc35448c7ba6b275aad69dfa98e0346f846dd529d7322c88aabf8", + "output_index": 1, + "value": "996349", + "address": "tb1qqrx4qnvvrltfqkjz2rya0xxx7fhjgv55fmpgmy", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "9dbd0423ef356dda8ab6a7d44d8bdce6f4cf9e7a8852b23214a4f356919103f7", + "block_height": 2810662, + "rbf": true + }, + { + "output_index": 1, + "value": "988374", + "address": "tb1qnf94s85m3qqfu2pgda2pdz5f6xfjxg6p4z9qkh", + "spent_at_height": null, + "output_hash": "9dbd0423ef356dda8ab6a7d44d8bdce6f4cf9e7a8852b23214a4f356919103f7", + "block_height": 2810662, + "rbf": true + } + ], + "block": { + "hash": "00000000000000df392c19e655e3cb90065767f8cb52a60b087e8bef4a3d2fd4", + "height": 2810662, + "time": "2024-05-02T07:53:19Z" + }, + "tx_index": 611, + "account": 0, + "index": 2, + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + }, + { + "id": "b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c", + "received_at": "2024-05-06T14:25:31Z", + "fees": "6975", + "inputs": [ + { + "output_hash": "5351b3a1d1c2f832ab5236a6bb472c19c0554dcfe82067408ae9ff02abae53bd", + "output_index": 1, + "value": "11113", + "address": "tb1q5q9ted8tnvj36x6ndl82p7wze4zhs6gxrt8rdu", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c", + "block_height": 2812060, + "rbf": true + }, + { + "output_index": 1, + "value": "3138", + "address": "tb1qlfnf6f09wc5ukp346ty7w462rcf3t7n4utvy40", + "spent_at_height": null, + "output_hash": "b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c", + "block_height": 2812060, + "rbf": true + } + ], + "block": { + "hash": "000000000000008e9b0cd4eb69f924afa9112a12ed35f4c5d3a862757099ff7a", + "height": 2812060, + "time": "2024-05-06T14:25:31Z" + }, + "tx_index": 246, + "account": 0, + "index": 2, + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + }, + { + "id": "0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f", + "received_at": "2024-05-06T16:50:47Z", + "fees": "12137", + "inputs": [ + { + "output_hash": "fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a", + "output_index": 1, + "value": "482053", + "address": "tb1qslf059lsyurz6k0kgvjj9rw8pr75f0ts2a66a3", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f", + "block_height": 2812143, + "rbf": true + }, + { + "output_index": 1, + "value": "468916", + "address": "tb1qhvearg8afglty8rsmfta8j06el0qetxcyu2jun", + "spent_at_height": null, + "output_hash": "0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f", + "block_height": 2812143, + "rbf": true + } + ], + "block": { + "hash": "00000000000000f1ab393053a5b2e3e948458b40ec204de53b869478845f3565", + "height": 2812143, + "time": "2024-05-06T16:50:47Z" + }, + "tx_index": 3, + "account": 0, + "index": 2, + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + }, + { + "id": "8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075", + "received_at": "2024-05-13T13:19:27Z", + "fees": "6417", + "inputs": [ + { + "output_hash": "12ebf312956be518826b9989b6925e41c1e86b54a1a655726aee9a73326b8450", + "output_index": 1, + "value": "11168", + "address": "tb1q3hmw2894p6fhencz0syk9v6kyh4heyffm4hz4f", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075", + "block_height": 2815108, + "rbf": true + }, + { + "output_index": 1, + "value": "3751", + "address": "tb1qs2ex5k9z7t96fgkp4l5c2cs4lfdf64unymwe79", + "spent_at_height": null, + "output_hash": "8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075", + "block_height": 2815108, + "rbf": true + } + ], + "block": { + "hash": "0000000000000007f533a45f5f92a4d1ca52850333132a79dac787109f2445db", + "height": 2815108, + "time": "2024-05-13T13:19:27Z" + }, + "tx_index": 242, + "account": 0, + "index": 2, + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + }, + { + "id": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", + "received_at": "2024-05-15T08:11:02Z", + "fees": "101016", + "inputs": [ + { + "output_hash": "b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c", + "output_index": 1, + "value": "3138", + "address": "tb1qlfnf6f09wc5ukp346ty7w462rcf3t7n4utvy40", + "sequence": 0 + }, + { + "output_hash": "db6b8183e8c8bed2551de17045e30600b8552496fe9a3db869abfe5be432f955", + "output_index": 0, + "value": "4900", + "address": "tb1qjnl3f0lahssa62qvn6vm2fruejfc6e9x2r8c5z", + "sequence": 0 + }, + { + "output_hash": "0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f", + "output_index": 1, + "value": "468916", + "address": "tb1qhvearg8afglty8rsmfta8j06el0qetxcyu2jun", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", + "block_height": 2815444, + "rbf": true + }, + { + "output_index": 1, + "value": "374938", + "address": "tb1qta50jk5cs3cece26p26tepqenjs96zk9y02mdm", + "spent_at_height": null, + "output_hash": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", + "block_height": 2815444, + "rbf": true + } + ], + "block": { + "hash": "000000000000000d27a09b060bc13bbdde3cedd1a9aeee148c80d70d95ca82fd", + "height": 2815444, + "time": "2024-05-15T08:11:02Z" + }, + "tx_index": 14, + "account": 0, + "index": 2, + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + }, + { + "id": "762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea", + "received_at": "2024-05-15T08:11:02Z", + "fees": "51336", + "inputs": [ + { + "output_hash": "9dbd0423ef356dda8ab6a7d44d8bdce6f4cf9e7a8852b23214a4f356919103f7", + "output_index": 1, + "value": "988374", + "address": "tb1qnf94s85m3qqfu2pgda2pdz5f6xfjxg6p4z9qkh", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea", + "block_height": 2815444, + "rbf": true + }, + { + "output_index": 1, + "value": "936038", + "address": "tb1qmk6cuwhq9r3jjckq56ctv896fn2erg7fpnm0xz", + "spent_at_height": null, + "output_hash": "762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea", + "block_height": 2815444, + "rbf": true + } + ], + "block": { + "hash": "000000000000000d27a09b060bc13bbdde3cedd1a9aeee148c80d70d95ca82fd", + "height": 2815444, + "time": "2024-05-15T08:11:02Z" + }, + "tx_index": 15, + "account": 0, + "index": 2, + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + }, + { + "id": "1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f", + "received_at": "2024-05-15T10:12:36Z", + "fees": "133308", + "inputs": [ + { + "output_hash": "8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075", + "output_index": 1, + "value": "3751", + "address": "tb1qs2ex5k9z7t96fgkp4l5c2cs4lfdf64unymwe79", + "sequence": 0 + }, + { + "output_hash": "762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea", + "output_index": 1, + "value": "936038", + "address": "tb1qmk6cuwhq9r3jjckq56ctv896fn2erg7fpnm0xz", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f", + "block_height": 2815454, + "rbf": true + }, + { + "output_index": 1, + "value": "805481", + "address": "tb1qgjuuqs4pkaukww7dgdukm84cg8n4h9dv0t0j8y", + "spent_at_height": null, + "output_hash": "1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f", + "block_height": 2815454, + "rbf": true + } + ], + "block": { + "hash": "00000000000000176ff48d54445b1ef7e934f1ef13f03c6144a963e789982542", + "height": 2815454, + "time": "2024-05-15T10:12:36Z" + }, + "tx_index": 12, + "account": 0, + "index": 2, + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + }, + { + "id": "58d21eece42b687fb811cf5fffae58f31454f5339b22a93f3407405c997b48fd", + "received_at": "2024-05-15T10:51:05Z", + "fees": "14090", + "inputs": [ + { + "output_hash": "1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f", + "output_index": 1, + "value": "805481", + "address": "tb1qgjuuqs4pkaukww7dgdukm84cg8n4h9dv0t0j8y", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "58d21eece42b687fb811cf5fffae58f31454f5339b22a93f3407405c997b48fd", + "block_height": 2815460, + "rbf": true + }, + { + "output_index": 1, + "value": "790391", + "address": "tb1qarvwul33lpgqagp8pkr7qxuu7yvm3mwpxe8e0z", + "spent_at_height": 2815460, + "output_hash": "58d21eece42b687fb811cf5fffae58f31454f5339b22a93f3407405c997b48fd", + "block_height": 2815460, + "rbf": true + } + ], + "block": { + "hash": "00000000000000164ad9408b1ed139e3a7fba0540348f081f8c392e767fbd7ab", + "height": 2815460, + "time": "2024-05-15T10:51:05Z" + }, + "tx_index": 441, + "account": 0, + "index": 2, + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + }, + { + "id": "2ae182dc9906bafa7404e51be13b8bdfd3b2a408ae0efade21fa74ed234a4601", + "received_at": "2024-05-15T10:51:05Z", + "fees": "14090", + "inputs": [ + { + "output_hash": "58d21eece42b687fb811cf5fffae58f31454f5339b22a93f3407405c997b48fd", + "output_index": 1, + "value": "790391", + "address": "tb1qarvwul33lpgqagp8pkr7qxuu7yvm3mwpxe8e0z", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "2ae182dc9906bafa7404e51be13b8bdfd3b2a408ae0efade21fa74ed234a4601", + "block_height": 2815460, + "rbf": true + }, + { + "output_index": 1, + "value": "775301", + "address": "tb1qdy7rh3f3d4v08sx50zwwuv29m206qnu3nehj7j", + "spent_at_height": null, + "output_hash": "2ae182dc9906bafa7404e51be13b8bdfd3b2a408ae0efade21fa74ed234a4601", + "block_height": 2815460, + "rbf": true + } + ], + "block": { + "hash": "00000000000000164ad9408b1ed139e3a7fba0540348f081f8c392e767fbd7ab", + "height": 2815460, + "time": "2024-05-15T10:51:05Z" + }, + "tx_index": 442, + "account": 0, + "index": 2, + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + }, + { + "id": "e1f91c616f34b1048e635fbe10b1d715e953ad982c73f8f252a3d59d6caa985e", + "received_at": "2024-05-15T10:51:05Z", + "fees": "14090", + "inputs": [ + { + "output_hash": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", + "output_index": 1, + "value": "374938", + "address": "tb1qta50jk5cs3cece26p26tepqenjs96zk9y02mdm", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "e1f91c616f34b1048e635fbe10b1d715e953ad982c73f8f252a3d59d6caa985e", + "block_height": 2815460, + "rbf": true + }, + { + "output_index": 1, + "value": "359848", + "address": "tb1qfljcl04fyxq3zm8x7gkduca43gjxn65uky07t5", + "spent_at_height": null, + "output_hash": "e1f91c616f34b1048e635fbe10b1d715e953ad982c73f8f252a3d59d6caa985e", + "block_height": 2815460, + "rbf": true + } + ], + "block": { + "hash": "00000000000000164ad9408b1ed139e3a7fba0540348f081f8c392e767fbd7ab", + "height": 2815460, + "time": "2024-05-15T10:51:05Z" + }, + "tx_index": 443, + "account": 0, + "index": 2, + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + }, + { + "id": "f6ee9f6eb35fc2abb14ef246ee6faa3105f3af657cb447761df79743553605c0", + "received_at": "2024-05-15T12:55:09Z", + "fees": "14090", + "inputs": [ + { + "output_hash": "2ae182dc9906bafa7404e51be13b8bdfd3b2a408ae0efade21fa74ed234a4601", + "output_index": 1, + "value": "775301", + "address": "tb1qdy7rh3f3d4v08sx50zwwuv29m206qnu3nehj7j", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "f6ee9f6eb35fc2abb14ef246ee6faa3105f3af657cb447761df79743553605c0", + "block_height": 2815479, + "rbf": true + }, + { + "output_index": 1, + "value": "760211", + "address": "tb1qn9mfj32wvxem4m9dujgqsqwp9arp8zp3c7e2ke", + "spent_at_height": null, + "output_hash": "f6ee9f6eb35fc2abb14ef246ee6faa3105f3af657cb447761df79743553605c0", + "block_height": 2815479, + "rbf": true + } + ], + "block": { + "hash": "000000000000000d6cd593acf0cc74f17f3a51a620e5531e8d313fc82c4cdf63", + "height": 2815479, + "time": "2024-05-15T12:55:09Z" + }, + "tx_index": 1044, + "account": 0, + "index": 2, + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + }, + { + "id": "507107ff04a3185909cc891cddf906d98c8a4695bd53f38e7c62008ff54788e4", + "received_at": "2024-05-15T12:55:09Z", + "fees": "14090", + "inputs": [ + { + "output_hash": "e1f91c616f34b1048e635fbe10b1d715e953ad982c73f8f252a3d59d6caa985e", + "output_index": 1, + "value": "359848", + "address": "tb1qfljcl04fyxq3zm8x7gkduca43gjxn65uky07t5", + "sequence": 0 + } + ], + "outputs": [ + { + "output_index": 0, + "value": "1000", + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "spent_at_height": null, + "output_hash": "507107ff04a3185909cc891cddf906d98c8a4695bd53f38e7c62008ff54788e4", + "block_height": 2815479, + "rbf": true + }, + { + "output_index": 1, + "value": "344758", + "address": "tb1q8t2nc9phmeu39sewkqnca84kh2ffnrkyhww9j0", + "spent_at_height": null, + "output_hash": "507107ff04a3185909cc891cddf906d98c8a4695bd53f38e7c62008ff54788e4", + "block_height": 2815479, + "rbf": true + } + ], + "block": { + "hash": "000000000000000d6cd593acf0cc74f17f3a51a620e5531e8d313fc82c4cdf63", + "height": 2815479, + "time": "2024-05-15T12:55:09Z" + }, + "tx_index": 1045, + "account": 0, + "index": 2, + "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" + } + ], + "addressCache": { + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-2": "tb1qe035p7qk4nr4qj0usnps8rl3xzhmzw8pe7c0y5", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-1": "tb1qxcfyjkugwkk890hkh6hlrrq9nah6asxuwcl80y", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-0": "tb1qqz47t97dklnnk55ese09jxhf6m64u8mpgqqalp", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-5": "tb1qc3rge9ca5y9j4gzw9acm0llvams9up2ygsm2ej", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-4": "tb1qdnyunnajadm4a7jehtjc2c6k2dd0ghd8vflctk", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-3": "tb1q9txamrp83zcqmu6vencq07c35j9r5lcj3y0w3n", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-8": "tb1qnu22q25n26uh85e9wgalx57e2v650jre9ntc8w", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-6": "tb1qz64wq5u5v0a4nnu03yahpxzmlelg55wxvd840s", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-7": "tb1q9zk0e5djpmv35s5fwy27smzx6jzjep2ccnw3yq", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-11": "tb1qetn25kphe7pw64698j97jrqchmns4zldsawxa3", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-9": "tb1q3n0wq74sfme68gk6v2zxaty5s3vef7t5pgru0e", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-10": "tb1qzlhk7z0ml0x3vwl3ma80uxsj9qf3lvw3ssxtc4", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-14": "tb1qdr9vxedvwsg0pd74mufhce8ead4s4l3sjfcc7q", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-12": "tb1q7hfdp70ype703s69jqucm0m6xsxg6amjvl76ye", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-13": "tb1quaeytsppac99880nhgngyrx9xkktu2sygt39m3", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-17": "tb1qnj6t9zkcey3gnaynv6nu053uzefvsf5l6wldh4", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-16": "tb1qc9vcq5s5dcqmxtkjjt0htcsxyyj7c9kxfnsqv5", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-15": "tb1qhxk3qadqeagpy2zpe9r5dyk73v7mtwjkl5w53v", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-0": "tb1q8gc0lnlcyf8sqld5swnf2wzyh5x9k66dtruf8x", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-19": "tb1q3hy58g0rd6a6drwernxwy0e4p6ada7chhcau7c", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-18": "tb1qhp74xfx8ygtkqm6xzc2vwcpy56x2zewmyrltgy", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-2": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-3": "tb1q4efvpk2ttsefx0gzkqv2eqd4lgugh7jyvj29de", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-1": "tb1q8kkh3hkwaq6frqrfdkhpmxzzhe5dtclzwlu4y9", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-5": "tb1qzlzc7lgqck57cttchsm6dsqcg45l2qyzpg5ckc", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-6": "tb1qa4hwte0g3m5m068ptl70jy6ykj5ua0m2danl4h", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-4": "tb1qtxnke649ut5dq6293n9kk4guhpw5npet2gqhwp", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-8": "tb1qpxdmmjg5mv53n2fg0qqh99prswmew5dv8gvhve", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-9": "tb1q792gl2h9t7t9czgycmsguypcux2ngxg6ke6xc0", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-7": "tb1q2adm04hv8gygj8wqch5h68yadlf5mzytgh9482", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-11": "tb1qhnwgh07xyxpw5n00c7c8gtw9a9wq78hutgtc9k", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-12": "tb1qzhzf0dwg5ygnstag32jz2gtmnsq727kqmya60m", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-10": "tb1qkauwykqqf3zecvral7k3cyx70scdw4tncz3qdm", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-14": "tb1qta342t6h3skes08c6x8pa6csmk42scd4p05n2a", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-15": "tb1qvyjp9kzy34ce88ldtucpcjp5qecd7h02jxd3l5", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-13": "tb1qlglya2d4097442ld30urajnzad45evtfxfne0m", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-17": "tb1q5zlpdld7x658dksvazg3mq2dssusc6pg0kf3dx", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-18": "tb1qa4p3t394t5n08vnyt8dfmk938ghcvepdxklvnr", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-16": "tb1q2t4ddgn8u576mkwr4zgkpt70gvxq8rphhthgz9", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-19": "tb1ql24ppuh3thr2z8msk0jg5ls32z36r9eztylj4k", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-22": "tb1qag6spfmsr055zd376ccuyrnefgp98mvuyfvkdg", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-25": "tb1qez7nvlc8udwjpa2ff65l38snxatagp7s3wttr6", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-20": "tb1qvqvppg762upzpn3s6yjsnr78yta25atuv9px42", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-21": "tb1qjlzkqew86ecw643hn7syw7r2td27yaj6hrjg89", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-28": "tb1q8e2ew08hyxlcgc04rukv6yayk7dx9ad93xc2fy", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-23": "tb1qr78klznerdlfuk0s59r24g6j5xstqumwu6yfpm", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-24": "tb1q9l944t93vm9gvth4w090kt9cvq58pg6kh7ptpu", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-31": "tb1qsrm0h269g3nm5rjtl8d7c2y2y2grwksxmak6jq", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-26": "tb1q4h6jzxsk2hltkcktut3qd6yuupljn5wdvd3cjc", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-27": "tb1q2r4vmea50p5rva9zh843d2dzj8hd07r4xye8cq", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-34": "tb1qs9n0kd06p6gy47csd8jyxfzne77a3tuz8q6yfl", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-29": "tb1q77et6v7yr4pw6v6qn65q2glkjx9qvewnvd9agr", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-30": "tb1qskm34kf5wtn8ye7hmdd0gwm3ul3mc8lzj7zw8v", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-37": "tb1qzxg79p6mpjnhda3j8qftm8ugs5p49rnyltgr35", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-33": "tb1qwu65wwrjjdcgkt0fdvsxqm646rcscw653tuxp9", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-32": "tb1qz48w9463202af0xpe3mytvlsnvcat2pxx9yrrf", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-35": "tb1qs0e3nka6gu5jxrs8evx7v7dktc53xan87e4s4n", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-36": "tb1q8a0fykmrn5hcru7mcgdz9ffqguwmaw3k0z3u0v", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-38": "tb1qkv33cc3cvqhwe3krpycnzvfdlfe8nlnytufwfq", + "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-39": "tb1q34gquym64t7qsgrlg92nx6nwx2uhp654ycfydl" + } + } + } + } + }, + "swapHistory": [] + }, + "version": 1 + }, + { + "data": { + "id": "js:2:cardano:b5d4ee919fca83cc08710bf48736d97dd3b9a8086a7afa06c314aa11b3ff7823f2ea9a3f56e66d71cc89e0b50b7250c25794f4f12d345f48e95d5112571449ac:cardano", + "seedIdentifier": "016b14936191510a6fa3a1faefe6eb1edc4eaaf145e67285b302ef0d", + "name": "Cardano 1", + "starred": false, + "used": true, + "derivationMode": "cardano", + "index": 0, + "freshAddress": "addr1q9q9q55zyew785z6c2lnrhnzghy038r6mepmqn6v28kupk5ug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ews8d5td8", + "freshAddressPath": "1852'/1815'/0'/0/1", + "freshAddresses": [ + { + "derivationPath": "1852'/1815'/0'/0/1", + "address": "addr1q9q9q55zyew785z6c2lnrhnzghy038r6mepmqn6v28kupk5ug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ews8d5td8" + }, + { + "derivationPath": "1852'/1815'/0'/0/2", + "address": "addr1qyp29zc2evskm4s8h7z62k0vkxym690vxktttqjl4553av5ug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ewssw0a5a" + }, + { + "derivationPath": "1852'/1815'/0'/0/3", + "address": "addr1qxz6kerauvfllk6ex5jsjn359j0dlck7rql3vk3vmd2zn5vug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ewss077ym" + }, + { + "derivationPath": "1852'/1815'/0'/0/4", + "address": "addr1q8dt9a07a7t0sp6smqhprjtj2y7a9a2hmj86lkxy3vmw4c5ug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ewshtp9q5" + }, + { + "derivationPath": "1852'/1815'/0'/0/5", + "address": "addr1q9uwfytf7p3qaadev5t9y4jkv7cx0ver9wexnrhzx0rekauug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ewsxde8rx" + }, + { + "derivationPath": "1852'/1815'/0'/0/6", + "address": "addr1qyh5mevwnnzqtdkahwzraxu4wkzrfkv0rct5gaa37wk9ga5ug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ewsw4wpsd" + }, + { + "derivationPath": "1852'/1815'/0'/0/7", + "address": "addr1qy5t0t8sxtlwh7w3sssn2sg886pmg5chj86ram59g08mkkvug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ewsp44vua" + }, + { + "derivationPath": "1852'/1815'/0'/0/8", + "address": "addr1qy3vk7qy6sgxpdmxswryp4l6dng8edx7jkrqna0wuf8s2f5ug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ewsaarjy3" + }, + { + "derivationPath": "1852'/1815'/0'/0/9", + "address": "addr1q9ven3phczlzp0ga90hjj2v5k87zhz5e5vsufd2uef5t4hyug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ewshk4ftk" + }, + { + "derivationPath": "1852'/1815'/0'/0/10", + "address": "addr1q9jkuwpj7slp3hkguyjwf4702x6hrxfqpr7jd00nyqq4devug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ews0kqj3t" + }, + { + "derivationPath": "1852'/1815'/0'/0/11", + "address": "addr1qx9wfp9yvt5hptrdugaps825lp9n6xph8cen2yz8gfqm9auug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ewsepe4yl" + }, + { + "derivationPath": "1852'/1815'/0'/0/12", + "address": "addr1q8t0qusccp0qf3283g07jej9668fvv97h5upfum2zdfrft5ug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ews0mk4p2" + }, + { + "derivationPath": "1852'/1815'/0'/0/13", + "address": "addr1qxhznlnuuqxnhc6e3n6t6jv6zjgfu39jlqrzchu2uv0ukfvug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ewslws5qw" + }, + { + "derivationPath": "1852'/1815'/0'/0/14", + "address": "addr1qxmgsvqkpgj7t205ldfwhfdr2tl0a5kgvpw4vtjgk8a50myug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ewsgvpfu5" + }, + { + "derivationPath": "1852'/1815'/0'/0/15", + "address": "addr1qx5z0rtexwq8jz535tv8nz3efllvnf8lujya0awkxwqe5s5ug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ewswkv6kk" + }, + { + "derivationPath": "1852'/1815'/0'/0/16", + "address": "addr1q8q9jffpvfnmkfyfwwa35p573yylertpk5hrfs4u5vl6gayug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ews6zgyl0" + }, + { + "derivationPath": "1852'/1815'/0'/0/17", + "address": "addr1q9a4u3x98wzwynfshdhmqcc2u69l3dwf49su0se0jk9qpryug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ewsu75tkp" + }, + { + "derivationPath": "1852'/1815'/0'/0/18", + "address": "addr1q99lkraghag7gdp3s4gc3kqntfrq6x36fv3agv3sm9d8nq5ug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ews0v4rev" + }, + { + "derivationPath": "1852'/1815'/0'/0/19", + "address": "addr1qxansyz3s6a0qnmtaqgu947t3d4z38upmw90ftpjn7khmjyug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ewsukwvd3" + }, + { + "derivationPath": "1852'/1815'/0'/0/20", + "address": "addr1qxk4jwewc0u79d7wtq0ghlya3wnunqfn90jj2sl298c3py5ug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ewsq4xyn4" + } + ], + "blockHeight": 10397828, + "syncHash": "[]_102", + "creationDate": "2024-04-18T14:08:42.000Z", + "operationsCount": 2, + "operations": [ + { + "id": "js:2:cardano:b5d4ee919fca83cc08710bf48736d97dd3b9a8086a7afa06c314aa11b3ff7823f2ea9a3f56e66d71cc89e0b50b7250c25794f4f12d345f48e95d5112571449ac:cardano-1c26109639901883bb9cd4b3aff3f3f7479dca4985ff9ea29fb0fc399e086278-OUT", + "hash": "1c26109639901883bb9cd4b3aff3f3f7479dca4985ff9ea29fb0fc399e086278", + "type": "OUT", + "senders": [ + "addr1qyqkk9ynvxg4zzn05wsl4mlxav0dcn4279z7vu59kvpw7rvug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ews7fq9gm" + ], + "recipients": [ + "addr1qx4tv7p6q4srm6c0kqf3sp2yp9aveuym530587lfcjsa0ag5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2qffgxst", + "addr1q8j6kym4fq4542req4aly2lv6p2wh7kvwvf5pfwlpuskzs5ug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ewsvwqaef" + ], + "accountId": "js:2:cardano:b5d4ee919fca83cc08710bf48736d97dd3b9a8086a7afa06c314aa11b3ff7823f2ea9a3f56e66d71cc89e0b50b7250c25794f4f12d345f48e95d5112571449ac:cardano", + "blockHeight": 10248857, + "extra": {}, + "date": "2024-04-29T09:17:42.000Z", + "value": "1168141", + "fee": "168141" + }, + { + "id": "js:2:cardano:b5d4ee919fca83cc08710bf48736d97dd3b9a8086a7afa06c314aa11b3ff7823f2ea9a3f56e66d71cc89e0b50b7250c25794f4f12d345f48e95d5112571449ac:cardano-ff319c730ad93ed5ec51679be45f818c01cace99be500fbee52f0c77164c4fe6-IN", + "hash": "ff319c730ad93ed5ec51679be45f818c01cace99be500fbee52f0c77164c4fe6", + "type": "IN", + "senders": [ + "addr1qx3ql93ec9xgjswywtztuv7dnhkpwx7twgn8y0w4af4g2mccs3erk7ngszhq3qt50hfnmkd4xfaze3p73dlxt7gpcwuqspf8l9" + ], + "recipients": [ + "addr1qyqkk9ynvxg4zzn05wsl4mlxav0dcn4279z7vu59kvpw7rvug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ews7fq9gm", + "addr1qyexe854sslqsdcrandhre6uv5e0asp5sde63m09awge3rgcs3erk7ngszhq3qt50hfnmkd4xfaze3p73dlxt7gpcwuqc2qq25" + ], + "accountId": "js:2:cardano:b5d4ee919fca83cc08710bf48736d97dd3b9a8086a7afa06c314aa11b3ff7823f2ea9a3f56e66d71cc89e0b50b7250c25794f4f12d345f48e95d5112571449ac:cardano", + "blockHeight": 10202804, + "extra": { + "memo": "TEST" + }, + "date": "2024-04-18T14:08:42.000Z", + "value": "25000000", + "fee": "170517" + } + ], + "pendingOperations": [], + "currencyId": "cardano", + "unitMagnitude": 6, + "lastSyncDate": "2024-06-03T07:55:39.766Z", + "balance": "23831859", + "spendableBalance": "23831859", + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859 + ], + "latestDate": 1717398000000 + }, + "DAY": { + "balances": [ + 0, + 25000000, + 25000000, + 25000000, + 25000000, + 25000000, + 25000000, + 25000000, + 25000000, + 25000000, + 25000000, + 25000000, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859 + ], + "latestDate": 1717365600000 + }, + "WEEK": { + "balances": [ + 0, + 25000000, + 25000000, + 23831859, + 23831859, + 23831859, + 23831859, + 23831859 + ], + "latestDate": 1717279200000 + } + }, + "xpub": "b5d4ee919fca83cc08710bf48736d97dd3b9a8086a7afa06c314aa11b3ff7823f2ea9a3f56e66d71cc89e0b50b7250c25794f4f12d345f48e95d5112571449ac", + "subAccounts": [], + "cardanoResources": { + "internalCredentials": [ + { + "isUsed": true, + "key": "e5ab1375482b4aa879057bf22becd054ebfacc731340a5df0f216142", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 1, + "index": 0 + } + }, + { + "isUsed": false, + "key": "bf1cad66e26f187c2dc255975f620ba25544ff51004d6f33b62f3d6d", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 1, + "index": 1 + } + }, + { + "isUsed": false, + "key": "95859875b076e9e8e03270dcfeda0757c494d36fa99f0f674c65e52e", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 1, + "index": 2 + } + }, + { + "isUsed": false, + "key": "c0f93ac61754fa073ad3c796fe9f4be208cb96ef97a72269f75bb208", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 1, + "index": 3 + } + }, + { + "isUsed": false, + "key": "9132b0b5d40a476d862383b05439719f66f570883644fb4c877c8b17", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 1, + "index": 4 + } + }, + { + "isUsed": false, + "key": "195bc04d130414393e98620c23e60db39cdbc6e1e3da1b3adba63f1c", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 1, + "index": 5 + } + }, + { + "isUsed": false, + "key": "b14e88412aa560c34c2f1866c9850be03cc54ecee4a9194adef5a476", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 1, + "index": 6 + } + }, + { + "isUsed": false, + "key": "b5d434393c28b2abc57e587ce62a24bcd1367e3593e4b6aaa670bf64", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 1, + "index": 7 + } + }, + { + "isUsed": false, + "key": "3240bf076d06a42ab2a21f16b31fa1252bcdbd7aa4697921af4f0e3c", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 1, + "index": 8 + } + }, + { + "isUsed": false, + "key": "e7f22628b2fc86f1695e94e4b82cf729c7b332355e231c2292db3833", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 1, + "index": 9 + } + }, + { + "isUsed": false, + "key": "b81bf07ba85b6d4ba8d480e928fff7703a2c6975f7af10c1900e4a2d", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 1, + "index": 10 + } + }, + { + "isUsed": false, + "key": "4c97edad2fb278bf3ef1f4f31a26dd3540ebd5fda6b548f1bccb263d", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 1, + "index": 11 + } + }, + { + "isUsed": false, + "key": "5c86578fc336e7feb383e46a8d0f3c5e50a34e83ea1aea051a8d23f4", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 1, + "index": 12 + } + }, + { + "isUsed": false, + "key": "2b07feb0898ed3348e623cd670cf51ad409b33f6b719c8d6a4f788e2", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 1, + "index": 13 + } + }, + { + "isUsed": false, + "key": "7737d47508da4644a611e741760c699647f9121169a121885c59ad74", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 1, + "index": 14 + } + }, + { + "isUsed": false, + "key": "31ed59e3697b0f0551e1ea4fcc2164f42b770765b45a626f65cebfe4", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 1, + "index": 15 + } + }, + { + "isUsed": false, + "key": "93edd70505abca80f20a99f22ce385cba05f4c8a7e02cfb55aef231f", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 1, + "index": 16 + } + }, + { + "isUsed": false, + "key": "da091ec54446c37ff6e3c7a1f0a9de007766dbfdb5a4e69f8c2dd013", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 1, + "index": 17 + } + }, + { + "isUsed": false, + "key": "ab46c6d207e5bf1081611e052a21bb5dd3be3704c1f50b6b4b678ede", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 1, + "index": 18 + } + }, + { + "isUsed": false, + "key": "679cb3c97cbb39e1bee5cb6657baeb48dd34389d6dcb3c3a57f4a7ef", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 1, + "index": 19 + } + }, + { + "isUsed": false, + "key": "a51e288aa17f6e34e267519c496469fa9811042e1f1a08f7ac62d131", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 1, + "index": 20 + } + } + ], + "externalCredentials": [ + { + "isUsed": true, + "key": "016b14936191510a6fa3a1faefe6eb1edc4eaaf145e67285b302ef0d", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 0, + "index": 0 + } + }, + { + "isUsed": false, + "key": "40505282265de3d05ac2bf31de6245c8f89c7ade43b04f4c51edc0da", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 0, + "index": 1 + } + }, + { + "isUsed": false, + "key": "02a28b0acb216dd607bf85a559ecb189bd15ec3596b5825fad291eb2", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 0, + "index": 2 + } + }, + { + "isUsed": false, + "key": "85ab647de313ffdb593525094e342c9edfe2de183f165a2cdb5429d1", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 0, + "index": 3 + } + }, + { + "isUsed": false, + "key": "dab2f5feef96f80750d82e11c972513dd2f557dc8fafd8c48b36eae2", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 0, + "index": 4 + } + }, + { + "isUsed": false, + "key": "78e49169f0620ef5b9651652565667b067b3232bb2698ee233c79b77", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 0, + "index": 5 + } + }, + { + "isUsed": false, + "key": "2f4de58e9cc405b6ddbb843e9b95758434d98f1e174477b1f3ac5476", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 0, + "index": 6 + } + }, + { + "isUsed": false, + "key": "28b7acf032feebf9d184213541073e83b4531791f43eee8543cfbb59", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 0, + "index": 7 + } + }, + { + "isUsed": false, + "key": "22cb7804d41060b766838640d7fa6cd07cb4de958609f5eee24f0526", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 0, + "index": 8 + } + }, + { + "isUsed": false, + "key": "5999c437c0be20bd1d2bef292994b1fc2b8a99a321c4b55cca68badc", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 0, + "index": 9 + } + }, + { + "isUsed": false, + "key": "656e3832f43e18dec8e124e4d7cf51b571992008fd26bdf3200156e5", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 0, + "index": 10 + } + }, + { + "isUsed": false, + "key": "8ae484a462e970ac6de23a181d54f84b3d18373e333510474241b2f7", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 0, + "index": 11 + } + }, + { + "isUsed": false, + "key": "d6f07218c05e04c5478a1fe96645d68e9630bebd3814f36a135234ae", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 0, + "index": 12 + } + }, + { + "isUsed": false, + "key": "ae29fe7ce00d3be3598cf4bd499a14909e44b2f8062c5f8ae31fcb25", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 0, + "index": 13 + } + }, + { + "isUsed": false, + "key": "b68830160a25e5a9f4fb52eba5a352fefed2c8605d562e48b1fb47ec", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 0, + "index": 14 + } + }, + { + "isUsed": false, + "key": "a8278d793380790a91a2d8798a394ffec9a4ffe489d7f5d633819a42", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 0, + "index": 15 + } + }, + { + "isUsed": false, + "key": "c05925216267bb248973bb1a069e8909fc8d61b52e34c2bca33fa474", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 0, + "index": 16 + } + }, + { + "isUsed": false, + "key": "7b5e44c53b84e24d30bb6fb0630ae68bf8b5c9a961c7c32f958a008c", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 0, + "index": 17 + } + }, + { + "isUsed": false, + "key": "4bfb0fa8bf51e43431855188d8135a460d1a3a4b23d43230d95a7982", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 0, + "index": 18 + } + }, + { + "isUsed": false, + "key": "bb38105186baf04f6be811c2d7cb8b6a289f81db8af4ac329fad7dc8", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 0, + "index": 19 + } + }, + { + "isUsed": false, + "key": "ad593b2ec3f9e2b7ce581e8bfc9d8ba7c981332be52543ea29f11092", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 0, + "index": 20 + } + } + ], + "delegation": { + "status": false, + "rewards": "0" + }, + "utxos": [ + { + "hash": "1c26109639901883bb9cd4b3aff3f3f7479dca4985ff9ea29fb0fc399e086278", + "index": 1, + "address": "01e5ab1375482b4aa879057bf22becd054ebfacc731340a5df0f2161429c4571e653ee7264e44ebb98448ddc7709cc321df5b7189be87c565d", + "amount": "23831859", + "tokens": [], + "paymentCredential": { + "key": "e5ab1375482b4aa879057bf22becd054ebfacc731340a5df0f216142", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 0, + "chain": 1, + "index": 0 + } + } + } + ], + "protocolParams": { + "minFeeA": "44", + "minFeeB": "155381", + "stakeKeyDeposit": "2000000", + "lovelacePerUtxoWord": "34482", + "collateralPercent": "150", + "priceSteps": "0.0000721", + "priceMem": "0.0577", + "languageView": { + "PlutusScriptV1": { + "sha2_256-memory-arguments": 4, + "equalsString-cpu-arguments-constant": 1000, + "cekDelayCost-exBudgetMemory": 100, + "lessThanEqualsByteString-cpu-arguments-intercept": 103599, + "divideInteger-memory-arguments-minimum": 1, + "appendByteString-cpu-arguments-slope": 621, + "blake2b-cpu-arguments-slope": 29175, + "iData-cpu-arguments": 150000, + "encodeUtf8-cpu-arguments-slope": 1000, + "unBData-cpu-arguments": 150000, + "multiplyInteger-cpu-arguments-intercept": 61516, + "cekConstCost-exBudgetMemory": 100, + "nullList-cpu-arguments": 150000, + "equalsString-cpu-arguments-intercept": 150000, + "trace-cpu-arguments": 150000, + "mkNilData-memory-arguments": 32, + "lengthOfByteString-cpu-arguments": 150000, + "cekBuiltinCost-exBudgetCPU": 29773, + "bData-cpu-arguments": 150000, + "subtractInteger-cpu-arguments-slope": 0, + "unIData-cpu-arguments": 150000, + "consByteString-memory-arguments-intercept": 0, + "divideInteger-memory-arguments-slope": 1, + "divideInteger-cpu-arguments-model-arguments-slope": 118, + "listData-cpu-arguments": 150000, + "headList-cpu-arguments": 150000, + "chooseData-memory-arguments": 32, + "equalsInteger-cpu-arguments-intercept": 136542, + "sha3_256-cpu-arguments-slope": 82363, + "sliceByteString-cpu-arguments-slope": 5000, + "unMapData-cpu-arguments": 150000, + "lessThanInteger-cpu-arguments-intercept": 179690, + "mkCons-cpu-arguments": 150000, + "appendString-memory-arguments-intercept": 0, + "modInteger-cpu-arguments-model-arguments-slope": 118, + "ifThenElse-cpu-arguments": 1, + "mkNilPairData-cpu-arguments": 150000, + "lessThanEqualsInteger-cpu-arguments-intercept": 145276, + "addInteger-memory-arguments-slope": 1, + "chooseList-memory-arguments": 32, + "constrData-memory-arguments": 32, + "decodeUtf8-cpu-arguments-intercept": 150000, + "equalsData-memory-arguments": 1, + "subtractInteger-memory-arguments-slope": 1, + "appendByteString-memory-arguments-intercept": 0, + "lengthOfByteString-memory-arguments": 4, + "headList-memory-arguments": 32, + "listData-memory-arguments": 32, + "consByteString-cpu-arguments-intercept": 150000, + "unIData-memory-arguments": 32, + "remainderInteger-memory-arguments-minimum": 1, + "bData-memory-arguments": 32, + "lessThanByteString-cpu-arguments-slope": 248, + "encodeUtf8-memory-arguments-intercept": 0, + "cekStartupCost-exBudgetCPU": 100, + "multiplyInteger-memory-arguments-intercept": 0, + "unListData-memory-arguments": 32, + "remainderInteger-cpu-arguments-model-arguments-slope": 118, + "cekVarCost-exBudgetCPU": 29773, + "remainderInteger-memory-arguments-slope": 1, + "cekForceCost-exBudgetCPU": 29773, + "sha2_256-cpu-arguments-slope": 29175, + "equalsInteger-memory-arguments": 1, + "indexByteString-memory-arguments": 1, + "addInteger-memory-arguments-intercept": 1, + "chooseUnit-cpu-arguments": 150000, + "sndPair-cpu-arguments": 150000, + "cekLamCost-exBudgetCPU": 29773, + "fstPair-cpu-arguments": 150000, + "quotientInteger-memory-arguments-minimum": 1, + "decodeUtf8-cpu-arguments-slope": 1000, + "lessThanInteger-memory-arguments": 1, + "lessThanEqualsInteger-cpu-arguments-slope": 1366, + "fstPair-memory-arguments": 32, + "modInteger-memory-arguments-intercept": 0, + "unConstrData-cpu-arguments": 150000, + "lessThanEqualsInteger-memory-arguments": 1, + "chooseUnit-memory-arguments": 32, + "sndPair-memory-arguments": 32, + "addInteger-cpu-arguments-intercept": 197209, + "decodeUtf8-memory-arguments-slope": 8, + "equalsData-cpu-arguments-intercept": 150000, + "mapData-cpu-arguments": 150000, + "mkPairData-cpu-arguments": 150000, + "quotientInteger-cpu-arguments-constant": 148000, + "consByteString-memory-arguments-slope": 1, + "cekVarCost-exBudgetMemory": 100, + "indexByteString-cpu-arguments": 150000, + "unListData-cpu-arguments": 150000, + "equalsInteger-cpu-arguments-slope": 1326, + "cekStartupCost-exBudgetMemory": 100, + "subtractInteger-cpu-arguments-intercept": 197209, + "divideInteger-cpu-arguments-model-arguments-intercept": 425507, + "divideInteger-memory-arguments-intercept": 0, + "cekForceCost-exBudgetMemory": 100, + "blake2b-cpu-arguments-intercept": 2477736, + "remainderInteger-cpu-arguments-constant": 148000, + "tailList-cpu-arguments": 150000, + "encodeUtf8-cpu-arguments-intercept": 150000, + "equalsString-cpu-arguments-slope": 1000, + "lessThanByteString-memory-arguments": 1, + "multiplyInteger-cpu-arguments-slope": 11218, + "appendByteString-cpu-arguments-intercept": 396231, + "lessThanEqualsByteString-cpu-arguments-slope": 248, + "modInteger-memory-arguments-slope": 1, + "addInteger-cpu-arguments-slope": 0, + "equalsData-cpu-arguments-slope": 10000, + "decodeUtf8-memory-arguments-intercept": 0, + "chooseList-cpu-arguments": 150000, + "constrData-cpu-arguments": 150000, + "equalsByteString-memory-arguments": 1, + "cekApplyCost-exBudgetCPU": 29773, + "quotientInteger-memory-arguments-slope": 1, + "verifySignature-cpu-arguments-intercept": 3345831, + "unMapData-memory-arguments": 32, + "mkCons-memory-arguments": 32, + "sliceByteString-memory-arguments-slope": 1, + "sha3_256-memory-arguments": 4, + "ifThenElse-memory-arguments": 1, + "mkNilPairData-memory-arguments": 32, + "equalsByteString-cpu-arguments-slope": 247, + "appendString-cpu-arguments-intercept": 150000, + "quotientInteger-cpu-arguments-model-arguments-slope": 118, + "cekApplyCost-exBudgetMemory": 100, + "equalsString-memory-arguments": 1, + "multiplyInteger-memory-arguments-slope": 1, + "cekBuiltinCost-exBudgetMemory": 100, + "remainderInteger-memory-arguments-intercept": 0, + "sha2_256-cpu-arguments-intercept": 2477736, + "remainderInteger-cpu-arguments-model-arguments-intercept": 425507, + "lessThanEqualsByteString-memory-arguments": 1, + "tailList-memory-arguments": 32, + "mkNilData-cpu-arguments": 150000, + "chooseData-cpu-arguments": 150000, + "unBData-memory-arguments": 32, + "blake2b-memory-arguments": 4, + "iData-memory-arguments": 32, + "nullList-memory-arguments": 32, + "cekDelayCost-exBudgetCPU": 29773, + "subtractInteger-memory-arguments-intercept": 1, + "lessThanByteString-cpu-arguments-intercept": 103599, + "consByteString-cpu-arguments-slope": 1000, + "appendByteString-memory-arguments-slope": 1, + "trace-memory-arguments": 32, + "divideInteger-cpu-arguments-constant": 148000, + "cekConstCost-exBudgetCPU": 29773, + "encodeUtf8-memory-arguments-slope": 8, + "quotientInteger-cpu-arguments-model-arguments-intercept": 425507, + "mapData-memory-arguments": 32, + "appendString-cpu-arguments-slope": 1000, + "modInteger-cpu-arguments-constant": 148000, + "verifySignature-cpu-arguments-slope": 1, + "unConstrData-memory-arguments": 32, + "quotientInteger-memory-arguments-intercept": 0, + "equalsByteString-cpu-arguments-constant": 150000, + "sliceByteString-memory-arguments-intercept": 0, + "mkPairData-memory-arguments": 32, + "equalsByteString-cpu-arguments-intercept": 112536, + "appendString-memory-arguments-slope": 1, + "lessThanInteger-cpu-arguments-slope": 497, + "modInteger-cpu-arguments-model-arguments-intercept": 425507, + "modInteger-memory-arguments-minimum": 1, + "sha3_256-cpu-arguments-intercept": 0, + "verifySignature-memory-arguments": 1, + "cekLamCost-exBudgetMemory": 100, + "sliceByteString-cpu-arguments-intercept": 150000 + } + } + } + }, + "swapHistory": [] + }, + "version": 1 + }, + { + "data": { + "id": "js:2:cardano:b4ee80fe8db05090bc2edcc3051e72fea0851c7905b9319c75160fa24f427ec32db3bba194dda5518d6f838cd036d9d0b96c5a6606e3c5668a51985673605776:cardano", + "seedIdentifier": "016b14936191510a6fa3a1faefe6eb1edc4eaaf145e67285b302ef0d", + "name": "Cardano 2", + "starred": false, + "used": true, + "derivationMode": "cardano", + "index": 1, + "freshAddress": "addr1qyjd47qfktpza4ycjddjadaarzwdumwrqws0xage8gvsmrq5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2qwzv6ac", + "freshAddressPath": "1852'/1815'/1'/0/1", + "freshAddresses": [ + { + "derivationPath": "1852'/1815'/1'/0/1", + "address": "addr1qyjd47qfktpza4ycjddjadaarzwdumwrqws0xage8gvsmrq5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2qwzv6ac" + }, + { + "derivationPath": "1852'/1815'/1'/0/2", + "address": "addr1qyflat7mhgnm9fq7lvhlysah4qetsfcystl9fa2wt39dr0c5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2qwg4q5g" + }, + { + "derivationPath": "1852'/1815'/1'/0/3", + "address": "addr1qylqelpccm8x04vffs90vhw88f5lfplruvjq0mh90qjvmjg5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2qep25u3" + }, + { + "derivationPath": "1852'/1815'/1'/0/4", + "address": "addr1q8fmt5knxv7kp8t0vk95m2yalv36x5zgtnrjxmz752ajvcc5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2qnc4ph4" + }, + { + "derivationPath": "1852'/1815'/1'/0/5", + "address": "addr1qxw5qevjz49qmfnayy4m9yr204yrer9xxqrymjaym2k0n7q5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2q86f2ta" + }, + { + "derivationPath": "1852'/1815'/1'/0/6", + "address": "addr1q8j55zeef0etz09nfeqdfrg929zpk0sy972kpl2k89jhtfq5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2qpzdste" + }, + { + "derivationPath": "1852'/1815'/1'/0/7", + "address": "addr1qxca4u4u0l8w7qftuqxnfswuvrdqdmr6xy53n3tdqmrqqms5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2ql8ukt8" + }, + { + "derivationPath": "1852'/1815'/1'/0/8", + "address": "addr1qy3knedr7qy5slzgyd9fzpq925mfr5v7vxz320s0q0x433s5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2q97f550" + }, + { + "derivationPath": "1852'/1815'/1'/0/9", + "address": "addr1qyc4j7ns09h60n7fcdrffj4h2alzyxn8vuwm76x24a965ks5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2q5km5g7" + }, + { + "derivationPath": "1852'/1815'/1'/0/10", + "address": "addr1q986ymkr04ap3md63r4kk8m6fuul9d3q9g6rdsxt46uv08q5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2qjxcuka" + }, + { + "derivationPath": "1852'/1815'/1'/0/11", + "address": "addr1q9eypsux879wacvp3esgvlndk2yylg8re5h66vnwdsmw25c5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2q2s6sn3" + }, + { + "derivationPath": "1852'/1815'/1'/0/12", + "address": "addr1q8edz6pdutnmvf9qxxsy52m6zj3wc33f3yedqfeh8z4a82s5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2q69a305" + }, + { + "derivationPath": "1852'/1815'/1'/0/13", + "address": "addr1q9enz0qud2vjkdc2rjv0336ya2nkfnxczf2r2lv7vk6m79c5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2q72h08j" + }, + { + "derivationPath": "1852'/1815'/1'/0/14", + "address": "addr1qxq22x7sw96y0el4lr66dxcd2e4zvqtp94su7q9384f3w4s5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2q8yrqnj" + }, + { + "derivationPath": "1852'/1815'/1'/0/15", + "address": "addr1q9ue9v6gu4xn3s8l7g9qy9yljyy0mkw2gj08308rzm6qdfs5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2qf3v7pj" + }, + { + "derivationPath": "1852'/1815'/1'/0/16", + "address": "addr1qynqu49hh3z8shlexev5mlgmwwt80v64xt6yjp7x87tj2ds5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2qjpktmx" + }, + { + "derivationPath": "1852'/1815'/1'/0/17", + "address": "addr1qy7r9f8hawd6hzjrfzenzhk4c8uh466qkpr7r8xytgq8m7g5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2q7ckv8h" + }, + { + "derivationPath": "1852'/1815'/1'/0/18", + "address": "addr1qyf7cftxx0hzrapu0gv2gzy2tdw0yjvrrafm4gfp38e2ljq5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2qpe24j4" + }, + { + "derivationPath": "1852'/1815'/1'/0/19", + "address": "addr1q9sgs68742fy44q4tdf8h4tku0verzhwj94uq403fv3c89s5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2q8nz37c" + }, + { + "derivationPath": "1852'/1815'/1'/0/20", + "address": "addr1q99dupz79gapjkuq386sdswhk0wrteyrsr60ye7k2y8ejeq5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2q2f6v8s" + } + ], + "blockHeight": 10397828, + "syncHash": "[]_102", + "creationDate": "2024-04-29T09:17:42.000Z", + "operationsCount": 1, + "operations": [ + { + "id": "js:2:cardano:b4ee80fe8db05090bc2edcc3051e72fea0851c7905b9319c75160fa24f427ec32db3bba194dda5518d6f838cd036d9d0b96c5a6606e3c5668a51985673605776:cardano-1c26109639901883bb9cd4b3aff3f3f7479dca4985ff9ea29fb0fc399e086278-IN", + "hash": "1c26109639901883bb9cd4b3aff3f3f7479dca4985ff9ea29fb0fc399e086278", + "type": "IN", + "senders": [ + "addr1qyqkk9ynvxg4zzn05wsl4mlxav0dcn4279z7vu59kvpw7rvug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ews7fq9gm" + ], + "recipients": [ + "addr1qx4tv7p6q4srm6c0kqf3sp2yp9aveuym530587lfcjsa0ag5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2qffgxst", + "addr1q8j6kym4fq4542req4aly2lv6p2wh7kvwvf5pfwlpuskzs5ug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ewsvwqaef" + ], + "accountId": "js:2:cardano:b4ee80fe8db05090bc2edcc3051e72fea0851c7905b9319c75160fa24f427ec32db3bba194dda5518d6f838cd036d9d0b96c5a6606e3c5668a51985673605776:cardano", + "blockHeight": 10248857, + "extra": {}, + "date": "2024-04-29T09:17:42.000Z", + "value": "1000000", + "fee": "168141" + } + ], + "pendingOperations": [], + "currencyId": "cardano", + "unitMagnitude": 6, + "lastSyncDate": "2024-06-03T07:55:39.777Z", + "balance": "1000000", + "spendableBalance": "1000000", + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + "latestDate": 1717398000000 + }, + "DAY": { + "balances": [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + "latestDate": 1717365600000 + }, + "WEEK": { + "balances": [ + 0, + 1000000, + 1000000, + 1000000, + 1000000, + 1000000 + ], + "latestDate": 1717279200000 + } + }, + "xpub": "b4ee80fe8db05090bc2edcc3051e72fea0851c7905b9319c75160fa24f427ec32db3bba194dda5518d6f838cd036d9d0b96c5a6606e3c5668a51985673605776", + "subAccounts": [], + "cardanoResources": { + "internalCredentials": [ + { + "isUsed": false, + "key": "a586c76d70ef0ff3e15f54ecae60cf1d1b381ab139052f655003375d", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 1, + "index": 0 + } + }, + { + "isUsed": false, + "key": "d1926643498f6c53ce0a78716713622a8b2cf8a176f39f5f3a16e17c", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 1, + "index": 1 + } + }, + { + "isUsed": false, + "key": "fbca96f776f4f9824964d2df85b494a789939492e1839d8a9497a673", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 1, + "index": 2 + } + }, + { + "isUsed": false, + "key": "b391dedf0a93dcd315dd23bdbb98088193cdabf140f287019847f4c8", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 1, + "index": 3 + } + }, + { + "isUsed": false, + "key": "5b3a6bf919383401e47b81696eea3b72d06169b53ad4074cce0ae711", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 1, + "index": 4 + } + }, + { + "isUsed": false, + "key": "e6c8a52637c51cbb6467dd41d3d5a866373a7999f00a5ff17949a51a", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 1, + "index": 5 + } + }, + { + "isUsed": false, + "key": "d5f78cf6018e8670b7fb563bc07433f83f224b9ccf2cf3d832e9f475", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 1, + "index": 6 + } + }, + { + "isUsed": false, + "key": "9d65c0e2f8dde5ebd230b7c82962a2ae3c113bade589ec3701cedafe", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 1, + "index": 7 + } + }, + { + "isUsed": false, + "key": "d0798007da8a61964f7df0988c37b883be22285b29116315ea2451dd", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 1, + "index": 8 + } + }, + { + "isUsed": false, + "key": "0aa5f1764a4423d0b6c0efb668235c9dc57996b9a8ca28f2cc1eea14", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 1, + "index": 9 + } + }, + { + "isUsed": false, + "key": "0e342f6cde2b5c05276213a0d054de2665eddd1b1f35b4fb3c4844c4", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 1, + "index": 10 + } + }, + { + "isUsed": false, + "key": "f4eedf23cefe4ac640cebc9564ed40fd4b220f277e634aec7c50a455", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 1, + "index": 11 + } + }, + { + "isUsed": false, + "key": "b60d47f7c6afcfaec1f392dd743b380134064950c2de26c7c2d426f6", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 1, + "index": 12 + } + }, + { + "isUsed": false, + "key": "3b0c03aed3451285397792c836455fd9f17ea415c7143b7d06470641", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 1, + "index": 13 + } + }, + { + "isUsed": false, + "key": "4502548e4b37e2d93dfe130b039c2d319943f9084913a0bab1ed00aa", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 1, + "index": 14 + } + }, + { + "isUsed": false, + "key": "2782410be0c79cf202d73f651bb1d4f2eda8791ff846ecaa2b8430bc", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 1, + "index": 15 + } + }, + { + "isUsed": false, + "key": "d9d17b1737cb8fece91807a46d00bf78f76d0a9075ebc9992fa90615", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 1, + "index": 16 + } + }, + { + "isUsed": false, + "key": "6c75292e0e4350a1eb7b379ab5302fc7788474ec6728e9f36e0f2326", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 1, + "index": 17 + } + }, + { + "isUsed": false, + "key": "6d5066764747b13f15c84765e36f3d4905d7fe99c2738b2e1011a2e7", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 1, + "index": 18 + } + }, + { + "isUsed": false, + "key": "c20a2414dcaa6a06df7d2d41c6752efda34c5a1f28fe3e566217e3ad", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 1, + "index": 19 + } + } + ], + "externalCredentials": [ + { + "isUsed": true, + "key": "aab6783a05603deb0fb013180544097accf09ba45f43fbe9c4a1d7f5", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 0, + "index": 0 + } + }, + { + "isUsed": false, + "key": "24daf809b2c22ed498935b2eb7bd189cde6dc303a0f375193a190d8c", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 0, + "index": 1 + } + }, + { + "isUsed": false, + "key": "13feafdbba27b2a41efb2ff243b7a832b8270482fe54f54e5c4ad1bf", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 0, + "index": 2 + } + }, + { + "isUsed": false, + "key": "3e0cfc38c6ce67d5894c0af65dc73a69f487e3e32407eee57824cdc9", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 0, + "index": 3 + } + }, + { + "isUsed": false, + "key": "d3b5d2d3333d609d6f658b4da89dfb23a350485cc7236c5ea2bb2663", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 0, + "index": 4 + } + }, + { + "isUsed": false, + "key": "9d406592154a0da67d212bb2906a7d483c8ca630064dcba4daacf9f8", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 0, + "index": 5 + } + }, + { + "isUsed": false, + "key": "e54a0b394bf2b13cb34e40d48d0551441b3e042f9560fd56396575a4", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 0, + "index": 6 + } + }, + { + "isUsed": false, + "key": "b1daf2bc7fceef012be00d34c1dc60da06ec7a312919c56d06c6006e", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 0, + "index": 7 + } + }, + { + "isUsed": false, + "key": "2369e5a3f009487c48234a910405553691d19e6185153e0f03cd58c6", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 0, + "index": 8 + } + }, + { + "isUsed": false, + "key": "31597a70796fa7cfc9c34694cab7577e221a67671dbf68caaf4baa5a", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 0, + "index": 9 + } + }, + { + "isUsed": false, + "key": "4fa26ec37d7a18edba88eb6b1f7a4f39f2b6202a3436c0cbaeb8c79c", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 0, + "index": 10 + } + }, + { + "isUsed": false, + "key": "7240c3863f8aeee1818e60867e6db2884fa0e3cd2fad326e6c36e553", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 0, + "index": 11 + } + }, + { + "isUsed": false, + "key": "f2d1682de2e7b624a031a04a2b7a14a2ec46298932d0273738abd3aa", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 0, + "index": 12 + } + }, + { + "isUsed": false, + "key": "73313c1c6a992b370a1c98f8c744eaa764ccd81254357d9e65b5bf17", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 0, + "index": 13 + } + }, + { + "isUsed": false, + "key": "80a51bd0717447e7f5f8f5a69b0d566a2601612d61cf00b13d531756", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 0, + "index": 14 + } + }, + { + "isUsed": false, + "key": "7992b348e54d38c0fff20a02149f9108fdd9ca449e78bce316f406a6", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 0, + "index": 15 + } + }, + { + "isUsed": false, + "key": "260e54b7bc44785ff936594dfd1b739677b35532f44907c63f972536", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 0, + "index": 16 + } + }, + { + "isUsed": false, + "key": "3c32a4f7eb9bab8a4348b3315ed5c1f97aeb40b047e19cc45a007df9", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 0, + "index": 17 + } + }, + { + "isUsed": false, + "key": "13ec256633ee21f43c7a18a4088a5b5cf249831f53baa12189f2afc8", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 0, + "index": 18 + } + }, + { + "isUsed": false, + "key": "608868feaa924ad4155b527bd576e3d9918aee916bc055f14b238396", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 0, + "index": 19 + } + }, + { + "isUsed": false, + "key": "4ade045e2a3a195b8089f506c1d7b3dc35e48380f4f267d6510f9964", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 0, + "index": 20 + } + } + ], + "delegation": { + "status": false, + "rewards": "0" + }, + "utxos": [ + { + "hash": "1c26109639901883bb9cd4b3aff3f3f7479dca4985ff9ea29fb0fc399e086278", + "index": 0, + "address": "01aab6783a05603deb0fb013180544097accf09ba45f43fbe9c4a1d7f51445f6696db2ae49f078eee0d48defc858120a959adadb6e81c01114", + "amount": "1000000", + "tokens": [], + "paymentCredential": { + "key": "aab6783a05603deb0fb013180544097accf09ba45f43fbe9c4a1d7f5", + "path": { + "purpose": 1852, + "coin": 1815, + "account": 1, + "chain": 0, + "index": 0 + } + } + } + ], + "protocolParams": { + "minFeeA": "44", + "minFeeB": "155381", + "stakeKeyDeposit": "2000000", + "lovelacePerUtxoWord": "34482", + "collateralPercent": "150", + "priceSteps": "0.0000721", + "priceMem": "0.0577", + "languageView": { + "PlutusScriptV1": { + "sha2_256-memory-arguments": 4, + "equalsString-cpu-arguments-constant": 1000, + "cekDelayCost-exBudgetMemory": 100, + "lessThanEqualsByteString-cpu-arguments-intercept": 103599, + "divideInteger-memory-arguments-minimum": 1, + "appendByteString-cpu-arguments-slope": 621, + "blake2b-cpu-arguments-slope": 29175, + "iData-cpu-arguments": 150000, + "encodeUtf8-cpu-arguments-slope": 1000, + "unBData-cpu-arguments": 150000, + "multiplyInteger-cpu-arguments-intercept": 61516, + "cekConstCost-exBudgetMemory": 100, + "nullList-cpu-arguments": 150000, + "equalsString-cpu-arguments-intercept": 150000, + "trace-cpu-arguments": 150000, + "mkNilData-memory-arguments": 32, + "lengthOfByteString-cpu-arguments": 150000, + "cekBuiltinCost-exBudgetCPU": 29773, + "bData-cpu-arguments": 150000, + "subtractInteger-cpu-arguments-slope": 0, + "unIData-cpu-arguments": 150000, + "consByteString-memory-arguments-intercept": 0, + "divideInteger-memory-arguments-slope": 1, + "divideInteger-cpu-arguments-model-arguments-slope": 118, + "listData-cpu-arguments": 150000, + "headList-cpu-arguments": 150000, + "chooseData-memory-arguments": 32, + "equalsInteger-cpu-arguments-intercept": 136542, + "sha3_256-cpu-arguments-slope": 82363, + "sliceByteString-cpu-arguments-slope": 5000, + "unMapData-cpu-arguments": 150000, + "lessThanInteger-cpu-arguments-intercept": 179690, + "mkCons-cpu-arguments": 150000, + "appendString-memory-arguments-intercept": 0, + "modInteger-cpu-arguments-model-arguments-slope": 118, + "ifThenElse-cpu-arguments": 1, + "mkNilPairData-cpu-arguments": 150000, + "lessThanEqualsInteger-cpu-arguments-intercept": 145276, + "addInteger-memory-arguments-slope": 1, + "chooseList-memory-arguments": 32, + "constrData-memory-arguments": 32, + "decodeUtf8-cpu-arguments-intercept": 150000, + "equalsData-memory-arguments": 1, + "subtractInteger-memory-arguments-slope": 1, + "appendByteString-memory-arguments-intercept": 0, + "lengthOfByteString-memory-arguments": 4, + "headList-memory-arguments": 32, + "listData-memory-arguments": 32, + "consByteString-cpu-arguments-intercept": 150000, + "unIData-memory-arguments": 32, + "remainderInteger-memory-arguments-minimum": 1, + "bData-memory-arguments": 32, + "lessThanByteString-cpu-arguments-slope": 248, + "encodeUtf8-memory-arguments-intercept": 0, + "cekStartupCost-exBudgetCPU": 100, + "multiplyInteger-memory-arguments-intercept": 0, + "unListData-memory-arguments": 32, + "remainderInteger-cpu-arguments-model-arguments-slope": 118, + "cekVarCost-exBudgetCPU": 29773, + "remainderInteger-memory-arguments-slope": 1, + "cekForceCost-exBudgetCPU": 29773, + "sha2_256-cpu-arguments-slope": 29175, + "equalsInteger-memory-arguments": 1, + "indexByteString-memory-arguments": 1, + "addInteger-memory-arguments-intercept": 1, + "chooseUnit-cpu-arguments": 150000, + "sndPair-cpu-arguments": 150000, + "cekLamCost-exBudgetCPU": 29773, + "fstPair-cpu-arguments": 150000, + "quotientInteger-memory-arguments-minimum": 1, + "decodeUtf8-cpu-arguments-slope": 1000, + "lessThanInteger-memory-arguments": 1, + "lessThanEqualsInteger-cpu-arguments-slope": 1366, + "fstPair-memory-arguments": 32, + "modInteger-memory-arguments-intercept": 0, + "unConstrData-cpu-arguments": 150000, + "lessThanEqualsInteger-memory-arguments": 1, + "chooseUnit-memory-arguments": 32, + "sndPair-memory-arguments": 32, + "addInteger-cpu-arguments-intercept": 197209, + "decodeUtf8-memory-arguments-slope": 8, + "equalsData-cpu-arguments-intercept": 150000, + "mapData-cpu-arguments": 150000, + "mkPairData-cpu-arguments": 150000, + "quotientInteger-cpu-arguments-constant": 148000, + "consByteString-memory-arguments-slope": 1, + "cekVarCost-exBudgetMemory": 100, + "indexByteString-cpu-arguments": 150000, + "unListData-cpu-arguments": 150000, + "equalsInteger-cpu-arguments-slope": 1326, + "cekStartupCost-exBudgetMemory": 100, + "subtractInteger-cpu-arguments-intercept": 197209, + "divideInteger-cpu-arguments-model-arguments-intercept": 425507, + "divideInteger-memory-arguments-intercept": 0, + "cekForceCost-exBudgetMemory": 100, + "blake2b-cpu-arguments-intercept": 2477736, + "remainderInteger-cpu-arguments-constant": 148000, + "tailList-cpu-arguments": 150000, + "encodeUtf8-cpu-arguments-intercept": 150000, + "equalsString-cpu-arguments-slope": 1000, + "lessThanByteString-memory-arguments": 1, + "multiplyInteger-cpu-arguments-slope": 11218, + "appendByteString-cpu-arguments-intercept": 396231, + "lessThanEqualsByteString-cpu-arguments-slope": 248, + "modInteger-memory-arguments-slope": 1, + "addInteger-cpu-arguments-slope": 0, + "equalsData-cpu-arguments-slope": 10000, + "decodeUtf8-memory-arguments-intercept": 0, + "chooseList-cpu-arguments": 150000, + "constrData-cpu-arguments": 150000, + "equalsByteString-memory-arguments": 1, + "cekApplyCost-exBudgetCPU": 29773, + "quotientInteger-memory-arguments-slope": 1, + "verifySignature-cpu-arguments-intercept": 3345831, + "unMapData-memory-arguments": 32, + "mkCons-memory-arguments": 32, + "sliceByteString-memory-arguments-slope": 1, + "sha3_256-memory-arguments": 4, + "ifThenElse-memory-arguments": 1, + "mkNilPairData-memory-arguments": 32, + "equalsByteString-cpu-arguments-slope": 247, + "appendString-cpu-arguments-intercept": 150000, + "quotientInteger-cpu-arguments-model-arguments-slope": 118, + "cekApplyCost-exBudgetMemory": 100, + "equalsString-memory-arguments": 1, + "multiplyInteger-memory-arguments-slope": 1, + "cekBuiltinCost-exBudgetMemory": 100, + "remainderInteger-memory-arguments-intercept": 0, + "sha2_256-cpu-arguments-intercept": 2477736, + "remainderInteger-cpu-arguments-model-arguments-intercept": 425507, + "lessThanEqualsByteString-memory-arguments": 1, + "tailList-memory-arguments": 32, + "mkNilData-cpu-arguments": 150000, + "chooseData-cpu-arguments": 150000, + "unBData-memory-arguments": 32, + "blake2b-memory-arguments": 4, + "iData-memory-arguments": 32, + "nullList-memory-arguments": 32, + "cekDelayCost-exBudgetCPU": 29773, + "subtractInteger-memory-arguments-intercept": 1, + "lessThanByteString-cpu-arguments-intercept": 103599, + "consByteString-cpu-arguments-slope": 1000, + "appendByteString-memory-arguments-slope": 1, + "trace-memory-arguments": 32, + "divideInteger-cpu-arguments-constant": 148000, + "cekConstCost-exBudgetCPU": 29773, + "encodeUtf8-memory-arguments-slope": 8, + "quotientInteger-cpu-arguments-model-arguments-intercept": 425507, + "mapData-memory-arguments": 32, + "appendString-cpu-arguments-slope": 1000, + "modInteger-cpu-arguments-constant": 148000, + "verifySignature-cpu-arguments-slope": 1, + "unConstrData-memory-arguments": 32, + "quotientInteger-memory-arguments-intercept": 0, + "equalsByteString-cpu-arguments-constant": 150000, + "sliceByteString-memory-arguments-intercept": 0, + "mkPairData-memory-arguments": 32, + "equalsByteString-cpu-arguments-intercept": 112536, + "appendString-memory-arguments-slope": 1, + "lessThanInteger-cpu-arguments-slope": 497, + "modInteger-cpu-arguments-model-arguments-intercept": 425507, + "modInteger-memory-arguments-minimum": 1, + "sha3_256-cpu-arguments-intercept": 0, + "verifySignature-memory-arguments": 1, + "cekLamCost-exBudgetMemory": 100, + "sliceByteString-cpu-arguments-intercept": 150000 + } + } + } + }, + "swapHistory": [] + }, + "version": 1 + }, + { + "data": { + "id": "js:2:cosmos:cosmos18sdl4lvyjtvpjkkt5smglux9sf4phdcpaddfae:", + "seedIdentifier": "03e16f914a1130deac2f019db2aca7b1a1ebf8ebc298eae302debe345870e1cb0c", + "name": "Cosmos 1", + "starred": false, + "used": true, + "derivationMode": "", + "index": 0, + "freshAddress": "cosmos18sdl4lvyjtvpjkkt5smglux9sf4phdcpaddfae", + "freshAddressPath": "44'/118'/0'/0/0", + "freshAddresses": [ + { + "address": "cosmos18sdl4lvyjtvpjkkt5smglux9sf4phdcpaddfae", + "derivationPath": "44'/118'/0'/0/0" + } + ], + "blockHeight": 20705824, + "creationDate": "2024-05-29T14:29:02.000Z", + "operationsCount": 1, + "operations": [ + { + "id": "js:2:cosmos:cosmos18sdl4lvyjtvpjkkt5smglux9sf4phdcpaddfae:-FBC96D4F849930063DAC2D9660F592817A6FF24811555A761B2BBD392CE9095A-IN", + "hash": "FBC96D4F849930063DAC2D9660F592817A6FF24811555A761B2BBD392CE9095A", + "type": "IN", + "senders": [ + "cosmos153lf4zntqt33a4v0sm5cytrxyqn78q7kz8j8x5" + ], + "recipients": [ + "cosmos18sdl4lvyjtvpjkkt5smglux9sf4phdcpaddfae" + ], + "accountId": "js:2:cosmos:cosmos18sdl4lvyjtvpjkkt5smglux9sf4phdcpaddfae:", + "blockHash": null, + "blockHeight": 20638604, + "extra": {}, + "date": "2024-05-29T14:29:02.000Z", + "value": "1386398", + "fee": "100000", + "transactionSequenceNumber": 70493, + "hasFailed": false + } + ], + "pendingOperations": [], + "currencyId": "cosmos", + "unitMagnitude": 6, + "lastSyncDate": "2024-06-03T07:55:39.365Z", + "balance": "1386398", + "spendableBalance": "1386398", + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 0, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398 + ], + "latestDate": 1717398000000 + }, + "DAY": { + "balances": [ + 0, + 1386398, + 1386398, + 1386398, + 1386398, + 1386398 + ], + "latestDate": 1717365600000 + }, + "WEEK": { + "balances": [ + 0, + 1386398 + ], + "latestDate": 1717279200000 + } + }, + "xpub": "cosmos18sdl4lvyjtvpjkkt5smglux9sf4phdcpaddfae", + "cosmosResources": { + "delegations": [], + "redelegations": [], + "unbondings": [], + "delegatedBalance": "0", + "pendingRewardsBalance": "0", + "unbondingBalance": "0", + "withdrawAddress": "cosmos18sdl4lvyjtvpjkkt5smglux9sf4phdcpaddfae", + "sequence": 0 + }, + "swapHistory": [] + }, + "version": 1 + }, + { + "data": { + "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "seedIdentifier": "047e89e2c6153732ee8f54bca17a4a74d3e1d9bddcb6149ed113394f79f585987d90e550639bf0fb76466141684bc43fbc90a24cd9f287fa4662f8ea2b889da1e7", + "name": "Ethereum 1", + "starred": false, + "used": true, + "derivationMode": "", + "index": 0, + "freshAddress": "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6", + "freshAddressPath": "44'/60'/0'/0/0", + "freshAddresses": [ + { + "address": "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6", + "derivationPath": "44'/60'/0'/0/0" + } + ], + "blockHeight": 20009940, + "syncHash": "0xb3758d3a", + "creationDate": "2024-04-10T12:19:59.000Z", + "operationsCount": 9, + "operations": [ + { + "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x5311d74df27e94825b5e8fba09a426e95e9b0098171c4ff4f82243241384b8dd-OUT", + "hash": "0x5311d74df27e94825b5e8fba09a426e95e9b0098171c4ff4f82243241384b8dd", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x3212e5Eb0b889881D6Fc193F26c87312eD796e3A" + ], + "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xb8cf3be6fac56b8e2515b6755845609d9e1b0315c38025561539319707a7bb1c", + "blockHeight": 19976206, + "extra": {}, + "date": "2024-05-29T14:46:59.000Z", + "value": "4530843419386000", + "fee": "530843419386000", + "transactionSequenceNumber": 5, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xc47123d53a94bebd75112865df680c019c00435441a76feb63eea923ac8e5d22-OUT", + "hash": "0xc47123d53a94bebd75112865df680c019c00435441a76feb63eea923ac8e5d22", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x9910feAD77AA34342a11431AcCe18536a75C1bce" + ], + "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x8ad54ea0499814d9132ce35d8150fe1ac7d6e591f9a5f762f4369e413e1350cf", + "blockHeight": 19976110, + "extra": {}, + "date": "2024-05-29T14:27:35.000Z", + "value": "4423215045505000", + "fee": "423215045505000", + "transactionSequenceNumber": 4, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x8e14e9ea83962fdcb7f4df29a274b9a95299398b656ad257882d6aa3e0ee5559-OUT", + "hash": "0x8e14e9ea83962fdcb7f4df29a274b9a95299398b656ad257882d6aa3e0ee5559", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0xA01ee92F03Db6E2663A0dBea49971FFb47419c93" + ], + "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x18230d48a485e2dc10c65ac8489f0df1cee8d9774cd1f49dad94d0f61ed91381", + "blockHeight": 19976060, + "extra": {}, + "date": "2024-05-29T14:17:35.000Z", + "value": "4487919074629000", + "fee": "487919074629000", + "transactionSequenceNumber": 3, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xf670b36ae494c9e328e40012e819d36ef8c3bd1b8e4a5ceb13909ed8bdb2e90e-OUT", + "hash": "0xf670b36ae494c9e328e40012e819d36ef8c3bd1b8e4a5ceb13909ed8bdb2e90e", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0xD37BbE5744D730a1d98d8DC97c42F0Ca46aD7146" + ], + "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x456cc434af21c58d45488af2d4ffa02715dcd10982101f2712450c8b13cec14c", + "blockHeight": 19975950, + "extra": {}, + "date": "2024-05-29T13:55:35.000Z", + "value": "4807298981452369", + "fee": "807298981452369", + "transactionSequenceNumber": 2, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x12d09eea0443d9c21634c1d8b6222d0e3d8c4070b8149454b53fd1ef93e60e64-OUT", + "hash": "0x12d09eea0443d9c21634c1d8b6222d0e3d8c4070b8149454b53fd1ef93e60e64", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x59861265f201088607E691dC3e4E317197cc99D7" + ], + "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xd8d08b009f7d38acf8929a13b66fdd895e8ff58b7880d5c542ddb2e1d61a7278", + "blockHeight": 19975783, + "extra": {}, + "date": "2024-05-29T13:22:11.000Z", + "value": "8415525973247000", + "fee": "415525973247000", + "transactionSequenceNumber": 1, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x8335908658142154cd38d884729dfe450ecce1e92b6b823439a00c071502f5d1-IN", + "hash": "0x8335908658142154cd38d884729dfe450ecce1e92b6b823439a00c071502f5d1", + "type": "IN", + "senders": [ + "0x04F479967bBc039E060d6292e5dE86f249291bbc" + ], + "recipients": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xc6d10cc76084ce8f75a0fec63f140c902660ba26adfe3d8385ae8442a6e4f6a8", + "blockHeight": 19969391, + "extra": {}, + "date": "2024-05-28T15:54:47.000Z", + "value": "52000000000000000", + "fee": "374133844980000", + "transactionSequenceNumber": 20, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x48831ea0324ee5921c0dca9dfad014be64867734ad76144822d35c853c87bf54-OUT", + "hash": "0x48831ea0324ee5921c0dca9dfad014be64867734ad76144822d35c853c87bf54", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xda6807e9b25b1b8f5f4119429868eca096543e2146f2410421fd9d5bb2b6011c", + "blockHeight": 19666996, + "extra": {}, + "date": "2024-04-16T08:56:59.000Z", + "value": "242324232847000", + "fee": "232324232847000", + "transactionSequenceNumber": 0, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x6c8578a49bb09b1d1006f1d6bbf93292703665cabfd9e04238a6f244b4b5afec-NONE", + "hash": "0x6c8578a49bb09b1d1006f1d6bbf93292703665cabfd9e04238a6f244b4b5afec", + "type": "NONE", + "senders": [ + "0x84c9A36721eB21da9244Fe50177180D8f4a7cAF7" + ], + "recipients": [ + "0xdAC17F958D2ee523a2206206994597C13D831ec7" + ], + "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x16bdbd15adbb60b78f5e98abf9ae9ef4fd3a8db5654b50cf79c83d5fdd49cb58", + "blockHeight": 19659636, + "extra": {}, + "date": "2024-04-15T08:10:35.000Z", + "value": "0", + "fee": "716341757180607", + "transactionSequenceNumber": 287, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xa4849c653dcaa518bff5afae4ca1fc7ebeaabde79a18eabadbe6e5a823926057-IN", + "hash": "0xa4849c653dcaa518bff5afae4ca1fc7ebeaabde79a18eabadbe6e5a823926057", + "type": "IN", + "senders": [ + "0x4F008D1A92295d09294B778188Be9a74659515D3" + ], + "recipients": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x7701a0ad05d3522d610269400bcaa3090b0f0929222f3ea4ec6be15e699bd7c3", + "blockHeight": 19625186, + "extra": {}, + "date": "2024-04-10T12:19:59.000Z", + "value": "616385555132247", + "fee": "382291376376000", + "transactionSequenceNumber": 0, + "hasFailed": false, + "internalOperations": [] + } + ], + "pendingOperations": [], + "currencyId": "ethereum", + "unitMagnitude": 18, + "lastSyncDate": "2024-06-03T07:55:38.980Z", + "balance": "25709258828065878", + "spendableBalance": "25709258828065878", + "nfts": [], + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 52374061322285250, + 52374061322285250, + 52374061322285250, + 52374061322285250, + 52374061322285250, + 52374061322285250, + 52374061322285250, + 52374061322285250, + 52374061322285250, + 52374061322285250, + 52374061322285250, + 52374061322285250, + 52374061322285250, + 52374061322285250, + 52374061322285250, + 52374061322285250, + 52374061322285250, + 52374061322285250, + 52374061322285250, + 52374061322285250, + 52374061322285250, + 52374061322285250, + 39151236367585880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880 + ], + "latestDate": 1717398000000 + }, + "DAY": { + "balances": [ + 0, + 616385555132247, + 616385555132247, + 616385555132247, + 616385555132247, + 616385555132247, + 616385555132247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 52374061322285250, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880, + 25709258828065880 + ], + "latestDate": 1717365600000 + }, + "WEEK": { + "balances": [ + 0, + 616385555132247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 374061322285247, + 25709258828065880 + ], + "latestDate": 1717279200000 + } + }, + "subAccounts": [ + { + "type": "TokenAccountRaw", + "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", + "parentId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "tokenId": "ethereum/erc20/usd_tether__erc20_", + "balance": "5000000", + "spendableBalance": "5000000", + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000 + ], + "latestDate": 1717398000000 + }, + "DAY": { + "balances": [ + 0, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000 + ], + "latestDate": 1717365600000 + }, + "WEEK": { + "balances": [ + 0, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000, + 5000000 + ], + "latestDate": 1717279200000 + } + }, + "creationDate": "2024-06-03T02:02:00.862Z", + "operationsCount": 1, + "operations": [ + { + "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~-0x6c8578a49bb09b1d1006f1d6bbf93292703665cabfd9e04238a6f244b4b5afec-IN-i0", + "hash": "0x6c8578a49bb09b1d1006f1d6bbf93292703665cabfd9e04238a6f244b4b5afec", + "type": "IN", + "senders": [ + "0x84c9A36721eB21da9244Fe50177180D8f4a7cAF7" + ], + "recipients": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", + "blockHash": "0x16bdbd15adbb60b78f5e98abf9ae9ef4fd3a8db5654b50cf79c83d5fdd49cb58", + "blockHeight": 19659636, + "extra": {}, + "date": "2024-04-15T08:10:35.000Z", + "value": "5000000", + "fee": "716341757180607", + "contract": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "transactionSequenceNumber": 287 + } + ], + "pendingOperations": [], + "swapHistory": [] + } + ], + "swapHistory": [ + { + "status": "pending", + "provider": "changelly", + "operationId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x12d09eea0443d9c21634c1d8b6222d0e3d8c4070b8149454b53fd1ef93e60e64-OUT", + "swapId": "fmwnt4mc0tiz75kz", + "receiverAccountId": "js:2:stellar:GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX:sep5", + "fromAmount": "8000000000000000", + "toAmount": "2680652608" + } + ] + }, + "version": 1 + }, + { + "data": { + "id": "js:2:ethereum:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "seedIdentifier": "047e89e2c6153732ee8f54bca17a4a74d3e1d9bddcb6149ed113394f79f585987d90e550639bf0fb76466141684bc43fbc90a24cd9f287fa4662f8ea2b889da1e7", + "name": "Ethereum 2", + "starred": false, + "used": true, + "derivationMode": "", + "index": 1, + "freshAddress": "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad", + "freshAddressPath": "44'/60'/1'/0/0", + "freshAddresses": [ + { + "address": "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad", + "derivationPath": "44'/60'/1'/0/0" + } + ], + "blockHeight": 20009940, + "syncHash": "0xb3758d3a", + "creationDate": "2024-04-16T08:56:59.000Z", + "operationsCount": 1, + "operations": [ + { + "id": "js:2:ethereum:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x48831ea0324ee5921c0dca9dfad014be64867734ad76144822d35c853c87bf54-IN", + "hash": "0x48831ea0324ee5921c0dca9dfad014be64867734ad76144822d35c853c87bf54", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0xda6807e9b25b1b8f5f4119429868eca096543e2146f2410421fd9d5bb2b6011c", + "blockHeight": 19666996, + "extra": {}, + "date": "2024-04-16T08:56:59.000Z", + "value": "10000000000000", + "fee": "232324232847000", + "transactionSequenceNumber": 0, + "hasFailed": false, + "internalOperations": [] + } + ], + "pendingOperations": [], + "currencyId": "ethereum", + "unitMagnitude": 18, + "lastSyncDate": "2024-06-03T07:55:38.453Z", + "balance": "10000000000000", + "spendableBalance": "10000000000000", + "nfts": [], + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000 + ], + "latestDate": 1717398000000 + }, + "DAY": { + "balances": [ + 0, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000 + ], + "latestDate": 1717365600000 + }, + "WEEK": { + "balances": [ + 0, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000, + 10000000000000 + ], + "latestDate": 1717279200000 + } + }, + "subAccounts": [], + "swapHistory": [] + }, + "version": 1 + }, + { + "data": { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "seedIdentifier": "047e89e2c6153732ee8f54bca17a4a74d3e1d9bddcb6149ed113394f79f585987d90e550639bf0fb76466141684bc43fbc90a24cd9f287fa4662f8ea2b889da1e7", + "name": "Ethereum Holesky 1", + "starred": false, + "used": true, + "derivationMode": "", + "index": 0, + "freshAddress": "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6", + "freshAddressPath": "44'/60'/0'/0/0", + "freshAddresses": [ + { + "address": "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6", + "derivationPath": "44'/60'/0'/0/0" + } + ], + "blockHeight": 1662600, + "syncHash": "0x1efd2c0a", + "creationDate": "2024-04-10T12:26:48.000Z", + "operationsCount": 77, + "operations": [ + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x3a028e2b1966adfe529f772af4447cea4d3f043d785c4cc486f47080287b7887-NONE", + "hash": "0x3a028e2b1966adfe529f772af4447cea4d3f043d785c4cc486f47080287b7887", + "type": "NONE", + "senders": [ + "0xdA7c6763F80330B41c4461904aA111a81c3c0786" + ], + "recipients": [ + "0xd1d51D361E41E15FF02f89317cd18369d420Dc9c" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xe597ee5867fb19c775b88fba2c151ce7d16f424ae5ab8a09c6c7da1f1c424da1", + "blockHeight": 1628387, + "extra": {}, + "date": "2024-05-28T15:58:00.000Z", + "value": "0", + "fee": "1707721195595616", + "transactionSequenceNumber": 134813, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x620ba005bfe72a8a7bfa4fabcf1b4b159df10d2e272411cb2854b5bc21d6ba66-OUT", + "hash": "0x620ba005bfe72a8a7bfa4fabcf1b4b159df10d2e272411cb2854b5bc21d6ba66", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x55fb72707e0295e2d37f77b58d0b53775bd184fdf65fecd58c4906f4180db6ce", + "blockHeight": 1560434, + "extra": {}, + "date": "2024-05-17T07:51:24.000Z", + "value": "213885644641000", + "fee": "203885644641000", + "transactionSequenceNumber": 72, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x511dcca538a67e2c02bfd1bc0e7ee0cc9e12118212404d91b94581f7f2ec874f-OUT", + "hash": "0x511dcca538a67e2c02bfd1bc0e7ee0cc9e12118212404d91b94581f7f2ec874f", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xf99de44538594bda7d6a0a65c725a01cf05c6a04b615b4a2c335a3b6829bdf7b", + "blockHeight": 1560412, + "extra": {}, + "date": "2024-05-17T07:46:24.000Z", + "value": "165846614161000", + "fee": "155846614161000", + "transactionSequenceNumber": 71, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xeff24640a3d439a555003b86bf3d1beabadd9cfdba1aabaa0b5b5b67934b09ff-OUT", + "hash": "0xeff24640a3d439a555003b86bf3d1beabadd9cfdba1aabaa0b5b5b67934b09ff", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x6ad8f4178cddc558cad1e07b49389018ab8f9da557510553a9ec8e9c1b06775a", + "blockHeight": 1560395, + "extra": {}, + "date": "2024-05-17T07:43:00.000Z", + "value": "234210143542000", + "fee": "224210143542000", + "transactionSequenceNumber": 70, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x39ea0c6149cb2d3a94b8fcda223ff1196a0acc96bb7070939640e2cc28d8b157-OUT", + "hash": "0x39ea0c6149cb2d3a94b8fcda223ff1196a0acc96bb7070939640e2cc28d8b157", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xfde65a49a7668c829be400f3f03bd5612eb1c85b5ced52dc622734a9805b0664", + "blockHeight": 1560295, + "extra": {}, + "date": "2024-05-17T07:20:12.000Z", + "value": "158302973602000", + "fee": "148302973602000", + "transactionSequenceNumber": 69, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x3b9aef731d4189f8027ec4839d5a4fe2a3b660f0e903b07e4bbda8daee70c076-OUT", + "hash": "0x3b9aef731d4189f8027ec4839d5a4fe2a3b660f0e903b07e4bbda8daee70c076", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xf574faaa86156d6e4f4db1080e00a85f4b9929f7ec8db8adbee2a799780be8de", + "blockHeight": 1560191, + "extra": {}, + "date": "2024-05-17T06:55:36.000Z", + "value": "158074528441000", + "fee": "148074528441000", + "transactionSequenceNumber": 68, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x28fc380295ae2acb0fe07eb0522622d8b3ef4379a1378085eef92891d5b2b8bf-OUT", + "hash": "0x28fc380295ae2acb0fe07eb0522622d8b3ef4379a1378085eef92891d5b2b8bf", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xee1f72a9c2114689fab428c1617a59707661b7d01d8737817da084393cc7f600", + "blockHeight": 1554777, + "extra": {}, + "date": "2024-05-16T09:57:36.000Z", + "value": "219336228283000", + "fee": "209336228283000", + "transactionSequenceNumber": 67, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x15da63011255c72f09906ba57bedd22c2a96754fff7530df1fa5527610873739-OUT", + "hash": "0x15da63011255c72f09906ba57bedd22c2a96754fff7530df1fa5527610873739", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x5d653f14cc8c75276030f1885901acca229c0afbfc43d4b7466436134b907b7e", + "blockHeight": 1554739, + "extra": {}, + "date": "2024-05-16T09:50:00.000Z", + "value": "195832526866000", + "fee": "185832526866000", + "transactionSequenceNumber": 66, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xda0195815368d7323092dcb37b8cb80701bb7b5475953c2dc676ea35097a106c-OUT", + "hash": "0xda0195815368d7323092dcb37b8cb80701bb7b5475953c2dc676ea35097a106c", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x083db5e511240b1172947d202a553e8fd7dffb47e58d6bb13e8e623e0323e285", + "blockHeight": 1554729, + "extra": {}, + "date": "2024-05-16T09:47:48.000Z", + "value": "249183468832000", + "fee": "239183468832000", + "transactionSequenceNumber": 65, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xe24edd9096b37c9624993d9884863825c5f9f03bbedd68da22fb4af959e72252-OUT", + "hash": "0xe24edd9096b37c9624993d9884863825c5f9f03bbedd68da22fb4af959e72252", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x41ac3aaa263d4bf4309e84e2c973b51a439774770f4de0cc7766439daa15af50", + "blockHeight": 1548235, + "extra": {}, + "date": "2024-05-15T09:41:24.000Z", + "value": "138423365182000", + "fee": "128423365182000", + "transactionSequenceNumber": 64, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x96aeb461e32a8875f3723e2ff72d10edf562cd8788f827edffb92bb7b00012b9-OUT", + "hash": "0x96aeb461e32a8875f3723e2ff72d10edf562cd8788f827edffb92bb7b00012b9", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x175ecf6a1cf55dca8e63eab6919aac6522eec66421bf394ae4efd12802057ab6", + "blockHeight": 1548210, + "extra": {}, + "date": "2024-05-15T09:36:24.000Z", + "value": "115169646274000", + "fee": "105169646274000", + "transactionSequenceNumber": 63, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xde9e6b215600e421a8ee80fcfd2c18fc004df9742ce982856ea9f519d4ecd969-OUT", + "hash": "0xde9e6b215600e421a8ee80fcfd2c18fc004df9742ce982856ea9f519d4ecd969", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x6146ba9b45a8a39063dfd971b9eae280a60135844022dcd22e0fafd1c16ce9ba", + "blockHeight": 1547997, + "extra": {}, + "date": "2024-05-15T08:49:36.000Z", + "value": "208025446003000", + "fee": "198025446003000", + "transactionSequenceNumber": 62, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x3f5199964daffa5368d56c5583b1a4f93ddc99a49b3ea50265bd78297c9c99fa-OUT", + "hash": "0x3f5199964daffa5368d56c5583b1a4f93ddc99a49b3ea50265bd78297c9c99fa", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x35a30ff5cbe68b39d6c6298b11d890034652b1457cf7022f7bb6b9f1884424d5", + "blockHeight": 1547977, + "extra": {}, + "date": "2024-05-15T08:45:12.000Z", + "value": "114734621383000", + "fee": "104734621383000", + "transactionSequenceNumber": 61, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x25bcb36b72a933dd60d5c6386f6022dbedc3dc891f792b74fe510ffbd1c54003-OUT", + "hash": "0x25bcb36b72a933dd60d5c6386f6022dbedc3dc891f792b74fe510ffbd1c54003", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x076fd41ee893232b17e682b858e78c4cdf0bc852cbc09812c688508f69f6fe6c", + "blockHeight": 1547968, + "extra": {}, + "date": "2024-05-15T08:43:12.000Z", + "value": "123068346076000", + "fee": "113068346076000", + "transactionSequenceNumber": 60, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x6444049af8714b1224c85b7c8b3236bf0fdc59aa876ceec4c8618a9d19eff539-OUT", + "hash": "0x6444049af8714b1224c85b7c8b3236bf0fdc59aa876ceec4c8618a9d19eff539", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x07723d2a4b136ae2f315f3daa4360687e8d2727288776a72d06e5376f80490f6", + "blockHeight": 1547957, + "extra": {}, + "date": "2024-05-15T08:39:48.000Z", + "value": "147043041814000", + "fee": "137043041814000", + "transactionSequenceNumber": 59, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x6c21e025c2d99fb17beee4123662d42e1487ea6a333b07e80db32478889d7f62-OUT", + "hash": "0x6c21e025c2d99fb17beee4123662d42e1487ea6a333b07e80db32478889d7f62", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x77a205e4d6a3bf01a14a9b01f11c08a500ad2469252c5dd6ecbcc63eaf97031e", + "blockHeight": 1547893, + "extra": {}, + "date": "2024-05-15T08:26:36.000Z", + "value": "142715634625000", + "fee": "132715634625000", + "transactionSequenceNumber": 58, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xb10696b47452f79fbfe0df44bbc7d5267809bd7ecee0435c1523f16e91c2165c-OUT", + "hash": "0xb10696b47452f79fbfe0df44bbc7d5267809bd7ecee0435c1523f16e91c2165c", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x9c6bdd0994112fe26d8568881e8f48c611a8068d198a72bcf9827e1e2217a907", + "blockHeight": 1547810, + "extra": {}, + "date": "2024-05-15T08:07:48.000Z", + "value": "213364569772000", + "fee": "203364569772000", + "transactionSequenceNumber": 57, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x048b58681131808e7f7180a745bb5476266a649de10fce94d9fc1af67796852f-OUT", + "hash": "0x048b58681131808e7f7180a745bb5476266a649de10fce94d9fc1af67796852f", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xb24c49d7e8f324e57d8312b0072ea8268da5cd36099dcff5762764a81772fdc1", + "blockHeight": 1547795, + "extra": {}, + "date": "2024-05-15T08:04:24.000Z", + "value": "151991293696000", + "fee": "141991293696000", + "transactionSequenceNumber": 56, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x0c2173d88c4daa0c41c1a741ba634727e5a7efe6e1204c16f5354dc5d48b2041-OUT", + "hash": "0x0c2173d88c4daa0c41c1a741ba634727e5a7efe6e1204c16f5354dc5d48b2041", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x3178e8cb108a847232528aa7c9994f49fba788f790854729148f469b54e26af5", + "blockHeight": 1547780, + "extra": {}, + "date": "2024-05-15T08:01:12.000Z", + "value": "149390414947000", + "fee": "139390414947000", + "transactionSequenceNumber": 55, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x22b73aefe75d9514bca52680f09f1743533b4cd9028afc9cb4899dc61d63c896-OUT", + "hash": "0x22b73aefe75d9514bca52680f09f1743533b4cd9028afc9cb4899dc61d63c896", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x3a654ed1c31b2c44025f8d3a222298c5aba2bfd9d9c756dd5f957321cd807d2a", + "blockHeight": 1543145, + "extra": {}, + "date": "2024-05-14T14:43:00.000Z", + "value": "78261291217000", + "fee": "68261291217000", + "transactionSequenceNumber": 54, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xa33c02b924df1faf78a2bd5a5b22ebbbe06a117f4021657f07c60cb4130ba010-OUT", + "hash": "0xa33c02b924df1faf78a2bd5a5b22ebbbe06a117f4021657f07c60cb4130ba010", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xf4123ff7d0798e150bdcb88720e4f5e5400c76692e03d1d930bb9de67859687e", + "blockHeight": 1543143, + "extra": {}, + "date": "2024-05-14T14:42:36.000Z", + "value": "74610191023000", + "fee": "64610191023000", + "transactionSequenceNumber": 53, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x3dfae3a0416574878970d867b5a555eca4aa4ef56ae74cc335789722fb60e7fb-OUT", + "hash": "0x3dfae3a0416574878970d867b5a555eca4aa4ef56ae74cc335789722fb60e7fb", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x689662513eb6bc84560c1a912b243abb07d00c09d4028ca57b09cf4295b6ca7f", + "blockHeight": 1536304, + "extra": {}, + "date": "2024-05-13T13:30:12.000Z", + "value": "101907983965000", + "fee": "91907983965000", + "transactionSequenceNumber": 52, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x12312e7823cbea90821db15b921f4ced2e8bc0e19d95e4210c8aab91fb35b445-OUT", + "hash": "0x12312e7823cbea90821db15b921f4ced2e8bc0e19d95e4210c8aab91fb35b445", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xab36a70a37bdb2ac6bd92810e3cf3e9c232cc7ac6cffdb7e2215be5ef6035686", + "blockHeight": 1490307, + "extra": {}, + "date": "2024-05-06T15:39:36.000Z", + "value": "90480815569000", + "fee": "80480815569000", + "transactionSequenceNumber": 51, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x81c43f8d6dd8596072ae9321d151a5702a95d75a41de2292915266088744c333-OUT", + "hash": "0x81c43f8d6dd8596072ae9321d151a5702a95d75a41de2292915266088744c333", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x822d4fac967e51b69117970cfaa201b2304caf47f35eaa21c2685879681d851d", + "blockHeight": 1489820, + "extra": {}, + "date": "2024-05-06T13:57:00.000Z", + "value": "136755985069000", + "fee": "126755985069000", + "transactionSequenceNumber": 50, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x718da74cf57052a35bb67e31a230ccd34bc385c49f88f5ea63dd26c381d51952-OUT", + "hash": "0x718da74cf57052a35bb67e31a230ccd34bc385c49f88f5ea63dd26c381d51952", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x8493847deb100d9235c54873b0412426d9021cd7e7f649da59d9a294bf8f86d9", + "blockHeight": 1462236, + "extra": {}, + "date": "2024-05-02T10:07:48.000Z", + "value": "196760476777000", + "fee": "186760476777000", + "transactionSequenceNumber": 49, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x700ea3fdd6a7a8e5bad7320eec957fd3371345502fbe6a85f9f477b665317e89-OUT", + "hash": "0x700ea3fdd6a7a8e5bad7320eec957fd3371345502fbe6a85f9f477b665317e89", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x00a453fe1b6b72fea2c42611e9b4e008c769cc499905b2004868103f4a09fcd4", + "blockHeight": 1461612, + "extra": {}, + "date": "2024-05-02T07:51:36.000Z", + "value": "322333168546000", + "fee": "312333168546000", + "transactionSequenceNumber": 48, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xf2ca67ad3dea0789f4d7fb457da9595048e174d06e4d66d87158fe09d016ca77-OUT", + "hash": "0xf2ca67ad3dea0789f4d7fb457da9595048e174d06e4d66d87158fe09d016ca77", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x3c339365132ddd29ffb88bbce4b5b78d96fce5fa06b41c196fbe205df7f3d128", + "blockHeight": 1450563, + "extra": {}, + "date": "2024-04-30T16:22:12.000Z", + "value": "54312009742000", + "fee": "44312009742000", + "transactionSequenceNumber": 47, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x126080b034b5d171a0509e34042f7b57484e623c706f8a83874ac8f996a6ade8-OUT", + "hash": "0x126080b034b5d171a0509e34042f7b57484e623c706f8a83874ac8f996a6ade8", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x3c10ac72a2d317512890bd69777287248d7c02c34aa07e034a36d5ff39aaba1d", + "blockHeight": 1450562, + "extra": {}, + "date": "2024-04-30T16:22:00.000Z", + "value": "51532098895000", + "fee": "41532098895000", + "transactionSequenceNumber": 46, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xf8c5966e40856b9558cfb5d1eed7c976d281b706dc1b9682db5993cfa66190c4-OUT", + "hash": "0xf8c5966e40856b9558cfb5d1eed7c976d281b706dc1b9682db5993cfa66190c4", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x89ca50fda65dbf057b860806c8d810c30febcd443b6f3b9d245a98e62537f137", + "blockHeight": 1450129, + "extra": {}, + "date": "2024-04-30T14:46:48.000Z", + "value": "46219079029000", + "fee": "36219079029000", + "transactionSequenceNumber": 45, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xcc3dd59d804c96b514827c73eb167edc50c7f0c41c564fb2ae7316988f91c076-OUT", + "hash": "0xcc3dd59d804c96b514827c73eb167edc50c7f0c41c564fb2ae7316988f91c076", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x1eb65f11ce8b2bbb4fb569ea965c4b22bcab197089729ad6be563f592cdfd5e3", + "blockHeight": 1449930, + "extra": {}, + "date": "2024-04-30T14:03:12.000Z", + "value": "42903179533000", + "fee": "32903179533000", + "transactionSequenceNumber": 44, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xe679452d4c263cf809b2465ba627771d7ec17977b5c5b7c609291eee47a085b2-OUT", + "hash": "0xe679452d4c263cf809b2465ba627771d7ec17977b5c5b7c609291eee47a085b2", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x4313210ac8e1fb437a38753c6d89c878543e4ddea0acc86086850b61035d8f40", + "blockHeight": 1449915, + "extra": {}, + "date": "2024-04-30T13:59:36.000Z", + "value": "47560101187000", + "fee": "37560101187000", + "transactionSequenceNumber": 43, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x61de4775b995ab1e6b6e6e19c37af9d553e7f35158800935e4bd23cda7feaa93-OUT", + "hash": "0x61de4775b995ab1e6b6e6e19c37af9d553e7f35158800935e4bd23cda7feaa93", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x64ac6392516416b986138899ea6dbf385a1d741f93d077d5a94e52c4327cb32d", + "blockHeight": 1449738, + "extra": {}, + "date": "2024-04-30T13:21:12.000Z", + "value": "54467138506000", + "fee": "44467138506000", + "transactionSequenceNumber": 42, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xc97d9b73dcc01fc392ddf60d70c329e025da110d885e3449da07d2d8e7513bfb-OUT", + "hash": "0xc97d9b73dcc01fc392ddf60d70c329e025da110d885e3449da07d2d8e7513bfb", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xc80ccf901d63cadafeac0c14a9af39f8a7dc1f1ef724570b6d2d923c85944dac", + "blockHeight": 1449597, + "extra": {}, + "date": "2024-04-30T12:51:24.000Z", + "value": "55536115786000", + "fee": "45536115786000", + "transactionSequenceNumber": 41, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x96d7f6c317bcd537793350f9faf4c188e39db5eefd0f71973755fd65db2574d8-OUT", + "hash": "0x96d7f6c317bcd537793350f9faf4c188e39db5eefd0f71973755fd65db2574d8", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x32f2b445c0079a7c28ed7c3dee666ae1f40bc6317c20aa68dc469c5d50cbe649", + "blockHeight": 1449589, + "extra": {}, + "date": "2024-04-30T12:49:24.000Z", + "value": "49360866538000", + "fee": "39360866538000", + "transactionSequenceNumber": 40, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x0f236bef396b0a1af958a59da209908186aeb62e4654f5ec6fd78b265b5e7b7b-OUT", + "hash": "0x0f236bef396b0a1af958a59da209908186aeb62e4654f5ec6fd78b265b5e7b7b", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xd8601d2da9b4bf83d840e88e7d8d71f24373505778b904a1101647cd24965530", + "blockHeight": 1448212, + "extra": {}, + "date": "2024-04-30T07:52:48.000Z", + "value": "43338611278000", + "fee": "33338611278000", + "transactionSequenceNumber": 39, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x36d4c6d43dc6708be1ecd12693bd60a413201fd4b18e427d52339c3522d4c934-OUT", + "hash": "0x36d4c6d43dc6708be1ecd12693bd60a413201fd4b18e427d52339c3522d4c934", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x689b650b220cc13705a42f20d42f04d286f9ee009ac297451171292ad084bd4e", + "blockHeight": 1442121, + "extra": {}, + "date": "2024-04-29T09:51:12.000Z", + "value": "69986911579000", + "fee": "59986911579000", + "transactionSequenceNumber": 38, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xc1b059188c597f904bacfa7a4d8412b226971005b728a73b3e993567742a06c2-OUT", + "hash": "0xc1b059188c597f904bacfa7a4d8412b226971005b728a73b3e993567742a06c2", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x155d8dc76dc82932d453ed039a8748d5461800631c93ba079920c87435d12c98", + "blockHeight": 1442103, + "extra": {}, + "date": "2024-04-29T09:47:12.000Z", + "value": "75256671172000", + "fee": "65256671172000", + "transactionSequenceNumber": 37, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x3b4c7de82d97960473d5cabf7ff56621f5e30f73a9968c2b8e62066b2f82cd00-OUT", + "hash": "0x3b4c7de82d97960473d5cabf7ff56621f5e30f73a9968c2b8e62066b2f82cd00", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x727202242bf1709873ca97df1c9a5bf9d5a6029c45b9c16a68120bb4a12b8571", + "blockHeight": 1442096, + "extra": {}, + "date": "2024-04-29T09:45:48.000Z", + "value": "74676959221000", + "fee": "64676959221000", + "transactionSequenceNumber": 36, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x11752dd8229198ee238b12ea924bdc23a355c8da13d523ed36f06f13b4be5500-OUT", + "hash": "0x11752dd8229198ee238b12ea924bdc23a355c8da13d523ed36f06f13b4be5500", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x45cdbb8ad641fb8fe781d26fe122fbea51c08d562ff56c64f4b943de50b639d6", + "blockHeight": 1442091, + "extra": {}, + "date": "2024-04-29T09:44:48.000Z", + "value": "83695361509000", + "fee": "73695361509000", + "transactionSequenceNumber": 35, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x3196a528e7622b703b412fc6b5dc74524646638551adc3ca5cf040429a1a8a90-OUT", + "hash": "0x3196a528e7622b703b412fc6b5dc74524646638551adc3ca5cf040429a1a8a90", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x3dbb005c8102f3536b63ef2eca594162f79cc4f05affd98eb59e62637956088d", + "blockHeight": 1441872, + "extra": {}, + "date": "2024-04-29T08:56:48.000Z", + "value": "59705053909000", + "fee": "49705053909000", + "transactionSequenceNumber": 34, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x2da67ae076d80a245db660f3687b81380bf632d09967053aafdfd2ae86c1caef-OUT", + "hash": "0x2da67ae076d80a245db660f3687b81380bf632d09967053aafdfd2ae86c1caef", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x4dc38934ae07417026a9eed26520ac4b72382623064731e032b7467e5f955af8", + "blockHeight": 1423075, + "extra": {}, + "date": "2024-04-26T12:09:00.000Z", + "value": "73652230348000", + "fee": "63652230348000", + "transactionSequenceNumber": 33, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xe0601b2149dff79bf5ee6705939be159f0dc57b9296550c8b81c3309ca045c7b-OUT", + "hash": "0xe0601b2149dff79bf5ee6705939be159f0dc57b9296550c8b81c3309ca045c7b", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x12255f0115c0cdaac742e59dd5916cdea3096469c23ca60b55198e227622c86c", + "blockHeight": 1422955, + "extra": {}, + "date": "2024-04-26T11:43:48.000Z", + "value": "73560988435000", + "fee": "63560988435000", + "transactionSequenceNumber": 32, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x4d96bfa58c0ba19bcbab94ec965542f3fee1520fd8c2a5f0f223231b8aa8dbb4-OUT", + "hash": "0x4d96bfa58c0ba19bcbab94ec965542f3fee1520fd8c2a5f0f223231b8aa8dbb4", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xa86307488a98d1546fcdefff7ccbe2e5c2b724fd09363653f141ec00debad1be", + "blockHeight": 1409289, + "extra": {}, + "date": "2024-04-24T09:55:36.000Z", + "value": "70743364948000", + "fee": "60743364948000", + "transactionSequenceNumber": 31, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xa389f6007fd10a13d141e1ef02c852f2e89a0fc72e914cc135dcfb188d4f301a-OUT", + "hash": "0xa389f6007fd10a13d141e1ef02c852f2e89a0fc72e914cc135dcfb188d4f301a", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x8052aa2a74378584f5c5790c787e9a576fb28ac959348a77ee7d07c33c20d4d9", + "blockHeight": 1409282, + "extra": {}, + "date": "2024-04-24T09:54:12.000Z", + "value": "69999667210000", + "fee": "59999667210000", + "transactionSequenceNumber": 30, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x55d9cde2c34595dda3aaa6742c1230eb80d0349904cefed2a5f89b14a8833502-OUT", + "hash": "0x55d9cde2c34595dda3aaa6742c1230eb80d0349904cefed2a5f89b14a8833502", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xa4b5370fd4db21c2adc2e23b4ca255b4e2dce8823e8ae35ad404c0ed56ee2ce7", + "blockHeight": 1409273, + "extra": {}, + "date": "2024-04-24T09:52:24.000Z", + "value": "60599940601000", + "fee": "50599940601000", + "transactionSequenceNumber": 29, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x2e9e55a51187dfa1eb59a5da205ff1d9b3b366801641db6aabce5ebc063da47b-OUT", + "hash": "0x2e9e55a51187dfa1eb59a5da205ff1d9b3b366801641db6aabce5ebc063da47b", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x44a4214eba5c0f220295c47b7925a6b494d4592e0e014fbda8635404dcb73512", + "blockHeight": 1409163, + "extra": {}, + "date": "2024-04-24T09:27:36.000Z", + "value": "149278054735000", + "fee": "49278054735000", + "transactionSequenceNumber": 28, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x859fd5555a15ed7314b958c4c7b58c60bcfd0960cd358f387975e33d0096ac41-OUT", + "hash": "0x859fd5555a15ed7314b958c4c7b58c60bcfd0960cd358f387975e33d0096ac41", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xf61fbf52512e5f8d3b0cf2e3bf461d43bb3a777c7a091d0cfaa43133727987ca", + "blockHeight": 1409112, + "extra": {}, + "date": "2024-04-24T09:16:12.000Z", + "value": "60392966092000", + "fee": "50392966092000", + "transactionSequenceNumber": 27, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x73bdf7f4c3eca74a75d851ff7810427a7006e608371af0dc495f87f91ea86f1d-OUT", + "hash": "0x73bdf7f4c3eca74a75d851ff7810427a7006e608371af0dc495f87f91ea86f1d", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x051c61b2086046d4b5bbeb7d7573bc1a3bf332504dff0c61f5465022c5aa6a7f", + "blockHeight": 1397247, + "extra": {}, + "date": "2024-04-22T13:29:12.000Z", + "value": "133373033938000", + "fee": "123373033938000", + "transactionSequenceNumber": 26, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xbc5e07605d9c5937cd94ee95663c4de986db769d89c7a50589d2e0606074e108-OUT", + "hash": "0xbc5e07605d9c5937cd94ee95663c4de986db769d89c7a50589d2e0606074e108", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x0bb4079d00e4077e91b8a0e794803c85cf8b142d1b62b838d3aeb562f3a70b74", + "blockHeight": 1365218, + "extra": {}, + "date": "2024-04-17T14:30:24.000Z", + "value": "97963076068000", + "fee": "87963076068000", + "transactionSequenceNumber": 25, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xa104c88f2607f7469b5f5508de62162f21f316715ba5494b22506d99045c5b9c-OUT", + "hash": "0xa104c88f2607f7469b5f5508de62162f21f316715ba5494b22506d99045c5b9c", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x76398f6f1f72c0348aaf1784b823d9fa203f32c9137108ec86ba43666d7fc485", + "blockHeight": 1365214, + "extra": {}, + "date": "2024-04-17T14:29:24.000Z", + "value": "88437375835000", + "fee": "78437375835000", + "transactionSequenceNumber": 24, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x32cf01deadb899014b9d2f76d0fddb58c725db16f1b457831a559bf91291ed18-OUT", + "hash": "0x32cf01deadb899014b9d2f76d0fddb58c725db16f1b457831a559bf91291ed18", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x86f460faf002a93077fb4110b56c40e7d6ca2d8577ed31d66e5b3fbd5d7a0d42", + "blockHeight": 1365195, + "extra": {}, + "date": "2024-04-17T14:24:48.000Z", + "value": "82072200697000", + "fee": "72072200697000", + "transactionSequenceNumber": 23, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x9f562f008aa8dfbae8b25641a723662d4b8dadd268f2978ab526c4b4429947d6-OUT", + "hash": "0x9f562f008aa8dfbae8b25641a723662d4b8dadd268f2978ab526c4b4429947d6", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x509aa13f3c94be4e2918c4b08bb6616ba188c14b643656a2872e3aceb6fdd3fb", + "blockHeight": 1365177, + "extra": {}, + "date": "2024-04-17T14:20:48.000Z", + "value": "93076429975000", + "fee": "83076429975000", + "transactionSequenceNumber": 22, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x59b36836e528f73d61874b2c607a30a3fbbe58e32de6011df2a8ce77f673f046-OUT", + "hash": "0x59b36836e528f73d61874b2c607a30a3fbbe58e32de6011df2a8ce77f673f046", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xf91ca75ac65618d78c0b6696cf8e753a70fc0ffa64c4861d96c737bbf29a00b4", + "blockHeight": 1364835, + "extra": {}, + "date": "2024-04-17T13:02:00.000Z", + "value": "86871977287000", + "fee": "76871977287000", + "transactionSequenceNumber": 21, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x7dbc92bc7892bcb9fe9235b613df4c3176dfb47cfba908b538ea9b070ac7329b-OUT", + "hash": "0x7dbc92bc7892bcb9fe9235b613df4c3176dfb47cfba908b538ea9b070ac7329b", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x388ca8211c8a32b950c8ae3bde9d79e46a037e27af579f17f97cf702b1c1e6ef", + "blockHeight": 1364819, + "extra": {}, + "date": "2024-04-17T12:58:24.000Z", + "value": "79811451640000", + "fee": "69811451640000", + "transactionSequenceNumber": 20, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x58c5e3134e1e158c69362e5af6c003a4cc37b1b5b783d844489ee0befca32a53-OUT", + "hash": "0x58c5e3134e1e158c69362e5af6c003a4cc37b1b5b783d844489ee0befca32a53", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xa5a7f900303d644cbf9a4049d1f0b01a828bb45c8b42cb7ef7192675b954b910", + "blockHeight": 1364661, + "extra": {}, + "date": "2024-04-17T12:24:24.000Z", + "value": "71499841648000", + "fee": "61499841648000", + "transactionSequenceNumber": 19, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x6f9e06cb749dc28e60127d9b58a2ff967bfa666cbd3e3be8cfc03b41823b20db-OUT", + "hash": "0x6f9e06cb749dc28e60127d9b58a2ff967bfa666cbd3e3be8cfc03b41823b20db", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x5f886fac5a1e68afde4c4258d22ca22c6cc2871b8c900174df51d57f4c809a27", + "blockHeight": 1363910, + "extra": {}, + "date": "2024-04-17T09:35:36.000Z", + "value": "83604519919000", + "fee": "73604519919000", + "transactionSequenceNumber": 18, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x1498a38e4564942997c6778b77208085343507f6898cedd2d5b054b5b4534739-OUT", + "hash": "0x1498a38e4564942997c6778b77208085343507f6898cedd2d5b054b5b4534739", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x558bdbe2bf09ae3e14f7bf7d4f850e586d50d89684455efed8d34eb64d080909", + "blockHeight": 1359060, + "extra": {}, + "date": "2024-04-16T15:42:00.000Z", + "value": "116546777890000", + "fee": "106546777890000", + "transactionSequenceNumber": 17, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x456b194be1fea8b9209e294f786e17f3980a30982b1aa0c7ce7177061b2eb7a1-OUT", + "hash": "0x456b194be1fea8b9209e294f786e17f3980a30982b1aa0c7ce7177061b2eb7a1", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xb51e77e7169af6f83364ee1ac83244f2416345905e5fb3bdd45a4d4f4bca743e", + "blockHeight": 1358372, + "extra": {}, + "date": "2024-04-16T13:07:00.000Z", + "value": "92731513480000", + "fee": "82731513480000", + "transactionSequenceNumber": 16, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xe14c217b0ed858e948eeab1390bcfb7adc22c5ddcdacdf4c58a1e08f851e35c2-OUT", + "hash": "0xe14c217b0ed858e948eeab1390bcfb7adc22c5ddcdacdf4c58a1e08f851e35c2", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xa3fa419c2d172f496e5df45530b296fe4e7980fc10e50d8d38915eafe1d3b15e", + "blockHeight": 1358368, + "extra": {}, + "date": "2024-04-16T13:06:12.000Z", + "value": "86315001217000", + "fee": "76315001217000", + "transactionSequenceNumber": 15, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xa05132198ac05c9bbaa93815d21f684b36c0114b3ec94d3898d0d537dc559bdd-OUT", + "hash": "0xa05132198ac05c9bbaa93815d21f684b36c0114b3ec94d3898d0d537dc559bdd", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x1e144a1e18e0ff3eca7b8435ea94307eb08a5f29e7a41a0ae809da870a34cb05", + "blockHeight": 1358203, + "extra": {}, + "date": "2024-04-16T12:30:12.000Z", + "value": "67042363966000", + "fee": "57042363966000", + "transactionSequenceNumber": 14, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x767b3f49b327f8973441b6d3da3e936caaf1ed75db7fd3b16640781a537c2ea2-OUT", + "hash": "0x767b3f49b327f8973441b6d3da3e936caaf1ed75db7fd3b16640781a537c2ea2", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x0278573c04d30488ee991565c449054251c42e763a00a277778f750caa167dc3", + "blockHeight": 1358198, + "extra": {}, + "date": "2024-04-16T12:29:00.000Z", + "value": "79990386235000", + "fee": "69990386235000", + "transactionSequenceNumber": 13, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xf9a360549970073fcb3d61e1937483ac8776274e5dc70e07031421b055eee86c-OUT", + "hash": "0xf9a360549970073fcb3d61e1937483ac8776274e5dc70e07031421b055eee86c", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x32bfc07b9d44845bffce6b0a54bba2cf19128c0bd1a3e58bd1274c1e5221c9e4", + "blockHeight": 1358122, + "extra": {}, + "date": "2024-04-16T12:11:48.000Z", + "value": "75808360576000", + "fee": "65808360576000", + "transactionSequenceNumber": 12, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x4f8b5ac603712dae2b1ea3c41947bcf1bf0be85e3a0e0cfe5145d03043d4d521-OUT", + "hash": "0x4f8b5ac603712dae2b1ea3c41947bcf1bf0be85e3a0e0cfe5145d03043d4d521", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x045fec036fa7345aa09b8af9cc982e5a868e22e49dace15e98a6852e685d4d9b", + "blockHeight": 1357346, + "extra": {}, + "date": "2024-04-16T09:18:48.000Z", + "value": "58050167242000", + "fee": "48050167242000", + "transactionSequenceNumber": 11, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x90cdd88c6252475183b4b2a44071978339119d9e4ea049f7a9dd65a87839ce84-OUT", + "hash": "0x90cdd88c6252475183b4b2a44071978339119d9e4ea049f7a9dd65a87839ce84", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xacd629cdbea82216c33ba44b4e1c83c905a9a90dad705ab4f240a590077ccb9d", + "blockHeight": 1357270, + "extra": {}, + "date": "2024-04-16T09:02:24.000Z", + "value": "72944112952000", + "fee": "62944112952000", + "transactionSequenceNumber": 10, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xa891e881818af7570d73fccf52802a957dbfbde3d2b46dfac8aaf0b1238e347b-OUT", + "hash": "0xa891e881818af7570d73fccf52802a957dbfbde3d2b46dfac8aaf0b1238e347b", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x5ad8db1d474e9d6101f70c464bdbd8f842cb746c70872c6b63427450299c9b44", + "blockHeight": 1357267, + "extra": {}, + "date": "2024-04-16T09:01:36.000Z", + "value": "75755108125000", + "fee": "65755108125000", + "transactionSequenceNumber": 9, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x2815a9cb2900227812d5ddf5dac20dd5311eb720b723e600af68e111ba81676e-OUT", + "hash": "0x2815a9cb2900227812d5ddf5dac20dd5311eb720b723e600af68e111ba81676e", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xb9e7d99d816f79188deb85e7c996ee68aef98d8d3671923c3a0bc1e9fc339f12", + "blockHeight": 1352544, + "extra": {}, + "date": "2024-04-15T15:42:24.000Z", + "value": "62580394069000", + "fee": "52580394069000", + "transactionSequenceNumber": 8, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x5c5622aaa4173bef68127a42565e9971577b33c18c4c6dea531711234fe7b6b4-OUT", + "hash": "0x5c5622aaa4173bef68127a42565e9971577b33c18c4c6dea531711234fe7b6b4", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xef44280971673302b1a5b08e13472a215bb9c21a8c463c5601e901afcfee8158", + "blockHeight": 1326144, + "extra": {}, + "date": "2024-04-11T15:30:48.000Z", + "value": "119553213910000", + "fee": "109553213910000", + "transactionSequenceNumber": 7, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x46e8357ee53468894a66584d35a33f22c64924b46ca865db313ef8e39bf5962a-OUT", + "hash": "0x46e8357ee53468894a66584d35a33f22c64924b46ca865db313ef8e39bf5962a", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x57c1bc247f79444b85a391d4dbf90a52120e4a9847d8750b49100b1492c30374", + "blockHeight": 1326142, + "extra": {}, + "date": "2024-04-11T15:30:24.000Z", + "value": "104763796015000", + "fee": "94763796015000", + "transactionSequenceNumber": 6, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xc6d1e2b972393ac28961ec204a94688a294709c2b6e081e250b26731fb41accf-OUT", + "hash": "0xc6d1e2b972393ac28961ec204a94688a294709c2b6e081e250b26731fb41accf", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x009ff89ae7bb93ce0f8ba2509e99a351d4d2318600f12d68429262323792d953", + "blockHeight": 1326133, + "extra": {}, + "date": "2024-04-11T15:28:00.000Z", + "value": "130481372011000", + "fee": "120481372011000", + "transactionSequenceNumber": 5, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x3a32ced3d4ba961d3b7364008a2a0ef8f46d2abfcd8716613c6ee48f3179a603-IN", + "hash": "0x3a32ced3d4ba961d3b7364008a2a0ef8f46d2abfcd8716613c6ee48f3179a603", + "type": "IN", + "senders": [ + "0x6Cc9397c3B38739daCbfaA68EaD5F5D77Ba5F455" + ], + "recipients": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x90d93ecfb529dffb728d40fe2f43bdb1dd180bce64245b48f411cf5d78ddb942", + "blockHeight": 1326124, + "extra": {}, + "date": "2024-04-11T15:25:48.000Z", + "value": "2345850562500000000", + "fee": "208352591286000", + "transactionSequenceNumber": 824749, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x79badad6d55e2ae48356aa104d9a1b361832bf0388487a3605e489b921ddb082-OUT", + "hash": "0x79badad6d55e2ae48356aa104d9a1b361832bf0388487a3605e489b921ddb082", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x93d05599f74a42b0c1e172cd739fca66d2145c5613f2a93bcc24b7c59dd0e9ab", + "blockHeight": 1326063, + "extra": {}, + "date": "2024-04-11T15:12:24.000Z", + "value": "107025141367000", + "fee": "97025141367000", + "transactionSequenceNumber": 4, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x028614b4ba199549debde64a883b2ae5f9e3e66d1ec58e39d4aa9f9abf643c54-OUT", + "hash": "0x028614b4ba199549debde64a883b2ae5f9e3e66d1ec58e39d4aa9f9abf643c54", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x78a7da74953541d4eb15b0497e5b29ef7b829bc2f90b54362ca4476e3414cdac", + "blockHeight": 1326061, + "extra": {}, + "date": "2024-04-11T15:12:00.000Z", + "value": "95533493773000", + "fee": "85533493773000", + "transactionSequenceNumber": 3, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x0468dfe8e7ec1e231b1e53703b53935108023b9af8153fe67c7bb5cce0095f18-OUT", + "hash": "0x0468dfe8e7ec1e231b1e53703b53935108023b9af8153fe67c7bb5cce0095f18", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x898e95a0d06cd92c02461be406d7a823c6d5dfcc907a1d8a7b0a8eed7e23695c", + "blockHeight": 1326050, + "extra": {}, + "date": "2024-04-11T15:09:00.000Z", + "value": "208818148243000", + "fee": "108818148243000", + "transactionSequenceNumber": 2, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xef91af8c2a0822ecd4341c1a8294b5a6493dc603a23282e66688bfc34952ad58-OUT", + "hash": "0xef91af8c2a0822ecd4341c1a8294b5a6493dc603a23282e66688bfc34952ad58", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xdf80f1c3211c95a2b3b1fa45a5f72011ac78c7105abdf050f9474bc88be31482", + "blockHeight": 1325836, + "extra": {}, + "date": "2024-04-11T14:23:48.000Z", + "value": "127857570502000", + "fee": "117857570502000", + "transactionSequenceNumber": 1, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x14139eac4a9d771c08e480cfa72fbb5a7c107c53041414374e72f13e630123aa-OUT", + "hash": "0x14139eac4a9d771c08e480cfa72fbb5a7c107c53041414374e72f13e630123aa", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x749e65827d4d4f6991cc7604b69732f08da7886a69ed3d889715528f32688bfa", + "blockHeight": 1318759, + "extra": {}, + "date": "2024-04-10T12:30:36.000Z", + "value": "1900022229305245000", + "fee": "22229305245000", + "transactionSequenceNumber": 0, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xd6f92ebe60c4887c51d9279df12dbbae4db310092862f1aaeecb665c062aa811-IN", + "hash": "0xd6f92ebe60c4887c51d9279df12dbbae4db310092862f1aaeecb665c062aa811", + "type": "IN", + "senders": [ + "0xB06D5f081aC6803A815D86385Eba86CE5cf657DB" + ], + "recipients": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x289417dfdbbb5d3f8d3711b175a9bd65f47175a0707c17124ef29227e21325f4", + "blockHeight": 1318745, + "extra": {}, + "date": "2024-04-10T12:27:36.000Z", + "value": "1001978583988257000", + "fee": "21139153014000", + "transactionSequenceNumber": 0, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x97f039d3bbecf3c107ad1b4ec7f6eeee377ef5bc6d261983faef6d283ffaf8a8-IN", + "hash": "0x97f039d3bbecf3c107ad1b4ec7f6eeee377ef5bc6d261983faef6d283ffaf8a8", + "type": "IN", + "senders": [ + "0x4F008D1A92295d09294B778188Be9a74659515D3" + ], + "recipients": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xf9a90dffc3712609cf4c402d944bdeb96a8f1ed405aaed0931e778e565467a23", + "blockHeight": 1318741, + "extra": {}, + "date": "2024-04-10T12:26:48.000Z", + "value": "10900698524074896000", + "fee": "20463264108000", + "transactionSequenceNumber": 3, + "hasFailed": false, + "internalOperations": [] + } + ], + "pendingOperations": [], + "currencyId": "ethereum_holesky", + "unitMagnitude": 18, + "lastSyncDate": "2024-06-03T07:55:38.653Z", + "balance": "12340540448638769000", + "spendableBalance": "12340540448638769000", + "nfts": [], + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000 + ], + "latestDate": 1717398000000 + }, + "DAY": { + "balances": [ + 0, + 10002654878757908000, + 12347611408522086000, + 12347611408522086000, + 12347611408522086000, + 12347611408522086000, + 12347548828128018000, + 12346823644336335000, + 12346140307463266000, + 12346140307463266000, + 12346140307463266000, + 12346140307463266000, + 12346140307463266000, + 12346006934429327000, + 12346006934429327000, + 12345595920435743000, + 12345595920435743000, + 12345448707216960000, + 12345448707216960000, + 12345448707216960000, + 12345085386259569000, + 12344640157059074000, + 12344640157059074000, + 12344121063413752000, + 12344121063413752000, + 12344121063413752000, + 12344121063413752000, + 12343893826613115000, + 12343893826613115000, + 12343893826613115000, + 12343893826613115000, + 12343893826613115000, + 12343893826613115000, + 12343893826613115000, + 12343791918629149000, + 12343639047146910000, + 12342135120767138000, + 12341470768543156000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000 + ], + "latestDate": 1717365600000 + }, + "WEEK": { + "balances": [ + 0, + 12347611408522086000, + 12346140307463266000, + 12345448707216960000, + 12344121063413752000, + 12343893826613115000, + 12340540448638770000, + 12340540448638770000, + 12340540448638770000 + ], + "latestDate": 1717279200000 + } + }, + "subAccounts": [], + "swapHistory": [] + }, + "version": 1 + }, + { + "data": { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "seedIdentifier": "047e89e2c6153732ee8f54bca17a4a74d3e1d9bddcb6149ed113394f79f585987d90e550639bf0fb76466141684bc43fbc90a24cd9f287fa4662f8ea2b889da1e7", + "name": "Ethereum Holesky 2", + "starred": false, + "used": true, + "derivationMode": "", + "index": 1, + "freshAddress": "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad", + "freshAddressPath": "44'/60'/1'/0/0", + "freshAddresses": [ + { + "address": "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad", + "derivationPath": "44'/60'/1'/0/0" + } + ], + "blockHeight": 1662600, + "syncHash": "0x1efd2c0a", + "creationDate": "2024-04-10T12:30:36.000Z", + "operationsCount": 73, + "operations": [ + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x620ba005bfe72a8a7bfa4fabcf1b4b159df10d2e272411cb2854b5bc21d6ba66-IN", + "hash": "0x620ba005bfe72a8a7bfa4fabcf1b4b159df10d2e272411cb2854b5bc21d6ba66", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x55fb72707e0295e2d37f77b58d0b53775bd184fdf65fecd58c4906f4180db6ce", + "blockHeight": 1560434, + "extra": {}, + "date": "2024-05-17T07:51:24.000Z", + "value": "10000000000000", + "fee": "203885644641000", + "transactionSequenceNumber": 72, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x511dcca538a67e2c02bfd1bc0e7ee0cc9e12118212404d91b94581f7f2ec874f-IN", + "hash": "0x511dcca538a67e2c02bfd1bc0e7ee0cc9e12118212404d91b94581f7f2ec874f", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0xf99de44538594bda7d6a0a65c725a01cf05c6a04b615b4a2c335a3b6829bdf7b", + "blockHeight": 1560412, + "extra": {}, + "date": "2024-05-17T07:46:24.000Z", + "value": "10000000000000", + "fee": "155846614161000", + "transactionSequenceNumber": 71, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xeff24640a3d439a555003b86bf3d1beabadd9cfdba1aabaa0b5b5b67934b09ff-IN", + "hash": "0xeff24640a3d439a555003b86bf3d1beabadd9cfdba1aabaa0b5b5b67934b09ff", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x6ad8f4178cddc558cad1e07b49389018ab8f9da557510553a9ec8e9c1b06775a", + "blockHeight": 1560395, + "extra": {}, + "date": "2024-05-17T07:43:00.000Z", + "value": "10000000000000", + "fee": "224210143542000", + "transactionSequenceNumber": 70, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x39ea0c6149cb2d3a94b8fcda223ff1196a0acc96bb7070939640e2cc28d8b157-IN", + "hash": "0x39ea0c6149cb2d3a94b8fcda223ff1196a0acc96bb7070939640e2cc28d8b157", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0xfde65a49a7668c829be400f3f03bd5612eb1c85b5ced52dc622734a9805b0664", + "blockHeight": 1560295, + "extra": {}, + "date": "2024-05-17T07:20:12.000Z", + "value": "10000000000000", + "fee": "148302973602000", + "transactionSequenceNumber": 69, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x3b9aef731d4189f8027ec4839d5a4fe2a3b660f0e903b07e4bbda8daee70c076-IN", + "hash": "0x3b9aef731d4189f8027ec4839d5a4fe2a3b660f0e903b07e4bbda8daee70c076", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0xf574faaa86156d6e4f4db1080e00a85f4b9929f7ec8db8adbee2a799780be8de", + "blockHeight": 1560191, + "extra": {}, + "date": "2024-05-17T06:55:36.000Z", + "value": "10000000000000", + "fee": "148074528441000", + "transactionSequenceNumber": 68, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x28fc380295ae2acb0fe07eb0522622d8b3ef4379a1378085eef92891d5b2b8bf-IN", + "hash": "0x28fc380295ae2acb0fe07eb0522622d8b3ef4379a1378085eef92891d5b2b8bf", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0xee1f72a9c2114689fab428c1617a59707661b7d01d8737817da084393cc7f600", + "blockHeight": 1554777, + "extra": {}, + "date": "2024-05-16T09:57:36.000Z", + "value": "10000000000000", + "fee": "209336228283000", + "transactionSequenceNumber": 67, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x15da63011255c72f09906ba57bedd22c2a96754fff7530df1fa5527610873739-IN", + "hash": "0x15da63011255c72f09906ba57bedd22c2a96754fff7530df1fa5527610873739", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x5d653f14cc8c75276030f1885901acca229c0afbfc43d4b7466436134b907b7e", + "blockHeight": 1554739, + "extra": {}, + "date": "2024-05-16T09:50:00.000Z", + "value": "10000000000000", + "fee": "185832526866000", + "transactionSequenceNumber": 66, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xda0195815368d7323092dcb37b8cb80701bb7b5475953c2dc676ea35097a106c-IN", + "hash": "0xda0195815368d7323092dcb37b8cb80701bb7b5475953c2dc676ea35097a106c", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x083db5e511240b1172947d202a553e8fd7dffb47e58d6bb13e8e623e0323e285", + "blockHeight": 1554729, + "extra": {}, + "date": "2024-05-16T09:47:48.000Z", + "value": "10000000000000", + "fee": "239183468832000", + "transactionSequenceNumber": 65, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xe24edd9096b37c9624993d9884863825c5f9f03bbedd68da22fb4af959e72252-IN", + "hash": "0xe24edd9096b37c9624993d9884863825c5f9f03bbedd68da22fb4af959e72252", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x41ac3aaa263d4bf4309e84e2c973b51a439774770f4de0cc7766439daa15af50", + "blockHeight": 1548235, + "extra": {}, + "date": "2024-05-15T09:41:24.000Z", + "value": "10000000000000", + "fee": "128423365182000", + "transactionSequenceNumber": 64, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x96aeb461e32a8875f3723e2ff72d10edf562cd8788f827edffb92bb7b00012b9-IN", + "hash": "0x96aeb461e32a8875f3723e2ff72d10edf562cd8788f827edffb92bb7b00012b9", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x175ecf6a1cf55dca8e63eab6919aac6522eec66421bf394ae4efd12802057ab6", + "blockHeight": 1548210, + "extra": {}, + "date": "2024-05-15T09:36:24.000Z", + "value": "10000000000000", + "fee": "105169646274000", + "transactionSequenceNumber": 63, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xde9e6b215600e421a8ee80fcfd2c18fc004df9742ce982856ea9f519d4ecd969-IN", + "hash": "0xde9e6b215600e421a8ee80fcfd2c18fc004df9742ce982856ea9f519d4ecd969", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x6146ba9b45a8a39063dfd971b9eae280a60135844022dcd22e0fafd1c16ce9ba", + "blockHeight": 1547997, + "extra": {}, + "date": "2024-05-15T08:49:36.000Z", + "value": "10000000000000", + "fee": "198025446003000", + "transactionSequenceNumber": 62, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x3f5199964daffa5368d56c5583b1a4f93ddc99a49b3ea50265bd78297c9c99fa-IN", + "hash": "0x3f5199964daffa5368d56c5583b1a4f93ddc99a49b3ea50265bd78297c9c99fa", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x35a30ff5cbe68b39d6c6298b11d890034652b1457cf7022f7bb6b9f1884424d5", + "blockHeight": 1547977, + "extra": {}, + "date": "2024-05-15T08:45:12.000Z", + "value": "10000000000000", + "fee": "104734621383000", + "transactionSequenceNumber": 61, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x25bcb36b72a933dd60d5c6386f6022dbedc3dc891f792b74fe510ffbd1c54003-IN", + "hash": "0x25bcb36b72a933dd60d5c6386f6022dbedc3dc891f792b74fe510ffbd1c54003", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x076fd41ee893232b17e682b858e78c4cdf0bc852cbc09812c688508f69f6fe6c", + "blockHeight": 1547968, + "extra": {}, + "date": "2024-05-15T08:43:12.000Z", + "value": "10000000000000", + "fee": "113068346076000", + "transactionSequenceNumber": 60, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x6444049af8714b1224c85b7c8b3236bf0fdc59aa876ceec4c8618a9d19eff539-IN", + "hash": "0x6444049af8714b1224c85b7c8b3236bf0fdc59aa876ceec4c8618a9d19eff539", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x07723d2a4b136ae2f315f3daa4360687e8d2727288776a72d06e5376f80490f6", + "blockHeight": 1547957, + "extra": {}, + "date": "2024-05-15T08:39:48.000Z", + "value": "10000000000000", + "fee": "137043041814000", + "transactionSequenceNumber": 59, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x6c21e025c2d99fb17beee4123662d42e1487ea6a333b07e80db32478889d7f62-IN", + "hash": "0x6c21e025c2d99fb17beee4123662d42e1487ea6a333b07e80db32478889d7f62", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x77a205e4d6a3bf01a14a9b01f11c08a500ad2469252c5dd6ecbcc63eaf97031e", + "blockHeight": 1547893, + "extra": {}, + "date": "2024-05-15T08:26:36.000Z", + "value": "10000000000000", + "fee": "132715634625000", + "transactionSequenceNumber": 58, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xb10696b47452f79fbfe0df44bbc7d5267809bd7ecee0435c1523f16e91c2165c-IN", + "hash": "0xb10696b47452f79fbfe0df44bbc7d5267809bd7ecee0435c1523f16e91c2165c", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x9c6bdd0994112fe26d8568881e8f48c611a8068d198a72bcf9827e1e2217a907", + "blockHeight": 1547810, + "extra": {}, + "date": "2024-05-15T08:07:48.000Z", + "value": "10000000000000", + "fee": "203364569772000", + "transactionSequenceNumber": 57, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x048b58681131808e7f7180a745bb5476266a649de10fce94d9fc1af67796852f-IN", + "hash": "0x048b58681131808e7f7180a745bb5476266a649de10fce94d9fc1af67796852f", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0xb24c49d7e8f324e57d8312b0072ea8268da5cd36099dcff5762764a81772fdc1", + "blockHeight": 1547795, + "extra": {}, + "date": "2024-05-15T08:04:24.000Z", + "value": "10000000000000", + "fee": "141991293696000", + "transactionSequenceNumber": 56, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x0c2173d88c4daa0c41c1a741ba634727e5a7efe6e1204c16f5354dc5d48b2041-IN", + "hash": "0x0c2173d88c4daa0c41c1a741ba634727e5a7efe6e1204c16f5354dc5d48b2041", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x3178e8cb108a847232528aa7c9994f49fba788f790854729148f469b54e26af5", + "blockHeight": 1547780, + "extra": {}, + "date": "2024-05-15T08:01:12.000Z", + "value": "10000000000000", + "fee": "139390414947000", + "transactionSequenceNumber": 55, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x22b73aefe75d9514bca52680f09f1743533b4cd9028afc9cb4899dc61d63c896-IN", + "hash": "0x22b73aefe75d9514bca52680f09f1743533b4cd9028afc9cb4899dc61d63c896", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x3a654ed1c31b2c44025f8d3a222298c5aba2bfd9d9c756dd5f957321cd807d2a", + "blockHeight": 1543145, + "extra": {}, + "date": "2024-05-14T14:43:00.000Z", + "value": "10000000000000", + "fee": "68261291217000", + "transactionSequenceNumber": 54, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xa33c02b924df1faf78a2bd5a5b22ebbbe06a117f4021657f07c60cb4130ba010-IN", + "hash": "0xa33c02b924df1faf78a2bd5a5b22ebbbe06a117f4021657f07c60cb4130ba010", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0xf4123ff7d0798e150bdcb88720e4f5e5400c76692e03d1d930bb9de67859687e", + "blockHeight": 1543143, + "extra": {}, + "date": "2024-05-14T14:42:36.000Z", + "value": "10000000000000", + "fee": "64610191023000", + "transactionSequenceNumber": 53, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x3dfae3a0416574878970d867b5a555eca4aa4ef56ae74cc335789722fb60e7fb-IN", + "hash": "0x3dfae3a0416574878970d867b5a555eca4aa4ef56ae74cc335789722fb60e7fb", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x689662513eb6bc84560c1a912b243abb07d00c09d4028ca57b09cf4295b6ca7f", + "blockHeight": 1536304, + "extra": {}, + "date": "2024-05-13T13:30:12.000Z", + "value": "10000000000000", + "fee": "91907983965000", + "transactionSequenceNumber": 52, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x12312e7823cbea90821db15b921f4ced2e8bc0e19d95e4210c8aab91fb35b445-IN", + "hash": "0x12312e7823cbea90821db15b921f4ced2e8bc0e19d95e4210c8aab91fb35b445", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0xab36a70a37bdb2ac6bd92810e3cf3e9c232cc7ac6cffdb7e2215be5ef6035686", + "blockHeight": 1490307, + "extra": {}, + "date": "2024-05-06T15:39:36.000Z", + "value": "10000000000000", + "fee": "80480815569000", + "transactionSequenceNumber": 51, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x81c43f8d6dd8596072ae9321d151a5702a95d75a41de2292915266088744c333-IN", + "hash": "0x81c43f8d6dd8596072ae9321d151a5702a95d75a41de2292915266088744c333", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x822d4fac967e51b69117970cfaa201b2304caf47f35eaa21c2685879681d851d", + "blockHeight": 1489820, + "extra": {}, + "date": "2024-05-06T13:57:00.000Z", + "value": "10000000000000", + "fee": "126755985069000", + "transactionSequenceNumber": 50, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x718da74cf57052a35bb67e31a230ccd34bc385c49f88f5ea63dd26c381d51952-IN", + "hash": "0x718da74cf57052a35bb67e31a230ccd34bc385c49f88f5ea63dd26c381d51952", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x8493847deb100d9235c54873b0412426d9021cd7e7f649da59d9a294bf8f86d9", + "blockHeight": 1462236, + "extra": {}, + "date": "2024-05-02T10:07:48.000Z", + "value": "10000000000000", + "fee": "186760476777000", + "transactionSequenceNumber": 49, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x700ea3fdd6a7a8e5bad7320eec957fd3371345502fbe6a85f9f477b665317e89-IN", + "hash": "0x700ea3fdd6a7a8e5bad7320eec957fd3371345502fbe6a85f9f477b665317e89", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x00a453fe1b6b72fea2c42611e9b4e008c769cc499905b2004868103f4a09fcd4", + "blockHeight": 1461612, + "extra": {}, + "date": "2024-05-02T07:51:36.000Z", + "value": "10000000000000", + "fee": "312333168546000", + "transactionSequenceNumber": 48, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xf2ca67ad3dea0789f4d7fb457da9595048e174d06e4d66d87158fe09d016ca77-IN", + "hash": "0xf2ca67ad3dea0789f4d7fb457da9595048e174d06e4d66d87158fe09d016ca77", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x3c339365132ddd29ffb88bbce4b5b78d96fce5fa06b41c196fbe205df7f3d128", + "blockHeight": 1450563, + "extra": {}, + "date": "2024-04-30T16:22:12.000Z", + "value": "10000000000000", + "fee": "44312009742000", + "transactionSequenceNumber": 47, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x126080b034b5d171a0509e34042f7b57484e623c706f8a83874ac8f996a6ade8-IN", + "hash": "0x126080b034b5d171a0509e34042f7b57484e623c706f8a83874ac8f996a6ade8", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x3c10ac72a2d317512890bd69777287248d7c02c34aa07e034a36d5ff39aaba1d", + "blockHeight": 1450562, + "extra": {}, + "date": "2024-04-30T16:22:00.000Z", + "value": "10000000000000", + "fee": "41532098895000", + "transactionSequenceNumber": 46, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xf8c5966e40856b9558cfb5d1eed7c976d281b706dc1b9682db5993cfa66190c4-IN", + "hash": "0xf8c5966e40856b9558cfb5d1eed7c976d281b706dc1b9682db5993cfa66190c4", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x89ca50fda65dbf057b860806c8d810c30febcd443b6f3b9d245a98e62537f137", + "blockHeight": 1450129, + "extra": {}, + "date": "2024-04-30T14:46:48.000Z", + "value": "10000000000000", + "fee": "36219079029000", + "transactionSequenceNumber": 45, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xcc3dd59d804c96b514827c73eb167edc50c7f0c41c564fb2ae7316988f91c076-IN", + "hash": "0xcc3dd59d804c96b514827c73eb167edc50c7f0c41c564fb2ae7316988f91c076", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x1eb65f11ce8b2bbb4fb569ea965c4b22bcab197089729ad6be563f592cdfd5e3", + "blockHeight": 1449930, + "extra": {}, + "date": "2024-04-30T14:03:12.000Z", + "value": "10000000000000", + "fee": "32903179533000", + "transactionSequenceNumber": 44, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xe679452d4c263cf809b2465ba627771d7ec17977b5c5b7c609291eee47a085b2-IN", + "hash": "0xe679452d4c263cf809b2465ba627771d7ec17977b5c5b7c609291eee47a085b2", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x4313210ac8e1fb437a38753c6d89c878543e4ddea0acc86086850b61035d8f40", + "blockHeight": 1449915, + "extra": {}, + "date": "2024-04-30T13:59:36.000Z", + "value": "10000000000000", + "fee": "37560101187000", + "transactionSequenceNumber": 43, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x61de4775b995ab1e6b6e6e19c37af9d553e7f35158800935e4bd23cda7feaa93-IN", + "hash": "0x61de4775b995ab1e6b6e6e19c37af9d553e7f35158800935e4bd23cda7feaa93", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x64ac6392516416b986138899ea6dbf385a1d741f93d077d5a94e52c4327cb32d", + "blockHeight": 1449738, + "extra": {}, + "date": "2024-04-30T13:21:12.000Z", + "value": "10000000000000", + "fee": "44467138506000", + "transactionSequenceNumber": 42, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xc97d9b73dcc01fc392ddf60d70c329e025da110d885e3449da07d2d8e7513bfb-IN", + "hash": "0xc97d9b73dcc01fc392ddf60d70c329e025da110d885e3449da07d2d8e7513bfb", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0xc80ccf901d63cadafeac0c14a9af39f8a7dc1f1ef724570b6d2d923c85944dac", + "blockHeight": 1449597, + "extra": {}, + "date": "2024-04-30T12:51:24.000Z", + "value": "10000000000000", + "fee": "45536115786000", + "transactionSequenceNumber": 41, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x96d7f6c317bcd537793350f9faf4c188e39db5eefd0f71973755fd65db2574d8-IN", + "hash": "0x96d7f6c317bcd537793350f9faf4c188e39db5eefd0f71973755fd65db2574d8", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x32f2b445c0079a7c28ed7c3dee666ae1f40bc6317c20aa68dc469c5d50cbe649", + "blockHeight": 1449589, + "extra": {}, + "date": "2024-04-30T12:49:24.000Z", + "value": "10000000000000", + "fee": "39360866538000", + "transactionSequenceNumber": 40, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x0f236bef396b0a1af958a59da209908186aeb62e4654f5ec6fd78b265b5e7b7b-IN", + "hash": "0x0f236bef396b0a1af958a59da209908186aeb62e4654f5ec6fd78b265b5e7b7b", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0xd8601d2da9b4bf83d840e88e7d8d71f24373505778b904a1101647cd24965530", + "blockHeight": 1448212, + "extra": {}, + "date": "2024-04-30T07:52:48.000Z", + "value": "10000000000000", + "fee": "33338611278000", + "transactionSequenceNumber": 39, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x36d4c6d43dc6708be1ecd12693bd60a413201fd4b18e427d52339c3522d4c934-IN", + "hash": "0x36d4c6d43dc6708be1ecd12693bd60a413201fd4b18e427d52339c3522d4c934", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x689b650b220cc13705a42f20d42f04d286f9ee009ac297451171292ad084bd4e", + "blockHeight": 1442121, + "extra": {}, + "date": "2024-04-29T09:51:12.000Z", + "value": "10000000000000", + "fee": "59986911579000", + "transactionSequenceNumber": 38, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xc1b059188c597f904bacfa7a4d8412b226971005b728a73b3e993567742a06c2-IN", + "hash": "0xc1b059188c597f904bacfa7a4d8412b226971005b728a73b3e993567742a06c2", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x155d8dc76dc82932d453ed039a8748d5461800631c93ba079920c87435d12c98", + "blockHeight": 1442103, + "extra": {}, + "date": "2024-04-29T09:47:12.000Z", + "value": "10000000000000", + "fee": "65256671172000", + "transactionSequenceNumber": 37, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x3b4c7de82d97960473d5cabf7ff56621f5e30f73a9968c2b8e62066b2f82cd00-IN", + "hash": "0x3b4c7de82d97960473d5cabf7ff56621f5e30f73a9968c2b8e62066b2f82cd00", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x727202242bf1709873ca97df1c9a5bf9d5a6029c45b9c16a68120bb4a12b8571", + "blockHeight": 1442096, + "extra": {}, + "date": "2024-04-29T09:45:48.000Z", + "value": "10000000000000", + "fee": "64676959221000", + "transactionSequenceNumber": 36, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x11752dd8229198ee238b12ea924bdc23a355c8da13d523ed36f06f13b4be5500-IN", + "hash": "0x11752dd8229198ee238b12ea924bdc23a355c8da13d523ed36f06f13b4be5500", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x45cdbb8ad641fb8fe781d26fe122fbea51c08d562ff56c64f4b943de50b639d6", + "blockHeight": 1442091, + "extra": {}, + "date": "2024-04-29T09:44:48.000Z", + "value": "10000000000000", + "fee": "73695361509000", + "transactionSequenceNumber": 35, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x3196a528e7622b703b412fc6b5dc74524646638551adc3ca5cf040429a1a8a90-IN", + "hash": "0x3196a528e7622b703b412fc6b5dc74524646638551adc3ca5cf040429a1a8a90", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x3dbb005c8102f3536b63ef2eca594162f79cc4f05affd98eb59e62637956088d", + "blockHeight": 1441872, + "extra": {}, + "date": "2024-04-29T08:56:48.000Z", + "value": "10000000000000", + "fee": "49705053909000", + "transactionSequenceNumber": 34, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x2da67ae076d80a245db660f3687b81380bf632d09967053aafdfd2ae86c1caef-IN", + "hash": "0x2da67ae076d80a245db660f3687b81380bf632d09967053aafdfd2ae86c1caef", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x4dc38934ae07417026a9eed26520ac4b72382623064731e032b7467e5f955af8", + "blockHeight": 1423075, + "extra": {}, + "date": "2024-04-26T12:09:00.000Z", + "value": "10000000000000", + "fee": "63652230348000", + "transactionSequenceNumber": 33, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xe0601b2149dff79bf5ee6705939be159f0dc57b9296550c8b81c3309ca045c7b-IN", + "hash": "0xe0601b2149dff79bf5ee6705939be159f0dc57b9296550c8b81c3309ca045c7b", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x12255f0115c0cdaac742e59dd5916cdea3096469c23ca60b55198e227622c86c", + "blockHeight": 1422955, + "extra": {}, + "date": "2024-04-26T11:43:48.000Z", + "value": "10000000000000", + "fee": "63560988435000", + "transactionSequenceNumber": 32, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x4d96bfa58c0ba19bcbab94ec965542f3fee1520fd8c2a5f0f223231b8aa8dbb4-IN", + "hash": "0x4d96bfa58c0ba19bcbab94ec965542f3fee1520fd8c2a5f0f223231b8aa8dbb4", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0xa86307488a98d1546fcdefff7ccbe2e5c2b724fd09363653f141ec00debad1be", + "blockHeight": 1409289, + "extra": {}, + "date": "2024-04-24T09:55:36.000Z", + "value": "10000000000000", + "fee": "60743364948000", + "transactionSequenceNumber": 31, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xa389f6007fd10a13d141e1ef02c852f2e89a0fc72e914cc135dcfb188d4f301a-IN", + "hash": "0xa389f6007fd10a13d141e1ef02c852f2e89a0fc72e914cc135dcfb188d4f301a", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x8052aa2a74378584f5c5790c787e9a576fb28ac959348a77ee7d07c33c20d4d9", + "blockHeight": 1409282, + "extra": {}, + "date": "2024-04-24T09:54:12.000Z", + "value": "10000000000000", + "fee": "59999667210000", + "transactionSequenceNumber": 30, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x55d9cde2c34595dda3aaa6742c1230eb80d0349904cefed2a5f89b14a8833502-IN", + "hash": "0x55d9cde2c34595dda3aaa6742c1230eb80d0349904cefed2a5f89b14a8833502", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0xa4b5370fd4db21c2adc2e23b4ca255b4e2dce8823e8ae35ad404c0ed56ee2ce7", + "blockHeight": 1409273, + "extra": {}, + "date": "2024-04-24T09:52:24.000Z", + "value": "10000000000000", + "fee": "50599940601000", + "transactionSequenceNumber": 29, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x2e9e55a51187dfa1eb59a5da205ff1d9b3b366801641db6aabce5ebc063da47b-IN", + "hash": "0x2e9e55a51187dfa1eb59a5da205ff1d9b3b366801641db6aabce5ebc063da47b", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x44a4214eba5c0f220295c47b7925a6b494d4592e0e014fbda8635404dcb73512", + "blockHeight": 1409163, + "extra": {}, + "date": "2024-04-24T09:27:36.000Z", + "value": "100000000000000", + "fee": "49278054735000", + "transactionSequenceNumber": 28, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x859fd5555a15ed7314b958c4c7b58c60bcfd0960cd358f387975e33d0096ac41-IN", + "hash": "0x859fd5555a15ed7314b958c4c7b58c60bcfd0960cd358f387975e33d0096ac41", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0xf61fbf52512e5f8d3b0cf2e3bf461d43bb3a777c7a091d0cfaa43133727987ca", + "blockHeight": 1409112, + "extra": {}, + "date": "2024-04-24T09:16:12.000Z", + "value": "10000000000000", + "fee": "50392966092000", + "transactionSequenceNumber": 27, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x73bdf7f4c3eca74a75d851ff7810427a7006e608371af0dc495f87f91ea86f1d-IN", + "hash": "0x73bdf7f4c3eca74a75d851ff7810427a7006e608371af0dc495f87f91ea86f1d", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x051c61b2086046d4b5bbeb7d7573bc1a3bf332504dff0c61f5465022c5aa6a7f", + "blockHeight": 1397247, + "extra": {}, + "date": "2024-04-22T13:29:12.000Z", + "value": "10000000000000", + "fee": "123373033938000", + "transactionSequenceNumber": 26, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xbc5e07605d9c5937cd94ee95663c4de986db769d89c7a50589d2e0606074e108-IN", + "hash": "0xbc5e07605d9c5937cd94ee95663c4de986db769d89c7a50589d2e0606074e108", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x0bb4079d00e4077e91b8a0e794803c85cf8b142d1b62b838d3aeb562f3a70b74", + "blockHeight": 1365218, + "extra": {}, + "date": "2024-04-17T14:30:24.000Z", + "value": "10000000000000", + "fee": "87963076068000", + "transactionSequenceNumber": 25, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xa104c88f2607f7469b5f5508de62162f21f316715ba5494b22506d99045c5b9c-IN", + "hash": "0xa104c88f2607f7469b5f5508de62162f21f316715ba5494b22506d99045c5b9c", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x76398f6f1f72c0348aaf1784b823d9fa203f32c9137108ec86ba43666d7fc485", + "blockHeight": 1365214, + "extra": {}, + "date": "2024-04-17T14:29:24.000Z", + "value": "10000000000000", + "fee": "78437375835000", + "transactionSequenceNumber": 24, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x32cf01deadb899014b9d2f76d0fddb58c725db16f1b457831a559bf91291ed18-IN", + "hash": "0x32cf01deadb899014b9d2f76d0fddb58c725db16f1b457831a559bf91291ed18", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x86f460faf002a93077fb4110b56c40e7d6ca2d8577ed31d66e5b3fbd5d7a0d42", + "blockHeight": 1365195, + "extra": {}, + "date": "2024-04-17T14:24:48.000Z", + "value": "10000000000000", + "fee": "72072200697000", + "transactionSequenceNumber": 23, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x9f562f008aa8dfbae8b25641a723662d4b8dadd268f2978ab526c4b4429947d6-IN", + "hash": "0x9f562f008aa8dfbae8b25641a723662d4b8dadd268f2978ab526c4b4429947d6", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x509aa13f3c94be4e2918c4b08bb6616ba188c14b643656a2872e3aceb6fdd3fb", + "blockHeight": 1365177, + "extra": {}, + "date": "2024-04-17T14:20:48.000Z", + "value": "10000000000000", + "fee": "83076429975000", + "transactionSequenceNumber": 22, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x59b36836e528f73d61874b2c607a30a3fbbe58e32de6011df2a8ce77f673f046-IN", + "hash": "0x59b36836e528f73d61874b2c607a30a3fbbe58e32de6011df2a8ce77f673f046", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0xf91ca75ac65618d78c0b6696cf8e753a70fc0ffa64c4861d96c737bbf29a00b4", + "blockHeight": 1364835, + "extra": {}, + "date": "2024-04-17T13:02:00.000Z", + "value": "10000000000000", + "fee": "76871977287000", + "transactionSequenceNumber": 21, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x7dbc92bc7892bcb9fe9235b613df4c3176dfb47cfba908b538ea9b070ac7329b-IN", + "hash": "0x7dbc92bc7892bcb9fe9235b613df4c3176dfb47cfba908b538ea9b070ac7329b", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x388ca8211c8a32b950c8ae3bde9d79e46a037e27af579f17f97cf702b1c1e6ef", + "blockHeight": 1364819, + "extra": {}, + "date": "2024-04-17T12:58:24.000Z", + "value": "10000000000000", + "fee": "69811451640000", + "transactionSequenceNumber": 20, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x58c5e3134e1e158c69362e5af6c003a4cc37b1b5b783d844489ee0befca32a53-IN", + "hash": "0x58c5e3134e1e158c69362e5af6c003a4cc37b1b5b783d844489ee0befca32a53", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0xa5a7f900303d644cbf9a4049d1f0b01a828bb45c8b42cb7ef7192675b954b910", + "blockHeight": 1364661, + "extra": {}, + "date": "2024-04-17T12:24:24.000Z", + "value": "10000000000000", + "fee": "61499841648000", + "transactionSequenceNumber": 19, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x6f9e06cb749dc28e60127d9b58a2ff967bfa666cbd3e3be8cfc03b41823b20db-IN", + "hash": "0x6f9e06cb749dc28e60127d9b58a2ff967bfa666cbd3e3be8cfc03b41823b20db", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x5f886fac5a1e68afde4c4258d22ca22c6cc2871b8c900174df51d57f4c809a27", + "blockHeight": 1363910, + "extra": {}, + "date": "2024-04-17T09:35:36.000Z", + "value": "10000000000000", + "fee": "73604519919000", + "transactionSequenceNumber": 18, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x1498a38e4564942997c6778b77208085343507f6898cedd2d5b054b5b4534739-IN", + "hash": "0x1498a38e4564942997c6778b77208085343507f6898cedd2d5b054b5b4534739", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x558bdbe2bf09ae3e14f7bf7d4f850e586d50d89684455efed8d34eb64d080909", + "blockHeight": 1359060, + "extra": {}, + "date": "2024-04-16T15:42:00.000Z", + "value": "10000000000000", + "fee": "106546777890000", + "transactionSequenceNumber": 17, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x456b194be1fea8b9209e294f786e17f3980a30982b1aa0c7ce7177061b2eb7a1-IN", + "hash": "0x456b194be1fea8b9209e294f786e17f3980a30982b1aa0c7ce7177061b2eb7a1", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0xb51e77e7169af6f83364ee1ac83244f2416345905e5fb3bdd45a4d4f4bca743e", + "blockHeight": 1358372, + "extra": {}, + "date": "2024-04-16T13:07:00.000Z", + "value": "10000000000000", + "fee": "82731513480000", + "transactionSequenceNumber": 16, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xe14c217b0ed858e948eeab1390bcfb7adc22c5ddcdacdf4c58a1e08f851e35c2-IN", + "hash": "0xe14c217b0ed858e948eeab1390bcfb7adc22c5ddcdacdf4c58a1e08f851e35c2", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0xa3fa419c2d172f496e5df45530b296fe4e7980fc10e50d8d38915eafe1d3b15e", + "blockHeight": 1358368, + "extra": {}, + "date": "2024-04-16T13:06:12.000Z", + "value": "10000000000000", + "fee": "76315001217000", + "transactionSequenceNumber": 15, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xa05132198ac05c9bbaa93815d21f684b36c0114b3ec94d3898d0d537dc559bdd-IN", + "hash": "0xa05132198ac05c9bbaa93815d21f684b36c0114b3ec94d3898d0d537dc559bdd", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x1e144a1e18e0ff3eca7b8435ea94307eb08a5f29e7a41a0ae809da870a34cb05", + "blockHeight": 1358203, + "extra": {}, + "date": "2024-04-16T12:30:12.000Z", + "value": "10000000000000", + "fee": "57042363966000", + "transactionSequenceNumber": 14, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x767b3f49b327f8973441b6d3da3e936caaf1ed75db7fd3b16640781a537c2ea2-IN", + "hash": "0x767b3f49b327f8973441b6d3da3e936caaf1ed75db7fd3b16640781a537c2ea2", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x0278573c04d30488ee991565c449054251c42e763a00a277778f750caa167dc3", + "blockHeight": 1358198, + "extra": {}, + "date": "2024-04-16T12:29:00.000Z", + "value": "10000000000000", + "fee": "69990386235000", + "transactionSequenceNumber": 13, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xf9a360549970073fcb3d61e1937483ac8776274e5dc70e07031421b055eee86c-IN", + "hash": "0xf9a360549970073fcb3d61e1937483ac8776274e5dc70e07031421b055eee86c", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x32bfc07b9d44845bffce6b0a54bba2cf19128c0bd1a3e58bd1274c1e5221c9e4", + "blockHeight": 1358122, + "extra": {}, + "date": "2024-04-16T12:11:48.000Z", + "value": "10000000000000", + "fee": "65808360576000", + "transactionSequenceNumber": 12, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x4f8b5ac603712dae2b1ea3c41947bcf1bf0be85e3a0e0cfe5145d03043d4d521-IN", + "hash": "0x4f8b5ac603712dae2b1ea3c41947bcf1bf0be85e3a0e0cfe5145d03043d4d521", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x045fec036fa7345aa09b8af9cc982e5a868e22e49dace15e98a6852e685d4d9b", + "blockHeight": 1357346, + "extra": {}, + "date": "2024-04-16T09:18:48.000Z", + "value": "10000000000000", + "fee": "48050167242000", + "transactionSequenceNumber": 11, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x90cdd88c6252475183b4b2a44071978339119d9e4ea049f7a9dd65a87839ce84-IN", + "hash": "0x90cdd88c6252475183b4b2a44071978339119d9e4ea049f7a9dd65a87839ce84", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0xacd629cdbea82216c33ba44b4e1c83c905a9a90dad705ab4f240a590077ccb9d", + "blockHeight": 1357270, + "extra": {}, + "date": "2024-04-16T09:02:24.000Z", + "value": "10000000000000", + "fee": "62944112952000", + "transactionSequenceNumber": 10, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xa891e881818af7570d73fccf52802a957dbfbde3d2b46dfac8aaf0b1238e347b-IN", + "hash": "0xa891e881818af7570d73fccf52802a957dbfbde3d2b46dfac8aaf0b1238e347b", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x5ad8db1d474e9d6101f70c464bdbd8f842cb746c70872c6b63427450299c9b44", + "blockHeight": 1357267, + "extra": {}, + "date": "2024-04-16T09:01:36.000Z", + "value": "10000000000000", + "fee": "65755108125000", + "transactionSequenceNumber": 9, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x2815a9cb2900227812d5ddf5dac20dd5311eb720b723e600af68e111ba81676e-IN", + "hash": "0x2815a9cb2900227812d5ddf5dac20dd5311eb720b723e600af68e111ba81676e", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0xb9e7d99d816f79188deb85e7c996ee68aef98d8d3671923c3a0bc1e9fc339f12", + "blockHeight": 1352544, + "extra": {}, + "date": "2024-04-15T15:42:24.000Z", + "value": "10000000000000", + "fee": "52580394069000", + "transactionSequenceNumber": 8, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x5c5622aaa4173bef68127a42565e9971577b33c18c4c6dea531711234fe7b6b4-IN", + "hash": "0x5c5622aaa4173bef68127a42565e9971577b33c18c4c6dea531711234fe7b6b4", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0xef44280971673302b1a5b08e13472a215bb9c21a8c463c5601e901afcfee8158", + "blockHeight": 1326144, + "extra": {}, + "date": "2024-04-11T15:30:48.000Z", + "value": "10000000000000", + "fee": "109553213910000", + "transactionSequenceNumber": 7, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x46e8357ee53468894a66584d35a33f22c64924b46ca865db313ef8e39bf5962a-IN", + "hash": "0x46e8357ee53468894a66584d35a33f22c64924b46ca865db313ef8e39bf5962a", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x57c1bc247f79444b85a391d4dbf90a52120e4a9847d8750b49100b1492c30374", + "blockHeight": 1326142, + "extra": {}, + "date": "2024-04-11T15:30:24.000Z", + "value": "10000000000000", + "fee": "94763796015000", + "transactionSequenceNumber": 6, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xc6d1e2b972393ac28961ec204a94688a294709c2b6e081e250b26731fb41accf-IN", + "hash": "0xc6d1e2b972393ac28961ec204a94688a294709c2b6e081e250b26731fb41accf", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x009ff89ae7bb93ce0f8ba2509e99a351d4d2318600f12d68429262323792d953", + "blockHeight": 1326133, + "extra": {}, + "date": "2024-04-11T15:28:00.000Z", + "value": "10000000000000", + "fee": "120481372011000", + "transactionSequenceNumber": 5, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x79badad6d55e2ae48356aa104d9a1b361832bf0388487a3605e489b921ddb082-IN", + "hash": "0x79badad6d55e2ae48356aa104d9a1b361832bf0388487a3605e489b921ddb082", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x93d05599f74a42b0c1e172cd739fca66d2145c5613f2a93bcc24b7c59dd0e9ab", + "blockHeight": 1326063, + "extra": {}, + "date": "2024-04-11T15:12:24.000Z", + "value": "10000000000000", + "fee": "97025141367000", + "transactionSequenceNumber": 4, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x028614b4ba199549debde64a883b2ae5f9e3e66d1ec58e39d4aa9f9abf643c54-IN", + "hash": "0x028614b4ba199549debde64a883b2ae5f9e3e66d1ec58e39d4aa9f9abf643c54", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x78a7da74953541d4eb15b0497e5b29ef7b829bc2f90b54362ca4476e3414cdac", + "blockHeight": 1326061, + "extra": {}, + "date": "2024-04-11T15:12:00.000Z", + "value": "10000000000000", + "fee": "85533493773000", + "transactionSequenceNumber": 3, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x0468dfe8e7ec1e231b1e53703b53935108023b9af8153fe67c7bb5cce0095f18-IN", + "hash": "0x0468dfe8e7ec1e231b1e53703b53935108023b9af8153fe67c7bb5cce0095f18", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x898e95a0d06cd92c02461be406d7a823c6d5dfcc907a1d8a7b0a8eed7e23695c", + "blockHeight": 1326050, + "extra": {}, + "date": "2024-04-11T15:09:00.000Z", + "value": "100000000000000", + "fee": "108818148243000", + "transactionSequenceNumber": 2, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xef91af8c2a0822ecd4341c1a8294b5a6493dc603a23282e66688bfc34952ad58-IN", + "hash": "0xef91af8c2a0822ecd4341c1a8294b5a6493dc603a23282e66688bfc34952ad58", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0xdf80f1c3211c95a2b3b1fa45a5f72011ac78c7105abdf050f9474bc88be31482", + "blockHeight": 1325836, + "extra": {}, + "date": "2024-04-11T14:23:48.000Z", + "value": "10000000000000", + "fee": "117857570502000", + "transactionSequenceNumber": 1, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x14139eac4a9d771c08e480cfa72fbb5a7c107c53041414374e72f13e630123aa-IN", + "hash": "0x14139eac4a9d771c08e480cfa72fbb5a7c107c53041414374e72f13e630123aa", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x749e65827d4d4f6991cc7604b69732f08da7886a69ed3d889715528f32688bfa", + "blockHeight": 1318759, + "extra": {}, + "date": "2024-04-10T12:30:36.000Z", + "value": "1900000000000000000", + "fee": "22229305245000", + "transactionSequenceNumber": 0, + "hasFailed": false, + "internalOperations": [] + } + ], + "pendingOperations": [], + "currencyId": "ethereum_holesky", + "unitMagnitude": 18, + "lastSyncDate": "2024-06-03T07:55:37.704Z", + "balance": "1900900000000000000", + "spendableBalance": "1900900000000000000", + "nfts": [], + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000 + ], + "latestDate": 1717398000000 + }, + "DAY": { + "balances": [ + 0, + 1900000000000000000, + 1900160000000000000, + 1900160000000000000, + 1900160000000000000, + 1900160000000000000, + 1900170000000000000, + 1900260000000000000, + 1900340000000000000, + 1900340000000000000, + 1900340000000000000, + 1900340000000000000, + 1900340000000000000, + 1900350000000000000, + 1900350000000000000, + 1900490000000000000, + 1900490000000000000, + 1900510000000000000, + 1900510000000000000, + 1900510000000000000, + 1900560000000000000, + 1900650000000000000, + 1900650000000000000, + 1900670000000000000, + 1900670000000000000, + 1900670000000000000, + 1900670000000000000, + 1900690000000000000, + 1900690000000000000, + 1900690000000000000, + 1900690000000000000, + 1900690000000000000, + 1900690000000000000, + 1900690000000000000, + 1900700000000000000, + 1900720000000000000, + 1900820000000000000, + 1900850000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000 + ], + "latestDate": 1717365600000 + }, + "WEEK": { + "balances": [ + 0, + 1900160000000000000, + 1900340000000000000, + 1900510000000000000, + 1900670000000000000, + 1900690000000000000, + 1900900000000000000, + 1900900000000000000, + 1900900000000000000 + ], + "latestDate": 1717279200000 + } + }, + "subAccounts": [], + "swapHistory": [] + }, + "version": 1 + }, + { + "data": { + "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "seedIdentifier": "047e89e2c6153732ee8f54bca17a4a74d3e1d9bddcb6149ed113394f79f585987d90e550639bf0fb76466141684bc43fbc90a24cd9f287fa4662f8ea2b889da1e7", + "name": "Ethereum Sepolia 1", + "starred": false, + "used": true, + "derivationMode": "", + "index": 0, + "freshAddress": "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6", + "freshAddressPath": "44'/60'/0'/0/0", + "freshAddresses": [ + { + "address": "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6", + "derivationPath": "44'/60'/0'/0/0" + } + ], + "blockHeight": 6030191, + "syncHash": "0x31559fa0", + "creationDate": "2024-05-15T14:55:12.000Z", + "operationsCount": 24, + "operations": [ + { + "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xc4183a9c8df2df06ac873c5b9152cf2a7f52eb3c4dab3bdea2e07755b0197f2c-OUT", + "hash": "0xc4183a9c8df2df06ac873c5b9152cf2a7f52eb3c4dab3bdea2e07755b0197f2c", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x4b8617ddd53f5def705d0cc0c8df36ebdff860d6c46621cb282ae27838c62d13", + "blockHeight": 5949742, + "extra": {}, + "date": "2024-05-21T19:01:00.000Z", + "value": "127410501733000", + "fee": "117410501733000", + "transactionSequenceNumber": 20, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xb0b09a52756fd7bf2f3fefd2fbb0cf5d1af93b3e07502d41fdfbdc45b52805b3-OUT", + "hash": "0xb0b09a52756fd7bf2f3fefd2fbb0cf5d1af93b3e07502d41fdfbdc45b52805b3", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x9843b0d5c2a88b7d40614c937a28fa19e937fb6ffb111ed36db296b959026042", + "blockHeight": 5948269, + "extra": {}, + "date": "2024-05-21T13:44:00.000Z", + "value": "1389896001232000", + "fee": "1379896001232000", + "transactionSequenceNumber": 19, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x62bd7eaee68eed0c39f18f1436864a9a9b48ecc17172e1e5dc7684db8ea6d648-OUT", + "hash": "0x62bd7eaee68eed0c39f18f1436864a9a9b48ecc17172e1e5dc7684db8ea6d648", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x0210f8119a81f511aa072d8bd0bd23ec991c89f9e59f4e5f37a8cf6be383f849", + "blockHeight": 5948085, + "extra": {}, + "date": "2024-05-21T13:04:48.000Z", + "value": "881999888452000", + "fee": "871999888452000", + "transactionSequenceNumber": 18, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xf7ce5e98d7c7417a70c8c4164dc80b09d016bc86302f5a083f6a4573329bbf34-OUT", + "hash": "0xf7ce5e98d7c7417a70c8c4164dc80b09d016bc86302f5a083f6a4573329bbf34", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xd65c9591c37d17d711595ea36c3b249d6a5f31427761ac7c92b2fa7228b080e7", + "blockHeight": 5947702, + "extra": {}, + "date": "2024-05-21T11:43:12.000Z", + "value": "665535357001000", + "fee": "655535357001000", + "transactionSequenceNumber": 17, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x8c27f673e9442dc56c667997da3b1f56ca3523d256b8b4dca975352857c4e34d-OUT", + "hash": "0x8c27f673e9442dc56c667997da3b1f56ca3523d256b8b4dca975352857c4e34d", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xede29aa5658064b564348e11f23b8d074df16c6d5055c8979e4ae9f73806bca1", + "blockHeight": 5947337, + "extra": {}, + "date": "2024-05-21T10:23:36.000Z", + "value": "1818833984419000", + "fee": "1808833984419000", + "transactionSequenceNumber": 16, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x9def1ab1895552c99022a16c19828726298a0bf2f8ec348e2af72929d2ba52a3-OUT", + "hash": "0x9def1ab1895552c99022a16c19828726298a0bf2f8ec348e2af72929d2ba52a3", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x21b63c6698aee8c9e6ce8703a2fcb7a472c53eca377466a3001caeeff9302b62", + "blockHeight": 5921624, + "extra": {}, + "date": "2024-05-17T14:07:24.000Z", + "value": "2257613745454000", + "fee": "2247613745454000", + "transactionSequenceNumber": 15, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xd884ab4034e25bdd50fb159ab9bf78a0242d839e7c99ba2cec27e738959631eb-OUT", + "hash": "0xd884ab4034e25bdd50fb159ab9bf78a0242d839e7c99ba2cec27e738959631eb", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xf6d7c8399b1354e001c7f92783cb905c10a05829b1b0a0b6c673a77c7be1be49", + "blockHeight": 5921300, + "extra": {}, + "date": "2024-05-17T12:55:48.000Z", + "value": "2639999659021000", + "fee": "2629999659021000", + "transactionSequenceNumber": 14, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x7e0481c353102e9d1dda32a00190e9c28c953e1d4cd133421428758653542caf-OUT", + "hash": "0x7e0481c353102e9d1dda32a00190e9c28c953e1d4cd133421428758653542caf", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x4065987c7141ed76a5061ba839df3d0ccb8561c82f106899840f25825c90c433", + "blockHeight": 5921246, + "extra": {}, + "date": "2024-05-17T12:43:24.000Z", + "value": "1991400672580000", + "fee": "1981400672580000", + "transactionSequenceNumber": 13, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x3f9e1a9f133ba3ba15d92e49bfc77bc16255422953db2bcacde74a51bd125736-OUT", + "hash": "0x3f9e1a9f133ba3ba15d92e49bfc77bc16255422953db2bcacde74a51bd125736", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x7ee06a31ef76d337a2badeab0b2cf525b13e6ce9de7b08353a7f954048b0da49", + "blockHeight": 5921240, + "extra": {}, + "date": "2024-05-17T12:42:12.000Z", + "value": "2085203812906000", + "fee": "2075203812906000", + "transactionSequenceNumber": 12, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xf7498ff0092fed2e7f31650115b9eb98247b78479b3360352254f13e56d77932-OUT", + "hash": "0xf7498ff0092fed2e7f31650115b9eb98247b78479b3360352254f13e56d77932", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xf156feb9590b652011f363c906754ae23efe2d6fc0386bf0fd5d6cb8a5176ebc", + "blockHeight": 5921010, + "extra": {}, + "date": "2024-05-17T11:50:48.000Z", + "value": "1781720622511000", + "fee": "1771720622511000", + "transactionSequenceNumber": 11, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xcb1270749d8dcc53042c0e9dc551a3dacd5dcf6335f0f94bf6b8568df5424108-OUT", + "hash": "0xcb1270749d8dcc53042c0e9dc551a3dacd5dcf6335f0f94bf6b8568df5424108", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x342a2b20eb330632b0ac502df8b370d2c8dc2f5d85eaf0556e53dcabbf4688e4", + "blockHeight": 5915303, + "extra": {}, + "date": "2024-05-16T15:06:24.000Z", + "value": "2591972340577000", + "fee": "2581972340577000", + "transactionSequenceNumber": 10, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xe41e1b42e37784e9c1041f9e040256c2b093e5e9d821feee43fb53d94cda16eb-OUT", + "hash": "0xe41e1b42e37784e9c1041f9e040256c2b093e5e9d821feee43fb53d94cda16eb", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x5a8bcf8fc598121413a3e113bca19eb6bac585455683c1b5f34d62abf20b86f4", + "blockHeight": 5915290, + "extra": {}, + "date": "2024-05-16T15:03:12.000Z", + "value": "2833382120629000", + "fee": "2823382120629000", + "transactionSequenceNumber": 9, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xf0113a90212d31d5be0d31464db6d570909ac9950f76f9f421547a75cb5567e8-OUT", + "hash": "0xf0113a90212d31d5be0d31464db6d570909ac9950f76f9f421547a75cb5567e8", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xe833d2ace5e115a20ad913f67dbb1092c04718763806da71ac959b9a8cc72302", + "blockHeight": 5914498, + "extra": {}, + "date": "2024-05-16T12:14:12.000Z", + "value": "854959726219000", + "fee": "844959726219000", + "transactionSequenceNumber": 8, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x0aa844cd6ebeedb3bd996c94ea35431c38f527148de7ca94a7395485c72dcde4-OUT", + "hash": "0x0aa844cd6ebeedb3bd996c94ea35431c38f527148de7ca94a7395485c72dcde4", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xa7bb92e4eefc54d883126bc15aa45037e4dc3151d0f3e6962c6d6d43b6fb4189", + "blockHeight": 5913917, + "extra": {}, + "date": "2024-05-16T10:09:24.000Z", + "value": "2034616680037000", + "fee": "2024616680037000", + "transactionSequenceNumber": 7, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x0cd3d38cef087638574f62c4d61e67e6f6d5abb1bc788a9a82784b261672d343-OUT", + "hash": "0x0cd3d38cef087638574f62c4d61e67e6f6d5abb1bc788a9a82784b261672d343", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xeedfc9598e63b1b065702b8dbc2ee252f0219acb4ff8a42c1b68c074ea6dfff6", + "blockHeight": 5913862, + "extra": {}, + "date": "2024-05-16T09:58:00.000Z", + "value": "2393188724623000", + "fee": "2383188724623000", + "transactionSequenceNumber": 6, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x21f254ba3ff939e27b34fca419f7afc86770c1b6bcb06214980e127a64fc3547-OUT", + "hash": "0x21f254ba3ff939e27b34fca419f7afc86770c1b6bcb06214980e127a64fc3547", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x05e9ba2ba126f17436db61dc18d6545d95334863101015063776a62b1be33464", + "blockHeight": 5913823, + "extra": {}, + "date": "2024-05-16T09:49:48.000Z", + "value": "2540133356044000", + "fee": "2530133356044000", + "transactionSequenceNumber": 5, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x3f0a86a9c91910aea23873969845bbd88188d16c8ee4e0fef787ddfff5f15031-OUT", + "hash": "0x3f0a86a9c91910aea23873969845bbd88188d16c8ee4e0fef787ddfff5f15031", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x7d1bb861917221312002aa991561a0b7509a7d2d98e0d3d6c9b07972192bff59", + "blockHeight": 5913813, + "extra": {}, + "date": "2024-05-16T09:47:48.000Z", + "value": "2186992101025000", + "fee": "2176992101025000", + "transactionSequenceNumber": 4, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x0b87a59547793b4fef371d34ea37f336a07b1f82b43646227168e216daf36182-IN", + "hash": "0x0b87a59547793b4fef371d34ea37f336a07b1f82b43646227168e216daf36182", + "type": "IN", + "senders": [ + "0x84c9A36721eB21da9244Fe50177180D8f4a7cAF7" + ], + "recipients": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xd797bc8690c420874e6cb65f8acd9fb060a90cdf60826a1fae1e8ca5b46da0a5", + "blockHeight": 5913727, + "extra": {}, + "date": "2024-05-16T09:29:36.000Z", + "value": "2000000000000000000", + "fee": "1816684824213000", + "transactionSequenceNumber": 9, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xc67a038db532d77d3c5ec6fda74bd4bfcbf4077d35b7105d3e790b2ff89c0b3a-OUT", + "hash": "0xc67a038db532d77d3c5ec6fda74bd4bfcbf4077d35b7105d3e790b2ff89c0b3a", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x58d3e6c8ea6221417bfe9c51008bca89aa672fdc8e9321ee9d26a3d85fcba531", + "blockHeight": 5913205, + "extra": {}, + "date": "2024-05-16T07:38:24.000Z", + "value": "2862901884553000", + "fee": "2852901884553000", + "transactionSequenceNumber": 3, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xbcb44eae119054b0a00190e8e20c081f009a40d237e09d675e49a31f1886c94b-IN", + "hash": "0xbcb44eae119054b0a00190e8e20c081f009a40d237e09d675e49a31f1886c94b", + "type": "IN", + "senders": [ + "0x6627C488E5Cd393e20B1C43D267e5A91236d7db2" + ], + "recipients": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x3167baffa394941ed3da03a55fd42053ea896e8e545204e1c94834e5fc6e94c8", + "blockHeight": 5910047, + "extra": {}, + "date": "2024-05-15T20:24:48.000Z", + "value": "20000000000000000", + "fee": "1683951766329000", + "transactionSequenceNumber": 2941, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x536e78db72060830930dd0fe1fe4a86eeb31ae4f6db4b76b407627f094ed9439-OUT", + "hash": "0x536e78db72060830930dd0fe1fe4a86eeb31ae4f6db4b76b407627f094ed9439", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xef17ba249574adc4bf07e1da5e0b89dd2e131786ae12460f65d8c8fc17f4bc4e", + "blockHeight": 5908643, + "extra": {}, + "date": "2024-05-15T15:27:00.000Z", + "value": "1243027266919000", + "fee": "1233027266919000", + "transactionSequenceNumber": 2, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xc484624fcb7eb247fb60126670f8a77d8a798638c3044a090ae7caa9df2fa981-OUT", + "hash": "0xc484624fcb7eb247fb60126670f8a77d8a798638c3044a090ae7caa9df2fa981", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x2caea8c7fce9229f084d4526eeec8fe961e6165bf9d2169fcd5a47cf958b98c3", + "blockHeight": 5908633, + "extra": {}, + "date": "2024-05-15T15:25:00.000Z", + "value": "1365608558080000", + "fee": "1355608558080000", + "transactionSequenceNumber": 1, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x4e922150f45253718fcae9ac728c707c3f74f47a2f189e076d13dc93095e11eb-OUT", + "hash": "0x4e922150f45253718fcae9ac728c707c3f74f47a2f189e076d13dc93095e11eb", + "type": "OUT", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x6e8a898ca5d18ea04710c13d9bbb442f7bdfce55b4a36bcd9b0135d658991446", + "blockHeight": 5908631, + "extra": {}, + "date": "2024-05-15T15:24:36.000Z", + "value": "1369743785953000", + "fee": "1359743785953000", + "transactionSequenceNumber": 0, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xecf48b0978e81aa12d565a24f0123916a11e103c22caf741a67accfda84f85cd-IN", + "hash": "0xecf48b0978e81aa12d565a24f0123916a11e103c22caf741a67accfda84f85cd", + "type": "IN", + "senders": [ + "0x4258A05DBA420A398bcdFB389E4250759b4223ea" + ], + "recipients": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xbbc8a1a441c4b626f477ba3cf760dcdd71b79715ff5488cdb2a7552cb0599292", + "blockHeight": 5908494, + "extra": {}, + "date": "2024-05-15T14:55:12.000Z", + "value": "145000000000000000", + "fee": "1711757207412000", + "transactionSequenceNumber": 0, + "hasFailed": false, + "internalOperations": [] + } + ], + "pendingOperations": [], + "currencyId": "ethereum_sepolia", + "unitMagnitude": 18, + "lastSyncDate": "2024-06-03T07:55:37.619Z", + "balance": "2127083859210032000", + "spendableBalance": "2127083859210032000", + "nfts": [], + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000 + ], + "latestDate": 1717398000000 + }, + "DAY": { + "balances": [ + 0, + 161021620389048000, + 2142723473455341000, + 2131967534942869000, + 2131967534942869000, + 2131967534942869000, + 2131967534942869000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000, + 2127083859210032000 + ], + "latestDate": 1717365600000 + }, + "WEEK": { + "balances": [ + 0, + 2131967534942869000, + 2127083859210032000, + 2127083859210032000 + ], + "latestDate": 1717279200000 + } + }, + "subAccounts": [], + "swapHistory": [] + }, + "version": 1 + }, + { + "data": { + "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "seedIdentifier": "047e89e2c6153732ee8f54bca17a4a74d3e1d9bddcb6149ed113394f79f585987d90e550639bf0fb76466141684bc43fbc90a24cd9f287fa4662f8ea2b889da1e7", + "name": "Ethereum Sepolia 2", + "starred": false, + "used": true, + "derivationMode": "", + "index": 1, + "freshAddress": "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad", + "freshAddressPath": "44'/60'/1'/0/0", + "freshAddresses": [ + { + "address": "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad", + "derivationPath": "44'/60'/1'/0/0" + } + ], + "blockHeight": 6030191, + "syncHash": "0x31559fa0", + "creationDate": "2024-05-15T15:24:36.000Z", + "operationsCount": 21, + "operations": [ + { + "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xc4183a9c8df2df06ac873c5b9152cf2a7f52eb3c4dab3bdea2e07755b0197f2c-IN", + "hash": "0xc4183a9c8df2df06ac873c5b9152cf2a7f52eb3c4dab3bdea2e07755b0197f2c", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x4b8617ddd53f5def705d0cc0c8df36ebdff860d6c46621cb282ae27838c62d13", + "blockHeight": 5949742, + "extra": {}, + "date": "2024-05-21T19:01:00.000Z", + "value": "10000000000000", + "fee": "117410501733000", + "transactionSequenceNumber": 20, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xb0b09a52756fd7bf2f3fefd2fbb0cf5d1af93b3e07502d41fdfbdc45b52805b3-IN", + "hash": "0xb0b09a52756fd7bf2f3fefd2fbb0cf5d1af93b3e07502d41fdfbdc45b52805b3", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x9843b0d5c2a88b7d40614c937a28fa19e937fb6ffb111ed36db296b959026042", + "blockHeight": 5948269, + "extra": {}, + "date": "2024-05-21T13:44:00.000Z", + "value": "10000000000000", + "fee": "1379896001232000", + "transactionSequenceNumber": 19, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x62bd7eaee68eed0c39f18f1436864a9a9b48ecc17172e1e5dc7684db8ea6d648-IN", + "hash": "0x62bd7eaee68eed0c39f18f1436864a9a9b48ecc17172e1e5dc7684db8ea6d648", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x0210f8119a81f511aa072d8bd0bd23ec991c89f9e59f4e5f37a8cf6be383f849", + "blockHeight": 5948085, + "extra": {}, + "date": "2024-05-21T13:04:48.000Z", + "value": "10000000000000", + "fee": "871999888452000", + "transactionSequenceNumber": 18, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xf7ce5e98d7c7417a70c8c4164dc80b09d016bc86302f5a083f6a4573329bbf34-IN", + "hash": "0xf7ce5e98d7c7417a70c8c4164dc80b09d016bc86302f5a083f6a4573329bbf34", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0xd65c9591c37d17d711595ea36c3b249d6a5f31427761ac7c92b2fa7228b080e7", + "blockHeight": 5947702, + "extra": {}, + "date": "2024-05-21T11:43:12.000Z", + "value": "10000000000000", + "fee": "655535357001000", + "transactionSequenceNumber": 17, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x8c27f673e9442dc56c667997da3b1f56ca3523d256b8b4dca975352857c4e34d-IN", + "hash": "0x8c27f673e9442dc56c667997da3b1f56ca3523d256b8b4dca975352857c4e34d", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0xede29aa5658064b564348e11f23b8d074df16c6d5055c8979e4ae9f73806bca1", + "blockHeight": 5947337, + "extra": {}, + "date": "2024-05-21T10:23:36.000Z", + "value": "10000000000000", + "fee": "1808833984419000", + "transactionSequenceNumber": 16, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x9def1ab1895552c99022a16c19828726298a0bf2f8ec348e2af72929d2ba52a3-IN", + "hash": "0x9def1ab1895552c99022a16c19828726298a0bf2f8ec348e2af72929d2ba52a3", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x21b63c6698aee8c9e6ce8703a2fcb7a472c53eca377466a3001caeeff9302b62", + "blockHeight": 5921624, + "extra": {}, + "date": "2024-05-17T14:07:24.000Z", + "value": "10000000000000", + "fee": "2247613745454000", + "transactionSequenceNumber": 15, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xd884ab4034e25bdd50fb159ab9bf78a0242d839e7c99ba2cec27e738959631eb-IN", + "hash": "0xd884ab4034e25bdd50fb159ab9bf78a0242d839e7c99ba2cec27e738959631eb", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0xf6d7c8399b1354e001c7f92783cb905c10a05829b1b0a0b6c673a77c7be1be49", + "blockHeight": 5921300, + "extra": {}, + "date": "2024-05-17T12:55:48.000Z", + "value": "10000000000000", + "fee": "2629999659021000", + "transactionSequenceNumber": 14, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x7e0481c353102e9d1dda32a00190e9c28c953e1d4cd133421428758653542caf-IN", + "hash": "0x7e0481c353102e9d1dda32a00190e9c28c953e1d4cd133421428758653542caf", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x4065987c7141ed76a5061ba839df3d0ccb8561c82f106899840f25825c90c433", + "blockHeight": 5921246, + "extra": {}, + "date": "2024-05-17T12:43:24.000Z", + "value": "10000000000000", + "fee": "1981400672580000", + "transactionSequenceNumber": 13, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x3f9e1a9f133ba3ba15d92e49bfc77bc16255422953db2bcacde74a51bd125736-IN", + "hash": "0x3f9e1a9f133ba3ba15d92e49bfc77bc16255422953db2bcacde74a51bd125736", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x7ee06a31ef76d337a2badeab0b2cf525b13e6ce9de7b08353a7f954048b0da49", + "blockHeight": 5921240, + "extra": {}, + "date": "2024-05-17T12:42:12.000Z", + "value": "10000000000000", + "fee": "2075203812906000", + "transactionSequenceNumber": 12, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xf7498ff0092fed2e7f31650115b9eb98247b78479b3360352254f13e56d77932-IN", + "hash": "0xf7498ff0092fed2e7f31650115b9eb98247b78479b3360352254f13e56d77932", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0xf156feb9590b652011f363c906754ae23efe2d6fc0386bf0fd5d6cb8a5176ebc", + "blockHeight": 5921010, + "extra": {}, + "date": "2024-05-17T11:50:48.000Z", + "value": "10000000000000", + "fee": "1771720622511000", + "transactionSequenceNumber": 11, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xcb1270749d8dcc53042c0e9dc551a3dacd5dcf6335f0f94bf6b8568df5424108-IN", + "hash": "0xcb1270749d8dcc53042c0e9dc551a3dacd5dcf6335f0f94bf6b8568df5424108", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x342a2b20eb330632b0ac502df8b370d2c8dc2f5d85eaf0556e53dcabbf4688e4", + "blockHeight": 5915303, + "extra": {}, + "date": "2024-05-16T15:06:24.000Z", + "value": "10000000000000", + "fee": "2581972340577000", + "transactionSequenceNumber": 10, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xe41e1b42e37784e9c1041f9e040256c2b093e5e9d821feee43fb53d94cda16eb-IN", + "hash": "0xe41e1b42e37784e9c1041f9e040256c2b093e5e9d821feee43fb53d94cda16eb", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x5a8bcf8fc598121413a3e113bca19eb6bac585455683c1b5f34d62abf20b86f4", + "blockHeight": 5915290, + "extra": {}, + "date": "2024-05-16T15:03:12.000Z", + "value": "10000000000000", + "fee": "2823382120629000", + "transactionSequenceNumber": 9, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xf0113a90212d31d5be0d31464db6d570909ac9950f76f9f421547a75cb5567e8-IN", + "hash": "0xf0113a90212d31d5be0d31464db6d570909ac9950f76f9f421547a75cb5567e8", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0xe833d2ace5e115a20ad913f67dbb1092c04718763806da71ac959b9a8cc72302", + "blockHeight": 5914498, + "extra": {}, + "date": "2024-05-16T12:14:12.000Z", + "value": "10000000000000", + "fee": "844959726219000", + "transactionSequenceNumber": 8, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x0aa844cd6ebeedb3bd996c94ea35431c38f527148de7ca94a7395485c72dcde4-IN", + "hash": "0x0aa844cd6ebeedb3bd996c94ea35431c38f527148de7ca94a7395485c72dcde4", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0xa7bb92e4eefc54d883126bc15aa45037e4dc3151d0f3e6962c6d6d43b6fb4189", + "blockHeight": 5913917, + "extra": {}, + "date": "2024-05-16T10:09:24.000Z", + "value": "10000000000000", + "fee": "2024616680037000", + "transactionSequenceNumber": 7, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x0cd3d38cef087638574f62c4d61e67e6f6d5abb1bc788a9a82784b261672d343-IN", + "hash": "0x0cd3d38cef087638574f62c4d61e67e6f6d5abb1bc788a9a82784b261672d343", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0xeedfc9598e63b1b065702b8dbc2ee252f0219acb4ff8a42c1b68c074ea6dfff6", + "blockHeight": 5913862, + "extra": {}, + "date": "2024-05-16T09:58:00.000Z", + "value": "10000000000000", + "fee": "2383188724623000", + "transactionSequenceNumber": 6, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x21f254ba3ff939e27b34fca419f7afc86770c1b6bcb06214980e127a64fc3547-IN", + "hash": "0x21f254ba3ff939e27b34fca419f7afc86770c1b6bcb06214980e127a64fc3547", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x05e9ba2ba126f17436db61dc18d6545d95334863101015063776a62b1be33464", + "blockHeight": 5913823, + "extra": {}, + "date": "2024-05-16T09:49:48.000Z", + "value": "10000000000000", + "fee": "2530133356044000", + "transactionSequenceNumber": 5, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x3f0a86a9c91910aea23873969845bbd88188d16c8ee4e0fef787ddfff5f15031-IN", + "hash": "0x3f0a86a9c91910aea23873969845bbd88188d16c8ee4e0fef787ddfff5f15031", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x7d1bb861917221312002aa991561a0b7509a7d2d98e0d3d6c9b07972192bff59", + "blockHeight": 5913813, + "extra": {}, + "date": "2024-05-16T09:47:48.000Z", + "value": "10000000000000", + "fee": "2176992101025000", + "transactionSequenceNumber": 4, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xc67a038db532d77d3c5ec6fda74bd4bfcbf4077d35b7105d3e790b2ff89c0b3a-IN", + "hash": "0xc67a038db532d77d3c5ec6fda74bd4bfcbf4077d35b7105d3e790b2ff89c0b3a", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x58d3e6c8ea6221417bfe9c51008bca89aa672fdc8e9321ee9d26a3d85fcba531", + "blockHeight": 5913205, + "extra": {}, + "date": "2024-05-16T07:38:24.000Z", + "value": "10000000000000", + "fee": "2852901884553000", + "transactionSequenceNumber": 3, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x536e78db72060830930dd0fe1fe4a86eeb31ae4f6db4b76b407627f094ed9439-IN", + "hash": "0x536e78db72060830930dd0fe1fe4a86eeb31ae4f6db4b76b407627f094ed9439", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0xef17ba249574adc4bf07e1da5e0b89dd2e131786ae12460f65d8c8fc17f4bc4e", + "blockHeight": 5908643, + "extra": {}, + "date": "2024-05-15T15:27:00.000Z", + "value": "10000000000000", + "fee": "1233027266919000", + "transactionSequenceNumber": 2, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xc484624fcb7eb247fb60126670f8a77d8a798638c3044a090ae7caa9df2fa981-IN", + "hash": "0xc484624fcb7eb247fb60126670f8a77d8a798638c3044a090ae7caa9df2fa981", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x2caea8c7fce9229f084d4526eeec8fe961e6165bf9d2169fcd5a47cf958b98c3", + "blockHeight": 5908633, + "extra": {}, + "date": "2024-05-15T15:25:00.000Z", + "value": "10000000000000", + "fee": "1355608558080000", + "transactionSequenceNumber": 1, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x4e922150f45253718fcae9ac728c707c3f74f47a2f189e076d13dc93095e11eb-IN", + "hash": "0x4e922150f45253718fcae9ac728c707c3f74f47a2f189e076d13dc93095e11eb", + "type": "IN", + "senders": [ + "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" + ], + "recipients": [ + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" + ], + "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x6e8a898ca5d18ea04710c13d9bbb442f7bdfce55b4a36bcd9b0135d658991446", + "blockHeight": 5908631, + "extra": {}, + "date": "2024-05-15T15:24:36.000Z", + "value": "10000000000000", + "fee": "1359743785953000", + "transactionSequenceNumber": 0, + "hasFailed": false, + "internalOperations": [] + } + ], + "pendingOperations": [], + "currencyId": "ethereum_sepolia", + "unitMagnitude": 18, + "lastSyncDate": "2024-06-03T07:55:38.034Z", + "balance": "210000000000000", + "spendableBalance": "210000000000000", + "nfts": [], + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000 + ], + "latestDate": 1717398000000 + }, + "DAY": { + "balances": [ + 0, + 30000000000000, + 110000000000000, + 160000000000000, + 160000000000000, + 160000000000000, + 160000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000, + 210000000000000 + ], + "latestDate": 1717365600000 + }, + "WEEK": { + "balances": [ + 0, + 160000000000000, + 210000000000000, + 210000000000000 + ], + "latestDate": 1717279200000 + } + }, + "subAccounts": [], + "swapHistory": [] + }, + "version": 1 + }, + { + "data": { + "id": "js:2:polkadot:15NKsw4AoSEgBJ5NpHDkAjUmqLRfeSuqZBzZXH9uRg6MWbo3:polkadotbip44", + "seedIdentifier": "b4907b59e3a66bd7cf5c6d69a34a378b268531a08035f95e7f1b388f351e9f40", + "name": "Polkadot 1", + "starred": false, + "used": true, + "derivationMode": "polkadotbip44", + "index": 0, + "freshAddress": "15NKsw4AoSEgBJ5NpHDkAjUmqLRfeSuqZBzZXH9uRg6MWbo3", + "freshAddressPath": "44'/354'/0'/0'/0'", + "freshAddresses": [ + { + "address": "15NKsw4AoSEgBJ5NpHDkAjUmqLRfeSuqZBzZXH9uRg6MWbo3", + "derivationPath": "44'/354'/0'/0'/0'" + } + ], + "blockHeight": 21053069, + "creationDate": "2024-04-18T14:10:42.000Z", + "operationsCount": 2, + "operations": [ + { + "id": "js:2:polkadot:15NKsw4AoSEgBJ5NpHDkAjUmqLRfeSuqZBzZXH9uRg6MWbo3:polkadotbip44-0x016ec2a62549620b15ef7be6f24b4cbcbe16d595358df5a745778e5417f19861-OUT", + "hash": "0x016ec2a62549620b15ef7be6f24b4cbcbe16d595358df5a745778e5417f19861", + "type": "OUT", + "senders": [ + "15NKsw4AoSEgBJ5NpHDkAjUmqLRfeSuqZBzZXH9uRg6MWbo3" + ], + "recipients": [ + "12fY9vqzD8j1uvqSRx9y3gXRA1S3bwr5xunBVZvx1eeZFaHY" + ], + "accountId": "js:2:polkadot:15NKsw4AoSEgBJ5NpHDkAjUmqLRfeSuqZBzZXH9uRg6MWbo3:polkadotbip44", + "blockHash": null, + "blockHeight": 20552561, + "extra": { + "palletMethod": "balances.transferKeepAlive", + "transferAmount": "10000000000" + }, + "date": "2024-04-29T09:04:42.000Z", + "value": "10157107779", + "fee": "157107779", + "transactionSequenceNumber": 0, + "hasFailed": false + }, + { + "id": "js:2:polkadot:15NKsw4AoSEgBJ5NpHDkAjUmqLRfeSuqZBzZXH9uRg6MWbo3:polkadotbip44-0x08efc6e41ab383890ebc762f1c970d39e395f2fb9f8298058e7c247f45995fa3-IN", + "hash": "0x08efc6e41ab383890ebc762f1c970d39e395f2fb9f8298058e7c247f45995fa3", + "type": "IN", + "senders": [ + "12NMUbX5aoHg4apc2XNoR4qe6bTWpuLg4e1zC2g7Lqe6GtFe" + ], + "recipients": [ + "15NKsw4AoSEgBJ5NpHDkAjUmqLRfeSuqZBzZXH9uRg6MWbo3" + ], + "accountId": "js:2:polkadot:15NKsw4AoSEgBJ5NpHDkAjUmqLRfeSuqZBzZXH9uRg6MWbo3:polkadotbip44", + "blockHash": null, + "blockHeight": 20397729, + "extra": { + "palletMethod": "balances.transferKeepAlive", + "transferAmount": "30000000000" + }, + "date": "2024-04-18T14:10:42.000Z", + "value": "30000000000", + "fee": "157099813", + "hasFailed": false + } + ], + "pendingOperations": [], + "currencyId": "polkadot", + "unitMagnitude": 10, + "lastSyncDate": "2024-06-03T07:55:38.370Z", + "balance": "19842892221", + "spendableBalance": "19842892221", + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221 + ], + "latestDate": 1717398000000 + }, + "DAY": { + "balances": [ + 0, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 30000000000, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221 + ], + "latestDate": 1717365600000 + }, + "WEEK": { + "balances": [ + 0, + 30000000000, + 30000000000, + 19842892221, + 19842892221, + 19842892221, + 19842892221, + 19842892221 + ], + "latestDate": 1717279200000 + } + }, + "polkadotResources": { + "controller": null, + "stash": null, + "nonce": 1, + "lockedBalance": "0", + "unlockedBalance": "0", + "unlockingBalance": "0", + "unlockings": [], + "nominations": [] + }, + "swapHistory": [] + }, + "version": 1 + }, + { + "data": { + "id": "js:2:polkadot:12fY9vqzD8j1uvqSRx9y3gXRA1S3bwr5xunBVZvx1eeZFaHY:polkadotbip44", + "seedIdentifier": "b4907b59e3a66bd7cf5c6d69a34a378b268531a08035f95e7f1b388f351e9f40", + "name": "Polkadot 2", + "starred": false, + "used": true, + "derivationMode": "polkadotbip44", + "index": 1, + "freshAddress": "12fY9vqzD8j1uvqSRx9y3gXRA1S3bwr5xunBVZvx1eeZFaHY", + "freshAddressPath": "44'/354'/1'/0'/0'", + "freshAddresses": [ + { + "address": "12fY9vqzD8j1uvqSRx9y3gXRA1S3bwr5xunBVZvx1eeZFaHY", + "derivationPath": "44'/354'/1'/0'/0'" + } + ], + "blockHeight": 21053069, + "creationDate": "2024-04-29T09:04:42.000Z", + "operationsCount": 1, + "operations": [ + { + "id": "js:2:polkadot:12fY9vqzD8j1uvqSRx9y3gXRA1S3bwr5xunBVZvx1eeZFaHY:polkadotbip44-0x016ec2a62549620b15ef7be6f24b4cbcbe16d595358df5a745778e5417f19861-IN", + "hash": "0x016ec2a62549620b15ef7be6f24b4cbcbe16d595358df5a745778e5417f19861", + "type": "IN", + "senders": [ + "15NKsw4AoSEgBJ5NpHDkAjUmqLRfeSuqZBzZXH9uRg6MWbo3" + ], + "recipients": [ + "12fY9vqzD8j1uvqSRx9y3gXRA1S3bwr5xunBVZvx1eeZFaHY" + ], + "accountId": "js:2:polkadot:12fY9vqzD8j1uvqSRx9y3gXRA1S3bwr5xunBVZvx1eeZFaHY:polkadotbip44", + "blockHash": null, + "blockHeight": 20552561, + "extra": { + "palletMethod": "balances.transferKeepAlive", + "transferAmount": "10000000000" + }, + "date": "2024-04-29T09:04:42.000Z", + "value": "10000000000", + "fee": "157107779", + "hasFailed": false + } + ], + "pendingOperations": [], + "currencyId": "polkadot", + "unitMagnitude": 10, + "lastSyncDate": "2024-06-03T07:55:39.440Z", + "balance": "10000000000", + "spendableBalance": "10000000000", + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000 + ], + "latestDate": 1717398000000 + }, + "DAY": { + "balances": [ + 0, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000 + ], + "latestDate": 1717365600000 + }, + "WEEK": { + "balances": [ + 0, + 10000000000, + 10000000000, + 10000000000, + 10000000000, + 10000000000 + ], + "latestDate": 1717279200000 + } + }, + "polkadotResources": { + "controller": null, + "stash": null, + "nonce": 0, + "lockedBalance": "0", + "unlockedBalance": "0", + "unlockingBalance": "0", + "unlockings": [], + "nominations": [] + }, + "swapHistory": [] + }, + "version": 1 + }, + { + "data": { + "id": "js:2:solana:HxoKQ5eu5MkqaAw7DaGVermrJqeNH8XkVnEKEpFuS9id:solanaSub", + "seedIdentifier": "FBT68jpHyemZY4QvcC7fKZUvbCRNcLQfBDME7Zqdza2R", + "name": "Solana 1", + "starred": false, + "used": true, + "derivationMode": "solanaSub", + "index": 0, + "freshAddress": "HxoKQ5eu5MkqaAw7DaGVermrJqeNH8XkVnEKEpFuS9id", + "freshAddressPath": "44'/501'/0'", + "freshAddresses": [ + { + "address": "HxoKQ5eu5MkqaAw7DaGVermrJqeNH8XkVnEKEpFuS9id", + "derivationPath": "44'/501'/0'" + } + ], + "blockHeight": 269596248, + "creationDate": "2024-04-18T13:21:57.000Z", + "operationsCount": 1, + "operations": [ + { + "id": "js:2:solana:HxoKQ5eu5MkqaAw7DaGVermrJqeNH8XkVnEKEpFuS9id:solanaSub-45wpnHxgDNqJ5o566oJmQjgizwPu5Vtyn1YTx3jadZFvR6DD1tGPCs35A1K7CwDbZmjayhzt7bToCMViVVtbrkBK-IN", + "hash": "45wpnHxgDNqJ5o566oJmQjgizwPu5Vtyn1YTx3jadZFvR6DD1tGPCs35A1K7CwDbZmjayhzt7bToCMViVVtbrkBK", + "type": "IN", + "senders": [ + "AH727xqoLjwUjj9xcUCmHfw2MDU6mvfc9mLCdX21pRq3" + ], + "recipients": [ + "HxoKQ5eu5MkqaAw7DaGVermrJqeNH8XkVnEKEpFuS9id" + ], + "accountId": "js:2:solana:HxoKQ5eu5MkqaAw7DaGVermrJqeNH8XkVnEKEpFuS9id:solanaSub", + "blockHash": "GwoMfGmDH4qA6zfi6vSocvZgRWe9G6PmdxaGAZkpVqcs", + "blockHeight": 260858101, + "extra": {}, + "date": "2024-04-18T13:21:57.000Z", + "value": "20000000", + "fee": "0", + "transactionSequenceNumber": 1, + "hasFailed": false + } + ], + "pendingOperations": [], + "currencyId": "solana", + "unitMagnitude": 9, + "lastSyncDate": "2024-06-03T07:56:00.519Z", + "balance": "20000000", + "spendableBalance": "19109120", + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000 + ], + "latestDate": 1717398000000 + }, + "DAY": { + "balances": [ + 0, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000 + ], + "latestDate": 1717365600000 + }, + "WEEK": { + "balances": [ + 0, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000, + 20000000 + ], + "latestDate": 1717279200000 + } + }, + "solanaResources": { + "stakes": "[]", + "unstakeReserve": "0" + }, + "swapHistory": [] + }, + "version": 1 + }, + { + "data": { + "id": "js:2:stellar:GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX:sep5", + "seedIdentifier": "8068e7f700712bd7e279645b411457ae5b90417d9fa919957074a2d9bfc33931", + "name": "Stellar 1", + "starred": false, + "used": true, + "derivationMode": "sep5", + "index": 0, + "freshAddress": "GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX", + "freshAddressPath": "44'/148'/0'", + "freshAddresses": [ + { + "address": "GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX", + "derivationPath": "44'/148'/0'" + } + ], + "blockHeight": 222844270778777600, + "creationDate": "2024-05-29T13:26:24.000Z", + "operationsCount": 2, + "operations": [ + { + "id": "js:2:stellar:GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX:sep5-e97d376c55cdbe7098d9508e4cc23e74e3cbf5807c64a05d9efa4ddbfa7f007f-OUT", + "hash": "e97d376c55cdbe7098d9508e4cc23e74e3cbf5807c64a05d9efa4ddbfa7f007f", + "type": "OUT", + "senders": [ + "GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX" + ], + "recipients": [ + "GCTGRCFN7AT6NW4DZVI4QN55BRNQA64TXEZSMYPE7BNUZMLMVISXT652" + ], + "accountId": "js:2:stellar:GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX:sep5", + "blockHash": null, + "blockHeight": 51899330, + "extra": { + "ledgerOpType": "OUT", + "pagingToken": "222905925035008001" + }, + "date": "2024-05-30T12:59:08.000Z", + "value": "10000100", + "fee": "100", + "transactionSequenceNumber": 222844270778777600, + "hasFailed": false + }, + { + "id": "js:2:stellar:GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX:sep5-850e33a07e3dd9c290b51b380c27a38cf0e7680fe7236fdadef531796d9f7cde-IN", + "hash": "850e33a07e3dd9c290b51b380c27a38cf0e7680fe7236fdadef531796d9f7cde", + "type": "IN", + "senders": [ + "GD5NP74FP22VVRVPUFWONJVXTMK64R4Y6EEJZYW6JNKDTPK4TR6HR6OT" + ], + "recipients": [ + "GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX" + ], + "accountId": "js:2:stellar:GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX:sep5", + "blockHash": null, + "blockHeight": 51884975, + "extra": { + "ledgerOpType": "IN", + "pagingToken": "222844270779109377" + }, + "date": "2024-05-29T13:26:24.000Z", + "value": "2673609798", + "fee": "100", + "transactionSequenceNumber": 86597041882574850, + "hasFailed": false + } + ], + "pendingOperations": [], + "currencyId": "stellar", + "unitMagnitude": 7, + "lastSyncDate": "2024-06-03T07:55:39.233Z", + "balance": "2663609698", + "spendableBalance": "2653609598", + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 0, + 2673609798, + 2673609798, + 2673609798, + 2673609798, + 2673609798, + 2673609798, + 2673609798, + 2673609798, + 2673609798, + 2673609798, + 2673609798, + 2673609798, + 2673609798, + 2673609798, + 2673609798, + 2673609798, + 2673609798, + 2673609798, + 2673609798, + 2673609798, + 2673609798, + 2673609798, + 2673609798, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698, + 2663609698 + ], + "latestDate": 1717398000000 + }, + "DAY": { + "balances": [ + 0, + 2673609798, + 2663609698, + 2663609698, + 2663609698, + 2663609698 + ], + "latestDate": 1717365600000 + }, + "WEEK": { + "balances": [ + 0, + 2663609698 + ], + "latestDate": 1717279200000 + } + }, + "subAccounts": [], + "swapHistory": [] + }, + "version": 1 + }, + { + "data": { + "id": "js:2:stellar:GCTGRCFN7AT6NW4DZVI4QN55BRNQA64TXEZSMYPE7BNUZMLMVISXT652:sep5", + "seedIdentifier": "8068e7f700712bd7e279645b411457ae5b90417d9fa919957074a2d9bfc33931", + "name": "Stellar 2", + "starred": false, + "used": true, + "derivationMode": "sep5", + "index": 1, + "freshAddress": "GCTGRCFN7AT6NW4DZVI4QN55BRNQA64TXEZSMYPE7BNUZMLMVISXT652", + "freshAddressPath": "44'/148'/1'", + "freshAddresses": [ + { + "address": "GCTGRCFN7AT6NW4DZVI4QN55BRNQA64TXEZSMYPE7BNUZMLMVISXT652", + "derivationPath": "44'/148'/1'" + } + ], + "blockHeight": 222905925034311680, + "creationDate": "2024-05-30T12:59:08.000Z", + "operationsCount": 1, + "operations": [ + { + "id": "js:2:stellar:GCTGRCFN7AT6NW4DZVI4QN55BRNQA64TXEZSMYPE7BNUZMLMVISXT652:sep5-e97d376c55cdbe7098d9508e4cc23e74e3cbf5807c64a05d9efa4ddbfa7f007f-IN", + "hash": "e97d376c55cdbe7098d9508e4cc23e74e3cbf5807c64a05d9efa4ddbfa7f007f", + "type": "IN", + "senders": [ + "GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX" + ], + "recipients": [ + "GCTGRCFN7AT6NW4DZVI4QN55BRNQA64TXEZSMYPE7BNUZMLMVISXT652" + ], + "accountId": "js:2:stellar:GCTGRCFN7AT6NW4DZVI4QN55BRNQA64TXEZSMYPE7BNUZMLMVISXT652:sep5", + "blockHash": null, + "blockHeight": 51899330, + "extra": { + "ledgerOpType": "IN", + "pagingToken": "222905925035008001" + }, + "date": "2024-05-30T12:59:08.000Z", + "value": "10000000", + "fee": "100", + "transactionSequenceNumber": 222844270778777600, + "hasFailed": false + } + ], + "pendingOperations": [], + "currencyId": "stellar", + "unitMagnitude": 7, + "lastSyncDate": "2024-06-03T07:55:37.719Z", + "balance": "10000000", + "spendableBalance": "0", + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 0, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000, + 10000000 + ], + "latestDate": 1717398000000 + }, + "DAY": { + "balances": [ + 0, + 10000000, + 10000000, + 10000000, + 10000000 + ], + "latestDate": 1717365600000 + }, + "WEEK": { + "balances": [ + 0, + 10000000 + ], + "latestDate": 1717279200000 + } + }, + "subAccounts": [], + "swapHistory": [] + }, + "version": 1 + }, + { + "data": { + "id": "js:2:tezos:02d4a3fb02af1174ca104cea770ea4fa6c35db124dbb815fb3896f69e09b680dbb:tezbox", + "seedIdentifier": "024b01c2c3eaa4d2ccaa893f06a9bcade1c85b3a92478e374c4cd6551e56418917", + "name": "Tezos 1", + "starred": false, + "used": true, + "derivationMode": "tezbox", + "index": 0, + "freshAddress": "tz1UD2zz5eFTW2Jy26kBnC3ZkdeazUgeFWST", + "freshAddressPath": "44'/1729'/0'/0'", + "freshAddresses": [ + { + "address": "tz1UD2zz5eFTW2Jy26kBnC3ZkdeazUgeFWST", + "derivationPath": "44'/1729'/0'/0'" + } + ], + "blockHeight": 5717319, + "creationDate": "2024-05-29T14:48:36.000Z", + "operationsCount": 1, + "operations": [ + { + "id": "js:2:tezos:02d4a3fb02af1174ca104cea770ea4fa6c35db124dbb815fb3896f69e09b680dbb:tezbox-oodtmZdRakkaHDuefFEbCtYBQRhX5RSjANSUMdaFNUVjbKFjFjD-IN", + "hash": "oodtmZdRakkaHDuefFEbCtYBQRhX5RSjANSUMdaFNUVjbKFjFjD", + "type": "IN", + "senders": [ + "tz1bAjg8KhBjzRMuPbdLfC4EvETmdsuruynm" + ], + "recipients": [ + "tz1UD2zz5eFTW2Jy26kBnC3ZkdeazUgeFWST" + ], + "accountId": "js:2:tezos:02d4a3fb02af1174ca104cea770ea4fa6c35db124dbb815fb3896f69e09b680dbb:tezbox", + "blockHash": "BLr5rkBixbXPryNzcQDHCP56gCzuN3CdjbTLJphLiaUugkvSK1w", + "blockHeight": 5690463, + "extra": { + "id": 1116960964214784 + }, + "date": "2024-05-29T14:48:36.000Z", + "value": "12788701", + "fee": "69250", + "hasFailed": false + } + ], + "pendingOperations": [], + "currencyId": "tezos", + "unitMagnitude": 6, + "lastSyncDate": "2024-06-03T07:55:38.907Z", + "balance": "12788701", + "spendableBalance": "12788701", + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 0, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701 + ], + "latestDate": 1717398000000 + }, + "DAY": { + "balances": [ + 0, + 12788701, + 12788701, + 12788701, + 12788701, + 12788701 + ], + "latestDate": 1717365600000 + }, + "WEEK": { + "balances": [ + 0, + 12788701 + ], + "latestDate": 1717279200000 + } + }, + "xpub": "02d4a3fb02af1174ca104cea770ea4fa6c35db124dbb815fb3896f69e09b680dbb", + "subAccounts": [], + "tezosResources": { + "revealed": false, + "counter": 137511385 + }, + "swapHistory": [] + }, + "version": 1 + }, + { + "data": { + "id": "js:2:tron:TDUKFB9wj3P5f2iNvkRuaDDeWVkTdUVhs1:", + "seedIdentifier": "04c53a26b402bfc99b4d0560e874c2486d3f5d1a61a35f0ba44e9eabe11fe185ed718721b50ff43a1df0605f9d7c808ba59c10000276c8047b60627ae5bdbb652f", + "name": "Tron 1", + "starred": false, + "used": true, + "derivationMode": "", + "index": 0, + "freshAddress": "TDUKFB9wj3P5f2iNvkRuaDDeWVkTdUVhs1", + "freshAddressPath": "44'/195'/0'/0/0", + "freshAddresses": [ + { + "address": "TDUKFB9wj3P5f2iNvkRuaDDeWVkTdUVhs1", + "derivationPath": "44'/195'/0'/0/0" + } + ], + "blockHeight": 62252566, + "creationDate": "2024-04-18T14:14:45.000Z", + "operationsCount": 1, + "operations": [ + { + "id": "js:2:tron:TDUKFB9wj3P5f2iNvkRuaDDeWVkTdUVhs1:-5ace0bcd63b95b4e7d5e60981ddb5901e68673896b0ddbf264b4df7e0c9fbc14-IN", + "hash": "5ace0bcd63b95b4e7d5e60981ddb5901e68673896b0ddbf264b4df7e0c9fbc14", + "type": "IN", + "senders": [ + "TH4RZibHXTi4EjZEVbPYVhSmB6GCHAmRcn" + ], + "recipients": [ + "TDUKFB9wj3P5f2iNvkRuaDDeWVkTdUVhs1" + ], + "accountId": "js:2:tron:TDUKFB9wj3P5f2iNvkRuaDDeWVkTdUVhs1:", + "blockHash": null, + "blockHeight": 60935756, + "extra": {}, + "date": "2024-04-18T14:14:45.000Z", + "value": "2000000", + "fee": "1000000", + "hasFailed": false + } + ], + "pendingOperations": [], + "currencyId": "tron", + "unitMagnitude": 6, + "lastSyncDate": "2024-06-03T07:55:38.667Z", + "balance": "2000000", + "spendableBalance": "2000000", + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000 + ], + "latestDate": 1717398000000 + }, + "DAY": { + "balances": [ + 0, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000 + ], + "latestDate": 1717365600000 + }, + "WEEK": { + "balances": [ + 0, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000, + 2000000 + ], + "latestDate": 1717279200000 + } + }, + "subAccounts": [], + "tronResources": { + "frozen": {}, + "delegatedFrozen": {}, + "unFrozen": { + "bandwidth": [], + "energy": [] + }, + "legacyFrozen": {}, + "votes": [], + "tronPower": 0, + "energy": "0", + "bandwidth": { + "freeUsed": "0", + "freeLimit": "600", + "gainedUsed": "0", + "gainedLimit": "0" + }, + "unwithdrawnReward": "0", + "cacheTransactionInfoById": {} + }, + "swapHistory": [] + }, + "version": 1 + }, + { + "data": { + "id": "js:2:ripple:rhQvt8XfAGn1hVVtMUmdGKBUdnKzi2oimV:", + "seedIdentifier": "020ad7121c0dcdc1a6b44c0beb2e02fdf0a4b94e9abff1665aa893fa5b5f41ba7b", + "name": "XRP 1", + "starred": false, + "used": true, + "derivationMode": "", + "index": 0, + "freshAddress": "rhQvt8XfAGn1hVVtMUmdGKBUdnKzi2oimV", + "freshAddressPath": "44'/144'/0'/0/0", + "freshAddresses": [ + { + "address": "rhQvt8XfAGn1hVVtMUmdGKBUdnKzi2oimV", + "derivationPath": "44'/144'/0'/0/0" + } + ], + "blockHeight": 88430146, + "creationDate": "2024-04-19T09:06:50.000Z", + "operationsCount": 3, + "operations": [ + { + "id": "js:2:ripple:rhQvt8XfAGn1hVVtMUmdGKBUdnKzi2oimV:-881D63CBFCE48958A61D34146B390FD2FF3F8A035EC319897873B8BCF0B178A3-IN", + "hash": "881D63CBFCE48958A61D34146B390FD2FF3F8A035EC319897873B8BCF0B178A3", + "type": "IN", + "senders": [ + "rfc4tdZbtrWWsgjYm3WSNbUXh2asz4fTE7" + ], + "recipients": [ + "rhQvt8XfAGn1hVVtMUmdGKBUdnKzi2oimV" + ], + "accountId": "js:2:ripple:rhQvt8XfAGn1hVVtMUmdGKBUdnKzi2oimV:", + "blockHash": null, + "blockHeight": 87959999, + "extra": {}, + "date": "2024-05-13T12:43:02.000Z", + "value": "11000000", + "fee": "10", + "transactionSequenceNumber": 69228515 + }, + { + "id": "js:2:ripple:rhQvt8XfAGn1hVVtMUmdGKBUdnKzi2oimV:-B09E847117920D2925F9E3BBD1CAB3F07CBB648B1EC2BAFB6D0387E8A8A5B5B5-IN", + "hash": "B09E847117920D2925F9E3BBD1CAB3F07CBB648B1EC2BAFB6D0387E8A8A5B5B5", + "type": "IN", + "senders": [ + "rp5h17hXqfqBWBbj1zqNdLSPjrEXHzooQ3" + ], + "recipients": [ + "rhQvt8XfAGn1hVVtMUmdGKBUdnKzi2oimV" + ], + "accountId": "js:2:ripple:rhQvt8XfAGn1hVVtMUmdGKBUdnKzi2oimV:", + "blockHash": null, + "blockHeight": 87413700, + "extra": {}, + "date": "2024-04-19T09:22:41.000Z", + "value": "1000000", + "fee": "10", + "transactionSequenceNumber": 68460016 + }, + { + "id": "js:2:ripple:rhQvt8XfAGn1hVVtMUmdGKBUdnKzi2oimV:-BB547E9593D1C2746069A0C780A8B1D6470C48B857814B0E789653E84E785F32-IN", + "hash": "BB547E9593D1C2746069A0C780A8B1D6470C48B857814B0E789653E84E785F32", + "type": "IN", + "senders": [ + "rLZ3yK1PEjBk241Kz1vwDCHECeHQW6iCca" + ], + "recipients": [ + "rhQvt8XfAGn1hVVtMUmdGKBUdnKzi2oimV" + ], + "accountId": "js:2:ripple:rhQvt8XfAGn1hVVtMUmdGKBUdnKzi2oimV:", + "blockHash": null, + "blockHeight": 87413452, + "extra": {}, + "date": "2024-04-19T09:06:50.000Z", + "value": "10000000", + "fee": "10", + "transactionSequenceNumber": 80013996 + } + ], + "pendingOperations": [], + "currencyId": "ripple", + "unitMagnitude": 6, + "lastSyncDate": "2024-06-03T07:55:39.074Z", + "balance": "22000000", + "spendableBalance": "22000000", + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000 + ], + "latestDate": 1717398000000 + }, + "DAY": { + "balances": [ + 0, + 11000000, + 11000000, + 11000000, + 11000000, + 11000000, + 11000000, + 11000000, + 11000000, + 11000000, + 11000000, + 11000000, + 11000000, + 11000000, + 11000000, + 11000000, + 11000000, + 11000000, + 11000000, + 11000000, + 11000000, + 11000000, + 11000000, + 11000000, + 11000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000, + 22000000 + ], + "latestDate": 1717365600000 + }, + "WEEK": { + "balances": [ + 0, + 11000000, + 11000000, + 11000000, + 11000000, + 22000000, + 22000000, + 22000000 + ], + "latestDate": 1717279200000 + } + }, + "xpub": "rhQvt8XfAGn1hVVtMUmdGKBUdnKzi2oimV", + "swapHistory": [] + }, + "version": 1 + } + ], + "postOnboarding": { + "deviceModelId": "stax", + "walletEntryPointDismissed": true, + "actionsToComplete": [ + "customImage", + "assetsTransfer", + "buyCrypto" + ], + "actionsCompleted": { + "customImage": false, + "assetsTransfer": true, + "buyCrypto": false + }, + "lastActionCompleted": "assetsTransfer", + "postOnboardingInProgress": true + }, + "countervalues": { + "USD bitcoin": { + "2023-07-27": 29378.704401853607, + "2023-07-10": 30257.429159126357, + "2023-08-20": 26122.52806509709, + "2024-02-23": 51053.27128889675, + "2024-04-05": 67621.46443867912, + "2023-12-19": 42757.46687496334, + "2023-08-06": 29036.471357048133, + "2023-12-02": 38791.97839203901, + "2023-10-12": 26749.392643962048, + "2023-10-31": 34393.93460083904, + "2023-08-29": 27378.20122744577, + "2023-06-20": 27002.024805069796, + "2023-09-09": 25865.94071436785, + "2023-06-26": 30274.012707823025, + "2023-04-13": 30253.2149300267, + "2023-07-30": 29305.560782834422, + "2023-05-03": 28531.609713220027, + "2023-10-23": 30781.825336393693, + "2023-10-01": 27137.104783461087, + "2024-03-07": 66893.84979436362, + "2023-07-05": 30490.290745915514, + "2023-07-29": 29321.09718213335, + "2024-01-08": 44947.317643188275, + "2023-05-29": 27897.949450875556, + "2023-10-07": 27942.750995253005, + "2023-09-26": 26232.49443323313, + "2023-08-24": 26355.478572590902, + "2023-12-05": 41914.90021736014, + "2023-05-10": 27695.968035497357, + "2024-02-19": 52134.55780719727, + "2024-01-07": 44074.04990289103, + "2023-10-18": 28372.68771434352, + "2023-04-25": 27408.981742837852, + "2023-07-31": 29359.156087290547, + "2023-05-23": 27279.27958228702, + "2023-08-25": 26038.442067537973, + "2024-03-09": 68391.59002189423, + "2023-04-11": 30127.074904605928, + "2023-07-12": 30613.20915000407, + "2023-09-05": 25726.363181568806, + "2023-06-07": 26719.357709812786, + "2023-09-16": 26545.885638277225, + "2023-08-12": 29401.014834242964, + "2023-05-09": 27612.57190825657, + "2023-09-01": 25925.21104605787, + "2023-09-08": 25895.832371067772, + "2024-03-22": 64220.37149073208, + "2023-08-10": 29488.202215459318, + "2023-12-07": 43384.491682521075, + "2023-11-18": 36474.90562167226, + "2023-07-13": 30821.187403136086, + "2023-04-30": 29317.0199192014, + "2023-06-06": 25961.056041735497, + "2023-09-13": 26134.920418880796, + "2023-06-17": 26500.52990442901, + "2023-07-17": 30193.35447532144, + "2023-07-07": 30177.391463919615, + "2023-09-07": 25777.898466533734, + "2024-02-12": 48609.552664655064, + "2024-02-22": 51571.208868434405, + "2023-04-09": 28024.076052133874, + "2023-12-30": 42113.345673303804, + "2023-09-17": 26526.93936893538, + "2023-04-20": 28750.247654279137, + "2024-03-26": 70299.7156532476, + "2023-04-27": 29063.601984202756, + "2023-10-26": 34287.065969003525, + "2024-01-03": 42916.148822446965, + "2023-06-01": 26888.769779350954, + "2024-01-22": 40704.05067531131, + "2023-06-12": 25855.23595596562, + "2023-10-03": 27475.091528455472, + "2023-06-19": 26457.330835314195, + "2023-07-09": 30283.462485277825, + "2023-12-24": 43649.4408049822, + "2023-09-24": 26573.233773454307, + "2024-01-16": 42917.71115417804, + "2023-10-17": 28420.695960381006, + "2024-03-18": 67696.9671715468, + "2024-02-17": 51675.38670501949, + "2023-12-27": 42951.77878682418, + "2023-07-23": 29919.198438297262, + "2023-09-03": 25908.952198084553, + "2024-02-24": 51089.37144062903, + "2024-01-06": 43874.52131251262, + "2024-03-20": 63277.919440546866, + "2023-11-21": 37068.57630064784, + "2023-12-25": 43356.46790446727, + "2023-09-22": 26613.536704928632, + "2023-10-02": 28062.606707944913, + "2024-03-27": 69839.48338845135, + "2023-04-28": 29332.896854900628, + "2023-08-04": 29158.24405820749, + "2023-08-30": 27367.71018105677, + "2023-04-24": 27444.199995808496, + "2023-10-06": 27688.82602014459, + "2023-10-13": 26801.280461457252, + "2023-06-28": 30285.573400603538, + "2024-02-05": 42698.45211218899, + "2024-03-01": 61962.39653565559, + "2023-07-15": 30317.254928499282, + "2023-06-25": 30632.069277989263, + "2023-12-10": 43818.69768490122, + "2023-11-23": 37318.27268869931, + "2024-01-13": 42837.540343485096, + "2024-03-28": 70638.50362383049, + "2023-08-05": 29030.6296796751, + "2024-02-09": 47111.58125511074, + "2023-10-09": 27595.273771467233, + "2023-05-24": 26672.648356369715, + "2024-01-09": 46703.36846050171, + "2023-12-08": 43633.58434610037, + "2023-05-27": 26727.0002473767, + "2023-08-18": 26299.452518458103, + "2023-11-05": 35086.96557792642, + "2023-10-22": 29917.88410513727, + "2023-11-01": 34506.0395947739, + "2023-05-07": 28923.91299301425, + "2024-03-12": 71754.90423572819, + "2023-09-11": 25472.992921372686, + "2024-03-03": 62179.73237678886, + "2024-02-04": 42886.33710952941, + "2024-01-28": 42311.67733240931, + "2023-04-18": 30154.701537369227, + "2023-07-06": 30471.909983445516, + "2023-07-01": 30493.981462430624, + "2023-05-18": 27226.783793529175, + "2023-11-07": 34904.62030372793, + "2023-11-25": 37755.508995461874, + "2023-06-04": 27200.515056594402, + "2024-02-25": 51639.07086157019, + "2023-12-01": 38395.574985864165, + "2023-07-14": 31200.886210790308, + "2024-01-26": 41204.427790969086, + "2023-08-03": 29164.66013657939, + "2024-02-28": 59997.06401626484, + "2023-09-15": 26499.28005935883, + "2023-07-18": 29911.604118003503, + "2023-04-21": 28043.486448321994, + "2023-12-21": 43706.23099733911, + "2023-07-20": 29987.211804090955, + "2024-03-06": 66399.33066806933, + "2023-09-30": 26961.818560451266, + "2023-12-12": 41586.01238903765, + "2024-02-13": 49704.84093123119, + "2023-05-19": 26869.8285297566, + "2023-09-20": 27120.7435379443, + "2023-07-08": 30226.010514892867, + "2023-09-19": 27146.86295067376, + "2023-09-29": 26948.982280086704, + "2023-09-12": 25963.752700490502, + "2023-06-13": 26025.39034397967, + "2023-10-04": 27526.91039390649, + "2024-03-02": 62008.17425809012, + "2023-10-08": 27924.983532778006, + "2023-11-20": 37279.00008865631, + "2023-12-20": 43392.16166833002, + "2023-12-31": 42488.89118216244, + "2023-11-06": 35008.11830783097, + "2023-08-22": 25999.92978610329, + "2023-06-27": 30609.980436754868, + "2023-04-14": 30697.787926885736, + "2023-06-09": 26497.935057278686, + "2024-03-17": 66886.14793788156, + "2023-09-18": 26821.395422398105, + "2024-04-01": 69583.7475072082, + "2024-01-19": 41247.39504614126, + "2023-11-11": 37091.32696862087, + "2023-05-14": 26870.710869318485, + "2023-05-13": 26826.991411986317, + "2023-05-06": 29140.480825826708, + "2023-04-16": 30324.069327007815, + "2023-11-19": 36601.69724779465, + "2023-04-15": 30399.978206046402, + "2023-05-16": 27055.26043975898, + "2023-09-23": 26572.519868666557, + "2023-07-02": 30537.422673009754, + "2023-08-15": 29339.22097911734, + "2024-01-25": 39930.050809294946, + "2024-03-13": 72896.37542950182, + "2024-01-21": 41663.9223563095, + "2024-02-01": 42267.34433314839, + "2023-06-15": 25015.27257868221, + "2024-03-16": 68131.31514419916, + "2023-11-27": 37093.65828871516, + "2024-01-10": 45801.65298604854, + "2024-03-15": 68161.58301065318, + "2023-06-21": 29072.074131042627, + "2024-01-02": 45255.22332174868, + "2023-04-26": 28684.153985695015, + "2023-07-11": 30517.103587918085, + "2023-10-25": 34337.32456645514, + "2024-01-01": 42700.5398037919, + "2024-02-14": 51502.672676975984, + "2023-09-04": 25894.118693814853, + "2023-09-06": 25720.464976050178, + "2024-04-03": 66034.40725763737, + "2024-03-08": 67749.22630306623, + "2023-11-28": 37375.73268557626, + "2023-12-03": 39520.625163089186, + "2023-08-02": 29450.500850638502, + "2023-08-27": 26058.663413855895, + "2023-06-22": 30111.194063668958, + "2023-10-20": 29533.209767104854, + "2023-05-25": 26269.650420987986, + "2023-10-10": 27511.154850639097, + "2024-01-14": 42778.87044946218, + "2023-12-15": 42581.59929783284, + "2023-10-19": 28500.83749022426, + "2024-02-08": 44816.34091317588, + "2023-11-08": 35363.7218831339, + "2023-11-12": 37107.18663525835, + "2023-12-22": 43752.39706899663, + "2023-05-20": 26912.27827427529, + "2023-05-31": 27115.14574089948, + "2024-03-23": 64555.889931922036, + "2024-04-10": 69096.12560421148, + "2023-09-27": 26257.847566151828, + "2024-03-04": 65313.795124590135, + "2023-09-10": 25815.105220123674, + "2024-02-29": 62276.593080278326, + "2023-07-22": 29884.26501943834, + "2023-07-21": 29853.392308288905, + "2023-06-30": 30522.490780876375, + "2023-12-29": 42444.169107620066, + "2023-12-04": 41563.25594544999, + "2023-09-21": 26679.834337773504, + "2023-06-02": 27086.65211800245, + "2023-10-11": 27074.74137856274, + "2023-07-19": 29987.981939845573, + "2023-05-05": 29256.962827611187, + "2024-03-21": 66837.9365881198, + "2024-04-08": 71728.2812803491, + "2023-04-29": 29318.54769247706, + "2023-06-14": 25934.14184104343, + "2023-10-05": 27667.579465544568, + "2023-10-16": 27972.031756633576, + "2024-02-10": 47324.395288713014, + "2024-04-07": 69390.3165591167, + "2023-05-21": 26926.95283545182, + "2024-02-20": 51846.390901927494, + "2023-11-17": 36381.87378737575, + "2023-12-11": 41967.18135219418, + "2023-11-26": 37511.65367901351, + "2023-11-16": 37012.18307091734, + "2023-06-29": 30492.007503060187, + "2023-04-12": 29997.223328996202, + "2023-06-11": 25802.146229435606, + "2024-02-02": 43050.57853384316, + "2023-09-14": 26503.206540452487, + "2024-01-27": 41796.26891616323, + "2024-03-30": 70004.84648173553, + "2023-05-04": 29028.40188141482, + "2023-09-28": 26555.505302761732, + "2023-10-27": 34009.71226304281, + "2023-05-01": 28491.849236147933, + "2023-05-15": 27381.585664395137, + "2023-11-22": 36547.41411491933, + "2023-06-03": 27164.010153281488, + "2024-01-18": 42416.82574691107, + "2023-08-26": 26030.027380573494, + "2024-02-15": 52108.61366296057, + "2023-10-28": 34102.4129271769, + "2024-03-24": 65337.251032640306, + "2023-04-22": 27345.627098359906, + "2023-04-10": 28427.49621672912, + "2023-12-06": 43847.5045607593, + "2023-11-10": 36969.58115941817, + "2024-01-30": 43420.51533681965, + "2023-08-09": 29743.647427189324, + "2023-05-02": 28135.796600405825, + "2023-11-14": 36344.037248575914, + "2024-01-23": 39242.85373031723, + "2024-01-31": 42875.09447702107, + "2024-01-11": 46498.01230966629, + "2024-02-18": 51750.49883420547, + "2023-06-16": 25584.725311337534, + "2023-10-30": 34468.667565174044, + "2023-12-17": 41904.364754619986, + "2024-02-26": 51764.665133310344, + "2023-07-16": 30301.854033672033, + "2024-01-05": 43779.41019823458, + "2023-08-23": 26075.775938281793, + "2024-03-11": 71748.82791819738, + "2023-08-01": 28927.820013391665, + "2024-03-14": 71952.38702676003, + "2024-02-21": 51276.01195699649, + "2023-08-28": 26017.716285775125, + "2023-07-04": 31007.354382616417, + "2023-12-13": 41364.26261908199, + "2023-08-13": 29376.80869339542, + "2024-03-31": 70429.6617799395, + "2023-12-09": 43992.70790626897, + "2024-04-02": 65958.96020867223, + "2024-02-06": 42927.24878703015, + "2024-04-09": 70363.9591413452, + "2023-05-30": 27784.468819648802, + "2023-11-04": 34764.354377745345, + "2024-01-15": 42615.86606149973, + "2023-07-03": 30759.852740610688, + "2023-12-28": 42909.68309203992, + "2023-04-23": 27577.14187908517, + "2023-04-17": 29561.594114175197, + "2023-05-08": 27922.751652166946, + "2024-02-27": 56662.01883579702, + "2024-02-07": 43100.87790594117, + "2023-09-25": 26169.625775758057, + "2024-03-19": 64082.91499301982, + "2024-03-10": 69448.99882057704, + "2023-09-02": 25814.93013709884, + "2024-01-12": 45410.57841885217, + "2023-11-29": 37919.98457431677, + "2023-10-15": 26901.355829523098, + "2023-11-30": 37739.976817852046, + "2024-01-24": 39924.55361406514, + "2023-08-11": 29382.487500773488, + "2024-02-11": 48187.519935661316, + "2023-06-08": 26448.269160894935, + "2023-08-16": 29118.01333946809, + "2023-11-15": 36193.11383898672, + "2023-12-16": 42270.78192326754, + "2024-03-29": 70019.29167923852, + "2024-04-04": 67184.5673880666, + "2023-06-10": 25694.511633842176, + "2023-07-28": 29259.955085149122, + "2024-01-20": 41579.12973986432, + "2023-10-21": 29810.09865421502, + "2023-05-12": 26405.23409747908, + "2023-11-03": 34536.08425474511, + "2023-08-31": 27112.75978344732, + "2024-01-29": 42284.24423284955, + "2024-01-04": 43352.461878232934, + "2023-05-22": 26848.21497933266, + "2023-07-26": 29278.375175671794, + "2023-11-13": 36877.92421271831, + "2024-03-25": 67566.8199917375, + "2023-08-07": 29043.08479820615, + "2023-10-29": 34378.4041967256, + "2023-07-25": 29178.961664328646, + "2023-05-17": 26978.51479673513, + "2023-10-24": 34099.79575344469, + "2023-06-05": 26682.639998467166, + "2023-11-02": 35230.290735305316, + "2023-12-18": 41219.15804181882, + "2023-11-24": 37703.33937748521, + "2023-08-21": 26054.978375589802, + "2023-08-14": 29373.783895793025, + "2023-05-26": 26513.614488349835, + "2024-03-05": 66686.69954258388, + "2024-04-06": 68007.88106720381, + "2023-12-23": 43704.94826934516, + "2024-02-03": 43069.41086615945, + "2024-02-16": 52006.44914605871, + "2023-05-28": 27221.777428143625, + "2023-12-14": 42853.34475191429, + "2023-06-24": 30634.7038200892, + "2023-08-17": 28346.560421545655, + "2023-12-26": 42636.676475887856, + "2023-11-09": 36614.044017970955, + "2023-05-11": 27367.945369235524, + "2023-08-19": 25994.301129043044, + "2023-06-23": 30243.83017865174, + "2023-06-18": 26517.23988087028, + "2023-08-08": 29472.79283737712, + "2023-07-24": 29222.36744238986, + "2023-10-14": 26877.61410379616, + "2024-01-17": 42680.96927512974, + "2023-04-19": 29294.337260689652, + "2024-04-06T23": 69252.39613177849, + "2024-04-07T13": 69407.52484052374, + "2024-04-05T00": 68368.05846110638, + "2024-04-04T13": 67294.29992465598, + "2024-04-03T19": 65872.40132867437, + "2024-04-04T14": 67674.5573841813, + "2024-04-09T08": 70145.71433684815, + "2024-04-04T15": 67641.5675761953, + "2024-04-04T02": 65803.97213741379, + "2024-04-05T21": 67726.4426355026, + "2024-04-03T17": 66066.92621750337, + "2024-04-04T03": 65683.67964969808, + "2024-04-04T16": 67907.95835163894, + "2024-04-07T20": 69312.42849081299, + "2024-04-06T17": 68211.6000205276, + "2024-04-07T15": 69679.46441340269, + "2024-04-07T09": 69386.1373144694, + "2024-04-06T20": 68304.25877649887, + "2024-04-07T22": 69210.98109630219, + "2024-04-05T10": 66904.41485477178, + "2024-04-05T18": 67594.41918399568, + "2024-04-07T03": 69396.83156718328, + "2024-04-04T12": 66568.50201345481, + "2024-04-03T13": 65856.63985465704, + "2024-04-05T12": 66511.29703695644, + "2024-04-10T06": 69372.01893023476, + "2024-04-03T16": 66287.45945067231, + "2024-04-10T10": 68789.49515891155, + "2024-04-03T21": 65782.4560063708, + "2024-04-05T01": 68134.85862182987, + "2024-04-07T04": 69294.69657483036, + "2024-04-04T18": 68923.63866810418, + "2024-04-05T11": 66800.79359377139, + "2024-04-08T13": 72031.90193406216, + "2024-04-03T20": 65715.31218740679, + "2024-04-09T05": 71109.06619466616, + "2024-04-08T10": 72049.85402524799, + "2024-04-04T10": 66325.54455258783, + "2024-04-05T17": 67763.70744033792, + "2024-04-08T20": 71658.64461810687, + "2024-04-07T19": 69312.49005424863, + "2024-04-04T05": 65496.86206710727, + "2024-04-08T23": 71804.24342313565, + "2024-04-08T01": 69627.02668373969, + "2024-04-07T10": 69368.77838866686, + "2024-04-05T20": 67610.13970042951, + "2024-04-05T08": 67269.43316483455, + "2024-04-06T15": 68126.2737550801, + "2024-04-05T16": 67976.38776667189, + "2024-04-05T06": 67034.75037369572, + "2024-04-09T15": 69083.50022865672, + "2024-04-06T21": 68408.79272912686, + "2024-04-09T09": 70606.60503380849, + "2024-04-08T22": 71693.6723544133, + "2024-04-08T16": 71829.84219716696, + "2024-04-07T07": 69395.85631249231, + "2024-04-04T09": 66262.20424913018, + "2024-04-10T05": 69297.767526266, + "2024-04-09T17": 68723.32458115244, + "2024-04-06T11": 67746.1560089888, + "2024-04-06T18": 68277.2294307214, + "2024-04-05T09": 66738.78204432788, + "2024-04-08T07": 70504.00206532763, + "2024-04-04T06": 65687.40547168835, + "2024-04-08T12": 72358.99057069581, + "2024-04-05T15": 67946.36998053952, + "2024-04-04T20": 67865.73570787298, + "2024-04-04T22": 67908.31372410087, + "2024-04-10T02": 69035.87727470738, + "2024-04-09T19": 68909.60565425767, + "2024-04-04T07": 66086.95605634281, + "2024-04-04T04": 65431.71575602511, + "2024-04-08T06": 69729.45897475428, + "2024-04-08T18": 71914.31097262658, + "2024-04-05T02": 67887.00757793641, + "2024-04-09T07": 70624.10802628241, + "2024-04-09T14": 69720.83185513178, + "2024-04-08T05": 69587.819776027, + "2024-04-03T15": 66049.17091079759, + "2024-04-08T14": 71638.84497683383, + "2024-04-09T10": 70466.46467609242, + "2024-04-06T01": 67894.78560203707, + "2024-04-06T16": 68047.64524530014, + "2024-04-09T03": 71405.61354842145, + "2024-04-09T11": 70793.20745474566, + "2024-04-07T01": 69452.9992191775, + "2024-04-03T22": 66019.44304201553, + "2024-04-07T21": 69273.08706492475, + "2024-04-10T04": 69084.7257059603, + "2024-04-08T15": 71815.12849664903, + "2024-04-04T21": 67854.93205815763, + "2024-04-07T17": 69839.40458334841, + "2024-04-07T11": 69355.54116716649, + "2024-04-08T03": 69291.2265620869, + "2024-04-10T00": 69136.16497084626, + "2024-04-08T04": 69375.45256140894, + "2024-04-03T18": 65832.92861851926, + "2024-04-06T22": 68681.82050678346, + "2024-04-06T08": 67983.812594713, + "2024-04-08T00": 69275.64045877205, + "2024-04-09T01": 71181.49470226986, + "2024-04-03T12": 65948.6624444168, + "2024-04-10T08": 68970.75512001038, + "2024-04-06T05": 68028.49141184788, + "2024-04-04T11": 66287.12193422862, + "2024-04-05T04": 67782.29702711171, + "2024-04-07T00": 69033.79335501905, + "2024-04-07T06": 69271.51363037959, + "2024-04-09T04": 71186.43576088354, + "2024-04-05T13": 67013.92703294079, + "2024-04-09T23": 69107.70823252498, + "2024-04-04T23": 68385.85754801016, + "2024-04-05T03": 67851.84664264285, + "2024-04-04T17": 68118.57475424012, + "2024-04-10T07": 69398.84606353282, + "2024-04-04T08": 66234.37578666951, + "2024-04-08T17": 71585.14029547172, + "2024-04-06T06": 68051.52188088602, + "2024-04-09T12": 70780.36731330804, + "2024-04-06T03": 67751.07222824224, + "2024-04-08T11": 72324.04770593831, + "2024-04-08T21": 71747.96093394184, + "2024-04-05T23": 67856.26221793744, + "2024-04-05T14": 67861.06602553806, + "2024-04-04T19": 68683.56382254024, + "2024-04-04T01": 66204.67821568338, + "2024-04-08T08": 71249.58669565246, + "2024-04-06T19": 68342.92794271567, + "2024-04-10T09": 69004.3734846302, + "2024-04-09T20": 69057.98702249365, + "2024-04-06T04": 67768.46760346538, + "2024-04-07T05": 69407.16919378233, + "2024-04-07T23": 69392.95356345848, + "2024-04-06T10": 67833.2672883389, + "2024-04-03T23": 66175.95102076068, + "2024-04-03T14": 66582.83724068104, + "2024-04-06T02": 67645.96073900549, + "2024-04-08T02": 69298.36517521978, + "2024-04-09T00": 71490.73379935855, + "2024-04-06T07": 68043.99187128765, + "2024-04-05T22": 67696.62949856752, + "2024-04-10T11": 69016.57987103453, + "2024-04-08T19": 71808.31574376946, + "2024-04-06T13": 67683.46870312346, + "2024-04-09T06": 71035.34761996908, + "2024-04-09T02": 71465.56102935469, + "2024-04-09T22": 69262.96385644481, + "2024-04-10T03": 68908.29941558908, + "2024-04-04T00": 66210.10556431778, + "2024-04-06T14": 67862.85029320313, + "2024-04-07T12": 69321.59078028242, + "2024-04-05T07": 66979.98920503957, + "2024-04-07T14": 69354.29027428862, + "2024-04-09T13": 70569.90655445162, + "2024-04-07T18": 69534.82636160591, + "2024-04-08T09": 72140.97376257158, + "2024-04-09T18": 68860.57900627168, + "2024-04-05T19": 67804.05962187762, + "2024-04-06T00": 67889.82677540742, + "2024-04-10T01": 68844.36660827928, + "2024-04-07T08": 69503.41825883361, + "2024-04-06T12": 67740.5230295045, + "2024-04-05T05": 66873.67506547194, + "2024-04-07T02": 69535.69051230796, + "2024-04-09T16": 68892.14263295471, + "2024-04-07T16": 70077.12242538655, + "2024-04-06T09": 67943.60514845984, + "2024-04-09T21": 69083.13943238159, + "latest": 68817, + "2024-04-10T12": 69025.44083903496, + "2024-04-10T13": 67685.09109904071, + "2024-04-10T14": 68586.18813165028, + "2024-04-10T15": 68543.06403329033, + "2024-04-11": 70673.25224056275, + "2024-04-10T17": 69361.1246918896, + "2024-04-11T07": 70744.13102854106, + "2024-04-10T20": 69878.80963512477, + "2024-04-10T19": 69558.31593537868, + "2024-04-11T05": 70568.83819298085, + "2024-04-11T02": 70823.00996941378, + "2024-04-11T06": 70728.6946651175, + "2024-04-11T03": 70875.75012918664, + "2024-04-11T00": 70389.63600542347, + "2024-04-10T22": 70695.26571497461, + "2024-04-10T16": 68951.57944905174, + "2024-04-10T23": 70595.67767285445, + "2024-04-11T04": 70544.33734613465, + "2024-04-11T01": 70610.3511033556, + "2024-04-10T21": 69773.28711402544, + "2024-04-10T18": 69261.65633761043, + "2024-04-11T08": 70744.72978168151, + "2024-04-11T09": 71037.59920830857, + "2024-04-11T10": 70630.61236877304, + "2024-04-11T11": 70511.36361751698, + "2024-04-11T12": 70587.90850450011, + "2024-04-11T13": 70631.87398048544, + "2024-04-11T14": 70260.47634231295, + "2024-04-11T15": 69841.97189323367, + "2024-04-12T09": 70661.99658134035, + "2024-04-12T00": 70274.7796756017, + "2024-04-12T12": 70734.16432861408, + "2024-04-12T03": 70849.52428791206, + "2024-04-12T02": 70678.19949241298, + "2024-04-12T10": 70703.36213622283, + "2024-04-12T11": 70825.63473558225, + "2024-04-12T07": 70746.45217018717, + "2024-04-12T06": 70884.41005321071, + "2024-04-12T05": 71000.08894466025, + "2024-04-12T01": 70233.69399965301, + "2024-04-12T08": 70770.5103861789, + "2024-04-12T04": 70942.72389430237, + "2024-04-12T13": 70100.32570991476, + "2024-04-12": 70000.4104991704, + "2024-04-13": 67080.9435652618, + "2024-04-12T20": 67257.60957820991, + "2024-04-12T16": 68887.92699506674, + "2024-04-13T02": 66436.74314685441, + "2024-04-12T17": 68162.13182754938, + "2024-04-12T21": 66875.33510158143, + "2024-04-13T01": 66381.88271865557, + "2024-04-12T19": 66865.90149857577, + "2024-04-12T14": 69665.2204678405, + "2024-04-12T22": 67054.80308664066, + "2024-04-12T23": 66999.02943575279, + "2024-04-13T00": 66979.423249291, + "2024-04-12T18": 66628.06745115005, + "2024-04-12T15": 69394.43263143132, + "2024-04-14": 64404.82548907413, + "2024-04-13T04": 67355.16449090054, + "2024-04-13T07": 67430.47363044406, + "2024-04-14T01": 63818.205662830274, + "2024-04-13T14": 67593.7473711594, + "2024-04-13T20": 62441.20200550539, + "2024-04-13T13": 67609.16772346792, + "2024-04-13T03": 66811.89098140117, + "2024-04-13T23": 64727.48105306579, + "2024-04-13T11": 67538.18453396385, + "2024-04-14T02": 63418.33109076114, + "2024-04-13T22": 63569.40018494902, + "2024-04-13T21": 62198.907251533885, + "2024-04-13T09": 67266.79375472778, + "2024-04-13T19": 66767.14917921255, + "2024-04-13T16": 67514.86910067132, + "2024-04-13T15": 67718.59198601654, + "2024-04-13T17": 66927.70271480325, + "2024-04-13T08": 67298.95917765672, + "2024-04-13T06": 67390.97555727008, + "2024-04-13T05": 67632.27438221138, + "2024-04-13T18": 66865.65462572945, + "2024-04-13T10": 67438.98785542155, + "2024-04-14T00": 63869.276631512934, + "2024-04-13T12": 67399.76708771284, + "2024-04-14T03": 62812.95426838955, + "2024-04-14T19": 64173.860060230545, + "2024-04-14T11": 64121.570306344736, + "2024-04-14T14": 63960.276729119854, + "2024-04-14T16": 64417.72204097677, + "2024-04-14T21": 63634.49188299735, + "2024-04-14T22": 65121.552179653874, + "2024-04-14T04": 63958.67182246171, + "2024-04-14T08": 64617.26696152153, + "2024-04-14T17": 63816.98131305592, + "2024-04-14T23": 65508.672560704734, + "2024-04-14T20": 64105.014421375585, + "2024-04-14T05": 64317.61401184929, + "2024-04-14T13": 64557.48550779974, + "2024-04-14T10": 64399.55848509291, + "2024-04-14T15": 64119.38690391697, + "2024-04-14T12": 64411.44704094772, + "2024-04-14T18": 64359.548420403895, + "2024-04-14T09": 64324.995201766076, + "2024-04-14T06": 64594.459584924945, + "2024-04-14T07": 64682.26913945216, + "2024-04-15T00": 65582.66634504039, + "2024-04-15T02": 65243.638894614334, + "2024-04-15T05": 65206.61470489877, + "2024-04-15T04": 64930.46346564182, + "2024-04-15T03": 65285.83757196982, + "2024-04-15T06": 66215.40969858423, + "2024-04-15T01": 65493.36867200319, + "2024-04-15T07": 66423.20691233067, + "2024-04-15T08": 66294.95032660617, + "2024-04-15T09": 66715.91868860446, + "2024-04-15T11": 66243.04344725054, + "2024-04-15T10": 66562.48171453198, + "2024-04-15T12": 66106.42956589408, + "2024-04-15T14": 65351.66798823514, + "2024-04-15T13": 66167.56040009928, + "2024-04-15": 65200.11336751955, + "2024-04-16": 62956.915351833406, + "2024-04-16T02": 63091.426782693634, + "2024-04-15T23": 63412.01465271786, + "2024-04-16T00": 63333.17033289672, + "2024-04-15T15": 64537.30166368658, + "2024-04-15T19": 63175.236243639956, + "2024-04-16T03": 63147.7565891771, + "2024-04-15T20": 63279.29971646516, + "2024-04-15T16": 64234.50577720879, + "2024-04-15T18": 63613.23786906062, + "2024-04-16T01": 63500.827960687195, + "2024-04-15T21": 63066.761385678954, + "2024-04-15T17": 63947.31787341355, + "2024-04-15T22": 63190.702811176816, + "2024-04-16T06": 62975.78394049591, + "2024-04-16T05": 62698.42447493841, + "2024-04-16T08": 63560.38164223305, + "2024-04-16T04": 62480.55243495884, + "2024-04-16T07": 63393.37229334292, + "2024-04-16T09": 63378.68325859197, + "2024-04-16T10": 62449.37201873838, + "2024-04-16T11": 62697.39327015095, + "2024-04-16T12": 63053.87911487075, + "2024-04-16T18": 62786.39309607548, + "2024-04-16T20": 62861.652011621874, + "2024-04-16T13": 62887.62194885705, + "2024-04-16T14": 62532.09919836435, + "2024-04-16T21": 63692.00061872721, + "2024-04-16T15": 62078.051358210345, + "2024-04-16T16": 61959.63817974863, + "2024-04-16T17": 62810.022222320455, + "2024-04-16T19": 62893.88078173982, + "2024-04-17": 63888.79031467681, + "2024-04-17T00": 63771.5403306793, + "2024-04-17T08": 63450.314013913805, + "2024-04-17T02": 63903.73972515958, + "2024-04-17T05": 64199.86567662601, + "2024-04-17T03": 63957.66319021611, + "2024-04-16T22": 63776.30218298729, + "2024-04-16T23": 63787.784839762535, + "2024-04-17T06": 63892.69451600344, + "2024-04-17T01": 63898.594668826874, + "2024-04-17T04": 63937.07606792339, + "2024-04-17T07": 63536.809412427094, + "2024-04-17T09": 63350.62513568913, + "2024-04-17T10": 63342.30473633799, + "2024-04-17T11": 62886.057735517745, + "2024-04-17T12": 62471.63668700931, + "2024-04-17T13": 62280.302210354625, + "2024-04-18T09": 61503.46270786515, + "2024-04-18T10": 61657.605531780224, + "2024-04-18T04": 61918.054920343, + "2024-04-18T00": 61187.46843741004, + "2024-04-18T08": 61254.86562815793, + "2024-04-18T07": 61205.76330211913, + "2024-04-18T01": 61532.31085115403, + "2024-04-18T02": 61614.83483219283, + "2024-04-18T03": 62024.57314575996, + "2024-04-18T05": 61587.947074010895, + "2024-04-18T12": 62221.754184232916, + "2024-04-18T06": 61103.8086868229, + "2024-04-18T11": 62695.68520676048, + "2024-04-18T13": 62365.79308970833, + "2024-04-18": 62404.163725832266, + "2024-04-19": 63517.289856392184, + "2024-04-18T19": 63321.47593489072, + "2024-04-19T03": 61759.83819305657, + "2024-04-18T18": 62897.63100649958, + "2024-04-19T04": 62365.92451644473, + "2024-04-19T05": 62125.134146380726, + "2024-04-19T00": 63069.237023418325, + "2024-04-18T20": 63467.297815498576, + "2024-04-19T01": 61836.45808417631, + "2024-04-18T17": 63316.11661785136, + "2024-04-19T02": 60259.849441710896, + "2024-04-18T21": 63574.49383442045, + "2024-04-18T14": 63668.55466595021, + "2024-04-18T16": 63555.1770046291, + "2024-04-18T15": 63705.8748655248, + "2024-04-18T23": 63506.22975339121, + "2024-04-18T22": 63497.70922493174, + "2024-04-19T06": 62845.15134685706, + "2024-04-19T07": 64576.76501078571, + "2024-04-19T08": 64587.66164663983, + "2024-04-19T09": 64732.155787219854, + "2024-04-19T10": 64777.89749398124, + "2024-04-19T11": 64804.47075903137, + "2024-04-19T12": 64945.696780329075, + "2024-04-19T13": 64804.994628894085, + "2024-04-19T14": 64947.98675845941, + "2024-04-19T15": 64529.124321299125, + "2024-04-20": 64004.45854319186, + "2024-04-19T22": 64308.60226971114, + "2024-04-19T23": 63582.460059318, + "2024-04-19T20": 64086.81856207502, + "2024-04-19T19": 64269.62975593916, + "2024-04-19T21": 64317.610593249265, + "2024-04-19T18": 64373.219304247104, + "2024-04-19T16": 64052.89816457239, + "2024-04-19T17": 64241.223186481504, + "2024-04-20T00": 63797.78822625218, + "2024-04-20T01": 63552.984189283656, + "2024-04-21": 64986.289204818495, + "2024-04-20T16": 64738.219488963754, + "2024-04-20T19": 64871.750049020855, + "2024-04-20T15": 64251.5765239832, + "2024-04-20T02": 63777.96871974614, + "2024-04-20T09": 63583.5175472619, + "2024-04-20T04": 63971.12695125565, + "2024-04-20T10": 63642.189640914636, + "2024-04-20T22": 64682.46172067197, + "2024-04-21T00": 64829.380162655274, + "2024-04-20T12": 63786.69056031188, + "2024-04-21T04": 65205.69247263208, + "2024-04-20T05": 64147.00896336274, + "2024-04-20T18": 65036.14432690529, + "2024-04-20T11": 63757.52426460635, + "2024-04-20T23": 64887.16377243893, + "2024-04-20T08": 63850.06368044417, + "2024-04-20T13": 63914.475645973274, + "2024-04-21T02": 65215.998114372866, + "2024-04-21T01": 64990.24039113798, + "2024-04-20T20": 64805.97342508214, + "2024-04-20T03": 63955.66507326279, + "2024-04-20T14": 63909.845640612395, + "2024-04-20T07": 64038.7919935101, + "2024-04-20T17": 65238.98900126074, + "2024-04-20T21": 64755.92612430803, + "2024-04-20T06": 64095.63726123164, + "2024-04-21T03": 65331.70317476972, + "2024-04-21T16": 65065.995315484346, + "2024-04-21T11": 65000.95013336604, + "2024-04-21T17": 64679.8388429762, + "2024-04-21T08": 65183.28487409905, + "2024-04-21T12": 65296.34612807932, + "2024-04-21T15": 64919.71712761995, + "2024-04-21T06": 65074.07506231428, + "2024-04-21T07": 65080.62413018502, + "2024-04-21T14": 64889.9275795219, + "2024-04-21T13": 65041.897239267266, + "2024-04-21T05": 65121.759602721424, + "2024-04-21T10": 64925.97423081164, + "2024-04-21T09": 64958.351065800445, + "2024-04-21T19": 64734.16584841056, + "2024-04-21T22": 64993.21621228581, + "2024-04-21T21": 64898.27230065608, + "2024-04-21T20": 64571.961687362695, + "2024-04-21T18": 64794.852747832185, + "2024-04-22": 66083.94931674018, + "2024-04-22T00": 64958.38586009449, + "2024-04-22T07": 66132.77868131308, + "2024-04-22T05": 65981.87306645693, + "2024-04-22T04": 65737.22436806442, + "2024-04-22T02": 64757.96130123992, + "2024-04-22T01": 64873.10590806183, + "2024-04-22T06": 66303.68208137238, + "2024-04-21T23": 64967.65462043476, + "2024-04-22T03": 65417.31510647433, + "2024-04-22T08": 66053.00008868682, + "2024-04-22T09": 65995.1504515962, + "2024-04-22T10": 65924.48739150951, + "2024-04-22T11": 66085.36893814267, + "2024-04-22T12": 65903.2313928471, + "2024-04-22T13": 66048.61211663991, + "2024-04-22T14": 66190.79415333882, + "2024-04-22T15": 66007.04786229541, + "2024-04-22T16": 66149.46752816698, + "2024-04-23": 66475.32619960954, + "2024-04-23T03": 66664.81854313315, + "2024-04-22T19": 66354.44134265133, + "2024-04-22T17": 66637.29590311472, + "2024-04-22T23": 67053.58837620924, + "2024-04-22T20": 66545.20329286582, + "2024-04-22T21": 66511.78339430627, + "2024-04-22T18": 66527.83262848243, + "2024-04-23T06": 66570.28466779926, + "2024-04-22T22": 66740.93232071967, + "2024-04-23T04": 66448.7732425343, + "2024-04-23T01": 67008.0386961633, + "2024-04-23T00": 66858.6027717122, + "2024-04-23T05": 66385.15400930692, + "2024-04-23T02": 66850.1332308379, + "2024-04-23T07": 66281.98506210299, + "2024-04-23T08": 66146.4227616896, + "2024-04-23T09": 66214.1055109378, + "2024-04-23T10": 66217.0897136657, + "2024-04-23T11": 66073.84676782407, + "2024-04-23T12": 66054.8068353797, + "2024-04-23T13": 66095.5295428948, + "2024-04-23T14": 66531.27565923118, + "2024-04-23T15": 66919.56349733032, + "2024-04-23T16": 66674.61889423254, + "2024-04-24": 66428.98997797654, + "2024-04-24T02": 66625.49284256273, + "2024-04-24T00": 66601.0666954767, + "2024-04-24T01": 66783.4063400493, + "2024-04-23T23": 66342.56359541832, + "2024-04-24T06": 66669.30821200732, + "2024-04-23T22": 66403.0011081212, + "2024-04-23T18": 66769.27990237196, + "2024-04-23T20": 66273.63168907203, + "2024-04-23T21": 66328.89967882281, + "2024-04-24T04": 66734.2121039617, + "2024-04-24T05": 66820.98878767354, + "2024-04-24T03": 66624.76884057949, + "2024-04-24T07": 66754.51866628118, + "2024-04-23T19": 66567.11169247446, + "2024-04-23T17": 66734.26928965758, + "2024-04-24T08": 66651.4970431892, + "2024-04-24T09": 66400.91603848567, + "2024-04-24T10": 66342.11333619761, + "2024-04-24T11": 66472.87405264126, + "2024-04-24T12": 66611.8691758279, + "2024-04-24T13": 66099.72346147931, + "2024-04-24T14": 65216.50338400397, + "2024-04-24T15": 64846.56006463103, + "2024-04-25": 64279.51812857524, + "2024-04-24T18": 64664.75874571256, + "2024-04-25T00": 64451.04232533306, + "2024-04-24T21": 64232.59413678203, + "2024-04-24T17": 64878.23289592557, + "2024-04-24T16": 64675.371141707146, + "2024-04-24T20": 63953.582111916076, + "2024-04-24T23": 64129.31198743744, + "2024-04-24T22": 64139.18952009393, + "2024-04-24T19": 64223.90606588486, + "2024-04-25T01": 64446.75053160693, + "2024-04-25T03": 64322.56726966935, + "2024-04-25T06": 64268.16050503554, + "2024-04-25T05": 64205.75821629284, + "2024-04-25T04": 64253.81878626031, + "2024-04-25T02": 64216.23962942709, + "2024-04-25T07": 64221.433130991696, + "2024-04-25T08": 63983.17829337444, + "2024-04-25T09": 63995.599119714825, + "2024-04-25T10": 63945.25451137906, + "2024-04-25T11": 63797.770026790844, + "2024-04-25T12": 63830.494117026225, + "2024-04-25T13": 63456.48539080986, + "2024-04-25T14": 63473.685613236914, + "2024-04-25T15": 63304.46084496703, + "2024-04-25T16": 63957.27716091806, + "2024-04-25T17": 64400.82358666736, + "2024-04-25T18": 64606.80217179338, + "2024-04-25T19": 64631.61482610881, + "2024-04-26": 64486.183359158975, + "2024-04-25T22": 64639.62640567817, + "2024-04-25T21": 64941.59506403488, + "2024-04-25T20": 64753.314739392525, + "2024-04-26T01": 64206.09101061129, + "2024-04-25T23": 64534.93078819923, + "2024-04-26T00": 64306.1653774911, + "2024-04-26T05": 64269.3921788652, + "2024-04-26T02": 64457.03099623197, + "2024-04-26T03": 64396.58633465143, + "2024-04-26T04": 64276.251495707176, + "2024-04-26T06": 64438.072244763156, + "2024-04-26T07": 64376.25682827643, + "2024-04-26T08": 64279.92044504777, + "2024-04-26T09": 64448.94624724678, + "2024-04-26T10": 64510.54027407139, + "2024-04-26T11": 64066.288797391164, + "2024-04-26T12": 64236.47310019924, + "2024-04-26T13": 64164.20911623725, + "2024-04-26T14": 64478.31870534363, + "2024-04-26T15": 63517.413579998705, + "2024-04-26T21": 63909.55528074182, + "2024-04-26T17": 63813.6208460205, + "2024-04-26T19": 63887.63521463758, + "2024-04-26T16": 63618.95607775599, + "2024-04-26T18": 64004.04355199219, + "2024-04-26T20": 63912.51532727684, + "2024-04-27": 63751.76615028954, + "2024-04-26T22": 64054.99844147635, + "2024-04-26T23": 63805.51801456799, + "2024-04-27T00": 63751.76615028954, + "2024-04-27T01": 62676.34099108231, + "2024-04-28": 63394.9930544734, + "2024-04-27T13": 63131.54411666958, + "2024-04-28T00": 63534.45724352019, + "2024-04-27T20": 63206.14885734793, + "2024-04-27T23": 63408.56213445849, + "2024-04-27T06": 62967.3421706288, + "2024-04-27T05": 62959.773082092324, + "2024-04-27T02": 62963.36214324257, + "2024-04-27T18": 63190.17788673991, + "2024-04-27T07": 63047.311938444276, + "2024-04-27T04": 63010.89043752962, + "2024-04-27T21": 63199.802749790826, + "2024-04-27T09": 62921.825127132055, + "2024-04-27T14": 63153.60229304629, + "2024-04-27T22": 63271.624980134235, + "2024-04-27T16": 62871.08915231987, + "2024-04-27T10": 62871.66614507461, + "2024-04-27T17": 62933.93256155027, + "2024-04-27T08": 62952.943365497296, + "2024-04-27T12": 63000.07092181327, + "2024-04-27T15": 62977.71779794346, + "2024-04-27T11": 62817.97929504092, + "2024-04-27T03": 63047.138675616676, + "2024-04-27T19": 63269.23097380865, + "2024-04-28T01": 63574.84407748873, + "2024-04-28T20": 63630.65993339637, + "2024-04-28T14": 63600.4256876809, + "2024-04-28T05": 63825.58501106807, + "2024-04-28T08": 63825.99772839622, + "2024-04-28T16": 63641.23995286529, + "2024-04-28T11": 63466.38302787632, + "2024-04-28T22": 63625.17116862718, + "2024-04-28T03": 64057.217097148794, + "2024-04-28T13": 63720.12844782101, + "2024-04-28T15": 63515.790576535175, + "2024-04-28T04": 63937.17882454994, + "2024-04-28T09": 63730.49552676498, + "2024-04-28T19": 63775.50647441983, + "2024-04-28T06": 63878.35308923093, + "2024-04-28T12": 63536.80038008519, + "2024-04-28T02": 63627.3844166286, + "2024-04-28T17": 63660.467853040456, + "2024-04-28T21": 63641.96665355145, + "2024-04-28T18": 63734.03149305133, + "2024-04-28T07": 63911.99285754955, + "2024-04-28T10": 63598.957286822864, + "2024-04-29": 62642.38620431776, + "2024-04-28T23": 63137.88072577567, + "2024-04-29T00": 63216.63350836984, + "2024-04-29T01": 63195.17257946919, + "2024-04-29T06": 62219.83928873355, + "2024-04-29T02": 62946.89373791893, + "2024-04-29T05": 62370.422619156016, + "2024-04-29T03": 62583.590976033505, + "2024-04-29T04": 62500.77745165994, + "2024-04-29T07": 62185.2441394792, + "2024-04-29T08": 62394.20698451431, + "2024-04-29T09": 62403.99060765479, + "2024-04-29T10": 62485.910055382665, + "2024-04-29T11": 62394.62149157186, + "2024-04-29T12": 62236.95319549425, + "2024-04-29T13": 62619.52475677046, + "2024-04-29T14": 61988.375823439164, + "2024-04-29T15": 62896.313858155736, + "2024-04-30": 63827.108114893235, + "2024-04-30T04": 63518.62179648667, + "2024-04-29T21": 62965.23886493297, + "2024-04-30T03": 63634.31653186532, + "2024-04-29T22": 63569.61856001181, + "2024-04-29T19": 62691.32024912426, + "2024-04-29T23": 63959.21287352645, + "2024-04-29T18": 62867.49264682592, + "2024-04-30T00": 63973.63230919587, + "2024-04-29T20": 62996.45427097852, + "2024-04-30T01": 64182.19855184723, + "2024-04-30T02": 63606.356041172185, + "2024-04-29T16": 62969.482868772786, + "2024-04-29T17": 62993.38805313989, + "2024-04-30T05": 63300.475306141685, + "2024-04-30T06": 63365.535120743014, + "2024-04-30T07": 63387.94067577044, + "2024-04-30T08": 63157.078601803245, + "2024-04-30T09": 61905.188337013606, + "2024-04-30T10": 61658.3650949231, + "2024-04-30T11": 61715.0192102861, + "2024-04-30T12": 61190.08933643445, + "2024-04-30T13": 61178.50152775359, + "2024-04-30T14": 60771.18438235919, + "2024-04-30T15": 61227.97534352162, + "2024-04-30T16": 60793.240622539866, + "2024-05-01": 57678.46708677875, + "2024-04-30T22": 60135.1650856609, + "2024-04-30T17": 60322.09918156734, + "2024-04-30T20": 59130.90288936685, + "2024-04-30T23": 60509.138218206084, + "2024-04-30T19": 60235.0767234763, + "2024-04-30T18": 60338.811211535605, + "2024-05-01T01": 60128.6609691792, + "2024-05-01T00": 60570.49956727372, + "2024-04-30T21": 59862.81401013311, + "2024-05-01T02": 59742.25700493221, + "2024-05-01T03": 60012.718845798925, + "2024-05-01T05": 60016.44922010738, + "2024-05-01T04": 60211.297475065396, + "2024-05-01T06": 59718.70108775039, + "2024-05-01T07": 57858.285684181086, + "2024-05-01T08": 56975.53855127993, + "2024-05-01T09": 57241.62371692311, + "2024-05-01T10": 57079.45266919757, + "2024-05-01T11": 57683.04579970379, + "2024-05-01T12": 57812.74612607129, + "2024-05-01T13": 57904.00993513547, + "2024-05-01T15": 57425.102178796966, + "2024-05-01T16": 56966.79447695935, + "2024-05-01T14": 57234.75505987105, + "2024-05-01T21": 57361.4276584326, + "2024-05-01T20": 57198.835137077825, + "2024-05-01T17": 57119.09786277997, + "2024-05-01T19": 57737.97416811023, + "2024-05-01T18": 58031.673257709896, + "2024-05-01T22": 57928.65668857121, + "2024-05-02": 58190.957487344676, + "2024-05-02T01": 57281.9565843493, + "2024-05-02T02": 57295.55588892048, + "2024-05-01T23": 58024.66083166122, + "2024-05-02T00": 58090.34355355957, + "2024-05-02T04": 57427.049384944985, + "2024-05-02T06": 57544.246048350935, + "2024-05-02T03": 57480.01498309979, + "2024-05-02T05": 57359.7776228275, + "2024-05-02T07": 57590.46643577258, + "2024-05-02T08": 57635.934438537755, + "2024-05-02T09": 57826.7318073255, + "2024-05-02T10": 57807.054371483224, + "2024-05-02T11": 57807.71365325178, + "2024-05-02T12": 58515.19944879183, + "2024-05-02T13": 58531.72475872059, + "2024-05-02T14": 58422.09286332141, + "2024-05-02T15": 59251.75375936103, + "2024-05-02T16": 59042.411617763915, + "2024-05-02T17": 59061.45700210241, + "2024-05-03T04": 59678.318549388074, + "2024-05-03T02": 59608.63660653811, + "2024-05-03T03": 59774.21022683278, + "2024-05-03T05": 59553.563151557835, + "2024-05-03T06": 59394.50541487669, + "2024-05-03T00": 59030.4974827972, + "2024-05-03T07": 59337.91976543282, + "2024-05-03T01": 59368.25721990413, + "2024-05-03T08": 59291.43963601324, + "2024-05-03T09": 59410.504371176845, + "2024-05-03T10": 59221.387869417405, + "2024-05-03T11": 59099.24568490107, + "2024-05-03T12": 60242.704504420835, + "2024-05-03T13": 61180.27840701572, + "2024-05-03T14": 61693.23146750591, + "2024-05-03T15": 61558.74299609955, + "2024-05-03": 60722.30359257101, + "2024-05-04": 63541.75797030084, + "2024-05-03T20": 62786.61068671211, + "2024-05-04T05": 63160.512585941695, + "2024-05-03T18": 61833.40931572168, + "2024-05-04T03": 62735.96431892613, + "2024-05-03T17": 61839.10410954481, + "2024-05-03T21": 62641.32131985835, + "2024-05-03T22": 62842.21798090446, + "2024-05-03T19": 61765.28151288333, + "2024-05-04T02": 62712.74896401466, + "2024-05-03T16": 61833.089198733745, + "2024-05-04T01": 63017.81314029635, + "2024-05-04T04": 62808.81554055743, + "2024-05-03T23": 62979.54133030805, + "2024-05-04T00": 62902.2489999993, + "2024-05-04T06": 63144.49884853754, + "2024-05-04T13": 63725.86041028188, + "2024-05-04T10": 63490.43746584842, + "2024-05-04T12": 63900.14017106351, + "2024-05-04T07": 62987.89115652427, + "2024-05-04T11": 64190.48320361767, + "2024-05-04T09": 63208.38636405908, + "2024-05-04T15": 63633.85321885701, + "2024-05-04T08": 63053.91037763019, + "2024-05-04T14": 63748.00991805696, + "2024-05-05": 63769.02395338465, + "2024-05-05T01": 63249.053931634844, + "2024-05-04T19": 63647.56087144962, + "2024-05-04T20": 64011.64582010469, + "2024-05-05T05": 63339.00848761885, + "2024-05-05T07": 63689.61049909705, + "2024-05-04T23": 63872.83077349047, + "2024-05-04T22": 63737.61322829947, + "2024-05-04T21": 63885.84390123266, + "2024-05-05T00": 63911.33252337207, + "2024-05-05T08": 63749.773411471775, + "2024-05-04T17": 63542.813917357154, + "2024-05-05T09": 63675.3158280892, + "2024-05-05T10": 63689.519523587216, + "2024-05-05T04": 63348.03234225199, + "2024-05-04T16": 63583.176632195966, + "2024-05-05T06": 63385.575215294775, + "2024-05-05T03": 63184.93358042782, + "2024-05-04T18": 63597.62826260953, + "2024-05-05T02": 63331.17083924649, + "2024-05-05T21": 63728.310181929184, + "2024-05-05T16": 64339.864489930624, + "2024-05-05T22": 63786.47422881504, + "2024-05-05T17": 64288.592047462174, + "2024-05-05T20": 63733.31968903028, + "2024-05-05T13": 64058.13343473781, + "2024-05-05T15": 64316.52823498879, + "2024-05-05T12": 63730.46665236506, + "2024-05-05T18": 64025.828019869245, + "2024-05-05T14": 63912.09075671993, + "2024-05-05T19": 63952.403262634805, + "2024-05-05T11": 63832.934851391365, + "2024-05-05T23": 64052.27386630458, + "2024-05-06T00": 64196.08440748894, + "2024-05-06T02": 64108.48390013938, + "2024-05-06T05": 64183.32196902798, + "2024-05-06T06": 64298.05637113164, + "2024-05-06T07": 64329.661304542875, + "2024-05-06T04": 63964.30067766932, + "2024-05-06T01": 64290.54123213346, + "2024-05-06T03": 63866.982125878516, + "2024-05-06T08": 65189.51956550038, + "2024-05-06T09": 65213.00307618012, + "2024-05-06T10": 64600.45882465142, + "2024-05-06T11": 64182.856283762165, + "2024-05-06T12": 63834.42828173539, + "2024-05-06T13": 63642.93880389735, + "2024-05-06T14": 63956.43688547396, + "2024-05-06T15": 63296.4274583461, + "2024-05-06T17": 63212.35936117068, + "2024-05-06T16": 63500.00943401455, + "2024-05-06T18": 63223.1059779934, + "2024-05-06": 63908.61691844713, + "2024-05-07": 63600.01620011247, + "2024-05-06T22": 63498.31557697369, + "2024-05-07T06": 63574.3000181499, + "2024-05-07T01": 63690.558481425745, + "2024-05-07T00": 63354.341804873206, + "2024-05-06T21": 63476.10441690921, + "2024-05-06T20": 63298.76018529631, + "2024-05-06T23": 63301.20165536333, + "2024-05-07T04": 63348.26598921291, + "2024-05-06T19": 63052.79718252264, + "2024-05-07T03": 63223.22206907659, + "2024-05-07T02": 63743.368039672656, + "2024-05-07T05": 63423.9823936435, + "2024-05-07T07": 63729.27788399427, + "2024-05-07T08": 64197.97092715867, + "2024-05-07T09": 64228.82401154, + "2024-05-07T10": 63983.0128279518, + "2024-05-07T11": 63975.00477240981, + "2024-05-07T12": 63604.89654050923, + "2024-05-07T13": 63658.54392500107, + "2024-05-07T14": 63355.31422416214, + "2024-05-07T15": 64120.0227912487, + "2024-05-08": 62313.234907089194, + "2024-05-09": 61561.75371469076, + "2024-05-10": 62751.21490918217, + "2024-05-09T13": 61248.70174066349, + "2024-05-10T00": 62863.03661670661, + "2024-05-08T08": 62234.01280531966, + "2024-05-09T14": 61333.54766127562, + "2024-05-08T10": 62410.00068167636, + "2024-05-09T04": 61543.632663388984, + "2024-05-10T01": 62816.470002266055, + "2024-05-08T03": 62763.222576469256, + "2024-05-09T07": 61447.87668599637, + "2024-05-09T11": 60953.19705644137, + "2024-05-09T00": 61295.293129946855, + "2024-05-09T01": 61462.296160660444, + "2024-05-10T06": 62886.782574526, + "2024-05-09T19": 62308.80851218709, + "2024-05-10T05": 62767.224425202214, + "2024-05-10T02": 62856.605683783724, + "2024-05-09T23": 63022.655110873675, + "2024-05-09T06": 61644.37748059864, + "2024-05-08T01": 62570.598162230664, + "2024-05-09T09": 61061.84341963673, + "2024-05-09T20": 62485.506981955295, + "2024-05-08T19": 62272.450898388655, + "2024-05-09T03": 61614.31406940343, + "2024-05-08T21": 61519.86227742974, + "2024-05-09T22": 62764.79171822873, + "2024-05-08T17": 62523.69238087062, + "2024-05-09T05": 61538.79554782354, + "2024-05-08T06": 62447.19550907694, + "2024-05-08T15": 62242.32322308136, + "2024-05-10T08": 62952.8115590948, + "2024-05-08T07": 62264.40574121558, + "2024-05-08T04": 62768.932219781345, + "2024-05-09T15": 61974.32444102199, + "2024-05-08T18": 62592.143571721856, + "2024-05-09T10": 61061.54554469901, + "2024-05-09T21": 62568.06818520269, + "2024-05-10T03": 62870.363061937795, + "2024-05-08T00": 62479.146844903946, + "2024-05-10T07": 63197.5296802511, + "2024-05-08T14": 62497.11595838402, + "2024-05-09T17": 61961.70680971268, + "2024-05-08T13": 62028.88856025008, + "2024-05-08T05": 62594.4985702235, + "2024-05-09T18": 62103.81817291471, + "2024-05-09T08": 61311.936350342396, + "2024-05-08T20": 61677.857919473674, + "2024-05-08T22": 61277.66542502341, + "2024-05-08T11": 62270.46559685434, + "2024-05-09T12": 61341.57394856342, + "2024-05-08T02": 62741.96934502195, + "2024-05-10T04": 62912.98612988297, + "2024-05-08T12": 62263.3876256878, + "2024-05-09T02": 61546.63472266114, + "2024-05-08T09": 62223.68634652902, + "2024-05-09T16": 62382.08692266822, + "2024-05-08T16": 62261.36599961404, + "2024-05-08T23": 61054.70188741217, + "2024-05-10T09": 62969.09508034645, + "2024-05-10T10": 63001.09511605731, + "2024-05-10T11": 63008.5452432874, + "2024-05-10T12": 63293.98021126339, + "2024-05-10T13": 62954.65149387931, + "2024-05-11": 60885.99774662029, + "2024-05-12": 61145.80307004248, + "2024-05-12T16": 61620.33981297193, + "2024-05-11T03": 60809.6131743, + "2024-05-10T17": 60481.57129700927, + "2024-05-11T16": 61192.796545951904, + "2024-05-10T15": 60984.39806818844, + "2024-05-11T04": 60768.318122900004, + "2024-05-11T12": 60724.082307564575, + "2024-05-12T15": 61335.40843150649, + "2024-05-11T11": 60622.772249695365, + "2024-05-12T11": 61131.283239, + "2024-05-11T22": 60928.492782, + "2024-05-11T21": 60900.91773371855, + "2024-05-10T21": 60549.065347287404, + "2024-05-10T23": 60909.028499526816, + "2024-05-12T00": 60970.353405, + "2024-05-12T03": 60890.933880000004, + "2024-05-12T12": 61102.458524199996, + "2024-05-11T08": 60854.92467407838, + "2024-05-11T17": 61091.86264626411, + "2024-05-12T19": 61314.20033331518, + "2024-05-11T23": 60878.1475652, + "2024-05-11T05": 60872.1800726, + "2024-05-12T02": 60871.28466886335, + "2024-05-11T02": 60825.66632337698, + "2024-05-10T16": 60879.8649585092, + "2024-05-12T14": 61182.62783327615, + "2024-05-11T09": 60764.981040000006, + "2024-05-10T18": 60443.0877410673, + "2024-05-10T19": 60658.641350588805, + "2024-05-11T06": 60946.14988, + "2024-05-12T08": 60922.0701564, + "2024-05-10T20": 60654.79322699031, + "2024-05-11T18": 61136.85921188755, + "2024-05-12T05": 61000.180164, + "2024-05-12T06": 60977.309316, + "2024-05-12T04": 60994.9818, + "2024-05-11T20": 60960.81669669956, + "2024-05-12T09": 60986.285367000004, + "2024-05-11T01": 60888.42119588113, + "2024-05-11T00": 60797.358361475905, + "2024-05-10T14": 62055.3908603263, + "2024-05-12T07": 60768.7235, + "2024-05-12T10": 61154.08036, + "2024-05-11T10": 60768.85815, + "2024-05-12T01": 60901.6296, + "2024-05-12T18": 61464.238567651984, + "2024-05-12T13": 61129.94896743779, + "2024-05-11T19": 61092.75485853055, + "2024-05-12T17": 61453.38309891558, + "2024-05-11T14": 60862.08176, + "2024-05-11T07": 60926.2254764, + "2024-05-11T15": 61091.8068537722, + "2024-05-11T13": 60828.00029049999, + "2024-05-10T22": 60765.3155677271, + "2024-05-13": 62737.46348778703, + "2024-05-12T21": 61194.61284875687, + "2024-05-13T06": 61212.518658344045, + "2024-05-13T00": 61547.9966967, + "2024-05-13T03": 60917.82643680399, + "2024-05-12T23": 61416.3507419, + "2024-05-13T04": 61029.24819775973, + "2024-05-13T01": 61351.659401000004, + "2024-05-13T05": 60921.30866895224, + "2024-05-13T02": 61135.72602327829, + "2024-05-12T22": 61318.76828089973, + "2024-05-12T20": 61341.18360816245, + "2024-05-13T08": 62750.82799511595, + "2024-05-13T10": 62663.79615406439, + "2024-05-13T09": 62998.79000942761, + "2024-05-13T07": 61663.41272530305, + "2024-05-13T11": 62696.38199274132, + "2024-05-13T12": 62741.153011199654, + "2024-05-13T13": 62793.79337153737, + "2024-05-13T14": 62888.010844595075, + "2024-05-13T15": 62747.48025164516, + "2024-05-13T16": 63160.67748265505, + "2024-05-14": 61771.8050654988, + "2024-05-13T17": 62794.57359744934, + "2024-05-14T01": 62844.984086346194, + "2024-05-14T02": 62577.309236171495, + "2024-05-14T06": 61901.91973534162, + "2024-05-13T19": 63021.64609453192, + "2024-05-13T22": 62814.400802148055, + "2024-05-14T04": 62492.589522798655, + "2024-05-13T21": 62992.987599218, + "2024-05-14T03": 62447.15584069964, + "2024-05-14T00": 63113.5917393, + "2024-05-14T07": 61912.26889496554, + "2024-05-13T20": 63113.79265001815, + "2024-05-14T05": 62634.65381868376, + "2024-05-13T23": 63106.0175781, + "2024-05-13T18": 62705.31020651962, + "2024-05-14T08": 61840.1756816992, + "2024-05-14T09": 61828.84304728497, + "2024-05-14T10": 61627.65844072508, + "2024-05-14T11": 61781.26892703486, + "2024-05-14T12": 61728.79731919798, + "2024-05-14T13": 61793.950238514524, + "2024-05-14T14": 61612.5852551311, + "2024-05-14T15": 61800.008282129835, + "2024-05-14T16": 61476.08791229867, + "2024-05-14T17": 61296.29504704242, + "2024-05-14T18": 61320.98109154548, + "2024-05-14T19": 61539.34967068162, + "2024-05-14T20": 61594.60727747228, + "2024-05-15": 64102.33476759905, + "2024-05-15T02": 61750.1793993, + "2024-05-15T01": 61645.13671983135, + "2024-05-14T21": 61598.700547915854, + "2024-05-15T05": 61908.038840500005, + "2024-05-15T00": 61578.34617, + "2024-05-15T06": 61882.690252500004, + "2024-05-15T03": 61883.61753799999, + "2024-05-15T07": 62030.185450869365, + "2024-05-14T23": 61565.165166130144, + "2024-05-15T04": 61880.37433500001, + "2024-05-14T22": 61660.61777167871, + "2024-05-15T08": 62111.6494179, + "2024-05-15T09": 62210.499425108115, + "2024-05-15T10": 62692.88940136513, + "2024-05-15T11": 62451.4435612978, + "2024-05-15T12": 63612.635117176585, + "2024-05-15T13": 63714.05045854203, + "2024-05-15T14": 64260.97430572749, + "2024-05-15T15": 64785.1081737218, + "2024-05-15T18": 65353.1193593225, + "2024-05-15T17": 64997.62230148558, + "2024-05-15T16": 64877.64075467643, + "2024-05-16": 66228.77337614012, + "2024-05-16T04": 65916.90449340023, + "2024-05-16T06": 65914.40646646838, + "2024-05-15T22": 66139.02461656426, + "2024-05-15T19": 65964.2925907719, + "2024-05-16T07": 66123.796505059, + "2024-05-16T03": 66007.84200895611, + "2024-05-16T05": 65841.5873438762, + "2024-05-15T21": 65943.03516423493, + "2024-05-16T02": 65991.40009527856, + "2024-05-16T00": 66269.80984583391, + "2024-05-15T23": 66245.01177262439, + "2024-05-15T20": 65875.55386429993, + "2024-05-16T01": 66044.88658440133, + "2024-05-16T08": 66175.70631468362, + "2024-05-16T09": 66269.67166089253, + "2024-05-16T10": 66193.4637889071, + "2024-05-16T11": 66209.18555282154, + "2024-05-16T12": 66254.0466633798, + "2024-05-16T13": 65942.69970364237, + "2024-05-16T14": 66318.30847267759, + "2024-05-16T15": 65728.42918936575, + "2024-05-17": 65260.879803346186, + "2024-05-17T00": 65342.9306725258, + "2024-05-16T23": 65278.76701347627, + "2024-05-16T22": 65302.69488661858, + "2024-05-16T17": 64926.96257703421, + "2024-05-16T20": 65173.19572190877, + "2024-05-16T18": 65011.71372350213, + "2024-05-16T21": 65396.441925689, + "2024-05-17T01": 65341.716788558006, + "2024-05-16T19": 65300.480823855236, + "2024-05-17T03": 65582.55497201474, + "2024-05-17T02": 65300.2277786, + "2024-05-16T16": 65397.43497037491, + "2024-05-17T04": 65535.12028509996, + "2024-05-17T05": 65536.67507226266, + "2024-05-17T06": 65738.93953353612, + "2024-05-17T07": 65995.85184801501, + "2024-05-17T08": 66466.78491911902, + "2024-05-17T09": 66158.29991688409, + "2024-05-18": 66940.1245577031, + "2024-05-19": 66957.61864194798, + "2024-05-20": 67182.51296023585, + "2024-05-21": 71247.8220156338, + "2024-05-20T04": 66644.6418080392, + "2024-05-18T11": 67287.50153859246, + "2024-05-18T17": 66885.20406405309, + "2024-05-20T15": 67014.3702652234, + "2024-05-20T16": 67381.92303601895, + "2024-05-19T00": 66939.60369066468, + "2024-05-18T18": 66839.07687657174, + "2024-05-21T06": 71196.82735369758, + "2024-05-20T23": 69611.3905181228, + "2024-05-18T13": 66922.88887746593, + "2024-05-19T17": 66697.91385421983, + "2024-05-20T11": 67164.01467726934, + "2024-05-21T07": 71194.39373599095, + "2024-05-21T05": 70911.67498138639, + "2024-05-19T23": 66362.62653342291, + "2024-05-19T13": 66899.13911068518, + "2024-05-18T06": 66882.09351931373, + "2024-05-19T07": 67044.79377811166, + "2024-05-18T14": 66899.15570579143, + "2024-05-18T21": 66980.77240665602, + "2024-05-18T20": 66993.16149557244, + "2024-05-20T18": 68349.27225759694, + "2024-05-20T17": 68180.54404758656, + "2024-05-20T00": 66272.64249561088, + "2024-05-18T01": 66923.91465295214, + "2024-05-20T10": 66884.69618157289, + "2024-05-18T12": 67240.27724416026, + "2024-05-18T09": 67050.76758946026, + "2024-05-20T21": 69504.57637501963, + "2024-05-18T16": 66873.75704663926, + "2024-05-20T06": 67132.91733880175, + "2024-05-20T03": 66657.77988188747, + "2024-05-18T03": 66931.30334636591, + "2024-05-19T01": 66887.21513691198, + "2024-05-18T02": 67006.10010623721, + "2024-05-19T06": 67094.87702168897, + "2024-05-21T00": 71464.31453626914, + "2024-05-20T12": 67004.79188347509, + "2024-05-19T12": 67340.48626146419, + "2024-05-18T04": 66977.51504189908, + "2024-05-18T10": 67142.15139991773, + "2024-05-20T07": 66229.19547082456, + "2024-05-19T22": 66270.46504052407, + "2024-05-19T20": 66062.36584223695, + "2024-05-19T14": 67023.41876397141, + "2024-05-18T15": 66834.229157437, + "2024-05-19T21": 66167.41592128316, + "2024-05-19T02": 66946.19722771575, + "2024-05-19T11": 67221.93899334126, + "2024-05-20T05": 67130.55824225837, + "2024-05-19T09": 67170.23496730052, + "2024-05-20T14": 67077.79216279765, + "2024-05-21T02": 71062.66428239856, + "2024-05-18T19": 66806.90298687122, + "2024-05-18T00": 67059.07045646293, + "2024-05-21T10": 71083.68209912875, + "2024-05-18T22": 66910.72427682597, + "2024-05-19T16": 66844.7156229581, + "2024-05-20T02": 66522.78972135102, + "2024-05-18T05": 66898.93273116312, + "2024-05-21T08": 70874.66551217888, + "2024-05-20T19": 68738.39635824885, + "2024-05-18T08": 66845.19703416312, + "2024-05-21T01": 71262.1022999113, + "2024-05-18T07": 66954.63536623433, + "2024-05-20T13": 66942.83800825503, + "2024-05-19T18": 66733.88519441667, + "2024-05-20T20": 70049.09809779184, + "2024-05-19T04": 67185.03766183594, + "2024-05-20T01": 66445.83867408073, + "2024-05-20T08": 66865.38459675979, + "2024-05-20T22": 69698.953078704, + "2024-05-21T04": 71292.60237343855, + "2024-05-19T15": 66933.37402691314, + "2024-05-19T10": 67212.61535338573, + "2024-05-19T05": 67159.40538631938, + "2024-05-21T09": 70912.4049167104, + "2024-05-19T03": 67189.45187421328, + "2024-05-19T19": 66574.73506807843, + "2024-05-21T03": 71348.57802132516, + "2024-05-18T23": 66944.29640541735, + "2024-05-19T08": 67330.16622425361, + "2024-05-20T09": 66769.97026316868, + "2024-05-21T11": 71023.3279250535, + "2024-05-26": 68987.27693477969, + "2024-05-25": 69015.2326053669, + "2024-05-28": 69400.79281064222, + "2024-05-24": 67748.01776153548, + "2024-05-27": 69010.97177848392, + "2024-05-23": 68730.68797757375, + "2024-05-22": 69851.46252033635, + "2024-05-22T20": 69609.5875489046, + "2024-05-25T08": 68873.129, + "2024-05-22T05": 69803.02356044295, + "2024-05-28T03": 68184.60214525064, + "2024-05-22T16": 70350.9402098883, + "2024-05-25T05": 68732.486004, + "2024-05-24T22": 68775.47139402003, + "2024-05-27T14": 69062.484623436, + "2024-05-22T03": 69919.92081181076, + "2024-05-23T17": 67875.90982760575, + "2024-05-24T23": 68634.21990694758, + "2024-05-26T19": 68846.59876646558, + "2024-05-26T18": 68731.8995428611, + "2024-05-26T10": 69113.32233341898, + "2024-05-27T16": 70371.19691009018, + "2024-05-24T12": 67419.80164248003, + "2024-05-26T01": 69186.0807, + "2024-05-23T07": 69561.91563088076, + "2024-05-22T08": 69940.71050807614, + "2024-05-23T09": 69713.9832956295, + "2024-05-24T18": 68986.48551527115, + "2024-05-23T01": 69459.50727793282, + "2024-05-25T15": 69094.76030914903, + "2024-05-23T16": 67958.33248741046, + "2024-05-25T03": 68701.8207, + "2024-05-28T06": 67869.67098840133, + "2024-05-25T23": 69282.21002170001, + "2024-05-24T13": 67286.2090396952, + "2024-05-26T03": 68999.2392487, + "2024-05-26T00": 69199.6628742, + "2024-05-25T06": 68653.2148, + "2024-05-27T04": 68799.96048859842, + "2024-05-22T10": 70100.033307051, + "2024-05-27T09": 68556.64095941233, + "2024-05-24T17": 68603.19172997636, + "2024-05-26T16": 68828.99973000171, + "2024-05-22T09": 69953.56607690058, + "2024-05-24T21": 68870.4039377501, + "2024-05-25T04": 68737.174128, + "2024-05-27T22": 69578.07355309938, + "2024-05-27T11": 68451.94812553407, + "2024-05-23T21": 67803.3550411176, + "2024-05-23T10": 69688.97484064763, + "2024-05-23T14": 67910.58742449233, + "2024-05-27T02": 69104.35636631727, + "2024-05-25T18": 69156.69650250001, + "2024-05-27T05": 68541.40947468324, + "2024-05-22T23": 69085.56246865306, + "2024-05-28T01": 69337.81454496275, + "2024-05-22T04": 69663.90150396545, + "2024-05-22T15": 70187.00394833053, + "2024-05-24T03": 67896.23325572383, + "2024-05-24T08": 67035.35612493662, + "2024-05-24T02": 67737.36753798605, + "2024-05-26T07": 69269.0209758, + "2024-05-27T07": 68492.55237356051, + "2024-05-25T22": 69096.5003908, + "2024-05-24T16": 68185.10218240255, + "2024-05-27T20": 69518.93476869375, + "2024-05-22T02": 70157.5807966953, + "2024-05-24T06": 67214.47103312447, + "2024-05-24T11": 67343.81187823627, + "2024-05-25T21": 69088.72013070786, + "2024-05-27T15": 69927.37936501809, + "2024-05-22T19": 69622.36810997159, + "2024-05-23T20": 67333.46252887053, + "2024-05-23T08": 69634.77077373023, + "2024-05-22T22": 69228.09734586248, + "2024-05-26T11": 69107.68754000001, + "2024-05-24T01": 67720.91831170925, + "2024-05-23T05": 69380.21746012448, + "2024-05-28T04": 67739.9029571538, + "2024-05-25T09": 69022.7528604, + "2024-05-27T18": 70017.86989408833, + "2024-05-24T10": 67366.0939967004, + "2024-05-25T19": 69150.708, + "2024-05-24T07": 67046.70157718421, + "2024-05-26T04": 68966.164134, + "2024-05-26T09": 69053.1900741445, + "2024-05-23T02": 69451.64317354346, + "2024-05-27T06": 68501.40324954556, + "2024-05-24T15": 68194.98797865983, + "2024-05-25T20": 69113.06741250001, + "2024-05-27T08": 68703.60031923083, + "2024-05-23T22": 67641.49453359497, + "2024-05-26T15": 69165.6705464188, + "2024-05-24T20": 68964.27377208257, + "2024-05-25T13": 69145.0307662818, + "2024-05-22T01": 70099.9976304836, + "2024-05-25T17": 68985.25841385544, + "2024-05-27T10": 68488.68804789138, + "2024-05-24T19": 68914.27872160789, + "2024-05-26T02": 68923.41889747842, + "2024-05-27T19": 69815.54112354705, + "2024-05-25T11": 69438.048234513, + "2024-05-27T17": 70140.01703169929, + "2024-05-26T06": 69090.50124, + "2024-05-23T00": 69378.79835461792, + "2024-05-22T12": 69842.56555419345, + "2024-05-22T00": 70142.22683030377, + "2024-05-24T05": 67334.76331019586, + "2024-05-23T15": 68072.01787204253, + "2024-05-22T13": 69711.13616756989, + "2024-05-23T04": 69457.8592210147, + "2024-05-26T08": 69250.9024, + "2024-05-26T13": 68985.4480970418, + "2024-05-28T05": 67796.05796094635, + "2024-05-22T18": 69555.7213001767, + "2024-05-22T06": 69872.3887811428, + "2024-05-22T17": 70123.45505003369, + "2024-05-23T19": 67319.59599423317, + "2024-05-25T07": 68696.098069, + "2024-05-26T22": 68584.482414, + "2024-05-25T16": 68936.10591559215, + "2024-05-26T05": 68994.29550000001, + "2024-05-24T04": 67685.3412413158, + "2024-05-25T12": 69139.05345808025, + "2024-05-28T07": 67911.79697889437, + "2024-05-23T18": 67106.6689516991, + "2024-05-26T23": 68422.441456, + "2024-05-24T09": 67184.46657004437, + "2024-05-23T03": 69382.76023172923, + "2024-05-26T14": 69120.51297592241, + "2024-05-22T14": 69791.6666693177, + "2024-05-25T14": 69022.06850694111, + "2024-05-25T00": 68589.76748290559, + "2024-05-23T23": 67673.74094896567, + "2024-05-23T13": 68958.55490859921, + "2024-05-22T11": 70055.59961153158, + "2024-05-28T00": 69264.45638030805, + "2024-05-27T23": 69360.13912561716, + "2024-05-28T02": 68644.63301891509, + "2024-05-26T21": 68442.58633631081, + "2024-05-26T12": 68993.8948864, + "2024-05-23T06": 69416.69786766784, + "2024-05-22T07": 69747.50966323738, + "2024-05-27T12": 68489.26310646722, + "2024-05-22T21": 69335.9465915179, + "2024-05-24T00": 67808.84110803384, + "2024-05-25T02": 68716.2990876, + "2024-05-27T00": 68576.14477500001, + "2024-05-26T20": 68738.063237364, + "2024-05-26T17": 68805.78290068319, + "2024-05-27T13": 68814.52625255025, + "2024-05-23T12": 69858.70897156841, + "2024-05-25T10": 69180.31627, + "2024-05-23T11": 69864.37253179589, + "2024-05-24T14": 67724.97797757007, + "2024-05-25T01": 68630.961062, + "2024-05-27T21": 69605.51487093847, + "2024-05-27T03": 68985.87137449799, + "2024-05-27T01": 69034.16811957532, + "2024-05-28T08": 67630.44161994867, + "2024-05-28T09": 68085.97342597625, + "2024-05-28T10": 68518.63457378281, + "2024-05-28T11": 68385.59505545702, + "2024-05-28T12": 68295.91824276604, + "2024-05-28T13": 68054.4380241833, + "2024-05-28T14": 67621.21061941085, + "2024-05-28T15": 67995.69842088355, + "2024-05-29": 67778.9715856835, + "2024-05-28T20": 68301.59015686209, + "2024-05-28T22": 68507.78050026094, + "2024-05-28T21": 68325.1523386259, + "2024-05-28T19": 68217.96115769497, + "2024-05-28T17": 67878.26653143532, + "2024-05-28T18": 67699.26974160346, + "2024-05-28T23": 68372.4661744838, + "2024-05-29T00": 68363.36593596151, + "2024-05-29T01": 68440.30399398453, + "2024-05-28T16": 67813.03300510348, + "2024-05-29T06": 68517.13907255016, + "2024-05-29T05": 68622.83736621274, + "2024-05-29T03": 68721.56587388273, + "2024-05-29T02": 68565.22175735947, + "2024-05-29T07": 68141.39195429205, + "2024-05-29T04": 68779.24841071306, + "2024-05-29T08": 67761.9039188225, + "2024-05-29T09": 67785.2345264097, + "2024-05-29T10": 67772.21071599548, + "2024-05-29T11": 67926.9345060424, + "2024-05-29T12": 67689.82728122824, + "2024-05-29T13": 67793.31760112572, + "2024-05-29T14": 67822.4684775114, + "2024-05-29T15": 67488.38085640385, + "2024-05-29T18": 67340.99688111404, + "2024-05-29T17": 67453.67771750882, + "2024-05-29T19": 67387.13185300984, + "2024-05-29T22": 67609.28905407981, + "2024-05-29T20": 67244.01830687973, + "2024-05-29T16": 67387.01808910789, + "2024-05-29T21": 67460.42921735697, + "2024-05-30": 68118.30099483415, + "2024-05-30T00": 67631.36034649947, + "2024-05-30T05": 68032.27887611414, + "2024-05-29T23": 67589.2675874401, + "2024-05-30T02": 67933.99061193834, + "2024-05-30T01": 67599.63768965918, + "2024-05-30T06": 67858.47067935091, + "2024-05-30T07": 67786.23827932644, + "2024-05-30T03": 67946.94444141712, + "2024-05-30T04": 68094.76021570458, + "2024-05-30T08": 67552.37064554507, + "2024-05-30T09": 67607.5003311187, + "2024-05-30T10": 67711.32466681716, + "2024-05-30T11": 67884.47803278232, + "2024-05-30T12": 67740.22984143441, + "2024-05-30T13": 68215.4232168617, + "2024-05-30T14": 68599.96690957854, + "2024-05-30T15": 68402.82102612418, + "2024-05-30T21": 68418.14802253265, + "2024-05-30T20": 68393.35365639425, + "2024-05-30T18": 69261.13210172529, + "2024-05-30T16": 68450.95106365265, + "2024-05-30T17": 69096.4799670104, + "2024-05-30T19": 68945.0826450058, + "2024-05-31": 68072.26414415851, + "2024-05-30T22": 68298.518746243, + "2024-05-30T23": 68356.27382027624, + "2024-05-31T03": 68514.0874448, + "2024-05-31T07": 68249.638964, + "2024-05-31T06": 68314.449515, + "2024-05-31T04": 68524.46424, + "2024-05-31T02": 68532.33722523482, + "2024-05-31T05": 68358.1016826, + "2024-05-31T00": 68331.94988926752, + "2024-05-31T01": 68484.56995646105, + "2024-05-31T08": 68201.7121179902, + "2024-05-31T09": 67933.39479, + "2024-05-31T10": 68136.35757051544, + "2024-05-31T11": 68325.96392177831, + "2024-05-31T12": 68678.44587656997, + "2024-05-31T13": 68423.73106257062, + "2024-05-31T14": 67727.06501384232, + "2024-06-01": 67474.95483698409, + "2024-06-01T08": 67596.84068209965, + "2024-06-01T02": 67596.39861260001, + "2024-06-01T05": 67627.2096, + "2024-05-31T21": 67549.48628713794, + "2024-06-01T00": 67533.8949829808, + "2024-05-31T18": 67285.98302251866, + "2024-05-31T15": 67320.52362498775, + "2024-05-31T23": 67357.37059763347, + "2024-05-31T22": 67537.04539268017, + "2024-06-01T01": 67495.50802454936, + "2024-06-01T07": 67590.10128020572, + "2024-06-01T04": 67657.663454, + "2024-05-31T19": 67486.77715878072, + "2024-06-01T06": 67615.14180600001, + "2024-05-31T20": 67617.42326915059, + "2024-05-31T17": 67279.68905083905, + "2024-05-31T16": 66920.02745941064, + "2024-06-01T03": 67655.84199199999, + "2024-06-01T09": 67631.3894564, + "2024-06-01T10": 67635.2185848, + "2024-06-02": 67706.83441632692, + "2024-06-01T13": 67731.406822, + "2024-06-01T15": 67712.14216600281, + "2024-06-01T18": 67694.02069601642, + "2024-06-01T12": 67658.84554879999, + "2024-06-01T21": 67707.6764889, + "2024-06-01T20": 67683.45806250001, + "2024-06-02T01": 67763.9954, + "2024-06-01T17": 67603.703736, + "2024-06-01T11": 67611.8391768, + "2024-06-02T00": 67742.702448, + "2024-06-01T23": 67714.44052416841, + "2024-06-01T14": 67718.2665456, + "2024-06-01T22": 67731.822004, + "2024-06-01T19": 67673.8865887, + "2024-06-01T16": 67620.209562, + "2024-06-02T13": 67962.50931395858, + "2024-06-02T11": 67951.72, + "2024-06-02T07": 67701.5972512, + "2024-06-02T05": 67737.05304, + "2024-06-02T08": 67706.91589599999, + "2024-06-02T04": 67756.8124906, + "2024-06-02T10": 67450.0599926, + "2024-06-02T12": 68028.54601185513, + "2024-06-02T02": 67699.10494320001, + "2024-06-02T16": 68032.02711759284, + "2024-06-02T17": 67906.31940489565, + "2024-06-02T03": 67731.4892565, + "2024-06-02T09": 67519.6698903511, + "2024-06-02T15": 68066.6603769251, + "2024-06-02T06": 67734.4267575, + "2024-06-02T14": 68162.81924184786, + "2024-06-03": 67740.01690222476, + "2024-06-03T01": 68207.3170256466, + "2024-06-02T20": 67678.90911660134, + "2024-06-03T00": 67714.83407343132, + "2024-06-02T21": 67799.67168466066, + "2024-06-02T18": 67621.27744596814, + "2024-06-02T23": 67840.93547519643, + "2024-06-02T19": 67627.86193411933, + "2024-06-02T22": 67854.13286843609, + "2024-06-03T02": 68583.06147396329, + "2024-06-03T03": 68315.42118701893, + "2024-06-03T05": 68593.47845403763, + "2024-06-03T06": 68968.62647276175, + "2024-06-03T04": 68386.66713874087, + "2024-06-03T07": 69052.59883282897 + }, + "USD ethereum": { + "2023-07-27": 1872.088593089721, + "2023-07-10": 1866.0360578521072, + "2023-08-20": 1671.2576000814242, + "2024-02-23": 2941.9404144517216, + "2024-04-05": 3294.9210601271734, + "2023-12-19": 2217.8985157110114, + "2023-08-06": 1830.6881807210773, + "2023-12-02": 2103.732381694795, + "2023-10-12": 1546.311147980805, + "2023-10-31": 1802.2390433065395, + "2023-08-29": 1710.8912841814258, + "2023-06-20": 1737.9678616546266, + "2023-09-09": 1634.0453244747537, + "2023-06-26": 1878.6422027397552, + "2023-04-13": 1992.1019483365474, + "2023-07-30": 1875.2779543043034, + "2023-05-03": 1866.5114585538834, + "2023-10-23": 1686.499262221828, + "2023-10-01": 1680.4357216898898, + "2024-03-07": 3809.534653835918, + "2023-07-05": 1912.5025743439844, + "2023-07-29": 1873.9712988368888, + "2024-01-08": 2260.422334037217, + "2023-05-29": 1900.1871467554079, + "2023-10-07": 1640.1186588134608, + "2023-09-26": 1588.3146790811957, + "2023-08-24": 1662.8822118714863, + "2023-12-05": 2229.5982270850436, + "2023-05-10": 1847.733539444138, + "2024-02-19": 2912.9134569309467, + "2024-01-07": 2242.92882749182, + "2023-10-18": 1572.011544858536, + "2023-04-25": 1828.5895452328991, + "2023-07-31": 1863.9280431272898, + "2023-05-23": 1853.1858541693848, + "2023-08-25": 1651.9817571605513, + "2024-03-09": 3917.432948907231, + "2023-04-11": 1916.2783038957311, + "2023-07-12": 1885.527876153974, + "2023-09-05": 1630.3240293903898, + "2023-06-07": 1858.92046990718, + "2023-09-16": 1636.6611825109562, + "2023-08-12": 1848.5237874789213, + "2023-05-09": 1844.7979768479804, + "2023-09-01": 1638.457230622314, + "2023-09-08": 1634.8619729540403, + "2024-03-22": 3405.48183404067, + "2023-08-10": 1850.6871387211859, + "2023-12-07": 2264.1757762203033, + "2023-11-18": 1945.7789175206647, + "2023-07-13": 1939.0497113130407, + "2023-04-30": 1903.8886501686022, + "2023-06-06": 1832.060624047269, + "2023-09-13": 1598.9140487235034, + "2023-06-17": 1730.3925451723496, + "2023-07-17": 1912.4937750006243, + "2023-07-07": 1861.3614260856123, + "2023-09-07": 1634.3060051177995, + "2024-02-12": 2528.2241926247025, + "2024-02-22": 2977.4033833672484, + "2023-04-09": 1842.5708236301903, + "2023-12-30": 2299.27431411389, + "2023-09-17": 1628.4732780267682, + "2023-04-20": 1948.2921095195038, + "2024-03-26": 3610.887374058141, + "2023-04-27": 1901.9808215410308, + "2023-10-26": 1804.5536753415352, + "2024-01-03": 2230.118502923756, + "2023-06-01": 1862.9767057449844, + "2024-01-22": 2377.4657415809816, + "2023-06-12": 1739.7421274995495, + "2023-10-03": 1657.02789476554, + "2023-06-19": 1724.693450891206, + "2023-07-09": 1867.8047908388119, + "2023-12-24": 2292.603414419228, + "2023-09-24": 1592.171925952727, + "2024-01-16": 2537.8461865504237, + "2023-10-17": 1579.340490503536, + "2024-03-18": 3570.0680786728644, + "2024-02-17": 2779.7504824427433, + "2023-12-27": 2296.2182411536915, + "2023-07-23": 1875.5289098645308, + "2023-09-03": 1635.0030725620195, + "2024-02-24": 2958.3252100329546, + "2024-01-06": 2241.8182078650243, + "2024-03-20": 3260.4225543635093, + "2023-11-21": 1997.5299587398706, + "2023-12-25": 2278.2531401717224, + "2023-09-22": 1593.7319756987447, + "2023-10-02": 1720.8638221537046, + "2024-03-27": 3567.199641077595, + "2023-04-28": 1904.530095008067, + "2023-08-04": 1833.9082432928585, + "2023-08-30": 1715.9447351886356, + "2023-04-24": 1844.3487654889652, + "2023-10-06": 1634.2683083056747, + "2023-10-13": 1545.0007049052335, + "2023-06-28": 1858.6409198111653, + "2024-02-05": 2298.5858429272675, + "2024-03-01": 3411.4895791211425, + "2023-07-15": 1934.1176715323732, + "2023-06-25": 1902.5250129178116, + "2023-12-10": 2348.936937113697, + "2023-11-23": 2061.7212151047393, + "2024-01-13": 2548.5951539857506, + "2024-03-28": 3564.6484944572676, + "2023-08-05": 1830.3770021418813, + "2024-02-09": 2486.7991595720214, + "2023-10-09": 1591.7822453390916, + "2023-05-24": 1814.771033987277, + "2024-01-09": 2298.012239503609, + "2023-12-08": 2359.5635330524424, + "2023-05-27": 1828.223975276911, + "2023-08-18": 1676.305407110091, + "2023-11-05": 1885.1891781421405, + "2023-10-22": 1634.4144043699887, + "2023-11-01": 1809.9347293122614, + "2023-05-07": 1910.8585028061232, + "2024-03-12": 3999.3272099039905, + "2023-09-11": 1584.1528990458285, + "2024-03-03": 3428.7819410221714, + "2024-02-04": 2299.4265724684906, + "2024-01-28": 2277.9574300035815, + "2023-04-18": 2095.158015146061, + "2023-07-06": 1903.6558554546464, + "2023-07-01": 1921.9209818183406, + "2023-05-18": 1817.907227325931, + "2023-11-07": 1886.025271039351, + "2023-11-25": 2081.4506856208604, + "2023-06-04": 1902.3607300961073, + "2024-02-25": 3038.6117233554296, + "2023-12-01": 2090.8666623401623, + "2023-07-14": 1994.8464440572468, + "2024-01-26": 2247.718533416445, + "2023-08-03": 1837.840312549095, + "2024-02-28": 3314.8494159030956, + "2023-09-15": 1627.1087062566464, + "2023-07-18": 1899.000185837377, + "2023-04-21": 1910.147242056298, + "2023-12-21": 2227.436877288254, + "2023-07-20": 1896.098634329933, + "2024-03-06": 3809.6152546376575, + "2023-09-30": 1675.708053330938, + "2023-12-12": 2218.382456514459, + "2024-02-13": 2646.4629050667127, + "2023-05-19": 1809.928493258163, + "2023-09-20": 1629.9825637295735, + "2023-07-08": 1861.2134675211812, + "2023-09-19": 1643.491792260601, + "2023-09-29": 1666.908593366313, + "2023-09-12": 1592.5300911426323, + "2023-06-13": 1742.792806814403, + "2023-10-04": 1642.6956137954494, + "2024-03-02": 3422.5787366731174, + "2023-10-08": 1632.5610521456554, + "2023-11-20": 2023.6273713319138, + "2023-12-20": 2211.0648807022985, + "2023-12-31": 2295.466028963214, + "2023-11-06": 1894.531094921208, + "2023-08-22": 1654.2307705895992, + "2023-06-27": 1879.4335845840787, + "2023-04-14": 2106.1986089109555, + "2023-06-09": 1840.6077508569822, + "2024-03-17": 3567.0046423018125, + "2023-09-18": 1639.32625399374, + "2024-04-01": 3535.3872581903934, + "2024-01-19": 2468.694670431303, + "2023-11-11": 2059.691463780839, + "2023-05-14": 1803.443043041881, + "2023-05-13": 1802.630230291909, + "2023-05-06": 1929.698217357505, + "2023-04-16": 2097.5850165937322, + "2023-11-19": 1962.1984407552197, + "2023-04-15": 2097.262745146973, + "2023-05-16": 1818.4011117780262, + "2023-09-23": 1592.9439393752575, + "2023-07-02": 1917.694729562872, + "2023-08-15": 1839.4733469554126, + "2024-01-25": 2215.0656363265157, + "2024-03-13": 4008.4805236146312, + "2024-01-21": 2472.0160592695374, + "2024-02-01": 2273.1432864862945, + "2023-06-15": 1645.460278534929, + "2024-03-16": 3675.3969459884647, + "2023-11-27": 2024.7559427086544, + "2024-01-10": 2411.611547455281, + "2024-03-15": 3697.5756690784724, + "2023-06-21": 1829.7824262817874, + "2024-01-02": 2380.7222627716787, + "2023-04-26": 1877.193574314775, + "2023-07-11": 1875.0541049632097, + "2023-10-25": 1788.692674247013, + "2024-01-01": 2302.770349848175, + "2024-02-14": 2745.099291044224, + "2023-09-04": 1632.4443734796612, + "2023-09-06": 1630.553627874499, + "2024-04-03": 3314.2879535300726, + "2024-03-08": 3929.2306788103338, + "2023-11-28": 2031.415143354589, + "2023-12-03": 2162.037001064913, + "2023-08-02": 1853.7038878416924, + "2023-08-27": 1651.1841537694993, + "2023-06-22": 1898.438840818786, + "2023-10-20": 1606.5432848705484, + "2023-05-25": 1794.7177773689598, + "2023-10-10": 1578.5558058095608, + "2024-01-14": 2538.8736196547684, + "2023-12-15": 2263.882257171251, + "2023-10-19": 1556.514618700774, + "2024-02-08": 2426.4523429986957, + "2023-11-08": 1887.1852795037541, + "2023-11-12": 2051.289923748857, + "2023-12-22": 2308.306944466685, + "2023-05-20": 1814.9528329092082, + "2023-05-31": 1867.7931716143923, + "2024-03-23": 3362.48793481736, + "2024-04-10": 3510.3727506127843, + "2023-09-27": 1596.3807228815979, + "2024-03-04": 3522.624224920206, + "2023-09-10": 1622.8878733469708, + "2024-02-29": 3448.50143974521, + "2023-07-22": 1888.487057490296, + "2023-07-21": 1892.4827562223588, + "2023-06-30": 1888.4182029621636, + "2023-12-29": 2343.8291710796184, + "2023-12-04": 2228.718584367442, + "2023-09-21": 1593.3856646450424, + "2023-06-02": 1890.6337234381083, + "2023-10-11": 1562.8549057814826, + "2023-07-19": 1907.629970898301, + "2023-05-05": 1928.0523666098816, + "2024-03-21": 3516.237639992645, + "2024-04-08": 3629.472537231993, + "2023-04-29": 1901.9099264564393, + "2023-06-14": 1739.274381554306, + "2023-10-05": 1635.8071668018285, + "2023-10-16": 1583.0219938427456, + "2024-02-10": 2495.3644253912607, + "2024-04-07": 3391.934131364736, + "2023-05-21": 1813.1541191684007, + "2024-02-20": 2930.558692672859, + "2023-11-17": 1961.6382846915578, + "2023-12-11": 2233.4536016954585, + "2023-11-26": 2075.4218333783856, + "2023-11-16": 2040.4606507238966, + "2023-06-29": 1852.0863720787243, + "2023-04-12": 1894.9639777423665, + "2023-06-11": 1752.2352942997672, + "2024-02-02": 2305.1128776101946, + "2023-09-14": 1625.8528080021156, + "2024-01-27": 2268.124824707984, + "2024-03-30": 3512.9501512018664, + "2023-05-04": 1898.3802681455918, + "2023-09-28": 1627.8947971238524, + "2023-10-27": 1782.5209736384847, + "2023-05-01": 1843.2762122440988, + "2023-05-15": 1827.196029723383, + "2023-11-22": 2022.2359702805072, + "2023-06-03": 1901.7504842812689, + "2024-01-18": 2515.8051722859677, + "2023-08-26": 1649.285330192964, + "2024-02-15": 2805.2145033779693, + "2023-10-28": 1786.7779765000002, + "2024-03-24": 3374.3778903277753, + "2023-04-22": 1859.2739705968852, + "2023-04-10": 1862.0461039798975, + "2023-12-06": 2266.2584334605513, + "2023-11-10": 2098.007559052888, + "2024-01-30": 2316.354552355012, + "2023-08-09": 1855.9314628077407, + "2023-05-02": 1836.8974367795015, + "2023-11-14": 2041.7978598922618, + "2024-01-23": 2221.502060888, + "2024-01-31": 2324.8627731319557, + "2024-01-11": 2609.008959188797, + "2024-02-18": 2805.2015219288805, + "2023-06-16": 1670.5461735376664, + "2023-10-30": 1807.7457141222906, + "2023-12-17": 2215.3903323415457, + "2024-02-26": 3107.5455618426317, + "2023-07-16": 1931.32209668583, + "2024-01-05": 2245.422589130324, + "2023-08-23": 1647.0333552641366, + "2024-03-11": 4027.7623335224225, + "2023-08-01": 1833.2733667014345, + "2024-03-14": 3919.753888578037, + "2024-02-21": 2920.9307937642025, + "2023-08-28": 1648.499874372775, + "2023-07-04": 1954.2822557562383, + "2023-12-13": 2187.359727574453, + "2023-08-13": 1848.6781665903065, + "2024-03-31": 3619.860033867718, + "2023-12-09": 2358.1513105130784, + "2024-04-02": 3308.0816238498596, + "2024-02-06": 2333.8509773090886, + "2024-04-09": 3620.5532915283566, + "2023-05-30": 1903.7469322287618, + "2023-11-04": 1837.2556369608346, + "2024-01-15": 2516.7430294778214, + "2023-07-03": 1960.1290005025942, + "2023-12-28": 2383.326084047728, + "2023-04-23": 1863.2254241977303, + "2023-04-17": 2084.3581733240044, + "2023-05-08": 1857.9855529935062, + "2024-02-27": 3241.8718324083225, + "2024-02-07": 2375.5035757867963, + "2023-09-25": 1578.4425589096595, + "2024-03-19": 3300.3576156892395, + "2024-03-10": 3928.588844479554, + "2023-09-02": 1633.5154446535207, + "2024-01-12": 2604.1839946723853, + "2023-11-29": 2048.4794618957053, + "2023-10-15": 1555.6069132682233, + "2023-11-30": 2035.5856128150128, + "2024-01-24": 2229.5761271233982, + "2023-08-11": 1846.4334362617592, + "2024-02-11": 2514.2240204384098, + "2023-06-08": 1843.960422350612, + "2023-08-16": 1821.8319790596506, + "2023-11-15": 2010.6243510382453, + "2023-12-16": 2243.6231784401084, + "2024-03-29": 3540.054396186204, + "2024-04-04": 3331.9586108704134, + "2023-06-10": 1744.7677698595223, + "2023-07-28": 1868.5288494149404, + "2024-01-20": 2469.6469880842915, + "2023-10-21": 1611.0161735378147, + "2023-05-12": 1770.166984052352, + "2023-11-03": 1799.7320912800644, + "2023-08-31": 1699.0924346535755, + "2024-01-29": 2270.720413251889, + "2024-01-04": 2239.449004040109, + "2023-05-22": 1815.2221561164233, + "2023-07-26": 1858.7975824909481, + "2023-11-13": 2058.926291897119, + "2024-03-25": 3490.6157713892703, + "2023-08-07": 1827.7778931325702, + "2023-10-29": 1791.3292765096062, + "2023-07-25": 1855.4145533948076, + "2023-05-17": 1817.623210420559, + "2023-10-24": 1810.5978038432124, + "2023-06-05": 1864.780384936013, + "2023-11-02": 1832.9253555569676, + "2023-12-18": 2168.634993815699, + "2023-11-24": 2089.6268200219065, + "2023-08-21": 1671.7101325508556, + "2023-08-14": 1845.471727544141, + "2023-05-26": 1817.1770601337453, + "2024-03-05": 3682.621744949228, + "2024-04-06": 3337.250477175273, + "2023-12-23": 2292.445414040708, + "2024-02-03": 2307.63822350803, + "2024-02-16": 2819.8693147377617, + "2023-05-28": 1849.2120312376787, + "2023-12-14": 2282.347515370628, + "2023-06-24": 1887.9823898859822, + "2023-08-17": 1757.2955451414255, + "2023-12-26": 2235.6352659808026, + "2023-11-09": 1943.613431942541, + "2023-05-11": 1816.6016914091085, + "2023-08-19": 1663.2305554855504, + "2023-06-23": 1884.8746515841876, + "2023-06-18": 1730.4372666734064, + "2023-08-08": 1840.3356250275526, + "2023-07-24": 1850.5363635927517, + "2023-10-14": 1552.9106074786898, + "2024-01-17": 2544.651699826289, + "2023-04-19": 1984.2401486573895, + "2024-04-06T23": 3380.63522, + "2024-04-07T13": 3408.9557304, + "2024-04-05T00": 3319.343040693393, + "2024-04-04T13": 3367.8068531578892, + "2024-04-03T19": 3319.5039914990866, + "2024-04-04T14": 3378.6863274952516, + "2024-04-09T08": 3609.834649857687, + "2024-04-04T15": 3375.1651594449695, + "2024-04-04T02": 3285.0362407716093, + "2024-04-05T21": 3333.9193314000026, + "2024-04-03T17": 3329.8404135399765, + "2024-04-04T03": 3278.3379897417517, + "2024-04-04T16": 3378.2038391825486, + "2024-04-07T20": 3397.9010363425027, + "2024-04-06T17": 3341.769600421565, + "2024-04-07T15": 3400.8180408, + "2024-04-07T09": 3385.892793061438, + "2024-04-06T20": 3353.2381000000005, + "2024-04-07T22": 3416.3415999999997, + "2024-04-05T10": 3275.7525808976543, + "2024-04-05T18": 3325.077493495527, + "2024-04-07T03": 3387.6535900557847, + "2024-04-04T12": 3347.498698, + "2024-04-03T13": 3310.956468267972, + "2024-04-05T12": 3240.3562590995166, + "2024-04-10T06": 3543.7669767193715, + "2024-04-03T16": 3353.821671299148, + "2024-04-10T10": 3508.1726742738633, + "2024-04-03T21": 3302.357515868917, + "2024-04-05T01": 3304.0422718983277, + "2024-04-07T04": 3385.6610694476235, + "2024-04-04T18": 3413.8143666474584, + "2024-04-05T11": 3263.542346424276, + "2024-04-08T13": 3646.450236667597, + "2024-04-03T20": 3306.012584264958, + "2024-04-09T05": 3691.9715824507025, + "2024-04-08T10": 3620.200961439805, + "2024-04-04T10": 3344.036188934029, + "2024-04-05T17": 3321.202850259794, + "2024-04-08T20": 3688.1424600057276, + "2024-04-07T19": 3383.924009211917, + "2024-04-04T05": 3289.3800173535565, + "2024-04-08T23": 3709.224815748923, + "2024-04-08T01": 3429.884156129929, + "2024-04-07T10": 3390.1467391527744, + "2024-04-05T20": 3333.1792116503466, + "2024-04-05T08": 3290.390500559726, + "2024-04-06T15": 3342.5190494999997, + "2024-04-05T16": 3321.0530245422597, + "2024-04-05T06": 3282.8495452612374, + "2024-04-09T15": 3512.895746354589, + "2024-04-06T21": 3363.7407250000006, + "2024-04-09T09": 3635.49066916676, + "2024-04-08T22": 3694.340449818243, + "2024-04-08T16": 3648.132952607609, + "2024-04-07T07": 3388.9111601669624, + "2024-04-04T09": 3335.004417904065, + "2024-04-10T05": 3531.665618609728, + "2024-04-09T17": 3492.877506789021, + "2024-04-06T11": 3335.1935900000003, + "2024-04-06T18": 3343.8086279999998, + "2024-04-05T09": 3270.3598047732025, + "2024-04-08T07": 3463.0055107999997, + "2024-04-04T06": 3305.824873743476, + "2024-04-08T12": 3643.2347830654976, + "2024-04-05T15": 3314.2505146660737, + "2024-04-04T20": 3321.7312128967533, + "2024-04-04T22": 3320.571844710311, + "2024-04-10T02": 3506.0008858513565, + "2024-04-09T19": 3512.6253671967506, + "2024-04-04T07": 3325.75764345551, + "2024-04-04T04": 3269.008591548339, + "2024-04-08T06": 3426.605584, + "2024-04-08T18": 3686.4928339854473, + "2024-04-05T02": 3283.096236966724, + "2024-04-09T07": 3646.6861155409792, + "2024-04-09T14": 3556.5853660761477, + "2024-04-08T05": 3427.1328109, + "2024-04-03T15": 3333.791169741401, + "2024-04-08T14": 3633.919376361156, + "2024-04-09T10": 3624.8755548382323, + "2024-04-06T01": 3325.2121155, + "2024-04-06T16": 3336.1471374, + "2024-04-09T03": 3703.3203678728073, + "2024-04-09T11": 3635.329049563214, + "2024-04-07T01": 3386.606715746643, + "2024-04-03T22": 3317.531051066722, + "2024-04-07T21": 3404.84479984555, + "2024-04-10T04": 3515.3209004379005, + "2024-04-08T15": 3634.226045923604, + "2024-04-04T21": 3327.2660094948683, + "2024-04-07T17": 3384.5809227534664, + "2024-04-07T11": 3390.5607481, + "2024-04-08T03": 3418.3230536371934, + "2024-04-10T00": 3506.3419931, + "2024-04-08T04": 3419.923572, + "2024-04-03T18": 3308.3492645566084, + "2024-04-06T22": 3361.9466736, + "2024-04-06T08": 3333.6130998, + "2024-04-10T12": 3520.3655942767323, + "2024-04-08T00": 3438.008294731439, + "2024-04-09T01": 3681.768560535921, + "2024-04-03T12": 3314.048160804184, + "2024-04-10T08": 3515.016688522124, + "2024-04-06T05": 3342.23617, + "2024-04-04T11": 3341.132935, + "2024-04-05T04": 3301.709675938881, + "2024-04-07T00": 3356.7960903, + "2024-04-07T06": 3388.6972158, + "2024-04-09T04": 3691.4578697233196, + "2024-04-05T13": 3260.2490481264945, + "2024-04-09T23": 3500.1493800000003, + "2024-04-04T23": 3326.9901007322405, + "2024-04-05T03": 3294.742637562648, + "2024-04-04T17": 3384.9616481093763, + "2024-04-10T07": 3540.467015309268, + "2024-04-04T08": 3329.104730143731, + "2024-04-08T17": 3653.6489690255125, + "2024-04-06T06": 3341.0688000000005, + "2024-04-09T12": 3632.317473703862, + "2024-04-06T03": 3334.1475742748758, + "2024-04-08T11": 3625.09715757603, + "2024-04-08T21": 3688.8403606541656, + "2024-04-05T23": 3323.9178294858134, + "2024-04-05T14": 3306.1059781391164, + "2024-04-04T19": 3374.5714093818156, + "2024-04-04T01": 3324.7605684756954, + "2024-04-08T08": 3565.9147788072128, + "2024-04-06T19": 3351.360138, + "2024-04-10T09": 3518.1988954, + "2024-04-09T20": 3517.9840826181744, + "2024-04-06T04": 3330.0081969, + "2024-04-07T05": 3394.4278759294148, + "2024-04-07T23": 3439.3884700273616, + "2024-04-06T10": 3338.3244692, + "2024-04-03T23": 3319.064223763484, + "2024-04-03T14": 3353.3049974426767, + "2024-04-06T02": 3320.826037328706, + "2024-04-08T02": 3427.3180454467315, + "2024-04-09T00": 3699.742672535129, + "2024-04-06T07": 3334.0299090000003, + "2024-04-05T22": 3325.3908488, + "2024-04-10T11": 3519.3388270000005, + "2024-04-08T19": 3690.4005728534025, + "2024-04-06T13": 3322.866561, + "2024-04-09T06": 3674.512809595686, + "2024-04-09T02": 3707.763639331002, + "2024-04-09T22": 3512.5043920060057, + "2024-04-10T03": 3490.9017830021144, + "2024-04-04T00": 3322.827219728705, + "2024-04-06T14": 3330.4324, + "2024-04-07T12": 3393.5416719, + "2024-04-05T07": 3285.2283583408175, + "2024-04-07T14": 3403.4205479999996, + "2024-04-09T13": 3620.3693454281697, + "2024-04-07T18": 3379.684321841789, + "2024-04-08T09": 3608.288078246635, + "2024-04-09T18": 3503.3620665767958, + "2024-04-05T19": 3332.881424241751, + "2024-04-06T00": 3326.616304, + "2024-04-10T01": 3490.7160059667926, + "2024-04-07T08": 3392.0668080000005, + "2024-04-06T12": 3331.6894136, + "2024-04-05T05": 3271.0552512073264, + "2024-04-07T02": 3394.0951076737965, + "2024-04-09T16": 3512.557398468981, + "2024-04-07T16": 3403.2462646, + "2024-04-06T09": 3341.9920943, + "2024-04-09T21": 3504.4437996666466, + "latest": 3813.74, + "2024-04-10T13": 3432.416716190677, + "2024-04-10T14": 3474.9376250581436, + "2024-04-10T15": 3474.645223975965, + "2024-04-11": 3541.9342561194862, + "2024-04-10T17": 3521.38455466321, + "2024-04-11T07": 3590.1304845, + "2024-04-10T20": 3515.814666387211, + "2024-04-10T19": 3505.3138245502487, + "2024-04-11T05": 3562.4912483999997, + "2024-04-11T02": 3555.6375745187333, + "2024-04-11T06": 3574.3101842, + "2024-04-11T03": 3564.3187122, + "2024-04-11T00": 3533.081994, + "2024-04-11T08": 3600.1319846497286, + "2024-04-10T22": 3543.881363619299, + "2024-04-10T16": 3496.4962516304054, + "2024-04-10T23": 3540.5926958733653, + "2024-04-11T04": 3561.5345342670057, + "2024-04-11T01": 3535.5046446, + "2024-04-10T21": 3506.190493688677, + "2024-04-10T18": 3498.101638508466, + "2024-04-11T09": 3587.055816293848, + "2024-04-11T10": 3572.432672234366, + "2024-04-11T11": 3559.6337263900436, + "2024-04-11T12": 3553.048536130192, + "2024-04-11T13": 3541.7292665083987, + "2024-04-11T14": 3524.6209764333666, + "2024-04-11T15": 3503.4837706083554, + "2024-04-12T09": 3517.7215059, + "2024-04-12T00": 3518.3162649, + "2024-04-12T03": 3530.1129760000003, + "2024-04-12T02": 3523.9261875, + "2024-04-12T10": 3515.96898, + "2024-04-12T11": 3534.3010848, + "2024-04-12T07": 3522.0195582, + "2024-04-12T06": 3533.5373303, + "2024-04-12T05": 3544.55442, + "2024-04-12T01": 3513.6905420000003, + "2024-04-12T08": 3522.3674178, + "2024-04-12T04": 3542.7204938, + "2024-04-12T12": 3510.120354025287, + "2024-04-12": 3504.1159729100136, + "2024-04-13": 3242.6269305459964, + "2024-04-12T20": 3238.4732884710065, + "2024-04-12T16": 3428.778194733173, + "2024-04-13T02": 3195.3359347231526, + "2024-04-12T17": 3336.7811658659484, + "2024-04-12T21": 3217.3654487580075, + "2024-04-13T01": 3190.09955939679, + "2024-04-12T19": 3218.1070878942974, + "2024-04-12T14": 3459.6896838152984, + "2024-04-12T22": 3219.2486214359324, + "2024-04-12T13": 3476.6276058403714, + "2024-04-12T23": 3226.0404304444164, + "2024-04-13T00": 3228.5583904238506, + "2024-04-12T18": 3225.0782712928726, + "2024-04-12T15": 3444.1371154781536, + "2024-04-14": 3022.0057852476043, + "2024-04-13T04": 3235.692003713362, + "2024-04-13T07": 3259.0589236296387, + "2024-04-14T01": 2989.973981627525, + "2024-04-13T14": 3265.7999350750374, + "2024-04-13T20": 2933.85587507062, + "2024-04-13T13": 3279.2961657379624, + "2024-04-13T03": 3217.186375157146, + "2024-04-13T23": 3037.6375254026057, + "2024-04-13T11": 3282.6447365181657, + "2024-04-14T02": 2975.0390369993816, + "2024-04-13T22": 2980.9105113062037, + "2024-04-13T21": 2910.1969545015154, + "2024-04-13T09": 3260.0274593625204, + "2024-04-13T19": 3200.1515699509337, + "2024-04-13T16": 3258.8696743251057, + "2024-04-13T15": 3275.158120495292, + "2024-04-13T17": 3219.9167769401047, + "2024-04-13T08": 3256.349905013676, + "2024-04-13T06": 3256.7864205570017, + "2024-04-13T05": 3255.4042372579756, + "2024-04-13T18": 3218.8585529450834, + "2024-04-13T10": 3268.786326956192, + "2024-04-14T00": 2979.9658544395866, + "2024-04-13T12": 3270.592735477455, + "2024-04-14T03": 2942.8483599238793, + "2024-04-14T19": 3073.571813045457, + "2024-04-14T11": 3028.175034839653, + "2024-04-14T14": 3026.425444199124, + "2024-04-14T16": 3083.7896320416953, + "2024-04-14T21": 3061.949696389307, + "2024-04-14T22": 3152.5577280093958, + "2024-04-14T04": 3034.9103553919704, + "2024-04-14T08": 3085.6156148003406, + "2024-04-14T17": 3052.605180339108, + "2024-04-14T23": 3159.3442509950055, + "2024-04-14T20": 3074.6039035541016, + "2024-04-14T05": 3058.8721210581666, + "2024-04-14T13": 3048.464316664318, + "2024-04-14T10": 3049.990821535518, + "2024-04-14T15": 3050.8788957258803, + "2024-04-14T12": 3041.1610970016036, + "2024-04-14T18": 3078.9941466439577, + "2024-04-14T09": 3052.802707154077, + "2024-04-14T06": 3085.0326905257302, + "2024-04-14T07": 3087.2499268012325, + "2024-04-15T01": 3124.185374633762, + "2024-04-15T00": 3130.7693400469007, + "2024-04-15T02": 3135.9105248647584, + "2024-04-15T04": 3138.783573590409, + "2024-04-15T03": 3148.624455892143, + "2024-04-15T05": 3147.918320988386, + "2024-04-15T06": 3231.62499068559, + "2024-04-15T07": 3243.5325274896504, + "2024-04-15T09": 3254.625350550703, + "2024-04-15T08": 3254.6036027394794, + "2024-04-15T10": 3258.2589640982515, + "2024-04-15T12": 3238.779283446285, + "2024-04-15T14": 3185.0895018341666, + "2024-04-15T13": 3224.898029326271, + "2024-04-15T11": 3246.7672773711092, + "2024-04-15": 3145.5972353127, + "2024-04-16": 3070.375186030533, + "2024-04-16T02": 3077.495915540451, + "2024-04-15T23": 3103.3607585834643, + "2024-04-16T00": 3082.2747854376053, + "2024-04-15T15": 3145.895806536556, + "2024-04-15T19": 3086.616980751264, + "2024-04-16T03": 3079.6570807736516, + "2024-04-15T20": 3092.0056496922825, + "2024-04-15T16": 3152.783395666879, + "2024-04-15T18": 3085.5035607206178, + "2024-04-16T01": 3095.5814536760004, + "2024-04-15T21": 3090.977075901755, + "2024-04-15T17": 3116.5626719714082, + "2024-04-15T22": 3107.7237901947874, + "2024-04-16T06": 3070.7946002068165, + "2024-04-16T05": 3046.0755649979005, + "2024-04-16T08": 3109.4076732613566, + "2024-04-16T04": 3036.420349322651, + "2024-04-16T07": 3100.675701382575, + "2024-04-16T09": 3091.02655174296, + "2024-04-16T10": 3043.965990777886, + "2024-04-16T11": 3063.561147558005, + "2024-04-16T12": 3077.43521087558, + "2024-04-16T18": 3061.795406600364, + "2024-04-16T20": 3064.7295859923934, + "2024-04-16T13": 3071.3153506143954, + "2024-04-16T14": 3065.7548989872057, + "2024-04-16T21": 3095.67015579666, + "2024-04-16T15": 3033.0791614052896, + "2024-04-16T16": 3021.136519896327, + "2024-04-16T17": 3060.9992721509484, + "2024-04-16T19": 3064.8618379045365, + "2024-04-17": 3088.6461712560017, + "2024-04-17T00": 3084.857964867744, + "2024-04-17T09": 3081.5151666394136, + "2024-04-17T08": 3080.970723019382, + "2024-04-17T02": 3082.010234634351, + "2024-04-17T05": 3106.686123046836, + "2024-04-17T03": 3091.828242, + "2024-04-16T22": 3090.8289415093554, + "2024-04-16T23": 3090.741826789953, + "2024-04-17T06": 3091.6952514149007, + "2024-04-17T01": 3087.679291250254, + "2024-04-17T04": 3112.3184419811623, + "2024-04-17T07": 3082.5759771090993, + "2024-04-17T10": 3067.554648036743, + "2024-04-17T11": 3063.9552651659824, + "2024-04-17T12": 3033.5201342704095, + "2024-04-17T13": 3036.404192809336, + "2024-04-18T09": 2999.6128779379733, + "2024-04-18T10": 3004.8436526275837, + "2024-04-18T04": 3024.719903059339, + "2024-04-18T00": 2972.4456769616304, + "2024-04-18T08": 2979.821060442121, + "2024-04-18T07": 2977.6457111579193, + "2024-04-18T01": 2999.239922349119, + "2024-04-18T02": 3006.0509747938313, + "2024-04-18T03": 3025.3714164238527, + "2024-04-18T05": 3006.955145096449, + "2024-04-18T06": 2972.344765696124, + "2024-04-18T12": 3024.279400889927, + "2024-04-18T11": 3050.941938578798, + "2024-04-18": 3028.8294874968446, + "2024-04-19": 3066.621923599688, + "2024-04-18T19": 3060.5550488707104, + "2024-04-19T03": 2978.3812089622625, + "2024-04-18T18": 3041.6007011387674, + "2024-04-18T13": 3029.523309396145, + "2024-04-19T04": 3001.00307897246, + "2024-04-19T05": 2999.896620248858, + "2024-04-19T00": 3056.210916102992, + "2024-04-18T20": 3067.099745528416, + "2024-04-19T01": 2988.8232529460815, + "2024-04-18T17": 3055.4935339811173, + "2024-04-19T02": 2901.7652082859186, + "2024-04-18T21": 3070.2718299643134, + "2024-04-18T14": 3078.3345755139435, + "2024-04-18T16": 3066.993833577479, + "2024-04-18T15": 3067.5549527440044, + "2024-04-18T23": 3069.1254942532933, + "2024-04-18T22": 3067.533791260166, + "2024-04-19T06": 3032.571695801046, + "2024-04-19T07": 3103.8774058607482, + "2024-04-19T08": 3084.7279782528017, + "2024-04-19T09": 3111.722911422784, + "2024-04-19T10": 3103.065595904133, + "2024-04-19T11": 3100.989786353055, + "2024-04-19T12": 3104.0777218749568, + "2024-04-19T13": 3095.8753697066354, + "2024-04-19T14": 3101.5259570349376, + "2024-04-19T15": 3086.6963518126727, + "2024-04-20": 3064.139645567434, + "2024-04-19T22": 3091.4626636264015, + "2024-04-19T23": 3048.9264850580926, + "2024-04-19T20": 3089.945282562617, + "2024-04-19T19": 3086.762591170603, + "2024-04-19T21": 3095.095517386377, + "2024-04-19T18": 3077.56786508736, + "2024-04-19T16": 3067.0471027100816, + "2024-04-19T17": 3071.2834217052646, + "2024-04-20T00": 3050.8831549798447, + "2024-04-20T01": 3040.7129988345523, + "2024-04-21": 3160.0744500944834, + "2024-04-20T16": 3101.699232, + "2024-04-20T19": 3141.101641890516, + "2024-04-20T15": 3095.9738, + "2024-04-20T02": 3055.119017046303, + "2024-04-20T09": 3040.1213795999993, + "2024-04-20T04": 3059.346733294961, + "2024-04-20T10": 3040.7552170676286, + "2024-04-20T22": 3149.6909658758545, + "2024-04-21T00": 3142.3908536, + "2024-04-20T12": 3053.4410880000005, + "2024-04-21T04": 3166.7494764000003, + "2024-04-20T05": 3064.319739324578, + "2024-04-20T18": 3146.166239650285, + "2024-04-20T11": 3049.9913367, + "2024-04-20T23": 3154.9567048555873, + "2024-04-20T08": 3053.0071599999997, + "2024-04-20T13": 3063.4738160000006, + "2024-04-21T02": 3170.1925373999998, + "2024-04-21T01": 3150.6293646999998, + "2024-04-20T20": 3158.278528108286, + "2024-04-20T03": 3053.7426087441704, + "2024-04-20T14": 3062.894480995903, + "2024-04-20T07": 3064.04142, + "2024-04-20T17": 3138.4349965862953, + "2024-04-20T21": 3156.663848192541, + "2024-04-20T06": 3063.4336626, + "2024-04-21T03": 3181.2273397999998, + "2024-04-21T16": 3137.778304322016, + "2024-04-21T11": 3170.965763, + "2024-04-21T17": 3140.1945423466627, + "2024-04-21T08": 3178.6891170386884, + "2024-04-21T12": 3165.3629459999997, + "2024-04-21T15": 3158.9221898853407, + "2024-04-21T06": 3182.5343043000003, + "2024-04-21T07": 3178.4253339912834, + "2024-04-21T14": 3150.2929120000003, + "2024-04-21T13": 3152.7779975, + "2024-04-21T05": 3180.5452682000005, + "2024-04-21T10": 3163.883991512859, + "2024-04-21T09": 3170.4042048, + "2024-04-21T19": 3150.816046517901, + "2024-04-21T22": 3158.5789839999993, + "2024-04-21T23": 3147.9279927, + "2024-04-21T21": 3157.6210180000003, + "2024-04-21T20": 3142.984267, + "2024-04-21T18": 3145.3029350049956, + "2024-04-22": 3197.878397981945, + "2024-04-22T00": 3153.446841, + "2024-04-22T05": 3212.3284168551004, + "2024-04-22T04": 3194.483873156521, + "2024-04-22T02": 3141.292899345904, + "2024-04-22T01": 3151.7381631999997, + "2024-04-22T06": 3227.648447817229, + "2024-04-22T03": 3174.7287548545623, + "2024-04-22T07": 3212.5426825860404, + "2024-04-22T08": 3206.5031502883085, + "2024-04-22T09": 3213.3601400023654, + "2024-04-22T10": 3217.0586522430413, + "2024-04-22T11": 3202.1892985804184, + "2024-04-22T12": 3200.2796, + "2024-04-22T13": 3197.918398393232, + "2024-04-22T14": 3196.474834135143, + "2024-04-22T15": 3181.5536396047532, + "2024-04-22T16": 3184.5828046939014, + "2024-04-23": 3205.6089684957246, + "2024-04-23T03": 3189.6933670000003, + "2024-04-22T19": 3186.815168328555, + "2024-04-22T17": 3205.4142123876036, + "2024-04-22T23": 3214.674113, + "2024-04-22T20": 3193.6276180065047, + "2024-04-22T21": 3191.601573763501, + "2024-04-22T18": 3199.2510604214344, + "2024-04-23T06": 3186.4133927999997, + "2024-04-22T22": 3208.3045903913044, + "2024-04-23T04": 3187.3420745000003, + "2024-04-23T01": 3214.6032064999995, + "2024-04-23T07": 3162.0722925000005, + "2024-04-23T00": 3208.6308781999996, + "2024-04-23T05": 3182.7889729351587, + "2024-04-23T02": 3210.0621601000003, + "2024-04-23T08": 3163.0334566999995, + "2024-04-23T09": 3168.468576, + "2024-04-23T10": 3178.7862906, + "2024-04-23T11": 3175.891968, + "2024-04-23T12": 3184.2377321999998, + "2024-04-23T13": 3187.6291388255295, + "2024-04-23T14": 3242.301256560578, + "2024-04-23T15": 3232.6633389553353, + "2024-04-23T16": 3234.67450254824, + "2024-04-24": 3218.9672686428075, + "2024-04-24T02": 3231.6085080000003, + "2024-04-24T00": 3224.1634381999997, + "2024-04-24T01": 3236.063574, + "2024-04-23T23": 3214.31646540407, + "2024-04-24T06": 3252.753756835622, + "2024-04-23T22": 3216.576565553453, + "2024-04-23T18": 3232.518376639948, + "2024-04-23T20": 3205.4740731608044, + "2024-04-23T21": 3206.3703105000004, + "2024-04-24T04": 3257.46, + "2024-04-24T05": 3259.5381517, + "2024-04-24T03": 3239.4117448979773, + "2024-04-24T07": 3257.0074296000003, + "2024-04-23T19": 3220.041884304765, + "2024-04-23T17": 3235.8080906044524, + "2024-04-24T08": 3251.7623606999996, + "2024-04-24T09": 3248.2450338, + "2024-04-24T10": 3261.6738, + "2024-04-24T11": 3279.4972047000006, + "2024-04-24T12": 3279.838430835137, + "2024-04-24T13": 3255.677278882139, + "2024-04-24T14": 3212.019413882412, + "2024-04-24T15": 3193.2295723294756, + "2024-04-25": 3148.156683884522, + "2024-04-24T18": 3164.147731267938, + "2024-04-25T00": 3148.8708973685248, + "2024-04-24T21": 3139.017943446734, + "2024-04-24T17": 3180.3984580914976, + "2024-04-24T16": 3176.5176057796343, + "2024-04-24T20": 3128.921146761645, + "2024-04-24T23": 3127.61915927397, + "2024-04-24T22": 3138.796737618157, + "2024-04-24T19": 3138.4788048432774, + "2024-04-25T01": 3161.6681252538665, + "2024-04-25T03": 3149.181, + "2024-04-25T05": 3152.360920644021, + "2024-04-25T04": 3140.4580872575943, + "2024-04-25T02": 3151.6710687, + "2024-04-25T06": 3160.904448, + "2024-04-25T07": 3148.1057691, + "2024-04-25T08": 3133.6236931, + "2024-04-25T09": 3139.344303996189, + "2024-04-25T10": 3088.299713430731, + "2024-04-25T11": 3101.6424975520886, + "2024-04-25T12": 3122.1713913627727, + "2024-04-25T13": 3104.425338545648, + "2024-04-25T14": 3123.681196639091, + "2024-04-25T15": 3137.387796328476, + "2024-04-25T16": 3154.976903941551, + "2024-04-25T17": 3155.9845439536493, + "2024-04-25T18": 3158.2533041847496, + "2024-04-25T19": 3161.643046883264, + "2024-04-26": 3139.223724464589, + "2024-04-25T22": 3164.7302842777767, + "2024-04-25T21": 3180.360525855216, + "2024-04-25T20": 3168.6231710633565, + "2024-04-26T01": 3137.1541118, + "2024-04-25T23": 3159.094059, + "2024-04-26T00": 3145.5363602, + "2024-04-26T05": 3140.2760623, + "2024-04-26T07": 3136.89, + "2024-04-26T02": 3152.9738759999996, + "2024-04-26T03": 3147.1155837, + "2024-04-26T04": 3135.8250213, + "2024-04-26T06": 3149.3585061, + "2024-04-26T08": 3140.6528117999997, + "2024-04-26T09": 3147.705198, + "2024-04-26T10": 3136.023632, + "2024-04-26T11": 3128.56194, + "2024-04-26T12": 3136.5966879000002, + "2024-04-26T13": 3123.5127033213303, + "2024-04-26T14": 3146.3150049858386, + "2024-04-26T15": 3116.879279057611, + "2024-04-26T21": 3144.327670546702, + "2024-04-26T22": 3128.924493, + "2024-04-26T17": 3131.055335583587, + "2024-04-26T19": 3142.979971677196, + "2024-04-26T16": 3117.8040059858477, + "2024-04-26T18": 3149.2023321851084, + "2024-04-26T20": 3141.9818944623016, + "2024-04-27": 3132.8783168261302, + "2024-04-26T23": 3130.610318437313, + "2024-04-27T00": 3105.5422477129155, + "2024-04-27T01": 3089.596496, + "2024-04-28": 3251.477368240025, + "2024-04-27T13": 3143.1069200784054, + "2024-04-28T00": 3253.9757908, + "2024-04-27T20": 3231.9919725224145, + "2024-04-27T23": 3252.3681451998254, + "2024-04-27T06": 3120.6141202568206, + "2024-04-27T05": 3117.91207468436, + "2024-04-27T02": 3117.5858618754028, + "2024-04-27T18": 3253.895241607983, + "2024-04-27T07": 3124.8939379999997, + "2024-04-27T04": 3121.9433502732013, + "2024-04-27T21": 3239.2055899754982, + "2024-04-27T09": 3113.9657856000003, + "2024-04-27T14": 3154.4098848, + "2024-04-27T22": 3247.4219831648734, + "2024-04-27T16": 3153.0244844, + "2024-04-27T10": 3114.2820321, + "2024-04-27T17": 3187.3644600464904, + "2024-04-27T08": 3115.4783982, + "2024-04-27T12": 3134.2913854999997, + "2024-04-27T15": 3144.6391142, + "2024-04-27T11": 3120.1443104, + "2024-04-27T03": 3121.4764757170356, + "2024-04-27T19": 3236.895469395632, + "2024-04-28T01": 3262.47801, + "2024-04-28T20": 3311.6342418000004, + "2024-04-28T14": 3311.348737121975, + "2024-04-28T05": 3307.7310525, + "2024-04-28T08": 3314.364704639368, + "2024-04-28T16": 3319.8487691221962, + "2024-04-28T11": 3282.348978827574, + "2024-04-28T22": 3293.5420560000002, + "2024-04-28T03": 3311.563197943532, + "2024-04-28T13": 3309.5098516325256, + "2024-04-28T15": 3318.3526414960015, + "2024-04-28T04": 3304.0786792, + "2024-04-28T09": 3307.0352543999998, + "2024-04-28T19": 3322.768849165785, + "2024-04-28T06": 3312.3192582, + "2024-04-28T12": 3290.0758686, + "2024-04-28T02": 3292.7472041072997, + "2024-04-28T17": 3319.318736835717, + "2024-04-28T21": 3305.576484, + "2024-04-28T18": 3324.466135736052, + "2024-04-28T07": 3318.7652748050236, + "2024-04-28T10": 3296.3929856, + "2024-04-29": 3178.824872768968, + "2024-04-28T23": 3267.352418472865, + "2024-04-29T00": 3277.7058968904407, + "2024-04-29T01": 3277.4180902101793, + "2024-04-29T02": 3250.5480206561424, + "2024-04-29T03": 3201.858231475413, + "2024-04-29T04": 3193.8084122319146, + "2024-04-29T05": 3195.952583632627, + "2024-04-29T06": 3180.2898076676406, + "2024-04-29T07": 3178.4360485153425, + "2024-04-29T08": 3186.0106439731935, + "2024-04-29T09": 3171.786593585063, + "2024-04-29T10": 3178.248422158926, + "2024-04-29T11": 3163.312307444313, + "2024-04-29T12": 3164.128932697128, + "2024-04-29T13": 3171.8882384931267, + "2024-04-29T14": 3129.155562832744, + "2024-04-29T15": 3175.513506441234, + "2024-04-30": 3013.6947855206436, + "2024-04-29T21": 3171.3513737999997, + "2024-04-30T03": 3183.920374190819, + "2024-04-29T22": 3206.6258850000004, + "2024-04-29T19": 3168.997991036959, + "2024-04-29T23": 3225.2248364, + "2024-04-29T18": 3170.1645442054237, + "2024-04-30T00": 3218.101523363034, + "2024-04-29T20": 3181.211131041826, + "2024-04-30T01": 3213.3175710351325, + "2024-04-30T02": 3181.5860424119373, + "2024-04-29T16": 3172.469511211792, + "2024-04-29T17": 3169.8462431107414, + "2024-04-30T07": 3168.666796086977, + "2024-04-30T04": 3175.171660970407, + "2024-04-30T05": 3167.65609782604, + "2024-04-30T06": 3170.3886458088323, + "2024-04-30T08": 3156.7011387447965, + "2024-04-30T09": 3060.3197899972806, + "2024-04-30T10": 3046.3235095858804, + "2024-04-30T11": 3043.0567941339923, + "2024-04-30T12": 3008.4774924779426, + "2024-04-30T13": 3008.0989358622255, + "2024-04-30T14": 3001.9423800327436, + "2024-04-30T15": 3019.796395055493, + "2024-04-30T16": 2978.025408878612, + "2024-05-01": 3010.0077514604686, + "2024-04-30T22": 3005.283046646616, + "2024-04-30T17": 2983.4209407181143, + "2024-04-30T20": 2961.333848182412, + "2024-04-30T23": 3009.7108958997087, + "2024-04-30T19": 2946.223850116148, + "2024-04-30T18": 2973.725389982612, + "2024-05-01T01": 3001.1596595318997, + "2024-05-01T00": 3002.807251471691, + "2024-04-30T21": 2979.1152951582376, + "2024-05-01T02": 2981.1220681748673, + "2024-05-01T03": 2991.311054731628, + "2024-05-01T05": 2991.220105615406, + "2024-05-01T04": 3004.804763940006, + "2024-05-01T06": 2969.8425607342133, + "2024-05-01T07": 2888.0817674987225, + "2024-05-01T08": 2849.643666621829, + "2024-05-01T09": 2875.113348636059, + "2024-05-01T11": 2887.3645371721086, + "2024-05-01T14": 2892.947904237175, + "2024-05-01T10": 2878.910666267768, + "2024-05-01T12": 2917.105411690944, + "2024-05-01T13": 2895.986845051433, + "2024-05-01T15": 2882.099042462242, + "2024-05-01T21": 2939.702486833621, + "2024-05-01T20": 2932.639550099961, + "2024-05-01T16": 2886.656693634395, + "2024-05-01T17": 2893.0320420304365, + "2024-05-01T19": 2944.904906214195, + "2024-05-01T18": 2966.3515515315808, + "2024-05-01T22": 2968.185373404001, + "2024-05-02": 2976.0902075157046, + "2024-05-02T01": 2911.53893764994, + "2024-05-02T02": 2911.7805220420573, + "2024-05-01T23": 2968.646646112956, + "2024-05-02T00": 2961.014262923019, + "2024-05-02T04": 2929.7117289092516, + "2024-05-02T06": 2915.52684803916, + "2024-05-02T03": 2924.8030783454983, + "2024-05-02T07": 2925.38039024553, + "2024-05-02T05": 2910.9544582606813, + "2024-05-02T08": 2936.6681362, + "2024-05-02T09": 2941.49907, + "2024-05-02T10": 2950.0685478, + "2024-05-02T11": 2960.2456610627946, + "2024-05-02T12": 2993.831244813232, + "2024-05-02T13": 2982.357316575924, + "2024-05-02T14": 2963.818379110314, + "2024-05-02T15": 2995.0171445907777, + "2024-05-02T16": 2984.788132368774, + "2024-05-02T17": 2981.5150075598604, + "2024-05-03T04": 3007.6200759000003, + "2024-05-03T02": 3018.2658427955307, + "2024-05-03T03": 3016.792132, + "2024-05-03T05": 3000.5000203, + "2024-05-03T06": 2988.0285203999997, + "2024-05-03T00": 2985.26865, + "2024-05-03T01": 3005.7003842999998, + "2024-05-03T07": 2979.5763122191565, + "2024-05-03T08": 2975.8097578, + "2024-05-03T09": 2980.8378561000004, + "2024-05-03T10": 2971.23768, + "2024-05-03T11": 2972.9702700000003, + "2024-05-03T13": 3048.3224404598805, + "2024-05-03T12": 3023.582182784415, + "2024-05-03T14": 3055.7860590623054, + "2024-05-03": 3029.944346821867, + "2024-05-04": 3121.114418683782, + "2024-05-04T05": 3115.0737895654124, + "2024-05-03T18": 3074.3396543897097, + "2024-05-04T03": 3108.7837820000004, + "2024-05-03T17": 3075.182748544597, + "2024-05-03T21": 3106.5795953945667, + "2024-05-03T20": 3108.3896641472074, + "2024-05-04T06": 3113.1614412000004, + "2024-05-03T22": 3110.5669688999997, + "2024-05-03T19": 3068.8798011814065, + "2024-05-04T02": 3100.4905316646555, + "2024-05-03T15": 3061.058123329577, + "2024-05-03T16": 3080.8866822685527, + "2024-05-04T01": 3118.0786265, + "2024-05-04T04": 3113.721598, + "2024-05-03T23": 3108.4218118999997, + "2024-05-04T00": 3114.08955, + "2024-05-04T13": 3132.0896541804336, + "2024-05-04T10": 3136.312725, + "2024-05-04T12": 3141.064075, + "2024-05-04T07": 3103.2684878000005, + "2024-05-04T11": 3149.794948, + "2024-05-04T09": 3107.5271248, + "2024-05-04T15": 3125.0720976067128, + "2024-05-04T08": 3104.4997428999995, + "2024-05-04T14": 3127.6618895391803, + "2024-05-05": 3135.068517277608, + "2024-05-05T01": 3089.1915427, + "2024-05-04T19": 3126.1563000000006, + "2024-05-04T20": 3139.7155836, + "2024-05-05T05": 3090.2616818, + "2024-05-05T07": 3105.790548, + "2024-05-04T23": 3115.11148, + "2024-05-04T22": 3113.71134, + "2024-05-04T21": 3120.0724001999997, + "2024-05-05T00": 3105.545762, + "2024-05-05T08": 3145.9521475995534, + "2024-05-04T17": 3123.670775684073, + "2024-05-05T09": 3141.09778734941, + "2024-05-05T10": 3137.9006145000003, + "2024-05-05T04": 3091.0817884, + "2024-05-04T16": 3124.008307672937, + "2024-05-05T06": 3092.3092, + "2024-05-05T03": 3081.890682661155, + "2024-05-04T18": 3125.5375209999997, + "2024-05-05T02": 3090.701739, + "2024-05-05T21": 3132.2645112000005, + "2024-05-05T16": 3156.1846827, + "2024-05-05T22": 3130.566448774589, + "2024-05-05T17": 3152.783725, + "2024-05-05T20": 3137.8895821754013, + "2024-05-05T13": 3144.2188843904487, + "2024-05-05T15": 3156.5809452000003, + "2024-05-05T12": 3135.701632, + "2024-05-05T18": 3140.7852396, + "2024-05-05T14": 3134.867322895993, + "2024-05-05T19": 3142.7327567999996, + "2024-05-05T11": 3136.7518, + "2024-05-05T23": 3138.6624542, + "2024-05-06T00": 3148.674836, + "2024-05-06T04": 3134.4080532, + "2024-05-06T02": 3148.3733374611315, + "2024-05-06T05": 3164.7582300000004, + "2024-05-06T06": 3183.7236731999997, + "2024-05-06T01": 3152.755965208351, + "2024-05-06T03": 3134.5080592, + "2024-05-06T08": 3209.5546953363055, + "2024-05-06T07": 3175.1004946, + "2024-05-06T09": 3201.39049094347, + "2024-05-06T10": 3175.3375336312893, + "2024-05-06T11": 3151.9350675493183, + "2024-05-06T13": 3108.3898103431466, + "2024-05-06T12": 3120.2904159358945, + "2024-05-06T15": 3074.9554111475363, + "2024-05-06T14": 3105.800612702344, + "2024-05-06": 3130.2255273417018, + "2024-05-07": 3067.1789148589446, + "2024-05-06T22": 3082.892484, + "2024-05-07T07": 3077.846208, + "2024-05-06T16": 3084.6290452230423, + "2024-05-07T01": 3081.8791498748105, + "2024-05-07T00": 3069.9386, + "2024-05-06T21": 3084.437031942733, + "2024-05-06T20": 3073.4703997222127, + "2024-05-06T23": 3069.9792999000006, + "2024-05-07T04": 3058.1979651208158, + "2024-05-06T19": 3062.8461036689114, + "2024-05-07T03": 3047.3290521999998, + "2024-05-07T02": 3089.4537982, + "2024-05-07T05": 3066.038746828645, + "2024-05-06T17": 3074.864335210352, + "2024-05-06T18": 3072.701601370458, + "2024-05-07T08": 3113.1269843009577, + "2024-05-07T09": 3121.1162106272923, + "2024-05-07T10": 3099.806907484518, + "2024-05-07T11": 3093.874248585082, + "2024-05-07T12": 3072.087546509943, + "2024-05-07T13": 3071.911913540184, + "2024-05-07T14": 3064.501087958445, + "2024-05-07T15": 3094.8109758670494, + "2024-05-08": 3004.220940383108, + "2024-05-09": 2996.4332682297763, + "2024-05-10": 3008.4276688561504, + "2024-05-09T13": 2979.0322974372625, + "2024-05-10T00": 3026.6762059999996, + "2024-05-08T08": 2994.975777911403, + "2024-05-09T14": 2980.224759272435, + "2024-05-08T10": 3003.6781350950746, + "2024-05-09T04": 2996.2224932948675, + "2024-05-10T01": 3030.0969600000003, + "2024-05-08T03": 3028.8764911999997, + "2024-05-09T07": 2990.5440443, + "2024-05-09T11": 2968.802004, + "2024-05-09T00": 2979.2459319267555, + "2024-05-09T01": 2991.855470473011, + "2024-05-10T06": 3037.1951133000002, + "2024-05-09T19": 3017.72401868409, + "2024-05-10T05": 3027.8463288, + "2024-05-10T02": 3032.2170758999996, + "2024-05-09T23": 3035.6153187000004, + "2024-05-09T06": 3002.9976288000003, + "2024-05-08T01": 3023.957071300435, + "2024-05-09T09": 2973.882315, + "2024-05-09T20": 3020.0255954119816, + "2024-05-08T19": 2998.3603215731177, + "2024-05-09T03": 2996.0212495, + "2024-05-08T21": 2966.2694097976555, + "2024-05-09T22": 3041.334317921957, + "2024-05-08T17": 3011.813634794154, + "2024-05-09T05": 3004.806608, + "2024-05-08T06": 3012.0978563000003, + "2024-05-08T15": 3002.5064991261015, + "2024-05-10T08": 3034.835776, + "2024-05-08T07": 3000.9196745, + "2024-05-08T04": 3022.8371790917877, + "2024-05-09T15": 3002.3009415614497, + "2024-05-08T18": 3013.765399683753, + "2024-05-09T10": 2967.3770445, + "2024-05-09T21": 3020.525303544491, + "2024-05-10T03": 3027.3977888, + "2024-05-08T00": 3016.3481956798464, + "2024-05-10T07": 3046.3734480000003, + "2024-05-08T14": 3021.603374810295, + "2024-05-09T17": 3000.3410674616407, + "2024-05-08T13": 3006.5777938311608, + "2024-05-08T05": 3017.8468788, + "2024-05-09T18": 3010.52884512628, + "2024-05-09T08": 2983.047871215425, + "2024-05-08T20": 2952.3394669956137, + "2024-05-08T22": 2965.612361135187, + "2024-05-08T11": 2991.3515655056485, + "2024-05-09T12": 2984.586204, + "2024-05-08T02": 3029.7831186548706, + "2024-05-10T04": 3029.8857565999997, + "2024-05-08T12": 2996.289664939049, + "2024-05-09T02": 2996.902431700847, + "2024-05-08T09": 2989.6328532027055, + "2024-05-09T16": 3014.0604485973317, + "2024-05-08T16": 3006.2334553669293, + "2024-05-08T23": 2968.519775994237, + "2024-05-10T09": 3030.3663124, + "2024-05-10T10": 3029.5658013999996, + "2024-05-10T11": 3029.7557748, + "2024-05-10T12": 3033.7396623, + "2024-05-10T13": 3024.1578013, + "2024-05-10T14": 2978.750677560178, + "2024-05-11": 2916.2954645949453, + "2024-05-12": 2926.915946090738, + "2024-05-12T16": 2942.47254, + "2024-05-11T03": 2911.8970320000003, + "2024-05-10T17": 2895.58015698431, + "2024-05-11T16": 2924.2498320000004, + "2024-05-10T15": 2932.6943021470597, + "2024-05-11T04": 2910.6039247, + "2024-05-11T12": 2903.89266, + "2024-05-12T15": 2933.416164, + "2024-05-11T11": 2899.3437272, + "2024-05-12T04": 2926.2497455, + "2024-05-12T11": 2927.44763, + "2024-05-11T22": 2916.9481302000004, + "2024-05-11T21": 2918.7624483875065, + "2024-05-10T21": 2896.174892927755, + "2024-05-10T23": 2910.656045915094, + "2024-05-12T00": 2919.613853, + "2024-05-12T03": 2917.822404, + "2024-05-12T12": 2927.8074392, + "2024-05-11T08": 2913.0324146, + "2024-05-11T17": 2923.805568, + "2024-05-12T19": 2924.9680896, + "2024-05-11T23": 2912.842464, + "2024-05-11T05": 2917.8919564, + "2024-05-12T02": 2914.478957788871, + "2024-05-11T02": 2916.9530244000002, + "2024-05-10T16": 2915.7934289385144, + "2024-05-12T14": 2932.1799250000004, + "2024-05-11T09": 2903.8167036000004, + "2024-05-10T18": 2896.9572617830245, + "2024-05-10T19": 2903.301673626377, + "2024-05-11T06": 2920.4504853999997, + "2024-05-12T08": 2910.4818492, + "2024-05-10T20": 2894.5807032224984, + "2024-05-11T18": 2930.637276, + "2024-05-12T05": 2924.389776, + "2024-05-12T06": 2920.991136, + "2024-05-11T20": 2920.137594, + "2024-05-12T09": 2913.2250878, + "2024-05-11T01": 2922.7476134000003, + "2024-05-11T00": 2913.32978, + "2024-05-12T07": 2908.2117695, + "2024-05-12T10": 2929.8403028000002, + "2024-05-11T10": 2906.6396072999996, + "2024-05-12T01": 2915.223444, + "2024-05-12T18": 2934.0027395, + "2024-05-12T13": 2931.5815088, + "2024-05-11T19": 2927.818404, + "2024-05-12T17": 2932.833149, + "2024-05-11T14": 2905.6535879999997, + "2024-05-11T07": 2920.0113840000004, + "2024-05-11T15": 2925.6821332, + "2024-05-11T13": 2906.8377077, + "2024-05-10T22": 2903.3592621465973, + "2024-05-13": 2951.6633460598855, + "2024-05-12T21": 2921.0557334, + "2024-05-13T06": 2894.090246796701, + "2024-05-13T00": 2933.4196141864404, + "2024-05-13T03": 2877.016397019974, + "2024-05-12T23": 2931.3316263, + "2024-05-13T04": 2883.7383652213803, + "2024-05-13T01": 2917.098658, + "2024-05-13T05": 2884.586511997563, + "2024-05-13T02": 2886.1550145, + "2024-05-12T22": 2929.5497517, + "2024-05-12T20": 2925.5278768, + "2024-05-13T08": 2972.498735165097, + "2024-05-13T10": 2963.9829129057953, + "2024-05-13T09": 2980.791829835843, + "2024-05-13T07": 2927.546873125119, + "2024-05-13T11": 2962.4870770088423, + "2024-05-13T12": 2964.804708209148, + "2024-05-13T13": 2969.9691281257387, + "2024-05-13T14": 2963.9007119638736, + "2024-05-13T15": 2960.907592404866, + "2024-05-13T16": 2967.447412106135, + "2024-05-14": 2904.5335614794594, + "2024-05-13T17": 2946.5716341318603, + "2024-05-14T01": 2948.4801860000002, + "2024-05-14T02": 2946.9541075, + "2024-05-14T06": 2906.566562631089, + "2024-05-13T19": 2952.584116213309, + "2024-05-13T22": 2945.3464403569656, + "2024-05-14T04": 2937.5928427999997, + "2024-05-13T21": 2952.815555944663, + "2024-05-14T03": 2945.0477784, + "2024-05-14T00": 2953.13427556741, + "2024-05-14T07": 2915.2277111896515, + "2024-05-13T20": 2953.447637322194, + "2024-05-14T05": 2942.3654069958816, + "2024-05-13T23": 2948.4496881, + "2024-05-13T18": 2938.474984893804, + "2024-05-14T08": 2912.909155666869, + "2024-05-14T09": 2911.288878193672, + "2024-05-14T10": 2904.390241389892, + "2024-05-14T11": 2907.4903642633653, + "2024-05-14T12": 2903.6998715699515, + "2024-05-14T13": 2901.854271540674, + "2024-05-14T14": 2892.0265400349267, + "2024-05-14T15": 2900.295871904778, + "2024-05-14T16": 2888.98384934544, + "2024-05-14T17": 2877.205345395317, + "2024-05-14T18": 2881.901937229239, + "2024-05-14T19": 2892.604512261565, + "2024-05-14T20": 2894.311978664992, + "2024-05-15": 2947.4008735314424, + "2024-05-15T02": 2886.8579418, + "2024-05-15T01": 2881.0614798, + "2024-05-14T21": 2892.5879450439656, + "2024-05-15T05": 2903.9826195, + "2024-05-15T00": 2880.6524446, + "2024-05-15T06": 2904.992165, + "2024-05-15T03": 2895.66156, + "2024-05-15T07": 2910.9318612173765, + "2024-05-14T23": 2882.131304, + "2024-05-15T04": 2899.5395049999997, + "2024-05-14T22": 2891.3319406, + "2024-05-15T08": 2907.3784332, + "2024-05-15T09": 2912.7611395431036, + "2024-05-15T10": 2912.6131751191097, + "2024-05-15T11": 2897.7042646, + "2024-05-15T12": 2939.849211827698, + "2024-05-15T13": 2945.733112129407, + "2024-05-15T14": 2965.2631462339814, + "2024-05-15T15": 2980.1699157056564, + "2024-05-15T18": 2996.9083563851673, + "2024-05-15T17": 2982.5035504550565, + "2024-05-15T16": 2976.4140835698777, + "2024-05-16": 3036.399634636318, + "2024-05-16T04": 3010.6220979, + "2024-05-16T06": 3016.131583, + "2024-05-15T22": 3016.02726, + "2024-05-15T19": 3010.992898865505, + "2024-05-16T07": 3017.55, + "2024-05-16T03": 3011.611887, + "2024-05-16T05": 3008.4713532, + "2024-05-15T21": 3017.5544294725305, + "2024-05-16T02": 3010.3720454, + "2024-05-16T00": 3029.2725404347384, + "2024-05-15T23": 3035.8938719999996, + "2024-05-15T20": 3020.471728992495, + "2024-05-16T01": 3018.4939226, + "2024-05-16T08": 3011.1098886, + "2024-05-16T09": 3004.0094280000003, + "2024-05-16T10": 2998.76008, + "2024-05-16T11": 2998.41972, + "2024-05-16T12": 2991.208122, + "2024-05-16T13": 2979.985216908529, + "2024-05-16T14": 2985.344395388017, + "2024-05-16T15": 2952.2948200472742, + "2024-05-17": 2943.5851283842208, + "2024-05-17T00": 2948.0805189000002, + "2024-05-16T23": 2938.7750832, + "2024-05-16T22": 2930.73444, + "2024-05-16T17": 2941.2867716984783, + "2024-05-16T20": 2939.836068340815, + "2024-05-16T18": 2949.650219449701, + "2024-05-16T21": 2937.3072161824175, + "2024-05-17T01": 2944.926685, + "2024-05-16T19": 2950.2307086040823, + "2024-05-17T03": 2951.1360720000002, + "2024-05-17T02": 2947.9868686, + "2024-05-16T16": 2951.950459459716, + "2024-05-17T06": 2944.504421, + "2024-05-17T04": 2951.3051010000004, + "2024-05-17T07": 3018.139258391732, + "2024-05-17T05": 2944.854456, + "2024-05-17T08": 3030.4194258805387, + "2024-05-17T09": 3032.438005055686, + "2024-05-18": 3113.68870791231, + "2024-05-19": 3087.6507799600254, + "2024-05-20": 3105.182568163909, + "2024-05-20T04": 3113.75088, + "2024-05-18T11": 3138.557586, + "2024-05-18T17": 3114.967175, + "2024-05-20T15": 3110.3666610651308, + "2024-05-20T16": 3126.3784594387835, + "2024-05-19T00": 3121.0077515452554, + "2024-05-18T18": 3113.2135408, + "2024-05-21T06": 3669.115615738369, + "2024-05-20T23": 3658.801332948134, + "2024-05-18T13": 3116.2479377028167, + "2024-05-19T17": 3071.3982389879234, + "2024-05-20T11": 3105.464767065016, + "2024-05-21T07": 3665.1302514852064, + "2024-05-21T05": 3646.943095137274, + "2024-05-19T23": 3070.9235919999996, + "2024-05-19T13": 3079.0907900668676, + "2024-05-18T06": 3096.82877, + "2024-05-19T07": 3113.2801699999995, + "2024-05-18T14": 3109.814626643353, + "2024-05-18T21": 3116.3719982, + "2024-05-18T20": 3121.7333456208708, + "2024-05-20T18": 3147.347047364137, + "2024-05-20T17": 3135.0788787371666, + "2024-05-20T00": 3075.0762385, + "2024-05-18T01": 3096.3976949999997, + "2024-05-20T10": 3103.643558242828, + "2024-05-18T12": 3128.9538572475676, + "2024-05-18T09": 3118.1523363999995, + "2024-05-20T21": 3542.3895239603476, + "2024-05-18T16": 3114.177439118027, + "2024-05-20T06": 3106.1731294747888, + "2024-05-20T03": 3091.0608629999997, + "2024-05-18T03": 3115.6432745999996, + "2024-05-19T01": 3117.1809916, + "2024-05-18T02": 3101.9493045, + "2024-05-19T06": 3109.6776622, + "2024-05-21T00": 3686.915648672611, + "2024-05-20T12": 3089.6486960374114, + "2024-05-19T12": 3086.394652714299, + "2024-05-18T04": 3106.7807052, + "2024-05-18T10": 3136.4971739999996, + "2024-05-20T07": 3089.2421628090005, + "2024-05-19T22": 3075.7046856, + "2024-05-19T20": 3075.7577244999998, + "2024-05-19T14": 3079.490277556388, + "2024-05-18T15": 3109.5493649781806, + "2024-05-19T21": 3068.4093156000004, + "2024-05-19T02": 3131.3435404000006, + "2024-05-19T11": 3091.9682521, + "2024-05-20T05": 3129.9039884836, + "2024-05-19T09": 3105.0104699999997, + "2024-05-20T14": 3084.4032331876338, + "2024-05-21T02": 3673.667306453677, + "2024-05-18T19": 3115.2806496, + "2024-05-18T00": 3092.623879955467, + "2024-05-18T22": 3118.7712778000005, + "2024-05-19T16": 3067.1357816057634, + "2024-05-20T02": 3085.5174317, + "2024-05-18T05": 3100.0087418999997, + "2024-05-21T08": 3656.588980693173, + "2024-05-20T19": 3394.5327630602296, + "2024-05-18T08": 3114.609588, + "2024-05-21T01": 3678.7637447334337, + "2024-05-18T07": 3103.8316678, + "2024-05-20T13": 3087.933531273499, + "2024-05-19T18": 3072.1039858393515, + "2024-05-20T20": 3452.076177940623, + "2024-05-19T04": 3122.1634002000005, + "2024-05-20T01": 3066.2393373, + "2024-05-20T08": 3101.3537584889164, + "2024-05-20T22": 3634.9733683597055, + "2024-05-21T04": 3680.6233384245165, + "2024-05-19T15": 3074.3193450646886, + "2024-05-19T10": 3113.1667788, + "2024-05-19T05": 3121.2184700000003, + "2024-05-21T09": 3666.783812527414, + "2024-05-19T03": 3131.2157008, + "2024-05-19T19": 3068.1093186, + "2024-05-21T03": 3685.893880299413, + "2024-05-18T23": 3121.9818556000005, + "2024-05-19T08": 3110.9310619999997, + "2024-05-20T09": 3103.554291119466, + "2024-05-21T10": 3712.7362220974383, + "2024-05-26": 3807.364815743826, + "2024-05-21": 3730.150143298192, + "2024-05-25": 3746.1617285885654, + "2024-05-28": 3851.4960658873383, + "2024-05-24": 3719.2025991200912, + "2024-05-27": 3911.4958000180764, + "2024-05-23": 3793.7398128160985, + "2024-05-22": 3747.0418368053024, + "2024-05-22T20": 3747.6088413478233, + "2024-05-25T08": 3745.1688143, + "2024-05-22T05": 3755.4060665153083, + "2024-05-28T03": 3844.6437656110584, + "2024-05-22T16": 3760.5102259370333, + "2024-05-25T05": 3758.271226922328, + "2024-05-24T22": 3735.201323445126, + "2024-05-27T14": 3933.760070200939, + "2024-05-22T03": 3793.78223074202, + "2024-05-23T17": 3806.6598119972164, + "2024-05-24T23": 3729.8653936172814, + "2024-05-26T19": 3860.5304405535276, + "2024-05-26T18": 3835.9859907201153, + "2024-05-26T10": 3801.9927420000004, + "2024-05-27T16": 3953.266106208922, + "2024-05-24T12": 3710.9820570009906, + "2024-05-26T01": 3755.8942078415193, + "2024-05-21T17": 3742.225671449327, + "2024-05-23T07": 3805.6566712075537, + "2024-05-22T08": 3754.896388687739, + "2024-05-23T09": 3821.8961357409607, + "2024-05-24T18": 3735.829529531335, + "2024-05-23T01": 3756.2750075187614, + "2024-05-25T15": 3748.3514894024725, + "2024-05-23T16": 3795.296169298834, + "2024-05-25T03": 3737.0971617, + "2024-05-28T06": 3854.4916169494336, + "2024-05-25T23": 3746.8429284, + "2024-05-24T13": 3706.9945372775833, + "2024-05-26T03": 3754.8769181, + "2024-05-26T00": 3746.8628445, + "2024-05-25T06": 3749.6270749, + "2024-05-27T04": 3917.9358869798198, + "2024-05-22T10": 3738.432777466979, + "2024-05-27T09": 3911.0580577117066, + "2024-05-24T17": 3695.3715046694892, + "2024-05-26T16": 3844.722105645998, + "2024-05-22T09": 3741.686882935157, + "2024-05-24T21": 3734.670327307358, + "2024-05-25T04": 3760.3969039072163, + "2024-05-27T22": 3885.517164805163, + "2024-05-27T11": 3899.9063406211435, + "2024-05-23T21": 3818.7772274745994, + "2024-05-23T10": 3828.530820425233, + "2024-05-23T14": 3788.5526078688868, + "2024-05-27T02": 3916.162718557136, + "2024-05-25T18": 3750.4484663897306, + "2024-05-27T05": 3906.619980412741, + "2024-05-22T23": 3741.4396394108794, + "2024-05-28T01": 3881.1724453214592, + "2024-05-22T04": 3765.080076721659, + "2024-05-22T15": 3747.4515504309206, + "2024-05-24T03": 3802.331024420478, + "2024-05-24T08": 3663.916304619768, + "2024-05-21T22": 3786.2679756012612, + "2024-05-21T16": 3791.879118338375, + "2024-05-21T23": 3799.934816477088, + "2024-05-24T02": 3806.7717147185836, + "2024-05-26T07": 3784.120612910767, + "2024-05-27T07": 3906.706071938502, + "2024-05-25T22": 3737.6271060000004, + "2024-05-24T16": 3671.2917188380734, + "2024-05-27T20": 3881.5488125530846, + "2024-05-22T02": 3791.5515853898746, + "2024-05-24T06": 3695.084579186491, + "2024-05-24T11": 3702.2046361323214, + "2024-05-25T21": 3743.2012099999997, + "2024-05-27T15": 3947.0927431239143, + "2024-05-21T19": 3713.022418016602, + "2024-05-22T19": 3736.8740443699407, + "2024-05-21T12": 3773.187063574787, + "2024-05-23T20": 3714.614955861446, + "2024-05-23T08": 3802.7450563522007, + "2024-05-22T22": 3753.272384344758, + "2024-05-26T11": 3810.4745145, + "2024-05-24T01": 3809.0283349407537, + "2024-05-23T05": 3772.405755551377, + "2024-05-28T04": 3834.7097220108185, + "2024-05-25T09": 3747.8902735999995, + "2024-05-27T18": 3929.4172052106555, + "2024-05-24T10": 3691.746874569854, + "2024-05-25T19": 3758.9600250000003, + "2024-05-24T07": 3671.068304686473, + "2024-05-26T04": 3758.0826444, + "2024-05-26T09": 3800.4891960000004, + "2024-05-23T02": 3766.9917619376956, + "2024-05-27T06": 3908.28893504233, + "2024-05-24T15": 3717.0075794705526, + "2024-05-25T20": 3748.336605015174, + "2024-05-27T08": 3927.720025895757, + "2024-05-23T22": 3807.8513551117308, + "2024-05-26T15": 3852.5846256376267, + "2024-05-24T20": 3741.263436078559, + "2024-05-21T20": 3739.252438969914, + "2024-05-25T13": 3736.3068438, + "2024-05-22T01": 3782.2021748416787, + "2024-05-25T17": 3740.6168832, + "2024-05-27T10": 3899.9145874330225, + "2024-05-21T21": 3746.169262496094, + "2024-05-24T19": 3734.3006485623446, + "2024-05-26T02": 3741.0284416, + "2024-05-27T19": 3909.591397261498, + "2024-05-25T11": 3759.436, + "2024-05-27T17": 3935.0993654986337, + "2024-05-21T18": 3732.111226503376, + "2024-05-26T06": 3757.122144, + "2024-05-23T00": 3752.270223598071, + "2024-05-22T00": 3788.565291762873, + "2024-05-24T05": 3774.2670890666986, + "2024-05-23T15": 3808.6324479831464, + "2024-05-22T13": 3684.641125508845, + "2024-05-22T12": 3698.6551773314736, + "2024-05-23T04": 3778.4373574065485, + "2024-05-26T08": 3794.4456632, + "2024-05-26T13": 3802.899008496778, + "2024-05-28T05": 3844.229008237383, + "2024-05-22T18": 3720.9585393795905, + "2024-05-22T06": 3761.3307897079085, + "2024-05-22T17": 3754.0311904224404, + "2024-05-23T19": 3786.0106302155045, + "2024-05-25T07": 3748.5474961, + "2024-05-26T22": 3845.0144154000004, + "2024-05-25T16": 3749.0550587999996, + "2024-05-26T05": 3748.535102, + "2024-05-24T04": 3802.741283574658, + "2024-05-21T14": 3792.9710666303467, + "2024-05-25T12": 3731.9087481, + "2024-05-28T07": 3847.0056550348054, + "2024-05-23T18": 3738.584903040384, + "2024-05-26T23": 3825.16304, + "2024-05-24T09": 3666.722599684146, + "2024-05-23T03": 3766.3245173676746, + "2024-05-26T14": 3814.053504553487, + "2024-05-21T13": 3784.001881472828, + "2024-05-22T14": 3719.622568873736, + "2024-05-25T14": 3739.3482273, + "2024-05-25T00": 3719.252445394692, + "2024-05-23T23": 3770.92486704639, + "2024-05-21T11": 3776.3414211011436, + "2024-05-23T13": 3828.9133430925867, + "2024-05-22T11": 3729.6982135673466, + "2024-05-21T15": 3782.7150164770883, + "2024-05-28T00": 3877.491597817076, + "2024-05-27T23": 3885.479203910158, + "2024-05-28T02": 3860.677066413776, + "2024-05-26T21": 3843.63590225122, + "2024-05-26T12": 3804.704848931033, + "2024-05-23T06": 3766.9002582932912, + "2024-05-22T07": 3752.078660360215, + "2024-05-27T12": 3897.206553813985, + "2024-05-22T21": 3749.384498666009, + "2024-05-24T00": 3777.354150150647, + "2024-05-25T02": 3726.2200512, + "2024-05-27T00": 3841.3383700000004, + "2024-05-26T20": 3861.5040822296373, + "2024-05-26T17": 3851.6633346088115, + "2024-05-27T13": 3924.7182552196014, + "2024-05-23T12": 3926.792558380899, + "2024-05-25T10": 3756.7953913, + "2024-05-23T11": 3870.312229661386, + "2024-05-24T14": 3707.8847277497866, + "2024-05-25T01": 3719.256, + "2024-05-27T21": 3887.6849425364157, + "2024-05-27T03": 3924.358480419879, + "2024-05-27T01": 3858.3562857375928, + "2024-05-28T08": 3861.9554286567704, + "2024-05-28T09": 3873.961074354623, + "2024-05-28T10": 3901.4136351354327, + "2024-05-28T11": 3899.143328797457, + "2024-05-28T12": 3894.9691980795765, + "2024-05-28T13": 3881.7396720596375, + "2024-05-28T14": 3853.556396237401, + "2024-05-28T15": 3843.8669468669177, + "2024-05-29": 3798.142320765543, + "2024-05-28T20": 3835.716352270651, + "2024-05-28T22": 3854.0690492659464, + "2024-05-28T21": 3837.076012525558, + "2024-05-28T19": 3815.660825770089, + "2024-05-29T02": 3844.0550604, + "2024-05-28T17": 3831.4107550854683, + "2024-05-28T18": 3793.8000170958194, + "2024-05-28T23": 3848.6713831837983, + "2024-05-29T00": 3843.241704759889, + "2024-05-29T01": 3839.4985785, + "2024-05-28T16": 3830.1124367831026, + "2024-05-29T06": 3862.4964113050964, + "2024-05-29T05": 3866.723274695366, + "2024-05-29T03": 3848.399864823083, + "2024-05-29T07": 3834.498533085658, + "2024-05-29T04": 3865.993348052107, + "2024-05-29T08": 3796.225063130326, + "2024-05-29T09": 3801.9393858457597, + "2024-05-29T10": 3800.3677240140682, + "2024-05-29T11": 3820.6234533248494, + "2024-05-29T12": 3807.1403138863234, + "2024-05-29T13": 3809.9279015860584, + "2024-05-29T14": 3793.8576191260113, + "2024-05-29T15": 3764.460756695097, + "2024-05-29T18": 3753.3044537081178, + "2024-05-29T17": 3759.184789658026, + "2024-05-29T23": 3775.726500554549, + "2024-05-29T19": 3756.4982562531636, + "2024-05-29T22": 3777.495199523026, + "2024-05-29T20": 3749.720967642029, + "2024-05-29T16": 3756.4453519597014, + "2024-05-29T21": 3763.414913119037, + "2024-05-30": 3763.9743362008467, + "2024-05-30T00": 3767.3511087052066, + "2024-05-30T05": 3775.3686811, + "2024-05-30T02": 3777.270227763937, + "2024-05-30T01": 3761.9047368660554, + "2024-05-30T06": 3754.766837668244, + "2024-05-30T07": 3738.4531158743416, + "2024-05-30T03": 3778.8898839999997, + "2024-05-30T04": 3784.6808639, + "2024-05-30T08": 3717.5406268313195, + "2024-05-30T09": 3727.514029864921, + "2024-05-30T10": 3727.6554730341413, + "2024-05-30T11": 3742.0510015728914, + "2024-05-30T12": 3751.852590379252, + "2024-05-30T13": 3770.8914359328205, + "2024-05-30T14": 3781.2247548053215, + "2024-05-30T15": 3775.124239880402, + "2024-05-30T21": 3742.8897289749953, + "2024-05-30T20": 3737.005173064505, + "2024-05-30T18": 3806.440829015422, + "2024-05-30T16": 3776.6568934965344, + "2024-05-30T17": 3810.2062598590232, + "2024-05-30T19": 3783.9328651977016, + "2024-05-31": 3763.999239968519, + "2024-05-30T22": 3747.1482761654265, + "2024-05-30T23": 3747.12137158654, + "2024-05-31T03": 3760.5840528, + "2024-05-31T07": 3733.4797108298344, + "2024-05-31T06": 3743.2766800000004, + "2024-05-31T04": 3761.2590245999995, + "2024-05-31T02": 3755.8518794, + "2024-05-31T05": 3743.9943327, + "2024-05-31T00": 3747.9160814698607, + "2024-05-31T01": 3753.4205781358673, + "2024-05-31T08": 3733.8747776, + "2024-05-31T09": 3737.72874, + "2024-05-31T10": 3769.3170526689437, + "2024-05-31T11": 3796.3028418, + "2024-05-31T12": 3826.1160192276016, + "2024-05-31T13": 3805.382643456607, + "2024-05-31T14": 3778.250154934456, + "2024-06-01": 3760.159392601333, + "2024-06-01T08": 3784.1586547217566, + "2024-06-01T02": 3768.5898760000005, + "2024-06-01T05": 3783.0069512, + "2024-05-31T21": 3783.7422404828912, + "2024-06-01T00": 3759.4514442, + "2024-05-31T18": 3774.6351976389305, + "2024-05-31T15": 3763.945120281662, + "2024-05-31T23": 3758.6397165872863, + "2024-05-31T22": 3776.733149380007, + "2024-06-01T01": 3761.9665723000003, + "2024-06-01T07": 3777.9811566810154, + "2024-06-01T04": 3776.3100005999995, + "2024-05-31T19": 3780.4580381935057, + "2024-06-01T06": 3784.0382463000005, + "2024-05-31T20": 3786.827633071189, + "2024-05-31T17": 3761.6586319432918, + "2024-05-31T16": 3740.573707342865, + "2024-06-01T03": 3775.7170079999996, + "2024-06-01T09": 3792.605596710141, + "2024-06-01T10": 3787.4041488, + "2024-06-02": 3791.293168920246, + "2024-06-01T13": 3800.496472, + "2024-06-01T15": 3803.8242533000002, + "2024-06-01T18": 3797.8369142, + "2024-06-01T12": 3793.0072102999998, + "2024-06-01T21": 3810.60554, + "2024-06-01T20": 3800.3446803, + "2024-06-02T01": 3829.543912, + "2024-06-01T17": 3795.371272, + "2024-06-01T11": 3785.5058208, + "2024-06-02T00": 3818.952392, + "2024-06-01T23": 3813.3922552, + "2024-06-01T14": 3803.3797923, + "2024-06-01T22": 3820.173555, + "2024-06-01T19": 3798.4163980000003, + "2024-06-01T16": 3796.6319181000003, + "2024-06-02T13": 3786.8814807999997, + "2024-06-02T11": 3796.3726603, + "2024-06-02T07": 3797.036049759432, + "2024-06-02T05": 3809.739164576937, + "2024-06-02T08": 3790.3489824, + "2024-06-02T04": 3807.2536246000004, + "2024-06-02T10": 3774.155057, + "2024-06-02T12": 3793.3847832, + "2024-06-02T02": 3809.6671892, + "2024-06-02T16": 3789.527994, + "2024-06-02T17": 3774.924703, + "2024-06-02T03": 3803.244492, + "2024-06-02T09": 3780.6702322, + "2024-06-02T15": 3795.0974525, + "2024-06-02T06": 3807.3110325000002, + "2024-06-02T18": 3762.4934781, + "2024-06-02T14": 3797.8155693000003, + "2024-06-03": 3776.4089305280568, + "2024-06-03T01": 3793.6285772, + "2024-06-02T20": 3775.0192182, + "2024-06-03T00": 3770.265213, + "2024-06-02T21": 3785.584671319361, + "2024-06-02T23": 3781.7867318, + "2024-06-02T19": 3768.1854581, + "2024-06-02T22": 3785.8925562694676, + "2024-06-03T02": 3806.7702738000003, + "2024-06-03T05": 3817.688012, + "2024-06-03T06": 3826.709665202188, + "2024-06-03T04": 3803.7025722, + "2024-06-03T03": 3796.3288437, + "2024-06-03T07": 3826.5494400000002 + }, + "USD bitcoin_testnet": { + "latest": 0 + }, + "USD ethereum_holesky": { + "latest": 0 + }, + "USD ethereum/erc20/usd_tether__erc20_": { + "2023-07-30": 0.9999784522484314, + "2023-07-27": 0.9998435637497376, + "2023-07-10": 1.0000390205163314, + "2023-08-20": 0.9999000000000001, + "2024-02-23": 0.9997822639006595, + "2024-04-05": 1.0002996099023616, + "2023-12-19": 0.999562506954569, + "2023-08-06": 0.9987054969774685, + "2023-12-02": 1.0004272344212337, + "2023-10-12": 0.9997124088421077, + "2023-10-31": 1.0003494821564858, + "2023-08-29": 0.9998264620726621, + "2023-06-20": 0.9998501026666621, + "2023-09-09": 0.9997062003567082, + "2023-06-26": 1.0000997812278916, + "2023-05-03": 1.0003876671708625, + "2023-10-23": 1.0003199893069419, + "2023-10-01": 1.0000800787414637, + "2024-03-07": 1.0006167117248603, + "2023-07-05": 0.9999947879286002, + "2023-07-29": 0.9999802816351016, + "2024-01-08": 1.0007014131209098, + "2023-05-29": 1.0002645037520854, + "2023-10-07": 1.0005509691353505, + "2023-09-26": 0.9996834984284886, + "2023-08-24": 0.9995644520823458, + "2023-12-05": 1.0000637896331663, + "2023-05-10": 1.0005171916065696, + "2024-02-19": 1.000114093917885, + "2024-01-07": 1.0005189273496493, + "2023-10-18": 1.0003686722335488, + "2023-04-25": 1.0000258421715276, + "2023-07-31": 0.9998092336115991, + "2023-05-23": 1.0001085113902144, + "2023-08-25": 0.9995555979983999, + "2024-03-09": 1.0021329697948491, + "2023-07-12": 0.9999957472793326, + "2023-09-05": 0.9994099915069549, + "2023-06-07": 1.0002194624313132, + "2023-09-16": 1.0001030559915924, + "2023-08-12": 0.9993331305482194, + "2023-05-09": 1.000590581124775, + "2023-09-01": 0.9995996064737327, + "2023-09-08": 0.9996001196284937, + "2024-03-22": 1.00000281466932, + "2023-08-10": 0.9989900033300851, + "2023-12-07": 1.0001280857602834, + "2023-11-18": 1.0003908387017555, + "2023-07-13": 1.0001170882796155, + "2023-04-30": 1.000554769835146, + "2023-06-06": 1.0001901672061675, + "2023-09-13": 0.9999069624574598, + "2023-06-17": 0.9994300078918992, + "2023-07-17": 1.00015963424213, + "2023-07-07": 1.0000581541887703, + "2023-09-07": 0.9994094916208136, + "2024-02-12": 1.00025, + "2024-02-22": 0.9996985837301782, + "2023-12-30": 0.999994203573886, + "2023-09-17": 1.000220354366645, + "2023-04-20": 1.0002728564291397, + "2024-03-26": 1.0001671693360006, + "2023-04-27": 1.0002870760239453, + "2023-10-26": 1.0001756849917147, + "2024-01-03": 1.0005199108515548, + "2023-06-01": 1.0001300489892158, + "2024-01-22": 0.9990924339164344, + "2023-06-12": 1.0000408297628918, + "2023-10-03": 1.0000009951530573, + "2023-06-19": 0.9996923246341914, + "2023-07-09": 1.0001787895519283, + "2023-12-24": 1.0005049482639274, + "2023-09-24": 1.00006, + "2024-01-16": 0.9993196872979324, + "2023-10-17": 1.000408630739459, + "2024-03-18": 0.9995717375652462, + "2024-02-17": 1.000347284010517, + "2023-12-27": 1.0002345891805149, + "2023-07-23": 1.0000043971919532, + "2023-09-03": 0.99986527784314, + "2024-02-24": 0.9998569735144313, + "2024-01-06": 1.0006866517753394, + "2024-03-20": 0.9999152221538392, + "2023-11-21": 1.000346565391692, + "2023-12-25": 1.0001836580342194, + "2023-09-22": 0.9999223949030303, + "2023-10-02": 1.0002510975829573, + "2024-03-27": 0.9998195492325934, + "2023-04-28": 1.0003956232939557, + "2023-08-04": 0.999069967375368, + "2023-08-30": 0.9999242891043502, + "2023-04-24": 1.0000148237880713, + "2023-10-06": 1.0001966975629932, + "2023-10-13": 0.9996494309081019, + "2023-06-28": 0.999998097118588, + "2024-02-05": 0.9989895634609893, + "2024-03-01": 1.000320154767329, + "2023-07-15": 1.0003162755788946, + "2023-06-25": 1.0003179423138935, + "2023-12-10": 1.0000853744461198, + "2023-11-23": 1.0001910308425486, + "2024-01-13": 0.9997848537894541, + "2024-03-28": 0.9998047110538556, + "2023-08-05": 0.9987635514127302, + "2024-02-09": 1.0000197796711614, + "2023-10-09": 1.000198173283462, + "2023-05-24": 0.9999772008989098, + "2024-01-09": 1.000498976620399, + "2023-12-08": 1.0001783605551853, + "2023-05-27": 1.0003075498058407, + "2023-08-18": 0.9996004558071162, + "2023-11-05": 1.0007255456998707, + "2023-10-22": 1.0004466509786318, + "2023-11-01": 1.000202279394344, + "2023-05-07": 1.0014001555073113, + "2024-04-12": 0.9999989546209408, + "2024-03-12": 1.0000949536024875, + "2023-09-11": 0.9996064504037809, + "2024-03-03": 1.0004969487135829, + "2024-02-04": 0.9996199033620214, + "2024-01-28": 0.9999, + "2023-04-18": 1.0003876242595502, + "2023-07-06": 1.0000350661281536, + "2023-07-01": 0.9998810734653913, + "2023-05-18": 0.9999987085210993, + "2023-11-07": 1.0003187842764132, + "2023-11-25": 1.0005959158747728, + "2023-06-04": 1.0002963624342904, + "2024-02-25": 0.9999594819475537, + "2023-12-01": 1.0002122922113057, + "2023-07-14": 1.0003576479608332, + "2024-01-26": 0.999535736740688, + "2023-08-03": 0.9990577577979933, + "2024-02-28": 1.0005322867691895, + "2023-09-15": 1.0000184495906546, + "2023-07-18": 1.0000747847926508, + "2023-04-21": 1.0000364912372262, + "2023-12-21": 1.0000263434665637, + "2023-07-20": 0.9999868481181513, + "2024-03-06": 1.000544125265376, + "2023-09-30": 1.0000230727945119, + "2023-12-12": 0.9996177656902822, + "2024-02-13": 1.0002584413035445, + "2023-05-19": 1.0001231973370288, + "2023-09-20": 1.0000700247368512, + "2023-07-08": 1.0000879301523953, + "2023-09-19": 1.0001806510874856, + "2023-09-29": 0.9998900053738049, + "2023-09-12": 0.9997483687028741, + "2023-06-13": 0.9999003595046548, + "2023-10-04": 0.9999639166322751, + "2024-03-02": 1.000949757835641, + "2023-10-08": 1.0005863506517971, + "2023-11-20": 1.0005694662607607, + "2023-12-20": 0.9999368514137088, + "2023-12-31": 0.999706490105218, + "2023-11-06": 1.0005236061008729, + "2023-08-22": 0.9996312417930362, + "2023-06-27": 1.0000631234194826, + "2023-04-14": 1.0008469697570166, + "2023-06-09": 1.0000741939968731, + "2024-03-17": 0.999300125610499, + "2023-09-18": 1.000170535881867, + "2024-04-01": 1.0003067204988154, + "2024-01-19": 0.9989301008513192, + "2023-11-11": 1.0005239086294107, + "2023-05-14": 1.0004318788534152, + "2023-05-13": 1.0004796850000175, + "2023-05-06": 1.0015097587930053, + "2023-04-16": 1.0006918834312242, + "2023-11-19": 1.0005102321747177, + "2023-04-15": 1.0008223645596672, + "2023-05-16": 1.0001929042038777, + "2023-09-23": 0.9999999874901567, + "2023-07-02": 0.999998999472882, + "2023-08-15": 0.99872, + "2024-01-25": 0.9995261075782131, + "2024-03-13": 1.0005705970776617, + "2024-01-21": 0.9993984589774161, + "2024-02-01": 0.9994087706890287, + "2023-06-15": 0.9989166138852001, + "2024-03-16": 0.9997554256352759, + "2023-11-27": 1.0001689835048435, + "2024-01-10": 1.0003454462548549, + "2024-03-15": 0.9996551244231094, + "2023-06-21": 0.999963412069765, + "2024-01-02": 1.0006886283230676, + "2023-04-26": 1.000200198237982, + "2023-07-11": 1.0000311202649552, + "2023-10-25": 1.0001135692661165, + "2024-01-01": 1.0000219639617158, + "2024-02-14": 1.0004726470347727, + "2023-09-04": 0.9996344648872475, + "2023-09-06": 0.999418200324391, + "2024-04-03": 1.0003979402273147, + "2024-03-08": 1.001445390518557, + "2023-11-28": 1.0001860758160084, + "2023-12-03": 1.0003663938465919, + "2023-08-02": 0.9994292815960678, + "2023-08-27": 0.9995229656064774, + "2023-10-20": 1.00044, + "2023-05-25": 0.9999164538416403, + "2023-10-10": 1.000081795577596, + "2024-04-11": 0.9999872215855751, + "2023-06-22": 1.0000945781695192, + "2024-01-14": 0.9997349012266152, + "2023-12-15": 1.000039558003058, + "2023-10-19": 1.0003167420753751, + "2024-02-08": 0.9997691189606479, + "2023-11-08": 1.0002799441235242, + "2023-11-12": 1.00038778419629, + "2023-12-22": 1.0002782323122186, + "2023-05-20": 1.00029, + "2023-05-31": 1.0001782006602706, + "2024-03-23": 1.0000886878997068, + "2024-04-10": 0.9999288184704453, + "2023-09-27": 0.9993002947936063, + "2024-03-04": 1.0006640231259203, + "2023-09-10": 0.9997501097043565, + "2024-04-13": 1.0003107557442696, + "2024-02-29": 1.000193354208913, + "2023-07-22": 1.0001000000000002, + "2023-07-21": 0.9999496068246334, + "2023-06-30": 0.9997899039101359, + "2023-12-29": 1.000525710098593, + "2023-12-04": 1.0002446053123668, + "2023-09-21": 0.9999509527287986, + "2023-06-02": 1.0002202342223705, + "2023-10-11": 1.0000108429634742, + "2023-07-19": 1.0000097118910456, + "2023-05-05": 1.0006994369483793, + "2024-03-21": 1.0000198980519805, + "2024-04-08": 0.9999900007356841, + "2023-04-29": 1.0006997568534648, + "2023-06-14": 0.9997999778466133, + "2023-10-05": 1.0001243390933379, + "2023-10-16": 1.0001990826520295, + "2024-02-10": 1.0005373988217636, + "2024-04-07": 1.0002204870188927, + "2023-05-21": 1.0003707315003587, + "2024-02-20": 1.0000028201100928, + "2023-11-17": 1.0001626073947543, + "2023-12-11": 0.9998766783894801, + "2023-11-26": 1.0004422324934508, + "2023-11-16": 1.0002897113131952, + "2023-06-29": 0.9998880864108808, + "2023-06-11": 1.0004315624348548, + "2024-02-02": 0.9994894048480738, + "2023-09-14": 1.0000385671216983, + "2024-01-27": 0.999882535034336, + "2024-03-30": 1.0005796820684694, + "2023-05-04": 1.0003559995076023, + "2023-09-28": 0.9993006572338614, + "2023-10-27": 1.0000977238602806, + "2023-05-01": 1.0002639282169299, + "2023-05-15": 1.0003439124251954, + "2023-11-22": 1.0001771632930128, + "2023-06-03": 1.000323823033205, + "2024-01-18": 0.9989240600107379, + "2023-08-26": 0.9994625357882039, + "2024-02-15": 1.0007686002576943, + "2023-10-28": 1.00015, + "2024-03-24": 1.0001061447367188, + "2023-04-22": 1.0000907892753457, + "2023-12-06": 1.0000712811600452, + "2023-11-10": 1.0002138579250022, + "2024-01-30": 0.999934445991335, + "2023-08-09": 0.999460061040409, + "2023-05-02": 1.0002295024097838, + "2023-11-14": 1.0001997689640332, + "2024-01-23": 0.99900054991038, + "2024-01-31": 0.9996, + "2024-01-11": 1.000208503227804, + "2024-02-18": 1.0002079761063432, + "2023-06-16": 0.9989876867629772, + "2023-10-30": 1.0002892504373868, + "2023-12-17": 0.9990258896504751, + "2024-02-26": 1.0000796988102714, + "2023-07-16": 1.0003300265485886, + "2024-01-05": 1.0007621780380087, + "2023-08-23": 0.9995246886763218, + "2024-03-11": 1.0003812067213191, + "2023-08-01": 0.9995695638520323, + "2024-03-14": 1.0000657504546695, + "2024-02-21": 1, + "2023-08-28": 0.9994390460802476, + "2023-07-04": 1.0001401699581174, + "2023-12-13": 0.9995630361543678, + "2023-08-13": 0.9993232499473954, + "2024-03-31": 1.000128688372266, + "2023-12-09": 1.0003124251652395, + "2024-04-02": 1.000289437896888, + "2024-02-06": 0.9990553344680779, + "2024-04-09": 1.0000206113003818, + "2023-05-30": 1.0002704587173001, + "2023-11-04": 1.0004999999999997, + "2024-01-15": 0.9994948811088207, + "2023-07-03": 0.9999963964168201, + "2023-12-28": 1.0004253379900228, + "2023-04-23": 1.000214097551543, + "2023-04-17": 1.0005199459252856, + "2023-05-08": 1.0010902492826061, + "2024-02-27": 1.0004687004265274, + "2024-02-07": 0.9994441047691508, + "2023-09-25": 0.9997643898059492, + "2024-03-19": 0.9997099544733546, + "2024-03-10": 1.0017999999999998, + "2023-09-02": 0.999797078151559, + "2024-01-12": 0.9999535099197165, + "2023-11-29": 1.0004742188543934, + "2023-10-15": 1.0000031594002534, + "2023-11-30": 1.0001653962427388, + "2024-01-24": 0.999398329318694, + "2023-08-11": 0.998836094951441, + "2024-02-11": 1.000380014440065, + "2023-06-08": 1.0001, + "2023-08-16": 0.9988202030947102, + "2023-11-15": 1.0002747264878407, + "2023-12-16": 0.9994022430261683, + "2024-03-29": 1.0001514270490928, + "2024-04-04": 1.0002396988787647, + "2023-06-10": 1.0004577510878558, + "2023-07-28": 0.9997293542591548, + "2024-01-20": 0.99931, + "2023-10-21": 1.0003899658549544, + "2023-05-12": 1.000439267371866, + "2023-11-03": 1.0002470283002383, + "2023-08-31": 0.999900633161885, + "2024-01-29": 0.9998806569344532, + "2024-01-04": 1.0008945324368521, + "2023-05-22": 1.000105052051122, + "2023-07-26": 0.999875683667403, + "2023-11-13": 1.0003791038484469, + "2024-03-25": 1.0003184934042482, + "2023-08-07": 0.9984346107637662, + "2023-10-29": 1.0001904878703396, + "2023-07-25": 0.9998958832269429, + "2023-05-17": 1.0000499948275205, + "2023-10-24": 1.0000132087861118, + "2023-06-05": 1.0001871069346917, + "2023-11-02": 1.0004254228410634, + "2023-12-18": 0.9991994292517622, + "2023-11-24": 1.0003359023950296, + "2023-08-21": 0.9997560553893646, + "2023-08-14": 0.9988000005473627, + "2023-05-26": 1.000172788713654, + "2024-03-05": 1.0005865850844944, + "2024-04-06": 1.0002993652331509, + "2023-12-23": 1.0005636776544033, + "2024-02-03": 0.9995915421102922, + "2024-02-16": 1.0004889691637024, + "2023-05-28": 1.0002787862879898, + "2023-12-14": 1.0001572581963885, + "2023-06-24": 1.000471531006705, + "2023-12-26": 0.9999055338852005, + "2023-11-09": 1.0003355820269322, + "2023-05-11": 1.0005453060347644, + "2023-08-19": 0.9997233373729801, + "2023-06-23": 1.0002260661592144, + "2023-06-18": 0.9997416021277044, + "2023-08-08": 0.9991403715520106, + "2023-08-17": 0.9988201475771474, + "2024-04-14": 1.0005097193046661, + "2023-07-24": 0.999869791391712, + "2023-10-14": 0.9999245872478234, + "2024-01-17": 0.9993948422529548, + "2023-04-19": 1.000450509631999, + "2024-04-08T13": 0.99968, + "2024-04-10T23": 0.99996, + "2024-04-09T08": 1.00033, + "2024-04-11T04": 1.00004, + "2024-04-14T03": 1.00049, + "2024-04-11T16": 0.99978, + "2024-04-11T12": 0.99993, + "2024-04-13T04": 1.00014, + "2024-04-10T17": 1.00002, + "2024-04-12T19": 1, + "2024-04-15T06": 1.00071, + "2024-04-11T17": 0.99981, + "2024-04-14T19": 1.00023, + "2024-04-15T01": 1.00109, + "2024-04-11T07": 0.99995, + "2024-04-12T14": 0.99957, + "2024-04-11T10": 0.99984, + "2024-04-12T20": 1.00029, + "2024-04-10T20": 1, + "2024-04-14T23": 1.0005637853243825, + "2024-04-13T07": 1.00029, + "2024-04-14T20": 1.0003, + "2024-04-10T06": 0.99986, + "2024-04-10T10": 0.99999, + "2024-04-15T00": 1.00094, + "2024-04-14T01": 1.00101, + "2024-04-15T02": 1.0009, + "2024-04-09T05": 0.99999, + "2024-04-08T10": 0.99979, + "2024-04-14T05": 1.00042, + "2024-04-14T13": 1.00051, + "2024-04-14T10": 1.00047, + "2024-04-11T01": 0.99999, + "2024-04-13T14": 1.0002, + "2024-04-08T20": 0.99999, + "2024-04-10T21": 0.9999, + "2024-04-08T23": 0.99995, + "2024-04-14T15": 1.0003, + "2024-04-14T12": 1.00051, + "2024-04-11T23": 1.00009, + "2024-04-12T09": 0.99981, + "2024-04-14T18": 1.00031, + "2024-04-14T09": 1.0005, + "2024-04-12T22": 1.00034, + "2024-04-12T00": 1.00007, + "2024-04-13T20": 1.00163, + "2024-04-10T19": 0.99999, + "2024-04-09T15": 0.9998906649047646, + "2024-04-14T11": 1.00049, + "2024-04-11T20": 1.00001, + "2024-04-09T09": 1.0003, + "2024-04-13T13": 1.0002, + "2024-04-08T22": 0.99995, + "2024-04-12T16": 0.99947, + "2024-04-11T05": 1.00002, + "2024-04-11T22": 1.0001, + "2024-04-15T05": 1.00069, + "2024-04-08T16": 0.99994, + "2024-04-10T05": 0.9998, + "2024-04-09T17": 0.99968, + "2024-04-12T12": 0.99965, + "2024-04-13T03": 1.00021, + "2024-04-11T02": 0.99996, + "2024-04-08T12": 0.99966, + "2024-04-12T03": 1.0001, + "2024-04-10T02": 0.9998, + "2024-04-13T23": 1.00122, + "2024-04-14T14": 1.0004, + "2024-04-09T19": 0.99968, + "2024-04-11T06": 1.00007, + "2024-04-11T15": 0.99976, + "2024-04-10T14": 0.99967, + "2024-04-08T18": 1.00012, + "2024-04-11T13": 0.99999, + "2024-04-12T13": 0.99967, + "2024-04-11T03": 0.99998, + "2024-04-12T23": 1.00039, + "2024-04-09T07": 1.00033, + "2024-04-09T14": 1.00009, + "2024-04-11T21": 1.00007, + "2024-04-12T02": 1.00005, + "2024-04-08T14": 0.99976, + "2024-04-09T10": 1.00019, + "2024-04-11T19": 1, + "2024-04-09T11": 1.00011, + "2024-04-13T11": 1.0001, + "2024-04-12T01": 1.00004, + "2024-04-09T03": 0.99994, + "2024-04-12T05": 1.0001, + "2024-04-10T04": 0.99986, + "2024-04-08T15": 0.99989, + "2024-04-14T02": 1.0008, + "2024-04-11T00": 0.99991, + "2024-04-12T10": 0.99965, + "2024-04-12T11": 0.99961, + "2024-04-10T00": 0.99961, + "2024-04-13T00": 1.00044, + "2024-04-10T15": 0.99994, + "2024-04-10T18": 0.99997, + "2024-04-13T08": 1.00028, + "2024-04-13T06": 1.00029, + "2024-04-15T04": 1.00077, + "2024-04-10T12": 0.99988, + "2024-04-09T01": 1.00004, + "2024-04-13T02": 1.00025, + "2024-04-10T08": 0.99987, + "2024-04-13T05": 1.00029, + "2024-04-14T16": 1.00022, + "2024-04-11T08": 0.99995, + "2024-04-12T17": 0.99929, + "2024-04-09T04": 1.00006, + "2024-04-14T21": 1.0003, + "2024-04-15T07": 1.00089, + "2024-04-09T23": 0.9996, + "2024-04-13T22": 1.00082, + "2024-04-10T22": 0.99993, + "2024-04-11T11": 0.99987, + "2024-04-10T07": 0.99976, + "2024-04-14T22": 1.00027, + "2024-04-08T17": 1.0001, + "2024-04-08T11": 0.99979, + "2024-04-09T12": 0.99996, + "2024-04-08T21": 0.99994, + "2024-04-13T21": 1.00095, + "2024-04-12T07": 0.99998, + "2024-04-08T08": 1.00004, + "2024-04-12T18": 0.99959, + "2024-04-10T09": 0.99994, + "2024-04-14T04": 1.00041, + "2024-04-11T09": 0.9999029829207409, + "2024-04-09T20": 0.9996, + "2024-04-13T09": 1.00028, + "2024-04-14T08": 1.0005, + "2024-04-10T11": 0.99994, + "2024-04-11T14": 0.99995, + "2024-04-14T06": 1.00058, + "2024-04-14T07": 1.00067, + "2024-04-08T19": 1.0001, + "2024-04-09T06": 1.0002, + "2024-04-09T00": 0.99999, + "2024-04-13T19": 1.00045, + "2024-04-09T02": 1, + "2024-04-13T16": 1.0002, + "2024-04-09T22": 0.99957, + "2024-04-10T03": 0.99989, + "2024-04-12T06": 1.00007, + "2024-04-13T15": 1.0002, + "2024-04-12T15": 0.99947, + "2024-04-09T13": 1.00009, + "2024-04-11T18": 0.99999, + "2024-04-10T16": 0.99991, + "2024-04-12T08": 1.00011, + "2024-04-08T09": 0.99983, + "2024-04-12T04": 1.00013, + "2024-04-13T17": 1.0002, + "2024-04-13T18": 1.00033, + "2024-04-10T13": 0.99948, + "2024-04-10T01": 0.99969, + "2024-04-13T10": 1.00035, + "2024-04-12T21": 1.00034, + "2024-04-09T18": 0.99967, + "2024-04-15T03": 1.00098, + "2024-04-14T00": 1.0011, + "2024-04-09T21": 0.99955, + "2024-04-13T01": 1.00024, + "2024-04-09T16": 0.99977, + "2024-04-14T17": 1.00048, + "2024-04-13T12": 1.0001, + "latest": 0.9994, + "2024-04-15T08": 1.00093, + "2024-04-15T09": 1.0011, + "2024-04-15T10": 1.00098, + "2024-04-15T11": 1.00104, + "2024-04-15T12": 1.00097, + "2024-04-15T14": 1.00069, + "2024-04-15T13": 1.00087, + "2024-04-15": 1.000804779697821, + "2024-04-16": 1.0003799751044982, + "2024-04-16T02": 1.00036, + "2024-04-15T23": 1.00022, + "2024-04-16T00": 1.00028, + "2024-04-15T15": 1.00049, + "2024-04-15T19": 1.00042, + "2024-04-16T03": 1.0004, + "2024-04-15T20": 1.00042, + "2024-04-15T16": 1.0005, + "2024-04-15T18": 1.00052, + "2024-04-16T01": 1.00028, + "2024-04-15T21": 1.00032, + "2024-04-15T17": 1.00052, + "2024-04-15T22": 1.00021, + "2024-04-16T06": 1.00058, + "2024-04-16T05": 1.00059, + "2024-04-16T08": 1.00037, + "2024-04-16T04": 1.00054, + "2024-04-16T07": 1.00055, + "2024-04-16T09": 1.00031, + "2024-04-16T10": 1.00042, + "2024-04-16T11": 1.00035, + "2024-04-16T12": 1.0002, + "2024-04-16T18": 1.00026, + "2024-04-16T20": 1.00035, + "2024-04-16T14": 1.0003, + "2024-04-16T21": 1.0002, + "2024-04-16T15": 1.00057, + "2024-04-16T16": 1.0005, + "2024-04-16T17": 1.00026, + "2024-04-16T19": 1.00026, + "2024-04-16T13": 1.00037, + "2024-04-16T22": 1.00033, + "2024-04-17": 1.0003139365523708, + "2024-04-17T00": 1.00033, + "2024-04-17T09": 1.00045, + "2024-04-17T08": 1.0003, + "2024-04-17T02": 1.00027, + "2024-04-17T05": 1.0002, + "2024-04-17T03": 1.0002, + "2024-04-16T23": 1.00035, + "2024-04-17T06": 1.0003, + "2024-04-17T01": 1.00034, + "2024-04-17T04": 1.00014, + "2024-04-17T07": 1.00025, + "2024-04-17T10": 1.0005, + "2024-04-17T11": 1.00062, + "2024-04-17T12": 1.00049, + "2024-04-17T13": 1.0005, + "2024-04-18T09": 1.00021, + "2024-04-18T10": 1.0002, + "2024-04-18T04": 0.99993, + "2024-04-18T00": 0.99994, + "2024-04-18T08": 1.0002, + "2024-04-18T07": 1.0002, + "2024-04-18T01": 0.99988, + "2024-04-18T02": 0.99993, + "2024-04-18T03": 0.99996, + "2024-04-18T05": 1.00002, + "2024-04-18T06": 1.00014, + "2024-04-18T11": 1.0003, + "2024-04-18T12": 1.00033, + "2024-04-18T13": 1.00032, + "2024-04-18": 1.000384938724127, + "2024-04-19": 1.0004411323024698, + "2024-04-18T19": 1.0005, + "2024-04-19T03": 1.00006, + "2024-04-19T06": 1.00028, + "2024-04-18T18": 1.00047, + "2024-04-19T04": 1.00024, + "2024-04-19T05": 1.00027, + "2024-04-19T00": 1.00046, + "2024-04-18T20": 1.00056, + "2024-04-19T01": 1.00028, + "2024-04-18T17": 1.00057, + "2024-04-19T02": 1.00009, + "2024-04-18T21": 1.00035, + "2024-04-18T14": 1.0005, + "2024-04-18T16": 1.0005, + "2024-04-18T15": 1.00055, + "2024-04-18T23": 1.00039, + "2024-04-18T22": 1.0003, + "2024-04-19T07": 1.00025, + "2024-04-19T08": 1.00043, + "2024-04-19T09": 1.00039, + "2024-04-19T10": 1.00064, + "2024-04-19T11": 1.0008942667000136, + "2024-04-19T12": 1.00065, + "2024-04-19T13": 1.00071, + "2024-04-19T14": 1.00044, + "2024-04-19T15": 1.0001981867673027, + "2024-04-20": 1.0003399015476544, + "2024-04-19T22": 1.0008248956896273, + "2024-04-19T23": 1.0004018415799563, + "2024-04-19T20": 1.001082908076592, + "2024-04-19T19": 1.0004513040814857, + "2024-04-19T21": 1.0008667036918135, + "2024-04-19T16": 1.0000649200338023, + "2024-04-19T17": 0.9992736891959801, + "2024-04-20T00": 1.00039, + "2024-04-19T18": 1.00083271341762, + "2024-04-20T01": 1.00034, + "2024-04-21": 1.0002829102150117, + "2024-04-20T16": 1.00029, + "2024-04-20T19": 1.0003, + "2024-04-20T15": 1.00025, + "2024-04-20T02": 1.00035, + "2024-04-20T09": 1.00029, + "2024-04-20T04": 1.00036, + "2024-04-20T10": 1.00029, + "2024-04-20T22": 1.00034, + "2024-04-21T00": 1.00036, + "2024-04-20T12": 1.00021, + "2024-04-21T04": 1.00042, + "2024-04-20T05": 1.00037, + "2024-04-20T18": 1.00035, + "2024-04-20T11": 1.00023, + "2024-04-20T23": 1.00031, + "2024-04-20T08": 1.00033, + "2024-04-20T13": 1.00022, + "2024-04-21T02": 1.00037, + "2024-04-21T01": 1.00033, + "2024-04-20T20": 1.0003, + "2024-04-20T03": 1.00035, + "2024-04-20T14": 1.00024, + "2024-04-20T07": 1.00034, + "2024-04-20T17": 1.00035, + "2024-04-20T21": 1.0003, + "2024-04-20T06": 1.00038, + "2024-04-21T03": 1.00043, + "2024-04-21T16": 1.00025, + "2024-04-21T11": 1.00021, + "2024-04-21T17": 1.00022, + "2024-04-21T08": 1.0003049802549726, + "2024-04-21T12": 1.0002, + "2024-04-21T15": 1.00014, + "2024-04-21T06": 1.00041, + "2024-04-21T07": 1.00031, + "2024-04-21T14": 1.00022, + "2024-04-21T13": 1.00025, + "2024-04-21T05": 1.00042, + "2024-04-21T10": 1.0002, + "2024-04-21T09": 1.00032, + "2024-04-21T19": 1.00003, + "2024-04-21T22": 1.00012, + "2024-04-21T23": 1.00019, + "2024-04-21T21": 1.00007, + "2024-04-21T20": 1.0001, + "2024-04-21T18": 1.0002, + "2024-04-22": 1.0003998873307551, + "2024-04-22T00": 1.00011, + "2024-04-22T07": 1.00057, + "2024-04-22T05": 1.00043, + "2024-04-22T04": 1.00027, + "2024-04-22T02": 1.00014, + "2024-04-22T01": 1.00012, + "2024-04-22T06": 1.0005, + "2024-04-22T03": 1.00009, + "2024-04-22T08": 1.00048, + "2024-04-22T09": 1.00039, + "2024-04-22T10": 1.00042, + "2024-04-22T11": 1.00049, + "2024-04-22T12": 1.0004, + "2024-04-22T13": 1.00033, + "2024-04-22T14": 1.0004, + "2024-04-22T15": 1.00051, + "2024-04-22T16": 1.00049, + "2024-04-23": 1.0003896352550115, + "2024-04-23T03": 1.00055, + "2024-04-22T19": 1.00038, + "2024-04-22T17": 1.00039, + "2024-04-22T23": 1.0003, + "2024-04-22T20": 1.00029, + "2024-04-22T21": 1.0003, + "2024-04-22T18": 1.00042, + "2024-04-23T06": 1.00056, + "2024-04-22T22": 1.0003, + "2024-04-23T04": 1.00055, + "2024-04-23T01": 1.00039, + "2024-04-23T07": 1.00044, + "2024-04-23T00": 1.00039, + "2024-04-23T05": 1.0006, + "2024-04-23T02": 1.00049, + "2024-04-23T08": 1.00033, + "2024-04-23T09": 1.00035, + "2024-04-23T10": 1.00043, + "2024-04-23T11": 1.00047, + "2024-04-23T12": 1.00037, + "2024-04-23T13": 1.00041, + "2024-04-23T14": 1.00046, + "2024-04-23T15": 1.0003, + "2024-04-23T16": 1.00017, + "2024-04-24": 0.9999212837549867, + "2024-04-24T02": 1.0000748772984274, + "2024-04-24T00": 1.00006, + "2024-04-24T01": 1.0001, + "2024-04-23T23": 1.00007, + "2024-04-24T06": 1.00004, + "2024-04-23T22": 1.0000206949623824, + "2024-04-23T18": 1.00023, + "2024-04-23T20": 1.0001, + "2024-04-23T21": 1.00005, + "2024-04-24T04": 1, + "2024-04-24T05": 1.00007, + "2024-04-24T03": 1.0000005386468453, + "2024-04-24T07": 0.99999, + "2024-04-23T19": 1.0002, + "2024-04-23T17": 1.00025, + "2024-04-24T08": 0.99993, + "2024-04-24T09": 0.99998, + "2024-04-24T10": 0.9999, + "2024-04-24T11": 0.99999, + "2024-04-24T12": 0.99999, + "2024-04-24T13": 0.99991, + "2024-04-24T14": 0.99981, + "2024-04-24T15": 0.99948, + "2024-04-25": 0.9997294699957102, + "2024-04-24T18": 0.99954, + "2024-04-25T00": 0.9995, + "2024-04-24T21": 0.99909, + "2024-04-24T17": 0.9995116425336928, + "2024-04-24T16": 0.99944, + "2024-04-24T20": 0.99912, + "2024-04-24T23": 0.99945, + "2024-04-24T22": 0.9992, + "2024-04-24T19": 0.99928, + "2024-04-25T01": 0.99981, + "2024-04-25T03": 0.99974, + "2024-04-25T05": 0.99972, + "2024-04-25T04": 0.99975, + "2024-04-25T02": 0.99981, + "2024-04-25T06": 0.99978, + "2024-04-25T07": 0.99977, + "2024-04-25T08": 0.99973, + "2024-04-25T09": 0.9998, + "2024-04-25T10": 0.99981, + "2024-04-25T11": 0.99975, + "2024-04-25T12": 0.9996, + "2024-04-25T13": 0.99939, + "2024-04-25T14": 0.99941, + "2024-04-25T15": 0.99945, + "2024-04-25T16": 0.99939, + "2024-04-25T17": 0.99957, + "2024-04-25T18": 0.99964, + "2024-04-25T19": 0.99958, + "2024-04-26": 0.9998623012181294, + "2024-04-25T22": 0.99996, + "2024-04-25T21": 1, + "2024-04-25T20": 0.99958, + "2024-04-26T01": 1.00003, + "2024-04-25T23": 0.9999, + "2024-04-26T00": 0.99977, + "2024-04-26T05": 0.99983, + "2024-04-26T07": 1, + "2024-04-26T02": 0.99996, + "2024-04-26T03": 0.99997, + "2024-04-26T04": 0.99989, + "2024-04-26T06": 1, + "2024-04-26T08": 1.00002, + "2024-04-26T09": 0.9999, + "2024-04-26T10": 0.99988, + "2024-04-26T11": 0.99986, + "2024-04-26T12": 0.99983, + "2024-04-26T13": 0.9998, + "2024-04-26T14": 0.99979, + "2024-04-26T15": 0.99972, + "2024-04-26T21": 0.99964, + "2024-04-26T22": 0.99965, + "2024-04-26T17": 0.99963, + "2024-04-26T19": 0.99969, + "2024-04-26T16": 0.99968, + "2024-04-26T18": 0.99971, + "2024-04-26T20": 0.99969, + "2024-04-27": 0.9994102517758563, + "2024-04-26T23": 0.99962, + "2024-04-27T00": 0.99969, + "2024-04-27T01": 0.99974, + "2024-04-28": 0.9996294507668242, + "2024-04-27T13": 0.99935, + "2024-04-28T00": 0.99932, + "2024-04-27T20": 0.99932, + "2024-04-27T23": 0.99932, + "2024-04-27T06": 0.99942, + "2024-04-27T05": 0.99958, + "2024-04-27T02": 0.99973, + "2024-04-27T18": 0.99931, + "2024-04-27T07": 0.9994, + "2024-04-27T04": 0.99943, + "2024-04-27T21": 0.99933, + "2024-04-27T09": 0.99936, + "2024-04-27T14": 0.99936, + "2024-04-27T22": 0.99932, + "2024-04-27T16": 0.99932, + "2024-04-27T10": 0.99933, + "2024-04-27T17": 0.99933, + "2024-04-27T08": 0.99939, + "2024-04-27T12": 0.99935, + "2024-04-27T15": 0.99938, + "2024-04-27T11": 0.99938, + "2024-04-27T03": 0.99974, + "2024-04-27T19": 0.9993, + "2024-04-28T01": 0.99935, + "2024-04-28T20": 0.99963, + "2024-04-28T14": 0.99952, + "2024-04-28T05": 0.99939, + "2024-04-28T08": 0.99933, + "2024-04-28T16": 0.99961, + "2024-04-28T11": 0.99943, + "2024-04-28T22": 0.9996, + "2024-04-28T03": 0.9994, + "2024-04-28T13": 0.99954, + "2024-04-28T15": 0.99957, + "2024-04-28T04": 0.99944, + "2024-04-28T09": 0.99937, + "2024-04-28T19": 0.99962, + "2024-04-28T06": 0.99933, + "2024-04-28T12": 0.99954, + "2024-04-28T02": 0.99923, + "2024-04-28T17": 0.9996, + "2024-04-28T21": 0.99963, + "2024-04-28T18": 0.99962, + "2024-04-28T07": 0.99937, + "2024-04-28T10": 0.99944, + "2024-04-29": 0.9998777764176565, + "2024-04-28T23": 0.99959, + "2024-04-29T00": 0.99971, + "2024-04-29T01": 0.99968, + "2024-04-29T02": 0.99974, + "2024-04-29T05": 0.99984, + "2024-04-29T03": 0.99981, + "2024-04-29T04": 0.99979, + "2024-04-29T06": 0.99992, + "2024-04-29T07": 0.99992, + "2024-04-29T08": 0.99992, + "2024-04-29T09": 0.99995, + "2024-04-29T10": 0.99994, + "2024-04-29T11": 0.9998, + "2024-04-29T12": 0.99978, + "2024-04-29T13": 0.99976, + "2024-04-29T14": 0.99983, + "2024-04-29T15": 1, + "2024-04-30": 0.999653461005082, + "2024-04-30T04": 0.9997, + "2024-04-29T21": 0.99966, + "2024-04-30T03": 0.99962, + "2024-04-29T22": 0.9995, + "2024-04-29T19": 0.99959, + "2024-04-29T23": 0.99958, + "2024-04-29T18": 0.99979, + "2024-04-30T00": 0.99974, + "2024-04-29T20": 0.99954, + "2024-04-30T01": 0.99966, + "2024-04-30T02": 0.99964, + "2024-04-29T16": 0.99994, + "2024-04-29T17": 0.99987, + "2024-04-30T05": 0.99977, + "2024-04-30T06": 0.99982, + "2024-04-30T07": 0.99983, + "2024-04-30T08": 0.99983, + "2024-04-30T09": 0.99968, + "2024-04-30T10": 0.99981, + "2024-04-30T11": 0.9998, + "2024-04-30T12": 0.99964, + "2024-04-30T13": 0.99971, + "2024-04-30T14": 0.99954, + "2024-04-30T15": 0.99928, + "2024-04-30T16": 0.99932, + "2024-05-01": 0.9988653959969918, + "2024-04-30T22": 0.99872, + "2024-04-30T17": 0.99922, + "2024-04-30T20": 0.99858, + "2024-04-30T23": 0.999, + "2024-04-30T19": 0.99898, + "2024-04-30T18": 0.99912, + "2024-05-01T01": 0.99894, + "2024-05-01T00": 0.99896, + "2024-04-30T21": 0.99868, + "2024-05-01T02": 0.99882, + "2024-05-01T03": 0.9988, + "2024-05-01T05": 0.9989357088182996, + "2024-05-01T04": 0.99886, + "2024-05-01T06": 0.9987143623289142, + "2024-05-01T07": 0.99899, + "2024-05-01T08": 0.99873, + "2024-05-01T11": 0.99884, + "2024-05-01T09": 0.99844, + "2024-05-01T10": 0.99883, + "2024-05-01T12": 0.99886, + "2024-05-01T13": 0.99913, + "2024-05-01T15": 0.99881, + "2024-05-01T16": 0.99869, + "2024-05-01T14": 0.99888, + "2024-05-01T21": 0.99855, + "2024-05-01T20": 0.99872, + "2024-05-01T17": 0.99877, + "2024-05-01T19": 0.99894, + "2024-05-01T18": 0.9988, + "2024-05-01T22": 0.99854, + "2024-05-02": 0.9986565734957235, + "2024-05-02T03": 0.999, + "2024-05-02T01": 0.9989, + "2024-05-02T02": 0.99905, + "2024-05-01T23": 0.99856, + "2024-05-02T00": 0.99881, + "2024-05-02T04": 0.99889, + "2024-05-02T06": 0.99928, + "2024-05-02T07": 0.9993, + "2024-05-02T05": 0.99905, + "2024-05-02T08": 0.99938, + "2024-05-02T09": 0.99949, + "2024-05-02T10": 0.9996, + "2024-05-02T11": 0.99964, + "2024-05-02T12": 0.99971, + "2024-05-02T13": 0.99986, + "2024-05-02T14": 0.99986, + "2024-05-02T15": 0.99997, + "2024-05-02T16": 1.00001, + "2024-05-02T17": 1.00002, + "2024-05-03T04": 1.00001, + "2024-05-03T02": 1.00014, + "2024-05-03T03": 1.00013, + "2024-05-03T05": 1.00007, + "2024-05-03T06": 1.00012, + "2024-05-03T00": 1.00009, + "2024-05-03T01": 1.00007, + "2024-05-03T07": 1.0001, + "2024-05-03T08": 1.00001, + "2024-05-03T09": 1.00011, + "2024-05-03T10": 1.00008, + "2024-05-03T11": 0.99999, + "2024-05-03T13": 1, + "2024-05-03T12": 0.99994, + "2024-05-03T14": 1.00015, + "2024-05-03": 1.0002075746353025, + "2024-05-04": 1.0001901566937887, + "2024-05-04T05": 1.00029, + "2024-05-03T18": 1.00021, + "2024-05-04T03": 1.00022, + "2024-05-03T17": 1.00031, + "2024-05-03T21": 1.00051, + "2024-05-03T20": 1.0004511140664007, + "2024-05-04T06": 1.00028, + "2024-05-03T22": 1.00043, + "2024-05-03T19": 1.0003, + "2024-05-04T02": 1.00022, + "2024-05-03T15": 1.00021, + "2024-05-03T16": 1.00026, + "2024-05-04T01": 1.00033, + "2024-05-04T04": 1.00028, + "2024-05-03T23": 1.00039, + "2024-05-04T00": 1.00035, + "2024-05-04T13": 1.00016, + "2024-05-04T10": 1.00002, + "2024-05-04T12": 1.0001, + "2024-05-04T07": 1.00018, + "2024-05-04T11": 1.0001, + "2024-05-04T09": 1.00016, + "2024-05-04T15": 1.0002, + "2024-05-04T08": 1.00019, + "2024-05-04T14": 1.0002, + "2024-05-05": 1.000146059072717, + "2024-05-05T01": 1.00013, + "2024-05-04T19": 1.00005, + "2024-05-04T20": 1.00004, + "2024-05-05T05": 1.00013, + "2024-05-05T07": 1.0001, + "2024-05-04T23": 1.0001, + "2024-05-04T22": 1.0001, + "2024-05-04T21": 1.00002, + "2024-05-05T00": 1.00015, + "2024-05-05T08": 1.00011, + "2024-05-04T17": 1.00006, + "2024-05-05T09": 1.00012, + "2024-05-05T10": 1.00015, + "2024-05-05T04": 1.00013, + "2024-05-04T16": 1.00015, + "2024-05-05T06": 1.0001, + "2024-05-05T03": 1.00013, + "2024-05-04T18": 1.00006, + "2024-05-05T02": 1.00013, + "2024-05-05T21": 1.00011, + "2024-05-05T16": 1.00003, + "2024-05-05T22": 1.00012, + "2024-05-05T17": 1.00009, + "2024-05-05T20": 1.00011, + "2024-05-05T13": 1.0001447751381711, + "2024-05-05T15": 1.00007, + "2024-05-05T12": 1.00016, + "2024-05-05T18": 1.00018, + "2024-05-05T14": 1.00019, + "2024-05-05T19": 1.00016, + "2024-05-05T11": 1.00016, + "2024-05-05T23": 1.00009, + "2024-05-06T00": 1.0001, + "2024-05-06T04": 1.00006, + "2024-05-06T02": 1.00009, + "2024-05-06T05": 1.00005, + "2024-05-06T06": 1.00002, + "2024-05-06T01": 1.00017, + "2024-05-06T03": 1.00006, + "2024-05-06T07": 1.00006, + "2024-05-06T08": 1, + "2024-05-06T09": 1, + "2024-05-06T10": 1, + "2024-05-06T11": 1.00008, + "2024-05-06T13": 1.00007, + "2024-05-06T12": 1.0001, + "2024-05-06T15": 1.00006, + "2024-05-06T17": 1.0001, + "2024-05-06T14": 1.0001, + "2024-05-06T16": 0.99999, + "2024-05-06": 1.00005, + "2024-05-07": 0.9999190551282029, + "2024-05-06T22": 1.00003, + "2024-05-07T07": 1.00008, + "2024-05-07T06": 1.00003, + "2024-05-07T01": 0.99988, + "2024-05-07T00": 0.99998, + "2024-05-06T21": 0.99992, + "2024-05-06T20": 0.99987, + "2024-05-06T23": 0.99999, + "2024-05-07T04": 0.99996, + "2024-05-06T19": 0.99996, + "2024-05-07T03": 0.99998, + "2024-05-07T02": 0.99982, + "2024-05-07T05": 0.99996, + "2024-05-06T18": 1, + "2024-05-07T08": 1.00002, + "2024-05-07T09": 1, + "2024-05-07T10": 1.00004, + "2024-05-07T11": 1.00005, + "2024-05-07T12": 1.00001, + "2024-05-07T13": 1.0001, + "2024-05-07T14": 0.99999, + "2024-05-07T15": 0.99988, + "2024-05-08": 0.9997189484054559, + "2024-05-09": 0.9998330232580985, + "2024-05-10": 0.9991547088582933, + "2024-05-09T13": 0.99961, + "2024-05-10T00": 0.99986, + "2024-05-08T08": 0.9999, + "2024-05-09T14": 0.99948, + "2024-05-08T10": 0.99988, + "2024-05-09T04": 0.99949, + "2024-05-10T01": 0.9999, + "2024-05-08T03": 0.99988, + "2024-05-09T07": 0.99949, + "2024-05-09T11": 0.9996, + "2024-05-09T00": 0.99958, + "2024-05-09T01": 0.99956, + "2024-05-10T06": 0.99987, + "2024-05-09T19": 0.99988, + "2024-05-10T05": 0.99987, + "2024-05-10T02": 0.99991, + "2024-05-09T23": 0.99987, + "2024-05-09T06": 0.99948, + "2024-05-08T01": 0.9999, + "2024-05-09T09": 0.9995, + "2024-05-09T20": 0.99993, + "2024-05-08T19": 0.99974, + "2024-05-09T03": 0.99949, + "2024-05-08T21": 0.99973, + "2024-05-09T22": 0.99982, + "2024-05-08T17": 0.99979, + "2024-05-09T05": 0.99947, + "2024-05-08T06": 0.99983, + "2024-05-08T15": 0.99979, + "2024-05-10T08": 0.99988, + "2024-05-08T07": 0.99979, + "2024-05-08T04": 0.99988, + "2024-05-09T15": 0.99953, + "2024-05-08T18": 0.99977, + "2024-05-09T10": 0.99945, + "2024-05-09T21": 0.99983, + "2024-05-10T03": 0.99992, + "2024-05-08T00": 0.99999, + "2024-05-10T07": 0.99986, + "2024-05-08T14": 0.99969, + "2024-05-09T17": 0.99971, + "2024-05-08T13": 0.99976, + "2024-05-08T05": 0.99983, + "2024-05-09T18": 0.9997, + "2024-05-09T08": 0.99949, + "2024-05-08T20": 0.99984, + "2024-05-08T22": 0.99969, + "2024-05-08T11": 0.99992, + "2024-05-09T12": 0.99956, + "2024-05-08T02": 0.99987, + "2024-05-10T04": 0.99986, + "2024-05-08T12": 0.99989, + "2024-05-09T02": 0.99948, + "2024-05-08T09": 0.99989, + "2024-05-09T16": 0.99965, + "2024-05-08T16": 0.99972, + "2024-05-08T23": 0.99959, + "2024-05-10T09": 0.99988, + "2024-05-10T10": 0.99986, + "2024-05-10T11": 0.99986, + "2024-05-10T12": 0.99999, + "2024-05-10T13": 0.99991, + "2024-05-10T14": 0.99983, + "2024-05-11": 0.9998341390120163, + "2024-05-12": 0.999623804295247, + "2024-05-12T16": 0.9996, + "2024-05-11T03": 0.99969, + "2024-05-10T17": 0.9997, + "2024-05-11T16": 0.9996, + "2024-05-10T15": 0.99982, + "2024-05-11T04": 0.99973, + "2024-05-11T12": 0.99955, + "2024-05-12T15": 0.9996, + "2024-05-11T11": 0.99956, + "2024-05-12T04": 0.99959, + "2024-05-12T11": 0.99947, + "2024-05-11T22": 0.99978, + "2024-05-11T21": 0.99978, + "2024-05-10T21": 0.9997, + "2024-05-10T23": 0.99976, + "2024-05-12T00": 0.9997, + "2024-05-12T03": 0.9996, + "2024-05-12T12": 0.99947, + "2024-05-11T08": 0.99974, + "2024-05-11T17": 0.99966, + "2024-05-12T19": 0.99962, + "2024-05-11T23": 0.99974, + "2024-05-11T05": 0.99973, + "2024-05-12T02": 0.9996, + "2024-05-11T02": 0.99972, + "2024-05-10T16": 0.99968, + "2024-05-12T14": 0.99955, + "2024-05-11T09": 0.99972, + "2024-05-10T18": 0.9997, + "2024-05-10T19": 0.99952, + "2024-05-11T06": 0.99974, + "2024-05-12T08": 0.99964, + "2024-05-10T20": 0.99965, + "2024-05-11T18": 0.9996, + "2024-05-12T05": 0.9996, + "2024-05-12T06": 0.9996, + "2024-05-11T20": 0.99965, + "2024-05-12T09": 0.99959, + "2024-05-11T01": 0.99977, + "2024-05-11T00": 0.99977, + "2024-05-12T07": 0.99965, + "2024-05-12T10": 0.99956, + "2024-05-11T10": 0.99957, + "2024-05-12T01": 0.9996, + "2024-05-12T18": 0.99965, + "2024-05-12T13": 0.99953, + "2024-05-11T19": 0.9996, + "2024-05-12T17": 0.99965, + "2024-05-11T14": 0.99964, + "2024-05-11T07": 0.99973, + "2024-05-11T15": 0.99956, + "2024-05-11T13": 0.99959, + "2024-05-10T22": 0.99975, + "2024-05-13": 0.9997498222825758, + "2024-05-12T21": 0.99967, + "2024-05-13T00": 0.99951, + "2024-05-13T03": 0.99972, + "2024-05-12T23": 0.99953, + "2024-05-13T04": 0.99973, + "2024-05-13T01": 0.99965, + "2024-05-13T05": 0.99972, + "2024-05-13T02": 0.99969, + "2024-05-13T07": 0.99969, + "2024-05-13T06": 0.99972, + "2024-05-12T22": 0.99957, + "2024-05-12T20": 0.99962, + "2024-05-13T08": 0.99958, + "2024-05-13T09": 0.99957, + "2024-05-13T10": 0.9996, + "2024-05-13T11": 0.99966, + "2024-05-13T12": 0.99962, + "2024-05-13T13": 0.99963, + "2024-05-13T14": 0.99972, + "2024-05-13T15": 0.99976, + "2024-05-13T16": 0.9998, + "2024-05-14": 0.9994897418492008, + "2024-05-13T17": 0.99981, + "2024-05-14T01": 0.9998, + "2024-05-14T02": 0.99973, + "2024-05-14T06": 0.99948, + "2024-05-13T19": 0.99999, + "2024-05-13T22": 0.9999, + "2024-05-14T04": 0.99946, + "2024-05-13T21": 0.99993, + "2024-05-14T03": 0.99948, + "2024-05-14T00": 0.99981, + "2024-05-14T07": 0.99947, + "2024-05-13T20": 0.99995, + "2024-05-14T05": 0.99944, + "2024-05-13T23": 0.99981, + "2024-05-13T18": 0.99981, + "2024-05-14T08": 0.99949, + "2024-05-14T09": 0.99952, + "2024-05-14T10": 0.99953, + "2024-05-14T11": 0.99948, + "2024-05-14T12": 0.99938, + "2024-05-14T13": 0.99938, + "2024-05-14T14": 0.99937, + "2024-05-14T15": 0.9994, + "2024-05-14T16": 0.99945, + "2024-05-14T17": 0.9994, + "2024-05-14T18": 0.99928, + "2024-05-14T19": 0.9994, + "2024-05-14T20": 0.99952, + "2024-05-15": 1.0000262298692801, + "2024-05-15T02": 0.99939, + "2024-05-15T01": 0.99939, + "2024-05-14T21": 0.99968, + "2024-05-15T05": 0.99955, + "2024-05-15T00": 0.99947, + "2024-05-15T06": 0.99955, + "2024-05-15T03": 0.9994, + "2024-05-15T07": 0.9996846888463955, + "2024-05-14T23": 0.99956, + "2024-05-15T04": 0.9995, + "2024-05-14T22": 0.99961, + "2024-05-15T08": 0.99969, + "2024-05-15T09": 0.99984, + "2024-05-15T10": 0.99989, + "2024-05-15T11": 0.99986, + "2024-05-15T12": 0.9997323286899782, + "2024-05-15T13": 0.99996, + "2024-05-15T14": 0.99998, + "2024-05-15T15": 1.00021, + "2024-05-15T18": 1.0004, + "2024-05-15T19": 1.00061, + "2024-05-15T17": 1.00022, + "2024-05-15T16": 1.0003, + "2024-05-16": 1.0001400208504023, + "2024-05-16T04": 1.00021, + "2024-05-16T06": 1.0001, + "2024-05-15T22": 1.0005, + "2024-05-16T07": 1.0000412492348114, + "2024-05-16T03": 1.00017, + "2024-05-16T05": 1.00017, + "2024-05-15T21": 1.00072, + "2024-05-16T02": 1.00021, + "2024-05-16T00": 1.00035, + "2024-05-15T23": 1.0004, + "2024-05-15T20": 1.00075, + "2024-05-16T01": 1.00022, + "2024-05-16T08": 0.99999, + "2024-05-16T09": 0.99987, + "2024-05-16T10": 0.99992, + "2024-05-16T11": 1.00014, + "2024-05-16T12": 1.0002, + "2024-05-16T13": 1.00024, + "2024-05-16T14": 1.00029, + "2024-05-16T15": 1.00018, + "2024-05-17": 1.0000793855355352, + "2024-05-17T00": 0.99999, + "2024-05-16T23": 1.00008, + "2024-05-16T22": 1.00008, + "2024-05-16T17": 0.99993, + "2024-05-16T20": 1.00007, + "2024-05-16T18": 0.99994, + "2024-05-16T21": 1.00008, + "2024-05-17T01": 1.00006, + "2024-05-16T19": 1, + "2024-05-17T03": 1.00008, + "2024-05-17T02": 1.00006, + "2024-05-16T16": 1.00018, + "2024-05-17T06": 1.0001, + "2024-05-17T04": 1.0001, + "2024-05-17T07": 1.00007, + "2024-05-17T05": 1.0001, + "2024-05-17T08": 1.00012, + "2024-05-17T09": 1.00012, + "2024-05-18": 1.0002800050870233, + "2024-05-19": 1.0000953669309602, + "2024-05-20": 0.999998951136037, + "2024-05-21": 1.0000982352719863, + "2024-05-20T04": 0.99992, + "2024-05-18T11": 1.0002, + "2024-05-18T17": 1.00015, + "2024-05-20T15": 0.9999628805605498, + "2024-05-20T16": 1, + "2024-05-19T00": 1.00018, + "2024-05-18T18": 1.00012, + "2024-05-21T06": 0.99997, + "2024-05-20T23": 1.00028, + "2024-05-18T13": 1.00028, + "2024-05-19T17": 1.00011, + "2024-05-20T11": 0.99997, + "2024-05-21T07": 0.99996, + "2024-05-21T05": 0.99997, + "2024-05-19T23": 0.99991, + "2024-05-19T13": 1.0001, + "2024-05-18T06": 1.0003, + "2024-05-19T07": 1.00009, + "2024-05-18T14": 1.00024, + "2024-05-18T21": 1.00019, + "2024-05-18T20": 1.00018, + "2024-05-20T18": 1.00043, + "2024-05-20T17": 1.0002, + "2024-05-20T00": 0.99995, + "2024-05-18T01": 1.00029, + "2024-05-20T10": 0.99989, + "2024-05-18T12": 1.00032, + "2024-05-18T09": 1.00019, + "2024-05-20T21": 1.00046, + "2024-05-18T16": 1.0002, + "2024-05-20T06": 1.00004, + "2024-05-20T03": 0.9999, + "2024-05-18T03": 1.00029, + "2024-05-19T01": 1.00018, + "2024-05-18T02": 1.00029, + "2024-05-19T06": 1.00007, + "2024-05-21T00": 1.00012, + "2024-05-20T12": 0.99998, + "2024-05-19T12": 1.0001, + "2024-05-18T04": 1.00029, + "2024-05-18T10": 1.0002, + "2024-05-20T07": 0.99996, + "2024-05-19T22": 0.99993, + "2024-05-19T20": 0.99997, + "2024-05-19T14": 1.00011, + "2024-05-18T15": 1.00031, + "2024-05-19T21": 0.99999, + "2024-05-19T02": 1.00018, + "2024-05-19T11": 1.00009, + "2024-05-20T05": 0.99998, + "2024-05-19T09": 1.0001, + "2024-05-20T14": 1.00003, + "2024-05-21T02": 1.00005, + "2024-05-18T19": 1.00018, + "2024-05-18T00": 1.00037, + "2024-05-21T10": 0.9997228738632575, + "2024-05-18T22": 1.00018, + "2024-05-19T16": 1.00012, + "2024-05-20T02": 0.99997, + "2024-05-18T05": 1.00029, + "2024-05-21T08": 0.9998636836125732, + "2024-05-20T19": 1.00049, + "2024-05-18T08": 1.00026, + "2024-05-21T01": 1.00011, + "2024-05-18T07": 1.00021, + "2024-05-20T13": 1.00002, + "2024-05-19T18": 1.00008, + "2024-05-20T20": 1.00054, + "2024-05-19T04": 1.00011, + "2024-05-20T01": 0.99999, + "2024-05-20T08": 0.99995, + "2024-05-20T22": 1.00039, + "2024-05-21T04": 0.99999, + "2024-05-19T15": 1.00011, + "2024-05-19T10": 1.00006, + "2024-05-19T05": 1.00007, + "2024-05-21T09": 0.9998, + "2024-05-19T03": 1.00012, + "2024-05-19T19": 0.99999, + "2024-05-21T03": 1, + "2024-05-18T23": 1.00018, + "2024-05-19T08": 1.0001, + "2024-05-20T09": 0.9999, + "2024-05-21T11": 0.9996830901447444, + "2024-05-26": 0.99964, + "2024-05-25": 0.9997979730799658, + "2024-05-28": 0.999039303748174, + "2024-05-24": 0.9995842475689101, + "2024-05-27": 0.9993803655529342, + "2024-05-23": 0.9994600010658797, + "2024-05-22": 0.99981307414521, + "2024-05-22T20": 0.99988, + "2024-05-25T08": 0.99961, + "2024-05-22T05": 0.99978, + "2024-05-28T03": 0.99921, + "2024-05-22T16": 0.99976, + "2024-05-25T05": 0.9996, + "2024-05-24T22": 0.99986, + "2024-05-27T14": 0.99928, + "2024-05-22T03": 0.99979, + "2024-05-23T17": 0.99927, + "2024-05-24T23": 0.99982, + "2024-05-26T19": 0.99946, + "2024-05-26T18": 0.99948, + "2024-05-26T10": 0.99963, + "2024-05-27T16": 0.99901, + "2024-05-24T12": 0.99948, + "2024-05-26T01": 0.9999, + "2024-05-23T07": 0.99939, + "2024-05-22T08": 0.9998, + "2024-05-23T09": 0.99967, + "2024-05-24T18": 0.9995, + "2024-05-23T01": 0.99949, + "2024-05-25T15": 0.9999, + "2024-05-23T16": 0.99931, + "2024-05-25T03": 0.99959, + "2024-05-28T06": 0.99912, + "2024-05-25T23": 0.99983, + "2024-05-24T13": 0.9994, + "2024-05-26T03": 0.99989, + "2024-05-26T00": 0.99987, + "2024-05-25T06": 0.99961, + "2024-05-27T04": 0.99947, + "2024-05-22T10": 0.99978, + "2024-05-27T09": 0.99938, + "2024-05-24T17": 0.99958, + "2024-05-26T16": 0.99958, + "2024-05-22T09": 0.9998, + "2024-05-24T21": 0.99991, + "2024-05-25T04": 0.9996, + "2024-05-27T22": 0.99898, + "2024-05-27T11": 0.99938, + "2024-05-23T21": 0.99925, + "2024-05-23T10": 0.99965, + "2024-05-23T14": 0.99951, + "2024-05-27T02": 0.99941, + "2024-05-25T18": 0.99975, + "2024-05-27T05": 0.99952, + "2024-05-22T23": 0.99955, + "2024-05-28T01": 0.9992, + "2024-05-22T04": 0.99973, + "2024-05-22T15": 0.99971, + "2024-05-24T03": 0.99959, + "2024-05-24T08": 0.99971, + "2024-05-24T02": 0.99962, + "2024-05-26T07": 0.99963, + "2024-05-27T07": 0.99941, + "2024-05-25T22": 0.99982, + "2024-05-24T16": 0.99958, + "2024-05-27T20": 0.99898, + "2024-05-22T02": 0.99982, + "2024-05-24T06": 0.99956, + "2024-05-24T11": 0.9994, + "2024-05-25T21": 0.9998, + "2024-05-27T15": 0.99914, + "2024-05-22T19": 0.99979, + "2024-05-23T20": 0.99925, + "2024-05-23T08": 0.99942, + "2024-05-22T22": 0.9996, + "2024-05-26T11": 0.99955, + "2024-05-24T01": 0.9996, + "2024-05-23T05": 0.99938, + "2024-05-28T04": 0.99927, + "2024-05-25T09": 0.99964, + "2024-05-27T18": 0.99899, + "2024-05-24T10": 0.99949, + "2024-05-25T19": 0.99975, + "2024-05-24T07": 0.99972, + "2024-05-26T04": 0.99974, + "2024-05-26T09": 0.9996, + "2024-05-23T02": 0.99948, + "2024-05-27T06": 0.99952, + "2024-05-28T08": 0.9991240239167046, + "2024-05-24T15": 0.9995, + "2024-05-25T20": 0.99975, + "2024-05-27T08": 0.9994, + "2024-05-23T22": 0.99938, + "2024-05-26T15": 0.9994, + "2024-05-24T20": 0.9999, + "2024-05-25T13": 0.99986, + "2024-05-22T01": 0.99988, + "2024-05-25T17": 0.99978, + "2024-05-27T10": 0.99939, + "2024-05-24T19": 0.99969, + "2024-05-26T02": 0.99989, + "2024-05-27T19": 0.99899, + "2024-05-25T11": 0.99985, + "2024-05-27T17": 0.99897, + "2024-05-26T06": 0.99966, + "2024-05-23T00": 0.99947, + "2024-05-22T12": 0.99983, + "2024-05-22T00": 0.99982, + "2024-05-24T05": 0.99945, + "2024-05-23T15": 0.99928, + "2024-05-22T13": 0.99989, + "2024-05-23T04": 0.99938, + "2024-05-26T08": 0.99958, + "2024-05-26T13": 0.99968, + "2024-05-28T05": 0.99923, + "2024-05-22T18": 0.99988, + "2024-05-22T06": 0.99978, + "2024-05-22T17": 0.99984, + "2024-05-23T19": 0.99908, + "2024-05-25T07": 0.99961, + "2024-05-26T22": 0.99958, + "2024-05-25T16": 0.99986, + "2024-05-26T05": 0.9997, + "2024-05-24T04": 0.99944, + "2024-05-25T12": 0.99993, + "2024-05-28T07": 0.99918, + "2024-05-23T18": 0.99929, + "2024-05-26T23": 0.99952, + "2024-05-24T09": 0.99955, + "2024-05-23T03": 0.99933, + "2024-05-26T14": 0.99961, + "2024-05-22T14": 0.99973, + "2024-05-25T14": 0.99993, + "2024-05-25T00": 0.99977, + "2024-05-23T23": 0.99956, + "2024-05-23T13": 0.99965, + "2024-05-22T11": 0.99982, + "2024-05-28T00": 0.9992, + "2024-05-27T23": 0.99916, + "2024-05-28T02": 0.99926, + "2024-05-26T21": 0.9995, + "2024-05-26T12": 0.99968, + "2024-05-23T06": 0.99937, + "2024-05-22T07": 0.99982, + "2024-05-27T12": 0.9993, + "2024-05-22T21": 0.99963, + "2024-05-24T00": 0.99955, + "2024-05-25T02": 0.99978, + "2024-05-27T00": 0.9995, + "2024-05-26T20": 0.99939, + "2024-05-26T17": 0.99946, + "2024-05-27T13": 0.99937, + "2024-05-23T12": 0.99951, + "2024-05-25T10": 0.99973, + "2024-05-23T11": 0.9995, + "2024-05-24T14": 0.99929, + "2024-05-25T01": 0.9998, + "2024-05-27T21": 0.99899, + "2024-05-27T03": 0.99941, + "2024-05-27T01": 0.99951, + "2024-05-28T09": 0.99897, + "2024-05-28T10": 0.99903, + "2024-05-28T11": 0.99899, + "2024-05-28T12": 0.99899, + "2024-05-28T13": 0.999, + "2024-05-28T14": 0.99901, + "2024-05-28T15": 0.99906, + "2024-05-29": 0.9990409925561, + "2024-05-28T20": 0.99902, + "2024-05-28T22": 0.99908, + "2024-05-28T21": 0.99869, + "2024-05-28T19": 0.99877, + "2024-05-29T02": 0.99898, + "2024-05-28T17": 0.999, + "2024-05-28T18": 0.99875, + "2024-05-28T23": 0.99904, + "2024-05-29T00": 0.99882, + "2024-05-29T01": 0.99879, + "2024-05-28T16": 0.99895, + "2024-05-29T06": 0.99879, + "2024-05-29T05": 0.99882, + "2024-05-29T03": 0.99894, + "2024-05-29T07": 0.99892, + "2024-05-29T04": 0.99881, + "2024-05-29T08": 0.999, + "2024-05-29T09": 0.99908, + "2024-05-29T10": 0.99903, + "2024-05-29T11": 0.99901, + "2024-05-29T12": 0.99903, + "2024-05-29T13": 0.99922, + "2024-05-29T14": 0.99926, + "2024-05-29T15": 0.99936, + "2024-05-29T18": 0.99904, + "2024-05-29T17": 0.9991, + "2024-05-29T23": 0.9988, + "2024-05-29T19": 0.99902, + "2024-05-29T22": 0.99889, + "2024-05-29T20": 0.99909, + "2024-05-29T16": 0.99931, + "2024-05-29T21": 0.9989921747187982, + "2024-05-30": 0.9994904107267901, + "2024-05-30T00": 0.99876, + "2024-05-30T05": 0.99901, + "2024-05-30T02": 0.99879, + "2024-05-30T01": 0.9989125695342685, + "2024-05-30T06": 0.9992, + "2024-05-30T07": 0.99938, + "2024-05-30T03": 0.9988, + "2024-05-30T04": 0.99881, + "2024-05-30T08": 0.9994, + "2024-05-30T09": 0.9994, + "2024-05-30T10": 0.99949, + "2024-05-30T11": 0.99919, + "2024-05-30T12": 0.9992, + "2024-05-30T13": 0.9994, + "2024-05-30T14": 0.99954, + "2024-05-30T15": 0.9996, + "2024-05-30T21": 0.9998, + "2024-05-30T20": 0.99981, + "2024-05-30T18": 0.99974, + "2024-05-30T22": 0.99965, + "2024-05-30T16": 0.99964, + "2024-05-30T17": 0.99962, + "2024-05-30T19": 0.99982, + "2024-05-31": 0.9994886979755977, + "2024-05-30T23": 0.99965, + "2024-05-31T03": 0.99952, + "2024-05-31T07": 0.9997, + "2024-05-31T06": 0.9997, + "2024-05-31T04": 0.99954, + "2024-05-31T02": 0.99958, + "2024-05-31T05": 0.99959, + "2024-05-31T00": 0.99972, + "2024-05-31T01": 0.99976, + "2024-05-31T08": 0.99968, + "2024-05-31T09": 0.99966, + "2024-05-31T10": 0.9994, + "2024-05-31T11": 0.99939, + "2024-05-31T12": 0.99939, + "2024-05-31T13": 0.99938, + "2024-05-31T14": 0.99943, + "2024-06-01": 0.9991473235912018, + "2024-06-01T08": 0.99917, + "2024-06-01T02": 0.99899, + "2024-06-01T05": 0.99922, + "2024-05-31T21": 0.99883, + "2024-06-01T00": 0.99898, + "2024-05-31T18": 0.99892, + "2024-05-31T15": 0.99917, + "2024-05-31T23": 0.99899, + "2024-05-31T22": 0.99885, + "2024-06-01T01": 0.99899, + "2024-06-01T07": 0.9992015754247594, + "2024-06-01T04": 0.99923, + "2024-05-31T19": 0.99868, + "2024-06-01T06": 0.99921, + "2024-05-31T20": 0.99883, + "2024-05-31T17": 0.99919, + "2024-05-31T16": 0.99919, + "2024-06-01T03": 0.9992, + "2024-06-01T09": 0.99913, + "2024-06-01T10": 0.99912, + "2024-06-02": 0.9992902651179207, + "2024-06-01T13": 0.9991, + "2024-06-01T15": 0.99899, + "2024-06-01T18": 0.99911, + "2024-06-01T12": 0.99913, + "2024-06-01T21": 0.99911, + "2024-06-01T20": 0.99911, + "2024-06-02T01": 0.9992, + "2024-06-01T17": 0.9992, + "2024-06-01T11": 0.99912, + "2024-06-02T00": 0.9992, + "2024-06-01T23": 0.99917, + "2024-06-01T14": 0.99891, + "2024-06-01T22": 0.99913, + "2024-06-01T19": 0.99911, + "2024-06-01T16": 0.99909, + "2024-06-02T13": 0.99928, + "2024-06-02T11": 0.99929, + "2024-06-02T07": 0.99919, + "2024-06-02T05": 0.99916, + "2024-06-02T08": 0.99928, + "2024-06-02T04": 0.99919, + "2024-06-02T10": 0.99926, + "2024-06-02T12": 0.99929, + "2024-06-02T02": 0.99916, + "2024-06-02T16": 0.99919, + "2024-06-02T17": 0.99935, + "2024-06-02T03": 0.99915, + "2024-06-02T09": 0.99926, + "2024-06-02T15": 0.99917, + "2024-06-02T06": 0.99915, + "2024-06-02T18": 0.99939, + "2024-06-02T14": 0.99927, + "2024-06-03": 0.999457412583173, + "2024-06-03T01": 0.99932, + "2024-06-02T20": 0.99942, + "2024-06-03T00": 0.99945, + "2024-06-02T21": 0.9994731916736705, + "2024-06-02T23": 0.99946, + "2024-06-02T19": 0.99941, + "2024-06-02T22": 0.99946, + "2024-06-03T02": 0.99921, + "2024-06-03T05": 0.9994, + "2024-06-03T06": 0.99936, + "2024-06-03T04": 0.99942, + "2024-06-03T03": 0.99941, + "2024-06-03T07": 0.99936 + }, + "USD solana": { + "2023-07-30": 24.939777224102205, + "2023-07-27": 25.17096699135234, + "2023-07-10": 21.053364086674033, + "2023-08-20": 21.79758690965463, + "2024-02-23": 101.64291215841217, + "2024-04-05": 175.10670138642723, + "2023-12-19": 74.66528740821448, + "2023-08-06": 23.043493175517945, + "2023-12-02": 62.04968334980835, + "2023-10-12": 21.344947328564643, + "2023-10-31": 36.191599455594286, + "2023-08-29": 21.02498231297602, + "2023-06-20": 16.091308254886826, + "2023-09-09": 19.51021747724396, + "2023-06-26": 16.75268620884689, + "2023-05-03": 21.690161778387225, + "2023-10-23": 29.879746070869103, + "2023-10-01": 22.860671009273467, + "2024-03-07": 141.33784892504994, + "2023-07-05": 18.816133986972666, + "2023-07-29": 25.11648462959647, + "2024-01-08": 93.33527592861115, + "2023-05-29": 20.69494449158465, + "2023-10-07": 23.510894175103203, + "2023-09-26": 19.29701171414979, + "2023-08-24": 21.604191607444967, + "2023-12-05": 60.50526731741026, + "2023-05-10": 20.809815712240166, + "2024-02-19": 112.35571494683266, + "2024-01-07": 94.35175997156664, + "2023-10-18": 23.853457015489678, + "2023-04-25": 21.03858476450056, + "2023-07-31": 24.37260788107788, + "2023-05-23": 19.942163717120877, + "2023-08-25": 20.59031680517284, + "2024-03-09": 146.3573355413762, + "2023-07-12": 22.10365261537651, + "2023-09-05": 19.694866648985506, + "2023-06-07": 19.569809653152568, + "2023-09-16": 19.121949081621818, + "2023-08-12": 24.60146987802049, + "2023-05-09": 20.643563417476308, + "2023-09-01": 19.751995931639776, + "2023-09-08": 19.611206138518828, + "2024-03-22": 173.3654393897946, + "2023-08-10": 24.443685135688636, + "2023-12-07": 64.14257656645725, + "2023-11-18": 57.27602991211688, + "2023-07-13": 24.165623520098077, + "2023-04-30": 23.413258004899987, + "2023-06-06": 19.998256025174747, + "2023-09-13": 18.128130370458003, + "2023-06-17": 15.724233411625457, + "2023-07-17": 27.109969638787366, + "2023-07-07": 20.590160856425864, + "2023-09-07": 19.626348311731164, + "2024-02-22": 104.24655809127876, + "2024-04-15": 147.8964607217989, + "2023-12-30": 103.42521695978837, + "2023-09-17": 18.96417791879159, + "2023-04-20": 22.597894925051282, + "2024-03-26": 191.5807609942654, + "2023-04-27": 21.849187913491868, + "2024-04-17": 135.3651338277658, + "2024-02-12": 107.67846444810004, + "2023-10-26": 32.193720938185116, + "2024-01-03": 99.70418917022963, + "2023-06-01": 20.69357298642284, + "2024-01-22": 87.4577433516582, + "2023-06-12": 15.21478345079017, + "2023-10-03": 23.9158921090279, + "2023-06-19": 15.555166727582332, + "2023-07-09": 21.62881809235485, + "2023-12-24": 113.07106375552202, + "2023-09-24": 19.544107250935156, + "2024-01-16": 96.75096638862036, + "2023-10-17": 24.05407140194171, + "2024-03-18": 202.04070897169518, + "2024-02-17": 109.12793965884981, + "2023-12-27": 110.01315953902689, + "2023-07-23": 24.708458733777643, + "2023-09-03": 19.469687235373467, + "2024-02-24": 102.19768460420161, + "2024-01-06": 95.04627553722617, + "2024-03-20": 173.3117326502187, + "2023-11-21": 55.399842692967944, + "2023-12-25": 114.85471604633909, + "2023-09-22": 19.553575681117334, + "2023-10-02": 24.004338627884735, + "2024-03-27": 186.1622281829703, + "2023-04-28": 22.595138532119574, + "2023-08-04": 22.91095713613768, + "2023-08-30": 21.44493460280265, + "2023-04-24": 21.429535287908905, + "2023-10-06": 23.249706885184462, + "2023-10-13": 21.451705156087097, + "2023-06-28": 16.192156082617796, + "2024-02-05": 96.08055472163565, + "2024-03-01": 132.93486909650517, + "2023-07-15": 27.804658388960718, + "2023-06-25": 17.052534959570448, + "2023-12-10": 73.02323317766664, + "2023-11-23": 57.69103216313879, + "2024-01-13": 92.46092427164828, + "2024-03-28": 186.30287425956496, + "2023-08-05": 22.652746406868065, + "2024-02-09": 105.28685790136916, + "2023-10-09": 22.28313377961463, + "2023-05-24": 19.386901847015544, + "2024-01-09": 100.16206103602677, + "2023-12-08": 72.15666058821625, + "2023-05-27": 19.581014016024962, + "2023-08-18": 21.734279858848662, + "2023-11-05": 41.504583619908445, + "2024-04-18": 135.23740057906338, + "2023-10-22": 28.844261192688, + "2023-11-01": 40.43238666735443, + "2023-05-07": 22.184621822309012, + "2024-04-12": 167.11081408997327, + "2024-03-12": 149.98286906459515, + "2023-09-11": 17.740643047622676, + "2024-03-03": 129.70275948815356, + "2024-02-04": 97.26311096156947, + "2024-01-28": 96.32130538580829, + "2023-04-18": 24.848041636684048, + "2023-07-06": 19.755996132468958, + "2023-07-01": 18.38141967187222, + "2023-05-18": 20.667549069487457, + "2023-11-07": 41.61537420877233, + "2023-11-25": 58.661057898398305, + "2023-06-04": 21.93617241645276, + "2024-02-25": 103.13007441842072, + "2023-12-01": 60.52224227892606, + "2023-07-14": 28.011369165314264, + "2024-01-26": 91.28356545142186, + "2023-08-03": 22.833082031371443, + "2024-02-28": 111.7522089297422, + "2023-09-15": 19.01999003123102, + "2023-07-18": 25.53245844639245, + "2023-04-21": 22.011375964985334, + "2023-12-21": 87.09492088597884, + "2023-07-20": 26.511091091075414, + "2024-03-06": 129.7066175246686, + "2023-09-30": 21.03021983555983, + "2023-12-12": 70.51305148492436, + "2024-02-13": 113.35546825173567, + "2023-05-19": 20.404294743615743, + "2023-09-20": 20.10077842978679, + "2023-09-19": 19.968625658389293, + "2023-09-29": 20.176757065059366, + "2023-09-12": 17.994793723603426, + "2023-06-13": 15.23858606616197, + "2023-10-04": 23.120581312175634, + "2023-07-08": 21.794820947185414, + "2024-04-16": 133.90028127132922, + "2024-03-02": 129.08215112095445, + "2023-06-27": 16.606058192144346, + "2023-10-08": 23.370671887556053, + "2023-11-20": 59.65768097299825, + "2023-12-20": 78.66522414223984, + "2023-12-31": 103.29102292711484, + "2023-11-06": 40.35418703097928, + "2023-08-22": 20.862268284832382, + "2023-06-09": 18.631382234161745, + "2024-03-17": 190.61269323338047, + "2023-09-18": 19.626879688098207, + "2024-04-01": 195.96267041406907, + "2024-01-19": 93.27167199127055, + "2023-11-11": 57.0584535835252, + "2023-05-14": 20.992626644423268, + "2023-05-13": 20.97783382875003, + "2023-05-06": 22.536921851193203, + "2023-11-19": 60.14543140632104, + "2023-05-16": 20.79727812099967, + "2023-09-23": 19.444068031649337, + "2023-07-02": 19.152500183577324, + "2023-08-15": 24.829147499061737, + "2024-01-25": 87.43460196075365, + "2024-03-13": 153.4463046866378, + "2024-01-21": 92.42527793392941, + "2024-02-01": 95.65619579147595, + "2023-06-15": 14.674935858756163, + "2024-03-16": 188.6273981520976, + "2023-11-27": 54.99012000597197, + "2024-01-10": 97.26137604941523, + "2024-03-15": 178.69436264950824, + "2023-06-21": 16.859518365553186, + "2024-01-02": 111.43844743507174, + "2023-04-26": 22.033593993876686, + "2023-07-11": 21.991120534191158, + "2023-10-25": 32.19116241272951, + "2024-01-01": 104.59202871931976, + "2024-02-14": 115.74909988189972, + "2023-09-04": 19.580651469929965, + "2023-09-06": 19.735554209271164, + "2024-04-03": 187.80425339102408, + "2024-03-08": 146.15650225572418, + "2023-11-28": 55.90537160653003, + "2023-12-03": 63.49660841632766, + "2023-08-02": 23.522714426691962, + "2023-08-27": 20.629019260359943, + "2023-10-20": 26.777469075013293, + "2023-05-25": 19.30366125296635, + "2023-10-10": 22.111794725058058, + "2024-04-11": 173.06654549568822, + "2023-06-22": 17.061613503571998, + "2024-01-14": 97.15921213158008, + "2023-12-15": 75.90867949953598, + "2023-10-19": 24.234388058515396, + "2024-02-08": 102.11248942325243, + "2023-11-08": 43.19703003075047, + "2023-11-12": 57.7654073331353, + "2023-12-22": 95.39887310560604, + "2023-05-20": 20.23986910109263, + "2023-05-31": 20.688236528869854, + "2024-03-23": 175.20408872017333, + "2024-04-10": 170.8716778479497, + "2023-09-27": 18.977883293960446, + "2024-03-04": 130.51607547421546, + "2023-09-10": 18.36412904090336, + "2024-04-13": 147.4797586151578, + "2024-02-29": 128.4924401564808, + "2023-07-22": 25.638482118434993, + "2023-07-21": 25.396285883745353, + "2023-06-30": 18.78428175237739, + "2023-12-29": 105.85404965400224, + "2023-12-04": 61.73127849851598, + "2023-09-21": 19.64087276356584, + "2023-06-02": 21.114649144434242, + "2023-10-11": 22.07988132293472, + "2023-07-19": 26.338284223135997, + "2023-05-05": 22.18847141880337, + "2024-03-21": 188.5600477182979, + "2024-04-08": 180.57840269301718, + "2023-04-29": 23.306297337117194, + "2023-06-14": 15.116700849323333, + "2023-10-05": 23.068663546163158, + "2023-10-16": 23.238960219558315, + "2024-02-10": 108.95041440799562, + "2024-04-07": 180.19460788856702, + "2023-05-21": 20.118145766479476, + "2024-02-20": 109.06083578195695, + "2023-11-17": 58.19678226606033, + "2023-12-11": 69.44522478933557, + "2023-11-26": 57.85210464968245, + "2023-11-16": 63.72953931867354, + "2023-06-29": 17.576204595699604, + "2023-06-11": 15.551197765669901, + "2024-02-02": 99.67150661020587, + "2023-09-14": 18.90391235225513, + "2024-01-27": 92.61619043418467, + "2024-03-30": 196.12666725990917, + "2023-05-04": 22.16178201083318, + "2023-09-28": 19.308599663197196, + "2023-10-27": 32.35797351834887, + "2023-05-01": 22.129888713955484, + "2023-05-15": 21.285010211959577, + "2023-11-22": 54.88258076759454, + "2023-06-03": 21.147036007476803, + "2024-01-18": 98.58333062140058, + "2023-08-26": 20.291603695472013, + "2024-02-15": 115.67262610089068, + "2023-10-28": 31.948485999607296, + "2024-03-24": 175.6230715715617, + "2023-04-22": 21.437189269436427, + "2023-12-06": 63.38637961928273, + "2023-11-10": 50.39108169580409, + "2024-01-30": 104.0050954283894, + "2023-08-09": 24.47607685979207, + "2023-05-02": 22.018074910661795, + "2023-11-14": 54.586918599957535, + "2024-01-23": 81.75608990737472, + "2024-01-31": 100.15143609458943, + "2024-01-11": 100.5826545611854, + "2024-02-18": 111.64498630264424, + "2023-06-16": 14.84933179561553, + "2023-10-30": 34.77974186900726, + "2023-12-17": 72.97598433590638, + "2024-02-26": 103.92813361677793, + "2023-07-16": 27.728932655648574, + "2024-01-05": 100.44762338613585, + "2023-08-23": 20.787535837484647, + "2024-03-11": 147.24559769792734, + "2023-08-01": 23.442271119253682, + "2024-03-14": 168.25921374823025, + "2024-02-21": 103.73159129587592, + "2023-08-28": 20.481464211920798, + "2023-07-04": 19.39565976978925, + "2023-12-13": 66.86205405957634, + "2023-08-13": 24.662645594782212, + "2024-03-31": 196.5401384602085, + "2023-12-09": 74.7174374863229, + "2024-04-02": 182.926950596747, + "2024-02-06": 95.59244586605303, + "2024-04-09": 175.3814815392858, + "2023-05-30": 21.10778178126456, + "2023-11-04": 41.55767739226187, + "2024-01-15": 95.33053306341411, + "2023-07-03": 19.309074029339065, + "2023-12-28": 102.95197040087557, + "2023-04-23": 21.66377131391824, + "2023-04-17": 25.14671730002368, + "2023-05-08": 21.213604985663245, + "2024-02-27": 110.14029709298899, + "2024-02-07": 96.46907459433297, + "2023-09-25": 19.479818323467278, + "2024-03-19": 181.7487540376293, + "2024-03-10": 145.419909938474, + "2023-09-02": 19.487446005356695, + "2024-01-12": 97.89325490923196, + "2023-11-29": 59.605265610888836, + "2023-10-15": 21.906462342927494, + "2023-11-30": 59.806140999570644, + "2024-01-24": 86.30839070865274, + "2023-08-11": 24.539282501731975, + "2024-02-11": 109.04899282374669, + "2023-06-08": 18.744659831211745, + "2023-08-16": 23.3628058095393, + "2023-11-15": 61.86351311195825, + "2023-12-16": 74.13210691327559, + "2024-03-29": 186.93780817814135, + "2024-04-04": 185.51657977107382, + "2023-06-10": 14.822224136912906, + "2023-07-28": 24.936587298853983, + "2024-01-20": 92.150272810291, + "2023-10-21": 28.960732576229248, + "2023-05-12": 20.307391161030704, + "2023-11-03": 39.058818282317546, + "2023-08-31": 20.630497995247165, + "2024-01-29": 97.4693771608052, + "2024-01-04": 100.94630688632397, + "2023-05-22": 19.68671716447969, + "2023-07-26": 24.40689635967524, + "2023-11-13": 56.945125465768804, + "2024-03-25": 189.0928265254814, + "2023-08-07": 23.002416555065253, + "2023-10-29": 32.356608449674006, + "2023-07-25": 23.24339580157441, + "2023-05-17": 20.734392752316847, + "2023-10-24": 31.4229730324428, + "2023-06-05": 21.3762584493613, + "2023-11-02": 41.95110867376813, + "2023-12-18": 70.04218593964492, + "2023-11-24": 57.439843083978104, + "2023-08-21": 21.2711536667226, + "2023-08-14": 24.49060962560692, + "2023-05-26": 19.320997944120435, + "2024-03-05": 131.29712171383602, + "2024-04-06": 177.04839565029062, + "2023-12-23": 96.41124815222368, + "2024-02-03": 98.53895405300015, + "2024-02-16": 111.56875107753797, + "2023-05-28": 20.560762875288617, + "2023-12-14": 72.30186225823043, + "2023-06-24": 17.169870180203457, + "2023-12-26": 113.4258813308874, + "2023-11-09": 44.93858230098137, + "2023-05-11": 20.280271793016155, + "2023-08-19": 21.73401367860809, + "2023-06-23": 16.77667893792167, + "2023-06-18": 15.615650039744349, + "2023-08-08": 23.404968204173436, + "2023-08-17": 23.073923375896914, + "2024-04-14": 140.46759975784246, + "2023-07-24": 23.57156003688254, + "2023-10-14": 22.001340693213855, + "2024-01-17": 100.05061396256342, + "2023-04-19": 23.145765653437667, + "2024-04-14T03": 134.58932317049175, + "2024-04-11T16": 173.22347384878447, + "2024-04-16T02": 137.66188131294697, + "2024-04-13T04": 151.7589566066441, + "2024-04-18T09": 130.19972390159143, + "2024-04-12T19": 152.23624450908878, + "2024-04-15T06": 151.97850222891833, + "2024-04-14T19": 142.54026517848595, + "2024-04-15T01": 148.22210012204587, + "2024-04-17T20": 134.8813514367866, + "2024-04-11T17": 173.9401402746358, + "2024-04-18T10": 130.93570758001297, + "2024-04-12T14": 167.63336310424663, + "2024-04-12T20": 149.43647538598347, + "2024-04-15T12": 151.07133507551993, + "2024-04-14T23": 150.53958485787084, + "2024-04-13T07": 153.2478748311863, + "2024-04-14T20": 141.78365146851624, + "2024-04-17T00": 136.44757180047839, + "2024-04-15T00": 151.0193946798208, + "2024-04-14T01": 138.1884003726609, + "2024-04-17T22": 135.21601041358753, + "2024-04-17T09": 138.65759210381745, + "2024-04-15T14": 149.6081609238199, + "2024-04-15T20": 138.11632693890894, + "2024-04-16T10": 136.0101489305033, + "2024-04-16T18": 132.1805438509462, + "2024-04-18T04": 135.73878058319147, + "2024-04-15T02": 148.52998658382862, + "2024-04-15T16": 143.24168200397727, + "2024-04-14T05": 140.8221492792811, + "2024-04-17T08": 140.044336899458, + "2024-04-14T13": 141.0279992670299, + "2024-04-14T10": 141.3242685588691, + "2024-04-13T14": 151.0536263839404, + "2024-04-17T10": 138.8597261389424, + "2024-04-14T15": 137.43384021980413, + "2024-04-14T12": 139.0017085024745, + "2024-04-16T09": 136.7790456342198, + "2024-04-17T02": 137.06948799770842, + "2024-04-11T23": 172.89882836522997, + "2024-04-12T09": 173.04791171339522, + "2024-04-14T18": 138.0355844783891, + "2024-04-14T09": 143.32383287442167, + "2024-04-16T20": 132.2462110610778, + "2024-04-18T00": 131.87337938458708, + "2024-04-15T23": 139.8512721195295, + "2024-04-12T22": 151.79376842607348, + "2024-04-12T00": 172.37755935332888, + "2024-04-15T13": 151.10370001026905, + "2024-04-18T08": 129.69883501268347, + "2024-04-13T20": 133.36711260127066, + "2024-04-17T05": 141.8851391237088, + "2024-04-15T18": 139.33825034213402, + "2024-04-16T01": 137.49354067648, + "2024-04-14T11": 142.90779404498414, + "2024-04-11T20": 174.577492002952, + "2024-04-13T13": 151.8010379742546, + "2024-04-12T16": 167.43667367903882, + "2024-04-17T03": 136.81856716535484, + "2024-04-16T06": 133.7644871294039, + "2024-04-17T12": 134.5163025620782, + "2024-04-11T22": 172.5952177938301, + "2024-04-15T05": 148.3414043651904, + "2024-04-12T12": 172.71044264538457, + "2024-04-17T14": 133.51614440559854, + "2024-04-13T03": 149.45308314885557, + "2024-04-18T07": 130.97531066659926, + "2024-04-16T00": 138.32836670396182, + "2024-04-12T03": 173.37681617298205, + "2024-04-17T23": 134.45178692698678, + "2024-04-13T23": 142.41346978102789, + "2024-04-14T14": 137.85709183438266, + "2024-04-11T15": 173.6530496457055, + "2024-04-16T13": 133.85813177368127, + "2024-04-17T16": 128.83674820132347, + "2024-04-16T22": 137.26577775283522, + "2024-04-11T13": 172.20375227546856, + "2024-04-15T15": 144.51478031277085, + "2024-04-16T12": 135.96148826576993, + "2024-04-18T13": 133.1930349718407, + "2024-04-16T05": 132.42752909010093, + "2024-04-17T17": 128.2368630131026, + "2024-04-12T13": 169.75024805743672, + "2024-04-12T23": 151.33840637468404, + "2024-04-17T15": 131.27759436175916, + "2024-04-15T19": 135.76594331814007, + "2024-04-18T01": 132.01294494176472, + "2024-04-11T21": 174.41286008185506, + "2024-04-12T02": 172.59689670049667, + "2024-04-16T14": 131.3336409942397, + "2024-04-11T19": 174.94728811087847, + "2024-04-16T08": 137.96494384000349, + "2024-04-18T02": 133.20611245817418, + "2024-04-12T05": 174.45079355489398, + "2024-04-13T11": 152.15061097354658, + "2024-04-16T23": 137.53008746354115, + "2024-04-12T01": 173.35003146873206, + "2024-04-16T21": 134.0583082343189, + "2024-04-14T02": 139.009768351056, + "2024-04-12T10": 172.2990990494054, + "2024-04-16T15": 131.42569319131198, + "2024-04-12T11": 171.9705174669939, + "2024-04-17T06": 139.55339069506377, + "2024-04-13T00": 153.34368780962043, + "2024-04-18T03": 133.89316841510404, + "2024-04-13T08": 151.08509690318965, + "2024-04-13T06": 152.8065041564634, + "2024-04-15T04": 148.17606946950397, + "2024-04-16T04": 134.54388731814663, + "2024-04-14T16": 138.03621641412187, + "2024-04-16T07": 135.99254457185572, + "2024-04-18T05": 134.31256662109286, + "2024-04-13T02": 145.72038896021266, + "2024-04-15T09": 153.65905189450652, + "2024-04-13T05": 153.52964587553828, + "2024-04-15T17": 140.28640519188818, + "2024-04-16T16": 128.24920487830758, + "2024-04-15T21": 136.37557142587755, + "2024-04-12T17": 166.26928784093838, + "2024-04-17T01": 137.22107181639677, + "2024-04-14T21": 141.43363215920212, + "2024-04-15T07": 155.9032723714161, + "2024-04-18T12": 136.02436824055022, + "2024-04-15T22": 138.54446103767646, + "2024-04-13T22": 132.05944119954782, + "2024-04-15T08": 154.49552102143622, + "2024-04-14T22": 141.6049303458635, + "2024-04-17T19": 135.52404554642743, + "2024-04-12T07": 174.33676693720804, + "2024-04-12T18": 163.43142689653538, + "2024-04-14T04": 135.1348866425936, + "2024-04-16T17": 131.48718701146385, + "2024-04-17T11": 136.63632479818773, + "2024-04-13T21": 124.69330568394349, + "2024-04-13T09": 150.17978520671798, + "2024-04-14T08": 144.09348787116838, + "2024-04-15T11": 153.73786720672192, + "2024-04-11T14": 173.49047718061942, + "2024-04-17T13": 131.85289447822535, + "2024-04-14T06": 142.6551537397449, + "2024-04-13T19": 143.50538109202515, + "2024-04-14T07": 143.250223173763, + "2024-04-13T16": 149.5029637970883, + "2024-04-15T10": 154.1663911448486, + "2024-04-12T06": 175.0491449972492, + "2024-04-13T15": 149.82961236782586, + "2024-04-12T15": 167.14159569829437, + "2024-04-11T18": 174.81020428129932, + "2024-04-17T18": 132.81865550913986, + "2024-04-12T08": 173.29817664499808, + "2024-04-18T06": 133.40642363997367, + "2024-04-17T04": 137.13786526297426, + "2024-04-12T04": 173.96668406530864, + "2024-04-13T17": 145.6957715825486, + "2024-04-16T19": 134.08330737133173, + "2024-04-15T03": 147.2747794254526, + "2024-04-17T21": 133.58777296101144, + "2024-04-13T18": 139.42498355286895, + "2024-04-13T10": 151.18006347426785, + "2024-04-16T11": 133.00901627656364, + "2024-04-12T21": 152.0434807464438, + "2024-04-14T00": 138.80438479055738, + "2024-04-18T11": 133.355153811441, + "2024-04-17T07": 140.3946097484995, + "2024-04-13T01": 151.72508611782882, + "2024-04-14T17": 139.38216446077493, + "2024-04-16T03": 137.8944324255432, + "2024-04-13T12": 151.18955864075272, + "latest": 164.9, + "2024-04-18T14": 134.36893942498975, + "2024-04-18T15": 139.40893112844367, + "2024-04-19": 142.19919075583712, + "2024-04-18T20": 140.372280911384, + "2024-04-18T19": 140.02512580767853, + "2024-04-19T01": 134.5485652556119, + "2024-04-19T03": 134.8261222470014, + "2024-04-18T21": 140.55100620550627, + "2024-04-19T06": 139.9137550076384, + "2024-04-18T18": 137.38011412591052, + "2024-04-18T16": 139.4241202470528, + "2024-04-18T23": 142.62852957338524, + "2024-04-19T04": 138.49837352536358, + "2024-04-19T05": 138.80631196472575, + "2024-04-19T00": 139.55384584585843, + "2024-04-18T22": 142.37803917463074, + "2024-04-18T17": 138.91562949582004, + "2024-04-19T02": 130.45736903750603, + "2024-04-19T07": 145.3837580471055, + "2024-04-19T08": 143.36717174782368, + "2024-04-19T09": 143.85062955171247, + "2024-04-19T10": 144.07601388548656, + "2024-04-19T11": 145.00732027525132, + "2024-04-19T12": 144.6718461482431, + "2024-04-19T13": 143.71417035614493, + "2024-04-19T14": 144.513135138682, + "2024-04-19T15": 146.37397090633416, + "2024-04-20": 143.42101733324964, + "2024-04-19T22": 144.47632379999996, + "2024-04-19T23": 141.8881503, + "2024-04-19T20": 143.9784302254079, + "2024-04-19T19": 145.04656472378548, + "2024-04-19T21": 144.18684188155487, + "2024-04-19T16": 145.54090291580013, + "2024-04-19T17": 145.9060377768705, + "2024-04-20T00": 141.51989156373315, + "2024-04-19T18": 145.64370884009378, + "2024-04-20T01": 141.1520503077654, + "2024-04-21": 150.0584485735712, + "2024-04-20T16": 147.51961292827897, + "2024-04-20T19": 150.71469311360374, + "2024-04-20T15": 145.44635250000002, + "2024-04-20T02": 142.3669548102424, + "2024-04-20T09": 141.45100889999998, + "2024-04-20T04": 143.174134759059, + "2024-04-20T10": 140.8808436, + "2024-04-20T22": 150.270258105893, + "2024-04-21T00": 149.4837948, + "2024-04-20T12": 141.8697864, + "2024-04-21T04": 150.613231, + "2024-04-20T05": 143.8186104708729, + "2024-04-20T18": 150.64076587232233, + "2024-04-20T11": 141.66257489999998, + "2024-04-20T23": 150.43662089999998, + "2024-04-20T08": 142.5870382, + "2024-04-20T13": 142.71138960000002, + "2024-04-21T02": 151.03586259999997, + "2024-04-21T01": 149.8594373, + "2024-04-20T20": 151.25890682613132, + "2024-04-20T03": 142.45186879782338, + "2024-04-20T14": 142.78426, + "2024-04-20T07": 143.78887160000002, + "2024-04-20T17": 149.7838366393397, + "2024-04-20T21": 151.07728989540635, + "2024-04-20T06": 143.69157520552315, + "2024-04-21T03": 152.06536, + "2024-04-21T16": 148.35708, + "2024-04-21T11": 151.6218339, + "2024-04-21T17": 147.94254020000002, + "2024-04-21T08": 151.72625940507425, + "2024-04-21T12": 150.590112, + "2024-04-21T15": 150.0510042, + "2024-04-21T06": 151.11193050000003, + "2024-04-21T07": 151.0868224, + "2024-04-21T14": 149.34284820000002, + "2024-04-21T13": 149.59739000000002, + "2024-04-21T05": 150.99339060000003, + "2024-04-21T10": 150.33006, + "2024-04-21T09": 151.54848, + "2024-04-21T19": 148.7144613, + "2024-04-21T22": 149.79797359999998, + "2024-04-21T23": 148.6182321, + "2024-04-21T21": 149.9904986, + "2024-04-21T20": 148.494848, + "2024-04-21T18": 148.719738, + "2024-04-22": 153.86800880553358, + "2024-04-22T00": 149.12640210000004, + "2024-04-22T07": 154.19656445880418, + "2024-04-22T05": 151.88528259999998, + "2024-04-22T04": 151.02076459999998, + "2024-04-22T02": 147.32062200000001, + "2024-04-22T01": 149.16789799999998, + "2024-04-22T06": 155.06943111131497, + "2024-04-22T03": 149.9434937, + "2024-04-22T08": 153.74975374717224, + "2024-04-22T09": 153.42667549423962, + "2024-04-22T10": 154.075807760952, + "2024-04-22T11": 153.19502880000002, + "2024-04-22T12": 153.931548, + "2024-04-22T13": 154.15085299999998, + "2024-04-22T14": 154.21166, + "2024-04-22T15": 152.5077393, + "2024-04-22T16": 153.64524930000002, + "2024-04-23": 156.36685483544818, + "2024-04-23T03": 156.10581100000002, + "2024-04-22T19": 154.108539, + "2024-04-22T17": 154.34082745030474, + "2024-04-22T23": 157.737307, + "2024-04-22T20": 154.7248572, + "2024-04-22T21": 154.916461, + "2024-04-22T18": 154.73966803389857, + "2024-04-23T06": 155.59708559999999, + "2024-04-22T22": 157.17713899999998, + "2024-04-23T04": 155.845668, + "2024-04-23T01": 158.10663754999996, + "2024-04-23T07": 153.8476632, + "2024-04-23T00": 158.25169409999998, + "2024-04-23T05": 155.553276, + "2024-04-23T02": 158.10743470000003, + "2024-04-23T08": 153.9007705, + "2024-04-23T09": 154.0038825, + "2024-04-23T10": 154.96660699999998, + "2024-04-23T11": 154.3224975, + "2024-04-23T12": 154.3370836, + "2024-04-23T13": 154.7734311, + "2024-04-23T14": 157.48240859999999, + "2024-04-23T15": 158.4265604187084, + "2024-04-23T16": 158.3243435397141, + "2024-04-24": 154.72230429141575, + "2024-04-24T02": 156.28250160000002, + "2024-04-24T00": 155.5293312, + "2024-04-24T01": 158.185817, + "2024-04-23T23": 154.94084510000002, + "2024-04-24T06": 157.9895586142468, + "2024-04-23T22": 156.29361018272942, + "2024-04-23T18": 158.96794211709172, + "2024-04-23T20": 156.3660897162466, + "2024-04-23T21": 156.49782450000004, + "2024-04-24T04": 158.03, + "2024-04-24T05": 158.7211097, + "2024-04-24T03": 156.68008439518775, + "2024-04-24T07": 158.24841750000002, + "2024-04-23T19": 158.14559200963646, + "2024-04-23T17": 158.66067071638753, + "2024-04-24T08": 157.35898410000001, + "2024-04-24T09": 156.88586222, + "2024-04-24T10": 157.644234, + "2024-04-24T11": 158.7884121, + "2024-04-24T12": 159.198408, + "2024-04-24T13": 158.73686716167128, + "2024-04-24T14": 156.54874064342837, + "2024-04-24T15": 153.17391743820843, + "2024-04-24T18": 150.91682965468007, + "2024-04-25T00": 148.28676892788997, + "2024-04-24T21": 149.35760209299582, + "2024-04-24T17": 152.4178008764059, + "2024-04-24T16": 151.87026951940123, + "2024-04-24T20": 149.43435432846016, + "2024-04-24T23": 147.07699717413223, + "2024-04-24T22": 147.85508442422397, + "2024-04-24T19": 149.9187139129472, + "2024-04-25T01": 148.25579144668825, + "2024-04-25T03": 146.22416429522875, + "2024-04-25T07": 146.99917882621943, + "2024-04-25T06": 147.89944641979272, + "2024-04-25T05": 147.23574057668105, + "2024-04-25T04": 146.10077210232967, + "2024-04-25T02": 146.21722413363185, + "2024-04-25T08": 146.26499277230434, + "2024-04-25T09": 146.600674, + "2024-04-25T10": 144.19332207387467, + "2024-04-25T11": 144.73854009320974, + "2024-04-25T12": 144.71269435486266, + "2024-04-25T13": 143.65633158690764, + "2024-04-25T14": 145.4917400650229, + "2024-04-25T15": 146.13103481516777, + "2024-04-25T18": 147.82332856125547, + "2024-04-25T17": 148.31683854019164, + "2024-04-25T16": 147.6019593142336, + "2024-04-25": 147.6854592586746, + "2024-04-26": 144.88938593039995, + "2024-04-25T19": 147.11016138107027, + "2024-04-26T01": 142.601112913238, + "2024-04-25T23": 145.195479, + "2024-04-26T00": 143.1470686, + "2024-04-25T22": 146.2141512, + "2024-04-25T21": 147.8, + "2024-04-25T20": 146.62916403520921, + "2024-04-26T05": 143.6055829, + "2024-04-26T07": 143.62, + "2024-04-26T02": 144.1574620944374, + "2024-04-26T03": 143.82568510000002, + "2024-04-26T04": 143.1942469, + "2024-04-26T06": 144.15, + "2024-04-26T08": 144.01288019999998, + "2024-04-26T09": 144.18558, + "2024-04-26T10": 143.2128124, + "2024-04-26T11": 142.8200024, + "2024-04-26T12": 143.6555744, + "2024-04-26T13": 142.531488, + "2024-04-26T14": 144.56963399999998, + "2024-04-26T15": 142.7400216, + "2024-04-26T21": 142.33074248, + "2024-04-26T22": 139.951, + "2024-04-26T17": 142.9008369896652, + "2024-04-26T19": 143.4855057, + "2024-04-26T16": 142.41730919544645, + "2024-04-26T18": 143.72497164643093, + "2024-04-26T20": 143.0856297, + "2024-04-27": 139.1644839553058, + "2024-04-26T23": 139.347028, + "2024-04-27T00": 137.6773068, + "2024-04-27T01": 135.07758255307132, + "2024-04-28": 141.15334607085813, + "2024-04-27T13": 138.290053, + "2024-04-28T00": 141.40378, + "2024-04-27T20": 141.2438888, + "2024-04-27T23": 141.40378, + "2024-04-27T06": 136.2628389957678, + "2024-04-27T05": 136.26636976667862, + "2024-04-27T02": 135.82726893975726, + "2024-04-27T18": 140.9127031, + "2024-04-27T07": 136.478064, + "2024-04-27T04": 136.75430925761748, + "2024-04-27T21": 140.3858784, + "2024-04-27T09": 136.112832, + "2024-04-27T14": 138.77028411147592, + "2024-04-27T22": 140.504392, + "2024-04-27T16": 138.11601720000002, + "2024-04-27T10": 135.8489202, + "2024-04-27T17": 140.6756841, + "2024-04-27T08": 136.1668875, + "2024-04-27T12": 137.0008915, + "2024-04-27T15": 137.83448959999998, + "2024-04-27T11": 135.7502804472341, + "2024-04-27T03": 136.16396232904063, + "2024-04-27T19": 141.560838, + "2024-04-28T01": 142.247479, + "2024-04-28T20": 141.5975895, + "2024-04-28T14": 142.0917632, + "2024-04-28T05": 143.812221, + "2024-04-28T08": 143.2439622, + "2024-04-28T16": 142.32247257999998, + "2024-04-28T11": 141.3993564, + "2024-04-28T22": 139.64412, + "2024-04-28T03": 144.103486, + "2024-04-28T13": 142.4044638, + "2024-04-28T15": 142.0189056, + "2024-04-28T04": 143.319696, + "2024-04-28T09": 142.5301494, + "2024-04-28T19": 142.9656524, + "2024-04-28T06": 143.3738751, + "2024-04-28T12": 141.51303997797402, + "2024-04-28T02": 143.3295512, + "2024-04-28T17": 142.602936, + "2024-04-28T21": 141.54161022, + "2024-04-28T18": 143.0256296, + "2024-04-28T07": 143.7893556, + "2024-04-28T10": 141.8904968, + "2024-04-29": 135.57480502984293, + "2024-04-28T23": 137.94894, + "2024-04-29T00": 138.259893, + "2024-04-29T01": 138.28373504, + "2024-04-29T06": 134.9892, + "2024-04-29T02": 136.614471, + "2024-04-29T05": 135.92824799999997, + "2024-04-29T03": 136.0041543, + "2024-04-29T04": 135.98143789999997, + "2024-04-29T07": 134.9892, + "2024-04-29T08": 134.3992472, + "2024-04-29T09": 135.19324, + "2024-04-29T10": 135.70185740000002, + "2024-04-29T11": 134.92301, + "2024-04-29T12": 135.1402626, + "2024-04-29T13": 135.617444, + "2024-04-29T14": 136.5567814, + "2024-04-29T15": 136.39, + "2024-04-30": 128.8707173345529, + "2024-04-30T04": 135.719272, + "2024-04-29T21": 134.554236, + "2024-04-30T03": 136.8779666, + "2024-04-29T22": 137.23135000000002, + "2024-04-29T19": 134.3249042, + "2024-04-29T23": 138.0020148, + "2024-04-29T18": 134.471755, + "2024-04-30T00": 138.3240264, + "2024-04-29T20": 135.13780799999998, + "2024-04-30T01": 138.21299159999998, + "2024-04-30T02": 136.3109104, + "2024-04-29T16": 135.1718892, + "2024-04-29T17": 134.75247990000003, + "2024-04-30T05": 135.2388879, + "2024-04-30T06": 135.7855542, + "2024-04-30T07": 135.7469191, + "2024-04-30T08": 132.5474631, + "2024-04-30T09": 130.7781376, + "2024-04-30T10": 130.04131884998094, + "2024-04-30T11": 129.98367367609137, + "2024-04-30T12": 128.72749921671306, + "2024-04-30T13": 128.9749799111363, + "2024-04-30T14": 127.77563087904443, + "2024-04-30T15": 128.96714372738705, + "2024-04-30T16": 125.40730355145075, + "2024-05-01": 124.8858309259435, + "2024-04-30T22": 127.22434332862895, + "2024-04-30T17": 125.1732214360968, + "2024-04-30T20": 124.59326344082446, + "2024-04-30T23": 126.80758769290347, + "2024-04-30T19": 122.59932147731749, + "2024-04-30T18": 124.01138412670505, + "2024-05-01T01": 126.35147703741215, + "2024-05-01T00": 125.40682980376648, + "2024-04-30T21": 125.45442277220633, + "2024-05-01T02": 125.041092511785, + "2024-05-01T03": 125.08285234362903, + "2024-05-01T05": 125.00365325096972, + "2024-05-01T04": 126.07322361071785, + "2024-05-01T06": 123.77748044420082, + "2024-05-01T07": 120.63515491892925, + "2024-05-01T08": 120.00080714555753, + "2024-05-01T09": 121.28281525544453, + "2024-05-01T10": 120.95118364052044, + "2024-05-01T11": 121.58258736608525, + "2024-05-01T12": 123.88334602594603, + "2024-05-01T13": 123.23998090958438, + "2024-05-01T15": 122.62714458703572, + "2024-05-01T16": 124.02142165268953, + "2024-05-01T14": 122.89850988721258, + "2024-05-01T20": 129.28756894070108, + "2024-05-01T17": 125.76005682479125, + "2024-05-01T19": 130.98991147098494, + "2024-05-01T18": 129.54382535192858, + "2024-05-01T21": 131.84948050850863, + "2024-05-01T22": 133.66773922662895, + "2024-05-02": 131.19091358070472, + "2024-05-02T03": 130.1712577555591, + "2024-05-02T01": 130.3571239958085, + "2024-05-02T02": 129.58903653891167, + "2024-05-01T23": 134.15294815282596, + "2024-05-02T00": 132.13326398883532, + "2024-05-02T04": 130.17824642982725, + "2024-05-02T06": 129.80541846140565, + "2024-05-02T07": 131.73835302741153, + "2024-05-02T05": 129.25540977534507, + "2024-05-02T08": 132.9375276, + "2024-05-02T09": 133.19203739999998, + "2024-05-02T10": 133.94907999999998, + "2024-05-02T11": 134.6680753363753, + "2024-05-02T12": 138.69182300602088, + "2024-05-02T13": 136.61693491793358, + "2024-05-02T14": 136.08637960418883, + "2024-05-02T15": 139.4056610101205, + "2024-05-02T16": 138.33559516166233, + "2024-05-02T17": 137.9520262533573, + "2024-05-03T04": 140.7625081613565, + "2024-05-03T02": 140.09961120000003, + "2024-05-03T03": 140.8783118, + "2024-05-03T05": 140.0098, + "2024-05-03T06": 138.65673393250907, + "2024-05-03T00": 137.5423777, + "2024-05-03T07": 137.583757, + "2024-05-03T01": 139.79578502, + "2024-05-03T08": 137.7613776, + "2024-05-03T09": 138.35521740000002, + "2024-05-03T10": 137.19097440000002, + "2024-05-03T11": 136.49868623405789, + "2024-05-03T12": 140.4315736, + "2024-05-03T13": 142.6339373696746, + "2024-05-03T14": 142.60705406618854, + "2024-05-03T15": 141.72458286708402, + "2024-05-03": 141.07056310367605, + "2024-05-04": 145.990026773785, + "2024-05-04T05": 145.1520819, + "2024-05-03T18": 142.04928880569378, + "2024-05-04T03": 144.28109674012302, + "2024-05-03T17": 142.04252147386472, + "2024-05-03T21": 143.373083, + "2024-05-03T20": 144.0649604255617, + "2024-05-04T06": 144.9605776, + "2024-05-03T22": 143.44165339999998, + "2024-05-03T19": 141.6204322766341, + "2024-05-04T02": 143.33152600000003, + "2024-05-03T16": 142.45041208481473, + "2024-05-04T01": 143.8874672, + "2024-05-04T04": 145.31067560000002, + "2024-05-03T23": 143.87494672416375, + "2024-05-04T00": 144.4005225, + "2024-05-04T13": 146.723472, + "2024-05-04T10": 147.4929498, + "2024-05-04T12": 147.354734, + "2024-05-04T07": 144.0659272, + "2024-05-04T11": 147.894788, + "2024-05-04T09": 144.9331856, + "2024-05-04T15": 146.06920799999997, + "2024-05-04T08": 144.72749299999998, + "2024-05-04T14": 146.57931000000002, + "2024-05-05": 145.855533780424, + "2024-05-05T01": 144.4087707, + "2024-05-04T19": 147.12774567135844, + "2024-05-04T20": 147.33589320000002, + "2024-05-05T05": 145.2388786, + "2024-05-05T07": 145.53455200000002, + "2024-05-04T23": 146.204619, + "2024-05-04T22": 146.12461100000002, + "2024-05-04T21": 146.8629372, + "2024-05-05T00": 145.31479395000002, + "2024-05-05T08": 146.01606, + "2024-05-04T17": 146.25877499999999, + "2024-05-05T09": 145.45745279999997, + "2024-05-05T10": 145.6118385, + "2024-05-05T04": 144.6388006, + "2024-05-04T16": 146.19692625000002, + "2024-05-05T06": 144.884487, + "2024-05-05T03": 144.1687395, + "2024-05-04T18": 146.6287972, + "2024-05-05T02": 144.8288253, + "2024-05-05T21": 145.2459753, + "2024-05-05T16": 146.98440939999998, + "2024-05-05T22": 145.0974096, + "2024-05-05T17": 147.18324529999998, + "2024-05-05T20": 145.37598960000003, + "2024-05-05T13": 146.82130792931198, + "2024-05-05T15": 147.310311, + "2024-05-05T12": 146.1433792, + "2024-05-05T18": 146.2563214, + "2024-05-05T14": 146.46782359999997, + "2024-05-05T19": 146.0833696, + "2024-05-05T11": 146.3534128, + "2024-05-05T23": 145.68311029999998, + "2024-05-06T00": 146.664665, + "2024-05-06T02": 146.9532246, + "2024-05-06T05": 148.4574225, + "2024-05-06T06": 148.85297699999998, + "2024-05-06T07": 148.4489064, + "2024-05-06T04": 147.16882959999998, + "2024-05-06T01": 147.2450274, + "2024-05-06T03": 146.11876660000001, + "2024-05-06T08": 153.72, + "2024-05-06T09": 155.38043961569332, + "2024-05-06T10": 154.3499392472458, + "2024-05-06T11": 153.94384275046238, + "2024-05-06T12": 152.60009646600724, + "2024-05-06T13": 151.86594381618693, + "2024-05-06T14": 154.5078615827482, + "2024-05-06T15": 152.98942775831432, + "2024-05-06T17": 151.99044456805046, + "2024-05-06T16": 152.9104059825725, + "2024-05-06T18": 152.10290647405654, + "2024-05-06": 152.81883506269745, + "2024-05-07": 154.60212649126154, + "2024-05-06T22": 154.9646488, + "2024-05-07T06": 154.1746251, + "2024-05-07T01": 156.381232, + "2024-05-07T00": 153.3669326, + "2024-05-06T21": 155.25908588133754, + "2024-05-06T20": 154.44497767523916, + "2024-05-06T23": 153.4184658, + "2024-05-07T04": 154.893804, + "2024-05-06T19": 152.29650057465562, + "2024-05-07T03": 153.9269214, + "2024-05-07T02": 157.02173100000002, + "2024-05-07T05": 155.0137992, + "2024-05-07T07": 155.1824136, + "2024-05-07T08": 157.09681391768487, + "2024-05-07T09": 158.2488021640458, + "2024-05-07T10": 156.81842971029485, + "2024-05-07T11": 156.1244482464975, + "2024-05-07T12": 155.18640054935116, + "2024-05-07T13": 154.8212206599371, + "2024-05-07T14": 153.3925545795536, + "2024-05-07T15": 153.46881921009268, + "2024-05-08": 146.37329067663728, + "2024-05-09": 144.36239279351378, + "2024-05-10": 152.3503801574188, + "2024-05-09T13": 143.39405449999998, + "2024-05-10T00": 152.0987032, + "2024-05-08T08": 146.155383, + "2024-05-09T14": 143.9051304, + "2024-05-08T10": 146.2724452, + "2024-05-09T04": 143.9965243, + "2024-05-10T01": 153.58464, + "2024-05-08T03": 148.98212, + "2024-05-09T07": 143.7766365, + "2024-05-09T11": 142.103136, + "2024-05-09T00": 142.7321095321691, + "2024-05-09T01": 143.886662, + "2024-05-10T06": 154.0199748, + "2024-05-09T19": 148.85634088700564, + "2024-05-10T05": 152.75013990000002, + "2024-05-10T02": 153.30420138, + "2024-05-09T23": 152.08522635, + "2024-05-09T06": 145.10450640000002, + "2024-05-08T01": 148.735125, + "2024-05-09T09": 142.53869500000002, + "2024-05-09T20": 149.97356186103295, + "2024-05-08T19": 145.85126499369872, + "2024-05-09T03": 143.7566467, + "2024-05-08T21": 140.8872809056185, + "2024-05-09T22": 152.0126328, + "2024-05-08T17": 146.3992497, + "2024-05-09T05": 144.2435104, + "2024-05-08T06": 147.4049369, + "2024-05-08T15": 145.75938409999998, + "2024-05-10T08": 153.98152, + "2024-05-08T07": 146.91914049999997, + "2024-05-08T04": 147.5922868, + "2024-05-09T15": 146.44180887598182, + "2024-05-08T18": 147.7060198, + "2024-05-09T10": 141.5121255, + "2024-05-09T21": 150.38640006320477, + "2024-05-10T03": 153.5577144, + "2024-05-08T00": 148.9085109, + "2024-05-10T07": 155.00829579999998, + "2024-05-08T14": 147.9441231, + "2024-05-09T17": 146.86623735677907, + "2024-05-08T13": 146.0349432, + "2024-05-08T05": 147.0849913, + "2024-05-09T18": 147.13549229775526, + "2024-05-09T08": 143.526764, + "2024-05-08T20": 142.38423267814431, + "2024-05-08T22": 141.56451113734272, + "2024-05-08T11": 145.50835840000002, + "2024-05-09T12": 143.57679839999997, + "2024-05-08T02": 149.180604, + "2024-05-10T04": 154.04843019999998, + "2024-05-08T12": 145.32801216, + "2024-05-09T02": 144.1849848, + "2024-05-08T09": 145.4439994, + "2024-05-09T16": 147.63852879468075, + "2024-05-08T16": 145.54923480000002, + "2024-05-08T23": 141.84536829604517, + "2024-05-10T09": 153.881532, + "2024-05-10T10": 153.6584848, + "2024-05-10T11": 153.66848339999999, + "2024-05-10T12": 154.1284587, + "2024-05-10T13": 152.98023054, + "2024-05-10T14": 149.20463089999998, + "2024-05-11": 145.29885530319825, + "2024-05-12": 145.1313337929807, + "2024-05-12T16": 145.68170400000002, + "2024-05-11T03": 143.9853507, + "2024-05-10T17": 146.63800028736873, + "2024-05-11T16": 145.99158000000003, + "2024-05-10T15": 146.98804013865433, + "2024-05-11T04": 144.0910849, + "2024-05-11T12": 144.51493900000003, + "2024-05-12T15": 144.942, + "2024-05-11T11": 143.7267324, + "2024-05-12T04": 146.67983660000002, + "2024-05-12T11": 145.2329857, + "2024-05-11T22": 145.5879636, + "2024-05-11T21": 145.60795919999998, + "2024-05-10T21": 146.19583638685958, + "2024-05-10T23": 146.3948568, + "2024-05-12T00": 145.866227, + "2024-05-12T03": 146.46139200000002, + "2024-05-12T12": 145.1730175, + "2024-05-11T08": 144.712365, + "2024-05-11T17": 145.27059119999998, + "2024-05-12T19": 144.97488859999999, + "2024-05-11T23": 145.612131, + "2024-05-11T05": 145.2807636, + "2024-05-12T02": 146.16151200000002, + "2024-05-11T02": 144.16962120000002, + "2024-05-10T16": 147.193296948077, + "2024-05-12T14": 144.5649165, + "2024-05-11T09": 144.609498, + "2024-05-10T18": 147.04135833168021, + "2024-05-10T19": 147.37518998381586, + "2024-05-11T06": 145.7420972, + "2024-05-12T08": 144.7178828, + "2024-05-10T20": 146.23779096030052, + "2024-05-11T18": 146.261472, + "2024-05-12T05": 147.05115600000002, + "2024-05-12T06": 146.89122, + "2024-05-11T20": 145.7989525, + "2024-05-12T09": 144.83059509999998, + "2024-05-11T01": 146.6062728, + "2024-05-11T00": 146.14637860000002, + "2024-05-12T07": 144.44942500000002, + "2024-05-12T10": 145.23606800000002, + "2024-05-11T10": 144.2479467, + "2024-05-12T01": 145.79166, + "2024-05-12T18": 145.269138, + "2024-05-12T13": 145.0018171, + "2024-05-11T19": 146.171508, + "2024-05-12T17": 145.049215, + "2024-05-11T14": 144.9278072, + "2024-05-11T07": 145.4307231, + "2024-05-11T15": 145.57591839999998, + "2024-05-11T13": 144.7806156, + "2024-05-10T22": 145.5336075, + "2024-05-13": 145.5923584232473, + "2024-05-12T21": 143.452645, + "2024-05-13T00": 145.1188569, + "2024-05-13T03": 139.1510268, + "2024-05-12T23": 143.52251270000002, + "2024-05-13T04": 138.6825456, + "2024-05-13T01": 143.15987650000002, + "2024-05-13T05": 138.54119760000003, + "2024-05-13T02": 141.2262063, + "2024-05-13T07": 141.6939777892729, + "2024-05-13T06": 139.7708532, + "2024-05-12T22": 143.32834229999997, + "2024-05-12T20": 144.6550102, + "2024-05-13T08": 144.79692560033848, + "2024-05-13T09": 146.0920300580657, + "2024-05-13T10": 145.1930064659345, + "2024-05-13T11": 145.21168072940944, + "2024-05-13T12": 145.79280101125877, + "2024-05-13T13": 145.79787874869055, + "2024-05-13T14": 146.18362555244883, + "2024-05-13T15": 147.014708, + "2024-05-13T16": 149.37012000000001, + "2024-05-14": 145.9676628896916, + "2024-05-13T17": 147.84190470000001, + "2024-05-14T01": 147.230548, + "2024-05-14T02": 146.6903829, + "2024-05-14T06": 145.3143972, + "2024-05-13T19": 148.52851470000002, + "2024-05-13T22": 147.375261, + "2024-05-14T04": 147.1405012, + "2024-05-13T21": 148.33961549999998, + "2024-05-14T03": 146.1139812, + "2024-05-14T00": 147.45197879999998, + "2024-05-14T07": 146.18248219999998, + "2024-05-13T20": 148.712564, + "2024-05-14T05": 148.5767504, + "2024-05-13T23": 147.2820111, + "2024-05-13T18": 146.6121384, + "2024-05-14T08": 145.96464391037816, + "2024-05-14T09": 146.4896512, + "2024-05-14T10": 146.0613189, + "2024-05-14T11": 146.4038304, + "2024-05-14T12": 146.61903980000002, + "2024-05-14T13": 145.5796846, + "2024-05-14T14": 143.643918691462, + "2024-05-14T15": 143.30501858086453, + "2024-05-14T16": 142.65906225783502, + "2024-05-14T17": 142.85516250232544, + "2024-05-14T18": 142.77964190894517, + "2024-05-14T19": 144.18634880850203, + "2024-05-14T20": 143.5210768, + "2024-05-15": 150.90589314054284, + "2024-05-15T02": 142.81283100000002, + "2024-05-15T01": 142.83281879999998, + "2024-05-14T21": 142.9842304, + "2024-05-15T05": 143.7252945, + "2024-05-15T00": 142.21458629999998, + "2024-05-15T06": 143.9352, + "2024-05-15T03": 143.81366, + "2024-05-15T07": 143.92460465321557, + "2024-05-14T23": 142.1574232, + "2024-05-15T04": 143.66955546575178, + "2024-05-14T22": 142.8742573, + "2024-05-15T08": 144.08531969999999, + "2024-05-15T09": 144.78783024, + "2024-05-15T10": 144.98405, + "2024-05-15T11": 143.8198624, + "2024-05-15T12": 148.33368149999998, + "2024-05-15T13": 148.71038736377878, + "2024-05-15T14": 152.24837228028824, + "2024-05-15T15": 152.914100428663, + "2024-05-15T18": 153.81605537383422, + "2024-05-15T17": 153.7554304958724, + "2024-05-15T16": 152.43095711612102, + "2024-05-16": 158.30575295340316, + "2024-05-16T04": 162.9155345256556, + "2024-05-16T06": 161.55878814363913, + "2024-05-15T22": 156.04798499999998, + "2024-05-15T19": 154.1795960143916, + "2024-05-16T07": 162.77, + "2024-05-16T03": 163.10386205859893, + "2024-05-16T05": 161.97594139325096, + "2024-05-15T21": 156.46115040462786, + "2024-05-16T02": 161.28234590063533, + "2024-05-16T00": 160.53248447414416, + "2024-05-15T23": 158.053196, + "2024-05-15T20": 155.35103906087465, + "2024-05-16T01": 160.80710011172562, + "2024-05-16T08": 163.0583694, + "2024-05-16T09": 162.9588126, + "2024-05-16T10": 163.44692320000001, + "2024-05-16T11": 163.0528242, + "2024-05-16T12": 162.13242, + "2024-05-16T13": 161.55610515798753, + "2024-05-16T14": 162.99323605704032, + "2024-05-16T15": 159.7054417759343, + "2024-05-17": 159.14533854574205, + "2024-05-17T00": 161.29838700000002, + "2024-05-16T23": 159.06272400000003, + "2024-05-16T22": 158.1326496, + "2024-05-16T17": 158.09575277104358, + "2024-05-16T20": 158.67766916321088, + "2024-05-16T18": 159.4076152063213, + "2024-05-16T21": 158.75269920000002, + "2024-05-17T01": 161.3296792, + "2024-05-16T19": 159.66567413454393, + "2024-05-17T03": 161.85294720000002, + "2024-05-17T02": 160.7996474, + "2024-05-16T16": 158.56561411279912, + "2024-05-17T06": 163.266325, + "2024-05-17T04": 162.05620399999998, + "2024-05-17T07": 168.31434816001615, + "2024-05-17T05": 163.11631, + "2024-05-17T08": 169.36154473826915, + "2024-05-17T09": 168.2107382060857, + "2024-05-18": 172.7906230306305, + "2024-05-19": 171.02823066161318, + "2024-05-20": 178.04265918181963, + "2024-05-21": 185.69521533203297, + "2024-05-20T04": 173.9560824, + "2024-05-18T11": 175.055004, + "2024-05-18T17": 171.3156935, + "2024-05-20T15": 178.18338568708438, + "2024-05-20T16": 180, + "2024-05-19T00": 173.0411418, + "2024-05-18T18": 171.83061719999998, + "2024-05-21T06": 182.43784911484406, + "2024-05-20T23": 186.20270253867488, + "2024-05-18T13": 173.65861080000002, + "2024-05-19T17": 170.318733, + "2024-05-20T11": 178.17993258451315, + "2024-05-21T07": 181.06243309729447, + "2024-05-21T05": 182.1457639063428, + "2024-05-19T23": 170.4037761943682, + "2024-05-19T13": 168.426841, + "2024-05-18T06": 172.56175299999998, + "2024-05-19T07": 173.37860267, + "2024-05-18T14": 173.05152239999998, + "2024-05-18T21": 173.20290229999998, + "2024-05-18T20": 172.981131, + "2024-05-20T18": 180.3875333, + "2024-05-20T17": 180.906174, + "2024-05-20T00": 169.85150700000003, + "2024-05-18T01": 170.84953199999998, + "2024-05-20T10": 177.67094680060333, + "2024-05-18T12": 174.09569280000002, + "2024-05-18T09": 174.433136, + "2024-05-20T21": 184.16500537338038, + "2024-05-18T16": 171.48468299615692, + "2024-05-20T06": 177.7271088, + "2024-05-20T03": 172.78272, + "2024-05-18T03": 173.00015549999998, + "2024-05-19T01": 173.43121200000002, + "2024-05-18T02": 173.1201903, + "2024-05-19T06": 173.38239222317486, + "2024-05-21T00": 186.99926820960818, + "2024-05-20T12": 177.32645340000002, + "2024-05-19T12": 169.866985, + "2024-05-18T04": 173.1201903, + "2024-05-18T10": 174.82495799999998, + "2024-05-20T07": 177.21053141554395, + "2024-05-19T22": 171.00202902, + "2024-05-19T20": 169.7249081, + "2024-05-19T14": 168.4885317, + "2024-05-18T15": 172.3434099, + "2024-05-19T21": 169.4483055, + "2024-05-19T02": 173.86128940000003, + "2024-05-19T11": 171.61544399999997, + "2024-05-20T05": 177.49645, + "2024-05-19T09": 172.637262, + "2024-05-20T14": 176.105283, + "2024-05-21T02": 184.12180216556706, + "2024-05-18T19": 171.9209402, + "2024-05-18T00": 169.64274460000001, + "2024-05-18T22": 172.30100860000002, + "2024-05-19T16": 168.22018399999996, + "2024-05-20T02": 172.1848343, + "2024-05-18T05": 172.74008009999997, + "2024-05-21T08": 181.5781498437008, + "2024-05-20T19": 182.5128506237252, + "2024-05-18T08": 173.0149722, + "2024-05-21T01": 185.11453802039287, + "2024-05-18T07": 172.9163048, + "2024-05-20T13": 176.95353899999998, + "2024-05-19T18": 169.2935424, + "2024-05-20T20": 185.17831209229075, + "2024-05-19T04": 173.8691235, + "2024-05-20T01": 169.198308, + "2024-05-20T08": 177.9208237513761, + "2024-05-20T22": 185.86391725212457, + "2024-05-21T04": 184.25822887164583, + "2024-05-19T15": 167.3284041, + "2024-05-19T10": 173.2003914, + "2024-05-19T05": 174.6922276, + "2024-05-21T09": 181.8537942825561, + "2024-05-19T03": 174.40092559999997, + "2024-05-19T19": 169.48830510000002, + "2024-05-21T03": 184.07543230469184, + "2024-05-18T23": 172.3710212, + "2024-05-19T08": 173.77737599999998, + "2024-05-20T09": 177.51865694256517, + "2024-05-21T10": 183.0905522, + "2024-05-21T11": 182.54213226043032, + "2024-05-26": 163.9232201563034, + "2024-05-25": 168.26852943111953, + "2024-05-28": 169.98010897790877, + "2024-05-24": 167.30125178037642, + "2024-05-27": 167.43272608396268, + "2024-05-23": 175.46858970177854, + "2024-05-22": 179.02626846052198, + "2024-05-22T20": 178.2189823965001, + "2024-05-25T08": 169.0440471, + "2024-05-22T05": 178.4207388, + "2024-05-28T03": 167.2577619, + "2024-05-22T16": 181.72101849745715, + "2024-05-25T05": 169.37222400000002, + "2024-05-24T22": 167.29657519999998, + "2024-05-27T14": 167.9889608, + "2024-05-22T03": 177.2127775, + "2024-05-23T17": 174.16399328087502, + "2024-05-24T23": 167.5998266, + "2024-05-26T19": 162.24234180000002, + "2024-05-26T18": 161.4859836, + "2024-05-26T10": 163.70940510000003, + "2024-05-27T16": 171.25029419999998, + "2024-05-24T12": 166.80997141812648, + "2024-05-26T01": 167.433255, + "2024-05-23T07": 177.3117738, + "2024-05-22T08": 179.674058, + "2024-05-23T09": 176.9016032, + "2024-05-24T18": 169.04980206890838, + "2024-05-23T01": 177.0896382, + "2024-05-25T15": 168.413157, + "2024-05-23T16": 172.69336800851218, + "2024-05-25T03": 168.8007633, + "2024-05-28T06": 166.6931808, + "2024-05-25T23": 168.2313958, + "2024-05-24T13": 166.5251792389382, + "2024-05-26T03": 165.78176200000001, + "2024-05-26T00": 167.9081691, + "2024-05-25T06": 168.84412509999999, + "2024-05-27T04": 165.6621525, + "2024-05-22T10": 180.60025919999998, + "2024-05-27T09": 165.447359, + "2024-05-24T17": 166.98518809767262, + "2024-05-26T16": 162.9115484, + "2024-05-22T09": 179.964, + "2024-05-24T21": 167.484925, + "2024-05-25T04": 169.612128, + "2024-05-27T22": 170.925478, + "2024-05-27T11": 167.00639180000002, + "2024-05-23T21": 175.97592410311725, + "2024-05-23T10": 174.4889075, + "2024-05-23T14": 171.60730105160627, + "2024-05-27T02": 164.7827208, + "2024-05-25T18": 166.8882675, + "2024-05-27T05": 164.92079999999999, + "2024-05-22T23": 176.85698473161023, + "2024-05-28T01": 169.943936, + "2024-05-22T04": 176.2324044, + "2024-05-22T15": 180.9022208202598, + "2024-05-24T03": 172.32901970006304, + "2024-05-24T08": 164.41875300301575, + "2024-05-24T02": 172.49658020652498, + "2024-05-26T07": 165.8985948, + "2024-05-27T07": 164.64280340000002, + "2024-05-25T22": 167.319877, + "2024-05-24T16": 165.7898021237178, + "2024-05-27T20": 169.7466816, + "2024-05-22T02": 177.767996, + "2024-05-24T06": 166.78504986525294, + "2024-05-24T11": 165.61525640596034, + "2024-05-25T21": 167.186556, + "2024-05-27T15": 169.87378280000001, + "2024-05-22T19": 178.55166638384668, + "2024-05-23T20": 170.3728986764815, + "2024-05-23T08": 177.2371428, + "2024-05-22T22": 178.58201402405788, + "2024-05-26T11": 163.9761775, + "2024-05-24T01": 173.38913288353058, + "2024-05-23T05": 177.4299252, + "2024-05-28T04": 165.63899519999998, + "2024-05-25T09": 169.0091348, + "2024-05-27T18": 170.7773405, + "2024-05-24T10": 165.32458140372594, + "2024-05-25T19": 167.3081625, + "2024-05-24T07": 166.1824632967124, + "2024-05-26T04": 165.56694140000002, + "2024-05-26T09": 163.14471600000002, + "2024-05-23T02": 177.98739840000002, + "2024-05-27T06": 165.0007616, + "2024-05-28T08": 167.25336160365637, + "2024-05-24T15": 167.85785098374157, + "2024-05-25T20": 167.01133122819544, + "2024-05-27T08": 166.020328, + "2024-05-23T22": 177.1726138183511, + "2024-05-26T15": 164.511234, + "2024-05-24T20": 168.0235383104912, + "2024-05-25T13": 167.26657939999998, + "2024-05-22T01": 178.3485956, + "2024-05-25T17": 167.32318080000002, + "2024-05-27T10": 165.9287217, + "2024-05-24T19": 168.05866791198213, + "2024-05-26T02": 165.7819486212551, + "2024-05-27T19": 169.81306827217657, + "2024-05-25T11": 169.37459, + "2024-05-27T17": 171.61358779114892, + "2024-05-26T06": 166.59333900000001, + "2024-05-23T00": 177.38738731420256, + "2024-05-22T12": 177.6597927, + "2024-05-22T00": 178.5378574, + "2024-05-24T05": 167.32403803343445, + "2024-05-23T15": 172.2973286967388, + "2024-05-22T13": 178.2703881, + "2024-05-23T04": 177.90962760000002, + "2024-05-26T08": 164.880721, + "2024-05-26T13": 163.7875712, + "2024-05-28T05": 166.03605371999998, + "2024-05-22T18": 178.66657965777208, + "2024-05-22T06": 182.0199468, + "2024-05-22T17": 181.16274421921958, + "2024-05-23T19": 171.32730764075467, + "2024-05-25T07": 168.9640783, + "2024-05-26T22": 163.6212502, + "2024-05-25T16": 167.3465682, + "2024-05-26T05": 165.60030500000002, + "2024-05-24T04": 170.53726754767118, + "2024-05-25T12": 168.1682274, + "2024-05-28T07": 166.113675, + "2024-05-23T18": 171.70208367157986, + "2024-05-26T23": 163.25160160000001, + "2024-05-24T09": 165.38726625643, + "2024-05-23T03": 178.4303715, + "2024-05-26T14": 164.7457241, + "2024-05-22T14": 180.66646710356113, + "2024-05-25T14": 167.8582491, + "2024-05-25T00": 166.82162220000004, + "2024-05-23T23": 175.82506079445074, + "2024-05-23T13": 172.6671310548952, + "2024-05-22T11": 180.1775622, + "2024-05-28T00": 169.82403200000002, + "2024-05-27T23": 169.99708239999998, + "2024-05-28T02": 167.67582800000002, + "2024-05-26T21": 161.90200850000002, + "2024-05-26T12": 163.4276864, + "2024-05-23T06": 176.8085404, + "2024-05-22T07": 180.217555, + "2024-05-27T12": 167.27282699999998, + "2024-05-22T21": 178.40085911676604, + "2024-05-24T00": 175.0899804579191, + "2024-05-25T02": 168.9728178, + "2024-05-27T00": 165.107405, + "2024-05-26T20": 162.3409116, + "2024-05-26T17": 162.3722716, + "2024-05-27T13": 167.81421039999998, + "2024-05-23T12": 175.48849270061436, + "2024-05-25T10": 169.4842269, + "2024-05-23T11": 174.98253945090235, + "2024-05-24T14": 167.09027327672294, + "2024-05-25T01": 166.86662, + "2024-05-27T21": 170.4776435, + "2024-05-27T03": 165.0625556, + "2024-05-27T01": 165.7287531, + "2024-05-28T09": 167.5172793, + "2024-05-28T10": 169.235682, + "2024-05-28T11": 169.2988353, + "2024-05-28T12": 170.62749200000002, + "2024-05-28T13": 171.18030532809829, + "2024-05-28T14": 169.7614632226351, + "2024-05-28T15": 167.96648704584703, + "2024-05-29": 169.12993706766895, + "2024-05-28T20": 169.86471288214454, + "2024-05-28T22": 169.2041888, + "2024-05-28T21": 169.078217, + "2024-05-28T19": 169.14273636582197, + "2024-05-29T02": 168.877569, + "2024-05-28T17": 167.1550516337991, + "2024-05-28T18": 167.22370279397745, + "2024-05-28T23": 168.62876849823886, + "2024-05-29T00": 168.5308986, + "2024-05-29T01": 167.88661109999998, + "2024-05-28T16": 166.9165233600399, + "2024-05-29T06": 172.7806821, + "2024-05-29T05": 171.547335, + "2024-05-29T03": 171.517998, + "2024-05-29T07": 171.4845964, + "2024-05-29T04": 172.0150582, + "2024-05-29T08": 168.92091, + "2024-05-29T09": 168.60474079999997, + "2024-05-29T10": 169.2856335, + "2024-05-29T11": 169.232294, + "2024-05-29T12": 168.0168654, + "2024-05-29T13": 168.54842960000002, + "2024-05-29T14": 168.67508800000002, + "2024-05-29T15": 168.8718528, + "2024-05-29T18": 169.72690559999998, + "2024-05-29T17": 170.20667600000002, + "2024-05-29T23": 168.577464, + "2024-05-29T19": 170.1031354, + "2024-05-29T22": 169.08310919, + "2024-05-29T20": 168.9161463, + "2024-05-29T16": 169.3330795, + "2024-05-29T21": 168.41909174366748, + "2024-05-30": 167.9780323282347, + "2024-05-30T00": 168.4708368, + "2024-05-30T05": 168.49302659999998, + "2024-05-30T02": 169.89417899999998, + "2024-05-30T01": 168.00710506996862, + "2024-05-30T06": 167.01328239999998, + "2024-05-30T07": 165.51731560000002, + "2024-05-30T03": 169.72608400000001, + "2024-05-30T04": 169.7777238, + "2024-05-30T08": 164.371318, + "2024-05-30T09": 165.210814, + "2024-05-30T10": 165.9053451, + "2024-05-30T11": 166.5050216, + "2024-05-30T12": 167.206128, + "2024-05-30T13": 167.869218, + "2024-05-30T14": 168.8123106, + "2024-05-30T15": 168.28266, + "2024-05-30T21": 166.92660800000002, + "2024-05-30T20": 167.2382187, + "2024-05-30T18": 170.95553999999998, + "2024-05-30T16": 168.9991384, + "2024-05-30T17": 171.5147996, + "2024-05-30T19": 169.169544, + "2024-05-31": 166.4582088030258, + "2024-05-30T22": 166.63165850000001, + "2024-05-30T23": 167.101494, + "2024-05-31T03": 167.14972959999997, + "2024-05-31T07": 166.120149, + "2024-05-31T06": 166.13014600000002, + "2024-05-31T04": 167.273019, + "2024-05-31T02": 166.85988940000001, + "2024-05-31T05": 165.57208759999997, + "2024-05-31T00": 166.1434668, + "2024-05-31T01": 166.8399488, + "2024-05-31T08": 166.96655360000003, + "2024-05-31T09": 166.6733118, + "2024-05-31T10": 167.31555039999998, + "2024-05-31T11": 168.2772882, + "2024-05-31T12": 169.9262817, + "2024-05-31T13": 168.41551760000002, + "2024-05-31T14": 166.40509500000002, + "2024-06-01": 165.68645031689573, + "2024-06-01T08": 166.8314149, + "2024-06-01T02": 166.95120880000002, + "2024-06-01T05": 166.86631397828154, + "2024-05-31T21": 166.5349259, + "2024-06-01T00": 166.31019039999998, + "2024-05-31T18": 165.66445586602353, + "2024-05-31T15": 165.45256030000002, + "2024-05-31T23": 165.6824915, + "2024-05-31T22": 166.168686, + "2024-06-01T01": 166.5915724, + "2024-06-01T07": 166.74675890688385, + "2024-06-01T04": 166.8614177, + "2024-05-31T19": 166.3101804, + "2024-06-01T06": 166.9080384, + "2024-05-31T20": 166.0454992, + "2024-05-31T17": 165.63488491103604, + "2024-05-31T16": 164.70509317565717, + "2024-06-01T03": 167.21612, + "2024-06-01T09": 167.0045795, + "2024-06-01T10": 166.7878754987508, + "2024-06-02": 164.98063450128566, + "2024-06-01T13": 166.929628, + "2024-06-01T15": 167.48067350000002, + "2024-06-01T18": 167.1011475, + "2024-06-01T12": 166.8247361, + "2024-06-01T21": 166.94128990000002, + "2024-06-01T20": 167.37989919, + "2024-06-02T01": 166.626592, + "2024-06-01T17": 166.996296, + "2024-06-01T11": 166.60326, + "2024-06-02T00": 166.146976, + "2024-06-01T23": 166.0320789, + "2024-06-01T14": 167.22752309999998, + "2024-06-01T22": 166.754797, + "2024-06-01T19": 167.21104960000002, + "2024-06-01T16": 166.9779117, + "2024-06-02T13": 165.20096959999998, + "2024-06-02T11": 165.0627222, + "2024-06-02T07": 165.22605840000003, + "2024-06-02T05": 165.960476, + "2024-06-02T08": 165.14101279999997, + "2024-06-02T04": 165.9055076, + "2024-06-02T10": 164.1984032, + "2024-06-02T12": 165.3924879, + "2024-06-02T02": 166.08037520000002, + "2024-06-02T16": 164.2868198, + "2024-06-02T17": 162.9839915, + "2024-06-02T03": 165.978798, + "2024-06-02T09": 164.4382256, + "2024-06-02T15": 165.0229172, + "2024-06-02T06": 166.1086875, + "2024-06-02T18": 162.3608994, + "2024-06-02T14": 165.279258, + "2024-06-03": 162.55457923586363, + "2024-06-03T01": 164.038378, + "2024-06-02T20": 162.2458428, + "2024-06-03T00": 162.30713205703557, + "2024-06-02T21": 162.964103902392, + "2024-06-02T23": 163.3417478, + "2024-06-02T19": 162.6839598, + "2024-06-02T22": 162.94223139108155, + "2024-06-03T02": 164.5998633, + "2024-06-03T05": 164.591186, + "2024-06-03T06": 165.2541696, + "2024-06-03T04": 163.18529759999998, + "2024-06-03T03": 163.3535645, + "2024-06-03T07": 165.2541696 + }, + "USD cardano": { + "2023-07-30": 0.3141988419569688, + "2023-07-27": 0.3090507201046808, + "2023-07-10": 0.28581176958438226, + "2023-08-20": 0.2684760668613904, + "2024-02-23": 0.5842768398332727, + "2024-04-05": 0.5734201451386821, + "2023-12-19": 0.5957072751077839, + "2023-08-06": 0.2934906310485278, + "2023-12-02": 0.38887532643125206, + "2023-10-12": 0.24527432067980526, + "2023-10-31": 0.2965889051086655, + "2023-08-29": 0.2681225525067014, + "2023-06-20": 0.2603937811989407, + "2023-09-09": 0.2544059573853426, + "2023-06-26": 0.28739471326381477, + "2023-05-03": 0.3848716134349149, + "2023-10-23": 0.2660683996899307, + "2023-10-01": 0.25974405966343256, + "2024-03-07": 0.7401928498904562, + "2023-07-05": 0.28579057898131627, + "2023-07-29": 0.3111609484121935, + "2024-01-08": 0.5041788565258988, + "2023-05-29": 0.37917128816057477, + "2023-10-07": 0.2590902026779098, + "2023-09-26": 0.24556195439012307, + "2023-08-24": 0.2663549006792332, + "2023-12-05": 0.4055416392604694, + "2023-05-10": 0.3652887665798769, + "2024-02-19": 0.6260443846445308, + "2024-01-07": 0.5200902752054456, + "2023-10-18": 0.2458369422265148, + "2023-04-25": 0.38157989270321624, + "2023-07-31": 0.3128051710769308, + "2023-05-23": 0.3704238082806979, + "2023-08-25": 0.26201346544975435, + "2024-03-09": 0.7353833881198265, + "2023-07-12": 0.29257308672514204, + "2023-09-05": 0.25663131359386787, + "2023-06-07": 0.3350402831387455, + "2023-09-16": 0.2505298266805284, + "2023-08-12": 0.2930344038772758, + "2023-05-09": 0.36398970379209705, + "2023-09-01": 0.25619506926156477, + "2023-09-08": 0.2544466481451861, + "2024-03-22": 0.6188304931151465, + "2023-08-10": 0.2976953315578388, + "2023-12-07": 0.4464465387738138, + "2023-11-18": 0.36243566083622775, + "2023-07-13": 0.32716301801574055, + "2023-04-30": 0.400684526167864, + "2023-06-06": 0.3516984612341608, + "2023-09-13": 0.24771186192409592, + "2023-06-17": 0.2676188108240799, + "2023-07-17": 0.31309776708208753, + "2023-07-07": 0.2823001154744857, + "2023-09-07": 0.2559158637665916, + "2024-02-22": 0.5944049648585322, + "2024-04-15": 0.46558216216349535, + "2023-12-30": 0.6053284111956564, + "2023-09-17": 0.24872597378174527, + "2023-04-20": 0.41416532506528414, + "2024-03-26": 0.6658321083138723, + "2023-04-27": 0.40978419101832547, + "2024-04-17": 0.4484380061501645, + "2024-02-12": 0.545263130605731, + "2023-10-26": 0.28839648591685973, + "2024-01-03": 0.560933138403848, + "2023-06-01": 0.3648106288208373, + "2024-01-22": 0.4925351449481578, + "2023-06-12": 0.27646618892050856, + "2023-10-03": 0.2617324549939244, + "2023-06-19": 0.26065290972543953, + "2023-07-09": 0.2866512410855827, + "2023-12-24": 0.6149963371021346, + "2023-09-24": 0.2451580320537279, + "2024-01-16": 0.5371479478870315, + "2023-10-17": 0.24977092444709773, + "2024-03-18": 0.6690210542007345, + "2024-02-17": 0.5880045875863105, + "2023-12-27": 0.6154007117901685, + "2023-07-23": 0.3153766729071497, + "2023-09-03": 0.25506608704035444, + "2024-02-24": 0.5877006717006423, + "2024-01-06": 0.5230146663035572, + "2024-03-20": 0.6045067720074843, + "2023-11-21": 0.37568874340966546, + "2023-12-25": 0.6124419933396336, + "2023-09-22": 0.24486369254349075, + "2023-10-02": 0.26476646553020877, + "2024-03-27": 0.6499011877947024, + "2023-04-28": 0.4053956159361782, + "2023-08-04": 0.2934521511962457, + "2023-08-30": 0.26519675149749783, + "2023-04-24": 0.3866217351650018, + "2023-10-06": 0.26365283553122987, + "2023-10-13": 0.24615149280398588, + "2023-06-28": 0.27435831518325243, + "2024-02-05": 0.4958097176694148, + "2024-03-01": 0.6835213644189256, + "2023-07-15": 0.33010637475319043, + "2023-06-25": 0.29511446986393963, + "2023-12-10": 0.5928040327419525, + "2023-11-23": 0.3816920373922085, + "2024-01-13": 0.5475398960265391, + "2024-03-28": 0.6499101116214637, + "2023-08-05": 0.2915959064460198, + "2024-02-09": 0.5395290908780244, + "2023-10-09": 0.2520656048129856, + "2023-05-24": 0.36453307677920294, + "2024-01-09": 0.5163115024135249, + "2023-12-08": 0.5218784499767547, + "2023-05-27": 0.3637976356504604, + "2023-08-18": 0.2632599125690142, + "2023-11-05": 0.3397474457100954, + "2024-04-18": 0.4493073961322269, + "2023-10-22": 0.25946504368412066, + "2023-11-01": 0.2907625436065197, + "2023-05-07": 0.3806049509703127, + "2024-04-12": 0.5433248275347675, + "2024-03-12": 0.7458695403947274, + "2023-09-11": 0.24310400362787749, + "2024-03-03": 0.7276726600490885, + "2024-02-04": 0.5047514873874139, + "2024-01-28": 0.4927804135494632, + "2023-04-18": 0.4418204805261688, + "2023-07-06": 0.28419216099630823, + "2023-07-01": 0.2878925100546048, + "2023-05-18": 0.37542613142342074, + "2023-11-07": 0.3511000922905267, + "2023-11-25": 0.3908937795538429, + "2023-06-04": 0.380399505196337, + "2024-02-25": 0.5898127957155246, + "2023-12-01": 0.3807879536872008, + "2023-07-14": 0.3491600217169459, + "2024-01-26": 0.4821964570543134, + "2023-08-03": 0.29543521056199, + "2024-02-28": 0.6294411582985125, + "2023-09-15": 0.25000465744244316, + "2023-07-18": 0.30603157817297183, + "2023-04-21": 0.4002143595197684, + "2023-12-21": 0.6038917261575555, + "2023-07-20": 0.3246868839072055, + "2024-03-06": 0.7205728311548713, + "2023-09-30": 0.2509955192192306, + "2023-12-12": 0.5759512701095963, + "2024-02-13": 0.5516874971753868, + "2023-05-19": 0.36948154680257206, + "2023-09-20": 0.2531939732736687, + "2023-09-19": 0.2552579144098508, + "2023-09-29": 0.2508547671065824, + "2023-09-12": 0.24709106504328465, + "2023-06-13": 0.27714879814260596, + "2023-10-04": 0.2564743207354627, + "2023-07-08": 0.2864261212180159, + "2024-04-16": 0.4578572282266228, + "2024-03-02": 0.741174167669798, + "2023-06-27": 0.2830666945711336, + "2023-10-08": 0.25699437749528325, + "2023-11-20": 0.38699185339011166, + "2023-12-20": 0.5901698539567019, + "2023-12-31": 0.6021003457303576, + "2023-11-06": 0.35320651557209226, + "2023-08-22": 0.2579615085789149, + "2023-06-09": 0.31406050201819274, + "2024-03-17": 0.6730156532474666, + "2023-09-18": 0.25200407845965644, + "2024-04-01": 0.6258316874823673, + "2024-01-19": 0.49609380055861596, + "2023-11-11": 0.3833173022153913, + "2023-05-14": 0.36835918891430086, + "2023-05-13": 0.3652973173752183, + "2023-05-06": 0.38421734085429426, + "2023-11-19": 0.3758545069018965, + "2023-05-16": 0.3664850583943072, + "2023-09-23": 0.24549999692883348, + "2023-07-02": 0.28954900335407024, + "2023-08-15": 0.28862879620511755, + "2024-01-25": 0.47067535648927733, + "2024-03-13": 0.7533546386660621, + "2024-01-21": 0.5150588316883734, + "2024-02-01": 0.492487677821092, + "2023-06-15": 0.2592823293027031, + "2024-03-16": 0.7026872485290449, + "2023-11-27": 0.38003139919850487, + "2024-01-10": 0.5132422967178549, + "2024-03-15": 0.7144467840155343, + "2023-06-21": 0.27967858729546086, + "2024-01-02": 0.6252864277605777, + "2023-04-26": 0.4016881143980071, + "2023-07-11": 0.29063659640408296, + "2023-10-25": 0.2810417944846842, + "2024-01-01": 0.6028681278482786, + "2024-02-14": 0.5723827625018705, + "2023-09-04": 0.25624369730566837, + "2023-09-06": 0.2562620153625326, + "2024-04-03": 0.5828251091671685, + "2024-03-08": 0.7324437997836839, + "2023-11-28": 0.37879585868615556, + "2023-12-03": 0.39398341437509415, + "2023-08-02": 0.3052267681627416, + "2023-08-27": 0.26287928867605775, + "2023-10-20": 0.2503701761330141, + "2023-05-25": 0.3580059286208497, + "2023-10-10": 0.24982634620744693, + "2024-04-11": 0.5857551650259266, + "2023-06-22": 0.29502790056000816, + "2024-01-14": 0.544294289997984, + "2023-12-15": 0.6312039364792698, + "2023-10-19": 0.24309835614421937, + "2024-02-08": 0.5265804462934813, + "2023-11-08": 0.355673686851524, + "2023-11-12": 0.38307974603948247, + "2023-12-22": 0.6201725040335755, + "2023-05-20": 0.3653408711173422, + "2023-05-31": 0.37470590230017736, + "2024-03-23": 0.6293473703150472, + "2024-04-10": 0.5800455278305626, + "2023-09-27": 0.2448280426932152, + "2024-03-04": 0.7764474522831065, + "2023-09-10": 0.24913736137612552, + "2024-04-13": 0.4913646422313038, + "2024-02-29": 0.6808504096926514, + "2023-07-22": 0.31235747293830285, + "2023-07-21": 0.3141008230731667, + "2023-06-30": 0.28513945782345984, + "2023-12-29": 0.6120388970579527, + "2023-12-04": 0.4038236694974691, + "2023-09-21": 0.24822077871785841, + "2023-06-02": 0.3743415049334683, + "2023-10-11": 0.24706364229852523, + "2023-07-19": 0.3167380364844531, + "2023-05-05": 0.3915056970789808, + "2024-03-21": 0.6338280252783159, + "2024-04-08": 0.6074463258444652, + "2023-04-29": 0.4039825263556203, + "2023-06-14": 0.27323956202400645, + "2023-10-05": 0.2601495760487384, + "2023-10-16": 0.2517017327586948, + "2024-02-10": 0.5393031062536059, + "2024-04-07": 0.5900572584453879, + "2023-05-21": 0.3618500669068233, + "2024-02-20": 0.6260690025878002, + "2023-11-17": 0.3682801640993082, + "2023-12-11": 0.5511469022377182, + "2023-11-26": 0.38930677911163597, + "2023-11-16": 0.3830065002204742, + "2023-06-29": 0.27408102727393474, + "2023-06-11": 0.2678714346437385, + "2024-02-02": 0.511339103321989, + "2023-09-14": 0.24999611384497739, + "2024-01-27": 0.48476595134285233, + "2024-03-30": 0.65306491420731, + "2023-05-04": 0.39164132558358966, + "2023-09-28": 0.24651610915006159, + "2023-10-27": 0.2861819947923627, + "2023-05-01": 0.38900843764673887, + "2023-05-15": 0.37108605738412187, + "2023-11-22": 0.3701245124159353, + "2023-06-03": 0.3762639268017054, + "2024-01-18": 0.514906101064503, + "2023-08-26": 0.2600464781240323, + "2024-02-15": 0.5941543211379574, + "2023-10-28": 0.29247178769671855, + "2024-03-24": 0.6357503075156583, + "2023-04-22": 0.39196201585098683, + "2023-12-06": 0.43583221489525226, + "2023-11-10": 0.37356293198552487, + "2024-01-30": 0.5258861339378091, + "2023-08-09": 0.2984863613239283, + "2023-05-02": 0.3871569220128718, + "2023-11-14": 0.35930480905217255, + "2024-01-23": 0.46624022834003687, + "2024-01-31": 0.507404738460803, + "2024-01-11": 0.5810968070941663, + "2024-02-18": 0.622823386375357, + "2023-06-16": 0.26199322937358505, + "2023-10-30": 0.2992012854600035, + "2023-12-17": 0.5977447191758405, + "2024-02-26": 0.5907698982614155, + "2023-07-16": 0.32055228798286434, + "2024-01-05": 0.5427137926761588, + "2023-08-23": 0.2605524277373033, + "2024-03-11": 0.7404778173095032, + "2023-08-01": 0.3048965485962561, + "2024-03-14": 0.7589119613308408, + "2024-02-21": 0.5910107090875711, + "2023-08-28": 0.26269493320343645, + "2023-07-04": 0.29542301348844985, + "2023-12-13": 0.6090802954170893, + "2023-08-13": 0.29080306573469206, + "2024-03-31": 0.6474774100239337, + "2023-12-09": 0.5939477830967879, + "2024-04-02": 0.5870792993626898, + "2024-02-06": 0.4952146309550798, + "2024-04-09": 0.6052302836985572, + "2023-05-30": 0.3794941415241438, + "2023-11-04": 0.32563873766678103, + "2024-01-15": 0.5336514627877381, + "2023-07-03": 0.29439893910511183, + "2023-12-28": 0.6453469691863442, + "2023-04-23": 0.38997067179676015, + "2023-04-17": 0.44080039183513936, + "2023-05-08": 0.36901283908782456, + "2024-02-27": 0.6229435490140981, + "2024-02-07": 0.4859507135848553, + "2023-09-25": 0.24462463499667284, + "2024-03-19": 0.6178366268484268, + "2024-03-10": 0.7294621457450855, + "2023-09-02": 0.25535149422448367, + "2024-01-12": 0.5755733392418758, + "2023-11-29": 0.38415155657927363, + "2023-10-15": 0.24703675164215527, + "2023-11-30": 0.3755858930238825, + "2024-01-24": 0.4716209291607712, + "2023-08-11": 0.29553000286565506, + "2024-02-11": 0.5542556271891289, + "2023-06-08": 0.324721536192125, + "2023-08-16": 0.2750719505674845, + "2023-11-15": 0.36815892711613685, + "2023-12-16": 0.6122336170977589, + "2024-03-29": 0.6503017224044435, + "2024-04-04": 0.5801706726179205, + "2023-06-10": 0.25168648357754614, + "2023-07-28": 0.3104933197088297, + "2024-01-20": 0.51133992961257, + "2023-10-21": 0.2574861753903994, + "2023-05-12": 0.36121309298550164, + "2023-11-03": 0.31975364687462227, + "2023-08-31": 0.2628436168412417, + "2024-01-29": 0.49734025754280475, + "2024-01-04": 0.56309542883816, + "2023-05-22": 0.36766713123801903, + "2023-07-26": 0.3032782619395266, + "2023-11-13": 0.3707150745936377, + "2024-03-25": 0.6527818420278267, + "2023-08-07": 0.29160954248363996, + "2023-10-29": 0.29533113973383307, + "2023-07-25": 0.3040514292793591, + "2023-05-17": 0.37003715438251106, + "2023-10-24": 0.28142671711362144, + "2023-06-05": 0.3672252010596677, + "2023-11-02": 0.3101941792771411, + "2023-12-18": 0.571125335364459, + "2023-11-24": 0.3896801085518198, + "2023-08-21": 0.2664261466194673, + "2023-08-14": 0.29018796300136385, + "2023-05-26": 0.3581197254541547, + "2024-03-05": 0.7589598237441312, + "2024-04-06": 0.5813891527944391, + "2023-12-23": 0.605114465169946, + "2024-02-03": 0.5179543386115295, + "2024-02-16": 0.5993695938315802, + "2023-05-28": 0.3759516776268221, + "2023-12-14": 0.6481563981477774, + "2023-06-24": 0.2935207989851523, + "2023-12-26": 0.6068510027966253, + "2023-11-09": 0.3669336608569343, + "2023-05-11": 0.35882824081504955, + "2023-08-19": 0.2651036047398007, + "2023-06-23": 0.29413793719792963, + "2023-06-18": 0.2667073687852909, + "2023-08-08": 0.2938079934451703, + "2023-08-17": 0.27277450556227323, + "2024-04-14": 0.4567429288883973, + "2023-07-24": 0.3064286773042597, + "2023-10-14": 0.24652651353290733, + "2024-01-17": 0.5299888751010909, + "2023-04-19": 0.41985201746014134, + "2024-04-14T03": 0.44431760900000006, + "2024-04-11T16": 0.5778728399999999, + "2024-04-16T02": 0.45856502399999993, + "2024-04-13T04": 0.505470756, + "2024-04-18T09": 0.44339309300000007, + "2024-04-12T19": 0.48084339256976333, + "2024-04-15T06": 0.484243569, + "2024-04-14T19": 0.452704098, + "2024-04-15T01": 0.462303362, + "2024-04-17T20": 0.44697318, + "2024-04-11T17": 0.5816894579999999, + "2024-04-18T10": 0.44538905999999995, + "2024-04-12T14": 0.564057351, + "2024-04-12T20": 0.4914651704795902, + "2024-04-15T12": 0.486771711, + "2024-04-14T23": 0.47146565564484905, + "2024-04-13T07": 0.5064468269999999, + "2024-04-14T20": 0.44953482, + "2024-04-17T00": 0.45675067799999997, + "2024-04-15T00": 0.46513681799999995, + "2024-04-14T01": 0.4423238208737017, + "2024-04-17T22": 0.447091058, + "2024-04-17T09": 0.45770587500000004, + "2024-04-15T14": 0.474627267, + "2024-04-15T20": 0.45469089000000007, + "2024-04-16T10": 0.456891814, + "2024-04-16T18": 0.45221754599999997, + "2024-04-18T04": 0.45066845099999997, + "2024-04-15T02": 0.4608143599999999, + "2024-04-15T16": 0.46253114999999995, + "2024-04-14T05": 0.461893914, + "2024-04-17T08": 0.45723713, + "2024-04-14T13": 0.461535263, + "2024-04-14T10": 0.469120383, + "2024-04-13T14": 0.50480094, + "2024-04-17T10": 0.45452714999999994, + "2024-04-14T15": 0.45533656, + "2024-04-14T12": 0.46043470200000003, + "2024-04-16T09": 0.470545824, + "2024-04-17T02": 0.45552295800000003, + "2024-04-11T23": 0.58605274, + "2024-04-12T09": 0.58688847, + "2024-04-14T18": 0.456541484, + "2024-04-14T09": 0.46853415, + "2024-04-16T20": 0.451858095, + "2024-04-18T00": 0.44177349200000005, + "2024-04-15T23": 0.46040126600000003, + "2024-04-12T22": 0.49835499034557185, + "2024-04-12T00": 0.5874411180000001, + "2024-04-15T13": 0.486222646, + "2024-04-18T08": 0.4393229628563177, + "2024-04-13T20": 0.42129964404560627, + "2024-04-17T05": 0.46149228, + "2024-04-15T18": 0.449433584, + "2024-04-16T01": 0.46172924800000004, + "2024-04-14T11": 0.46022540000000006, + "2024-04-11T20": 0.58700587, + "2024-04-13T13": 0.50870172, + "2024-04-12T16": 0.5596032529999999, + "2024-04-17T03": 0.4580042715249705, + "2024-04-16T06": 0.460967206, + "2024-04-17T12": 0.4447178050000001, + "2024-04-11T22": 0.58575857, + "2024-04-15T05": 0.47002409300000003, + "2024-04-18T14": 0.4556277, + "2024-04-12T12": 0.57799763, + "2024-04-17T14": 0.439071171, + "2024-04-13T03": 0.5000049790000001, + "2024-04-18T07": 0.44088816000000003, + "2024-04-16T00": 0.45872840800000003, + "2024-04-12T03": 0.58865886, + "2024-04-17T23": 0.444277785, + "2024-04-13T23": 0.4485818235799263, + "2024-04-14T14": 0.45288108, + "2024-04-11T15": 0.580960536, + "2024-04-16T13": 0.455668535, + "2024-04-17T16": 0.433595664, + "2024-04-16T22": 0.45935153599999995, + "2024-04-15T15": 0.46642843800000006, + "2024-04-16T12": 0.46139226, + "2024-04-18T13": 0.445942656, + "2024-04-16T05": 0.45626904000000007, + "2024-04-17T17": 0.438591228, + "2024-04-12T13": 0.566612956, + "2024-04-12T23": 0.5030701428956595, + "2024-04-17T15": 0.434417376, + "2024-04-15T19": 0.448488286, + "2024-04-18T01": 0.446846372, + "2024-04-11T21": 0.5872411040000001, + "2024-04-12T02": 0.58962948, + "2024-04-16T14": 0.45383610999999996, + "2024-04-11T19": 0.5823, + "2024-04-16T08": 0.47057404799999997, + "2024-04-18T02": 0.447768654, + "2024-04-12T05": 0.58895889, + "2024-04-13T11": 0.51315131, + "2024-04-16T23": 0.45956079, + "2024-04-12T01": 0.5875235000000001, + "2024-04-16T21": 0.45939186, + "2024-04-14T02": 0.44342167507655367, + "2024-04-12T10": 0.584695285, + "2024-04-16T15": 0.44625422, + "2024-04-12T11": 0.586271265, + "2024-04-17T06": 0.45683701, + "2024-04-13T00": 0.501551606743813, + "2024-04-18T03": 0.450681972, + "2024-04-13T08": 0.5047412880000001, + "2024-04-13T06": 0.5082473489999999, + "2024-04-15T04": 0.46165520099999996, + "2024-04-16T04": 0.452544242, + "2024-04-14T16": 0.45960109000000005, + "2024-04-16T07": 0.4722596, + "2024-04-18T05": 0.450109002, + "2024-04-13T02": 0.491622875, + "2024-04-15T09": 0.48946813496622565, + "2024-04-13T05": 0.5106480449999999, + "2024-04-15T17": 0.45673738, + "2024-04-16T16": 0.44182079999999996, + "2024-04-15T21": 0.45314496000000004, + "2024-04-12T17": 0.5292239839999999, + "2024-04-17T01": 0.45655517599999995, + "2024-04-14T21": 0.4451335, + "2024-04-15T07": 0.48943521, + "2024-04-18T12": 0.446547312, + "2024-04-15T22": 0.45729601200000003, + "2024-04-13T22": 0.44123901249222386, + "2024-04-15T08": 0.49315821100000007, + "2024-04-14T22": 0.4638314896385406, + "2024-04-17T19": 0.446373216, + "2024-04-12T07": 0.581688366, + "2024-04-12T18": 0.4696437266540544, + "2024-04-14T04": 0.45508650900000003, + "2024-04-16T17": 0.45291772799999996, + "2024-04-17T11": 0.450479124, + "2024-04-13T21": 0.4193498336428233, + "2024-04-13T09": 0.504841316, + "2024-04-14T08": 0.47423699999999996, + "2024-04-15T11": 0.487806792, + "2024-04-11T14": 0.579271035, + "2024-04-17T13": 0.44772375, + "2024-04-14T06": 0.46627028000000004, + "2024-04-13T19": 0.45780592000000003, + "2024-04-14T07": 0.469414297, + "2024-04-13T16": 0.49819961999999995, + "2024-04-15T10": 0.491781474, + "2024-04-12T06": 0.5822407540000001, + "2024-04-13T15": 0.50640126, + "2024-04-12T15": 0.563501186, + "2024-04-11T18": 0.580594194, + "2024-04-17T18": 0.451277435, + "2024-04-12T08": 0.5856644160000001, + "2024-04-18T06": 0.44306202, + "2024-04-17T04": 0.46216469400000004, + "2024-04-12T04": 0.590576765, + "2024-04-13T17": 0.47869572, + "2024-04-16T19": 0.44961687, + "2024-04-15T03": 0.46295325000000004, + "2024-04-17T21": 0.448764096, + "2024-04-13T18": 0.476757278, + "2024-04-13T10": 0.51257934, + "2024-04-16T11": 0.46236177000000006, + "2024-04-12T21": 0.4971101896116568, + "2024-04-14T00": 0.4421697547153752, + "2024-04-18T11": 0.45203557, + "2024-04-17T07": 0.456214025, + "2024-04-13T01": 0.493518416, + "2024-04-14T17": 0.44961571200000006, + "2024-04-16T03": 0.4581832, + "2024-04-13T12": 0.50995099, + "latest": 0.453361, + "2024-04-18T15": 0.45745146000000003, + "2024-04-19": 0.4582502704551432, + "2024-04-18T20": 0.4545544079999999, + "2024-04-18T19": 0.45292635, + "2024-04-19T01": 0.437722528, + "2024-04-19T03": 0.441126466, + "2024-04-18T21": 0.45695988000000004, + "2024-04-19T06": 0.45162642000000003, + "2024-04-18T18": 0.448710795, + "2024-04-18T16": 0.45452714999999994, + "2024-04-18T23": 0.45787850299999994, + "2024-04-19T04": 0.446507136, + "2024-04-19T05": 0.443319664, + "2024-04-19T00": 0.45590962199999996, + "2024-04-18T22": 0.45813740000000003, + "2024-04-18T17": 0.450756785, + "2024-04-19T02": 0.42833854699999996, + "2024-04-19T07": 0.45671415000000004, + "2024-04-19T08": 0.460397886, + "2024-04-19T09": 0.462303324, + "2024-04-19T10": 0.46379664000000004, + "2024-04-19T11": 0.46647839995120716, + "2024-04-19T12": 0.46900465500000005, + "2024-04-19T13": 0.472125542, + "2024-04-19T14": 0.470907108, + "2024-04-19T15": 0.47183108400000007, + "2024-04-20": 0.4879958387344453, + "2024-04-19T22": 0.47328450899999996, + "2024-04-19T23": 0.467091429, + "2024-04-19T20": 0.46965493499999994, + "2024-04-19T19": 0.471498994, + "2024-04-19T21": 0.471855661, + "2024-04-19T16": 0.468406008, + "2024-04-19T17": 0.47001610799999993, + "2024-04-20T00": 0.47048341699999996, + "2024-04-19T18": 0.469873789, + "2024-04-20T01": 0.475961772, + "2024-04-21": 0.5015831708741738, + "2024-04-20T16": 0.49014209999999997, + "2024-04-20T19": 0.5015504199999999, + "2024-04-20T15": 0.48712175, + "2024-04-20T02": 0.47936772000000005, + "2024-04-20T09": 0.486941172, + "2024-04-20T04": 0.48167333999999995, + "2024-04-20T10": 0.4835401859999999, + "2024-04-20T22": 0.503971292, + "2024-04-21T00": 0.5021807199999999, + "2024-04-20T12": 0.479000569, + "2024-04-21T04": 0.505112058, + "2024-04-20T05": 0.48728022699999995, + "2024-04-20T18": 0.5049275278610201, + "2024-04-20T11": 0.47810993999999996, + "2024-04-20T23": 0.50515655, + "2024-04-20T08": 0.49256249199999996, + "2024-04-20T13": 0.48070573200000005, + "2024-04-21T02": 0.5086881449999999, + "2024-04-21T01": 0.5056668149999999, + "2024-04-20T20": 0.5042512299999999, + "2024-04-20T03": 0.47756709, + "2024-04-20T14": 0.481315488, + "2024-04-20T07": 0.496568776, + "2024-04-20T17": 0.49987489500000004, + "2024-04-20T21": 0.50575168, + "2024-04-20T06": 0.49478794800000003, + "2024-04-21T03": 0.507918311, + "2024-04-21T16": 0.4933233000000001, + "2024-04-21T11": 0.504405903, + "2024-04-21T17": 0.4938086140000001, + "2024-04-21T08": 0.5040536795504807, + "2024-04-21T12": 0.5015002799999999, + "2024-04-21T15": 0.49786969200000003, + "2024-04-21T06": 0.507608034, + "2024-04-21T07": 0.50515655, + "2024-04-21T14": 0.49710934000000007, + "2024-04-21T13": 0.49892470000000005, + "2024-04-21T05": 0.5072129400000001, + "2024-04-21T10": 0.5005000799999999, + "2024-04-21T09": 0.50166048, + "2024-04-21T19": 0.49801493999999996, + "2024-04-21T22": 0.501160132, + "2024-04-21T23": 0.49929484799999996, + "2024-04-21T21": 0.502735189, + "2024-04-21T20": 0.49994999, + "2024-04-21T18": 0.49569912, + "2024-04-22": 0.511877941434516, + "2024-04-22T00": 0.500055, + "2024-04-22T07": 0.5087898449999999, + "2024-04-22T05": 0.511419816, + "2024-04-22T04": 0.509437511, + "2024-04-22T02": 0.49686955200000005, + "2024-04-22T01": 0.49915989199999994, + "2024-04-22T06": 0.5128562999999999, + "2024-04-22T03": 0.505745513, + "2024-04-22T08": 0.5077436, + "2024-04-22T09": 0.50819812, + "2024-04-22T10": 0.5112146200000001, + "2024-04-22T11": 0.510049802, + "2024-04-22T12": 0.51260496, + "2024-04-22T13": 0.5137694879999999, + "2024-04-22T14": 0.51400552, + "2024-04-22T15": 0.512061018, + "2024-04-22T16": 0.514552007, + "2024-04-23": 0.5103678755888312, + "2024-04-23T03": 0.511180995, + "2024-04-22T19": 0.516796308, + "2024-04-22T17": 0.517101591, + "2024-04-22T23": 0.51925573, + "2024-04-22T20": 0.5193505679999999, + "2024-04-22T21": 0.51925573, + "2024-04-22T18": 0.517617308, + "2024-04-23T06": 0.5146880639999999, + "2024-04-22T22": 0.52065615, + "2024-04-23T04": 0.50968017, + "2024-04-23T01": 0.517601786, + "2024-04-23T07": 0.5079284650000001, + "2024-04-23T00": 0.517401708, + "2024-04-23T05": 0.5118069, + "2024-04-23T02": 0.5153523990000001, + "2024-04-23T08": 0.5162703129999999, + "2024-04-23T09": 0.516680775, + "2024-04-23T10": 0.518322783, + "2024-04-23T11": 0.515742285, + "2024-04-23T12": 0.513289847, + "2024-04-23T13": 0.50720787, + "2024-04-23T14": 0.5116352439999999, + "2024-04-23T15": 0.50985291, + "2024-04-23T16": 0.506886156, + "2024-04-24": 0.500207879629093, + "2024-04-24T02": 0.5007374910633227, + "2024-04-24T00": 0.501830108, + "2024-04-24T01": 0.50455045, + "2024-04-23T23": 0.49973497899999997, + "2024-04-24T06": 0.506420256, + "2024-04-23T22": 0.5011103702456499, + "2024-04-23T18": 0.504015897, + "2024-04-23T20": 0.5041504099999999, + "2024-04-23T21": 0.502725135, + "2024-04-24T04": 0.5037, + "2024-04-24T05": 0.508135567, + "2024-04-24T03": 0.5011002699159341, + "2024-04-24T07": 0.5057949420000001, + "2024-04-23T19": 0.50320062, + "2024-04-23T17": 0.50632655, + "2024-04-24T08": 0.500864937, + "2024-04-24T09": 0.49699006, + "2024-04-24T10": 0.49625037000000005, + "2024-04-24T11": 0.497095029, + "2024-04-24T12": 0.49779502200000003, + "2024-04-24T13": 0.49305562099999994, + "2024-04-24T14": 0.481708458, + "2024-04-24T15": 0.47915071200000003, + "2024-04-25": 0.47504412962417236, + "2024-04-24T18": 0.477580212, + "2024-04-25T00": 0.4767615, + "2024-04-24T21": 0.47756502, + "2024-04-24T17": 0.478266320952372, + "2024-04-24T16": 0.475133776, + "2024-04-24T20": 0.47767927200000004, + "2024-04-24T23": 0.47253996, + "2024-04-24T22": 0.47471992, + "2024-04-24T19": 0.478755048, + "2024-04-25T01": 0.47720931299999997, + "2024-04-25T03": 0.47387675999999995, + "2024-04-25T06": 0.47709501600000004, + "2024-04-25T05": 0.47476702800000004, + "2024-04-25T04": 0.471382125, + "2024-04-25T02": 0.47490974999999996, + "2024-04-25T07": 0.473691026, + "2024-04-25T08": 0.470372965, + "2024-04-25T09": 0.4704059, + "2024-04-25T10": 0.46491165, + "2024-04-25T11": 0.46788300000000005, + "2024-04-25T12": 0.46891236000000003, + "2024-04-25T13": 0.465116106, + "2024-04-25T14": 0.469522818, + "2024-04-25T15": 0.4697414999999999, + "2024-04-25T16": 0.472311714, + "2024-04-25T17": 0.47209691099999995, + "2024-04-25T18": 0.47282971999999995, + "2024-04-25T19": 0.47350104600000004, + "2024-04-26": 0.47057883062344014, + "2024-04-25T22": 0.474081036, + "2024-04-25T21": 0.4773, + "2024-04-25T20": 0.47450062600000004, + "2024-04-26T01": 0.464813944, + "2024-04-25T23": 0.47065293, + "2024-04-26T00": 0.46789236000000006, + "2024-04-26T05": 0.476618961, + "2024-04-26T07": 0.4702, + "2024-04-26T02": 0.471381144, + "2024-04-26T03": 0.473385798, + "2024-04-26T04": 0.47474777199999996, + "2024-04-26T06": 0.4755, + "2024-04-26T08": 0.46970939399999995, + "2024-04-26T09": 0.46775322, + "2024-04-26T10": 0.467043948, + "2024-04-26T11": 0.468034466, + "2024-04-26T12": 0.47002008300000003, + "2024-04-26T13": 0.46790640000000006, + "2024-04-26T14": 0.47130100599999997, + "2024-04-26T15": 0.465069744, + "2024-04-26T21": 0.466531988, + "2024-04-26T22": 0.46235324460560395, + "2024-04-26T17": 0.46582758, + "2024-04-26T19": 0.466155447, + "2024-04-26T16": 0.46585088, + "2024-04-26T18": 0.46666462799999997, + "2024-04-26T20": 0.467455044, + "2024-04-27": 0.4636418447472156, + "2024-04-26T23": 0.462724098, + "2024-04-27T00": 0.45965746199999996, + "2024-04-27T01": 0.45098810454195093, + "2024-04-28": 0.4665700690399208, + "2024-04-27T13": 0.458801585, + "2024-04-28T00": 0.468281352, + "2024-04-27T20": 0.46418414, + "2024-04-27T23": 0.46668244000000003, + "2024-04-27T06": 0.457334592, + "2024-04-27T05": 0.459506926, + "2024-04-27T02": 0.455976853, + "2024-04-27T18": 0.46467915000000004, + "2024-04-27T07": 0.45602622, + "2024-04-27T04": 0.459837743, + "2024-04-27T21": 0.463988919, + "2024-04-27T09": 0.454508928, + "2024-04-27T14": 0.46010534399999997, + "2024-04-27T22": 0.464384004, + "2024-04-27T16": 0.4571889, + "2024-04-27T10": 0.45369582, + "2024-04-27T17": 0.46368912000000007, + "2024-04-27T08": 0.45422275500000003, + "2024-04-27T12": 0.455803535, + "2024-04-27T15": 0.45771604000000005, + "2024-04-27T11": 0.452519264, + "2024-04-27T03": 0.45958047799999996, + "2024-04-27T19": 0.46447464, + "2024-04-28T01": 0.47009423999999994, + "2024-04-28T20": 0.469026396, + "2024-04-28T14": 0.46917468799999995, + "2024-04-28T05": 0.47171208, + "2024-04-28T08": 0.47388228600000004, + "2024-04-28T16": 0.467917441, + "2024-04-28T11": 0.46823295500000006, + "2024-04-28T22": 0.46401432000000004, + "2024-04-28T03": 0.4757144, + "2024-04-28T13": 0.47078333999999994, + "2024-04-28T15": 0.467898717, + "2024-04-28T04": 0.472335344, + "2024-04-28T09": 0.47250213599999996, + "2024-04-28T19": 0.47002132399999996, + "2024-04-28T06": 0.474282018, + "2024-04-28T12": 0.468184536, + "2024-04-28T02": 0.471736483, + "2024-04-28T17": 0.4693122, + "2024-04-28T21": 0.46932628499999995, + "2024-04-28T18": 0.470221248, + "2024-04-28T07": 0.474900624, + "2024-04-28T10": 0.470536352, + "2024-04-29": 0.4542600056651164, + "2024-04-28T23": 0.460429578, + "2024-04-29T00": 0.46086631, + "2024-04-29T01": 0.46185216, + "2024-04-29T06": 0.44946404, + "2024-04-29T02": 0.458180842, + "2024-04-29T05": 0.454627248, + "2024-04-29T03": 0.45481356900000003, + "2024-04-29T04": 0.45490445, + "2024-04-29T07": 0.44996400000000003, + "2024-04-29T08": 0.449764016, + "2024-04-29T09": 0.451877405, + "2024-04-29T10": 0.454072754, + "2024-04-29T11": 0.45380922, + "2024-04-29T12": 0.45370016399999996, + "2024-04-29T13": 0.451591592, + "2024-04-29T14": 0.45692231, + "2024-04-29T15": 0.4571, + "2024-04-30": 0.4571728684042193, + "2024-04-30T04": 0.45606314000000003, + "2024-04-29T21": 0.451946286, + "2024-04-30T03": 0.457226188, + "2024-04-29T22": 0.45707135, + "2024-04-29T19": 0.451414844, + "2024-04-29T23": 0.457707682, + "2024-04-29T18": 0.45350474399999996, + "2024-04-30T00": 0.45938053, + "2024-04-29T20": 0.453391344, + "2024-04-30T01": 0.458943906, + "2024-04-30T02": 0.455435984, + "2024-04-29T16": 0.45497270000000006, + "2024-04-29T17": 0.454540902, + "2024-04-30T05": 0.454095534, + "2024-04-30T06": 0.45441819000000006, + "2024-04-30T07": 0.453522888, + "2024-04-30T08": 0.44422446899999996, + "2024-04-30T09": 0.441758592, + "2024-04-30T10": 0.438516666, + "2024-04-30T11": 0.43301338, + "2024-04-30T12": 0.430145092, + "2024-04-30T13": 0.42957109000000004, + "2024-04-30T14": 0.430901694, + "2024-04-30T15": 0.43418715999999996, + "2024-04-30T16": 0.433604948, + "2024-05-01": 0.4401433073876692, + "2024-04-30T22": 0.44133436800000003, + "2024-04-30T17": 0.435060388, + "2024-04-30T20": 0.437178324, + "2024-04-30T23": 0.4404591, + "2024-04-30T19": 0.432858034, + "2024-04-30T18": 0.433717992, + "2024-05-01T01": 0.439134024, + "2024-05-01T00": 0.440241672, + "2024-04-30T21": 0.439519068, + "2024-05-01T02": 0.438182334, + "2024-05-01T03": 0.43977164, + "2024-05-01T05": 0.44123449600000003, + "2024-05-01T04": 0.442295208, + "2024-05-01T06": 0.439836288, + "2024-05-01T07": 0.428067215, + "2024-05-01T08": 0.42126431400000003, + "2024-05-01T09": 0.429528888, + "2024-05-01T10": 0.430695496, + "2024-05-01T11": 0.432397836, + "2024-05-01T12": 0.438899084, + "2024-05-01T13": 0.43861806999999997, + "2024-05-01T15": 0.43478199300000003, + "2024-05-01T16": 0.433331591, + "2024-05-01T14": 0.43770921599999996, + "2024-05-01T21": 0.44894808, + "2024-05-01T20": 0.44283244800000005, + "2024-05-01T17": 0.432667164, + "2024-05-01T19": 0.444328512, + "2024-05-01T18": 0.44636372, + "2024-05-01T22": 0.44874387600000004, + "2024-05-02": 0.44955088395760584, + "2024-05-02T03": 0.4452543, + "2024-05-02T01": 0.44221303, + "2024-05-02T02": 0.44487696499999996, + "2024-05-01T23": 0.44935200000000003, + "2024-05-02T00": 0.44576890299999994, + "2024-05-02T04": 0.445305162, + "2024-05-02T06": 0.44367588, + "2024-05-02T07": 0.44438870999999996, + "2024-05-02T05": 0.443478295, + "2024-05-02T08": 0.445823418, + "2024-05-02T09": 0.448571112, + "2024-05-02T10": 0.45012888599999995, + "2024-05-02T11": 0.453936524, + "2024-05-02T12": 0.45526793400000004, + "2024-05-02T13": 0.45343651, + "2024-05-02T14": 0.454836314, + "2024-05-02T15": 0.458186254, + "2024-05-02T16": 0.45600456000000006, + "2024-05-02T17": 0.455909118, + "2024-05-03T04": 0.458404584, + "2024-05-03T02": 0.461164554, + "2024-05-03T03": 0.46105993, + "2024-05-03T05": 0.45353174500000004, + "2024-05-03T06": 0.452454288, + "2024-05-03T00": 0.45804121999999997, + "2024-05-03T07": 0.45244524, + "2024-05-03T01": 0.4600322, + "2024-05-03T08": 0.451804518, + "2024-05-03T09": 0.450749577, + "2024-05-03T10": 0.447835824, + "2024-05-03T11": 0.447695523, + "2024-05-03T12": 0.45547267, + "2024-05-03T13": 0.4613, + "2024-05-03T14": 0.46416961500000004, + "2024-05-03T15": 0.464997629, + "2024-05-03": 0.46090048093532954, + "2024-05-04": 0.4678158861499538, + "2024-05-04T05": 0.4675355459999999, + "2024-05-03T18": 0.465797797, + "2024-05-04T03": 0.4666026300000001, + "2024-05-03T17": 0.466944708, + "2024-05-03T21": 0.468438782, + "2024-05-03T20": 0.46951170783136187, + "2024-05-04T06": 0.466730648, + "2024-05-03T22": 0.467901111, + "2024-05-03T19": 0.46423923, + "2024-05-04T02": 0.46630256400000003, + "2024-05-03T16": 0.46762155, + "2024-05-04T01": 0.46845453899999995, + "2024-05-04T04": 0.467430844, + "2024-05-03T23": 0.468282559, + "2024-05-04T00": 0.46866397500000007, + "2024-05-04T13": 0.46867497599999997, + "2024-05-04T10": 0.47060941199999995, + "2024-05-04T12": 0.47014701000000003, + "2024-05-04T07": 0.46608388000000006, + "2024-05-04T11": 0.47164716, + "2024-05-04T09": 0.46807487999999997, + "2024-05-04T15": 0.46739346, + "2024-05-04T08": 0.46698871099999995, + "2024-05-04T14": 0.46729344, + "2024-05-05": 0.45839737794470636, + "2024-05-05T01": 0.454659098, + "2024-05-04T19": 0.4691234550000001, + "2024-05-04T20": 0.46901876, + "2024-05-05T05": 0.455859254, + "2024-05-05T07": 0.45834582999999995, + "2024-05-04T23": 0.46314631, + "2024-05-04T22": 0.46534653, + "2024-05-04T21": 0.466109322, + "2024-05-05T00": 0.46006900000000006, + "2024-05-05T08": 0.459850578, + "2024-05-04T17": 0.46842810399999996, + "2024-05-05T09": 0.45885505599999993, + "2024-05-05T10": 0.45736859500000004, + "2024-05-05T04": 0.45565922799999997, + "2024-05-04T16": 0.46787017000000003, + "2024-05-05T06": 0.45594559, + "2024-05-05T03": 0.454259046, + "2024-05-04T18": 0.469228152, + "2024-05-05T02": 0.455259176, + "2024-05-05T21": 0.459850578, + "2024-05-05T16": 0.464413932, + "2024-05-05T22": 0.45775492399999995, + "2024-05-05T17": 0.46174155299999997, + "2024-05-05T20": 0.4604514343194365, + "2024-05-05T13": 0.4576662491032271, + "2024-05-05T15": 0.46253237500000005, + "2024-05-05T12": 0.45667305599999997, + "2024-05-05T18": 0.458982602, + "2024-05-05T14": 0.45818703899999996, + "2024-05-05T19": 0.46037364799999997, + "2024-05-05T11": 0.45807327999999997, + "2024-05-05T23": 0.45834124699999995, + "2024-05-06T00": 0.460046, + "2024-05-06T02": 0.45774119299999994, + "2024-05-06T05": 0.46102305000000005, + "2024-05-06T06": 0.46340926799999993, + "2024-05-06T07": 0.46552793, + "2024-05-06T04": 0.45672740199999995, + "2024-05-06T01": 0.458877996, + "2024-05-06T03": 0.45632737799999995, + "2024-05-06T08": 0.4722, + "2024-05-06T09": 0.4722, + "2024-05-06T10": 0.4679, + "2024-05-06T11": 0.46543723200000003, + "2024-05-06T12": 0.45864586, + "2024-05-06T13": 0.459132137, + "2024-05-06T14": 0.45954595000000004, + "2024-05-06T15": 0.45422725199999997, + "2024-05-06T17": 0.459495405, + "2024-05-06T16": 0.45954595000000004, + "2024-05-06T18": 0.45954595000000004, + "2024-05-06": 0.4608695452063259, + "2024-05-07": 0.45367415706416425, + "2024-05-06T22": 0.456613698, + "2024-05-07T07": 0.449835984, + "2024-05-07T06": 0.447613428, + "2024-05-07T01": 0.45394552, + "2024-05-07T00": 0.453690926, + "2024-05-06T21": 0.458663304, + "2024-05-06T20": 0.460740096, + "2024-05-06T23": 0.45449545500000005, + "2024-05-07T04": 0.449982, + "2024-05-06T19": 0.45898164, + "2024-05-07T03": 0.44903256137473424, + "2024-05-07T02": 0.45491810000000005, + "2024-05-07T05": 0.4493329326383519, + "2024-05-07T08": 0.45370907399999993, + "2024-05-07T09": 0.4542, + "2024-05-07T10": 0.451218048, + "2024-05-07T11": 0.45022251, + "2024-05-07T12": 0.450304503, + "2024-05-07T13": 0.45104510000000003, + "2024-05-07T14": 0.45099549000000005, + "2024-05-07T15": 0.45444091500000006, + "2024-05-08": 0.4517813968190752, + "2024-05-09": 0.45664162475547687, + "2024-05-10": 0.46215071578913913, + "2024-05-09T13": 0.45082411, + "2024-05-10T00": 0.461635362, + "2024-05-08T08": 0.44145585, + "2024-05-09T14": 0.45176496000000005, + "2024-05-08T10": 0.4424469, + "2024-05-09T04": 0.460964788, + "2024-05-10T01": 0.4639536, + "2024-05-08T03": 0.444046708, + "2024-05-09T07": 0.455567542, + "2024-05-09T11": 0.44922024000000005, + "2024-05-09T00": 0.459107094, + "2024-05-09T01": 0.461896676, + "2024-05-10T06": 0.464839563, + "2024-05-09T19": 0.460244764, + "2024-05-10T05": 0.46443961500000003, + "2024-05-10T02": 0.46435820399999994, + "2024-05-09T23": 0.462739836, + "2024-05-09T06": 0.458961216, + "2024-05-08T01": 0.44235576000000004, + "2024-05-09T09": 0.45377300000000004, + "2024-05-09T20": 0.459667821, + "2024-05-08T19": 0.46407930799999997, + "2024-05-09T03": 0.461664431, + "2024-05-08T21": 0.456076826, + "2024-05-09T22": 0.460517092, + "2024-05-08T17": 0.46050327399999996, + "2024-05-09T05": 0.45955630599999997, + "2024-05-08T06": 0.440325132, + "2024-05-08T15": 0.46090319, + "2024-05-10T08": 0.464344272, + "2024-05-08T07": 0.439407705, + "2024-05-08T04": 0.442146936, + "2024-05-09T15": 0.454986056, + "2024-05-08T18": 0.46299348700000004, + "2024-05-09T10": 0.450652005, + "2024-05-09T21": 0.45832207199999997, + "2024-05-10T03": 0.465562752, + "2024-05-08T00": 0.44099559000000005, + "2024-05-10T07": 0.466534676, + "2024-05-08T14": 0.451659942, + "2024-05-09T17": 0.45626764399999997, + "2024-05-08T13": 0.440494256, + "2024-05-08T05": 0.44192486, + "2024-05-09T18": 0.45746272000000004, + "2024-05-09T08": 0.45396835799999996, + "2024-05-08T20": 0.45812668799999995, + "2024-05-08T22": 0.454059198, + "2024-05-08T11": 0.440264776, + "2024-05-09T12": 0.453000592, + "2024-05-08T02": 0.443742306, + "2024-05-10T04": 0.466134732, + "2024-05-08T12": 0.438151798, + "2024-05-09T02": 0.461659812, + "2024-05-08T09": 0.440851501, + "2024-05-09T16": 0.45664012, + "2024-05-08T16": 0.46347019200000006, + "2024-05-08T23": 0.45281427, + "2024-05-10T09": 0.463144416, + "2024-05-10T10": 0.46273520799999995, + "2024-05-10T11": 0.463235138, + "2024-05-10T12": 0.46473307663128016, + "2024-05-10T13": 0.46285833899999995, + "2024-05-10T14": 0.45432275200000005, + "2024-05-11": 0.4435563031648539, + "2024-05-12": 0.43986602760605054, + "2024-05-12T16": 0.44196812111454264, + "2024-05-11T03": 0.446361585, + "2024-05-10T17": 0.4448665, + "2024-05-11T16": 0.44342256, + "2024-05-10T15": 0.449319108, + "2024-05-11T04": 0.446179499, + "2024-05-11T12": 0.44320047, + "2024-05-12T15": 0.44152332, + "2024-05-11T11": 0.44210538800000004, + "2024-05-12T04": 0.441019108, + "2024-05-12T11": 0.440366482, + "2024-05-11T22": 0.43890342, + "2024-05-11T21": 0.438803442, + "2024-05-10T21": 0.44736575, + "2024-05-10T23": 0.448292384, + "2024-05-12T00": 0.43926818, + "2024-05-12T03": 0.44032380000000004, + "2024-05-12T12": 0.440266535, + "2024-05-11T08": 0.44668383199999995, + "2024-05-11T17": 0.442449516, + "2024-05-12T19": 0.437733598, + "2024-05-11T23": 0.439485704, + "2024-05-11T05": 0.446079526, + "2024-05-12T02": 0.4397353789381203, + "2024-05-11T02": 0.446974812, + "2024-05-10T16": 0.44685696, + "2024-05-12T14": 0.441701145, + "2024-05-11T09": 0.44477542800000003, + "2024-05-10T18": 0.44656599, + "2024-05-10T19": 0.44858457599999996, + "2024-05-11T06": 0.447283676, + "2024-05-12T08": 0.43814221200000003, + "2024-05-10T20": 0.446143795, + "2024-05-11T18": 0.44052372, + "2024-05-12T05": 0.44082360000000004, + "2024-05-12T06": 0.44012388, + "2024-05-11T20": 0.43964607000000006, + "2024-05-12T09": 0.43782042, + "2024-05-11T01": 0.449096684, + "2024-05-11T00": 0.44779698300000004, + "2024-05-12T07": 0.437946665, + "2024-05-12T10": 0.44070600400000004, + "2024-05-11T10": 0.442909467, + "2024-05-12T01": 0.43942416, + "2024-05-12T18": 0.43904628, + "2024-05-12T13": 0.441692307, + "2024-05-11T19": 0.44072364, + "2024-05-12T17": 0.4399470218309881, + "2024-05-11T14": 0.44314041200000004, + "2024-05-11T07": 0.448378905, + "2024-05-11T15": 0.44360472799999995, + "2024-05-11T13": 0.44381796, + "2024-05-10T22": 0.44628840000000003, + "2024-05-13": 0.4420066648159244, + "2024-05-12T21": 0.435656186, + "2024-05-13T00": 0.43888484099999997, + "2024-05-13T03": 0.42788016, + "2024-05-12T23": 0.437594234, + "2024-05-13T04": 0.427384575, + "2024-05-13T01": 0.43444789, + "2024-05-13T05": 0.42658052400000007, + "2024-05-13T02": 0.429366855, + "2024-05-13T07": 0.441463104, + "2024-05-13T06": 0.43937694000000005, + "2024-05-12T22": 0.43631230499999996, + "2024-05-12T20": 0.437433712, + "2024-05-13T08": 0.446712302, + "2024-05-13T10": 0.44842056, + "2024-05-13T09": 0.45140581199999996, + "2024-05-13T11": 0.44704795199999997, + "2024-05-13T12": 0.44383128, + "2024-05-13T13": 0.445735017, + "2024-05-13T14": 0.445175316, + "2024-05-13T15": 0.445093152, + "2024-05-13T16": 0.4469106, + "2024-05-14": 0.4338032488122894, + "2024-05-13T17": 0.442815849, + "2024-05-14T01": 0.43611276, + "2024-05-14T02": 0.434282712, + "2024-05-14T06": 0.431475516, + "2024-05-13T19": 0.44173621950319836, + "2024-05-13T22": 0.43705629, + "2024-05-14T04": 0.435664614, + "2024-05-13T21": 0.43987360600000003, + "2024-05-14T03": 0.4347738, + "2024-05-14T00": 0.435517236, + "2024-05-14T07": 0.43576892, + "2024-05-13T20": 0.44077796, + "2024-05-14T05": 0.437155056, + "2024-05-13T23": 0.440316324, + "2024-05-13T18": 0.440816229, + "2024-05-14T08": 0.43677713, + "2024-05-14T09": 0.436090576, + "2024-05-14T10": 0.434395738, + "2024-05-14T11": 0.43377432, + "2024-05-14T12": 0.432431726, + "2024-05-14T13": 0.432631602, + "2024-05-14T14": 0.431228155, + "2024-05-14T15": 0.43453912, + "2024-05-14T16": 0.43396118999999994, + "2024-05-14T17": 0.43064146, + "2024-05-14T18": 0.43128924799999996, + "2024-05-14T19": 0.43144098, + "2024-05-14T20": 0.430593216, + "2024-05-15": 0.4440715785620487, + "2024-05-15T02": 0.429637761, + "2024-05-15T01": 0.42873831, + "2024-05-14T21": 0.42916262400000005, + "2024-05-15T05": 0.42820722, + "2024-05-15T00": 0.427873107, + "2024-05-15T06": 0.42800731000000003, + "2024-05-15T03": 0.4298420561960901, + "2024-05-15T07": 0.42986441620395005, + "2024-05-14T23": 0.42731189999999997, + "2024-05-15T04": 0.4294943688950563, + "2024-05-14T22": 0.426933431, + "2024-05-15T08": 0.43166614200000003, + "2024-05-15T09": 0.43313068799999993, + "2024-05-15T10": 0.43395226, + "2024-05-15T11": 0.43043972999999996, + "2024-05-15T12": 0.43835177599999997, + "2024-05-15T13": 0.44368225199999994, + "2024-05-15T14": 0.444291114, + "2024-05-15T15": 0.446193681, + "2024-05-15T18": 0.44791041899999995, + "2024-05-15T19": 0.449974317, + "2024-05-15T17": 0.447398406, + "2024-05-15T16": 0.44693404, + "2024-05-16": 0.4528779031573497, + "2024-05-16T04": 0.46019662100000003, + "2024-05-16T06": 0.46034602999999996, + "2024-05-15T22": 0.45242609999999994, + "2024-05-16T07": 0.4577, + "2024-05-16T03": 0.45747775799999996, + "2024-05-16T05": 0.459678132, + "2024-05-15T21": 0.453226088, + "2024-05-16T02": 0.45569567600000005, + "2024-05-16T00": 0.45405886500000003, + "2024-05-15T23": 0.452681, + "2024-05-15T20": 0.453039525, + "2024-05-16T01": 0.45620034200000004, + "2024-05-16T08": 0.456295437, + "2024-05-16T09": 0.455440785, + "2024-05-16T10": 0.455263576, + "2024-05-16T11": 0.4550637, + "2024-05-16T12": 0.45289056, + "2024-05-16T13": 0.45310872, + "2024-05-16T14": 0.45313137, + "2024-05-16T15": 0.453381594, + "2024-05-17": 0.45958204879956466, + "2024-05-17T00": 0.458195418, + "2024-05-16T23": 0.45993679200000004, + "2024-05-16T22": 0.45953676000000004, + "2024-05-16T17": 0.454868157, + "2024-05-16T20": 0.456431948, + "2024-05-16T18": 0.455672658, + "2024-05-16T21": 0.457236576, + "2024-05-17T01": 0.457227432, + "2024-05-16T19": 0.4586, + "2024-05-17T03": 0.45993679200000004, + "2024-05-17T02": 0.458827528, + "2024-05-16T16": 0.457382314, + "2024-05-17T06": 0.46444643999999996, + "2024-05-17T04": 0.46384638, + "2024-05-17T07": 0.47503324999999996, + "2024-05-17T05": 0.46414641, + "2024-05-17T08": 0.48095770799999993, + "2024-05-17T09": 0.48095770799999993, + "2024-05-18": 0.4823164256125398, + "2024-05-19": 0.47472487623988996, + "2024-05-20": 0.4702279969988603, + "2024-05-21": 0.5012991178092133, + "2024-05-20T04": 0.474962, + "2024-05-18T11": 0.48399677999999996, + "2024-05-18T17": 0.48307245000000004, + "2024-05-20T15": 0.4673825758907097, + "2024-05-20T16": 0.4699, + "2024-05-19T00": 0.480886544, + "2024-05-18T18": 0.48345800799999994, + "2024-05-21T06": 0.499585012, + "2024-05-20T23": 0.50014, + "2024-05-18T13": 0.47813384000000003, + "2024-05-19T17": 0.46675133700000004, + "2024-05-20T11": 0.46828595100000003, + "2024-05-21T07": 0.499880004, + "2024-05-21T05": 0.496585102, + "2024-05-19T23": 0.467657907, + "2024-05-19T13": 0.47144714, + "2024-05-18T06": 0.48165614286939323, + "2024-05-19T07": 0.479643164, + "2024-05-18T14": 0.47771462400000003, + "2024-05-18T21": 0.48209157999999996, + "2024-05-18T20": 0.48328697600000003, + "2024-05-20T18": 0.46970188499999993, + "2024-05-20T17": 0.4697890755558518, + "2024-05-20T00": 0.467076645, + "2024-05-18T01": 0.4808576562031015, + "2024-05-20T10": 0.468248487, + "2024-05-18T12": 0.480553728, + "2024-05-18T09": 0.4830917699999999, + "2024-05-20T21": 0.48922493999999994, + "2024-05-18T16": 0.48299658, + "2024-05-20T06": 0.468318732, + "2024-05-20T03": 0.47065293, + "2024-05-18T03": 0.4837427194525768, + "2024-05-19T01": 0.479886364, + "2024-05-18T02": 0.48213977999999996, + "2024-05-19T06": 0.47803345999999997, + "2024-05-21T00": 0.506760804, + "2024-05-20T12": 0.46589068199999994, + "2024-05-19T12": 0.47334733, + "2024-05-18T04": 0.48464050499999994, + "2024-05-18T10": 0.48499697999999997, + "2024-05-20T07": 0.46538138399999995, + "2024-05-19T22": 0.469667121, + "2024-05-19T20": 0.4699859, + "2024-05-19T14": 0.47185189800000005, + "2024-05-18T15": 0.480548924, + "2024-05-19T21": 0.46649533500000007, + "2024-05-19T02": 0.48058649000000003, + "2024-05-19T11": 0.47544278599999995, + "2024-05-20T05": 0.476690466, + "2024-05-19T09": 0.47574757, + "2024-05-20T14": 0.46541396199999996, + "2024-05-21T02": 0.500325015, + "2024-05-18T19": 0.48348701200000005, + "2024-05-18T00": 0.48037767400000003, + "2024-05-21T10": 0.502964163, + "2024-05-18T22": 0.4822867960000001, + "2024-05-19T16": 0.46795614799999996, + "2024-05-20T02": 0.46838639366061846, + "2024-05-18T05": 0.4835401859999999, + "2024-05-21T08": 0.5025314873836794, + "2024-05-20T19": 0.484737405, + "2024-05-18T08": 0.48222534599999994, + "2024-05-21T01": 0.500855088, + "2024-05-18T07": 0.48110101, + "2024-05-20T13": 0.46600932, + "2024-05-19T18": 0.467737416, + "2024-05-20T20": 0.48926406, + "2024-05-19T04": 0.48145295400000004, + "2024-05-20T01": 0.46449535500000005, + "2024-05-20T08": 0.46777661, + "2024-05-20T22": 0.49719382999999995, + "2024-05-21T04": 0.49949934778438987, + "2024-05-19T15": 0.47025172200000004, + "2024-05-19T10": 0.47782866799999996, + "2024-05-19T05": 0.48023361400000003, + "2024-05-21T09": 0.50229952, + "2024-05-19T03": 0.48275792399999995, + "2024-05-19T19": 0.468895311, + "2024-05-21T03": 0.4992, + "2024-05-18T23": 0.481693087773101, + "2024-05-19T08": 0.47794779, + "2024-05-20T09": 0.46805319, + "2024-05-21T11": 0.502340752797734, + "2024-05-26": 0.45935490218661024, + "2024-05-25": 0.4607071822532208, + "2024-05-28": 0.4678710271480706, + "2024-05-24": 0.4607189195792869, + "2024-05-27": 0.4642770559547296, + "2024-05-23": 0.46982175666638454, + "2024-05-22": 0.48393949314046963, + "2024-05-22T20": 0.481642196, + "2024-05-25T08": 0.462619508, + "2024-05-22T05": 0.486792882, + "2024-05-28T03": 0.460535889, + "2024-05-22T16": 0.4823842, + "2024-05-25T05": 0.46371444, + "2024-05-24T22": 0.458535796, + "2024-05-27T14": 0.46596426399999996, + "2024-05-22T03": 0.49199665899999995, + "2024-05-23T17": 0.463861134, + "2024-05-24T23": 0.458717416, + "2024-05-26T19": 0.458552248, + "2024-05-26T18": 0.458061684, + "2024-05-26T10": 0.460029726, + "2024-05-27T16": 0.473131136, + "2024-05-24T12": 0.46285918800000003, + "2024-05-26T01": 0.46175382, + "2024-05-23T07": 0.48490402800000004, + "2024-05-22T08": 0.48930212, + "2024-05-23T09": 0.483140511, + "2024-05-24T18": 0.46176900000000004, + "2024-05-23T01": 0.48275366999999997, + "2024-05-25T15": 0.46055394, + "2024-05-23T16": 0.46467915000000004, + "2024-05-25T03": 0.46121082599999996, + "2024-05-28T06": 0.456298104, + "2024-05-25T23": 0.46192146, + "2024-05-24T13": 0.46062345999999993, + "2024-05-26T03": 0.45924947699999996, + "2024-05-26T00": 0.461539992, + "2024-05-25T06": 0.462419586, + "2024-05-27T04": 0.462354822, + "2024-05-22T10": 0.48689286, + "2024-05-27T09": 0.459315048, + "2024-05-24T17": 0.457507766, + "2024-05-26T16": 0.459207052, + "2024-05-22T09": 0.48610628658994665, + "2024-05-24T21": 0.458658717, + "2024-05-25T04": 0.4628148, + "2024-05-27T22": 0.465624578, + "2024-05-27T11": 0.460614242, + "2024-05-23T21": 0.46205319999999994, + "2024-05-23T10": 0.47843249000000004, + "2024-05-23T14": 0.468670239, + "2024-05-27T02": 0.46322653500000005, + "2024-05-25T18": 0.459585075, + "2024-05-27T05": 0.45957929599999997, + "2024-05-22T23": 0.48318247000000003, + "2024-05-28T01": 0.46402847999999997, + "2024-05-22T04": 0.485368915, + "2024-05-22T15": 0.482659988, + "2024-05-24T03": 0.467108407, + "2024-05-24T08": 0.457967151, + "2024-05-24T02": 0.465523034, + "2024-05-26T07": 0.460929393, + "2024-05-27T07": 0.45772978000000003, + "2024-05-25T22": 0.460317128, + "2024-05-24T16": 0.456408228, + "2024-05-27T20": 0.46682335399999997, + "2024-05-22T02": 0.492811278, + "2024-05-24T06": 0.45829826, + "2024-05-24T11": 0.4622225, + "2024-05-25T21": 0.45990800000000004, + "2024-05-27T15": 0.468296918, + "2024-05-22T19": 0.481198927, + "2024-05-23T20": 0.44996227499999997, + "2024-05-23T08": 0.48421898999999996, + "2024-05-22T22": 0.48320664, + "2024-05-26T11": 0.46159219, + "2024-05-24T01": 0.46671324000000003, + "2024-05-23T05": 0.48509905200000003, + "2024-05-28T04": 0.45556719300000004, + "2024-05-25T09": 0.46323317599999997, + "2024-05-27T18": 0.470024795, + "2024-05-24T10": 0.46176438000000003, + "2024-05-25T19": 0.459385125, + "2024-05-24T07": 0.459271368, + "2024-05-26T04": 0.458580738, + "2024-05-26T09": 0.45791676000000003, + "2024-05-23T02": 0.483148632, + "2024-05-27T06": 0.458080016, + "2024-05-28T08": 0.45590029211319233, + "2024-05-24T15": 0.46076950000000005, + "2024-05-25T20": 0.459585075, + "2024-05-27T08": 0.46032364, + "2024-05-23T22": 0.464112072, + "2024-05-26T15": 0.46062345999999993, + "2024-05-24T20": 0.45905409, + "2024-05-25T13": 0.45923569799999997, + "2024-05-22T01": 0.49299604355873206, + "2024-05-25T17": 0.459798822, + "2024-05-27T10": 0.459419583, + "2024-05-24T19": 0.45975743099999994, + "2024-05-26T02": 0.45924947699999996, + "2024-05-27T19": 0.465329542, + "2024-05-25T11": 0.46283056499999997, + "2024-05-27T17": 0.47161373700000003, + "2024-05-26T06": 0.459443736, + "2024-05-23T00": 0.48424321499999995, + "2024-05-22T12": 0.47841865499999997, + "2024-05-22T00": 0.49361113400000006, + "2024-05-24T05": 0.46214567999999995, + "2024-05-23T15": 0.46826260799999997, + "2024-05-22T13": 0.47795422917910885, + "2024-05-23T04": 0.48599849400000006, + "2024-05-26T08": 0.461406128, + "2024-05-26T13": 0.458553216, + "2024-05-28T05": 0.45554895700000003, + "2024-05-22T18": 0.47894252, + "2024-05-22T06": 0.491291892, + "2024-05-22T17": 0.48342263999999996, + "2024-05-23T19": 0.45977661599999997, + "2024-05-25T07": 0.46181982000000005, + "2024-05-26T22": 0.459406968, + "2024-05-25T16": 0.45973562799999995, + "2024-05-26T05": 0.45856239, + "2024-05-24T04": 0.46723820000000005, + "2024-05-25T12": 0.460567758, + "2024-05-28T07": 0.455426244, + "2024-05-23T18": 0.457375033, + "2024-05-26T23": 0.45917948799999997, + "2024-05-24T09": 0.45989295500000005, + "2024-05-23T03": 0.48487491600000004, + "2024-05-26T14": 0.460420366, + "2024-05-22T14": 0.480170319, + "2024-05-25T14": 0.458367912, + "2024-05-25T00": 0.459094384, + "2024-05-23T23": 0.464495532, + "2024-05-23T13": 0.46693651500000005, + "2024-05-22T11": 0.48481271800000003, + "2024-05-28T00": 0.46692616, + "2024-05-27T23": 0.467806712, + "2024-05-28T02": 0.461258416, + "2024-05-26T21": 0.45667155, + "2024-05-26T12": 0.460052736, + "2024-05-23T06": 0.483395269, + "2024-05-22T07": 0.490311728, + "2024-05-27T12": 0.46127688, + "2024-05-22T21": 0.479622474, + "2024-05-24T00": 0.465690345, + "2024-05-25T02": 0.46089858, + "2024-05-27T00": 0.4591703, + "2024-05-26T20": 0.457920498, + "2024-05-26T17": 0.458352356, + "2024-05-27T13": 0.464107428, + "2024-05-23T12": 0.47646641700000003, + "2024-05-25T10": 0.463574801, + "2024-05-23T11": 0.48145915000000006, + "2024-05-24T14": 0.459973187, + "2024-05-25T01": 0.46040790000000004, + "2024-05-27T21": 0.466927926, + "2024-05-27T03": 0.462526948, + "2024-05-27T01": 0.461473767, + "2024-05-28T09": 0.45752826, + "2024-05-28T10": 0.459753606, + "2024-05-28T11": 0.45953540000000004, + "2024-05-28T12": 0.458836107, + "2024-05-28T13": 0.45614340000000003, + "2024-05-28T14": 0.45454954999999997, + "2024-05-28T15": 0.45507183, + "2024-05-29": 0.45905560484863395, + "2024-05-28T20": 0.457750964, + "2024-05-28T22": 0.45747873199999994, + "2024-05-28T21": 0.457499889, + "2024-05-28T19": 0.456837398, + "2024-05-29T02": 0.459331004, + "2024-05-28T17": 0.4571424, + "2024-05-28T18": 0.453732125, + "2024-05-28T23": 0.456860992, + "2024-05-29T00": 0.457359678, + "2024-05-29T01": 0.458045094, + "2024-05-28T16": 0.45671994, + "2024-05-29T06": 0.46263952799999997, + "2024-05-29T05": 0.46245366000000004, + "2024-05-29T03": 0.46051134000000005, + "2024-05-29T07": 0.46050212, + "2024-05-29T04": 0.46244903000000004, + "2024-05-29T08": 0.4570425, + "2024-05-29T09": 0.461175328, + "2024-05-29T10": 0.462450987, + "2024-05-29T11": 0.462042125, + "2024-05-29T12": 0.46045292699999996, + "2024-05-29T13": 0.4596412, + "2024-05-29T14": 0.45965960000000006, + "2024-05-29T15": 0.45670752000000003, + "2024-05-29T18": 0.45396377600000004, + "2024-05-29T17": 0.45479031999999997, + "2024-05-29T23": 0.45125783999999997, + "2024-05-29T19": 0.45365498200000004, + "2024-05-29T22": 0.45249717, + "2024-05-29T20": 0.451388862, + "2024-05-29T16": 0.452787361, + "2024-05-29T21": 0.451344664537953, + "2024-05-30": 0.4499678097363231, + "2024-05-30T00": 0.451539396, + "2024-05-30T05": 0.451252817, + "2024-05-30T02": 0.453850176, + "2024-05-30T01": 0.45170826394339625, + "2024-05-30T06": 0.44694216, + "2024-05-30T07": 0.44637612827616835, + "2024-05-30T03": 0.4534552, + "2024-05-30T04": 0.45355962099999997, + "2024-05-30T08": 0.44713156, + "2024-05-30T09": 0.45012976, + "2024-05-30T10": 0.450670041, + "2024-05-30T11": 0.449235824, + "2024-05-30T12": 0.44884063999999996, + "2024-05-30T13": 0.45062946, + "2024-05-30T14": 0.449793, + "2024-05-30T15": 0.44862048, + "2024-05-30T21": 0.44621074, + "2024-05-30T20": 0.448514766, + "2024-05-30T18": 0.45308216799999995, + "2024-05-30T22": 0.44784320000000005, + "2024-05-30T16": 0.45053774799999996, + "2024-05-30T17": 0.45257676971804867, + "2024-05-30T19": 0.45241855000000003, + "2024-05-31": 0.44837062991185317, + "2024-05-30T23": 0.44664362, + "2024-05-31T03": 0.44898438399999996, + "2024-05-31T07": 0.44826548000000005, + "2024-05-31T06": 0.44806554, + "2024-05-31T04": 0.44909332199999996, + "2024-05-31T02": 0.44831163, + "2024-05-31T05": 0.446716771, + "2024-05-31T00": 0.44537526000000005, + "2024-05-31T01": 0.448692288, + "2024-05-31T08": 0.448456448, + "2024-05-31T09": 0.447747714, + "2024-05-31T10": 0.44883054, + "2024-05-31T11": 0.449925378, + "2024-05-31T12": 0.45352318199999997, + "2024-05-31T13": 0.453418706, + "2024-05-31T14": 0.45074293000000004, + "2024-06-01": 0.4471168112838917, + "2024-06-01T08": 0.44792791099999996, + "2024-06-01T02": 0.445749338, + "2024-06-01T05": 0.448549858, + "2024-05-31T21": 0.448574553, + "2024-06-01T00": 0.44604457, + "2024-05-31T18": 0.44741626800000006, + "2024-05-31T15": 0.449926251, + "2024-05-31T23": 0.447447621, + "2024-05-31T22": 0.44828387999999997, + "2024-06-01T01": 0.44544964100000006, + "2024-06-01T07": 0.448441667050632, + "2024-06-01T04": 0.44745519399999995, + "2024-05-31T19": 0.447508508, + "2024-06-01T06": 0.44874521100000003, + "2024-05-31T20": 0.449273734, + "2024-05-31T17": 0.447437282, + "2024-05-31T16": 0.445338983, + "2024-06-01T03": 0.447142, + "2024-06-01T09": 0.447510327, + "2024-06-01T10": 0.44750584800000004, + "2024-06-02": 0.4498328876062046, + "2024-06-01T13": 0.44919536, + "2024-06-01T15": 0.449046005, + "2024-06-01T18": 0.449199856, + "2024-06-01T12": 0.44840954399999994, + "2024-06-01T21": 0.450798432, + "2024-06-01T20": 0.44949958900000003, + "2024-06-02T01": 0.4516384, + "2024-06-01T17": 0.44874072, + "2024-06-01T11": 0.448205232, + "2024-06-02T00": 0.45033944, + "2024-06-01T23": 0.45062567000000003, + "2024-06-01T14": 0.4495095, + "2024-06-01T22": 0.45190649899999996, + "2024-06-01T19": 0.448700301, + "2024-06-01T16": 0.44869131900000003, + "2024-06-02T13": 0.45047542399999996, + "2024-06-02T11": 0.45028007400000003, + "2024-06-02T07": 0.451933637, + "2024-06-02T05": 0.45281931200000003, + "2024-06-02T08": 0.452274128, + "2024-06-02T04": 0.452233394, + "2024-06-02T10": 0.448867592, + "2024-06-02T12": 0.451379293, + "2024-06-02T02": 0.45132057200000003, + "2024-06-02T16": 0.44903598600000005, + "2024-06-02T17": 0.445810035, + "2024-06-02T03": 0.451515885, + "2024-06-02T09": 0.448967518, + "2024-06-02T15": 0.450825504, + "2024-06-02T06": 0.452914695, + "2024-06-02T18": 0.44272977, + "2024-06-02T14": 0.451370259, + "2024-06-03": 0.4463838847003557, + "2024-06-03T01": 0.448894544, + "2024-06-02T20": 0.44364253800000003, + "2024-06-03T00": 0.444655305, + "2024-06-02T21": 0.4456650961672897, + "2024-06-02T23": 0.44655872799999996, + "2024-06-02T19": 0.44333827600000003, + "2024-06-02T22": 0.44595905199999997, + "2024-06-03T02": 0.45104339400000004, + "2024-06-03T05": 0.45112916000000003, + "2024-06-03T06": 0.45310982400000005, + "2024-06-03T04": 0.449339232, + "2024-06-03T03": 0.44973450000000004, + "2024-06-03T07": 0.45310982400000005 + }, + "USD polkadot": { + "2023-07-30": 5.229465877446029, + "2023-07-27": 5.261180849807813, + "2023-07-10": 5.083184955055046, + "2023-08-20": 4.498952168168503, + "2024-02-23": 7.418564137332878, + "2024-04-05": 8.33301093110789, + "2023-12-19": 6.86088188581599, + "2023-08-06": 4.995152583291947, + "2023-12-02": 5.484138109487257, + "2023-10-12": 3.670459353870996, + "2023-10-31": 4.455191719073222, + "2023-08-29": 4.643954631682212, + "2023-06-20": 4.494511854904371, + "2023-09-09": 4.255017825596273, + "2023-06-26": 5.158740680114167, + "2023-05-03": 5.676199623527474, + "2023-10-23": 4.034302006849029, + "2023-10-01": 4.184268243683246, + "2024-03-07": 10.437873454452836, + "2023-07-05": 5.223148577871981, + "2023-07-29": 5.23843603753826, + "2024-01-08": 7.023000137999833, + "2023-05-29": 5.473930085999214, + "2023-10-07": 4.081247403103095, + "2023-09-26": 4.024720869800001, + "2023-08-24": 4.455698894170214, + "2023-12-05": 5.645703746937638, + "2023-05-10": 5.379319796791941, + "2024-02-19": 7.797384828035982, + "2024-01-07": 7.185726940529622, + "2023-10-18": 3.6743481702954126, + "2023-04-25": 5.863583427918485, + "2023-07-31": 5.1620163803294625, + "2023-05-23": 5.3820854567536465, + "2023-08-25": 4.446999843939209, + "2024-03-09": 10.690261420495181, + "2023-07-12": 5.242429597715052, + "2023-09-05": 4.2544883338451065, + "2023-06-07": 5.105126980198794, + "2023-09-16": 4.171490920864587, + "2023-08-12": 5.0213273164326235, + "2023-05-09": 5.341172805318899, + "2023-09-01": 4.252913332835013, + "2023-09-08": 4.242268691023254, + "2024-03-22": 9.019402982493972, + "2023-08-10": 5.008119929957948, + "2023-12-07": 6.109327781456544, + "2023-11-18": 5.173433614005934, + "2023-07-13": 5.355632726154713, + "2023-04-30": 6.010956014273088, + "2023-06-06": 5.080618453875546, + "2023-09-13": 4.0055016737767115, + "2023-06-17": 4.519368386277425, + "2023-07-17": 5.292839020440426, + "2023-07-07": 5.105928066997065, + "2023-09-07": 4.262134900757646, + "2024-02-22": 7.530341690464259, + "2024-04-15": 6.811355400075343, + "2023-12-30": 8.332498601531572, + "2023-09-17": 4.125088441008973, + "2023-04-20": 6.347666638730071, + "2024-03-26": 9.845853257164107, + "2023-04-27": 5.936249301103719, + "2024-04-17": 6.619996899152916, + "2024-02-12": 7.148665187581995, + "2023-10-26": 4.30290713045278, + "2024-01-03": 7.7229880588123745, + "2023-06-01": 5.2302048282965945, + "2024-01-22": 6.5590277268336, + "2023-06-12": 4.510954243267917, + "2023-10-03": 4.118039389359552, + "2023-06-19": 4.522608076645082, + "2023-07-09": 5.10751954095337, + "2023-12-24": 8.823648765507157, + "2023-09-24": 4.02494091063072, + "2024-01-16": 7.525630324460214, + "2023-10-17": 3.7206756093971065, + "2024-03-18": 9.977309315904822, + "2024-02-17": 7.564828363932483, + "2023-12-27": 8.802374463806972, + "2023-07-23": 5.411141003943085, + "2023-09-03": 4.271000177524187, + "2024-02-24": 7.765425252961439, + "2024-01-06": 7.194275536548072, + "2024-03-20": 9.062041607805483, + "2023-11-21": 5.151585313659906, + "2023-12-25": 9.149507156208006, + "2023-09-22": 4.0174323993151315, + "2023-10-02": 4.240604838018363, + "2024-03-27": 9.530620275925159, + "2023-04-28": 5.918340507407042, + "2023-08-04": 4.989695865814147, + "2023-08-30": 4.5803978755026575, + "2023-04-24": 5.926552294944643, + "2023-10-06": 4.048897467923469, + "2023-10-13": 3.6871838843237428, + "2023-06-28": 4.993059683073883, + "2024-02-05": 6.813128792038786, + "2024-03-01": 8.41312640343226, + "2023-07-15": 5.470207541513792, + "2023-06-25": 5.1558525668820145, + "2023-12-10": 7.2155772210398, + "2023-11-23": 5.153706900680404, + "2024-01-13": 7.643389378312459, + "2024-03-28": 9.513141825677437, + "2023-08-05": 4.953626193923668, + "2024-02-09": 7.149676025690591, + "2023-10-09": 3.859030985164931, + "2023-05-24": 5.282933693265714, + "2024-01-09": 7.237066649357808, + "2023-12-08": 6.590747836803958, + "2023-05-27": 5.2945822218005905, + "2023-08-18": 4.498709434822933, + "2023-11-05": 4.783467748541888, + "2024-04-18": 6.668463501424911, + "2023-10-22": 3.8740762797054193, + "2023-11-01": 4.421399736744191, + "2023-05-07": 5.667886916505366, + "2024-04-12": 8.0271127536223, + "2024-03-12": 10.671765688631567, + "2023-09-11": 4.014575442193571, + "2024-03-03": 9.326542147906453, + "2024-02-04": 6.769230252862828, + "2024-01-28": 6.703173365813255, + "2023-04-18": 6.879391800560817, + "2023-07-06": 5.181682510604131, + "2023-07-01": 5.282100145045606, + "2023-05-18": 5.404279607914082, + "2023-11-07": 4.916577126290277, + "2023-11-25": 5.302652912005635, + "2023-06-04": 5.344390268913719, + "2024-02-25": 7.76668529628665, + "2023-12-01": 5.441154869629504, + "2023-07-14": 5.602720873468339, + "2024-01-26": 6.571900191511484, + "2023-08-03": 5.017874421410448, + "2024-02-28": 8.373272990211419, + "2023-09-15": 4.090203381032591, + "2023-07-18": 5.2218149185149905, + "2023-04-21": 6.046059988385656, + "2023-12-21": 7.592118547569272, + "2023-07-20": 5.309930163507383, + "2024-03-06": 10.015215053841649, + "2023-09-30": 4.0881474306937715, + "2023-12-12": 7.070862636326095, + "2024-02-13": 7.342651152906663, + "2023-05-19": 5.356659844937126, + "2023-09-20": 4.118923988804985, + "2023-09-19": 4.122685410050698, + "2023-09-29": 4.079388401217121, + "2023-09-12": 4.004034882445894, + "2023-06-13": 4.607214989831707, + "2023-10-04": 4.031154537119691, + "2023-07-08": 5.149452752354684, + "2024-04-16": 6.622049592348546, + "2024-03-02": 9.010551744585914, + "2023-06-27": 5.0952860814835965, + "2023-10-08": 4.026539116057179, + "2023-11-20": 5.433917727053283, + "2023-12-20": 6.95660516013996, + "2023-12-31": 8.459009927802107, + "2023-11-06": 4.854963211083779, + "2023-08-22": 4.3979242326923424, + "2023-06-09": 5.0074092210743, + "2024-03-17": 9.833929840523194, + "2023-09-18": 4.128763461592389, + "2024-04-01": 9.23983325655996, + "2024-01-19": 6.891909608149467, + "2023-11-11": 5.340549091076539, + "2023-05-14": 5.366839888951122, + "2023-05-13": 5.358525654414578, + "2023-05-06": 5.737894413126571, + "2023-11-19": 5.2886213868104806, + "2023-05-16": 5.280601479713382, + "2023-09-23": 4.014401970617516, + "2023-07-02": 5.315150185111913, + "2023-08-15": 4.953364541940718, + "2024-01-25": 6.449650924591802, + "2024-03-13": 10.97011272287488, + "2024-01-21": 6.893850570026216, + "2024-02-01": 6.674339453749706, + "2023-06-15": 4.373263375800788, + "2024-03-16": 10.277233612949106, + "2023-11-27": 5.158126219320341, + "2024-01-10": 7.1668696701603665, + "2024-03-15": 10.58214461391164, + "2023-06-21": 4.721892825312076, + "2024-01-02": 8.653647503141281, + "2023-04-26": 6.041197904853099, + "2023-07-11": 5.140464635876311, + "2023-10-25": 4.245897032134862, + "2024-01-01": 8.269085741760685, + "2024-02-14": 7.612919533186069, + "2023-09-04": 4.259942273274167, + "2023-09-06": 4.237533169375419, + "2024-04-03": 8.624407554726387, + "2024-03-08": 10.451087726401235, + "2023-11-28": 5.187443701456288, + "2023-12-03": 5.485206424471288, + "2023-08-02": 5.137114766920277, + "2023-08-27": 4.5107123895244685, + "2023-10-20": 3.7227185059968337, + "2023-05-25": 5.25114753818822, + "2023-10-10": 3.823925358446621, + "2024-04-11": 8.349820958299631, + "2023-06-22": 4.868460406529219, + "2024-01-14": 7.577227856093514, + "2023-12-15": 7.226676839275065, + "2023-10-19": 3.629353574272913, + "2024-02-08": 6.966890486168345, + "2023-11-08": 4.9669961214556935, + "2023-11-12": 5.713741251888236, + "2023-12-22": 8.05223977011336, + "2023-05-20": 5.402567354811635, + "2023-05-31": 5.317153308753068, + "2024-03-23": 9.082950215365134, + "2024-04-10": 8.410504505754734, + "2023-09-27": 4.002105500748494, + "2024-03-04": 9.915134326970813, + "2023-09-10": 4.161841200716067, + "2024-04-13": 6.978564515105198, + "2024-02-29": 8.590396534222995, + "2023-07-22": 5.371537416380274, + "2023-07-21": 5.496782194180252, + "2023-06-30": 5.104281128363649, + "2023-12-29": 8.404418431213792, + "2023-12-04": 5.601053918696098, + "2023-09-21": 4.048295718181587, + "2023-06-02": 5.260242766843713, + "2023-10-11": 3.7509178162410177, + "2023-07-19": 5.201815576604147, + "2023-05-05": 5.776547824377795, + "2024-03-21": 9.362065316298034, + "2024-04-08": 8.973088656233942, + "2023-04-29": 5.994118823039421, + "2023-06-14": 4.6442968847563435, + "2023-10-05": 4.0366968890536326, + "2023-10-16": 3.7837115187201915, + "2024-02-10": 7.1985822620287925, + "2024-04-07": 8.631902802973045, + "2023-05-21": 5.334977111091413, + "2024-02-20": 7.7843326775472415, + "2023-11-17": 5.308632523731871, + "2023-12-11": 6.699670575120531, + "2023-11-26": 5.323354623814405, + "2023-11-16": 5.564611664035305, + "2023-06-29": 4.975383264956682, + "2023-06-11": 4.486152223173957, + "2024-02-02": 6.89326520545004, + "2023-09-14": 4.035223437573182, + "2024-01-27": 6.667599266186798, + "2024-03-30": 9.545530250313845, + "2023-05-04": 5.739867216635301, + "2023-09-28": 4.0421408096439375, + "2023-10-27": 4.150650321730372, + "2023-05-01": 5.785397170040613, + "2023-05-15": 5.385321780645864, + "2023-11-22": 5.08913893529261, + "2023-06-03": 5.281709785615323, + "2024-01-18": 7.174636737384223, + "2023-08-26": 4.495412656298002, + "2024-02-15": 7.742747302683844, + "2023-10-28": 4.179391562850591, + "2024-03-24": 9.186258283925916, + "2023-04-22": 5.911442349288414, + "2023-12-06": 5.985462378229024, + "2023-11-10": 5.130006536784694, + "2024-01-30": 7.002354129882651, + "2023-08-09": 5.0447498559618165, + "2023-05-02": 5.685306225843434, + "2023-11-14": 5.325070797731877, + "2024-01-23": 6.2145642245852635, + "2024-01-31": 6.778636816612441, + "2024-01-11": 8.206064229717917, + "2024-02-18": 7.77788078761179, + "2023-06-16": 4.371570117274789, + "2023-10-30": 4.334196774501188, + "2023-12-17": 6.966419611156287, + "2024-02-26": 7.851105876594913, + "2023-07-16": 5.377295104302859, + "2024-01-05": 7.513882001813149, + "2023-08-23": 4.422665131923296, + "2024-03-11": 10.791707613475035, + "2023-08-01": 5.08741849673627, + "2024-03-14": 11.302102192833626, + "2024-02-21": 7.386575793379833, + "2023-08-28": 4.480485243577749, + "2023-07-04": 5.443762945082033, + "2023-12-13": 6.967621242770004, + "2023-08-13": 5.027595270485346, + "2024-03-31": 9.56145476179737, + "2023-12-09": 7.404075277521885, + "2024-04-02": 8.608313243001646, + "2024-02-06": 6.736919547325696, + "2024-04-09": 8.89810342324335, + "2023-05-30": 5.464054108054988, + "2023-11-04": 4.656330474048418, + "2024-01-15": 7.57150582344394, + "2023-07-03": 5.474061883378475, + "2023-12-28": 8.543774048612548, + "2023-04-23": 5.905764138993085, + "2023-04-17": 6.706987797436194, + "2023-05-08": 5.422418257470877, + "2024-02-27": 8.130652781723887, + "2024-02-07": 6.796621590380047, + "2023-09-25": 4.038179357258926, + "2024-03-19": 9.133879189340336, + "2024-03-10": 10.403786103975884, + "2023-09-02": 4.239723141516748, + "2024-01-12": 8.02938506946606, + "2023-11-29": 5.2431428754958755, + "2023-10-15": 3.7473114327921864, + "2023-11-30": 5.211948084083127, + "2024-01-24": 6.390470509118657, + "2023-08-11": 4.99393863777179, + "2024-02-11": 7.209327686104042, + "2023-06-08": 5.020734577179987, + "2023-08-16": 4.741531444093875, + "2023-11-15": 5.4115417288787375, + "2023-12-16": 7.123739188290528, + "2024-03-29": 9.51882208981598, + "2024-04-04": 8.489977319525522, + "2023-06-10": 4.4450580485422355, + "2023-07-28": 5.216679914646218, + "2024-01-20": 6.847724164528837, + "2023-10-21": 3.816302464965459, + "2023-05-12": 5.237911543514087, + "2023-11-03": 4.550909804045139, + "2023-08-31": 4.440870479296971, + "2024-01-29": 6.887089045127258, + "2024-01-04": 7.707340308594444, + "2023-05-22": 5.306177826597353, + "2023-07-26": 5.20049569065863, + "2023-11-13": 5.594095459347543, + "2024-03-25": 9.5110282926903, + "2023-08-07": 4.983187142321958, + "2023-10-29": 4.219317338790286, + "2023-07-25": 5.182695224237276, + "2023-05-17": 5.314540317923296, + "2023-10-24": 4.28191451349379, + "2023-06-05": 5.245326172609994, + "2023-11-02": 4.662765621837874, + "2023-12-18": 6.671951479077062, + "2023-11-24": 5.208688544541096, + "2023-08-21": 4.4765316220169336, + "2023-08-14": 4.992707339359295, + "2023-05-26": 5.234573703874257, + "2024-03-05": 9.975844990074421, + "2024-04-06": 8.430901572659053, + "2023-12-23": 7.86043044015469, + "2024-02-03": 6.893275590967998, + "2024-02-16": 7.755411327172226, + "2023-05-28": 5.386501264160825, + "2023-12-14": 7.3952247364044945, + "2023-06-24": 5.045631625003616, + "2023-12-26": 9.036949430239972, + "2023-11-09": 5.095962943486104, + "2023-05-11": 5.340975336505662, + "2023-08-19": 4.494624131999665, + "2023-06-23": 4.933658946477332, + "2023-06-18": 4.578887771453305, + "2023-08-08": 5.007309280284466, + "2023-08-17": 4.698959548383292, + "2024-04-14": 6.6045834631629745, + "2023-07-24": 5.218677131768503, + "2023-10-14": 3.7373913744757603, + "2024-01-17": 7.395270778871426, + "2023-04-19": 6.464181135414925, + "2024-04-14T03": 6.347108560000001, + "2024-04-11T16": 8.2331883, + "2024-04-16T02": 6.62338356, + "2024-04-13T04": 7.20000786, + "2024-04-18T09": 6.60538684, + "2024-04-12T19": 6.8991720654168, + "2024-04-15T06": 7.0500019499999995, + "2024-04-14T19": 6.614520989999999, + "2024-04-15T01": 6.74334224, + "2024-04-17T20": 6.61260322, + "2024-04-11T17": 8.28645745657574, + "2024-04-18T10": 6.6133224, + "2024-04-12T14": 8.17948131, + "2024-04-12T20": 7.064129126897425, + "2024-04-15T12": 7.1028831199999996, + "2024-04-14T23": 6.893884480884995, + "2024-04-13T07": 7.276109459999999, + "2024-04-14T20": 6.5769725, + "2024-04-17T00": 6.68320473, + "2024-04-15T00": 6.79938542, + "2024-04-14T01": 6.303298711974815, + "2024-04-17T22": 6.623867519999999, + "2024-04-17T09": 6.6710006, + "2024-04-15T14": 6.96180033, + "2024-04-15T20": 6.66679888, + "2024-04-16T10": 6.57375982, + "2024-04-16T18": 6.620720939999999, + "2024-04-18T04": 6.67353282, + "2024-04-15T02": 6.723984904603185, + "2024-04-15T16": 6.7943955, + "2024-04-14T05": 6.606773680000001, + "2024-04-17T08": 6.6569965, + "2024-04-14T13": 6.62937926, + "2024-04-14T10": 6.77418237, + "2024-04-13T14": 7.125424799999999, + "2024-04-17T10": 6.625311, + "2024-04-14T15": 6.5579668, + "2024-04-14T12": 6.6433864, + "2024-04-16T09": 6.75409312, + "2024-04-17T02": 6.66479901, + "2024-04-11T23": 8.36175249, + "2024-04-12T09": 8.38340685, + "2024-04-14T18": 6.6420584, + "2024-04-14T09": 6.7543755, + "2024-04-16T20": 6.63132015, + "2024-04-18T00": 6.52260862, + "2024-04-15T23": 6.7064751000000005, + "2024-04-12T22": 7.184114083567105, + "2024-04-12T00": 8.412588840000002, + "2024-04-15T13": 7.11918831, + "2024-04-18T08": 6.526305, + "2024-04-13T20": 5.9888960670109554, + "2024-04-17T05": 6.707341199999999, + "2024-04-15T18": 6.59542784, + "2024-04-16T01": 6.676869, + "2024-04-14T11": 6.63625017, + "2024-04-11T20": 8.323083230000002, + "2024-04-13T13": 7.1994396, + "2024-04-12T16": 8.079715479999999, + "2024-04-17T03": 6.697339199999999, + "2024-04-16T06": 6.65387325346275, + "2024-04-17T12": 6.523194800000001, + "2024-04-11T22": 8.3488348, + "2024-04-15T05": 6.831801256582159, + "2024-04-18T14": 6.7443705, + "2024-04-12T12": 8.38206525, + "2024-04-17T14": 6.449864021728511, + "2024-04-13T03": 7.11749436, + "2024-04-18T07": 6.526305, + "2024-04-16T00": 6.6418592, + "2024-04-12T03": 8.444844400000001, + "2024-04-17T23": 6.5876706, + "2024-04-13T23": 6.441914583371652, + "2024-04-14T14": 6.507601999999999, + "2024-04-11T15": 8.26901496, + "2024-04-16T13": 6.54842202, + "2024-04-17T16": 6.4229357700000005, + "2024-04-16T22": 6.71621562, + "2024-04-15T15": 6.841350620000001, + "2024-04-16T12": 6.6373272, + "2024-04-18T13": 6.624119040000001, + "2024-04-16T05": 6.578879250000001, + "2024-04-17T17": 6.4798704, + "2024-04-12T13": 8.20629103, + "2024-04-12T23": 7.2286508141230055, + "2024-04-17T15": 6.40925636, + "2024-04-15T19": 6.623780820000001, + "2024-04-18T01": 6.6092068, + "2024-04-11T21": 8.281579670000001, + "2024-04-12T02": 8.45942295, + "2024-04-16T14": 6.530958699999999, + "2024-04-11T19": 8.282, + "2024-04-16T08": 6.74749565, + "2024-04-18T02": 6.63253569, + "2024-04-12T05": 8.4558455, + "2024-04-13T11": 7.2857285, + "2024-04-16T23": 6.720351300000001, + "2024-04-12T01": 8.43933756, + "2024-04-16T21": 6.721343999999999, + "2024-04-14T02": 6.346456460928129, + "2024-04-12T10": 8.41005545, + "2024-04-16T15": 6.43466567, + "2024-04-12T11": 8.43970723, + "2024-04-17T06": 6.6549959, + "2024-04-13T00": 7.250839985844124, + "2024-04-18T03": 6.69673212, + "2024-04-13T08": 7.21101852, + "2024-04-13T06": 7.286112359999999, + "2024-04-15T04": 6.71616747, + "2024-04-16T04": 6.5125148600000005, + "2024-04-14T16": 6.66846674, + "2024-04-16T07": 6.76071635, + "2024-04-18T05": 6.665133299999999, + "2024-04-13T02": 7.050762250000001, + "2024-04-15T09": 7.122826500000001, + "2024-04-13T05": 7.289113229999999, + "2024-04-15T17": 6.694579372000001, + "2024-04-16T16": 6.4482225, + "2024-04-15T21": 6.661130880000001, + "2024-04-12T17": 7.7105216400000005, + "2024-04-17T01": 6.66626576, + "2024-04-14T21": 6.5229563, + "2024-04-15T07": 7.13134125, + "2024-04-18T12": 6.63919021, + "2024-04-15T22": 6.6864038500000005, + "2024-04-13T22": 6.302583948779848, + "2024-04-15T08": 7.14163555, + "2024-04-14T22": 6.7958343800000005, + "2024-04-17T19": 6.61360316, + "2024-04-12T07": 8.39883202, + "2024-04-12T18": 6.8429309426512805, + "2024-04-14T04": 6.49366131, + "2024-04-16T17": 6.6006647325906735, + "2024-04-17T11": 6.5790765, + "2024-04-13T21": 6.011564336160795, + "2024-04-13T09": 7.205016840000001, + "2024-04-14T08": 6.785391, + "2024-04-15T11": 7.13040792, + "2024-04-11T14": 8.237589939025536, + "2024-04-17T13": 6.575794983248736, + "2024-04-14T06": 6.67987208, + "2024-04-13T19": 6.781141727592673, + "2024-04-14T07": 6.72350173, + "2024-04-13T16": 7.0074012, + "2024-04-15T10": 7.170740395065732, + "2024-04-12T06": 8.421589469999999, + "2024-04-13T15": 7.1604318, + "2024-04-12T15": 8.138684210000001, + "2024-04-11T18": 8.28491715, + "2024-04-17T18": 6.6886655500000005, + "2024-04-12T08": 8.360919599999999, + "2024-04-18T06": 6.533914620000001, + "2024-04-17T04": 6.75294528, + "2024-04-12T04": 8.461099800000001, + "2024-04-13T17": 6.761352, + "2024-04-16T19": 6.5997154799999995, + "2024-04-15T03": 6.74860716, + "2024-04-17T21": 6.64246856, + "2024-04-13T18": 6.779236409999999, + "2024-04-13T10": 7.224527700000001, + "2024-04-16T11": 6.671334150000001, + "2024-04-12T21": 7.1578567566495925, + "2024-04-14T00": 6.340959506133128, + "2024-04-18T11": 6.7240166, + "2024-04-17T07": 6.6396595000000005, + "2024-04-13T01": 7.137170769502196, + "2024-04-14T17": 6.53713632, + "2024-04-16T03": 6.6066416, + "2024-04-13T12": 7.2087208, + "latest": 7.13, + "2024-04-18T15": 6.76271745, + "2024-04-19": 6.786897838653705, + "2024-04-18T20": 6.753814461239075, + "2024-04-18T19": 6.737367, + "2024-04-19T01": 6.50882196, + "2024-04-19T03": 6.488389279999999, + "2024-04-18T21": 6.7913761500000005, + "2024-04-19T06": 6.69887516, + "2024-04-18T18": 6.67813725, + "2024-04-18T16": 6.7543755, + "2024-04-18T23": 6.7886465399999985, + "2024-04-19T04": 6.574577520000001, + "2024-04-19T05": 6.53576418, + "2024-04-19T00": 6.744100859999999, + "2024-04-18T22": 6.794037599999999, + "2024-04-18T17": 6.699816719999999, + "2024-04-19T02": 6.3615724899999995, + "2024-04-19T07": 6.764690750000001, + "2024-04-19T08": 6.74689992, + "2024-04-19T09": 6.8049928799999995, + "2024-04-19T10": 6.8084226, + "2024-04-19T11": 6.836069365312588, + "2024-04-19T12": 6.810141125774694, + "2024-04-19T13": 6.7716692300000005, + "2024-04-19T14": 6.770777832, + "2024-04-19T15": 6.80633347, + "2024-04-20": 6.80484775138866, + "2024-04-19T22": 6.762636399999999, + "2024-04-19T23": 6.652726500000001, + "2024-04-19T20": 6.7322209, + "2024-04-19T19": 6.773051264721043, + "2024-04-19T21": 6.76023014, + "2024-04-19T16": 6.7669761600000005, + "2024-04-19T17": 6.7831188, + "2024-04-20T00": 6.683605589999999, + "2024-04-19T18": 6.76350157, + "2024-04-20T01": 6.697328084001157, + "2024-04-21": 7.163077855736811, + "2024-04-20T16": 7.01303319, + "2024-04-20T19": 7.2011597, + "2024-04-20T15": 6.8817200000000005, + "2024-04-20T02": 6.7393579500000005, + "2024-04-20T09": 6.764961269999999, + "2024-04-20T04": 6.772150020214022, + "2024-04-20T10": 6.740954309999999, + "2024-04-20T22": 7.21045072, + "2024-04-21T00": 7.200591279999999, + "2024-04-20T12": 6.76442023, + "2024-04-21T04": 7.1960210600000005, + "2024-04-20T05": 6.767503049999999, + "2024-04-20T18": 7.197518250000001, + "2024-04-20T11": 6.7535529599999995, + "2024-04-20T23": 7.21323541, + "2024-04-20T08": 6.794241359999999, + "2024-04-20T13": 6.7834920400000005, + "2024-04-21T02": 7.240702123417731, + "2024-04-21T01": 7.20637732, + "2024-04-20T20": 7.2471735, + "2024-04-20T03": 6.722352, + "2024-04-20T14": 6.795266294650373, + "2024-04-20T07": 6.8183174399999995, + "2024-04-20T17": 7.153502850000001, + "2024-04-20T21": 7.24907407, + "2024-04-20T06": 6.78957906, + "2024-04-21T03": 7.2561187899999995, + "2024-04-21T16": 7.037759, + "2024-04-21T11": 7.19251011, + "2024-04-21T17": 7.044549460000001, + "2024-04-21T08": 7.189191893092488, + "2024-04-21T12": 7.156431, + "2024-04-21T15": 7.102994280000001, + "2024-04-21T06": 7.19694954, + "2024-04-21T07": 7.18522673, + "2024-04-21T14": 7.095560680000001, + "2024-04-21T13": 7.1117775000000005, + "2024-04-21T05": 7.209026520000001, + "2024-04-21T10": 7.1509298999999995, + "2024-04-21T09": 7.175295360000001, + "2024-04-21T19": 7.09921297, + "2024-04-21T22": 7.149857879999999, + "2024-04-21T23": 7.131354699999999, + "2024-04-21T21": 7.174743607122724, + "2024-04-21T20": 7.1157115, + "2024-04-21T18": 7.067460238500641, + "2024-04-22": 7.445049801772979, + "2024-04-22T00": 7.16178771, + "2024-04-22T07": 7.465327380000001, + "2024-04-22T05": 7.403182, + "2024-04-22T04": 7.3029712700000005, + "2024-04-22T02": 7.13399862, + "2024-04-22T01": 7.13685632, + "2024-04-22T06": 7.487742, + "2024-04-22T03": 7.252213960876382, + "2024-04-22T08": 7.4595788800000005, + "2024-04-22T09": 7.46390979, + "2024-04-22T10": 7.523384, + "2024-04-22T11": 7.464655890000001, + "2024-04-22T12": 7.4289704, + "2024-04-22T13": 7.421448269999999, + "2024-04-22T14": 7.4349728, + "2024-04-22T15": 7.40277349, + "2024-04-22T16": 7.4236358000000005, + "2024-04-23": 7.400339799352148, + "2024-04-23T03": 7.39906725, + "2024-04-22T19": 7.45383138, + "2024-04-22T17": 7.435898869999999, + "2024-04-22T23": 7.5052565910863835, + "2024-04-22T20": 7.50317529, + "2024-04-22T21": 7.5192551000000005, + "2024-04-22T18": 7.46013194, + "2024-04-23T06": 7.463177039999999, + "2024-04-22T22": 7.5212557, + "2024-04-23T04": 7.40306945, + "2024-04-23T01": 7.488919539999999, + "2024-04-23T07": 7.3613111, + "2024-04-23T00": 7.497657399399738, + "2024-04-23T05": 7.4364592, + "2024-04-23T02": 7.464516885969029, + "2024-04-23T08": 7.399441009999999, + "2024-04-23T09": 7.4085921, + "2024-04-23T10": 7.4291931799999995, + "2024-04-23T11": 7.36445967, + "2024-04-23T12": 7.3757280100000004, + "2024-04-23T13": 7.37502252, + "2024-04-23T14": 7.484441259999999, + "2024-04-23T15": 7.4582368, + "2024-04-23T16": 7.41025953, + "2024-04-24": 7.244982081333065, + "2024-04-24T02": 7.2695442830822685, + "2024-04-24T00": 7.258222789950624, + "2024-04-24T01": 7.2977297, + "2024-04-23T23": 7.235852095822656, + "2024-04-24T06": 7.38829552, + "2024-04-23T22": 7.262167746797499, + "2024-04-23T18": 7.3716951, + "2024-04-23T20": 7.3437342999999995, + "2024-04-23T21": 7.289364450000001, + "2024-04-24T04": 7.371, + "2024-04-24T05": 7.4035182100000005, + "2024-04-24T03": 7.2830039229649755, + "2024-04-24T07": 7.4309256900000005, + "2024-04-23T19": 7.371474, + "2024-04-23T17": 7.401850000000001, + "2024-04-24T08": 7.456677996, + "2024-04-24T09": 7.45692543, + "2024-04-24T10": 7.447255200000001, + "2024-04-24T11": 7.44192558, + "2024-04-24T12": 7.40792592, + "2024-04-24T13": 7.2823445300000005, + "2024-04-24T14": 7.09472272, + "2024-04-24T15": 7.08031632, + "2024-04-25": 6.9273801290111185, + "2024-04-24T18": 7.040759759999999, + "2024-04-25T00": 6.964516000000001, + "2024-04-24T21": 6.994629090000001, + "2024-04-24T17": 7.086537545563882, + "2024-04-24T16": 7.02306488, + "2024-04-24T20": 7.005829439999999, + "2024-04-24T23": 6.9042006, + "2024-04-24T22": 6.9424416, + "2024-04-24T19": 7.04392472, + "2024-04-25T01": 6.964488766338414, + "2024-04-25T03": 6.931197419999999, + "2024-04-25T06": 6.946471440000001, + "2024-04-25T05": 6.9400562400000005, + "2024-04-25T04": 6.9122715, + "2024-04-25T02": 6.93668178, + "2024-04-25T07": 6.898413000000001, + "2024-04-25T08": 6.8581478, + "2024-04-25T09": 6.8596278, + "2024-04-25T10": 6.768713699999999, + "2024-04-25T11": 6.80929725, + "2024-04-25T12": 6.817272000000001, + "2024-04-25T13": 6.7358886, + "2024-04-25T14": 6.820973250000001, + "2024-04-25T15": 6.88521105, + "2024-04-25T16": 6.906126849218327, + "2024-04-25T17": 6.93401709, + "2024-04-25T18": 6.93950088, + "2024-04-25T19": 6.92808898, + "2024-04-26": 6.861522896020573, + "2024-04-25T22": 6.88272468, + "2024-04-25T21": 6.955, + "2024-04-25T20": 6.945225740363014, + "2024-04-26T01": 6.775203250000001, + "2024-04-25T23": 6.849315, + "2024-04-26T00": 6.81245574787828, + "2024-04-26T05": 6.884926991190689, + "2024-04-26T07": 6.853, + "2024-04-26T02": 6.8597256, + "2024-04-26T03": 6.84779456, + "2024-04-26T04": 6.84524694, + "2024-04-26T06": 6.905, + "2024-04-26T08": 6.8651373, + "2024-04-26T09": 6.8683131, + "2024-04-26T10": 6.87017548, + "2024-04-26T11": 6.89303484, + "2024-04-26T12": 6.90282632, + "2024-04-26T13": 6.8266344000000005, + "2024-04-26T14": 6.83356465, + "2024-04-26T15": 6.7651052400000005, + "2024-04-26T21": 6.82454228, + "2024-04-26T22": 6.74663785, + "2024-04-26T17": 6.81047919, + "2024-04-26T19": 6.856886422071275, + "2024-04-26T16": 6.80682112, + "2024-04-26T18": 6.8450143699999995, + "2024-04-26T20": 6.86886999, + "2024-04-27": 6.770546908089791, + "2024-04-26T23": 6.757058081510369, + "2024-04-27T00": 6.70292145, + "2024-04-27T01": 6.58628712, + "2024-04-28": 6.798679956019708, + "2024-04-27T13": 6.66666385, + "2024-04-28T00": 6.835348799999999, + "2024-04-27T20": 6.776429114962389, + "2024-04-27T23": 6.789409590799359, + "2024-04-27T06": 6.699138738993338, + "2024-04-27T05": 6.7261738200000005, + "2024-04-27T02": 6.67419748, + "2024-04-27T18": 6.76333008, + "2024-04-27T07": 6.6939812000000005, + "2024-04-27T04": 6.742154780000001, + "2024-04-27T21": 6.74247951, + "2024-04-27T09": 6.661733760000001, + "2024-04-27T14": 6.6857184, + "2024-04-27T22": 6.74441068, + "2024-04-27T16": 6.64447868, + "2024-04-27T10": 6.62855589, + "2024-04-27T17": 6.76146678, + "2024-04-27T08": 6.64494411, + "2024-04-27T12": 6.6456775, + "2024-04-27T15": 6.64887514, + "2024-04-27T11": 6.60490242, + "2024-04-27T03": 6.7082554, + "2024-04-27T19": 6.7672596, + "2024-04-28T01": 6.853542299999999, + "2024-04-28T20": 6.85846143, + "2024-04-28T14": 6.8547081599999995, + "2024-04-28T05": 6.890794049999999, + "2024-04-28T08": 6.90137298, + "2024-04-28T16": 6.8711192180000005, + "2024-04-28T11": 6.81811146, + "2024-04-28T22": 6.7872840000000005, + "2024-04-28T03": 6.925841999999999, + "2024-04-28T13": 6.86084256, + "2024-04-28T15": 6.85405149, + "2024-04-28T04": 6.8921382399999995, + "2024-04-28T09": 6.8886574099999995, + "2024-04-28T19": 6.887381799999999, + "2024-04-28T06": 6.903471573000001, + "2024-04-28T12": 6.814863719999999, + "2024-04-28T02": 6.89069008, + "2024-04-28T17": 6.867252000000001, + "2024-04-28T21": 6.8674581, + "2024-04-28T18": 6.880384459999999, + "2024-04-28T07": 6.9206372499999995, + "2024-04-28T10": 6.862155039999999, + "2024-04-29": 6.574278774779519, + "2024-04-28T23": 6.7275099, + "2024-04-29T00": 6.75204134, + "2024-04-29T01": 6.79382528, + "2024-04-29T06": 6.56847448, + "2024-04-29T02": 6.748245, + "2024-04-29T07": 6.57347408, + "2024-04-29T05": 6.68493024, + "2024-04-29T03": 6.69272814, + "2024-04-29T04": 6.71458964, + "2024-04-29T08": 6.531477440000001, + "2024-04-29T09": 6.52667365, + "2024-04-29T10": 6.513609160000001, + "2024-04-29T11": 6.5130895314168935, + "2024-04-29T12": 6.5235645, + "2024-04-29T13": 6.526586390915045, + "2024-04-29T14": 6.59087936, + "2024-04-29T15": 6.616, + "2024-04-30": 6.586828277249851, + "2024-04-30T04": 6.558878886762853, + "2024-04-29T21": 6.519782520000001, + "2024-04-30T03": 6.579498839999999, + "2024-04-29T22": 6.618689, + "2024-04-29T19": 6.53232065, + "2024-04-29T23": 6.6357298149359165, + "2024-04-29T18": 6.553623449999999, + "2024-04-30T00": 6.6082814, + "2024-04-29T20": 6.569002264230653, + "2024-04-30T01": 6.5877593999999995, + "2024-04-30T02": 6.52165136, + "2024-04-29T16": 6.580605139999999, + "2024-04-29T17": 6.59414265, + "2024-04-30T05": 6.5604907400000005, + "2024-04-30T06": 6.584814520000001, + "2024-04-30T07": 6.581417098178216, + "2024-04-30T08": 6.43190639, + "2024-04-30T09": 6.4039500799999995, + "2024-04-30T10": 6.37178913, + "2024-04-30T11": 6.298786363679892, + "2024-04-30T12": 6.220759719999999, + "2024-04-30T13": 6.215197069999999, + "2024-04-30T14": 6.22313604, + "2024-04-30T15": 6.157563359999999, + "2024-04-30T16": 6.095852, + "2024-05-01": 6.410132261271056, + "2024-04-30T22": 6.395802880000001, + "2024-04-30T17": 6.13221314, + "2024-04-30T20": 6.16822866, + "2024-04-30T23": 6.379614, + "2024-04-30T19": 6.1107606599999995, + "2024-04-30T18": 6.123606479999999, + "2024-05-01T01": 6.39721176, + "2024-05-01T00": 6.41632008, + "2024-04-30T21": 6.2018028, + "2024-05-01T02": 6.41442204, + "2024-05-01T03": 6.4342696, + "2024-05-01T05": 6.50965696, + "2024-05-01T04": 6.5075728999999995, + "2024-05-01T06": 6.47476659, + "2024-05-01T07": 6.34158852, + "2024-05-01T08": 6.19512219, + "2024-05-01T09": 6.365055, + "2024-05-01T10": 6.4624301, + "2024-05-01T11": 6.46449248, + "2024-05-01T12": 6.559613506, + "2024-05-01T13": 6.60325017, + "2024-05-01T15": 6.52023168, + "2024-05-01T16": 6.4665177499999995, + "2024-05-01T14": 6.55065504, + "2024-05-01T21": 6.79313565, + "2024-05-01T20": 6.773534897348997, + "2024-05-01T17": 6.51497671, + "2024-05-01T19": 6.745841820000001, + "2024-05-01T18": 6.726918, + "2024-05-01T22": 6.88693038, + "2024-05-02": 6.855796299781072, + "2024-05-02T03": 6.842151, + "2024-05-02T01": 6.770544200000001, + "2024-05-02T02": 6.81452005, + "2024-05-01T23": 6.849899750089205, + "2024-05-02T00": 6.854902434446587, + "2024-05-02T04": 6.87436098, + "2024-05-02T06": 6.88596957, + "2024-05-02T07": 6.858195899999999, + "2024-05-02T05": 6.85248395, + "2024-05-02T08": 6.898720140000001, + "2024-05-02T09": 6.95445142, + "2024-05-02T10": 6.98934304, + "2024-05-02T11": 7.0574584, + "2024-05-02T12": 7.010003520157933, + "2024-05-02T13": 6.94802714, + "2024-05-02T14": 6.97202378, + "2024-05-02T15": 7.031289055, + "2024-05-02T16": 7.0100701, + "2024-05-02T17": 7.0101401999999995, + "2024-05-03T04": 7.20107201, + "2024-05-03T02": 7.26901752, + "2024-05-03T03": 7.220938599999999, + "2024-05-03T05": 7.22650582, + "2024-05-03T06": 7.183861959999999, + "2024-05-03T00": 7.26738181956537, + "2024-05-03T08": 7.045070450000001, + "2024-05-03T07": 7.1167115999999995, + "2024-05-03T01": 7.26450848, + "2024-05-03T09": 7.04477484, + "2024-05-03T10": 7.049563920000001, + "2024-05-03T11": 7.04592954, + "2024-05-03T12": 7.157570520000001, + "2024-05-03T13": 7.204, + "2024-05-03T14": 7.204080450000001, + "2024-05-03T15": 7.238598934120032, + "2024-05-03": 7.220233119928438, + "2024-05-04": 7.174342186885822, + "2024-05-04T05": 7.187083649999999, + "2024-05-03T18": 7.26552544, + "2024-05-04T03": 7.167576520000001, + "2024-05-03T17": 7.29426052, + "2024-05-03T21": 7.29972096, + "2024-05-03T20": 7.327437416986832, + "2024-05-04T06": 7.172007600000001, + "2024-05-03T22": 7.28012911, + "2024-05-03T19": 7.2481738, + "2024-05-04T02": 7.189581360000001, + "2024-05-03T16": 7.272890459999999, + "2024-05-04T01": 7.20637732, + "2024-05-04T04": 7.172007600000001, + "2024-05-03T23": 7.265863124138805, + "2024-05-04T00": 7.210522800000001, + "2024-05-04T13": 7.16414608, + "2024-05-04T10": 7.189143779999999, + "2024-05-04T12": 7.2027202, + "2024-05-04T07": 7.151287000000001, + "2024-05-04T11": 7.1827182, + "2024-05-04T09": 7.1651462399999994, + "2024-05-04T15": 7.1954388, + "2024-05-04T08": 7.165361159999999, + "2024-05-04T14": 7.175434800000001, + "2024-05-05": 7.100954997923754, + "2024-05-05T01": 7.0919218299999995, + "2024-05-04T19": 7.167358350000001, + "2024-05-04T20": 7.19328772, + "2024-05-05T05": 7.0589175399999995, + "2024-05-05T07": 7.0757075, + "2024-05-04T23": 7.1417141, + "2024-05-04T22": 7.1337133, + "2024-05-04T21": 7.155143099999999, + "2024-05-05T00": 7.11006635, + "2024-05-05T08": 7.099780890000001, + "2024-05-04T17": 7.16642996, + "2024-05-05T09": 7.100851999999999, + "2024-05-05T10": 7.068060050000001, + "2024-05-05T04": 7.082520607999999, + "2024-05-04T16": 7.17807655, + "2024-05-05T06": 7.0517051, + "2024-05-05T03": 7.0939220899999995, + "2024-05-04T18": 7.175430499999999, + "2024-05-05T02": 7.103923389999999, + "2024-05-05T21": 7.35980949, + "2024-05-05T16": 7.28721861, + "2024-05-05T22": 7.329879479999999, + "2024-05-05T17": 7.252652679999999, + "2024-05-05T20": 7.306803660000001, + "2024-05-05T13": 7.062022257250626, + "2024-05-05T15": 7.2205053999999995, + "2024-05-05T12": 7.054128479999999, + "2024-05-05T18": 7.241303200000001, + "2024-05-05T14": 7.101348999999999, + "2024-05-05T19": 7.277164159999999, + "2024-05-05T11": 7.0711312, + "2024-05-05T23": 7.312658079999999, + "2024-05-06T00": 7.2797279, + "2024-05-06T08": 7.41, + "2024-05-06T02": 7.271654389999999, + "2024-05-06T05": 7.3113655500000005, + "2024-05-06T06": 7.3701474, + "2024-05-06T07": 7.37144226, + "2024-05-06T04": 7.255471715571856, + "2024-05-06T01": 7.2912393, + "2024-05-06T03": 7.2504349999999995, + "2024-05-06T09": 7.42, + "2024-05-06T10": 7.309024995863981, + "2024-05-06T11": 7.29758376, + "2024-05-06T13": 7.20550435, + "2024-05-06T12": 7.2217221, + "2024-05-06T14": 7.1717171, + "2024-05-06T15": 7.1104266, + "2024-05-06T17": 7.17792822, + "2024-05-06T16": 7.1657165, + "2024-05-06T19": 7.176712919999999, + "2024-05-06T18": 7.211, + "2024-05-06": 7.258702966184163, + "2024-05-07": 7.134273245878795, + "2024-05-06T22": 7.17121513, + "2024-05-07T07": 7.16257296, + "2024-05-07T01": 7.149142, + "2024-05-07T00": 7.1248575, + "2024-05-06T21": 7.20642344, + "2024-05-06T20": 7.21106244, + "2024-05-06T23": 7.143928560000001, + "2024-05-07T04": 7.11371544, + "2024-05-07T03": 7.07785844, + "2024-05-07T02": 7.17270868, + "2024-05-07T05": 7.11671532, + "2024-05-07T08": 7.238144759999999, + "2024-05-07T09": 7.275, + "2024-05-07T10": 7.2152886, + "2024-05-07T11": 7.180359, + "2024-05-07T12": 7.168071680000001, + "2024-05-07T13": 7.1867186, + "2024-05-07T14": 7.18492815, + "2024-05-07T15": 7.24913, + "2024-05-08": 7.031337944333356, + "2024-05-09": 6.979259947747994, + "2024-05-10": 7.018267506933471, + "2024-05-09T13": 6.88831251, + "2024-05-10T00": 7.0240165, + "2024-05-08T08": 7.0712928, + "2024-05-09T14": 6.90240888, + "2024-05-08T10": 7.0291564, + "2024-05-09T04": 7.04340603, + "2024-05-10T01": 7.064293500000001, + "2024-05-08T03": 7.085149680000001, + "2024-05-09T07": 6.95145295, + "2024-05-09T11": 6.8162724, + "2024-05-09T00": 7.0380427800000005, + "2024-05-09T01": 7.0259072399999996, + "2024-05-10T06": 7.07807973, + "2024-05-09T19": 7.012158439999999, + "2024-05-10T05": 7.0690809, + "2024-05-10T02": 7.07136352, + "2024-05-09T23": 7.0430842799999995, + "2024-05-09T06": 7.00935324, + "2024-05-08T01": 7.0052994, + "2024-05-09T09": 6.8635665, + "2024-05-09T20": 7.02450825, + "2024-05-08T19": 7.059167760890231, + "2024-05-09T03": 7.003426429999999, + "2024-05-08T21": 6.96911783, + "2024-05-09T22": 7.0427320799999995, + "2024-05-08T17": 7.11950459, + "2024-05-09T05": 7.025274629999999, + "2024-05-08T06": 7.04580201, + "2024-05-08T15": 7.12650312, + "2024-05-10T08": 7.09214884, + "2024-05-08T07": 7.016526219999999, + "2024-05-08T04": 7.04515448, + "2024-05-09T15": 6.94473444, + "2024-05-08T18": 7.10636516, + "2024-05-09T10": 6.818247899999999, + "2024-05-09T21": 7.011966509367403, + "2024-05-10T03": 7.093932440000001, + "2024-05-08T00": 6.979930200000001, + "2024-05-10T07": 7.10100572, + "2024-05-08T14": 7.089738408039099, + "2024-05-09T17": 6.97497667, + "2024-05-08T13": 6.981324079999999, + "2024-05-08T05": 7.0298047299999995, + "2024-05-09T18": 6.9729075, + "2024-05-09T08": 6.893182683, + "2024-05-08T20": 6.97088448, + "2024-05-08T22": 6.988832789999999, + "2024-05-08T11": 6.96744256, + "2024-05-09T12": 6.871975, + "2024-05-08T02": 7.05808233, + "2024-05-10T04": 7.11800334, + "2024-05-08T12": 6.93423715, + "2024-05-09T02": 7.006001322435758, + "2024-05-08T09": 7.02422725, + "2024-05-09T16": 6.9915521, + "2024-05-08T16": 7.113007800000001, + "2024-05-08T23": 6.9931316400000005, + "2024-05-10T09": 7.08115016, + "2024-05-10T10": 7.08700768, + "2024-05-10T11": 7.0889074139999995, + "2024-05-10T12": 7.10092899, + "2024-05-10T13": 7.0693637, + "2024-05-10T14": 6.92182309, + "2024-05-11": 6.722495889887673, + "2024-05-12": 6.697479488778155, + "2024-05-12T16": 6.762294, + "2024-05-11T03": 6.73091277, + "2024-05-10T17": 6.7969603, + "2024-05-11T16": 6.724437954218113, + "2024-05-10T15": 6.86476412, + "2024-05-11T04": 6.7291826299999995, + "2024-05-11T12": 6.7009832000000005, + "2024-05-12T15": 6.7426202412196945, + "2024-05-11T11": 6.66306696, + "2024-05-12T04": 6.70624931, + "2024-05-12T11": 6.72343469, + "2024-05-11T22": 6.68252952, + "2024-05-11T21": 6.6955266600000005, + "2024-05-10T21": 6.7869633, + "2024-05-10T23": 6.763176448, + "2024-05-12T00": 6.6919918, + "2024-05-12T03": 6.6903228, + "2024-05-12T12": 6.735828118, + "2024-05-11T08": 6.72929205406073, + "2024-05-11T17": 6.71571588, + "2024-05-12T19": 6.676262056, + "2024-05-11T23": 6.66426684, + "2024-05-11T05": 6.75117669, + "2024-05-12T02": 6.6813264000000006, + "2024-05-11T02": 6.7431114, + "2024-05-10T16": 6.8128192, + "2024-05-12T14": 6.73596745, + "2024-05-11T09": 6.70212288, + "2024-05-10T18": 6.8019588, + "2024-05-10T19": 6.81372784, + "2024-05-11T06": 6.77023928, + "2024-05-12T08": 6.6665991600000005, + "2024-05-10T20": 6.78197298135448, + "2024-05-11T18": 6.72231, + "2024-05-12T05": 6.7053168, + "2024-05-12T06": 6.69732, + "2024-05-11T20": 6.7096508, + "2024-05-12T09": 6.67426243, + "2024-05-11T01": 6.76944267, + "2024-05-11T00": 6.74644796, + "2024-05-12T07": 6.660667950000001, + "2024-05-12T10": 6.72304056, + "2024-05-11T10": 6.667131899999999, + "2024-05-12T01": 6.6963204, + "2024-05-12T18": 6.69665535, + "2024-05-12T13": 6.7338336100000005, + "2024-05-11T19": 6.7203108, + "2024-05-12T17": 6.7196473, + "2024-05-11T14": 6.717625613193778, + "2024-05-11T07": 6.768172099999999, + "2024-05-11T15": 6.7420322, + "2024-05-11T13": 6.71324644, + "2024-05-10T22": 6.7323165000000005, + "2024-05-13": 6.690401773822745, + "2024-05-12T21": 6.6288117699999995, + "2024-05-13T00": 6.6527385599999995, + "2024-05-13T03": 6.47918532, + "2024-05-12T23": 6.62088672, + "2024-05-13T04": 6.475251210000001, + "2024-05-13T01": 6.5866938500000005, + "2024-05-13T05": 6.47618616, + "2024-05-13T02": 6.512980349999999, + "2024-05-13T07": 6.644952683279851, + "2024-05-13T06": 6.55916292, + "2024-05-12T22": 6.629148239999999, + "2024-05-12T20": 6.67346312, + "2024-05-13T08": 6.74116752, + "2024-05-13T10": 6.732306, + "2024-05-13T09": 6.7650897599999995, + "2024-05-13T11": 6.71471622, + "2024-05-13T12": 6.7056262076448565, + "2024-05-13T13": 6.716260040799156, + "2024-05-13T14": 6.74211168, + "2024-05-13T15": 6.74638048, + "2024-05-13T16": 6.794640800000001, + "2024-05-14": 6.6092648870198305, + "2024-05-13T17": 6.700050028296729, + "2024-05-14T01": 6.6606676, + "2024-05-14T02": 6.63320855, + "2024-05-14T06": 6.55458984, + "2024-05-13T19": 6.70693293, + "2024-05-13T22": 6.6633336, + "2024-05-14T04": 6.65040684, + "2024-05-13T21": 6.67359956, + "2024-05-14T03": 6.64354356, + "2024-05-14T00": 6.66073422, + "2024-05-14T07": 6.60149935, + "2024-05-13T20": 6.69466525, + "2024-05-14T05": 6.650388291625451, + "2024-05-13T23": 6.67353282, + "2024-05-13T18": 6.66773289, + "2024-05-14T08": 6.60564956772043, + "2024-05-14T09": 6.6018296, + "2024-05-14T10": 6.59789753, + "2024-05-14T11": 6.638546160000001, + "2024-05-14T12": 6.6408800999999995, + "2024-05-14T13": 6.64187948, + "2024-05-14T14": 6.60283759, + "2024-05-14T15": 6.6450106, + "2024-05-14T16": 6.6203568, + "2024-05-14T17": 6.55996166, + "2024-05-14T18": 6.55927392, + "2024-05-14T19": 6.5580628, + "2024-05-14T20": 6.55285312, + "2024-05-15": 6.824214678684078, + "2024-05-15T02": 6.51902097, + "2024-05-15T01": 6.51502341, + "2024-05-14T21": 6.53190912, + "2024-05-15T05": 6.49007815, + "2024-05-15T00": 6.496555, + "2024-05-15T06": 6.488120982767656, + "2024-05-15T03": 6.5220844, + "2024-05-15T07": 6.505552299318589, + "2024-05-14T23": 6.477984820807942, + "2024-05-15T04": 6.5067450000000004, + "2024-05-14T22": 6.497465, + "2024-05-15T08": 6.58895679, + "2024-05-15T09": 6.617940959999999, + "2024-05-15T10": 6.64726872, + "2024-05-15T11": 6.53708468, + "2024-05-15T12": 6.69626333, + "2024-05-15T13": 6.8497259999999995, + "2024-05-15T14": 6.865862679999999, + "2024-05-15T15": 6.91545194, + "2024-05-15T18": 6.93525804, + "2024-05-15T19": 6.9642456, + "2024-05-15T17": 6.92352284, + "2024-05-15T16": 6.8750619, + "2024-05-16": 6.963530754148653, + "2024-05-16T04": 6.97608687814773, + "2024-05-16T06": 6.9586958, + "2024-05-15T22": 6.9584775, + "2024-05-16T07": 6.96, + "2024-05-16T03": 6.9711849, + "2024-05-16T05": 6.97618575, + "2024-05-15T21": 6.966011920000001, + "2024-05-16T02": 6.959461180000001, + "2024-05-16T00": 6.968438100000001, + "2024-05-15T23": 6.962784, + "2024-05-15T20": 6.9902387500000005, + "2024-05-16T01": 6.991537800000001, + "2024-05-16T08": 6.94193058, + "2024-05-16T09": 6.918100530000001, + "2024-05-16T10": 6.91744656, + "2024-05-16T11": 6.90196614, + "2024-05-16T12": 6.8583714, + "2024-05-16T13": 6.87865048, + "2024-05-16T14": 6.8819951999999995, + "2024-05-16T15": 6.91824506, + "2024-05-17": 7.028049316361763, + "2024-05-17T00": 7.04392956, + "2024-05-16T23": 7.02956232, + "2024-05-16T22": 6.98355864, + "2024-05-16T17": 6.9265151099999995, + "2024-05-16T20": 6.9184842600000005, + "2024-05-16T18": 6.92258462, + "2024-05-16T21": 6.92855424, + "2024-05-17T01": 7.06442384, + "2024-05-16T19": 6.970000382563267, + "2024-05-17T03": 7.014561120000001, + "2024-05-17T02": 7.03242192, + "2024-05-16T16": 6.95225118, + "2024-05-17T06": 7.0707070000000005, + "2024-05-17T04": 7.0817081, + "2024-05-17T07": 7.23150617, + "2024-05-17T05": 7.0487048, + "2024-05-17T08": 7.24886976, + "2024-05-17T09": 7.24886976, + "2024-05-18": 7.175769989930552, + "2024-05-19": 7.031703095877409, + "2024-05-20": 7.051330493099958, + "2024-05-21": 7.527132753659427, + "2024-05-20T04": 7.01043912, + "2024-05-18T11": 7.1904378, + "2024-05-18T17": 7.157073400000001, + "2024-05-20T15": 7.035738482105996, + "2024-05-20T16": 7.074, + "2024-05-19T00": 7.137284480000001, + "2024-05-18T18": 7.17486088, + "2024-05-21T06": 7.5197744, + "2024-05-20T23": 7.552114, + "2024-05-18T13": 7.108005452375332, + "2024-05-19T17": 6.985441571192795, + "2024-05-20T11": 7.04378868, + "2024-05-21T07": 7.52569896, + "2024-05-21T05": 7.48677539, + "2024-05-19T23": 6.9353757599999994, + "2024-05-19T13": 7.0027002, + "2024-05-18T06": 7.1851549, + "2024-05-19T07": 7.09863882, + "2024-05-18T14": 7.08369968, + "2024-05-18T21": 7.140168879859501, + "2024-05-18T20": 7.171290600000001, + "2024-05-20T18": 7.1570762199999995, + "2024-05-20T17": 7.126425, + "2024-05-20T00": 6.93265335, + "2024-05-18T01": 7.18108191, + "2024-05-20T10": 7.031926403, + "2024-05-18T12": 7.151287680000001, + "2024-05-18T09": 7.197367239999999, + "2024-05-20T21": 7.455427919999999, + "2024-05-18T16": 7.1354268, + "2024-05-20T06": 6.97127884, + "2024-05-20T03": 6.955304399999999, + "2024-05-18T03": 7.2070216332590125, + "2024-05-19T01": 7.135284120000001, + "2024-05-18T02": 7.1920851, + "2024-05-19T06": 7.08954804560557, + "2024-05-21T00": 7.625914999999999, + "2024-05-20T12": 7.00085998, + "2024-05-19T12": 7.0357035, + "2024-05-18T04": 7.1920851, + "2024-05-18T10": 7.186437, + "2024-05-20T07": 6.95672172, + "2024-05-19T22": 6.95651301, + "2024-05-19T20": 6.94679159, + "2024-05-19T14": 7.014771540000001, + "2024-05-18T15": 7.126254909384488, + "2024-05-19T21": 6.92693073, + "2024-05-19T02": 7.146310170034598, + "2024-05-19T11": 7.06963621, + "2024-05-20T05": 7.05285894, + "2024-05-19T09": 7.073707300000001, + "2024-05-20T14": 6.97520925, + "2024-05-21T02": 7.505375250000001, + "2024-05-18T19": 7.179092004000001, + "2024-05-18T00": 7.18665808, + "2024-05-21T10": 7.53996366, + "2024-05-18T22": 7.138284660000001, + "2024-05-19T16": 6.989838679999999, + "2024-05-20T02": 6.944791650000001, + "2024-05-18T05": 7.175080169999999, + "2024-05-21T08": 7.55447266388907, + "2024-05-20T19": 7.37561228, + "2024-05-18T08": 7.205873039999999, + "2024-05-21T01": 7.527827970000001, + "2024-05-18T07": 7.20251221, + "2024-05-20T13": 6.9891397799999995, + "2024-05-19T18": 6.94655568, + "2024-05-20T20": 7.4089987, + "2024-05-19T04": 7.1307843, + "2024-05-20T01": 6.89793102, + "2024-05-20T08": 7.0318483899999995, + "2024-05-20T22": 7.538361944041084, + "2024-05-21T04": 7.49892501, + "2024-05-19T15": 7.017771870000001, + "2024-05-19T10": 7.108426479999999, + "2024-05-19T05": 7.1230099082241525, + "2024-05-21T09": 7.555099133682621, + "2024-05-19T03": 7.159158995999999, + "2024-05-19T19": 6.94093059, + "2024-05-21T03": 7.489, + "2024-05-18T23": 7.1552877200000005, + "2024-05-19T08": 7.0967096, + "2024-05-20T09": 7.0352964, + "2024-05-21T11": 7.53266415, + "2024-05-26": 7.4857151182723145, + "2024-05-25": 7.308384568728579, + "2024-05-28": 7.63142258022996, + "2024-05-24": 7.238777781815544, + "2024-05-27": 7.516080749873146, + "2024-05-23": 7.2522971486118255, + "2024-05-22": 7.571600035758371, + "2024-05-22T20": 7.44510648, + "2024-05-25T08": 7.2891561199999995, + "2024-05-22T05": 7.52734362, + "2024-05-28T03": 7.54503471, + "2024-05-22T16": 7.573182, + "2024-05-25T05": 7.3140732, + "2024-05-24T22": 7.24698528, + "2024-05-27T14": 7.4985971199999994, + "2024-05-22T03": 7.590405679999999, + "2024-05-23T17": 7.13978415, + "2024-05-24T23": 7.2386968000000005, + "2024-05-26T19": 7.545923, + "2024-05-26T18": 7.5060948, + "2024-05-26T10": 7.40226015, + "2024-05-27T16": 7.7053641299999995, + "2024-05-24T12": 7.24922844, + "2024-05-26T01": 7.495250400000001, + "2024-05-23T07": 7.57337742, + "2024-05-22T08": 7.6364724, + "2024-05-23T09": 7.547508499999999, + "2024-05-24T18": 7.278359, + "2024-05-23T01": 7.526172572620475, + "2024-05-25T15": 7.3352664, + "2024-05-23T16": 7.14606581, + "2024-05-25T03": 7.29200905, + "2024-05-28T06": 7.38249768, + "2024-05-25T23": 7.42173809, + "2024-05-24T13": 7.2566434, + "2024-05-26T03": 7.434182149999999, + "2024-05-26T00": 7.455030720000001, + "2024-05-25T06": 7.28815651, + "2024-05-27T04": 7.4840313599999995, + "2024-05-22T10": 7.59532866, + "2024-05-27T09": 7.44138348, + "2024-05-24T17": 7.20597222, + "2024-05-26T16": 7.56282228, + "2024-05-22T09": 7.5864824, + "2024-05-24T21": 7.2419564595438946, + "2024-05-25T04": 7.3130736, + "2024-05-27T22": 7.6172225, + "2024-05-27T11": 7.468803100736662, + "2024-05-23T21": 7.18560675, + "2024-05-23T10": 7.4553897000000005, + "2024-05-23T14": 7.252444560000001, + "2024-05-27T02": 7.50856733, + "2024-05-25T18": 7.3761555, + "2024-05-27T05": 7.426433599999999, + "2024-05-22T23": 7.45164525, + "2024-05-28T01": 7.583927999999999, + "2024-05-22T04": 7.5209687899999995, + "2024-05-22T15": 7.60579368, + "2024-05-24T03": 7.26402053, + "2024-05-24T08": 7.0879439, + "2024-05-24T02": 7.23824842, + "2024-05-26T07": 7.425274915826211, + "2024-05-27T07": 7.3936351799999995, + "2024-05-25T22": 7.3536761, + "2024-05-24T16": 7.20897096, + "2024-05-27T20": 7.64019904, + "2024-05-22T02": 7.62262768, + "2024-05-24T06": 7.09487688, + "2024-05-24T11": 7.1796896, + "2024-05-25T21": 7.34853, + "2024-05-27T15": 7.634428740000001, + "2024-05-22T19": 7.45643382, + "2024-05-23T20": 6.97976125, + "2024-05-23T08": 7.5596128799999995, + "2024-05-22T22": 7.4650128, + "2024-05-26T11": 7.443648850000001, + "2024-05-24T01": 7.2540972, + "2024-05-23T05": 7.55331404, + "2024-05-28T04": 7.4145834, + "2024-05-25T09": 7.288375240000001, + "2024-05-27T18": 7.64926643, + "2024-05-24T10": 7.16434432, + "2024-05-25T19": 7.369157250000001, + "2024-05-24T07": 7.07201928, + "2024-05-26T04": 7.42107002, + "2024-05-26T09": 7.3930416, + "2024-05-23T02": 7.531081800000001, + "2024-05-27T06": 7.398283021643297, + "2024-05-28T08": 7.369264523204429, + "2024-05-24T15": 7.33633, + "2024-05-25T20": 7.35316125, + "2024-05-27T08": 7.425541999999999, + "2024-05-23T22": 7.2155236, + "2024-05-26T15": 7.6014364, + "2024-05-24T20": 7.2422757, + "2024-05-25T13": 7.276015970219083, + "2024-05-22T01": 7.660080679999999, + "2024-05-25T17": 7.34388399, + "2024-05-27T10": 7.46744208, + "2024-05-24T19": 7.25575002, + "2024-05-26T02": 7.43618193, + "2024-05-27T19": 7.590207659062565, + "2024-05-25T11": 7.3169023, + "2024-05-27T17": 7.69107003, + "2024-05-26T06": 7.39448502, + "2024-05-23T00": 7.519049227116486, + "2024-05-22T12": 7.49701283868945, + "2024-05-22T00": 7.668725338846381, + "2024-05-24T05": 7.147066949999999, + "2024-05-23T15": 7.220797279999999, + "2024-05-22T13": 7.504209105106976, + "2024-05-23T04": 7.57629978, + "2024-05-26T08": 7.46086512, + "2024-05-26T13": 7.47360768, + "2024-05-28T05": 7.412288139999999, + "2024-05-22T18": 7.48010228, + "2024-05-22T06": 7.60632624, + "2024-05-22T17": 7.5717883200000005, + "2024-05-23T19": 7.1154477599999995, + "2024-05-25T07": 7.2871569, + "2024-05-26T22": 7.5578243800000005, + "2024-05-25T16": 7.34697128, + "2024-05-26T05": 7.4177740000000005, + "2024-05-24T04": 7.2509372, + "2024-05-25T12": 7.29148956, + "2024-05-28T07": 7.33997628, + "2024-05-23T18": 7.073973909999999, + "2024-05-26T23": 7.5563712, + "2024-05-24T09": 7.14178475, + "2024-05-23T03": 7.5449415, + "2024-05-26T14": 7.55915630104559, + "2024-05-22T14": 7.55395988, + "2024-05-25T14": 7.2794904, + "2024-05-25T00": 7.237335030000001, + "2024-05-23T23": 7.19583244, + "2024-05-23T13": 7.2674555, + "2024-05-22T11": 7.59963182, + "2024-05-28T00": 7.6059104, + "2024-05-27T23": 7.60560592, + "2024-05-28T02": 7.5194315000000005, + "2024-05-26T21": 7.5132415, + "2024-05-26T12": 7.437715429354109, + "2024-05-23T06": 7.54624287, + "2024-05-22T07": 7.63162606, + "2024-05-27T12": 7.466769599999999, + "2024-05-22T21": 7.41525534, + "2024-05-24T00": 7.2507357, + "2024-05-25T02": 7.271399939999999, + "2024-05-27T00": 7.5172395000000005, + "2024-05-26T20": 7.550394203458755, + "2024-05-26T17": 7.52993164, + "2024-05-27T13": 7.499272479999999, + "2024-05-23T12": 7.38138135, + "2024-05-25T10": 7.305063876814956, + "2024-05-23T11": 7.4532715000000005, + "2024-05-24T14": 7.293817710000001, + "2024-05-25T01": 7.2655466, + "2024-05-27T21": 7.641274510000001, + "2024-05-27T03": 7.4815861847873535, + "2024-05-27T01": 7.52031324, + "2024-05-28T09": 7.40036976, + "2024-05-28T10": 7.4429225, + "2024-05-28T11": 7.40051792, + "2024-05-28T12": 7.36455428, + "2024-05-28T13": 7.335657, + "2024-05-28T14": 7.3057601299999995, + "2024-05-28T15": 7.30912296, + "2024-05-29": 7.340575795122915, + "2024-05-28T20": 7.4347068400000005, + "2024-05-28T22": 7.39419108, + "2024-05-28T21": 7.38730993, + "2024-05-28T19": 7.39988693, + "2024-05-29T02": 7.33551014, + "2024-05-28T17": 7.376616, + "2024-05-28T18": 7.3328225, + "2024-05-28T23": 7.3559315199999995, + "2024-05-29T00": 7.359305760000001, + "2024-05-29T01": 7.321130699999999, + "2024-05-28T16": 7.3502741, + "2024-05-29T06": 7.510900799999999, + "2024-05-29T05": 7.40824794, + "2024-05-29T03": 7.381167660000001, + "2024-05-29T07": 7.43995616, + "2024-05-29T04": 7.408173769999999, + "2024-05-29T08": 7.366625999999999, + "2024-05-29T09": 7.42915888, + "2024-05-29T10": 7.45176477, + "2024-05-29T11": 7.45960767, + "2024-05-29T12": 7.3528608, + "2024-05-29T13": 7.3192865000000005, + "2024-05-29T14": 7.2646201999999995, + "2024-05-29T15": 7.2543542400000005, + "2024-05-29T18": 7.2090726400000005, + "2024-05-29T17": 7.2354822, + "2024-05-29T23": 7.1773768, + "2024-05-29T19": 7.1879489, + "2024-05-29T22": 7.180021319999999, + "2024-05-29T20": 7.17046893, + "2024-05-29T16": 7.195032, + "2024-05-29T21": 7.157920444216314, + "2024-05-30": 7.058607057897079, + "2024-05-30T00": 7.168100519999999, + "2024-05-30T05": 7.145918529999999, + "2024-05-30T02": 7.20227469, + "2024-05-30T01": 7.185178112659993, + "2024-05-30T06": 7.059348, + "2024-05-30T07": 7.02164388, + "2024-05-30T03": 7.2143324, + "2024-05-30T04": 7.19742486, + "2024-05-30T08": 6.9698155999999996, + "2024-05-30T09": 7.0147886, + "2024-05-30T10": 7.0364096, + "2024-05-30T11": 7.04828626, + "2024-05-30T12": 7.059348, + "2024-05-30T13": 7.0847466, + "2024-05-30T14": 7.08373998, + "2024-05-30T15": 7.0501788, + "2024-05-30T21": 7.0025992, + "2024-05-30T20": 7.0086680999999995, + "2024-05-30T18": 7.0941550399999995, + "2024-05-30T22": 7.003547900000001, + "2024-05-30T16": 7.0534598399999995, + "2024-05-30T17": 7.10629858, + "2024-05-30T19": 7.05672956, + "2024-05-31": 6.9774395018811575, + "2024-05-30T23": 7.003547900000001, + "2024-05-31T03": 6.99464096, + "2024-05-31T07": 6.987903, + "2024-05-31T06": 6.977906000000001, + "2024-05-31T04": 6.99977862, + "2024-05-31T02": 6.9900629400000005, + "2024-05-31T05": 6.9471505, + "2024-05-31T00": 6.97004784, + "2024-05-31T01": 6.9893221599999995, + "2024-05-31T08": 6.99975936, + "2024-05-31T09": 6.98062578, + "2024-05-31T10": 6.981808399999999, + "2024-05-31T11": 6.97474281, + "2024-05-31T12": 7.021714139999999, + "2024-05-31T13": 7.014303577023123, + "2024-05-31T14": 6.9372435160000006, + "2024-06-01": 6.979451889178671, + "2024-06-01T08": 7.007217276007855, + "2024-06-01T02": 6.966956260000001, + "2024-06-01T05": 7.02251816, + "2024-05-31T21": 6.994307075, + "2024-06-01T00": 6.975877339999999, + "2024-05-31T18": 6.945320701218671, + "2024-05-31T15": 6.904264700000001, + "2024-05-31T23": 6.976946160000001, + "2024-05-31T22": 6.98695575, + "2024-06-01T01": 6.9629603, + "2024-06-01T07": 7.011397454755537, + "2024-06-01T04": 7.007599989999999, + "2024-05-31T19": 6.97478112, + "2024-06-01T06": 7.031440770000001, + "2024-05-31T20": 6.972769984425307, + "2024-05-31T17": 6.92538589, + "2024-05-31T16": 6.83945555, + "2024-06-01T03": 6.9824095999999995, + "2024-06-01T09": 7.052818123817421, + "2024-06-01T10": 7.04179776, + "2024-06-02": 7.060185838930547, + "2024-06-01T13": 7.1075973999999995, + "2024-06-01T15": 7.09882294, + "2024-06-01T18": 7.074697910000001, + "2024-06-01T12": 7.07184214, + "2024-06-01T21": 7.093681, + "2024-06-01T20": 7.074697910000001, + "2024-06-02T01": 7.074336, + "2024-06-01T17": 7.075235279999999, + "2024-06-01T11": 7.05678456, + "2024-06-02T00": 7.0563504, + "2024-06-01T23": 7.06113439, + "2024-06-01T14": 7.112239199999999, + "2024-06-01T22": 7.086829089999999, + "2024-06-01T19": 7.06470681, + "2024-06-01T16": 7.082549010000001, + "2024-06-02T13": 7.07390312, + "2024-06-02T11": 7.04399521, + "2024-06-02T07": 7.0462878799999995, + "2024-06-02T05": 7.07105532, + "2024-06-02T08": 7.05691536, + "2024-06-02T04": 7.07626358, + "2024-06-02T10": 7.0098089, + "2024-06-02T12": 7.07897036, + "2024-06-02T02": 7.06506036, + "2024-06-02T16": 7.04828626, + "2024-06-02T17": 6.994495164171786, + "2024-06-02T03": 7.072983998545996, + "2024-06-02T09": 7.003813340000001, + "2024-06-02T15": 7.09310783, + "2024-06-02T06": 7.0839735, + "2024-06-02T18": 6.96075135, + "2024-06-02T14": 7.09281846, + "2024-06-03": 6.98102645732175, + "2024-06-03T01": 7.03321416, + "2024-06-02T20": 6.981948119999999, + "2024-06-03T00": 6.96716595, + "2024-06-02T21": 7.0013097076740625, + "2024-06-02T23": 6.9862254, + "2024-06-02T19": 6.97488239, + "2024-06-02T22": 6.99721946, + "2024-06-03T02": 7.080402060000001, + "2024-06-03T05": 7.124722599999999, + "2024-06-03T06": 7.13343168, + "2024-06-03T04": 7.05790404, + "2024-06-03T03": 7.06782752, + "2024-06-03T07": 7.15834405 + }, + "USD tron": { + "2023-07-30": 0.08335304153060019, + "2023-07-27": 0.08241805864690703, + "2023-07-10": 0.0774556504823514, + "2023-08-20": 0.07409392556220697, + "2024-02-23": 0.13905785237765805, + "2024-04-05": 0.1191802966137585, + "2023-12-19": 0.10083031758823104, + "2023-08-06": 0.07745158085191299, + "2023-12-02": 0.10318843723240881, + "2023-10-12": 0.08599260767038396, + "2023-10-31": 0.09560803605785642, + "2023-08-29": 0.07632111571481572, + "2023-06-20": 0.07018039259138857, + "2023-09-09": 0.07917325631656483, + "2023-06-26": 0.07317033476034196, + "2023-05-03": 0.06933020978184286, + "2023-10-23": 0.09046719247743572, + "2023-10-01": 0.08859752761626977, + "2024-03-07": 0.13770963138002507, + "2023-07-05": 0.07706116448449873, + "2023-07-29": 0.08519727829215551, + "2024-01-08": 0.10284984312512704, + "2023-05-29": 0.0774915009100919, + "2023-10-07": 0.08726708320454553, + "2023-09-26": 0.08465473914087057, + "2023-08-24": 0.07765947532097317, + "2023-12-05": 0.10379328193351972, + "2023-05-10": 0.06908338284401262, + "2024-02-19": 0.1351627841712278, + "2024-01-07": 0.10393858128063685, + "2023-10-18": 0.08859464082208804, + "2023-04-25": 0.06618447008218822, + "2023-07-31": 0.08008529543969552, + "2023-05-23": 0.07820039977938453, + "2023-08-25": 0.0765294731403425, + "2024-03-09": 0.1369946481944032, + "2023-07-12": 0.07733867708377302, + "2023-09-05": 0.07746144192051972, + "2023-06-07": 0.0782838420602655, + "2023-09-16": 0.08403279892823283, + "2023-08-12": 0.0771292689211512, + "2023-05-09": 0.06838084699928347, + "2023-09-01": 0.07667473589030928, + "2023-09-08": 0.07902387131676249, + "2024-03-22": 0.12112897070363206, + "2023-08-10": 0.0767276037602476, + "2023-12-07": 0.10475573310569285, + "2023-11-18": 0.10361356208223706, + "2023-07-13": 0.07790589297060665, + "2023-04-30": 0.06801005748550148, + "2023-06-06": 0.07838578501490799, + "2023-09-13": 0.08077382545807202, + "2023-06-17": 0.0705400501613137, + "2023-07-17": 0.07980552585576103, + "2023-07-07": 0.07727470178223907, + "2023-09-07": 0.07888242542468885, + "2024-02-22": 0.13991224706470956, + "2024-04-15": 0.11256614813573292, + "2023-12-30": 0.10585855963311074, + "2023-09-17": 0.08347918744420833, + "2023-04-20": 0.06586470291439277, + "2024-03-26": 0.12034021719235061, + "2023-04-27": 0.06520861237902999, + "2024-04-17": 0.11190749105019897, + "2024-02-12": 0.12429689824208151, + "2023-10-26": 0.09347630675262271, + "2024-01-03": 0.10826915565933709, + "2023-06-01": 0.07533391309690335, + "2024-01-22": 0.10887638233939832, + "2023-06-12": 0.07022219721996639, + "2023-10-03": 0.08758930871543516, + "2023-06-19": 0.07018382860931731, + "2023-07-09": 0.08005393790002556, + "2023-12-24": 0.10680403031076299, + "2023-09-24": 0.08360339914636672, + "2024-01-16": 0.10880173138517835, + "2023-10-17": 0.08894232568492802, + "2024-03-18": 0.1259950131038099, + "2024-02-17": 0.1328779948544962, + "2023-12-27": 0.10304717957124315, + "2023-07-23": 0.08369591639611575, + "2023-09-03": 0.07698901442081685, + "2024-02-24": 0.13803104053171447, + "2024-01-06": 0.10441187469142159, + "2024-03-20": 0.11265695416141719, + "2023-11-21": 0.10092799115441119, + "2023-12-25": 0.10622761283726725, + "2023-09-22": 0.0830503876584663, + "2023-10-02": 0.09015186188366497, + "2024-03-27": 0.12072241300313605, + "2023-04-28": 0.06587501374154577, + "2023-08-04": 0.07719584144724578, + "2023-08-30": 0.07734393115692609, + "2023-04-24": 0.06677089655324801, + "2023-10-06": 0.08826435461225611, + "2023-10-13": 0.08483080735798303, + "2023-06-28": 0.07433880456989636, + "2024-02-05": 0.11834042189415553, + "2024-03-01": 0.14037594217212887, + "2023-07-15": 0.07978805320143387, + "2023-06-25": 0.07218811016342418, + "2023-12-10": 0.10671183602618534, + "2023-11-23": 0.10120920982016213, + "2024-01-13": 0.1067722791540202, + "2024-03-28": 0.119376402059192, + "2023-08-05": 0.07672877063520818, + "2024-02-09": 0.12185926447301473, + "2023-10-09": 0.08803002052409638, + "2023-05-24": 0.07855795973767657, + "2024-01-09": 0.10431667546687105, + "2023-12-08": 0.1041475083166051, + "2023-05-27": 0.0754726619613156, + "2023-08-18": 0.0724471604422715, + "2023-11-05": 0.09771703785985167, + "2024-04-18": 0.10917613667350833, + "2023-10-22": 0.09157991442303488, + "2023-11-01": 0.09722524527632509, + "2023-05-07": 0.07044145564895381, + "2024-04-12": 0.12024253402495604, + "2024-03-12": 0.1336687143938387, + "2023-09-11": 0.07831731658259272, + "2024-03-03": 0.14129771714382258, + "2024-02-04": 0.11722974915540736, + "2024-01-28": 0.11246446263724409, + "2023-04-18": 0.06587672707939388, + "2023-07-06": 0.07702158089291028, + "2023-07-01": 0.07614705043899082, + "2023-05-18": 0.07094254173293467, + "2023-11-07": 0.09770370088039071, + "2023-11-25": 0.10466010803767789, + "2023-06-04": 0.08193029988947277, + "2024-02-25": 0.13740668983683751, + "2023-12-01": 0.10344635891806371, + "2023-07-14": 0.08163390821193223, + "2024-01-26": 0.11213249953719338, + "2023-08-03": 0.0764545069712791, + "2024-02-28": 0.14296420301519636, + "2023-09-15": 0.08366422206710869, + "2023-07-18": 0.07994692077801062, + "2023-04-21": 0.06550174725095531, + "2023-12-21": 0.1028468416604582, + "2023-07-20": 0.08031233498403667, + "2024-03-06": 0.13635969985825802, + "2023-09-30": 0.08906066929016349, + "2023-12-12": 0.10386208795836177, + "2024-02-13": 0.12493598706222737, + "2023-05-19": 0.07035171424189966, + "2023-09-20": 0.08454877568665307, + "2023-09-19": 0.08400016039254654, + "2023-09-29": 0.08672903243869512, + "2023-09-12": 0.07750575463475655, + "2023-06-13": 0.07108633682060583, + "2023-10-04": 0.09078937855423796, + "2023-07-08": 0.07881316456312555, + "2024-04-16": 0.11145681883381504, + "2024-03-02": 0.14152236260708792, + "2023-06-27": 0.07379878515194331, + "2023-10-08": 0.08815053611249724, + "2023-11-20": 0.10338141544304102, + "2023-12-20": 0.1004617936253941, + "2023-12-31": 0.10593079141167505, + "2023-11-06": 0.0981731218970861, + "2023-08-22": 0.07517491825145736, + "2023-06-09": 0.07754630779809299, + "2024-03-17": 0.12501086823487356, + "2023-09-18": 0.08333118378440521, + "2024-04-01": 0.12303843275951662, + "2024-01-19": 0.10795311214833152, + "2023-11-11": 0.10626666560698517, + "2023-05-14": 0.06963515701817892, + "2023-05-13": 0.06929072430724433, + "2023-05-06": 0.0710838662273649, + "2023-11-19": 0.10296530143307973, + "2023-05-16": 0.0704806891522655, + "2023-09-23": 0.08337591894162029, + "2023-07-02": 0.07721818882289651, + "2023-08-15": 0.07740802006057806, + "2024-01-25": 0.10862825287246727, + "2024-03-13": 0.1313706394941621, + "2024-01-21": 0.10993872989099907, + "2024-02-01": 0.11219090744784926, + "2023-06-15": 0.07103752249450905, + "2024-03-16": 0.12622246294076198, + "2023-11-27": 0.10783562146950955, + "2024-01-10": 0.10278389334979518, + "2024-03-15": 0.12895023264278363, + "2023-06-21": 0.07049376995030697, + "2024-01-02": 0.10784550426646505, + "2023-04-26": 0.06598188199054679, + "2023-07-11": 0.07760628201214209, + "2023-10-25": 0.09237740703250112, + "2024-01-01": 0.10768490698667472, + "2024-02-14": 0.12706555704669423, + "2023-09-04": 0.07699795069433096, + "2023-09-06": 0.07740543824722244, + "2024-04-03": 0.1167969852119948, + "2024-03-08": 0.13717861648564847, + "2023-11-28": 0.10196173855524839, + "2023-12-03": 0.10321218767735023, + "2023-08-02": 0.07859051122612058, + "2023-08-27": 0.07743039133855409, + "2023-10-20": 0.09003740258457754, + "2023-05-25": 0.07693615261832451, + "2023-10-10": 0.08612976143185551, + "2024-04-11": 0.11913780044201852, + "2023-06-22": 0.07243107897930218, + "2024-01-14": 0.11416074559187059, + "2023-12-15": 0.10607529948803203, + "2023-10-19": 0.08917171553703657, + "2024-02-08": 0.12354853694141299, + "2023-11-08": 0.09662361656198235, + "2023-11-12": 0.10808310218560152, + "2023-12-22": 0.10452625053227457, + "2023-05-20": 0.07072900837744191, + "2023-05-31": 0.07646024151491981, + "2024-03-23": 0.1173061207688702, + "2024-04-10": 0.12104656143653088, + "2023-09-27": 0.08470876642692735, + "2024-03-04": 0.1407159377549307, + "2023-09-10": 0.07913403922810484, + "2024-04-13": 0.11468181173430196, + "2024-02-29": 0.14230207818143578, + "2023-07-22": 0.08045497207942869, + "2023-07-21": 0.08064506144773717, + "2023-06-30": 0.07448079456631812, + "2023-12-29": 0.1054903469479781, + "2023-12-04": 0.10313365672085424, + "2023-09-21": 0.08443043476367311, + "2023-06-02": 0.07482588393359672, + "2023-10-11": 0.08626581658101327, + "2023-07-19": 0.07979470553839346, + "2023-05-05": 0.06952719978821953, + "2024-03-21": 0.12083122765821343, + "2024-04-08": 0.1203763285107211, + "2023-04-29": 0.06675066032788897, + "2023-06-14": 0.07194792306851296, + "2023-10-05": 0.08898918666291401, + "2023-10-16": 0.08667092665214385, + "2024-02-10": 0.12379921790636249, + "2024-04-07": 0.11951395271992245, + "2023-05-21": 0.07272188707657402, + "2024-02-20": 0.1364546361049645, + "2023-11-17": 0.1024174622968552, + "2023-12-11": 0.10778918880998713, + "2023-11-26": 0.10885251761567694, + "2023-11-16": 0.10412633190560022, + "2023-06-29": 0.07375223420183159, + "2023-06-11": 0.06977180139657527, + "2024-02-02": 0.11556147422914786, + "2023-09-14": 0.08117488047723984, + "2024-01-27": 0.11451802764347202, + "2024-03-30": 0.11989764457635814, + "2023-05-04": 0.06925521527680521, + "2023-09-28": 0.08546427187922905, + "2023-10-27": 0.09286382636352276, + "2023-05-01": 0.06749479430973589, + "2023-05-15": 0.06947239666905088, + "2023-11-22": 0.09630979720243424, + "2023-06-03": 0.08272489168894318, + "2024-01-18": 0.10834290331321127, + "2023-08-26": 0.07718178312899829, + "2024-02-15": 0.12967245172435604, + "2023-10-28": 0.09357740384876963, + "2024-03-24": 0.11836059016250286, + "2023-04-22": 0.06497222382602523, + "2023-12-06": 0.10358683983897371, + "2023-11-10": 0.09898774792998433, + "2024-01-30": 0.11310070458393248, + "2023-08-09": 0.07681097493638314, + "2023-05-02": 0.06857628342906447, + "2023-11-14": 0.10698284387982353, + "2024-01-23": 0.10921728311993198, + "2024-01-31": 0.1121744390605971, + "2024-01-11": 0.10536832264266614, + "2024-02-18": 0.13585481473273833, + "2023-06-16": 0.07095858029880024, + "2023-10-30": 0.09488903072247729, + "2023-12-17": 0.10277232115755047, + "2024-02-26": 0.13755876159343805, + "2023-07-16": 0.08085989080550224, + "2024-01-05": 0.10708868377688043, + "2023-08-23": 0.0755355994857292, + "2024-03-11": 0.13398372479815143, + "2023-08-01": 0.0779807771391641, + "2024-03-14": 0.13196615591436067, + "2024-02-21": 0.13927465693768784, + "2023-08-28": 0.0775053084436327, + "2023-07-04": 0.07728972669631617, + "2023-12-13": 0.10361658409075868, + "2023-08-13": 0.07744168362430294, + "2024-03-31": 0.12244462572181093, + "2023-12-09": 0.10667880515103761, + "2024-04-02": 0.12045799029614603, + "2024-02-06": 0.118876357825891, + "2024-04-09": 0.12301374631996286, + "2023-05-30": 0.07614778854263828, + "2023-11-04": 0.09725569737972636, + "2024-01-15": 0.1113281646818296, + "2023-07-03": 0.07592573352832385, + "2023-12-28": 0.10543784391620314, + "2023-04-23": 0.06623560121978281, + "2023-04-17": 0.06657815977670571, + "2023-05-08": 0.06953895511834424, + "2024-02-27": 0.13982733087135324, + "2024-02-07": 0.12084998560730532, + "2023-09-25": 0.08353619320295048, + "2024-03-19": 0.12390750244038275, + "2024-03-10": 0.13608131361072281, + "2023-09-02": 0.07604410468661232, + "2024-01-12": 0.1060877683266292, + "2023-11-29": 0.10290122553300592, + "2023-10-15": 0.08506254820013552, + "2023-11-30": 0.1034336032301142, + "2024-01-24": 0.1071858231971934, + "2023-08-11": 0.07726537727670321, + "2024-02-11": 0.12434541914687634, + "2023-06-08": 0.07675534020690716, + "2023-08-16": 0.0762472614805025, + "2023-11-15": 0.10212583476314552, + "2023-12-16": 0.10138467850161978, + "2024-03-29": 0.12047770658013206, + "2024-04-04": 0.1169417292591971, + "2023-06-10": 0.07203536276226741, + "2023-07-28": 0.08255831183700714, + "2024-01-20": 0.11052728412737174, + "2023-10-21": 0.09070007072139309, + "2023-05-12": 0.06810038148057464, + "2023-11-03": 0.0992802991209704, + "2023-08-31": 0.07560637651671182, + "2024-01-29": 0.11219895166691252, + "2024-01-04": 0.1067953209696345, + "2023-05-22": 0.07531794702593828, + "2023-07-26": 0.08189213991256214, + "2023-11-13": 0.10847108360036954, + "2024-03-25": 0.12008614877138717, + "2023-08-07": 0.07681721087618426, + "2023-10-29": 0.09432591104427739, + "2023-07-25": 0.08154661935736747, + "2023-05-17": 0.07059709265029573, + "2023-10-24": 0.09221713971841423, + "2023-06-05": 0.0816867262271103, + "2023-11-02": 0.10023834461609088, + "2023-12-18": 0.1021174963129233, + "2023-11-24": 0.10212192500634439, + "2023-08-21": 0.07580241719426799, + "2023-08-14": 0.07709780264874198, + "2023-05-26": 0.07686832171352112, + "2024-03-05": 0.1405685378578941, + "2024-04-06": 0.11790553333892774, + "2023-12-23": 0.10513695898229534, + "2024-02-03": 0.11626365236992477, + "2024-02-16": 0.1311523179060346, + "2023-05-28": 0.07722022381187035, + "2023-12-14": 0.10436216228317274, + "2023-06-24": 0.0731201868989998, + "2023-12-26": 0.10593823554042119, + "2023-11-09": 0.09841085410742503, + "2023-05-11": 0.06955626065572577, + "2023-08-19": 0.07299470336012635, + "2023-06-23": 0.07182067455499348, + "2023-06-18": 0.07160175068458766, + "2023-08-08": 0.07675149770980479, + "2023-08-17": 0.07473598319490088, + "2024-04-14": 0.10997365003467226, + "2023-07-24": 0.08332613284225981, + "2023-10-14": 0.08542903802229197, + "2024-01-17": 0.10815407880297552, + "2023-04-19": 0.06677862240085775, + "2024-04-14T03": 0.10925350800000001, + "2024-04-11T16": 0.11933374079999999, + "2024-04-16T02": 0.11105996719999998, + "2024-04-13T04": 0.114316002, + "2024-04-18T09": 0.10948298660000001, + "2024-04-12T19": 0.11408, + "2024-04-15T06": 0.1145512737, + "2024-04-14T19": 0.1110155277, + "2024-04-15T01": 0.1120419928, + "2024-04-17T20": 0.1101533904, + "2024-04-11T17": 0.1195372836, + "2024-04-18T10": 0.109461888, + "2024-04-12T14": 0.12048816779999999, + "2024-04-12T20": 0.1142831325, + "2024-04-15T12": 0.11423069639999998, + "2024-04-14T23": 0.11252340329758007, + "2024-04-13T07": 0.1143531528, + "2024-04-14T20": 0.110913264, + "2024-04-17T00": 0.11205696659999999, + "2024-04-15T00": 0.1124255808, + "2024-04-14T01": 0.10962060509999999, + "2024-04-17T22": 0.110097798, + "2024-04-17T09": 0.11276071950000001, + "2024-04-15T14": 0.11321806660000001, + "2024-04-15T20": 0.11128672080000002, + "2024-04-16T10": 0.11032631760000002, + "2024-04-16T18": 0.1104987222, + "2024-04-18T04": 0.10979231399999999, + "2024-04-15T02": 0.112341016, + "2024-04-15T16": 0.11213603999999999, + "2024-04-14T05": 0.11071648140000001, + "2024-04-17T08": 0.112613774, + "2024-04-14T13": 0.1110866253, + "2024-04-14T10": 0.1116124332, + "2024-04-13T14": 0.11411281799999999, + "2024-04-17T10": 0.112646295, + "2024-04-14T15": 0.11083323999999999, + "2024-04-14T12": 0.1107864723, + "2024-04-16T09": 0.11156457430000001, + "2024-04-17T02": 0.1122002859, + "2024-04-11T23": 0.12036083149999999, + "2024-04-12T09": 0.12160689029999999, + "2024-04-14T18": 0.1111544472, + "2024-04-14T09": 0.11160784520970786, + "2024-04-16T20": 0.11095882200000001, + "2024-04-18T00": 0.10898346060000001, + "2024-04-15T23": 0.11146451680000001, + "2024-04-12T22": 0.11467897760000001, + "2024-04-12T00": 0.12158851059999999, + "2024-04-15T13": 0.1143193714, + "2024-04-18T08": 0.109281852, + "2024-04-13T20": 0.109778648, + "2024-04-17T05": 0.112712538, + "2024-04-15T18": 0.11087762640000001, + "2024-04-16T01": 0.11131115840000001, + "2024-04-14T11": 0.11081427240000001, + "2024-04-11T20": 0.11980119800000001, + "2024-04-13T13": 0.11447316830069468, + "2024-04-12T16": 0.1200963152, + "2024-04-17T03": 0.11242247999999999, + "2024-04-16T06": 0.1110843916, + "2024-04-17T12": 0.11197484080000002, + "2024-04-11T22": 0.120012, + "2024-04-15T05": 0.11337817700000001, + "2024-04-12T12": 0.121697391, + "2024-04-17T14": 0.11015294289999998, + "2024-04-13T03": 0.11391391690000001, + "2024-04-18T07": 0.109341864, + "2024-04-16T00": 0.11121113040000001, + "2024-04-12T03": 0.121362135, + "2024-04-17T23": 0.10982525135306669, + "2024-04-13T23": 0.1101542244, + "2024-04-14T14": 0.110514188, + "2024-04-11T15": 0.1192413752, + "2024-04-16T13": 0.11021076290000001, + "2024-04-17T16": 0.10957890420000001, + "2024-04-16T22": 0.11175686759999999, + "2024-04-15T15": 0.112254978, + "2024-04-16T12": 0.110752146, + "2024-04-18T13": 0.10801455360000002, + "2024-04-16T05": 0.11030504160000001, + "2024-04-17T17": 0.11005779880000001, + "2024-04-12T13": 0.120760136, + "2024-04-12T23": 0.11465469789999999, + "2024-04-17T15": 0.1095343812, + "2024-04-15T19": 0.1107364898, + "2024-04-18T01": 0.10941686839999999, + "2024-04-11T21": 0.1197883846, + "2024-04-12T02": 0.12182609100000001, + "2024-04-16T14": 0.11011302399999999, + "2024-04-11T19": 0.11964, + "2024-04-16T08": 0.1115212476, + "2024-04-18T02": 0.10968232169999999, + "2024-04-12T05": 0.12162216099999999, + "2024-04-13T11": 0.114381437, + "2024-04-16T23": 0.1119491685, + "2024-04-12T01": 0.1220648824, + "2024-04-16T21": 0.111442284, + "2024-04-14T02": 0.10963763999999998, + "2024-04-12T10": 0.1216873945, + "2024-04-16T15": 0.109562415, + "2024-04-12T11": 0.1218324668, + "2024-04-17T06": 0.112693798, + "2024-04-13T00": 0.1150906176, + "2024-04-18T03": 0.11001559920000001, + "2024-04-13T08": 0.11406192840000001, + "2024-04-13T06": 0.11430313829999998, + "2024-04-15T04": 0.11259663269999999, + "2024-04-16T04": 0.1104396052, + "2024-04-14T16": 0.11140450360000002, + "2024-04-16T07": 0.11145126450000001, + "2024-04-18T05": 0.10980219599999999, + "2024-04-13T02": 0.113768435, + "2024-04-15T09": 0.11507644500000001, + "2024-04-13T05": 0.1146032253, + "2024-04-15T17": 0.11142791240000001, + "2024-04-16T16": 0.10929462, + "2024-04-15T21": 0.11095549440000002, + "2024-04-12T17": 0.1179861703, + "2024-04-17T01": 0.112188131, + "2024-04-14T21": 0.11073321, + "2024-04-15T07": 0.1151624034, + "2024-04-18T12": 0.1084757852, + "2024-04-15T22": 0.11146340240000001, + "2024-04-13T22": 0.1090093144, + "2024-04-15T08": 0.1151970337, + "2024-04-14T22": 0.111630132, + "2024-04-17T19": 0.1103233802, + "2024-04-12T07": 0.12157756839999999, + "2024-04-12T18": 0.11530270649999999, + "2024-04-14T04": 0.10998526258251214, + "2024-04-16T17": 0.1102686624, + "2024-04-17T11": 0.11242966320000002, + "2024-04-13T21": 0.10829278049999999, + "2024-04-13T09": 0.11403192000000001, + "2024-04-14T08": 0.11197596, + "2024-04-15T11": 0.11428873679999998, + "2024-04-11T14": 0.1192040395, + "2024-04-17T13": 0.11198596499999999, + "2024-04-14T06": 0.111364554, + "2024-04-13T19": 0.11158018850000001, + "2024-04-14T07": 0.11165475859999999, + "2024-04-13T16": 0.11287257, + "2024-04-15T10": 0.11522280780000001, + "2024-04-12T06": 0.121508505, + "2024-04-13T15": 0.11374274399999999, + "2024-04-12T15": 0.1204061509, + "2024-04-11T18": 0.1195688043, + "2024-04-17T18": 0.110734463, + "2024-04-12T08": 0.1215333672, + "2024-04-18T06": 0.10921528800000001, + "2024-04-17T04": 0.112715778, + "2024-04-12T04": 0.12137577679999999, + "2024-04-13T17": 0.111932382, + "2024-04-16T19": 0.11070877679999999, + "2024-04-15T03": 0.1126302696, + "2024-04-17T21": 0.11019118400000001, + "2024-04-13T18": 0.11173686099999999, + "2024-04-13T10": 0.11408991750000001, + "2024-04-16T11": 0.11077875900000002, + "2024-04-12T21": 0.1145089198, + "2024-04-14T00": 0.109770615, + "2024-04-18T11": 0.109672892, + "2024-04-17T07": 0.11241809750000001, + "2024-04-13T01": 0.11427742, + "2024-04-14T17": 0.11079315520000001, + "2024-04-16T03": 0.111124432, + "2024-04-13T12": 0.114371436, + "latest": 0.113148, + "2024-04-18T14": 0.10893444, + "2024-04-18T15": 0.10926006, + "2024-04-19": 0.10935239319594797, + "2024-04-18T20": 0.1089709896, + "2024-04-18T19": 0.10892443499999999, + "2024-04-19T01": 0.10755010560000001, + "2024-04-19T03": 0.107306438, + "2024-04-18T21": 0.1091081745, + "2024-04-19T06": 0.10784018680000002, + "2024-04-18T18": 0.10849096679999999, + "2024-04-18T16": 0.10902448499999999, + "2024-04-18T23": 0.10932261919999998, + "2024-04-19T04": 0.10762582400000001, + "2024-04-19T05": 0.1071589251, + "2024-04-19T00": 0.10899011239999999, + "2024-04-18T22": 0.109182745, + "2024-04-18T17": 0.1089120445, + "2024-04-19T02": 0.1060295418, + "2024-04-19T07": 0.10836708500000002, + "2024-04-19T08": 0.1087578324, + "2024-04-19T09": 0.108997938, + "2024-04-19T10": 0.1089007395, + "2024-04-19T11": 0.10907685212817467, + "2024-04-19T12": 0.1092609735, + "2024-04-19T13": 0.1095055067, + "2024-04-19T14": 0.1097382636, + "2024-04-19T15": 0.11015394900000001, + "2024-04-20": 0.10994204076052658, + "2024-04-19T22": 0.11052308719999998, + "2024-04-19T23": 0.1097249688, + "2024-04-19T20": 0.11040642209999998, + "2024-04-19T19": 0.11042318400000001, + "2024-04-19T21": 0.11046644189999999, + "2024-04-19T16": 0.1101684528, + "2024-04-19T17": 0.110400761, + "2024-04-20T00": 0.11000288439999999, + "2024-04-19T18": 0.1103608184, + "2024-04-20T01": 0.110137434, + "2024-04-21": 0.11101869826084311, + "2024-04-20T16": 0.11026196669999998, + "2024-04-20T19": 0.110673192, + "2024-04-20T15": 0.10980744500000002, + "2024-04-20T02": 0.11032860150000001, + "2024-04-20T09": 0.10934169989999999, + "2024-04-20T04": 0.10973861066169921, + "2024-04-20T10": 0.10926167669999998, + "2024-04-20T22": 0.11088768900000001, + "2024-04-21T00": 0.11092992039999999, + "2024-04-20T12": 0.10961301390000001, + "2024-04-21T04": 0.11104662000000001, + "2024-04-20T05": 0.1098706371, + "2024-04-20T18": 0.1108087695, + "2024-04-20T11": 0.10950518039999999, + "2024-04-20T23": 0.1110444131, + "2024-04-20T08": 0.1094160954, + "2024-04-20T13": 0.10968412520000001, + "2024-04-21T02": 0.1112811588, + "2024-04-21T01": 0.1111066531, + "2024-04-20T20": 0.11092326699999999, + "2024-04-20T03": 0.109758402, + "2024-04-20T14": 0.1096363064, + "2024-04-20T07": 0.1094071858, + "2024-04-20T17": 0.11081877300000001, + "2024-04-20T21": 0.11093327, + "2024-04-20T06": 0.1098517278, + "2024-04-21T03": 0.11124781599999999, + "2024-04-21T16": 0.1104976175, + "2024-04-21T11": 0.1110033058, + "2024-04-21T17": 0.11062433200000002, + "2024-04-21T08": 0.1110438558581045, + "2024-04-21T12": 0.111132222, + "2024-04-21T15": 0.1107855078, + "2024-04-21T06": 0.11099548949999999, + "2024-04-21T07": 0.1109443821, + "2024-04-21T14": 0.11079436940000001, + "2024-04-21T13": 0.11088771500000001, + "2024-04-21T05": 0.11111664940000002, + "2024-04-21T10": 0.11092218, + "2024-04-21T09": 0.11099550720000001, + "2024-04-21T19": 0.11111333329999999, + "2024-04-21T22": 0.11140336679999999, + "2024-04-21T23": 0.1113411508, + "2024-04-21T21": 0.11136779520000001, + "2024-04-21T20": 0.111241123, + "2024-04-21T18": 0.110942184, + "2024-04-22": 0.1114170679284613, + "2024-04-22T00": 0.11140225290000001, + "2024-04-22T07": 0.1117336519, + "2024-04-22T05": 0.1116079708, + "2024-04-22T04": 0.11137006179999999, + "2024-04-22T02": 0.11061548400000001, + "2024-04-22T01": 0.11096331399999998, + "2024-04-22T06": 0.11181587999999999, + "2024-04-22T03": 0.1110499936, + "2024-04-22T08": 0.1108231696, + "2024-04-22T09": 0.11091323929999998, + "2024-04-22T10": 0.11112665360000001, + "2024-04-22T11": 0.11096434590000001, + "2024-04-22T12": 0.111234476, + "2024-04-22T13": 0.1112767092, + "2024-04-22T14": 0.11144456, + "2024-04-22T15": 0.111256712, + "2024-04-22T16": 0.11165468400000002, + "2024-04-23": 0.11234602447781501, + "2024-04-23T03": 0.11144125900000001, + "2024-04-22T19": 0.11198253720000001, + "2024-04-22T17": 0.11186360979999999, + "2024-04-22T23": 0.112423717, + "2024-04-22T20": 0.11201247419999999, + "2024-04-22T21": 0.11213363, + "2024-04-22T18": 0.11200702320000001, + "2024-04-23T06": 0.11231285999999999, + "2024-04-22T22": 0.11224366300000001, + "2024-04-23T04": 0.111581336, + "2024-04-23T01": 0.11175356689999999, + "2024-04-23T07": 0.11197036400000002, + "2024-04-23T00": 0.11238381259999998, + "2024-04-23T05": 0.11199138879090587, + "2024-04-23T02": 0.1116746938, + "2024-04-23T08": 0.11221701939999999, + "2024-04-23T09": 0.112159242, + "2024-04-23T10": 0.1122282374, + "2024-04-23T11": 0.1122427293, + "2024-04-23T12": 0.1122615214, + "2024-04-23T13": 0.1124260758, + "2024-04-23T14": 0.11280186499999999, + "2024-04-23T15": 0.112823837, + "2024-04-23T16": 0.11282917769999999, + "2024-04-24": 0.11334043522133501, + "2024-04-24T02": 0.11278844466171664, + "2024-04-24T00": 0.1133267992, + "2024-04-24T01": 0.112731272, + "2024-04-23T23": 0.11325792750000001, + "2024-04-24T06": 0.11357454280000001, + "2024-04-23T22": 0.11346262084159243, + "2024-04-23T18": 0.1133160567, + "2024-04-23T20": 0.113561355, + "2024-04-23T21": 0.11358567900000001, + "2024-04-24T04": 0.11349, + "2024-04-24T05": 0.11345794149999999, + "2024-04-24T03": 0.11299006086170704, + "2024-04-24T07": 0.11359886400000001, + "2024-04-23T19": 0.11343268199999999, + "2024-04-23T17": 0.11317828750000002, + "2024-04-24T08": 0.1134520578, + "2024-04-24T09": 0.11345886540000001, + "2024-04-24T10": 0.113478651, + "2024-04-24T11": 0.11376203609999999, + "2024-04-24T12": 0.11391901297119579, + "2024-04-24T13": 0.1137197643, + "2024-04-24T14": 0.1134495754, + "2024-04-24T15": 0.11316112560000001, + "2024-04-25": 0.11524362513375892, + "2024-04-24T18": 0.11379762900000001, + "2024-04-25T00": 0.113593175, + "2024-04-24T21": 0.1136165148, + "2024-04-24T17": 0.11369444933820756, + "2024-04-24T16": 0.113236552, + "2024-04-24T20": 0.11367987360000001, + "2024-04-24T23": 0.1131477345, + "2024-04-24T22": 0.113369232, + "2024-04-24T19": 0.11381217602998808, + "2024-04-25T01": 0.1140083343, + "2024-04-25T03": 0.1142102976, + "2024-04-25T05": 0.1139780772, + "2024-04-25T04": 0.1139715, + "2024-04-25T02": 0.1138183704, + "2024-04-25T06": 0.1139949156, + "2024-04-25T07": 0.11397378000000001, + "2024-04-25T08": 0.1141291768, + "2024-04-25T09": 0.11452709, + "2024-04-25T10": 0.1144882431, + "2024-04-25T11": 0.1150612275, + "2024-04-25T12": 0.115573752, + "2024-04-25T13": 0.11541955109999999, + "2024-04-25T14": 0.11599152459999999, + "2024-04-25T15": 0.116455914, + "2024-04-25T16": 0.11663880689999999, + "2024-04-25T17": 0.11675977169999999, + "2024-04-25T18": 0.1169902098, + "2024-04-25T19": 0.117100797, + "2024-04-26": 0.1185326261569889, + "2024-04-25T22": 0.11705531759999999, + "2024-04-25T21": 0.11733, + "2024-04-25T20": 0.11725073400000001, + "2024-04-26T01": 0.1168335049, + "2024-04-25T23": 0.11718828, + "2024-04-26T00": 0.1171630463, + "2024-04-26T05": 0.1173400488, + "2024-04-26T07": 0.11675883240000001, + "2024-04-26T02": 0.117345306, + "2024-04-26T03": 0.1176264711, + "2024-04-26T04": 0.11707712009999999, + "2024-04-26T06": 0.117, + "2024-04-26T08": 0.11709234179999999, + "2024-04-26T09": 0.11788821000000001, + "2024-04-26T10": 0.1180558316, + "2024-04-26T11": 0.11839342259999999, + "2024-04-26T12": 0.1186398278, + "2024-04-26T13": 0.118906214, + "2024-04-26T14": 0.1190849869, + "2024-04-26T15": 0.11915662680000001, + "2024-04-26T21": 0.120306674, + "2024-04-26T22": 0.11993800700000001, + "2024-04-26T17": 0.1196657073, + "2024-04-26T19": 0.1202926977, + "2024-04-26T16": 0.11946176, + "2024-04-26T18": 0.1199152145, + "2024-04-26T20": 0.12003277829999999, + "2024-04-27": 0.12014758338148518, + "2024-04-26T23": 0.120054362, + "2024-04-27T00": 0.1197228744, + "2024-04-27T01": 0.1191890028, + "2024-04-28": 0.11965813178829786, + "2024-04-27T13": 0.1203117465, + "2024-04-28T00": 0.1198784272, + "2024-04-27T20": 0.1200383184, + "2024-04-27T23": 0.11984844759999999, + "2024-04-27T06": 0.11947066679999999, + "2024-04-27T05": 0.11912994439999999, + "2024-04-27T02": 0.1188878916, + "2024-04-27T18": 0.11985724140000001, + "2024-04-27T07": 0.12034774799999999, + "2024-04-27T04": 0.1189621529, + "2024-04-27T21": 0.11999954640000002, + "2024-04-27T09": 0.12015305280000001, + "2024-04-27T14": 0.1203529248, + "2024-04-27T22": 0.119868434, + "2024-04-27T16": 0.1202881484, + "2024-04-27T10": 0.1198896201, + "2024-04-27T17": 0.12042925830000001, + "2024-04-27T08": 0.1197569037, + "2024-04-27T12": 0.120041922, + "2024-04-27T15": 0.12033534580000001, + "2024-04-27T11": 0.1199855628, + "2024-04-27T03": 0.1187791094, + "2024-04-27T19": 0.119955972, + "2024-04-28T01": 0.120061909, + "2024-04-28T20": 0.1205053965, + "2024-04-28T14": 0.12053211679999999, + "2024-04-28T05": 0.1204764645, + "2024-04-28T08": 0.1207090707, + "2024-04-28T16": 0.1204230167, + "2024-04-28T11": 0.12127083620000001, + "2024-04-28T22": 0.121311456, + "2024-04-28T03": 0.120367736, + "2024-04-28T13": 0.12063448260000001, + "2024-04-28T15": 0.1204581807, + "2024-04-28T04": 0.1203125872, + "2024-04-28T09": 0.1206839212, + "2024-04-28T19": 0.120404229, + "2024-04-28T06": 0.12082899030000001, + "2024-04-28T12": 0.12124420200000001, + "2024-04-28T02": 0.1201574075, + "2024-04-28T17": 0.1204518, + "2024-04-28T21": 0.12107518560000001, + "2024-04-28T18": 0.1203642442, + "2024-04-28T07": 0.12083382670000001, + "2024-04-28T10": 0.12106657840634857, + "2024-04-29": 0.11896553439559318, + "2024-04-28T23": 0.1213450857, + "2024-04-29T00": 0.121164852, + "2024-04-29T01": 0.12073135360000001, + "2024-04-29T02": 0.12084857119999999, + "2024-04-29T05": 0.12011077919999999, + "2024-04-29T03": 0.12037712399999999, + "2024-04-29T04": 0.12019475379999998, + "2024-04-29T06": 0.11983041280000001, + "2024-04-29T07": 0.1188804888, + "2024-04-29T08": 0.11858051280000001, + "2024-04-29T09": 0.1187240635, + "2024-04-29T10": 0.1189728612, + "2024-04-29T11": 0.118996196, + "2024-04-29T12": 0.1186739704975412, + "2024-04-29T13": 0.118121644, + "2024-04-29T14": 0.1180999196, + "2024-04-29T15": 0.11812, + "2024-04-30": 0.11898361896656658, + "2024-04-30T04": 0.119684084, + "2024-04-29T21": 0.11885957400000001, + "2024-04-30T03": 0.11965451399999999, + "2024-04-29T22": 0.11903045500000001, + "2024-04-29T19": 0.1190111854, + "2024-04-29T23": 0.1190899612, + "2024-04-29T18": 0.11890502469999999, + "2024-04-30T00": 0.11916900799999999, + "2024-04-29T20": 0.119245122, + "2024-04-30T01": 0.1196393088, + "2024-04-30T02": 0.11909710959999999, + "2024-04-29T16": 0.118192908, + "2024-04-29T17": 0.11853458850000001, + "2024-04-30T05": 0.119872423, + "2024-04-30T06": 0.12030834060000001, + "2024-04-30T07": 0.1205894963, + "2024-04-30T08": 0.1197596374, + "2024-04-30T09": 0.1194817536, + "2024-04-30T10": 0.12001719239999999, + "2024-04-30T11": 0.11927614, + "2024-04-30T12": 0.11827740479999999, + "2024-04-30T13": 0.11815572490000001, + "2024-04-30T14": 0.11905520939999999, + "2024-04-30T15": 0.11859455039999998, + "2024-04-30T16": 0.118269522, + "2024-05-01": 0.11971213710815505, + "2024-04-30T22": 0.1190574112, + "2024-04-30T17": 0.1187473048, + "2024-04-30T20": 0.1183916448, + "2024-04-30T23": 0.11937051, + "2024-04-30T19": 0.1179995176, + "2024-04-30T18": 0.1181859048, + "2024-05-01T01": 0.1196830014, + "2024-05-01T00": 0.11966541839999999, + "2024-04-30T21": 0.11894326735723655, + "2024-05-01T02": 0.1200381876, + "2024-05-01T03": 0.1201057, + "2024-05-01T05": 0.1201360288, + "2024-05-01T04": 0.119963086, + "2024-05-01T06": 0.1201971555, + "2024-05-01T07": 0.1191695171, + "2024-05-01T08": 0.117550521, + "2024-05-01T11": 0.1186522036, + "2024-05-01T09": 0.11846490600000001, + "2024-05-01T10": 0.1185511327, + "2024-05-01T12": 0.11925389539999999, + "2024-05-01T13": 0.119695774, + "2024-05-01T15": 0.11960749749999999, + "2024-05-01T16": 0.119643062, + "2024-05-01T14": 0.1196957904, + "2024-05-01T21": 0.11977607250000001, + "2024-05-01T20": 0.1198364128, + "2024-05-01T17": 0.1198224369, + "2024-05-01T19": 0.1200925668, + "2024-05-01T18": 0.120385364, + "2024-05-01T22": 0.1199446248, + "2024-05-02": 0.12051367224202765, + "2024-05-02T03": 0.12040947, + "2024-05-02T01": 0.120297527, + "2024-05-02T02": 0.12024565799999999, + "2024-05-01T23": 0.12027655200000001, + "2024-05-02T00": 0.1205463789, + "2024-05-02T04": 0.1213951017, + "2024-05-02T06": 0.1224305604, + "2024-05-02T07": 0.12245422199999999, + "2024-05-02T05": 0.12160436599999999, + "2024-05-02T08": 0.1217544654, + "2024-05-02T09": 0.12209769840000001, + "2024-05-02T10": 0.1222235374, + "2024-05-02T11": 0.1225358712, + "2024-05-02T12": 0.1227144025, + "2024-05-02T13": 0.12285788160000001, + "2024-05-02T14": 0.1231527562, + "2024-05-02T15": 0.123196304, + "2024-05-02T16": 0.12317123170000001, + "2024-05-02T17": 0.12317246339999999, + "2024-05-03T04": 0.1225315312126232, + "2024-05-03T02": 0.12260716260000001, + "2024-05-03T03": 0.1227459549, + "2024-05-03T05": 0.1223685652, + "2024-05-03T06": 0.12228467239999999, + "2024-05-03T00": 0.1225010241, + "2024-05-03T01": 0.1225685792, + "2024-05-03T07": 0.12205228794152385, + "2024-05-03T08": 0.12216122160000001, + "2024-05-03T09": 0.1222334442, + "2024-05-03T10": 0.12206976480000001, + "2024-05-03T11": 0.12204877950000001, + "2024-05-03T13": 0.12289, + "2024-05-03T12": 0.12247265120000002, + "2024-05-03T14": 0.1231284665, + "2024-05-03": 0.12271311347366085, + "2024-05-04": 0.1227238286853319, + "2024-05-04T05": 0.122735583, + "2024-05-03T18": 0.1233659014, + "2024-05-04T03": 0.12261696980000002, + "2024-05-03T17": 0.1234782664, + "2024-05-03T21": 0.1237330717, + "2024-05-03T20": 0.12375580281001378, + "2024-05-04T06": 0.1227543616, + "2024-05-03T22": 0.12348307489999999, + "2024-05-03T19": 0.123507041, + "2024-05-04T02": 0.12256695880000001, + "2024-05-03T15": 0.12323249964339626, + "2024-05-03T16": 0.12340207619999999, + "2024-05-04T01": 0.122640458, + "2024-05-04T04": 0.12257431120000001, + "2024-05-03T23": 0.123348087, + "2024-05-04T00": 0.1226929275, + "2024-05-04T13": 0.12297967359999999, + "2024-05-04T10": 0.12333246659999998, + "2024-05-04T12": 0.123152314, + "2024-05-04T07": 0.1228021004, + "2024-05-04T11": 0.12341234, + "2024-05-04T09": 0.12311969599999999, + "2024-05-04T15": 0.12272454000000001, + "2024-05-04T08": 0.1230833814, + "2024-05-04T14": 0.12286502517797582, + "2024-05-05": 0.12124928146273238, + "2024-05-05T01": 0.12154579889999999, + "2024-05-04T19": 0.12264613200000002, + "2024-05-04T20": 0.122604904, + "2024-05-05T05": 0.1211957534, + "2024-05-05T07": 0.12131213, + "2024-05-04T23": 0.122342233, + "2024-05-04T22": 0.122372236, + "2024-05-04T21": 0.12250244999999998, + "2024-05-05T00": 0.12186827750000001, + "2024-05-05T08": 0.12149336280000002, + "2024-05-04T17": 0.1226373578, + "2024-05-05T09": 0.1213545608, + "2024-05-05T10": 0.12125818600000002, + "2024-05-05T04": 0.1211457469, + "2024-05-04T16": 0.12268840050000002, + "2024-05-05T06": 0.121222121, + "2024-05-05T03": 0.1210757378, + "2024-05-04T18": 0.12268736079999999, + "2024-05-05T02": 0.121215756, + "2024-05-05T21": 0.12086329350000001, + "2024-05-05T16": 0.1213136393, + "2024-05-05T22": 0.12080449479999998, + "2024-05-05T17": 0.12121090799999999, + "2024-05-05T20": 0.12086329350000001, + "2024-05-05T13": 0.1211875424034922, + "2024-05-05T15": 0.121308491, + "2024-05-05T12": 0.12111937599999999, + "2024-05-05T18": 0.12114180160000002, + "2024-05-05T14": 0.12116301659999999, + "2024-05-05T19": 0.12101935999999999, + "2024-05-05T11": 0.1212794016, + "2024-05-05T23": 0.12104089269999999, + "2024-05-06T00": 0.121222121, + "2024-05-06T04": 0.1208172486, + "2024-05-06T02": 0.12109089719999998, + "2024-05-06T05": 0.12127606350000002, + "2024-05-06T06": 0.12146242919999999, + "2024-05-06T01": 0.1211805972, + "2024-05-06T03": 0.1208772522, + "2024-05-06T08": 0.12187, + "2024-05-06T07": 0.1216672996, + "2024-05-06T09": 0.12177, + "2024-05-06T10": 0.12103, + "2024-05-06T11": 0.12023961840000001, + "2024-05-06T13": 0.1191283384, + "2024-05-06T12": 0.119101909, + "2024-05-06T15": 0.11892713519999999, + "2024-05-06T17": 0.1189588104, + "2024-05-06T14": 0.118931892, + "2024-05-06T16": 0.11901189999999999, + "2024-05-06": 0.1193843870066327, + "2024-05-07": 0.11877693309999998, + "2024-05-06T22": 0.1188435652, + "2024-05-07T01": 0.11879574279999999, + "2024-05-07T00": 0.1185876282, + "2024-05-06T21": 0.11902047760000001, + "2024-05-06T20": 0.11889454170000001, + "2024-05-06T23": 0.11868881310000001, + "2024-05-07T04": 0.1185652572, + "2024-05-06T19": 0.11891524319999999, + "2024-05-07T03": 0.11845763079999999, + "2024-05-07T02": 0.1189685818, + "2024-05-07T05": 0.1186252548, + "2024-05-06T18": 0.11904, + "2024-05-07T06": 0.118603558, + "2024-05-07T07": 0.11947955760000002, + "2024-05-07T08": 0.11982239639999999, + "2024-05-07T09": 0.12002, + "2024-05-07T10": 0.1199247968, + "2024-05-07T11": 0.12010600500000002, + "2024-05-07T12": 0.11974119740000001, + "2024-05-07T13": 0.12030202899999999, + "2024-05-07T14": 0.1202187978, + "2024-05-07T15": 0.1205455328, + "2024-05-08": 0.12246471985375842, + "2024-05-09": 0.1255078960768683, + "2024-05-10": 0.12619815139898857, + "2024-05-09T13": 0.1260308288, + "2024-05-10T00": 0.1261223404, + "2024-05-08T08": 0.121737825, + "2024-05-09T14": 0.1265141784, + "2024-05-08T10": 0.1224053096, + "2024-05-09T04": 0.1238867855, + "2024-05-10T01": 0.125997399, + "2024-05-08T03": 0.1211554596, + "2024-05-09T07": 0.1239967294, + "2024-05-09T11": 0.12523988400000002, + "2024-05-09T00": 0.1233081888, + "2024-05-09T01": 0.1233057216, + "2024-05-10T06": 0.12670498213778827, + "2024-05-09T19": 0.1264248272, + "2024-05-10T05": 0.1265135511, + "2024-05-10T02": 0.126088651, + "2024-05-09T23": 0.1261535979, + "2024-05-09T06": 0.12424535880000001, + "2024-05-08T01": 0.121447854, + "2024-05-09T09": 0.12445774000000001, + "2024-05-09T20": 0.1260811737, + "2024-05-08T19": 0.1232779394, + "2024-05-09T03": 0.1236868875, + "2024-05-08T21": 0.1227868386, + "2024-05-09T22": 0.1261872822, + "2024-05-08T17": 0.1233240965, + "2024-05-09T05": 0.1241141846, + "2024-05-08T06": 0.1212193892, + "2024-05-08T15": 0.1225842519, + "2024-05-10T08": 0.1249650024, + "2024-05-08T07": 0.12126452909999999, + "2024-05-08T04": 0.1214054296, + "2024-05-09T15": 0.1266504463, + "2024-05-08T18": 0.1235215835, + "2024-05-09T10": 0.12473135999999999, + "2024-05-09T21": 0.12609855960000002, + "2024-05-10T03": 0.12652987680000002, + "2024-05-08T00": 0.1210787892, + "2024-05-10T07": 0.1265922746, + "2024-05-08T14": 0.1226119785, + "2024-05-09T17": 0.126563286, + "2024-05-08T13": 0.1225905712, + "2024-05-08T05": 0.1214393518, + "2024-05-09T18": 0.126622002, + "2024-05-09T08": 0.12438653050000001, + "2024-05-08T20": 0.1228403424, + "2024-05-08T22": 0.1227719289, + "2024-05-08T11": 0.1225301968, + "2024-05-09T12": 0.12570466560000002, + "2024-05-08T02": 0.12059455471466511, + "2024-05-10T04": 0.12660739589375214, + "2024-05-08T12": 0.122786492, + "2024-05-09T02": 0.1236256812, + "2024-05-08T09": 0.121686613, + "2024-05-09T16": 0.1263057775, + "2024-05-08T16": 0.12317550120000001, + "2024-05-08T23": 0.12279963149999999, + "2024-05-10T09": 0.1248950108, + "2024-05-10T10": 0.12487285237778346, + "2024-05-10T11": 0.12489251259999999, + "2024-05-10T12": 0.124798752, + "2024-05-10T13": 0.12533871849999997, + "2024-05-10T14": 0.1256886293, + "2024-05-11": 0.12672616410147106, + "2024-05-12": 0.1268212751891834, + "2024-05-12T16": 0.12687922799999998, + "2024-05-11T03": 0.1267307013, + "2024-05-10T17": 0.126871927, + "2024-05-11T16": 0.12603956400000002, + "2024-05-10T15": 0.1257673578, + "2024-05-11T04": 0.1266857856, + "2024-05-11T12": 0.1265130435, + "2024-05-12T15": 0.126669312, + "2024-05-11T11": 0.1268841464, + "2024-05-12T04": 0.1269079464, + "2024-05-12T11": 0.1264129656, + "2024-05-11T22": 0.12673271869581013, + "2024-05-11T21": 0.126672126, + "2024-05-10T21": 0.12667297064532512, + "2024-05-10T23": 0.12712948159999998, + "2024-05-12T00": 0.12663199900000002, + "2024-05-12T03": 0.12679926, + "2024-05-12T12": 0.12659287019999999, + "2024-05-11T08": 0.1267970242, + "2024-05-11T17": 0.12618708180000002, + "2024-05-12T19": 0.1269217514, + "2024-05-11T23": 0.12645711259999998, + "2024-05-11T05": 0.1266857856, + "2024-05-12T02": 0.126919212, + "2024-05-11T02": 0.126814482, + "2024-05-10T16": 0.12608963839999998, + "2024-05-12T14": 0.12663298950000001, + "2024-05-11T09": 0.12689445959999998, + "2024-05-10T18": 0.127101858, + "2024-05-10T19": 0.127038992, + "2024-05-11T06": 0.12689699819999997, + "2024-05-12T08": 0.12686431239999998, + "2024-05-10T20": 0.12685558500000002, + "2024-05-11T18": 0.126329448, + "2024-05-12T05": 0.126739284, + "2024-05-12T06": 0.126869232, + "2024-05-11T20": 0.1268455885, + "2024-05-12T09": 0.1265281022, + "2024-05-11T01": 0.1270107808, + "2024-05-11T00": 0.127470675, + "2024-05-12T07": 0.1268855745, + "2024-05-12T10": 0.1266342564, + "2024-05-11T10": 0.1268054502, + "2024-05-12T01": 0.12679926, + "2024-05-12T18": 0.1270055325, + "2024-05-12T13": 0.1265804792, + "2024-05-11T19": 0.126619332, + "2024-05-12T17": 0.1270055325, + "2024-05-11T14": 0.12640447800000001, + "2024-05-11T07": 0.12706568299999998, + "2024-05-11T15": 0.126144472, + "2024-05-11T13": 0.1264683346392447, + "2024-05-10T22": 0.126668325, + "2024-05-13": 0.12617679653222352, + "2024-05-12T21": 0.1268781164, + "2024-05-13T00": 0.1273575642, + "2024-05-13T03": 0.1265945436, + "2024-05-12T23": 0.12723017369999998, + "2024-05-13T04": 0.1264458504, + "2024-05-13T01": 0.12701552900000002, + "2024-05-13T05": 0.1261546668, + "2024-05-13T02": 0.1266307323, + "2024-05-13T07": 0.126660723, + "2024-05-13T06": 0.126314622, + "2024-05-12T22": 0.1270853298, + "2024-05-12T20": 0.12693220484439324, + "2024-05-13T08": 0.126896681, + "2024-05-13T10": 0.12639942, + "2024-05-13T09": 0.12699536849999998, + "2024-05-13T11": 0.12608711579999998, + "2024-05-13T12": 0.126152044, + "2024-05-13T13": 0.12605334299999998, + "2024-05-13T14": 0.12597471720000003, + "2024-05-13T15": 0.126069736, + "2024-05-13T16": 0.12612477000000002, + "2024-05-14": 0.1251432520685889, + "2024-05-13T17": 0.12590607329999998, + "2024-05-14T01": 0.125484898, + "2024-05-14T02": 0.1254061312, + "2024-05-14T06": 0.1250449428, + "2024-05-13T19": 0.12610873890000002, + "2024-05-13T22": 0.12588741, + "2024-05-14T04": 0.1255621598, + "2024-05-13T21": 0.126092434, + "2024-05-14T03": 0.12543474000000002, + "2024-05-14T00": 0.12560613029999998, + "2024-05-14T07": 0.1250137076, + "2024-05-13T20": 0.12614369250000002, + "2024-05-14T05": 0.12564959679999999, + "2024-05-13T23": 0.125691201, + "2024-05-13T18": 0.1259160714, + "2024-05-14T08": 0.1250461939, + "2024-05-14T09": 0.12485004319999998, + "2024-05-14T10": 0.12486128760000001, + "2024-05-14T11": 0.12497497920000002, + "2024-05-14T12": 0.1250424256, + "2024-05-14T13": 0.1250824008, + "2024-05-14T14": 0.1248812752, + "2024-05-14T15": 0.12505492199999999, + "2024-05-14T16": 0.12517111799999997, + "2024-05-14T17": 0.12499495799999998, + "2024-05-14T18": 0.1251897984, + "2024-05-14T19": 0.12528478399999998, + "2024-05-14T20": 0.1253597984, + "2024-05-15": 0.12577566174517862, + "2024-05-15T02": 0.1253934633, + "2024-05-15T01": 0.1254534267, + "2024-05-14T21": 0.1254898304, + "2024-05-15T05": 0.125303588, + "2024-05-15T00": 0.12550344789999998, + "2024-05-15T06": 0.125303588, + "2024-05-15T03": 0.125444688, + "2024-05-15T07": 0.12538045367511494, + "2024-05-14T23": 0.125294846, + "2024-05-15T04": 0.125347295, + "2024-05-14T22": 0.1254910394, + "2024-05-15T08": 0.12552107640000001, + "2024-05-15T09": 0.1256698896, + "2024-05-15T10": 0.1256361785, + "2024-05-15T11": 0.1253724454, + "2024-05-15T12": 0.1257161697, + "2024-05-15T13": 0.1259049636, + "2024-05-15T14": 0.1258874822, + "2024-05-15T15": 0.1260564663, + "2024-05-15T18": 0.12620929050000002, + "2024-05-15T19": 0.1263170064, + "2024-05-15T17": 0.126277775, + "2024-05-15T16": 0.12618784500000002, + "2024-05-16": 0.12512976924292424, + "2024-05-16T04": 0.12472618700000002, + "2024-05-16T06": 0.124652464, + "2024-05-15T22": 0.12627310499999997, + "2024-05-16T07": 0.12474, + "2024-05-16T03": 0.126621522, + "2024-05-16T05": 0.12485122109999999, + "2024-05-15T21": 0.12632088560000002, + "2024-05-16T02": 0.12656657340000002, + "2024-05-16T00": 0.1263542085, + "2024-05-15T23": 0.126270488, + "2024-05-15T20": 0.12645477, + "2024-05-16T01": 0.12647781900000002, + "2024-05-16T08": 0.12469875300000001, + "2024-05-16T09": 0.1245638046, + "2024-05-16T10": 0.1246000312, + "2024-05-16T11": 0.12461744400000001, + "2024-05-16T12": 0.125014998, + "2024-05-16T13": 0.1251900384, + "2024-05-16T14": 0.1250562558, + "2024-05-16T15": 0.1251625252, + "2024-05-17": 0.12499912774632901, + "2024-05-17T00": 0.12499875, + "2024-05-16T23": 0.1250900064, + "2024-05-16T22": 0.125110008, + "2024-05-16T17": 0.1256512038, + "2024-05-16T20": 0.1252287654, + "2024-05-16T18": 0.12528248260000002, + "2024-05-16T21": 0.125210016, + "2024-05-17T01": 0.1248774922, + "2024-05-16T19": 0.12536, + "2024-05-17T03": 0.1245499632, + "2024-05-17T02": 0.12472748319999999, + "2024-05-16T16": 0.1255325918, + "2024-05-17T06": 0.124072406, + "2024-05-17T04": 0.124292428, + "2024-05-17T07": 0.124308701, + "2024-05-17T05": 0.124152414, + "2024-05-17T08": 0.12415489679999998, + "2024-05-17T09": 0.12415489679999998, + "2024-05-18": 0.12431096092685907, + "2024-05-19": 0.1230422937967674, + "2024-05-20": 0.12117958282027953, + "2024-05-21": 0.12442826505085694, + "2024-05-20T04": 0.1217102624, + "2024-05-18T11": 0.123644724, + "2024-05-18T17": 0.123338498, + "2024-05-20T15": 0.12209546172045796, + "2024-05-20T16": 0.1221, + "2024-05-19T00": 0.12293212380000001, + "2024-05-18T18": 0.1232847924, + "2024-05-21T06": 0.12315630520000001, + "2024-05-20T23": 0.1242247732, + "2024-05-18T13": 0.12349456880000001, + "2024-05-19T17": 0.12101331, + "2024-05-20T11": 0.1219263421, + "2024-05-21T07": 0.1233550656, + "2024-05-21T05": 0.1230663079, + "2024-05-19T23": 0.12122908839999999, + "2024-05-19T13": 0.120722071, + "2024-05-18T06": 0.12428727499999999, + "2024-05-19T07": 0.1222910052, + "2024-05-18T14": 0.1234396184, + "2024-05-18T21": 0.12310338519999998, + "2024-05-18T20": 0.12315216340000001, + "2024-05-20T18": 0.12219252019999999, + "2024-05-20T17": 0.122234442, + "2024-05-20T00": 0.121133943, + "2024-05-18T01": 0.12417600059999999, + "2024-05-20T10": 0.12162661959999999, + "2024-05-18T12": 0.12374958720000001, + "2024-05-18T09": 0.12444363979999999, + "2024-05-20T21": 0.12292652019999999, + "2024-05-18T16": 0.123194634, + "2024-05-20T06": 0.12163486520000001, + "2024-05-20T03": 0.121447854, + "2024-05-18T03": 0.12442607309999999, + "2024-05-19T01": 0.1223120122, + "2024-05-18T02": 0.12428603249999999, + "2024-05-19T06": 0.1222685582, + "2024-05-21T00": 0.1243949256, + "2024-05-20T12": 0.1220275594, + "2024-05-19T12": 0.121132112, + "2024-05-18T04": 0.12435605279999999, + "2024-05-18T10": 0.123584712, + "2024-05-20T07": 0.12162513479999999, + "2024-05-19T22": 0.12127151039999999, + "2024-05-19T20": 0.1213163604, + "2024-05-19T14": 0.120913299, + "2024-05-18T15": 0.1232581982, + "2024-05-19T21": 0.1211787882, + "2024-05-19T02": 0.12244203560000001, + "2024-05-19T11": 0.12159094219999998, + "2024-05-20T05": 0.12190756180000001, + "2024-05-19T09": 0.122082207, + "2024-05-20T14": 0.12197365909999999, + "2024-05-21T02": 0.12388619400000002, + "2024-05-18T19": 0.1232421796, + "2024-05-18T00": 0.12434599099999999, + "2024-05-21T10": 0.12371570564057811, + "2024-05-18T22": 0.1230921526, + "2024-05-19T16": 0.12106452599999999, + "2024-05-20T02": 0.12128636129999999, + "2024-05-18T05": 0.12434604989999999, + "2024-05-21T08": 0.12388311039959782, + "2024-05-20T19": 0.12287017690000002, + "2024-05-18T08": 0.1244223414, + "2024-05-21T01": 0.12385362240000002, + "2024-05-18T07": 0.1242760925, + "2024-05-20T13": 0.1219424388, + "2024-05-19T18": 0.1210796856, + "2024-05-20T20": 0.1229563606, + "2024-05-19T04": 0.12236345850000001, + "2024-05-20T01": 0.12111878880000002, + "2024-05-20T08": 0.12159392, + "2024-05-20T22": 0.12365820789999998, + "2024-05-21T04": 0.1230387696, + "2024-05-19T15": 0.12097330560000001, + "2024-05-19T10": 0.1219473164, + "2024-05-19T05": 0.12230856100000001, + "2024-05-21T09": 0.12396520200000001, + "2024-05-19T03": 0.12243469039999999, + "2024-05-19T19": 0.12116878830000001, + "2024-05-21T03": 0.12378, + "2024-05-18T23": 0.12304214360000001, + "2024-05-19T08": 0.122262225, + "2024-05-20T09": 0.121477851, + "2024-05-21T11": 0.1237516251, + "2024-05-26": 0.11367494602358336, + "2024-05-25": 0.11400328928035267, + "2024-05-28": 0.11244333617874817, + "2024-05-24": 0.1146521046535852, + "2024-05-27": 0.11207193562810779, + "2024-05-23": 0.11708997441645076, + "2024-05-22": 0.12146209025783777, + "2024-05-22T20": 0.12034555679999999, + "2024-05-25T08": 0.1140854893, + "2024-05-22T05": 0.123272874, + "2024-05-28T03": 0.11158178070000001, + "2024-05-22T16": 0.12100095279999999, + "2024-05-25T05": 0.114874032, + "2024-05-24T22": 0.1153438496, + "2024-05-27T14": 0.111519648, + "2024-05-22T03": 0.1236240335, + "2024-05-23T17": 0.1153057653, + "2024-05-24T23": 0.1154192208, + "2024-05-26T19": 0.1130789044, + "2024-05-26T18": 0.1129713403551413, + "2024-05-26T10": 0.1137678903, + "2024-05-27T16": 0.11197903089999998, + "2024-05-24T12": 0.1144304652, + "2024-05-26T01": 0.11379861899999999, + "2024-05-23T07": 0.11892741, + "2024-05-22T08": 0.123545286, + "2024-05-23T09": 0.11846089499999998, + "2024-05-24T18": 0.11492251, + "2024-05-23T01": 0.1195689887, + "2024-05-25T15": 0.113458653, + "2024-05-23T16": 0.1154702705, + "2024-05-25T03": 0.11458300169999999, + "2024-05-28T06": 0.1104327336, + "2024-05-25T23": 0.11373066250000001, + "2024-05-24T13": 0.11433135999999999, + "2024-05-26T03": 0.1136274996, + "2024-05-26T00": 0.1137152151, + "2024-05-25T06": 0.1148851773, + "2024-05-27T04": 0.11314000399999999, + "2024-05-22T10": 0.1221931116, + "2024-05-27T09": 0.11129095680000001, + "2024-05-24T17": 0.114701805, + "2024-05-26T16": 0.1132224266, + "2024-05-22T09": 0.122265542, + "2024-05-24T21": 0.1153096212, + "2024-05-25T04": 0.11473433484629825, + "2024-05-27T22": 0.1121454948, + "2024-05-27T11": 0.1113409258, + "2024-05-23T21": 0.11461397499999999, + "2024-05-23T10": 0.118018679, + "2024-05-23T14": 0.11594316, + "2024-05-27T02": 0.1130432651, + "2024-05-25T18": 0.113231685, + "2024-05-27T05": 0.11292576959999999, + "2024-05-22T23": 0.1200559505, + "2024-05-28T01": 0.112050288, + "2024-05-22T04": 0.1232467144, + "2024-05-22T15": 0.12122483460000001, + "2024-05-24T03": 0.11475224608590685, + "2024-05-24T08": 0.11352706759999999, + "2024-05-24T02": 0.11471639119999999, + "2024-05-26T07": 0.11381787180000001, + "2024-05-27T07": 0.1120938256, + "2024-05-25T22": 0.11354955740000001, + "2024-05-24T16": 0.1144918932, + "2024-05-27T20": 0.111985658, + "2024-05-22T02": 0.12374772140000001, + "2024-05-24T06": 0.11428969039999999, + "2024-05-24T11": 0.11434135399999999, + "2024-05-25T21": 0.11352729, + "2024-05-27T15": 0.1116339122, + "2024-05-22T19": 0.1203047307, + "2024-05-23T20": 0.11395447, + "2024-05-23T08": 0.1187011134, + "2024-05-22T22": 0.120241884, + "2024-05-26T11": 0.113908718, + "2024-05-24T01": 0.115433808, + "2024-05-23T05": 0.119126096, + "2024-05-28T04": 0.1110988386, + "2024-05-25T09": 0.1140389312, + "2024-05-27T18": 0.112086678, + "2024-05-24T10": 0.114041809, + "2024-05-25T19": 0.113431635, + "2024-05-24T07": 0.1138881024, + "2024-05-26T04": 0.11378040939999999, + "2024-05-26T09": 0.11360454, + "2024-05-23T02": 0.119387886, + "2024-05-27T06": 0.1123760336, + "2024-05-28T08": 0.11072292433044921, + "2024-05-24T15": 0.11465264500000001, + "2024-05-25T20": 0.1134616275, + "2024-05-27T08": 0.11204273399999999, + "2024-05-23T22": 0.1148587434, + "2024-05-26T15": 0.113721726, + "2024-05-24T20": 0.115298469, + "2024-05-25T13": 0.1133741254, + "2024-05-22T01": 0.1237551476, + "2024-05-25T17": 0.113275074, + "2024-05-27T10": 0.1110921924, + "2024-05-24T19": 0.11512430039999999, + "2024-05-26T02": 0.1135175117, + "2024-05-27T19": 0.11178698100000001, + "2024-05-25T11": 0.11416287300000001, + "2024-05-27T17": 0.11212439280000001, + "2024-05-26T06": 0.113861274, + "2024-05-23T00": 0.11979647419999999, + "2024-05-22T12": 0.1212493841, + "2024-05-22T00": 0.12370772860000001, + "2024-05-24T05": 0.11463691499999999, + "2024-05-23T15": 0.1156466744, + "2024-05-22T13": 0.12133665149999999, + "2024-05-23T04": 0.11932597200000002, + "2024-05-26T08": 0.1136422502, + "2024-05-26T13": 0.1137735808, + "2024-05-28T05": 0.11085457619999999, + "2024-05-22T18": 0.1203755532, + "2024-05-22T06": 0.1234128432, + "2024-05-22T17": 0.1208206656, + "2024-05-23T19": 0.11448457719999999, + "2024-05-25T07": 0.11493515779999999, + "2024-05-26T22": 0.1130724896, + "2024-05-25T16": 0.113384124, + "2024-05-26T05": 0.11392581200000002, + "2024-05-24T04": 0.11483565600000001, + "2024-05-25T12": 0.1137420375, + "2024-05-28T07": 0.1105792506, + "2024-05-23T18": 0.11474847070000001, + "2024-05-26T23": 0.11314566399999999, + "2024-05-24T09": 0.113828754, + "2024-05-23T03": 0.11940994170000001, + "2024-05-26T14": 0.1137156336, + "2024-05-22T14": 0.12132723279999999, + "2024-05-25T14": 0.1134120606, + "2024-05-25T00": 0.11551342580000001, + "2024-05-23T23": 0.1150393604, + "2024-05-23T13": 0.11654919350000001, + "2024-05-22T11": 0.1216580976, + "2024-05-28T00": 0.11241, + "2024-05-27T23": 0.11233555880000001, + "2024-05-28T02": 0.1116872902, + "2024-05-26T21": 0.11284355, + "2024-05-26T12": 0.113913536, + "2024-05-23T06": 0.11892502999999999, + "2024-05-22T07": 0.12349776640000001, + "2024-05-27T12": 0.11137198499999999, + "2024-05-22T21": 0.1202754816, + "2024-05-24T00": 0.11527810150000001, + "2024-05-25T02": 0.115724535, + "2024-05-27T00": 0.11290352000000001, + "2024-05-26T20": 0.1128910944, + "2024-05-26T17": 0.1130289314, + "2024-05-27T13": 0.111529692, + "2024-05-23T12": 0.117542376, + "2024-05-25T10": 0.1140591957, + "2024-05-23T11": 0.11788103000000001, + "2024-05-24T14": 0.1146885133, + "2024-05-25T01": 0.115566882, + "2024-05-27T21": 0.11212663760000001, + "2024-05-27T03": 0.1129932946, + "2024-05-27T01": 0.1129146447, + "2024-05-28T09": 0.11098556700000001, + "2024-05-28T10": 0.11155168979999999, + "2024-05-28T11": 0.1115771931, + "2024-05-28T12": 0.1115272436, + "2024-05-28T13": 0.11116872, + "2024-05-28T14": 0.1110000011, + "2024-05-28T15": 0.1109755848, + "2024-05-29": 0.1117929944056099, + "2024-05-28T20": 0.111190926, + "2024-05-28T22": 0.11123756719999998, + "2024-05-28T21": 0.111154197, + "2024-05-28T19": 0.1111231502, + "2024-05-29T02": 0.11111654539999999, + "2024-05-28T17": 0.11110878, + "2024-05-28T18": 0.110841275, + "2024-05-28T23": 0.1111232192, + "2024-05-29T00": 0.1110088548, + "2024-05-29T01": 0.11106268688989626, + "2024-05-28T16": 0.111043282, + "2024-05-29T06": 0.11131514549999999, + "2024-05-29T05": 0.1116281232, + "2024-05-29T03": 0.1114117782, + "2024-05-29T07": 0.1113396232, + "2024-05-29T04": 0.1116569699, + "2024-05-29T08": 0.11113875000000001, + "2024-05-29T09": 0.1114174016, + "2024-05-29T10": 0.1116016413, + "2024-05-29T11": 0.1118191893, + "2024-05-29T12": 0.1118713794, + "2024-05-29T13": 0.11191264000000001, + "2024-05-29T14": 0.1119371052, + "2024-05-29T15": 0.1120082688, + "2024-05-29T18": 0.112192192, + "2024-05-29T17": 0.11210901100000001, + "2024-05-29T23": 0.112005432, + "2024-05-29T19": 0.1122598774, + "2024-05-29T22": 0.1120654691, + "2024-05-29T20": 0.1120579344, + "2024-05-29T16": 0.1119027338, + "2024-05-29T21": 0.1119670429424829, + "2024-05-30": 0.11157094465112394, + "2024-05-30T00": 0.11206087199999999, + "2024-05-30T05": 0.1112797239, + "2024-05-30T02": 0.1119244074, + "2024-05-30T01": 0.11200806642187752, + "2024-05-30T06": 0.11101112, + "2024-05-30T07": 0.1112110064, + "2024-05-30T03": 0.11126632, + "2024-05-30T04": 0.11134733879999999, + "2024-05-30T08": 0.11084475696720628, + "2024-05-30T09": 0.11091341199999999, + "2024-05-30T10": 0.1112732217, + "2024-05-30T11": 0.1113497336, + "2024-05-30T12": 0.111470752, + "2024-05-30T13": 0.111612992, + "2024-05-30T14": 0.11160863639999999, + "2024-05-30T15": 0.111635328, + "2024-05-30T21": 0.111847626, + "2024-05-30T20": 0.11177875799999999, + "2024-05-30T18": 0.112070854, + "2024-05-30T22": 0.1119108175, + "2024-05-30T16": 0.1118497196, + "2024-05-30T17": 0.112057402, + "2024-05-30T19": 0.11201983280000001, + "2024-05-31": 0.11190387506256494, + "2024-05-30T23": 0.11196080000000001, + "2024-05-31T03": 0.11213614879999999, + "2024-05-31T07": 0.111626502, + "2024-05-31T06": 0.111506538, + "2024-05-31T04": 0.1122783282, + "2024-05-31T02": 0.1119629558, + "2024-05-31T05": 0.11139430959999999, + "2024-05-31T00": 0.11199863160000001, + "2024-05-31T01": 0.11204310320000001, + "2024-05-31T08": 0.111864192, + "2024-05-31T09": 0.111712005, + "2024-05-31T10": 0.111792884, + "2024-05-31T11": 0.11185172880000001, + "2024-05-31T12": 0.11199164340000001, + "2024-05-31T13": 0.11160076460000001, + "2024-05-31T14": 0.1117062911, + "2024-06-01": 0.11190957815259062, + "2024-06-01T08": 0.1115673222, + "2024-06-01T02": 0.111087688, + "2024-06-01T05": 0.11107329519999999, + "2024-05-31T21": 0.1121286558, + "2024-06-01T00": 0.11197566819999999, + "2024-05-31T18": 0.1118990184, + "2024-05-31T15": 0.1118370981, + "2024-05-31T23": 0.11202673860000001, + "2024-05-31T22": 0.11207096999999999, + "2024-06-01T01": 0.1118968699, + "2024-06-01T07": 0.11157084791192863, + "2024-06-01T04": 0.1110444299, + "2024-05-31T19": 0.1120419092, + "2024-06-01T06": 0.1112520414, + "2024-05-31T20": 0.1121286558, + "2024-05-31T17": 0.11189928810000001, + "2024-05-31T16": 0.1117294258, + "2024-06-01T03": 0.111131024, + "2024-06-01T09": 0.1116927427, + "2024-06-01T10": 0.11183150160000001, + "2024-06-02": 0.11251239031236446, + "2024-06-01T13": 0.111859236, + "2024-06-01T15": 0.11202673860000001, + "2024-06-01T18": 0.1124698127, + "2024-06-01T12": 0.11187258609999999, + "2024-06-01T21": 0.11268961690000001, + "2024-06-01T20": 0.11274956350000001, + "2024-06-02T01": 0.112629824, + "2024-06-01T17": 0.11222015199999999, + "2024-06-01T11": 0.1119314136, + "2024-06-02T00": 0.112549888, + "2024-06-01T23": 0.1126664092, + "2024-06-01T14": 0.11192786549999999, + "2024-06-01T22": 0.11274182919999999, + "2024-06-01T19": 0.1126496525, + "2024-06-01T16": 0.1120579344, + "2024-06-02T13": 0.1140578192, + "2024-06-02T11": 0.1139090671, + "2024-06-02T07": 0.1132182189, + "2024-06-02T05": 0.11311490360000001, + "2024-06-02T08": 0.1135581792, + "2024-06-02T04": 0.1129064887082998, + "2024-06-02T10": 0.1137857362, + "2024-06-02T12": 0.11395903160000001, + "2024-06-02T02": 0.11261532360000001, + "2024-06-02T16": 0.1145971011, + "2024-06-02T17": 0.1144555555, + "2024-06-02T03": 0.11275407750000001, + "2024-06-02T09": 0.113615862, + "2024-06-02T15": 0.11469472430000001, + "2024-06-02T06": 0.11327078808004698, + "2024-06-02T18": 0.114230277, + "2024-06-02T14": 0.1144863639, + "2024-06-03": 0.11470521181025815, + "2024-06-03T01": 0.1149317932, + "2024-06-02T20": 0.114683445, + "2024-06-03T00": 0.114836805, + "2024-06-02T21": 0.1150993327531399, + "2024-06-02T23": 0.114787981, + "2024-06-02T19": 0.1145923506, + "2024-06-02T22": 0.1151078082, + "2024-06-03T02": 0.11480922900000001, + "2024-06-03T05": 0.112972176, + "2024-06-03T06": 0.11312755199999999, + "2024-06-03T04": 0.113184315, + "2024-06-03T03": 0.11349299959999999, + "2024-06-03T07": 0.1133174304 + }, + "USD ripple": { + "2023-07-30": 0.7119138787475057, + "2023-07-27": 0.7151907665821414, + "2023-07-10": 0.47107192799679604, + "2023-08-20": 0.5386739904589001, + "2024-02-23": 0.5360836098757141, + "2024-04-05": 0.5826599753069248, + "2023-12-19": 0.6086556203861139, + "2023-08-06": 0.6300174627164999, + "2023-12-02": 0.613860748828646, + "2023-10-12": 0.4812712557864653, + "2023-10-31": 0.5959201489838595, + "2023-08-29": 0.5223866757750875, + "2023-06-20": 0.486685574984226, + "2023-09-09": 0.5033240984467872, + "2023-06-26": 0.48301260050731637, + "2023-05-03": 0.4574804817916988, + "2023-10-23": 0.5300450139495917, + "2023-10-01": 0.5179940538223412, + "2024-03-07": 0.6232573181862266, + "2023-07-05": 0.4780131615130516, + "2023-07-29": 0.7112332119711848, + "2024-01-08": 0.5649625600549449, + "2023-05-29": 0.4817002778725695, + "2023-10-07": 0.5226944330595431, + "2023-09-26": 0.5016176653522085, + "2023-08-24": 0.523311652826322, + "2023-12-05": 0.6159381240647693, + "2023-05-10": 0.4294489701941067, + "2024-02-19": 0.5599936593369889, + "2024-01-07": 0.5672147371457784, + "2023-10-18": 0.48956327659596577, + "2023-04-25": 0.4582575669135096, + "2023-07-31": 0.7038512751976902, + "2023-05-23": 0.461582881108612, + "2023-08-25": 0.5168536169277435, + "2024-03-09": 0.6239090175065756, + "2023-07-12": 0.4732185736865301, + "2023-09-05": 0.5033080084273504, + "2023-06-07": 0.5265816531737217, + "2023-09-16": 0.5003079768910675, + "2023-08-12": 0.6295179372251352, + "2023-05-09": 0.42490959639556825, + "2023-09-01": 0.5044358780354955, + "2023-09-08": 0.5033329505393392, + "2024-03-22": 0.6202767917447577, + "2023-08-10": 0.6323259761760792, + "2023-12-07": 0.6363787074515419, + "2023-11-18": 0.6063414834032266, + "2023-07-13": 0.6901122470601545, + "2023-04-30": 0.47586840377825856, + "2023-06-06": 0.50992969997237, + "2023-09-13": 0.48061716211755345, + "2023-06-17": 0.4796345825464759, + "2023-07-17": 0.740396835368482, + "2023-07-07": 0.46667379063032066, + "2023-09-07": 0.5003956580194687, + "2024-02-22": 0.5438089552154346, + "2024-04-15": 0.49892065689864407, + "2023-12-30": 0.6231017358008017, + "2023-09-17": 0.49671338245428304, + "2023-04-20": 0.4905636637380553, + "2024-03-26": 0.6423033544594439, + "2023-04-27": 0.4622205777862645, + "2024-04-17": 0.49513835977425136, + "2024-02-12": 0.5245073759756504, + "2023-10-26": 0.5542474939353886, + "2024-01-03": 0.5817851044495774, + "2023-06-01": 0.5065487039897766, + "2024-01-22": 0.5311522763852767, + "2023-06-12": 0.5179590191222802, + "2023-10-03": 0.5109750942557013, + "2023-06-19": 0.49051835201487626, + "2023-07-09": 0.469599729224073, + "2023-12-24": 0.6197689373492972, + "2023-09-24": 0.508547549393652, + "2024-01-16": 0.5750767907052247, + "2023-10-17": 0.4914638276604435, + "2024-03-18": 0.6115351670880099, + "2024-02-17": 0.5527084946099224, + "2023-12-27": 0.6287855019162999, + "2023-07-23": 0.7393237365504124, + "2023-09-03": 0.5032068212073162, + "2024-02-24": 0.5440430543005237, + "2024-01-06": 0.568100519431602, + "2024-03-20": 0.5928489223269618, + "2023-11-21": 0.6077765004491317, + "2023-12-25": 0.6365332247000748, + "2023-09-22": 0.5109603437954485, + "2023-10-02": 0.5218256659760975, + "2024-03-27": 0.6195742932603288, + "2023-04-28": 0.4726964670921817, + "2023-08-04": 0.6608770230963643, + "2023-08-30": 0.5297393576595327, + "2023-04-24": 0.46303085456974175, + "2023-10-06": 0.5229759753328108, + "2023-10-13": 0.4823262602430139, + "2023-06-28": 0.4738719091682448, + "2024-02-05": 0.504887865134874, + "2024-03-01": 0.5927586430974036, + "2023-07-15": 0.7200715054465789, + "2023-06-25": 0.49033703185313765, + "2023-12-10": 0.6613313766253665, + "2023-11-23": 0.6135839379519356, + "2024-01-13": 0.5737128841044961, + "2024-03-28": 0.6217604041595591, + "2023-08-05": 0.6250706314210613, + "2024-02-09": 0.521566204415892, + "2023-10-09": 0.5022821648900945, + "2023-05-24": 0.45464493298699193, + "2024-01-09": 0.5694415942192175, + "2023-12-08": 0.6494986218774896, + "2023-05-27": 0.4715038094070001, + "2023-08-18": 0.5040505623134511, + "2023-11-05": 0.6417474233984382, + "2024-04-18": 0.49530695238061556, + "2023-10-22": 0.5199157164076664, + "2023-11-01": 0.6007845649216997, + "2023-05-07": 0.4577578327624478, + "2024-04-12": 0.5938708230448095, + "2024-03-12": 0.6944540817340468, + "2023-09-11": 0.4739372392694539, + "2024-03-03": 0.6266720233237513, + "2024-02-04": 0.5116111574363491, + "2024-01-28": 0.53000857245379, + "2023-04-18": 0.5185007015738914, + "2023-07-06": 0.47405080686835493, + "2023-07-01": 0.4705392265025971, + "2023-05-18": 0.45946295179617436, + "2023-11-07": 0.6854103720576444, + "2023-11-25": 0.6201399371989148, + "2023-06-04": 0.5300885103019943, + "2024-02-25": 0.5447936591287651, + "2023-12-01": 0.6096287093788446, + "2023-07-14": 0.7715476017493906, + "2024-01-26": 0.519330064898466, + "2023-08-03": 0.6703676105074731, + "2024-02-28": 0.5825109716159041, + "2023-09-15": 0.4961091528419238, + "2023-07-18": 0.7530622191709195, + "2023-04-21": 0.4672483700092439, + "2023-12-21": 0.6161521912594309, + "2023-07-20": 0.8101243278975369, + "2024-03-06": 0.6052039617796691, + "2023-09-30": 0.5169266608905306, + "2023-12-12": 0.6202475609911281, + "2024-02-13": 0.5279689882822943, + "2023-05-19": 0.4646248095060847, + "2023-09-20": 0.5158937532048048, + "2023-09-19": 0.5093771748103038, + "2023-09-29": 0.5266253687950656, + "2023-09-12": 0.47927936795615783, + "2023-06-13": 0.5265628538624829, + "2023-10-04": 0.5321982575871042, + "2023-07-08": 0.4679350252328413, + "2024-04-16": 0.49159474238160666, + "2024-03-02": 0.6320336655838593, + "2023-06-27": 0.48074446976457336, + "2023-10-08": 0.5204669406999907, + "2023-11-20": 0.6207075547237657, + "2023-12-20": 0.6130502058550981, + "2023-12-31": 0.6218776605118093, + "2023-11-06": 0.7035348630754624, + "2023-08-22": 0.5169501486153757, + "2023-06-09": 0.5311499460882573, + "2024-03-17": 0.6139837045773321, + "2023-09-18": 0.5006182753350324, + "2024-04-01": 0.6118909707271797, + "2024-01-19": 0.5466206528591269, + "2023-11-11": 0.6679646776343245, + "2023-05-14": 0.42612187710311417, + "2023-05-13": 0.42620496394420504, + "2023-05-06": 0.4606084344166876, + "2023-11-19": 0.6171066224692737, + "2023-05-16": 0.4235879319337525, + "2023-09-23": 0.5112931744597917, + "2023-07-02": 0.48330610844397526, + "2023-08-15": 0.6258847077186727, + "2024-01-25": 0.5120499525846439, + "2024-03-13": 0.6888948855319152, + "2024-01-21": 0.5518540354657302, + "2024-02-01": 0.4967602554573377, + "2023-06-15": 0.477668532645945, + "2024-03-16": 0.6243112721245444, + "2023-11-27": 0.6037906118999709, + "2024-01-10": 0.568578848976876, + "2024-03-15": 0.629101034599423, + "2023-06-21": 0.49646927111951294, + "2024-01-02": 0.6313708539921639, + "2023-04-26": 0.4700404890319659, + "2023-07-11": 0.47485005213699055, + "2023-10-25": 0.5539518812859966, + "2024-01-01": 0.6189869080496528, + "2024-02-14": 0.5320293390977986, + "2023-09-04": 0.505755436265849, + "2023-09-06": 0.5011504193206046, + "2024-04-03": 0.583324239094088, + "2024-03-08": 0.6247344718109464, + "2023-11-28": 0.6049249840316393, + "2023-12-03": 0.6204390227197991, + "2023-08-02": 0.6935482443970987, + "2023-08-27": 0.5257327930024306, + "2023-10-20": 0.5180418882165975, + "2023-05-25": 0.4503743255696833, + "2023-10-10": 0.4979721505820415, + "2024-04-11": 0.6139176583161652, + "2023-06-22": 0.5008938069965961, + "2024-01-14": 0.5772858074885806, + "2023-12-15": 0.6292886361113205, + "2023-10-19": 0.48457921459224246, + "2024-02-08": 0.5139358786623104, + "2023-11-08": 0.6870560131710763, + "2023-11-12": 0.6628117949871758, + "2023-12-22": 0.6203475813278918, + "2023-05-20": 0.4662815137463171, + "2023-05-31": 0.513089140275543, + "2024-03-23": 0.6196137213825006, + "2024-04-10": 0.610982061370458, + "2023-09-27": 0.5011573142859427, + "2024-03-04": 0.6479413426489642, + "2023-09-10": 0.4992253428737822, + "2024-04-13": 0.5358717656230115, + "2024-02-29": 0.5966963712345492, + "2023-07-22": 0.7688952252426356, + "2023-07-21": 0.7792371162608247, + "2023-06-30": 0.47490291592228784, + "2023-12-29": 0.6293056546445539, + "2023-12-04": 0.623004153520626, + "2023-09-21": 0.5085685482977536, + "2023-06-02": 0.5159625348477731, + "2023-10-11": 0.4868031094489517, + "2023-07-19": 0.7993297004980795, + "2023-05-05": 0.46322838446645204, + "2024-03-21": 0.620066546144654, + "2024-04-08": 0.6082847244816842, + "2023-04-29": 0.47910462322281816, + "2023-06-14": 0.5043093618817923, + "2023-10-05": 0.5239499238566213, + "2023-10-16": 0.49383405735900743, + "2024-02-10": 0.5239461072076274, + "2024-04-07": 0.5958327495625325, + "2023-05-21": 0.4655775399473678, + "2024-02-20": 0.5638574768802147, + "2023-11-17": 0.6122569513904897, + "2023-12-11": 0.6210738067493061, + "2023-11-26": 0.6205398086459536, + "2023-11-16": 0.6385771880405966, + "2023-06-29": 0.4698738842202444, + "2023-06-11": 0.5080812783630902, + "2024-02-02": 0.5046427918739744, + "2023-09-14": 0.48455956125188954, + "2024-01-27": 0.5301373260037051, + "2024-03-30": 0.626917228468726, + "2023-05-04": 0.4603638427137163, + "2023-09-28": 0.500749559339888, + "2023-10-27": 0.550118375415513, + "2023-05-01": 0.4636049891292151, + "2023-05-15": 0.42696169555039154, + "2023-11-22": 0.594690976025873, + "2023-06-03": 0.5219186282127951, + "2024-01-18": 0.5616894584813569, + "2023-08-26": 0.5234799090822889, + "2024-02-15": 0.5507093358439508, + "2023-10-28": 0.5457370294481348, + "2024-03-24": 0.6296313057286489, + "2023-04-22": 0.45809824483363365, + "2023-12-06": 0.6240241301343278, + "2023-11-10": 0.6588577901553031, + "2024-01-30": 0.5264224733053403, + "2023-08-09": 0.6443186541231725, + "2023-05-02": 0.46298658805632226, + "2023-11-14": 0.6548860202510128, + "2024-01-23": 0.5100235664626317, + "2024-01-31": 0.5078869846261936, + "2024-01-11": 0.6018676770440073, + "2024-02-18": 0.5568519619172279, + "2023-06-16": 0.47229613103268686, + "2023-10-30": 0.5662950761815182, + "2023-12-17": 0.6176766041830895, + "2024-02-26": 0.5403575956936831, + "2023-07-16": 0.7468599871142778, + "2024-01-05": 0.5726413558526439, + "2023-08-23": 0.5209905422588303, + "2024-03-11": 0.6294669474948582, + "2023-08-01": 0.6909509420376279, + "2024-03-14": 0.6786867830691182, + "2024-02-21": 0.5428857245029131, + "2023-08-28": 0.5193720367904906, + "2023-07-04": 0.4880438048670825, + "2023-12-13": 0.608340549005338, + "2023-04-23": 0.4657101017912807, + "2023-08-13": 0.6280264351835038, + "2024-03-31": 0.6266238223483388, + "2023-12-09": 0.6779306489692595, + "2024-04-02": 0.5916317253371768, + "2024-02-06": 0.5039959664346048, + "2024-04-09": 0.6170839655541908, + "2023-05-30": 0.5018444573454368, + "2023-11-04": 0.612956318163612, + "2024-01-15": 0.5787205792410414, + "2023-07-03": 0.48335622850694043, + "2023-12-28": 0.6378917232799676, + "2023-05-08": 0.4348931289085713, + "2024-02-27": 0.5609676951353904, + "2024-02-07": 0.50352080391994, + "2023-09-25": 0.4993784077118236, + "2024-03-19": 0.5991159919653761, + "2024-03-10": 0.619548173243094, + "2023-09-02": 0.4971066847749898, + "2024-01-12": 0.5944561233360893, + "2023-11-29": 0.6097113338975108, + "2023-10-15": 0.48693601343945736, + "2023-11-30": 0.6034469619907713, + "2024-01-24": 0.5148606065449606, + "2023-08-11": 0.6313210252552184, + "2024-02-11": 0.528149464928612, + "2023-06-08": 0.5208371662997514, + "2023-08-16": 0.5980602426737947, + "2023-11-15": 0.6357421294895255, + "2023-12-16": 0.6204592098665742, + "2024-03-29": 0.625421910819619, + "2024-04-04": 0.5781457279861918, + "2023-06-10": 0.49609905654628483, + "2023-07-28": 0.7119368575352628, + "2024-01-20": 0.5473942064378133, + "2023-10-21": 0.5178756822299275, + "2023-05-12": 0.42682242433995976, + "2023-11-03": 0.6041914154369892, + "2023-08-31": 0.5237120377546961, + "2024-01-29": 0.5269413260860141, + "2024-01-04": 0.581810433348412, + "2023-05-22": 0.4598856747666677, + "2023-07-26": 0.7050399299638458, + "2023-11-13": 0.6544304216194001, + "2024-03-25": 0.6367926797864369, + "2023-08-07": 0.6168066033283617, + "2023-10-29": 0.554849132442602, + "2023-07-25": 0.6968884294110078, + "2023-05-17": 0.4468023366890397, + "2023-10-24": 0.5530837018849658, + "2023-06-05": 0.5308005334452501, + "2023-11-02": 0.6081137416221696, + "2023-12-18": 0.6010561030240346, + "2023-11-24": 0.6207187058467981, + "2023-08-21": 0.5235439708714853, + "2023-08-14": 0.6282450750708103, + "2023-05-26": 0.4639811783950144, + "2024-03-05": 0.6417088969751393, + "2024-04-06": 0.5901851513892287, + "2023-12-23": 0.6172527425888783, + "2024-02-03": 0.5191161630791694, + "2024-02-16": 0.5659911864825394, + "2023-05-28": 0.4729982396048332, + "2023-12-14": 0.6268725990776044, + "2023-06-24": 0.4910069969938311, + "2023-12-26": 0.6227746548308916, + "2023-11-09": 0.6870324915660039, + "2023-05-11": 0.4226274587798652, + "2023-08-19": 0.5066430819017617, + "2023-06-23": 0.495611112660618, + "2023-06-18": 0.4875448150029073, + "2023-08-08": 0.6243479480587641, + "2023-08-17": 0.5815188687185101, + "2024-04-14": 0.4874174286249101, + "2023-07-24": 0.7032818860942122, + "2023-10-14": 0.485671104335164, + "2024-01-17": 0.5704159093640725, + "2023-04-19": 0.4966820493666172, + "2024-04-14T03": 0.4693983605352873, + "2024-04-16T02": 0.490376472, + "2024-04-13T04": 0.545676384, + "2024-04-18T09": 0.4900428874, + "2024-04-12T19": 0.5307531043026839, + "2024-04-18T20": 0.502081008, + "2024-04-15T06": 0.5135643719999999, + "2024-04-17T20": 0.495670258, + "2024-04-14T19": 0.489812631, + "2024-04-15T01": 0.49874303799999997, + "2024-04-18T10": 0.48939786, + "2024-04-12T14": 0.594344322, + "2024-04-12T20": 0.5430566303106014, + "2024-04-15T12": 0.512196349, + "2024-04-14T23": 0.5045824079999999, + "2024-04-13T07": 0.5433575279999999, + "2024-04-14T20": 0.48884661, + "2024-04-17T00": 0.49576354799999994, + "2024-04-15T00": 0.50097047, + "2024-04-14T01": 0.4748783254643345, + "2024-04-18T19": 0.5018508, + "2024-04-17T22": 0.49549009, + "2024-04-17T09": 0.498724325, + "2024-04-15T14": 0.500845345, + "2024-04-15T20": 0.49570811000000004, + "2024-04-16T10": 0.485003616, + "2024-04-16T18": 0.49312817999999997, + "2024-04-18T04": 0.497165196, + "2024-04-19T01": 0.482535072, + "2024-04-15T02": 0.49794774999999997, + "2024-04-15T16": 0.49394685, + "2024-04-19T03": 0.48452906999999995, + "2024-04-14T05": 0.4882637127815632, + "2024-04-17T08": 0.49994994, + "2024-04-14T13": 0.487548523, + "2024-04-14T10": 0.490630488, + "2024-04-18T17": 0.499784715, + "2024-04-13T14": 0.54390876, + "2024-04-17T10": 0.49374674999999996, + "2024-04-19T02": 0.47234250699999997, + "2024-04-14T15": 0.48554561999999996, + "2024-04-14T12": 0.485647554, + "2024-04-16T09": 0.4965007599948008, + "2024-04-17T02": 0.495233677, + "2024-04-12T09": 0.609684138, + "2024-04-14T18": 0.49035196200000003, + "2024-04-14T09": 0.49124549999999995, + "2024-04-16T20": 0.49317255000000004, + "2024-04-18T00": 0.4916742875538145, + "2024-04-15T23": 0.497309384, + "2024-04-12T22": 0.5442487248555088, + "2024-04-18T21": 0.502275735, + "2024-04-15T13": 0.51144457, + "2024-04-18T08": 0.48899778, + "2024-04-13T20": 0.44936824044012114, + "2024-04-17T05": 0.49944987, + "2024-04-15T18": 0.49255599600000005, + "2024-04-19T06": 0.49253787200000004, + "2024-04-16T01": 0.494238348, + "2024-04-14T11": 0.48413711100000006, + "2024-04-13T13": 0.54540906, + "2024-04-12T16": 0.591986081, + "2024-04-16T06": 0.492185302, + "2024-04-17T12": 0.4870385320000001, + "2024-04-15T05": 0.5025565249000001, + "2024-04-17T03": 0.49699938, + "2024-04-18T18": 0.498134013, + "2024-04-18T14": 0.50035005, + "2024-04-12T12": 0.60418846, + "2024-04-17T14": 0.48508911099999996, + "2024-04-13T03": 0.5408835617, + "2024-04-18T07": 0.49049808, + "2024-04-16T00": 0.492737928, + "2024-04-17T23": 0.494875255, + "2024-04-13T23": 0.47948629893126155, + "2024-04-14T14": 0.48259295999999996, + "2024-04-16T13": 0.4858033449128958, + "2024-04-17T16": 0.481595184, + "2024-04-16T22": 0.4965493002012777, + "2024-04-15T15": 0.49514250100000007, + "2024-04-16T12": 0.48949788, + "2024-04-18T13": 0.4935285335719282, + "2024-04-16T05": 0.48728733, + "2024-04-17T17": 0.48859022799999996, + "2024-04-12T13": 0.597102891, + "2024-04-12T23": 0.5466323238193052, + "2024-04-17T15": 0.47831913200000004, + "2024-04-15T19": 0.49080605200000005, + "2024-04-18T01": 0.49444066, + "2024-04-16T14": 0.48644589, + "2024-04-16T08": 0.49738396399999996, + "2024-04-18T02": 0.49466537099999996, + "2024-04-13T11": 0.54445444, + "2024-04-16T23": 0.49717395000000003, + "2024-04-18T16": 0.50075025, + "2024-04-16T21": 0.49679934, + "2024-04-14T02": 0.4732088791356836, + "2024-04-12T10": 0.6083869900000001, + "2024-04-16T15": 0.487077476, + "2024-04-12T11": 0.608362646, + "2024-04-17T06": 0.49794934, + "2024-04-18T15": 0.501975935, + "2024-04-13T00": 0.5460851395756723, + "2024-04-18T03": 0.49798008, + "2024-04-13T08": 0.541551592, + "2024-04-13T06": 0.545058021, + "2024-04-15T04": 0.497182536, + "2024-04-16T04": 0.4830621183156292, + "2024-04-14T16": 0.4918081740000001, + "2024-04-16T07": 0.49787368, + "2024-04-18T05": 0.4962099239999999, + "2024-04-13T02": 0.5380344750000001, + "2024-04-15T09": 0.5152661700000001, + "2024-04-13T05": 0.5466584849999999, + "2024-04-15T17": 0.4924559440000001, + "2024-04-16T16": 0.49104539999999997, + "2024-04-15T21": 0.49315776000000006, + "2024-04-17T01": 0.494568096, + "2024-04-14T21": 0.48644589, + "2024-04-15T07": 0.515758617, + "2024-04-18T12": 0.49156216199999997, + "2024-04-15T22": 0.49460384500000004, + "2024-04-13T22": 0.47088807864623683, + "2024-04-12T17": 0.5755910399999999, + "2024-04-18T23": 0.5025959359999999, + "2024-04-19T04": 0.48911736, + "2024-04-15T08": 0.5151786710000001, + "2024-04-14T22": 0.499734892, + "2024-04-17T19": 0.498070114, + "2024-04-19T07": 0.49712425000000005, + "2024-04-12T18": 0.5300587073109828, + "2024-04-14T04": 0.4794994414846272, + "2024-04-16T17": 0.4951287, + "2024-04-17T11": 0.49070404800000006, + "2024-04-13T21": 0.4486301816880222, + "2024-04-13T09": 0.5404512840000001, + "2024-04-14T08": 0.49684829999999996, + "2024-04-15T11": 0.5151351839999999, + "2024-04-19T05": 0.48773165199999996, + "2024-04-17T13": 0.49034504999999995, + "2024-04-14T06": 0.49478681, + "2024-04-13T19": 0.5215683618375501, + "2024-04-14T07": 0.495231583, + "2024-04-19T00": 0.49882935599999995, + "2024-04-13T16": 0.53770752, + "2024-04-15T10": 0.517406562, + "2024-04-19T09": 0.499419648, + "2024-04-13T15": 0.54440886, + "2024-04-12T15": 0.5939850210000001, + "2024-04-17T18": 0.499475025, + "2024-04-13T17": 0.52330464, + "2024-04-18T06": 0.490668684, + "2024-04-17T04": 0.49836976200000005, + "2024-04-19T08": 0.49891444099999993, + "2024-04-16T19": 0.49202789399999997, + "2024-04-15T03": 0.49828784400000004, + "2024-04-17T21": 0.495060392, + "2024-04-13T18": 0.5235727219999999, + "2024-04-13T10": 0.5420896650000001, + "2024-04-16T11": 0.48887104500000006, + "2024-04-12T21": 0.5464418999261689, + "2024-04-18T11": 0.49654892, + "2024-04-17T07": 0.5028256750000001, + "2024-04-13T01": 0.537929072, + "2024-04-14T17": 0.48443241600000003, + "2024-04-18T22": 0.5026507499999999, + "2024-04-14T00": 0.47656461765831626, + "2024-04-16T03": 0.49059616, + "2024-04-13T12": 0.5448544799999999, + "latest": 0.520868, + "2024-04-19T11": 0.50152578, + "2024-04-19T10": 0.49901916799999996, + "2024-04-19T12": 0.50152578, + "2024-04-19T13": 0.49964451700000007, + "2024-04-19T14": 0.498119076, + "2024-04-19": 0.5029051623826236, + "2024-04-20": 0.5173690140803148, + "2024-04-19T23": 0.501325495, + "2024-04-19T20": 0.5046664849999999, + "2024-04-19T19": 0.5060062390000001, + "2024-04-19T21": 0.506267013, + "2024-04-19T22": 0.508298159, + "2024-04-19T16": 0.501120396, + "2024-04-19T17": 0.502531058, + "2024-04-19T18": 0.5042865169999999, + "2024-04-19T15": 0.49984480400000003, + "2024-04-20T00": 0.502395858, + "2024-04-20T01": 0.502770884, + "2024-04-21": 0.5269979697943893, + "2024-04-20T16": 0.5216512349999999, + "2024-04-20T19": 0.52555762, + "2024-04-20T15": 0.5191297500000001, + "2024-04-20T02": 0.50597703, + "2024-04-20T09": 0.520050771, + "2024-04-20T04": 0.512084284, + "2024-04-20T10": 0.5182502489999999, + "2024-04-20T22": 0.5277793839999999, + "2024-04-21T00": 0.524988928, + "2024-04-20T12": 0.51810878, + "2024-04-21T04": 0.526821172, + "2024-04-20T05": 0.512089403, + "2024-04-20T18": 0.527084415, + "2024-04-20T11": 0.520819761, + "2024-04-20T23": 0.528763866, + "2024-04-20T08": 0.51416962, + "2024-04-20T13": 0.5169136960000001, + "2024-04-21T02": 0.527695175, + "2024-04-21T01": 0.5255733819999999, + "2024-04-20T20": 0.5279583400000001, + "2024-04-20T03": 0.5114789550000001, + "2024-04-20T14": 0.51662396, + "2024-04-20T07": 0.514874998, + "2024-04-20T17": 0.52698438, + "2024-04-20T21": 0.5291587, + "2024-04-20T06": 0.513895206, + "2024-04-21T03": 0.528026954, + "2024-04-21T16": 0.52273065, + "2024-04-21T11": 0.531511594, + "2024-04-21T17": 0.5224149060000001, + "2024-04-21T08": 0.5337627332967801, + "2024-04-21T12": 0.52850568, + "2024-04-21T15": 0.526673724, + "2024-04-21T06": 0.531717915, + "2024-04-21T07": 0.533065199, + "2024-04-21T14": 0.5254155660000001, + "2024-04-21T13": 0.5263315500000001, + "2024-04-21T05": 0.52872197, + "2024-04-21T10": 0.52920582, + "2024-04-21T09": 0.531770112, + "2024-04-21T19": 0.5244157319999999, + "2024-04-21T22": 0.5264631679999999, + "2024-04-21T23": 0.524899712, + "2024-04-21T21": 0.527636932, + "2024-04-21T20": 0.52525252, + "2024-04-21T18": 0.52350468, + "2024-04-22": 0.5363289976538964, + "2024-04-22T00": 0.5248577280000001, + "2024-04-22T07": 0.5352048930000001, + "2024-04-22T05": 0.5364305659999999, + "2024-04-22T04": 0.5365278907716373, + "2024-04-22T02": 0.524873472, + "2024-04-22T01": 0.5253630359999999, + "2024-04-22T06": 0.5366681999999999, + "2024-04-22T03": 0.532747943, + "2024-04-22T08": 0.5334559360000001, + "2024-04-22T09": 0.532407558, + "2024-04-22T10": 0.5335239860000001, + "2024-04-22T11": 0.532660876, + "2024-04-22T12": 0.5337134, + "2024-04-22T13": 0.534576352, + "2024-04-22T14": 0.53541408, + "2024-04-22T15": 0.5392748900000001, + "2024-04-22T16": 0.5434361533000001, + "2024-04-23": 0.5490112716474673, + "2024-04-23T03": 0.5498243178296874, + "2024-04-22T19": 0.550108962, + "2024-04-22T17": 0.5470132519999998, + "2024-04-22T23": 0.557637241, + "2024-04-22T20": 0.5633533250999999, + "2024-04-22T21": 0.5599679399999999, + "2024-04-22T18": 0.5453389462, + "2024-04-23T06": 0.5497076639999999, + "2024-04-22T22": 0.5595678199999999, + "2024-04-23T04": 0.549001785, + "2024-04-23T01": 0.555616606, + "2024-04-23T07": 0.5497402022202422, + "2024-04-23T00": 0.5562168399999999, + "2024-04-23T05": 0.54902922, + "2024-04-23T02": 0.5535711170000001, + "2024-04-23T08": 0.5479807739999999, + "2024-04-23T09": 0.54639117, + "2024-04-23T10": 0.545334393, + "2024-04-23T11": 0.544655868, + "2024-04-23T12": 0.5438011319999999, + "2024-04-23T13": 0.544723245, + "2024-04-23T14": 0.547551758, + "2024-04-23T15": 0.54826443, + "2024-04-23T16": 0.548493228, + "2024-04-24": 0.5452542670648143, + "2024-04-24T02": 0.5444407632012639, + "2024-04-24T00": 0.543332598, + "2024-04-24T01": 0.54515451, + "2024-04-23T23": 0.54503815, + "2024-04-24T06": 0.54802192, + "2024-04-23T22": 0.5485113511868668, + "2024-04-23T18": 0.551226753, + "2024-04-23T20": 0.55265526, + "2024-04-23T21": 0.550927545, + "2024-04-24T04": 0.5486, + "2024-04-24T05": 0.5499384930000001, + "2024-04-24T03": 0.5467002944782303, + "2024-04-24T07": 0.549094509, + "2024-04-23T19": 0.5521104, + "2024-04-23T17": 0.5523524059113578, + "2024-04-24T08": 0.5499615, + "2024-04-24T09": 0.54548909, + "2024-04-24T10": 0.54474552, + "2024-04-24T11": 0.545756336, + "2024-04-24T12": 0.544094559, + "2024-04-24T13": 0.5396514269999999, + "2024-04-24T14": 0.5299046000000001, + "2024-04-24T15": 0.5275255440000001, + "2024-04-25": 0.527180116232759, + "2024-04-24T18": 0.5335544520000001, + "2024-04-25T00": 0.5289354000000001, + "2024-04-24T21": 0.531016335, + "2024-04-24T17": 0.5334989567904348, + "2024-04-24T16": 0.52820404, + "2024-04-24T20": 0.5324410392, + "2024-04-24T23": 0.5249111399999999, + "2024-04-24T22": 0.52827704, + "2024-04-24T19": 0.534814656, + "2024-04-25T01": 0.528999471, + "2024-04-25T03": 0.5265630579999999, + "2024-04-25T06": 0.527084016, + "2024-04-25T05": 0.5268524400000001, + "2024-04-25T04": 0.523869, + "2024-04-25T02": 0.524500326, + "2024-04-25T07": 0.524179411, + "2024-04-25T08": 0.523958493, + "2024-04-25T09": 0.52419514, + "2024-04-25T10": 0.517501656, + "2024-04-25T11": 0.5187702750000001, + "2024-04-25T12": 0.51819264, + "2024-04-25T13": 0.515585301, + "2024-04-25T14": 0.520492728, + "2024-04-25T15": 0.521807624, + "2024-04-25T16": 0.52567914, + "2024-04-25T17": 0.527573046, + "2024-04-25T18": 0.5291094519999999, + "2024-04-25T19": 0.529877358, + "2024-04-26": 0.5253049613831209, + "2024-04-25T22": 0.5279828937715851, + "2024-04-25T21": 0.530901551772085, + "2024-04-25T20": 0.530477106, + "2024-04-26T01": 0.520415612, + "2024-04-25T23": 0.5254474499999999, + "2024-04-26T00": 0.522679756, + "2024-04-26T05": 0.531409645, + "2024-04-26T07": 0.52937, + "2024-04-26T02": 0.5256789719999999, + "2024-04-26T03": 0.5280853618455472, + "2024-04-26T04": 0.52894181, + "2024-04-26T06": 0.5327, + "2024-04-26T08": 0.5255105099999999, + "2024-04-26T09": 0.5250474900000001, + "2024-04-26T10": 0.52343718, + "2024-04-26T11": 0.522126892, + "2024-04-26T12": 0.523710954, + "2024-04-26T13": 0.5204958799999999, + "2024-04-26T14": 0.5228001889, + "2024-04-26T15": 0.5177549880000001, + "2024-04-26T21": 0.5280198443999999, + "2024-04-26T22": 0.52461632, + "2024-04-26T17": 0.523006416, + "2024-04-26T19": 0.52683663, + "2024-04-26T16": 0.52133312, + "2024-04-26T18": 0.524347895, + "2024-04-26T20": 0.52783632, + "2024-04-27": 0.5259364466531022, + "2024-04-26T23": 0.525000424, + "2024-04-27T00": 0.521138397, + "2024-04-27T01": 0.512166802, + "2024-04-28": 0.5174770275855083, + "2024-04-27T13": 0.51586447, + "2024-04-28T00": 0.518547148, + "2024-04-27T20": 0.51864708, + "2024-04-27T23": 0.5181474199999999, + "2024-04-27T06": 0.516999966, + "2024-04-27T05": 0.517182692, + "2024-04-27T02": 0.5172604235682297, + "2024-04-27T18": 0.5197411310000001, + "2024-04-27T07": 0.515880286, + "2024-04-27T04": 0.519003999, + "2024-04-27T21": 0.518052672, + "2024-04-27T09": 0.514270656, + "2024-04-27T14": 0.516968928, + "2024-04-27T22": 0.517347964, + "2024-04-27T16": 0.5159489159999999, + "2024-04-27T10": 0.514055352, + "2024-04-27T17": 0.5203511310000001, + "2024-04-27T08": 0.5143860330000001, + "2024-04-27T12": 0.5152648599999999, + "2024-04-27T15": 0.515580142, + "2024-04-27T11": 0.5124820640000001, + "2024-04-27T03": 0.5191649819999999, + "2024-04-27T19": 0.51943614, + "2024-04-28T01": 0.520561415, + "2024-04-28T20": 0.518907933, + "2024-04-28T14": 0.5189507839999999, + "2024-04-28T05": 0.5224411164, + "2024-04-28T08": 0.522049992, + "2024-04-28T16": 0.519997122, + "2024-04-28T11": 0.5174049110000001, + "2024-04-28T22": 0.51389436, + "2024-04-28T03": 0.5229465323016785, + "2024-04-28T13": 0.5196608460000001, + "2024-04-28T15": 0.519676443, + "2024-04-28T04": 0.521907568, + "2024-04-28T09": 0.520871644, + "2024-04-28T19": 0.519902362, + "2024-04-28T06": 0.5233491210000001, + "2024-04-28T12": 0.518061582, + "2024-04-28T02": 0.521198368, + "2024-04-28T17": 0.5192922, + "2024-04-28T21": 0.517908303, + "2024-04-28T18": 0.519402552, + "2024-04-28T07": 0.523769817, + "2024-04-28T10": 0.519808744, + "2024-04-29": 0.5078982239570896, + "2024-04-28T23": 0.510011226, + "2024-04-29T00": 0.51185152, + "2024-04-29T01": 0.5130357759999999, + "2024-04-29T06": 0.5016498300000001, + "2024-04-29T02": 0.5098674, + "2024-04-29T07": 0.502159824, + "2024-04-29T05": 0.507318816, + "2024-04-29T03": 0.506603727, + "2024-04-29T04": 0.5065935930000001, + "2024-04-29T08": 0.50195984, + "2024-04-29T09": 0.505074745, + "2024-04-29T10": 0.507069574, + "2024-04-29T11": 0.5068986, + "2024-04-29T12": 0.5063885699999999, + "2024-04-29T13": 0.5063800717825176, + "2024-04-29T14": 0.511113096, + "2024-04-29T15": 0.5123, + "2024-04-30": 0.5147823518232816, + "2024-04-30T04": 0.51574523, + "2024-04-29T21": 0.5132254439999999, + "2024-04-30T03": 0.5142045279999999, + "2024-04-29T22": 0.51524225, + "2024-04-29T19": 0.515988358, + "2024-04-29T23": 0.516183112, + "2024-04-29T18": 0.5143919549999999, + "2024-04-30T00": 0.516165762, + "2024-04-29T20": 0.515062962, + "2024-04-30T01": 0.5156246280000001, + "2024-04-30T02": 0.512115572, + "2024-04-29T16": 0.51396916, + "2024-04-29T17": 0.515332998, + "2024-04-30T05": 0.5155813890000001, + "2024-04-30T06": 0.512607714, + "2024-04-30T07": 0.512112926, + "2024-04-30T08": 0.5036143710000001, + "2024-04-30T09": 0.5025991168, + "2024-04-30T10": 0.502004601, + "2024-04-30T11": 0.49770044, + "2024-04-30T12": 0.494222016, + "2024-04-30T13": 0.496555957, + "2024-04-30T14": 0.496371564, + "2024-04-30T15": 0.49584273599999995, + "2024-04-30T16": 0.492265032, + "2024-05-01": 0.4995393758879096, + "2024-04-30T22": 0.498760768, + "2024-04-30T17": 0.49661234, + "2024-04-30T20": 0.499489716, + "2024-04-30T23": 0.4992003, + "2024-04-30T19": 0.49519560519475586, + "2024-04-30T18": 0.496262904, + "2024-05-01T01": 0.499669788, + "2024-05-01T00": 0.49898052, + "2024-04-30T21": 0.49953973599999996, + "2024-05-01T02": 0.499809528, + "2024-05-01T03": 0.50149748, + "2024-05-01T05": 0.502655776, + "2024-05-01T04": 0.503325554, + "2024-05-01T06": 0.499564746, + "2024-05-01T07": 0.49050409, + "2024-05-01T08": 0.482286717, + "2024-05-01T09": 0.48833700399999996, + "2024-05-01T10": 0.49242319, + "2024-05-01T11": 0.49302742399999994, + "2024-05-01T12": 0.4944357, + "2024-05-01T13": 0.49526874099999996, + "2024-05-01T15": 0.496208808, + "2024-05-01T16": 0.49994421400000005, + "2024-05-01T14": 0.49564425599999995, + "2024-05-01T21": 0.514552815, + "2024-05-01T20": 0.5109451520000001, + "2024-05-01T17": 0.50737516, + "2024-05-01T19": 0.515053464, + "2024-05-01T18": 0.5121846400000001, + "2024-05-01T22": 0.5141881876, + "2024-05-02": 0.5156307024125296, + "2024-05-02T03": 0.5103891, + "2024-05-02T01": 0.5139340499999999, + "2024-05-02T02": 0.509615405, + "2024-05-01T23": 0.515955952, + "2024-05-02T00": 0.5160851270000001, + "2024-05-02T04": 0.5108334312870583, + "2024-05-02T06": 0.508528503, + "2024-05-02T07": 0.51254097, + "2024-05-02T05": 0.511014075, + "2024-05-02T08": 0.5122821879999999, + "2024-05-02T09": 0.5133380639999999, + "2024-05-02T10": 0.5140046039999999, + "2024-05-02T11": 0.51681388, + "2024-05-02T12": 0.5174498959999999, + "2024-05-02T13": 0.514969347901741, + "2024-05-02T14": 0.517727508, + "2024-05-02T15": 0.5204843849999999, + "2024-05-02T16": 0.519605196, + "2024-05-02T17": 0.5195103899999999, + "2024-05-03T04": 0.5211052110000001, + "2024-05-03T02": 0.5211729540000001, + "2024-05-03T03": 0.5217678210000001, + "2024-05-03T05": 0.521236484, + "2024-05-03T06": 0.5196623519999999, + "2024-05-03T00": 0.5172465479999999, + "2024-05-03T07": 0.5190519, + "2024-05-03T01": 0.520436428, + "2024-05-03T08": 0.523305233, + "2024-05-03T09": 0.520257222, + "2024-05-03T10": 0.518341464, + "2024-05-03T11": 0.515494845, + "2024-05-03T12": 0.52146871, + "2024-05-03T13": 0.524, + "2024-05-03T14": 0.5241786150000001, + "2024-05-03T15": 0.5249102080000001, + "2024-05-03": 0.5222156368709214, + "2024-05-04": 0.532131040866549, + "2024-05-04T05": 0.529253439, + "2024-05-03T18": 0.527310712, + "2024-05-04T03": 0.5295164680000001, + "2024-05-03T17": 0.527263401, + "2024-05-03T21": 0.5327715749999999, + "2024-05-03T20": 0.5337406693544248, + "2024-05-04T06": 0.5296120269534317, + "2024-05-03T22": 0.532328803, + "2024-05-03T19": 0.5291587, + "2024-05-04T02": 0.528716292, + "2024-05-03T16": 0.5262767964, + "2024-05-04T01": 0.530875131, + "2024-05-04T04": 0.5298483159999999, + "2024-05-03T23": 0.53220748, + "2024-05-04T00": 0.5310858150000001, + "2024-05-04T13": 0.537285952, + "2024-05-04T10": 0.533810676, + "2024-05-04T12": 0.5360536, + "2024-05-04T07": 0.5288951840000001, + "2024-05-04T11": 0.53565356, + "2024-05-04T09": 0.530384848, + "2024-05-04T15": 0.53570712, + "2024-05-04T08": 0.528900472, + "2024-05-04T14": 0.53620722, + "2024-05-05": 0.5290203365128416, + "2024-05-05T01": 0.5267684709999999, + "2024-05-04T19": 0.5328266400000001, + "2024-05-04T20": 0.5343213720000001, + "2024-05-05T05": 0.527368549, + "2024-05-05T07": 0.52895289, + "2024-05-04T23": 0.5304530399999999, + "2024-05-04T22": 0.53015301, + "2024-05-04T21": 0.531810636, + "2024-05-05T00": 0.52947941, + "2024-05-05T08": 0.530158311, + "2024-05-04T17": 0.53303198, + "2024-05-05T09": 0.529463528, + "2024-05-05T10": 0.5288793200000002, + "2024-05-05T04": 0.5274685619999999, + "2024-05-04T16": 0.53508025, + "2024-05-05T06": 0.52755275, + "2024-05-05T03": 0.52706851, + "2024-05-04T18": 0.5332319919999999, + "2024-05-05T02": 0.527368549, + "2024-05-05T21": 0.5288581680000001, + "2024-05-05T16": 0.5320159600000001, + "2024-05-05T22": 0.528863456, + "2024-05-05T17": 0.531447826, + "2024-05-05T20": 0.5296030754759162, + "2024-05-05T13": 0.5283764847054958, + "2024-05-05T15": 0.5311371770000001, + "2024-05-05T12": 0.5277844319999999, + "2024-05-05T18": 0.529895364, + "2024-05-05T14": 0.5286004149999999, + "2024-05-05T19": 0.530284832, + "2024-05-05T11": 0.5293846879999999, + "2024-05-05T23": 0.529647664, + "2024-05-06T00": 0.53095309, + "2024-05-06T02": 0.531847862, + "2024-05-06T05": 0.5342267100000001, + "2024-05-06T06": 0.5347106939999999, + "2024-05-06T07": 0.53603216, + "2024-05-06T04": 0.533632016, + "2024-05-06T01": 0.5316903719999999, + "2024-05-06T03": 0.5305318299999999, + "2024-05-06T08": 0.5444, + "2024-05-06T09": 0.5426, + "2024-05-06T11": 0.5358428640000001, + "2024-05-06T10": 0.5354, + "2024-05-06T12": 0.5310531000000001, + "2024-05-06T13": 0.530137107, + "2024-05-06T14": 0.5324532399999999, + "2024-05-06T15": 0.543132586, + "2024-05-06T17": 0.56225622, + "2024-05-06T16": 0.551794482, + "2024-05-06T18": 0.5477, + "2024-05-06": 0.5294291282507735, + "2024-05-07": 0.5404023687654772, + "2024-05-06T22": 0.542416272, + "2024-05-07T07": 0.537543, + "2024-05-07T06": 0.533916017, + "2024-05-07T01": 0.541235044, + "2024-05-07T00": 0.539589208, + "2024-05-06T21": 0.545356368, + "2024-05-06T20": 0.546528942, + "2024-05-06T23": 0.540594594, + "2024-05-07T04": 0.538578456, + "2024-05-06T19": 0.546078156, + "2024-05-07T03": 0.5372892539999999, + "2024-05-07T02": 0.5424332814397105, + "2024-05-07T05": 0.53697852, + "2024-05-07T08": 0.5407108139999999, + "2024-05-07T09": 0.5422, + "2024-05-07T10": 0.5395215800000001, + "2024-05-07T11": 0.5380269000000001, + "2024-05-07T12": 0.535705357, + "2024-05-07T13": 0.5366536599999999, + "2024-05-07T14": 0.537594624, + "2024-05-07T15": 0.540329748, + "2024-05-08": 0.5224045486358709, + "2024-05-09": 0.5180514776842283, + "2024-05-10": 0.5137643141973631, + "2024-05-09T13": 0.51180032, + "2024-05-10T00": 0.518627382, + "2024-05-08T08": 0.5219478000000001, + "2024-05-09T14": 0.5123334479999999, + "2024-05-08T10": 0.522037348, + "2024-05-09T04": 0.521633831, + "2024-05-10T01": 0.51764823, + "2024-05-08T03": 0.5251669724, + "2024-05-09T07": 0.5186353610000001, + "2024-05-09T11": 0.5124949200000001, + "2024-05-09T00": 0.518881978, + "2024-05-09T01": 0.5197712, + "2024-05-10T06": 0.5167328160000001, + "2024-05-09T19": 0.51893772, + "2024-05-10T05": 0.5174327249999999, + "2024-05-10T02": 0.517853389, + "2024-05-09T23": 0.5203723428, + "2024-05-09T06": 0.521128872, + "2024-05-08T01": 0.5235483702129667, + "2024-05-09T09": 0.51464255, + "2024-05-09T20": 0.519163656, + "2024-05-08T19": 0.524963474, + "2024-05-09T03": 0.5214339330000001, + "2024-05-08T21": 0.519459708, + "2024-05-09T22": 0.520106364, + "2024-05-08T17": 0.527189267, + "2024-05-09T05": 0.521923234, + "2024-05-08T06": 0.520011583, + "2024-05-08T15": 0.525689582, + "2024-05-10T08": 0.516637996, + "2024-05-08T07": 0.519990779, + "2024-05-08T04": 0.523137216, + "2024-05-09T15": 0.5153576679999999, + "2024-05-08T18": 0.527278698, + "2024-05-09T10": 0.512218125, + "2024-05-09T21": 0.518711804, + "2024-05-10T03": 0.517258616, + "2024-05-08T00": 0.52299477, + "2024-05-10T07": 0.51742755, + "2024-05-08T14": 0.5274364439999999, + "2024-05-09T17": 0.5161502729999999, + "2024-05-08T13": 0.522674528, + "2024-05-08T05": 0.521111396, + "2024-05-09T18": 0.51774463, + "2024-05-09T08": 0.517835769, + "2024-05-08T20": 0.5199168, + "2024-05-08T22": 0.516639792, + "2024-05-08T11": 0.520558352, + "2024-05-09T12": 0.513374016, + "2024-05-08T02": 0.5247717708, + "2024-05-10T04": 0.518127452, + "2024-05-08T12": 0.5199428, + "2024-05-09T02": 0.520429236, + "2024-05-08T09": 0.520642723, + "2024-05-09T16": 0.5177187350000001, + "2024-05-08T16": 0.527452272, + "2024-05-08T23": 0.5164881530000001, + "2024-05-10T09": 0.516038068, + "2024-05-10T10": 0.5145279559999999, + "2024-05-10T11": 0.514128012, + "2024-05-10T12": 0.513794862, + "2024-05-10T13": 0.5129538299999999, + "2024-05-10T14": 0.503714354, + "2024-05-11": 0.5046975811017742, + "2024-05-12": 0.5043010917610703, + "2024-05-12T16": 0.50509788, + "2024-05-11T03": 0.503343915, + "2024-05-10T17": 0.50214931, + "2024-05-11T16": 0.50659728, + "2024-05-10T15": 0.5007098560000001, + "2024-05-11T04": 0.5033640549999999, + "2024-05-11T12": 0.503073515, + "2024-05-12T15": 0.50419824, + "2024-05-11T11": 0.501579208, + "2024-05-12T04": 0.50779172, + "2024-05-12T11": 0.504432509, + "2024-05-11T22": 0.50588868, + "2024-05-11T21": 0.506588526, + "2024-05-10T21": 0.50214931, + "2024-05-10T23": 0.5021794479999999, + "2024-05-12T00": 0.50604814, + "2024-05-12T03": 0.50719704, + "2024-05-12T12": 0.5041326679999999, + "2024-05-11T08": 0.5042688559999999, + "2024-05-11T17": 0.506227824, + "2024-05-12T19": 0.501009544, + "2024-05-11T23": 0.505768466, + "2024-05-11T05": 0.504663704, + "2024-05-12T02": 0.50639736, + "2024-05-11T02": 0.503159076, + "2024-05-10T16": 0.500539776, + "2024-05-12T14": 0.503673245, + "2024-05-11T09": 0.502159356, + "2024-05-10T18": 0.50394877, + "2024-05-10T19": 0.5048575519999999, + "2024-05-11T06": 0.5051686219999999, + "2024-05-12T08": 0.5041184519999999, + "2024-05-10T20": 0.5024240900000001, + "2024-05-11T18": 0.50609748, + "2024-05-12T05": 0.507297, + "2024-05-12T06": 0.50639736, + "2024-05-11T20": 0.505922865, + "2024-05-12T09": 0.5039932779999999, + "2024-05-11T01": 0.5042610831638, + "2024-05-11T00": 0.50288431, + "2024-05-12T07": 0.504523355, + "2024-05-12T10": 0.505877316, + "2024-05-11T10": 0.5023838820000001, + "2024-05-12T01": 0.50619744, + "2024-05-12T18": 0.501924265, + "2024-05-12T13": 0.504062979, + "2024-05-11T19": 0.50639736, + "2024-05-12T17": 0.50282395, + "2024-05-11T14": 0.5047187538736555, + "2024-05-11T07": 0.505363515, + "2024-05-11T15": 0.506477052, + "2024-05-11T13": 0.504692991, + "2024-05-10T22": 0.500974725, + "2024-05-13": 0.504035684039081, + "2024-05-12T21": 0.4987192116530459, + "2024-05-13T00": 0.5013542160000001, + "2024-05-13T03": 0.48976282800000004, + "2024-05-12T23": 0.49956509400000004, + "2024-05-13T04": 0.491467268, + "2024-05-13T01": 0.498325525, + "2024-05-13T05": 0.49206218400000007, + "2024-05-13T02": 0.492547263, + "2024-05-13T07": 0.49954509299999994, + "2024-05-13T06": 0.49426156800000004, + "2024-05-12T22": 0.499685043, + "2024-05-12T20": 0.500409772, + "2024-05-13T08": 0.503688362, + "2024-05-13T10": 0.5027988, + "2024-05-13T09": 0.504582936, + "2024-05-13T11": 0.5067176574, + "2024-05-13T12": 0.50630753, + "2024-05-13T13": 0.50581278, + "2024-05-13T14": 0.507157956, + "2024-05-13T15": 0.5082779839999999, + "2024-05-13T16": 0.51009796, + "2024-05-14": 0.5050735604287921, + "2024-05-13T17": 0.50790348, + "2024-05-14T01": 0.50619874, + "2024-05-14T02": 0.505263542, + "2024-05-14T06": 0.501539064, + "2024-05-13T19": 0.507394926, + "2024-05-13T22": 0.50414958, + "2024-05-14T04": 0.507026058, + "2024-05-13T21": 0.507364482, + "2024-05-14T03": 0.506036724, + "2024-05-14T00": 0.5057645940000001, + "2024-05-14T07": 0.5047323499999999, + "2024-05-13T20": 0.5073846295000001, + "2024-05-14T05": 0.507015912, + "2024-05-13T23": 0.5049040499999999, + "2024-05-13T18": 0.5054039549999999, + "2024-05-14T08": 0.5051422459999999, + "2024-05-14T09": 0.506356832, + "2024-05-14T10": 0.5055622740000001, + "2024-05-14T11": 0.507036204, + "2024-05-14T12": 0.504986714, + "2024-05-14T13": 0.504487024, + "2024-05-14T14": 0.5021834249999999, + "2024-05-14T15": 0.5081948999999999, + "2024-05-14T16": 0.5061214799999999, + "2024-05-14T17": 0.5040973599999999, + "2024-05-14T18": 0.5039369039999999, + "2024-05-14T19": 0.5051966999999999, + "2024-05-14T20": 0.5047576, + "2024-05-15": 0.5052749997653025, + "2024-05-15T02": 0.5004945120000001, + "2024-05-15T01": 0.499794939, + "2024-05-14T21": 0.5017893760000001, + "2024-05-15T05": 0.501274325, + "2024-05-15T00": 0.49883547699999997, + "2024-05-15T06": 0.499775, + "2024-05-15T03": 0.5011990999999999, + "2024-05-15T07": 0.49974237595431314, + "2024-05-14T23": 0.49978, + "2024-05-15T04": 0.5013492, + "2024-05-14T22": 0.500104883, + "2024-05-15T08": 0.5000449379999999, + "2024-05-15T09": 0.500519904, + "2024-05-15T10": 0.501744802, + "2024-05-15T11": 0.5004299299999999, + "2024-05-15T12": 0.504544494, + "2024-05-15T13": 0.5081796719999999, + "2024-05-15T14": 0.509889802, + "2024-05-15T15": 0.511307352, + "2024-05-15T18": 0.5161644487643215, + "2024-05-15T17": 0.514413146, + "2024-05-15T16": 0.5137540799999999, + "2024-05-16": 0.5187754168575746, + "2024-05-16T04": 0.51810878, + "2024-05-16T06": 0.51785178, + "2024-05-15T22": 0.51755865, + "2024-05-15T19": 0.517415431, + "2024-05-16T07": 0.51871, + "2024-05-16T03": 0.5176879919999999, + "2024-05-16T05": 0.51908823, + "2024-05-15T21": 0.51837296, + "2024-05-16T02": 0.517208591, + "2024-05-16T00": 0.517681125, + "2024-05-15T23": 0.5187073999999999, + "2024-05-15T20": 0.518888875, + "2024-05-16T01": 0.517713872, + "2024-05-16T08": 0.518394816, + "2024-05-16T09": 0.5189325300000001, + "2024-05-16T10": 0.5179585600000001, + "2024-05-16T11": 0.51807252, + "2024-05-16T12": 0.51670332, + "2024-05-16T13": 0.5154236719999999, + "2024-05-16T14": 0.514849263, + "2024-05-16T15": 0.5182932760000001, + "2024-05-17": 0.5157962414707458, + "2024-05-17T00": 0.5152948470000001, + "2024-05-16T23": 0.515341224, + "2024-05-16T22": 0.514341144, + "2024-05-16T17": 0.5181637259999999, + "2024-05-16T20": 0.5173362109999999, + "2024-05-16T18": 0.518868866, + "2024-05-16T21": 0.516241296, + "2024-05-17T01": 0.515130906, + "2024-05-16T19": 0.5187, + "2024-05-17T03": 0.51654132, + "2024-05-17T02": 0.515930954, + "2024-05-16T16": 0.519793546, + "2024-05-17T06": 0.5156515599999999, + "2024-05-17T04": 0.5169516900000001, + "2024-05-17T07": 0.520736449, + "2024-05-17T05": 0.51645164, + "2024-05-17T08": 0.5213625559999999, + "2024-05-17T09": 0.5213625559999999, + "2024-05-18": 0.5226528635498237, + "2024-05-19": 0.5147882897023965, + "2024-05-20": 0.5157264917091173, + "2024-05-21": 0.5364215517473515, + "2024-05-20T04": 0.515358768, + "2024-05-18T11": 0.52450488, + "2024-05-18T17": 0.5215782250000001, + "2024-05-20T15": 0.5165807987288171, + "2024-05-20T16": 0.5176, + "2024-05-19T00": 0.520993762, + "2024-05-18T18": 0.5213625559999999, + "2024-05-21T06": 0.5374838749999999, + "2024-05-20T23": 0.536450164, + "2024-05-18T13": 0.5206474418782495, + "2024-05-19T17": 0.511156221, + "2024-05-20T11": 0.512584622, + "2024-05-21T07": 0.5387584837255203, + "2024-05-21T05": 0.5346039614, + "2024-05-19T23": 0.509354154, + "2024-05-19T13": 0.51395139, + "2024-05-18T06": 0.5226567499999999, + "2024-05-19T07": 0.520446836, + "2024-05-18T14": 0.5201248, + "2024-05-18T21": 0.5211990089999999, + "2024-05-18T20": 0.5211937980000001, + "2024-05-20T18": 0.5233249329999999, + "2024-05-20T17": 0.52030404, + "2024-05-20T00": 0.5102744849999999, + "2024-05-18T01": 0.5225915076, + "2024-05-20T10": 0.5127056989641755, + "2024-05-18T12": 0.523267392, + "2024-05-18T09": 0.5244596284, + "2024-05-20T21": 0.531044168, + "2024-05-18T16": 0.5221044, + "2024-05-20T06": 0.5106204240000001, + "2024-05-20T03": 0.51324867, + "2024-05-18T03": 0.523851873, + "2024-05-19T01": 0.52159387, + "2024-05-18T02": 0.523551786, + "2024-05-19T06": 0.520536435, + "2024-05-21T00": 0.5393647159999999, + "2024-05-20T12": 0.511589768, + "2024-05-19T12": 0.51465146, + "2024-05-18T04": 0.523951902, + "2024-05-18T10": 0.5247049199999999, + "2024-05-20T07": 0.5133794639999999, + "2024-05-19T22": 0.509764314, + "2024-05-19T20": 0.5090247288, + "2024-05-19T14": 0.514656606, + "2024-05-18T15": 0.521661665, + "2024-05-19T21": 0.509094909, + "2024-05-19T02": 0.5230141256, + "2024-05-19T11": 0.5172465479999999, + "2024-05-20T05": 0.517189656, + "2024-05-19T09": 0.51935193, + "2024-05-20T14": 0.513315399, + "2024-05-21T02": 0.5357767875, + "2024-05-18T19": 0.520693708, + "2024-05-18T00": 0.5228933990000001, + "2024-05-21T10": 0.542753417, + "2024-05-18T22": 0.5207937260000001, + "2024-05-19T16": 0.5112613439999999, + "2024-05-20T02": 0.512184634, + "2024-05-18T05": 0.5237518439999999, + "2024-05-21T08": 0.540526307360957, + "2024-05-20T19": 0.530559847, + "2024-05-18T08": 0.524036214, + "2024-05-21T01": 0.536358993, + "2024-05-18T07": 0.5232098510000001, + "2024-05-20T13": 0.51201024, + "2024-05-19T18": 0.510340824, + "2024-05-20T20": 0.5326914624117972, + "2024-05-19T04": 0.522157431, + "2024-05-20T01": 0.509094909, + "2024-05-20T08": 0.514074295, + "2024-05-20T22": 0.534608416, + "2024-05-21T04": 0.536394636, + "2024-05-19T15": 0.5126977452378088, + "2024-05-19T10": 0.5200312, + "2024-05-19T05": 0.522336561, + "2024-05-21T09": 0.5428914, + "2024-05-19T03": 0.522462688, + "2024-05-19T19": 0.508394916, + "2024-05-21T03": 0.5354, + "2024-05-18T23": 0.5207937260000001, + "2024-05-19T08": 0.52045204, + "2024-05-20T09": 0.51264873, + "2024-05-21T11": 0.5414283616223936, + "2024-05-26": 0.5348874601607948, + "2024-05-25": 0.5368529713424887, + "2024-05-28": 0.533685421462011, + "2024-05-24": 0.5306127828380235, + "2024-05-27": 0.5317604853786161, + "2024-05-23": 0.5270134027392893, + "2024-05-22": 0.5333400639395565, + "2024-05-22T20": 0.527036748, + "2024-05-25T08": 0.534391506, + "2024-05-22T05": 0.533082696, + "2024-05-28T03": 0.5275828800000001, + "2024-05-22T16": 0.534671648, + "2024-05-25T05": 0.5358915358489812, + "2024-05-24T22": 0.534725128, + "2024-05-27T14": 0.534714728, + "2024-05-22T03": 0.53588744, + "2024-05-23T17": 0.5267192182460205, + "2024-05-24T23": 0.535303628, + "2024-05-26T19": 0.530613314, + "2024-05-26T18": 0.530324088, + "2024-05-26T10": 0.536001606, + "2024-05-27T16": 0.5389658949999999, + "2024-05-24T12": 0.5314235159999999, + "2024-05-26T01": 0.54124587, + "2024-05-23T07": 0.5272781639999999, + "2024-05-22T08": 0.5350929600000001, + "2024-05-23T09": 0.527925727, + "2024-05-24T18": 0.53223375, + "2024-05-23T01": 0.5274614395194214, + "2024-05-25T15": 0.54124587, + "2024-05-23T16": 0.526936163, + "2024-05-25T03": 0.533980978, + "2024-05-28T06": 0.524637912, + "2024-05-25T23": 0.5416079109999999, + "2024-05-24T13": 0.5336796, + "2024-05-26T03": 0.539140688, + "2024-05-26T00": 0.5408296830000001, + "2024-05-25T06": 0.535391116, + "2024-05-27T04": 0.531218305, + "2024-05-22T10": 0.5354821679999999, + "2024-05-27T09": 0.52917171, + "2024-05-24T17": 0.53227635, + "2024-05-26T16": 0.530477106, + "2024-05-22T09": 0.5346930400000001, + "2024-05-24T21": 0.532752048, + "2024-05-25T04": 0.53598552, + "2024-05-27T22": 0.535053688, + "2024-05-27T11": 0.52817233, + "2024-05-23T21": 0.51941015, + "2024-05-23T10": 0.525116145, + "2024-05-23T14": 0.533538438, + "2024-05-27T02": 0.531886002, + "2024-05-25T18": 0.5386653, + "2024-05-27T05": 0.5279864448, + "2024-05-22T23": 0.526462985, + "2024-05-28T01": 0.5312746399999999, + "2024-05-22T04": 0.5315101674462729, + "2024-05-22T15": 0.534744879, + "2024-05-24T03": 0.5302824949999999, + "2024-05-24T08": 0.521248794, + "2024-05-24T02": 0.5315979160000001, + "2024-05-26T07": 0.5385006809999999, + "2024-05-27T07": 0.525389837, + "2024-05-25T22": 0.540302728, + "2024-05-24T16": 0.531076854, + "2024-05-27T20": 0.5344543, + "2024-05-22T02": 0.536303448, + "2024-05-24T06": 0.5214704520000001, + "2024-05-24T11": 0.52908236, + "2024-05-25T21": 0.54109176, + "2024-05-27T15": 0.53703775, + "2024-05-22T19": 0.528189057, + "2024-05-23T20": 0.510516825, + "2024-05-23T08": 0.5291928899999999, + "2024-05-22T22": 0.5268891600000001, + "2024-05-26T11": 0.535458935, + "2024-05-24T01": 0.53068764, + "2024-05-23T05": 0.5274727640000001, + "2024-05-28T04": 0.523217772, + "2024-05-25T09": 0.535407184, + "2024-05-27T18": 0.537256822, + "2024-05-24T10": 0.523033117, + "2024-05-25T19": 0.538965225, + "2024-05-24T07": 0.520454232, + "2024-05-26T04": 0.538759886, + "2024-05-26T09": 0.5355856800000001, + "2024-05-23T02": 0.5274255959999999, + "2024-05-27T06": 0.5263472319999999, + "2024-05-28T08": 0.5264384482017117, + "2024-05-24T15": 0.5345326000000001, + "2024-05-25T20": 0.53926515, + "2024-05-27T08": 0.5301817, + "2024-05-23T22": 0.526073632, + "2024-05-26T15": 0.5326802, + "2024-05-24T20": 0.53324667, + "2024-05-25T13": 0.534725128, + "2024-05-22T01": 0.53443586, + "2024-05-25T17": 0.538081596, + "2024-05-27T10": 0.528777249, + "2024-05-24T19": 0.5323349249999999, + "2024-05-26T02": 0.5394406549999999, + "2024-05-27T19": 0.5314626800000001, + "2024-05-25T11": 0.5398190150000001, + "2024-05-27T17": 0.538644624, + "2024-05-26T06": 0.538116978, + "2024-05-23T00": 0.5276202130000001, + "2024-05-22T12": 0.529609951, + "2024-05-22T00": 0.5357035560000001, + "2024-05-24T05": 0.52551081, + "2024-05-23T15": 0.53261624, + "2024-05-22T13": 0.529241777, + "2024-05-23T04": 0.528572082, + "2024-05-26T08": 0.538373788, + "2024-05-26T13": 0.533629184, + "2024-05-28T05": 0.5242959810000001, + "2024-05-22T18": 0.5286365559999999, + "2024-05-22T06": 0.53438241, + "2024-05-22T17": 0.5324281462627569, + "2024-05-23T19": 0.519721416, + "2024-05-25T07": 0.535191194, + "2024-05-26T22": 0.529377568, + "2024-05-25T16": 0.539124512, + "2024-05-26T05": 0.5380385400000001, + "2024-05-24T04": 0.530102976, + "2024-05-25T12": 0.5367624240000001, + "2024-05-28T07": 0.5245695, + "2024-05-23T18": 0.5192040128136074, + "2024-05-26T23": 0.5281463679999999, + "2024-05-24T09": 0.5234643350000001, + "2024-05-23T03": 0.528045972, + "2024-05-26T14": 0.5335918180000001, + "2024-05-22T14": 0.530956603, + "2024-05-25T14": 0.5355625079999999, + "2024-05-25T00": 0.534577019, + "2024-05-23T23": 0.527967592, + "2024-05-23T13": 0.52641569, + "2024-05-22T11": 0.533603934, + "2024-05-28T00": 0.53267352, + "2024-05-27T23": 0.533951104, + "2024-05-28T02": 0.5284086880000001, + "2024-05-26T21": 0.5277360000000001, + "2024-05-26T12": 0.534928768, + "2024-05-23T06": 0.525868494, + "2024-05-22T07": 0.532104204, + "2024-05-27T12": 0.5286297, + "2024-05-22T21": 0.524705787, + "2024-05-24T00": 0.5277624000000001, + "2024-05-25T02": 0.534582366, + "2024-05-27T00": 0.52823575, + "2024-05-26T20": 0.5295767610000001, + "2024-05-26T17": 0.529913692, + "2024-05-27T13": 0.532564273, + "2024-05-23T12": 0.5235433380000001, + "2024-05-25T10": 0.5386545239999999, + "2024-05-23T11": 0.5269364000000001, + "2024-05-24T14": 0.533820718, + "2024-05-25T01": 0.53529292, + "2024-05-27T21": 0.533960155, + "2024-05-27T03": 0.53168612, + "2024-05-27T01": 0.5318392710000001, + "2024-05-28T09": 0.526856778, + "2024-05-28T10": 0.53049555, + "2024-05-28T11": 0.5303637910000001, + "2024-05-28T12": 0.529864296, + "2024-05-28T13": 0.5297697, + "2024-05-28T14": 0.5280766859999999, + "2024-05-28T15": 0.52800321, + "2024-05-29": 0.5278998194903718, + "2024-05-28T20": 0.52748256, + "2024-05-28T22": 0.528413412, + "2024-05-28T21": 0.5260100229999999, + "2024-05-28T19": 0.525852405, + "2024-05-29T02": 0.526362562, + "2024-05-28T17": 0.5278716, + "2024-05-28T18": 0.5232451250000001, + "2024-05-28T23": 0.528592064, + "2024-05-29T00": 0.527277078, + "2024-05-29T01": 0.525263661, + "2024-05-28T16": 0.52804497, + "2024-05-29T06": 0.530157732, + "2024-05-29T05": 0.529474482, + "2024-05-29T03": 0.527640108, + "2024-05-29T07": 0.5261311639999999, + "2024-05-29T04": 0.5288698949999999, + "2024-05-29T08": 0.524475, + "2024-05-29T09": 0.5292126759999999, + "2024-05-29T10": 0.529885512, + "2024-05-29T11": 0.530074706, + "2024-05-29T12": 0.528686676, + "2024-05-29T13": 0.5295866, + "2024-05-29T14": 0.5295078740000001, + "2024-05-29T15": 0.529061184, + "2024-05-29T18": 0.525095424, + "2024-05-29T17": 0.52712516, + "2024-05-29T23": 0.52347108, + "2024-05-29T19": 0.524585402, + "2024-05-29T22": 0.5237180269999999, + "2024-05-29T20": 0.522923706, + "2024-05-29T16": 0.526536439, + "2024-05-29T21": 0.52157379471048, + "2024-05-30": 0.5214129445925183, + "2024-05-30T00": 0.524049372, + "2024-05-30T05": 0.525878864, + "2024-05-30T02": 0.525763056, + "2024-05-30T01": 0.5243292077485376, + "2024-05-30T06": 0.51848488, + "2024-05-30T07": 0.5176788400000001, + "2024-05-30T03": 0.52626772, + "2024-05-30T04": 0.526272989, + "2024-05-30T08": 0.51499082, + "2024-05-30T09": 0.51738938, + "2024-05-30T10": 0.5197348, + "2024-05-30T11": 0.520677909, + "2024-05-30T12": 0.5203833600000001, + "2024-05-30T13": 0.5224863200000001, + "2024-05-30T14": 0.523059282, + "2024-05-30T15": 0.5215912800000001, + "2024-05-30T21": 0.5184962799999999, + "2024-05-30T20": 0.5185514565, + "2024-05-30T18": 0.525163422, + "2024-05-30T22": 0.519578084, + "2024-05-30T16": 0.524411144, + "2024-05-30T17": 0.524900462, + "2024-05-30T19": 0.523205806, + "2024-05-31": 0.5191430634255753, + "2024-05-30T23": 0.51961807, + "2024-05-31T03": 0.5212496799999999, + "2024-05-31T07": 0.5170448400000001, + "2024-05-31T06": 0.5178446, + "2024-05-31T04": 0.5212601099999999, + "2024-05-31T02": 0.520181432, + "2024-05-31T05": 0.518687251, + "2024-05-31T00": 0.5186547360000001, + "2024-05-31T01": 0.519675248, + "2024-05-31T08": 0.519733632, + "2024-05-31T09": 0.519923166, + "2024-05-31T10": 0.5200877599999999, + "2024-05-31T11": 0.520882068, + "2024-05-31T12": 0.522780909, + "2024-05-31T13": 0.521276608, + "2024-05-31T14": 0.519903486, + "2024-06-01": 0.5180167945986709, + "2024-06-01T08": 0.51856923, + "2024-06-01T02": 0.5182760120000001, + "2024-06-01T05": 0.5184952580000001, + "2024-05-31T21": 0.51739394, + "2024-06-01T00": 0.517771334, + "2024-05-31T18": 0.515742396, + "2024-05-31T15": 0.520867321, + "2024-05-31T23": 0.517776517, + "2024-05-31T22": 0.51860292, + "2024-06-01T01": 0.5181761130000001, + "2024-06-01T07": 0.5188853781180776, + "2024-06-01T04": 0.51860037, + "2024-05-31T19": 0.5171165040000001, + "2024-06-01T06": 0.5185899900000001, + "2024-05-31T20": 0.517294057, + "2024-05-31T17": 0.515681959, + "2024-05-31T16": 0.51358366, + "2024-06-01T03": 0.5188845599999999, + "2024-06-01T09": 0.519247861, + "2024-06-01T10": 0.5204416080000001, + "2024-06-02": 0.5180267356954936, + "2024-06-01T13": 0.52063101, + "2024-06-01T15": 0.5201740930000001, + "2024-06-01T18": 0.5184381790000001, + "2024-06-01T12": 0.5200471649999999, + "2024-06-01T21": 0.5197669953, + "2024-06-01T20": 0.519337378, + "2024-06-02T01": 0.518714696, + "2024-06-01T17": 0.51898448, + "2024-06-01T11": 0.519642312, + "2024-06-02T00": 0.5185848, + "2024-06-01T23": 0.518469313, + "2024-06-01T14": 0.520731783, + "2024-06-01T22": 0.519647513, + "2024-06-01T19": 0.518338268, + "2024-06-01T16": 0.519726618, + "2024-06-02T13": 0.516727688, + "2024-06-02T11": 0.515034066, + "2024-06-02T07": 0.516781068, + "2024-06-02T05": 0.517864628, + "2024-06-02T08": 0.516727688, + "2024-06-02T04": 0.518279853, + "2024-06-02T10": 0.5146189, + "2024-06-02T12": 0.516932717, + "2024-06-02T02": 0.51856404, + "2024-06-02T16": 0.51658123, + "2024-06-02T17": 0.513166225, + "2024-06-02T03": 0.51835902, + "2024-06-02T09": 0.51411927, + "2024-06-02T15": 0.517270309, + "2024-06-02T06": 0.51815919, + "2024-06-02T18": 0.5104884120000001, + "2024-06-02T14": 0.518521203, + "2024-06-03": 0.5131175398510724, + "2024-06-03T01": 0.516348644, + "2024-06-02T20": 0.511403214, + "2024-06-03T00": 0.5136173549999999, + "2024-06-02T21": 0.512729747328593, + "2024-06-02T23": 0.513422602, + "2024-06-02T19": 0.511597979, + "2024-06-02T22": 0.514022278, + "2024-06-03T02": 0.517690701, + "2024-06-03T05": 0.51748932, + "2024-06-03T06": 0.518867712, + "2024-06-03T04": 0.516100488, + "2024-06-03T03": 0.516095324, + "2024-06-03T07": 0.51926226 + }, + "USD ethereum_sepolia": { + "latest": 0 + }, + "USD algorand": { + "2023-07-30": 0.11069761466390136, + "2023-10-23": 0.09472169570524229, + "2023-07-27": 0.11138257300172076, + "2023-07-10": 0.11000429225679646, + "2023-08-20": 0.09679137211534936, + "2024-02-23": 0.18633535012400085, + "2024-04-05": 0.22947815611550787, + "2023-12-19": 0.1975631266797163, + "2024-05-17": 0.17994251293512808, + "2023-08-06": 0.10756058202447336, + "2023-12-02": 0.14329074915188253, + "2023-10-31": 0.1094252095618875, + "2023-08-29": 0.09978268091485168, + "2023-06-20": 0.11648253696066614, + "2023-09-09": 0.09537197151402996, + "2023-06-26": 0.13421339064078305, + "2023-10-01": 0.10440836022060881, + "2024-03-07": 0.2699861587047384, + "2023-10-12": 0.09427288015381075, + "2024-04-22": 0.1921764824671056, + "2023-07-05": 0.1201011499965773, + "2023-07-29": 0.11109780928965979, + "2024-04-26": 0.20034149875052182, + "2024-01-08": 0.1884000123465707, + "2023-05-29": 0.15204020457031697, + "2023-10-07": 0.10025520710736212, + "2023-09-26": 0.09750912843671478, + "2023-08-24": 0.09745753407802872, + "2023-12-05": 0.15199738907711388, + "2024-02-19": 0.19996424028545742, + "2024-01-07": 0.18958709634425308, + "2024-04-28": 0.19810904763415565, + "2023-07-31": 0.1099790156972759, + "2023-10-18": 0.09053336483713616, + "2024-05-19": 0.17740617671833803, + "2024-05-12": 0.17923254811013778, + "2024-04-29": 0.18758666913110103, + "2023-08-25": 0.09661704410252533, + "2024-03-09": 0.27298750031127184, + "2023-07-12": 0.10936674171136952, + "2023-09-05": 0.09364471620420167, + "2023-06-07": 0.13012855206231383, + "2023-09-16": 0.09675650957909937, + "2024-04-25": 0.2025638484307228, + "2023-08-12": 0.11332437700416807, + "2023-06-06": 0.13652595782364188, + "2023-09-01": 0.093462563205294, + "2023-09-08": 0.09606157149629825, + "2024-03-22": 0.24319981451036235, + "2023-08-10": 0.11208667837363555, + "2023-12-07": 0.15956098774901578, + "2023-11-18": 0.13214247696678894, + "2023-07-13": 0.11251046628584287, + "2023-09-13": 0.09079155219113735, + "2023-06-17": 0.1191320569407144, + "2023-07-17": 0.12063550519111918, + "2023-07-07": 0.11325647957229994, + "2023-09-07": 0.09514378360230147, + "2024-03-26": 0.27853973452915126, + "2024-05-14": 0.17501286903057076, + "2024-02-22": 0.19081154085720736, + "2024-04-15": 0.17742945854549033, + "2023-12-30": 0.22398769789526649, + "2023-09-17": 0.09609510526436713, + "2024-04-17": 0.1715271920990851, + "2024-02-12": 0.17926803790651866, + "2023-10-26": 0.10122509054243391, + "2024-01-03": 0.2060954953383187, + "2024-05-07": 0.19497361991264775, + "2023-06-01": 0.1469191041965158, + "2024-01-22": 0.16478645320897448, + "2023-06-12": 0.11176300099731862, + "2023-10-03": 0.10160010110755062, + "2024-05-26": 0.19033810361333747, + "2024-04-30": 0.17725445410917387, + "2023-06-19": 0.11606427889002963, + "2023-07-09": 0.11171997079295039, + "2023-12-24": 0.23950479929888682, + "2023-09-24": 0.1015460924, + "2024-01-16": 0.19227774229927647, + "2023-10-17": 0.09283792093262179, + "2024-04-24": 0.22142811065553816, + "2024-03-18": 0.26026546140987344, + "2024-02-17": 0.19056629756680224, + "2023-12-27": 0.22956390384419012, + "2023-07-23": 0.11567319509526276, + "2023-09-03": 0.09423730243671595, + "2024-02-24": 0.192906538320207, + "2024-01-06": 0.18869955941787594, + "2024-03-20": 0.2344094763766206, + "2023-11-21": 0.13325388628248686, + "2023-12-25": 0.2353570636966598, + "2023-09-22": 0.09989224725081272, + "2023-10-02": 0.10302626163761996, + "2024-03-27": 0.27892816599166115, + "2024-05-06": 0.19657075675202756, + "2023-08-30": 0.09759261061658459, + "2023-10-06": 0.09981963041678672, + "2023-10-13": 0.09496669593626968, + "2023-06-28": 0.12036924329514558, + "2024-02-05": 0.15966161465228015, + "2024-03-01": 0.21900097986066142, + "2023-07-15": 0.11355188680401007, + "2023-06-25": 0.13834397142201146, + "2023-12-10": 0.19850760345844212, + "2023-11-23": 0.1309113783608998, + "2023-08-04": 0.1064009515254767, + "2024-05-13": 0.17771094495308434, + "2024-01-13": 0.18733683445615765, + "2024-03-28": 0.27148099981352447, + "2023-08-05": 0.10546943102918431, + "2024-02-09": 0.17190340012547264, + "2023-10-09": 0.09681918317383911, + "2024-01-09": 0.19371097109729757, + "2024-05-10": 0.18858868279395852, + "2023-05-27": 0.1502, + "2023-08-18": 0.0952883769864013, + "2023-11-05": 0.11967656037210915, + "2024-04-18": 0.17056305624538198, + "2023-10-22": 0.0931392155314228, + "2023-11-01": 0.10916266973032933, + "2024-05-20": 0.17754337823367605, + "2023-12-08": 0.17653003383260746, + "2024-04-12": 0.20766794611498052, + "2023-07-06": 0.11857091329025486, + "2024-03-12": 0.2903456497180856, + "2023-09-11": 0.08937376426686407, + "2024-03-03": 0.2421114940571044, + "2024-02-04": 0.1617227379004056, + "2024-01-28": 0.1663096356560439, + "2023-07-01": 0.1228410005308754, + "2023-11-07": 0.1237295719815293, + "2023-11-25": 0.13938085038065673, + "2023-06-04": 0.15204504709001215, + "2024-02-25": 0.20434049838805088, + "2023-12-01": 0.13491670073547116, + "2023-07-14": 0.11865499430263104, + "2024-01-26": 0.165234845202369, + "2023-08-03": 0.10689918008438529, + "2024-02-28": 0.21118467871591667, + "2023-09-15": 0.09420173795143966, + "2023-07-18": 0.11442014440056172, + "2023-12-21": 0.20834216739747946, + "2023-07-20": 0.11489809811251836, + "2024-03-06": 0.2396030891221112, + "2023-09-30": 0.10320238111239362, + "2023-12-12": 0.20199588134212831, + "2024-02-13": 0.17985483213968753, + "2023-09-20": 0.09670677139205351, + "2023-09-19": 0.0970175231554861, + "2023-09-29": 0.10021897523861646, + "2023-09-12": 0.09013033168415092, + "2023-06-13": 0.11409665574453344, + "2023-10-04": 0.09879643496326879, + "2023-07-08": 0.11190849507514006, + "2024-04-16": 0.17196621911389728, + "2024-03-02": 0.2381010398926795, + "2023-06-27": 0.1283148144757245, + "2023-10-08": 0.10155951459115742, + "2023-11-20": 0.14407486971587932, + "2023-12-20": 0.1981784611719203, + "2023-12-31": 0.22400474395729697, + "2023-11-06": 0.12648385480232174, + "2023-08-22": 0.09593660974150882, + "2023-06-09": 0.12381887150780485, + "2024-03-17": 0.2696207447314044, + "2023-09-18": 0.09671369080646973, + "2024-04-01": 0.25443884861880595, + "2024-05-21": 0.18923322097345752, + "2024-01-19": 0.17545111248144749, + "2023-11-11": 0.1311224516293766, + "2023-09-23": 0.10099999873650584, + "2023-11-19": 0.13512379422647408, + "2023-07-02": 0.1236998762347955, + "2023-08-15": 0.11265566936008195, + "2024-01-25": 0.1613045657957923, + "2024-03-13": 0.3173108715130008, + "2024-01-21": 0.17199876442634313, + "2024-02-01": 0.1576069179692829, + "2023-06-15": 0.1108622752084921, + "2024-03-16": 0.28793792526451273, + "2023-11-27": 0.13207295008145745, + "2024-01-10": 0.18631171793662885, + "2024-03-15": 0.29080616450127755, + "2023-06-21": 0.12322646296778038, + "2024-01-02": 0.23807584630238435, + "2023-07-11": 0.10830337032469464, + "2023-10-25": 0.10089178022012206, + "2024-01-01": 0.22673828704286664, + "2024-02-14": 0.18221349320505018, + "2023-09-04": 0.09381569452966818, + "2023-09-06": 0.09344560173033056, + "2024-04-03": 0.23731185940353414, + "2023-11-28": 0.13238559037262712, + "2023-12-03": 0.15074594562011465, + "2023-08-02": 0.10853801998133297, + "2023-08-27": 0.095054634029176, + "2023-10-20": 0.090939996, + "2023-10-10": 0.09580783601633369, + "2024-05-03": 0.18634065620364293, + "2024-03-08": 0.271692220342876, + "2024-04-11": 0.2300325285650063, + "2023-06-22": 0.12651196413844418, + "2024-01-14": 0.18986341691114575, + "2023-12-15": 0.20328753880870182, + "2023-10-19": 0.08922825339312346, + "2024-02-08": 0.1682401475695789, + "2023-11-08": 0.1261238459166911, + "2023-11-12": 0.14047046563182375, + "2023-12-22": 0.23767629314111718, + "2023-05-31": 0.14752628459738992, + "2024-03-23": 0.24772196799275736, + "2023-09-27": 0.09513338806435133, + "2024-03-04": 0.25267362741908045, + "2023-09-10": 0.09157711004891905, + "2024-04-13": 0.1840903308655077, + "2024-02-29": 0.21989849592783647, + "2023-07-21": 0.1148894906873009, + "2023-06-30": 0.12096610480376674, + "2023-12-29": 0.23314777412154436, + "2023-12-04": 0.15314082855547054, + "2024-04-10": 0.22713707702916888, + "2024-05-08": 0.18877698270790194, + "2023-09-21": 0.09989575591841417, + "2023-06-02": 0.15073318929731122, + "2024-04-21": 0.1889022039474097, + "2023-07-22": 0.11594220755487596, + "2023-10-11": 0.09420102140715927, + "2024-03-21": 0.25020197718872766, + "2023-07-19": 0.11390685118774901, + "2024-05-05": 0.1957791479099762, + "2024-05-23": 0.18134107447491046, + "2024-04-08": 0.24427977286852262, + "2024-05-18": 0.18475323108130365, + "2023-06-14": 0.11467705745900653, + "2023-10-05": 0.09901230957024046, + "2023-10-16": 0.09531897257673841, + "2024-05-22": 0.18673416878223872, + "2024-02-10": 0.17451502681379746, + "2024-04-07": 0.2354424560356182, + "2024-02-20": 0.19801154005445176, + "2023-11-17": 0.13515947717991933, + "2023-12-11": 0.18877830926438893, + "2023-11-26": 0.1378040587769574, + "2023-11-16": 0.14144704084692156, + "2023-06-29": 0.12033264460974492, + "2023-10-27": 0.09990976261364205, + "2023-06-11": 0.11004758281656883, + "2024-02-02": 0.16086162112720026, + "2023-09-14": 0.09247581197312994, + "2024-01-27": 0.16665295378128916, + "2024-03-30": 0.2651657612603052, + "2023-11-22": 0.1291428330501059, + "2023-09-28": 0.09653244348879102, + "2023-06-03": 0.15133899118669358, + "2024-01-18": 0.1870973428964977, + "2023-08-26": 0.09594840343566757, + "2024-02-15": 0.18719095474969435, + "2023-10-28": 0.10141338031185453, + "2024-03-24": 0.2534615078786278, + "2024-04-27": 0.1970743896354984, + "2023-12-06": 0.1543748441497039, + "2024-01-30": 0.16773708282016941, + "2023-11-14": 0.13202502566248833, + "2023-08-09": 0.11253920287315006, + "2024-05-15": 0.17952655052816927, + "2023-11-10": 0.12362643283953027, + "2024-01-23": 0.1551764432712546, + "2024-01-31": 0.1615336146285736, + "2024-05-11": 0.18194995465915154, + "2024-01-11": 0.2012430077733236, + "2024-02-18": 0.19404686115701195, + "2023-06-16": 0.1119225258077321, + "2023-10-30": 0.10845038794923549, + "2023-12-17": 0.19594124798907062, + "2024-02-26": 0.20316900441461216, + "2023-07-16": 0.11697196173133466, + "2024-01-05": 0.19573596457111575, + "2023-08-23": 0.09765356208367663, + "2024-03-11": 0.28712102140599793, + "2023-08-01": 0.10845329767794551, + "2024-03-14": 0.31080773516823484, + "2024-02-21": 0.18581587903477068, + "2023-08-28": 0.09474682156840747, + "2023-07-04": 0.12572666723884918, + "2023-12-13": 0.19289160285973886, + "2024-02-27": 0.2083993780837706, + "2023-08-13": 0.11542183536892417, + "2024-03-31": 0.2644324885020644, + "2023-12-09": 0.20055488701042395, + "2024-04-02": 0.23741008609698946, + "2024-02-06": 0.15964904244799885, + "2024-04-09": 0.23961031562379437, + "2023-11-04": 0.11311345333799577, + "2024-04-20": 0.17968256781544695, + "2024-01-15": 0.18885833701413518, + "2023-07-03": 0.12692520455718345, + "2023-12-28": 0.2318998617086006, + "2023-05-30": 0.15114086631218407, + "2024-05-25": 0.19262072231401467, + "2024-02-07": 0.16270950025641776, + "2023-09-25": 0.09987646254161432, + "2024-03-19": 0.23461363103505603, + "2024-03-10": 0.26657291962835356, + "2024-05-02": 0.18001113653381576, + "2023-09-02": 0.0924812297290192, + "2024-01-12": 0.19882982206537186, + "2024-04-19": 0.17517983237793502, + "2023-11-29": 0.13216264431066535, + "2023-10-15": 0.09520030077490413, + "2024-05-28": 0.1964708255594225, + "2023-11-30": 0.13332204735648118, + "2024-01-24": 0.16157026022971033, + "2023-08-11": 0.1122689505902268, + "2024-02-11": 0.17609475886342457, + "2023-06-08": 0.12251225, + "2023-11-15": 0.13827504601882146, + "2023-12-16": 0.1997132727484242, + "2024-03-29": 0.27277384622914763, + "2024-04-04": 0.23681040807470863, + "2023-06-10": 0.10676048171805982, + "2023-07-28": 0.10977028309765519, + "2024-01-20": 0.17158786630600456, + "2023-10-21": 0.09302626292485222, + "2023-08-16": 0.10448793824492605, + "2024-05-24": 0.18274518061354664, + "2023-11-03": 0.10981144777259655, + "2023-08-31": 0.09539052040364383, + "2024-05-27": 0.193676365213826, + "2024-01-04": 0.20411405749878664, + "2023-07-26": 0.10977509194217216, + "2023-11-13": 0.1402236620826972, + "2023-10-24": 0.09950242977330542, + "2024-03-25": 0.2602181705037905, + "2023-08-07": 0.11022718102831978, + "2023-10-29": 0.10384894732278976, + "2024-01-29": 0.16608017711681267, + "2024-05-04": 0.19283666221056248, + "2023-06-05": 0.13822585817837438, + "2023-11-02": 0.11279525441857735, + "2023-12-18": 0.18694712597923785, + "2023-11-24": 0.13274422877011346, + "2023-08-21": 0.09530266228099533, + "2023-07-25": 0.10939687391238151, + "2024-05-16": 0.1779447402510463, + "2023-08-14": 0.11626032006371302, + "2024-05-01": 0.17619985729034446, + "2024-03-05": 0.24689306502240688, + "2024-04-06": 0.23266963235323088, + "2023-12-23": 0.23343225548547009, + "2024-02-03": 0.1654797084630676, + "2024-02-16": 0.19197770763994051, + "2023-05-28": 0.1511, + "2023-12-14": 0.20986109604924255, + "2023-06-24": 0.13386309084869713, + "2023-12-26": 0.23308744162749614, + "2023-11-09": 0.1275582780752288, + "2023-08-19": 0.09606026033668189, + "2024-05-09": 0.18926924850781685, + "2024-01-17": 0.19288428696811694, + "2023-06-23": 0.13222988594624815, + "2023-06-18": 0.11796950905106911, + "2024-04-23": 0.19306586324484465, + "2023-08-08": 0.11440157254270522, + "2023-08-17": 0.10205730161207287, + "2024-04-14": 0.17270814975821652, + "2023-07-24": 0.10985613711929584, + "2023-10-14": 0.09535280863995244, + "2024-05-22T20": 0.18607766799999997, + "2024-05-25T08": 0.193024691, + "2024-05-22T05": 0.186259014, + "2024-05-28T03": 0.192647688, + "2024-05-22T16": 0.18725504799999998, + "2024-05-25T05": 0.19382402629071419, + "2024-05-24T22": 0.18797368, + "2024-05-27T14": 0.19426003199999997, + "2024-05-22T03": 0.1867668354899289, + "2024-05-23T17": 0.178669476, + "2024-05-24T23": 0.18826610600000002, + "2024-05-26T19": 0.18973748640000002, + "2024-05-26T18": 0.1890524877484464, + "2024-05-26T10": 0.190629441, + "2024-05-27T16": 0.19860318799999999, + "2024-05-24T12": 0.182704944, + "2024-05-26T01": 0.19358064, + "2024-05-21T17": 0.190089684, + "2024-05-23T07": 0.186186357, + "2024-05-22T08": 0.1874625, + "2024-05-23T09": 0.18493895, + "2024-05-24T18": 0.186976465, + "2024-05-23T01": 0.185505344, + "2024-05-25T15": 0.19348065, + "2024-05-23T16": 0.17767117335824645, + "2024-05-25T03": 0.191621403, + "2024-05-28T06": 0.19133148, + "2024-05-25T23": 0.19336712199999997, + "2024-05-24T13": 0.18333992999999998, + "2024-05-26T03": 0.192478825, + "2024-05-26T00": 0.192574962, + "2024-05-25T06": 0.1931046598, + "2024-05-27T04": 0.191998187, + "2024-05-22T10": 0.187658706, + "2024-05-27T09": 0.19288034, + "2024-05-24T17": 0.185721964, + "2024-05-26T16": 0.1892530533478267, + "2024-05-22T09": 0.18686262, + "2024-05-24T21": 0.187183152, + "2024-05-25T04": 0.19262292000000003, + "2024-05-27T22": 0.19580008000000002, + "2024-05-27T11": 0.193479968, + "2024-05-23T21": 0.180364625, + "2024-05-23T10": 0.183435775, + "2024-05-23T14": 0.17821263299999998, + "2024-05-27T02": 0.191686838, + "2024-05-25T18": 0.19265182500000003, + "2024-05-27T05": 0.19220769599999998, + "2024-05-22T23": 0.185136651, + "2024-05-28T01": 0.19314536, + "2024-05-22T04": 0.18495005, + "2024-05-22T15": 0.18697524289369222, + "2024-05-24T03": 0.182325216, + "2024-05-24T08": 0.179347974, + "2024-05-21T22": 0.1882753843, + "2024-05-21T16": 0.19009822259999998, + "2024-05-21T23": 0.188360436, + "2024-05-24T02": 0.18243065, + "2024-05-26T07": 0.19220905550838005, + "2024-05-27T07": 0.1902276994, + "2024-05-25T22": 0.19316522400000002, + "2024-05-24T16": 0.1849223, + "2024-05-27T20": 0.19599987600000002, + "2024-05-22T02": 0.18766621400000003, + "2024-05-24T06": 0.17942102, + "2024-05-24T11": 0.18109128, + "2024-05-25T21": 0.1934895403627658, + "2024-05-27T15": 0.196031268, + "2024-05-21T19": 0.18703825699999999, + "2024-05-22T19": 0.186060919, + "2024-05-21T12": 0.19195584000000002, + "2024-05-23T20": 0.17390946999999998, + "2024-05-23T08": 0.185792178, + "2024-05-22T22": 0.18562572000000002, + "2024-05-26T11": 0.1898445315, + "2024-05-24T01": 0.18232704000000002, + "2024-05-23T05": 0.186684184, + "2024-05-28T04": 0.19046086199999998, + "2024-05-25T09": 0.192830556, + "2024-05-27T18": 0.19760022200000002, + "2024-05-24T10": 0.18120753699999997, + "2024-05-25T19": 0.192851775, + "2024-05-24T07": 0.17954971200000003, + "2024-05-26T04": 0.192250002, + "2024-05-26T09": 0.19052376, + "2024-05-23T02": 0.185503488, + "2024-05-27T06": 0.190708416, + "2024-05-28T08": 0.1907630245198664, + "2024-05-24T15": 0.1857071, + "2024-05-25T20": 0.19455135, + "2024-05-27T08": 0.19128515999999998, + "2024-05-23T22": 0.181287532, + "2024-05-26T15": 0.18878666, + "2024-05-24T20": 0.18638136000000002, + "2024-05-21T20": 0.188837663, + "2024-05-25T13": 0.19087327399999998, + "2024-05-22T01": 0.187177536, + "2024-05-25T17": 0.192657606, + "2024-05-27T10": 0.19288227, + "2024-05-21T21": 0.18755872799999998, + "2024-05-24T19": 0.186342216, + "2024-05-26T02": 0.19207886899999999, + "2024-05-27T19": 0.1949229288, + "2024-05-25T11": 0.192071185, + "2024-05-27T17": 0.198595236, + "2024-05-21T18": 0.188809328, + "2024-05-26T06": 0.19293438000000002, + "2024-05-23T00": 0.185801473, + "2024-05-22T00": 0.188066142, + "2024-05-24T05": 0.181000395, + "2024-05-23T15": 0.177472128, + "2024-05-22T13": 0.18427972699999998, + "2024-05-21T10": 0.18924754002231464, + "2024-05-22T12": 0.18396872, + "2024-05-23T04": 0.18698399799999998, + "2024-05-26T08": 0.191619486, + "2024-05-26T13": 0.18893952, + "2024-05-28T05": 0.19075300699999997, + "2024-05-22T18": 0.18546774119999998, + "2024-05-22T06": 0.18795864, + "2024-05-21T08": 0.18937464794177, + "2024-05-22T17": 0.18784962809369407, + "2024-05-23T19": 0.17733669999999999, + "2024-05-25T07": 0.19252491131852106, + "2024-05-26T22": 0.1899202, + "2024-05-25T16": 0.192773008, + "2024-05-26T05": 0.19234228, + "2024-05-24T04": 0.18279757600000002, + "2024-05-21T14": 0.190332405, + "2024-05-25T12": 0.191286609, + "2024-05-28T07": 0.18975427379999998, + "2024-05-23T18": 0.176374685, + "2024-05-26T23": 0.18940904, + "2024-05-24T09": 0.180018955, + "2024-05-23T03": 0.18627511200000002, + "2024-05-26T14": 0.189326134, + "2024-05-21T13": 0.189952002, + "2024-05-22T14": 0.186549618, + "2024-05-25T14": 0.191786574, + "2024-05-25T00": 0.18935643800000002, + "2024-05-23T23": 0.1807209287833918, + "2024-05-21T11": 0.18980873780000002, + "2024-05-23T13": 0.17813763, + "2024-05-22T11": 0.186866358, + "2024-05-21T15": 0.189754448, + "2024-05-28T00": 0.196083008, + "2024-05-27T23": 0.19650393143749426, + "2024-05-28T02": 0.19185792000000002, + "2024-05-26T21": 0.18810590000000002, + "2024-05-26T12": 0.18943936, + "2024-05-23T06": 0.18576333421899238, + "2024-05-22T07": 0.187566232, + "2024-05-27T12": 0.19366434, + "2024-05-22T21": 0.185231439, + "2024-05-24T00": 0.18181814500000001, + "2024-05-25T02": 0.191657826, + "2024-05-27T00": 0.19080455, + "2024-05-26T20": 0.18888471, + "2024-05-26T17": 0.189597562, + "2024-05-27T13": 0.19387778, + "2024-05-23T12": 0.1824805407, + "2024-05-25T10": 0.192448025, + "2024-05-21T09": 0.18931213, + "2024-05-23T11": 0.18461766640662114, + "2024-05-24T14": 0.184668792, + "2024-05-25T01": 0.19106178, + "2024-05-27T21": 0.195602242, + "2024-05-27T03": 0.191387015, + "2024-05-27T01": 0.19160606700000002, + "latest": 0.186971, + "2024-05-28T09": 0.1921629400454937, + "2024-05-28T10": 0.19294266389999998, + "2024-05-28T11": 0.192405474, + "2024-05-28T12": 0.191905979, + "2024-05-28T13": 0.19120872669754327, + "2024-05-28T14": 0.190511207, + "2024-05-28T15": 0.1907105634, + "2024-05-29": 0.1924999691494972, + "2024-05-28T20": 0.195508214, + "2024-05-28T22": 0.1948206, + "2024-05-28T21": 0.19464468099999999, + "2024-05-28T19": 0.19332192120000002, + "2024-05-29T02": 0.19198397639999998, + "2024-05-28T17": 0.19250730000000002, + "2024-05-28T18": 0.1913605, + "2024-05-28T23": 0.194113472, + "2024-05-29T00": 0.19317178799999998, + "2024-05-29T01": 0.1917976437, + "2024-05-28T16": 0.1911091245, + "2024-05-29T06": 0.19502373539999998, + "2024-05-29T05": 0.19427049000000002, + "2024-05-29T03": 0.19329489000000002, + "2024-05-29T07": 0.193390912, + "2024-05-29T04": 0.19346949700000002, + "2024-05-29T08": 0.1921077, + "2024-05-29T09": 0.19432106, + "2024-05-29T10": 0.194411238, + "2024-05-29T11": 0.19440734599999998, + "2024-05-29T12": 0.1932030325422424, + "2024-05-29T13": 0.19254969400000002, + "2024-05-29T14": 0.191458216, + "2024-05-29T15": 0.191477376, + "2024-05-29T18": 0.191715776, + "2024-05-29T17": 0.19242666, + "2024-05-29T23": 0.18957224, + "2024-05-29T19": 0.191512134, + "2024-05-29T22": 0.189988878, + "2024-05-29T20": 0.190226736, + "2024-05-29T16": 0.191068072, + "2024-05-29T21": 0.18960871476162788, + "2024-05-30": 0.19131398071913866, + "2024-05-30T00": 0.189964152, + "2024-05-30T05": 0.19270902899999998, + "2024-05-30T02": 0.19266659099999997, + "2024-05-30T01": 0.19079230078104528, + "2024-05-30T06": 0.19054744, + "2024-05-30T07": 0.18888282, + "2024-05-30T03": 0.19313933780307266, + "2024-05-30T04": 0.193369616, + "2024-05-30T08": 0.18687780599999998, + "2024-05-30T09": 0.18878666, + "2024-05-30T10": 0.19000304899999998, + "2024-05-30T11": 0.191244966, + "2024-05-30T12": 0.19074728, + "2024-05-30T13": 0.19178485999999997, + "2024-05-30T14": 0.192311496, + "2024-05-30T15": 0.19144339200000002, + "2024-05-30T21": 0.190641864, + "2024-05-30T20": 0.191463615, + "2024-05-30T18": 0.194249482, + "2024-05-30T22": 0.19003346499999998, + "2024-05-30T16": 0.193030484, + "2024-05-30T17": 0.19382631799999997, + "2024-05-30T19": 0.19346517000000002, + "2024-05-31": 0.18816455267391335, + "2024-05-30T23": 0.18983353500000003, + "2024-05-31T03": 0.189508992, + "2024-05-31T07": 0.18763939351812686, + "2024-05-31T06": 0.18804357, + "2024-05-31T04": 0.18891306, + "2024-05-31T02": 0.189520368, + "2024-05-31T05": 0.18752308399999998, + "2024-05-31T00": 0.188647164, + "2024-05-31T01": 0.1899843928, + "2024-05-31T08": 0.18728005120000002, + "2024-05-31T09": 0.186836454, + "2024-05-31T10": 0.187707308, + "2024-05-31T11": 0.18828507600000002, + "2024-05-31T12": 0.18968422199999999, + "2024-05-31T13": 0.1898822, + "2024-05-31T14": 0.18779289700000001, + "2024-06-01": 0.18823270070166043, + "2024-06-01T08": 0.18684479, + "2024-06-01T02": 0.1881102459764282, + "2024-06-01T05": 0.1879452543304496, + "2024-05-31T21": 0.189278285, + "2024-06-01T00": 0.1874985562, + "2024-05-31T18": 0.1875372408, + "2024-05-31T15": 0.1876041592, + "2024-05-31T23": 0.188309615, + "2024-05-31T22": 0.18878265, + "2024-06-01T01": 0.187610322, + "2024-06-01T07": 0.18725037523459992, + "2024-06-01T04": 0.187055856, + "2024-05-31T19": 0.18805144399999998, + "2024-06-01T06": 0.187551717, + "2024-05-31T20": 0.18887875299999998, + "2024-05-31T17": 0.1877677848, + "2024-05-31T16": 0.1861990565, + "2024-06-01T03": 0.187120184, + "2024-06-01T09": 0.18643765799999998, + "2024-06-01T10": 0.186535704, + "2024-06-02": 0.18818620974804062, + "2024-06-01T13": 0.18733125, + "2024-06-01T15": 0.188609312, + "2024-06-01T18": 0.18883179, + "2024-06-01T12": 0.187037136, + "2024-06-01T21": 0.18873187900000002, + "2024-06-01T20": 0.188631968, + "2024-06-02T01": 0.18854043702811768, + "2024-06-01T17": 0.18884879999999998, + "2024-06-01T11": 0.1866955632, + "2024-06-02T00": 0.18814936, + "2024-06-01T23": 0.18824362800000002, + "2024-06-01T14": 0.18809475299999998, + "2024-06-01T22": 0.188735657, + "2024-06-01T19": 0.188931701, + "2024-06-01T16": 0.188927919, + "2024-06-02T13": 0.186065936, + "2024-06-02T11": 0.1855281814, + "2024-06-02T07": 0.186049178, + "2024-06-02T05": 0.186942836, + "2024-06-02T08": 0.18572618079999997, + "2024-06-02T04": 0.187547963, + "2024-06-02T10": 0.184663248, + "2024-06-02T12": 0.186567443, + "2024-06-02T02": 0.18824174400000002, + "2024-06-02T16": 0.185949259, + "2024-06-02T17": 0.183980335, + "2024-06-02T03": 0.1875904125, + "2024-06-02T09": 0.184963026, + "2024-06-02T15": 0.186545039, + "2024-06-02T06": 0.186940965, + "2024-06-02T18": 0.183488004, + "2024-06-02T14": 0.18629390610000002, + "2024-06-03": 0.18259863814432278, + "2024-06-03T01": 0.1831054036, + "2024-06-02T20": 0.182793918, + "2024-06-03T00": 0.18164067984761342, + "2024-06-02T21": 0.18270369943794695, + "2024-06-02T23": 0.182801234, + "2024-06-02T19": 0.18349167600000002, + "2024-06-02T22": 0.1826113366, + "2024-06-03T02": 0.18525353400000003, + "2024-06-03T05": 0.18657798599999997, + "2024-06-03T06": 0.18766981440000002, + "2024-06-03T04": 0.18529246800000002, + "2024-06-03T03": 0.185090732, + "2024-06-03T07": 0.188377475 + }, + "USD astar": { + "2023-07-30": 0.0547337677011842, + "2023-10-23": 0.0433, + "2023-07-27": 0.0503, + "2023-07-10": 0.0424, + "2023-08-20": 0.0601, + "2024-02-23": 0.15953324477481784, + "2024-04-05": 0.1253375411207659, + "2023-12-19": 0.0957, + "2024-05-17": 0.09111912696376412, + "2023-08-06": 0.0497, + "2023-12-02": 0.0699, + "2023-10-31": 0.0543, + "2023-08-29": 0.061, + "2023-06-20": 0.042, + "2023-09-09": 0.0601, + "2023-06-26": 0.048, + "2023-10-01": 0.049006977166528506, + "2024-03-07": 0.15358649029025856, + "2023-10-12": 0.04173432203987899, + "2024-04-22": 0.11544614699779118, + "2023-07-05": 0.04512671737433247, + "2023-07-29": 0.0522, + "2024-04-26": 0.10511552372706194, + "2024-01-08": 0.132, + "2023-05-29": 0.0514, + "2023-10-07": 0.04658565312294192, + "2023-09-26": 0.049123379512471636, + "2023-08-24": 0.0657, + "2023-12-05": 0.072, + "2024-02-19": 0.1739, + "2024-01-07": 0.1332, + "2024-04-28": 0.10525167868757111, + "2023-07-31": 0.0562, + "2023-10-18": 0.0402, + "2024-05-19": 0.08960854487701404, + "2024-05-12": 0.08946633048442461, + "2024-04-29": 0.10254746474939486, + "2023-08-25": 0.0631, + "2024-03-09": 0.15433768839663978, + "2023-07-12": 0.0427, + "2023-09-05": 0.0535, + "2023-06-07": 0.04201245825454716, + "2023-09-16": 0.0506, + "2024-04-25": 0.10837067454753499, + "2023-08-12": 0.0599, + "2023-06-06": 0.0442, + "2023-09-01": 0.0565, + "2023-09-08": 0.058803726957824334, + "2024-03-22": 0.13326721449855994, + "2023-08-10": 0.0519, + "2023-12-07": 0.0711, + "2023-11-18": 0.0624, + "2023-07-13": 0.04353304629982367, + "2023-09-13": 0.0536, + "2023-06-17": 0.03854115089467766, + "2023-07-17": 0.042503021025698605, + "2023-07-07": 0.042718448800994, + "2023-09-07": 0.05861564059371878, + "2024-03-26": 0.14525951542664794, + "2024-05-14": 0.08542638823585119, + "2024-02-22": 0.1654, + "2024-04-15": 0.10258248991902665, + "2023-12-30": 0.1335, + "2023-09-17": 0.0503, + "2024-04-17": 0.09726298538364882, + "2024-02-12": 0.191, + "2023-10-26": 0.05151769606477528, + "2024-01-03": 0.1728, + "2024-05-07": 0.0962199900409768, + "2023-06-01": 0.0496, + "2024-01-22": 0.1756, + "2023-06-12": 0.036620731495824, + "2023-10-03": 0.0479, + "2024-05-26": 0.09053739479999999, + "2024-04-30": 0.09296757573141134, + "2023-06-19": 0.0409, + "2023-07-09": 0.0426, + "2023-12-24": 0.10493624512240743, + "2023-09-24": 0.0506, + "2024-01-16": 0.1617, + "2023-10-17": 0.041999635753626884, + "2024-04-24": 0.11517093346289937, + "2024-03-18": 0.1470688541737157, + "2024-02-17": 0.1663, + "2023-12-27": 0.1286, + "2023-07-23": 0.0448, + "2023-09-03": 0.0555, + "2024-02-24": 0.15993047280916092, + "2024-01-06": 0.1429, + "2024-03-20": 0.13237770211918853, + "2023-11-21": 0.0634, + "2023-12-25": 0.1062, + "2023-09-22": 0.0528652591451461, + "2023-10-02": 0.048645216152988585, + "2024-03-27": 0.14140866110683137, + "2024-05-06": 0.09840580741447738, + "2023-08-30": 0.0593, + "2023-10-06": 0.0454, + "2023-10-13": 0.0416, + "2023-06-28": 0.0462, + "2024-02-05": 0.1787, + "2024-03-01": 0.15950037233396547, + "2023-07-15": 0.0452, + "2023-06-25": 0.0481, + "2023-12-10": 0.0746, + "2023-11-23": 0.0654, + "2023-08-04": 0.0509, + "2024-05-13": 0.0877580393999645, + "2024-01-13": 0.1505, + "2024-03-28": 0.14097246425859364, + "2023-08-05": 0.048549370728544206, + "2024-02-09": 0.1809051495462406, + "2023-10-09": 0.0436, + "2024-01-09": 0.1479, + "2024-05-10": 0.09190817460864933, + "2023-05-27": 0.0501, + "2023-08-18": 0.05851190989436311, + "2023-11-05": 0.0557, + "2024-04-18": 0.0983027674212671, + "2023-10-22": 0.0411, + "2023-11-01": 0.0552, + "2024-05-20": 0.09001450050000001, + "2023-12-08": 0.0723, + "2024-04-12": 0.12693883495956473, + "2023-07-06": 0.0434, + "2024-03-12": 0.15952542122336638, + "2023-09-11": 0.0583, + "2024-03-03": 0.16466855134396483, + "2024-02-04": 0.1815, + "2024-01-28": 0.184, + "2023-07-01": 0.0446, + "2023-11-07": 0.0616, + "2023-11-25": 0.06692301869764461, + "2023-06-04": 0.0497, + "2024-02-25": 0.1605, + "2023-12-01": 0.0671, + "2023-07-14": 0.04577276502844649, + "2024-01-26": 0.17391629855527801, + "2023-08-03": 0.05001311236534145, + "2024-02-28": 0.1618, + "2023-09-15": 0.05032753832121259, + "2023-07-18": 0.0427, + "2023-12-21": 0.0947, + "2023-07-20": 0.0433, + "2024-03-06": 0.1542268831966655, + "2023-09-30": 0.0489, + "2023-12-12": 0.076, + "2024-02-13": 0.18, + "2023-09-20": 0.0525, + "2023-09-19": 0.0514, + "2023-09-29": 0.048601713797084355, + "2023-09-12": 0.05853252025497326, + "2023-06-13": 0.0369, + "2023-10-04": 0.0458, + "2023-07-08": 0.0427, + "2024-04-16": 0.09653666759758407, + "2024-03-02": 0.1661, + "2023-06-27": 0.048, + "2023-10-08": 0.045621734657968684, + "2023-11-20": 0.0665, + "2023-12-20": 0.09554547856526993, + "2023-12-31": 0.1431, + "2023-11-06": 0.0629, + "2023-08-22": 0.0595, + "2023-06-09": 0.0418, + "2024-03-17": 0.14450399671805458, + "2023-09-18": 0.0511, + "2024-04-01": 0.13304079382634246, + "2024-05-21": 0.0950307380717146, + "2024-01-19": 0.1712, + "2023-11-11": 0.0702, + "2023-09-23": 0.0516, + "2023-11-19": 0.06501067274444425, + "2023-07-02": 0.0441, + "2023-08-15": 0.05761097222839, + "2024-01-25": 0.1673, + "2024-03-13": 0.16254095893931594, + "2024-01-21": 0.19191488718262195, + "2024-02-01": 0.17804538411523227, + "2023-06-15": 0.0384, + "2024-03-16": 0.15460478814234893, + "2023-11-27": 0.0643, + "2024-01-10": 0.13518367468702688, + "2024-03-15": 0.15324519689951002, + "2023-06-21": 0.0434, + "2024-01-02": 0.165, + "2023-07-11": 0.0423, + "2023-10-25": 0.0516, + "2024-01-01": 0.1397, + "2024-02-14": 0.175, + "2023-09-04": 0.0535, + "2023-09-06": 0.0556, + "2024-04-03": 0.12157836167582554, + "2023-11-28": 0.0658, + "2023-12-03": 0.06980976738315287, + "2023-08-02": 0.0537, + "2023-08-27": 0.062, + "2023-10-20": 0.041, + "2023-10-10": 0.0436, + "2024-05-03": 0.0962558801756423, + "2024-03-08": 0.15462505564003298, + "2024-04-11": 0.13242221940287505, + "2023-06-22": 0.046, + "2024-01-14": 0.1483091349232405, + "2023-12-15": 0.082, + "2023-10-19": 0.0399, + "2024-02-08": 0.1797, + "2023-11-08": 0.062, + "2023-11-12": 0.0791, + "2023-12-22": 0.0909, + "2023-05-31": 0.0488, + "2024-03-23": 0.13501121433003418, + "2023-09-27": 0.048, + "2024-03-04": 0.1613492663821812, + "2023-09-10": 0.0587, + "2024-04-13": 0.1079935593138357, + "2024-02-29": 0.1584, + "2023-07-21": 0.0434, + "2023-06-30": 0.0447, + "2023-12-29": 0.1263, + "2023-12-04": 0.07111779992989861, + "2024-04-10": 0.13816378070728377, + "2024-05-08": 0.0938873824030785, + "2023-09-21": 0.0568, + "2023-06-02": 0.0495, + "2024-04-21": 0.11201156270514326, + "2023-07-22": 0.04343077110139432, + "2023-10-11": 0.0434, + "2024-03-21": 0.13951669150983734, + "2023-07-19": 0.0428, + "2024-05-05": 0.0980941049388143, + "2024-05-23": 0.09065102209379222, + "2024-04-08": 0.13659898161453635, + "2024-05-18": 0.09268594527136359, + "2023-06-14": 0.038404210106625855, + "2023-10-05": 0.04550565742874687, + "2023-10-16": 0.04288313132200431, + "2024-05-22": 0.09300261215698745, + "2024-02-10": 0.1882, + "2024-04-07": 0.1292684957423217, + "2024-02-20": 0.1688, + "2023-11-17": 0.064, + "2023-12-11": 0.0752, + "2023-11-26": 0.0669, + "2023-11-16": 0.067, + "2023-06-29": 0.045630725817992726, + "2023-10-27": 0.0498, + "2023-06-11": 0.03487408407321358, + "2024-02-02": 0.1822, + "2023-09-14": 0.0511, + "2024-01-27": 0.1871, + "2024-03-30": 0.1387804019028967, + "2023-11-22": 0.06323973419726672, + "2023-09-28": 0.0481, + "2023-06-03": 0.0495, + "2024-01-18": 0.1702, + "2023-08-26": 0.063, + "2024-02-15": 0.1755, + "2023-10-28": 0.051003474168068566, + "2024-03-24": 0.13601781328795662, + "2024-04-27": 0.10014090722794079, + "2023-12-06": 0.0711, + "2024-01-30": 0.18592821679507465, + "2023-11-14": 0.06946436582064577, + "2023-08-09": 0.0519, + "2024-05-15": 0.08610225839174501, + "2023-11-10": 0.0695, + "2024-01-23": 0.1616, + "2024-01-31": 0.1776, + "2024-05-11": 0.08997485188880677, + "2024-01-11": 0.1528, + "2024-02-18": 0.17108703640745526, + "2023-06-16": 0.0383, + "2023-10-30": 0.0544, + "2023-12-17": 0.08022075965767306, + "2024-02-26": 0.1631, + "2023-07-16": 0.0431, + "2024-01-05": 0.1595, + "2023-08-23": 0.0656, + "2024-03-11": 0.16576350368339782, + "2023-08-01": 0.05374277274538819, + "2024-03-14": 0.163996733190389, + "2024-02-21": 0.161, + "2023-08-28": 0.0598, + "2023-07-04": 0.0456, + "2023-12-13": 0.0805, + "2024-02-27": 0.1612, + "2023-08-13": 0.0597, + "2024-03-31": 0.13801775899537272, + "2023-12-09": 0.0752052019913957, + "2024-04-02": 0.1242359481867935, + "2024-02-06": 0.18, + "2024-04-09": 0.14249323549823562, + "2023-11-04": 0.0552, + "2024-04-20": 0.10702024542021818, + "2024-01-15": 0.1459, + "2023-07-03": 0.04540595199231856, + "2023-12-28": 0.1277, + "2023-05-30": 0.0505, + "2024-05-25": 0.0906816761583529, + "2024-02-07": 0.1778, + "2023-09-25": 0.0507, + "2024-03-19": 0.13366893509055408, + "2024-03-10": 0.15692975182307814, + "2024-05-02": 0.09369765740472583, + "2023-09-02": 0.0555, + "2024-01-12": 0.1537, + "2024-04-19": 0.10337769016209832, + "2023-11-29": 0.0665, + "2023-10-15": 0.0423, + "2024-05-28": 0.08981363340696083, + "2023-11-30": 0.066, + "2024-01-24": 0.172, + "2023-08-11": 0.0562, + "2024-02-11": 0.18792284685790456, + "2023-06-08": 0.0416, + "2023-11-15": 0.0692, + "2023-12-16": 0.0818, + "2024-03-29": 0.1392210786452337, + "2024-04-04": 0.12352960281152744, + "2023-06-10": 0.0358, + "2023-07-28": 0.0549, + "2024-01-20": 0.175, + "2023-10-21": 0.0419, + "2023-08-16": 0.0568, + "2024-05-24": 0.08876308118411921, + "2023-11-03": 0.0535, + "2023-08-31": 0.0557, + "2024-05-27": 0.09137334682250477, + "2024-01-04": 0.1727104485288152, + "2023-07-26": 0.0489, + "2023-11-13": 0.07424663333329518, + "2023-10-24": 0.0515, + "2024-03-25": 0.14263323719710483, + "2023-08-07": 0.0519, + "2023-10-29": 0.0521, + "2024-01-29": 0.1794, + "2024-05-04": 0.09834512495486665, + "2023-06-05": 0.0447, + "2023-11-02": 0.0556, + "2023-12-18": 0.11592359555704226, + "2023-11-24": 0.0679, + "2023-08-21": 0.0594, + "2023-07-25": 0.0457, + "2024-05-16": 0.08941251786402596, + "2023-08-14": 0.0606, + "2024-05-01": 0.09029743179812805, + "2024-03-05": 0.1557047646123597, + "2024-04-06": 0.12665790562582158, + "2023-12-23": 0.0991, + "2024-02-03": 0.18572018378367788, + "2024-02-16": 0.17001956189462253, + "2023-05-28": 0.0502, + "2023-12-14": 0.0859, + "2023-06-24": 0.0474, + "2023-12-26": 0.11115825382655034, + "2023-11-09": 0.0661, + "2023-08-19": 0.0594, + "2024-05-09": 0.09273383906675078, + "2024-01-17": 0.1655, + "2023-06-23": 0.04620977672910209, + "2023-06-18": 0.040728850679683695, + "2024-04-23": 0.1134441846379183, + "2023-08-08": 0.0523, + "2023-08-17": 0.0527, + "2024-04-14": 0.09990100543560518, + "2023-07-24": 0.04306751928925029, + "2023-10-14": 0.0419, + "2024-05-22T20": 0.0926837737737993, + "2024-05-25T08": 0.090564666, + "2024-05-22T05": 0.0933094674, + "2024-05-28T03": 0.0891095478, + "2024-05-22T16": 0.093577536, + "2024-05-25T05": 0.09056376000000001, + "2024-05-24T22": 0.090287358, + "2024-05-27T14": 0.0916239832, + "2024-05-22T03": 0.09398026, + "2024-05-23T17": 0.09019411020000001, + "2024-05-24T23": 0.090383728, + "2024-05-26T19": 0.0899514, + "2024-05-26T18": 0.089753304, + "2024-05-26T10": 0.09176603400000001, + "2024-05-27T16": 0.09320763299999998, + "2024-05-24T12": 0.08885377200000001, + "2024-05-26T01": 0.09239076, + "2024-05-21T17": 0.0952347318, + "2024-05-23T07": 0.09394266, + "2024-05-22T08": 0.09328133999999999, + "2024-05-23T09": 0.0929593133, + "2024-05-24T18": 0.09005495000000001, + "2024-05-23T01": 0.09281264139999999, + "2024-05-25T15": 0.09119088, + "2024-05-23T16": 0.0900278379, + "2024-05-25T03": 0.09017494441379695, + "2024-05-28T06": 0.08921367536215903, + "2024-05-25T23": 0.092284309, + "2024-05-24T13": 0.08874672, + "2024-05-26T03": 0.091689913, + "2024-05-26T00": 0.092387988, + "2024-05-25T06": 0.090164822, + "2024-05-27T04": 0.0906219449, + "2024-05-22T10": 0.093079518, + "2024-05-27T09": 0.09032396440000001, + "2024-05-24T17": 0.08886266200000001, + "2024-05-26T16": 0.089862242, + "2024-05-22T09": 0.092951406, + "2024-05-24T21": 0.09029187300000001, + "2024-05-25T04": 0.09056376000000001, + "2024-05-27T22": 0.09240564999999999, + "2024-05-27T11": 0.0907037288, + "2024-05-23T21": 0.090032425, + "2024-05-23T10": 0.09256759, + "2024-05-23T14": 0.090455655, + "2024-05-27T02": 0.0905865224, + "2024-05-25T18": 0.0907705638615445, + "2024-05-27T05": 0.08985684799999999, + "2024-05-22T23": 0.092498357, + "2024-05-28T01": 0.0910782848605949, + "2024-05-22T04": 0.09297489, + "2024-05-22T15": 0.093572856, + "2024-05-24T03": 0.09196228, + "2024-05-24T08": 0.087174712, + "2024-05-21T22": 0.094672537, + "2024-05-21T16": 0.09525902099999999, + "2024-05-21T23": 0.09467033841285098, + "2024-05-24T02": 0.091665154, + "2024-05-26T07": 0.09219881176360431, + "2024-05-27T07": 0.089347254, + "2024-05-25T22": 0.0915235228, + "2024-05-24T16": 0.08876270400000001, + "2024-05-27T20": 0.09220585399999999, + "2024-05-22T02": 0.09432435798231818, + "2024-05-24T06": 0.089060796, + "2024-05-24T11": 0.08848687599999999, + "2024-05-25T21": 0.0909818, + "2024-05-27T15": 0.092220622, + "2024-05-21T19": 0.094168914, + "2024-05-22T19": 0.0925305645, + "2024-05-21T12": 0.09497815000000001, + "2024-05-23T20": 0.08773415, + "2024-05-23T08": 0.09334582799999999, + "2024-05-22T22": 0.09266292000000001, + "2024-05-26T11": 0.09197859100000001, + "2024-05-24T01": 0.091643328, + "2024-05-23T05": 0.09404165800000001, + "2024-05-28T04": 0.0885653001, + "2024-05-25T09": 0.090567384, + "2024-05-27T18": 0.09350546400000001, + "2024-05-24T10": 0.088354916, + "2024-05-25T19": 0.09097725, + "2024-05-24T07": 0.087075612, + "2024-05-26T04": 0.091676158, + "2024-05-26T09": 0.09106356, + "2024-05-23T02": 0.093251484, + "2024-05-27T06": 0.08958697759999999, + "2024-05-28T08": 0.08932168773815338, + "2024-05-24T15": 0.0897551, + "2024-05-25T20": 0.0911772, + "2024-05-27T08": 0.089806084, + "2024-05-23T22": 0.090843642, + "2024-05-26T15": 0.09043570599999999, + "2024-05-24T20": 0.090130986, + "2024-05-21T20": 0.094668749, + "2024-05-25T13": 0.09088727399999999, + "2024-05-22T01": 0.09438867199999999, + "2024-05-25T17": 0.090680046, + "2024-05-27T10": 0.09074805684191635, + "2024-05-21T21": 0.094179276, + "2024-05-24T19": 0.089872131, + "2024-05-26T02": 0.09165235135650583, + "2024-05-27T19": 0.092006979, + "2024-05-25T11": 0.09149627349999999, + "2024-05-27T17": 0.09350359200000001, + "2024-05-21T18": 0.095254256, + "2024-05-26T06": 0.092068686, + "2024-05-23T00": 0.09285076299999999, + "2024-05-22T00": 0.0945729738, + "2024-05-24T05": 0.090450225, + "2024-05-23T15": 0.09003512799999999, + "2024-05-22T13": 0.09138994599999999, + "2024-05-21T10": 0.09507662164909778, + "2024-05-22T12": 0.0915144399, + "2024-05-23T04": 0.09404165800000001, + "2024-05-26T08": 0.091861402, + "2024-05-26T13": 0.090171136, + "2024-05-28T05": 0.08881374490636161, + "2024-05-22T18": 0.0925488928, + "2024-05-22T06": 0.09387934199999999, + "2024-05-21T08": 0.09548698178500074, + "2024-05-22T17": 0.093585024, + "2024-05-23T19": 0.08941766, + "2024-05-25T07": 0.0904247206, + "2024-05-26T22": 0.090162116, + "2024-05-25T16": 0.09088727399999999, + "2024-05-26T05": 0.09160251100000001, + "2024-05-24T04": 0.0918685248, + "2024-05-21T14": 0.095676075, + "2024-05-25T12": 0.09117361739999999, + "2024-05-28T07": 0.089126856, + "2024-05-23T18": 0.08912667510000001, + "2024-05-26T23": 0.08995679999999999, + "2024-05-24T09": 0.08816031, + "2024-05-23T03": 0.09367719420000001, + "2024-05-26T14": 0.090264783, + "2024-05-21T13": 0.09578083999999999, + "2024-05-22T14": 0.092475025, + "2024-05-25T14": 0.09073755529738073, + "2024-05-25T00": 0.0899793, + "2024-05-23T23": 0.09087999520000001, + "2024-05-21T11": 0.0948543824, + "2024-05-23T13": 0.090548297, + "2024-05-22T11": 0.09298326, + "2024-05-21T15": 0.09537710399999999, + "2024-05-28T00": 0.09182647999999999, + "2024-05-27T23": 0.09212255200000001, + "2024-05-28T02": 0.09023317800000001, + "2024-05-26T21": 0.0895552, + "2024-05-26T12": 0.090271104, + "2024-05-23T06": 0.093840843, + "2024-05-22T07": 0.0933431952, + "2024-05-27T12": 0.09083636999999999, + "2024-05-22T21": 0.092165886, + "2024-05-24T00": 0.09125891500000001, + "2024-05-25T02": 0.0899802, + "2024-05-27T00": 0.0897551, + "2024-05-26T20": 0.089745222, + "2024-05-26T17": 0.0899514, + "2024-05-27T13": 0.091342418, + "2024-05-23T12": 0.093154332, + "2024-05-25T10": 0.091075403, + "2024-05-21T09": 0.09518096000000001, + "2024-05-23T11": 0.09305345000000001, + "2024-05-24T14": 0.0894964124, + "2024-05-25T01": 0.08988201999999999, + "2024-05-27T21": 0.092406575, + "2024-05-27T03": 0.0906864634, + "2024-05-27T01": 0.0903257187, + "latest": 0.087622, + "2024-05-28T09": 0.089607609, + "2024-05-28T10": 0.09031231199999999, + "2024-05-28T11": 0.0899091, + "2024-05-28T12": 0.09003958144935312, + "2024-05-28T13": 0.0896103, + "2024-05-28T14": 0.08948367118896107, + "2024-05-28T15": 0.0894957948, + "2024-05-29": 0.08925432227496198, + "2024-05-28T20": 0.09081091799999999, + "2024-05-28T22": 0.09016697, + "2024-05-28T21": 0.09064110439999999, + "2024-05-28T19": 0.0903786973, + "2024-05-29T02": 0.089208914, + "2024-05-28T17": 0.08990015267981645, + "2024-05-28T18": 0.08958787500000001, + "2024-05-28T23": 0.089813696, + "2024-05-29T00": 0.09019344600000001, + "2024-05-29T01": 0.089591463, + "2024-05-28T16": 0.089806095180197, + "2024-05-29T06": 0.09029061599999999, + "2024-05-29T05": 0.089694036, + "2024-05-29T03": 0.08940513, + "2024-05-29T07": 0.089603124, + "2024-05-29T04": 0.0895433165, + "2024-05-29T08": 0.0890109, + "2024-05-29T09": 0.08951756799999999, + "2024-05-29T10": 0.089712894, + "2024-05-29T11": 0.08981099899999999, + "2024-05-29T12": 0.08941318499999999, + "2024-05-29T13": 0.08924069471421273, + "2024-05-29T14": 0.089034066, + "2024-05-29T15": 0.08894304, + "2024-05-29T18": 0.088814656, + "2024-05-29T17": 0.0888200971215981, + "2024-05-29T23": 0.08819404, + "2024-05-29T19": 0.088712976, + "2024-05-29T22": 0.088201987, + "2024-05-29T20": 0.08821964700000001, + "2024-05-29T16": 0.0884505054703931, + "2024-05-29T21": 0.088111109810198, + "2024-05-30": 0.08775525804576462, + "2024-05-30T00": 0.08827281970412335, + "2024-05-30T05": 0.088312484, + "2024-05-30T02": 0.08877264073568605, + "2024-05-30T01": 0.08860354491768963, + "2024-05-30T06": 0.08752992, + "2024-05-30T07": 0.087045998, + "2024-05-30T03": 0.08843375199999999, + "2024-05-30T04": 0.08889409, + "2024-05-30T08": 0.08624822, + "2024-05-30T09": 0.08679788999999999, + "2024-05-30T10": 0.0870855637, + "2024-05-30T11": 0.087628963, + "2024-05-30T12": 0.08762984, + "2024-05-30T13": 0.08794719999999999, + "2024-05-30T14": 0.0880394832, + "2024-05-30T15": 0.08756496, + "2024-05-30T21": 0.08688262000000001, + "2024-05-30T20": 0.08723342249999999, + "2024-05-30T18": 0.088077094, + "2024-05-30T22": 0.08672963400000001, + "2024-05-30T16": 0.087768392, + "2024-05-30T17": 0.088166484, + "2024-05-30T19": 0.08788417800000001, + "2024-05-31": 0.08608596155663822, + "2024-05-30T23": 0.0865397005, + "2024-05-31T03": 0.086358528, + "2024-05-31T07": 0.08617414, + "2024-05-31T06": 0.08617414, + "2024-05-31T04": 0.086260302, + "2024-05-31T02": 0.08646366999999999, + "2024-05-31T05": 0.0857848138, + "2024-05-31T00": 0.0861458724, + "2024-05-31T01": 0.0863192784, + "2024-05-31T08": 0.086172416, + "2024-05-31T09": 0.08597076, + "2024-05-31T10": 0.0859484, + "2024-05-31T11": 0.086247357, + "2024-05-31T12": 0.086647113, + "2024-05-31T13": 0.086746184, + "2024-05-31T14": 0.0858210541, + "2024-06-01": 0.08570685741765328, + "2024-06-01T08": 0.08532911800000001, + "2024-06-01T02": 0.08571334200000001, + "2024-06-01T05": 0.08593292, + "2024-05-31T21": 0.08639879499999999, + "2024-06-01T00": 0.0856525452, + "2024-05-31T18": 0.08570733600000001, + "2024-05-31T15": 0.0858986449, + "2024-05-31T23": 0.08581324100000001, + "2024-05-31T22": 0.086200755, + "2024-06-01T01": 0.085613443, + "2024-06-01T07": 0.0855316548563594, + "2024-06-01T04": 0.08570539221018099, + "2024-05-31T19": 0.086086216, + "2024-06-01T06": 0.085632297, + "2024-05-31T20": 0.08626925787832379, + "2024-05-31T17": 0.08593034, + "2024-05-31T16": 0.0850710366, + "2024-06-01T03": 0.08573135999999999, + "2024-06-01T09": 0.085425615, + "2024-06-01T10": 0.08532484800000001, + "2024-06-02": 0.08673839501223553, + "2024-06-01T13": 0.08562287, + "2024-06-01T15": 0.08591314, + "2024-06-01T18": 0.0857436202, + "2024-06-01T12": 0.0855555019, + "2024-06-01T21": 0.08612328200000001, + "2024-06-01T20": 0.08592346, + "2024-06-02T01": 0.08716062265581473, + "2024-06-01T17": 0.08573135999999999, + "2024-06-01T11": 0.08532484800000001, + "2024-06-02T00": 0.08646077599999999, + "2024-06-01T23": 0.0862683378, + "2024-06-01T14": 0.08579737738969567, + "2024-06-01T22": 0.086224919, + "2024-06-01T19": 0.08562396070899203, + "2024-06-01T16": 0.085721922, + "2024-06-02T13": 0.08693735999999999, + "2024-06-02T11": 0.086438585, + "2024-06-02T07": 0.0865997973, + "2024-06-02T05": 0.087126752, + "2024-06-02T08": 0.086637576, + "2024-06-02T04": 0.08707940850000001, + "2024-06-02T10": 0.086236138, + "2024-06-02T12": 0.0867783436, + "2024-06-02T02": 0.08708678560000001, + "2024-06-02T16": 0.087029449, + "2024-06-02T17": 0.08634384, + "2024-06-02T03": 0.08692604999999999, + "2024-06-02T09": 0.086236138, + "2024-06-02T15": 0.08732064466068472, + "2024-06-02T06": 0.08738565899999999, + "2024-06-02T18": 0.086047479, + "2024-06-02T14": 0.087236271, + "2024-06-03": 0.08604624440962527, + "2024-06-03T01": 0.08663112135366093, + "2024-06-02T20": 0.086050062, + "2024-06-03T00": 0.085452975, + "2024-06-02T21": 0.08597781140042296, + "2024-06-02T23": 0.08595356, + "2024-06-02T19": 0.086249083, + "2024-06-02T22": 0.085753668, + "2024-06-03T02": 0.08716108830000001, + "2024-06-03T05": 0.08724762, + "2024-06-03T06": 0.087244128, + "2024-06-03T04": 0.086649714, + "2024-06-03T03": 0.08694866999999999, + "2024-06-03T07": 0.08770859432204156 + }, + "USD avalanche_c_chain": { + "2023-07-30": 13.26285855821483, + "2023-10-23": 10.121663967642567, + "2023-07-27": 13.252989921243836, + "2023-07-10": 13.348794963736134, + "2023-08-20": 10.842189719808713, + "2024-02-23": 36.36151533144375, + "2024-04-05": 45.35320328017996, + "2023-12-19": 40.68806067177366, + "2024-05-17": 36.58560812879139, + "2023-08-06": 12.566094902984164, + "2023-12-02": 22.017652277310457, + "2023-10-31": 11.458051561612336, + "2023-08-29": 10.510249012056036, + "2023-06-20": 11.488037799324061, + "2023-09-09": 9.878925528807779, + "2023-06-26": 13.358471312723612, + "2023-10-01": 9.529688129241187, + "2024-03-07": 43.23806224412174, + "2023-10-12": 9.055856769949445, + "2024-04-22": 38.98184561240733, + "2023-07-05": 12.697836158202298, + "2023-07-29": 13.229739126032394, + "2024-04-26": 35.254761029464404, + "2024-01-08": 33.91340188691562, + "2023-05-29": 14.663877625005572, + "2023-10-07": 10.684802058561894, + "2023-09-26": 8.981024250823664, + "2023-08-24": 10.265563301673842, + "2023-12-05": 22.693267847832978, + "2024-02-19": 39.89010874340878, + "2024-01-07": 34.85374855325751, + "2024-04-28": 34.79540380955206, + "2023-07-31": 13.077452506160995, + "2023-10-18": 9.063247871555046, + "2024-05-19": 36.399167994344864, + "2024-05-12": 33.57952923527786, + "2024-04-29": 34.102230560238354, + "2023-08-25": 10.005710295008955, + "2024-03-09": 43.06640404405733, + "2023-07-12": 13.192301784236367, + "2023-09-05": 9.847070756949195, + "2023-06-07": 14.393492593453114, + "2023-09-16": 9.457986114098466, + "2024-04-25": 35.63251664641576, + "2023-08-12": 12.44150452234388, + "2023-06-06": 14.130700675243308, + "2023-09-01": 9.976356712556463, + "2023-09-08": 9.945585380864738, + "2024-03-22": 54.26728796126978, + "2023-08-10": 12.521109218251238, + "2023-12-07": 26.523988373581037, + "2023-11-18": 21.446774969373084, + "2023-07-13": 13.744844222065693, + "2023-09-13": 9.245153381679218, + "2023-06-17": 11.702350523535028, + "2023-07-17": 14.29328894486951, + "2023-07-07": 12.61742920755762, + "2023-09-07": 9.952222359944553, + "2024-03-26": 57.70529022225054, + "2024-05-14": 32.24490330824468, + "2024-02-22": 37.27214304983658, + "2024-04-15": 36.61301995443266, + "2023-12-30": 39.59072170361071, + "2023-09-17": 9.229456920421539, + "2024-04-17": 34.29240473871357, + "2024-02-12": 39.670702183857294, + "2023-10-26": 10.951253002533399, + "2024-01-03": 37.072602181482395, + "2024-05-07": 36.78920004521008, + "2023-06-01": 14.133426228443891, + "2024-01-22": 30.902847994563203, + "2023-06-12": 11.470469153384661, + "2023-10-03": 9.339272751244751, + "2024-05-26": 37.217257808272024, + "2024-04-30": 33.1815266233493, + "2023-06-19": 11.338662397994721, + "2023-07-09": 13.957239980080628, + "2023-12-24": 47.797145369276315, + "2023-09-24": 8.9305358, + "2024-01-16": 35.76980542724829, + "2023-10-17": 9.218584662788304, + "2024-04-24": 38.41491180389375, + "2024-03-18": 61.61678237433298, + "2024-02-17": 39.68436019047477, + "2023-12-27": 43.34616140618148, + "2023-07-23": 13.570922285409575, + "2023-09-03": 9.903667856889463, + "2024-02-24": 36.453258590979736, + "2024-01-06": 34.770458687458, + "2024-03-20": 53.239330180343146, + "2023-11-21": 20.866228520587978, + "2023-12-25": 47.470227685210475, + "2023-09-22": 8.868604828936721, + "2023-10-02": 9.674251944248944, + "2024-03-27": 54.5754229596976, + "2024-05-06": 37.68696248125761, + "2023-08-30": 10.524887054558457, + "2023-10-06": 10.642251544538107, + "2023-10-13": 9.142480192185497, + "2023-06-28": 12.759823521675047, + "2024-02-05": 34.87248387417083, + "2024-03-01": 42.263537253061536, + "2023-07-15": 14.927200481852012, + "2023-06-25": 13.455750883479277, + "2023-12-10": 33.16954485490071, + "2023-11-23": 20.837406941630878, + "2023-08-04": 12.457963923561284, + "2024-05-13": 33.03598138857821, + "2024-01-13": 35.940101874908464, + "2024-03-28": 54.39328464722737, + "2023-08-05": 12.331265584160294, + "2024-02-09": 37.0043788004093, + "2023-10-09": 9.67577586177425, + "2024-01-09": 35.71707762570838, + "2024-05-10": 35.04738632497393, + "2023-05-27": 14.385088645263146, + "2023-08-18": 10.780766987337524, + "2023-11-05": 12.36319683314404, + "2024-04-18": 34.4472011751152, + "2023-10-22": 9.833469505238043, + "2023-11-01": 11.214334729158649, + "2024-05-20": 36.4925677508941, + "2023-12-08": 27.41316151229285, + "2024-04-12": 41.84571184059793, + "2023-07-06": 12.650205482603996, + "2024-03-12": 50.726041773770234, + "2023-09-11": 9.248998650876445, + "2024-03-03": 42.746283333340095, + "2024-02-04": 35.71201735272452, + "2024-01-28": 35.66517879664496, + "2023-07-01": 12.95008431342682, + "2023-11-07": 12.796295816557151, + "2023-11-25": 21.110444380543374, + "2023-06-04": 14.763323756282674, + "2024-02-25": 36.83856163419001, + "2023-12-01": 22.133570621858365, + "2023-07-14": 15.128588076831294, + "2024-01-26": 32.01257693276917, + "2023-08-03": 12.502683902843911, + "2024-02-28": 39.636636439730694, + "2023-09-15": 9.337053279366446, + "2023-07-18": 13.93658028907019, + "2023-12-21": 45.30998312513667, + "2023-07-20": 14.09028512079054, + "2024-03-06": 40.47345413522574, + "2023-09-30": 9.192979000965984, + "2023-12-12": 39.98408464762034, + "2024-02-13": 40.781499754571115, + "2023-09-20": 9.077776640710816, + "2023-09-19": 9.189412730055588, + "2023-09-29": 9.23443912639075, + "2023-09-12": 9.319518445583512, + "2023-06-13": 11.718832213394558, + "2023-10-04": 9.74435328503411, + "2023-07-08": 13.606801438020566, + "2024-04-16": 34.517337815601344, + "2024-03-02": 42.85888721743721, + "2023-06-27": 13.291145479889813, + "2023-10-08": 10.131731161592047, + "2023-11-20": 22.070721128915725, + "2023-12-20": 42.59552566362751, + "2023-12-31": 39.54242003316808, + "2023-11-06": 12.90359101482666, + "2023-08-22": 10.134003232830688, + "2023-06-09": 13.89102291149667, + "2024-03-17": 55.33349071782477, + "2023-09-18": 9.149742983086284, + "2024-04-01": 51.899415307663695, + "2024-05-21": 40.62123532278132, + "2024-01-19": 32.91078800767333, + "2023-11-11": 14.90397084867993, + "2023-09-23": 8.900321887726571, + "2023-11-19": 21.600944570073636, + "2023-07-02": 12.985463246430147, + "2023-08-15": 12.27432533856625, + "2024-01-25": 30.380342582670792, + "2024-03-13": 54.00521194890012, + "2024-01-21": 33.04188907189017, + "2024-02-01": 33.27743352773123, + "2023-06-15": 11.287726887224698, + "2024-03-16": 57.26354913459089, + "2023-11-27": 20.463774804400366, + "2024-01-10": 34.78342668071931, + "2024-03-15": 54.38634769945756, + "2023-06-21": 12.330290567056887, + "2024-01-02": 42.06519588956135, + "2023-07-11": 13.391107503736638, + "2023-10-25": 10.429599176231735, + "2024-01-01": 39.66953461751144, + "2024-02-14": 41.479340176369824, + "2023-09-04": 9.879924263178667, + "2023-09-06": 9.909052793301418, + "2024-04-03": 46.95973129763474, + "2023-11-28": 20.2736009820758, + "2023-12-03": 21.96481205270161, + "2023-08-02": 12.6809958771026, + "2023-08-27": 10.16786013094918, + "2023-10-20": 9.216320460933558, + "2023-10-10": 9.628696621498685, + "2024-05-03": 34.65794599051703, + "2024-03-08": 43.0369113338854, + "2024-04-11": 46.37828502891236, + "2023-06-22": 12.941223841513578, + "2024-01-14": 36.455514999948065, + "2023-12-15": 40.21569786248531, + "2023-10-19": 8.918191858696227, + "2024-02-08": 35.46032881799748, + "2023-11-08": 12.83742757729281, + "2023-11-12": 18.19558020868919, + "2023-12-22": 45.400160455652426, + "2023-05-31": 14.10761371343702, + "2024-03-23": 54.51887371728519, + "2023-09-27": 9.006384033070999, + "2024-03-04": 42.90176854392941, + "2023-09-10": 9.518604853481564, + "2024-04-13": 37.40698427098944, + "2024-02-29": 42.31404285755218, + "2023-07-21": 13.941872811730304, + "2023-06-30": 12.990998511347193, + "2023-12-29": 40.79072323764665, + "2023-12-04": 22.01113155550442, + "2024-04-10": 46.99506168746851, + "2024-05-08": 34.56341776959596, + "2023-09-21": 8.885851837305406, + "2023-06-02": 14.421296822447848, + "2024-04-21": 37.47805736761961, + "2023-07-22": 13.766607889801968, + "2023-10-11": 9.346670466663765, + "2024-03-21": 54.86025309438128, + "2023-07-19": 13.990565205550885, + "2024-05-05": 37.20931235304266, + "2024-05-23": 38.556552684593505, + "2024-04-08": 49.88631022739262, + "2024-05-18": 37.22862936093238, + "2023-06-14": 11.835632508336483, + "2023-10-05": 10.072986189678932, + "2023-10-16": 9.413030886164405, + "2024-05-22": 40.39589153975354, + "2024-02-10": 39.19943322019142, + "2024-04-07": 48.5623958094772, + "2024-02-20": 38.78156317305173, + "2023-11-17": 22.039182289413944, + "2023-12-11": 36.00089580410278, + "2023-11-26": 21.06352595445643, + "2023-11-16": 22.52183348514979, + "2023-06-29": 12.648684268066475, + "2023-10-27": 10.697223353545372, + "2023-06-11": 11.640659724826529, + "2024-02-02": 35.945654448625405, + "2023-09-14": 9.35285325424706, + "2024-01-27": 32.53924682170538, + "2024-03-30": 53.80352481242886, + "2023-11-22": 20.156475796163328, + "2023-09-28": 9.145815549048354, + "2023-06-03": 14.53470514867247, + "2024-01-18": 35.00671292184205, + "2023-08-26": 10.040525274924185, + "2024-02-15": 42.19090870332597, + "2023-10-28": 10.87162841893978, + "2024-03-24": 53.70236373539045, + "2024-04-27": 34.16740724845551, + "2023-12-06": 26.18500939520092, + "2024-01-30": 36.119487625831944, + "2023-11-14": 17.03360914269929, + "2023-08-09": 12.64793397038972, + "2024-05-15": 33.875083739736574, + "2023-11-10": 13.405526532890434, + "2024-01-23": 28.966468377125572, + "2024-01-31": 34.81131858042219, + "2024-05-11": 33.59009487765415, + "2024-01-11": 39.26902211908341, + "2024-02-18": 40.164901139202776, + "2023-06-16": 11.442751960836944, + "2023-10-30": 11.480241725058152, + "2023-12-17": 42.08925704719415, + "2024-02-26": 37.56030847508112, + "2023-07-16": 14.592820480731858, + "2024-01-05": 36.73877031801533, + "2023-08-23": 10.195151824498481, + "2024-03-11": 46.69115936285974, + "2023-08-01": 12.704393333026394, + "2024-03-14": 55.610004047214, + "2024-02-21": 36.94142674101305, + "2023-08-28": 10.180835293255805, + "2023-07-04": 13.222272485213878, + "2023-12-13": 37.43815297056265, + "2024-02-27": 39.30737620228807, + "2023-08-13": 12.332981268168478, + "2024-03-31": 53.74338673155333, + "2023-12-09": 32.18265133443609, + "2024-04-02": 47.51726260630591, + "2024-02-06": 34.15797928497183, + "2024-04-09": 48.291098037833095, + "2023-11-04": 12.083961445829251, + "2024-04-20": 35.7171635950979, + "2024-01-15": 36.074548183591205, + "2023-07-03": 13.233511256893667, + "2023-12-28": 41.17166529028901, + "2023-05-30": 14.515763389002313, + "2024-05-25": 38.14321065410632, + "2024-02-07": 34.34161524516686, + "2023-09-25": 8.840979528304835, + "2024-03-19": 57.97163214466545, + "2024-03-10": 42.75147196309737, + "2024-05-02": 33.426516522275286, + "2023-09-02": 9.877028406968869, + "2024-01-12": 38.288438913571404, + "2024-04-19": 35.130344935537735, + "2023-11-29": 20.99608088237845, + "2023-10-15": 9.159096757688223, + "2024-05-28": 38.168655273911945, + "2023-11-30": 21.060078848578705, + "2024-01-24": 30.760242934661488, + "2023-08-11": 12.441312769082936, + "2024-02-11": 40.30661855955104, + "2023-06-08": 13.935764828929372, + "2023-11-15": 19.478711200690384, + "2023-12-16": 42.623994356335636, + "2024-03-29": 53.5657842180616, + "2024-04-04": 46.963223668836044, + "2023-06-10": 11.449625590742926, + "2023-07-28": 13.16158507868306, + "2024-01-20": 32.546041678950836, + "2023-10-21": 9.53382825629921, + "2023-08-16": 11.536322362662938, + "2024-05-24": 38.02673791277953, + "2023-11-03": 11.83648395699174, + "2023-08-31": 10.327875970913784, + "2024-05-27": 37.586896686981866, + "2024-01-04": 37.36565846002478, + "2023-07-26": 13.237709293996247, + "2023-11-13": 17.752653107188937, + "2023-10-24": 10.503624608597892, + "2024-03-25": 57.63877777156633, + "2023-08-07": 12.592847736870317, + "2023-10-29": 11.073293926565693, + "2024-01-29": 35.26286615073622, + "2024-05-04": 36.065050409531224, + "2023-06-05": 14.69444216677646, + "2023-11-02": 11.995937089860133, + "2023-12-18": 39.45737371296778, + "2023-11-24": 21.036125017921776, + "2023-08-21": 10.519942231618389, + "2023-07-25": 13.249484181266709, + "2024-05-16": 34.51840964468292, + "2023-08-14": 12.326278808398797, + "2024-05-01": 32.363176962712885, + "2024-03-05": 42.39203234664609, + "2024-04-06": 47.22040537364815, + "2023-12-23": 45.18073388668722, + "2024-02-03": 36.06152812775606, + "2024-02-16": 40.740503881357846, + "2023-05-28": 14.658032197521457, + "2023-12-14": 38.79897422283206, + "2023-06-24": 13.126229521136944, + "2023-12-26": 45.90696263358745, + "2023-11-09": 13.242323084956537, + "2023-08-19": 10.756576819956583, + "2024-05-09": 34.32099763218998, + "2024-01-17": 35.96453112305274, + "2023-06-23": 12.845033692785336, + "2023-06-18": 11.52191994062588, + "2024-04-23": 38.73929920692657, + "2023-08-08": 12.544478928108946, + "2023-08-17": 11.282904024626005, + "2024-04-14": 35.70867256707242, + "2023-07-24": 13.100500326234327, + "2023-10-14": 9.182437636145766, + "2024-05-22T20": 40.068091251999995, + "2024-05-25T08": 38.290660816, + "2024-05-22T05": 41.0109756, + "2024-05-28T03": 37.31050140000001, + "2024-05-22T16": 40.240339999999996, + "2024-05-25T05": 38.414628, + "2024-05-24T22": 37.963584354, + "2024-05-27T14": 37.66786961674502, + "2024-05-22T03": 40.681455099999994, + "2024-05-23T17": 38.04920379, + "2024-05-24T23": 37.983161800000005, + "2024-05-26T19": 36.9400416, + "2024-05-26T18": 36.790758852, + "2024-05-26T10": 37.25820936, + "2024-05-27T16": 38.711637499999995, + "2024-05-24T12": 37.8603024, + "2024-05-26T01": 38.16159136099294, + "2024-05-21T17": 41.0062026, + "2024-05-23T07": 39.9855939, + "2024-05-22T08": 41.13677385865495, + "2024-05-23T09": 39.986799999999995, + "2024-05-24T18": 38.42639131837498, + "2024-05-23T01": 40.0895439, + "2024-05-25T15": 38.19308031, + "2024-05-23T16": 38.0237455, + "2024-05-25T03": 38.15734907, + "2024-05-28T06": 36.885711984, + "2024-05-25T23": 38.253495799999996, + "2024-05-24T13": 37.7543338, + "2024-05-26T03": 37.753546653, + "2024-05-26T00": 38.185035299999996, + "2024-05-25T06": 38.204094590000004, + "2024-05-27T04": 37.249347377, + "2024-05-22T10": 40.942290714, + "2024-05-27T09": 37.255787082000005, + "2024-05-24T17": 37.964048399999996, + "2024-05-26T16": 36.884502, + "2024-05-22T09": 41.061786, + "2024-05-24T21": 38.02157775, + "2024-05-25T04": 38.343650059536245, + "2024-05-27T22": 38.2009952, + "2024-05-27T11": 37.39139306504011, + "2024-05-23T21": 37.956121360743566, + "2024-05-23T10": 39.910926285, + "2024-05-23T14": 38.293327071, + "2024-05-27T02": 37.1180874, + "2024-05-25T18": 38.0404875, + "2024-05-27T05": 36.9122736, + "2024-05-22T23": 39.9520135, + "2024-05-28T01": 37.899656, + "2024-05-22T04": 40.5190569, + "2024-05-22T15": 40.32130343, + "2024-05-24T03": 38.8240756, + "2024-05-24T08": 37.24119692, + "2024-05-21T22": 41.028598255, + "2024-05-21T16": 40.6525119, + "2024-05-21T23": 41.14935682, + "2024-05-24T02": 38.735275, + "2024-05-26T07": 37.69606658256159, + "2024-05-27T07": 36.798276200000004, + "2024-05-25T22": 38.1031402, + "2024-05-24T16": 37.861791366, + "2024-05-27T20": 38.203734131351965, + "2024-05-22T02": 41.08260380000001, + "2024-05-24T06": 37.710699988, + "2024-05-24T11": 37.665487139999996, + "2024-05-25T21": 37.9924, + "2024-05-27T15": 38.167148000000005, + "2024-05-21T19": 40.432652819999994, + "2024-05-22T19": 39.850129714999994, + "2024-05-21T12": 40.538144323490364, + "2024-05-23T20": 36.88231749999999, + "2024-05-23T08": 39.7969044, + "2024-05-22T22": 40.063968, + "2024-05-26T11": 37.283215, + "2024-05-24T01": 38.535579600000005, + "2024-05-23T05": 39.82655113831362, + "2024-05-28T04": 36.74191256628662, + "2024-05-25T09": 38.3461904, + "2024-05-27T18": 38.561014, + "2024-05-24T10": 37.530849499999995, + "2024-05-25T19": 38.08047750000001, + "2024-05-24T07": 37.5294888, + "2024-05-26T04": 37.6802006, + "2024-05-26T09": 37.225104, + "2024-05-23T02": 40.09306978472567, + "2024-05-27T06": 36.8523024, + "2024-05-28T08": 36.907641443483065, + "2024-05-24T15": 38.30084, + "2024-05-25T20": 37.936213575000004, + "2024-05-27T08": 37.1500978201702, + "2024-05-23T22": 38.4561424, + "2024-05-26T15": 37.107722, + "2024-05-24T20": 38.206179, + "2024-05-21T20": 40.786536, + "2024-05-25T13": 37.8646982, + "2024-05-22T01": 41.21914927369357, + "2024-05-25T17": 37.9616466, + "2024-05-27T10": 37.27684144897326, + "2024-05-21T21": 40.6510548, + "2024-05-24T19": 38.23028887601883, + "2024-05-26T02": 37.75884607, + "2024-05-27T19": 38.01702217732782, + "2024-05-25T11": 38.54522000643525, + "2024-05-27T17": 38.690108099999996, + "2024-05-21T18": 41.04468715413698, + "2024-05-26T06": 37.69617894, + "2024-05-23T00": 40.127621082999994, + "2024-05-22T00": 41.1625894, + "2024-05-24T05": 38.171930965133264, + "2024-05-23T15": 38.3024024, + "2024-05-22T13": 39.675635199999995, + "2024-05-21T10": 40.5490488, + "2024-05-22T12": 39.79753449849885, + "2024-05-23T04": 39.91323844000001, + "2024-05-26T08": 37.462659072, + "2024-05-26T13": 37.012952064, + "2024-05-28T05": 36.762870776, + "2024-05-22T18": 39.655240799999994, + "2024-05-22T06": 41.4708744, + "2024-05-21T08": 40.44758544328238, + "2024-05-22T17": 40.1235792, + "2024-05-23T19": 37.6753068, + "2024-05-25T07": 38.289418070913534, + "2024-05-26T22": 36.91748814, + "2024-05-25T16": 37.9146912, + "2024-05-26T05": 37.647202449999995, + "2024-05-24T04": 38.79526248, + "2024-05-21T14": 40.6998225, + "2024-05-25T12": 38.174227617, + "2024-05-28T07": 36.786657098130654, + "2024-05-23T18": 37.56331110000001, + "2024-05-26T23": 36.7623456, + "2024-05-24T09": 37.38317, + "2024-05-23T03": 40.003179900000006, + "2024-05-26T14": 37.077534119999996, + "2024-05-21T13": 40.901818, + "2024-05-22T14": 39.9692054, + "2024-05-25T14": 37.9273449, + "2024-05-25T00": 37.951269200000006, + "2024-05-23T23": 38.46744801925682, + "2024-05-21T11": 40.5690434, + "2024-05-23T13": 38.5145152, + "2024-05-22T11": 40.6647954364326, + "2024-05-21T15": 40.5002776, + "2024-05-28T00": 38.009568, + "2024-05-27T23": 38.207878400000006, + "2024-05-28T02": 37.45404728135267, + "2024-05-26T21": 36.63511577693021, + "2024-05-26T12": 37.143110400000005, + "2024-05-23T06": 39.6849827, + "2024-05-22T07": 41.084961931183216, + "2024-05-27T12": 37.35143568, + "2024-05-22T21": 39.825259200000005, + "2024-05-24T00": 38.4926705, + "2024-05-25T02": 38.1016158, + "2024-05-27T00": 36.842569499999996, + "2024-05-26T20": 36.8475093, + "2024-05-26T17": 36.769733616, + "2024-05-27T13": 37.576312, + "2024-05-23T12": 39.3507087, + "2024-05-25T10": 38.4196239, + "2024-05-21T09": 40.43933628209737, + "2024-05-23T11": 40.009985, + "2024-05-24T14": 38.1029277, + "2024-05-25T01": 37.9549075, + "2024-05-27T21": 38.2113675, + "2024-05-27T03": 37.233819078, + "2024-05-27T01": 37.1417916, + "latest": 35.85, + "2024-05-28T09": 37.051797300000004, + "2024-05-28T10": 37.24472438695415, + "2024-05-28T11": 37.2223674, + "2024-05-28T12": 37.162428000000006, + "2024-05-28T13": 36.94302, + "2024-05-28T14": 36.81651553, + "2024-05-28T15": 36.855323399999996, + "2024-05-29": 36.835894384478394, + "2024-05-28T20": 37.163544, + "2024-05-28T22": 37.107529636, + "2024-05-28T21": 37.0904807380391, + "2024-05-28T19": 36.924526900000004, + "2024-05-29T02": 36.831793212, + "2024-05-28T17": 36.99496799999999, + "2024-05-28T18": 36.652691428394945, + "2024-05-28T23": 37.014432, + "2024-05-29T00": 36.9163872, + "2024-05-29T01": 36.755472, + "2024-05-28T16": 36.79573718924678, + "2024-05-29T06": 37.30092564917189, + "2024-05-29T05": 37.176080400000004, + "2024-05-29T03": 37.1705574, + "2024-05-29T07": 36.95107839776456, + "2024-05-29T04": 37.296064805, + "2024-05-29T08": 36.58338, + "2024-05-29T09": 36.866051999999996, + "2024-05-29T10": 37.010564895, + "2024-05-29T11": 37.05309638592748, + "2024-05-29T12": 36.9141585, + "2024-05-29T13": 36.85922736, + "2024-05-29T14": 36.88093222183033, + "2024-05-29T15": 36.796435200000005, + "2024-05-29T18": 36.639078175045924, + "2024-05-29T17": 36.726915999999996, + "2024-05-29T23": 36.233467600000004, + "2024-05-29T19": 36.584112399999995, + "2024-05-29T22": 36.529407299999995, + "2024-05-29T20": 36.348692562, + "2024-05-29T16": 36.474815, + "2024-05-29T21": 36.34333531626988, + "2024-05-30": 36.46559893578891, + "2024-05-30T00": 36.1251492, + "2024-05-30T05": 36.62370659999999, + "2024-05-30T02": 36.5657019, + "2024-05-30T01": 36.13266546519356, + "2024-05-30T06": 36.171040000000005, + "2024-05-30T07": 35.777803999999996, + "2024-05-30T03": 36.64856888, + "2024-05-30T04": 36.826124699999994, + "2024-05-30T08": 35.488693999999995, + "2024-05-30T09": 35.99009297999999, + "2024-05-30T10": 36.35784803599999, + "2024-05-30T11": 36.556279549066325, + "2024-05-30T12": 36.736587199999995, + "2024-05-30T13": 36.789912799999996, + "2024-05-30T14": 36.76079248260313, + "2024-05-30T15": 36.515388, + "2024-05-30T21": 36.10808641023093, + "2024-05-30T20": 36.2731068, + "2024-05-30T18": 36.9104008, + "2024-05-30T22": 35.9973965, + "2024-05-30T16": 36.816741199999996, + "2024-05-30T17": 36.98594, + "2024-05-30T19": 36.6733976, + "2024-05-31": 36.061401737116135, + "2024-05-30T23": 36.00739300000001, + "2024-05-31T03": 36.10266239999999, + "2024-05-31T07": 36.149152, + "2024-05-31T06": 36.079173000000004, + "2024-05-31T04": 36.15136272, + "2024-05-31T02": 36.1248212, + "2024-05-31T05": 35.8752851, + "2024-05-31T00": 35.96022022526249, + "2024-05-31T01": 36.105337691384065, + "2024-05-31T08": 36.0784512, + "2024-05-31T09": 35.9577702, + "2024-05-31T10": 36.068346, + "2024-05-31T11": 36.1579302, + "2024-05-31T12": 36.577674, + "2024-05-31T13": 36.29956596606809, + "2024-05-31T14": 35.9494971, + "2024-06-01": 36.08494827197265, + "2024-06-01T08": 36.0200785, + "2024-06-01T02": 35.98361980000001, + "2024-06-01T05": 35.96894132926076, + "2024-05-31T21": 36.3174588, + "2024-06-01T00": 36.03920248, + "2024-05-31T18": 35.75601464741244, + "2024-05-31T15": 35.75255826175909, + "2024-05-31T23": 36.059321916737886, + "2024-05-31T22": 36.2282895, + "2024-06-01T01": 35.960656623031035, + "2024-06-01T07": 35.97865297610323, + "2024-06-01T04": 35.96457954224278, + "2024-05-31T19": 35.94756649302167, + "2024-06-01T06": 35.921599500000006, + "2024-05-31T20": 36.1975992, + "2024-05-31T17": 35.7410263, + "2024-05-31T16": 35.4312774, + "2024-06-01T03": 36.00474442811408, + "2024-06-01T09": 36.06959213, + "2024-06-01T10": 36.0082848, + "2024-06-02": 35.7588355125324, + "2024-06-01T13": 36.06751, + "2024-06-01T15": 36.04655617, + "2024-06-01T18": 35.8880312, + "2024-06-01T12": 36.01863649999999, + "2024-06-01T21": 36.0378977, + "2024-06-01T20": 35.9479778, + "2024-06-02T01": 35.921240000000004, + "2024-06-01T17": 35.83294344862953, + "2024-06-01T11": 35.9783112, + "2024-06-02T00": 35.7600230180693, + "2024-06-01T23": 35.744307580000005, + "2024-06-01T14": 36.12850867240352, + "2024-06-01T22": 35.99444820211819, + "2024-06-01T19": 35.909012510000004, + "2024-06-01T16": 35.9072946, + "2024-06-02T13": 35.69532328109326, + "2024-06-02T11": 35.6246885, + "2024-06-02T07": 35.850937200000004, + "2024-06-02T05": 35.97202981483949, + "2024-06-02T08": 35.7442456, + "2024-06-02T04": 35.98957859593603, + "2024-06-02T10": 35.44075442, + "2024-06-02T12": 35.9244755, + "2024-06-02T02": 35.92930061505587, + "2024-06-02T16": 35.621123499999996, + "2024-06-02T17": 35.277061109719654, + "2024-06-02T03": 35.9594085, + "2024-06-02T09": 35.5436782, + "2024-06-02T15": 35.8502196, + "2024-06-02T06": 36.029349, + "2024-06-02T18": 35.00417385549782, + "2024-06-02T14": 35.81223813266535, + "2024-06-03": 34.93500285071477, + "2024-06-03T01": 35.096118399999995, + "2024-06-02T20": 34.8997464, + "2024-06-03T00": 34.76786715, + "2024-06-02T21": 35.08150902774584, + "2024-06-02T23": 34.98409838, + "2024-06-02T19": 34.978350590000005, + "2024-06-02T22": 34.9611108, + "2024-06-03T02": 35.18618094, + "2024-06-03T05": 35.408742, + "2024-06-03T06": 35.7870816, + "2024-06-03T04": 35.0196768, + "2024-06-03T03": 35.0593028, + "2024-06-03T07": 35.7870816 + }, + "USD axelar": { + "2023-07-30": 0.4114911331002295, + "2023-10-23": 0.3174013350276792, + "2023-07-27": 0.4031369249038942, + "2023-07-10": 0.34392454491969593, + "2023-08-20": 0.37486251000000004, + "2024-02-23": 1.4454, + "2024-04-05": 1.5053743853205643, + "2023-12-19": 1.0268884923534063, + "2024-05-17": 1.0387258808522055, + "2023-08-06": 0.39109307261637666, + "2023-12-02": 0.7304, + "2023-10-31": 0.34442037839232775, + "2023-08-29": 0.3452400773536902, + "2023-06-20": 0.4037394714567981, + "2023-09-09": 0.3448986391230643, + "2023-06-26": 0.4078333781080159, + "2023-10-01": 0.33672697287916287, + "2024-03-07": 2.1983438673959936, + "2023-10-12": 0.3343037937282087, + "2024-04-22": 1.2488992193437147, + "2023-07-05": 0.37584091730219915, + "2023-07-29": 0.4065919825128323, + "2024-04-26": 1.0675529790105969, + "2024-01-08": 1.132141759550945, + "2023-05-29": 0.47184100094738995, + "2023-10-07": 0.33738579688900633, + "2023-09-26": 0.3338, + "2023-08-24": 0.3535459467015257, + "2023-12-05": 0.6423, + "2024-02-19": 1.2570999999999999, + "2024-01-07": 1.115478552770325, + "2024-04-28": 1.1397767256166889, + "2023-07-31": 0.4025293992721842, + "2023-10-18": 0.3166, + "2024-05-19": 0.9981700716109038, + "2024-05-12": 1.0302122887128848, + "2024-04-29": 1.0980657740618704, + "2023-08-25": 0.3499, + "2024-03-09": 2.2118584987221506, + "2023-07-12": 0.37281893823282214, + "2023-09-05": 0.35279172700195505, + "2023-06-07": 0.43949643179231906, + "2023-09-16": 0.3506, + "2024-04-25": 1.1277948151021606, + "2023-08-12": 0.388940454409367, + "2023-06-06": 0.4299817528819314, + "2023-09-01": 0.3458614638399115, + "2023-09-08": 0.34906036177427, + "2024-03-22": 1.9329895299115423, + "2023-08-10": 0.38980589929939924, + "2023-12-07": 0.83, + "2023-11-18": 0.5292, + "2023-07-13": 0.37054338120759756, + "2023-09-13": 0.3449679020478236, + "2023-06-17": 0.38508038204074874, + "2023-07-17": 0.3518791879148461, + "2023-07-07": 0.3490202958118808, + "2023-09-07": 0.3560896018644959, + "2024-03-26": 1.9951915071501305, + "2024-05-14": 0.9384209186222146, + "2024-02-22": 1.419949480826617, + "2024-04-15": 1.1200691403534926, + "2023-12-30": 1.1918, + "2023-09-17": 0.34357569172494257, + "2024-04-17": 1.1418537666811048, + "2024-02-12": 1.0675, + "2023-10-26": 0.316555778480432, + "2024-01-03": 1.0994, + "2024-05-07": 1.239845168035212, + "2023-06-01": 0.4428575856924248, + "2024-01-22": 0.9933, + "2023-06-12": 0.38671812191842314, + "2023-10-03": 0.33750038447386166, + "2024-05-26": 0.9247676024224981, + "2024-04-30": 1.0447662255068717, + "2023-06-19": 0.4010765606432376, + "2023-07-09": 0.3341091552574308, + "2023-12-24": 1.1179000000000001, + "2023-09-24": 0.3351, + "2024-01-16": 0.9863, + "2023-10-17": 0.31843006732862533, + "2024-04-24": 1.251601470876117, + "2024-03-18": 1.8713716142076093, + "2024-02-17": 1.2054275139690156, + "2023-12-27": 1.17, + "2023-07-23": 0.401285606657013, + "2023-09-03": 0.3583517155789814, + "2024-02-24": 1.4402939703475384, + "2024-01-06": 1.1203, + "2024-03-20": 1.7053519518432045, + "2023-11-21": 0.6448248793136429, + "2023-12-25": 1.1150805836461086, + "2023-09-22": 0.33567394796894723, + "2023-10-02": 0.3373, + "2024-03-27": 2.0267705647847203, + "2024-05-06": 1.2780296823285218, + "2023-08-30": 0.3416741295869565, + "2023-10-06": 0.33656611448765644, + "2023-10-13": 0.3341828198886236, + "2023-06-28": 0.3949992483618423, + "2024-02-05": 0.8953, + "2024-03-01": 2.050541960442673, + "2023-07-15": 0.3747184768318539, + "2023-06-25": 0.4222342034506944, + "2023-12-10": 0.7953, + "2023-11-23": 0.7000217182503705, + "2023-08-04": 0.39323393915894483, + "2024-05-13": 0.9942511982600217, + "2024-01-13": 1.0350251134693549, + "2024-03-28": 2.096421142108739, + "2023-08-05": 0.3920146939294966, + "2024-02-09": 1.062721019856543, + "2023-10-09": 0.33896713189773664, + "2024-01-09": 1.11, + "2024-05-10": 1.0998584863959342, + "2023-05-27": 0.4531393200620458, + "2023-08-18": 0.37265104992489295, + "2023-11-05": 0.3743, + "2024-04-18": 1.1704092494377423, + "2023-10-22": 0.3167414028496336, + "2023-11-01": 0.3573726366179726, + "2024-05-20": 1.0272646186845, + "2023-12-08": 0.7900051223408876, + "2024-04-12": 1.2684425721833945, + "2023-07-06": 0.36161267991194035, + "2024-03-12": 2.193853821192809, + "2023-09-11": 0.3495623757062022, + "2024-03-03": 2.381697196449813, + "2024-02-04": 0.8994, + "2024-01-28": 0.9585, + "2023-07-01": 0.3928532737645523, + "2023-11-07": 0.3816217157577946, + "2023-11-25": 0.6945261629174846, + "2023-06-04": 0.4371867447813303, + "2024-02-25": 1.4736, + "2023-12-01": 0.7364036269288826, + "2023-07-14": 0.36803157868479053, + "2024-01-26": 0.9176434866695511, + "2023-08-03": 0.39213016993571237, + "2024-02-28": 1.5062, + "2023-09-15": 0.3491, + "2023-07-18": 0.3486260699787181, + "2023-12-21": 1.1046354564946657, + "2023-07-20": 0.3614952455947117, + "2024-03-06": 2.0888352178632554, + "2023-09-30": 0.3357, + "2023-12-12": 0.7578, + "2024-02-13": 1.0833, + "2023-09-20": 0.34053072205981294, + "2023-09-19": 0.3395613310442014, + "2023-09-29": 0.3357, + "2023-09-12": 0.35041180323035737, + "2023-06-13": 0.3925608811415275, + "2023-10-04": 0.3374, + "2023-07-08": 0.3438302303863935, + "2024-04-16": 1.0790635457837616, + "2024-03-02": 1.9409330734846253, + "2023-06-27": 0.4055255965466002, + "2023-10-08": 0.33959895132535695, + "2023-11-20": 0.68, + "2023-12-20": 0.9269, + "2023-12-31": 1.1952, + "2023-11-06": 0.3776981855502604, + "2023-08-22": 0.3635658826401273, + "2023-06-09": 0.43653238567963515, + "2024-03-17": 1.8444935022064064, + "2023-09-18": 0.3393578628247175, + "2024-04-01": 2.042279076098463, + "2024-05-21": 1.0170343319554183, + "2024-01-19": 0.9052, + "2023-11-11": 0.4215216384305659, + "2023-09-23": 0.3367999957866848, + "2023-11-19": 0.5539596318600306, + "2023-07-02": 0.3833712247547932, + "2023-08-15": 0.387303616, + "2024-01-25": 0.906, + "2024-03-13": 2.196463744924703, + "2024-01-21": 0.9046, + "2024-02-01": 0.9061, + "2023-06-15": 0.3830845214249743, + "2024-03-16": 1.9402526333189287, + "2023-11-27": 0.7300262526736654, + "2024-01-10": 1.0414, + "2024-03-15": 1.9492857083163273, + "2023-06-21": 0.408485053830499, + "2024-01-02": 1.1673, + "2023-07-11": 0.36321130288023173, + "2023-10-25": 0.31683565719088186, + "2024-01-01": 1.1899, + "2024-02-14": 1.181, + "2023-09-04": 0.3603682245918527, + "2023-09-06": 0.3580915411762293, + "2024-04-03": 1.7354413095023784, + "2023-11-28": 0.6981919608168177, + "2023-12-03": 0.6946, + "2023-08-02": 0.3988722262849907, + "2023-08-27": 0.3479761096253091, + "2023-10-20": 0.31793982483884875, + "2023-10-10": 0.33772763547651835, + "2024-05-03": 1.2287573638002016, + "2024-03-08": 2.1606700137693515, + "2024-04-11": 1.3798062538192428, + "2023-06-22": 0.41443590529830765, + "2024-01-14": 1.0433468469810592, + "2023-12-15": 0.8959, + "2023-10-19": 0.31800038306776135, + "2024-02-08": 1.0391, + "2023-11-08": 0.382407169924338, + "2023-11-12": 0.4246646348927694, + "2023-12-22": 1.2123, + "2023-05-31": 0.44823109255972154, + "2024-03-23": 1.9086664604088897, + "2023-09-27": 0.3381, + "2024-03-04": 2.312077065878001, + "2023-09-10": 0.35451138890116485, + "2024-04-13": 1.0804357111777414, + "2024-02-29": 1.55, + "2023-07-21": 0.3741173981954492, + "2023-06-30": 0.3928539065637938, + "2023-12-29": 1.1561, + "2023-12-04": 0.6841000880819916, + "2024-04-10": 1.3901791954070493, + "2024-05-08": 1.160413257741802, + "2023-09-21": 0.3376834367365153, + "2023-06-02": 0.44648628771948906, + "2024-04-21": 1.2423619286503513, + "2023-07-22": 0.4005014627839303, + "2023-10-11": 0.3350041662196984, + "2024-03-21": 2.042388678571645, + "2023-07-19": 0.3525034234415936, + "2024-05-05": 1.2420779308525123, + "2024-05-23": 0.9315297074027069, + "2024-04-08": 1.6139063165322118, + "2024-05-18": 1.0312114504086656, + "2023-06-14": 0.38542289145986947, + "2023-10-05": 0.33614178693300556, + "2023-10-16": 0.3187634568600101, + "2024-05-22": 0.994937397657046, + "2024-02-10": 1.115899360905913, + "2024-04-07": 1.526945585741266, + "2024-02-20": 1.2926, + "2023-11-17": 0.5550902471040887, + "2023-12-11": 0.7535, + "2023-11-26": 0.7590468630686189, + "2023-11-16": 0.46003323823293846, + "2023-06-29": 0.390602520163291, + "2023-10-27": 0.3144, + "2023-06-11": 0.3811644252876797, + "2024-02-02": 0.9181, + "2023-09-14": 0.34881345221204835, + "2024-01-27": 0.9340161990280464, + "2024-03-30": 2.0174682123218552, + "2023-11-22": 0.6483232199131883, + "2023-09-28": 0.3359647351383513, + "2023-06-03": 0.4457, + "2024-01-18": 0.9552834098511875, + "2023-08-26": 0.3474131774399797, + "2024-02-15": 1.2397, + "2023-10-28": 0.3158473747356799, + "2024-03-24": 1.8979147905384235, + "2024-04-27": 1.1054476794892747, + "2023-12-06": 0.6215, + "2024-01-30": 0.9637, + "2023-11-14": 0.42388466208695724, + "2023-08-09": 0.3900892618240716, + "2024-05-15": 1.0334849019879702, + "2023-11-10": 0.41568873550285423, + "2024-01-23": 0.974853100322959, + "2024-01-31": 0.9233899601178808, + "2024-05-11": 1.0508062980036088, + "2024-01-11": 1.0632360270353842, + "2024-02-18": 1.2195201867349932, + "2023-06-16": 0.3861087409338907, + "2023-10-30": 0.32089303199999997, + "2023-12-17": 1.1775, + "2024-02-26": 1.4485999999999999, + "2023-07-16": 0.37165071938000943, + "2024-01-05": 1.1344061833654844, + "2023-08-23": 0.35792979101499084, + "2024-03-11": 2.245810136859922, + "2023-08-01": 0.39782868641310887, + "2024-03-14": 2.0741318608405086, + "2024-02-21": 1.2542, + "2023-08-28": 0.34840445146357435, + "2023-07-04": 0.3883815594928053, + "2023-12-13": 0.864895611626554, + "2024-02-27": 1.4590112710314007, + "2023-08-13": 0.38633836842966307, + "2024-03-31": 2.032883866543443, + "2023-12-09": 0.7976, + "2024-04-02": 1.7822097928132123, + "2024-02-06": 0.902, + "2024-04-09": 1.531224827269114, + "2023-11-04": 0.3711, + "2024-04-20": 1.2061433606049843, + "2024-01-15": 1.013118818575227, + "2023-07-03": 0.38010515866578615, + "2023-12-28": 1.1548, + "2023-05-30": 0.45700223587498506, + "2024-05-25": 0.9076615379535907, + "2024-02-07": 0.9515100894172539, + "2023-09-25": 0.3325216360494587, + "2024-03-19": 1.6793583986121865, + "2024-03-10": 2.2064772898585, + "2024-05-02": 1.2133469419894267, + "2023-09-02": 0.3515286526780882, + "2024-01-12": 1.0430547198448532, + "2024-04-19": 1.1987674423576797, + "2023-11-29": 0.7577, + "2023-10-15": 0.32040100139603844, + "2024-05-28": 0.9542290145953867, + "2023-11-30": 0.7588374464403582, + "2024-01-24": 0.9399, + "2023-08-11": 0.38904665898358626, + "2024-02-11": 1.083, + "2023-06-08": 0.44294429, + "2023-11-15": 0.4244165664487908, + "2023-12-16": 1.01370995389118, + "2024-03-29": 2.0503903726820014, + "2024-04-04": 1.6692314157386476, + "2023-06-10": 0.38207481514045216, + "2023-07-28": 0.4054, + "2024-01-20": 0.8974242214923999, + "2023-10-21": 0.3152228823470667, + "2023-08-16": 0.37835309293227626, + "2024-05-24": 0.8740223237044852, + "2023-11-03": 0.3669906862299984, + "2023-08-31": 0.34266594698457803, + "2024-05-27": 0.9507458232655854, + "2024-01-04": 1.0952, + "2023-07-26": 0.4017500496975625, + "2023-11-13": 0.4287626312807484, + "2023-10-24": 0.3208, + "2024-03-25": 2.0006134746750837, + "2023-08-07": 0.3906874631918617, + "2023-10-29": 0.31666028040642674, + "2024-01-29": 0.9593, + "2024-05-04": 1.272317193532199, + "2023-06-05": 0.4274047058660312, + "2023-11-02": 0.3720582564428984, + "2023-12-18": 1.0524, + "2023-11-24": 0.6788, + "2023-08-21": 0.3658621248177136, + "2023-07-25": 0.4057577494134934, + "2024-05-16": 1.0210641756883303, + "2023-08-14": 0.385536800211282, + "2024-05-01": 1.1071081092795463, + "2024-03-05": 2.171363918819354, + "2024-04-06": 1.506944003724411, + "2023-12-23": 1.1544, + "2024-02-03": 0.9165, + "2024-02-16": 1.2285, + "2023-05-28": 0.46212879926505135, + "2023-12-14": 0.916, + "2023-06-24": 0.4118078395951011, + "2023-12-26": 1.1674, + "2023-11-09": 0.4062605910849022, + "2023-08-19": 0.3722969708376978, + "2024-05-09": 1.1054689298687042, + "2024-01-17": 0.9762, + "2023-06-23": 0.4082922802061913, + "2023-06-18": 0.39899687340916684, + "2024-04-23": 1.263792226217656, + "2023-08-08": 0.3919, + "2023-08-17": 0.3757561395185228, + "2024-04-14": 1.0612552139740927, + "2023-07-24": 0.39964795561926725, + "2023-10-14": 0.3338748392522116, + "2024-05-22T20": 0.9919809479999999, + "2024-05-25T08": 0.913243696, + "2024-05-22T05": 0.982583784, + "2024-05-28T03": 0.924169329, + "2024-05-22T16": 1.019955152, + "2024-05-25T05": 0.906277584255792, + "2024-05-24T22": 0.886775834, + "2024-05-27T14": 0.9602081519999999, + "2024-05-22T03": 0.9865410921978642, + "2024-05-23T17": 0.904739058, + "2024-05-24T23": 0.8905396740000001, + "2024-05-26T19": 0.9463886739999999, + "2024-05-26T18": 0.9315153600000001, + "2024-05-26T10": 0.912862116, + "2024-05-27T16": 0.962546135, + "2024-05-24T12": 0.8700473400000001, + "2024-05-26T01": 0.92940705, + "2024-05-21T17": 1.001119014, + "2024-05-23T07": 0.9618129360000001, + "2024-05-22T08": 0.99950006, + "2024-05-23T09": 0.9410893379999999, + "2024-05-24T18": 0.8705645000000001, + "2024-05-23T01": 0.9788005569999999, + "2024-05-25T15": 0.9059094000000001, + "2024-05-23T16": 0.916472529393721, + "2024-05-25T03": 0.893333583, + "2024-05-28T06": 0.921588288, + "2024-05-25T23": 0.919343685, + "2024-05-24T13": 0.8707772199999999, + "2024-05-26T03": 0.915999229, + "2024-05-26T00": 0.928579269, + "2024-05-25T06": 0.904547089, + "2024-05-27T04": 0.955993055, + "2024-05-22T10": 0.998580264, + "2024-05-27T09": 0.93741844, + "2024-05-24T17": 0.8685350620000001, + "2024-05-26T16": 0.9376060399999999, + "2024-05-22T09": 0.99750046, + "2024-05-24T21": 0.8824205749999999, + "2024-05-25T04": 0.9041382, + "2024-05-27T22": 0.9588687084647984, + "2024-05-27T11": 0.9440143480000001, + "2024-05-23T21": 0.8861349000000001, + "2024-05-23T10": 0.94426939, + "2024-05-23T14": 0.929244447, + "2024-05-27T02": 0.9526376120000001, + "2024-05-25T18": 0.9049737, + "2024-05-27T05": 0.93904904, + "2024-05-22T23": 0.982257785, + "2024-05-28T01": 0.94494344, + "2024-05-22T04": 0.980235265, + "2024-05-22T15": 1.01870449, + "2024-05-24T03": 0.92062239, + "2024-05-24T08": 0.8520528329999999, + "2024-05-21T22": 0.984114524, + "2024-05-21T16": 1.0062671189999999, + "2024-05-21T23": 0.981293885, + "2024-05-24T02": 0.916051768, + "2024-05-26T07": 0.919859526, + "2024-05-27T07": 0.935247878, + "2024-05-25T22": 0.91433539, + "2024-05-24T16": 0.87063418, + "2024-05-27T20": 0.9580218199999999, + "2024-05-22T02": 0.9980203240000001, + "2024-05-24T06": 0.866418608, + "2024-05-24T11": 0.87337566, + "2024-05-25T21": 0.91121772, + "2024-05-27T15": 0.9587747440000001, + "2024-05-21T19": 0.995771287, + "2024-05-22T19": 0.9996900209999999, + "2024-05-21T12": 1.01576632, + "2024-05-23T20": 0.8621529, + "2024-05-23T08": 0.953246796, + "2024-05-22T22": 0.99250284, + "2024-05-26T11": 0.9144882950000001, + "2024-05-24T01": 0.9205316400000001, + "2024-05-23T05": 0.975594756, + "2024-05-28T04": 0.9167302979999999, + "2024-05-25T09": 0.9106784437928553, + "2024-05-27T18": 0.965224138, + "2024-05-24T10": 0.864858697, + "2024-05-25T19": 0.9114720749999999, + "2024-05-24T07": 0.861558696, + "2024-05-26T04": 0.9151619959999999, + "2024-05-26T09": 0.90683712, + "2024-05-23T02": 0.981189516, + "2024-05-27T06": 0.934951008, + "2024-05-28T08": 0.9350801739836438, + "2024-05-24T15": 0.8762616500000001, + "2024-05-25T20": 0.9078729750000001, + "2024-05-27T08": 0.9402355199999999, + "2024-05-23T22": 0.905038528, + "2024-05-26T15": 0.9339392999999999, + "2024-05-24T20": 0.8789121, + "2024-05-21T20": 0.99967, + "2024-05-25T13": 0.905473216, + "2024-05-22T01": 0.9867815719999999, + "2024-05-25T17": 0.9101997119999999, + "2024-05-27T10": 0.9407258070000001, + "2024-05-21T21": 0.986582904, + "2024-05-24T19": 0.8691304859999999, + "2024-05-26T02": 0.9221337638379435, + "2024-05-27T19": 0.951537975, + "2024-05-25T11": 0.93266008, + "2024-05-27T17": 0.96200811, + "2024-05-21T18": 1.002118752, + "2024-05-26T06": 0.91218975, + "2024-05-23T00": 0.9854774199999999, + "2024-05-22T00": 0.9803235100000001, + "2024-05-24T05": 0.890609895, + "2024-05-23T15": 0.93132896, + "2024-05-22T13": 0.980492134, + "2024-05-21T10": 1.0312141443899503, + "2024-05-22T12": 0.978133689, + "2024-05-23T04": 0.982990168, + "2024-05-26T08": 0.9133524814944162, + "2024-05-26T13": 0.903410816, + "2024-05-28T05": 0.9224891359999999, + "2024-05-22T18": 0.999580036, + "2024-05-22T06": 0.99528099, + "2024-05-21T08": 1.0319593078565368, + "2024-05-22T17": 1.019236896, + "2024-05-23T19": 0.887882396, + "2024-05-25T07": 0.908345607, + "2024-05-26T22": 0.947401924, + "2024-05-25T16": 0.90887274, + "2024-05-26T05": 0.90842739, + "2024-05-24T04": 0.908291072, + "2024-05-21T14": 1.0121469, + "2024-05-25T12": 0.911336202, + "2024-05-28T07": 0.9190457639999999, + "2024-05-23T18": 0.887169662, + "2024-05-26T23": 0.946745344, + "2024-05-24T09": 0.857713855, + "2024-05-23T03": 0.9928343550000001, + "2024-05-26T14": 0.907064262, + "2024-05-21T13": 1.0146970199999998, + "2024-05-22T14": 1.003950350504197, + "2024-05-25T14": 0.9004369649999999, + "2024-05-25T00": 0.898693253, + "2024-05-23T23": 0.9039140665956359, + "2024-05-21T11": 1.027622467, + "2024-05-23T13": 0.927175375, + "2024-05-22T11": 1.001619676, + "2024-05-21T15": 0.997360576, + "2024-05-28T00": 0.94064688, + "2024-05-27T23": 0.95219948, + "2024-05-28T02": 0.925714464, + "2024-05-26T21": 0.93383285, + "2024-05-26T12": 0.908809088, + "2024-05-23T06": 0.967290223, + "2024-05-22T07": 0.990721638, + "2024-05-27T12": 0.94453836, + "2024-05-22T21": 0.9859350689999999, + "2024-05-24T00": 0.914088475, + "2024-05-25T02": 0.8938033200000001, + "2024-05-27T00": 0.9420287500000001, + "2024-05-26T20": 0.939526539, + "2024-05-26T17": 0.9334117874105531, + "2024-05-27T13": 0.954598224, + "2024-05-23T12": 0.9586300409999999, + "2024-05-25T10": 0.920951276, + "2024-05-21T09": 1.02949406, + "2024-05-23T11": 0.9530232500000001, + "2024-05-24T14": 0.8762774010000001, + "2024-05-25T01": 0.89312134, + "2024-05-27T21": 0.9602291880000001, + "2024-05-27T03": 0.950938615, + "2024-05-27T01": 0.948135186, + "latest": 1.048, + "2024-05-28T09": 0.958911303, + "2024-05-28T10": 0.957270546, + "2024-05-28T11": 0.9579315110000001, + "2024-05-28T12": 0.953935551, + "2024-05-28T13": 0.9648342, + "2024-05-28T14": 0.9622464319999999, + "2024-05-28T15": 0.9600966599999999, + "2024-05-29": 1.0394443994999343, + "2024-05-28T20": 1.001917158, + "2024-05-28T22": 1.0040753999999998, + "2024-05-28T21": 1.0014863319999998, + "2024-05-28T19": 0.991594396165554, + "2024-05-29T02": 1.034044198, + "2024-05-28T17": 0.9826164000000001, + "2024-05-28T18": 0.988263125, + "2024-05-28T23": 0.9969578308535151, + "2024-05-29T00": 1.013702418, + "2024-05-29T01": 1.0175672519999999, + "2024-05-28T16": 0.9754746750000001, + "2024-05-29T06": 1.069104816, + "2024-05-29T05": 1.0666398780000002, + "2024-05-29T03": 1.039197282, + "2024-05-29T07": 1.047567404, + "2024-05-29T04": 1.0478515709999998, + "2024-05-29T08": 1.0405194940155122, + "2024-05-29T09": 1.03954274, + "2024-05-29T10": 1.0637671439999998, + "2024-05-29T11": 1.0589506, + "2024-05-29T12": 1.0451946747491452, + "2024-05-29T13": 1.046483106, + "2024-05-29T14": 1.0430275880000002, + "2024-05-29T15": 1.0394734640964238, + "2024-05-29T18": 1.0178310098493852, + "2024-05-29T17": 1.0169715813955114, + "2024-05-29T23": 1.0259673599999999, + "2024-05-29T19": 1.0111270302866842, + "2024-05-29T22": 1.0106673691703438, + "2024-05-29T20": 1.0046514235387949, + "2024-05-29T16": 1.0236293160878902, + "2024-05-29T21": 1.0090231200992585, + "2024-05-30": 1.0700538489609352, + "2024-05-30T00": 1.035314616, + "2024-05-30T05": 1.0644574187998241, + "2024-05-30T02": 1.067906268, + "2024-05-30T01": 1.052853848289119, + "2024-05-30T06": 1.051658, + "2024-05-30T07": 1.0467001300797987, + "2024-05-30T03": 1.0817004, + "2024-05-30T04": 1.0748442537086604, + "2024-05-30T08": 1.0314945966322626, + "2024-05-30T09": 1.03128086, + "2024-05-30T10": 1.051363531, + "2024-05-30T11": 1.0677344340000001, + "2024-05-30T12": 1.05895216, + "2024-05-30T13": 1.1069354399999998, + "2024-05-30T14": 1.105591194, + "2024-05-30T15": 1.0897265970553387, + "2024-05-30T21": 1.0989332411430959, + "2024-05-30T20": 1.1102663923399514, + "2024-05-30T18": 1.1076324345197357, + "2024-05-30T22": 1.1014143699999999, + "2024-05-30T16": 1.088843432454121, + "2024-05-30T17": 1.1055126551190326, + "2024-05-30T19": 1.1186783315486584, + "2024-05-31": 1.102079506119625, + "2024-05-30T23": 1.10861185, + "2024-05-31T03": 1.0888770879999998, + "2024-05-31T07": 1.0765937168571231, + "2024-05-31T06": 1.0831749499999999, + "2024-05-31T04": 1.105891056, + "2024-05-31T02": 1.0712498860000002, + "2024-05-31T05": 1.083490055873064, + "2024-05-31T00": 1.0838964240000002, + "2024-05-31T01": 1.084639624, + "2024-05-31T08": 1.0734948108542166, + "2024-05-31T09": 1.0655481492153713, + "2024-05-31T10": 1.06206238, + "2024-05-31T11": 1.0617851884011507, + "2024-05-31T12": 1.06135218, + "2024-05-31T13": 1.051547636, + "2024-05-31T14": 1.0474702323238032, + "2024-06-01": 1.0252323128923875, + "2024-06-01T08": 1.044432401, + "2024-06-01T02": 1.0403529246687682, + "2024-06-01T05": 1.052641938247363, + "2024-05-31T21": 1.03436594256215, + "2024-06-01T00": 1.0252323128923875, + "2024-05-31T18": 1.0386859702760878, + "2024-05-31T15": 1.0505655164652954, + "2024-05-31T23": 1.0314261856967926, + "2024-05-31T22": 1.0328005919697814, + "2024-06-01T01": 1.0247309229923927, + "2024-06-01T07": 1.0587178711073146, + "2024-06-01T04": 1.0331510055740294, + "2024-05-31T19": 1.0434326744459845, + "2024-06-01T06": 1.0556178156086533, + "2024-05-31T20": 1.0342951972707526, + "2024-05-31T17": 1.0332059475888669, + "2024-05-31T16": 1.036378671518046, + "2024-06-01T03": 1.044207917362423, + "2024-06-01T09": 1.07106736, + "2024-06-01T10": 1.0709940412703525, + "2024-06-02": 1.0297158107830906, + "2024-06-01T13": 1.05944564, + "2024-06-01T15": 1.0448436410000002, + "2024-06-01T18": 1.021490064, + "2024-06-01T12": 1.067670318, + "2024-06-01T21": 1.0368763580000002, + "2024-06-01T20": 1.047666746, + "2024-06-02T01": 1.03457168, + "2024-06-01T17": 1.03177392, + "2024-06-01T11": 1.0584677279999999, + "2024-06-02T00": 1.03277312, + "2024-06-01T23": 1.033741282, + "2024-06-01T14": 1.0574461259999999, + "2024-06-01T22": 1.0357980709999999, + "2024-06-01T19": 1.024687216, + "2024-06-01T16": 1.03305906, + "2024-06-02T13": 1.031157032, + "2024-06-02T11": 1.036763375, + "2024-06-02T07": 1.0179747719999999, + "2024-06-02T05": 1.035729256, + "2024-06-02T08": 1.040949976, + "2024-06-02T04": 1.046052011, + "2024-06-02T10": 1.042428032, + "2024-06-02T12": 1.037362949, + "2024-06-02T02": 1.03762766, + "2024-06-02T16": 1.043454117, + "2024-06-02T17": 1.04172244, + "2024-06-02T03": 1.035818805, + "2024-06-02T09": 1.068308866, + "2024-06-02T15": 1.049927836, + "2024-06-02T06": 1.032821355, + "2024-06-02T18": 1.072045653, + "2024-06-02T14": 1.037941749, + "2024-06-03": 1.0565292664073975, + "2024-06-03T01": 1.047986884, + "2024-06-02T20": 1.07587563, + "2024-06-03T00": 1.04102712, + "2024-06-02T21": 1.070043288, + "2024-06-02T23": 1.058028356, + "2024-06-02T19": 1.087757844, + "2024-06-02T22": 1.0630256560000002, + "2024-06-03T02": 1.0508691570000002, + "2024-06-03T05": 1.03677756, + "2024-06-03T06": 1.0673164800000001, + "2024-06-03T04": 1.0300022519999998, + "2024-06-03T03": 1.0369878160000001, + "2024-06-03T07": 1.0547664684859546 + }, + "USD bitcoin_cash": { + "2023-07-30": 247.9910396127054, + "2023-10-23": 247.66862125906624, + "2023-07-27": 244.82523127047767, + "2023-07-10": 270.44966506235465, + "2023-08-20": 188.14486186852957, + "2024-02-23": 263.3291872169014, + "2024-04-05": 677.8680329485253, + "2023-12-19": 228.2946420468583, + "2024-05-17": 466.53583963561283, + "2023-08-06": 224.6278278834337, + "2023-12-02": 225.80911194197424, + "2023-10-31": 244.356691706226, + "2023-08-29": 208.90068653976508, + "2023-06-20": 106.68400595453285, + "2023-09-09": 192.04094073236178, + "2023-06-26": 214.66880041425247, + "2023-10-01": 237.29144044258803, + "2024-03-07": 417.64071667254035, + "2023-10-12": 212.92423248767093, + "2024-04-22": 510.80531839933104, + "2023-07-05": 265.4715024293853, + "2023-07-29": 240.5947831552141, + "2024-04-26": 479.56840341234266, + "2024-01-08": 238.22455602575246, + "2023-05-29": 115.86063746960406, + "2023-10-07": 231.45985114785483, + "2023-09-26": 212.93258516526808, + "2023-08-24": 191.85539027466288, + "2023-12-05": 245.92345384055093, + "2024-02-19": 269.8308879215495, + "2024-01-07": 236.32530749849616, + "2024-04-28": 480.0801797124092, + "2023-07-31": 251.9854809202489, + "2023-10-18": 229.32813300523975, + "2024-05-19": 489.175904100833, + "2024-05-12": 432.6106129049988, + "2024-04-29": 460.06185024611443, + "2023-08-25": 190.76247089258644, + "2024-03-09": 436.0769891776131, + "2023-07-12": 282.32000334806753, + "2023-09-05": 192.1918606178267, + "2023-06-07": 112.52468952352274, + "2023-09-16": 216.3645035831004, + "2024-04-25": 478.2619618993962, + "2023-08-12": 228.83901973787346, + "2023-06-06": 109.61084042412391, + "2023-09-01": 205.64542633938888, + "2023-09-08": 193.1128014487308, + "2024-03-22": 410.3520714135185, + "2023-08-10": 233.9626230950755, + "2023-12-07": 245.43210293676614, + "2023-11-18": 226.84294976647743, + "2023-07-13": 282.8545421162785, + "2023-09-13": 200.2700531492261, + "2023-06-17": 106.8790450439597, + "2023-07-17": 245.0707800197486, + "2023-07-07": 281.0226621955394, + "2023-09-07": 191.48685859454787, + "2024-03-26": 487.2777146812299, + "2024-05-14": 434.04793665671707, + "2024-02-22": 262.5547734272376, + "2024-04-15": 523.9231030409991, + "2023-12-30": 275.1686979038464, + "2023-09-17": 211.75733512710283, + "2024-04-17": 468.00548271308384, + "2024-02-12": 278.99622963433256, + "2023-10-26": 251.21567816422615, + "2024-01-03": 234.73077466043733, + "2024-05-07": 478.74010930238916, + "2023-06-01": 112.9846916343117, + "2024-01-22": 234.6659417289094, + "2023-06-12": 102.39796756954122, + "2023-10-03": 240.38066988020384, + "2024-05-26": 488.3521298540069, + "2024-04-30": 438.5475811579806, + "2023-06-19": 106.54270442575191, + "2023-07-09": 268.8111312414025, + "2023-12-24": 231.46781149032412, + "2023-09-24": 208.4127536655314, + "2024-01-16": 253.0381070449678, + "2023-10-17": 227.98019188824486, + "2024-04-24": 497.0591979806727, + "2024-03-18": 397.97850738309154, + "2024-02-17": 267.40646150995616, + "2023-12-27": 251.8424803938729, + "2023-07-23": 247.37979222279296, + "2023-09-03": 194.92854783141058, + "2024-02-24": 266.8618262310016, + "2024-01-06": 236.26670386519913, + "2024-03-20": 371.5885452422793, + "2023-11-21": 227.56669720710892, + "2023-12-25": 233.94777835409, + "2023-09-22": 208.08385037932058, + "2023-10-02": 246.04813237353048, + "2024-03-27": 502.8195148829421, + "2024-05-06": 472.0653863397616, + "2023-08-30": 216.63899222231086, + "2023-10-06": 230.929654029852, + "2023-10-13": 213.87217659840047, + "2023-06-28": 230.1706960858143, + "2024-02-05": 235.26204219506297, + "2024-03-01": 313.66978514947795, + "2023-07-15": 253.17364345148718, + "2023-06-25": 200.71799813243928, + "2023-12-10": 250.74008771649792, + "2023-11-23": 224.77319399580915, + "2023-08-04": 226.86357113103156, + "2024-05-13": 440.4553331126219, + "2024-01-13": 255.88456777168886, + "2024-03-28": 565.9760576795928, + "2023-08-05": 225.2211808435707, + "2024-02-09": 250.10494689575745, + "2023-10-09": 217.91867623785078, + "2024-01-09": 248.48493398932428, + "2024-05-10": 446.8818099438804, + "2023-05-27": 113.09477158104835, + "2023-08-18": 185.100412136159, + "2023-11-05": 239.41459953773017, + "2024-04-18": 478.8531374468626, + "2023-10-22": 242.40860326782266, + "2023-11-01": 241.22677244494167, + "2024-05-20": 487.89546785961096, + "2023-12-08": 248.84009839404672, + "2024-04-12": 580.5067768787485, + "2023-07-06": 284.9674287387248, + "2024-03-12": 427.9945159323984, + "2023-09-11": 186.81127139869554, + "2024-03-03": 480.71589291280736, + "2024-02-04": 240.50854874890234, + "2024-01-28": 241.73896358072412, + "2023-07-01": 291.49339489375546, + "2023-11-07": 243.59829389200368, + "2023-11-25": 226.5349153540486, + "2023-06-04": 116.43449658735142, + "2024-02-25": 268.0094956353005, + "2023-12-01": 223.3591019068416, + "2023-07-14": 272.9961328277158, + "2024-01-26": 239.69902526762158, + "2023-08-03": 228.53781630495558, + "2024-02-28": 299.46352027910035, + "2023-09-15": 215.4575043217788, + "2023-07-18": 240.51775838315103, + "2023-12-21": 231.20609060946953, + "2023-07-20": 244.86142101150492, + "2024-03-06": 406.55136316210917, + "2023-09-30": 235.51666151171344, + "2023-12-12": 232.1115351592149, + "2024-02-13": 276.4714331762997, + "2023-09-20": 215.874661355163, + "2023-09-19": 218.5159640890133, + "2023-09-29": 234.7739546786578, + "2023-09-12": 197.648746101998, + "2023-06-13": 105.14499819808098, + "2023-10-04": 229.41530764842847, + "2023-07-08": 269.24885652261304, + "2024-04-16": 483.1180772349934, + "2024-03-02": 414.141328207405, + "2023-06-27": 227.54493547366454, + "2023-10-08": 229.1642918897811, + "2023-11-20": 228.99135642717818, + "2023-12-20": 229.48542206103804, + "2023-12-31": 264.42366475603916, + "2023-11-06": 239.49292326595582, + "2023-08-22": 185.13157470510163, + "2023-06-09": 110.90822811425323, + "2024-03-17": 396.6225601408881, + "2023-09-18": 217.33155645870335, + "2024-04-01": 664.6384246859101, + "2024-05-21": 519.3607221398254, + "2024-01-19": 235.1481458221696, + "2023-11-11": 237.5753769771128, + "2023-09-23": 208.1871057963316, + "2023-11-19": 227.93929715719779, + "2023-07-02": 293.2273261298345, + "2023-08-15": 232.5747548933812, + "2024-01-25": 236.0987785717561, + "2024-03-13": 438.4916820214306, + "2024-01-21": 239.88388968124178, + "2024-02-01": 234.70455473376907, + "2023-06-15": 103.35790203870165, + "2024-03-16": 402.76922630604247, + "2023-11-27": 224.57399496727382, + "2024-01-10": 244.5252157629206, + "2024-03-15": 408.83838994726045, + "2023-06-21": 131.9137256286968, + "2024-01-02": 264.5730731741455, + "2023-07-11": 273.85104325205026, + "2023-10-25": 254.10899272795763, + "2024-01-01": 264.02373383549167, + "2024-02-14": 278.3838125639725, + "2023-09-04": 193.6617947038947, + "2023-09-06": 192.51797540614882, + "2024-04-03": 604.5231352714042, + "2023-11-28": 222.45384656255203, + "2023-12-03": 227.39790402858685, + "2023-08-02": 236.4381340945131, + "2023-08-27": 193.02473114387777, + "2023-10-20": 240.52851611451945, + "2023-10-10": 215.15987022375123, + "2024-05-03": 444.2508034977608, + "2024-03-08": 434.06965262143285, + "2024-04-11": 612.9732324951813, + "2023-06-22": 135.2218438903058, + "2024-01-14": 254.12926909418908, + "2023-12-15": 231.35044961014694, + "2023-10-19": 228.1525941044996, + "2024-02-08": 242.74394208364532, + "2023-11-08": 243.84077940631744, + "2023-11-12": 236.81257175218562, + "2023-12-22": 235.87891612198683, + "2023-05-31": 112.75008856043232, + "2024-03-23": 459.5345731918303, + "2023-09-27": 227.47281845232186, + "2024-03-04": 457.84025566841154, + "2023-09-10": 189.4050815174463, + "2024-04-13": 526.8533498648151, + "2024-02-29": 311.11297926429177, + "2023-07-21": 244.68826895639282, + "2023-06-30": 301.0516288771847, + "2023-12-29": 256.3077132770682, + "2023-12-04": 248.36333522066496, + "2024-04-10": 619.8667644595502, + "2024-05-08": 458.6485328118367, + "2023-09-21": 209.00866364430382, + "2023-06-02": 114.42519479503919, + "2024-04-21": 510.02985722663084, + "2023-07-22": 244.40113603326694, + "2023-10-11": 213.06751094282788, + "2024-03-21": 420.9616633820214, + "2023-07-19": 245.60426698772073, + "2024-05-05": 464.09229299284664, + "2024-05-23": 500.2337073552504, + "2024-04-08": 692.2444346158672, + "2024-05-18": 480.13510619578693, + "2023-06-14": 105.34665753114732, + "2023-10-05": 230.42846711435357, + "2023-10-16": 228.32308166121732, + "2024-05-22": 505.42985690034004, + "2024-02-10": 247.43289872862215, + "2024-04-07": 684.1473492629215, + "2024-02-20": 268.4420641257494, + "2023-11-17": 229.5845452559164, + "2023-12-11": 232.85597271115066, + "2023-11-26": 226.72261301669195, + "2023-11-16": 236.60927318329232, + "2023-06-29": 241.98376691374952, + "2023-10-27": 243.3679499778638, + "2023-06-11": 102.62276088883081, + "2024-02-02": 236.45233181454503, + "2023-09-14": 203.4740184062443, + "2024-01-27": 243.17425070041202, + "2024-03-30": 603.3104881818614, + "2023-11-22": 220.11762373631396, + "2023-09-28": 235.678354941676, + "2023-06-03": 114.76715221659961, + "2024-01-18": 240.0448215557205, + "2023-08-26": 189.87336518469024, + "2024-02-15": 270.67089566470213, + "2023-10-28": 244.8905929734618, + "2024-03-24": 463.8534703785181, + "2024-04-27": 474.2309592951646, + "2023-12-06": 249.62386964725007, + "2024-01-30": 241.68415559610565, + "2023-11-14": 235.24711228056734, + "2023-08-09": 236.6324291452907, + "2024-05-15": 445.7952646586293, + "2023-11-10": 239.7617199264017, + "2024-01-23": 227.050762397107, + "2024-01-31": 235.13990245731043, + "2024-05-11": 430.0604073507974, + "2024-01-11": 272.2211588085484, + "2024-02-18": 268.20884851912734, + "2023-06-16": 104.79418351768182, + "2023-10-30": 245.43954325492209, + "2023-12-17": 228.26370852922452, + "2024-02-26": 267.4972752009858, + "2023-07-16": 255.89069546916252, + "2024-01-05": 234.94376778976027, + "2023-08-23": 188.3278594635584, + "2024-03-11": 441.68883938915604, + "2023-08-01": 242.32463986880308, + "2024-03-14": 439.8530160270261, + "2024-02-21": 260.47205311544826, + "2023-08-28": 191.69815225498832, + "2023-07-04": 281.98386815509366, + "2023-12-13": 229.05407222445479, + "2024-02-27": 299.1958480539786, + "2023-08-13": 228.48724934873988, + "2024-03-31": 602.0369071949768, + "2023-12-09": 255.39543526342092, + "2024-04-02": 618.1509153213261, + "2024-02-06": 235.37743680067916, + "2024-04-09": 677.2484304590891, + "2023-11-04": 237.59786693960166, + "2024-04-20": 488.078814148546, + "2024-01-15": 252.2222348116726, + "2023-07-03": 292.1975756843975, + "2023-12-28": 268.4929096714922, + "2023-05-30": 114.75102702404867, + "2024-05-25": 494.28612537685456, + "2024-02-07": 235.44904220151656, + "2023-09-25": 206.970833257118, + "2024-03-19": 371.8833185404812, + "2024-03-10": 433.73289420170477, + "2024-05-02": 423.2941423426797, + "2023-09-02": 199.12870042871634, + "2024-01-12": 281.5746316584331, + "2024-04-19": 478.45912513835094, + "2023-11-29": 223.23131749663716, + "2023-10-15": 214.40432406984527, + "2024-05-28": 488.47638745999217, + "2023-11-30": 221.75640202828987, + "2024-01-24": 234.88891133580537, + "2023-08-11": 228.70870417328481, + "2024-02-11": 273.59982153063464, + "2023-06-08": 111.61116, + "2023-11-15": 232.8642179153989, + "2023-12-16": 230.07364202173466, + "2024-03-29": 601.7423327531637, + "2024-04-04": 640.1018120634858, + "2023-06-10": 98.92, + "2023-07-28": 242.925087456579, + "2024-01-20": 236.86064429001695, + "2023-10-21": 242.09452555986914, + "2023-08-16": 220.34556653758196, + "2024-05-24": 490.87812555577847, + "2023-11-03": 237.05505627824138, + "2023-08-31": 214.0772211497125, + "2024-05-27": 489.29529306270234, + "2024-01-04": 236.71060877921923, + "2023-07-26": 238.16230601502104, + "2023-11-13": 236.6527808212016, + "2023-10-24": 259.01160101756034, + "2024-03-25": 489.5553845331499, + "2023-08-07": 234.5775596849143, + "2023-10-29": 246.22752845955964, + "2024-01-29": 237.3090711713775, + "2024-05-04": 466.1775747097208, + "2023-06-05": 112.69154015225037, + "2023-11-02": 242.54641495431088, + "2023-12-18": 223.98453574259744, + "2023-11-24": 225.68642586399667, + "2023-08-21": 187.33852650353717, + "2023-07-25": 236.1585280517795, + "2024-05-16": 452.55045299100897, + "2023-08-14": 229.1172946062715, + "2024-05-01": 413.4060284488884, + "2024-03-05": 442.37527643919657, + "2024-04-06": 695.2124366801665, + "2023-12-23": 231.93261342988473, + "2024-02-03": 240.00192926068115, + "2024-02-16": 271.72870916271415, + "2023-05-28": 114.53192102997484, + "2023-12-14": 234.3634351539807, + "2023-06-24": 190.83214596872426, + "2023-12-26": 230.2356936967465, + "2023-11-09": 249.1953439449218, + "2023-08-19": 187.69332069280244, + "2024-05-09": 448.8731010397336, + "2024-01-17": 245.81851694712284, + "2023-06-23": 148.07423533638635, + "2023-06-18": 107.57219638894098, + "2024-04-23": 510.30382620395, + "2023-08-08": 238.5430633075574, + "2023-08-17": 205.65190648716344, + "2024-04-14": 485.3998609290625, + "2023-07-24": 241.94223818736378, + "2023-10-14": 216.36880372662353, + "2024-05-22T20": 501.33983199999994, + "2024-05-25T08": 496.106443, + "2024-05-22T05": 508.188174, + "2024-05-28T03": 471.62712000000005, + "2024-05-22T16": 505.87856, + "2024-05-25T05": 498.40056000000004, + "2024-05-24T22": 496.63046199999997, + "2024-05-27T14": 495.84273599999995, + "2024-05-22T03": 509.59296299999994, + "2024-05-23T17": 489.142665, + "2024-05-24T23": 495.01088200000004, + "2024-05-26T19": 484.438262, + "2024-05-26T18": 483.34852800000004, + "2024-05-26T10": 488.119329, + "2024-05-27T16": 499.30519799999996, + "2024-05-24T12": 487.2465, + "2024-05-26T01": 492.9507, + "2024-05-21T17": 517.1241274669223, + "2024-05-23T07": 509.6889, + "2024-05-22T08": 506.7533965492755, + "2024-05-23T09": 506.83268999999996, + "2024-05-24T18": 497.5511, + "2024-05-23T01": 512.238625, + "2024-05-25T15": 493.55064000000004, + "2024-05-23T16": 488.462728, + "2024-05-25T03": 494.097337, + "2024-05-28T06": 465.98956799999996, + "2024-05-25T23": 492.91619, + "2024-05-24T13": 486.90767999999997, + "2024-05-26T03": 490.146078, + "2024-05-26T00": 492.635949, + "2024-05-25T06": 494.90691100000004, + "2024-05-27T04": 487.541466, + "2024-05-22T10": 505.88868, + "2024-05-27T09": 485.398866, + "2024-05-24T17": 492.89289800000006, + "2024-05-26T16": 484.09659400000004, + "2024-05-22T09": 505.79882, + "2024-05-24T21": 496.8952754, + "2024-05-25T04": 495.70164, + "2024-05-27T22": 489.5002, + "2024-05-27T11": 488.39700600000003, + "2024-05-23T21": 490.8316, + "2024-05-23T10": 504.42339000000004, + "2024-05-23T14": 487.7508849, + "2024-05-27T02": 488.511608, + "2024-05-25T18": 493.736535, + "2024-05-27T05": 484.567296, + "2024-05-22T23": 498.37563000000006, + "2024-05-28T01": 482.01408, + "2024-05-22T04": 506.86712264878923, + "2024-05-22T15": 505.85326, + "2024-05-24T03": 494.397214, + "2024-05-24T08": 486.85877, + "2024-05-21T22": 515.050592, + "2024-05-21T16": 518.4769590000001, + "2024-05-21T23": 515.091808, + "2024-05-24T02": 492.21288799999996, + "2024-05-26T07": 492.61766400000005, + "2024-05-27T07": 482.82496510000004, + "2024-05-25T22": 492.01142200000004, + "2024-05-24T16": 489.094494, + "2024-05-27T20": 489.100608, + "2024-05-22T02": 511.807858, + "2024-05-24T06": 486.869850216577, + "2024-05-24T11": 487.00762, + "2024-05-25T21": 492.60146, + "2024-05-27T15": 499.969656, + "2024-05-21T19": 510.83137, + "2024-05-22T19": 500.994769, + "2024-05-21T12": 523.8794800000001, + "2024-05-23T20": 477.333148064371, + "2024-05-23T08": 507.7146304268068, + "2024-05-22T22": 498.40413226540386, + "2024-05-26T11": 488.7531100228312, + "2024-05-24T01": 492.10308000000003, + "2024-05-23T05": 508.584482, + "2024-05-28T04": 466.059528, + "2024-05-25T09": 494.022088, + "2024-05-27T18": 494.10045400000007, + "2024-05-24T10": 491.349284, + "2024-05-25T19": 493.67655, + "2024-05-24T07": 488.9930436, + "2024-05-26T04": 490.57241799999997, + "2024-05-26T09": 489.20424, + "2024-05-23T02": 509.53490400000004, + "2024-05-27T06": 483.167968, + "2024-05-28T08": 464.6925835236593, + "2024-05-24T15": 490.35470000000004, + "2024-05-25T20": 492.71985664835273, + "2024-05-27T08": 484.90887999999995, + "2024-05-23T22": 491.595022, + "2024-05-26T15": 485.50852, + "2024-05-24T20": 497.45025, + "2024-05-21T20": 514.530149, + "2024-05-25T13": 492.830994, + "2024-05-22T01": 512.4385, + "2024-05-25T17": 492.2522140323686, + "2024-05-27T10": 486.203235, + "2024-05-21T21": 512.38725, + "2024-05-24T19": 497.345775, + "2024-05-26T02": 491.745902, + "2024-05-27T19": 487.30732200000006, + "2024-05-25T11": 496.22555500000004, + "2024-05-27T17": 497.387163, + "2024-05-21T18": 517.5514559999999, + "2024-05-26T06": 490.93302600000004, + "2024-05-23T00": 512.328322, + "2024-05-22T00": 511.807858, + "2024-05-24T05": 489.13082999999995, + "2024-05-23T15": 488.04835199999997, + "2024-05-22T13": 499.045099, + "2024-05-21T10": 519.2599115958373, + "2024-05-22T12": 499.31510199999997, + "2024-05-23T04": 510.2834280000001, + "2024-05-26T08": 492.39310800000004, + "2024-05-26T13": 485.744512, + "2024-05-28T05": 466.14079499999997, + "2024-05-22T18": 500.739904, + "2024-05-22T06": 508.588086, + "2024-05-21T08": 519.6291563734543, + "2024-05-22T17": 504.9192, + "2024-05-23T19": 485.55287999999996, + "2024-05-25T07": 495.106833, + "2024-05-26T22": 485.396048, + "2024-05-25T16": 492.33106399999997, + "2024-05-26T05": 488.8533, + "2024-05-24T04": 494.822744, + "2024-05-21T14": 524.86875, + "2024-05-25T12": 493.365462, + "2024-05-28T07": 462.52042199999994, + "2024-05-23T18": 483.35657299999997, + "2024-05-26T23": 484.567296, + "2024-05-24T09": 490.77905000000004, + "2024-05-23T03": 509.7582330000001, + "2024-05-26T14": 487.509797, + "2024-05-21T13": 524.895, + "2024-05-22T14": 500.46483800000004, + "2024-05-25T14": 492.065553, + "2024-05-25T00": 495.18608100000006, + "2024-05-23T23": 490.184224, + "2024-05-21T11": 520.459438, + "2024-05-23T13": 492.02773, + "2024-05-22T11": 505.0140254962647, + "2024-05-21T15": 524.4341056, + "2024-05-28T00": 486.1108, + "2024-05-27T23": 488.9988956, + "2024-05-28T02": 477.846132, + "2024-05-26T21": 482.5586, + "2024-05-26T12": 485.6045568, + "2024-05-23T06": 509.179015, + "2024-05-22T07": 506.108884, + "2024-05-27T12": 490.4493788908456, + "2024-05-22T21": 498.38821758766795, + "2024-05-24T00": 490.97896000000003, + "2024-05-25T02": 494.991078, + "2024-05-27T00": 485.05735000000004, + "2024-05-26T20": 483.70476, + "2024-05-26T17": 483.538748, + "2024-05-27T13": 493.08915799999994, + "2024-05-23T12": 500.75451, + "2024-05-25T10": 494.86635, + "2024-05-21T09": 520.59586, + "2024-05-23T11": 506.44665000000003, + "2024-05-24T14": 487.953307, + "2024-05-25T01": 496.13381847258626, + "2024-05-27T21": 489.04205694004656, + "2024-05-27T03": 488.311726, + "2024-05-27T01": 488.060733, + "latest": 465.15, + "2024-05-28T09": 469.5159, + "2024-05-28T10": 473.54022, + "2024-05-28T11": 472.322472, + "2024-05-28T12": 469.82499700000005, + "2024-05-28T13": 466.1334, + "2024-05-28T14": 464.62956089999994, + "2024-05-28T15": 464.76271199999996, + "2024-05-29": 468.4373194606818, + "2024-05-28T20": 469.239694, + "2024-05-28T22": 470.866404, + "2024-05-28T21": 469.683907, + "2024-05-28T19": 467.42436000000004, + "2024-05-29T02": 471.418662, + "2024-05-28T17": 464.9346, + "2024-05-28T18": 462.621, + "2024-05-28T23": 470.34803200000005, + "2024-05-29T00": 470.04469200000005, + "2024-05-29T01": 468.63226799999995, + "2024-05-28T16": 464.212065, + "2024-05-29T06": 472.13802089999996, + "2024-05-29T05": 472.04233200000004, + "2024-05-29T03": 473.597454, + "2024-05-29T07": 467.99402000000003, + "2024-05-29T04": 473.83546399999994, + "2024-05-29T08": 464.7348, + "2024-05-29T09": 468.46861199999995, + "2024-05-29T10": 469.94371199999995, + "2024-05-29T11": 468.17604639999996, + "2024-05-29T12": 467.346234, + "2024-05-29T13": 467.63496, + "2024-05-29T14": 466.25471600000003, + "2024-05-29T15": 467.30073600000003, + "2024-05-29T18": 468.64966400000003, + "2024-05-29T17": 469.17736, + "2024-05-29T23": 467.4687740585945, + "2024-05-29T19": 468.240674, + "2024-05-29T22": 468.179743, + "2024-05-29T20": 466.17539400000004, + "2024-05-29T16": 466.377977, + "2024-05-29T21": 466.6819779627959, + "2024-05-30": 467.3673156572797, + "2024-05-30T00": 465.82166399999994, + "2024-05-30T05": 466.337868, + "2024-05-30T02": 467.63347799999997, + "2024-05-30T01": 465.3933661460157, + "2024-05-30T06": 463.85985351511107, + "2024-05-30T07": 462.113312, + "2024-05-30T03": 467.83792, + "2024-05-30T04": 467.97639968532724, + "2024-05-30T08": 461.92267999999996, + "2024-05-30T09": 466.71979999999996, + "2024-05-30T10": 466.76183, + "2024-05-30T11": 467.62092, + "2024-05-30T12": 468.32504, + "2024-05-30T13": 470.51752, + "2024-05-30T14": 470.583432, + "2024-05-30T15": 467.51292, + "2024-05-30T21": 466.20674, + "2024-05-30T20": 466.711308, + "2024-05-30T18": 471.77730599999995, + "2024-05-30T22": 466.86824309962907, + "2024-05-30T16": 468.53126799999995, + "2024-05-30T17": 472.6739658842669, + "2024-05-30T19": 470.01538200000005, + "2024-05-31": 462.88441020024504, + "2024-05-30T23": 465.32778489305355, + "2024-05-31T03": 465.326536, + "2024-05-31T07": 465.36035000000004, + "2024-05-31T06": 463.91078500000003, + "2024-05-31T04": 465.485778, + "2024-05-31T02": 464.604784, + "2024-05-31T05": 462.510293, + "2024-05-31T00": 464.169996, + "2024-05-31T01": 465.0707661884797, + "2024-05-31T08": 465.550976, + "2024-05-31T09": 463.84224, + "2024-05-31T10": 464.721, + "2024-05-31T11": 465.515862, + "2024-05-31T12": 467.814459, + "2024-05-31T13": 464.21201, + "2024-05-31T14": 460.637287, + "2024-06-01": 455.29703020132825, + "2024-06-01T08": 458.918781, + "2024-06-01T02": 455.739238, + "2024-06-01T05": 459.6412, + "2024-05-31T21": 455.76612900000003, + "2024-06-01T00": 455.235186, + "2024-05-31T18": 456.87624248168714, + "2024-05-31T15": 455.121935, + "2024-05-31T23": 454.940046, + "2024-05-31T22": 456.07491000000005, + "2024-06-01T01": 454.84014700000006, + "2024-06-01T07": 459.2330440652194, + "2024-06-01T04": 457.247648, + "2024-05-31T19": 458.493988, + "2024-06-01T06": 459.23691600000006, + "2024-05-31T20": 457.663906, + "2024-05-31T17": 455.63064, + "2024-05-31T16": 449.63550000000004, + "2024-06-01T03": 456.33464, + "2024-06-01T09": 458.90040899999997, + "2024-06-01T10": 459.09564, + "2024-06-02": 463.38689070007695, + "2024-06-01T13": 461.18456000000003, + "2024-06-01T15": 461.433481, + "2024-06-01T18": 461.289087, + "2024-06-01T12": 460.33922744499705, + "2024-06-01T21": 462.18828600000006, + "2024-06-01T20": 461.6887310000001, + "2024-06-02T01": 463.22912, + "2024-06-01T17": 460.83104, + "2024-06-01T11": 459.09564, + "2024-06-02T00": 463.5898298966734, + "2024-06-01T23": 462.515793, + "2024-06-01T14": 460.996965, + "2024-06-01T22": 464.49553699999996, + "2024-06-01T19": 460.68962100000005, + "2024-06-01T16": 460.480581, + "2024-06-02T13": 460.768008, + "2024-06-02T11": 461.17233500000003, + "2024-06-02T07": 463.324403, + "2024-06-02T05": 463.90998800000006, + "2024-06-02T08": 462.866496, + "2024-06-02T04": 463.62416, + "2024-06-02T10": 459.3398368, + "2024-06-02T12": 461.976321075553, + "2024-06-02T02": 462.11150000000004, + "2024-06-02T16": 460.426752, + "2024-06-02T17": 457.802235, + "2024-06-02T03": 463.2460406420905, + "2024-06-02T09": 459.959378, + "2024-06-02T15": 461.216872, + "2024-06-02T06": 463.905345, + "2024-06-02T18": 455.72184, + "2024-06-02T14": 461.263032, + "2024-06-03": 458.3791737500241, + "2024-06-03T01": 460.1269008, + "2024-06-02T20": 455.835462, + "2024-06-03T00": 455.849145, + "2024-06-02T21": 457.3589325098717, + "2024-06-02T23": 458.052518, + "2024-06-02T19": 455.6110308, + "2024-06-02T22": 458.35235600000004, + "2024-06-03T02": 462.8761818267056, + "2024-06-03T05": 463.42177999999996, + "2024-06-03T06": 466.401312, + "2024-06-03T04": 461.032446, + "2024-06-03T03": 461.82736100000005, + "2024-06-03T07": 465.80169600000005 + }, + "USD bitcoin_gold": { + "2023-07-30": 17.547823914182043, + "2023-10-23": 14.660627138463783, + "2023-07-27": 13.609776810751791, + "2023-07-10": 14.480427072593727, + "2023-08-20": 13.52846559893501, + "2024-02-23": 23.39644215499048, + "2024-04-05": 45.331195971777724, + "2023-12-19": 16.481252863973108, + "2024-05-17": 34.45109119296305, + "2023-08-06": 15.53177747684673, + "2023-12-02": 15.349783387278158, + "2023-10-31": 15.150511980346602, + "2023-08-29": 13.881753005879004, + "2023-06-20": 11.37994836996633, + "2023-09-09": 12.888687750836185, + "2023-06-26": 13.949298721576525, + "2023-10-01": 13.222600447702314, + "2024-03-07": 45.95516499873945, + "2023-10-12": 12.605318200595873, + "2024-04-22": 35.29338562330156, + "2023-07-05": 14.815519483801271, + "2023-07-29": 13.839691826416235, + "2024-04-26": 32.597324265620976, + "2024-01-08": 19.744964852294597, + "2023-05-29": 13.238535304026232, + "2023-10-07": 13.45513156389619, + "2023-09-26": 12.7425667366422, + "2023-08-24": 13.516005026729587, + "2023-12-05": 17.14166774313456, + "2024-02-19": 24.63106608105924, + "2024-01-07": 19.14882756388892, + "2024-04-28": 33.2855926345917, + "2023-07-31": 18.921318912795552, + "2023-10-18": 12.956479830187726, + "2024-05-19": 36.76094222954144, + "2024-05-12": 33.05215488151815, + "2024-04-29": 31.50350569002741, + "2023-08-25": 13.179567741809064, + "2024-03-09": 59.123417180259445, + "2023-07-12": 13.96938244304045, + "2023-09-05": 12.84982838213182, + "2023-06-07": 11.469581007589209, + "2023-09-16": 13.140519032282077, + "2024-04-25": 32.98454778726376, + "2023-08-12": 15.722418438223439, + "2023-06-06": 12.367836810232543, + "2023-09-01": 13.18267817485012, + "2023-09-08": 12.871784674416563, + "2024-03-22": 40.93299246559087, + "2023-08-10": 15.211600957564512, + "2023-12-07": 17.88552405282021, + "2023-11-18": 15.663820829915677, + "2023-07-13": 13.025458389469797, + "2023-09-13": 12.840028360814133, + "2023-06-17": 11.294227345189054, + "2023-07-17": 14.223704226788877, + "2023-07-07": 15.194676898150874, + "2023-09-07": 12.956644427340692, + "2024-03-26": 46.09433532559134, + "2024-05-14": 32.05308517069644, + "2024-02-22": 23.65938498396448, + "2024-04-15": 34.93586662264178, + "2023-12-30": 22.808797814573342, + "2023-09-17": 12.275197870813274, + "2024-04-17": 32.840428953192614, + "2024-02-12": 24.850163858609896, + "2023-10-26": 14.995090289263404, + "2024-01-03": 20.633520201543575, + "2024-05-07": 35.21633254998169, + "2023-06-01": 12.698433141206321, + "2024-01-22": 22.12641573221352, + "2023-06-12": 11.372809356203732, + "2023-10-03": 14.86133854410539, + "2024-05-26": 35.49560301004313, + "2024-04-30": 29.918797306050237, + "2023-06-19": 11.314235506407346, + "2023-07-09": 14.646187544101952, + "2023-12-24": 17.310381243218725, + "2023-09-24": 11.577238442173426, + "2024-01-16": 24.9458648420945, + "2023-10-17": 12.860387187882056, + "2024-04-24": 34.79669100003562, + "2024-03-18": 43.01582499762023, + "2024-02-17": 24.51338434080584, + "2023-12-27": 18.323805997593357, + "2023-07-23": 14.080953583234402, + "2023-09-03": 12.967654158555886, + "2024-02-24": 23.411935744980664, + "2024-01-06": 19.72101513781138, + "2024-03-20": 37.26555989407649, + "2023-11-21": 15.69267982433976, + "2023-12-25": 17.29156934114991, + "2023-09-22": 12.830547509063743, + "2023-10-02": 14.129927584498514, + "2024-03-27": 45.945590298105266, + "2024-05-06": 36.51595259457013, + "2023-08-30": 13.886776717414287, + "2023-10-06": 13.190623136041555, + "2023-10-13": 12.397191017951732, + "2023-06-28": 13.664772441989296, + "2024-02-05": 21.959811444094477, + "2024-03-01": 27.311706749226822, + "2023-07-15": 14.11388683817028, + "2023-06-25": 13.830058909882679, + "2023-12-10": 17.966892769544472, + "2023-11-23": 15.58246738356823, + "2023-08-04": 17.039300643647906, + "2024-05-13": 32.69314343256222, + "2024-01-13": 27.701690900057038, + "2024-03-28": 46.952574237521965, + "2023-08-05": 15.928618771001881, + "2024-02-09": 24.629207591063192, + "2023-10-09": 12.83432961178938, + "2024-01-09": 21.02268688306019, + "2024-05-10": 33.7103525337287, + "2023-05-27": 12.679972574803392, + "2023-08-18": 13.199631239128065, + "2023-11-05": 15.589511012859806, + "2024-04-18": 33.01329356611725, + "2023-10-22": 14.722898879541694, + "2023-11-01": 15.37362290887371, + "2024-05-20": 35.58912458635417, + "2023-12-08": 17.945147429736938, + "2024-04-12": 41.73844654867662, + "2023-07-06": 15.585691858251877, + "2024-03-12": 49.65864806479045, + "2023-09-11": 12.45338903089421, + "2024-03-03": 37.31998555123609, + "2024-02-04": 22.157208230674897, + "2024-01-28": 23.425549393528932, + "2023-07-01": 18.233674511661434, + "2023-11-07": 15.934474848555103, + "2023-11-25": 15.755276572657971, + "2023-06-04": 12.917599086014512, + "2024-02-25": 23.79904810534845, + "2023-12-01": 15.568074312746713, + "2023-07-14": 14.436509291377385, + "2024-01-26": 21.532280753934376, + "2023-08-03": 15.780941482619344, + "2024-02-28": 27.192341938369037, + "2023-09-15": 13.128352733867839, + "2023-07-18": 14.067572795988017, + "2023-12-21": 16.982151146924547, + "2023-07-20": 14.369417393099365, + "2024-03-06": 37.98608084921939, + "2023-09-30": 13.125981229733389, + "2023-12-12": 16.87471990652294, + "2024-02-13": 25.71292413086067, + "2023-09-20": 13.246789058966243, + "2023-09-19": 13.12491152192963, + "2023-09-29": 13.175409737868245, + "2023-09-12": 12.849276406766057, + "2023-06-13": 11.21039641798943, + "2023-10-04": 13.619258518609543, + "2023-07-08": 14.82894093212333, + "2024-04-16": 34.43456239431843, + "2024-03-02": 30.92963924730016, + "2023-06-27": 13.890237495400536, + "2023-10-08": 13.215083835531814, + "2023-11-20": 16.043874447296677, + "2023-12-20": 16.8707891213976, + "2023-12-31": 21.641403982119634, + "2023-11-06": 15.984789355202585, + "2023-08-22": 13.368565403169713, + "2023-06-09": 12.085258842942372, + "2024-03-17": 42.70003389152244, + "2023-09-18": 13.298177255062898, + "2024-04-01": 47.07294815562237, + "2024-05-21": 39.01241397196982, + "2024-01-19": 22.12456917793468, + "2023-11-11": 0.0000016277851370423672, + "2023-09-23": 12.661236210512508, + "2023-11-19": 16.00468784234054, + "2023-07-02": 16.55356856920632, + "2023-08-15": 15.020194952285896, + "2024-01-25": 20.794951894280587, + "2024-03-13": 49.613458224425365, + "2024-01-21": 23.26717134518386, + "2024-02-01": 21.97298682428849, + "2023-06-15": 10.967428009922767, + "2024-03-16": 45.88289543908197, + "2023-11-27": 15.362925840203259, + "2024-01-10": 21.393988060675163, + "2024-03-15": 44.438082649553145, + "2023-06-21": 12.589601482007815, + "2024-01-02": 22.815668065154853, + "2023-07-11": 14.379775138156472, + "2023-10-25": 15.031902282872442, + "2024-01-01": 21.620852287006464, + "2024-02-14": 25.819899706261882, + "2023-09-04": 12.914309450979879, + "2023-09-06": 12.88140800992025, + "2024-04-03": 42.221939416591006, + "2023-11-28": 15.254356738755448, + "2023-12-03": 17.29930086180634, + "2023-08-02": 17.112759616567175, + "2023-08-27": 13.563022474936655, + "2023-10-20": 14.69323621146115, + "2023-10-10": 12.907678920054998, + "2024-05-03": 32.79099612381413, + "2024-03-08": 53.897762373680564, + "2024-04-11": 43.757191089650746, + "2023-06-22": 12.72698336336181, + "2024-01-14": 27.031281042899725, + "2023-12-15": 17.066032288245776, + "2023-10-19": 13.279828248263001, + "2024-02-08": 23.24859735061845, + "2023-11-08": 16.19518891852087, + "2023-11-12": 0.000002373597927037795, + "2023-12-22": 17.763359417979924, + "2023-05-31": 12.845814831771472, + "2024-03-23": 43.035024410012554, + "2023-09-27": 13.230040677724888, + "2024-03-04": 37.29349695345009, + "2023-09-10": 12.791057964303524, + "2024-04-13": 36.96828814324501, + "2024-02-29": 27.766775212365566, + "2023-07-21": 14.186950940653768, + "2023-06-30": 15.516843118447792, + "2023-12-29": 22.684694525478346, + "2023-12-04": 17.16265869806848, + "2024-04-10": 43.721226156494936, + "2024-05-08": 33.61757249570105, + "2023-09-21": 12.56048085825655, + "2023-06-02": 12.803040566942261, + "2024-04-21": 35.05348515927361, + "2023-07-22": 14.219984467381046, + "2023-10-11": 12.645768744880543, + "2024-03-21": 41.97081270966158, + "2023-07-19": 14.342265312066989, + "2024-05-05": 36.811954252069384, + "2024-05-23": 36.800282881722474, + "2024-04-08": 46.81321160625211, + "2024-05-18": 36.44244087891865, + "2023-06-14": 11.080231589307576, + "2023-10-05": 13.35545718265495, + "2023-10-16": 13.497651234695434, + "2024-05-22": 36.89759789242543, + "2024-02-10": 24.20031257959546, + "2024-04-07": 46.31422760649401, + "2024-02-20": 24.565208242410055, + "2023-11-17": 16.04529636869557, + "2023-12-11": 16.90972735188681, + "2023-11-26": 15.636360363781664, + "2023-11-16": 16.36597703522829, + "2023-06-29": 13.290796358601272, + "2023-10-27": 14.59470184008492, + "2023-06-11": 11.624944846384814, + "2024-02-02": 22.20685725507582, + "2023-09-14": 13.018411492577613, + "2024-01-27": 23.412636972324293, + "2024-03-30": 48.51795444397863, + "2023-11-22": 15.300670779987575, + "2023-09-28": 13.049095603722167, + "2023-06-03": 12.848380006726698, + "2024-01-18": 23.529606194746723, + "2023-08-26": 13.256680700878396, + "2024-02-15": 25.864023988021543, + "2023-10-28": 0.0000018911682084510299, + "2024-03-24": 44.051802616903345, + "2024-04-27": 32.58562265564275, + "2023-12-06": 18.261453524023874, + "2024-01-30": 23.688129933788467, + "2023-11-14": 16.269201700313427, + "2023-08-09": 15.546670907908817, + "2024-05-15": 32.585637184474585, + "2023-11-10": 9.68639217772939e-7, + "2024-01-23": 20.669301335970527, + "2024-01-31": 22.80293247586205, + "2024-05-11": 33.431253222860164, + "2024-01-11": 25.822753715036733, + "2024-02-18": 24.559790135767926, + "2023-06-16": 11.01287573571458, + "2023-10-30": 14.978263719885081, + "2023-12-17": 16.673963341850026, + "2024-02-26": 24.593529131420482, + "2023-07-16": 14.297932469502511, + "2024-01-05": 19.109659640766296, + "2023-08-23": 13.466321380587834, + "2024-03-11": 50.79233686546949, + "2023-08-01": 17.552560947391893, + "2024-03-14": 48.627188291383725, + "2024-02-21": 23.836333354925312, + "2023-08-28": 13.336981691723219, + "2023-07-04": 15.175250445597975, + "2023-12-13": 16.525900622046972, + "2024-02-27": 26.082306388850654, + "2023-08-13": 15.38897494006306, + "2024-03-31": 47.499276443530405, + "2023-12-09": 18.127876537026783, + "2024-04-02": 42.65992799345764, + "2024-02-06": 22.006835972086908, + "2024-04-09": 45.66617959251594, + "2023-11-04": 0.0000016298316184052817, + "2024-04-20": 33.786742972408945, + "2024-01-15": 25.856593189621634, + "2023-07-03": 15.939274238483952, + "2023-12-28": 21.6789610249239, + "2023-05-30": 12.954800977464327, + "2024-05-25": 36.09518827569939, + "2024-02-07": 21.85843903588864, + "2023-09-25": 12.832069211673536, + "2024-03-19": 38.43046471171089, + "2024-03-10": 50.78450338606682, + "2024-05-02": 28.154555596105777, + "2023-09-02": 12.94648990829052, + "2024-01-12": 28.789433990367854, + "2024-04-19": 33.32412296727895, + "2023-11-29": 15.685620766197598, + "2023-10-15": 12.636023180250808, + "2024-05-28": 35.886809855382054, + "2023-11-30": 15.421695290389563, + "2024-01-24": 21.114397256380403, + "2023-08-11": 15.072698654157058, + "2024-02-11": 24.841271586901566, + "2023-06-08": 12.145524505191553, + "2023-11-15": 16.092760292639714, + "2023-12-16": 16.78180075595113, + "2024-03-29": 48.63979677712659, + "2024-04-04": 44.33810594424914, + "2023-06-10": 10.907495051856575, + "2023-07-28": 13.741866455570564, + "2024-01-20": 22.425068990354323, + "2023-10-21": 15.3783179641276, + "2023-08-16": 14.402290510353343, + "2024-05-24": 35.90461086951214, + "2023-11-03": 0.0000013582908105772484, + "2023-08-31": 13.509403728878924, + "2024-05-27": 35.217239146495245, + "2024-01-04": 19.4541475754953, + "2023-07-26": 13.50747064589523, + "2023-11-13": 16.655809215953564, + "2023-10-24": 15.264550467261014, + "2024-03-25": 45.880685323403675, + "2023-08-07": 15.754325140453593, + "2023-10-29": 0.0000020999065025853346, + "2024-01-29": 22.91800720634921, + "2024-05-04": 35.90170329745903, + "2023-06-05": 12.716490857827942, + "2023-11-02": 16.17525223792173, + "2023-12-18": 16.28895587716816, + "2023-11-24": 15.729705671751232, + "2023-08-21": 13.68127707330554, + "2023-07-25": 13.644544428756072, + "2024-05-16": 34.126591846619135, + "2023-08-14": 15.196147997937405, + "2024-05-01": 27.432095288574544, + "2024-03-05": 37.774710671421964, + "2024-04-06": 46.120932177307544, + "2023-12-23": 17.264365277938452, + "2024-02-03": 22.802143419187978, + "2024-02-16": 25.39581406004936, + "2023-05-28": 12.805546298126476, + "2023-12-14": 17.156729423030868, + "2023-06-24": 14.436913238297597, + "2023-12-26": 17.040993494289847, + "2023-11-09": 17.012868196709213, + "2023-08-19": 13.682001513117553, + "2024-05-09": 33.01893513483923, + "2024-01-17": 24.46686838851972, + "2023-06-23": 13.781684291295054, + "2023-06-18": 11.366639455268436, + "2024-04-23": 35.42022823991269, + "2023-08-08": 15.764759464984476, + "2023-08-17": 14.0897024463336, + "2024-04-14": 32.690348260263086, + "2023-07-24": 13.989211805088107, + "2023-10-14": 11.843019820443686, + "2024-05-22T20": 36.70537455665639, + "2024-05-25T08": 36.03094410223905, + "2024-05-22T05": 36.82804220216614, + "2024-05-28T03": 34.69503680190464, + "2024-05-22T16": 36.9261141908438, + "2024-05-25T05": 36.10272182750445, + "2024-05-24T22": 36.10145802714914, + "2024-05-27T14": 35.32922680571922, + "2024-05-22T03": 36.95402123657245, + "2024-05-23T17": 36.16053097608813, + "2024-05-24T23": 36.0335408409115, + "2024-05-26T19": 35.27732550888916, + "2024-05-26T18": 35.304488670138284, + "2024-05-26T10": 35.599206200446545, + "2024-05-27T16": 35.8180655098612, + "2024-05-24T12": 35.36729532906991, + "2024-05-26T01": 35.912460233063655, + "2024-05-21T17": 38.00320714165137, + "2024-05-23T07": 36.740959234004656, + "2024-05-22T08": 37.1024717546751, + "2024-05-23T09": 36.85400490765245, + "2024-05-24T18": 35.96635981549153, + "2024-05-23T01": 36.81053835270151, + "2024-05-25T15": 36.095765894910116, + "2024-05-23T16": 36.11914639578597, + "2024-05-25T03": 36.063084070840006, + "2024-05-28T06": 34.349306362396646, + "2024-05-25T23": 36.11589979288786, + "2024-05-24T13": 35.322793908041234, + "2024-05-26T03": 35.68184245270203, + "2024-05-26T00": 35.96489883272329, + "2024-05-25T06": 35.951884118533535, + "2024-05-27T04": 35.13694293110884, + "2024-05-22T10": 37.14350409860457, + "2024-05-27T09": 34.75788005943562, + "2024-05-24T17": 35.83513140264651, + "2024-05-26T16": 35.24641848042482, + "2024-05-22T09": 37.117327212743454, + "2024-05-24T21": 36.103307142445395, + "2024-05-25T04": 36.052698128236145, + "2024-05-27T22": 35.66753503044028, + "2024-05-27T11": 34.865913493772545, + "2024-05-23T21": 36.08355709705533, + "2024-05-23T10": 36.79757266082359, + "2024-05-23T14": 36.18682668888307, + "2024-05-27T02": 35.3398613132332, + "2024-05-25T18": 36.074203436944224, + "2024-05-27T05": 34.933925345922525, + "2024-05-22T23": 36.41615038828489, + "2024-05-28T01": 35.1581740003905, + "2024-05-22T04": 36.738395372403254, + "2024-05-22T15": 36.8035569941426, + "2024-05-24T03": 36.069560253167474, + "2024-05-24T08": 35.10356612848928, + "2024-05-21T22": 37.8767482531928, + "2024-05-21T16": 37.91388160742044, + "2024-05-21T23": 37.988987990909216, + "2024-05-24T02": 35.93391727689593, + "2024-05-26T07": 35.784206503766654, + "2024-05-27T07": 34.70203193190454, + "2024-05-25T22": 36.039607645818116, + "2024-05-24T16": 35.70440736258608, + "2024-05-27T20": 35.67828822224035, + "2024-05-22T02": 37.228755454106086, + "2024-05-24T06": 35.39381374420042, + "2024-05-24T11": 35.32508559308972, + "2024-05-25T21": 36.06535524008455, + "2024-05-27T15": 35.73701646904869, + "2024-05-21T19": 37.675120791725355, + "2024-05-22T19": 36.475997066696536, + "2024-05-21T12": 38.61645181594382, + "2024-05-23T20": 35.8247930022641, + "2024-05-23T08": 36.7019834875268, + "2024-05-22T22": 36.50447414427022, + "2024-05-26T11": 35.49973836446219, + "2024-05-24T01": 35.953380159562045, + "2024-05-23T05": 36.69522514138318, + "2024-05-28T04": 34.364482419449736, + "2024-05-25T09": 36.11447707534045, + "2024-05-27T18": 35.757818260512295, + "2024-05-24T10": 35.36040797787414, + "2024-05-25T19": 36.128151266454424, + "2024-05-24T07": 35.10014292337753, + "2024-05-26T04": 35.67064318214861, + "2024-05-26T09": 35.557611540870894, + "2024-05-23T02": 36.62504786194693, + "2024-05-27T06": 34.825381440126755, + "2024-05-24T15": 35.90380554949906, + "2024-05-25T20": 36.07374661438987, + "2024-05-27T08": 34.77825812211363, + "2024-05-23T22": 36.249407532878216, + "2024-05-26T15": 35.44391116326521, + "2024-05-24T20": 36.19837060275356, + "2024-05-21T20": 37.76057036923217, + "2024-05-25T13": 35.92675978576898, + "2024-05-22T01": 37.19749028776932, + "2024-05-25T17": 36.06253579865693, + "2024-05-27T10": 34.74438731533261, + "2024-05-21T21": 37.61806141171637, + "2024-05-24T19": 36.04679386057302, + "2024-05-26T02": 35.69005930976217, + "2024-05-27T19": 35.63444110582821, + "2024-05-25T11": 36.27841358071921, + "2024-05-27T17": 35.81516962534642, + "2024-05-21T18": 37.944533586201075, + "2024-05-26T06": 35.73745737206632, + "2024-05-23T00": 36.94092875027365, + "2024-05-22T00": 37.61051194122598, + "2024-05-24T05": 35.67309800901866, + "2024-05-23T15": 36.27973796873024, + "2024-05-22T13": 36.36114970073972, + "2024-05-21T10": 38.889479619436756, + "2024-05-22T12": 36.62345343370191, + "2024-05-23T04": 36.74872928241552, + "2024-05-26T08": 35.7310002424846, + "2024-05-26T13": 35.39849643623694, + "2024-05-28T05": 34.2645632231314, + "2024-05-22T18": 36.41527741104354, + "2024-05-22T06": 37.011713109121594, + "2024-05-21T08": 38.37842811744694, + "2024-05-22T17": 36.88060703795826, + "2024-05-23T19": 35.918022694988, + "2024-05-25T07": 35.99122835465887, + "2024-05-26T22": 35.244972534867564, + "2024-05-25T16": 36.080217594115126, + "2024-05-26T05": 35.68645692004621, + "2024-05-24T04": 35.98791099767828, + "2024-05-21T14": 38.296388394428696, + "2024-05-25T12": 36.07752681663129, + "2024-05-28T07": 35.15186681148382, + "2024-05-23T18": 35.77826146783102, + "2024-05-26T23": 35.135645810765745, + "2024-05-24T09": 35.265399036585556, + "2024-05-23T03": 36.68585569634616, + "2024-05-26T14": 35.42322630203795, + "2024-05-21T13": 38.525075963165456, + "2024-05-22T14": 36.62360848427358, + "2024-05-25T14": 35.98037441173574, + "2024-05-25T00": 36.20698076606034, + "2024-05-23T23": 35.882229006390965, + "2024-05-21T11": 38.803294046053, + "2024-05-23T13": 37.018931456074405, + "2024-05-22T11": 37.35474519456484, + "2024-05-21T15": 38.133135860005396, + "2024-05-28T00": 35.20591868113027, + "2024-05-27T23": 35.56512522826973, + "2024-05-28T02": 34.85664639412325, + "2024-05-26T21": 35.17607419687577, + "2024-05-26T12": 35.40525352094455, + "2024-05-23T06": 36.64903009914919, + "2024-05-22T07": 36.93095041891176, + "2024-05-27T12": 34.96222033479657, + "2024-05-22T21": 36.582801500361626, + "2024-05-24T00": 36.29467048258629, + "2024-05-25T02": 36.05556024869699, + "2024-05-27T00": 35.07267762203, + "2024-05-26T20": 35.251756068434766, + "2024-05-26T17": 35.334006498559184, + "2024-05-27T13": 35.05023327780785, + "2024-05-23T12": 37.933215930687034, + "2024-05-25T10": 36.1607620375201, + "2024-05-21T09": 38.59342636042916, + "2024-05-23T11": 37.059137101446915, + "2024-05-24T14": 35.628113595593575, + "2024-05-25T01": 35.986547631731334, + "2024-05-27T21": 35.63721777132204, + "2024-05-27T03": 35.235361450408625, + "2024-05-27T01": 35.3582388489988, + "latest": 33.18, + "2024-05-28T08": 34.9943070001681, + "2024-05-28T09": 34.49830988277573, + "2024-05-28T10": 34.65632121103239, + "2024-05-28T11": 34.606159251887156, + "2024-05-28T12": 34.549004426010534, + "2024-05-28T13": 34.440242751101295, + "2024-05-28T14": 35.040902446184205, + "2024-05-28T15": 34.484607347946046, + "2024-05-29": 34.456497241486524, + "2024-05-28T20": 34.52288862716351, + "2024-05-28T22": 34.62019687379208, + "2024-05-28T21": 34.52070640355576, + "2024-05-28T19": 34.40991617513487, + "2024-05-28T17": 34.43665656138591, + "2024-05-28T18": 34.32147595335606, + "2024-05-28T23": 34.58174222199835, + "2024-05-29T00": 34.92781904035996, + "2024-05-29T01": 34.66044503049079, + "2024-05-28T16": 34.42425938487123, + "2024-05-29T06": 34.70587360061671, + "2024-05-29T05": 34.79017256603612, + "2024-05-29T03": 34.7702916735961, + "2024-05-29T02": 34.669228367029255, + "2024-05-29T07": 34.53096432353844, + "2024-05-29T04": 34.76586246722873, + "2024-05-29T08": 34.291848610833895, + "2024-05-29T09": 34.31289262590469, + "2024-05-29T10": 34.30120545497866, + "2024-05-29T11": 34.05477763140088, + "2024-05-29T12": 33.963441154520645, + "2024-05-29T13": 34.525648783547155, + "2024-05-29T14": 34.043241315755516, + "2024-05-29T15": 34.033747390124255, + "2024-05-29T18": 34.019546035804865, + "2024-05-29T17": 34.117202458768176, + "2024-05-29T19": 33.99924989531194, + "2024-05-29T22": 34.06205369789908, + "2024-05-29T20": 34.00657619065808, + "2024-05-29T16": 33.98445457642245, + "2024-05-29T21": 34.02550999670485, + "2024-05-30": 33.47201209643393, + "2024-05-30T00": 33.959899040574676, + "2024-05-30T05": 33.95623596250077, + "2024-05-29T23": 34.03175503039834, + "2024-05-30T02": 34.06795877396993, + "2024-05-30T01": 33.72062864093329, + "2024-05-30T06": 33.653107279942596, + "2024-05-30T07": 33.37046950073611, + "2024-05-30T03": 34.0255674589032, + "2024-05-30T04": 34.017470679183084, + "2024-05-30T08": 33.32093622391156, + "2024-05-30T09": 33.3208330211922, + "2024-05-30T10": 32.97126014531734, + "2024-05-30T11": 33.048775155220675, + "2024-05-30T12": 33.41380479717469, + "2024-05-30T13": 33.27516607299255, + "2024-05-30T14": 33.4858708173343, + "2024-05-30T15": 33.477752194167294, + "2024-05-30T21": 33.503880647129996, + "2024-05-30T20": 33.59286930594557, + "2024-05-30T18": 33.92598606106869, + "2024-05-30T16": 33.40966646382239, + "2024-05-30T17": 33.663715393604164, + "2024-05-30T19": 33.83736886932446, + "2024-05-31": 33.16066748686196, + "2024-05-30T22": 33.389683631736034, + "2024-05-30T23": 33.38904454168115, + "2024-05-31T03": 33.31044639910655, + "2024-05-31T07": 33.00863104420022, + "2024-05-31T06": 33.0565620498615, + "2024-05-31T04": 33.35518327662964, + "2024-05-31T02": 33.40526149261307, + "2024-05-31T05": 33.05460156380368, + "2024-05-31T00": 33.655797201117316, + "2024-05-31T01": 33.36719743749842, + "2024-05-31T08": 32.944599984466024, + "2024-05-31T09": 32.814168996871516, + "2024-05-31T10": 32.860987838978346, + "2024-05-31T11": 32.94257853556721, + "2024-05-31T12": 33.188763457795346, + "2024-05-31T13": 33.24164537617221, + "2024-05-31T14": 32.96368884134262, + "2024-06-01": 33.38644682462831, + "2024-06-01T08": 32.881846713700746, + "2024-06-01T02": 32.96365151737934, + "2024-06-01T05": 32.97928817336309, + "2024-05-31T21": 32.93577788574293, + "2024-06-01T00": 33.20952736020777, + "2024-05-31T18": 32.91747271011598, + "2024-05-31T15": 32.98488632376368, + "2024-05-31T23": 32.878690448343626, + "2024-05-31T22": 33.02497335902098, + "2024-06-01T01": 32.88998714543635, + "2024-06-01T07": 32.918518640745916, + "2024-06-01T04": 32.98421005005716, + "2024-05-31T19": 32.909153585435554, + "2024-06-01T06": 32.972533624732705, + "2024-05-31T20": 32.937794526447966, + "2024-05-31T17": 32.90072059585288, + "2024-05-31T16": 32.751619396539986, + "2024-06-01T03": 32.95425869707637, + "2024-06-01T09": 32.931122044668896, + "2024-06-01T10": 32.94799933383827, + "2024-06-02": 33.828310072054954, + "2024-06-01T13": 33.07386451164007, + "2024-06-01T15": 33.09430831039963, + "2024-06-01T18": 33.014644053004254, + "2024-06-01T12": 33.000490474585824, + "2024-06-01T21": 33.065745223401734, + "2024-06-01T20": 33.014055723404006, + "2024-06-02T01": 33.20271629761002, + "2024-06-01T17": 33.021494906018646, + "2024-06-01T11": 32.93748812298381, + "2024-06-02T00": 33.40023067572722, + "2024-06-01T23": 33.18204619841853, + "2024-06-01T14": 33.100097762434395, + "2024-06-01T22": 33.21484287629776, + "2024-06-01T19": 33.005554726894786, + "2024-06-01T16": 33.027466692698084, + "2024-06-02T13": 33.00946403295062, + "2024-06-02T11": 32.99259374024355, + "2024-06-02T07": 32.94408717477414, + "2024-06-02T05": 33.045251351287085, + "2024-06-02T08": 32.91164886884442, + "2024-06-02T04": 33.0623951514686, + "2024-06-02T10": 32.76296555287745, + "2024-06-02T12": 33.03917085276875, + "2024-06-02T02": 33.12623327405882, + "2024-06-02T16": 33.173461915192426, + "2024-06-02T17": 33.05814653458097, + "2024-06-02T03": 33.06862974280667, + "2024-06-02T09": 32.82840056707924, + "2024-06-02T15": 33.20812746641097, + "2024-06-02T06": 33.02359442073702, + "2024-06-02T14": 33.102551524893194, + "2024-06-03": 33.405672251170884, + "2024-06-03T01": 33.020310747795314, + "2024-06-02T20": 32.93945581419839, + "2024-06-03T00": 32.666143860328916, + "2024-06-02T21": 32.96153383469227, + "2024-06-02T18": 32.99589476263521, + "2024-06-02T23": 32.99075305492345, + "2024-06-02T19": 32.98837040062069, + "2024-06-02T22": 33.01127438783699, + "2024-06-03T02": 33.07449573334727, + "2024-06-03T05": 32.88969167582721, + "2024-06-03T06": 33.028444700913944, + "2024-06-03T04": 32.70224312369956, + "2024-06-03T03": 32.89963595908618, + "2024-06-03T07": 33.108323835709236 + }, + "USD bittorrent": { + "2023-07-30": 4.771721830302854e-7, + "2023-10-23": 3.8363420190395377e-7, + "2023-07-27": 4.7465744816417997e-7, + "2023-07-10": 4.7325272280122245e-7, + "2023-08-20": 4.2550803588224937e-7, + "2024-02-23": 0.0000010936466317511597, + "2024-04-05": 0.0000014387282881916552, + "2023-12-19": 0.0000011931375686076913, + "2024-05-17": 0.0000011822567202974426, + "2023-08-06": 4.6571233116159784e-7, + "2023-12-02": 4.71716761031025e-7, + "2023-10-31": 5.167582162844566e-7, + "2023-08-29": 4.059269783334039e-7, + "2023-06-20": 4.7167808600616544e-7, + "2023-09-09": 4.0218524479701865e-7, + "2023-06-26": 4.826333602659322e-7, + "2023-10-01": 3.871338363524463e-7, + "2024-03-07": 0.0000017715867106777208, + "2023-10-12": 3.720917906448753e-7, + "2024-04-22": 0.0000013129808250324936, + "2023-07-05": 4.840873586943602e-7, + "2023-07-29": 4.7472883311515965e-7, + "2024-04-26": 0.000001269549701298341, + "2024-01-08": 0.0000010284304716276244, + "2023-05-29": 6.079420598241447e-7, + "2023-10-07": 3.836910006730808e-7, + "2023-09-26": 3.8320841978020934e-7, + "2023-08-24": 4.249957995492075e-7, + "2023-12-05": 4.927454930628593e-7, + "2024-02-19": 0.0000011376828479387608, + "2024-01-07": 0.0000010743826672622174, + "2024-04-28": 0.0000013224660022446116, + "2023-07-31": 4.6888594313913836e-7, + "2023-10-18": 3.7272172133840127e-7, + "2024-05-19": 0.0000012100322833927893, + "2024-05-12": 0.0000011749621323836401, + "2024-04-29": 0.0000013034610599851908, + "2023-08-25": 4.142810079449792e-7, + "2024-03-09": 0.0000017593720602051812, + "2023-07-12": 4.770625812191518e-7, + "2023-09-05": 4.07921408206148e-7, + "2023-06-07": 5.384567887088684e-7, + "2023-09-16": 3.894736689810331e-7, + "2024-04-25": 0.0000012731882966076274, + "2023-08-12": 4.6270979830546946e-7, + "2023-06-06": 5.53460097497846e-7, + "2023-09-01": 4.037317587232771e-7, + "2023-09-08": 4.0478090988718354e-7, + "2024-03-22": 0.0000013749944877696861, + "2023-08-10": 4.652092347120486e-7, + "2023-12-07": 8.978293745647255e-7, + "2023-11-18": 4.852921803086845e-7, + "2023-07-13": 4.6581179169288433e-7, + "2023-09-13": 3.868583296159396e-7, + "2023-06-17": 5.076466099471154e-7, + "2023-07-17": 4.7286683762790985e-7, + "2023-07-07": 4.72496707248719e-7, + "2023-09-07": 4.0490949724669964e-7, + "2024-03-26": 0.0000015628708460285402, + "2024-05-14": 0.0000011815665324581614, + "2024-02-22": 0.0000010703469328131577, + "2024-04-15": 0.0000013348666502347603, + "2023-12-30": 0.0000011994780883252382, + "2023-09-17": 3.921684437314451e-7, + "2024-04-17": 0.000001272279357462402, + "2024-02-12": 0.0000010086039675995596, + "2023-10-26": 4.0195275178218754e-7, + "2024-01-03": 0.0000012155183511583323, + "2024-05-07": 0.0000012284533868062084, + "2023-06-01": 5.962606802272923e-7, + "2024-01-22": 9.394034317487319e-7, + "2023-06-12": 5.41950299157907e-7, + "2023-10-03": 3.8630647387584735e-7, + "2024-05-26": 0.0000012060964162051864, + "2024-04-30": 0.0000012750367544354173, + "2023-06-19": 4.821468159700121e-7, + "2023-07-09": 4.764951346975832e-7, + "2023-12-24": 0.000001123185554567391, + "2023-09-24": 3.818450919143325e-7, + "2024-01-16": 0.0000010365606748815053, + "2023-10-17": 3.859044078953304e-7, + "2024-04-24": 0.0000013154927752068074, + "2024-03-18": 0.0000014516058179046037, + "2024-02-17": 0.000001045701977512876, + "2023-12-27": 0.0000011556210920655604, + "2023-07-23": 4.745091373529752e-7, + "2023-09-03": 4.056116590991519e-7, + "2024-02-24": 0.0000010774477588876106, + "2024-01-06": 0.000001082497737943193, + "2024-03-20": 0.000001257143780830757, + "2023-11-21": 4.840818450866586e-7, + "2023-12-25": 0.0000011952260430026312, + "2023-09-22": 3.827437528788999e-7, + "2023-10-02": 3.925280218726764e-7, + "2024-03-27": 0.000001562778526837057, + "2024-05-06": 0.00000125470926267814, + "2023-08-30": 4.153327967629897e-7, + "2023-10-06": 3.816408791416991e-7, + "2023-10-13": 3.7045782512814713e-7, + "2023-06-28": 4.769238811233064e-7, + "2024-02-05": 7.997197207062527e-7, + "2024-03-01": 0.0000012295664914732182, + "2023-07-15": 4.7446960338471826e-7, + "2023-06-25": 4.7565016926058363e-7, + "2023-12-10": 0.0000010051310150672808, + "2023-11-23": 4.599013886428548e-7, + "2023-08-04": 4.6434583607276244e-7, + "2024-05-13": 0.0000011721266917999395, + "2024-01-13": 0.0000010632417542348423, + "2024-03-28": 0.000001518816538347905, + "2023-08-05": 4.641040801786703e-7, + "2024-02-09": 0.0000010183077340515618, + "2023-10-09": 3.778901258884508e-7, + "2024-01-09": 0.0000010651567127913523, + "2024-05-10": 0.0000012097036944083723, + "2023-05-27": 5.87475180168796e-7, + "2023-08-18": 4.2561953823734465e-7, + "2023-11-05": 4.5874398042437613e-7, + "2024-04-18": 0.0000012518020530565604, + "2023-10-22": 3.784855116694847e-7, + "2023-11-01": 4.6748419073661083e-7, + "2024-05-20": 0.0000011761402936211017, + "2023-12-08": 7.642312490254842e-7, + "2024-04-12": 0.0000015351459403093056, + "2023-07-06": 4.822203385218813e-7, + "2024-03-12": 0.0000017760884805788773, + "2023-09-11": 3.9534063528922874e-7, + "2024-03-03": 0.0000015118828463762447, + "2024-02-04": 8.06939216116327e-7, + "2024-01-28": 8.876999183065282e-7, + "2023-07-01": 4.7330013071609704e-7, + "2023-11-07": 4.714624003201305e-7, + "2023-11-25": 4.6328423723490846e-7, + "2023-06-04": 5.945675841124257e-7, + "2024-02-25": 0.0000010836238384176094, + "2023-12-01": 4.600970948819975e-7, + "2023-07-14": 4.831127165928123e-7, + "2024-01-26": 7.994575398151398e-7, + "2023-08-03": 4.627932106998286e-7, + "2024-02-28": 0.0000011219613976849543, + "2023-09-15": 3.8914556573502615e-7, + "2023-07-18": 4.828077758249693e-7, + "2023-12-21": 0.0000011582881888971105, + "2023-07-20": 4.776799258632658e-7, + "2024-03-06": 0.00000169015415349458, + "2023-09-30": 3.873839720207929e-7, + "2023-12-12": 0.0000013968006461344825, + "2024-02-13": 0.0000010065841768923084, + "2023-09-20": 3.96461719828373e-7, + "2023-09-19": 3.946437817398631e-7, + "2023-09-29": 3.833263203197828e-7, + "2023-09-12": 3.852744961867638e-7, + "2023-06-13": 5.348263195322337e-7, + "2023-10-04": 3.859725571797294e-7, + "2023-07-08": 4.745704688963942e-7, + "2024-04-16": 0.0000012854193432980008, + "2024-03-02": 0.0000013334685335298743, + "2023-06-27": 4.775629867096098e-7, + "2023-10-08": 3.8194190202981906e-7, + "2023-11-20": 4.854642964445638e-7, + "2023-12-20": 0.0000011301410433412087, + "2023-12-31": 0.0000011935031842124354, + "2023-11-06": 4.576942399733983e-7, + "2023-08-22": 4.151074625563882e-7, + "2023-06-09": 5.367334428795563e-7, + "2024-03-17": 0.0000013704660276287224, + "2023-09-18": 3.924314263853584e-7, + "2024-04-01": 0.000001623416076961617, + "2024-05-21": 0.0000012517990949350171, + "2024-01-19": 9.654677778328936e-7, + "2023-11-11": 4.7597824540654235e-7, + "2023-09-23": 3.8497306397411746e-7, + "2023-11-19": 4.918390471475479e-7, + "2023-07-02": 4.7508902316803943e-7, + "2023-08-15": 4.6262615035453556e-7, + "2024-01-25": 8.043167797091915e-7, + "2024-03-13": 0.0000017168002711182717, + "2024-01-21": 9.445257726964728e-7, + "2024-02-01": 8.11196561081456e-7, + "2023-06-15": 5.275398307871332e-7, + "2024-03-16": 0.0000015587989509827355, + "2023-11-27": 4.622996501549501e-7, + "2024-01-10": 0.0000010238046309604228, + "2024-03-15": 0.0000016660503061387747, + "2023-06-21": 4.6670087687982876e-7, + "2024-01-02": 0.0000011854771487562626, + "2023-07-11": 4.745056089539141e-7, + "2023-10-25": 4.038889866789582e-7, + "2024-01-01": 0.000001174325452683167, + "2024-02-14": 9.779591512609312e-7, + "2023-09-04": 4.246170279347033e-7, + "2023-09-06": 4.076819285975121e-7, + "2024-04-03": 0.000001397052997039862, + "2023-11-28": 4.548057748944546e-7, + "2023-12-03": 4.780158847161825e-7, + "2023-08-02": 4.6996900946809367e-7, + "2023-08-27": 4.1323897939037707e-7, + "2023-10-20": 3.7363962602264767e-7, + "2023-10-10": 3.7183644255088454e-7, + "2024-05-03": 0.0000012034935129722561, + "2024-03-08": 0.000001705901633707652, + "2024-04-11": 0.0000014937800447399254, + "2023-06-22": 4.83947041244012e-7, + "2024-01-14": 0.0000010795435644533012, + "2023-12-15": 0.000001257147467522472, + "2023-10-19": 3.7483357466671093e-7, + "2024-02-08": 7.848602895895943e-7, + "2023-11-08": 4.6382514769844745e-7, + "2023-11-12": 4.791573004962565e-7, + "2023-12-22": 0.0000011449776589894168, + "2023-05-31": 6.059148380571943e-7, + "2024-03-23": 0.0000013241574681987, + "2023-09-27": 3.826320757359073e-7, + "2024-03-04": 0.000001439292852200679, + "2023-09-10": 4.0107191097263467e-7, + "2024-04-13": 0.000001434406567424512, + "2024-02-29": 0.0000011250211380259953, + "2023-07-21": 4.772865638713021e-7, + "2023-06-30": 4.6611919970659335e-7, + "2023-12-29": 0.0000012265162668494065, + "2023-12-04": 4.923005775100361e-7, + "2024-04-10": 0.000001492120488026037, + "2024-05-08": 0.0000012139894887565693, + "2023-09-21": 3.8841794009026314e-7, + "2023-06-02": 5.848668418679909e-7, + "2024-04-21": 0.0000013165188938864588, + "2023-07-22": 4.7678828082150833e-7, + "2023-10-11": 3.721593245179089e-7, + "2024-03-21": 0.0000014144750918098634, + "2023-07-19": 4.773011354824653e-7, + "2024-05-05": 0.0000012762026551966632, + "2024-05-23": 0.0000012365034301498809, + "2024-04-08": 0.000001490421515134928, + "2024-05-18": 0.0000012132205772063962, + "2023-06-14": 5.355301756214267e-7, + "2023-10-05": 3.846170380797832e-7, + "2023-10-16": 3.7036389545734346e-7, + "2024-05-22": 0.0000012481701804101177, + "2024-02-10": 0.0000010581920147006099, + "2024-04-07": 0.0000014871383509103896, + "2024-02-20": 0.0000011346788408343332, + "2023-11-17": 4.814845122558658e-7, + "2023-12-11": 0.0000013203429015437557, + "2023-11-26": 4.642952760434167e-7, + "2023-11-16": 4.864749932248987e-7, + "2023-06-29": 4.647198913376558e-7, + "2023-10-27": 4.0082497340766123e-7, + "2023-06-11": 5.478953484797576e-7, + "2024-02-02": 8.059890166247542e-7, + "2023-09-14": 3.884234677569625e-7, + "2024-01-27": 8.506810969690303e-7, + "2024-03-30": 0.0000016241189119576638, + "2023-11-22": 4.581707201554784e-7, + "2023-09-28": 3.790264639821068e-7, + "2023-06-03": 5.930872292343814e-7, + "2024-01-18": 0.0000010360057163931265, + "2023-08-26": 4.0698821223312416e-7, + "2024-02-15": 9.93246091418725e-7, + "2023-10-28": 3.9812967725498553e-7, + "2024-03-24": 0.0000014839437796774586, + "2024-04-27": 0.000001334243691009324, + "2023-12-06": 4.991917515365858e-7, + "2024-01-30": 8.785204116701856e-7, + "2023-11-14": 4.934490199055969e-7, + "2023-08-09": 4.647907292832819e-7, + "2024-05-15": 0.000001151771385294911, + "2023-11-10": 4.6974098123551956e-7, + "2024-01-23": 8.663333985817312e-7, + "2024-01-31": 8.529970604710252e-7, + "2024-05-11": 0.000001174840595636793, + "2024-01-11": 0.0000011023354067848736, + "2024-02-18": 0.0000010252090193277822, + "2023-06-16": 5.276267557993797e-7, + "2023-10-30": 4.3327356540076694e-7, + "2023-12-17": 0.0000012407951587601312, + "2024-02-26": 0.000001080785827178892, + "2023-07-16": 4.748939495133691e-7, + "2024-01-05": 0.0000011330823576244842, + "2023-08-23": 4.1187501764719234e-7, + "2024-03-11": 0.0000017360274925383479, + "2023-08-01": 4.6370023950971867e-7, + "2024-03-14": 0.0000017236965916485243, + "2024-02-21": 0.000001103528711881155, + "2023-08-28": 4.144657365168055e-7, + "2023-07-04": 4.832072050835659e-7, + "2023-12-13": 0.0000013623749800914302, + "2024-02-27": 0.0000011026045370997228, + "2023-08-13": 4.62333001943415e-7, + "2024-03-31": 0.0000015880000960511157, + "2023-12-09": 0.0000010504880701200234, + "2024-04-02": 0.0000015161315408327277, + "2024-02-06": 7.954726136721586e-7, + "2024-04-09": 0.0000015691625635053515, + "2023-11-04": 4.486811808554048e-7, + "2024-04-20": 0.000001255344777417233, + "2024-01-15": 0.0000010467592087595464, + "2023-07-03": 4.7608636670031527e-7, + "2023-12-28": 0.0000011642792609547888, + "2023-05-30": 6.057737947243443e-7, + "2024-05-25": 0.000001200672500956445, + "2024-02-07": 7.831891728968238e-7, + "2023-09-25": 3.822975185994074e-7, + "2024-03-19": 0.0000013372090379154348, + "2024-03-10": 0.0000018291166891992485, + "2024-05-02": 0.000001179164340208054, + "2023-09-02": 4.0421619575303317e-7, + "2024-01-12": 0.00000110802645058842, + "2024-04-19": 0.000001283065550539419, + "2023-11-29": 4.583676991936477e-7, + "2023-10-15": 3.6803618559870595e-7, + "2024-05-28": 0.000001205233532195677, + "2023-11-30": 4.541761497322306e-7, + "2024-01-24": 8.24873297580688e-7, + "2023-08-11": 4.6403545867806206e-7, + "2024-02-11": 0.0000010219928924038428, + "2023-06-08": 5.280850519452168e-7, + "2023-11-15": 4.771840624563446e-7, + "2023-12-16": 0.0000011569365448133129, + "2024-03-29": 0.0000015780358337074187, + "2024-04-04": 0.000001400193955208154, + "2023-06-10": 5.357408682770019e-7, + "2023-07-28": 4.7353342772326483e-7, + "2024-01-20": 9.84152915140723e-7, + "2023-10-21": 3.780492422260094e-7, + "2023-08-16": 4.470477255560843e-7, + "2024-05-24": 0.0000012017735147640338, + "2023-11-03": 4.58005577556155e-7, + "2023-08-31": 4.1142226176862534e-7, + "2024-05-27": 0.000001191442747832889, + "2024-01-04": 0.0000011087958389709753, + "2023-07-26": 4.7302339317400466e-7, + "2023-11-13": 4.827150679212868e-7, + "2023-10-24": 3.9567035473087467e-7, + "2024-03-25": 0.000001549472905044716, + "2023-08-07": 4.6464692940510854e-7, + "2023-10-29": 4.0409472793397607e-7, + "2024-01-29": 8.664334532810393e-7, + "2024-05-04": 0.0000012499047754793098, + "2023-06-05": 5.945093815826693e-7, + "2023-11-02": 4.651570415927682e-7, + "2023-12-18": 0.0000011892087383164044, + "2023-11-24": 4.6324934842405173e-7, + "2023-08-21": 4.2866045224894767e-7, + "2023-07-25": 4.7200836589878576e-7, + "2024-05-16": 0.0000012104472731118991, + "2023-08-14": 4.6276712045568487e-7, + "2024-05-01": 0.0000012205113704395607, + "2024-03-05": 0.0000018438302671537714, + "2024-04-06": 0.000001428583684934489, + "2023-12-23": 0.0000011548264959074362, + "2024-02-03": 8.050444328087737e-7, + "2024-02-16": 0.0000010666568438922028, + "2023-05-28": 5.885739232577478e-7, + "2023-12-14": 0.0000013331879295648288, + "2023-06-24": 4.761683062784106e-7, + "2023-12-26": 0.000001225784319748645, + "2023-11-09": 4.730125710933989e-7, + "2023-08-19": 4.2435236093269174e-7, + "2024-05-09": 0.0000011915903402710396, + "2024-01-17": 0.000001046765192675461, + "2023-06-23": 4.717838552359644e-7, + "2023-06-18": 5.031816228513712e-7, + "2024-04-23": 0.0000013383471755870856, + "2023-08-08": 4.5713261085250013e-7, + "2023-08-17": 4.4233873395147225e-7, + "2024-04-14": 0.0000012832281138594778, + "2023-07-24": 4.766243932273267e-7, + "2023-10-14": 3.7511557683188935e-7, + "2024-05-22T20": 0.0000012451398457585048, + "2024-05-25T08": 0.0000012047983915355322, + "2024-05-22T05": 0.0000012485667036730543, + "2024-05-28T03": 0.0000012019673177979495, + "2024-05-22T16": 0.0000012447746772552537, + "2024-05-25T05": 0.0000012022824656930205, + "2024-05-24T22": 0.0000012059929283974934, + "2024-05-27T14": 0.0000011953260242668467, + "2024-05-22T03": 0.0000012558900733090974, + "2024-05-23T17": 0.0000012055077782200145, + "2024-05-24T23": 0.0000012024405735376785, + "2024-05-26T19": 0.000001183979720895507, + "2024-05-26T18": 0.0000011821904175015629, + "2024-05-26T10": 0.0000011925075329111254, + "2024-05-27T16": 0.0000012078966256299556, + "2024-05-24T12": 0.0000011845280716018742, + "2024-05-26T01": 0.0000012070953548942162, + "2024-05-21T17": 0.0000012514059782127504, + "2024-05-23T07": 0.000001242741295166889, + "2024-05-22T08": 0.0000012463163175907045, + "2024-05-23T09": 0.0000012356231014093836, + "2024-05-24T18": 0.0000011953477186525678, + "2024-05-23T01": 0.0000012366501702781, + "2024-05-25T15": 0.0000012025689133130713, + "2024-05-23T16": 0.000001205846798183441, + "2024-05-25T03": 0.0000012020629575193605, + "2024-05-28T06": 0.0000011866096816113497, + "2024-05-25T23": 0.0000012058773922743448, + "2024-05-24T13": 0.0000011869516064271363, + "2024-05-26T03": 0.0000011996985453871595, + "2024-05-26T00": 0.0000012060964162051864, + "2024-05-25T06": 0.0000012040225700654593, + "2024-05-27T04": 0.0000011864356166254288, + "2024-05-22T10": 0.0000012457147905380636, + "2024-05-27T09": 0.0000011829330170211984, + "2024-05-24T17": 0.0000011894142707914573, + "2024-05-26T16": 0.0000011924097538396508, + "2024-05-22T09": 0.000001247278320327515, + "2024-05-24T21": 0.0000012004506442615783, + "2024-05-25T04": 0.0000011997725121123904, + "2024-05-27T22": 0.000001212566941268824, + "2024-05-27T11": 0.0000011864963396378094, + "2024-05-23T21": 0.0000011959631573501106, + "2024-05-23T10": 0.0000012352457617810473, + "2024-05-23T14": 0.0000012131739077333073, + "2024-05-27T02": 0.0000011867196638323063, + "2024-05-25T18": 0.0000012035546587110758, + "2024-05-27T05": 0.0000011876250174035558, + "2024-05-22T23": 0.0000012381754495198297, + "2024-05-28T01": 0.0000012052147453345466, + "2024-05-22T04": 0.0000012540514107174413, + "2024-05-22T15": 0.0000012408078816170628, + "2024-05-24T03": 0.0000012036377233485305, + "2024-05-24T08": 0.0000011850718966619027, + "2024-05-21T22": 0.0000012465500019903703, + "2024-05-21T16": 0.0000012467769955769609, + "2024-05-21T23": 0.0000012513626888859356, + "2024-05-24T02": 0.0000012047661489301774, + "2024-05-26T07": 0.0000012022567916621083, + "2024-05-27T07": 0.000001180795794496662, + "2024-05-25T22": 0.0000012067381943638988, + "2024-05-24T16": 0.0000011931480713966622, + "2024-05-27T20": 0.0000012051157736739605, + "2024-05-22T02": 0.0000012558205014440082, + "2024-05-24T06": 0.000001189910950459152, + "2024-05-24T11": 0.0000011777766050276763, + "2024-05-25T21": 0.0000012070226468709566, + "2024-05-27T15": 0.0000012025397662885485, + "2024-05-21T19": 0.000001246833185388132, + "2024-05-22T19": 0.000001243675780457644, + "2024-05-21T12": 0.000001259350914932936, + "2024-05-23T20": 0.0000011947803747856927, + "2024-05-23T08": 0.00000124284154057759, + "2024-05-22T22": 0.0000012406097470160747, + "2024-05-26T11": 0.0000011934514657663244, + "2024-05-24T01": 0.0000012087533281015748, + "2024-05-23T05": 0.0000012369667962968027, + "2024-05-28T04": 0.000001196041306474576, + "2024-05-25T09": 0.000001204974860635159, + "2024-05-27T18": 0.000001216594858831942, + "2024-05-24T10": 0.000001179559806502993, + "2024-05-25T19": 0.0000012055824979189965, + "2024-05-24T07": 0.000001177799396102595, + "2024-05-26T04": 0.000001203620421308206, + "2024-05-26T09": 0.000001196403811249264, + "2024-05-23T02": 0.0000012375833956987823, + "2024-05-27T06": 0.0000011818813983115069, + "2024-05-28T08": 0.000001184772693376574, + "2024-05-24T15": 0.0000011908093309679967, + "2024-05-25T20": 0.0000012074070062362384, + "2024-05-27T08": 0.0000011812679160623839, + "2024-05-23T22": 0.0000011961406869316592, + "2024-05-26T15": 0.0000011943917838377754, + "2024-05-24T20": 0.0000012014769197153052, + "2024-05-21T20": 0.000001238287861686166, + "2024-05-25T13": 0.0000012044973779423328, + "2024-05-22T01": 0.000001262856473915459, + "2024-05-25T17": 0.0000012044981608686236, + "2024-05-27T10": 0.0000011847457069971956, + "2024-05-21T21": 0.0000012409169697328486, + "2024-05-24T19": 0.0000011981664367755053, + "2024-05-26T02": 0.0000012074002069265278, + "2024-05-27T19": 0.0000012155277823844168, + "2024-05-25T11": 0.000001212568156881551, + "2024-05-27T17": 0.000001215538464973683, + "2024-05-21T18": 0.0000012484960446330009, + "2024-05-26T06": 0.0000012001944136558361, + "2024-05-23T00": 0.0000012365034301498809, + "2024-05-22T00": 0.0000012481701804101177, + "2024-05-24T05": 0.0000012042547901965002, + "2024-05-23T15": 0.0000012019909257403103, + "2024-05-22T13": 0.0000012377478190461156, + "2024-05-21T10": 0.0000012554444434987542, + "2024-05-22T12": 0.0000012495609848392538, + "2024-05-23T04": 0.0000012397880046695155, + "2024-05-26T08": 0.0000011974668604552006, + "2024-05-26T13": 0.0000011956096818771084, + "2024-05-28T05": 0.0000011865129859687677, + "2024-05-22T18": 0.000001246044447436801, + "2024-05-22T06": 0.0000012482564963052399, + "2024-05-21T08": 0.000001251779329043995, + "2024-05-22T17": 0.0000012436613105756657, + "2024-05-23T19": 0.0000012037432191556033, + "2024-05-25T07": 0.0000012039286115085482, + "2024-05-26T22": 0.0000011834197576042413, + "2024-05-25T16": 0.0000012049554676017536, + "2024-05-26T05": 0.0000012022375427700793, + "2024-05-24T04": 0.000001206634962554141, + "2024-05-21T14": 0.0000012483494521902372, + "2024-05-25T12": 0.0000012040688453316697, + "2024-05-28T07": 0.0000011867757437501877, + "2024-05-23T18": 0.0000012016868590388203, + "2024-05-26T23": 0.0000011881661443608944, + "2024-05-24T09": 0.0000011768255051416739, + "2024-05-23T03": 0.000001238020248998791, + "2024-05-26T14": 0.0000011926219646147088, + "2024-05-21T13": 0.0000012556629531769245, + "2024-05-22T14": 0.0000012364593624077849, + "2024-05-25T14": 0.0000012037063042818572, + "2024-05-25T00": 0.000001200672500956445, + "2024-05-23T23": 0.0000011952264926555933, + "2024-05-21T11": 0.0000012566471247032222, + "2024-05-23T13": 0.0000012281213984649705, + "2024-05-22T11": 0.000001253823956694899, + "2024-05-21T15": 0.0000012541227991559453, + "2024-05-28T00": 0.000001205233532195677, + "2024-05-27T23": 0.0000012136085461175478, + "2024-05-28T02": 0.0000011992535232397505, + "2024-05-26T21": 0.0000011862918544645542, + "2024-05-26T12": 0.000001195200457621032, + "2024-05-23T06": 0.0000012417825423460967, + "2024-05-22T07": 0.0000012467409099559304, + "2024-05-27T12": 0.0000011868000649424415, + "2024-05-22T21": 0.0000012395999711317174, + "2024-05-24T00": 0.0000012017735147640338, + "2024-05-25T02": 0.0000012047552023199504, + "2024-05-27T00": 0.000001191442747832889, + "2024-05-26T20": 0.0000011903922296048477, + "2024-05-26T17": 0.0000011841253533874686, + "2024-05-27T13": 0.0000011863719821687938, + "2024-05-23T12": 0.0000012371969599457208, + "2024-05-25T10": 0.0000012076330356218327, + "2024-05-21T09": 0.0000012547062601548917, + "2024-05-23T11": 0.0000012405722138719788, + "2024-05-24T14": 0.0000011864762095301221, + "2024-05-25T01": 0.000001204168053265226, + "2024-05-27T21": 0.0000012090241742118535, + "2024-05-27T03": 0.0000011890661044929398, + "2024-05-27T01": 0.000001185745452878588, + "latest": 0.00000115, + "2024-05-28T09": 0.0000011820643377196765, + "2024-05-28T10": 0.0000011908647308238576, + "2024-05-28T11": 0.0000011926345358479207, + "2024-05-28T12": 0.0000011947157460332582, + "2024-05-28T13": 0.0000011925904414067374, + "2024-05-28T14": 0.0000011794807919599685, + "2024-05-28T15": 0.0000011820903819618421, + "2024-05-29": 0.0000011919413468317176, + "2024-05-28T20": 0.000001187448565474643, + "2024-05-28T22": 0.0000011869864504287842, + "2024-05-28T21": 0.0000011864987102830996, + "2024-05-28T19": 0.0000011856327516444, + "2024-05-29T02": 0.0000012111518932510631, + "2024-05-28T17": 0.0000011822203302053296, + "2024-05-28T18": 0.000001182290704197841, + "2024-05-28T23": 0.0000011915552582041566, + "2024-05-29T00": 0.000001192311812142209, + "2024-05-29T01": 0.0000011928912494346058, + "2024-05-28T16": 0.0000011840946453927147, + "2024-05-29T06": 0.000001216528468576472, + "2024-05-29T05": 0.0000012226467521293217, + "2024-05-29T03": 0.0000012180999060345243, + "2024-05-29T07": 0.0000012170503865245203, + "2024-05-29T04": 0.0000012262537286153854, + "2024-05-29T08": 0.000001215242127016872, + "2024-05-29T09": 0.000001209034936736213, + "2024-05-29T10": 0.0000012058135571853781, + "2024-05-29T11": 0.0000012087938983140865, + "2024-05-29T12": 0.0000012045936287564462, + "2024-05-29T13": 0.0000012088441249840625, + "2024-05-29T14": 0.000001207736866069466, + "2024-05-29T15": 0.0000012096922937892311, + "2024-05-29T18": 0.0000012035699889228513, + "2024-05-29T17": 0.000001195457179128517, + "2024-05-29T23": 0.0000011969766512810136, + "2024-05-29T19": 0.0000011965396047470494, + "2024-05-29T22": 0.000001196229365125883, + "2024-05-29T20": 0.0000012005341871450968, + "2024-05-29T16": 0.000001208213475678222, + "2024-05-29T21": 0.000001202114837099033, + "2024-05-30": 0.0000011981158232810033, + "2024-05-30T00": 0.000001196464885706783, + "2024-05-30T05": 0.0000012016468929194294, + "2024-05-30T02": 0.0000011981296846579666, + "2024-05-30T01": 0.0000011968312772613107, + "2024-05-30T06": 0.0000011953780137172014, + "2024-05-30T07": 0.0000011860911178219068, + "2024-05-30T03": 0.0000012016206341605534, + "2024-05-30T04": 0.0000012021932331175138, + "2024-05-30T08": 0.000001171918828232383, + "2024-05-30T09": 0.0000011688311643399307, + "2024-05-30T10": 0.0000011652191131379212, + "2024-05-30T11": 0.0000011695177223523586, + "2024-05-30T12": 0.0000011645876887066676, + "2024-05-30T13": 0.0000011679319469025965, + "2024-05-30T14": 0.0000011779206946942071, + "2024-05-30T15": 0.0000011753322824597712, + "2024-05-30T21": 0.000001169193340917415, + "2024-05-30T20": 0.0000011756932058790053, + "2024-05-30T18": 0.0000011809684259499948, + "2024-05-30T22": 0.000001171111095719692, + "2024-05-30T16": 0.000001176398301766451, + "2024-05-30T17": 0.0000011780173633825984, + "2024-05-30T19": 0.0000011792612737151085, + "2024-05-31": 0.000001173772115089852, + "2024-05-30T23": 0.0000011699191293352413, + "2024-05-31T03": 0.0000011678932007366897, + "2024-05-31T07": 0.000001163942662167816, + "2024-05-31T06": 0.0000011646801936966688, + "2024-05-31T04": 0.0000011688836972857764, + "2024-05-31T02": 0.0000011715593141342608, + "2024-05-31T05": 0.0000011659527063524005, + "2024-05-31T00": 0.0000011747550597007568, + "2024-05-31T01": 0.0000011691857443311648, + "2024-05-31T08": 0.000001162876758276138, + "2024-05-31T09": 0.0000011640173942755027, + "2024-05-31T10": 0.000001155919443225387, + "2024-05-31T11": 0.000001163134946958266, + "2024-05-31T12": 0.0000011623251522866053, + "2024-05-31T13": 0.0000011666641196696356, + "2024-05-31T14": 0.0000011572835842359843, + "2024-06-01": 0.0000011609806734914746, + "2024-06-01T08": 0.000001153485702580188, + "2024-06-01T02": 0.0000011569704013049244, + "2024-06-01T05": 0.0000011563723406516952, + "2024-05-31T21": 0.0000011585331361239005, + "2024-06-01T00": 0.0000011621038874684775, + "2024-05-31T18": 0.0000011552184529572804, + "2024-05-31T15": 0.0000011565938363922706, + "2024-05-31T23": 0.0000011621649164402704, + "2024-05-31T22": 0.0000011583441457724914, + "2024-06-01T01": 0.0000011569227090242613, + "2024-06-01T07": 0.000001155322465487525, + "2024-06-01T04": 0.0000011545559620074376, + "2024-05-31T19": 0.000001155862902922753, + "2024-06-01T06": 0.0000011544247781873167, + "2024-05-31T20": 0.0000011590930950686072, + "2024-05-31T17": 0.0000011558099204190848, + "2024-05-31T16": 0.000001155165970149733, + "2024-06-01T03": 0.0000011568171570080891, + "2024-06-01T09": 0.0000011559261278251764, + "2024-06-01T10": 0.0000011550987726077575, + "2024-06-02": 0.0000011672057713318498, + "2024-06-01T13": 0.0000011555246778922872, + "2024-06-01T15": 0.0000011647015496536266, + "2024-06-01T18": 0.0000011663006443673471, + "2024-06-01T12": 0.00000115582602558342, + "2024-06-01T21": 0.0000011684141684402691, + "2024-06-01T20": 0.0000011644968503381527, + "2024-06-02T01": 0.000001164734132420884, + "2024-06-01T17": 0.0000011635242082690178, + "2024-06-01T11": 0.000001156139254515279, + "2024-06-02T00": 0.0000011672057713318498, + "2024-06-01T23": 0.0000011716576005375918, + "2024-06-01T14": 0.000001161331986209801, + "2024-06-01T22": 0.0000011672671091614638, + "2024-06-01T19": 0.0000011644064563765552, + "2024-06-01T16": 0.000001163034161686782, + "2024-06-02T13": 0.0000011560822246547073, + "2024-06-02T11": 0.0000011555071087291202, + "2024-06-02T07": 0.00000115619634107164, + "2024-06-02T05": 0.0000011633332425571624, + "2024-06-02T08": 0.0000011553234810047899, + "2024-06-02T04": 0.0000011628929223575208, + "2024-06-02T10": 0.0000011551206515221444, + "2024-06-02T12": 0.0000011569286316653146, + "2024-06-02T02": 0.000001164215692350579, + "2024-06-02T16": 0.0000011585519753780685, + "2024-06-02T17": 0.0000011568717053801222, + "2024-06-02T03": 0.0000011635415747049152, + "2024-06-02T09": 0.0000011556772247650897, + "2024-06-02T15": 0.0000011582161473006611, + "2024-06-02T06": 0.0000011580754847211496, + "2024-06-02T18": 0.0000011545347799127673, + "2024-06-02T14": 0.00000115628316494146, + "2024-06-03": 0.000001153538847934141, + "2024-06-03T01": 0.0000011486866678571854, + "2024-06-02T20": 0.0000011485401733056252, + "2024-06-03T00": 0.0000011532265521923758, + "2024-06-02T21": 0.0000011482755911881944, + "2024-06-02T23": 0.0000011550652157503137, + "2024-06-02T19": 0.0000011514831944981523, + "2024-06-02T22": 0.0000011503182712431058, + "2024-06-03T02": 0.0000011542629488765376, + "2024-06-03T05": 0.0000011495008403931646, + "2024-06-03T06": 0.0000011524462477009898, + "2024-06-03T04": 0.0000011525951511362974, + "2024-06-03T03": 0.0000011525901025083437, + "2024-06-03T07": 0.0000011559025998844132 + }, + "USD bsc": { + "2023-07-30": 242.5563254026864, + "2023-10-23": 217.94890437013547, + "2023-07-27": 239.02009171510338, + "2023-07-10": 234.14041889085686, + "2023-08-20": 217.0755217507986, + "2024-02-23": 382.1413995274651, + "2024-04-05": 585.5721433827005, + "2023-12-19": 241.28680530873834, + "2024-05-17": 569.1833921144822, + "2023-08-06": 242.88197000996811, + "2023-12-02": 228.45099800633835, + "2023-10-31": 228.18038710470466, + "2023-08-29": 218.66016837698223, + "2023-06-20": 242.74072631083445, + "2023-09-09": 214.58287590348837, + "2023-06-26": 238.73962724639145, + "2023-10-01": 214.69695348592128, + "2024-03-07": 428.6710857964888, + "2023-10-12": 206.51868848965105, + "2024-04-22": 579.3734044917832, + "2023-07-05": 242.477384029452, + "2023-07-29": 241.85782548004366, + "2024-04-26": 614.3356381697101, + "2024-01-08": 302.69451668182927, + "2023-05-29": 314.3365132543216, + "2023-10-07": 213.56779987718184, + "2023-09-26": 209.98104109173954, + "2023-08-24": 216.46933652900628, + "2023-12-05": 233.28507676882688, + "2024-02-19": 349.87732761482135, + "2024-01-07": 307.62376836825496, + "2024-04-28": 595.4472911352603, + "2023-07-31": 242.5403316925359, + "2023-10-18": 211.61725451265434, + "2024-05-19": 580.0714577572826, + "2024-05-12": 591.9532345597986, + "2024-04-29": 600.3946817171841, + "2023-08-25": 218.29266821493957, + "2024-03-09": 485.91152368044493, + "2023-07-12": 248.39835615416442, + "2023-09-05": 215.20163188949797, + "2023-06-07": 281.46996949499373, + "2023-09-16": 214.10200179916035, + "2024-04-25": 608.2451290155274, + "2023-08-12": 239.59582183259565, + "2023-06-06": 276.9408430478417, + "2023-09-01": 216.56493339627252, + "2023-09-08": 216.71011887224225, + "2024-03-22": 553.0049664443962, + "2023-08-10": 244.01031482836078, + "2023-12-07": 229.6291702982718, + "2023-11-18": 244.9935638187209, + "2023-07-13": 244.26861534786934, + "2023-09-13": 211.5180504655486, + "2023-06-17": 239.03627032421315, + "2023-07-17": 242.7494914153577, + "2023-07-07": 232.49627190853633, + "2023-09-07": 215.08938926745688, + "2024-03-26": 587.2230948760192, + "2024-05-14": 591.4430302446636, + "2024-02-22": 378.9295030528572, + "2024-04-15": 566.78239507385, + "2023-12-30": 313.6202885727052, + "2023-09-17": 214.87611605202002, + "2024-04-17": 537.9191450638473, + "2024-02-12": 320.9036996117738, + "2023-10-26": 221.94464720341847, + "2024-01-03": 312.1441677085838, + "2024-05-07": 588.072906631182, + "2023-06-01": 307.0113284146113, + "2024-01-22": 318.43509572107166, + "2023-06-12": 235.19926326722918, + "2023-10-03": 214.82304495573942, + "2024-05-26": 602.0782302418858, + "2024-04-30": 592.7292559848061, + "2023-06-19": 244.00266831846955, + "2023-07-09": 236.1554319712681, + "2023-12-24": 271.1620466852963, + "2023-09-24": 210.46274509641373, + "2024-01-16": 317.96910509773306, + "2023-10-17": 214.89035406939, + "2024-04-24": 606.8726598946358, + "2024-03-18": 570.6196289013809, + "2024-02-17": 360.80822766147384, + "2023-12-27": 297.77108084951715, + "2023-07-23": 240.53785227248912, + "2023-09-03": 214.1517059449753, + "2024-02-24": 375.42971250175134, + "2024-01-06": 317.1360633838788, + "2024-03-20": 507.24150172625673, + "2023-11-21": 253.37297951943324, + "2023-12-25": 264.6528500144323, + "2023-09-22": 210.66859640849137, + "2023-10-02": 217.96384659394644, + "2024-03-27": 579.543741964111, + "2024-05-06": 591.8801662765226, + "2023-08-30": 226.74644339528282, + "2023-10-06": 210.81952472137328, + "2023-10-13": 204.9989157997759, + "2023-06-28": 237.49634068516482, + "2024-02-05": 304.63929189603715, + "2024-03-01": 399.78649632596665, + "2023-07-15": 247.69585426653344, + "2023-06-25": 236.50651116456146, + "2023-12-10": 237.52655049156968, + "2023-11-23": 236.0966164348773, + "2023-08-04": 241.14378745446638, + "2024-05-13": 594.568559587567, + "2024-01-13": 296.63540615212753, + "2024-03-28": 575.2564614992159, + "2023-08-05": 241.49220755981716, + "2024-02-09": 318.8452155423041, + "2023-10-09": 211.5655752278196, + "2024-01-09": 304.3335240833879, + "2024-05-10": 596.0399558994333, + "2023-05-27": 307.1453631766937, + "2023-08-18": 217.79553784100364, + "2023-11-05": 237.29213570297165, + "2024-04-18": 533.9406647370134, + "2023-10-22": 214.2292395478076, + "2023-11-01": 226.56541637204373, + "2024-05-20": 574.6075238716212, + "2023-12-08": 232.90388747524327, + "2024-04-12": 604.4251836393632, + "2023-07-06": 238.86260681523098, + "2024-03-12": 522.8420431012881, + "2023-09-11": 212.21388034911894, + "2024-03-03": 410.83653411544765, + "2024-02-04": 299.71815324854197, + "2024-01-28": 305.81639189731465, + "2023-07-01": 240.51544100177406, + "2023-11-07": 253.40549350351324, + "2023-11-25": 232.86133711676447, + "2023-06-04": 306.6583611040192, + "2024-02-25": 381.9276527408514, + "2023-12-01": 227.6025546782398, + "2023-07-14": 255.7882914766138, + "2024-01-26": 291.8732810602082, + "2023-08-03": 240.3790076127766, + "2024-02-28": 395.2873518237669, + "2023-09-15": 212.21486809687195, + "2023-07-18": 244.19716787444656, + "2023-12-21": 260.3905067259567, + "2023-07-20": 241.3327728931399, + "2024-03-06": 396.65672648040294, + "2023-09-30": 215.1422803842829, + "2023-12-12": 246.49984681812555, + "2024-02-13": 327.58858470692826, + "2023-09-20": 217.16777222898247, + "2023-09-19": 215.88018309792267, + "2023-09-29": 214.92011356718317, + "2023-09-12": 205.79219100163806, + "2023-06-13": 231.06630754591316, + "2023-10-04": 213.57799312655078, + "2023-07-08": 235.33889258566464, + "2024-04-16": 552.1516678680755, + "2024-03-02": 407.5405297804759, + "2023-06-27": 236.17031917814325, + "2023-10-08": 212.3450979506937, + "2023-11-20": 246.23360281615726, + "2023-12-20": 252.04747669569153, + "2023-12-31": 317.14205517987966, + "2023-11-06": 244.32691511361557, + "2023-08-22": 210.58828468143162, + "2023-06-09": 262.16808943375315, + "2024-03-17": 576.0636857305076, + "2023-09-18": 216.50742177094784, + "2024-04-01": 605.6610719643236, + "2024-05-21": 600.7235688696079, + "2024-01-19": 314.6620052281356, + "2023-11-11": 250.93328516175865, + "2023-09-23": 211.05567704171992, + "2023-11-19": 244.82839666850936, + "2023-07-02": 247.34642839040404, + "2023-08-15": 240.35805612254566, + "2024-01-25": 292.830661831045, + "2024-03-13": 538.4508862356687, + "2024-01-21": 316.9325224346312, + "2024-02-01": 300.19602049665986, + "2023-06-15": 237.5081834479831, + "2024-03-16": 629.0267551771823, + "2023-11-27": 232.07104496973466, + "2024-01-10": 301.2190987168428, + "2024-03-15": 602.399011240003, + "2023-06-21": 247.32277891367147, + "2024-01-02": 314.445845627058, + "2023-07-11": 245.43929822601103, + "2023-10-25": 225.09316646086626, + "2024-01-01": 312.0601123123927, + "2024-02-14": 325.11173255625624, + "2023-09-04": 214.3001868645122, + "2023-09-06": 214.36178944570824, + "2024-04-03": 551.515331556358, + "2023-11-28": 227.47544482583783, + "2023-12-03": 229.2586524423362, + "2023-08-02": 247.42873652130356, + "2023-08-27": 216.1437880002737, + "2023-10-20": 211.2943892193741, + "2023-10-10": 205.6927622190411, + "2024-05-03": 560.3917410551448, + "2024-03-08": 473.76399974114315, + "2024-04-11": 610.1233738178075, + "2023-06-22": 249.3582360058018, + "2024-01-14": 302.1937344871412, + "2023-12-15": 253.54601236652027, + "2023-10-19": 210.40183827187985, + "2024-02-08": 307.80677480094386, + "2023-11-08": 246.19529120444378, + "2023-11-12": 251.59265640705053, + "2023-12-22": 271.17060161684515, + "2023-05-31": 311.6037345433532, + "2024-03-23": 550.6595163250356, + "2023-09-27": 212.3265868049085, + "2024-03-04": 414.1969057841646, + "2023-09-10": 214.13751951103444, + "2024-04-13": 595.0653581952531, + "2024-02-29": 415.5245240472292, + "2023-07-21": 242.62477719670818, + "2023-06-30": 233.4062024955106, + "2023-12-29": 323.3739475628496, + "2023-12-04": 228.14943304889522, + "2024-04-10": 580.5417948718401, + "2024-05-08": 577.4642804411998, + "2023-09-21": 214.18713041595333, + "2023-06-02": 304.98131566266824, + "2024-04-21": 570.6183474282204, + "2023-07-22": 243.7688418945168, + "2023-10-11": 208.6620254764005, + "2024-03-21": 555.0934250534169, + "2023-07-19": 240.27093045084683, + "2024-05-05": 586.0577820771398, + "2024-05-23": 614.4691147287014, + "2024-04-08": 584.1849211834316, + "2024-05-18": 581.5605519749872, + "2023-06-14": 243.25213391867743, + "2023-10-05": 213.35254544689778, + "2023-10-16": 209.67928458171238, + "2024-05-22": 618.6997659994897, + "2024-02-10": 323.7517135318547, + "2024-04-07": 585.3939720444681, + "2024-02-20": 352.0138097953321, + "2023-11-17": 242.52783654228807, + "2023-12-11": 239.5736712075568, + "2023-11-26": 234.4166030015936, + "2023-11-16": 253.88343681015218, + "2023-06-29": 230.4980397149236, + "2023-10-27": 223.09283939029933, + "2023-06-11": 239.26532692153265, + "2024-02-02": 300.1326673727588, + "2023-09-14": 212.51215205375362, + "2024-01-27": 302.37718736313843, + "2024-03-30": 611.8487215968298, + "2023-11-22": 227.95084111194794, + "2023-09-28": 212.00203647145472, + "2023-06-03": 307.29717562663143, + "2024-01-18": 309.31506131335254, + "2023-08-26": 218.17749771354633, + "2024-02-15": 334.0219322554905, + "2023-10-28": 224.3183649961432, + "2024-03-24": 552.7267225107516, + "2024-04-27": 597.8845023659281, + "2023-12-06": 231.14254967265893, + "2024-01-30": 310.8207116236089, + "2023-11-14": 241.23693713447562, + "2023-08-09": 245.17942748941834, + "2024-05-15": 566.5437521662473, + "2023-11-10": 251.36483322400602, + "2024-01-23": 305.5318612940601, + "2024-01-31": 307.66711842938975, + "2024-05-11": 584.9746487605421, + "2024-01-11": 305.3729176547247, + "2024-02-18": 352.82914719992834, + "2023-06-16": 236.09705812720446, + "2023-10-30": 227.18387190872835, + "2023-12-17": 244.33069161457112, + "2024-02-26": 388.4407050922249, + "2023-07-16": 251.0929864734874, + "2024-01-05": 323.3041971878523, + "2023-08-23": 210.83831690902392, + "2024-03-11": 528.9501964460305, + "2023-08-01": 241.19355696466522, + "2024-03-14": 628.4543092213498, + "2024-02-21": 354.848890065686, + "2023-08-28": 218.24702764538884, + "2023-07-04": 246.03229839160534, + "2023-12-13": 254.95445837168663, + "2024-02-27": 401.2142854224812, + "2023-08-13": 240.0884451308951, + "2024-03-31": 600.5520909682866, + "2023-12-09": 238.98902791513137, + "2024-04-02": 575.695059051994, + "2024-02-06": 300.81169435831123, + "2024-04-09": 586.8722725937209, + "2023-11-04": 230.7559827119548, + "2024-04-20": 554.661700179004, + "2024-01-15": 299.40249177259903, + "2023-07-03": 245.63090718844742, + "2023-12-28": 323.7859093390897, + "2023-05-30": 311.5659470891866, + "2024-05-25": 600.2151149502473, + "2024-02-07": 302.6895684544094, + "2023-09-25": 208.14507274724323, + "2024-03-19": 554.2073180923328, + "2024-03-10": 489.62811935237806, + "2024-05-02": 562.0571655985385, + "2023-09-02": 213.63263302532525, + "2024-01-12": 308.35643674560515, + "2024-04-19": 552.4407004955643, + "2023-11-29": 229.52752578033886, + "2023-10-15": 206.54688879540822, + "2024-05-28": 603.6423057749246, + "2023-11-30": 227.0791355736287, + "2024-01-24": 298.52805446428926, + "2023-08-11": 241.2319119151888, + "2024-02-11": 323.00553124128265, + "2023-06-08": 259.2252983528142, + "2023-11-15": 242.14218372949267, + "2023-12-16": 244.4845408583221, + "2024-03-29": 583.4351843354569, + "2024-04-04": 561.7314793379054, + "2023-06-10": 260.405386752611, + "2023-07-28": 240.41736659584296, + "2024-01-20": 314.36385480379516, + "2023-10-21": 212.211694219601, + "2023-08-16": 236.60728496761962, + "2024-05-24": 599.0535218352642, + "2023-11-03": 231.82826563680618, + "2023-08-31": 223.73474962321495, + "2024-05-27": 599.9903701902996, + "2024-01-04": 316.25686981455095, + "2023-07-26": 237.73034722946028, + "2023-11-13": 247.73525322551333, + "2023-10-24": 228.2427461737632, + "2024-03-25": 566.6844290632736, + "2023-08-07": 242.57499805629092, + "2023-10-29": 225.70595612640852, + "2024-01-29": 304.99452218174423, + "2024-05-04": 587.1284318573031, + "2023-06-05": 305.5738864105766, + "2023-11-02": 227.87876216969727, + "2023-12-18": 239.17277676807825, + "2023-11-24": 233.74947308470354, + "2023-08-21": 216.24044795479304, + "2023-07-25": 238.96549444977495, + "2024-05-16": 583.2365056193074, + "2023-08-14": 240.03079245155018, + "2024-05-01": 577.103283588192, + "2024-03-05": 418.9936160839087, + "2024-04-06": 578.696327648609, + "2023-12-23": 271.4314527300256, + "2024-02-03": 301.10006479608256, + "2024-02-16": 354.77456683512946, + "2023-05-28": 307.45404033044167, + "2023-12-14": 252.21806404987606, + "2023-06-24": 244.2997245266534, + "2023-12-26": 267.17879986250625, + "2023-11-09": 247.30390291019077, + "2023-08-19": 215.97291578847336, + "2024-05-09": 588.4352935185597, + "2024-01-17": 315.1703956242204, + "2023-06-23": 240.91804260945503, + "2023-06-18": 244.4266812236501, + "2024-04-23": 605.2562833353201, + "2023-08-08": 241.73842465058874, + "2023-08-17": 232.0954857295837, + "2024-04-14": 554.2493983822463, + "2023-07-24": 242.38142443213383, + "2023-10-14": 205.81803754234838, + "2024-05-22T20": 612.92644, + "2024-05-25T08": 602.265025, + "2024-05-22T05": 620.663424, + "2024-05-28T03": 597.8273429999999, + "2024-05-22T16": 619.3006179272409, + "2024-05-25T05": 602.65884, + "2024-05-24T22": 601.515776, + "2024-05-27T14": 604.06476, + "2024-05-22T03": 621.3694849999999, + "2024-05-23T17": 595.2041409146817, + "2024-05-24T23": 600.8518272000001, + "2024-05-26T19": 600.67546, + "2024-05-26T18": 600.68748, + "2024-05-26T10": 601.2940389565791, + "2024-05-27T16": 611.8336844, + "2024-05-24T12": 596.589612, + "2024-05-26T01": 601.73982, + "2024-05-21T17": 616.3909960193613, + "2024-05-23T07": 614.3250330000001, + "2024-05-22T08": 624.27512, + "2024-05-23T09": 612.8077066999999, + "2024-05-24T18": 601.19925, + "2024-05-23T01": 614.8524390172468, + "2024-05-25T15": 602.53974, + "2024-05-23T16": 593.7251070838589, + "2024-05-25T03": 601.053467, + "2024-05-28T06": 598.47288, + "2024-05-25T23": 601.997643, + "2024-05-24T13": 596.711758, + "2024-05-26T03": 601.533824, + "2024-05-26T00": 601.92174, + "2024-05-25T06": 601.1754500999999, + "2024-05-27T04": 604.779297, + "2024-05-22T10": 623.3492692559375, + "2024-05-27T09": 602.2963446, + "2024-05-24T17": 599.24821, + "2024-05-26T16": 602.346908, + "2024-05-22T09": 622.3755, + "2024-05-24T21": 600.9959054999999, + "2024-05-25T04": 602.45892, + "2024-05-27T22": 603.38392, + "2024-05-27T11": 602.026512, + "2024-05-23T21": 597.021345402795, + "2024-05-23T10": 609.086745, + "2024-05-23T14": 593.5090379999999, + "2024-05-27T02": 603.843522, + "2024-05-25T18": 602.0494500000001, + "2024-05-27T05": 602.71056, + "2024-05-22T23": 614.223475, + "2024-05-28T01": 601.3185599999999, + "2024-05-22T04": 617.233302, + "2024-05-22T15": 619.520287, + "2024-05-24T03": 601.453303, + "2024-05-24T08": 591.428436, + "2024-05-21T22": 616.021302, + "2024-05-21T16": 615.6351629999999, + "2024-05-21T23": 618.6731681395787, + "2024-05-24T02": 602.870822, + "2024-05-26T07": 602.676927, + "2024-05-27T07": 602.744171, + "2024-05-25T22": 600.991802, + "2024-05-24T16": 596.049554, + "2024-05-27T20": 603.88341, + "2024-05-22T02": 620.0883640000001, + "2024-05-24T06": 591.73952, + "2024-05-24T11": 595.8422800000001, + "2024-05-25T21": 601.27972, + "2024-05-27T15": 609.875056, + "2024-05-21T19": 609.7986999999999, + "2024-05-22T19": 612.471354, + "2024-05-21T12": 614.4386871118922, + "2024-05-23T20": 583.4481817485815, + "2024-05-23T08": 613.5439379999999, + "2024-05-22T22": 614.65404, + "2024-05-26T11": 601.52919, + "2024-05-24T01": 600.7596, + "2024-05-23T05": 615.11839, + "2024-05-28T04": 595.5771639509716, + "2024-05-25T09": 603.6026248000001, + "2024-05-27T18": 609.4937889, + "2024-05-24T10": 595.596091, + "2024-05-25T19": 602.349375, + "2024-05-24T07": 591.4343520000001, + "2024-05-26T04": 602.2433759999999, + "2024-05-26T09": 601.1994240000001, + "2024-05-23T02": 614.980044, + "2024-05-27T06": 603.71008, + "2024-05-28T08": 597.1638994218032, + "2024-05-24T15": 598.1008, + "2024-05-25T20": 601.3496250000001, + "2024-05-27T08": 603.53766, + "2024-05-23T22": 597.4803501274422, + "2024-05-26T15": 602.5984400233208, + "2024-05-24T20": 601.6016651969459, + "2024-05-21T20": 612.211203611, + "2024-05-25T13": 601.315804, + "2024-05-22T01": 618.42578, + "2024-05-25T17": 601.7475864, + "2024-05-27T10": 601.732719, + "2024-05-21T21": 611.665404, + "2024-05-24T19": 601.013628, + "2024-05-26T02": 600.633923, + "2024-05-27T19": 603.090263, + "2024-05-25T11": 605.409175, + "2024-05-27T17": 610.570464, + "2024-05-21T18": 614.304992, + "2024-05-26T06": 602.395116, + "2024-05-23T00": 615.6309741333388, + "2024-05-22T00": 619.8884, + "2024-05-24T05": 596.0593832324455, + "2024-05-23T15": 594.171888, + "2024-05-22T13": 613.93246, + "2024-05-21T10": 620.2299987312268, + "2024-05-22T12": 614.89545, + "2024-05-23T04": 613.519382, + "2024-05-26T08": 603.74632, + "2024-05-26T13": 599.907968, + "2024-05-28T05": 596.9400019999999, + "2024-05-22T18": 612.126536, + "2024-05-22T06": 621.063336, + "2024-05-21T08": 622.8733913060408, + "2024-05-22T17": 616.9012799999999, + "2024-05-23T19": 590.45628, + "2024-05-25T07": 601.165454, + "2024-05-26T22": 600.447706, + "2024-05-25T16": 601.91572, + "2024-05-26T05": 602.21928, + "2024-05-24T04": 601.363048, + "2024-05-21T14": 617.24565, + "2024-05-25T12": 602.657811, + "2024-05-28T07": 597.109968, + "2024-05-23T18": 589.8808869999999, + "2024-05-26T23": 599.712, + "2024-05-24T09": 593.8613767497343, + "2024-05-23T03": 614.1360836878936, + "2024-05-26T14": 601.449661842829, + "2024-05-21T13": 612.3190447340276, + "2024-05-22T14": 617.733167, + "2024-05-25T14": 601.357902, + "2024-05-25T00": 600.86177, + "2024-05-23T23": 597.0371879999999, + "2024-05-21T11": 619.3830343063862, + "2024-05-23T13": 595.691435, + "2024-05-22T11": 620.488292, + "2024-05-21T15": 616.551992, + "2024-05-28T00": 602.207848, + "2024-05-27T23": 603.092976, + "2024-05-28T02": 600.255482, + "2024-05-26T21": 598.9004000000001, + "2024-05-26T12": 600.80768, + "2024-05-23T06": 614.080387612188, + "2024-05-22T07": 620.988202, + "2024-05-27T12": 601.27881, + "2024-05-22T21": 613.672857, + "2024-05-24T00": 599.630045, + "2024-05-25T02": 600.667824, + "2024-05-27T00": 600.6995000000001, + "2024-05-26T20": 599.7339390000001, + "2024-05-26T17": 600.875352, + "2024-05-27T13": 603.2497131, + "2024-05-23T12": 610.100904, + "2024-05-25T10": 604.936623, + "2024-05-21T09": 619.6923835019765, + "2024-05-23T11": 610.3946500000001, + "2024-05-24T14": 597.5854129, + "2024-05-25T01": 600.8798, + "2024-05-27T21": 604.289051, + "2024-05-27T03": 604.842932, + "2024-05-27T01": 602.0615014249456, + "latest": 626.1, + "2024-05-28T09": 599.7815879999999, + "2024-05-28T10": 603.014508, + "2024-05-28T11": 601.891475, + "2024-05-28T12": 601.0922830000001, + "2024-05-28T13": 598.7007, + "2024-05-28T14": 597.9015, + "2024-05-28T15": 599.4359999999999, + "2024-05-29": 598.2482675695182, + "2024-05-28T20": 600.810628, + "2024-05-28T22": 602.145516, + "2024-05-28T21": 601.21138, + "2024-05-28T19": 599.661508, + "2024-05-29T02": 601.485858, + "2024-05-28T17": 599.2002, + "2024-05-28T18": 596.4535000000001, + "2024-05-28T23": 601.621888, + "2024-05-29T00": 601.5792978, + "2024-05-29T01": 601.4713380000001, + "2024-05-28T16": 598.97042, + "2024-05-29T06": 602.370249, + "2024-05-29T05": 601.8889320000001, + "2024-05-29T03": 601.36188, + "2024-05-29T07": 599.352, + "2024-05-29T04": 601.383501, + "2024-05-29T08": 597.1616537648368, + "2024-05-29T09": 598.548828, + "2024-05-29T10": 599.1582522, + "2024-05-29T11": 599.3060989999999, + "2024-05-29T12": 598.918485, + "2024-05-29T13": 597.9332479999999, + "2024-05-29T14": 596.957924, + "2024-05-29T15": 595.518624, + "2024-05-29T18": 594.4288, + "2024-05-29T17": 595.0639600000001, + "2024-05-29T23": 595.674332, + "2024-05-29T19": 594.316998, + "2024-05-29T22": 596.0376630000001, + "2024-05-29T20": 593.959005, + "2024-05-29T16": 594.2496846, + "2024-05-29T21": 594.8601519668622, + "2024-05-30": 595.2154456181476, + "2024-05-30T00": 595.3608360000001, + "2024-05-30T05": 595.9294451999999, + "2024-05-30T02": 596.677146, + "2024-05-30T01": 595.8613368528866, + "2024-05-30T06": 594.62392, + "2024-05-30T07": 592.332526, + "2024-05-30T03": 596.4833600000001, + "2024-05-30T04": 596.7889749999999, + "2024-05-30T08": 588.8207313154468, + "2024-05-30T09": 590.6454, + "2024-05-30T10": 592.0978759999999, + "2024-05-30T11": 594.1802226093848, + "2024-05-30T12": 594.62392, + "2024-05-30T13": 594.1340717986003, + "2024-05-30T14": 596.5254719999999, + "2024-05-30T15": 594.6651817465179, + "2024-05-30T21": 594.1057621988476, + "2024-05-30T20": 595.7454180673743, + "2024-05-30T18": 598.3730420560719, + "2024-05-30T22": 594.9598625374952, + "2024-05-30T16": 596.5438338143497, + "2024-05-30T17": 597.0803531588975, + "2024-05-30T19": 600.5187836642579, + "2024-05-31": 593.2750232508379, + "2024-05-30T23": 594.9131690975249, + "2024-05-31T03": 593.614928, + "2024-05-31T07": 592.52219, + "2024-05-31T06": 592.8221, + "2024-05-31T04": 593.2900431349904, + "2024-05-31T02": 594.150352, + "2024-05-31T05": 591.9571980000001, + "2024-05-31T00": 594.633456, + "2024-05-31T01": 595.2571039999999, + "2024-05-31T08": 591.910528, + "2024-05-31T09": 591.79872, + "2024-05-31T10": 591.9507627959732, + "2024-05-31T11": 594.8196391353947, + "2024-05-31T12": 597.335403, + "2024-05-31T13": 595.63048, + "2024-05-31T14": 593.161705, + "2024-06-01": 593.7208823456814, + "2024-06-01T08": 594.606067, + "2024-06-01T02": 594.0993530000001, + "2024-06-01T05": 595.03551, + "2024-05-31T21": 594.6034989999999, + "2024-06-01T00": 593.39412, + "2024-05-31T18": 592.559344, + "2024-05-31T15": 592.50781, + "2024-05-31T23": 593.5499085, + "2024-05-31T22": 594.31575, + "2024-06-01T01": 593.40006, + "2024-06-01T07": 594.5248753924192, + "2024-06-01T04": 595.0518591082813, + "2024-05-31T19": 592.816448, + "2024-06-01T06": 595.0295550000001, + "2024-05-31T20": 594.1641723411743, + "2024-05-31T17": 592.319832, + "2024-05-31T16": 590.920966, + "2024-06-01T03": 594.524, + "2024-06-01T09": 595.087784, + "2024-06-01T10": 595.175784, + "2024-06-02": 601.3556083591592, + "2024-06-01T13": 595.96315, + "2024-06-01T15": 597.1662523, + "2024-06-01T18": 596.168937, + "2024-06-01T12": 595.4914713, + "2024-06-01T21": 606.5901351882522, + "2024-06-01T20": 601.763953, + "2024-06-02T01": 603.21704, + "2024-06-01T17": 596.12272, + "2024-06-01T11": 595.175784, + "2024-06-02T00": 601.9180799999999, + "2024-06-01T23": 600.601087, + "2024-06-01T14": 596.3990562625321, + "2024-06-01T22": 603.0149201999999, + "2024-06-01T19": 596.2688479999999, + "2024-06-01T16": 596.0071395, + "2024-06-02T13": 600.167568, + "2024-06-02T11": 599.1841250321942, + "2024-06-02T07": 600.413271, + "2024-06-02T05": 603.192892, + "2024-06-02T08": 598.668648, + "2024-06-02T04": 604.010355, + "2024-06-02T10": 597.05785, + "2024-06-02T12": 601.072935, + "2024-06-02T02": 603.892304, + "2024-06-02T16": 599.913676, + "2024-06-02T17": 597.8111700000001, + "2024-06-02T03": 603.3866849999999, + "2024-06-02T09": 596.9279462000001, + "2024-06-02T15": 600.900838, + "2024-06-02T06": 601.88796, + "2024-06-02T18": 597.435342, + "2024-06-02T14": 600.56127, + "2024-06-03": 602.9471398632894, + "2024-06-03T01": 607.186832, + "2024-06-02T20": 598.352754, + "2024-06-03T00": 602.568405, + "2024-06-02T21": 601.6828613875497, + "2024-06-02T23": 602.974218, + "2024-06-02T19": 598.146885, + "2024-06-02T22": 601.5050118, + "2024-06-03T02": 608.1192060000001, + "2024-06-03T05": 612.192464, + "2024-06-03T06": 627.0984, + "2024-06-03T04": 610.845504, + "2024-06-03T03": 607.3414570000001, + "2024-06-03T07": 627.0984 + }, + "USD casper": { + "2023-07-30": 0.03895916049959889, + "2023-10-23": 0.031049932468087477, + "2023-07-27": 0.0384839787687274, + "2023-07-10": 0.03711144805136106, + "2023-08-20": 0.03612638700000001, + "2024-02-23": 0.039471403778798035, + "2024-04-05": 0.03532057922565239, + "2023-12-19": 0.04002248277846095, + "2024-05-17": 0.028435969040393128, + "2023-08-06": 0.03996819398903829, + "2023-12-02": 0.03443468192298384, + "2023-10-31": 0.033351651735097236, + "2023-08-29": 0.0371435530659994, + "2023-06-20": 0.03934410153993315, + "2023-09-09": 0.03402000199813878, + "2023-06-26": 0.04050404113972961, + "2023-10-01": 0.03207256812523874, + "2024-03-07": 0.04563011418865133, + "2023-10-12": 0.03055121121421481, + "2024-04-22": 0.03233292435848017, + "2023-07-05": 0.0385097992831304, + "2023-07-29": 0.03970921698372989, + "2024-04-26": 0.031315687274151814, + "2024-01-08": 0.046252419614667695, + "2023-05-29": 0.05069340505015569, + "2023-10-07": 0.03228777977399776, + "2023-09-26": 0.03202985928964877, + "2023-08-24": 0.03622421574346421, + "2023-12-05": 0.04463866728087209, + "2024-02-19": 0.038584401743352, + "2024-01-07": 0.04853517319480533, + "2024-04-28": 0.03089581565273336, + "2023-07-31": 0.038672621156096654, + "2023-10-18": 0.03004107122717347, + "2024-05-19": 0.027742645478664837, + "2024-05-12": 0.02847928218437159, + "2024-04-29": 0.03006632473687893, + "2023-08-25": 0.03574410818442278, + "2024-03-09": 0.049635680699150274, + "2023-07-12": 0.036809843457352234, + "2023-09-05": 0.03499933790257356, + "2023-06-07": 0.04411968048784523, + "2023-09-16": 0.03340344207011919, + "2024-04-25": 0.030971618980467103, + "2023-08-12": 0.038478322858628636, + "2023-06-06": 0.04250808210626212, + "2023-09-01": 0.03485603827773906, + "2023-09-08": 0.03414646978954802, + "2024-03-22": 0.03899010974395679, + "2023-08-10": 0.0387308424291074, + "2023-12-07": 0.04188464872580604, + "2023-11-18": 0.03238265098465966, + "2023-07-13": 0.03710434397517374, + "2023-09-13": 0.033036926039594475, + "2023-06-17": 0.04016709201717542, + "2023-07-17": 0.036675853787658905, + "2023-07-07": 0.037652189505207205, + "2023-09-07": 0.0341498223286832, + "2024-03-26": 0.04087683221076234, + "2024-05-14": 0.027206110773135245, + "2024-02-22": 0.04148749122480239, + "2024-04-15": 0.031875632233375605, + "2023-12-30": 0.051499701484055124, + "2023-09-17": 0.03390747001302927, + "2024-04-17": 0.03003869617908014, + "2024-02-12": 0.033818452500000006, + "2023-10-26": 0.03270574489922907, + "2024-01-03": 0.04892542364064103, + "2024-05-07": 0.0280599970877074, + "2023-06-01": 0.04737616042061915, + "2024-01-22": 0.04083290777416467, + "2023-06-12": 0.04045165156390897, + "2023-10-03": 0.03190003174538253, + "2024-05-26": 0.0288496104, + "2024-04-30": 0.028830005815386566, + "2023-06-19": 0.03932789605110909, + "2023-07-09": 0.037328887277114114, + "2023-12-24": 0.042821611785696094, + "2023-09-24": 0.032401943999999995, + "2024-01-16": 0.047817447037206064, + "2023-10-17": 0.030262361079868638, + "2024-04-24": 0.03177749839773348, + "2024-03-18": 0.04165215430434381, + "2024-02-17": 0.036912814779988076, + "2023-12-27": 0.04431039230069681, + "2023-07-23": 0.04023017689903228, + "2023-09-03": 0.03558520523843735, + "2024-02-24": 0.03826452637639728, + "2024-01-06": 0.04974413345975212, + "2024-03-20": 0.03957664449284895, + "2023-11-21": 0.03348159954365994, + "2023-12-25": 0.043608007490291964, + "2023-09-22": 0.03270554787915564, + "2023-10-02": 0.03275822344584185, + "2024-03-27": 0.039442881217225806, + "2024-05-06": 0.029081454000000003, + "2023-08-30": 0.03623725623714165, + "2023-10-06": 0.03161621760996622, + "2023-10-13": 0.030509300631315267, + "2023-06-28": 0.03863992647266224, + "2024-02-05": 0.034924675138596185, + "2024-03-01": 0.040602995082005884, + "2023-07-15": 0.037511860334208544, + "2023-06-25": 0.04115308014679358, + "2023-12-10": 0.0425033251346163, + "2023-11-23": 0.03392647976617925, + "2023-08-04": 0.04052227787674493, + "2024-05-13": 0.027842287550472862, + "2024-01-13": 0.047149853704710656, + "2024-03-28": 0.03929232514441652, + "2023-08-05": 0.040290121663989535, + "2024-02-09": 0.03488068991493011, + "2023-10-09": 0.031016145353520153, + "2024-01-09": 0.04705346686998348, + "2024-05-10": 0.02895627433275114, + "2023-05-27": 0.050775611228144474, + "2023-08-18": 0.03572579467606731, + "2023-11-05": 0.037126917745465206, + "2024-04-18": 0.030211625149468638, + "2023-10-22": 0.030583654120416776, + "2023-11-01": 0.03435694829719571, + "2024-05-20": 0.028431421500000005, + "2023-12-08": 0.04296841774935673, + "2024-04-12": 0.03168996687193762, + "2023-07-06": 0.037801325499644205, + "2024-03-12": 0.05008475527641257, + "2023-09-11": 0.03222731196101789, + "2024-03-03": 0.04506238257005977, + "2024-02-04": 0.03509665480704058, + "2024-01-28": 0.035936406, + "2023-07-01": 0.0385754118142948, + "2023-11-07": 0.038532279570327434, + "2023-11-25": 0.03350995722264614, + "2023-06-04": 0.04664381938031096, + "2024-02-25": 0.03828844856377183, + "2023-12-01": 0.03420723005333879, + "2023-07-14": 0.037813519092919495, + "2024-01-26": 0.04008138304330158, + "2023-08-03": 0.03869150884400068, + "2024-02-28": 0.04002129147076758, + "2023-09-15": 0.03287060643804482, + "2023-07-18": 0.036122701226710546, + "2023-12-21": 0.040911077711217124, + "2023-07-20": 0.035799529162629816, + "2024-03-06": 0.043783810921612855, + "2023-09-30": 0.03160072910030658, + "2023-12-12": 0.04257743913400183, + "2024-02-13": 0.033408631939538386, + "2023-09-20": 0.034332403949216106, + "2023-09-19": 0.03499632098155112, + "2023-09-29": 0.03127655936809262, + "2023-09-12": 0.0328717263629505, + "2023-06-13": 0.03952606121121901, + "2023-10-04": 0.031158875642261694, + "2023-07-08": 0.03787332991487121, + "2024-04-16": 0.030211475248155845, + "2024-03-02": 0.04307086807966763, + "2023-06-27": 0.040282542611336764, + "2023-10-08": 0.03201876322085751, + "2023-11-20": 0.03319889483532555, + "2023-12-20": 0.040577437430368304, + "2023-12-31": 0.05086506628574932, + "2023-11-06": 0.03842010647427351, + "2023-08-22": 0.03505706764968178, + "2023-06-09": 0.04373324450348326, + "2024-03-17": 0.04241029733090958, + "2023-09-18": 0.03493595681835362, + "2024-04-01": 0.037381462145040734, + "2024-05-21": 0.029853948856616495, + "2024-01-19": 0.043863020743634094, + "2023-11-11": 0.03760969372537955, + "2023-09-23": 0.03249999959343009, + "2023-11-19": 0.03220641690000001, + "2023-07-02": 0.03890996106948984, + "2023-08-15": 0.0381311296, + "2024-01-25": 0.03986110117021914, + "2024-03-13": 0.049798398616555224, + "2024-01-21": 0.04325396530454257, + "2024-02-01": 0.03448959667647838, + "2023-06-15": 0.039427238750048846, + "2024-03-16": 0.04446912133225707, + "2023-11-27": 0.03235546661638168, + "2024-01-10": 0.04689619452042759, + "2024-03-15": 0.045444321956274555, + "2023-06-21": 0.04081850648068781, + "2024-01-02": 0.050945058067927367, + "2023-07-11": 0.03719115736265369, + "2023-10-25": 0.03330378185656168, + "2024-01-01": 0.05172113612276632, + "2024-02-14": 0.03395604164036018, + "2023-09-04": 0.03517713681938224, + "2023-09-06": 0.034359997727152564, + "2024-04-03": 0.035884274115953775, + "2023-11-28": 0.03227600466658259, + "2023-12-03": 0.03475271998794927, + "2023-08-02": 0.03833810724202516, + "2023-08-27": 0.036442607326012164, + "2023-10-20": 0.0303933672, + "2023-10-10": 0.030962532391082376, + "2024-05-03": 0.029766177421146605, + "2024-03-08": 0.048219217338801794, + "2024-04-11": 0.03600953984929656, + "2023-06-22": 0.04156393066872522, + "2024-01-14": 0.04933691742752847, + "2023-12-15": 0.041691649173147494, + "2023-10-19": 0.02967939773737638, + "2024-02-08": 0.034881944560537004, + "2023-11-08": 0.03837073865657838, + "2023-11-12": 0.03719441781641806, + "2023-12-22": 0.042591847131854266, + "2023-05-31": 0.04765849126146189, + "2024-03-23": 0.03905346326248355, + "2023-09-27": 0.03133805724472749, + "2024-03-04": 0.045740352497085815, + "2023-09-10": 0.033601601187163425, + "2024-04-13": 0.031169682064998094, + "2024-02-29": 0.04091791012068663, + "2023-07-21": 0.037458112271650766, + "2023-06-30": 0.03814198483417169, + "2023-12-29": 0.04699469260333091, + "2023-12-04": 0.035537225878313136, + "2024-04-10": 0.03618742394044542, + "2024-05-08": 0.027576294000819016, + "2023-09-21": 0.03299838144005036, + "2023-06-02": 0.0470903686271892, + "2024-04-21": 0.03213908990520833, + "2023-07-22": 0.03919391900000001, + "2023-10-11": 0.03070033287897866, + "2024-03-21": 0.04081081203950133, + "2023-07-19": 0.03585034817129398, + "2024-05-05": 0.0295842539160902, + "2024-05-23": 0.02830470722928551, + "2024-04-08": 0.03730962692744838, + "2024-05-18": 0.028187890543352318, + "2023-06-14": 0.03933213112848577, + "2023-10-05": 0.03112386943258467, + "2023-10-16": 0.030766123782376427, + "2024-05-22": 0.029434496848007214, + "2024-02-10": 0.034948771340844204, + "2024-04-07": 0.03670809187359336, + "2024-02-20": 0.037810300683436306, + "2023-11-17": 0.03325540437433593, + "2023-12-11": 0.041640110437830474, + "2023-11-26": 0.03324469538575737, + "2023-11-16": 0.035000137459109466, + "2023-06-29": 0.03833570923299317, + "2023-10-27": 0.032303156480687066, + "2023-06-11": 0.041707991837909096, + "2024-02-02": 0.03541190961376726, + "2023-09-14": 0.03305127464337213, + "2024-01-27": 0.03882543883538327, + "2024-03-30": 0.039282758318008114, + "2023-11-22": 0.0324357454055924, + "2023-09-28": 0.03106825743340075, + "2023-06-03": 0.0462549735770554, + "2024-01-18": 0.04526124915908653, + "2023-08-26": 0.036310473925185445, + "2024-02-15": 0.03766893273178623, + "2023-10-28": 0.03305495750000001, + "2024-03-24": 0.03885412372302153, + "2024-04-27": 0.0304620244741281, + "2023-12-06": 0.04349271825516358, + "2024-01-30": 0.03605763612244754, + "2023-11-14": 0.034616913187556414, + "2023-08-09": 0.038569163755549384, + "2024-05-15": 0.027430719485314354, + "2023-11-10": 0.03793811163109533, + "2024-01-23": 0.04021976213939189, + "2024-01-31": 0.034706112000000004, + "2024-05-11": 0.02827209780371881, + "2024-01-11": 0.04916024793364657, + "2024-02-18": 0.03755780950279319, + "2023-06-16": 0.040508950698238726, + "2023-10-30": 0.034019837407375526, + "2023-12-17": 0.04110991989440107, + "2024-02-26": 0.038593075577088375, + "2023-07-16": 0.0371422538857491, + "2024-01-05": 0.0526701134301404, + "2023-08-23": 0.03612282224876227, + "2024-03-11": 0.05011100617262837, + "2023-08-01": 0.03896322159895222, + "2024-03-14": 0.04887321322471969, + "2024-02-21": 0.03867, + "2023-08-28": 0.03614971029672256, + "2023-07-04": 0.039195493260658625, + "2023-12-13": 0.041092036416306064, + "2024-02-27": 0.03992870583402271, + "2023-08-13": 0.03827408047298524, + "2024-03-31": 0.03885499954326253, + "2023-12-09": 0.04317096528100161, + "2024-04-02": 0.0367406310539527, + "2024-02-06": 0.03476712563948911, + "2024-04-09": 0.037020762994261436, + "2023-11-04": 0.03640819499999999, + "2024-04-20": 0.031110570938132052, + "2024-01-15": 0.04875536030048827, + "2023-07-03": 0.03953985751432107, + "2023-12-28": 0.04589951450698224, + "2023-05-30": 0.048793192976229895, + "2024-05-25": 0.029144110915281, + "2024-02-07": 0.03473068264072799, + "2023-09-25": 0.03216242042005738, + "2024-03-19": 0.03919862731490024, + "2024-03-10": 0.04919555542723748, + "2024-05-02": 0.02970925721979087, + "2023-09-02": 0.03566276177766611, + "2024-01-12": 0.048977722915867716, + "2024-04-19": 0.030813586874169324, + "2023-11-29": 0.032625464276841765, + "2023-10-15": 0.030560096551271745, + "2024-05-28": 0.029971179112445217, + "2023-11-30": 0.03425566483090383, + "2024-01-24": 0.041395078800380306, + "2023-08-11": 0.0384052478508829, + "2024-02-11": 0.034673171300492654, + "2023-06-08": 0.04430443, + "2023-11-15": 0.034709563316400995, + "2023-12-16": 0.04190493605008724, + "2024-03-29": 0.039465975311357204, + "2024-04-04": 0.03640872503918704, + "2023-06-10": 0.04101876779460209, + "2023-07-28": 0.04023910650893098, + "2024-01-20": 0.0433400747, + "2023-10-21": 0.030781999249356946, + "2023-08-16": 0.037076205938875645, + "2024-05-24": 0.02810830904163775, + "2023-11-03": 0.035718821380601506, + "2023-08-31": 0.03542647943292559, + "2024-05-27": 0.02930183231801203, + "2024-01-04": 0.05331765174291111, + "2023-07-26": 0.037825297113137854, + "2023-11-13": 0.036103681857890445, + "2023-10-24": 0.03354044302268619, + "2024-03-25": 0.04063293720208056, + "2023-08-07": 0.039318354971877106, + "2023-10-29": 0.03353638705829248, + "2024-01-29": 0.03518580031752341, + "2024-05-04": 0.029725651456939402, + "2023-06-05": 0.042317916494406804, + "2023-11-02": 0.03617538328993285, + "2023-12-18": 0.039368457512519425, + "2023-11-24": 0.03368130983364064, + "2023-08-21": 0.03544135216355298, + "2023-07-25": 0.038246017533430564, + "2024-05-16": 0.02804392618464528, + "2023-08-14": 0.03895320002134715, + "2024-05-01": 0.02922680148687198, + "2024-03-05": 0.04513646085316154, + "2024-04-06": 0.03547061549116753, + "2023-12-23": 0.04307426632302206, + "2024-02-03": 0.03570540988417964, + "2024-02-16": 0.038008575938529056, + "2023-05-28": 0.0512542850093966, + "2023-12-14": 0.04255669133625633, + "2023-06-24": 0.040759210173213156, + "2023-12-26": 0.04302593512308018, + "2023-11-09": 0.03897307427576928, + "2023-08-19": 0.03570012037758912, + "2024-05-09": 0.027999081947393437, + "2024-01-17": 0.046741696772170695, + "2023-06-23": 0.04171942921950083, + "2023-06-18": 0.04028958656574649, + "2024-04-23": 0.032402620285909824, + "2023-08-08": 0.039645889943183785, + "2023-08-17": 0.03656680560279937, + "2024-04-14": 0.030305117771672833, + "2023-07-24": 0.04008477993689373, + "2023-10-14": 0.030737681811998093, + "2024-05-22T20": 0.0292364912, + "2024-05-25T08": 0.0291586237, + "2024-05-22T05": 0.0291635826, + "2024-05-28T03": 0.0291369636, + "2024-05-22T16": 0.0297828504, + "2024-05-25T05": 0.028958412, + "2024-05-24T22": 0.0284160212, + "2024-05-27T14": 0.029278903999999998, + "2024-05-22T03": 0.0293838281, + "2024-05-23T17": 0.028119457799999997, + "2024-05-24T23": 0.0283748916, + "2024-05-26T19": 0.0284946046, + "2024-05-26T18": 0.028385232000000003, + "2024-05-26T10": 0.0289092996, + "2024-05-27T16": 0.0295407257, + "2024-05-24T12": 0.0280554036, + "2024-05-26T01": 0.029187081, + "2024-05-21T17": 0.029833123082918023, + "2024-05-23T07": 0.0291721941, + "2024-05-22T08": 0.029444110000000003, + "2024-05-23T09": 0.029011365817418613, + "2024-05-24T18": 0.028615685000000002, + "2024-05-23T01": 0.029235082500000002, + "2024-05-25T15": 0.029247075, + "2024-05-23T16": 0.0280906041, + "2024-05-25T03": 0.028648249400000003, + "2024-05-28T06": 0.0289045416, + "2024-05-25T23": 0.0291350462, + "2024-05-24T13": 0.028073146, + "2024-05-26T03": 0.02899681, + "2024-05-26T00": 0.0291162144, + "2024-05-25T06": 0.0287987641, + "2024-05-27T04": 0.0288946777, + "2024-05-22T10": 0.029583490200000003, + "2024-05-27T09": 0.029151914600000002, + "2024-05-24T17": 0.028078202200000003, + "2024-05-26T16": 0.028478034200000002, + "2024-05-22T09": 0.029474104, + "2024-05-24T21": 0.0285274323, + "2024-05-25T04": 0.029078364000000002, + "2024-05-27T22": 0.0293500324, + "2024-05-27T11": 0.02938182580097819, + "2024-05-23T21": 0.0282487975, + "2024-05-23T10": 0.0288399025, + "2024-05-23T14": 0.028046250600000003, + "2024-05-27T02": 0.0285331555, + "2024-05-25T18": 0.029292675, + "2024-05-27T05": 0.0290060704, + "2024-05-22T23": 0.029286815, + "2024-05-28T01": 0.029346504, + "2024-05-22T04": 0.0291421295, + "2024-05-22T15": 0.0299013261, + "2024-05-24T03": 0.028488315, + "2024-05-24T08": 0.0277819409, + "2024-05-21T22": 0.029571421799999997, + "2024-05-21T16": 0.0298771473, + "2024-05-21T23": 0.0294838071, + "2024-05-24T02": 0.0284991662, + "2024-05-26T07": 0.029169203400000003, + "2024-05-27T07": 0.029282713000000002, + "2024-05-25T22": 0.029104760200000003, + "2024-05-24T16": 0.028038219, + "2024-05-27T20": 0.0293100732, + "2024-05-22T02": 0.029524684600000003, + "2024-05-24T06": 0.0280776404, + "2024-05-24T11": 0.028013181999999998, + "2024-05-25T21": 0.029174164000000002, + "2024-05-27T15": 0.029494612800000004, + "2024-05-21T19": 0.029710192399999998, + "2024-05-22T19": 0.0293338386, + "2024-05-21T12": 0.0302130494, + "2024-05-23T20": 0.027659239999999998, + "2024-05-23T08": 0.029023156799999998, + "2024-05-22T22": 0.029528184000000002, + "2024-05-26T11": 0.0289169815, + "2024-05-24T01": 0.028608552000000002, + "2024-05-23T05": 0.0291419208, + "2024-05-28T04": 0.028968837299999998, + "2024-05-25T09": 0.029079527600000002, + "2024-05-27T18": 0.029570104000000003, + "2024-05-24T10": 0.028015704699999998, + "2024-05-25T19": 0.0292626825, + "2024-05-24T07": 0.027812210400000002, + "2024-05-26T04": 0.0291224262, + "2024-05-26T09": 0.028978404, + "2024-05-23T02": 0.029274769200000002, + "2024-05-27T06": 0.029485839999999996, + "2024-05-28T08": 0.029064517855736938, + "2024-05-24T15": 0.028135925000000003, + "2024-05-25T20": 0.02923269, + "2024-05-27T08": 0.029192474, + "2024-05-23T22": 0.0283624044, + "2024-05-26T15": 0.028792713999999997, + "2024-05-24T20": 0.028577142, + "2024-05-21T20": 0.029740182499999997, + "2024-05-25T13": 0.029145919, + "2024-05-22T01": 0.0295264564, + "2024-05-25T17": 0.029323547399999997, + "2024-05-27T10": 0.029382066, + "2024-05-21T21": 0.029603485800000003, + "2024-05-24T19": 0.0284111898, + "2024-05-26T02": 0.029066802299999996, + "2024-05-27T19": 0.029410265600000002, + "2024-05-25T11": 0.029455581, + "2024-05-27T17": 0.029369718, + "2024-05-21T18": 0.029910636, + "2024-05-26T06": 0.0292600482, + "2024-05-23T00": 0.0293644286, + "2024-05-22T00": 0.0294147044, + "2024-05-24T05": 0.028234462499999998, + "2024-05-23T15": 0.028119739199999997, + "2024-05-22T13": 0.0291767902, + "2024-05-21T10": 0.030181633561931747, + "2024-05-22T12": 0.0291650411, + "2024-05-23T04": 0.02916304778412872, + "2024-05-26T08": 0.029037799, + "2024-05-26T13": 0.028581104164268362, + "2024-05-28T05": 0.0289576854, + "2024-05-22T18": 0.029346478000000002, + "2024-05-22T06": 0.029603485800000003, + "2024-05-21T08": 0.02989615488447833, + "2024-05-22T17": 0.02968770568900348, + "2024-05-23T19": 0.0280641572, + "2024-05-25T07": 0.0288987251, + "2024-05-26T22": 0.028508021600000003, + "2024-05-25T16": 0.029315895199999997, + "2024-05-26T05": 0.029272067272890775, + "2024-05-24T04": 0.028354112799999998, + "2024-05-21T14": 0.0298625325, + "2024-05-25T12": 0.0292279539, + "2024-05-28T07": 0.028866752306729717, + "2024-05-23T18": 0.027880191000000002, + "2024-05-26T23": 0.028426348799999997, + "2024-05-24T09": 0.027927427, + "2024-05-23T03": 0.029280369, + "2024-05-26T14": 0.0286588187, + "2024-05-21T13": 0.030013996, + "2024-05-22T14": 0.0297319702, + "2024-05-25T14": 0.0292179546, + "2024-05-25T00": 0.028443456500000002, + "2024-05-23T23": 0.028497455600000002, + "2024-05-21T11": 0.0302418325, + "2024-05-23T13": 0.028261065278570873, + "2024-05-22T11": 0.0295346828, + "2024-05-21T15": 0.0300027976, + "2024-05-28T00": 0.029356496, + "2024-05-27T23": 0.0293353376, + "2024-05-28T02": 0.0291584068, + "2024-05-26T21": 0.028355815, + "2024-05-26T12": 0.0287607936, + "2024-05-23T06": 0.0291915977, + "2024-05-22T07": 0.02951481084887704, + "2024-05-27T12": 0.029249511, + "2024-05-22T21": 0.029189196, + "2024-05-24T00": 0.028637107499999998, + "2024-05-25T02": 0.0285337212, + "2024-05-27T00": 0.028375805, + "2024-05-26T20": 0.0284926089, + "2024-05-26T17": 0.0284146478, + "2024-05-27T13": 0.02922479036737543, + "2024-05-23T12": 0.0285959811, + "2024-05-25T10": 0.0294520458, + "2024-05-21T09": 0.030003998, + "2024-05-23T11": 0.02892553, + "2024-05-24T14": 0.0281200206, + "2024-05-25T01": 0.028454308, + "2024-05-27T21": 0.029410265600000002, + "2024-05-27T03": 0.028623844935781125, + "2024-05-27T01": 0.028486035, + "latest": 0.02948153, + "2024-05-28T09": 0.0293597283, + "2024-05-28T10": 0.029571288, + "2024-05-28T11": 0.0296999727, + "2024-05-28T12": 0.0296799929, + "2024-05-28T13": 0.02989008, + "2024-05-28T14": 0.030319953499999996, + "2024-05-28T15": 0.031340512200000004, + "2024-05-29": 0.029951248956831877, + "2024-05-28T20": 0.0303801982, + "2024-05-28T22": 0.030441967599999998, + "2024-05-28T21": 0.030390136699999997, + "2024-05-28T19": 0.030332644900000004, + "2024-05-29T02": 0.0301092572, + "2024-05-28T17": 0.030339630000000003, + "2024-05-28T18": 0.0300923375, + "2024-05-28T23": 0.030360825600000002, + "2024-05-29T00": 0.030334327378947132, + "2024-05-29T01": 0.0302433612, + "2024-05-28T16": 0.030599028604066155, + "2024-05-29T06": 0.0303931797, + "2024-05-29T05": 0.0304340454, + "2024-05-29T03": 0.030317829, + "2024-05-29T07": 0.030247297600000004, + "2024-05-29T04": 0.030400835032455924, + "2024-05-29T08": 0.02999997, + "2024-05-29T09": 0.0298425196, + "2024-05-29T10": 0.0299409291, + "2024-05-29T11": 0.0299902802, + "2024-05-29T12": 0.0298210455, + "2024-05-29T13": 0.0297867482, + "2024-05-29T14": 0.0297979332, + "2024-05-29T15": 0.0298009152, + "2024-05-29T18": 0.0297913728, + "2024-05-29T17": 0.029843117, + "2024-05-29T23": 0.029474588000000003, + "2024-05-29T19": 0.029730835200000003, + "2024-05-29T22": 0.029517389831308603, + "2024-05-29T20": 0.029583054900000003, + "2024-05-29T16": 0.0296295415, + "2024-05-29T21": 0.029460279232457358, + "2024-05-30": 0.029544936535681115, + "2024-05-30T00": 0.029513358, + "2024-05-30T05": 0.0294108544, + "2024-05-30T02": 0.0295541961, + "2024-05-30T01": 0.029527855555432976, + "2024-05-30T06": 0.029226600000000002, + "2024-05-30T07": 0.029171902200000002, + "2024-05-30T03": 0.029534516, + "2024-05-30T04": 0.029484871200000002, + "2024-05-30T08": 0.029052557999999996, + "2024-05-30T09": 0.029602227999999998, + "2024-05-30T10": 0.0297048428, + "2024-05-30T11": 0.029905756699999998, + "2024-05-30T12": 0.02949699729818247, + "2024-05-30T13": 0.029512282, + "2024-05-30T14": 0.029786292, + "2024-05-30T15": 0.029588160000000002, + "2024-05-30T21": 0.028934212, + "2024-05-30T20": 0.0290544786, + "2024-05-30T18": 0.0297022754, + "2024-05-30T22": 0.028909878000000003, + "2024-05-30T16": 0.0296293296, + "2024-05-30T17": 0.029718702599999997, + "2024-05-30T19": 0.0295746756, + "2024-05-31": 0.02861536142304136, + "2024-05-30T23": 0.029019839500000002, + "2024-05-31T03": 0.029066041600000002, + "2024-05-31T07": 0.028931318, + "2024-05-31T06": 0.02889133, + "2024-05-31T04": 0.029046632399999998, + "2024-05-31T02": 0.0291077696, + "2024-05-31T05": 0.0288481674, + "2024-05-31T00": 0.029011874400000002, + "2024-05-31T01": 0.029093016, + "2024-05-31T08": 0.0286708224, + "2024-05-31T09": 0.0285103032, + "2024-05-31T10": 0.028622816, + "2024-05-31T11": 0.0285725601, + "2024-05-31T12": 0.0287624442, + "2024-05-31T13": 0.0286222432, + "2024-05-31T14": 0.028473760700000003, + "2024-06-01": 0.028775442919426613, + "2024-06-01T08": 0.028456361599999997, + "2024-06-01T02": 0.028381305900000004, + "2024-06-01T05": 0.028367855799999998, + "2024-05-31T21": 0.028586514599999998, + "2024-06-01T00": 0.028470930000000002, + "2024-05-31T18": 0.028569112, + "2024-05-31T15": 0.0284163948, + "2024-05-31T23": 0.0285011847, + "2024-05-31T22": 0.028547133000000002, + "2024-06-01T01": 0.0284612251, + "2024-06-01T07": 0.02827740458452069, + "2024-06-01T04": 0.0283581474, + "2024-05-31T19": 0.0285522612, + "2024-06-01T06": 0.0283176114, + "2024-05-31T20": 0.028606491199999997, + "2024-05-31T17": 0.0285568502, + "2024-05-31T16": 0.0282670851, + "2024-06-01T03": 0.028337312, + "2024-06-01T09": 0.028685022299999998, + "2024-06-01T10": 0.0288945504, + "2024-06-02": 0.02885950285660555, + "2024-06-01T13": 0.029013864, + "2024-06-01T15": 0.0291205585, + "2024-06-01T18": 0.029144038700000003, + "2024-06-01T12": 0.028784935299999998, + "2024-06-01T21": 0.029044127700000002, + "2024-06-01T20": 0.0291140654, + "2024-06-02T01": 0.02912668, + "2024-06-01T17": 0.029156656, + "2024-06-01T11": 0.028646699512762046, + "2024-06-02T00": 0.028966807999999997, + "2024-06-01T23": 0.028965938299999997, + "2024-06-01T14": 0.029168172, + "2024-06-01T22": 0.0290547004, + "2024-06-01T19": 0.0291340476, + "2024-06-01T16": 0.0291334644, + "2024-06-02T13": 0.028829228, + "2024-06-02T11": 0.028933033092077422, + "2024-06-02T07": 0.0290264695, + "2024-06-02T05": 0.0290156064, + "2024-06-02T08": 0.0290090984, + "2024-06-02T04": 0.0291263885, + "2024-06-02T10": 0.0288086658, + "2024-06-02T12": 0.0288395094, + "2024-06-02T02": 0.029275388, + "2024-06-02T16": 0.028718055009347244, + "2024-06-02T17": 0.028321579, + "2024-06-02T03": 0.029205154499999997, + "2024-06-02T09": 0.028818658400000002, + "2024-06-02T15": 0.028796079399999997, + "2024-06-02T06": 0.02897535, + "2024-06-02T18": 0.0280029078, + "2024-06-02T14": 0.0288888957, + "2024-06-03": 0.029025597878865154, + "2024-06-03T01": 0.0297497564, + "2024-06-02T20": 0.028463481599999996, + "2024-06-03T00": 0.029613703499999998, + "2024-06-02T21": 0.02851497015844982, + "2024-06-02T23": 0.0289943346, + "2024-06-02T19": 0.028333273500000002, + "2024-06-02T22": 0.028784448, + "2024-06-03T02": 0.0298563948, + "2024-06-03T05": 0.029802107999999997, + "2024-06-03T06": 0.0296610048, + "2024-06-03T04": 0.029682774, + "2024-06-03T03": 0.029582536000000003, + "2024-06-03T07": 0.029631024 + }, + "USD celo": { + "2023-07-30": 0.49608931016044683, + "2023-10-23": 0.4474431312169951, + "2023-07-27": 0.4865238781206223, + "2023-07-10": 0.48901908103248604, + "2023-08-20": 0.42905709000000003, + "2024-02-23": 0.8118231982873355, + "2024-04-05": 1.0721335553252223, + "2023-12-19": 0.6167300667909691, + "2024-05-17": 0.8450169576074298, + "2023-08-06": 0.49836095947413206, + "2023-12-02": 0.5545368160396899, + "2023-10-31": 0.49174768467599456, + "2023-08-29": 0.4438313418332944, + "2023-06-20": 0.4050435035653992, + "2023-09-09": 0.4368716095558815, + "2023-06-26": 0.4840482941142995, + "2023-10-01": 0.4586367241108352, + "2024-03-07": 1.2051732840591902, + "2023-10-12": 0.4114816274794115, + "2024-04-22": 0.8694328664677337, + "2023-07-05": 0.5250167371510536, + "2023-07-29": 0.4957902236346834, + "2024-04-26": 0.8155876791036281, + "2024-01-08": 0.6978876373866258, + "2023-05-29": 0.5261391289735969, + "2023-10-07": 0.44324407932696025, + "2023-09-26": 0.4614539028745903, + "2023-08-24": 0.42701393392957815, + "2023-12-05": 0.5809370553979063, + "2024-02-19": 0.7810891073498681, + "2024-01-07": 0.7160111010282102, + "2024-04-28": 0.8517089782495663, + "2023-07-31": 0.5199008014780315, + "2023-10-18": 0.4121518929602221, + "2024-05-19": 0.8332386164168979, + "2024-05-12": 0.781799521360848, + "2024-04-29": 0.8070013533466907, + "2023-08-25": 0.42161255123572505, + "2024-03-09": 1.2184281893961046, + "2023-07-12": 0.49599789065054894, + "2023-09-05": 0.42674806637346974, + "2023-06-07": 0.47542579950104213, + "2023-09-16": 0.44404575686026704, + "2024-04-25": 0.8183043408872848, + "2023-08-12": 0.5238504270333766, + "2023-06-06": 0.47799088090782743, + "2023-09-01": 0.4258294323578101, + "2023-09-08": 0.4294282113924009, + "2024-03-22": 1.084738688521362, + "2023-08-10": 0.5028915676763648, + "2023-12-07": 0.5815436745887865, + "2023-11-18": 0.5382102635077818, + "2023-07-13": 0.5040590124929263, + "2023-09-13": 0.4239605520819629, + "2023-06-17": 0.4107657332435705, + "2023-07-17": 0.570090991518014, + "2023-07-07": 0.5004319775509947, + "2023-09-07": 0.4247490339388458, + "2024-03-26": 1.2755622015162633, + "2024-05-14": 0.7399410755554222, + "2024-02-22": 0.762770019386126, + "2024-04-15": 0.7966635996387634, + "2023-12-30": 0.8012984176541755, + "2023-09-17": 0.43379556768881394, + "2024-04-17": 0.7762163511526714, + "2024-02-12": 0.71517875, + "2023-10-26": 0.4786840828370347, + "2024-01-03": 0.8228355119698848, + "2024-05-07": 0.7993999172599964, + "2023-06-01": 0.5150669752294461, + "2024-01-22": 0.6594010063848468, + "2023-06-12": 0.41601698518136293, + "2023-10-03": 0.4465004443358401, + "2024-05-26": 0.8850661397830045, + "2024-04-30": 0.7587369769028572, + "2023-06-19": 0.39287908358123724, + "2023-07-09": 0.5013896272023817, + "2023-12-24": 0.7253660874913473, + "2023-09-24": 0.46402784, + "2024-01-16": 0.753487044222641, + "2023-10-17": 0.419871502321351, + "2024-04-24": 0.8800809049537003, + "2024-03-18": 1.1745984272402599, + "2024-02-17": 0.739156608155371, + "2023-12-27": 0.8131334525052494, + "2023-07-23": 0.4957536007280226, + "2023-09-03": 0.4205433358608247, + "2024-02-24": 0.8238552822009582, + "2024-01-06": 0.6824823911893352, + "2024-03-20": 1.078104924946478, + "2023-11-21": 0.5167128370874495, + "2023-12-25": 0.7211324174426722, + "2023-09-22": 0.44696531052165456, + "2023-10-02": 0.45611450049782853, + "2024-03-27": 1.3101744700907314, + "2024-05-06": 0.8220411000000001, + "2023-08-30": 0.4502659073836889, + "2023-10-06": 0.43548564211892726, + "2023-10-13": 0.4129551799081369, + "2023-06-28": 0.44369915569151747, + "2024-02-05": 0.6761161365503975, + "2024-03-01": 1.1468761865943629, + "2023-07-15": 0.5047595926571102, + "2023-06-25": 0.5191650120609107, + "2023-12-10": 0.6101688913362635, + "2023-11-23": 0.5203811028251495, + "2023-08-04": 0.4915535403720114, + "2024-05-13": 0.7668965694853838, + "2024-01-13": 0.7910523911604066, + "2024-03-28": 1.2918359261215688, + "2023-08-05": 0.4844003224351741, + "2024-02-09": 0.725014340261592, + "2023-10-09": 0.42108343095233747, + "2024-01-09": 0.6986981090620751, + "2024-05-10": 0.8448856202824547, + "2023-05-27": 0.5181593107994255, + "2023-08-18": 0.41883259098318165, + "2023-11-05": 0.5907465852818524, + "2024-04-18": 0.7858006719299254, + "2023-10-22": 0.42899152393963735, + "2023-11-01": 0.4860984602586997, + "2024-05-20": 0.8359354523260755, + "2023-12-08": 0.6013903733181428, + "2024-04-12": 0.9637364492127536, + "2023-07-06": 0.5100190793202722, + "2024-03-12": 1.551752455445999, + "2023-09-11": 0.4015419111271988, + "2024-03-03": 1.1515103210545048, + "2024-02-04": 0.6667464755424684, + "2024-01-28": 0.6999299999999999, + "2023-07-01": 0.46794434238180316, + "2023-11-07": 0.5404763554682922, + "2023-11-25": 0.5513283496469998, + "2023-06-04": 0.5511632957012941, + "2024-02-25": 0.8998518063091353, + "2023-12-01": 0.5415149350032009, + "2023-07-14": 0.5161845463477899, + "2024-01-26": 0.6551054883759361, + "2023-08-03": 0.5181942748421764, + "2024-02-28": 0.9600049208717718, + "2023-09-15": 0.4242078263163557, + "2023-07-18": 0.5350411868148258, + "2023-12-21": 0.6220163856362027, + "2023-07-20": 0.5054123740050829, + "2024-03-06": 1.1181421309533877, + "2023-09-30": 0.4515104173667221, + "2023-12-12": 0.5588446785283699, + "2024-02-13": 0.7365903161759302, + "2023-09-20": 0.4546318332453726, + "2023-09-19": 0.4563824310912196, + "2023-09-29": 0.4479507224074646, + "2023-09-12": 0.42089406322391, + "2023-06-13": 0.41495864919443176, + "2023-10-04": 0.4295844985852254, + "2023-07-08": 0.4970437012857405, + "2024-04-16": 0.7647675981143065, + "2024-03-02": 1.14076957840731, + "2023-06-27": 0.4660294155134789, + "2023-10-08": 0.43625564888418356, + "2023-11-20": 0.5456105290446963, + "2023-12-20": 0.6209607847279132, + "2023-12-31": 0.781316747684629, + "2023-11-06": 0.5482869361432784, + "2023-08-22": 0.4191453796838201, + "2023-06-09": 0.47403516795451783, + "2024-03-17": 1.2043357205647582, + "2023-09-18": 0.44207537685978526, + "2024-04-01": 1.2471737319278071, + "2024-05-21": 0.904958562601044, + "2024-01-19": 0.6762756785115073, + "2023-11-11": 0.5539697381068899, + "2023-09-23": 0.4513999943530568, + "2023-11-19": 0.5372614192041784, + "2023-07-02": 0.5309994687201004, + "2023-08-15": 0.48817433600000004, + "2024-01-25": 0.6446943393879475, + "2024-03-13": 1.4792337954608923, + "2024-01-21": 0.6955813274482815, + "2024-02-01": 0.6496157009478687, + "2023-06-15": 0.3923744459341066, + "2024-03-16": 1.2952651976477256, + "2023-11-27": 0.5157871502978534, + "2024-01-10": 0.6962323773556184, + "2024-03-15": 1.303868753465173, + "2023-06-21": 0.4439837549589757, + "2024-01-02": 0.8285456947501161, + "2023-07-11": 0.49281533606656996, + "2023-10-25": 0.4728536955490199, + "2024-01-01": 0.7780947708675843, + "2024-02-14": 0.7593587390993924, + "2023-09-04": 0.4255443917025013, + "2023-09-06": 0.42695145517857985, + "2024-04-03": 1.0767933861259598, + "2023-11-28": 0.5165959762315369, + "2023-12-03": 0.5507016998125488, + "2023-08-02": 0.4909477523050605, + "2023-08-27": 0.4243974511965103, + "2023-10-20": 0.41918436, + "2023-10-10": 0.4200343541425903, + "2024-05-03": 0.7909641500215971, + "2024-03-08": 1.1565623499858342, + "2024-04-11": 1.0556374306151861, + "2023-06-22": 0.45444297632022956, + "2024-01-14": 0.7864032930285642, + "2023-12-15": 0.5824230385809811, + "2023-10-19": 0.4096297058798661, + "2024-02-08": 0.7148349200568632, + "2023-11-08": 0.544426161904964, + "2023-11-12": 0.5725394280336685, + "2023-12-22": 0.6661853027199376, + "2023-05-31": 0.5010892785307955, + "2024-03-23": 1.0805466074926473, + "2023-09-27": 0.444188981035758, + "2024-03-04": 1.1056139156510632, + "2023-09-10": 0.41889529596612535, + "2024-04-13": 0.8321820379868622, + "2024-02-29": 1.0491605763075387, + "2023-07-21": 0.4997244559826459, + "2023-06-30": 0.4419071375282801, + "2023-12-29": 0.83782432795763, + "2023-12-04": 0.5611372235802379, + "2024-04-10": 1.0587991478487486, + "2024-05-08": 0.8021105687735228, + "2023-09-21": 0.4541777227294203, + "2023-06-02": 0.5351178253089682, + "2024-04-21": 0.8537319318746162, + "2023-07-22": 0.4977948252683844, + "2023-10-11": 0.4118044651323587, + "2024-03-21": 1.1634811621193122, + "2023-07-19": 0.5061713189336164, + "2024-05-05": 0.8083162276870893, + "2024-05-23": 0.8675996879142527, + "2024-04-08": 1.1594871643514963, + "2024-05-18": 0.8627376844299323, + "2023-06-14": 0.4093181109304035, + "2023-10-05": 0.4310535901492286, + "2023-10-16": 0.4244844906775213, + "2024-05-22": 0.8838670383555076, + "2024-02-10": 0.7157844551170898, + "2024-04-07": 1.0966862250469946, + "2024-02-20": 0.7600021432836706, + "2023-11-17": 0.5450501024326957, + "2023-12-11": 0.5617730095296181, + "2023-11-26": 0.542439778457949, + "2023-11-16": 0.5612344858409619, + "2023-06-29": 0.4331957151982174, + "2023-10-27": 0.4680457347666114, + "2023-06-11": 0.413178235285595, + "2024-02-02": 0.6736558588676018, + "2023-09-14": 0.42531640259685827, + "2024-01-27": 0.6609223556576961, + "2024-03-30": 1.2308204254286714, + "2023-11-22": 0.5019145389920525, + "2023-09-28": 0.4462876735206425, + "2023-06-03": 0.5577805637233151, + "2024-01-18": 0.7082371585476132, + "2023-08-26": 0.42776996531735123, + "2024-02-15": 0.7606842130558734, + "2023-10-28": 0.46877030500000005, + "2024-03-24": 1.085249388455266, + "2024-04-27": 0.8161184116001643, + "2023-12-06": 0.5725817597227805, + "2024-01-30": 0.6751557379333494, + "2023-11-14": 0.5391076627591131, + "2023-08-09": 0.5057267908864469, + "2024-05-15": 0.7542415324491558, + "2023-11-10": 0.5421159109953513, + "2024-01-23": 0.6083913348954214, + "2024-01-31": 0.6617352000000001, + "2024-05-11": 0.7837099012583825, + "2024-01-11": 0.7444232891140565, + "2024-02-18": 0.7561572299363954, + "2023-06-16": 0.397597099331665, + "2023-10-30": 0.5041457822204429, + "2023-12-17": 0.6413746919126486, + "2024-02-26": 0.9167063516197774, + "2023-07-16": 0.5201716138052661, + "2024-01-05": 0.7145304686726812, + "2023-08-23": 0.4223991334346136, + "2024-03-11": 1.6488669437329835, + "2023-08-01": 0.4917882254151999, + "2024-03-14": 1.4211123429299708, + "2024-02-21": 0.723, + "2023-08-28": 0.4212635579228243, + "2023-07-04": 0.5820651273647771, + "2023-12-13": 0.5452521898092189, + "2024-02-27": 0.9405857195723064, + "2023-08-13": 0.5143516767479245, + "2024-03-31": 1.235065307008333, + "2023-12-09": 0.6206793740905013, + "2024-04-02": 1.0893829583574062, + "2024-02-06": 0.689747802916761, + "2024-04-09": 1.123861600140488, + "2023-11-04": 0.5952974999999999, + "2024-04-20": 0.8233810425840075, + "2024-01-15": 0.7600957051737898, + "2023-07-03": 0.6387807955508971, + "2023-12-28": 0.8283576686948968, + "2023-05-30": 0.5191403680742788, + "2024-05-25": 0.8721470283403194, + "2024-02-07": 0.7096053143860971, + "2023-09-25": 0.4698892632087961, + "2024-03-19": 1.0686682768770464, + "2024-03-10": 1.1881471951010039, + "2024-05-02": 0.7779187832507719, + "2023-09-02": 0.4182151177907972, + "2024-01-12": 0.7825615636189891, + "2024-04-19": 0.8023891770156145, + "2023-11-29": 0.5271498659143798, + "2023-10-15": 0.4190013237887062, + "2024-05-28": 0.8896343379650568, + "2023-11-30": 0.5330881563466202, + "2024-01-24": 0.623624557494865, + "2023-08-11": 0.5128024511480698, + "2024-02-11": 0.7162720903390865, + "2023-06-08": 0.4690469, + "2023-11-15": 0.5511872993450414, + "2023-12-16": 0.5887478613667158, + "2024-03-29": 1.261813036434553, + "2024-04-04": 1.0823346823578357, + "2023-06-10": 0.3971817271818788, + "2023-07-28": 0.4858684661699492, + "2024-01-20": 0.681329558, + "2023-10-21": 0.4281669053859205, + "2023-08-16": 0.4592575293829477, + "2024-05-24": 0.8580407540207342, + "2023-11-03": 0.5746692770426294, + "2023-08-31": 0.45655462910171674, + "2024-05-27": 0.8903897321204212, + "2024-01-04": 0.7596870143339028, + "2023-07-26": 0.4799403281603534, + "2023-11-13": 0.5632134354666756, + "2023-10-24": 0.4738062583228598, + "2024-03-25": 1.1576704201151287, + "2023-08-07": 0.4920834536732793, + "2023-10-29": 0.47208991027480024, + "2024-01-29": 0.6569215916059358, + "2024-05-04": 0.8123544452666952, + "2023-06-05": 0.4975930857000091, + "2023-11-02": 0.5757862090374456, + "2023-12-18": 0.6264980421408549, + "2023-11-24": 0.5327063175074829, + "2023-08-21": 0.4236966162740127, + "2023-07-25": 0.47555048206273404, + "2024-05-16": 0.8096104854543332, + "2023-08-14": 0.5016972402749402, + "2024-05-01": 0.7383613007209763, + "2024-03-05": 1.0518848302624484, + "2024-04-06": 1.0779428930546087, + "2023-12-23": 0.6933906286145015, + "2024-02-03": 0.6687267416717856, + "2024-02-16": 0.763373083471905, + "2023-05-28": 0.5341488718777866, + "2023-12-14": 0.5840918387866908, + "2023-06-24": 0.47722492029019825, + "2023-12-26": 0.7419408438251037, + "2023-11-09": 0.5573223278464312, + "2023-08-19": 0.42258305470755875, + "2024-05-09": 0.8161716585588523, + "2024-01-17": 0.7288586584550799, + "2023-06-23": 0.44250001166883646, + "2023-06-18": 0.3998966408510818, + "2024-04-23": 0.8642080214286026, + "2023-08-08": 0.4991705296273845, + "2023-08-17": 0.4496688304392318, + "2024-04-14": 0.7769460950002492, + "2023-07-24": 0.4721385154951664, + "2023-10-14": 0.4168685604236176, + "2024-05-22T20": 0.8783945799999999, + "2024-05-25T08": 0.862563469, + "2024-05-22T05": 0.888704442, + "2024-05-28T03": 0.8698123050000001, + "2024-05-22T16": 0.8852874799999999, + "2024-05-25T05": 0.8705516400000001, + "2024-05-24T22": 0.8634790960000001, + "2024-05-27T14": 0.887260712, + "2024-05-22T03": 0.895211966, + "2024-05-23T17": 0.848680011, + "2024-05-24T23": 0.8633445700000001, + "2024-05-26T19": 0.88302291, + "2024-05-26T18": 0.88154136, + "2024-05-26T10": 0.887071662, + "2024-05-27T16": 0.90710108, + "2024-05-24T12": 0.8559546720000001, + "2024-05-26T01": 0.89431056, + "2024-05-21T17": 0.9112711560000001, + "2024-05-23T07": 0.878963505, + "2024-05-22T08": 0.8918216, + "2024-05-23T09": 0.869912834, + "2024-05-24T18": 0.8653671000000001, + "2024-05-23T01": 0.8740540050000001, + "2024-05-25T15": 0.88681131, + "2024-05-23T16": 0.846215708, + "2024-05-25T03": 0.865544981, + "2024-05-28T06": 0.861341352, + "2024-05-25T23": 0.8907485470000001, + "2024-05-24T13": 0.8569855, + "2024-05-26T03": 0.88490265, + "2024-05-26T00": 0.8927839230000001, + "2024-05-25T06": 0.8637806539727051, + "2024-05-27T04": 0.8997228939999999, + "2024-05-22T10": 0.8895042660000001, + "2024-05-27T09": 0.885850432, + "2024-05-24T17": 0.856440144, + "2024-05-26T16": 0.887926914, + "2024-05-22T09": 0.8893221, + "2024-05-24T21": 0.864022231, + "2024-05-25T04": 0.87305064, + "2024-05-27T22": 0.891789446, + "2024-05-27T11": 0.8876493160000001, + "2024-05-23T21": 0.8511611499999999, + "2024-05-23T10": 0.86789613, + "2024-05-23T14": 0.848983794, + "2024-05-27T02": 0.891373779, + "2024-05-25T18": 0.8899774500000001, + "2024-05-27T05": 0.889672752, + "2024-05-22T23": 0.8772050800000001, + "2024-05-28T01": 0.8713024, + "2024-05-22T04": 0.884261185, + "2024-05-22T15": 0.884943292, + "2024-05-24T03": 0.865744899, + "2024-05-24T08": 0.8447564182052736, + "2024-05-21T22": 0.901638449, + "2024-05-21T16": 0.909408786, + "2024-05-21T23": 0.8998195630045286, + "2024-05-24T02": 0.8624783016440037, + "2024-05-26T07": 0.8802741780000001, + "2024-05-27T07": 0.87848139, + "2024-05-25T22": 0.8898398000000001, + "2024-05-24T16": 0.85314153, + "2024-05-27T20": 0.8922889359999999, + "2024-05-22T02": 0.897938342, + "2024-05-24T06": 0.847826792, + "2024-05-24T11": 0.8507892199999999, + "2024-05-25T21": 0.88962204, + "2024-05-27T15": 0.8949296980000001, + "2024-05-21T19": 0.8978036269999999, + "2024-05-22T19": 0.878915389, + "2024-05-21T12": 0.909090861, + "2024-05-23T20": 0.8221828999999999, + "2024-05-23T08": 0.8739927900000001, + "2024-05-22T22": 0.8792481600000001, + "2024-05-26T11": 0.8883377984428524, + "2024-05-24T01": 0.8636944252206155, + "2024-05-23T05": 0.878255144, + "2024-05-28T04": 0.8565742439999999, + "2024-05-25T09": 0.862489392, + "2024-05-27T18": 0.9023876670000001, + "2024-05-24T10": 0.8520985980111283, + "2024-05-25T19": 0.8914770750000001, + "2024-05-24T07": 0.8478625320000001, + "2024-05-26T04": 0.8790713819999999, + "2024-05-26T09": 0.8791481999999999, + "2024-05-23T02": 0.8770437, + "2024-05-27T06": 0.882876016, + "2024-05-28T08": 0.8660407039309996, + "2024-05-24T15": 0.8649673, + "2024-05-25T20": 0.8904773250000001, + "2024-05-27T08": 0.88137086, + "2024-05-23T22": 0.8548696520000001, + "2024-05-26T15": 0.90035946, + "2024-05-24T20": 0.8637540093852718, + "2024-05-21T20": 0.904101548, + "2024-05-25T13": 0.869278284, + "2024-05-22T01": 0.900091976, + "2024-05-25T17": 0.888904398, + "2024-05-27T10": 0.8847599669999999, + "2024-05-21T21": 0.8983023299999999, + "2024-05-24T19": 0.861332904, + "2024-05-26T02": 0.8852026169999999, + "2024-05-27T19": 0.891398777, + "2024-05-25T11": 0.872569095, + "2024-05-27T17": 0.9059658930000001, + "2024-05-21T18": 0.9101629119999999, + "2024-05-26T06": 0.876601854, + "2024-05-23T00": 0.877734554, + "2024-05-22T00": 0.902937442, + "2024-05-24T05": 0.85432986, + "2024-05-23T15": 0.846689944, + "2024-05-22T13": 0.872504014, + "2024-05-21T10": 0.9074484526056789, + "2024-05-22T12": 0.873051556, + "2024-05-23T04": 0.8790546480000001, + "2024-05-26T08": 0.8771314499999999, + "2024-05-26T13": 0.891814528, + "2024-05-28T05": 0.8632347969999999, + "2024-05-22T18": 0.87539494, + "2024-05-22T06": 0.8953029899999999, + "2024-05-21T08": 0.8984775060942582, + "2024-05-22T17": 0.883958544, + "2024-05-23T19": 0.840825728, + "2024-05-25T07": 0.862763391, + "2024-05-26T22": 0.887227208, + "2024-05-25T16": 0.888175638, + "2024-05-26T05": 0.87593714, + "2024-05-24T04": 0.8668143119999999, + "2024-05-21T14": 0.9165708, + "2024-05-25T12": 0.8700390929999999, + "2024-05-28T07": 0.86279193, + "2024-05-23T18": 0.8368079725740518, + "2024-05-26T23": 0.8817765439999999, + "2024-05-24T09": 0.8476184, + "2024-05-23T03": 0.8794104, + "2024-05-26T14": 0.894351067, + "2024-05-21T13": 0.9177164200000001, + "2024-05-22T14": 0.879362508, + "2024-05-25T14": 0.875738694, + "2024-05-25T00": 0.864501119, + "2024-05-23T23": 0.854923668, + "2024-05-21T11": 0.913953166, + "2024-05-23T13": 0.85989893, + "2024-05-22T11": 0.8864404120000001, + "2024-05-21T15": 0.904982752, + "2024-05-28T00": 0.8794958399999999, + "2024-05-27T23": 0.8892524, + "2024-05-28T02": 0.86136212, + "2024-05-26T21": 0.8792601500000001, + "2024-05-26T12": 0.8958132480000001, + "2024-05-23T06": 0.8750483720000001, + "2024-05-22T07": 0.890139746, + "2024-05-27T12": 0.88408071, + "2024-05-22T21": 0.875875806, + "2024-05-24T00": 0.8648106600000001, + "2024-05-25T02": 0.863609964, + "2024-05-27T00": 0.8805595, + "2024-05-26T20": 0.882061614, + "2024-05-26T17": 0.883922424, + "2024-05-27T13": 0.891038292, + "2024-05-23T12": 0.8779695839999999, + "2024-05-25T10": 0.867265775, + "2024-05-21T09": 0.9018196, + "2024-05-23T11": 0.88065945, + "2024-05-24T14": 0.862287341, + "2024-05-25T01": 0.8638272, + "2024-05-27T21": 0.8950950400000001, + "2024-05-27T03": 0.8952714780000001, + "2024-05-27T01": 0.889064145, + "latest": 0.826037, + "2024-05-28T09": 0.87010287, + "2024-05-28T10": 0.8756706256750352, + "2024-05-28T11": 0.8737166540000001, + "2024-05-28T12": 0.8707196840000001, + "2024-05-28T13": 0.8695295999999999, + "2024-05-28T14": 0.865342462, + "2024-05-28T15": 0.8653857719999999, + "2024-05-29": 0.8659512259474542, + "2024-05-28T20": 0.880835934, + "2024-05-28T22": 0.875094172, + "2024-05-28T21": 0.878247986, + "2024-05-28T19": 0.8716265790000001, + "2024-05-29T02": 0.86761413, + "2024-05-28T17": 0.8684307, + "2024-05-28T18": 0.860023625, + "2024-05-28T23": 0.8708631680000001, + "2024-05-29T00": 0.873867618, + "2024-05-29T01": 0.8667711455678984, + "2024-05-28T16": 0.864990805, + "2024-05-29T06": 0.8800338689999999, + "2024-05-29T05": 0.8768640780000001, + "2024-05-29T03": 0.869777058, + "2024-05-29T07": 0.875153812, + "2024-05-29T04": 0.875257203, + "2024-05-29T08": 0.8694297, + "2024-05-29T09": 0.878391136, + "2024-05-29T10": 0.877348146, + "2024-05-29T11": 0.8717361260000001, + "2024-05-29T12": 0.8669582339999999, + "2024-05-29T13": 0.864225378, + "2024-05-29T14": 0.860562712, + "2024-05-29T15": 0.8621478720000001, + "2024-05-29T18": 0.855477952, + "2024-05-29T17": 0.86242312, + "2024-05-29T23": 0.8461833599999999, + "2024-05-29T19": 0.8533628839999999, + "2024-05-29T22": 0.8476580539999999, + "2024-05-29T20": 0.8477278650000001, + "2024-05-29T16": 0.8570082560000001, + "2024-05-29T21": 0.8472452633790127, + "2024-05-30": 0.8402370463443434, + "2024-05-30T00": 0.846349224, + "2024-05-30T05": 0.8462613709999999, + "2024-05-30T02": 0.852467265, + "2024-05-30T01": 0.8458791638816187, + "2024-05-30T06": 0.83553104, + "2024-05-30T07": 0.830184966, + "2024-05-30T03": 0.85167676, + "2024-05-30T04": 0.8514091072852104, + "2024-05-30T08": 0.82180662, + "2024-05-30T09": 0.8275476617323819, + "2024-05-30T10": 0.82857721, + "2024-05-30T11": 0.8314259989999999, + "2024-05-30T12": 0.8333328, + "2024-05-30T13": 0.83819678, + "2024-05-30T14": 0.842412312, + "2024-05-30T15": 0.83756484, + "2024-05-30T21": 0.8353329, + "2024-05-30T20": 0.840440286, + "2024-05-30T18": 0.85077874, + "2024-05-30T22": 0.8317088, + "2024-05-30T16": 0.843996052, + "2024-05-30T17": 0.847577798, + "2024-05-30T19": 0.847747378, + "2024-05-31": 0.8224786149217075, + "2024-05-30T23": 0.830009395, + "2024-05-31T03": 0.82910184, + "2024-05-31T07": 0.8238527700000001, + "2024-05-31T06": 0.8252523500000001, + "2024-05-31T04": 0.8299180620000001, + "2024-05-31T02": 0.8270524920000001, + "2024-05-31T05": 0.8195638409999999, + "2024-05-31T00": 0.82276956, + "2024-05-31T01": 0.8248019999999999, + "2024-05-31T08": 0.823036544, + "2024-05-31T09": 0.81722205, + "2024-05-31T10": 0.81960794, + "2024-05-31T11": 0.821598519, + "2024-05-31T12": 0.829093944, + "2024-05-31T13": 0.8226896160000001, + "2024-05-31T14": 0.8160345950000001, + "2024-06-01": 0.8196080807203728, + "2024-06-01T08": 0.820918072, + "2024-06-01T02": 0.818672305, + "2024-06-01T05": 0.82185845, + "2024-05-31T21": 0.822836154, + "2024-06-01T00": 0.8170657419999999, + "2024-05-31T18": 0.818015588, + "2024-05-31T15": 0.817920562, + "2024-05-31T23": 0.8214694770000001, + "2024-05-31T22": 0.82385148, + "2024-06-01T01": 0.8175734160000001, + "2024-06-01T07": 0.8209440143689823, + "2024-06-01T04": 0.8210897159334193, + "2024-05-31T19": 0.821314432, + "2024-06-01T06": 0.820851015, + "2024-05-31T20": 0.822336739, + "2024-05-31T17": 0.81533904, + "2024-05-31T16": 0.807145682, + "2024-06-01T03": 0.819344, + "2024-06-01T09": 0.819086774, + "2024-06-01T10": 0.8202198326115214, + "2024-06-02": 0.816787518683243, + "2024-06-01T13": 0.81846272, + "2024-06-01T15": 0.824866043, + "2024-06-01T18": 0.8214682420000001, + "2024-06-01T12": 0.819086774, + "2024-06-01T21": 0.8203692210000001, + "2024-06-01T20": 0.820169399, + "2024-06-02T01": 0.8228565363806103, + "2024-06-01T17": 0.82174208, + "2024-06-01T11": 0.819478224, + "2024-06-02T00": 0.8171457599999999, + "2024-06-01T23": 0.817520894, + "2024-06-01T14": 0.821503584, + "2024-06-01T22": 0.8204855560000001, + "2024-06-01T19": 0.819170289, + "2024-06-01T16": 0.8235498870000001, + "2024-06-02T13": 0.8162119039999999, + "2024-06-02T11": 0.813222202, + "2024-06-02T07": 0.81533904, + "2024-06-02T05": 0.820410276, + "2024-06-02T08": 0.8158324505588437, + "2024-06-02T04": 0.8214340990000001, + "2024-06-02T10": 0.810499786, + "2024-06-02T12": 0.8188375128856771, + "2024-06-02T02": 0.820909856, + "2024-06-02T16": 0.81733742, + "2024-06-02T17": 0.808174345, + "2024-06-02T03": 0.82090164, + "2024-06-02T09": 0.811099342, + "2024-06-02T15": 0.819619151, + "2024-06-02T06": 0.819602745, + "2024-06-02T18": 0.8028550247069507, + "2024-06-02T14": 0.81740286, + "2024-06-03": 0.8035277464620489, + "2024-06-03T01": 0.808749676, + "2024-06-02T20": 0.803333796, + "2024-06-03T00": 0.799060275, + "2024-06-02T21": 0.8046842104790645, + "2024-06-02T23": 0.80406557, + "2024-06-02T19": 0.8057243420000001, + "2024-06-02T22": 0.803765732, + "2024-06-03T02": 0.820651173, + "2024-06-03T05": 0.8222063799999999, + "2024-06-03T06": 0.827170272, + "2024-06-03T04": 0.814427358, + "2024-06-03T03": 0.8195161999999999, + "2024-06-03T07": 0.8315674559999999 + }, + "USD cosmos": { + "2023-07-30": 9.047438864420018, + "2023-10-23": 6.733946874845574, + "2023-07-27": 8.99534828888074, + "2023-07-10": 9.293925874254281, + "2023-08-20": 7.794007308958912, + "2024-02-23": 9.851772965681617, + "2024-04-05": 10.872125736366009, + "2023-12-19": 10.6846975974307, + "2024-05-17": 8.647700048301136, + "2023-08-06": 8.501562048770655, + "2023-12-02": 9.525082365681579, + "2023-10-31": 7.943333873978431, + "2023-08-29": 7.29800002927292, + "2023-06-20": 8.582945082238885, + "2023-09-09": 6.850045834811594, + "2023-06-26": 9.32477067629179, + "2023-10-01": 7.3217972823129225, + "2024-03-07": 13.835012401259707, + "2023-10-12": 6.5454254696082055, + "2024-04-22": 8.884219023888473, + "2023-07-05": 9.50269729879377, + "2023-07-29": 9.04482217557154, + "2024-04-26": 8.282553167972337, + "2024-01-08": 9.495965462794816, + "2023-05-29": 10.845806551044962, + "2023-10-07": 6.934428768757504, + "2023-09-26": 7.028162066267011, + "2023-08-24": 7.35794850633787, + "2023-12-05": 9.629582281123866, + "2024-02-19": 10.628366404465314, + "2024-01-07": 9.777948760697697, + "2024-04-28": 8.362294470895774, + "2023-07-31": 8.982062300550362, + "2023-10-18": 6.3948674267924055, + "2024-05-19": 8.377027992145802, + "2024-05-12": 8.56337463789839, + "2024-04-29": 8.08901121121884, + "2023-08-25": 7.201610767044401, + "2024-03-09": 13.625722984188695, + "2023-07-12": 9.201798372613673, + "2023-09-05": 6.768727950059632, + "2023-06-07": 9.87089691477867, + "2023-09-16": 7.092806855095484, + "2024-04-25": 8.387321414103951, + "2023-08-12": 8.38440577991966, + "2023-06-06": 10.01386894563119, + "2023-09-01": 6.912159831387999, + "2023-09-08": 6.851967086257214, + "2024-03-22": 11.43188658187532, + "2023-08-10": 8.460270008564171, + "2023-12-07": 9.764619078609197, + "2023-11-18": 9.204535278852937, + "2023-07-13": 9.34024439116415, + "2023-09-13": 6.512170801460641, + "2023-06-17": 8.88194905807109, + "2023-07-17": 9.425155467665771, + "2023-07-07": 9.279645256322384, + "2023-09-07": 6.88136861938604, + "2024-03-26": 12.244401103660381, + "2024-05-14": 8.319182910197297, + "2024-02-22": 9.881794487216292, + "2024-04-15": 8.279691614610153, + "2023-12-30": 10.8092633958349, + "2023-09-17": 7.0397527529057555, + "2024-04-17": 8.11014339593089, + "2024-02-12": 9.762241825280334, + "2023-10-26": 7.152951387916232, + "2024-01-03": 10.18553178313707, + "2024-05-07": 9.229999044670713, + "2023-06-01": 10.35339138201788, + "2024-01-22": 9.36652092237671, + "2023-06-12": 8.640673381030133, + "2023-10-03": 7.177846602787016, + "2024-05-26": 8.4027153095649, + "2024-04-30": 7.930230954797292, + "2023-06-19": 8.537790991654887, + "2023-07-09": 9.407067860700382, + "2023-12-24": 11.527451730134088, + "2023-09-24": 7.068933145501894, + "2024-01-16": 10.339975963303434, + "2023-10-17": 6.504592064095537, + "2024-04-24": 8.70748827403247, + "2024-03-18": 12.000924787163417, + "2024-02-17": 10.213687811282863, + "2023-12-27": 11.708296492831384, + "2023-07-23": 9.290535610646652, + "2023-09-03": 6.833594353032443, + "2024-02-24": 10.32698971892523, + "2024-01-06": 9.909073059469216, + "2024-03-20": 11.187067940729527, + "2023-11-21": 8.828841788244096, + "2023-12-25": 11.587990783797421, + "2023-09-22": 7.146063110827219, + "2023-10-02": 7.403535146522609, + "2024-03-27": 12.47000485040029, + "2024-05-06": 9.369877451640992, + "2023-08-30": 7.299052284372761, + "2023-10-06": 6.885257134649369, + "2023-10-13": 6.608394480793959, + "2023-06-28": 9.254403486408266, + "2024-02-05": 9.039392953185342, + "2024-03-01": 11.357518366636558, + "2023-07-15": 9.742861022475443, + "2023-06-25": 9.59993564865826, + "2023-12-10": 10.39209376935472, + "2023-11-23": 8.838363410538639, + "2023-08-04": 8.604816974974012, + "2024-05-13": 8.500030250990871, + "2024-01-13": 10.08221210224093, + "2024-03-28": 12.361357670567555, + "2023-08-05": 8.423935236307031, + "2024-02-09": 9.987812812711491, + "2023-10-09": 6.737408817030294, + "2024-01-09": 9.773297047353568, + "2024-05-10": 9.033838067813216, + "2023-05-27": 10.52967893031559, + "2023-08-18": 7.5089549507929245, + "2023-11-05": 8.377167672100732, + "2024-04-18": 8.156810306204267, + "2023-10-22": 6.620958699546588, + "2023-11-01": 7.7190135591612785, + "2024-05-20": 8.331877116067144, + "2023-12-08": 10.03438094502124, + "2024-04-12": 10.402785711258016, + "2023-07-06": 9.367704096020477, + "2024-03-12": 13.388762277747821, + "2023-09-11": 6.4403292233893294, + "2024-03-03": 12.001474152071902, + "2024-02-04": 9.049741870368232, + "2024-01-28": 9.553596466828896, + "2023-07-01": 9.374380274669981, + "2023-11-07": 8.458373537995351, + "2023-11-25": 9.057526739965748, + "2023-06-04": 10.790604497409285, + "2024-02-25": 10.298097735987, + "2023-12-01": 9.39235285629245, + "2023-07-14": 10.006147088324166, + "2024-01-26": 9.551467727421956, + "2023-08-03": 8.692703632554691, + "2024-02-28": 11.38543682437042, + "2023-09-15": 6.83814027547024, + "2023-07-18": 9.270283536923495, + "2023-12-21": 10.82481623455219, + "2023-07-20": 9.315943891503165, + "2024-03-06": 12.447220730778701, + "2023-09-30": 7.22049732272155, + "2023-12-12": 11.183512641219105, + "2024-02-13": 10.06841733422792, + "2023-09-20": 7.317636954063554, + "2023-09-19": 7.391460172543481, + "2023-09-29": 7.128517326619828, + "2023-09-12": 6.426314334472576, + "2023-06-13": 8.732487618660965, + "2023-10-04": 6.969895652337666, + "2023-07-08": 9.18618345849851, + "2024-04-16": 8.059732135642387, + "2024-03-02": 11.946333503357996, + "2023-06-27": 9.318712679886454, + "2023-10-08": 6.915294153638585, + "2023-11-20": 9.37678748969673, + "2023-12-20": 10.679536244326387, + "2023-12-31": 10.856079362756597, + "2023-11-06": 8.558198262173772, + "2023-08-22": 7.3819763974954125, + "2023-06-09": 9.322184919186778, + "2024-03-17": 12.148218028275348, + "2023-09-18": 7.324338090654182, + "2024-04-01": 11.761325537629915, + "2024-05-21": 8.835231049213366, + "2024-01-19": 9.631259784560601, + "2023-11-11": 9.184796773896279, + "2023-09-23": 7.093637062244963, + "2023-11-19": 9.167075917979636, + "2023-07-02": 9.472618222291167, + "2023-08-15": 8.468687954874733, + "2024-01-25": 9.217357189107593, + "2024-03-13": 13.65719470646821, + "2024-01-21": 9.78656036594125, + "2024-02-01": 9.111759969476593, + "2023-06-15": 8.586975636170111, + "2024-03-16": 12.42658930781612, + "2023-11-27": 9.314360604644307, + "2024-01-10": 9.784688042518706, + "2024-03-15": 12.522624020340341, + "2023-06-21": 8.911015166275138, + "2024-01-02": 11.25394806413284, + "2023-07-11": 9.259276762573613, + "2023-10-25": 7.04958290269098, + "2024-01-01": 10.896003378873857, + "2024-02-14": 10.210215733604615, + "2023-09-04": 6.798685105973601, + "2023-09-06": 6.820352060899343, + "2024-04-03": 11.009805987745235, + "2023-11-28": 9.128112635461465, + "2023-12-03": 9.504868398652528, + "2023-08-02": 8.891766914735793, + "2023-08-27": 7.147667248029802, + "2023-10-20": 6.386351514752846, + "2023-10-10": 6.861715098142682, + "2024-05-03": 8.73445392588574, + "2024-03-08": 13.426967090174182, + "2024-04-11": 10.764131058012614, + "2023-06-22": 9.182777548315654, + "2024-01-14": 10.204881060515417, + "2023-12-15": 11.228160846797573, + "2023-10-19": 6.233986010667521, + "2024-02-08": 9.57779089046804, + "2023-11-08": 8.595292534924855, + "2023-11-12": 9.427819849547328, + "2023-12-22": 11.306110362255133, + "2023-05-31": 10.552443665939352, + "2024-03-23": 11.486461336234436, + "2023-09-27": 6.962421972010689, + "2024-03-04": 12.466454840714334, + "2023-09-10": 6.713321986664754, + "2024-04-13": 8.900400668072706, + "2024-02-29": 11.699867874109694, + "2023-07-21": 9.431251109239199, + "2023-06-30": 9.234082379752934, + "2023-12-29": 11.310663096335741, + "2023-12-04": 9.61176272804933, + "2024-04-10": 10.739235510372582, + "2024-05-08": 9.034536405823468, + "2023-09-21": 7.398228124255807, + "2023-06-02": 10.577209763597848, + "2024-04-21": 8.660134083383804, + "2023-07-22": 9.401492810462747, + "2023-10-11": 6.655839292445894, + "2024-03-21": 11.739552749046284, + "2023-07-19": 9.244533294149146, + "2024-05-05": 8.881291835499672, + "2024-05-23": 8.4161012666204, + "2024-04-08": 11.317386949948654, + "2024-05-18": 8.668574835327545, + "2023-06-14": 8.688390830972262, + "2023-10-05": 6.920453914776588, + "2023-10-16": 6.6288421813801754, + "2024-05-22": 8.648706446446296, + "2024-02-10": 10.02298035227111, + "2024-04-07": 11.142953238047857, + "2024-02-20": 10.44276032626062, + "2023-11-17": 9.544113976600945, + "2023-12-11": 9.924152169427245, + "2023-11-26": 9.7013866091749, + "2023-11-16": 9.841161092478748, + "2023-06-29": 9.184593976179999, + "2023-10-27": 7.044214287944622, + "2023-06-11": 8.248690388972097, + "2024-02-02": 9.168052079920892, + "2023-09-14": 6.631535869035368, + "2024-01-27": 9.559727739081849, + "2024-03-30": 12.635134095007174, + "2023-11-22": 8.649424584278577, + "2023-09-28": 7.071543738529186, + "2023-06-03": 10.641247657663094, + "2024-01-18": 9.975180643765391, + "2023-08-26": 7.195644246783117, + "2024-02-15": 10.268896547412242, + "2023-10-28": 7.163193913346451, + "2024-03-24": 11.460325257886966, + "2024-04-27": 8.256757631657345, + "2023-12-06": 9.907618281235559, + "2024-01-30": 9.616620135104952, + "2023-11-14": 9.19162452666052, + "2023-08-09": 8.531837383576917, + "2024-05-15": 8.238011508837547, + "2023-11-10": 9.212053669249459, + "2024-01-23": 9.0346216177748, + "2024-01-31": 9.22487082938887, + "2024-05-11": 8.607137679622543, + "2024-01-11": 10.598775280957987, + "2024-02-18": 10.39731794147546, + "2023-06-16": 8.728449274124033, + "2023-10-30": 7.509774593049595, + "2023-12-17": 11.44140014966896, + "2024-02-26": 10.71170627275965, + "2023-07-16": 9.548513163163571, + "2024-01-05": 10.16063438044642, + "2023-08-23": 7.402728462477992, + "2024-03-11": 13.556624823478396, + "2023-08-01": 8.794360940313787, + "2024-03-14": 13.686110606396252, + "2024-02-21": 9.943979137879197, + "2023-08-28": 7.174558765123747, + "2023-07-04": 9.816347260117242, + "2023-12-13": 11.153283447872415, + "2024-02-27": 11.199572720521099, + "2023-08-13": 8.427261793282108, + "2024-03-31": 12.293004650538524, + "2023-12-09": 10.74207242187459, + "2024-04-02": 11.051394350095403, + "2024-02-06": 9.126923558120167, + "2024-04-09": 11.036697145232838, + "2023-11-04": 7.861660124708586, + "2024-04-20": 8.32870223006027, + "2024-01-15": 10.137286250470055, + "2023-07-03": 9.890911994801762, + "2023-12-28": 11.703457894307807, + "2023-05-30": 10.817079200166303, + "2024-05-25": 8.476984674756373, + "2024-02-07": 9.341745227437846, + "2023-09-25": 6.989977567680785, + "2024-03-19": 11.16698377176898, + "2024-03-10": 13.32493474559137, + "2024-05-02": 8.700210436048103, + "2023-09-02": 6.7116377856314156, + "2024-01-12": 10.552956231035626, + "2024-04-19": 8.246086249498061, + "2023-11-29": 9.220788268169555, + "2023-10-15": 6.577350000023673, + "2024-05-28": 8.68502217176573, + "2023-11-30": 9.286047714361551, + "2024-01-24": 9.246725391806747, + "2023-08-11": 8.369247639598123, + "2024-02-11": 10.101545120176096, + "2023-06-08": 9.477270285150214, + "2023-11-15": 9.526147910742205, + "2023-12-16": 11.424569469800012, + "2024-03-29": 12.364037232977008, + "2024-04-04": 11.061908531211804, + "2023-06-10": 7.944491643900526, + "2023-07-28": 8.964915563272486, + "2024-01-20": 9.675604817282059, + "2023-10-21": 6.490596541344455, + "2023-08-16": 7.934192362641094, + "2024-05-24": 8.395197633404328, + "2023-11-03": 7.681404544107326, + "2023-08-31": 7.169506068097737, + "2024-05-27": 8.565980176716314, + "2024-01-04": 10.06959346734126, + "2023-07-26": 8.898893584639886, + "2023-11-13": 9.781838287138573, + "2023-10-24": 7.115702658524846, + "2024-03-25": 11.865781952970368, + "2023-08-07": 8.470769873029983, + "2023-10-29": 7.219223560797927, + "2024-01-29": 9.562546838333711, + "2024-05-04": 8.741746355387884, + "2023-06-05": 10.564537425088062, + "2023-11-02": 7.839102155406684, + "2023-12-18": 10.671412232123085, + "2023-11-24": 8.915789400635672, + "2023-08-21": 7.603002672568542, + "2023-07-25": 8.976307904282443, + "2024-05-16": 8.442908851537338, + "2023-08-14": 8.44178114400931, + "2024-05-01": 8.376816444936466, + "2024-03-05": 12.511500843561413, + "2024-04-06": 11.017839967615366, + "2023-12-23": 11.20772619721851, + "2024-02-03": 9.163867176672966, + "2024-02-16": 10.305986494442935, + "2023-05-28": 10.612485318027012, + "2023-12-14": 11.465750172594602, + "2023-06-24": 9.334178647037398, + "2023-12-26": 12.02899903467562, + "2023-11-09": 8.794164487109128, + "2023-08-19": 7.58709958095787, + "2024-05-09": 9.04888345246908, + "2024-01-17": 10.137877105992615, + "2023-06-23": 9.16797438711081, + "2023-06-18": 8.75372497183205, + "2024-04-23": 8.774710361386234, + "2023-08-08": 8.540038860013583, + "2023-08-17": 7.973888806479426, + "2024-04-14": 8.203230249649986, + "2023-07-24": 9.042952114779592, + "2023-10-14": 6.611220409324148, + "2024-05-22T20": 8.556973039999999, + "2024-05-25T08": 8.472694359999998, + "2024-05-22T05": 8.660626300219858, + "2024-05-28T03": 8.59720284, + "2024-05-22T16": 8.63892616, + "2024-05-25T05": 8.5095948, + "2024-05-24T22": 8.409822459999999, + "2024-05-27T14": 8.611595184, + "2024-05-22T03": 8.7281667, + "2024-05-23T17": 8.27295633, + "2024-05-24T23": 8.43248188, + "2024-05-26T19": 8.39846238, + "2024-05-26T18": 8.36964552, + "2024-05-26T10": 8.36590347, + "2024-05-27T16": 8.67440383, + "2024-05-24T12": 8.43860964, + "2024-05-26T01": 8.49915, + "2024-05-21T17": 8.859758358, + "2024-05-23T07": 8.584271481941498, + "2024-05-22T08": 8.73445276, + "2024-05-23T09": 8.553226346260114, + "2024-05-24T18": 8.4013972, + "2024-05-23T01": 8.573625219999998, + "2024-05-25T15": 8.50974894, + "2024-05-23T16": 8.25130267, + "2024-05-25T03": 8.496415041, + "2024-05-28T06": 8.533284096000001, + "2024-05-25T23": 8.481557890000001, + "2024-05-24T13": 8.446455874063798, + "2024-05-26T03": 8.436714640776376, + "2024-05-26T00": 8.49189591, + "2024-05-25T06": 8.48269046, + "2024-05-27T04": 8.505289806, + "2024-05-22T10": 8.73607764, + "2024-05-27T09": 8.49273124, + "2024-05-24T17": 8.361415432372016, + "2024-05-26T16": 8.389474940000001, + "2024-05-22T09": 8.717556140000001, + "2024-05-24T21": 8.40324364, + "2024-05-25T04": 8.520590400000001, + "2024-05-27T22": 8.67813926, + "2024-05-27T11": 8.53170706, + "2024-05-23T21": 8.308607235137371, + "2024-05-23T10": 8.497025, + "2024-05-23T14": 8.34290997, + "2024-05-27T02": 8.46999975, + "2024-05-25T18": 8.479927774464649, + "2024-05-27T05": 8.456538912, + "2024-05-22T23": 8.556148, + "2024-05-28T01": 8.6111056, + "2024-05-22T04": 8.636667469999999, + "2024-05-22T15": 8.614103224520656, + "2024-05-24T03": 8.43753919, + "2024-05-24T08": 8.27659909, + "2024-05-21T22": 8.78845061, + "2024-05-21T16": 8.83719837, + "2024-05-21T23": 8.78615452, + "2024-05-24T02": 8.41580078, + "2024-05-26T07": 8.441117022196119, + "2024-05-27T07": 8.409437599636183, + "2024-05-25T22": 8.45922209012109, + "2024-05-24T16": 8.3364972, + "2024-05-27T20": 8.694622429999999, + "2024-05-22T02": 8.759123074, + "2024-05-24T06": 8.27535724, + "2024-05-24T11": 8.3979582, + "2024-05-25T21": 8.44831, + "2024-05-27T15": 8.612586799999999, + "2024-05-21T19": 8.751111179999999, + "2024-05-22T19": 8.540306159, + "2024-05-21T12": 8.83179110336757, + "2024-05-23T20": 8.085931, + "2024-05-23T08": 8.570026499999999, + "2024-05-22T22": 8.57157, + "2024-05-26T11": 8.38857193787134, + "2024-05-24T01": 8.4086352, + "2024-05-23T05": 8.57767854, + "2024-05-28T04": 8.501589306, + "2024-05-25T09": 8.456597049760992, + "2024-05-27T18": 8.67822613, + "2024-05-24T10": 8.37472671, + "2024-05-25T19": 8.474780775000001, + "2024-05-24T07": 8.278581348000001, + "2024-05-26T04": 8.44283387534532, + "2024-05-26T09": 8.391342120000001, + "2024-05-23T02": 8.559457392442393, + "2024-05-27T06": 8.4259536, + "2024-05-28T08": 8.507541063650741, + "2024-05-24T15": 8.4287835, + "2024-05-25T20": 8.45088675, + "2024-05-27T08": 8.4879042, + "2024-05-23T22": 8.33882672, + "2024-05-26T15": 8.417546439999999, + "2024-05-24T20": 8.4121587, + "2024-05-21T20": 8.80948566383336, + "2024-05-25T13": 8.467414396, + "2024-05-22T01": 8.76194844, + "2024-05-25T17": 8.470935983999999, + "2024-05-27T10": 8.50580829, + "2024-05-21T21": 8.76507126, + "2024-05-24T19": 8.382200712, + "2024-05-26T02": 8.440071490000001, + "2024-05-27T19": 8.62028471, + "2024-05-25T11": 8.50172455, + "2024-05-27T17": 8.69368480772245, + "2024-05-21T18": 8.85874576, + "2024-05-26T06": 8.43313176, + "2024-05-23T00": 8.579150639, + "2024-05-22T00": 8.78941762, + "2024-05-24T05": 8.3374119, + "2024-05-23T15": 8.306015359999998, + "2024-05-22T13": 8.51806291, + "2024-05-21T10": 8.845547987942103, + "2024-05-22T12": 8.5485465, + "2024-05-23T04": 8.586672960000001, + "2024-05-26T08": 8.42246108, + "2024-05-26T13": 8.35382592, + "2024-05-28T05": 8.513839292, + "2024-05-22T18": 8.55097376, + "2024-05-22T06": 8.746075439999998, + "2024-05-21T08": 8.832795781033472, + "2024-05-22T17": 8.64261696, + "2024-05-23T19": 8.224738136193462, + "2024-05-25T07": 8.47169475, + "2024-05-26T22": 8.40446864, + "2024-05-25T16": 8.48481196, + "2024-05-26T05": 8.415674540000001, + "2024-05-24T04": 8.452064192, + "2024-05-21T14": 8.89077675, + "2024-05-25T12": 8.470007057999998, + "2024-05-28T07": 8.477642628, + "2024-05-23T18": 8.17619078, + "2024-05-26T23": 8.406501001770883, + "2024-05-24T09": 8.33124925, + "2024-05-23T03": 8.57525073, + "2024-05-26T14": 8.37973063, + "2024-05-21T13": 8.8662264, + "2024-05-22T14": 8.565486694, + "2024-05-25T14": 8.461407659999999, + "2024-05-25T00": 8.46405282, + "2024-05-23T23": 8.345357928700977, + "2024-05-21T11": 8.87060429, + "2024-05-23T13": 8.32008695, + "2024-05-22T11": 8.68143706, + "2024-05-21T15": 8.866871439999999, + "2024-05-28T00": 8.665265300189853, + "2024-05-27T23": 8.67470712, + "2024-05-28T02": 8.573650800000001, + "2024-05-26T21": 8.330832500000001, + "2024-05-26T12": 8.368962578712088, + "2024-05-23T06": 8.5646009, + "2024-05-22T07": 8.73242788, + "2024-05-27T12": 8.56010373, + "2024-05-22T21": 8.532841679999999, + "2024-05-24T00": 8.401231300135757, + "2024-05-25T02": 8.480544438215702, + "2024-05-27T00": 8.421787, + "2024-05-26T20": 8.374203993607589, + "2024-05-26T17": 8.38147156, + "2024-05-27T13": 8.59558137, + "2024-05-23T12": 8.475944751, + "2024-05-25T10": 8.47471121, + "2024-05-21T09": 8.828234, + "2024-05-23T11": 8.52843365, + "2024-05-24T14": 8.42701257, + "2024-05-25T01": 8.487732149938676, + "2024-05-27T21": 8.680835380083652, + "2024-05-27T03": 8.469000340000001, + "2024-05-27T01": 8.48084235, + "latest": 8.44, + "2024-05-28T09": 8.572318998142887, + "2024-05-28T10": 8.66059107, + "2024-05-28T11": 8.646468567616784, + "2024-05-28T12": 8.60230289, + "2024-05-28T13": 8.606285100000001, + "2024-05-28T14": 8.585491939999999, + "2024-05-28T15": 8.577129912, + "2024-05-29": 8.733300706902613, + "2024-05-28T20": 8.7863809, + "2024-05-28T22": 8.72496564, + "2024-05-28T21": 8.726565551419972, + "2024-05-28T19": 8.73524242, + "2024-05-29T02": 8.65016782, + "2024-05-28T17": 8.690301, + "2024-05-28T18": 8.705420850804492, + "2024-05-28T23": 8.69264704, + "2024-05-29T00": 8.723734394765973, + "2024-05-29T01": 8.65651293, + "2024-05-28T16": 8.60995005, + "2024-05-29T06": 8.805732156, + "2024-05-29T05": 8.840965759362895, + "2024-05-29T03": 8.68678224, + "2024-05-29T07": 8.752836716000001, + "2024-05-29T04": 8.71661487, + "2024-05-29T08": 8.757234, + "2024-05-29T09": 8.771123136, + "2024-05-29T10": 8.816439749999999, + "2024-05-29T11": 8.785220147658448, + "2024-05-29T12": 8.726030480029978, + "2024-05-29T13": 8.751613139345588, + "2024-05-29T14": 8.736730032, + "2024-05-29T15": 8.720415359999999, + "2024-05-29T18": 8.72561536, + "2024-05-29T17": 8.7391277, + "2024-05-29T23": 8.633627200000001, + "2024-05-29T19": 8.737428920000001, + "2024-05-29T22": 8.66437186, + "2024-05-29T20": 8.681896593084236, + "2024-05-29T16": 8.669014250000002, + "2024-05-29T21": 8.665857518815686, + "2024-05-30": 8.598608485549503, + "2024-05-30T00": 8.639274, + "2024-05-30T05": 8.65442363, + "2024-05-30T02": 8.686152613032212, + "2024-05-30T01": 8.640593726471423, + "2024-05-30T06": 8.53047016, + "2024-05-30T07": 8.51671636, + "2024-05-30T03": 8.690558800000002, + "2024-05-30T04": 8.68665057, + "2024-05-30T08": 8.4219438, + "2024-05-30T09": 8.5018958, + "2024-05-30T10": 8.55963236, + "2024-05-30T11": 8.60502428, + "2024-05-30T12": 8.592657220250823, + "2024-05-30T13": 8.6168268, + "2024-05-30T14": 8.60703894, + "2024-05-30T15": 8.575568400000002, + "2024-05-30T21": 8.5842828, + "2024-05-30T20": 8.59336695, + "2024-05-30T18": 8.665746319999998, + "2024-05-30T16": 8.597105286989137, + "2024-05-30T17": 8.651460931697732, + "2024-05-30T19": 8.63894861842976, + "2024-05-31": 8.403602719491968, + "2024-05-30T22": 8.5822361227605, + "2024-05-30T23": 8.55360519, + "2024-05-31T03": 8.48942312, + "2024-05-31T07": 8.44726506, + "2024-05-31T06": 8.461460800000001, + "2024-05-31T04": 8.490510319608239, + "2024-05-31T02": 8.48443504, + "2024-05-31T05": 8.44153755, + "2024-05-31T00": 8.492621399999999, + "2024-05-31T01": 8.491961439999999, + "2024-05-31T08": 8.425303040000001, + "2024-05-31T09": 8.385269694680417, + "2024-05-31T10": 8.399956999999999, + "2024-05-31T11": 8.42685648, + "2024-05-31T12": 8.46783147, + "2024-05-31T13": 8.403786420000001, + "2024-05-31T14": 8.32825019, + "2024-06-01": 8.305383261841637, + "2024-06-01T08": 8.2831193, + "2024-06-01T02": 8.298623172894366, + "2024-06-01T05": 8.31650806, + "2024-05-31T21": 8.34921997, + "2024-06-01T00": 8.28953604, + "2024-05-31T18": 8.32499928, + "2024-05-31T15": 8.33107946, + "2024-05-31T23": 8.318489831, + "2024-05-31T22": 8.328411299999999, + "2024-06-01T01": 8.283428302001555, + "2024-06-01T07": 8.297369882327203, + "2024-06-01T04": 8.30460053, + "2024-05-31T19": 8.35403301123553, + "2024-06-01T06": 8.30943036, + "2024-05-31T20": 8.36819774, + "2024-05-31T17": 8.322253510000001, + "2024-05-31T16": 8.283565960707968, + "2024-06-01T03": 8.30236192914773, + "2024-06-01T09": 8.27179727, + "2024-06-01T10": 8.262922223999999, + "2024-06-02": 8.3234177736421, + "2024-06-01T13": 8.3165084, + "2024-06-01T15": 8.328779427999999, + "2024-06-01T18": 8.3325774, + "2024-06-01T12": 8.28978161, + "2024-06-01T21": 8.34556583, + "2024-06-01T20": 8.33357651, + "2024-06-02T01": 8.350314399999998, + "2024-06-01T17": 8.32177690825057, + "2024-06-01T11": 8.27671008, + "2024-06-02T00": 8.3143432, + "2024-06-01T23": 8.32883111205579, + "2024-06-01T14": 8.333906129999999, + "2024-06-01T22": 8.35572419, + "2024-06-01T19": 8.32558363, + "2024-06-01T16": 8.322419700000001, + "2024-06-02T13": 8.346985839999999, + "2024-06-02T11": 8.324622956246111, + "2024-06-02T07": 8.333969470505243, + "2024-06-02T05": 8.353277348, + "2024-06-02T08": 8.338891671999999, + "2024-06-02T04": 8.35522678, + "2024-06-02T10": 8.296855780000001, + "2024-06-02T12": 8.351066529999999, + "2024-06-02T02": 8.351652900498875, + "2024-06-02T16": 8.340638606, + "2024-06-02T17": 8.27961475, + "2024-06-02T03": 8.349896549999999, + "2024-06-02T09": 8.29927535837627, + "2024-06-02T15": 8.36205373, + "2024-06-02T06": 8.35988805, + "2024-06-02T18": 8.20199373, + "2024-06-02T14": 8.359093404, + "2024-06-03": 8.285120991734516, + "2024-06-03T01": 8.336935840548627, + "2024-06-02T20": 8.25221094, + "2024-06-03T00": 8.2654515, + "2024-06-02T21": 8.264643821949582, + "2024-06-02T23": 8.29152016, + "2024-06-02T19": 8.247431143, + "2024-06-02T22": 8.26753312, + "2024-06-03T02": 8.393078459785464, + "2024-06-03T05": 8.37437236, + "2024-06-03T06": 8.391625920000001, + "2024-06-03T04": 8.346699235124493, + "2024-06-03T03": 8.373956449, + "2024-06-03T07": 8.39115363096588 + }, + "USD cronos": { + "2023-07-30": 0.060208935341939815, + "2023-10-23": 0.053875472954140406, + "2023-07-27": 0.059108149013902635, + "2023-07-10": 0.056245890888013655, + "2023-08-20": 0.052305005325785935, + "2024-02-23": 0.0930897675088358, + "2024-04-05": 0.14450081743476748, + "2023-12-19": 0.09818744266452208, + "2024-05-17": 0.12366393178797402, + "2023-08-06": 0.05766703934677753, + "2023-12-02": 0.09192151175390191, + "2023-10-31": 0.061228628215831984, + "2023-08-29": 0.05277969743281016, + "2023-06-20": 0.05390911393554892, + "2023-09-09": 0.05274698530887119, + "2023-06-26": 0.05855574706644947, + "2023-10-01": 0.05086047902198634, + "2024-03-07": 0.15817471685584036, + "2023-10-12": 0.048990945458024945, + "2024-04-22": 0.12908502017002202, + "2023-07-05": 0.05722763858054934, + "2023-07-29": 0.059706831905600305, + "2024-04-26": 0.12769859371540274, + "2024-01-08": 0.08694570779497672, + "2023-05-29": 0.06134374765273439, + "2023-10-07": 0.0507831792666441, + "2023-09-26": 0.050485115890108886, + "2023-08-24": 0.05188297758713684, + "2023-12-05": 0.09451304127738376, + "2024-02-19": 0.09060271046889085, + "2024-01-07": 0.0888272891396612, + "2024-04-28": 0.12679815974415756, + "2023-07-31": 0.059235074249425625, + "2023-10-18": 0.052534970955185466, + "2024-05-19": 0.1250536242745593, + "2024-05-12": 0.12425170924613202, + "2024-04-29": 0.13166537316731303, + "2023-08-25": 0.051405019892603786, + "2024-03-09": 0.16271277500569445, + "2023-07-12": 0.056852893271754225, + "2023-09-05": 0.050504472863721624, + "2023-06-07": 0.05980709085365795, + "2023-09-16": 0.05103195197949074, + "2024-04-25": 0.12440082028675739, + "2023-08-12": 0.057009320888712224, + "2023-06-06": 0.05863478207945306, + "2023-09-01": 0.0502461999219235, + "2023-09-08": 0.05151458563442487, + "2024-03-22": 0.13760559855443208, + "2023-08-10": 0.05756129399753394, + "2023-12-07": 0.09380489444121372, + "2023-11-18": 0.09929653360762682, + "2023-07-13": 0.057443519712907905, + "2023-09-13": 0.05024031376210371, + "2023-06-17": 0.05301104220324275, + "2023-07-17": 0.06049045255878999, + "2023-07-07": 0.05669902417196055, + "2023-09-07": 0.05026505353804969, + "2024-03-26": 0.14809567796060294, + "2024-05-14": 0.12362424587068042, + "2024-02-22": 0.0902839496787998, + "2024-04-15": 0.1332489947593953, + "2023-12-30": 0.09913515819334838, + "2023-09-17": 0.05101034985398969, + "2024-04-17": 0.12720817676699367, + "2024-02-12": 0.0864382159472146, + "2023-10-26": 0.05790549886267072, + "2024-01-03": 0.1034925545434219, + "2024-05-07": 0.1295332344780839, + "2023-06-01": 0.0597312953637829, + "2024-01-22": 0.08277482338762016, + "2023-06-12": 0.05517737325432839, + "2023-10-03": 0.05072322957510132, + "2024-05-26": 0.12107029657689149, + "2024-04-30": 0.13184395384754946, + "2023-06-19": 0.053526117076726526, + "2023-07-09": 0.05671532303975026, + "2023-12-24": 0.10119982230074993, + "2023-09-24": 0.05061983809358149, + "2024-01-16": 0.08766495046194538, + "2023-10-17": 0.05272816575838961, + "2024-04-24": 0.13124803321511438, + "2024-03-18": 0.14394756230738923, + "2024-02-17": 0.09069283353981554, + "2023-12-27": 0.09709953266464562, + "2023-07-23": 0.06041526646495666, + "2023-09-03": 0.05039208149789456, + "2024-02-24": 0.09164089666042408, + "2024-01-06": 0.09237233148018481, + "2024-03-20": 0.12103633626552598, + "2023-11-21": 0.09548014588170559, + "2023-12-25": 0.09787151721285546, + "2023-09-22": 0.05022434068226701, + "2023-10-02": 0.051807067864755904, + "2024-03-27": 0.1488788790230887, + "2024-05-06": 0.1325128244661029, + "2023-08-30": 0.05288991560991529, + "2023-10-06": 0.05018349881236508, + "2023-10-13": 0.05096684018349313, + "2023-06-28": 0.05666328824290598, + "2024-02-05": 0.08042992924339946, + "2024-03-01": 0.10899033874291937, + "2023-07-15": 0.05951662629711256, + "2023-06-25": 0.058380387962636775, + "2023-12-10": 0.10690373678518832, + "2023-11-23": 0.09449483751305444, + "2023-08-04": 0.05915460547912742, + "2024-05-13": 0.12487779940686883, + "2024-01-13": 0.08864906973850943, + "2024-03-28": 0.14844418821829305, + "2023-08-05": 0.058145778861598045, + "2024-02-09": 0.0842428562630831, + "2023-10-09": 0.050357023078043885, + "2024-01-09": 0.0918820788033384, + "2024-05-10": 0.12734601090140021, + "2023-05-27": 0.060271841024182954, + "2023-08-18": 0.0518188863226286, + "2023-11-05": 0.06819354226412556, + "2024-04-18": 0.12135864418349437, + "2023-10-22": 0.05346687226958152, + "2023-11-01": 0.06197992827261264, + "2024-05-20": 0.12204830301239233, + "2023-12-08": 0.09448147084506218, + "2024-04-12": 0.14863984410366723, + "2023-07-06": 0.05764162908434077, + "2024-03-12": 0.16928996497391033, + "2023-09-11": 0.05210978915006023, + "2024-03-03": 0.14662052769013845, + "2024-02-04": 0.08121950512822013, + "2024-01-28": 0.08149900957950072, + "2023-07-01": 0.05634145208094278, + "2023-11-07": 0.07537571260293288, + "2023-11-25": 0.09761769839552618, + "2023-06-04": 0.059581516324203464, + "2024-02-25": 0.0943248229279081, + "2023-12-01": 0.0887219028516835, + "2023-07-14": 0.060161280470488625, + "2024-01-26": 0.07867867704931418, + "2023-08-03": 0.05947661492032322, + "2024-02-28": 0.10353843316566745, + "2023-09-15": 0.0509171072128498, + "2023-07-18": 0.06007720099472516, + "2023-12-21": 0.09708629811075073, + "2023-07-20": 0.0594840609943996, + "2024-03-06": 0.15335663831963725, + "2023-09-30": 0.05079057128069265, + "2023-12-12": 0.09873699891248645, + "2024-02-13": 0.0887974512687003, + "2023-09-20": 0.05143815471606423, + "2023-09-19": 0.051059172978236964, + "2023-09-29": 0.05072554709190892, + "2023-09-12": 0.049860920521968013, + "2023-06-13": 0.05351909042812116, + "2023-10-04": 0.050214243639284575, + "2023-07-08": 0.05640582331414902, + "2024-04-16": 0.1271093873962097, + "2024-03-02": 0.12624892850815284, + "2023-06-27": 0.0564198506787227, + "2023-10-08": 0.05069062777440375, + "2023-11-20": 0.09800984989226214, + "2023-12-20": 0.09634286508681783, + "2023-12-31": 0.09860483373241791, + "2023-11-06": 0.07014529616141174, + "2023-08-22": 0.051967528373870496, + "2023-06-09": 0.05877636105718066, + "2024-03-17": 0.13294680382764076, + "2023-09-18": 0.05118976622955488, + "2024-04-01": 0.1530792705415611, + "2024-05-21": 0.12816503107800464, + "2024-01-19": 0.08180426187551039, + "2023-11-11": 0.10058425588057292, + "2023-09-23": 0.05037132966406287, + "2023-11-19": 0.09779762291770655, + "2023-07-02": 0.057285805561834005, + "2023-08-15": 0.056823593776194184, + "2024-01-25": 0.07917727366498992, + "2024-03-13": 0.1613307258329979, + "2024-01-21": 0.08413120380034837, + "2024-02-01": 0.08147852096339217, + "2023-06-15": 0.051846378627066314, + "2024-03-16": 0.14325989682214466, + "2023-11-27": 0.09493720586125501, + "2024-01-10": 0.08872325788649724, + "2024-03-15": 0.1527032212217902, + "2023-06-21": 0.054592169108405725, + "2024-01-02": 0.10047538468650567, + "2023-07-11": 0.05600968778807869, + "2023-10-25": 0.057474744558276135, + "2024-01-01": 0.09887102239277186, + "2024-02-14": 0.09041277175616452, + "2023-09-04": 0.05088175179482976, + "2023-09-06": 0.05035356605930201, + "2024-04-03": 0.14148904096887957, + "2023-11-28": 0.09131602620560905, + "2023-12-03": 0.09319742585485606, + "2023-08-02": 0.05965568254294842, + "2023-08-27": 0.051112065796500135, + "2023-10-20": 0.05116631098668123, + "2023-10-10": 0.049806313810616336, + "2024-05-03": 0.12816163925049043, + "2024-03-08": 0.15772120312617702, + "2024-04-11": 0.14595566138085928, + "2023-06-22": 0.05662565302211996, + "2024-01-14": 0.08981185076024602, + "2023-12-15": 0.10217494794669096, + "2023-10-19": 0.05149976411616436, + "2024-02-08": 0.08405051735368024, + "2023-11-08": 0.08027430233883916, + "2023-11-12": 0.1087533951465108, + "2023-12-22": 0.09896586230972702, + "2023-05-31": 0.060057397084508975, + "2024-03-23": 0.13403930806678296, + "2023-09-27": 0.050149811172902556, + "2024-03-04": 0.14205272190488794, + "2023-09-10": 0.05172224757855876, + "2024-04-13": 0.13777461504567448, + "2024-02-29": 0.10420215699411967, + "2023-07-21": 0.0593466973998572, + "2023-06-30": 0.05516806827743172, + "2023-12-29": 0.0997304972580629, + "2023-12-04": 0.09244649207981792, + "2024-04-10": 0.14575772879313456, + "2024-05-08": 0.1258975461525135, + "2023-09-21": 0.05120878791117999, + "2023-06-02": 0.058713875004549027, + "2024-04-21": 0.1307906624584832, + "2023-07-22": 0.06111239467736915, + "2023-10-11": 0.049496554552074155, + "2024-03-21": 0.1395988487103304, + "2023-07-19": 0.05919247967792713, + "2024-05-05": 0.1328021760252897, + "2024-05-23": 0.12593434659831898, + "2024-04-08": 0.14589175287002915, + "2024-05-18": 0.12627601902913124, + "2023-06-14": 0.05233860919464852, + "2023-10-05": 0.05027849174290183, + "2023-10-16": 0.05226406383554215, + "2024-05-22": 0.1249426250316714, + "2024-02-10": 0.08821332890891365, + "2024-04-07": 0.1457303112703775, + "2024-02-20": 0.09191681107311608, + "2023-11-17": 0.09645576790172744, + "2023-12-11": 0.1058367146652279, + "2023-11-26": 0.09747884597157325, + "2023-11-16": 0.10409842973554559, + "2023-06-29": 0.055272109944165405, + "2023-10-27": 0.059407837045897256, + "2023-06-11": 0.05455967935752352, + "2024-02-02": 0.08124941904047947, + "2023-09-14": 0.05049307128183277, + "2024-01-27": 0.08210198227123981, + "2024-03-30": 0.15559537087900716, + "2023-11-22": 0.0841382047300586, + "2023-09-28": 0.049971747936411105, + "2023-06-03": 0.059615984663273745, + "2024-01-18": 0.08575225369705199, + "2023-08-26": 0.05124252851775689, + "2024-02-15": 0.09205389370312211, + "2023-10-28": 0.05926351457227782, + "2024-03-24": 0.13652424036953525, + "2024-04-27": 0.12418014045353902, + "2023-12-06": 0.09647333585496358, + "2024-01-30": 0.08367812753630985, + "2023-11-14": 0.09224292692928913, + "2023-08-09": 0.058057950197937, + "2024-05-15": 0.11967481866920691, + "2023-11-10": 0.08398252487896822, + "2024-01-23": 0.07790725589490614, + "2024-01-31": 0.08361344442742742, + "2024-05-11": 0.12289684255658508, + "2024-01-11": 0.09266528670718231, + "2024-02-18": 0.08927291290018387, + "2023-06-16": 0.05281033902832283, + "2023-10-30": 0.060069414724172064, + "2023-12-17": 0.10131001577742602, + "2024-02-26": 0.0944150625284105, + "2023-07-16": 0.06111439120751963, + "2024-01-05": 0.09767014356603601, + "2023-08-23": 0.05145683474099445, + "2024-03-11": 0.16561681996006464, + "2023-08-01": 0.05860988070670741, + "2024-03-14": 0.1612293694744971, + "2024-02-21": 0.0911633259306961, + "2023-08-28": 0.051006508006951265, + "2023-07-04": 0.05690705466937747, + "2023-12-13": 0.10095644704269283, + "2024-02-27": 0.09801450954979296, + "2023-08-13": 0.05714208126479803, + "2024-03-31": 0.15200657262111933, + "2023-12-09": 0.09864736415344494, + "2024-04-02": 0.1509007590996949, + "2024-02-06": 0.08173708396016796, + "2024-04-09": 0.15095740681515618, + "2023-11-04": 0.06633046257582298, + "2024-04-20": 0.12324578632681486, + "2024-01-15": 0.0875275973720367, + "2023-07-03": 0.056601479913984544, + "2023-12-28": 0.10035907497326974, + "2023-05-30": 0.06061261407860871, + "2024-05-25": 0.12089019080412597, + "2024-02-07": 0.08168413453820268, + "2023-09-25": 0.05055650524641225, + "2024-03-19": 0.1352896375872947, + "2024-03-10": 0.15849974867161376, + "2024-05-02": 0.12760287399120956, + "2023-09-02": 0.04991270669348343, + "2024-01-12": 0.09287824719474752, + "2024-04-19": 0.12366637549427634, + "2023-11-29": 0.0925916084041664, + "2023-10-15": 0.051932149763955646, + "2024-05-28": 0.12157522408812681, + "2023-11-30": 0.09094529849824802, + "2024-01-24": 0.07695984632171372, + "2023-08-11": 0.05742506021305215, + "2024-02-11": 0.08727711492562441, + "2023-06-08": 0.05893209204324848, + "2023-11-15": 0.087916771939276, + "2023-12-16": 0.09781861222705367, + "2024-03-29": 0.1588345482533183, + "2024-04-04": 0.1427263505186003, + "2023-06-10": 0.057516141580369516, + "2023-07-28": 0.05899693255880005, + "2024-01-20": 0.08264881473324993, + "2023-10-21": 0.05238532086233206, + "2023-08-16": 0.055591263926067794, + "2024-05-24": 0.12230007849648816, + "2023-11-03": 0.0665524832036359, + "2023-08-31": 0.051955346960246784, + "2024-05-27": 0.1189696112578128, + "2024-01-04": 0.09581069900123818, + "2023-07-26": 0.0585888259505204, + "2023-11-13": 0.09926997713455706, + "2023-10-24": 0.056766524147687, + "2024-03-25": 0.14316881988777638, + "2023-08-07": 0.05830041600988971, + "2023-10-29": 0.059496875462374824, + "2024-01-29": 0.08054672540402345, + "2024-05-04": 0.1335382466124074, + "2023-06-05": 0.06084666361270647, + "2023-11-02": 0.06231680333697324, + "2023-12-18": 0.09813352139907315, + "2023-11-24": 0.09246661161023059, + "2023-08-21": 0.052254827634228444, + "2023-07-25": 0.05895096831497341, + "2024-05-16": 0.1255485926901998, + "2023-08-14": 0.05682634095466831, + "2024-05-01": 0.13451486756869305, + "2024-03-05": 0.14509149436993157, + "2024-04-06": 0.14134167002471995, + "2023-12-23": 0.10273078173503156, + "2024-02-03": 0.0817661561536904, + "2024-02-16": 0.09158844607640657, + "2023-05-28": 0.060228858660703696, + "2023-12-14": 0.10282261076590996, + "2023-06-24": 0.05849651930043971, + "2023-12-26": 0.10029667108950957, + "2023-11-09": 0.08070121548040529, + "2023-08-19": 0.05164314034785396, + "2024-05-09": 0.12508001427561852, + "2024-01-17": 0.08821197122824682, + "2023-06-23": 0.05648235019594087, + "2023-06-18": 0.05344550945493766, + "2024-04-23": 0.132780163195389, + "2023-08-08": 0.05789691524266068, + "2023-08-17": 0.05442420246445319, + "2024-04-14": 0.12600976001417705, + "2023-07-24": 0.06056330074886435, + "2023-10-14": 0.052264475303694755, + "2024-05-22T20": 0.12659217839356998, + "2024-05-25T08": 0.1209947209373725, + "2024-05-22T05": 0.12597222818723497, + "2024-05-28T03": 0.12042922692928291, + "2024-05-22T16": 0.1263847898700512, + "2024-05-25T05": 0.12158828460091455, + "2024-05-24T22": 0.12077513663851404, + "2024-05-27T14": 0.12048882991205896, + "2024-05-22T03": 0.12629916992098433, + "2024-05-23T17": 0.12231224894385899, + "2024-05-24T23": 0.12079016261092936, + "2024-05-26T19": 0.11831123315583914, + "2024-05-26T18": 0.1184496573380005, + "2024-05-26T10": 0.11966095043025052, + "2024-05-27T16": 0.12157173026540843, + "2024-05-24T12": 0.12021273101054937, + "2024-05-26T01": 0.1208379089489669, + "2024-05-21T17": 0.12615046918580525, + "2024-05-23T07": 0.12545466705357425, + "2024-05-22T08": 0.12593408895780045, + "2024-05-23T09": 0.12621684171854633, + "2024-05-24T18": 0.12123802239521929, + "2024-05-23T01": 0.12576961672716358, + "2024-05-25T15": 0.12161409688034566, + "2024-05-23T16": 0.12370124438757758, + "2024-05-25T03": 0.12126803911559433, + "2024-05-28T06": 0.1193828078026048, + "2024-05-25T23": 0.12062016549763563, + "2024-05-24T13": 0.120433577544218, + "2024-05-26T03": 0.12022817277378225, + "2024-05-26T00": 0.12107029657689149, + "2024-05-25T06": 0.121168834175631, + "2024-05-27T04": 0.12090825933475946, + "2024-05-22T10": 0.126486435294868, + "2024-05-27T09": 0.11986680138722877, + "2024-05-24T17": 0.1203496936582407, + "2024-05-26T16": 0.11888027635610209, + "2024-05-22T09": 0.12659741868211938, + "2024-05-24T21": 0.12161350534466686, + "2024-05-25T04": 0.12136719789643358, + "2024-05-27T22": 0.12107903029613469, + "2024-05-27T11": 0.11962665821632211, + "2024-05-23T21": 0.12089740418004691, + "2024-05-23T10": 0.1256675927910891, + "2024-05-23T14": 0.1230137325102959, + "2024-05-27T02": 0.11978772170681752, + "2024-05-25T18": 0.12057393870045693, + "2024-05-27T05": 0.12001948961951435, + "2024-05-22T23": 0.12565622314677202, + "2024-05-28T01": 0.12145254472656887, + "2024-05-22T04": 0.12652998778267555, + "2024-05-22T15": 0.12608276925830833, + "2024-05-24T03": 0.12250574511027984, + "2024-05-24T08": 0.11942831858764458, + "2024-05-21T22": 0.12460436893949803, + "2024-05-21T16": 0.12535314962256086, + "2024-05-21T23": 0.125078543390965, + "2024-05-24T02": 0.12204618127260998, + "2024-05-26T07": 0.120309702564647, + "2024-05-27T07": 0.12016641991363455, + "2024-05-25T22": 0.1204673670448898, + "2024-05-24T16": 0.12042862300374231, + "2024-05-27T20": 0.11977665619145328, + "2024-05-22T02": 0.1274801424103177, + "2024-05-24T06": 0.12086996378206014, + "2024-05-24T11": 0.12059975623139949, + "2024-05-25T21": 0.12038020756146196, + "2024-05-27T15": 0.12078278187873416, + "2024-05-21T19": 0.12550389957917665, + "2024-05-22T19": 0.12567377804975552, + "2024-05-21T12": 0.12748077974009117, + "2024-05-23T20": 0.12081926250973642, + "2024-05-23T08": 0.12572844915853654, + "2024-05-22T22": 0.12562375303649878, + "2024-05-26T11": 0.12006875790872354, + "2024-05-24T01": 0.12298890555590579, + "2024-05-23T05": 0.12622057162913883, + "2024-05-28T04": 0.11956167349493818, + "2024-05-25T09": 0.12143548514250609, + "2024-05-27T18": 0.12130095202328998, + "2024-05-24T10": 0.12057095315311976, + "2024-05-25T19": 0.12103515932931261, + "2024-05-24T07": 0.11985480694688556, + "2024-05-26T04": 0.12032626757225308, + "2024-05-26T09": 0.12022801109235635, + "2024-05-23T02": 0.12515740811790696, + "2024-05-27T06": 0.12034899805744372, + "2024-05-28T08": 0.11898731380972831, + "2024-05-24T15": 0.12074618399461465, + "2024-05-25T20": 0.12105389181828365, + "2024-05-27T08": 0.11989235322589871, + "2024-05-23T22": 0.12256757519522986, + "2024-05-26T15": 0.11956468965243582, + "2024-05-24T20": 0.12158226430516722, + "2024-05-21T20": 0.12433734226469728, + "2024-05-25T13": 0.12135300493008132, + "2024-05-22T01": 0.1280291318766469, + "2024-05-25T17": 0.12084523831100338, + "2024-05-27T10": 0.1198067366172226, + "2024-05-21T21": 0.12444506028890212, + "2024-05-24T19": 0.12145687325285465, + "2024-05-26T02": 0.12060022288624138, + "2024-05-27T19": 0.12073238442154292, + "2024-05-25T11": 0.12254472182013901, + "2024-05-27T17": 0.12161012985294352, + "2024-05-21T18": 0.1257291096405163, + "2024-05-26T06": 0.12014910106599772, + "2024-05-23T00": 0.12593434659831898, + "2024-05-22T00": 0.1249426250316714, + "2024-05-24T05": 0.1224790594983476, + "2024-05-23T15": 0.12317730590360876, + "2024-05-22T13": 0.12548126263608755, + "2024-05-21T10": 0.127682882056788, + "2024-05-22T12": 0.12631046256129413, + "2024-05-23T04": 0.12546853730173427, + "2024-05-26T08": 0.12061613578061249, + "2024-05-26T13": 0.1196955883454519, + "2024-05-28T05": 0.11915365686492443, + "2024-05-22T18": 0.1257420690581823, + "2024-05-22T06": 0.12626253839685436, + "2024-05-21T08": 0.1272091333662912, + "2024-05-22T17": 0.1265640328284171, + "2024-05-23T19": 0.12165747850623908, + "2024-05-25T07": 0.12118803603837824, + "2024-05-26T22": 0.11899696462234553, + "2024-05-25T16": 0.1212156220941054, + "2024-05-26T05": 0.12012160674578731, + "2024-05-24T04": 0.12213886180580638, + "2024-05-21T14": 0.12751023465769015, + "2024-05-25T12": 0.12142331206789639, + "2024-05-28T07": 0.11931245211268725, + "2024-05-23T18": 0.12193334035579807, + "2024-05-26T23": 0.11962994117744943, + "2024-05-24T09": 0.11961615073591483, + "2024-05-23T03": 0.12561716365946843, + "2024-05-26T14": 0.11978479360827154, + "2024-05-21T13": 0.1280071027616684, + "2024-05-22T14": 0.12518113902304437, + "2024-05-25T14": 0.12109948675552872, + "2024-05-25T00": 0.1208422438760889, + "2024-05-23T23": 0.12234253005152367, + "2024-05-21T11": 0.12731429984534842, + "2024-05-23T13": 0.1246321845106887, + "2024-05-22T11": 0.12680007536507337, + "2024-05-21T15": 0.12725991136015635, + "2024-05-28T00": 0.12164515698608477, + "2024-05-27T23": 0.12146564892809457, + "2024-05-28T02": 0.12059378641899905, + "2024-05-26T21": 0.11839103841098346, + "2024-05-26T12": 0.12005210908591625, + "2024-05-23T06": 0.12507145094449199, + "2024-05-22T07": 0.12642553586371538, + "2024-05-27T12": 0.11892133881045475, + "2024-05-22T21": 0.12591762720928415, + "2024-05-24T00": 0.12230007849648816, + "2024-05-25T02": 0.12079345288229068, + "2024-05-27T00": 0.1189696112578128, + "2024-05-26T20": 0.1191487908064754, + "2024-05-26T17": 0.1188744367711925, + "2024-05-27T13": 0.11931249944405733, + "2024-05-23T12": 0.12645610667015594, + "2024-05-25T10": 0.12169389259268887, + "2024-05-21T09": 0.1269971168877921, + "2024-05-23T11": 0.12539111081192927, + "2024-05-24T14": 0.12002115553533692, + "2024-05-25T01": 0.12041915323962148, + "2024-05-27T21": 0.12166099783017913, + "2024-05-27T03": 0.12060790224652913, + "2024-05-27T01": 0.11948277717012101, + "latest": 0.111451, + "2024-05-28T09": 0.11913986619756474, + "2024-05-28T10": 0.11955352305444206, + "2024-05-28T11": 0.11932198300912762, + "2024-05-28T12": 0.11952015556283929, + "2024-05-28T13": 0.11906273098570275, + "2024-05-28T14": 0.11792690885816297, + "2024-05-28T15": 0.11805973013707714, + "2024-05-29": 0.11792776351601582, + "2024-05-28T20": 0.11800144420187716, + "2024-05-28T22": 0.11851563103264864, + "2024-05-28T21": 0.11811801694039305, + "2024-05-28T19": 0.11715578681057282, + "2024-05-29T02": 0.11805292738785901, + "2024-05-28T17": 0.11713422263781638, + "2024-05-28T18": 0.11722912908018157, + "2024-05-28T23": 0.11816958379813917, + "2024-05-29T00": 0.11794727694664096, + "2024-05-29T01": 0.11792991645600333, + "2024-05-28T16": 0.11878238517942126, + "2024-05-29T06": 0.11880617585992582, + "2024-05-29T05": 0.1182101668631821, + "2024-05-29T03": 0.1181767992918913, + "2024-05-29T07": 0.11896258461214905, + "2024-05-29T04": 0.11777845698944635, + "2024-05-29T08": 0.11807606980824915, + "2024-05-29T09": 0.11804891940488352, + "2024-05-29T10": 0.11746745148550335, + "2024-05-29T11": 0.11779722020577438, + "2024-05-29T12": 0.11719379922232763, + "2024-05-29T13": 0.11780686428087145, + "2024-05-29T14": 0.11769097052750557, + "2024-05-29T15": 0.11722987629360228, + "2024-05-29T18": 0.11711154839635847, + "2024-05-29T17": 0.11770226011296796, + "2024-05-29T23": 0.11689278079008505, + "2024-05-29T19": 0.11683638372568372, + "2024-05-29T22": 0.11651588441629, + "2024-05-29T20": 0.11686280178128033, + "2024-05-29T16": 0.11693322259303615, + "2024-05-29T21": 0.11671780711317657, + "2024-05-30": 0.11655788327183052, + "2024-05-30T00": 0.11655788327183052, + "2024-05-30T05": 0.117332773581756, + "2024-05-30T02": 0.11670518461935298, + "2024-05-30T01": 0.11632280813497778, + "2024-05-30T06": 0.11699175013406699, + "2024-05-30T07": 0.1158663518254512, + "2024-05-30T03": 0.11729833291575169, + "2024-05-30T04": 0.11747686899677048, + "2024-05-30T08": 0.11536542201534843, + "2024-05-30T09": 0.11657763044073251, + "2024-05-30T10": 0.11619606327789907, + "2024-05-30T11": 0.1167268904776822, + "2024-05-30T12": 0.11614850841582353, + "2024-05-30T13": 0.11681933068153172, + "2024-05-30T14": 0.11697758895550267, + "2024-05-30T15": 0.11667336852927819, + "2024-05-30T21": 0.11578668863783166, + "2024-05-30T20": 0.11655437903457165, + "2024-05-30T18": 0.11812649400673256, + "2024-05-30T22": 0.11589171199105902, + "2024-05-30T16": 0.11720058350029952, + "2024-05-30T17": 0.11783935144027063, + "2024-05-30T19": 0.11796651568392402, + "2024-05-31": 0.11637983091969893, + "2024-05-30T23": 0.11677834283915325, + "2024-05-31T03": 0.1158913147223795, + "2024-05-31T07": 0.11536720951375226, + "2024-05-31T06": 0.11548812477242217, + "2024-05-31T04": 0.11559830723622531, + "2024-05-31T02": 0.11565662074669793, + "2024-05-31T05": 0.11592380177321852, + "2024-05-31T00": 0.11637983091969893, + "2024-05-31T01": 0.11643620637139682, + "2024-05-31T08": 0.11535452815543183, + "2024-05-31T09": 0.115600551273331, + "2024-05-31T10": 0.11525203092878972, + "2024-05-31T11": 0.11537299133514448, + "2024-05-31T12": 0.11534047276751154, + "2024-05-31T13": 0.11538915409430674, + "2024-05-31T14": 0.11422487290488732, + "2024-06-01": 0.11334088529830105, + "2024-06-01T08": 0.11235939165855867, + "2024-06-01T02": 0.11317158728419527, + "2024-06-01T05": 0.11282150877735841, + "2024-05-31T21": 0.11345738325676637, + "2024-06-01T00": 0.11334088529830105, + "2024-05-31T18": 0.11360954301513596, + "2024-05-31T15": 0.11387406597715277, + "2024-05-31T23": 0.11327291593201026, + "2024-05-31T22": 0.11308571218467019, + "2024-06-01T01": 0.1130164195766952, + "2024-06-01T07": 0.11268612754802276, + "2024-06-01T04": 0.11298006342130285, + "2024-05-31T19": 0.11351778990458569, + "2024-06-01T06": 0.11294657372604266, + "2024-05-31T20": 0.11313234987995834, + "2024-05-31T17": 0.11256373581383673, + "2024-05-31T16": 0.11222350657393991, + "2024-06-01T03": 0.11331295651453037, + "2024-06-01T09": 0.11237948233739527, + "2024-06-01T10": 0.11251517738016587, + "2024-06-02": 0.11185456997256962, + "2024-06-01T13": 0.11306946129543849, + "2024-06-01T15": 0.11282544477342181, + "2024-06-01T18": 0.1126565558006885, + "2024-06-01T12": 0.11306061043218145, + "2024-06-01T21": 0.11160555375006742, + "2024-06-01T20": 0.11152051668973188, + "2024-06-02T01": 0.11231548086980193, + "2024-06-01T17": 0.11256355922248142, + "2024-06-01T11": 0.11272770123701387, + "2024-06-02T00": 0.11185456997256962, + "2024-06-01T23": 0.11177546105420268, + "2024-06-01T14": 0.11278747328678941, + "2024-06-01T22": 0.11174309508523794, + "2024-06-01T19": 0.1120910316172279, + "2024-06-01T16": 0.11244928745355134, + "2024-06-02T13": 0.11255002279035098, + "2024-06-02T11": 0.11161773603773908, + "2024-06-02T07": 0.11291742236688629, + "2024-06-02T05": 0.11333800250978172, + "2024-06-02T08": 0.11225571280960422, + "2024-06-02T04": 0.11320151249219189, + "2024-06-02T10": 0.11165155890200139, + "2024-06-02T12": 0.1128312033163775, + "2024-06-02T02": 0.11282860517204682, + "2024-06-02T16": 0.11245042136168361, + "2024-06-02T17": 0.11196144620207527, + "2024-06-02T03": 0.1129996157692292, + "2024-06-02T09": 0.11186184932116036, + "2024-06-02T15": 0.11235000319956258, + "2024-06-02T06": 0.1129258873122073, + "2024-06-02T18": 0.11047949001765342, + "2024-06-02T14": 0.11235358990633193, + "2024-06-03": 0.10970152371736737, + "2024-06-03T01": 0.10951011861931716, + "2024-06-02T20": 0.109887307086967, + "2024-06-03T00": 0.10973254894718258, + "2024-06-02T21": 0.11074662513107206, + "2024-06-02T23": 0.11049057804577976, + "2024-06-02T19": 0.10960574434541398, + "2024-06-02T22": 0.10993849124090975, + "2024-06-03T02": 0.11089193500443516, + "2024-06-03T05": 0.11028378432857373, + "2024-06-03T06": 0.1102484546258531, + "2024-06-03T04": 0.11071044848238223, + "2024-06-03T03": 0.11132295142319554, + "2024-06-03T07": 0.11117365091615138 + }, + "USD crypto_org": { + "2023-07-30": 0.0597, + "2023-10-23": 0.0556, + "2023-07-27": 0.0591, + "2023-07-10": 0.0557, + "2023-08-20": 0.0522, + "2024-02-23": 0.0918, + "2024-04-05": 0.1419925296256402, + "2023-12-19": 0.098, + "2024-05-17": 0.1245, + "2023-08-06": 0.0579, + "2023-12-02": 0.0914, + "2023-10-31": 0.0615, + "2023-08-29": 0.0523, + "2023-06-20": 0.054, + "2023-09-09": 0.0527, + "2023-06-26": 0.0574, + "2023-10-01": 0.0511, + "2024-03-07": 0.1555, + "2023-10-12": 0.0509, + "2024-04-22": 0.1317, + "2023-07-05": 0.0574, + "2023-07-29": 0.0599, + "2024-04-26": 0.1275, + "2024-01-08": 0.0892, + "2023-05-29": 0.0608, + "2023-10-07": 0.0504, + "2023-09-26": 0.05, + "2023-08-24": 0.0515, + "2023-12-05": 0.0961, + "2024-02-19": 0.0915, + "2024-01-07": 0.0891, + "2024-04-28": 0.1294, + "2023-07-31": 0.0588, + "2023-10-18": 0.0517549249107225, + "2024-05-19": 0.1228, + "2024-05-12": 0.1242, + "2024-04-29": 0.1289, + "2023-08-25": 0.0511, + "2024-03-09": 0.1602, + "2023-07-12": 0.0574, + "2023-09-05": 0.0498, + "2023-06-07": 0.0592, + "2023-09-16": 0.05129528574180878, + "2024-04-25": 0.1259359213353596, + "2023-08-12": 0.057, + "2023-06-06": 0.0592, + "2023-09-01": 0.0502, + "2023-09-08": 0.0524, + "2024-03-22": 0.13412522783240727, + "2023-08-10": 0.0575, + "2023-12-07": 0.094, + "2023-11-18": 0.0982, + "2023-07-13": 0.0594, + "2023-09-13": 0.0503, + "2023-06-17": 0.0532, + "2023-07-17": 0.0602, + "2023-07-07": 0.0564, + "2023-09-07": 0.0505, + "2024-03-26": 0.149154930039698, + "2024-05-14": 0.1218, + "2024-02-22": 0.0916, + "2024-04-15": 0.133, + "2023-12-30": 0.099, + "2023-09-17": 0.0515, + "2024-04-17": 0.12350638432975734, + "2024-02-12": 0.0875, + "2023-10-26": 0.059, + "2024-01-03": 0.0971, + "2024-05-07": 0.1296999865386903, + "2023-06-01": 0.0588, + "2024-01-22": 0.0795, + "2023-06-12": 0.0539, + "2023-10-03": 0.0502, + "2024-05-26": 0.1197, + "2024-04-30": 0.1327, + "2023-06-19": 0.0536, + "2023-07-09": 0.0568, + "2023-12-24": 0.0994, + "2023-09-24": 0.04446377132743973, + "2024-01-16": 0.0881, + "2023-10-17": 0.0521, + "2024-04-24": 0.1292498251381696, + "2024-03-18": 0.1363, + "2024-02-17": 0.089, + "2023-12-27": 0.0987, + "2023-07-23": 0.0606, + "2023-09-03": 0.0505, + "2024-02-24": 0.0937, + "2024-01-06": 0.0892, + "2024-03-20": 0.1278, + "2023-11-21": 0.0892, + "2023-12-25": 0.0994, + "2023-09-22": 0.0502, + "2023-10-02": 0.0513, + "2024-03-27": 0.1469, + "2024-05-06": 0.133, + "2023-08-30": 0.0521, + "2023-10-06": 0.0504, + "2023-10-13": 0.0515, + "2023-06-28": 0.05619158761191859, + "2024-02-05": 0.0818, + "2024-03-01": 0.1182, + "2023-07-15": 0.0605, + "2023-06-25": 0.0588892831001456, + "2023-12-10": 0.1056, + "2023-11-23": 0.0936, + "2023-08-04": 0.0584, + "2024-05-13": 0.1246, + "2024-01-13": 0.0886, + "2024-03-28": 0.1522, + "2023-08-05": 0.0574, + "2024-02-09": 0.0886, + "2023-10-09": 0.0495, + "2024-01-09": 0.0885, + "2024-05-10": 0.1235, + "2023-05-27": 0.0601, + "2023-08-18": 0.0517, + "2023-11-05": 0.0691, + "2024-04-18": 0.1224, + "2023-10-22": 0.0538, + "2023-11-01": 0.0614, + "2024-05-20": 0.126, + "2023-12-08": 0.0963, + "2024-04-12": 0.14715984616201766, + "2023-07-06": 0.0576, + "2024-03-12": 0.16182345109445587, + "2023-09-11": 0.0502, + "2024-03-03": 0.1421, + "2024-02-04": 0.0813, + "2024-01-28": 0.0814, + "2023-07-01": 0.0567, + "2023-11-07": 0.0806, + "2023-11-25": 0.0976, + "2023-06-04": 0.06167453576509564, + "2024-02-25": 0.0937, + "2023-12-01": 0.0922, + "2023-07-14": 0.06, + "2024-01-26": 0.08114804065342963, + "2023-08-03": 0.0593, + "2024-02-28": 0.1034, + "2023-09-15": 0.0509, + "2023-07-18": 0.0597, + "2023-12-21": 0.0978, + "2023-07-20": 0.0595, + "2024-03-06": 0.1529, + "2023-09-30": 0.0504, + "2023-12-12": 0.1005, + "2024-02-13": 0.0914, + "2023-09-20": 0.05118358386603205, + "2023-09-19": 0.05113923669010314, + "2023-09-29": 0.0505, + "2023-09-12": 0.0505, + "2023-06-13": 0.0524, + "2023-10-04": 0.0499, + "2023-07-08": 0.0564, + "2024-04-16": 0.12485742469279242, + "2024-03-02": 0.1404, + "2023-06-27": 0.0565, + "2023-10-08": 0.0502, + "2023-11-20": 0.0974, + "2023-12-20": 0.0973, + "2023-12-31": 0.0994, + "2023-11-06": 0.0734, + "2023-08-22": 0.0518, + "2023-06-09": 0.0578, + "2024-03-17": 0.1386, + "2023-09-18": 0.0512, + "2024-04-01": 0.1528, + "2024-05-21": 0.1271, + "2024-01-19": 0.0811, + "2023-11-11": 0.1095, + "2023-09-23": 0.050489999368378016, + "2023-11-19": 0.0971, + "2023-07-02": 0.0569, + "2023-08-15": 0.0562, + "2024-01-25": 0.0784, + "2024-03-13": 0.16, + "2024-01-21": 0.0833, + "2024-02-01": 0.0808, + "2023-06-15": 0.0519, + "2024-03-16": 0.14246339281582052, + "2023-11-27": 0.0923, + "2024-01-10": 0.0885, + "2024-03-15": 0.1391, + "2023-06-21": 0.0562, + "2024-01-02": 0.1018, + "2023-07-11": 0.0565, + "2023-10-25": 0.0577, + "2024-01-01": 0.0988, + "2024-02-14": 0.0919, + "2023-09-04": 0.05220208324255834, + "2023-09-06": 0.05, + "2024-04-03": 0.1461, + "2023-11-28": 0.0927, + "2023-12-03": 0.09203121293661906, + "2023-08-02": 0.0592, + "2023-08-27": 0.051, + "2023-10-20": 0.0521, + "2023-10-10": 0.0494305431370288, + "2024-05-03": 0.13167732720073758, + "2024-03-08": 0.1603, + "2024-04-11": 0.14695812208421613, + "2023-06-22": 0.0574, + "2024-01-14": 0.0896, + "2023-12-15": 0.0996, + "2023-10-19": 0.0513, + "2024-02-08": 0.0849, + "2023-11-08": 0.0802, + "2023-11-12": 0.1018, + "2023-12-22": 0.1013, + "2023-05-31": 0.0597, + "2024-03-23": 0.1374, + "2023-09-27": 0.05025956402425703, + "2024-03-04": 0.1421, + "2023-09-10": 0.0523, + "2024-04-13": 0.1256, + "2024-02-29": 0.1088, + "2023-07-21": 0.061363579966375106, + "2023-06-30": 0.056078215710319526, + "2023-12-29": 0.0996, + "2023-12-04": 0.0965, + "2024-04-10": 0.1445, + "2024-05-08": 0.1254, + "2023-09-21": 0.0513, + "2023-06-02": 0.0592, + "2024-04-21": 0.1303, + "2023-07-22": 0.0608, + "2023-10-11": 0.0492, + "2024-03-21": 0.1389, + "2023-07-19": 0.0597, + "2024-05-05": 0.13253905777418098, + "2024-05-23": 0.123, + "2024-04-08": 0.1496, + "2024-05-18": 0.1253, + "2023-06-14": 0.0523, + "2023-10-05": 0.0502, + "2023-10-16": 0.0528, + "2024-05-22": 0.1265, + "2024-02-10": 0.088, + "2024-04-07": 0.14648229032391683, + "2024-02-20": 0.0905, + "2023-11-17": 0.0965, + "2023-12-11": 0.0989, + "2023-11-26": 0.0952, + "2023-11-16": 0.0996, + "2023-06-29": 0.0554, + "2023-10-27": 0.0591, + "2023-06-11": 0.0547, + "2024-02-02": 0.082, + "2023-09-14": 0.0507, + "2024-01-27": 0.0817, + "2024-03-30": 0.153, + "2023-11-22": 0.0934, + "2023-09-28": 0.05, + "2023-06-03": 0.0594, + "2024-01-18": 0.083, + "2023-08-26": 0.051, + "2024-02-15": 0.09118163755261814, + "2023-10-28": 0.0595, + "2024-03-24": 0.1405, + "2024-04-27": 0.12455649967882497, + "2023-12-06": 0.096, + "2024-01-30": 0.0844, + "2023-11-14": 0.0892, + "2023-08-09": 0.0577, + "2024-05-15": 0.1243236500169407, + "2023-11-10": 0.0923, + "2024-01-23": 0.0749, + "2024-01-31": 0.0818, + "2024-05-11": 0.12465515868905908, + "2024-01-11": 0.0927, + "2024-02-18": 0.0905, + "2023-06-16": 0.0527465498610852, + "2023-10-30": 0.0604, + "2023-12-17": 0.0995, + "2024-02-26": 0.0969, + "2023-07-16": 0.06068850684066011, + "2024-01-05": 0.0935, + "2023-08-23": 0.0515, + "2024-03-11": 0.1671, + "2023-08-01": 0.05967537656661161, + "2024-03-14": 0.1522, + "2024-02-21": 0.0892, + "2023-08-28": 0.05290459219542285, + "2023-07-04": 0.0571, + "2023-12-13": 0.0994, + "2024-02-27": 0.1025, + "2023-08-13": 0.057, + "2024-03-31": 0.1521, + "2023-12-09": 0.1084, + "2024-04-02": 0.1414, + "2024-02-06": 0.0815, + "2024-04-09": 0.151, + "2023-11-04": 0.0672, + "2024-04-20": 0.1295, + "2024-01-15": 0.0877, + "2023-07-03": 0.0567, + "2023-12-28": 0.1012, + "2023-05-30": 0.0606, + "2024-05-25": 0.121, + "2024-02-07": 0.082, + "2023-09-25": 0.0502, + "2024-03-19": 0.1252, + "2024-03-10": 0.1665, + "2024-05-02": 0.12536686562252378, + "2023-09-02": 0.0503, + "2024-01-12": 0.0905, + "2024-04-19": 0.1222, + "2023-11-29": 0.09171293779248846, + "2023-10-15": 0.0518, + "2024-05-28": 0.1186, + "2023-11-30": 0.0903, + "2024-01-24": 0.0787, + "2023-08-11": 0.0572, + "2024-02-11": 0.0878, + "2023-06-08": 0.0588, + "2023-11-15": 0.1024, + "2023-12-16": 0.1015, + "2024-03-29": 0.1539933152227488, + "2024-04-04": 0.1436, + "2023-06-10": 0.052, + "2023-07-28": 0.0596, + "2024-01-20": 0.083, + "2023-10-21": 0.0534, + "2023-08-16": 0.05539342503982055, + "2024-05-24": 0.12076976250529908, + "2023-11-03": 0.0667, + "2023-08-31": 0.0517, + "2024-05-27": 0.1207, + "2024-01-04": 0.0969, + "2023-07-26": 0.05978463592557855, + "2023-11-13": 0.0959, + "2023-10-24": 0.0575, + "2024-03-25": 0.1466, + "2023-08-07": 0.058, + "2023-10-29": 0.0594, + "2024-01-29": 0.08300875215213614, + "2024-05-04": 0.1338, + "2023-06-05": 0.0591, + "2023-11-02": 0.0644, + "2023-12-18": 0.0957, + "2023-11-24": 0.0979, + "2023-08-21": 0.0521, + "2023-07-25": 0.0584, + "2024-05-16": 0.1243, + "2023-08-14": 0.0568, + "2024-05-01": 0.1249, + "2024-03-05": 0.1616, + "2024-04-06": 0.14379303375226543, + "2023-12-23": 0.1007, + "2024-02-03": 0.0821, + "2024-02-16": 0.091, + "2023-05-28": 0.0607, + "2023-12-14": 0.1024, + "2023-06-24": 0.0587, + "2023-12-26": 0.0978, + "2023-11-09": 0.0812, + "2023-08-19": 0.05201560524351616, + "2024-05-09": 0.1252, + "2024-01-17": 0.0858, + "2023-06-23": 0.0586, + "2023-06-18": 0.0537, + "2024-04-23": 0.1312, + "2023-08-08": 0.0578, + "2023-08-17": 0.0534, + "2024-04-14": 0.1273, + "2023-07-24": 0.0589, + "2023-10-14": 0.052, + "2024-05-22T20": 0.12631402991871576, + "2024-05-25T08": 0.12111149955764204, + "2024-05-22T05": 0.1258, + "2024-05-28T03": 0.11984360239638461, + "2024-05-22T16": 0.1265, + "2024-05-25T05": 0.121, + "2024-05-24T22": 0.12055312019999999, + "2024-05-27T14": 0.12031270653945263, + "2024-05-22T03": 0.1262, + "2024-05-23T17": 0.1225, + "2024-05-24T23": 0.1207682578, + "2024-05-26T19": 0.1189, + "2024-05-26T18": 0.1183, + "2024-05-26T10": 0.1199, + "2024-05-27T16": 0.1215, + "2024-05-24T12": 0.12044733480000001, + "2024-05-26T01": 0.1207, + "2024-05-21T17": 0.12581964877030316, + "2024-05-23T07": 0.12491300539688915, + "2024-05-22T08": 0.1262, + "2024-05-23T09": 0.1264, + "2024-05-24T18": 0.12181906, + "2024-05-23T01": 0.1248, + "2024-05-25T15": 0.1211, + "2024-05-23T16": 0.1232, + "2024-05-25T03": 0.1211, + "2024-05-28T06": 0.1192, + "2024-05-25T23": 0.1207, + "2024-05-24T13": 0.120267796, + "2024-05-26T03": 0.1202, + "2024-05-26T00": 0.1208, + "2024-05-25T06": 0.121, + "2024-05-27T04": 0.1203, + "2024-05-22T10": 0.1268, + "2024-05-27T09": 0.12, + "2024-05-24T17": 0.12084922199999999, + "2024-05-26T16": 0.1191, + "2024-05-22T09": 0.1262, + "2024-05-24T21": 0.12120213321571664, + "2024-05-25T04": 0.1212, + "2024-05-27T22": 0.1212, + "2024-05-27T11": 0.119114117021548, + "2024-05-23T21": 0.1214, + "2024-05-23T10": 0.1263, + "2024-05-23T14": 0.1236, + "2024-05-27T02": 0.1207, + "2024-05-25T18": 0.12063658851039856, + "2024-05-27T05": 0.1203, + "2024-05-22T23": 0.1257, + "2024-05-28T01": 0.1219, + "2024-05-22T04": 0.1255, + "2024-05-22T15": 0.1259, + "2024-05-24T03": 0.12270425226302839, + "2024-05-24T08": 0.11921541749999999, + "2024-05-21T22": 0.125, + "2024-05-21T16": 0.12600310146470683, + "2024-05-21T23": 0.1252, + "2024-05-24T02": 0.12214356779999999, + "2024-05-26T07": 0.1207, + "2024-05-27T07": 0.12024158956120787, + "2024-05-25T22": 0.1204, + "2024-05-24T16": 0.12040940680000001, + "2024-05-27T20": 0.1208, + "2024-05-22T02": 0.1267, + "2024-05-24T06": 0.1202870504, + "2024-05-24T11": 0.12040243477707903, + "2024-05-25T21": 0.1204, + "2024-05-27T15": 0.1209, + "2024-05-21T19": 0.1246, + "2024-05-22T19": 0.1253, + "2024-05-21T12": 0.1277, + "2024-05-23T20": 0.1192, + "2024-05-23T08": 0.1258, + "2024-05-22T22": 0.1254, + "2024-05-26T11": 0.12, + "2024-05-24T01": 0.12225108000000001, + "2024-05-23T05": 0.12484708355922346, + "2024-05-28T04": 0.1191, + "2024-05-25T09": 0.1213, + "2024-05-27T18": 0.1212, + "2024-05-24T10": 0.1203186062, + "2024-05-25T19": 0.1208, + "2024-05-24T07": 0.1191766212, + "2024-05-26T04": 0.1202, + "2024-05-26T09": 0.1199, + "2024-05-23T02": 0.125, + "2024-05-27T06": 0.1202, + "2024-05-28T08": 0.1191, + "2024-05-24T15": 0.120929505, + "2024-05-25T20": 0.1209, + "2024-05-27T08": 0.1202, + "2024-05-23T22": 0.1221, + "2024-05-26T15": 0.11934433518081969, + "2024-05-24T20": 0.12156857689473484, + "2024-05-21T20": 0.1246, + "2024-05-25T13": 0.1211, + "2024-05-22T01": 0.1278, + "2024-05-25T17": 0.1205, + "2024-05-27T10": 0.1197, + "2024-05-21T21": 0.1242, + "2024-05-24T19": 0.12152442587040195, + "2024-05-26T02": 0.1201, + "2024-05-27T19": 0.1208, + "2024-05-25T11": 0.1223, + "2024-05-27T17": 0.1213, + "2024-05-21T18": 0.1254, + "2024-05-26T06": 0.1204, + "2024-05-23T00": 0.1258, + "2024-05-22T00": 0.128, + "2024-05-24T05": 0.12093344999999998, + "2024-05-23T15": 0.1234, + "2024-05-22T13": 0.1251, + "2024-05-21T10": 0.1275, + "2024-05-22T12": 0.126, + "2024-05-23T04": 0.1252, + "2024-05-26T08": 0.1206, + "2024-05-26T13": 0.1196, + "2024-05-28T05": 0.1191, + "2024-05-22T18": 0.1253, + "2024-05-22T06": 0.1262, + "2024-05-21T08": 0.1271, + "2024-05-22T17": 0.12624081482118427, + "2024-05-23T19": 0.1211, + "2024-05-25T07": 0.1208, + "2024-05-26T22": 0.1183, + "2024-05-25T16": 0.1208, + "2024-05-26T05": 0.12, + "2024-05-24T04": 0.12235535428235599, + "2024-05-21T14": 0.1279, + "2024-05-25T12": 0.1222, + "2024-05-28T07": 0.1191, + "2024-05-23T18": 0.1208, + "2024-05-26T23": 0.1195, + "2024-05-24T09": 0.1199759865, + "2024-05-23T03": 0.125, + "2024-05-26T14": 0.1196, + "2024-05-21T13": 0.128, + "2024-05-22T14": 0.1255, + "2024-05-25T14": 0.121, + "2024-05-25T00": 0.1204, + "2024-05-23T23": 0.1223, + "2024-05-21T11": 0.1271, + "2024-05-23T13": 0.1235, + "2024-05-22T11": 0.1267, + "2024-05-21T15": 0.1256, + "2024-05-28T00": 0.1212, + "2024-05-27T23": 0.1215, + "2024-05-28T02": 0.1204, + "2024-05-26T21": 0.1182, + "2024-05-26T12": 0.1199, + "2024-05-23T06": 0.1249, + "2024-05-22T07": 0.1263, + "2024-05-27T12": 0.1192, + "2024-05-22T21": 0.1254, + "2024-05-24T00": 0.122304938, + "2024-05-25T02": 0.1207, + "2024-05-27T00": 0.1194, + "2024-05-26T20": 0.1187, + "2024-05-26T17": 0.1185, + "2024-05-27T13": 0.1203, + "2024-05-23T12": 0.1247, + "2024-05-25T10": 0.1218, + "2024-05-21T09": 0.1273, + "2024-05-23T11": 0.1258, + "2024-05-24T14": 0.12065648208207896, + "2024-05-25T01": 0.1205, + "2024-05-27T21": 0.1209, + "2024-05-27T03": 0.1216, + "2024-05-27T01": 0.1195, + "latest": 0.111451, + "2024-05-28T09": 0.1191, + "2024-05-28T10": 0.1198, + "2024-05-28T11": 0.1195, + "2024-05-28T12": 0.1192, + "2024-05-28T13": 0.1186, + "2024-05-28T14": 0.1181, + "2024-05-28T15": 0.11805973013707714, + "2024-05-29": 0.1178, + "2024-05-28T20": 0.11800144420187716, + "2024-05-28T22": 0.11851563103264864, + "2024-05-28T21": 0.11811801694039305, + "2024-05-28T19": 0.11715578681057282, + "2024-05-29T02": 0.1181, + "2024-05-28T17": 0.11713422263781638, + "2024-05-28T18": 0.11722912908018157, + "2024-05-28T23": 0.11816958379813917, + "2024-05-29T00": 0.11794727694664096, + "2024-05-29T01": 0.11792991645600333, + "2024-05-28T16": 0.11878238517942126, + "2024-05-29T06": 0.1197, + "2024-05-29T05": 0.1186, + "2024-05-29T03": 0.1177, + "2024-05-29T07": 0.11896258461214905, + "2024-05-29T04": 0.11823171968098695, + "2024-05-29T08": 0.11807606980824915, + "2024-05-29T09": 0.1179, + "2024-05-29T10": 0.1179, + "2024-05-29T11": 0.11779722020577438, + "2024-05-29T12": 0.11719379922232763, + "2024-05-29T13": 0.1176182778756877, + "2024-05-29T14": 0.1176, + "2024-05-29T15": 0.1171, + "2024-05-29T18": 0.11691520639456729, + "2024-05-29T17": 0.1175, + "2024-05-29T23": 0.1166, + "2024-05-29T19": 0.117, + "2024-05-29T22": 0.1166, + "2024-05-29T20": 0.1167, + "2024-05-29T16": 0.1172, + "2024-05-29T21": 0.1163, + "2024-05-30": 0.1163, + "2024-05-30T00": 0.1164, + "2024-05-30T05": 0.1173, + "2024-05-30T02": 0.1171, + "2024-05-30T01": 0.1162, + "2024-05-30T06": 0.1159, + "2024-05-30T07": 0.1157, + "2024-05-30T03": 0.1171, + "2024-05-30T04": 0.1173, + "2024-05-30T08": 0.1149, + "2024-05-30T09": 0.116, + "2024-05-30T10": 0.1161, + "2024-05-30T11": 0.1161, + "2024-05-30T12": 0.116, + "2024-05-30T13": 0.1162, + "2024-05-30T14": 0.11697758895550267, + "2024-05-30T15": 0.1169, + "2024-05-30T21": 0.1155, + "2024-05-30T20": 0.116, + "2024-05-30T18": 0.1177, + "2024-05-30T22": 0.11604227580647102, + "2024-05-30T16": 0.1173, + "2024-05-30T17": 0.118, + "2024-05-30T19": 0.1173, + "2024-05-31": 0.11637983091969893, + "2024-05-30T23": 0.1164, + "2024-05-31T03": 0.116, + "2024-05-31T07": 0.1155, + "2024-05-31T06": 0.1154, + "2024-05-31T04": 0.1157, + "2024-05-31T02": 0.1161, + "2024-05-31T05": 0.1156, + "2024-05-31T00": 0.1161, + "2024-05-31T01": 0.1163, + "2024-05-31T08": 0.1155, + "2024-05-31T09": 0.1155, + "2024-05-31T10": 0.1154, + "2024-05-31T11": 0.1154, + "2024-05-31T12": 0.1154, + "2024-05-31T13": 0.115, + "2024-05-31T14": 0.1142, + "2024-06-01": 0.1125, + "2024-06-01T08": 0.1121, + "2024-06-01T02": 0.1131, + "2024-06-01T05": 0.1128, + "2024-05-31T21": 0.1132, + "2024-06-01T00": 0.1131, + "2024-05-31T18": 0.1134, + "2024-05-31T15": 0.1126, + "2024-05-31T23": 0.1131, + "2024-05-31T22": 0.1128, + "2024-06-01T01": 0.113, + "2024-06-01T07": 0.1125, + "2024-06-01T04": 0.11292332735568328, + "2024-05-31T19": 0.1136, + "2024-06-01T06": 0.1127, + "2024-05-31T20": 0.1134, + "2024-05-31T17": 0.1132, + "2024-05-31T16": 0.1118, + "2024-06-01T03": 0.1131, + "2024-06-01T09": 0.1122, + "2024-06-01T10": 0.1124, + "2024-06-02": 0.1116, + "2024-06-01T13": 0.113, + "2024-06-01T15": 0.1128, + "2024-06-01T18": 0.1125, + "2024-06-01T12": 0.113, + "2024-06-01T21": 0.1115, + "2024-06-01T20": 0.1115, + "2024-06-02T01": 0.1121, + "2024-06-01T17": 0.1124, + "2024-06-01T11": 0.113, + "2024-06-02T00": 0.11202450012647983, + "2024-06-01T23": 0.1117, + "2024-06-01T14": 0.11281768934341457, + "2024-06-01T22": 0.1118, + "2024-06-01T19": 0.1115, + "2024-06-01T16": 0.1124, + "2024-06-02T13": 0.1126, + "2024-06-02T11": 0.113, + "2024-06-02T07": 0.1128, + "2024-06-02T05": 0.11334819679321337, + "2024-06-02T08": 0.11170407252428241, + "2024-06-02T04": 0.113, + "2024-06-02T10": 0.1117, + "2024-06-02T12": 0.113, + "2024-06-02T02": 0.1129, + "2024-06-02T16": 0.11224377349917858, + "2024-06-02T17": 0.1108, + "2024-06-02T03": 0.1129, + "2024-06-02T09": 0.1117, + "2024-06-02T15": 0.1125, + "2024-06-02T06": 0.1132, + "2024-06-02T18": 0.1098, + "2024-06-02T14": 0.1125, + "2024-06-03": 0.1116, + "2024-06-03T01": 0.1107, + "2024-06-02T20": 0.1106, + "2024-06-03T00": 0.10960614134548224, + "2024-06-02T21": 0.11031153901864686, + "2024-06-02T23": 0.11, + "2024-06-02T19": 0.1095, + "2024-06-02T22": 0.1102, + "2024-06-03T02": 0.1111, + "2024-06-03T05": 0.1101, + "2024-06-03T06": 0.1112, + "2024-06-03T04": 0.11031364597975399, + "2024-06-03T03": 0.1108, + "2024-06-03T07": 0.11124630209536461 + }, + "USD dash": { + "2023-07-30": 32.23611686111787, + "2023-10-23": 26.24015194714479, + "2023-07-27": 31.787758162805606, + "2023-07-10": 33.28784245565416, + "2023-08-20": 27.015918524923414, + "2024-02-23": 29.313615977567338, + "2024-04-05": 36.090809925277206, + "2023-12-19": 31.255708285598207, + "2024-05-17": 29.661910917061892, + "2023-08-06": 31.79493613596771, + "2023-12-02": 31.336502110450976, + "2023-10-31": 29.788044499352875, + "2023-08-29": 26.99764423038427, + "2023-06-20": 31.9163933195925, + "2023-09-09": 26.434991410083942, + "2023-06-26": 35.57196493169206, + "2023-10-01": 27.89670401386059, + "2024-03-07": 39.03454799243797, + "2023-10-12": 25.16394176241084, + "2024-04-22": 31.49561024430982, + "2023-07-05": 35.58216930048341, + "2023-07-29": 32.37049128907522, + "2024-04-26": 30.285829103897136, + "2024-01-08": 27.06091077533795, + "2023-05-29": 43.54869909281675, + "2023-10-07": 26.98990667139772, + "2023-09-26": 26.940771782930423, + "2023-08-24": 25.854724479711678, + "2023-12-05": 31.771494364758986, + "2024-02-19": 29.953417112840654, + "2024-01-07": 28.524456774730087, + "2024-04-28": 29.89702030947537, + "2023-07-31": 31.913402666884828, + "2023-10-18": 24.911207226052042, + "2024-05-19": 29.528309821099057, + "2024-05-12": 28.487829650332788, + "2024-04-29": 28.99645551611204, + "2023-08-25": 25.335404131714448, + "2024-03-09": 40.409525118213516, + "2023-07-12": 33.67453006500448, + "2023-09-05": 25.75980745370485, + "2023-06-07": 39.06371033570889, + "2023-09-16": 26.808689906096166, + "2024-04-25": 30.111851636270792, + "2023-08-12": 32.429319362169984, + "2023-06-06": 39.227155679062335, + "2023-09-01": 25.821510201873636, + "2023-09-08": 26.1195451365782, + "2024-03-22": 35.31009938597369, + "2023-08-10": 32.70241625694438, + "2023-12-07": 32.56439945690032, + "2023-11-18": 29.81822169031334, + "2023-07-13": 34.70465701593123, + "2023-09-13": 25.586087090084302, + "2023-06-17": 31.19112369751295, + "2023-07-17": 33.15230321390295, + "2023-07-07": 33.79867843958996, + "2023-09-07": 25.857654233485604, + "2024-03-26": 38.51018423484903, + "2024-05-14": 27.815843820994107, + "2024-02-22": 30.06093641276646, + "2024-04-15": 29.563773192273633, + "2023-12-30": 32.88331718201363, + "2023-09-17": 26.34125079335283, + "2024-04-17": 27.72802724222782, + "2024-02-12": 27.582032372978578, + "2023-10-26": 27.978229540067623, + "2024-01-03": 29.34856811403189, + "2024-05-07": 29.174285687454226, + "2023-06-01": 41.865814546449435, + "2024-01-22": 28.007236148161454, + "2023-06-12": 28.776877618989737, + "2023-10-03": 27.585294780468935, + "2024-05-26": 30.079167599999998, + "2024-04-30": 28.037159410278278, + "2023-06-19": 30.505302453117263, + "2023-07-09": 33.644926821143656, + "2023-12-24": 34.43940879513096, + "2023-09-24": 26.735330499472376, + "2024-01-16": 29.257432870914712, + "2023-10-17": 25.445073337190145, + "2024-04-24": 31.277537755855985, + "2024-03-18": 35.7446853353332, + "2024-02-17": 29.180130274586784, + "2023-12-27": 37.1939705411813, + "2023-07-23": 33.53942144933123, + "2023-09-03": 25.605817457366964, + "2024-02-24": 30.385653425103566, + "2024-01-06": 28.656847184808008, + "2024-03-20": 33.71714129102746, + "2023-11-21": 29.877272498322156, + "2023-12-25": 35.05803994755223, + "2023-09-22": 26.480469021403987, + "2023-10-02": 27.950238796572116, + "2024-03-27": 37.79317896099203, + "2024-05-06": 29.334055165567232, + "2023-08-30": 27.003993312750524, + "2023-10-06": 27.051895007052533, + "2023-10-13": 25.20123385701144, + "2023-06-28": 34.85869498409467, + "2024-02-05": 26.934183592368818, + "2024-03-01": 33.12060032434626, + "2023-07-15": 34.22818081427569, + "2023-06-25": 35.74762484741347, + "2023-12-10": 35.0487360958236, + "2023-11-23": 29.406798878695056, + "2023-08-04": 31.225549456274667, + "2024-05-13": 28.206008851607674, + "2024-01-13": 28.99270151448016, + "2024-03-28": 38.31251581648477, + "2023-08-05": 30.772467460455605, + "2024-02-09": 27.490078778169664, + "2023-10-09": 26.077617153038997, + "2024-01-09": 27.593889587389537, + "2024-05-10": 29.59619199756332, + "2023-05-27": 42.36229539209207, + "2023-08-18": 26.380980821265325, + "2023-11-05": 30.35019486744407, + "2024-04-18": 28.490963054863137, + "2023-10-22": 25.995600483731092, + "2023-11-01": 29.06062656679173, + "2024-05-20": 29.305012153254875, + "2023-12-08": 33.81602786822778, + "2024-04-12": 34.10996434212029, + "2023-07-06": 34.859865021061665, + "2024-03-12": 42.24726210173178, + "2023-09-11": 25.065425034630728, + "2024-03-03": 37.91713160754684, + "2024-02-04": 27.11531550087107, + "2024-01-28": 27.98705897152213, + "2023-07-01": 38.17846479096314, + "2023-11-07": 30.97740068741943, + "2023-11-25": 30.88400635828782, + "2023-06-04": 43.22161842492851, + "2024-02-25": 30.255331617793974, + "2023-12-01": 30.382418486314315, + "2023-07-14": 35.662612938933314, + "2024-01-26": 27.859984566043785, + "2023-08-03": 31.964467509691012, + "2024-02-28": 31.02650621271257, + "2023-09-15": 25.942795178112295, + "2023-07-18": 32.4840020721518, + "2023-12-21": 31.901178004957814, + "2023-07-20": 32.62608644285096, + "2024-03-06": 37.67563127223085, + "2023-09-30": 27.689748016048743, + "2023-12-12": 32.77809496503948, + "2024-02-13": 28.085720368192185, + "2023-09-20": 26.3423781984053, + "2023-09-19": 26.33438567785122, + "2023-09-29": 27.19141158515483, + "2023-09-12": 25.39255014107971, + "2023-06-13": 29.590868821104884, + "2023-10-04": 26.89379390460476, + "2023-07-08": 33.612921448463176, + "2024-04-16": 27.840574707158183, + "2024-03-02": 35.74903997900537, + "2023-06-27": 36.4258767197383, + "2023-10-08": 26.724203313501818, + "2023-11-20": 30.90421205924732, + "2023-12-20": 31.268391698198613, + "2023-12-31": 32.63882166034285, + "2023-11-06": 30.702003965734576, + "2023-08-22": 26.449728571402876, + "2023-06-09": 38.819474858913274, + "2024-03-17": 36.56306573395473, + "2023-09-18": 26.225960444020867, + "2024-04-01": 38.36176276969557, + "2024-05-21": 31.073427595079927, + "2024-01-19": 27.6394669464688, + "2023-11-11": 32.29698193339346, + "2023-09-23": 26.758527507747225, + "2023-11-19": 30.009636880016814, + "2023-07-02": 37.744254423840054, + "2023-08-15": 31.246270342759964, + "2024-01-25": 26.738359923428174, + "2024-03-13": 42.71976815021523, + "2024-01-21": 28.962567341165517, + "2024-02-01": 26.643220500400087, + "2023-06-15": 29.367930007372912, + "2024-03-16": 37.90140833110126, + "2023-11-27": 29.90874555940967, + "2024-01-10": 27.749582679109672, + "2024-03-15": 38.06475567122413, + "2023-06-21": 33.3456690283059, + "2024-01-02": 33.454722062971115, + "2023-07-11": 33.51133900424165, + "2023-10-25": 27.8131764633726, + "2024-01-01": 31.96247171457987, + "2024-02-14": 28.357886602669748, + "2023-09-04": 25.648154868440848, + "2023-09-06": 25.617583116145976, + "2024-04-03": 36.014325848183326, + "2023-11-28": 29.82583468308985, + "2023-12-03": 31.53745888014517, + "2023-08-02": 32.10104592719597, + "2023-08-27": 25.745959452889622, + "2023-10-20": 25.522507626514898, + "2023-10-10": 25.998414484141225, + "2024-05-03": 29.536129678980483, + "2024-03-08": 39.24148258585637, + "2024-04-11": 36.959527709802856, + "2023-06-22": 33.7546485453729, + "2024-01-14": 29.14820986650583, + "2023-12-15": 33.29881065090528, + "2023-10-19": 24.795183204646168, + "2024-02-08": 26.791208597896542, + "2023-11-08": 31.296816429391637, + "2023-11-12": 33.124144289910255, + "2023-12-22": 32.6390787203477, + "2023-05-31": 42.62500910469398, + "2024-03-23": 35.660028039494414, + "2023-09-27": 26.538806535109654, + "2024-03-04": 39.05430825085321, + "2023-09-10": 25.81512194408068, + "2024-04-13": 29.602083621015808, + "2024-02-29": 32.86635361930488, + "2023-07-21": 32.958145108350955, + "2023-06-30": 36.94223694947952, + "2023-12-29": 34.24644933358037, + "2023-12-04": 32.00786340359104, + "2024-04-10": 36.59330811341488, + "2024-05-08": 28.91611394139543, + "2023-09-21": 26.23161312089891, + "2023-06-02": 42.47187052102784, + "2024-04-21": 30.86873060923526, + "2023-07-22": 33.20141843659599, + "2023-10-11": 25.54776511475305, + "2024-03-21": 35.76071155433882, + "2023-07-19": 32.39761109895361, + "2024-05-05": 29.139647521713158, + "2024-05-23": 30.495934918604224, + "2024-04-08": 38.80500017266886, + "2024-05-18": 29.828349751695036, + "2023-06-14": 29.988335939915693, + "2023-10-05": 27.114116770545476, + "2023-10-16": 25.649962131300658, + "2024-05-22": 30.85339093776182, + "2024-02-10": 27.360149711540952, + "2024-04-07": 37.54710029013805, + "2024-02-20": 29.94008443409618, + "2023-11-17": 30.764597698060218, + "2023-12-11": 32.66725396454795, + "2023-11-26": 30.860838537284067, + "2023-11-16": 31.724953251720315, + "2023-06-29": 34.27301643343965, + "2023-10-27": 27.69411567301935, + "2023-06-11": 29.388644555327158, + "2024-02-02": 27.19031489619, + "2023-09-14": 25.734613550779365, + "2024-01-27": 27.779890135127893, + "2024-03-30": 39.20271228588014, + "2023-11-22": 28.543530423751996, + "2023-09-28": 26.59955567373974, + "2023-06-03": 42.85999231945465, + "2024-01-18": 28.35140632923536, + "2023-08-26": 25.551074876770944, + "2024-02-15": 28.77209725740871, + "2023-10-28": 28.16859337878218, + "2024-03-24": 36.34385729973236, + "2024-04-27": 29.462614222352244, + "2023-12-06": 32.3156108612796, + "2024-01-30": 28.134322912492287, + "2023-11-14": 31.801607166973106, + "2023-08-09": 33.074935939034525, + "2024-05-15": 28.487077570721016, + "2023-11-10": 31.386124240666067, + "2024-01-23": 27.116027070574596, + "2024-01-31": 26.92473932835837, + "2024-05-11": 29.15221572108179, + "2024-01-11": 29.986250926769568, + "2024-02-18": 29.856208086774345, + "2023-06-16": 30.010882790198927, + "2023-10-30": 28.953630849795807, + "2023-12-17": 32.492760263391695, + "2024-02-26": 31.042473851070824, + "2023-07-16": 33.6956616854433, + "2024-01-05": 29.30399234838153, + "2023-08-23": 26.46739289321676, + "2024-03-11": 41.66617521237727, + "2023-08-01": 31.21311779444961, + "2024-03-14": 40.805433231146665, + "2024-02-21": 28.99, + "2023-08-28": 26.015114514146546, + "2023-07-04": 37.45688409420063, + "2023-12-13": 32.51814561090367, + "2024-02-27": 32.07502653567447, + "2023-08-13": 32.16760551926799, + "2024-03-31": 39.71511028767353, + "2023-12-09": 35.08858382604013, + "2024-04-02": 35.723372849016876, + "2024-02-06": 27.033864196120106, + "2024-04-09": 38.69314109411721, + "2023-11-04": 29.421008617665183, + "2024-04-20": 30.02020044544511, + "2024-01-15": 29.095982553488938, + "2023-07-03": 38.07438507943734, + "2023-12-28": 37.44649587621021, + "2023-05-30": 43.56604710920932, + "2024-05-25": 30.62205870700129, + "2024-02-07": 26.823400355983424, + "2023-09-25": 26.742740580247162, + "2024-03-19": 32.990428497620705, + "2024-03-10": 40.430682672445215, + "2024-05-02": 28.73928147077716, + "2023-09-02": 25.254746153123797, + "2024-01-12": 30.048602973087483, + "2024-04-19": 29.613057515435454, + "2023-11-29": 29.91886782913593, + "2023-10-15": 25.591221351983236, + "2024-05-28": 30.821933072610122, + "2023-11-30": 30.06743953078273, + "2024-01-24": 27.023730824777484, + "2023-08-11": 32.55579615085703, + "2024-02-11": 27.811909006066283, + "2023-06-08": 38.72026605155018, + "2023-11-15": 31.74031199638461, + "2023-12-16": 32.71758520860907, + "2024-03-29": 39.43597077043343, + "2024-04-04": 36.5187514060637, + "2023-06-10": 29.49349450206999, + "2023-07-28": 32.18595059366404, + "2024-01-20": 27.46550994096478, + "2023-10-21": 25.875041892834687, + "2023-08-16": 28.985762293808488, + "2024-05-24": 31.032760210351935, + "2023-11-03": 28.544274808337114, + "2023-08-31": 26.893146429201394, + "2024-05-27": 30.378629776888623, + "2024-01-04": 29.670767141384296, + "2023-07-26": 31.386418188320164, + "2023-11-13": 33.15337843788961, + "2023-10-24": 27.961681443436323, + "2024-03-25": 37.06715744746719, + "2023-08-07": 32.76059965237654, + "2023-10-29": 28.57505128323741, + "2024-01-29": 27.68138048703496, + "2024-05-04": 29.712126026912674, + "2023-06-05": 41.27804407762871, + "2023-11-02": 29.3222418152413, + "2023-12-18": 30.955587689405935, + "2023-11-24": 30.049561483855708, + "2023-08-21": 26.52396798635042, + "2023-07-25": 31.834247175782554, + "2024-05-16": 29.34610415494032, + "2023-08-14": 32.134919581997565, + "2024-05-01": 27.488775697837212, + "2024-03-05": 39.262861915569886, + "2024-04-06": 36.79101064434009, + "2023-12-23": 32.60389140893149, + "2024-02-03": 27.309452042014385, + "2024-02-16": 28.98416543667246, + "2023-05-28": 42.84996170347043, + "2023-12-14": 33.67330123915921, + "2023-06-24": 35.14413222240633, + "2023-12-26": 35.796618113090176, + "2023-11-09": 31.480561254262575, + "2023-08-19": 26.579172904446512, + "2024-05-09": 29.518860906194224, + "2024-01-17": 29.092383857983513, + "2023-06-23": 34.175528101876466, + "2023-06-18": 30.998653420737355, + "2024-04-23": 31.515952151234877, + "2023-08-08": 32.89163680651287, + "2023-08-17": 27.707270893790067, + "2024-04-14": 29.254593715540228, + "2023-07-24": 32.2907160238408, + "2023-10-14": 25.58475906066604, + "2024-05-22T20": 30.73263290284138, + "2024-05-25T08": 30.7587394114, + "2024-05-22T05": 30.887837925496004, + "2024-05-28T03": 30.3160314, + "2024-05-22T16": 30.898132940182943, + "2024-05-25T05": 30.8746282227936, + "2024-05-24T22": 30.55134199504469, + "2024-05-27T14": 30.608493185106834, + "2024-05-22T03": 31.012123526485535, + "2024-05-23T17": 30.109753599525906, + "2024-05-24T23": 30.61772543646395, + "2024-05-26T19": 29.933827, + "2024-05-26T18": 30.0043896, + "2024-05-26T10": 30.088863000000003, + "2024-05-27T16": 30.745175930018398, + "2024-05-24T12": 29.907424008604135, + "2024-05-26T01": 30.426957, + "2024-05-21T17": 31.12093341637342, + "2024-05-23T07": 30.90035336196082, + "2024-05-22T08": 30.83685926301077, + "2024-05-23T09": 30.820552014997798, + "2024-05-24T18": 30.39544551802847, + "2024-05-23T01": 30.881696935768932, + "2024-05-25T15": 30.33950925174734, + "2024-05-23T16": 30.234662123648917, + "2024-05-25T03": 30.83338161631992, + "2024-05-28T06": 30.1534416, + "2024-05-25T23": 30.567308649815416, + "2024-05-24T13": 30.110578545263596, + "2024-05-26T03": 30.1766802, + "2024-05-26T00": 30.4460415, + "2024-05-25T06": 30.77037087336, + "2024-05-27T04": 30.100819091372024, + "2024-05-22T10": 30.795087673809757, + "2024-05-27T09": 29.97981909155101, + "2024-05-24T17": 30.15110276532461, + "2024-05-26T16": 30.2073076, + "2024-05-22T09": 30.795160833182603, + "2024-05-24T21": 30.420057419304218, + "2024-05-25T04": 30.883616826913205, + "2024-05-27T22": 30.781445986502803, + "2024-05-27T11": 30.07094081154711, + "2024-05-23T21": 30.014623841574924, + "2024-05-23T10": 30.60529324219182, + "2024-05-23T14": 30.241035968957164, + "2024-05-27T02": 30.005108137945527, + "2024-05-25T18": 30.428946461100004, + "2024-05-27T05": 30.00839016143788, + "2024-05-22T23": 30.673989736081964, + "2024-05-28T01": 30.605496, + "2024-05-22T04": 30.86110836625669, + "2024-05-22T15": 30.791038632132604, + "2024-05-24T03": 30.546515341750144, + "2024-05-24T08": 29.984914794684144, + "2024-05-21T22": 30.93745512367103, + "2024-05-21T16": 30.992112409934183, + "2024-05-21T23": 31.077346653322778, + "2024-05-24T02": 30.542779022877912, + "2024-05-26T07": 30.268796400000003, + "2024-05-27T07": 29.87683408855958, + "2024-05-25T22": 30.473335315723684, + "2024-05-24T16": 30.158270695276652, + "2024-05-27T20": 30.823472463070324, + "2024-05-22T02": 31.156981631812382, + "2024-05-24T06": 30.004539869186768, + "2024-05-24T11": 31.31487252337987, + "2024-05-25T21": 30.447403086243, + "2024-05-27T15": 30.68952369730161, + "2024-05-21T19": 30.926651271639184, + "2024-05-22T19": 30.766124467796445, + "2024-05-21T12": 30.93196397028404, + "2024-05-23T20": 29.471883057254267, + "2024-05-23T08": 30.91087474645885, + "2024-05-22T22": 30.711345815163426, + "2024-05-26T11": 30.086455000000004, + "2024-05-24T01": 30.50150160759385, + "2024-05-23T05": 30.867350285712277, + "2024-05-28T04": 30.008078100000002, + "2024-05-25T09": 30.770343225166318, + "2024-05-27T18": 30.870878836303543, + "2024-05-24T10": 30.456211095908248, + "2024-05-25T19": 30.516092066878947, + "2024-05-24T07": 29.94976159452819, + "2024-05-26T04": 30.1821506, + "2024-05-26T09": 30.079997914112486, + "2024-05-23T02": 30.88087418195904, + "2024-05-27T06": 29.89695645607316, + "2024-05-28T08": 30.293440405154485, + "2024-05-24T15": 30.432928545651762, + "2024-05-25T20": 30.458128808688752, + "2024-05-27T08": 29.95476973918464, + "2024-05-23T22": 30.262804654330388, + "2024-05-26T15": 30.201867999999997, + "2024-05-24T20": 30.427037588242825, + "2024-05-21T20": 30.999908853170172, + "2024-05-25T13": 30.347754003321075, + "2024-05-22T01": 31.138418947460817, + "2024-05-25T17": 30.287165281593264, + "2024-05-27T10": 30.00489423378121, + "2024-05-21T21": 30.823701726772477, + "2024-05-24T19": 30.398088344101236, + "2024-05-26T02": 30.216675799999997, + "2024-05-27T19": 30.732801202585417, + "2024-05-25T11": 30.69160553137257, + "2024-05-27T17": 30.805915424232914, + "2024-05-21T18": 31.19271547519406, + "2024-05-26T06": 30.209725199999998, + "2024-05-23T00": 30.834823025528518, + "2024-05-22T00": 31.220305162168202, + "2024-05-24T05": 30.226575249946922, + "2024-05-23T15": 30.29687786922139, + "2024-05-22T13": 30.61899363665629, + "2024-05-21T10": 30.97826865880031, + "2024-05-22T12": 30.730728843845117, + "2024-05-23T04": 30.99904257033886, + "2024-05-26T08": 30.237295, + "2024-05-26T13": 29.92146982896387, + "2024-05-28T05": 30.126784499999996, + "2024-05-22T18": 30.667117521247906, + "2024-05-22T06": 30.99119931998808, + "2024-05-21T08": 31.121644673556002, + "2024-05-22T17": 30.840295531004823, + "2024-05-23T19": 29.829312985044712, + "2024-05-25T07": 30.8033303741396, + "2024-05-26T22": 29.947416800000003, + "2024-05-25T16": 30.269844107536514, + "2024-05-26T05": 30.180943000000003, + "2024-05-24T04": 30.52140114330039, + "2024-05-21T14": 30.908339123762516, + "2024-05-25T12": 30.462429996315127, + "2024-05-28T07": 30.2651622, + "2024-05-23T18": 29.6413764857661, + "2024-05-26T23": 29.8256768, + "2024-05-24T09": 30.192699276577944, + "2024-05-23T03": 30.951649339374406, + "2024-05-26T14": 30.018288300000002, + "2024-05-21T13": 30.891828065076524, + "2024-05-22T14": 30.757187501168307, + "2024-05-25T14": 30.27307924714437, + "2024-05-25T00": 30.789943759555694, + "2024-05-23T23": 30.268434114243878, + "2024-05-21T11": 31.075291357706305, + "2024-05-23T13": 30.51062848780223, + "2024-05-22T11": 30.747402669501206, + "2024-05-21T15": 30.90807394081125, + "2024-05-28T00": 30.655455999999997, + "2024-05-27T23": 30.71289086465252, + "2024-05-28T02": 30.397489200000003, + "2024-05-26T21": 29.765110000000004, + "2024-05-26T12": 30.040384, + "2024-05-23T06": 30.821013853244523, + "2024-05-22T07": 31.00974279627534, + "2024-05-27T12": 30.31334785092239, + "2024-05-22T21": 30.681156366746677, + "2024-05-24T00": 30.452950541618, + "2024-05-25T02": 30.839875030514882, + "2024-05-27T00": 29.9060567363775, + "2024-05-26T20": 29.8317915, + "2024-05-26T17": 30.103735200000003, + "2024-05-27T13": 30.4779536772545, + "2024-05-23T12": 30.84960588184461, + "2024-05-25T10": 30.709186770267703, + "2024-05-21T09": 30.974658350222462, + "2024-05-23T11": 30.649506089589003, + "2024-05-24T14": 30.252747662580553, + "2024-05-25T01": 30.746670555776, + "2024-05-27T21": 30.786897895900783, + "2024-05-27T03": 30.13992720351817, + "2024-05-27T01": 30.071427515573212, + "latest": 29.74, + "2024-05-28T09": 30.4386159, + "2024-05-28T10": 30.5803083, + "2024-05-28T11": 30.509154600000002, + "2024-05-28T12": 30.429235400000003, + "2024-05-28T13": 30.27969, + "2024-05-28T14": 30.130141599999998, + "2024-05-28T15": 29.9917812, + "2024-05-29": 30.118502109882524, + "2024-05-28T20": 30.2603158, + "2024-05-28T22": 30.1322528, + "2024-05-28T21": 30.1404642, + "2024-05-28T19": 30.1828294, + "2024-05-28T17": 30.239729999999998, + "2024-05-28T18": 30.0424, + "2024-05-28T23": 30.0411328, + "2024-05-29T00": 30.114062694791045, + "2024-05-29T01": 30.106889726953796, + "2024-05-28T16": 30.178279500000002, + "2024-05-29T06": 30.353092609139715, + "2024-05-29T05": 30.296982697182926, + "2024-05-29T03": 30.148240003383517, + "2024-05-29T02": 30.10698887365654, + "2024-05-29T07": 30.15721689374966, + "2024-05-29T04": 30.302870751546305, + "2024-05-29T08": 30.14727105348413, + "2024-05-29T09": 30.206498112539077, + "2024-05-29T10": 30.234655204062907, + "2024-05-29T11": 30.303823260621634, + "2024-05-29T12": 30.00094203447465, + "2024-05-29T13": 30.014332176915396, + "2024-05-29T14": 30.02316386069606, + "2024-05-29T15": 30.052575995356637, + "2024-05-29T18": 30.04081870866498, + "2024-05-29T17": 30.07759489423718, + "2024-05-29T19": 30.041183380071786, + "2024-05-29T22": 29.89006669080868, + "2024-05-29T20": 29.98410776303767, + "2024-05-29T16": 30.01417785688865, + "2024-05-29T21": 29.857985111342323, + "2024-05-30": 29.863063156135293, + "2024-05-30T00": 29.966049821467998, + "2024-05-30T05": 29.900186566052163, + "2024-05-29T23": 29.908250907442245, + "2024-05-30T02": 30.007610168311018, + "2024-05-30T01": 30.014239134208676, + "2024-05-30T06": 29.715264863011857, + "2024-05-30T07": 29.59127712033448, + "2024-05-30T03": 30.01216535977394, + "2024-05-30T04": 30.079808444459218, + "2024-05-30T08": 29.360994254079937, + "2024-05-30T09": 29.63500225270499, + "2024-05-30T10": 29.73204266119942, + "2024-05-30T11": 29.779513893296887, + "2024-05-30T12": 29.699055750937788, + "2024-05-30T13": 29.91928462291554, + "2024-05-30T14": 30.034221390175066, + "2024-05-30T15": 29.926234198929325, + "2024-05-30T21": 29.980832463473813, + "2024-05-30T20": 29.90841355394121, + "2024-05-30T18": 30.246336388823437, + "2024-05-30T16": 30.05681261204988, + "2024-05-30T17": 30.16752315359674, + "2024-05-30T19": 30.14279013239653, + "2024-05-31": 30.1492057894478, + "2024-05-30T22": 29.90109150710519, + "2024-05-30T23": 29.95658434144958, + "2024-05-31T03": 29.95506080826974, + "2024-05-31T07": 30.056797930976845, + "2024-05-31T06": 30.01806178144827, + "2024-05-31T04": 29.945190872879998, + "2024-05-31T02": 29.886952263924908, + "2024-05-31T05": 29.8724904352962, + "2024-05-31T00": 29.989825659830036, + "2024-05-31T01": 29.94130386711222, + "2024-05-31T08": 30.1451551425024, + "2024-05-31T09": 30.039632367602547, + "2024-05-31T10": 30.11699605338294, + "2024-05-31T11": 30.077088169778474, + "2024-05-31T12": 30.190917258331414, + "2024-05-31T13": 30.092756921318554, + "2024-05-31T14": 30.00308980113215, + "2024-06-01": 30.18339092501552, + "2024-06-01T08": 30.2295785273664, + "2024-06-01T02": 30.12095522177456, + "2024-06-01T05": 30.184118777214294, + "2024-05-31T21": 30.248659959380372, + "2024-06-01T00": 30.120117162409436, + "2024-05-31T18": 30.083563009368095, + "2024-05-31T15": 29.97782917020705, + "2024-05-31T23": 30.162630553620268, + "2024-05-31T22": 30.24308892684218, + "2024-06-01T01": 30.089497477344104, + "2024-06-01T07": 30.21277527225196, + "2024-06-01T04": 30.215912498556403, + "2024-05-31T19": 30.139594679111468, + "2024-06-01T06": 30.223968387282007, + "2024-05-31T20": 30.27232039759872, + "2024-05-31T17": 30.020197254484383, + "2024-05-31T16": 29.826256238659322, + "2024-06-01T03": 30.1948022810296, + "2024-06-01T09": 30.19230158766576, + "2024-06-01T10": 30.192361576254715, + "2024-06-02": 29.93836093890134, + "2024-06-01T13": 30.323341888267993, + "2024-06-01T15": 30.3282682199526, + "2024-06-01T18": 30.246850045968802, + "2024-06-01T12": 30.258151001146352, + "2024-06-01T21": 30.231477552293857, + "2024-06-01T20": 30.220664024906252, + "2024-06-02T01": 29.897745870066498, + "2024-06-01T17": 30.255265266173257, + "2024-06-01T11": 30.208969744194242, + "2024-06-02T00": 29.95582091761283, + "2024-06-01T23": 30.078601762229248, + "2024-06-01T14": 30.324239759119678, + "2024-06-01T22": 30.142613659467358, + "2024-06-01T19": 30.18932080721907, + "2024-06-01T16": 30.28033431578862, + "2024-06-02T13": 29.99317947740698, + "2024-06-02T11": 30.027865068, + "2024-06-02T07": 30.0256583809072, + "2024-06-02T05": 30.023947762926777, + "2024-06-02T08": 30.0279734302895, + "2024-06-02T04": 30.0402796052157, + "2024-06-02T10": 29.8129265167292, + "2024-06-02T12": 30.020997233479694, + "2024-06-02T02": 29.89888026021053, + "2024-06-02T16": 29.885458743603216, + "2024-06-02T17": 29.709014739641848, + "2024-06-02T03": 29.910225655670402, + "2024-06-02T09": 29.86397603823429, + "2024-06-02T15": 29.976557229997812, + "2024-06-02T06": 30.05376515230275, + "2024-06-02T14": 30.066619567579092, + "2024-06-03": 29.355483272344955, + "2024-06-03T01": 29.561051362374958, + "2024-06-02T20": 29.562147502131467, + "2024-06-03T00": 29.372343040406527, + "2024-06-02T21": 29.51319708433278, + "2024-06-02T18": 29.59107101035566, + "2024-06-02T23": 29.470102370425323, + "2024-06-02T19": 29.634529099531086, + "2024-06-02T22": 29.48940614462233, + "2024-06-03T02": 29.73760842701351, + "2024-06-03T05": 29.790147692588537, + "2024-06-03T06": 29.863415262705843, + "2024-06-03T04": 29.591025141435097, + "2024-06-03T03": 29.66938742152232, + "2024-06-03T07": 29.908450012638042 + }, + "USD dogecoin": { + "2023-07-30": 0.0798344246322029, + "2023-10-23": 0.0640369001215751, + "2023-07-27": 0.07840434844029602, + "2023-07-10": 0.06470557322079812, + "2023-08-20": 0.06401805018082339, + "2024-02-23": 0.08402094873673102, + "2024-04-05": 0.17473695147824775, + "2023-12-19": 0.09205213051060049, + "2024-05-17": 0.15308061682888927, + "2023-08-06": 0.07512866900075918, + "2023-12-02": 0.0841667461653101, + "2023-10-31": 0.06882680232841648, + "2023-08-29": 0.06506163453573005, + "2023-06-20": 0.062162945387862066, + "2023-09-09": 0.06349663956656722, + "2023-06-26": 0.0658223336389937, + "2023-10-01": 0.062366831768903, + "2024-03-07": 0.15433122756855053, + "2023-10-12": 0.05792946950158278, + "2024-04-22": 0.16043578631485844, + "2023-07-05": 0.06697632976456099, + "2023-07-29": 0.07800656035163125, + "2024-04-26": 0.14984775323900584, + "2024-01-08": 0.07839990099646679, + "2023-05-29": 0.07323752681172405, + "2023-10-07": 0.06140381481339953, + "2023-09-26": 0.06062083679715492, + "2023-08-24": 0.0633769295779486, + "2023-12-05": 0.08999343184561925, + "2024-02-19": 0.08669047541345408, + "2024-01-07": 0.08013834588278582, + "2024-04-28": 0.149723371027361, + "2023-07-31": 0.07852191267965686, + "2023-10-18": 0.0588056124218682, + "2024-05-19": 0.15154383237795147, + "2024-05-12": 0.14250311462213638, + "2024-04-29": 0.14195120968671335, + "2023-08-25": 0.06235614195341961, + "2024-03-09": 0.17043740698594279, + "2023-07-12": 0.065237114968519, + "2023-09-05": 0.06385564786818405, + "2023-06-07": 0.06793395814854186, + "2023-09-16": 0.06227141512639906, + "2024-04-25": 0.1509355341847628, + "2023-08-12": 0.07667292241336765, + "2023-06-06": 0.06800577536947205, + "2023-09-01": 0.06363286853532328, + "2023-09-08": 0.06334235497898548, + "2024-03-22": 0.15434711494904724, + "2023-08-10": 0.07568930998518257, + "2023-12-07": 0.09536853868634314, + "2023-11-18": 0.08299244728418378, + "2023-07-13": 0.06855555423769791, + "2023-09-13": 0.06110949881005583, + "2023-06-17": 0.06224506268281852, + "2023-07-17": 0.06973371573945286, + "2023-07-07": 0.0654015792316828, + "2023-09-07": 0.06326336106387924, + "2024-03-26": 0.1797284335551353, + "2024-05-14": 0.1491143642447589, + "2024-02-22": 0.08448684144008067, + "2024-04-15": 0.15958620833988507, + "2023-12-30": 0.09048823248792028, + "2023-09-17": 0.06199227472952229, + "2024-04-17": 0.1516555964544874, + "2024-02-12": 0.08119352777565968, + "2023-10-26": 0.07157637294379561, + "2024-01-03": 0.08250836313382624, + "2024-05-07": 0.15624023609305482, + "2023-06-01": 0.07169486088341638, + "2024-01-22": 0.0832184225204938, + "2023-06-12": 0.061156481499412094, + "2023-10-03": 0.06181686747734491, + "2024-05-26": 0.1700248796277807, + "2024-04-30": 0.1347267735329913, + "2023-06-19": 0.06202091182030524, + "2023-07-09": 0.06572925428521405, + "2023-12-24": 0.09384832853197676, + "2023-09-24": 0.06149655805566145, + "2024-01-16": 0.08123671365316419, + "2023-10-17": 0.05968659970176166, + "2024-04-24": 0.16011955098021444, + "2024-03-18": 0.14680465359992423, + "2024-02-17": 0.08401159942246603, + "2023-12-27": 0.0924117412605677, + "2023-07-23": 0.07194046997902975, + "2023-09-03": 0.0633171116627995, + "2024-02-24": 0.08525878014613873, + "2024-01-06": 0.08076290829681365, + "2024-03-20": 0.13350761752001003, + "2023-11-21": 0.07614409162787038, + "2023-12-25": 0.0934391791061839, + "2023-09-22": 0.06154549868653858, + "2023-10-02": 0.06320447473599453, + "2024-03-27": 0.1852080135132073, + "2024-05-06": 0.16143765000806518, + "2023-08-30": 0.06548065907082104, + "2023-10-06": 0.061151970227435695, + "2023-10-13": 0.05814691545660603, + "2023-06-28": 0.06423988027296638, + "2024-02-05": 0.07858777278112918, + "2024-03-01": 0.12534911288933095, + "2023-07-15": 0.07248548914636535, + "2023-06-25": 0.06721932585359845, + "2023-12-10": 0.10000468920002967, + "2023-11-23": 0.07584943237214553, + "2023-08-04": 0.07409212645617091, + "2024-05-13": 0.1465489492743458, + "2024-01-13": 0.0805346788842427, + "2024-03-28": 0.21506463775152096, + "2023-08-05": 0.0756817523721645, + "2024-02-09": 0.08139457994235615, + "2023-10-09": 0.058913818698785425, + "2024-01-09": 0.07924428535477906, + "2024-05-10": 0.1499512576080593, + "2023-05-27": 0.07144769573013608, + "2023-08-18": 0.06255547842260349, + "2023-11-05": 0.07019863337529518, + "2024-04-18": 0.14835330430951463, + "2023-10-22": 0.060984420009745154, + "2023-11-01": 0.06717143316011438, + "2024-05-20": 0.15244031482985476, + "2023-12-08": 0.0975581991245127, + "2024-04-12": 0.19290801345781677, + "2023-07-06": 0.06661573777103318, + "2024-03-12": 0.17016172388177228, + "2023-09-11": 0.06038056189881912, + "2024-03-03": 0.14068160817915026, + "2024-02-04": 0.07887001037526349, + "2024-01-28": 0.08001053838149899, + "2023-07-01": 0.06824388742392977, + "2023-11-07": 0.073835782628364, + "2023-11-25": 0.07838642455707856, + "2023-06-04": 0.07283493790508663, + "2024-02-25": 0.0861327765172417, + "2023-12-01": 0.08346432174721392, + "2023-07-14": 0.07047092511192635, + "2024-01-26": 0.07926808701718636, + "2023-08-03": 0.07417310170165223, + "2024-02-28": 0.0997836884711364, + "2023-09-15": 0.06198091201956984, + "2023-07-18": 0.06863182648437205, + "2023-12-21": 0.09187405444714332, + "2023-07-20": 0.07064529342484949, + "2024-03-06": 0.16063530951462102, + "2023-09-30": 0.06202151196109628, + "2023-12-12": 0.09508352584825094, + "2024-02-13": 0.08208457646727758, + "2023-09-20": 0.06234967777659614, + "2023-09-19": 0.06256889371229944, + "2023-09-29": 0.06179408047943744, + "2023-09-12": 0.06125471357636787, + "2023-06-13": 0.06168979574133426, + "2023-10-04": 0.06102574000865302, + "2023-07-08": 0.06537334339769378, + "2024-04-16": 0.15464847889005462, + "2024-03-02": 0.14211347302537736, + "2023-06-27": 0.06531920770476692, + "2023-10-08": 0.061183077344664945, + "2023-11-20": 0.08031640371851274, + "2023-12-20": 0.09099081989632395, + "2023-12-31": 0.09017316703640157, + "2023-11-06": 0.07312422281694876, + "2023-08-22": 0.06258265190599392, + "2023-06-09": 0.06868731808951392, + "2024-03-17": 0.1490059206233391, + "2023-09-18": 0.06189836128493594, + "2024-04-01": 0.20525691286558698, + "2024-05-21": 0.16571864594875976, + "2024-01-19": 0.07779629795540113, + "2023-11-11": 0.07934171831840461, + "2023-09-23": 0.06156960681999064, + "2023-11-19": 0.07869790291901904, + "2023-07-02": 0.06731156394983412, + "2023-08-15": 0.07391532444191473, + "2024-01-25": 0.07792332672240436, + "2024-03-13": 0.1699811255148074, + "2024-01-21": 0.08672285186342908, + "2024-02-01": 0.0788887985611507, + "2023-06-15": 0.06082170910997015, + "2024-03-16": 0.1533833821690191, + "2023-11-27": 0.07864610129673716, + "2024-01-10": 0.07908274592456511, + "2024-03-15": 0.16309184849537267, + "2023-06-21": 0.06425418723256614, + "2024-01-02": 0.0927725435425787, + "2023-07-11": 0.0649520252907966, + "2023-10-25": 0.06660320099763839, + "2024-01-01": 0.0903436537200182, + "2024-02-14": 0.08321032054863058, + "2023-09-04": 0.06317850686093651, + "2023-09-06": 0.06380617676599662, + "2024-04-03": 0.18193503950286596, + "2023-11-28": 0.07884056565030646, + "2023-12-03": 0.0850210743033664, + "2023-08-02": 0.07652759210399064, + "2023-08-27": 0.06310208385241127, + "2023-10-20": 0.05986242187555204, + "2023-10-10": 0.058872097318924135, + "2024-05-03": 0.13722692417960783, + "2024-03-08": 0.16632694787358604, + "2024-04-11": 0.19577533126477467, + "2023-06-22": 0.06668366372149646, + "2024-01-14": 0.08171710809704408, + "2023-12-15": 0.09547857904313913, + "2023-10-19": 0.05834822200499858, + "2024-02-08": 0.08009275518242336, + "2023-11-08": 0.07440872680815372, + "2023-11-12": 0.07824413608360115, + "2023-12-22": 0.09376327084117664, + "2023-05-31": 0.07150330008581318, + "2024-03-23": 0.1637972633468348, + "2023-09-27": 0.06057068991978384, + "2024-03-04": 0.16543355152027772, + "2023-09-10": 0.0616992579240523, + "2024-04-13": 0.1675350883897105, + "2024-02-29": 0.12735689604077127, + "2023-07-21": 0.07267760863575365, + "2023-06-30": 0.06559667644760037, + "2023-12-29": 0.09168391571487929, + "2023-12-04": 0.08850268256311657, + "2024-04-10": 0.19050141110458005, + "2024-05-08": 0.1483737087796253, + "2023-09-21": 0.06173884674120666, + "2023-06-02": 0.07210613392125156, + "2024-04-21": 0.16102818507250255, + "2023-07-22": 0.07173691482518935, + "2023-10-11": 0.05877124930203866, + "2024-03-21": 0.15225890558222063, + "2023-07-19": 0.06957375848000966, + "2024-05-05": 0.1606648302195834, + "2024-05-23": 0.1615917155274644, + "2024-04-08": 0.20289543079272918, + "2024-05-18": 0.15465546361112914, + "2023-06-14": 0.06177684767095736, + "2023-10-05": 0.061082822554782396, + "2023-10-16": 0.05998194828572864, + "2024-05-22": 0.16762561180855323, + "2024-02-10": 0.08132528365872775, + "2024-04-07": 0.19706269851219801, + "2024-02-20": 0.08715741723015298, + "2023-11-17": 0.08275136547681786, + "2023-12-11": 0.09734219967551005, + "2023-11-26": 0.07767168417920506, + "2023-11-16": 0.07869198837025203, + "2023-06-29": 0.06318216904596126, + "2023-10-27": 0.07064313049399287, + "2023-06-11": 0.06185825621934001, + "2024-02-02": 0.07943253814976106, + "2023-09-14": 0.06163300889106246, + "2024-01-27": 0.07976745637786287, + "2024-03-30": 0.20875518382515593, + "2023-11-22": 0.07448156565652936, + "2023-09-28": 0.06097727091331206, + "2023-06-03": 0.07252522959025474, + "2024-01-18": 0.07983057287566739, + "2023-08-26": 0.06292061914033344, + "2024-02-15": 0.08583527354996955, + "2023-10-28": 0.06877596082123795, + "2024-03-24": 0.17255065350478951, + "2024-04-27": 0.1460074457523891, + "2023-12-06": 0.09949423892899352, + "2024-01-30": 0.08126986528382356, + "2023-11-14": 0.07403547919150567, + "2023-08-09": 0.07509068956248251, + "2024-05-15": 0.15100992164748805, + "2023-11-10": 0.07414797929030918, + "2024-01-23": 0.07744322594560736, + "2024-01-31": 0.07948698711969569, + "2024-05-11": 0.14413739835909375, + "2024-01-11": 0.08438976256464022, + "2024-02-18": 0.08394825044120462, + "2023-06-16": 0.06168750156668053, + "2023-10-30": 0.06935843110202514, + "2023-12-17": 0.09483547183874297, + "2024-02-26": 0.08607451542864268, + "2023-07-16": 0.07093318076426831, + "2024-01-05": 0.08257673866290298, + "2023-08-23": 0.0633824815244938, + "2024-03-11": 0.17494559061366197, + "2023-08-01": 0.07691350237071799, + "2024-03-14": 0.17932086578435646, + "2024-02-21": 0.08381700728665845, + "2023-08-28": 0.0626996781238658, + "2023-07-04": 0.06884710525585881, + "2023-12-13": 0.09269478890347005, + "2024-02-27": 0.09577036026556766, + "2023-08-13": 0.07605280362338439, + "2024-03-31": 0.20721078942508367, + "2023-12-09": 0.1015849846940268, + "2024-04-02": 0.18621582065819509, + "2024-02-06": 0.07844257645625069, + "2024-04-09": 0.19520024841647254, + "2023-11-04": 0.06863835098951364, + "2024-04-20": 0.15589884975597865, + "2024-01-15": 0.08101936071583715, + "2023-07-03": 0.06802956360138168, + "2023-12-28": 0.09324322300611279, + "2023-05-30": 0.07259605738267588, + "2024-05-25": 0.1672745763397832, + "2024-02-07": 0.07883561775318126, + "2023-09-25": 0.06083791204254292, + "2024-03-19": 0.13205694662150108, + "2024-03-10": 0.17378632989637144, + "2024-05-02": 0.13096029123086672, + "2023-09-02": 0.06346824277346699, + "2024-01-12": 0.08375423144477298, + "2024-04-19": 0.15204622587258487, + "2023-11-29": 0.0807160792556857, + "2023-10-15": 0.05940751281067829, + "2024-05-28": 0.16910395533255926, + "2023-11-30": 0.08192021529221054, + "2024-01-24": 0.0789147519944983, + "2023-08-11": 0.0754881013753609, + "2024-02-11": 0.08201152103757409, + "2023-06-08": 0.06785619568521166, + "2023-11-15": 0.07409948460632824, + "2023-12-16": 0.0942161905078952, + "2024-03-29": 0.21423952505657573, + "2024-04-04": 0.18046868332055882, + "2023-06-10": 0.06050039168916219, + "2023-07-28": 0.07706844894653544, + "2024-01-20": 0.07948627932401321, + "2023-10-21": 0.060839533581700606, + "2023-08-16": 0.06944904439599318, + "2024-05-24": 0.16327114262611583, + "2023-11-03": 0.06741344674209085, + "2023-08-31": 0.06559219514911313, + "2024-05-27": 0.16815691164495558, + "2024-01-04": 0.08273607064458122, + "2023-07-26": 0.07903716000437215, + "2023-11-13": 0.07703015751538474, + "2023-10-24": 0.0671743546106375, + "2024-03-25": 0.17502597312184753, + "2023-08-07": 0.07406213950626239, + "2023-10-29": 0.06904384596810223, + "2024-01-29": 0.08130100938399933, + "2024-05-04": 0.15974263177216533, + "2023-06-05": 0.06708974960387844, + "2023-11-02": 0.0689685829652951, + "2023-12-18": 0.09030959358088272, + "2023-11-24": 0.07735442709805557, + "2023-08-21": 0.06274332342411189, + "2023-07-25": 0.07756972148532464, + "2024-05-16": 0.15441443254474102, + "2023-08-14": 0.07471113447784848, + "2024-05-01": 0.12657851286915664, + "2024-03-05": 0.18064653182217316, + "2024-04-06": 0.1828532035972877, + "2023-12-23": 0.09306979168842008, + "2024-02-03": 0.07907785234137317, + "2024-02-16": 0.08571504313411227, + "2023-05-28": 0.0727342859571418, + "2023-12-14": 0.09667795254629802, + "2023-06-24": 0.06752905568906499, + "2023-12-26": 0.0922767740378142, + "2023-11-09": 0.075861476927982, + "2023-08-19": 0.0635470909006146, + "2024-05-09": 0.14755648676591063, + "2024-01-17": 0.08051131910870651, + "2023-06-23": 0.06655856131995325, + "2023-06-18": 0.06217198080980147, + "2024-04-23": 0.16011582892528778, + "2023-08-08": 0.07395657495970415, + "2023-08-17": 0.06647307415451915, + "2024-04-14": 0.1530176710092703, + "2023-07-24": 0.07463955398946234, + "2023-10-14": 0.059251933694771684, + "2024-05-22T20": 0.16598008, + "2024-05-25T08": 0.1659752444, + "2024-05-22T05": 0.16763311260000002, + "2024-05-28T03": 0.1650295236, + "2024-05-22T16": 0.16759976640000002, + "2024-05-25T05": 0.164364228, + "2024-05-24T22": 0.16293718559999998, + "2024-05-27T14": 0.171726268, + "2024-05-22T03": 0.17096409, + "2024-05-23T17": 0.16004718971995963, + "2024-05-24T23": 0.1637805142, + "2024-05-26T19": 0.16808966251155916, + "2024-05-26T18": 0.16768304522277588, + "2024-05-26T10": 0.16976716290000002, + "2024-05-27T16": 0.1715599873, + "2024-05-24T12": 0.16321259152915318, + "2024-05-26T01": 0.171842814, + "2024-05-21T17": 0.16832584749105348, + "2024-05-23T07": 0.1668281727, + "2024-05-22T08": 0.16901619, + "2024-05-23T09": 0.1672747811, + "2024-05-24T18": 0.1652735833345377, + "2024-05-23T01": 0.16606526349999998, + "2024-05-25T15": 0.167723226, + "2024-05-23T16": 0.15966084094240404, + "2024-05-25T03": 0.1638028133, + "2024-05-28T06": 0.1648248264, + "2024-05-25T23": 0.17239068859999998, + "2024-05-24T13": 0.164781072, + "2024-05-26T03": 0.17307096009999998, + "2024-05-26T00": 0.1722975984, + "2024-05-25T06": 0.1645158138, + "2024-05-27T04": 0.166411755, + "2024-05-22T10": 0.16778479249605008, + "2024-05-27T09": 0.1659770304, + "2024-05-24T17": 0.1646997767939114, + "2024-05-26T16": 0.1672497256, + "2024-05-22T09": 0.167856422, + "2024-05-24T21": 0.16359147576829378, + "2024-05-25T04": 0.164414208, + "2024-05-27T22": 0.1687477016, + "2024-05-27T11": 0.1675860322, + "2024-05-23T21": 0.15904433146696495, + "2024-05-23T10": 0.16586192800000002, + "2024-05-23T14": 0.15913310564667466, + "2024-05-27T02": 0.1679408564, + "2024-05-25T18": 0.1697475525, + "2024-05-27T05": 0.16526063679999997, + "2024-05-22T23": 0.1658353405, + "2024-05-28T01": 0.16736600000000001, + "2024-05-22T04": 0.1679946292, + "2024-05-22T15": 0.16906095810000002, + "2024-05-24T03": 0.15981444919999999, + "2024-05-24T08": 0.15782516690699655, + "2024-05-21T22": 0.1683411669, + "2024-05-21T16": 0.1678626269382771, + "2024-05-21T23": 0.1699643, + "2024-05-24T02": 0.1592694546, + "2024-05-26T07": 0.1725261417, + "2024-05-27T07": 0.1653523845, + "2024-05-25T22": 0.1692895224, + "2024-05-24T16": 0.16491697407881664, + "2024-05-27T20": 0.1677387318, + "2024-05-22T02": 0.1732488096, + "2024-05-24T06": 0.16147617902049852, + "2024-05-24T11": 0.1618834767876292, + "2024-05-25T21": 0.17010597200000002, + "2024-05-27T15": 0.17218179620000001, + "2024-05-21T19": 0.16456466196972105, + "2024-05-22T19": 0.16536526599999998, + "2024-05-21T12": 0.166861613, + "2024-05-23T20": 0.15390448499999998, + "2024-05-23T08": 0.1670330646, + "2024-05-22T22": 0.166693296, + "2024-05-26T11": 0.170343311, + "2024-05-24T01": 0.15874647600000003, + "2024-05-23T05": 0.1666166336, + "2024-05-28T04": 0.16395361177858658, + "2024-05-25T09": 0.1675296676, + "2024-05-27T18": 0.1699381889, + "2024-05-24T10": 0.1594412073354069, + "2024-05-25T19": 0.1701874425, + "2024-05-24T07": 0.1581710241606505, + "2024-05-26T04": 0.1725351292, + "2024-05-26T09": 0.169862028, + "2024-05-23T02": 0.1671430404, + "2024-05-27T06": 0.1651906704, + "2024-05-28T08": 0.16439586689525457, + "2024-05-24T15": 0.1689721024268702, + "2024-05-25T20": 0.1699575, + "2024-05-27T08": 0.166230202, + "2024-05-23T22": 0.15965878516215584, + "2024-05-26T15": 0.16719962, + "2024-05-24T20": 0.16521963557916816, + "2024-05-21T20": 0.16631074554906786, + "2024-05-25T13": 0.1657167964, + "2024-05-22T01": 0.17171939120000002, + "2024-05-25T17": 0.16935273420000002, + "2024-05-27T10": 0.1669381056, + "2024-05-21T21": 0.1656435504, + "2024-05-24T19": 0.16499772600045293, + "2024-05-26T02": 0.17052124059999998, + "2024-05-27T19": 0.1675406129, + "2024-05-25T11": 0.16795480299999999, + "2024-05-27T17": 0.17117350950000002, + "2024-05-21T18": 0.16833175263076625, + "2024-05-26T06": 0.1714316934, + "2024-05-23T00": 0.1666416331, + "2024-05-22T00": 0.17173908140000002, + "2024-05-24T05": 0.16395587015941213, + "2024-05-23T15": 0.15939291343795917, + "2024-05-22T13": 0.1635420084, + "2024-05-21T10": 0.16445441275050587, + "2024-05-22T12": 0.1637121642, + "2024-05-23T04": 0.166196894, + "2024-05-26T08": 0.171328012, + "2024-05-26T13": 0.16794624000000002, + "2024-05-28T05": 0.1645432041, + "2024-05-22T18": 0.164830218, + "2024-05-22T06": 0.16860289920000002, + "2024-05-21T08": 0.16418761548602062, + "2024-05-22T17": 0.16697328, + "2024-05-23T19": 0.1580892281981664, + "2024-05-25T07": 0.1648057007, + "2024-05-26T22": 0.1670098264, + "2024-05-25T16": 0.168276438, + "2024-05-26T05": 0.171628496, + "2024-05-24T04": 0.15901147632211618, + "2024-05-21T14": 0.1707008913394669, + "2024-05-25T12": 0.1667683254, + "2024-05-28T07": 0.1640953314, + "2024-05-23T18": 0.15733093161216716, + "2024-05-26T23": 0.1661602048, + "2024-05-24T09": 0.15819793523149847, + "2024-05-23T03": 0.1668981033, + "2024-05-26T14": 0.16832432790000001, + "2024-05-21T13": 0.169206152, + "2024-05-22T14": 0.1648854689, + "2024-05-25T14": 0.1653084276, + "2024-05-25T00": 0.163662349, + "2024-05-23T23": 0.15924994498350362, + "2024-05-21T11": 0.16479549319999998, + "2024-05-23T13": 0.1619205162158266, + "2024-05-22T11": 0.1671599058, + "2024-05-21T15": 0.16847276823396287, + "2024-05-28T00": 0.16784561599999998, + "2024-05-27T23": 0.1690378888, + "2024-05-28T02": 0.1654175004, + "2024-05-26T21": 0.166346785, + "2024-05-26T12": 0.16941576960000002, + "2024-05-23T06": 0.16559560899999998, + "2024-05-22T07": 0.16846967000000002, + "2024-05-27T12": 0.168402036, + "2024-05-22T21": 0.1661485023, + "2024-05-24T00": 0.1591218728964761, + "2024-05-25T02": 0.16336405199999998, + "2024-05-27T00": 0.166886515, + "2024-05-26T20": 0.16789752000000002, + "2024-05-26T17": 0.1675394798, + "2024-05-27T13": 0.169393215, + "2024-05-23T12": 0.16705810140000002, + "2024-05-25T10": 0.1684145158, + "2024-05-21T09": 0.16376724, + "2024-05-23T11": 0.167206355, + "2024-05-24T14": 0.1647329565, + "2024-05-25T01": 0.163077378, + "2024-05-27T21": 0.168629512, + "2024-05-27T03": 0.16668159980000002, + "2024-05-27T01": 0.1674978858, + "latest": 0.160906, + "2024-05-28T09": 0.165129741, + "2024-05-28T10": 0.1668579906, + "2024-05-28T11": 0.16586230970000002, + "2024-05-28T12": 0.1652629157, + "2024-05-28T13": 0.16353630000000002, + "2024-05-28T14": 0.163038432, + "2024-05-28T15": 0.163196451, + "2024-05-29": 0.1654550895247009, + "2024-05-28T20": 0.1647683686, + "2024-05-28T22": 0.16618696719999998, + "2024-05-28T21": 0.16598227799999998, + "2024-05-28T19": 0.1639480955, + "2024-05-29T02": 0.16688959879999998, + "2024-05-28T17": 0.16355628, + "2024-05-28T18": 0.16207715, + "2024-05-28T23": 0.16518127359999998, + "2024-05-29T00": 0.1653446628, + "2024-05-29T01": 0.1666381236, + "2024-05-28T16": 0.1635780625, + "2024-05-29T06": 0.169394784, + "2024-05-29T05": 0.168900462, + "2024-05-29T03": 0.16928037240000002, + "2024-05-29T07": 0.1673290892, + "2024-05-29T04": 0.1695679737, + "2024-05-29T08": 0.16490493, + "2024-05-29T09": 0.1645085128, + "2024-05-29T10": 0.1651196784, + "2024-05-29T11": 0.1651962936, + "2024-05-29T12": 0.1643803962, + "2024-05-29T13": 0.164971222, + "2024-05-29T14": 0.1662868566, + "2024-05-29T15": 0.1650143232, + "2024-05-29T18": 0.165540928, + "2024-05-29T17": 0.165321077, + "2024-05-29T23": 0.16386312800000002, + "2024-05-29T19": 0.16587900911507408, + "2024-05-29T22": 0.1645071941, + "2024-05-29T20": 0.1650097044, + "2024-05-29T16": 0.1631773299, + "2024-05-29T21": 0.16353501900146727, + "2024-05-30": 0.16100672747303518, + "2024-05-30T00": 0.16383659039999998, + "2024-05-30T05": 0.16376770929999998, + "2024-05-30T02": 0.1646105799, + "2024-05-30T01": 0.16378170490083865, + "2024-05-30T06": 0.1608712, + "2024-05-30T07": 0.1593411472, + "2024-05-30T03": 0.164582264, + "2024-05-30T04": 0.16476369759999998, + "2024-05-30T08": 0.15755541, + "2024-05-30T09": 0.15850483999999998, + "2024-05-30T10": 0.15882895589999999, + "2024-05-30T11": 0.1594607321, + "2024-05-30T12": 0.160101816, + "2024-05-30T13": 0.161383112, + "2024-05-30T14": 0.161175825, + "2024-05-30T15": 0.16231504800000002, + "2024-05-30T21": 0.15902818800000001, + "2024-05-30T20": 0.1596896532, + "2024-05-30T18": 0.1626976876, + "2024-05-30T22": 0.1591142905, + "2024-05-30T16": 0.1623515324, + "2024-05-30T17": 0.16330791939999997, + "2024-05-30T19": 0.161770876, + "2024-05-31": 0.15941857742926757, + "2024-05-30T23": 0.15954414, + "2024-05-31T03": 0.1601830752, + "2024-05-31T07": 0.15945215000000001, + "2024-05-31T06": 0.15945215000000001, + "2024-05-31T04": 0.16001635860000002, + "2024-05-31T02": 0.1599727832, + "2024-05-31T05": 0.15880486330000002, + "2024-05-31T00": 0.1594153512, + "2024-05-31T01": 0.1601015664, + "2024-05-31T08": 0.1598888192, + "2024-05-31T09": 0.1590159162, + "2024-05-31T10": 0.159684132, + "2024-05-31T11": 0.1607618754, + "2024-05-31T12": 0.161601363, + "2024-05-31T13": 0.1608302234, + "2024-05-31T14": 0.1591692218, + "2024-06-01": 0.15903501891045735, + "2024-06-01T08": 0.1591178225, + "2024-06-01T02": 0.159139107, + "2024-06-01T05": 0.1592556836, + "2024-05-31T21": 0.1597828351, + "2024-06-01T00": 0.1590276262, + "2024-05-31T18": 0.1578892952, + "2024-05-31T15": 0.1577889264, + "2024-05-31T23": 0.15897930392087806, + "2024-05-31T22": 0.1599658275, + "2024-06-01T01": 0.158639612, + "2024-06-01T07": 0.15912285088639294, + "2024-06-01T04": 0.159377185, + "2024-05-31T19": 0.15879012, + "2024-06-01T06": 0.1591941372, + "2024-05-31T20": 0.1592334786, + "2024-05-31T17": 0.1575822549, + "2024-05-31T16": 0.1556837939, + "2024-06-01T03": 0.15928247199999998, + "2024-06-01T09": 0.15935124369999998, + "2024-06-01T10": 0.15939960479999998, + "2024-06-02": 0.1602979444068433, + "2024-06-01T13": 0.16069524400000001, + "2024-06-01T15": 0.1603279051, + "2024-06-01T18": 0.1606169236, + "2024-06-01T12": 0.159561061, + "2024-06-01T21": 0.1609766032, + "2024-06-01T20": 0.16080851770422286, + "2024-06-02T01": 0.16086120799999998, + "2024-06-01T17": 0.159652176, + "2024-06-01T11": 0.1591797984, + "2024-06-02T00": 0.16053147199999998, + "2024-06-01T23": 0.16017694270000002, + "2024-06-01T14": 0.16097434649999998, + "2024-06-01T22": 0.1608499387, + "2024-06-01T19": 0.16044707490000001, + "2024-06-01T16": 0.1599043545, + "2024-06-02T13": 0.1589254912, + "2024-06-02T11": 0.15825755730000002, + "2024-06-02T07": 0.1590310804, + "2024-06-02T05": 0.1595059024, + "2024-06-02T08": 0.158785592, + "2024-06-02T04": 0.1597904648, + "2024-06-02T10": 0.1575133538, + "2024-06-02T12": 0.1588371455, + "2024-06-02T02": 0.16011539000000002, + "2024-06-02T16": 0.15799192280000002, + "2024-06-02T17": 0.1565681645, + "2024-06-02T03": 0.1598939745, + "2024-06-02T09": 0.1576232724, + "2024-06-02T15": 0.1586781877, + "2024-06-02T06": 0.159684153, + "2024-06-02T18": 0.1555750413, + "2024-06-02T14": 0.1591337475, + "2024-06-03": 0.15701637641879704, + "2024-06-03T01": 0.1587819548, + "2024-06-02T20": 0.15567965339999998, + "2024-06-03T00": 0.156493881, + "2024-06-02T21": 0.1565974596714307, + "2024-06-02T23": 0.15712510659999998, + "2024-06-02T19": 0.1553582845, + "2024-06-02T22": 0.1570951228, + "2024-06-03T02": 0.1598935842, + "2024-06-03T05": 0.160433682, + "2024-06-03T06": 0.1613066976, + "2024-06-03T04": 0.159707316, + "2024-06-03T03": 0.1598156531, + "2024-06-03T07": 0.16132507049999997 + }, + "USD elrond": { + "2023-07-30": 32.42930120641663, + "2023-10-23": 27.47353949946552, + "2023-07-27": 32.742796359484956, + "2023-07-10": 34.59134971965991, + "2023-08-20": 27.667233000000007, + "2024-02-23": 56.63595698899592, + "2024-04-05": 53.487303981541544, + "2023-12-19": 58.41026901560452, + "2024-05-17": 40.458492707840385, + "2023-08-06": 31.099689175878368, + "2023-12-02": 45.819567336492504, + "2023-10-31": 30.35850895563348, + "2023-08-29": 25.95549495540631, + "2023-06-20": 30.175476098479862, + "2023-09-09": 24.58341429018722, + "2023-06-26": 34.09340154205883, + "2023-10-01": 25.642053218931128, + "2024-03-07": 66.36668056066856, + "2023-10-12": 23.063365271987426, + "2024-04-22": 44.67785896819152, + "2023-07-05": 35.01981747325958, + "2023-07-29": 32.70935501228417, + "2024-04-26": 42.58413540888013, + "2024-01-08": 51.941485868191144, + "2023-05-29": 36.869749608301866, + "2023-10-07": 24.30913691160623, + "2023-09-26": 24.61220773130939, + "2023-08-24": 26.068640910307575, + "2023-12-05": 50.24544399538397, + "2024-02-19": 60.68211989711454, + "2024-01-07": 54.08113381624157, + "2024-04-28": 41.607410886256595, + "2023-07-31": 32.11387258360456, + "2023-10-18": 23.97883707343816, + "2024-05-19": 38.90506972819308, + "2024-05-12": 39.14526817620187, + "2024-04-29": 39.91512083459285, + "2023-08-25": 25.09884106573982, + "2024-03-09": 68.27511986800016, + "2023-07-12": 35.483949096034564, + "2023-09-05": 24.9752556877588, + "2023-06-07": 35.777850171168076, + "2023-09-16": 25.86266502794258, + "2024-04-25": 41.60874054122146, + "2023-08-12": 30.398223864884034, + "2023-06-06": 36.4069220863045, + "2023-09-01": 25.62013775376436, + "2023-09-08": 24.530186935683236, + "2024-03-22": 58.77662057743841, + "2023-08-10": 30.61288658047183, + "2023-12-07": 48.86930812755254, + "2023-11-18": 43.00828316177633, + "2023-07-13": 36.07422337424573, + "2023-09-13": 23.333028950337315, + "2023-06-17": 30.80243284322833, + "2023-07-17": 37.2859511645466, + "2023-07-07": 33.98197607933441, + "2023-09-07": 24.587282736432986, + "2024-03-26": 63.68683534802248, + "2024-05-14": 37.97061529285114, + "2024-02-22": 58.02403139320256, + "2024-04-15": 40.941707295417736, + "2023-12-30": 69.05013969271418, + "2023-09-17": 25.92571158518344, + "2024-04-17": 40.026524689599256, + "2024-02-12": 56.94813360722644, + "2023-10-26": 29.16001751393812, + "2024-01-03": 60.0263005115029, + "2024-05-07": 40.01999584640235, + "2023-06-01": 36.924801408681844, + "2024-01-22": 50.76049108640671, + "2023-06-12": 29.915796712856082, + "2023-10-03": 24.78002465989276, + "2024-05-26": 39.105916799999996, + "2024-04-30": 37.61695973762124, + "2023-06-19": 30.320443597823374, + "2023-07-09": 34.46616108795945, + "2023-12-24": 72.00634966228083, + "2023-09-24": 24.881492799999997, + "2024-01-16": 55.201498103782995, + "2023-10-17": 24.726176497412034, + "2024-04-24": 43.83654907981862, + "2024-03-18": 62.46419202132522, + "2024-02-17": 57.62172142980285, + "2023-12-27": 71.39363440923994, + "2023-07-23": 33.812348678733755, + "2023-09-03": 24.77526177356403, + "2024-02-24": 57.561779135950026, + "2024-01-06": 54.17084814640523, + "2024-03-20": 57.44425928736732, + "2023-11-21": 43.107356291332344, + "2023-12-25": 73.8336862546231, + "2023-09-22": 25.548017189772423, + "2023-10-02": 25.589084545122482, + "2024-03-27": 61.605930840827504, + "2024-05-06": 42.312115500000004, + "2023-08-30": 26.188017131642933, + "2023-10-06": 24.210648527778606, + "2023-10-13": 23.45177564910407, + "2023-06-28": 33.065937079323234, + "2024-02-05": 53.28610331500917, + "2024-03-01": 61.756171088478794, + "2023-07-15": 36.71160731374543, + "2023-06-25": 35.36123926079613, + "2023-12-10": 63.854770087142995, + "2023-11-23": 43.74098258605159, + "2023-08-04": 31.141210697083697, + "2024-05-13": 38.520360652547645, + "2024-01-13": 54.12294394860777, + "2024-03-28": 61.04444915766466, + "2023-08-05": 31.025990466505615, + "2024-02-09": 54.731082541402664, + "2023-10-09": 23.298031215223553, + "2024-01-09": 52.915140424313726, + "2024-05-10": 40.49478972639576, + "2023-05-27": 36.009339806820066, + "2023-08-18": 27.149148379721275, + "2023-11-05": 46.93812933719918, + "2024-04-18": 40.295662262267, + "2023-10-22": 25.907618631888223, + "2023-11-01": 30.44817571120563, + "2024-05-20": 38.80194, + "2023-12-08": 50.48169416207251, + "2024-04-12": 49.06517719539429, + "2023-07-06": 34.47725341235235, + "2024-03-12": 70.47294010548448, + "2023-09-11": 22.741046746686017, + "2024-03-03": 69.99835865688193, + "2024-02-04": 53.633001715144545, + "2024-01-28": 53.194680000000005, + "2023-07-01": 34.94584351761543, + "2023-11-07": 42.428109188394004, + "2023-11-25": 46.30723909324048, + "2023-06-04": 38.38137142660372, + "2024-02-25": 57.38962616233297, + "2023-12-01": 44.48944275755888, + "2023-07-14": 36.863179327356704, + "2024-01-26": 50.93634114430546, + "2023-08-03": 31.2961836034526, + "2024-02-28": 60.05430405117881, + "2023-09-15": 24.667255092362755, + "2023-07-18": 36.30271468797322, + "2023-12-21": 62.40985996127437, + "2023-07-20": 35.13953784287184, + "2024-03-06": 62.37644134812201, + "2023-09-30": 25.480587894804163, + "2023-12-12": 63.695400497344146, + "2024-02-13": 59.152493019763135, + "2023-09-20": 25.69179893548971, + "2023-09-19": 26.03470234780725, + "2023-09-29": 24.997250134345123, + "2023-09-12": 23.19298932258938, + "2023-06-13": 30.736937051173086, + "2023-10-04": 24.41001917251881, + "2023-07-08": 34.08299665959363, + "2024-04-16": 39.518049612578764, + "2024-03-02": 64.50401047093098, + "2023-06-27": 33.87213799021787, + "2023-10-08": 24.363517176277014, + "2023-11-20": 45.459609093492624, + "2023-12-20": 60.74179598440704, + "2023-12-31": 69.39953399782121, + "2023-11-06": 44.477546740319596, + "2023-08-22": 26.130360660469968, + "2023-06-09": 34.84258491885107, + "2024-03-17": 62.691793875984025, + "2023-09-18": 25.964427111493272, + "2024-04-01": 57.49576912007554, + "2024-05-21": 41.82152313035057, + "2024-01-19": 50.48592731458135, + "2023-11-11": 43.71073741231671, + "2023-09-23": 24.979999687504115, + "2023-11-19": 45.005515785361624, + "2023-07-02": 34.85996512162466, + "2023-08-15": 30.371075200000003, + "2024-01-25": 48.921124610595726, + "2024-03-13": 73.38926022419732, + "2024-01-21": 52.372303229739195, + "2024-02-01": 52.24100459103739, + "2023-06-15": 29.268256786836364, + "2024-03-16": 66.60585461656949, + "2023-11-27": 43.978037959409114, + "2024-01-10": 53.10802944006396, + "2024-03-15": 68.3336947522825, + "2023-06-21": 31.83883504030132, + "2024-01-02": 71.0922093693754, + "2023-07-11": 35.41110196858206, + "2023-10-25": 28.87529141182446, + "2024-01-01": 70.33176617574898, + "2024-02-14": 59.90653105254374, + "2023-09-04": 24.900894520341335, + "2023-09-06": 24.655647002002727, + "2024-04-03": 54.59121972188492, + "2023-11-28": 43.393803029024184, + "2023-12-03": 48.23587420849825, + "2023-08-02": 31.631936762515544, + "2023-08-27": 25.191477063662852, + "2023-10-20": 24.681500208766987, + "2023-10-10": 22.9218747546385, + "2024-05-03": 40.668439984671394, + "2024-03-08": 66.7260810818535, + "2024-04-11": 52.27933194449387, + "2023-06-22": 32.89311067599549, + "2024-01-14": 54.14631098266351, + "2023-12-15": 59.71013485282981, + "2023-10-19": 23.78196035115136, + "2024-02-08": 54.02752318863341, + "2023-11-08": 42.07014079021819, + "2023-11-12": 43.62726331723665, + "2023-12-22": 61.061829287270555, + "2023-05-31": 36.5865185801527, + "2024-03-23": 60.217595551175066, + "2023-09-27": 24.006790562003676, + "2024-03-04": 68.8309222471165, + "2023-09-10": 23.74236553029197, + "2024-04-13": 41.69007732163434, + "2024-02-29": 61.468889493709106, + "2023-07-21": 33.58760732851466, + "2023-06-30": 34.53274328105609, + "2023-12-29": 70.51157148985537, + "2023-12-04": 51.04562592344757, + "2024-04-10": 52.56625798699131, + "2024-05-08": 39.764655997555195, + "2023-09-21": 27.11866983800502, + "2023-06-02": 37.488254378654446, + "2024-04-21": 43.78574282550935, + "2023-07-22": 33.66746641, + "2023-10-11": 22.740246568989402, + "2024-03-21": 61.11360725529738, + "2023-07-19": 36.20035157045585, + "2024-05-05": 41.35594656627214, + "2024-05-23": 38.38925863103669, + "2024-04-08": 56.15943844131602, + "2024-05-18": 40.53134580612619, + "2023-06-14": 30.5838813223279, + "2023-10-05": 24.455740426547663, + "2023-10-16": 25.565088552585873, + "2024-05-22": 39.71257530504774, + "2024-02-10": 56.85053500105261, + "2024-04-07": 54.66204961558248, + "2024-02-20": 60.17016968602429, + "2023-11-17": 44.696909146848505, + "2023-12-11": 64.06466939154411, + "2023-11-26": 45.515337892406514, + "2023-11-16": 45.50245203265684, + "2023-06-29": 33.4862520139004, + "2023-10-27": 28.74032804814833, + "2023-06-11": 30.062968451167386, + "2024-02-02": 55.66660857657549, + "2023-09-14": 23.92682275309704, + "2024-01-27": 52.503831914652984, + "2024-03-30": 60.16181180186856, + "2023-11-22": 42.53481883509434, + "2023-09-28": 24.30299198392751, + "2023-06-03": 37.785973926132954, + "2024-01-18": 52.70960296831098, + "2023-08-26": 25.181758427944533, + "2024-02-15": 60.274164573514426, + "2023-10-28": 29.20438, + "2024-03-24": 60.36647515030329, + "2024-04-27": 41.55547823827098, + "2023-12-06": 49.081284679691294, + "2024-01-30": 57.576225400181066, + "2023-11-14": 45.019858260693844, + "2023-08-09": 31.341811852779706, + "2024-05-15": 39.1810276862784, + "2023-11-10": 44.386857405379175, + "2024-01-23": 47.75115057701119, + "2024-01-31": 55.417824, + "2024-05-11": 39.80887321584452, + "2024-01-11": 57.50253624755168, + "2024-02-18": 58.5818791408235, + "2023-06-16": 30.533534580068167, + "2023-10-30": 30.552856261947703, + "2023-12-17": 63.09957086472532, + "2024-02-26": 58.694312626929516, + "2023-07-16": 37.01221098229778, + "2024-01-05": 57.06729314208493, + "2023-08-23": 26.2775040653005, + "2024-03-11": 68.74042628492056, + "2023-08-01": 31.716342261024987, + "2024-03-14": 72.56051634050867, + "2024-02-21": 57.1651322527392, + "2023-08-28": 25.095914447075018, + "2023-07-04": 35.835022289599344, + "2023-12-13": 59.585388998278425, + "2024-02-27": 60.2054746348002, + "2023-08-13": 30.669963592665304, + "2024-03-31": 60.007721302335966, + "2023-12-09": 55.25775128106533, + "2024-04-02": 53.766092466327514, + "2024-02-06": 52.85002719336132, + "2024-04-09": 55.441142690493166, + "2023-11-04": 34.04825035841883, + "2024-04-20": 42.12788813322829, + "2024-01-15": 53.76954246061278, + "2023-07-03": 35.87987070343551, + "2023-12-28": 68.96633096651266, + "2023-05-30": 36.96999615419141, + "2024-05-25": 39.27206506052327, + "2024-02-07": 51.68506393313264, + "2023-09-25": 24.564211057532173, + "2024-03-19": 56.74144807615807, + "2024-03-10": 67.77201079182949, + "2024-05-02": 39.17902046016177, + "2023-09-02": 24.74712574370582, + "2024-01-12": 56.67621701120417, + "2024-04-19": 40.89822950241507, + "2023-11-29": 43.54461300004575, + "2023-10-15": 24.30007677342616, + "2024-05-28": 39.855443567465564, + "2023-11-30": 43.22788531677221, + "2024-01-24": 49.713107919539546, + "2023-08-11": 30.581595216402018, + "2024-02-11": 56.301387212686855, + "2023-06-08": 34.98459811, + "2023-11-15": 46.756292648663575, + "2023-12-16": 61.34588719106822, + "2024-03-29": 60.547552742872725, + "2024-04-04": 54.60625133760651, + "2023-06-10": 29.69358605228756, + "2023-07-28": 32.59117694884845, + "2024-01-20": 51.88966332989914, + "2023-10-21": 25.380341543678714, + "2023-08-16": 29.005186083695463, + "2024-05-24": 38.18411870980638, + "2023-11-03": 32.48186938189556, + "2023-08-31": 26.287387645825955, + "2024-05-27": 39.75535122079771, + "2024-01-04": 58.73204976696438, + "2023-07-26": 32.34857804341802, + "2023-11-13": 44.64171465285871, + "2023-10-24": 29.230306469314925, + "2024-03-25": 62.697589342108046, + "2023-08-07": 30.96475211399991, + "2023-10-29": 29.448098091682773, + "2024-01-29": 54.22352802555539, + "2024-05-04": 41.40787248712285, + "2023-06-05": 35.98673210751021, + "2023-11-02": 32.299654730328015, + "2023-12-18": 57.841136812615275, + "2023-11-24": 45.83821971954146, + "2023-08-21": 26.836351819211178, + "2023-07-25": 32.3166349458948, + "2024-05-16": 40.36565124152224, + "2023-08-14": 30.912860016940876, + "2024-05-01": 37.14780407712812, + "2024-03-05": 66.19082415791432, + "2024-04-06": 54.32625852581243, + "2023-12-23": 63.41626783769671, + "2024-02-03": 54.607685945485265, + "2024-02-16": 60.62963153132038, + "2023-05-28": 36.61020357814043, + "2023-12-14": 60.68669779091884, + "2023-06-24": 33.45576799686421, + "2023-12-26": 70.89830998949465, + "2023-11-09": 42.44826401269789, + "2023-08-19": 27.75231984547393, + "2024-05-09": 39.994404452524506, + "2024-01-17": 54.98323368035475, + "2023-06-23": 33.007460183254075, + "2023-06-18": 30.542105945001367, + "2024-04-23": 44.54735045790566, + "2023-08-08": 31.683148282670274, + "2023-08-17": 27.008096790486064, + "2024-04-14": 39.05114347098737, + "2023-07-24": 32.48009671776565, + "2023-10-14": 23.98819084807528, + "2024-05-22T20": 39.2652876, + "2024-05-25T08": 39.2946691, + "2024-05-22T05": 40.261140600000004, + "2024-05-28T03": 39.4188345, + "2024-05-22T16": 39.6104912, + "2024-05-25T05": 39.344256, + "2024-05-24T22": 38.7045806, + "2024-05-27T14": 39.641437599999996, + "2024-05-22T03": 40.3815181, + "2024-05-23T17": 38.2820337, + "2024-05-24T23": 38.773019600000005, + "2024-05-26T19": 38.9389616, + "2024-05-26T18": 38.80410126316029, + "2024-05-26T10": 38.785644, + "2024-05-27T16": 40.2800832, + "2024-05-24T12": 38.23011, + "2024-05-26T01": 39.526047, + "2024-05-21T17": 41.6958024, + "2024-05-23T07": 39.4059477, + "2024-05-22T08": 40.211956, + "2024-05-23T09": 39.0171201, + "2024-05-24T18": 38.350815, + "2024-05-23T01": 39.08030058232349, + "2024-05-25T15": 39.356063999999996, + "2024-05-23T16": 38.2835661, + "2024-05-25T03": 39.2538993, + "2024-05-28T06": 38.96568, + "2024-05-25T23": 39.433295199999996, + "2024-05-24T13": 38.197067999999994, + "2024-05-26T03": 39.215685799999996, + "2024-05-26T00": 39.424874100000004, + "2024-05-25T06": 39.3346535, + "2024-05-27T04": 39.3591286, + "2024-05-22T10": 40.161162600000004, + "2024-05-27T09": 39.1157332, + "2024-05-24T17": 38.0640064, + "2024-05-26T16": 38.8436788, + "2024-05-22T09": 40.031992, + "2024-05-24T21": 38.65652059999999, + "2024-05-25T04": 39.33426, + "2024-05-27T22": 40.0191388, + "2024-05-27T11": 39.0957456, + "2024-05-23T21": 38.3212375, + "2024-05-23T10": 38.9763535, + "2024-05-23T14": 38.3511987, + "2024-05-27T02": 39.296801200000004, + "2024-05-25T18": 39.220192499999996, + "2024-05-27T05": 39.0712368, + "2024-05-22T23": 39.1523735, + "2024-05-28T01": 39.628271999999996, + "2024-05-22T04": 40.089173, + "2024-05-22T15": 39.4630200962918, + "2024-05-24T03": 38.5641822, + "2024-05-24T08": 37.6290844, + "2024-05-21T22": 41.048092600000004, + "2024-05-21T16": 41.782025999999995, + "2024-05-21T23": 40.9114068, + "2024-05-24T02": 38.5953282, + "2024-05-26T07": 39.175499699999996, + "2024-05-27T07": 38.8070903, + "2024-05-25T22": 39.2029422, + "2024-05-24T16": 37.9540526, + "2024-05-27T20": 39.8193428, + "2024-05-22T02": 40.4227226, + "2024-05-24T06": 37.7533812, + "2024-05-24T11": 38.02717, + "2024-05-25T21": 39.172164, + "2024-05-27T15": 39.9656, + "2024-05-21T19": 41.0664436, + "2024-05-22T19": 39.291746999999994, + "2024-05-21T12": 41.890363, + "2024-05-23T20": 37.192085, + "2024-05-23T08": 39.1872582, + "2024-05-22T22": 39.344256, + "2024-05-26T11": 39.662144000000005, + "2024-05-24T01": 38.60739691218268, + "2024-05-23T05": 39.5154852, + "2024-05-28T04": 38.921566500000004, + "2024-05-25T09": 39.2458664, + "2024-05-27T18": 40.120874616403285, + "2024-05-24T10": 38.080569000000004, + "2024-05-25T19": 39.3001725, + "2024-05-24T07": 37.6694496, + "2024-05-26T04": 39.1000856289463, + "2024-05-26T09": 38.734500000000004, + "2024-05-23T02": 39.2695692, + "2024-05-27T06": 38.96128959999999, + "2024-05-28T08": 39.09572305586065, + "2024-05-24T15": 38.32083000000001, + "2024-05-25T20": 39.190200000000004, + "2024-05-27T08": 38.946617999999994, + "2024-05-23T22": 38.3961796, + "2024-05-26T15": 38.95661199999999, + "2024-05-24T20": 38.516148, + "2024-05-21T20": 41.3063644, + "2024-05-25T13": 39.1345204, + "2024-05-22T01": 40.6051268, + "2024-05-25T17": 39.156267750429485, + "2024-05-27T10": 39.0361734, + "2024-05-21T21": 41.030971199999996, + "2024-05-24T19": 38.3581053, + "2024-05-26T02": 39.215685799999996, + "2024-05-27T19": 39.7198424, + "2024-05-25T11": 39.494075, + "2024-05-27T17": 40.088666100000005, + "2024-05-21T18": 41.6200128, + "2024-05-26T06": 39.1266924, + "2024-05-23T00": 39.1292505, + "2024-05-22T00": 40.732666800000004, + "2024-05-24T05": 38.20897349999999, + "2024-05-23T15": 38.3623592, + "2024-05-22T13": 39.26583413022892, + "2024-05-21T10": 42.018352388472714, + "2024-05-22T12": 39.3133156, + "2024-05-23T04": 39.6853798, + "2024-05-26T08": 38.923645199999996, + "2024-05-26T13": 38.797580800000006, + "2024-05-28T05": 38.9000239, + "2024-05-22T18": 39.225292399999994, + "2024-05-22T06": 40.591068, + "2024-05-21T08": 42.48420791669824, + "2024-05-22T17": 39.56808669297453, + "2024-05-23T19": 37.9250768, + "2024-05-25T07": 39.284673, + "2024-05-26T22": 39.123561200000005, + "2024-05-25T16": 39.3044966, + "2024-05-26T05": 39.058279, + "2024-05-24T04": 38.688322400000004, + "2024-05-21T14": 42.249435, + "2024-05-25T12": 39.259742542289196, + "2024-05-28T07": 38.94803639999999, + "2024-05-23T18": 37.9030697, + "2024-05-26T23": 39.0012704, + "2024-05-24T09": 37.802981, + "2024-05-23T03": 39.53349480000001, + "2024-05-26T14": 38.8048602, + "2024-05-21T13": 42.361526, + "2024-05-22T14": 39.5393215, + "2024-05-25T14": 39.18152296139369, + "2024-05-25T00": 39.1409955, + "2024-05-23T23": 38.3631128, + "2024-05-21T11": 41.8387005, + "2024-05-23T13": 38.3165845, + "2024-05-22T11": 39.9928, + "2024-05-21T15": 42.07044765878322, + "2024-05-28T00": 39.838103999999994, + "2024-05-27T23": 39.816526, + "2024-05-28T02": 39.23500629880217, + "2024-05-26T21": 38.761731009999686, + "2024-05-26T12": 38.9175424, + "2024-05-23T06": 39.385171699999994, + "2024-05-22T07": 40.4327208, + "2024-05-27T12": 39.122595, + "2024-05-22T21": 39.1255182, + "2024-05-24T00": 38.502666000000005, + "2024-05-25T02": 39.271358400000004, + "2024-05-27T00": 38.990495, + "2024-05-26T20": 38.8962588, + "2024-05-26T17": 38.8590048, + "2024-05-27T13": 39.32860823432046, + "2024-05-23T12": 38.770992899999996, + "2024-05-25T10": 39.503214317650155, + "2024-05-21T09": 42.201558, + "2024-05-23T11": 39.250365, + "2024-05-24T14": 38.3227715, + "2024-05-25T01": 39.172164, + "2024-05-27T21": 40.152939354864685, + "2024-05-27T03": 39.4567068, + "2024-05-27T01": 39.2207724, + "latest": 38.59, + "2024-05-28T09": 39.5692017, + "2024-05-28T10": 39.5815686, + "2024-05-28T11": 39.460105, + "2024-05-28T12": 39.4101555, + "2024-05-28T13": 39.1608, + "2024-05-28T14": 38.941409799999995, + "2024-05-28T15": 39.003302399999995, + "2024-05-29": 40.451169788596495, + "2024-05-28T20": 39.8808784, + "2024-05-28T22": 39.9831816, + "2024-05-28T21": 39.9476, + "2024-05-28T19": 39.471390400000004, + "2024-05-29T02": 39.8493122, + "2024-05-28T17": 39.31065, + "2024-05-28T18": 39.0611125, + "2024-05-28T23": 39.7817728, + "2024-05-29T00": 39.8429298, + "2024-05-29T01": 39.592035599999996, + "2024-05-28T16": 39.178819, + "2024-05-29T06": 40.6707288, + "2024-05-29T05": 40.442221800000006, + "2024-05-29T03": 40.057494000000005, + "2024-05-29T07": 40.656044, + "2024-05-29T04": 40.3818883, + "2024-05-29T08": 40.58937, + "2024-05-29T09": 41.0322156, + "2024-05-29T10": 40.860327, + "2024-05-29T11": 40.969400099999994, + "2024-05-29T12": 40.750433699999995, + "2024-05-29T13": 40.3984646, + "2024-05-29T14": 40.45405503639266, + "2024-05-29T15": 40.274208, + "2024-05-29T18": 40.2213504, + "2024-05-29T17": 40.323676, + "2024-05-29T23": 39.742252, + "2024-05-29T19": 40.090672600000005, + "2024-05-29T22": 39.855711, + "2024-05-29T20": 39.9735909, + "2024-05-29T16": 40.062890854298956, + "2024-05-29T21": 39.90973738001599, + "2024-05-30": 39.27997314156285, + "2024-05-30T00": 39.7905984, + "2024-05-30T05": 39.9604, + "2024-05-30T02": 40.091430599999995, + "2024-05-30T01": 39.79667677024526, + "2024-05-30T06": 39.43184280685506, + "2024-05-30T07": 38.995807600000006, + "2024-05-30T03": 40.181723999999996, + "2024-05-30T04": 40.2420549, + "2024-05-30T08": 38.506882, + "2024-05-30T09": 38.95661199999999, + "2024-05-30T10": 39.0500743, + "2024-05-30T11": 39.2281994, + "2024-05-30T12": 39.16864, + "2024-05-30T13": 39.216456, + "2024-05-30T14": 39.2419404, + "2024-05-30T15": 39.074364, + "2024-05-30T21": 39.172164, + "2024-05-30T20": 39.3025311, + "2024-05-30T18": 39.809646799999996, + "2024-05-30T22": 39.086315000000006, + "2024-05-30T16": 39.1658952, + "2024-05-30T17": 39.6649216, + "2024-05-30T19": 39.692854000000004, + "2024-05-31": 38.83013591635197, + "2024-05-30T23": 39.106308, + "2024-05-31T03": 38.951294399999995, + "2024-05-31T07": 38.628408, + "2024-05-31T06": 38.668396, + "2024-05-31T04": 38.85624037319463, + "2024-05-31T02": 38.8936578, + "2024-05-31T05": 38.6341535, + "2024-05-31T00": 38.7491472, + "2024-05-31T01": 38.8806664, + "2024-05-31T08": 38.5976448, + "2024-05-31T09": 38.6068692, + "2024-05-31T10": 38.77672, + "2024-05-31T11": 38.9162466, + "2024-05-31T12": 39.286020900000004, + "2024-05-31T13": 39.225665, + "2024-05-31T14": 38.8178612, + "2024-06-01": 38.841411357831, + "2024-06-01T08": 38.5180035, + "2024-06-01T02": 38.760812, + "2024-06-01T05": 38.6098608, + "2024-05-31T21": 39.04426470000001, + "2024-06-01T00": 38.7903934, + "2024-05-31T18": 38.718139199999996, + "2024-05-31T15": 38.727829199999995, + "2024-05-31T23": 38.9206504, + "2024-05-31T22": 39.0250695, + "2024-06-01T01": 38.6808928, + "2024-06-01T07": 38.529212748378725, + "2024-06-01T04": 38.6402241, + "2024-05-31T19": 38.798718, + "2024-06-01T06": 38.5395297, + "2024-05-31T20": 38.8844519, + "2024-05-31T17": 38.6087016, + "2024-05-31T16": 38.358904100000004, + "2024-06-01T03": 38.719, + "2024-06-01T09": 38.576409299999995, + "2024-06-01T10": 38.5360584, + "2024-06-02": 38.64228839970631, + "2024-06-01T13": 38.515305, + "2024-06-01T15": 38.690882699999996, + "2024-06-01T18": 38.6056104, + "2024-06-01T12": 38.5564267, + "2024-06-01T21": 38.735494700000004, + "2024-06-01T20": 38.6255926, + "2024-06-02T01": 38.828911999999995, + "2024-06-01T17": 38.599096, + "2024-06-01T11": 38.5060848, + "2024-06-02T00": 38.61908, + "2024-06-01T23": 38.667879000000006, + "2024-06-01T14": 38.6678061, + "2024-06-01T22": 38.726278799999996, + "2024-06-01T19": 38.5856282, + "2024-06-01T16": 38.6547921, + "2024-06-02T13": 38.4922656, + "2024-06-02T11": 38.42327898457365, + "2024-06-02T07": 38.8984667, + "2024-06-02T05": 39.067156000000004, + "2024-06-02T08": 38.822027999999996, + "2024-06-02T04": 38.9983857, + "2024-06-02T10": 38.4515248, + "2024-06-02T12": 38.642544300000004, + "2024-06-02T02": 38.847340800000005, + "2024-06-02T16": 38.3988717, + "2024-06-02T17": 38.0652415, + "2024-06-02T03": 38.8569435, + "2024-06-02T09": 38.4815026, + "2024-06-02T15": 38.448061599999996, + "2024-06-02T06": 39.006816, + "2024-06-02T18": 37.886874899999995, + "2024-06-02T14": 38.511865799999995, + "2024-06-03": 37.97729428170807, + "2024-06-03T01": 38.273956, + "2024-06-02T20": 38.077902, + "2024-06-03T00": 37.9691055, + "2024-06-02T21": 38.05993913893337, + "2024-06-02T23": 37.97948, + "2024-06-02T19": 38.1374856, + "2024-06-02T22": 38.0194584, + "2024-06-03T02": 38.569506000000004, + "2024-06-03T05": 38.486894, + "2024-06-03T06": 38.7152064, + "2024-06-03T04": 38.4077106, + "2024-06-03T03": 38.452226294554364, + "2024-06-03T07": 38.755180800000005 + }, + "USD eos": { + "2023-07-30": 0.754861671626204, + "2023-10-23": 0.5691276802165681, + "2023-07-27": 0.7421230853543102, + "2023-07-10": 0.7159059715789159, + "2023-08-20": 0.5850320353131331, + "2024-02-23": 0.7769712087605631, + "2024-04-05": 0.9821289030806167, + "2023-12-19": 0.7757020812348835, + "2024-05-17": 0.8175195926904842, + "2023-08-06": 0.7275350823264445, + "2023-12-02": 0.6924599947663391, + "2023-10-31": 0.6272325999978756, + "2023-08-29": 0.5940697294772455, + "2023-06-20": 0.6229066139613304, + "2023-09-09": 0.5813887125669903, + "2023-06-26": 0.7260724411714491, + "2023-10-01": 0.5920474066149464, + "2024-03-07": 1.0993646293240393, + "2023-10-12": 0.5358458511393698, + "2024-04-22": 0.8310715063723362, + "2023-07-05": 0.7249981715009637, + "2023-07-29": 0.7524851619304138, + "2024-04-26": 0.8170873320254738, + "2024-01-08": 0.7034773224862924, + "2023-05-29": 0.8991265538675565, + "2023-10-07": 0.5718148788608528, + "2023-09-26": 0.5626437350616468, + "2023-08-24": 0.5867214732110598, + "2023-12-05": 0.7246925367210412, + "2024-02-19": 0.7820548093056052, + "2024-01-07": 0.7325841404242744, + "2024-04-28": 0.8124947679717213, + "2023-07-31": 0.7516096529358043, + "2023-10-18": 0.5401990830061164, + "2024-05-19": 0.7963407846241605, + "2024-05-12": 0.7826431407467332, + "2024-04-29": 0.7896221896793909, + "2023-08-25": 0.5800289213458684, + "2024-03-09": 1.2075613398200933, + "2023-07-12": 0.7313340107646854, + "2023-09-05": 0.5816566150570477, + "2023-06-07": 0.8751232950497232, + "2023-09-16": 0.5757597253329986, + "2024-04-25": 0.8653345117525646, + "2023-08-12": 0.7199195872469373, + "2023-06-06": 0.8471101643196032, + "2023-09-01": 0.5881204439907978, + "2023-09-08": 0.5817672696237833, + "2024-03-22": 0.9816888512443194, + "2023-08-10": 0.7168397563535749, + "2023-12-07": 0.7596388813175039, + "2023-11-18": 0.7039806481059566, + "2023-07-13": 0.7623550910504422, + "2023-09-13": 0.5539164220489987, + "2023-06-17": 0.6368854699306921, + "2023-07-17": 0.7633476862897722, + "2023-07-07": 0.7173119814551678, + "2023-09-07": 0.5796639197474308, + "2024-03-26": 1.0855744115513404, + "2024-05-14": 0.7753305126413904, + "2024-02-22": 0.7698393595736144, + "2024-04-15": 0.7672310519680671, + "2023-12-30": 0.8581065027689747, + "2023-09-17": 0.5671249409258877, + "2024-04-17": 0.7399898624564282, + "2024-02-12": 0.7356470861217568, + "2023-10-26": 0.601544567469404, + "2024-01-03": 0.7745942913861797, + "2024-05-07": 0.8117698670534799, + "2023-06-01": 0.8868140802266015, + "2024-01-22": 0.7003637961754203, + "2023-06-12": 0.6743014878182619, + "2023-10-03": 0.6028462610344445, + "2024-05-26": 0.8370486825360478, + "2024-04-30": 0.7629340344608336, + "2023-06-19": 0.6237286940846852, + "2023-07-09": 0.7361315891102193, + "2023-12-24": 0.8323520107282503, + "2023-09-24": 0.5784859692610874, + "2024-01-16": 0.7744727576558976, + "2023-10-17": 0.5511460622021118, + "2024-04-24": 0.8437478207240314, + "2024-03-18": 0.9964188219749528, + "2024-02-17": 0.7612531767140174, + "2023-12-27": 0.8849839150611495, + "2023-07-23": 0.7800328284069639, + "2023-09-03": 0.581092064315389, + "2024-02-24": 0.8053046167214724, + "2024-01-06": 0.7347834420611614, + "2024-03-20": 0.9421776791214524, + "2023-11-21": 0.6989479319014862, + "2023-12-25": 0.8674479769784023, + "2023-09-22": 0.5755553305061842, + "2023-10-02": 0.5985212517654865, + "2024-03-27": 1.0663994177919478, + "2024-05-06": 0.8309982084294066, + "2023-08-30": 0.6243924861085113, + "2023-10-06": 0.5678124526547945, + "2023-10-13": 0.5406168870985198, + "2023-06-28": 0.6949986774974187, + "2024-02-05": 0.7032886526765364, + "2024-03-01": 0.8791569383909417, + "2023-07-15": 0.7716832852738356, + "2023-06-25": 0.7282314620045143, + "2023-12-10": 0.8341117265493218, + "2023-11-23": 0.6741244345917954, + "2023-08-04": 0.7194933162304439, + "2024-05-13": 0.7782958593428512, + "2024-01-13": 0.7625912915841201, + "2024-03-28": 1.0640348852496877, + "2023-08-05": 0.7182650395706405, + "2024-02-09": 0.7390146171769882, + "2023-10-09": 0.5436716025352218, + "2024-01-09": 0.7063522774868878, + "2024-05-10": 0.8166659693589384, + "2023-05-27": 0.8780075985188104, + "2023-08-18": 0.573434779434242, + "2023-11-05": 0.6722152562620761, + "2024-04-18": 0.7370310187135983, + "2023-10-22": 0.5531321937022992, + "2023-11-01": 0.6255433536381422, + "2024-05-20": 0.7967520166151681, + "2023-12-08": 0.7723182387516764, + "2024-04-12": 1.0957050863923588, + "2023-07-06": 0.7239611084209473, + "2024-03-12": 1.1803488304309402, + "2023-09-11": 0.54089636688498, + "2024-03-03": 1.060123239962567, + "2024-02-04": 0.7061314997349319, + "2024-01-28": 0.7218775386162325, + "2023-07-01": 0.7691523345012223, + "2023-11-07": 0.6886558681934173, + "2023-11-25": 0.691713139352241, + "2023-06-04": 0.9194756008023484, + "2024-02-25": 0.7954401040327411, + "2023-12-01": 0.6821447832881105, + "2023-07-14": 0.7967014914392573, + "2024-01-26": 0.7010885065315611, + "2023-08-03": 0.7275792719814176, + "2024-02-28": 0.838094921612648, + "2023-09-15": 0.567467279409427, + "2023-07-18": 0.7571996331018467, + "2023-12-21": 0.8040131199751955, + "2023-07-20": 0.7667964626511253, + "2024-03-06": 1.0294044867899774, + "2023-09-30": 0.5801807184680736, + "2023-12-12": 0.7789319826083038, + "2024-02-13": 0.7454892788435783, + "2023-09-20": 0.576895918509346, + "2023-09-19": 0.57980181344204, + "2023-09-29": 0.574936753089938, + "2023-09-12": 0.5535479087865528, + "2023-06-13": 0.6774756999362739, + "2023-10-04": 0.5759947576713403, + "2023-07-08": 0.7203824811552406, + "2024-04-16": 0.7428839562952156, + "2024-03-02": 1.0114145613945942, + "2023-06-27": 0.7193985739215556, + "2023-10-08": 0.566946326922081, + "2023-11-20": 0.7185052589701454, + "2023-12-20": 0.7849504283597616, + "2023-12-31": 0.8580031896180923, + "2023-11-06": 0.6868377203677495, + "2023-08-22": 0.5740144417824924, + "2023-06-09": 0.892648574169502, + "2024-03-17": 0.9958247696680222, + "2023-09-18": 0.571206463134739, + "2024-04-01": 1.0538225256075944, + "2024-05-21": 0.8688848111061326, + "2024-01-19": 0.7145111079758081, + "2023-11-11": 0.7198011883681917, + "2023-09-23": 0.5760552774777539, + "2023-11-19": 0.7103621, + "2023-07-02": 0.7566361632461884, + "2023-08-15": 0.711187205201404, + "2024-01-25": 0.6820935356492221, + "2024-03-13": 1.187425844272798, + "2024-01-21": 0.7278416821020934, + "2024-02-01": 0.6922782950416535, + "2023-06-15": 0.6365098094829441, + "2024-03-16": 1.03535004265013, + "2023-11-27": 0.6794557928798075, + "2024-01-10": 0.7150759000653358, + "2024-03-15": 1.0567152827778563, + "2023-06-21": 0.6677397720140628, + "2024-01-02": 0.8836080588092688, + "2023-07-11": 0.7256574837614169, + "2023-10-25": 0.5924706944832183, + "2024-01-01": 0.8610272944407973, + "2024-02-14": 0.7518118513623445, + "2023-09-04": 0.5801099385056365, + "2023-09-06": 0.5815227215120589, + "2024-04-03": 0.9711186450251846, + "2023-11-28": 0.6758257022374454, + "2023-12-03": 0.6964847979982155, + "2023-08-02": 0.7419455685786747, + "2023-08-27": 0.5888440792685986, + "2023-10-20": 0.5477418788360817, + "2023-10-10": 0.5411141379226139, + "2024-05-03": 0.8219122570023539, + "2024-03-08": 1.2171343757047424, + "2024-04-11": 1.096782917109493, + "2023-06-22": 0.6940070149889244, + "2024-01-14": 0.7618459470920015, + "2023-12-15": 0.7750439427536462, + "2023-10-19": 0.531399191896771, + "2024-02-08": 0.7200337194754586, + "2023-11-08": 0.6946053332056664, + "2023-11-12": 0.7318419055235169, + "2023-12-22": 0.8490427578183839, + "2023-05-31": 0.8875953757802867, + "2024-03-23": 1.0252570491312025, + "2023-09-27": 0.5620465500333162, + "2024-03-04": 1.1018624968774533, + "2023-09-10": 0.5649965656514189, + "2024-04-13": 0.8784318261928726, + "2024-02-29": 0.876938148833132, + "2023-07-21": 0.777834198784096, + "2023-06-30": 0.7338457894700398, + "2023-12-29": 0.8639608518605179, + "2023-12-04": 0.7118826412016813, + "2024-04-10": 1.0524652579708689, + "2024-05-08": 0.7938813470402353, + "2023-09-21": 0.5749742111340178, + "2023-06-02": 0.9035439184782781, + "2024-04-21": 0.8203676254835347, + "2023-07-22": 0.782458365927586, + "2023-10-11": 0.5366058183342002, + "2024-03-21": 1.0068124524694786, + "2023-07-19": 0.7607556672688697, + "2024-05-05": 0.8159533927590851, + "2024-05-23": 0.8383746165567147, + "2024-04-08": 1.0901295651661367, + "2024-05-18": 0.8188148571323, + "2023-06-14": 0.6738287305621592, + "2023-10-05": 0.5731125066083184, + "2023-10-16": 0.5578615498816034, + "2024-05-22": 0.8531886998495195, + "2024-02-10": 0.7347946656947033, + "2024-04-07": 1.0285605904944521, + "2024-02-20": 0.7900022278869734, + "2023-11-17": 0.7071211011586492, + "2023-12-11": 0.7727229587955038, + "2023-11-26": 0.6988371760240735, + "2023-11-16": 0.7288985859668626, + "2023-06-29": 0.6771231750719906, + "2023-10-27": 0.5991209164716366, + "2023-06-11": 0.6834021894138472, + "2024-02-02": 0.7047860590654619, + "2023-09-14": 0.5609756709651255, + "2024-01-27": 0.7038578932065784, + "2024-03-30": 1.0915682530910882, + "2023-11-22": 0.6655747975968822, + "2023-09-28": 0.5660764718324287, + "2023-06-03": 0.9110216142824149, + "2024-01-18": 0.7435417338686371, + "2023-08-26": 0.5843857446753628, + "2024-02-15": 0.7705440545545535, + "2023-10-28": 0.626088165171032, + "2024-03-24": 1.0327029385850026, + "2024-04-27": 0.8182052083442165, + "2023-12-06": 0.7356656457561846, + "2024-01-30": 0.7160870815292468, + "2023-11-14": 0.7111571923562305, + "2023-08-09": 0.7226408003408638, + "2024-05-15": 0.7654334513025355, + "2023-11-10": 0.6886346846254979, + "2024-01-23": 0.6669758563646919, + "2024-01-31": 0.694722, + "2024-05-11": 0.7869796686162955, + "2024-01-11": 0.780719811603461, + "2024-02-18": 0.7754606098411534, + "2023-06-16": 0.6283628390967809, + "2023-10-30": 0.6246310124751695, + "2023-12-17": 0.8136892546907208, + "2024-02-26": 0.795584263562991, + "2023-07-16": 0.7754923755295082, + "2024-01-05": 0.7479315127559705, + "2023-08-23": 0.5827953744635607, + "2024-03-11": 1.1890593327519907, + "2023-08-01": 0.7376133985377158, + "2024-03-14": 1.1533613863838084, + "2024-02-21": 0.7587769466435694, + "2023-08-28": 0.5867609553081586, + "2023-07-04": 0.7541056881484205, + "2023-12-13": 0.7639802686802472, + "2024-02-27": 0.8247862972661113, + "2023-08-13": 0.7246582988046707, + "2024-03-31": 1.0893272795193774, + "2023-12-09": 0.8395682547342614, + "2024-04-02": 0.9749746915374342, + "2024-02-06": 0.7155234305460374, + "2024-04-09": 1.102354004258727, + "2023-11-04": 0.6545455830773559, + "2024-04-20": 0.7952555098219803, + "2024-01-15": 0.774067795806642, + "2023-07-03": 0.7629798368976485, + "2023-12-28": 0.892675962718408, + "2023-05-30": 0.9072543979186515, + "2024-05-25": 0.8508029908299994, + "2024-02-07": 0.709805203207051, + "2023-09-25": 0.5693306460845392, + "2024-03-19": 0.9273602005928541, + "2024-03-10": 1.1743576622040732, + "2024-05-02": 0.7938253520418987, + "2023-09-02": 0.5798798821919879, + "2024-01-12": 0.7867174141978401, + "2024-04-19": 0.7760874446165753, + "2023-11-29": 0.6792200985550522, + "2023-10-15": 0.545004694601354, + "2024-05-28": 0.8400159023756278, + "2023-11-30": 0.6774120322913161, + "2024-01-24": 0.6788905829413815, + "2023-08-11": 0.7151254963339718, + "2024-02-11": 0.738280450656768, + "2023-06-08": 0.8861703268181284, + "2023-11-15": 0.7151688805376296, + "2023-12-16": 0.7815322779665531, + "2024-03-29": 1.1083489565109348, + "2024-04-04": 0.9797274913328332, + "2023-06-10": 0.6789605830461601, + "2023-07-28": 0.745098287729348, + "2024-01-20": 0.7168613515070069, + "2023-10-21": 0.5563168600119401, + "2023-08-16": 0.6622587394773689, + "2024-05-24": 0.8293861783116787, + "2023-11-03": 0.6397995642815303, + "2023-08-31": 0.613451290991501, + "2024-05-27": 0.835449810902589, + "2024-01-04": 0.7723491777918151, + "2023-07-26": 0.738375996210287, + "2023-11-13": 0.7355592206870897, + "2023-10-24": 0.5928213251630695, + "2024-03-25": 1.0559566592457508, + "2023-08-07": 0.7260369337399919, + "2023-10-29": 0.6296127899301951, + "2024-01-29": 0.7114330749370515, + "2024-05-04": 0.8231564989508015, + "2023-06-05": 0.8991498892936377, + "2023-11-02": 0.6527224239367572, + "2023-12-18": 0.7635315689999521, + "2023-11-24": 0.6793894763733483, + "2023-08-21": 0.5795712298715157, + "2023-07-25": 0.7429226412376186, + "2024-05-16": 0.8014515407547296, + "2023-08-14": 0.7187448392875617, + "2024-05-01": 0.7493981889140239, + "2024-03-05": 1.1029342813732952, + "2024-04-06": 1.0048658295300812, + "2023-12-23": 0.828312418927059, + "2024-02-03": 0.7158234983482985, + "2024-02-16": 0.7706229352393362, + "2023-05-28": 0.9047184767714249, + "2023-12-14": 0.7831402856311079, + "2023-06-24": 0.7293437461038879, + "2023-12-26": 0.8530253363854833, + "2023-11-09": 0.7042253972804691, + "2023-08-19": 0.5750901360663132, + "2024-05-09": 0.8047337288240844, + "2024-01-17": 0.7595708191785413, + "2023-06-23": 0.6966853941935824, + "2023-06-18": 0.634390822999988, + "2024-04-23": 0.8405253723400852, + "2023-08-08": 0.7196188460255473, + "2023-08-17": 0.6297279350612717, + "2024-04-14": 0.7435412858923492, + "2023-07-24": 0.7479784077806538, + "2023-10-14": 0.544699255272235, + "2024-05-22T20": 0.845598516, + "2024-05-25T08": 0.8558660819999999, + "2024-05-22T05": 0.851512626, + "2024-05-28T03": 0.81735378, + "2024-05-22T16": 0.8542949200000001, + "2024-05-25T05": 0.8595560400000001, + "2024-05-24T22": 0.83838261, + "2024-05-27T14": 0.835498008, + "2024-05-22T03": 0.859719421, + "2024-05-23T17": 0.823098699, + "2024-05-24T23": 0.839548854, + "2024-05-26T19": 0.8327500720000001, + "2024-05-26T18": 0.832366944, + "2024-05-26T10": 0.836490384, + "2024-05-27T16": 0.847759886, + "2024-05-24T12": 0.835265436, + "2024-05-26T01": 0.85081491, + "2024-05-21T17": 0.8718940079999999, + "2024-05-23T07": 0.854078694, + "2024-05-22T08": 0.85942808, + "2024-05-23T09": 0.8469204239999999, + "2024-05-24T18": 0.8377808999999999, + "2024-05-23T01": 0.848267163, + "2024-05-25T15": 0.85121487, + "2024-05-23T16": 0.822332199, + "2024-05-25T03": 0.850950967, + "2024-05-28T06": 0.802693008, + "2024-05-25T23": 0.848955653, + "2024-05-24T13": 0.8330998399999999, + "2024-05-26T03": 0.8449070499999999, + "2024-05-26T00": 0.8491895910000001, + "2024-05-25T06": 0.8532670960000001, + "2024-05-27T04": 0.833757874, + "2024-05-22T10": 0.8557122857957336, + "2024-05-27T09": 0.828186206, + "2024-05-24T17": 0.83015119, + "2024-05-26T16": 0.834249468, + "2024-05-22T09": 0.8552289200000001, + "2024-05-24T21": 0.838324544, + "2024-05-25T04": 0.85755684, + "2024-05-27T22": 0.841540752, + "2024-05-27T11": 0.8306846560000001, + "2024-05-23T21": 0.810691525, + "2024-05-23T10": 0.842604985, + "2024-05-23T14": 0.826294917, + "2024-05-27T02": 0.8348108350593115, + "2024-05-25T18": 0.85158705, + "2024-05-27T05": 0.826902896, + "2024-05-22T23": 0.843920065, + "2024-05-28T01": 0.83223368, + "2024-05-22T04": 0.8493706080000001, + "2024-05-22T15": 0.854452137, + "2024-05-24T03": 0.8287600689999999, + "2024-05-24T08": 0.8157633599999999, + "2024-05-21T22": 0.869947642, + "2024-05-21T16": 0.8719249109999999, + "2024-05-21T23": 0.868317615, + "2024-05-24T02": 0.82568612, + "2024-05-26T07": 0.8418883859999999, + "2024-05-27T07": 0.825112896, + "2024-05-25T22": 0.846947522, + "2024-05-24T16": 0.830551022, + "2024-05-27T20": 0.842539732, + "2024-05-22T02": 0.8664440120000001, + "2024-05-24T06": 0.81863964, + "2024-05-24T11": 0.8275031999999999, + "2024-05-25T21": 0.8468306, + "2024-05-27T15": 0.8414757079999999, + "2024-05-21T19": 0.8668138569999999, + "2024-05-22T19": 0.846022298, + "2024-05-21T12": 0.875098681, + "2024-05-23T20": 0.7923053250000001, + "2024-05-23T08": 0.851405898, + "2024-05-22T22": 0.84456204, + "2024-05-26T11": 0.8369232150000001, + "2024-05-24T01": 0.82656924, + "2024-05-23T05": 0.852071388, + "2024-05-28T04": 0.804712131, + "2024-05-25T09": 0.855491912, + "2024-05-27T18": 0.846344328, + "2024-05-24T10": 0.824379352, + "2024-05-25T19": 0.8495942899569242, + "2024-05-24T07": 0.81677124, + "2024-05-26T04": 0.844680326, + "2024-05-26T09": 0.8363653200000001, + "2024-05-23T02": 0.8470593000000001, + "2024-05-27T06": 0.826702992, + "2024-05-28T08": 0.8027961532170722, + "2024-05-24T15": 0.841906468312003, + "2024-05-25T20": 0.846688275, + "2024-05-27T08": 0.8273491760678172, + "2024-05-23T22": 0.81799253, + "2024-05-26T15": 0.8344989999999999, + "2024-05-24T20": 0.83731626, + "2024-05-21T20": 0.870412669, + "2024-05-25T13": 0.84738135, + "2024-05-22T01": 0.8642962719999999, + "2024-05-25T17": 0.850712802, + "2024-05-27T10": 0.829193883, + "2024-05-21T21": 0.868908798, + "2024-05-24T19": 0.835540902, + "2024-05-26T02": 0.844007149, + "2024-05-27T19": 0.837453317, + "2024-05-25T11": 0.8583712250000001, + "2024-05-27T17": 0.845827899, + "2024-05-21T18": 0.873680432, + "2024-05-26T06": 0.8419136519999999, + "2024-05-23T00": 0.848350136, + "2024-05-22T00": 0.867243868, + "2024-05-24T05": 0.8224474049999999, + "2024-05-23T15": 0.82490564, + "2024-05-22T13": 0.8437071819999999, + "2024-05-21T10": 0.8720582628709195, + "2024-05-22T12": 0.8402571320000001, + "2024-05-23T04": 0.850572318, + "2024-05-26T08": 0.839947074, + "2024-05-26T13": 0.834033024, + "2024-05-28T05": 0.8060788409999999, + "2024-05-22T18": 0.844498648, + "2024-05-22T06": 0.8589109979999999, + "2024-05-21T08": 0.8655819909034046, + "2024-05-22T17": 0.85436328, + "2024-05-23T19": 0.81474974, + "2024-05-25T07": 0.8539668229999999, + "2024-05-26T22": 0.8326501399999999, + "2024-05-25T16": 0.849281084, + "2024-05-26T05": 0.84244719, + "2024-05-24T04": 0.8314341359999999, + "2024-05-21T14": 0.873081675, + "2024-05-25T12": 0.85194036, + "2024-05-28T07": 0.801142524, + "2024-05-23T18": 0.81242277, + "2024-05-26T23": 0.830801024, + "2024-05-24T09": 0.81863145, + "2024-05-23T03": 0.8489308350000001, + "2024-05-26T14": 0.836373687, + "2024-05-21T13": 0.88062384, + "2024-05-22T14": 0.850170392, + "2024-05-25T14": 0.8456408009999999, + "2024-05-25T00": 0.841906317, + "2024-05-23T23": 0.819539244, + "2024-05-21T11": 0.8742638850000001, + "2024-05-23T13": 0.827610235, + "2024-05-22T11": 0.851946622, + "2024-05-21T15": 0.8731903839999999, + "2024-05-28T00": 0.83643032, + "2024-05-27T23": 0.8396940640000001, + "2024-05-28T02": 0.823090462, + "2024-05-26T21": 0.82668645, + "2024-05-26T12": 0.835432576, + "2024-05-23T06": 0.851563177, + "2024-05-22T07": 0.85684574, + "2024-05-27T12": 0.83151753, + "2024-05-22T21": 0.8431879050000001, + "2024-05-24T00": 0.82742749, + "2024-05-25T02": 0.844514166, + "2024-05-27T00": 0.8319838, + "2024-05-26T20": 0.8307332961586875, + "2024-05-26T17": 0.8327500720000001, + "2024-05-27T13": 0.834773761, + "2024-05-23T12": 0.847184676, + "2024-05-25T10": 0.857468421, + "2024-05-21T09": 0.87402516, + "2024-05-23T11": 0.8459768000000001, + "2024-05-24T14": 0.8369053750000001, + "2024-05-25T01": 0.8446364813597516, + "2024-05-27T21": 0.843247459, + "2024-05-27T03": 0.834407409, + "2024-05-27T01": 0.834890703, + "latest": 0.818546, + "2024-05-28T09": 0.807067863, + "2024-05-28T10": 0.812710905, + "2024-05-28T11": 0.812378668, + "2024-05-28T12": 0.809981092, + "2024-05-28T13": 0.8070921, + "2024-05-28T14": 0.8039033469999999, + "2024-05-28T15": 0.803444052, + "2024-05-29": 0.81292953952632, + "2024-05-28T20": 0.81669885, + "2024-05-28T22": 0.812851488, + "2024-05-28T21": 0.815430385, + "2024-05-28T19": 0.8094032080000001, + "2024-05-29T02": 0.810272678, + "2024-05-28T17": 0.8100891, + "2024-05-28T18": 0.802495625, + "2024-05-28T23": 0.8072243200000001, + "2024-05-29T00": 0.808644672, + "2024-05-29T01": 0.809918811, + "2024-05-28T16": 0.8063524400000001, + "2024-05-29T06": 0.8201064690000001, + "2024-05-29T05": 0.8194319280000001, + "2024-05-29T03": 0.8144357820000001, + "2024-05-29T07": 0.814319584, + "2024-05-29T04": 0.81802539, + "2024-05-29T08": 0.811188, + "2024-05-29T09": 0.819445416, + "2024-05-29T10": 0.819104697, + "2024-05-29T11": 0.8180892889999999, + "2024-05-29T12": 0.815408286, + "2024-05-29T13": 0.81236586, + "2024-05-29T14": 0.810599712, + "2024-05-29T15": 0.811380384, + "2024-05-29T18": 0.81172, + "2024-05-29T17": 0.8137674901560749, + "2024-05-29T23": 0.80573196, + "2024-05-29T19": 0.815000516, + "2024-05-29T22": 0.8076025649999999, + "2024-05-29T20": 0.810461808, + "2024-05-29T16": 0.812339099, + "2024-05-29T21": 0.8051876928233513, + "2024-05-30": 0.8093237695165183, + "2024-05-30T00": 0.807697212, + "2024-05-30T05": 0.8107965159999999, + "2024-05-30T02": 0.814213608, + "2024-05-30T01": 0.8088195075518972, + "2024-05-30T06": 0.7993600000000001, + "2024-05-30T07": 0.7946070380000001, + "2024-05-30T03": 0.81422176, + "2024-05-30T04": 0.8149290789999999, + "2024-05-30T08": 0.7890263, + "2024-05-30T09": 0.79472288, + "2024-05-30T10": 0.794894397, + "2024-05-30T11": 0.799851595, + "2024-05-30T12": 0.8033568, + "2024-05-30T13": 0.8100137, + "2024-05-30T14": 0.810826848, + "2024-05-30T15": 0.80847648, + "2024-05-30T21": 0.81103776, + "2024-05-30T20": 0.811545777, + "2024-05-30T18": 0.819986748, + "2024-05-30T22": 0.8113159400000001, + "2024-05-30T16": 0.81420678, + "2024-05-30T17": 0.818988666, + "2024-05-30T19": 0.818752598, + "2024-05-31": 0.810606946137562, + "2024-05-30T23": 0.81111601, + "2024-05-31T03": 0.81660784, + "2024-05-31T07": 0.8087573000000001, + "2024-05-31T06": 0.80755766, + "2024-05-31T04": 0.812725974, + "2024-05-31T02": 0.817356566, + "2024-05-31T05": 0.806169335, + "2024-05-31T00": 0.804574656, + "2024-05-31T01": 0.807006272, + "2024-05-31T08": 0.81024064, + "2024-05-31T09": 0.809924532, + "2024-05-31T10": 0.81121298, + "2024-05-31T11": 0.81450285, + "2024-05-31T12": 0.821798397, + "2024-05-31T13": 0.8177926540000001, + "2024-05-31T14": 0.810237901, + "2024-06-01": 0.8136902455019145, + "2024-06-01T08": 0.804731518, + "2024-06-01T02": 0.8109994259644936, + "2024-06-01T05": 0.808468902, + "2024-05-31T21": 0.815644578, + "2024-06-01T00": 0.8121707399999999, + "2024-05-31T18": 0.8090253079999999, + "2024-05-31T15": 0.806168813335941, + "2024-05-31T23": 0.8132777590000001, + "2024-05-31T22": 0.8149617149999999, + "2024-06-01T01": 0.8103806880000001, + "2024-06-01T07": 0.8056562302649836, + "2024-06-01T04": 0.8110749909999999, + "2024-05-31T19": 0.8144235400000001, + "2024-06-01T06": 0.805663023, + "2024-05-31T20": 0.814445982, + "2024-05-31T17": 0.806146492, + "2024-05-31T16": 0.7993520000000001, + "2024-06-01T03": 0.8102512799999999, + "2024-06-01T09": 0.805098954, + "2024-06-01T10": 0.804990984, + "2024-06-02": 0.8085277176376346, + "2024-06-01T13": 0.81056983, + "2024-06-01T15": 0.813977052, + "2024-06-01T18": 0.806481592, + "2024-06-01T12": 0.8091396445042799, + "2024-06-01T21": 0.807680524, + "2024-06-01T20": 0.806681414, + "2024-06-02T01": 0.8123495999999999, + "2024-06-01T17": 0.8081529599999999, + "2024-06-01T11": 0.80778852, + "2024-06-02T00": 0.8104523648584535, + "2024-06-01T23": 0.8087281980000001, + "2024-06-01T14": 0.8131127399999999, + "2024-06-01T22": 0.807996431, + "2024-06-01T19": 0.804883016, + "2024-06-01T16": 0.8113609890000001, + "2024-06-02T13": 0.81091572, + "2024-06-02T11": 0.8073263909999999, + "2024-06-02T07": 0.81034309, + "2024-06-02T05": 0.8138625776109577, + "2024-06-02T08": 0.8098165119999999, + "2024-06-02T04": 0.81433985, + "2024-06-02T10": 0.805703338, + "2024-06-02T12": 0.812122983, + "2024-06-02T02": 0.812017332, + "2024-06-02T16": 0.809743576, + "2024-06-02T17": 0.803377465, + "2024-06-02T03": 0.810810225, + "2024-06-02T09": 0.80590319, + "2024-06-02T15": 0.8129247119999999, + "2024-06-02T06": 0.81390759, + "2024-06-02T18": 0.799112244, + "2024-06-02T14": 0.8136056340000001, + "2024-06-03": 0.7989710727935222, + "2024-06-03T01": 0.804652464, + "2024-06-02T20": 0.796637682, + "2024-06-03T00": 0.79596198, + "2024-06-02T21": 0.7986790274664302, + "2024-06-02T23": 0.799867838, + "2024-06-02T19": 0.797129416, + "2024-06-02T22": 0.7985685400000001, + "2024-06-03T02": 0.8124576510000001, + "2024-06-03T05": 0.81710944, + "2024-06-03T06": 0.81847584, + "2024-06-03T04": 0.809830026, + "2024-06-03T03": 0.810821333, + "2024-06-03T07": 0.82047456 + }, + "USD ethereum_classic": { + "2023-07-30": 18.62853854926698, + "2023-10-23": 15.927112289941757, + "2023-07-27": 18.27803043995584, + "2023-07-10": 18.771704793221826, + "2023-08-20": 15.515122074051778, + "2024-02-23": 25.614408432558527, + "2024-04-05": 33.13253183498423, + "2023-12-19": 19.911285138535018, + "2024-05-17": 28.194161388669997, + "2023-08-06": 17.89956863775787, + "2023-12-02": 19.149184975817917, + "2023-10-31": 17.204316039803157, + "2023-08-29": 16.590826638329894, + "2023-06-20": 15.320686647967483, + "2023-09-09": 15.415469609500441, + "2023-06-26": 18.346949762818735, + "2023-10-01": 16.370894169111484, + "2024-03-07": 37.186908959806786, + "2023-10-12": 14.836454852898964, + "2024-04-22": 28.179780441203967, + "2023-07-05": 19.13690940988588, + "2023-07-29": 18.50366603296768, + "2024-04-26": 26.944801495932307, + "2024-01-08": 19.396208485033302, + "2023-05-29": 18.40074898254795, + "2023-10-07": 15.678710961450545, + "2023-09-26": 15.161200569244883, + "2023-08-24": 16.05300238984827, + "2023-12-05": 19.8856101111323, + "2024-02-19": 26.82153373189983, + "2024-01-07": 19.774241691699814, + "2024-04-28": 28.81972445874464, + "2023-07-31": 18.71025586422271, + "2023-10-18": 14.955950661871572, + "2024-05-19": 28.01503442878097, + "2024-05-12": 26.649970622511287, + "2024-04-29": 27.30215041355679, + "2023-08-25": 15.93127256768619, + "2024-03-09": 38.17319241272484, + "2023-07-12": 18.876849452542803, + "2023-09-05": 15.280978770141338, + "2023-06-07": 17.15778619938634, + "2023-09-16": 15.653123282424593, + "2024-04-25": 26.235811700854033, + "2023-08-12": 17.670516130034713, + "2023-06-06": 17.135009148092887, + "2023-09-01": 15.517312808606997, + "2023-09-08": 15.380223010768022, + "2024-03-22": 29.634071420221016, + "2023-08-10": 17.715135874662373, + "2023-12-07": 21.52017306966123, + "2023-11-18": 19.02558953351858, + "2023-07-13": 19.356769583670815, + "2023-09-13": 15.06358745404092, + "2023-06-17": 15.347984959252074, + "2023-07-17": 18.9935597898852, + "2023-07-07": 19.037371818301796, + "2023-09-07": 15.448752035921725, + "2024-03-26": 32.68818489834448, + "2024-05-14": 25.76193942936836, + "2024-02-22": 25.955201127861933, + "2024-04-15": 26.573134562907242, + "2023-12-30": 22.465890144468386, + "2023-09-17": 15.483411085595666, + "2024-04-17": 25.754119413790598, + "2024-02-12": 26.06082072318201, + "2023-10-26": 16.541584812941135, + "2024-01-03": 20.287088466738147, + "2024-05-07": 27.285916751824008, + "2023-06-01": 17.851112963165647, + "2024-01-22": 23.788276209498147, + "2023-06-12": 15.024272275595788, + "2023-10-03": 16.225464776894988, + "2024-05-26": 31.876073192292868, + "2024-04-30": 25.583052968177665, + "2023-06-19": 15.251240440130475, + "2023-07-09": 18.869366028116055, + "2023-12-24": 21.209564883355547, + "2023-09-24": 15.250914999999999, + "2024-01-16": 26.658795136300473, + "2023-10-17": 15.094467516243157, + "2024-04-24": 27.7976806324553, + "2024-03-18": 31.33752652582645, + "2024-02-17": 26.305735508891438, + "2023-12-27": 22.022612489190536, + "2023-07-23": 18.640081963658012, + "2023-09-03": 15.414609640687715, + "2024-02-24": 25.83573077255716, + "2024-01-06": 19.888980277515312, + "2024-03-20": 28.52315841364903, + "2023-11-21": 19.19746687701864, + "2023-12-25": 21.348831631021724, + "2023-09-22": 15.218571662367127, + "2023-10-02": 16.568012911298073, + "2024-03-27": 31.74564985681985, + "2024-05-06": 27.68860871204677, + "2023-08-30": 16.281027593532013, + "2023-10-06": 15.55632243859412, + "2023-10-13": 14.774548664735816, + "2023-06-28": 17.87570468046644, + "2024-02-05": 24.648349794366155, + "2024-03-01": 29.61314637812635, + "2023-07-15": 19.256198601750715, + "2023-06-25": 18.783483798381692, + "2023-12-10": 21.980460515147108, + "2023-11-23": 18.94804765617793, + "2023-08-04": 17.95766920522051, + "2024-05-13": 26.454098115895466, + "2024-01-13": 29.101623478045806, + "2024-03-28": 32.28396456965717, + "2023-08-05": 17.831855300403106, + "2024-02-09": 26.14073170046875, + "2023-10-09": 15.033948296302473, + "2024-01-09": 20.126525771328527, + "2024-05-10": 27.505348486567527, + "2023-05-27": 18.001538259532452, + "2023-08-18": 15.492686154948391, + "2023-11-05": 17.847088103488158, + "2024-04-18": 25.76391490712566, + "2023-10-22": 15.55903711466958, + "2023-11-01": 17.54519755169451, + "2024-05-20": 28.209886373125123, + "2023-12-08": 22.073936417452938, + "2024-04-12": 32.74999972783169, + "2023-07-06": 19.272894169021477, + "2024-03-12": 36.69496373690418, + "2023-09-11": 14.721641728589107, + "2024-03-03": 33.46584610652931, + "2024-02-04": 25.18041414580043, + "2024-01-28": 23.918727242270673, + "2023-07-01": 21.33209101514025, + "2023-11-07": 18.155828020722662, + "2023-11-25": 19.302238333877014, + "2023-06-04": 18.21094657991003, + "2024-02-25": 26.48024642197113, + "2023-12-01": 18.862699792166705, + "2023-07-14": 19.90684504220958, + "2024-01-26": 23.72581826693579, + "2023-08-03": 18.013011373097818, + "2024-02-28": 28.65242116064738, + "2023-09-15": 15.409644127163906, + "2023-07-18": 18.749057045420876, + "2023-12-21": 20.397613255180588, + "2023-07-20": 18.861697039973585, + "2024-03-06": 36.68844418365812, + "2023-09-30": 16.073061292156574, + "2023-12-12": 20.292240643512724, + "2024-02-13": 26.72866937647924, + "2023-09-20": 15.574335386446993, + "2023-09-19": 15.727423366651959, + "2023-09-29": 15.848256585174807, + "2023-09-12": 15.026258444890063, + "2023-06-13": 15.243823009786492, + "2023-10-04": 15.567296021007426, + "2023-07-08": 18.975372859228106, + "2024-04-16": 26.100044781933224, + "2024-03-02": 33.09874098069871, + "2023-06-27": 18.60424661248903, + "2023-10-08": 15.523987847393219, + "2023-11-20": 19.553105652656367, + "2023-12-20": 20.11577490802973, + "2023-12-31": 22.224580290927495, + "2023-11-06": 18.386611219619112, + "2023-08-22": 15.494322135289822, + "2023-06-09": 16.955805776405924, + "2024-03-17": 31.065827915512326, + "2023-09-18": 15.734462653825117, + "2024-04-01": 33.323044307653774, + "2024-05-21": 31.809250129862612, + "2024-01-19": 24.05519917224037, + "2023-11-11": 20.10264829347605, + "2023-09-23": 15.220157045513286, + "2023-11-19": 19.179380893995127, + "2023-07-02": 20.303191639802087, + "2023-08-15": 17.292776679042447, + "2024-01-25": 22.746639011594446, + "2024-03-13": 36.812364453529995, + "2024-01-21": 24.788267371862126, + "2024-02-01": 23.950991010964472, + "2023-06-15": 14.847682005357765, + "2024-03-16": 32.07808898698424, + "2023-11-27": 18.569594494879173, + "2024-01-10": 21.400499149283526, + "2024-03-15": 32.76005260978269, + "2023-06-21": 16.46968079279853, + "2024-01-02": 22.66626990237712, + "2023-07-11": 18.82742703254352, + "2023-10-25": 16.422209545468494, + "2024-01-01": 22.006563063380177, + "2024-02-14": 26.79096480411194, + "2023-09-04": 15.364270884358813, + "2023-09-06": 15.41804838619647, + "2024-04-03": 30.380359505310988, + "2023-11-28": 18.553518539662463, + "2023-12-03": 19.59953856340984, + "2023-08-02": 18.216930131557717, + "2023-08-27": 15.90123108217234, + "2023-10-20": 15.261783104470798, + "2023-10-10": 15.010722351467527, + "2024-05-03": 26.37956947218633, + "2024-03-08": 38.557739135985095, + "2024-04-11": 33.842607605712075, + "2023-06-22": 16.921304778122213, + "2024-01-14": 27.79213987882631, + "2023-12-15": 20.460802541164647, + "2023-10-19": 14.74489306772241, + "2024-02-08": 25.287756647685576, + "2023-11-08": 18.193463942946902, + "2023-11-12": 20.00333243437541, + "2023-12-22": 21.742259947543353, + "2023-05-31": 17.97320226586506, + "2024-03-23": 30.172598471571547, + "2023-09-27": 15.310036570112514, + "2024-03-04": 34.258379287982066, + "2023-09-10": 15.084848380752808, + "2024-04-13": 28.725899446270812, + "2024-02-29": 30.487145858822498, + "2023-07-21": 18.73387429825075, + "2023-06-30": 19.781353993170953, + "2023-12-29": 22.610328138999837, + "2023-12-04": 19.937433875080462, + "2024-04-10": 32.75610625352813, + "2024-05-08": 27.398152261505345, + "2023-09-21": 15.290207214741313, + "2023-06-02": 18.04105420677769, + "2024-04-21": 27.787191097196814, + "2023-07-22": 18.749410099375172, + "2023-10-11": 14.849856065581992, + "2024-03-21": 30.356086205213327, + "2023-07-19": 18.893469002994877, + "2024-05-05": 26.993966474397254, + "2024-05-23": 32.28500177249686, + "2024-04-08": 35.27696438601777, + "2024-05-18": 28.701776264357214, + "2023-06-14": 15.219838737115472, + "2023-10-05": 15.599007176874975, + "2023-10-16": 15.237768383946872, + "2024-05-22": 30.861192714269432, + "2024-02-10": 25.871481265460993, + "2024-04-07": 33.982533726206974, + "2024-02-20": 26.966929534381325, + "2023-11-17": 19.35772687140628, + "2023-12-11": 20.130324326485926, + "2023-11-26": 19.23816830853545, + "2023-11-16": 19.807265146192037, + "2023-06-29": 17.96237452235071, + "2023-10-27": 16.276441164597436, + "2023-06-11": 15.065671482507605, + "2024-02-02": 24.7830047432835, + "2023-09-14": 15.221410382289601, + "2024-01-27": 24.026270882874357, + "2024-03-30": 33.61753212485222, + "2023-11-22": 18.63258513432668, + "2023-09-28": 15.618882755294232, + "2023-06-03": 18.16527739893444, + "2024-01-18": 25.295906829483805, + "2023-08-26": 15.862176609429678, + "2024-02-15": 26.784017593106967, + "2023-10-28": 16.256660200916443, + "2024-03-24": 31.093583229715637, + "2024-04-27": 26.982304203234666, + "2023-12-06": 20.34095198595451, + "2024-01-30": 24.98195945729, + "2023-11-14": 19.664161577835223, + "2023-08-09": 17.90421534138576, + "2024-05-15": 26.36713170497087, + "2023-11-10": 21.031846508468668, + "2024-01-23": 22.5177961786848, + "2024-01-31": 25.01529979049615, + "2024-05-11": 26.51236494444914, + "2024-01-11": 28.93011005164714, + "2024-02-18": 26.137723301232246, + "2023-06-16": 15.02941608138406, + "2023-10-30": 16.719410245180843, + "2023-12-17": 20.24297181547739, + "2024-02-26": 27.302253635500335, + "2023-07-16": 19.093800665624812, + "2024-01-05": 19.96926263399242, + "2023-08-23": 15.762520535624118, + "2024-03-11": 37.133843713302106, + "2023-08-01": 18.207214051698212, + "2024-03-14": 35.68756659999771, + "2024-02-21": 25.91163348775789, + "2023-08-28": 15.78902152108345, + "2023-07-04": 19.970175055122265, + "2023-12-13": 19.917757938297285, + "2024-02-27": 28.16165041434054, + "2023-08-13": 17.671184393919248, + "2024-03-31": 33.86681867126674, + "2023-12-09": 22.47496771941317, + "2024-04-02": 30.473676042522058, + "2024-02-06": 24.531588717153173, + "2024-04-09": 34.49851406429911, + "2023-11-04": 17.318654999999993, + "2024-04-20": 26.484913568267967, + "2024-01-15": 26.989255370622228, + "2023-07-03": 20.12234407584675, + "2023-12-28": 22.813928117914333, + "2023-05-30": 18.317152694122946, + "2024-05-25": 31.661910805944924, + "2024-02-07": 24.751203045120292, + "2023-09-25": 15.180318926042778, + "2024-03-19": 28.720423173089817, + "2024-03-10": 36.78548502711661, + "2024-05-02": 25.580189773364964, + "2023-09-02": 15.427868712956705, + "2024-01-12": 29.64225654565463, + "2024-04-19": 26.076139913850447, + "2023-11-29": 18.75850213214291, + "2023-10-15": 14.953864757362311, + "2024-05-28": 31.798307043955564, + "2023-11-30": 18.593074721357723, + "2024-01-24": 22.85277322756568, + "2023-08-11": 17.651983059768316, + "2024-02-11": 25.949842598573564, + "2023-06-08": 16.97652949987185, + "2023-11-15": 19.341353309681555, + "2023-12-16": 20.34828629268493, + "2024-03-29": 33.57199785005869, + "2024-04-04": 32.310469363832986, + "2023-06-10": 14.60722760986965, + "2023-07-28": 18.50829992217354, + "2024-01-20": 24.737538602954942, + "2023-10-21": 15.526076996959755, + "2023-08-16": 16.480533351062718, + "2024-05-24": 31.646824274394817, + "2023-11-03": 17.001067470295588, + "2023-08-31": 15.887581185777847, + "2024-05-27": 31.98508453115777, + "2024-01-04": 20.204364668837677, + "2023-07-26": 18.078390594936348, + "2023-11-13": 20.143808091150635, + "2023-10-24": 16.678416731927797, + "2024-03-25": 31.65207708730664, + "2023-08-07": 17.755018455183464, + "2023-10-29": 16.3657716196395, + "2024-01-29": 23.633430988251316, + "2024-05-04": 27.058153469706156, + "2023-06-05": 17.718481034075687, + "2023-11-02": 17.56164770118202, + "2023-12-18": 19.508189663950034, + "2023-11-24": 19.153440250039235, + "2023-08-21": 15.650571943374134, + "2023-07-25": 18.048865278934574, + "2024-05-16": 27.136358744234265, + "2023-08-14": 17.522381199632562, + "2024-05-01": 24.86763775574175, + "2024-03-05": 36.9664292362813, + "2024-04-06": 33.0740727866274, + "2023-12-23": 21.301890543638976, + "2024-02-03": 25.123149733532628, + "2024-02-16": 26.92707887939291, + "2023-05-28": 18.30008207831373, + "2023-12-14": 20.613241091427565, + "2023-06-24": 18.969996157397244, + "2023-12-26": 20.89681346272774, + "2023-11-09": 18.851782086645674, + "2023-08-19": 15.452818465442155, + "2024-05-09": 27.292516737001293, + "2024-01-17": 26.503951667774153, + "2023-06-23": 17.234637084005538, + "2023-06-18": 15.386023256745371, + "2024-04-23": 28.149560772712864, + "2023-08-08": 17.721363668659652, + "2023-08-17": 16.105675262104285, + "2024-04-14": 25.798177765214472, + "2023-07-24": 18.07182006676643, + "2023-10-14": 14.906778572609765, + "2024-05-22T20": 30.422460489812295, + "2024-05-25T08": 31.8075902, + "2024-05-22T05": 30.9631866, + "2024-05-28T03": 31.0954152, + "2024-05-22T16": 30.6526416, + "2024-05-25T05": 32.217107999999996, + "2024-05-24T22": 31.655567599999998, + "2024-05-27T14": 32.0369168, + "2024-05-22T03": 31.4134018, + "2024-05-23T17": 32.6861217, + "2024-05-24T23": 31.6243066, + "2024-05-26T19": 32.2725634, + "2024-05-26T18": 32.043328800000005, + "2024-05-26T10": 31.788234000000003, + "2024-05-27T16": 32.477815099999994, + "2024-05-24T12": 31.393666800000002, + "2024-05-26T01": 31.751982286019043, + "2024-05-21T17": 31.6616256, + "2024-05-23T07": 31.5307545, + "2024-05-22T08": 31.553688, + "2024-05-23T09": 31.719591202509157, + "2024-05-24T18": 31.684150000000002, + "2024-05-23T01": 30.6643532, + "2024-05-25T15": 31.606839, + "2024-05-23T16": 32.7074163, + "2024-05-25T03": 31.6969989, + "2024-05-28T06": 31.0026936, + "2024-05-25T23": 31.6546178, + "2024-05-24T13": 31.321195999999997, + "2024-05-26T03": 31.7465075, + "2024-05-26T00": 31.615889400000004, + "2024-05-25T06": 31.98752, + "2024-05-27T04": 32.2528969, + "2024-05-22T10": 31.2331272, + "2024-05-27T09": 31.8902158, + "2024-05-24T17": 31.386812, + "2024-05-26T16": 32.2264592, + "2024-05-22T09": 31.233752, + "2024-05-24T21": 31.717145199999997, + "2024-05-25T04": 32.11714800000001, + "2024-05-27T22": 31.8574722, + "2024-05-27T11": 31.7702902, + "2024-05-23T21": 33.115145, + "2024-05-23T10": 32.03778285, + "2024-05-23T14": 32.4340995, + "2024-05-27T02": 32.490819099999996, + "2024-05-25T18": 31.592100000000002, + "2024-05-27T05": 31.9046784, + "2024-05-22T23": 30.446293, + "2024-05-28T01": 31.404856, + "2024-05-22T04": 30.88175202554073, + "2024-05-22T15": 30.591126000000003, + "2024-05-24T03": 33.006461800000004, + "2024-05-24T08": 31.3209143, + "2024-05-21T22": 31.7507896, + "2024-05-21T16": 32.0762013, + "2024-05-21T23": 31.803319899999998, + "2024-05-24T02": 32.9174866, + "2024-05-26T07": 31.9181859, + "2024-05-27T07": 31.901167200000003, + "2024-05-25T22": 31.49433, + "2024-05-24T16": 31.186896, + "2024-05-27T20": 31.867461999999996, + "2024-05-22T02": 31.4543372, + "2024-05-24T06": 31.6760564, + "2024-05-24T11": 31.461112, + "2024-05-25T21": 31.463706, + "2024-05-27T15": 32.4121016, + "2024-05-21T19": 31.029756799999998, + "2024-05-22T19": 30.323630699999995, + "2024-05-21T12": 32.1326078, + "2024-05-23T20": 31.476374999999997, + "2024-05-23T08": 31.5117126, + "2024-05-22T22": 30.507792000000002, + "2024-05-26T11": 31.9356225, + "2024-05-24T01": 33.28668, + "2024-05-23T05": 30.990773800000003, + "2024-05-28T04": 30.777516000000002, + "2024-05-25T09": 31.9684872, + "2024-05-27T18": 32.287356800000005, + "2024-05-24T10": 31.513919700000002, + "2024-05-25T19": 31.614541201567402, + "2024-05-24T07": 31.651135200000002, + "2024-05-26T04": 31.831721599999998, + "2024-05-26T09": 31.950488975440827, + "2024-05-23T02": 30.6740412, + "2024-05-27T06": 31.884687999999997, + "2024-05-28T08": 31.11272210476618, + "2024-05-24T15": 31.54422, + "2024-05-25T20": 31.4421375, + "2024-05-27T08": 32.200668, + "2024-05-23T22": 32.9395648, + "2024-05-26T15": 32.430530000000005, + "2024-05-24T20": 31.746825, + "2024-05-21T20": 31.2396875, + "2024-05-25T13": 31.4355984, + "2024-05-22T01": 31.446226, + "2024-05-25T17": 31.5030678, + "2024-05-27T10": 31.780602000000002, + "2024-05-21T21": 31.3131096, + "2024-05-24T19": 31.677040105595964, + "2024-05-26T02": 31.5865251, + "2024-05-27T19": 31.7778719, + "2024-05-25T11": 31.985237253656464, + "2024-05-27T17": 32.3766177, + "2024-05-21T18": 31.4648896, + "2024-05-26T06": 31.7192118, + "2024-05-23T00": 30.6637396, + "2024-05-22T00": 31.625541487695873, + "2024-05-24T05": 32.1922845, + "2024-05-23T15": 32.926276, + "2024-05-22T13": 29.996699999999997, + "2024-05-21T10": 31.931148591192446, + "2024-05-22T12": 30.0248949, + "2024-05-23T04": 31.2206312, + "2024-05-26T08": 32.0465348, + "2024-05-26T13": 31.6098816, + "2024-05-28T05": 30.8662147, + "2024-05-22T18": 30.24637, + "2024-05-22T06": 31.123151399999998, + "2024-05-21T08": 31.64568558633794, + "2024-05-22T17": 30.7750752, + "2024-05-23T19": 32.4800908, + "2024-05-25T07": 31.8675668, + "2024-05-26T22": 31.9665684, + "2024-05-25T16": 31.555581599999996, + "2024-05-26T05": 31.550532, + "2024-05-24T04": 33.031492, + "2024-05-21T14": 32.371905000000005, + "2024-05-25T12": 31.697781, + "2024-05-28T07": 30.97458, + "2024-05-23T18": 31.9672871, + "2024-05-26T23": 31.734759999999998, + "2024-05-24T09": 31.425852000000003, + "2024-05-23T03": 30.679431, + "2024-05-26T14": 32.287403, + "2024-05-21T13": 32.373524, + "2024-05-22T14": 30.2818217, + "2024-05-25T14": 31.4577978, + "2024-05-25T00": 31.632722800000003, + "2024-05-23T23": 32.225814400000004, + "2024-05-21T11": 32.4212439, + "2024-05-23T13": 32.728541, + "2024-05-22T11": 31.114398400000002, + "2024-05-21T15": 32.112291199999994, + "2024-05-28T00": 31.57472, + "2024-05-27T23": 31.903178800000003, + "2024-05-28T02": 31.076986, + "2024-05-26T21": 31.914035000000002, + "2024-05-26T12": 31.689856, + "2024-05-23T06": 31.0104511, + "2024-05-22T07": 31.194384, + "2024-05-27T12": 31.757754, + "2024-05-22T21": 30.3187779, + "2024-05-24T00": 33.3150015, + "2024-05-25T02": 31.5130656, + "2024-05-27T00": 31.70414, + "2024-05-26T20": 32.1903519, + "2024-05-26T17": 32.2225904, + "2024-05-27T13": 32.0098211, + "2024-05-23T12": 33.5335605, + "2024-05-25T10": 31.961368099999998, + "2024-05-21T09": 31.623674, + "2024-05-23T11": 32.893544999999996, + "2024-05-24T14": 31.4176776, + "2024-05-25T01": 31.413716, + "2024-05-27T21": 31.8478012, + "2024-05-27T03": 32.4308545, + "2024-05-27T01": 32.0642808, + "latest": 29.14, + "2024-05-28T09": 31.3276992, + "2024-05-28T10": 31.6492704, + "2024-05-28T11": 31.4581951, + "2024-05-28T12": 31.3283264, + "2024-05-28T13": 31.188779999999998, + "2024-05-28T14": 31.0392407, + "2024-05-28T15": 31.060775399999997, + "2024-05-29": 30.679210013317736, + "2024-05-28T20": 31.618983, + "2024-05-28T22": 31.5109832, + "2024-05-28T21": 31.558604, + "2024-05-28T19": 31.4412796, + "2024-05-29T02": 31.268074, + "2024-05-28T17": 31.158810000000003, + "2024-05-28T18": 31.081100000000003, + "2024-05-28T23": 31.429798400000003, + "2024-05-29T00": 31.3229952, + "2024-05-29T01": 31.1522601, + "2024-05-28T16": 30.977439500000003, + "2024-05-29T06": 31.302078599999998, + "2024-05-29T05": 31.342971600000002, + "2024-05-29T03": 31.394754570428066, + "2024-05-29T07": 31.0064768, + "2024-05-29T04": 31.462515, + "2024-05-29T08": 30.63933, + "2024-05-29T09": 30.7416916, + "2024-05-29T10": 30.780114299999997, + "2024-05-29T11": 30.7395377, + "2024-05-29T12": 30.6102792, + "2024-05-29T13": 30.526171, + "2024-05-29T14": 30.4574448, + "2024-05-29T15": 30.370550400000003, + "2024-05-29T18": 30.520672, + "2024-05-29T17": 30.432586, + "2024-05-29T23": 30.503352, + "2024-05-29T19": 30.5300512, + "2024-05-29T22": 30.52611421406887, + "2024-05-29T20": 30.392317800000004, + "2024-05-29T16": 30.239120600000003, + "2024-05-29T21": 30.359372189704278, + "2024-05-30": 30.056285353440614, + "2024-05-30T00": 30.412242, + "2024-05-30T05": 30.399874299999997, + "2024-05-30T02": 30.4930587, + "2024-05-30T01": 30.326985611060394, + "2024-05-30T06": 30.02596, + "2024-05-30T07": 29.8015116, + "2024-05-30T03": 30.533316, + "2024-05-30T04": 30.61842613547222, + "2024-05-30T08": 29.33239, + "2024-05-30T09": 29.49255356132306, + "2024-05-30T10": 29.64936207587885, + "2024-05-30T11": 29.826746194228427, + "2024-05-30T12": 29.886072, + "2024-05-30T13": 30.121916, + "2024-05-30T14": 30.1761126, + "2024-05-30T15": 30.057972000000003, + "2024-05-30T21": 29.854028, + "2024-05-30T20": 29.8843209, + "2024-05-30T18": 30.3820986, + "2024-05-30T22": 29.820250299446542, + "2024-05-30T16": 30.129149599999998, + "2024-05-30T17": 30.368455599999997, + "2024-05-30T19": 30.194564, + "2024-05-31": 29.80475297363232, + "2024-05-30T23": 29.809563, + "2024-05-31T03": 30.0155856, + "2024-05-31T07": 29.731078, + "2024-05-31T06": 29.801057, + "2024-05-31T04": 30.026181599999997, + "2024-05-31T02": 29.9674084, + "2024-05-31T05": 29.7577943, + "2024-05-31T00": 29.8116504, + "2024-05-31T01": 29.9028216, + "2024-05-31T08": 29.7504768, + "2024-05-31T09": 29.669908799999998, + "2024-05-31T10": 29.862071999999998, + "2024-05-31T11": 30.0716451, + "2024-05-31T12": 30.361468199999997, + "2024-05-31T13": 30.0213752, + "2024-05-31T14": 29.7930083, + "2024-06-01": 29.60013715957508, + "2024-06-01T08": 29.575432000000003, + "2024-06-01T02": 29.5800939, + "2024-06-01T05": 29.626873, + "2024-05-31T21": 29.7851106, + "2024-06-01T00": 29.509869199999997, + "2024-05-31T18": 29.677913200000003, + "2024-05-31T15": 29.625390499999998, + "2024-05-31T23": 29.6100636, + "2024-05-31T22": 29.795695499999997, + "2024-06-01T01": 29.5101646, + "2024-06-01T07": 29.528746157088115, + "2024-06-01T04": 29.627169499999997, + "2024-05-31T19": 29.780637600000002, + "2024-06-01T06": 29.602916779356182, + "2024-05-31T20": 29.8450404, + "2024-05-31T17": 29.596007800000002, + "2024-05-31T16": 29.346210300000003, + "2024-06-01T03": 29.623466125649053, + "2024-06-01T09": 29.6042219, + "2024-06-01T10": 29.593934400000002, + "2024-06-02": 29.53936886267651, + "2024-06-01T13": 29.67327, + "2024-06-01T15": 29.679992900000002, + "2024-06-01T18": 29.5436827, + "2024-06-01T12": 29.6042219, + "2024-06-01T21": 29.6036293, + "2024-06-01T20": 29.48527926678073, + "2024-06-02T01": 29.656256, + "2024-06-01T17": 29.52636, + "2024-06-01T11": 29.5439784, + "2024-06-02T00": 29.546344, + "2024-06-01T23": 29.5454569, + "2024-06-01T14": 29.717614892573753, + "2024-06-01T22": 29.7041349, + "2024-06-01T19": 29.4637539, + "2024-06-01T16": 29.5430913, + "2024-06-02T13": 29.268911199999998, + "2024-06-02T11": 29.1592822, + "2024-06-02T07": 29.216315599999998, + "2024-06-02T05": 29.425262, + "2024-06-02T08": 29.198961599999997, + "2024-06-02T04": 29.506080700000002, + "2024-06-02T10": 28.978540000000002, + "2024-06-02T12": 29.2492183, + "2024-06-02T02": 29.5151864, + "2024-06-02T16": 29.216315599999998, + "2024-06-02T17": 28.961163, + "2024-06-02T03": 29.424967499999998, + "2024-06-02T09": 28.918584400000004, + "2024-06-02T15": 29.335631199999998, + "2024-06-02T06": 29.404984499999998, + "2024-06-02T18": 28.7024808, + "2024-06-02T14": 29.3485599, + "2024-06-03": 28.930852393706083, + "2024-06-03T01": 29.0402392, + "2024-06-02T20": 28.7633076, + "2024-06-03T00": 28.734187499999997, + "2024-06-02T21": 28.884775239369077, + "2024-06-02T23": 28.959461679875183, + "2024-06-02T19": 28.7730139, + "2024-06-02T22": 28.9543562, + "2024-06-03T02": 29.176932, + "2024-06-03T05": 28.992594, + "2024-06-03T06": 29.181312, + "2024-06-03T04": 28.843261199999997, + "2024-06-03T03": 29.0328605, + "2024-06-03T07": 29.181312 + }, + "USD fantom": { + "2023-07-30": 0.24470729267174504, + "2023-10-23": 0.2237710842961554, + "2023-07-27": 0.24553482940106977, + "2023-07-10": 0.26500099159938906, + "2023-08-20": 0.20904850521087387, + "2024-02-23": 0.3979121899123562, + "2024-04-05": 0.8013161887670636, + "2023-12-19": 0.40939839634224995, + "2024-05-17": 0.8056186661710182, + "2023-08-06": 0.23799151992973075, + "2023-12-02": 0.32238417927425533, + "2023-10-31": 0.2425008503766674, + "2023-08-29": 0.2115632793745753, + "2023-06-20": 0.2627707862793641, + "2023-09-09": 0.20046108729552714, + "2023-06-26": 0.31614315266249615, + "2023-10-01": 0.20481640643199453, + "2024-03-07": 0.8003148031722489, + "2023-10-12": 0.17964830063683943, + "2024-04-22": 0.767407417259645, + "2023-07-05": 0.30376499419228986, + "2023-07-29": 0.2453951611132539, + "2024-04-26": 0.7387716580068328, + "2024-01-08": 0.37920948045126923, + "2023-05-29": 0.3393591192515877, + "2023-10-07": 0.19400683872116942, + "2023-09-26": 0.18914011790267005, + "2023-08-24": 0.2081093189235444, + "2023-12-05": 0.32389931911942826, + "2024-02-19": 0.43021277434812005, + "2024-01-07": 0.39954940386335547, + "2024-04-28": 0.7192880733616436, + "2023-07-31": 0.23967629628127968, + "2023-10-18": 0.17661505062146418, + "2024-05-19": 0.8795524443644965, + "2024-05-12": 0.7127354250447789, + "2024-04-29": 0.7122485783285685, + "2023-08-25": 0.20660814210626924, + "2024-03-09": 0.8078465729584724, + "2023-07-12": 0.2736990571738358, + "2023-09-05": 0.20208070028270628, + "2023-06-07": 0.29723448908866823, + "2023-09-16": 0.19602019897435213, + "2024-04-25": 0.7388423941057067, + "2023-08-12": 0.24013975127073714, + "2023-06-06": 0.2943794756252241, + "2023-09-01": 0.20031976113733602, + "2023-09-08": 0.20121950408121578, + "2024-03-22": 1.147350523941787, + "2023-08-10": 0.23785951979289327, + "2023-12-07": 0.3372484964944591, + "2023-11-18": 0.3248183794321348, + "2023-07-13": 0.293440674934236, + "2023-09-13": 0.18968235077818013, + "2023-06-17": 0.27540535636839164, + "2023-07-17": 0.26262919404937723, + "2023-07-07": 0.2681594898072816, + "2023-09-07": 0.20198065825656644, + "2024-03-26": 1.1029819652717248, + "2024-05-14": 0.662575236895729, + "2024-02-22": 0.41147887458144444, + "2024-04-15": 0.6876533668479982, + "2023-12-30": 0.4690768902885856, + "2023-09-17": 0.19180679710604143, + "2024-04-17": 0.6752069445374698, + "2024-02-12": 0.3873770933793277, + "2023-10-26": 0.2288220559723561, + "2024-01-03": 0.43665112472055634, + "2024-05-07": 0.6973405881352044, + "2023-06-01": 0.3134164505254411, + "2024-01-22": 0.3504422996419125, + "2023-06-12": 0.24275476970177678, + "2023-10-03": 0.19950022726677155, + "2024-05-26": 0.8117476578076551, + "2024-04-30": 0.6606937498163992, + "2023-06-19": 0.26484309611646567, + "2023-07-09": 0.27398283197882306, + "2023-12-24": 0.5227330906190849, + "2023-09-24": 0.18810128539999998, + "2024-01-16": 0.40402589443690035, + "2023-10-17": 0.1780727363634788, + "2024-04-24": 0.7408713754877384, + "2024-03-18": 0.8840890351115372, + "2024-02-17": 0.39978840214567374, + "2023-12-27": 0.5123434374315577, + "2023-07-23": 0.25510671955620556, + "2023-09-03": 0.2005729747353339, + "2024-02-24": 0.4112017369014505, + "2024-01-06": 0.40092365480207465, + "2024-03-20": 0.9806296001498651, + "2023-11-21": 0.3043551295592198, + "2023-12-25": 0.5440947071988939, + "2023-09-22": 0.1881853947207503, + "2023-10-02": 0.20325080347319832, + "2024-03-27": 1.0623022948375167, + "2024-05-06": 0.7156355370281252, + "2023-08-30": 0.21258390386358486, + "2023-10-06": 0.19326831226925129, + "2023-10-13": 0.18183623971803958, + "2023-06-28": 0.301001611624178, + "2024-02-05": 0.35686250611710907, + "2024-03-01": 0.48612949231661823, + "2023-07-15": 0.2793050390863862, + "2023-06-25": 0.32122399629087683, + "2023-12-10": 0.40172307090809756, + "2023-11-23": 0.29917472570266507, + "2023-08-04": 0.23338274437888598, + "2024-05-13": 0.6828436089737112, + "2024-01-13": 0.3936485186351579, + "2024-03-28": 1.0117899218681066, + "2023-08-05": 0.2347094345819916, + "2024-02-09": 0.39212370635906574, + "2023-10-09": 0.1835363490800669, + "2024-01-09": 0.38207399550519083, + "2024-05-10": 0.7222535377426882, + "2023-05-27": 0.32964711872733266, + "2023-08-18": 0.19664896171345936, + "2023-11-05": 0.2653711728088132, + "2024-04-18": 0.6734394901519593, + "2023-10-22": 0.20144875544615073, + "2023-11-01": 0.23799906887522576, + "2024-05-20": 0.9010721806076023, + "2023-12-08": 0.35891608550469084, + "2024-04-12": 0.8673276299920823, + "2023-07-06": 0.2908170563753355, + "2024-03-12": 0.7976750469607646, + "2023-09-11": 0.1875261700957493, + "2024-03-03": 0.5440769343931591, + "2024-02-04": 0.3519334749794771, + "2024-01-28": 0.38333915513841654, + "2023-07-01": 0.3057177186841849, + "2023-11-07": 0.26645417732744403, + "2023-11-25": 0.31714358918282504, + "2023-06-04": 0.3208006868246777, + "2024-02-25": 0.4176643342434647, + "2023-12-01": 0.31346308101709186, + "2023-07-14": 0.30009498516783434, + "2024-01-26": 0.35290059787908723, + "2023-08-03": 0.23507829040986783, + "2024-02-28": 0.4678843915598863, + "2023-09-15": 0.192503551546201, + "2023-07-18": 0.2591572977776252, + "2023-12-21": 0.4678074842016622, + "2023-07-20": 0.25756339455239774, + "2024-03-06": 0.6801825211631883, + "2023-09-30": 0.19920457559426938, + "2023-12-12": 0.38574608800228644, + "2024-02-13": 0.3962086814622404, + "2023-09-20": 0.19261348676431755, + "2023-09-19": 0.19313488372499346, + "2023-09-29": 0.19157892493712206, + "2023-09-12": 0.19085196358537865, + "2023-06-13": 0.2584742429319532, + "2023-10-04": 0.19978476679808346, + "2023-07-08": 0.27199348527585715, + "2024-04-16": 0.6692528697389093, + "2024-03-02": 0.5199764563415339, + "2023-06-27": 0.3097809884324255, + "2023-10-08": 0.19146065073413018, + "2023-11-20": 0.33247771948103305, + "2023-12-20": 0.4300745273016704, + "2023-12-31": 0.47829600813670853, + "2023-11-06": 0.2698226069172583, + "2023-08-22": 0.1998875208595035, + "2023-06-09": 0.2929296289388218, + "2024-03-17": 0.8587675437786149, + "2023-09-18": 0.1927328622644358, + "2024-04-01": 0.9394866461198109, + "2024-05-21": 0.9022818768888831, + "2024-01-19": 0.36324718757711044, + "2023-11-11": 0.30160450530490923, + "2023-09-23": 0.18804999764752398, + "2023-11-19": 0.32358313959038715, + "2023-07-02": 0.30609844851395035, + "2023-08-15": 0.23859420800000003, + "2024-01-25": 0.3359407247570374, + "2024-03-13": 0.8338517882807928, + "2024-01-21": 0.371174674765122, + "2024-02-01": 0.3489143966995854, + "2023-06-15": 0.25417792367623815, + "2024-03-16": 0.8918984767475107, + "2023-11-27": 0.29881765440679053, + "2024-01-10": 0.3867974726664779, + "2024-03-15": 0.7807069273314835, + "2023-06-21": 0.2888006403389049, + "2024-01-02": 0.5042191642310971, + "2023-07-11": 0.27435225230089705, + "2023-10-25": 0.22749491515291934, + "2024-01-01": 0.4930093682032067, + "2024-02-14": 0.41028707709588924, + "2023-09-04": 0.20340863147276106, + "2023-09-06": 0.20098300008523504, + "2024-04-03": 0.8616899409106472, + "2023-11-28": 0.29904619542812366, + "2023-12-03": 0.3172317233924497, + "2023-08-02": 0.24306527755128432, + "2023-08-27": 0.20172551725031596, + "2023-10-20": 0.18067945993044707, + "2023-10-10": 0.18211490204404499, + "2024-05-03": 0.6878958098952785, + "2024-03-08": 0.809265124028462, + "2024-04-11": 0.9413651002638124, + "2023-06-22": 0.2981273196880233, + "2024-01-14": 0.39355344519586144, + "2023-12-15": 0.4282859195511724, + "2023-10-19": 0.17545538593924295, + "2024-02-08": 0.3713681881213381, + "2023-11-08": 0.2721872833344987, + "2023-11-12": 0.3290540930804122, + "2023-12-22": 0.48971309607634067, + "2023-05-31": 0.3134682848344147, + "2024-03-23": 1.0882867335364974, + "2023-09-27": 0.18736880527380118, + "2024-03-04": 0.6680142234513989, + "2023-09-10": 0.1920519960742069, + "2024-04-13": 0.7269576893788955, + "2024-02-29": 0.47941759562602926, + "2023-07-21": 0.257887003600073, + "2023-06-30": 0.3048730055541409, + "2023-12-29": 0.489079246149713, + "2023-12-04": 0.31402487739344975, + "2024-04-10": 0.9859523994479733, + "2024-05-08": 0.6673099051481377, + "2023-09-21": 0.18989068592319888, + "2023-06-02": 0.32081341284473014, + "2024-04-21": 0.7575470837872276, + "2023-07-22": 0.25715628910820465, + "2023-10-11": 0.1801822408043739, + "2024-03-21": 1.0710046820199275, + "2023-07-19": 0.25798571257689695, + "2024-05-05": 0.6922182769616663, + "2024-05-23": 0.8188286133004566, + "2024-04-08": 0.9249152453958804, + "2024-05-18": 0.8780048703322145, + "2023-06-14": 0.26216684616436436, + "2023-10-05": 0.19792695838322524, + "2023-10-16": 0.1873372935986191, + "2024-05-22": 0.8549468710657503, + "2024-02-10": 0.3937896761685874, + "2024-04-07": 0.88271271502565, + "2024-02-20": 0.42537946553469025, + "2023-11-17": 0.34385691414352215, + "2023-12-11": 0.36744604024586125, + "2023-11-26": 0.31423471092509675, + "2023-11-16": 0.36082766717716724, + "2023-06-29": 0.2987925175975561, + "2023-10-27": 0.22387760910465554, + "2023-06-11": 0.2396033592031477, + "2024-02-02": 0.3599254108134411, + "2023-09-14": 0.19299744306881655, + "2024-01-27": 0.36742092483929334, + "2024-03-30": 0.952179739054207, + "2023-11-22": 0.29255847445916855, + "2023-09-28": 0.18806830206138522, + "2023-06-03": 0.32197123589511256, + "2024-01-18": 0.3887837345684089, + "2023-08-26": 0.20349057228647832, + "2024-02-15": 0.4129389807572413, + "2023-10-28": 0.23257328607230554, + "2024-03-24": 1.0526142327371772, + "2024-04-27": 0.7008910256119286, + "2023-12-06": 0.3364339735633345, + "2024-01-30": 0.38418543723306675, + "2023-11-14": 0.3074160101019283, + "2023-08-09": 0.23737176449709713, + "2024-05-15": 0.693880953290498, + "2023-11-10": 0.27459705189640454, + "2024-01-23": 0.3208376174094712, + "2024-01-31": 0.36272165869652917, + "2024-05-11": 0.7181469440603431, + "2024-01-11": 0.42826786782781145, + "2024-02-18": 0.4119856653582028, + "2023-06-16": 0.2582194800800412, + "2023-10-30": 0.24438808119572705, + "2023-12-17": 0.4129371372320262, + "2024-02-26": 0.42479640739086283, + "2023-07-16": 0.2691888101442252, + "2024-01-05": 0.4266304393531056, + "2023-08-23": 0.20243540945672867, + "2024-03-11": 0.8100509866746184, + "2023-08-01": 0.2364725349051997, + "2024-03-14": 0.8592926395500649, + "2024-02-21": 0.39992924303996935, + "2023-08-28": 0.19988780921604954, + "2023-07-04": 0.3187611923785245, + "2023-12-13": 0.37352862409515897, + "2024-02-27": 0.4464654585329106, + "2023-08-13": 0.2410267746548123, + "2024-03-31": 0.9906886452618502, + "2023-12-09": 0.4088278370133945, + "2024-04-02": 0.8899996290379137, + "2024-02-06": 0.3586947697068421, + "2024-04-09": 0.969187356101536, + "2023-11-04": 0.24858260789355216, + "2024-04-20": 0.7107072027395789, + "2024-01-15": 0.3927145070347789, + "2023-07-03": 0.31896800274870707, + "2023-12-28": 0.4895393878552814, + "2023-05-30": 0.3289408503699541, + "2024-05-25": 0.8159889534804815, + "2024-02-07": 0.35750115627592527, + "2023-09-25": 0.18795570528351843, + "2024-03-19": 0.917337558863304, + "2024-03-10": 0.7837651027577422, + "2024-05-02": 0.6729764554807885, + "2023-09-02": 0.2029588068647665, + "2024-01-12": 0.4177980267752094, + "2024-04-19": 0.7013405182038539, + "2023-11-29": 0.31187722873746787, + "2023-10-15": 0.18460057695914073, + "2024-05-28": 0.8208645985800854, + "2023-11-30": 0.3014016144905885, + "2024-01-24": 0.3373759422843075, + "2023-08-11": 0.2403199644453167, + "2024-02-11": 0.39505101099497303, + "2023-06-08": 0.2932841877985184, + "2023-11-15": 0.3255999451192121, + "2023-12-16": 0.4216483889049177, + "2024-03-29": 0.9889824289445466, + "2024-04-04": 0.849505177012577, + "2023-06-10": 0.23751568027202333, + "2023-07-28": 0.24584008442810004, + "2024-01-20": 0.3660269515304153, + "2023-10-21": 0.1978771378237061, + "2023-08-16": 0.22244881012799356, + "2024-05-24": 0.8081076894684985, + "2023-11-03": 0.2401984646907003, + "2023-08-31": 0.210579073343893, + "2024-05-27": 0.8253952831173829, + "2024-01-04": 0.4362566490862444, + "2023-07-26": 0.23449701165146122, + "2023-11-13": 0.3158685636137267, + "2023-10-24": 0.2307122587043657, + "2024-03-25": 1.1224469270030941, + "2023-08-07": 0.2352738624456319, + "2023-10-29": 0.2382002201953355, + "2024-01-29": 0.3837670022765022, + "2024-05-04": 0.6981330755444567, + "2023-06-05": 0.31520796593037037, + "2023-11-02": 0.25077043186538894, + "2023-12-18": 0.399628965847207, + "2023-11-24": 0.30273848564942446, + "2023-08-21": 0.2061443245719581, + "2023-07-25": 0.23908428226964645, + "2024-05-16": 0.8003025985666204, + "2023-08-14": 0.24081068013196916, + "2024-05-01": 0.6483068775604021, + "2024-03-05": 0.6610013187789754, + "2024-04-06": 0.8299973189918828, + "2023-12-23": 0.49883314063403766, + "2024-02-03": 0.35887058101460423, + "2024-02-16": 0.41430682932755875, + "2023-05-28": 0.33977300293155066, + "2023-12-14": 0.41899060397565413, + "2023-06-24": 0.31542335152786627, + "2023-12-26": 0.5395883829017886, + "2023-11-09": 0.2764810451683203, + "2023-08-19": 0.20443161768641285, + "2024-05-09": 0.67427679985888, + "2024-01-17": 0.40397044108998387, + "2023-06-23": 0.2988303730430361, + "2023-06-18": 0.27187044080523987, + "2024-04-23": 0.7458713094639791, + "2023-08-08": 0.23422059872442844, + "2023-08-17": 0.21414671528418855, + "2024-04-14": 0.6765444388025232, + "2023-07-24": 0.24448594920960184, + "2023-10-14": 0.18451609490030133, + "2024-05-22T20": 0.8421989240000001, + "2024-05-25T08": 0.8158916781, + "2024-05-22T05": 0.85581168, + "2024-05-28T03": 0.8037785763438547, + "2024-05-22T16": 0.8547948, + "2024-05-25T05": 0.82277076, + "2024-05-24T22": 0.800187958, + "2024-05-27T14": 0.832000528, + "2024-05-22T03": 0.8679776864000001, + "2024-05-23T17": 0.8061111089999999, + "2024-05-24T23": 0.801255748, + "2024-05-26T19": 0.810262222, + "2024-05-26T18": 0.810378384, + "2024-05-26T10": 0.813498894, + "2024-05-27T16": 0.8475025081428328, + "2024-05-24T12": 0.811977552, + "2024-05-26T01": 0.823787613, + "2024-05-21T17": 0.905574462, + "2024-05-23T07": 0.842885526, + "2024-05-22T08": 0.864142104062909, + "2024-05-23T09": 0.8299892584678846, + "2024-05-24T18": 0.8117939000000001, + "2024-05-23T01": 0.8466779739, + "2024-05-25T15": 0.80951904, + "2024-05-23T16": 0.8036451020000001, + "2024-05-25T03": 0.816265194, + "2024-05-28T06": 0.800494944, + "2024-05-25T23": 0.821360345, + "2024-05-24T13": 0.8088230583462083, + "2024-05-26T03": 0.816210207, + "2024-05-26T00": 0.8237528982000001, + "2024-05-25T06": 0.817181175, + "2024-05-27T04": 0.8265616899999999, + "2024-05-22T10": 0.860610624, + "2024-05-27T09": 0.814394762, + "2024-05-24T17": 0.79816463, + "2024-05-26T16": 0.81065938, + "2024-05-22T09": 0.8602579140000001, + "2024-05-24T21": 0.8028277389999999, + "2024-05-25T04": 0.8248829210505269, + "2024-05-27T22": 0.827455134, + "2024-05-27T11": 0.8195915380000001, + "2024-05-23T21": 0.8133894999999999, + "2024-05-23T10": 0.8301593425, + "2024-05-23T14": 0.8045755647, + "2024-05-27T02": 0.822214607, + "2024-05-25T18": 0.811699738884235, + "2024-05-27T05": 0.815808224, + "2024-05-22T23": 0.841721055, + "2024-05-28T01": 0.80795312, + "2024-05-22T04": 0.857968286, + "2024-05-22T15": 0.858550948, + "2024-05-24T03": 0.8164651119999999, + "2024-05-24T08": 0.8081955553, + "2024-05-21T22": 0.8754460470000001, + "2024-05-21T16": 0.9051106349999999, + "2024-05-21T23": 0.8773157249999999, + "2024-05-24T02": 0.819288552, + "2024-05-26T07": 0.8103145111600746, + "2024-05-27T07": 0.809222277, + "2024-05-25T22": 0.81685294, + "2024-05-24T16": 0.791767318, + "2024-05-27T20": 0.828753808, + "2024-05-22T02": 0.8680438709980729, + "2024-05-24T06": 0.810443248, + "2024-05-24T11": 0.80031952, + "2024-05-25T21": 0.8144400262191768, + "2024-05-27T15": 0.84027674, + "2024-05-21T19": 0.877410359, + "2024-05-22T19": 0.841323285, + "2024-05-21T12": 0.889295415, + "2024-05-23T20": 0.7820373072155653, + "2024-05-23T08": 0.8405122199999999, + "2024-05-22T22": 0.8445220560000001, + "2024-05-26T11": 0.81283406, + "2024-05-24T01": 0.8210714400000001, + "2024-05-23T05": 0.840578518, + "2024-05-28T04": 0.792620964, + "2024-05-25T09": 0.820504512, + "2024-05-27T18": 0.8393114384000001, + "2024-05-24T10": 0.800791388, + "2024-05-25T19": 0.8159459625000001, + "2024-05-24T07": 0.811672668, + "2024-05-26T04": 0.8132014262085452, + "2024-05-26T09": 0.804288156, + "2024-05-23T02": 0.843261276, + "2024-05-27T06": 0.8103908255999999, + "2024-05-28T08": 0.8096901089820975, + "2024-05-24T15": 0.8067964000000001, + "2024-05-25T20": 0.8106091828700425, + "2024-05-27T08": 0.8140445809933686, + "2024-05-23T22": 0.816193646, + "2024-05-26T15": 0.8149752041484125, + "2024-05-24T20": 0.80531946, + "2024-05-21T20": 0.8792097649999999, + "2024-05-25T13": 0.811363394133646, + "2024-05-22T01": 0.872595276, + "2024-05-25T17": 0.81432081, + "2024-05-27T10": 0.815702118, + "2024-05-21T21": 0.8756473151999999, + "2024-05-24T19": 0.8056501709999999, + "2024-05-26T02": 0.818309976, + "2024-05-27T19": 0.8324583670000001, + "2024-05-25T11": 0.829775515, + "2024-05-27T17": 0.842031813, + "2024-05-21T18": 0.898368576, + "2024-05-26T06": 0.810024498, + "2024-05-23T00": 0.8524479629999999, + "2024-05-22T00": 0.8738129781988593, + "2024-05-24T05": 0.8131525199999999, + "2024-05-23T15": 0.8044204, + "2024-05-22T13": 0.845706962, + "2024-05-21T10": 0.9000505033390908, + "2024-05-22T12": 0.8430638672839853, + "2024-05-23T04": 0.848173806, + "2024-05-26T08": 0.807960514, + "2024-05-26T13": 0.8049445998127258, + "2024-05-28T05": 0.7932608187954797, + "2024-05-22T18": 0.840599116, + "2024-05-22T06": 0.869108754, + "2024-05-21T08": 0.9108758157710541, + "2024-05-22T17": 0.8482453086771884, + "2024-05-23T19": 0.7973789765680835, + "2024-05-25T07": 0.8138924581, + "2024-05-26T22": 0.8170566920000001, + "2024-05-25T16": 0.810086572, + "2024-05-26T05": 0.81195634, + "2024-05-24T04": 0.823438616, + "2024-05-21T14": 0.89517615, + "2024-05-25T12": 0.81894267, + "2024-05-28T07": 0.80334072, + "2024-05-23T18": 0.7985826035, + "2024-05-26T23": 0.819806304, + "2024-05-24T09": 0.80683676, + "2024-05-23T03": 0.8488173587883606, + "2024-05-26T14": 0.8095841389999999, + "2024-05-21T13": 0.8980203600000001, + "2024-05-22T14": 0.8497705, + "2024-05-25T14": 0.808243419, + "2024-05-25T00": 0.8011266202939626, + "2024-05-23T23": 0.819439288, + "2024-05-21T11": 0.8981314205368265, + "2024-05-23T13": 0.81431489, + "2024-05-22T11": 0.8549660784, + "2024-05-21T15": 0.8992841199999999, + "2024-05-28T00": 0.81804504, + "2024-05-27T23": 0.8226084280000001, + "2024-05-28T02": 0.7988084440000001, + "2024-05-26T21": 0.80549705, + "2024-05-26T12": 0.8056224413671373, + "2024-05-23T06": 0.8386798301618864, + "2024-05-22T07": 0.8690435440000001, + "2024-05-27T12": 0.81962586, + "2024-05-22T21": 0.8413200309200168, + "2024-05-24T00": 0.81943109, + "2024-05-25T02": 0.81132147, + "2024-05-27T00": 0.8218888500000001, + "2024-05-26T20": 0.8068775043, + "2024-05-26T17": 0.8067641120000001, + "2024-05-27T13": 0.824680124, + "2024-05-23T12": 0.850782912, + "2024-05-25T10": 0.824277385, + "2024-05-21T09": 0.90321932, + "2024-05-23T11": 0.8454770500000001, + "2024-05-24T14": 0.804849175203885, + "2024-05-25T01": 0.804968974, + "2024-05-27T21": 0.8280328413, + "2024-05-27T03": 0.82551266, + "2024-05-27T01": 0.8255952599999999, + "latest": 0.819279, + "2024-05-28T09": 0.8113335284990218, + "2024-05-28T10": 0.82061967, + "2024-05-28T11": 0.8229015671527078, + "2024-05-28T12": 0.829261599, + "2024-05-28T13": 0.8207784, + "2024-05-28T14": 0.8075996839999999, + "2024-05-28T15": 0.8085392579999999, + "2024-05-29": 0.8151381478652576, + "2024-05-28T20": 0.822892774, + "2024-05-28T22": 0.8282373199999999, + "2024-05-28T21": 0.8270052021, + "2024-05-28T19": 0.8171936140000001, + "2024-05-29T02": 0.8263605917252026, + "2024-05-28T17": 0.8185806, + "2024-05-28T18": 0.808887625, + "2024-05-28T23": 0.8248074240000001, + "2024-05-29T00": 0.8303290542, + "2024-05-29T01": 0.8250005399999999, + "2024-05-28T16": 0.820897152, + "2024-05-29T06": 0.836186988, + "2024-05-29T05": 0.83800998, + "2024-05-29T03": 0.8291406225755484, + "2024-05-29T07": 0.8188746592, + "2024-05-29T04": 0.8379017089999999, + "2024-05-29T08": 0.8120871, + "2024-05-29T09": 0.817447256, + "2024-05-29T10": 0.8190047939999999, + "2024-05-29T11": 0.8148924569999999, + "2024-05-29T12": 0.8139169394083897, + "2024-05-29T13": 0.8124657820000001, + "2024-05-29T14": 0.812698158, + "2024-05-29T15": 0.809581536, + "2024-05-29T18": 0.8136181760000001, + "2024-05-29T17": 0.80967064, + "2024-05-29T23": 0.804034, + "2024-05-29T19": 0.8173981640000001, + "2024-05-29T22": 0.808801233, + "2024-05-29T20": 0.810062172, + "2024-05-29T16": 0.8066430320000001, + "2024-05-29T21": 0.8064863826504858, + "2024-05-30": 0.7927293700453154, + "2024-05-30T00": 0.805200312, + "2024-05-30T05": 0.805264154857195, + "2024-05-30T02": 0.8102384238, + "2024-05-30T01": 0.8048238572737602, + "2024-05-30T06": 0.7928651999999999, + "2024-05-30T07": 0.7875114400000001, + "2024-05-30T03": 0.80792932, + "2024-05-30T04": 0.8114332439999999, + "2024-05-30T08": 0.7760341, + "2024-05-30T09": 0.78872648, + "2024-05-30T10": 0.789397202, + "2024-05-30T11": 0.792757346, + "2024-05-30T12": 0.790946736, + "2024-05-30T13": 0.79842066, + "2024-05-30T14": 0.800031816, + "2024-05-30T15": 0.79188312, + "2024-05-30T21": 0.77994398, + "2024-05-30T20": 0.781051572, + "2024-05-30T18": 0.7981324316, + "2024-05-30T22": 0.78332574, + "2024-05-30T16": 0.795313584, + "2024-05-30T17": 0.804894024, + "2024-05-30T19": 0.792557314, + "2024-05-31": 0.7855150358589617, + "2024-05-30T23": 0.7835368722599229, + "2024-05-31T03": 0.771429536, + "2024-05-31T07": 0.77456756, + "2024-05-31T06": 0.771518475, + "2024-05-31T04": 0.77264442, + "2024-05-31T02": 0.7740471250975455, + "2024-05-31T05": 0.76868471, + "2024-05-31T00": 0.7774165393696949, + "2024-05-31T01": 0.773414336, + "2024-05-31T08": 0.7785507840000001, + "2024-05-31T09": 0.781334256, + "2024-05-31T10": 0.7860480879999999, + "2024-05-31T11": 0.790217673, + "2024-05-31T12": 0.799112244, + "2024-05-31T13": 0.7946070380000001, + "2024-05-31T14": 0.7920782579, + "2024-06-01": 0.7930403027348253, + "2024-06-01T08": 0.7830495289999999, + "2024-06-01T02": 0.7891436922777457, + "2024-06-01T05": 0.78738536, + "2024-05-31T21": 0.795168563, + "2024-06-01T00": 0.796486754, + "2024-05-31T18": 0.78764842, + "2024-05-31T15": 0.791842225, + "2024-05-31T23": 0.7926586054000001, + "2024-05-31T22": 0.792787245, + "2024-06-01T01": 0.7896716253, + "2024-06-01T07": 0.7850626857954792, + "2024-06-01T04": 0.78739324, + "2024-05-31T19": 0.7873011434166657, + "2024-06-01T06": 0.784080087, + "2024-05-31T20": 0.7920046212224164, + "2024-05-31T17": 0.790559128, + "2024-05-31T16": 0.78036739, + "2024-06-01T03": 0.788738504, + "2024-06-01T09": 0.78373330815711, + "2024-06-01T10": 0.7799130719999999, + "2024-06-02": 0.7881447051828177, + "2024-06-01T13": 0.7816958399999999, + "2024-06-01T15": 0.787503817, + "2024-06-01T18": 0.7838173515043982, + "2024-06-01T12": 0.778222357, + "2024-06-01T21": 0.7876983240000001, + "2024-06-01T20": 0.7849008160000001, + "2024-06-02T01": 0.7923656, + "2024-06-01T17": 0.7825787294396083, + "2024-06-01T11": 0.77881404, + "2024-06-02T00": 0.78946792, + "2024-06-01T23": 0.787237499559037, + "2024-06-01T14": 0.783744786, + "2024-06-01T22": 0.7907815238682637, + "2024-06-01T19": 0.783002507, + "2024-06-01T16": 0.7853047218000001, + "2024-06-02T13": 0.787632496, + "2024-06-02T11": 0.7875745230642989, + "2024-06-02T07": 0.7914484071, + "2024-06-02T05": 0.7957310240000001, + "2024-06-02T08": 0.794827312, + "2024-06-02T04": 0.7984527290000001, + "2024-06-02T10": 0.785118582, + "2024-06-02T12": 0.791737467, + "2024-06-02T02": 0.7897360640000001, + "2024-06-02T16": 0.78336496, + "2024-06-02T17": 0.7766796838129181, + "2024-06-02T03": 0.79472391, + "2024-06-02T09": 0.7843991148, + "2024-06-02T15": 0.789544134, + "2024-06-02T06": 0.794863791, + "2024-06-02T18": 0.770229873, + "2024-06-02T14": 0.791721621, + "2024-06-03": 0.7660997604435232, + "2024-06-03T01": 0.775672184, + "2024-06-02T20": 0.769753284, + "2024-06-03T00": 0.7645792499999999, + "2024-06-02T21": 0.7705938307804, + "2024-06-02T23": 0.7711862091058491, + "2024-06-02T19": 0.771144756, + "2024-06-02T22": 0.767985064, + "2024-06-03T02": 0.78238143, + "2024-06-03T05": 0.81371148, + "2024-06-03T06": 0.8155776960000001, + "2024-06-03T04": 0.802734144, + "2024-06-03T03": 0.792332248, + "2024-06-03T07": 0.817568235 + }, + "USD filecoin": { + "2023-07-30": 4.407456617617209, + "2023-10-23": 3.5091227319894283, + "2023-07-27": 4.385154340382252, + "2023-07-10": 4.239448239906673, + "2023-08-20": 3.5632777733879584, + "2024-02-23": 8.166574996698849, + "2024-04-05": 8.387496452938768, + "2023-12-19": 5.267125310075234, + "2024-05-17": 5.869566782599175, + "2023-08-06": 4.132311249533277, + "2023-12-02": 4.550698525721083, + "2023-10-31": 3.8286931269328353, + "2023-08-29": 3.398698794166502, + "2023-06-20": 3.6924464291479837, + "2023-09-09": 3.2360489705546645, + "2023-06-26": 4.036219413482072, + "2023-10-01": 3.3692697852799913, + "2024-03-07": 9.855666292136297, + "2023-10-12": 3.180913003806898, + "2024-04-22": 6.561944484534681, + "2023-07-05": 4.61591323464707, + "2023-07-29": 4.414899648444392, + "2024-04-26": 5.979362257086517, + "2024-01-08": 5.513365382570197, + "2023-05-29": 4.6487311078800015, + "2023-10-07": 3.3601969517332444, + "2023-09-26": 3.191968522439222, + "2023-08-24": 3.383810169663636, + "2023-12-05": 4.719208329596916, + "2024-02-19": 6.700040311198335, + "2024-01-07": 5.941018821174644, + "2024-04-28": 6.004448024664494, + "2023-07-31": 4.3065885783348055, + "2023-10-18": 3.1897919215075725, + "2024-05-19": 5.71042930832628, + "2024-05-12": 5.632660088995421, + "2024-04-29": 5.8485894006021155, + "2023-08-25": 3.2405592487108126, + "2024-03-09": 11.344805459355817, + "2023-07-12": 4.293981738817454, + "2023-09-05": 3.211683258154113, + "2023-06-07": 4.282151273053094, + "2023-09-16": 3.3703472986916667, + "2024-04-25": 5.9879626278128, + "2023-08-12": 4.1148181232884085, + "2023-06-06": 4.240802809094785, + "2023-09-01": 3.198786213978093, + "2023-09-08": 3.2240521992101567, + "2024-03-22": 8.847459775193622, + "2023-08-10": 4.128915206503506, + "2023-12-07": 4.960199831681956, + "2023-11-18": 4.632228587024733, + "2023-07-13": 4.418179362740118, + "2023-09-13": 3.145911686994409, + "2023-06-17": 3.72688837540838, + "2023-07-17": 4.345258982412773, + "2023-07-07": 4.4017282011825305, + "2023-09-07": 3.2330938251252683, + "2024-03-26": 9.448504718277645, + "2024-05-14": 5.482913638530247, + "2024-02-22": 7.553336280733872, + "2024-04-15": 6.099676336029519, + "2023-12-30": 5.881880274693658, + "2023-09-17": 3.321152296077049, + "2024-04-17": 5.921058085273646, + "2024-02-12": 5.330763172877648, + "2023-10-26": 3.7737546038837904, + "2024-01-03": 6.614133481082256, + "2024-05-07": 5.9919397040851585, + "2023-06-01": 4.679024001279259, + "2024-01-22": 5.2183389092765085, + "2023-06-12": 3.431282462935213, + "2023-10-03": 3.320502097480971, + "2024-05-26": 5.912977397323131, + "2024-04-30": 5.620722549827572, + "2023-06-19": 3.6648746483128605, + "2023-07-09": 4.358478476736959, + "2023-12-24": 5.637023881096435, + "2023-09-24": 3.2462291479835645, + "2024-01-16": 5.89625263515202, + "2023-10-17": 3.2263178341347563, + "2024-04-24": 6.356692126034022, + "2024-03-18": 9.096720590352925, + "2024-02-17": 6.138693387946336, + "2023-12-27": 5.751254943383096, + "2023-07-23": 4.596996132251188, + "2023-09-03": 3.1726031384122995, + "2024-02-24": 7.914514515868896, + "2024-01-06": 5.9700961570022, + "2024-03-20": 8.180239519683223, + "2023-11-21": 4.549853795184377, + "2023-12-25": 5.732710972876579, + "2023-09-22": 3.221030520428207, + "2023-10-02": 3.4240346958523955, + "2024-03-27": 9.291892193286902, + "2024-05-06": 6.170384122978984, + "2023-08-30": 3.4277768126761163, + "2023-10-06": 3.282418615602508, + "2023-10-13": 3.2095723586970464, + "2023-06-28": 3.918183688439679, + "2024-02-05": 4.969512605450537, + "2024-03-01": 8.198890009715472, + "2023-07-15": 4.427962801292247, + "2023-06-25": 4.058320155028339, + "2023-12-10": 5.096251782860018, + "2023-11-23": 4.487859589649529, + "2023-08-04": 4.111687003519948, + "2024-05-13": 5.605068030592182, + "2024-01-13": 5.996120021424803, + "2024-03-28": 9.147291794886737, + "2023-08-05": 4.058655363190677, + "2024-02-09": 5.340118422792297, + "2023-10-09": 3.2766255815315484, + "2024-01-09": 5.5370009288188475, + "2024-05-10": 5.86704977525973, + "2023-05-27": 4.449009419628323, + "2023-08-18": 3.4901918886144245, + "2023-11-05": 4.064896197466199, + "2024-04-18": 5.9121436746581075, + "2023-10-22": 3.3795087870058182, + "2023-11-01": 3.7899729628275045, + "2024-05-20": 5.6236895053934886, + "2023-12-08": 5.09310371155701, + "2024-04-12": 7.766174799738335, + "2023-07-06": 4.535017805882169, + "2024-03-12": 10.725390928577855, + "2023-09-11": 3.04898423679981, + "2024-03-03": 9.757859151507414, + "2024-02-04": 5.007684360786954, + "2024-01-28": 5.273979613097323, + "2023-07-01": 4.008056205557655, + "2023-11-07": 4.259014341935131, + "2023-11-25": 4.7024173356845855, + "2023-06-04": 4.799263103804751, + "2024-02-25": 8.260932113449925, + "2023-12-01": 4.462287429560067, + "2023-07-14": 4.600168041681828, + "2024-01-26": 5.130207816761715, + "2023-08-03": 4.220165845103453, + "2024-02-28": 7.869741718503156, + "2023-09-15": 3.2982503096463196, + "2023-07-18": 4.288953629214653, + "2023-12-21": 5.3883504168643785, + "2023-07-20": 4.3597052440867445, + "2024-03-06": 9.41508090876717, + "2023-09-30": 3.3293931788268916, + "2023-12-12": 4.678361107945654, + "2024-02-13": 5.469589794072591, + "2023-09-20": 3.369454174306108, + "2023-09-19": 3.356779783082826, + "2023-09-29": 3.3252128620215293, + "2023-09-12": 3.1134262064368023, + "2023-06-13": 3.6500424335601567, + "2023-10-04": 3.288372075661257, + "2023-07-08": 4.366796846015876, + "2024-04-16": 5.954292914510057, + "2024-03-02": 8.756281595602243, + "2023-06-27": 4.025258084463067, + "2023-10-08": 3.414010529629201, + "2023-11-20": 4.799444666179376, + "2023-12-20": 5.237258345163385, + "2023-12-31": 6.62351111437192, + "2023-11-06": 4.2934259463416815, + "2023-08-22": 3.391392786126445, + "2023-06-09": 4.070435200271882, + "2024-03-17": 8.945082847446834, + "2023-09-18": 3.362573341634837, + "2024-04-01": 9.614164783718165, + "2024-05-21": 6.171473276721408, + "2024-01-19": 5.4498929548358, + "2023-11-11": 4.619553979451266, + "2023-09-23": 3.228807471682154, + "2023-11-19": 4.770481345543077, + "2023-07-02": 4.053806693909817, + "2023-08-15": 4.022041437439386, + "2024-01-25": 4.944259138986899, + "2024-03-13": 10.745354429136734, + "2024-01-21": 5.49488231026008, + "2024-02-01": 4.923567895948912, + "2023-06-15": 3.568399068874668, + "2024-03-16": 9.398148800686462, + "2023-11-27": 4.51207008360387, + "2024-01-10": 5.545055815640829, + "2024-03-15": 9.503279270456874, + "2023-06-21": 3.8472080827636845, + "2024-01-02": 7.555942869258564, + "2023-07-11": 4.296795127504751, + "2023-10-25": 3.784651394358533, + "2024-01-01": 7.327128064132933, + "2024-02-14": 5.566659566064666, + "2023-09-04": 3.18711349421223, + "2023-09-06": 3.238843532279186, + "2024-04-03": 8.646239829601956, + "2023-11-28": 4.492330606871924, + "2023-12-03": 4.586679915786624, + "2023-08-02": 4.256656108955401, + "2023-08-27": 3.254637901215352, + "2023-10-20": 3.2278930061892006, + "2023-10-10": 3.209918819290008, + "2024-05-03": 5.998803785881919, + "2024-03-08": 10.242850441875705, + "2024-04-11": 8.213641720941217, + "2023-06-22": 3.9751426250772153, + "2024-01-14": 6.065540445498425, + "2023-12-15": 4.798524232155262, + "2023-10-19": 3.165834931637717, + "2024-02-08": 5.2025454413460555, + "2023-11-08": 4.302625796100057, + "2023-11-12": 4.818735133359376, + "2023-12-22": 5.5380793084530735, + "2023-05-31": 4.690174920932415, + "2024-03-23": 8.765778833833942, + "2023-09-27": 3.1977124273236917, + "2024-03-04": 10.110607883146605, + "2023-09-10": 3.1292599587530088, + "2024-04-13": 6.450812418792252, + "2024-02-29": 8.18800950080096, + "2023-07-21": 4.480313383127546, + "2023-06-30": 3.9384558598011457, + "2023-12-29": 6.041270194521886, + "2023-12-04": 4.680062821489012, + "2024-04-10": 8.47611144210584, + "2024-05-08": 5.739113875349733, + "2023-09-21": 3.258126106647481, + "2023-06-02": 4.951765415201968, + "2024-04-21": 6.571819832109192, + "2023-07-22": 4.510475949370154, + "2023-10-11": 3.158832005536984, + "2024-03-21": 9.018269720962584, + "2023-07-19": 4.308972811794061, + "2024-05-05": 6.028769392018073, + "2024-05-23": 5.99491621903576, + "2024-04-08": 9.136581831592766, + "2024-05-18": 5.8860096748248685, + "2023-06-14": 3.6492690452696115, + "2023-10-05": 3.2953938173427675, + "2023-10-16": 3.2529021841432058, + "2024-05-22": 6.147971699486659, + "2024-02-10": 5.367923274513993, + "2024-04-07": 8.743613261563008, + "2024-02-20": 7.557256301292679, + "2023-11-17": 4.750476684776344, + "2023-12-11": 4.707193886190315, + "2023-11-26": 4.6586337200878765, + "2023-11-16": 5.122853832303178, + "2023-06-29": 3.827063541714345, + "2023-10-27": 3.6561734235110763, + "2023-06-11": 3.412750005933748, + "2024-02-02": 5.024405025105375, + "2023-09-14": 3.207641462331404, + "2024-01-27": 5.2496461843598725, + "2024-03-30": 9.676126251074523, + "2023-11-22": 4.373298784983305, + "2023-09-28": 3.2531176896123517, + "2023-06-03": 4.912905936810233, + "2024-01-18": 5.7814727834511235, + "2023-08-26": 3.2532453226781324, + "2024-02-15": 5.764673123058675, + "2023-10-28": 3.665254538534961, + "2024-03-24": 8.71335409735173, + "2024-04-27": 5.815762512177268, + "2023-12-06": 4.760320712706415, + "2024-01-30": 5.281186451029655, + "2023-11-14": 4.979128351055983, + "2023-08-09": 4.148027334144428, + "2024-05-15": 5.594607204739546, + "2023-11-10": 4.512940181505224, + "2024-01-23": 4.8163401234964764, + "2024-01-31": 5.055216292486436, + "2024-05-11": 5.6317159097755125, + "2024-01-11": 6.208326741012117, + "2024-02-18": 6.202668805108486, + "2023-06-16": 3.6445837834099417, + "2023-10-30": 3.834625584261389, + "2023-12-17": 5.617536619419505, + "2024-02-26": 8.030786932446388, + "2023-07-16": 4.408510498079756, + "2024-01-05": 6.113134945413913, + "2023-08-23": 3.4055674973489047, + "2024-03-11": 11.037077341332562, + "2023-08-01": 4.217717762349543, + "2024-03-14": 10.455486512332449, + "2024-02-21": 7.2257569160262385, + "2023-08-28": 3.344454625781284, + "2023-07-04": 4.6038751907469315, + "2023-12-13": 4.552924084641966, + "2024-02-27": 8.072777416886005, + "2023-08-13": 4.117890397620004, + "2024-03-31": 9.635906974639566, + "2023-12-09": 5.339884754489895, + "2024-04-02": 8.719883370327516, + "2024-02-06": 5.007314277475722, + "2024-04-09": 8.99599815967116, + "2023-11-04": 3.949701030590186, + "2024-04-20": 6.256165317405477, + "2024-01-15": 5.929589916452742, + "2023-07-03": 4.735192857414152, + "2023-12-28": 6.016674856638838, + "2023-05-30": 4.81318958260154, + "2024-05-25": 5.873384207484076, + "2024-02-07": 5.050551943656954, + "2023-09-25": 3.2093801706301424, + "2024-03-19": 8.346716221186018, + "2024-03-10": 10.857069077902997, + "2024-05-02": 5.742664737029958, + "2023-09-02": 3.177108077600578, + "2024-01-12": 6.213086957274464, + "2024-04-19": 6.138063273242021, + "2023-11-29": 4.511731586404825, + "2023-10-15": 3.2147013899110473, + "2024-05-28": 6.1077272440078945, + "2023-11-30": 4.383874832636028, + "2024-01-24": 4.889366551378412, + "2023-08-11": 4.123895180032699, + "2024-02-11": 5.382831401358008, + "2023-06-08": 4.12521170656442, + "2023-11-15": 5.099231232543493, + "2023-12-16": 5.327283590472723, + "2024-03-29": 9.654118085418615, + "2024-04-04": 8.532206887073105, + "2023-06-10": 3.357993760868879, + "2023-07-28": 4.408111923043264, + "2024-01-20": 5.45043897617776, + "2023-10-21": 3.2721909921444916, + "2023-08-16": 3.8161972499817587, + "2024-05-24": 5.798762573266464, + "2023-11-03": 3.9519403871533787, + "2023-08-31": 3.3756949913976055, + "2024-05-27": 5.973217185845528, + "2024-01-04": 6.414609743840239, + "2023-07-26": 4.332688651153509, + "2023-11-13": 5.409876745409813, + "2023-10-24": 3.8488870767407666, + "2024-03-25": 9.171595804975343, + "2023-08-07": 4.127117460595535, + "2023-10-29": 3.7713295738069363, + "2024-01-29": 5.248310641943638, + "2024-05-04": 6.087801235685023, + "2023-06-05": 4.565180404524538, + "2023-11-02": 3.9262473730051966, + "2023-12-18": 5.141537355942759, + "2023-11-24": 4.617563400060253, + "2023-08-21": 3.4796671573225075, + "2023-07-25": 4.485777022046325, + "2024-05-16": 5.76725836995416, + "2023-08-14": 4.088914598881457, + "2024-05-01": 5.490834850673525, + "2024-03-05": 10.06582769360801, + "2024-04-06": 8.542327705140277, + "2023-12-23": 5.4154033986685715, + "2024-02-03": 5.180414582558546, + "2024-02-16": 5.876955160280077, + "2023-05-28": 4.546164344709119, + "2023-12-14": 4.763426268283912, + "2023-06-24": 4.000751858281617, + "2023-12-26": 5.644251939073707, + "2023-11-09": 4.545443745435145, + "2023-08-19": 3.5329454951444164, + "2024-05-09": 5.775204519061194, + "2024-01-17": 5.7387342885643555, + "2023-06-23": 4.000442173398171, + "2023-06-18": 3.6900462534533567, + "2024-04-23": 6.511005961079983, + "2023-08-08": 4.108744439396979, + "2023-08-17": 3.7301725206425296, + "2024-04-14": 5.905655339276234, + "2023-07-24": 4.513544037207809, + "2023-10-14": 3.218352598352635, + "2024-05-22T20": 6.1042674, + "2024-05-25T08": 5.86371226, + "2024-05-22T05": 6.136772234368579, + "2024-05-28T03": 5.9472979200000005, + "2024-05-22T16": 6.14952376, + "2024-05-25T05": 5.8506588, + "2024-05-24T22": 5.814185899999999, + "2024-05-27T14": 6.0166648799999995, + "2024-05-22T03": 6.21169527, + "2024-05-23T17": 5.765787899999999, + "2024-05-24T23": 5.802973810722938, + "2024-05-26T19": 5.88781886, + "2024-05-26T18": 5.88793668, + "2024-05-26T10": 5.916809970000001, + "2024-05-27T16": 6.193862, + "2024-05-24T12": 5.82496944, + "2024-05-26T01": 6.0153984000000005, + "2024-05-21T17": 6.21739182, + "2024-05-23T07": 6.13125765, + "2024-05-22T08": 6.2257546, + "2024-05-23T09": 6.109437853480225, + "2024-05-24T18": 5.8060955000000005, + "2024-05-23T01": 6.13586911, + "2024-05-25T15": 5.8724127, + "2024-05-23T16": 5.77001594, + "2024-05-25T03": 5.8246109299999995, + "2024-05-28T06": 5.88781416, + "2024-05-25T23": 5.98798187, + "2024-05-24T13": 5.816508, + "2024-05-26T03": 5.937346819999999, + "2024-05-26T00": 6.00721896, + "2024-05-25T06": 5.8557153799999995, + "2024-05-27T04": 5.913863989999999, + "2024-05-22T10": 6.2036349, + "2024-05-27T09": 5.91033332, + "2024-05-24T17": 5.726593820000001, + "2024-05-26T16": 5.886526620000001, + "2024-05-22T09": 6.208758, + "2024-05-24T21": 5.8254756599999995, + "2024-05-25T04": 5.8586556, + "2024-05-27T22": 6.104929444418875, + "2024-05-27T11": 5.9363171999999995, + "2024-05-23T21": 5.751725278215282, + "2024-05-23T10": 6.0658762, + "2024-05-23T14": 5.84813301, + "2024-05-27T02": 5.931498350000001, + "2024-05-25T18": 5.98750275, + "2024-05-27T05": 5.87218, + "2024-05-22T23": 6.09225725, + "2024-05-28T01": 6.0421624, + "2024-05-22T04": 6.1183476, + "2024-05-22T15": 6.12322375, + "2024-05-24T03": 5.840604369999999, + "2024-05-24T08": 5.69534787, + "2024-05-21T22": 6.2281933, + "2024-05-21T16": 6.21632583, + "2024-05-21T23": 6.2246925399999995, + "2024-05-24T02": 5.824785739999999, + "2024-05-26T07": 5.96679147, + "2024-05-27T07": 5.86453788, + "2024-05-25T22": 5.93993062, + "2024-05-24T16": 5.72159592, + "2024-05-27T20": 6.11175964, + "2024-05-22T02": 6.25687356, + "2024-05-24T06": 5.74547088, + "2024-05-24T11": 5.7355566, + "2024-05-25T21": 5.9448108, + "2024-05-27T15": 6.13372046, + "2024-05-21T19": 6.1479705000000004, + "2024-05-22T19": 6.107717109999999, + "2024-05-21T12": 6.139216995003945, + "2024-05-23T20": 5.576814249999999, + "2024-05-23T08": 6.1214474999999995, + "2024-05-22T22": 6.1175795236578026, + "2024-05-26T11": 5.92033465, + "2024-05-24T01": 5.833665600000001, + "2024-05-23T05": 6.1261994, + "2024-05-28T04": 5.85971928, + "2024-05-25T09": 5.881432810975908, + "2024-05-27T18": 6.16276931, + "2024-05-24T10": 5.7510654599999995, + "2024-05-25T19": 6.0044985, + "2024-05-24T07": 5.73139476, + "2024-05-26T04": 5.929504562741766, + "2024-05-26T09": 5.8936416000000005, + "2024-05-23T02": 6.144824166016442, + "2024-05-27T06": 5.8571872, + "2024-05-28T08": 5.899827361228141, + "2024-05-24T15": 5.7996127202690735, + "2024-05-25T20": 5.96550825, + "2024-05-27T08": 5.9054546, + "2024-05-23T22": 5.79540462, + "2024-05-26T15": 5.916448, + "2024-05-24T20": 5.803419600000001, + "2024-05-21T20": 6.2109497099999995, + "2024-05-25T13": 5.8601794599999995, + "2024-05-22T01": 6.21025468, + "2024-05-25T17": 5.93169474, + "2024-05-27T10": 5.92738209, + "2024-05-21T21": 6.199784182589922, + "2024-05-24T19": 5.77520913, + "2024-05-26T02": 5.93334726, + "2024-05-27T19": 6.0818511200000005, + "2024-05-25T11": 5.91211305, + "2024-05-27T17": 6.17862945, + "2024-05-21T18": 6.240203264, + "2024-05-26T06": 5.9279838, + "2024-05-23T00": 6.14873944, + "2024-05-22T00": 6.203219056050996, + "2024-05-24T05": 5.79681, + "2024-05-23T15": 5.79882184, + "2024-05-22T13": 6.0093388999999995, + "2024-05-21T10": 6.1482956742590344, + "2024-05-22T12": 6.03697354, + "2024-05-23T04": 6.1158829252988465, + "2024-05-26T08": 5.94350268, + "2024-05-26T13": 5.844729088, + "2024-05-28T05": 5.885464699999999, + "2024-05-22T18": 6.080270280000001, + "2024-05-22T06": 6.191637539999999, + "2024-05-21T08": 6.129164380545073, + "2024-05-22T17": 6.182010719999999, + "2024-05-23T19": 5.703747719999999, + "2024-05-25T07": 5.85271655, + "2024-05-26T22": 5.88452746, + "2024-05-25T16": 5.88817554, + "2024-05-26T05": 5.917224300000001, + "2024-05-24T04": 5.84772344, + "2024-05-21T14": 6.18545325, + "2024-05-25T12": 5.8695891, + "2024-05-28T07": 5.880174299999999, + "2024-05-23T18": 5.66897217, + "2024-05-26T23": 5.86118528, + "2024-05-24T09": 5.7354179, + "2024-05-23T03": 6.12689223, + "2024-05-26T14": 5.8777067999999995, + "2024-05-21T13": 6.180763600000001, + "2024-05-22T14": 6.055364610000001, + "2024-05-25T14": 5.8395912, + "2024-05-25T00": 5.832177813768981, + "2024-05-23T23": 5.78445372, + "2024-05-21T11": 6.159036057034124, + "2024-05-23T13": 5.8879385, + "2024-05-22T11": 6.15989102, + "2024-05-21T15": 6.185715072, + "2024-05-28T00": 6.0761352, + "2024-05-27T23": 6.099871800000001, + "2024-05-28T02": 5.97457554, + "2024-05-26T21": 5.8440765, + "2024-05-26T12": 5.8781184, + "2024-05-23T06": 6.1101481799999995, + "2024-05-22T07": 6.21588094, + "2024-05-27T12": 5.9408385, + "2024-05-22T21": 6.09674337, + "2024-05-24T00": 5.8423697500000005, + "2024-05-25T02": 5.8337163, + "2024-05-27T00": 5.859069000000001, + "2024-05-26T20": 5.86541991, + "2024-05-26T17": 5.88781886, + "2024-05-27T13": 5.9862263, + "2024-05-23T12": 6.04803501, + "2024-05-25T10": 5.90040646, + "2024-05-21T09": 6.132773200000001, + "2024-05-23T11": 6.119938500000001, + "2024-05-24T14": 5.84284863, + "2024-05-25T01": 5.8308336, + "2024-05-27T21": 6.12081173, + "2024-05-27T03": 5.94049304, + "2024-05-27T01": 5.89810851, + "latest": 5.91, + "2024-05-28T09": 5.909906520000001, + "2024-05-28T10": 5.9442285, + "2024-05-28T11": 5.935998580000001, + "2024-05-28T12": 5.91601878, + "2024-05-28T13": 5.889105, + "2024-05-28T14": 5.878274741, + "2024-05-28T15": 5.87547186, + "2024-05-29": 5.9217821872709635, + "2024-05-28T20": 5.96215136, + "2024-05-28T22": 5.940529679999999, + "2024-05-28T21": 5.93521467, + "2024-05-28T19": 5.918711020000001, + "2024-05-29T02": 5.9019867866205855, + "2024-05-28T17": 5.903091, + "2024-05-28T18": 5.855671249999999, + "2024-05-28T23": 5.936295680000001, + "2024-05-29T00": 5.92899552, + "2024-05-29T01": 5.89485858, + "2024-05-28T16": 5.875823899999999, + "2024-05-29T06": 6.01171701, + "2024-05-29T05": 6.0079023, + "2024-05-29T03": 5.92970784, + "2024-05-29T07": 5.96455132, + "2024-05-29T04": 5.9738826099999995, + "2024-05-29T08": 5.912082, + "2024-05-29T09": 5.96550668, + "2024-05-29T10": 5.99917515, + "2024-05-29T11": 5.975078809999999, + "2024-05-29T12": 5.9522207400000005, + "2024-05-29T13": 5.93136992, + "2024-05-29T14": 5.90662586, + "2024-05-29T15": 5.89222656, + "2024-05-29T18": 5.8663628800000005, + "2024-05-29T17": 5.8926918, + "2024-05-29T23": 5.787047200000001, + "2024-05-29T19": 5.84226896, + "2024-05-29T22": 5.79456089, + "2024-05-29T20": 5.8087092600000005, + "2024-05-29T16": 5.85695591, + "2024-05-29T21": 5.779169730748248, + "2024-05-30": 5.808484089007851, + "2024-05-30T00": 5.79480552, + "2024-05-30T05": 5.847205529999999, + "2024-05-30T02": 5.842921499999999, + "2024-05-30T01": 5.794691815868292, + "2024-05-30T06": 5.7673824, + "2024-05-30T07": 5.7214504999999996, + "2024-05-30T03": 5.84298, + "2024-05-30T04": 5.87100518, + "2024-05-30T08": 5.6675974, + "2024-05-30T09": 5.7225643999999996, + "2024-05-30T10": 5.75306444, + "2024-05-30T11": 5.778315770000001, + "2024-05-30T12": 5.8083496, + "2024-05-30T13": 5.8295002, + "2024-05-30T14": 5.84331084, + "2024-05-30T15": 5.8116744, + "2024-05-30T21": 5.778844, + "2024-05-30T20": 5.78690028, + "2024-05-30T18": 5.88646912, + "2024-05-30T22": 5.793998372607247, + "2024-05-30T16": 5.8458947199999995, + "2024-05-30T17": 5.89176028, + "2024-05-30T19": 5.85794538, + "2024-05-31": 5.759520580363008, + "2024-05-30T23": 5.80896615, + "2024-05-31T03": 5.78022416, + "2024-05-31T07": 5.7642702, + "2024-05-31T06": 5.772272333161903, + "2024-05-31T04": 5.799331079999999, + "2024-05-31T02": 5.78456946, + "2024-05-31T05": 5.748642090000001, + "2024-05-31T00": 5.76938412, + "2024-05-31T01": 5.7886104, + "2024-05-31T08": 5.77015296, + "2024-05-31T09": 5.74504602, + "2024-05-31T10": 5.7705356, + "2024-05-31T11": 5.790465660000001, + "2024-05-31T12": 5.83443882, + "2024-05-31T13": 5.78441144, + "2024-05-31T14": 5.7347293399999995, + "2024-06-01": 5.732238168517957, + "2024-06-01T08": 5.7652109, + "2024-06-01T02": 5.738698055, + "2024-06-01T05": 5.75950408, + "2024-05-31T21": 5.75525846, + "2024-06-01T00": 5.729150300000001, + "2024-05-31T18": 5.70682996, + "2024-05-31T15": 5.71225489, + "2024-05-31T23": 5.7368998730000005, + "2024-05-31T22": 5.755373700000001, + "2024-06-01T01": 5.716969092173028, + "2024-06-01T07": 5.758398679172888, + "2024-06-01T04": 5.7481704979999995, + "2024-05-31T19": 5.7274298, + "2024-06-01T06": 5.76444249, + "2024-05-31T20": 5.74027601, + "2024-05-31T17": 5.71037085, + "2024-05-31T16": 5.6753992, + "2024-06-01T03": 5.7454, + "2024-06-01T09": 5.76198271, + "2024-06-01T10": 5.7599268, + "2024-06-02": 5.791629331328375, + "2024-06-01T13": 5.7827908, + "2024-06-01T15": 5.78515109, + "2024-06-01T18": 5.773856690000001, + "2024-06-01T12": 5.76697836, + "2024-06-01T21": 5.793838890000001, + "2024-06-01T20": 5.773556957, + "2024-06-02T01": 5.8153440000000005, + "2024-06-01T17": 5.765383999999999, + "2024-06-01T11": 5.76192504, + "2024-06-02T00": 5.8033535999999994, + "2024-06-01T23": 5.79618517, + "2024-06-01T14": 5.790681269999999, + "2024-06-01T22": 5.80194791, + "2024-06-01T19": 5.7648646999999995, + "2024-06-01T16": 5.769744750000001, + "2024-06-02T13": 5.76984272, + "2024-06-02T11": 5.76090685, + "2024-06-02T07": 5.754335210000001, + "2024-06-02T05": 5.81411204, + "2024-06-02T08": 5.76042835076238, + "2024-06-02T04": 5.81328742, + "2024-06-02T10": 5.74774352, + "2024-06-02T12": 5.7819918690000005, + "2024-06-02T02": 5.81111456, + "2024-06-02T16": 5.81228823, + "2024-06-02T17": 5.77324495, + "2024-06-02T03": 5.81205555, + "2024-06-02T09": 5.719764240000001, + "2024-06-02T15": 5.84214699, + "2024-06-02T06": 5.8110564, + "2024-06-02T18": 5.72250714, + "2024-06-02T14": 5.810755049999999, + "2024-06-03": 5.804205326278169, + "2024-06-03T01": 5.86400976, + "2024-06-02T20": 5.76565398, + "2024-06-03T00": 5.79681, + "2024-06-02T21": 5.793946092132268, + "2024-06-02T23": 5.80286476, + "2024-06-02T19": 5.736139548587754, + "2024-06-02T22": 5.796868, + "2024-06-03T02": 5.89633821, + "2024-06-03T05": 5.89646, + "2024-06-03T06": 5.91721056, + "2024-06-03T04": 5.85560178, + "2024-06-03T03": 5.87453198, + "2024-06-03T07": 5.91715135 + }, + "USD flare": { + "2023-07-30": 0.01487967936945666, + "2023-10-23": 0.009130810632880099, + "2023-07-27": 0.01421374701071348, + "2023-07-10": 0.013500526776970475, + "2023-08-20": 0.01319868, + "2024-02-23": 0.03961, + "2024-04-05": 0.03863, + "2023-12-19": 0.017080289023654712, + "2024-05-17": 0.027694937976126415, + "2023-08-06": 0.01439134621144532, + "2023-12-02": 0.01434611675698978, + "2023-10-31": 0.01048366257299997, + "2023-08-29": 0.01372761732425765, + "2023-06-20": 0.014867771026653265, + "2023-09-09": 0.0126, + "2023-06-26": 0.01606269883411783, + "2023-10-01": 0.010970878463793857, + "2024-03-07": 0.04122, + "2023-10-12": 0.00907, + "2024-04-22": 0.03334, + "2023-07-05": 0.01419, + "2023-07-29": 0.01481, + "2024-04-26": 0.031035725829810738, + "2024-01-08": 0.01747, + "2023-05-29": 0.025496742200640656, + "2023-10-07": 0.01067587884067419, + "2023-09-26": 0.01094, + "2023-08-24": 0.01333, + "2023-12-05": 0.014430920484406591, + "2024-02-19": 0.035, + "2024-01-07": 0.01803, + "2024-04-28": 0.03095, + "2023-07-31": 0.01482, + "2023-10-18": 0.0088, + "2024-05-19": 0.027822653108019315, + "2024-05-12": 0.027889504139837394, + "2024-04-29": 0.02988, + "2023-08-25": 0.013434027237098495, + "2024-03-09": 0.04127, + "2023-07-12": 0.01325994360892395, + "2023-09-05": 0.0131, + "2023-06-07": 0.01945, + "2023-09-16": 0.01121, + "2024-04-25": 0.03057, + "2023-08-12": 0.015019976952139738, + "2023-06-06": 0.02062, + "2023-09-01": 0.013536885187695082, + "2023-09-08": 0.01283, + "2024-03-22": 0.03254009159090482, + "2023-08-10": 0.015094738950317587, + "2023-12-07": 0.014171814946413272, + "2023-11-18": 0.010904259985566581, + "2023-07-13": 0.01433, + "2023-09-13": 0.01134894402389217, + "2023-06-17": 0.0146, + "2023-07-17": 0.013921863014356311, + "2023-07-07": 0.01327, + "2023-09-07": 0.01275, + "2024-03-26": 0.037296233744539456, + "2024-05-14": 0.02624, + "2024-02-22": 0.03418, + "2024-04-15": 0.03326, + "2023-12-30": 0.0173698993160784, + "2023-09-17": 0.01114, + "2024-04-17": 0.03167, + "2024-02-12": 0.03215, + "2023-10-26": 0.009681700630719797, + "2024-01-03": 0.0176, + "2024-05-07": 0.02973, + "2023-06-01": 0.02303, + "2024-01-22": 0.02141, + "2023-06-12": 0.0165306749159806, + "2023-10-03": 0.010760010707846896, + "2024-05-26": 0.0273801396, + "2024-04-30": 0.02792032115396025, + "2023-06-19": 0.01561519411078607, + "2023-07-09": 0.01342, + "2023-12-24": 0.01703, + "2023-09-24": 0.01102, + "2024-01-16": 0.021315488930064897, + "2023-10-17": 0.00902, + "2024-04-24": 0.03141, + "2024-03-18": 0.03358561038219227, + "2024-02-17": 0.03285, + "2023-12-27": 0.016893962202103298, + "2023-07-23": 0.01437, + "2023-09-03": 0.01319, + "2024-02-24": 0.04035, + "2024-01-06": 0.018, + "2024-03-20": 0.031657077531724545, + "2023-11-21": 0.010753725577960688, + "2023-12-25": 0.01705, + "2023-09-22": 0.01106, + "2023-10-02": 0.011002762073412529, + "2024-03-27": 0.03465374557640169, + "2024-05-06": 0.03046179770167664, + "2023-08-30": 0.013718961246511684, + "2023-10-06": 0.010752114498802177, + "2023-10-13": 0.009346722178990753, + "2023-06-28": 0.01511, + "2024-02-05": 0.03124, + "2024-03-01": 0.04647, + "2023-07-15": 0.014034437346371892, + "2023-06-25": 0.016385207895101575, + "2023-12-10": 0.01900162218349865, + "2023-11-23": 0.011142128083585992, + "2023-08-04": 0.014446551728247822, + "2024-05-13": 0.02735, + "2024-01-13": 0.017446245698625976, + "2024-03-28": 0.03496, + "2023-08-05": 0.014342244598286806, + "2024-02-09": 0.02966, + "2023-10-09": 0.009922122096934268, + "2024-01-09": 0.017528742070212856, + "2024-05-10": 0.02932622673272068, + "2023-05-27": 0.02552, + "2023-08-18": 0.012834869852563373, + "2023-11-05": 0.01088, + "2024-04-18": 0.03217, + "2023-10-22": 0.009134077923434908, + "2023-11-01": 0.010382099660113291, + "2024-05-20": 0.027521376000000004, + "2023-12-08": 0.014762632601794536, + "2024-04-12": 0.03371, + "2023-07-06": 0.01388, + "2024-03-12": 0.03952375256637031, + "2023-09-11": 0.011994484595808347, + "2024-03-03": 0.04494, + "2024-02-04": 0.03152, + "2024-01-28": 0.0222, + "2023-07-01": 0.014668255347737292, + "2023-11-07": 0.011473656455650459, + "2023-11-25": 0.01162692454246486, + "2023-06-04": 0.02303, + "2024-02-25": 0.04367, + "2023-12-01": 0.013842925846146457, + "2023-07-14": 0.014736, + "2024-01-26": 0.0213, + "2023-08-03": 0.014466356332914944, + "2024-02-28": 0.04905, + "2023-09-15": 0.01114, + "2023-07-18": 0.01353, + "2023-12-21": 0.016920445731454258, + "2023-07-20": 0.01405, + "2024-03-06": 0.03988, + "2023-09-30": 0.010950252647099904, + "2023-12-12": 0.01671, + "2024-02-13": 0.03174, + "2023-09-20": 0.01157, + "2023-09-19": 0.01178, + "2023-09-29": 0.01094, + "2023-09-12": 0.01176, + "2023-06-13": 0.01594, + "2023-10-04": 0.01096, + "2023-07-08": 0.01324, + "2024-04-16": 0.03175206040981677, + "2024-03-02": 0.04596, + "2023-06-27": 0.015730992931388462, + "2023-10-08": 0.010466133227817798, + "2023-11-20": 0.011056292583795882, + "2023-12-20": 0.01696, + "2023-12-31": 0.017764784353336584, + "2023-11-06": 0.011235880096512803, + "2023-08-22": 0.01302, + "2023-06-09": 0.018481371105062216, + "2024-03-17": 0.03348202098353706, + "2023-09-18": 0.01112, + "2024-04-01": 0.03873187621771413, + "2024-05-21": 0.02848422648777642, + "2024-01-19": 0.02268, + "2023-11-11": 0.011966265947207752, + "2023-09-23": 0.01104, + "2023-11-19": 0.0108355233, + "2023-07-02": 0.014619985372293533, + "2023-08-15": 0.01475, + "2024-01-25": 0.02115, + "2024-03-13": 0.03955, + "2024-01-21": 0.02235, + "2024-02-01": 0.02261, + "2023-06-15": 0.01437, + "2024-03-16": 0.03467151816103137, + "2023-11-27": 0.01195201935288288, + "2024-01-10": 0.01723, + "2024-03-15": 0.03621750515784925, + "2023-06-21": 0.01582942081306438, + "2024-01-02": 0.01878692854142666, + "2023-07-11": 0.013490419812374246, + "2023-10-25": 0.009401067551101495, + "2024-01-01": 0.01824, + "2024-02-14": 0.03274, + "2023-09-04": 0.013095211490022943, + "2023-09-06": 0.012930676373642076, + "2024-04-03": 0.04315, + "2023-11-28": 0.011902214302210501, + "2023-12-03": 0.014245213950155372, + "2023-08-02": 0.014701604732278158, + "2023-08-27": 0.013663478939840545, + "2023-10-20": 0.00856, + "2023-10-10": 0.00965, + "2024-05-03": 0.03065636216257202, + "2024-03-08": 0.04104, + "2024-04-11": 0.03811, + "2023-06-22": 0.015511466907409241, + "2024-01-14": 0.017546368862283786, + "2023-12-15": 0.016780663783291315, + "2023-10-19": 0.00841, + "2024-02-08": 0.02985, + "2023-11-08": 0.01244348250489664, + "2023-11-12": 0.011954634021145667, + "2023-12-22": 0.01684468543213776, + "2023-05-31": 0.023594203753575783, + "2024-03-23": 0.033482969270882186, + "2023-09-27": 0.010962324233885861, + "2024-03-04": 0.04284, + "2023-09-10": 0.01236, + "2024-04-13": 0.03132, + "2024-02-29": 0.04775, + "2023-07-21": 0.014369275850069982, + "2023-06-30": 0.0147, + "2023-12-29": 0.017058963357181007, + "2023-12-04": 0.014093446488851248, + "2024-04-10": 0.03907, + "2024-05-08": 0.02857, + "2023-09-21": 0.01115, + "2023-06-02": 0.0231, + "2024-04-21": 0.03385, + "2023-07-22": 0.01495, + "2023-10-11": 0.00919, + "2024-03-21": 0.03351066679216631, + "2023-07-19": 0.01359, + "2024-05-05": 0.030704414983907007, + "2024-05-23": 0.02744, + "2024-04-08": 0.04122, + "2024-05-18": 0.02826791294375928, + "2023-06-14": 0.0155, + "2023-10-05": 0.01080134286220805, + "2023-10-16": 0.00920183156039867, + "2024-05-22": 0.0288, + "2024-02-10": 0.02979, + "2024-04-07": 0.04187, + "2024-02-20": 0.033931299859867016, + "2023-11-17": 0.0109917862879384, + "2023-12-11": 0.01705, + "2023-11-26": 0.011935275833646867, + "2023-11-16": 0.011053201455363235, + "2023-06-29": 0.014667, + "2023-10-27": 0.01095, + "2023-06-11": 0.01606108064169043, + "2024-02-02": 0.02489, + "2023-09-14": 0.01121, + "2024-01-27": 0.0213, + "2024-03-30": 0.03689, + "2023-11-22": 0.010821916906830398, + "2023-09-28": 0.01085, + "2023-06-03": 0.02324, + "2024-01-18": 0.02285, + "2023-08-26": 0.013492744233140752, + "2024-02-15": 0.03284, + "2023-10-28": 0.010641596000000001, + "2024-03-24": 0.03423363333433788, + "2024-04-27": 0.03034, + "2023-12-06": 0.014261016469342244, + "2024-01-30": 0.02329, + "2023-11-14": 0.010992195201711788, + "2023-08-09": 0.015041873918658154, + "2024-05-15": 0.02732, + "2023-11-10": 0.012202609066685027, + "2024-01-23": 0.02129, + "2024-01-31": 0.02353, + "2024-05-11": 0.02832, + "2024-01-11": 0.0177, + "2024-02-18": 0.03387, + "2023-06-16": 0.01427, + "2023-10-30": 0.010753109442201907, + "2023-12-17": 0.01732, + "2024-02-26": 0.05048, + "2023-07-16": 0.01395, + "2024-01-05": 0.01783, + "2023-08-23": 0.0134, + "2024-03-11": 0.04094, + "2023-08-01": 0.014753646762455998, + "2024-03-14": 0.03952260743180897, + "2024-02-21": 0.0329, + "2023-08-28": 0.013732292493142602, + "2023-07-04": 0.01482, + "2023-12-13": 0.01667, + "2024-02-27": 0.050523744807411355, + "2023-08-13": 0.01512, + "2024-03-31": 0.04111, + "2023-12-09": 0.019409125210246733, + "2024-04-02": 0.03955, + "2024-02-06": 0.0289, + "2024-04-09": 0.04014, + "2023-11-04": 0.010725359999999998, + "2024-04-20": 0.03332132212055237, + "2024-01-15": 0.021639064176005966, + "2023-07-03": 0.01489994630661062, + "2023-12-28": 0.01703724350597009, + "2023-05-30": 0.02457, + "2024-05-25": 0.02780438163135385, + "2024-02-07": 0.02887, + "2023-09-25": 0.010937422424477084, + "2024-03-19": 0.03101366660343111, + "2024-03-10": 0.04211, + "2024-05-02": 0.029869629347409814, + "2023-09-02": 0.01339, + "2024-01-12": 0.01751371500818786, + "2024-04-19": 0.03198, + "2023-11-29": 0.011985681141875633, + "2023-10-15": 0.009200029066482332, + "2024-05-28": 0.02738, + "2023-11-30": 0.011931973180516283, + "2024-01-24": 0.02141, + "2023-08-11": 0.015352110779403648, + "2024-02-11": 0.03214, + "2023-06-08": 0.018431843, + "2023-11-15": 0.011073050890851845, + "2023-12-16": 0.01833, + "2024-03-29": 0.03431, + "2024-04-04": 0.03966, + "2023-06-10": 0.0162, + "2023-07-28": 0.014975945726802138, + "2024-01-20": 0.02252, + "2023-10-21": 0.00864, + "2023-08-16": 0.01392355363114026, + "2024-05-24": 0.02727, + "2023-11-03": 0.010342554272624463, + "2023-08-31": 0.01355, + "2024-05-27": 0.02785, + "2024-01-04": 0.01811, + "2023-07-26": 0.01404, + "2023-11-13": 0.011474348321141685, + "2023-10-24": 0.00945, + "2024-03-25": 0.036991777886089094, + "2023-08-07": 0.01459711400936626, + "2023-10-29": 0.010662030600697819, + "2024-01-29": 0.02225, + "2024-05-04": 0.031135919577877647, + "2023-06-05": 0.02231, + "2023-11-02": 0.010604509482115273, + "2023-12-18": 0.01686, + "2023-11-24": 0.011383822569255436, + "2023-08-21": 0.01329, + "2023-07-25": 0.01397, + "2024-05-16": 0.02822, + "2023-08-14": 0.01486, + "2024-05-01": 0.02897708513787273, + "2024-03-05": 0.0406, + "2024-04-06": 0.04332, + "2023-12-23": 0.01706961634078412, + "2024-02-03": 0.02677, + "2024-02-16": 0.03195, + "2023-05-28": 0.025707164807601338, + "2023-12-14": 0.01721, + "2023-06-24": 0.016727883998432107, + "2023-12-26": 0.016888404380049325, + "2023-11-09": 0.012654245112640692, + "2023-08-19": 0.013336309320555554, + "2024-05-09": 0.02935, + "2024-01-17": 0.02126, + "2023-06-23": 0.017083861209999385, + "2023-06-18": 0.01444, + "2024-04-23": 0.03245, + "2023-08-08": 0.014701150407517277, + "2023-08-17": 0.013505531554396825, + "2024-04-14": 0.03295, + "2023-07-24": 0.01391, + "2023-10-14": 0.00923, + "2024-05-22T20": 0.02807, + "2024-05-25T08": 0.028089041, + "2024-05-22T05": 0.02879, + "2024-05-28T03": 0.027481561518647307, + "2024-05-22T16": 0.02896, + "2024-05-25T05": 0.028658532000000004, + "2024-05-24T22": 0.027283167139884955, + "2024-05-27T14": 0.02778, + "2024-05-22T03": 0.02846, + "2024-05-23T17": 0.02732, + "2024-05-24T23": 0.02774, + "2024-05-26T19": 0.0272053012, + "2024-05-26T18": 0.027135882, + "2024-05-26T10": 0.0274998213, + "2024-05-27T16": 0.02786, + "2024-05-24T12": 0.02726, + "2024-05-26T01": 0.027877212, + "2024-05-21T17": 0.028533441, + "2024-05-23T07": 0.02836, + "2024-05-22T08": 0.029040227420396976, + "2024-05-23T09": 0.028162625298756447, + "2024-05-24T18": 0.027163053609401824, + "2024-05-23T01": 0.02846427126165281, + "2024-05-25T15": 0.027737226, + "2024-05-23T16": 0.0274, + "2024-05-25T03": 0.0281084708, + "2024-05-28T06": 0.027324889544301213, + "2024-05-25T23": 0.0276053063, + "2024-05-24T13": 0.027663083966922762, + "2024-05-26T03": 0.0278869321, + "2024-05-26T00": 0.0277463925, + "2024-05-25T06": 0.0284489006, + "2024-05-27T04": 0.027532214090067522, + "2024-05-22T10": 0.02915, + "2024-05-27T09": 0.027232543020318814, + "2024-05-24T17": 0.02708, + "2024-05-26T16": 0.027138597, + "2024-05-22T09": 0.02901, + "2024-05-24T21": 0.02726, + "2024-05-25T04": 0.028578564, + "2024-05-27T22": 0.027843941688654367, + "2024-05-27T11": 0.02811, + "2024-05-23T21": 0.0273, + "2024-05-23T10": 0.0281, + "2024-05-23T14": 0.027623464200324598, + "2024-05-27T02": 0.02771, + "2024-05-25T18": 0.0273831525, + "2024-05-27T05": 0.02742, + "2024-05-22T23": 0.02821, + "2024-05-28T01": 0.027512569310974396, + "2024-05-22T04": 0.028453216117054432, + "2024-05-22T15": 0.02896, + "2024-05-24T03": 0.02754, + "2024-05-24T08": 0.02695181973411706, + "2024-05-21T22": 0.028201819099999997, + "2024-05-21T16": 0.028541312690560212, + "2024-05-21T23": 0.028464021299999996, + "2024-05-24T02": 0.02744, + "2024-05-26T07": 0.027773565073182096, + "2024-05-27T07": 0.02719, + "2024-05-25T22": 0.027395068, + "2024-05-24T16": 0.02718, + "2024-05-27T20": 0.028, + "2024-05-22T02": 0.02861, + "2024-05-24T06": 0.027102407044287246, + "2024-05-24T11": 0.02734, + "2024-05-25T21": 0.027434512, + "2024-05-27T15": 0.02774, + "2024-05-21T19": 0.0282606709, + "2024-05-22T19": 0.028280991178781967, + "2024-05-21T12": 0.0288733576, + "2024-05-23T20": 0.02671, + "2024-05-23T08": 0.028204661507942298, + "2024-05-22T22": 0.028261577198896173, + "2024-05-26T11": 0.027467634, + "2024-05-24T01": 0.02747457672005828, + "2024-05-23T05": 0.02848, + "2024-05-28T04": 0.02717, + "2024-05-25T09": 0.0280299056, + "2024-05-27T18": 0.02799, + "2024-05-24T10": 0.02708, + "2024-05-25T19": 0.027453135, + "2024-05-24T07": 0.0269, + "2024-05-26T04": 0.0278327616, + "2024-05-26T09": 0.027558972, + "2024-05-23T02": 0.02842, + "2024-05-27T06": 0.02717, + "2024-05-28T08": 0.02733, + "2024-05-24T15": 0.02744, + "2024-05-25T20": 0.0274631325, + "2024-05-27T08": 0.02725, + "2024-05-23T22": 0.02739, + "2024-05-26T15": 0.027373566, + "2024-05-24T20": 0.02726, + "2024-05-21T20": 0.028390628, + "2024-05-25T13": 0.0276761248, + "2024-05-22T01": 0.02869424466622509, + "2024-05-25T17": 0.0275639346, + "2024-05-27T10": 0.0279, + "2024-05-21T21": 0.028143807, + "2024-05-24T19": 0.027177780508430047, + "2024-05-26T02": 0.027946925499999997, + "2024-05-27T19": 0.02829, + "2024-05-25T11": 0.027895815, + "2024-05-27T17": 0.02784, + "2024-05-21T18": 0.0284763248, + "2024-05-26T06": 0.0278205378, + "2024-05-23T00": 0.02865, + "2024-05-22T00": 0.02883, + "2024-05-24T05": 0.027404833396874804, + "2024-05-23T15": 0.02764, + "2024-05-22T13": 0.02837, + "2024-05-21T10": 0.02891198551212541, + "2024-05-22T12": 0.02873796285776658, + "2024-05-23T04": 0.0285, + "2024-05-26T08": 0.027638387, + "2024-05-26T13": 0.027262200288116035, + "2024-05-28T05": 0.0272, + "2024-05-22T18": 0.02819, + "2024-05-22T06": 0.029205825874345847, + "2024-05-21T08": 0.028426124525105456, + "2024-05-22T17": 0.02898, + "2024-05-23T19": 0.02714, + "2024-05-25T07": 0.028179005899999998, + "2024-05-26T22": 0.027209707377887256, + "2024-05-25T16": 0.027766112199999998, + "2024-05-26T05": 0.02779166, + "2024-05-24T04": 0.0277, + "2024-05-21T14": 0.028772805000000002, + "2024-05-25T12": 0.0278480505, + "2024-05-28T07": 0.02734, + "2024-05-23T18": 0.02711, + "2024-05-26T23": 0.027250730347543387, + "2024-05-24T09": 0.0269706604134373, + "2024-05-23T03": 0.0285, + "2024-05-26T14": 0.0272393725, + "2024-05-21T13": 0.028904218000000002, + "2024-05-22T14": 0.02876, + "2024-05-25T14": 0.0276680631, + "2024-05-25T00": 0.027883585300000003, + "2024-05-23T23": 0.02753, + "2024-05-21T11": 0.0289521808, + "2024-05-23T13": 0.02733, + "2024-05-22T11": 0.029230749083915424, + "2024-05-21T15": 0.028506732258537795, + "2024-05-28T00": 0.0277, + "2024-05-27T23": 0.02783, + "2024-05-28T02": 0.02751, + "2024-05-26T21": 0.027126430000000003, + "2024-05-26T12": 0.0274212224, + "2024-05-23T06": 0.02833, + "2024-05-22T07": 0.0289, + "2024-05-27T12": 0.02803, + "2024-05-22T21": 0.028103890189023296, + "2024-05-24T00": 0.0275, + "2024-05-25T02": 0.028043829, + "2024-05-27T00": 0.02731, + "2024-05-26T20": 0.0272533653, + "2024-05-26T17": 0.0270453876, + "2024-05-27T13": 0.02775, + "2024-05-23T12": 0.02815155223428082, + "2024-05-25T10": 0.028062421100000002, + "2024-05-21T09": 0.02852717780849357, + "2024-05-23T11": 0.02812, + "2024-05-24T14": 0.02750829869258438, + "2024-05-25T01": 0.027894420000000003, + "2024-05-27T21": 0.027992122129103618, + "2024-05-27T03": 0.02768, + "2024-05-27T01": 0.02754, + "latest": 0.02813493, + "2024-05-28T09": 0.02733, + "2024-05-28T10": 0.02748, + "2024-05-28T11": 0.027434973403307077, + "2024-05-28T12": 0.02732, + "2024-05-28T13": 0.02722, + "2024-05-28T14": 0.02727, + "2024-05-28T15": 0.02739, + "2024-05-29": 0.02798, + "2024-05-28T20": 0.02775, + "2024-05-28T22": 0.0276, + "2024-05-28T21": 0.0277, + "2024-05-28T19": 0.02775, + "2024-05-29T02": 0.02739, + "2024-05-28T17": 0.0274, + "2024-05-28T18": 0.02736023976392972, + "2024-05-28T23": 0.02756, + "2024-05-29T00": 0.02757, + "2024-05-29T01": 0.02745, + "2024-05-28T16": 0.027270733158901644, + "2024-05-29T06": 0.02797, + "2024-05-29T05": 0.027703651530832853, + "2024-05-29T03": 0.02733, + "2024-05-29T07": 0.02792, + "2024-05-29T04": 0.02743, + "2024-05-29T08": 0.02821505158225801, + "2024-05-29T09": 0.029, + "2024-05-29T10": 0.02891, + "2024-05-29T11": 0.02867, + "2024-05-29T12": 0.02807, + "2024-05-29T13": 0.02792, + "2024-05-29T14": 0.02774, + "2024-05-29T15": 0.02757, + "2024-05-29T18": 0.027664201922483297, + "2024-05-29T17": 0.02761, + "2024-05-29T23": 0.02757, + "2024-05-29T19": 0.02757, + "2024-05-29T22": 0.0275, + "2024-05-29T20": 0.02747, + "2024-05-29T16": 0.0275, + "2024-05-29T21": 0.02747, + "2024-05-30": 0.02777, + "2024-05-30T00": 0.02775, + "2024-05-30T05": 0.028270067952008752, + "2024-05-30T02": 0.028140121655523168, + "2024-05-30T01": 0.02792, + "2024-05-30T06": 0.02805, + "2024-05-30T07": 0.02745, + "2024-05-30T03": 0.0281, + "2024-05-30T04": 0.02837, + "2024-05-30T08": 0.02722, + "2024-05-30T09": 0.02725, + "2024-05-30T10": 0.027321528808704025, + "2024-05-30T11": 0.02731, + "2024-05-30T12": 0.02733, + "2024-05-30T13": 0.02743, + "2024-05-30T14": 0.02761, + "2024-05-30T15": 0.027734179334606545, + "2024-05-30T21": 0.02767, + "2024-05-30T20": 0.02774, + "2024-05-30T18": 0.02804225117478441, + "2024-05-30T22": 0.027631800701187793, + "2024-05-30T16": 0.02815, + "2024-05-30T17": 0.02797, + "2024-05-30T19": 0.02792073887700858, + "2024-05-31": 0.027385990324531376, + "2024-05-30T23": 0.02766, + "2024-05-31T03": 0.027436824, + "2024-05-31T07": 0.027522538243788423, + "2024-05-31T06": 0.027531738, + "2024-05-31T04": 0.0274673592, + "2024-05-31T02": 0.027468458400000003, + "2024-05-31T05": 0.0273387865, + "2024-05-31T00": 0.0274123224, + "2024-05-31T01": 0.027433414399999998, + "2024-05-31T08": 0.0274912, + "2024-05-31T09": 0.0275006466, + "2024-05-31T10": 0.027713362, + "2024-05-31T11": 0.0276631152, + "2024-05-31T12": 0.0279129627, + "2024-05-31T13": 0.027682826, + "2024-05-31T14": 0.0273044276, + "2024-06-01": 0.0271, + "2024-06-01T08": 0.02705163417728756, + "2024-06-01T02": 0.02715, + "2024-06-01T05": 0.027211397875741027, + "2024-05-31T21": 0.027258070699999998, + "2024-06-01T00": 0.02722, + "2024-05-31T18": 0.027350429600000004, + "2024-05-31T15": 0.0271174738, + "2024-05-31T23": 0.02722014028775566, + "2024-05-31T22": 0.027248628, + "2024-06-01T01": 0.02714, + "2024-06-01T07": 0.0272115090373624, + "2024-06-01T04": 0.0272, + "2024-05-31T19": 0.0272939244, + "2024-06-01T06": 0.02726, + "2024-05-31T20": 0.0273180005, + "2024-05-31T17": 0.0271380004, + "2024-05-31T16": 0.027078049, + "2024-06-01T03": 0.027222458094952648, + "2024-06-01T09": 0.02704, + "2024-06-01T10": 0.027064144996121753, + "2024-06-02": 0.02817121050288066, + "2024-06-01T13": 0.02735, + "2024-06-01T15": 0.02712, + "2024-06-01T18": 0.02704, + "2024-06-01T12": 0.02705, + "2024-06-01T21": 0.026970455464646152, + "2024-06-01T20": 0.02703, + "2024-06-02T01": 0.02694, + "2024-06-01T17": 0.02707, + "2024-06-01T11": 0.027103844967811524, + "2024-06-02T00": 0.027, + "2024-06-01T23": 0.0271, + "2024-06-01T14": 0.02719, + "2024-06-01T22": 0.02699, + "2024-06-01T19": 0.02704, + "2024-06-01T16": 0.0271, + "2024-06-02T13": 0.02713, + "2024-06-02T11": 0.02733, + "2024-06-02T07": 0.027271739441003348, + "2024-06-02T05": 0.02722, + "2024-06-02T08": 0.02724, + "2024-06-02T04": 0.02722, + "2024-06-02T10": 0.027252780910693972, + "2024-06-02T12": 0.02727, + "2024-06-02T02": 0.02697, + "2024-06-02T16": 0.02719, + "2024-06-02T17": 0.02718, + "2024-06-02T03": 0.02701, + "2024-06-02T09": 0.02716, + "2024-06-02T15": 0.02718, + "2024-06-02T06": 0.02723, + "2024-06-02T18": 0.02709, + "2024-06-02T14": 0.02713, + "2024-06-03": 0.02818, + "2024-06-03T01": 0.02865, + "2024-06-02T20": 0.02822, + "2024-06-03T00": 0.0289, + "2024-06-02T21": 0.0287, + "2024-06-02T23": 0.02929, + "2024-06-02T19": 0.02726, + "2024-06-02T22": 0.02903436826087893, + "2024-06-03T02": 0.02945, + "2024-06-03T05": 0.02856, + "2024-06-03T06": 0.02832, + "2024-06-03T04": 0.029197878381839754, + "2024-06-03T03": 0.02959, + "2024-06-03T07": 0.02823 + }, + "USD flow": { + "2023-07-30": 0.5904409347883546, + "2023-10-23": 0.4568069064712314, + "2023-07-27": 0.5922436382214759, + "2023-07-10": 0.6073759294592603, + "2023-08-20": 0.4637582290088033, + "2024-02-23": 0.9540425621385399, + "2024-04-05": 1.2291004748125194, + "2023-12-19": 0.7776724522999364, + "2024-05-17": 0.8717357602780597, + "2023-08-06": 0.5557553045637866, + "2023-12-02": 0.6755675166148302, + "2023-10-31": 0.5455385300464568, + "2023-08-29": 0.45534219056157194, + "2023-06-20": 0.46365205752171057, + "2023-09-09": 0.4337813456885066, + "2023-06-26": 0.5578856987640914, + "2023-10-01": 0.4572771954975059, + "2024-03-07": 1.2142344682220065, + "2023-10-12": 0.4200878930509778, + "2024-04-22": 0.9289487593863351, + "2023-07-05": 0.6418957474633606, + "2023-07-29": 0.5840822521236001, + "2024-04-26": 0.926589763294769, + "2024-01-08": 0.7613770621631633, + "2023-05-29": 0.7688894640698835, + "2023-10-07": 0.4404150775581911, + "2023-09-26": 0.4450884683321032, + "2023-08-24": 0.46584064140453474, + "2023-12-05": 0.7255275075718811, + "2024-02-19": 0.9597003340962493, + "2024-01-07": 0.819966037741057, + "2024-04-28": 0.9055617120208967, + "2023-07-31": 0.5861667912919997, + "2023-10-18": 0.4438683513045151, + "2024-05-19": 0.9066004407770258, + "2024-05-12": 0.8444847779554526, + "2024-04-29": 0.899144207974015, + "2023-08-25": 0.45492685162165863, + "2024-03-09": 1.33636053677631, + "2023-07-12": 0.6032287096001528, + "2023-09-05": 0.4371612513485374, + "2023-06-07": 0.6766112003651772, + "2023-09-16": 0.43234930914972913, + "2024-04-25": 0.935573944847106, + "2023-08-12": 0.5562916513667019, + "2023-06-06": 0.6698453119649513, + "2023-09-01": 0.4367516213898648, + "2023-09-08": 0.4389243607525896, + "2024-03-22": 1.304710260016125, + "2023-08-10": 0.555377660770179, + "2023-12-07": 0.7563784624034346, + "2023-11-18": 0.6598875296867344, + "2023-07-13": 0.586574451948493, + "2023-09-13": 0.40865354139619503, + "2023-06-17": 0.46842552336683346, + "2023-07-17": 0.607840182465359, + "2023-07-07": 0.6248214695268864, + "2023-09-07": 0.4368780944817334, + "2024-03-26": 1.3739505597994237, + "2024-05-14": 0.8472547393663291, + "2024-02-22": 0.885521661174118, + "2024-04-15": 0.9262632587673951, + "2023-12-30": 0.9061498673985592, + "2023-09-17": 0.46897591070588523, + "2024-04-17": 0.8784805164073923, + "2024-02-12": 0.8197523298993186, + "2023-10-26": 0.5166556621520851, + "2024-01-03": 0.9164210144950216, + "2024-05-07": 0.8907607887419804, + "2023-06-01": 0.7267339716683975, + "2024-01-22": 0.7872045755139249, + "2023-06-12": 0.5069763106217282, + "2023-10-03": 0.4513242557152011, + "2024-05-26": 0.9563653778678658, + "2024-04-30": 0.8942160018165337, + "2023-06-19": 0.4609304582242714, + "2023-07-09": 0.6017323993448258, + "2023-12-24": 0.9098934572583095, + "2023-09-24": 0.4505095594897769, + "2024-01-16": 0.8233556203182905, + "2023-10-17": 0.4527992178486638, + "2024-04-24": 0.9522521457622383, + "2024-03-18": 1.3525251894186823, + "2024-02-17": 0.9553330941318087, + "2023-12-27": 0.9542161399148225, + "2023-07-23": 0.6197576026993866, + "2023-09-03": 0.4279637690786351, + "2024-02-24": 1.0082131458484171, + "2024-01-06": 0.810445884924904, + "2024-03-20": 1.2034847843901486, + "2023-11-21": 0.6758276232424361, + "2023-12-25": 0.9332214787720571, + "2023-09-22": 0.442552514221493, + "2023-10-02": 0.46949166450018864, + "2024-03-27": 1.4470185712342456, + "2024-05-06": 0.913709562885862, + "2023-08-30": 0.4762004546155634, + "2023-10-06": 0.4312413981260007, + "2023-10-13": 0.41506871746494695, + "2023-06-28": 0.545379185849719, + "2024-02-05": 0.710376700520161, + "2024-03-01": 1.0591595168607122, + "2023-07-15": 0.6158880731646235, + "2023-06-25": 0.5405458012192, + "2023-12-10": 0.854200361030693, + "2023-11-23": 0.6388632095829375, + "2023-08-04": 0.5649536828826655, + "2024-05-13": 0.8360026795577604, + "2024-01-13": 0.826318240615582, + "2024-03-28": 1.389914873727848, + "2023-08-05": 0.5566431777213333, + "2024-02-09": 0.7969823934812721, + "2023-10-09": 0.4414572664095603, + "2024-01-09": 0.822026937987752, + "2024-05-10": 0.9150504062930666, + "2023-05-27": 0.7488200374006554, + "2023-08-18": 0.4448948741263435, + "2023-11-05": 0.5369408011145195, + "2024-04-18": 0.8521105904181148, + "2023-10-22": 0.4582078753896996, + "2023-11-01": 0.5235762256165767, + "2024-05-20": 0.8696034839824757, + "2023-12-08": 0.7876450533681847, + "2024-04-12": 1.1905454033920952, + "2023-07-06": 0.6147896775810668, + "2024-03-12": 1.5244563353477856, + "2023-09-11": 0.4174854716095081, + "2024-03-03": 1.2144674395647046, + "2024-02-04": 0.7440256952388801, + "2024-01-28": 0.7657581370032707, + "2023-07-01": 0.5427734090923644, + "2023-11-07": 0.5992504622568663, + "2023-11-25": 0.6449211354904799, + "2023-06-04": 0.7278040282378565, + "2024-02-25": 1.0013135823773933, + "2023-12-01": 0.6551228550085613, + "2023-07-14": 0.6414615917044351, + "2024-01-26": 0.7240502135805765, + "2023-08-03": 0.5746671273145303, + "2024-02-28": 1.0749954182618453, + "2023-09-15": 0.4243704088254323, + "2023-07-18": 0.622997110111241, + "2023-12-21": 0.8410111452464146, + "2023-07-20": 0.6431076855294342, + "2024-03-06": 1.1221025257229658, + "2023-09-30": 0.4566779039002694, + "2023-12-12": 0.7707577982397321, + "2024-02-13": 0.8505348527550498, + "2023-09-20": 0.45129890271676937, + "2023-09-19": 0.44640896940086483, + "2023-09-29": 0.4478406526272832, + "2023-09-12": 0.3981272144343367, + "2023-06-13": 0.4985952733163205, + "2023-10-04": 0.44243805849371154, + "2023-07-08": 0.6115723514102492, + "2024-04-16": 0.8794117532316069, + "2024-03-02": 1.130828042927532, + "2023-06-27": 0.5408869945925878, + "2023-10-08": 0.4475185952486312, + "2023-11-20": 0.6938551474219649, + "2023-12-20": 0.7715334720515816, + "2023-12-31": 0.8874208987263749, + "2023-11-06": 0.5767880666945252, + "2023-08-22": 0.4594682438887359, + "2023-06-09": 0.6291506515262467, + "2024-03-17": 1.285351642122224, + "2023-09-18": 0.4351609989183244, + "2024-04-01": 1.3454624263097466, + "2024-05-21": 0.9548454523468528, + "2024-01-19": 0.778221637225424, + "2023-11-11": 0.6324072245202986, + "2023-09-23": 0.4440468346342037, + "2023-11-19": 0.6795254054163932, + "2023-07-02": 0.705979072262621, + "2023-08-15": 0.5521456356947491, + "2024-01-25": 0.7514832741039259, + "2024-03-13": 1.6357046869077239, + "2024-01-21": 0.7846087470392419, + "2024-02-01": 0.7150256284033988, + "2023-06-15": 0.4585477638671646, + "2024-03-16": 1.4066225667647436, + "2023-11-27": 0.687935036544464, + "2024-01-10": 0.7648074003281368, + "2024-03-15": 1.5385460033583778, + "2023-06-21": 0.4746667447830521, + "2024-01-02": 0.9531792882615491, + "2023-07-11": 0.6022498073968028, + "2023-10-25": 0.5240686361626857, + "2024-01-01": 0.9119673465516887, + "2024-02-14": 0.8581964921672826, + "2023-09-04": 0.42948791091181554, + "2023-09-06": 0.43781308390635615, + "2024-04-03": 1.1697968643956973, + "2023-11-28": 0.6609378044142434, + "2023-12-03": 0.6916063521873173, + "2023-08-02": 0.5916446702058369, + "2023-08-27": 0.4496632334284276, + "2023-10-20": 0.4224555802088674, + "2023-10-10": 0.42015856482521285, + "2024-05-03": 0.8748359347312888, + "2024-03-08": 1.340671487016579, + "2024-04-11": 1.2171095899198547, + "2023-06-22": 0.5610481231486363, + "2024-01-14": 0.8461778158034661, + "2023-12-15": 0.8144615905308661, + "2023-10-19": 0.432853436565737, + "2024-02-08": 0.7441882989970965, + "2023-11-08": 0.6037548772803655, + "2023-11-12": 0.6528061466306438, + "2023-12-22": 0.9164199434764856, + "2023-05-31": 0.7502425236410585, + "2024-03-23": 1.2461841629222479, + "2023-09-27": 0.4429057969654312, + "2024-03-04": 1.2126382901401642, + "2023-09-10": 0.43222157581354087, + "2024-04-13": 1.0171896246844891, + "2024-02-29": 1.0588808605806674, + "2023-07-21": 0.6315052863895946, + "2023-06-30": 0.5174617499952291, + "2023-12-29": 0.9201254901563044, + "2023-12-04": 0.6833503591299354, + "2024-04-10": 1.2425699175913953, + "2024-05-08": 0.8764500155811686, + "2023-09-21": 0.4485066840475651, + "2023-06-02": 0.7222443184531574, + "2024-04-21": 0.9406617119929727, + "2023-07-22": 0.6319185620520509, + "2023-10-11": 0.4266963706757754, + "2024-03-21": 1.3217583237045982, + "2023-07-19": 0.6367315623568778, + "2024-05-05": 0.908022565696968, + "2024-05-23": 0.9396042153625708, + "2024-04-08": 1.2442820487848285, + "2024-05-18": 0.8995113485726356, + "2023-06-14": 0.4915974718276982, + "2023-10-05": 0.4374082687077876, + "2023-10-16": 0.44528380823578706, + "2024-05-22": 0.9631958435078068, + "2024-02-10": 0.813542107363567, + "2024-04-07": 1.2514620781012875, + "2024-02-20": 0.9590959090561512, + "2023-11-17": 0.6658105152066051, + "2023-12-11": 0.839057112822538, + "2023-11-26": 0.68133744272781, + "2023-11-16": 0.7011454026964281, + "2023-06-29": 0.5089657577745077, + "2023-10-27": 0.5062317700726227, + "2023-06-11": 0.5138585337043732, + "2024-02-02": 0.7275007042814211, + "2023-09-14": 0.4185694911748069, + "2024-01-27": 0.7553631388028734, + "2024-03-30": 1.3527780780043583, + "2023-11-22": 0.6027033214749945, + "2023-09-28": 0.4425725996698247, + "2023-06-03": 0.7316305957506576, + "2024-01-18": 0.8217531150599442, + "2023-08-26": 0.45014649862599276, + "2024-02-15": 0.9268299025677067, + "2023-10-28": 0.525319039004695, + "2024-03-24": 1.2700685227453623, + "2024-04-27": 0.9041729177527931, + "2023-12-06": 0.8061103380474567, + "2024-01-30": 0.7654911231453473, + "2023-11-14": 0.656219213350468, + "2023-08-09": 0.5618452610909489, + "2024-05-15": 0.8170938519581115, + "2023-11-10": 0.6095340612403402, + "2024-01-23": 0.7355240288854189, + "2024-01-31": 0.7402681175461614, + "2024-05-11": 0.8611163740210116, + "2024-01-11": 0.819333848684333, + "2024-02-18": 0.9324953309527636, + "2023-06-16": 0.4633337198670397, + "2023-10-30": 0.5457703498903338, + "2023-12-17": 0.7931592395902283, + "2024-02-26": 1.025530054105459, + "2023-07-16": 0.6085566076879569, + "2024-01-05": 0.8535651145100389, + "2023-08-23": 0.456109852149915, + "2024-03-11": 1.4308672492739463, + "2023-08-01": 0.5807033021019463, + "2024-03-14": 1.5892419228207002, + "2024-02-21": 0.9286587795909155, + "2023-08-28": 0.4541504558012353, + "2023-07-04": 0.692017390043116, + "2023-12-13": 0.7766771604881818, + "2024-02-27": 1.051852927259708, + "2023-08-13": 0.5579634591780886, + "2024-03-31": 1.299905730633298, + "2023-12-09": 0.8147443772354713, + "2024-04-02": 1.2488713832258236, + "2024-02-06": 0.7189978466257367, + "2024-04-09": 1.314446062765287, + "2023-11-04": 0.5201667345386111, + "2024-04-20": 0.8816152529051582, + "2024-01-15": 0.8115302740690065, + "2023-07-03": 0.7239424865847173, + "2023-12-28": 0.9764421187673298, + "2023-05-30": 0.7556694743079965, + "2024-05-25": 0.9399391338636347, + "2024-02-07": 0.7322348601948525, + "2023-09-25": 0.44057331928223703, + "2024-03-19": 1.2933807896177258, + "2024-03-10": 1.3803005643371293, + "2024-05-02": 0.8516756135686965, + "2023-09-02": 0.4290382330083338, + "2024-01-12": 0.8786173050983291, + "2024-04-19": 0.8734044943059283, + "2023-11-29": 0.6665249203737412, + "2023-10-15": 0.43037069242740333, + "2024-05-28": 0.9355004040297901, + "2023-11-30": 0.6522509272355643, + "2024-01-24": 0.7317617692171768, + "2023-08-11": 0.5568722753609181, + "2024-02-11": 0.8317379947191557, + "2023-06-08": 0.63304631518542, + "2023-11-15": 0.6735558233557201, + "2023-12-16": 0.7493874286939717, + "2024-03-29": 1.3920132564166654, + "2024-04-04": 1.1828057938714835, + "2023-06-10": 0.6092179175001158, + "2023-07-28": 0.5807522188315165, + "2024-01-20": 0.7748345453364932, + "2023-10-21": 0.4437241432636634, + "2023-08-16": 0.5224965892333743, + "2024-05-24": 0.9240807248884974, + "2023-11-03": 0.5141917418418527, + "2023-08-31": 0.4614101679269683, + "2024-05-27": 0.9197844349819743, + "2024-01-04": 0.8264148085569455, + "2023-07-26": 0.5830614485553589, + "2023-11-13": 0.7012599180197372, + "2023-10-24": 0.4857128238277335, + "2024-03-25": 1.3075776624817972, + "2023-08-07": 0.5520619236903939, + "2023-10-29": 0.533503458659052, + "2024-01-29": 0.741071130324994, + "2024-05-04": 0.9107733757643679, + "2023-06-05": 0.7326127098033847, + "2023-11-02": 0.538436353251323, + "2023-12-18": 0.7783873425575243, + "2023-11-24": 0.6305378010932263, + "2023-08-21": 0.4665490467978827, + "2023-07-25": 0.5889503898453267, + "2024-05-16": 0.8683183296018828, + "2023-08-14": 0.5578265512317786, + "2024-05-01": 0.8411791884766148, + "2024-03-05": 1.2300397258093858, + "2024-04-06": 1.2403523078343865, + "2023-12-23": 0.9287200869688372, + "2024-02-03": 0.7416285492269525, + "2024-02-16": 0.9578584053962541, + "2023-05-28": 0.7527594658862157, + "2023-12-14": 0.7872240189909836, + "2023-06-24": 0.5448961555537735, + "2023-12-26": 0.9969891261903896, + "2023-11-09": 0.6306726622335672, + "2023-08-19": 0.45546056099527543, + "2024-05-09": 0.8730662772533175, + "2024-01-17": 0.8483044839773604, + "2023-06-23": 0.5242756019848761, + "2023-06-18": 0.4701779668616571, + "2024-04-23": 0.958193371769368, + "2023-08-08": 0.5450935668773743, + "2023-08-17": 0.4876429986805222, + "2024-04-14": 0.8773470556143108, + "2023-07-24": 0.6176259867772389, + "2023-10-14": 0.4172818926586413, + "2024-05-22T20": 0.9418869599999999, + "2024-05-25T08": 0.94263223, + "2024-05-22T05": 0.95179056, + "2024-05-28T03": 0.9402566099999999, + "2024-05-22T16": 0.95077176, + "2024-05-25T05": 0.9536184, + "2024-05-24T22": 0.9385685819999999, + "2024-05-27T14": 0.948516576, + "2024-05-22T03": 0.9554346150476022, + "2024-05-23T17": 0.9123335100000001, + "2024-05-24T23": 0.9398308, + "2024-05-26T19": 0.9220444275955832, + "2024-05-26T18": 0.9195216, + "2024-05-26T10": 0.9286562700000001, + "2024-05-27T16": 0.9660426699999999, + "2024-05-24T12": 0.933614268, + "2024-05-26T01": 0.94780521, + "2024-05-21T17": 0.9684379799999999, + "2024-05-23T07": 0.94442355, + "2024-05-22T08": 0.95820832, + "2024-05-23T09": 0.935891054, + "2024-05-24T18": 0.9381307000000001, + "2024-05-23T01": 0.941819427, + "2024-05-25T15": 0.94240575, + "2024-05-23T16": 0.9143686500000001, + "2024-05-25T03": 0.9536088599999999, + "2024-05-28T06": 0.9311798400000001, + "2024-05-25T23": 0.948738687, + "2024-05-24T13": 0.9314408, + "2024-05-26T03": 0.9378968199999999, + "2024-05-26T00": 0.95487585, + "2024-05-25T06": 0.9466306699999999, + "2024-05-27T04": 0.93050657, + "2024-05-22T10": 0.9578892179999999, + "2024-05-27T09": 0.927124826, + "2024-05-24T17": 0.92860982, + "2024-05-26T16": 0.92561108, + "2024-05-22T09": 0.95540888, + "2024-05-24T21": 0.9376519595808016, + "2024-05-25T04": 0.9580166400000001, + "2024-05-27T22": 0.96101876, + "2024-05-27T11": 0.936518998, + "2024-05-23T21": 0.9125151, + "2024-05-23T10": 0.9336731, + "2024-05-23T14": 0.9195492000000001, + "2024-05-27T02": 0.926153247, + "2024-05-25T18": 0.9376909949296928, + "2024-05-27T05": 0.9225627289570751, + "2024-05-22T23": 0.94017673, + "2024-05-28T01": 0.9472415999999999, + "2024-05-22T04": 0.944344958, + "2024-05-22T15": 0.9527236299999999, + "2024-05-24T03": 0.93461665, + "2024-05-24T08": 0.9111682655629089, + "2024-05-21T22": 0.9614211069999999, + "2024-05-21T16": 0.961986168, + "2024-05-21T23": 0.9620269989305179, + "2024-05-24T02": 0.9296466, + "2024-05-26T07": 0.9366533100000001, + "2024-05-27T07": 0.91745838, + "2024-05-25T22": 0.94582972, + "2024-05-24T16": 0.92361192, + "2024-05-27T20": 0.962617128, + "2024-05-22T02": 0.95682774, + "2024-05-24T06": 0.917995904, + "2024-05-24T11": 0.92134686, + "2024-05-25T21": 0.9430439560254126, + "2024-05-27T15": 0.95317956, + "2024-05-21T19": 0.9546848499999999, + "2024-05-22T19": 0.9382029359999999, + "2024-05-21T12": 0.9542898348642812, + "2024-05-23T20": 0.8837366999999999, + "2024-05-23T08": 0.9404542199999999, + "2024-05-22T22": 0.94052364, + "2024-05-26T11": 0.93258015, + "2024-05-24T01": 0.9295582041860263, + "2024-05-23T05": 0.94341472, + "2024-05-28T04": 0.927922122, + "2024-05-25T09": 0.9426605199999999, + "2024-05-27T18": 0.962626764, + "2024-05-24T10": 0.9215297800000001, + "2024-05-25T19": 0.9404648250000001, + "2024-05-24T07": 0.9107449200000001, + "2024-05-26T04": 0.93575664, + "2024-05-26T09": 0.9256296, + "2024-05-23T02": 0.9470329602559564, + "2024-05-27T06": 0.92055792, + "2024-05-28T08": 0.9321827143142855, + "2024-05-24T15": 0.9355320000000001, + "2024-05-25T20": 0.9407647499999999, + "2024-05-27T08": 0.9224462, + "2024-05-23T22": 0.91992929, + "2024-05-26T15": 0.9313816561041495, + "2024-05-24T20": 0.9389061, + "2024-05-21T20": 0.96068287, + "2024-05-25T13": 0.941068232, + "2024-05-22T01": 0.9588849199999999, + "2024-05-25T17": 0.93879342, + "2024-05-27T10": 0.929132883, + "2024-05-21T21": 0.95678946, + "2024-05-24T19": 0.935809809, + "2024-05-26T02": 0.9378968199999999, + "2024-05-27T19": 0.9572322180000001, + "2024-05-25T11": 0.94685795, + "2024-05-27T17": 0.96300708, + "2024-05-21T18": 0.96903464, + "2024-05-26T06": 0.932982678, + "2024-05-23T00": 0.944299256, + "2024-05-22T00": 0.9616268760000001, + "2024-05-24T05": 0.928588995, + "2024-05-23T15": 0.918538176, + "2024-05-22T13": 0.94324245277184, + "2024-05-21T10": 0.9545353999646383, + "2024-05-22T12": 0.9428396899999999, + "2024-05-23T04": 0.9485115580000001, + "2024-05-26T08": 0.9346073, + "2024-05-26T13": 0.92420416, + "2024-05-28T05": 0.929383823, + "2024-05-22T18": 0.938687344, + "2024-05-22T06": 0.9597888, + "2024-05-21T08": 0.9518702267991697, + "2024-05-22T17": 0.9498479999999999, + "2024-05-23T19": 0.903567952, + "2024-05-25T07": 0.94363184, + "2024-05-26T22": 0.927410324, + "2024-05-25T16": 0.93936847, + "2024-05-26T05": 0.9336198299999999, + "2024-05-24T04": 0.93847416, + "2024-05-21T14": 0.96075975, + "2024-05-25T12": 0.9409341299999999, + "2024-05-28T07": 0.92823822, + "2024-05-23T18": 0.90135958, + "2024-05-26T23": 0.9213575359999999, + "2024-05-24T09": 0.9155878000000001, + "2024-05-23T03": 0.9493635, + "2024-05-26T14": 0.9294373779999999, + "2024-05-21T13": 0.95960804, + "2024-05-22T14": 0.94774404, + "2024-05-25T14": 0.93893427, + "2024-05-25T00": 0.93878403, + "2024-05-23T23": 0.9225938800000001, + "2024-05-21T11": 0.95774134, + "2024-05-23T13": 0.9160792600000001, + "2024-05-22T11": 0.95382828, + "2024-05-21T15": 0.9546708239999999, + "2024-05-28T00": 0.95753336, + "2024-05-27T23": 0.96019276, + "2024-05-28T02": 0.9408032900000001, + "2024-05-26T21": 0.9145425, + "2024-05-26T12": 0.927003264, + "2024-05-23T06": 0.9426057840000001, + "2024-05-22T07": 0.9561278660000001, + "2024-05-27T12": 0.9401755097471449, + "2024-05-22T21": 0.937752903, + "2024-05-24T00": 0.928282085, + "2024-05-25T02": 0.95279034, + "2024-05-27T00": 0.91904025, + "2024-05-26T20": 0.9179397149999999, + "2024-05-26T17": 0.921102336, + "2024-05-27T13": 0.946803138, + "2024-05-23T12": 0.9304438589999999, + "2024-05-25T10": 0.94474485, + "2024-05-21T09": 0.9538092, + "2024-05-23T11": 0.9385305, + "2024-05-24T14": 0.9363347300000001, + "2024-05-25T01": 0.944811, + "2024-05-27T21": 0.9653240370000001, + "2024-05-27T03": 0.92745248, + "2024-05-27T01": 0.9247156408828431, + "latest": 0.900697, + "2024-05-28T09": 0.939731079, + "2024-05-28T10": 0.944482962, + "2024-05-28T11": 0.9384512060000001, + "2024-05-28T12": 0.9351545390000001, + "2024-05-28T13": 0.9329167034968388, + "2024-05-28T14": 0.9279161335142142, + "2024-05-28T15": 0.930324672, + "2024-05-29": 0.9344185603653112, + "2024-05-28T20": 0.94207586, + "2024-05-28T22": 0.9391352, + "2024-05-28T21": 0.9387686, + "2024-05-28T19": 0.9348487200000001, + "2024-05-29T02": 0.9340463, + "2024-05-28T17": 0.9349641, + "2024-05-28T18": 0.924542875, + "2024-05-28T23": 0.935501056, + "2024-05-29T00": 0.9332337555756578, + "2024-05-29T01": 0.931271796, + "2024-05-28T16": 0.9310214000000001, + "2024-05-29T06": 0.9508480799999999, + "2024-05-29T05": 0.9458825399999999, + "2024-05-29T03": 0.9382044480000001, + "2024-05-29T07": 0.9408827479999999, + "2024-05-29T04": 0.9418778299999999, + "2024-05-29T08": 0.9321669, + "2024-05-29T09": 0.94199396350676, + "2024-05-29T10": 0.9463115859424724, + "2024-05-29T11": 0.9440644499999999, + "2024-05-29T12": 0.9381688247406229, + "2024-05-29T13": 0.93626914, + "2024-05-29T14": 0.932009802, + "2024-05-29T15": 0.929005056, + "2024-05-29T18": 0.924112, + "2024-05-29T17": 0.933591623180819, + "2024-05-29T23": 0.9079092000000001, + "2024-05-29T19": 0.91809938, + "2024-05-29T22": 0.9089899, + "2024-05-29T20": 0.9091719, + "2024-05-29T16": 0.9255017700823178, + "2024-05-29T21": 0.9063860139716085, + "2024-05-30": 0.9068307290294527, + "2024-05-30T00": 0.90987036, + "2024-05-30T05": 0.913994249, + "2024-05-30T02": 0.91988559, + "2024-05-30T01": 0.9120071759847872, + "2024-05-30T06": 0.9002792000000001, + "2024-05-30T07": 0.8934457200000001, + "2024-05-30T03": 0.918896, + "2024-05-30T04": 0.9179063900000001, + "2024-05-30T08": 0.88017158, + "2024-05-30T09": 0.8904654, + "2024-05-30T10": 0.8923745955498641, + "2024-05-30T11": 0.89527424, + "2024-05-30T12": 0.8962824, + "2024-05-30T13": 0.9024582, + "2024-05-30T14": 0.9045837, + "2024-05-30T15": 0.8991402000000001, + "2024-05-30T21": 0.8918216, + "2024-05-30T20": 0.89283033, + "2024-05-30T18": 0.90576444, + "2024-05-30T22": 0.8921809294846591, + "2024-05-30T16": 0.90367456, + "2024-05-30T17": 0.9067423627073263, + "2024-05-30T19": 0.903237388, + "2024-05-31": 0.8863628051153765, + "2024-05-30T23": 0.8882076829440478, + "2024-05-31T03": 0.8864709421845204, + "2024-05-31T07": 0.8863513853910243, + "2024-05-31T06": 0.8855998196533226, + "2024-05-31T04": 0.8872288451614031, + "2024-05-31T02": 0.8833326120732019, + "2024-05-31T05": 0.8909029102679091, + "2024-05-31T00": 0.8863628051153765, + "2024-05-31T01": 0.8840608869305221, + "2024-05-31T08": 0.8847168, + "2024-05-31T09": 0.88070046, + "2024-05-31T10": 0.8784725999999999, + "2024-05-31T11": 0.88246137, + "2024-05-31T12": 0.890156673, + "2024-05-31T13": 0.88545068, + "2024-05-31T14": 0.877324637055786, + "2024-06-01": 0.8802487920838489, + "2024-06-01T08": 0.87127624, + "2024-06-01T02": 0.8721182700000001, + "2024-06-01T05": 0.87231906, + "2024-05-31T21": 0.87996923, + "2024-06-01T00": 0.87111056, + "2024-05-31T18": 0.87105824, + "2024-05-31T15": 0.8733942049454995, + "2024-05-31T23": 0.876014331, + "2024-05-31T22": 0.878988, + "2024-06-01T01": 0.8691213, + "2024-06-01T07": 0.8713036829280496, + "2024-06-01T04": 0.8717588217096975, + "2024-05-31T19": 0.8755505485229889, + "2024-06-01T06": 0.87131112, + "2024-05-31T20": 0.879070283, + "2024-05-31T17": 0.87029449, + "2024-05-31T16": 0.86729692, + "2024-06-01T03": 0.8713024, + "2024-06-01T09": 0.87124136, + "2024-06-01T10": 0.8734795348535601, + "2024-06-02": 0.8889686198489022, + "2024-06-01T13": 0.879208, + "2024-06-01T15": 0.88410615, + "2024-06-01T18": 0.8872096800000001, + "2024-06-01T12": 0.8772361399999999, + "2024-06-01T21": 0.89363032694753, + "2024-06-01T20": 0.8912061200000001, + "2024-06-02T01": 0.8923855199999999, + "2024-06-01T17": 0.8853038258911891, + "2024-06-01T11": 0.8742300000000001, + "2024-06-02T00": 0.8882888, + "2024-06-01T23": 0.8922588100000001, + "2024-06-01T14": 0.882985678590502, + "2024-06-01T22": 0.8962196099999999, + "2024-06-01T19": 0.889814559016121, + "2024-06-01T16": 0.88219647, + "2024-06-02T13": 0.89535488, + "2024-06-02T11": 0.8913666800000001, + "2024-06-02T07": 0.89027829, + "2024-06-02T05": 0.8934852331010958, + "2024-06-02T08": 0.892556896, + "2024-06-02T04": 0.89527424, + "2024-06-02T10": 0.88634362, + "2024-06-02T12": 0.8954062928833029, + "2024-06-02T02": 0.8944838552639272, + "2024-06-02T16": 0.888979343, + "2024-06-02T17": 0.88442475, + "2024-06-02T03": 0.8932401, + "2024-06-02T09": 0.8843451, + "2024-06-02T15": 0.89825383, + "2024-06-02T06": 0.8952384, + "2024-06-02T18": 0.88046259, + "2024-06-02T14": 0.89634519, + "2024-06-03": 0.870126675799582, + "2024-06-03T01": 0.88339888, + "2024-06-02T20": 0.8744925, + "2024-06-03T00": 0.87052095, + "2024-06-02T21": 0.8762441160000001, + "2024-06-02T23": 0.87652642, + "2024-06-02T19": 0.8764825700000001, + "2024-06-02T22": 0.87652642, + "2024-06-03T02": 0.8942929500000001, + "2024-06-03T05": 0.9017795022878363, + "2024-06-03T06": 0.9044208, + "2024-06-03T04": 0.893181654, + "2024-06-03T03": 0.895771183, + "2024-06-03T07": 0.9049444120700824 + }, + "USD hedera": { + "2023-07-30": 0.05349884719529108, + "2023-10-23": 0.05000714130528837, + "2023-07-27": 0.05223862719761779, + "2023-07-10": 0.046992197661223485, + "2023-08-20": 0.06240379768779201, + "2024-02-23": 0.11190725479169503, + "2024-04-05": 0.10335847900879983, + "2023-12-19": 0.07955524321355818, + "2024-05-17": 0.11568321823776549, + "2023-08-06": 0.056237625800734145, + "2023-12-02": 0.06164179358307086, + "2023-10-31": 0.05246530654127874, + "2023-08-29": 0.055390386630876726, + "2023-06-20": 0.04639304476373312, + "2023-09-09": 0.049585427537692725, + "2023-06-26": 0.0507038238675691, + "2023-10-01": 0.0501019162669386, + "2024-03-07": 0.1336633767660776, + "2023-10-12": 0.04599279953067277, + "2024-04-22": 0.0903662650584116, + "2023-07-05": 0.04759200460697836, + "2023-07-29": 0.05337320705065082, + "2024-04-26": 0.1143751635930067, + "2024-01-08": 0.0773190801988388, + "2023-05-29": 0.05277395521796003, + "2023-10-07": 0.04841431946744163, + "2023-09-26": 0.049711579916840894, + "2023-08-24": 0.061263141206844035, + "2023-12-05": 0.06491003922254789, + "2024-02-19": 0.10253561111210098, + "2024-01-07": 0.07931505546273383, + "2024-04-28": 0.10637753514274007, + "2023-07-31": 0.05260083727275093, + "2023-10-18": 0.0479993834856996, + "2024-05-19": 0.11198303587881539, + "2024-05-12": 0.10948470195372008, + "2024-04-29": 0.10286241350364805, + "2023-08-25": 0.0589123045586043, + "2024-03-09": 0.13059282514604728, + "2023-07-12": 0.0486997928925035, + "2023-09-05": 0.048645337746380114, + "2023-06-07": 0.048810709766648086, + "2023-09-16": 0.05140529707796785, + "2024-04-25": 0.11798619817060021, + "2023-08-12": 0.05657050019497135, + "2023-06-06": 0.048809280159660975, + "2023-09-01": 0.05047929819150087, + "2023-09-08": 0.049980005981424686, + "2024-03-22": 0.1070549939267342, + "2023-08-10": 0.0583845902727756, + "2023-12-07": 0.06786828434197222, + "2023-11-18": 0.06142929130751354, + "2023-07-13": 0.05070593637577651, + "2023-09-13": 0.04869546907167829, + "2023-06-17": 0.04569393996081763, + "2023-07-17": 0.0517083608408776, + "2023-07-07": 0.04670271580061557, + "2023-09-07": 0.04922524098321401, + "2024-03-26": 0.12051831217925388, + "2024-05-14": 0.10777291275869247, + "2024-02-22": 0.11200615361327265, + "2024-04-15": 0.08232774158040197, + "2023-12-30": 0.08733240771892153, + "2023-09-17": 0.05041110586007891, + "2024-04-17": 0.07894117928054033, + "2024-02-12": 0.07832161877616245, + "2023-10-26": 0.052952370652361094, + "2024-01-03": 0.08949081264220379, + "2024-05-07": 0.11209740308472198, + "2023-06-01": 0.05094662469551065, + "2024-01-22": 0.0730685887431254, + "2023-06-12": 0.04459182059912734, + "2023-10-03": 0.050007851922336546, + "2024-05-26": 0.10705894041460966, + "2024-04-30": 0.09436675379214059, + "2023-06-19": 0.044986154608538616, + "2023-07-09": 0.04720843886685101, + "2023-12-24": 0.09273491138044566, + "2023-09-24": 0.050583034799999996, + "2024-01-16": 0.07954834181758529, + "2023-10-17": 0.04659910811659905, + "2024-04-24": 0.13228128616598364, + "2024-03-18": 0.11205646271432462, + "2024-02-17": 0.08356635848078676, + "2023-12-27": 0.08985370873649277, + "2023-07-23": 0.053296765810179184, + "2023-09-03": 0.04969330430880405, + "2024-02-24": 0.10888430743557295, + "2024-01-06": 0.08005103850059418, + "2024-03-20": 0.10559175283880082, + "2023-11-21": 0.06229235575258485, + "2023-12-25": 0.09068670599402744, + "2023-09-22": 0.05019610422413212, + "2023-10-02": 0.0509828014805264, + "2024-03-27": 0.11512058315042088, + "2024-05-06": 0.11562209731470748, + "2023-08-30": 0.05448036674508453, + "2023-10-06": 0.04830135944373464, + "2023-10-13": 0.045944410304380935, + "2023-06-28": 0.04889990694909895, + "2024-02-05": 0.06932987570419266, + "2024-03-01": 0.11549464897938036, + "2023-07-15": 0.052016446330102516, + "2023-06-25": 0.052313513926134536, + "2023-12-10": 0.07447105390225472, + "2023-11-23": 0.061811892967355675, + "2023-08-04": 0.05306020172548953, + "2024-05-13": 0.10807513876756279, + "2024-01-13": 0.0795889454732371, + "2024-03-28": 0.11482540491838887, + "2023-08-05": 0.052107743094605294, + "2024-02-09": 0.07765154629768971, + "2023-10-09": 0.04660923487500933, + "2024-01-09": 0.07804580785068388, + "2024-05-10": 0.10966517083552338, + "2023-05-27": 0.052025995665401774, + "2023-08-18": 0.05692808679240047, + "2023-11-05": 0.055851887775466964, + "2024-04-18": 0.08010036674768438, + "2023-10-22": 0.049024676695202524, + "2023-11-01": 0.05146374848781297, + "2024-05-20": 0.11240536674191562, + "2023-12-08": 0.07004149583481822, + "2024-04-12": 0.09439999515416099, + "2023-07-06": 0.04710165161463604, + "2024-03-12": 0.1305857650249508, + "2023-09-11": 0.045981896718573924, + "2024-03-03": 0.11220421339128793, + "2024-02-04": 0.06887381134164328, + "2024-01-28": 0.07439256, + "2023-07-01": 0.0505939823173488, + "2023-11-07": 0.0578556335886852, + "2023-11-25": 0.06304994167789267, + "2023-06-04": 0.05060499297555075, + "2024-02-25": 0.1082183967030827, + "2023-12-01": 0.060611932709634365, + "2023-07-14": 0.052318704988351575, + "2024-01-26": 0.07306606235574428, + "2023-08-03": 0.05334742182747733, + "2024-02-28": 0.1131723752324841, + "2023-09-15": 0.05070093539424619, + "2023-07-18": 0.05292211540975137, + "2023-12-21": 0.09023635540798293, + "2023-07-20": 0.05738109323803571, + "2024-03-06": 0.12048048145863861, + "2023-09-30": 0.04971051507126637, + "2023-12-12": 0.07289562169771018, + "2024-02-13": 0.08064327410677327, + "2023-09-20": 0.05041352994698468, + "2023-09-19": 0.05053912829945064, + "2023-09-29": 0.04969169503373405, + "2023-09-12": 0.046938185910599936, + "2023-06-13": 0.04589542650126366, + "2023-10-04": 0.04858161496511481, + "2023-07-08": 0.04710414151017782, + "2024-04-16": 0.07904541830900437, + "2024-03-02": 0.11550544097889741, + "2023-06-27": 0.05050318773268388, + "2023-10-08": 0.04809427631632976, + "2023-11-20": 0.06573632302352632, + "2023-12-20": 0.0867100157659202, + "2023-12-31": 0.08757428865235144, + "2023-11-06": 0.05717612603162589, + "2023-08-22": 0.06125195232245598, + "2023-06-09": 0.048503598408848346, + "2024-03-17": 0.11389310528803796, + "2023-09-18": 0.05070864616921066, + "2024-04-01": 0.11093263053139037, + "2024-05-21": 0.11575246790655767, + "2024-01-19": 0.07472186330533763, + "2023-11-11": 0.06278820772022115, + "2023-09-23": 0.05126999935862034, + "2023-11-19": 0.06125476754101112, + "2023-07-02": 0.0499999499736441, + "2023-08-15": 0.07106647192801607, + "2024-01-25": 0.07144955555770877, + "2024-03-13": 0.13391200688256205, + "2024-01-21": 0.07656114281719467, + "2024-02-01": 0.06915908693168078, + "2023-06-15": 0.04312323022142409, + "2024-03-16": 0.11803567011909925, + "2023-11-27": 0.061064962514427584, + "2024-01-10": 0.0774605438517544, + "2024-03-15": 0.11721465389359106, + "2023-06-21": 0.049838176457557094, + "2024-01-02": 0.09645181958222612, + "2023-07-11": 0.047971492839109904, + "2023-10-25": 0.05158841536355648, + "2024-01-01": 0.08638110456052026, + "2024-02-14": 0.08226894629198514, + "2023-09-04": 0.04841883385552689, + "2023-09-06": 0.049081427817930845, + "2024-04-03": 0.10459296245260742, + "2023-11-28": 0.06070990341114153, + "2023-12-03": 0.061721520226670545, + "2023-08-02": 0.051642716813203995, + "2023-08-27": 0.05803492008535194, + "2023-10-20": 0.04721810144234021, + "2023-10-10": 0.046913440411532746, + "2024-05-03": 0.10648520017797791, + "2024-03-08": 0.13055126901296787, + "2024-04-11": 0.10040486070451694, + "2023-06-22": 0.05071268252866921, + "2024-01-14": 0.07991897007556714, + "2023-12-15": 0.08453560202711403, + "2023-10-19": 0.04642572061464834, + "2024-02-08": 0.07662200022088109, + "2023-11-08": 0.05942292393771944, + "2023-11-12": 0.062048362341428985, + "2023-12-22": 0.09012887623564425, + "2023-05-31": 0.05140915951393791, + "2024-03-23": 0.10790956942437835, + "2023-09-27": 0.04927819966043701, + "2024-03-04": 0.11630405301727603, + "2023-09-10": 0.047888030254838676, + "2024-04-13": 0.08392251610999754, + "2024-02-29": 0.11667539565659785, + "2023-07-21": 0.0556571951158591, + "2023-06-30": 0.04993491813918045, + "2023-12-29": 0.08906690124357133, + "2023-12-04": 0.06292054234677652, + "2024-04-10": 0.10177671223187681, + "2024-05-08": 0.10748539453259623, + "2023-09-21": 0.05049752311280434, + "2023-06-02": 0.05043, + "2024-04-21": 0.08932099749211549, + "2023-07-22": 0.05444725443239594, + "2023-10-11": 0.04618455136701444, + "2024-03-21": 0.11110652712447001, + "2023-07-19": 0.05539938427575617, + "2024-05-05": 0.10981484886757634, + "2024-05-23": 0.11079817895501555, + "2024-04-08": 0.1085370849672661, + "2024-05-18": 0.114843109007396, + "2023-06-14": 0.046789639163243656, + "2023-10-05": 0.04841776665814419, + "2023-10-16": 0.04740447444662163, + "2024-05-22": 0.11444055802031695, + "2024-02-10": 0.07886029841235317, + "2024-04-07": 0.10632780791358933, + "2024-02-20": 0.1068724000565848, + "2023-11-17": 0.06279365318973414, + "2023-12-11": 0.07100029354700775, + "2023-11-26": 0.063075937763282, + "2023-11-16": 0.062194326191054826, + "2023-06-29": 0.048594560999568805, + "2023-10-27": 0.05129085276544731, + "2023-06-11": 0.04421907505962058, + "2024-02-02": 0.06934457490835935, + "2023-09-14": 0.0517019939201918, + "2024-01-27": 0.07439126047805755, + "2024-03-30": 0.11517347507745206, + "2023-11-22": 0.060147060275994785, + "2023-09-28": 0.04958984959513217, + "2023-06-03": 0.05044, + "2024-01-18": 0.0779022530588729, + "2023-08-26": 0.057753908432728075, + "2024-02-15": 0.08274137660084366, + "2023-10-28": 0.051816373168200966, + "2024-03-24": 0.10764758911419543, + "2024-04-27": 0.10725632735819778, + "2023-12-06": 0.06834594650147216, + "2024-01-30": 0.07414513917025749, + "2023-11-14": 0.05891895870073464, + "2023-08-09": 0.06167668036680364, + "2024-05-15": 0.10837395485974212, + "2023-11-10": 0.06086736350088144, + "2024-01-23": 0.0692884288703448, + "2024-01-31": 0.07067172000000001, + "2024-05-11": 0.10686790149995797, + "2024-01-11": 0.08397619620596465, + "2024-02-18": 0.08882840997639284, + "2023-06-16": 0.04295647053080802, + "2023-10-30": 0.05292124481252705, + "2023-12-17": 0.07935257746762056, + "2024-02-26": 0.1075629979350137, + "2023-07-16": 0.051461827932473475, + "2024-01-05": 0.0844155588297224, + "2023-08-23": 0.05922973337407761, + "2024-03-11": 0.1290944169868026, + "2023-08-01": 0.05114525268379177, + "2024-03-14": 0.12747187720530298, + "2024-02-21": 0.10516153199417105, + "2023-08-28": 0.05597989268911541, + "2023-07-04": 0.049306910378935184, + "2023-12-13": 0.07666693987660639, + "2024-02-27": 0.11030363712603383, + "2023-08-13": 0.056251905739538886, + "2024-03-31": 0.11640429181072973, + "2023-12-09": 0.07556290051873348, + "2024-04-02": 0.10490170145367995, + "2024-02-06": 0.07305943171367628, + "2024-04-09": 0.10670617268347139, + "2023-11-04": 0.055002628018241025, + "2024-04-20": 0.08161424016843916, + "2024-01-15": 0.07860574165633383, + "2023-07-03": 0.05079981693797446, + "2023-12-28": 0.09209276736264209, + "2023-05-30": 0.052814280220273443, + "2024-05-25": 0.10843713949638632, + "2024-02-07": 0.07362181721986913, + "2023-09-25": 0.0503991226545077, + "2024-03-19": 0.10488790860120857, + "2024-03-10": 0.12749395508532035, + "2024-05-02": 0.09827291487257367, + "2023-09-02": 0.04920419766523816, + "2024-01-12": 0.08301375220594395, + "2024-04-19": 0.08227849292189149, + "2023-11-29": 0.06032505871354456, + "2023-10-15": 0.046957964890501615, + "2024-05-28": 0.10444504583069256, + "2023-11-30": 0.06019134350355743, + "2024-01-24": 0.07160449496335548, + "2023-08-11": 0.05693700231633346, + "2024-02-11": 0.0786293687297421, + "2023-06-08": 0.048244824, + "2023-11-15": 0.060255931494679255, + "2023-12-16": 0.08165000392340989, + "2024-03-29": 0.11520301032163799, + "2024-04-04": 0.10519831758196879, + "2023-06-10": 0.04369999456751754, + "2023-07-28": 0.05186063318906771, + "2024-01-20": 0.07573770490013251, + "2023-10-21": 0.048220504884736164, + "2023-08-16": 0.06401498771338734, + "2024-05-24": 0.10815501686913744, + "2023-11-03": 0.054203856758364664, + "2023-08-31": 0.053030432539919736, + "2024-05-27": 0.10708355985921429, + "2024-01-04": 0.08775994957430198, + "2023-07-26": 0.05190996127990447, + "2023-11-13": 0.06106404247057652, + "2023-10-24": 0.0516007592384282, + "2024-03-25": 0.11387817100648104, + "2023-08-07": 0.055647590434568905, + "2023-10-29": 0.052064994311264136, + "2024-01-29": 0.0734912282846823, + "2024-05-04": 0.10972828745563697, + "2023-06-05": 0.048579087783817976, + "2023-11-02": 0.05489686632273273, + "2023-12-18": 0.07655220478675695, + "2023-11-24": 0.062085062364607264, + "2023-08-21": 0.062333330820136514, + "2023-07-25": 0.0520217300180194, + "2024-05-16": 0.11029728882211556, + "2023-08-14": 0.06483789524710497, + "2024-05-01": 0.09737823632201784, + "2024-03-05": 0.11954938778150366, + "2024-04-06": 0.10538624256246833, + "2023-12-23": 0.08915749529746968, + "2024-02-03": 0.06947161217666531, + "2024-02-16": 0.08451546211968754, + "2023-05-28": 0.05291474779463466, + "2023-12-14": 0.08038594091135193, + "2023-06-24": 0.0519302723157685, + "2023-12-26": 0.08956213086675587, + "2023-11-09": 0.060810009507405026, + "2023-08-19": 0.06501036057856487, + "2024-05-09": 0.10931426565321696, + "2024-01-17": 0.0800403681803717, + "2023-06-23": 0.05151164240719954, + "2023-06-18": 0.04538826873659778, + "2024-04-23": 0.12046558508907541, + "2023-08-08": 0.05967179636426585, + "2023-08-17": 0.06109119375415076, + "2024-04-14": 0.07898583600632378, + "2023-07-24": 0.0525302159113906, + "2023-10-14": 0.04675583363337848, + "2024-05-22T20": 0.11271647239999999, + "2024-05-25T08": 0.108457685, + "2024-05-22T05": 0.1138049574, + "2024-05-28T03": 0.10564647330000002, + "2024-05-22T16": 0.11466247439999999, + "2024-05-25T05": 0.10855656000000001, + "2024-05-24T22": 0.108084866, + "2024-05-27T14": 0.1074226, + "2024-05-22T03": 0.11487587099999999, + "2024-05-23T17": 0.109020357, + "2024-05-24T23": 0.1078405852, + "2024-05-26T19": 0.10674232800000001, + "2024-05-26T18": 0.10644462, + "2024-05-26T10": 0.10696041, + "2024-05-27T16": 0.108991991, + "2024-05-24T12": 0.108143736, + "2024-05-26T01": 0.108449154, + "2024-05-21T17": 0.11523312599999999, + "2024-05-23T07": 0.1145600757, + "2024-05-22T08": 0.1159768, + "2024-05-23T09": 0.11376244599999999, + "2024-05-24T18": 0.10904545, + "2024-05-23T01": 0.113841911, + "2024-05-25T15": 0.10888911, + "2024-05-23T16": 0.1096043208, + "2024-05-25T03": 0.108055679, + "2024-05-28T06": 0.104108304, + "2024-05-25T23": 0.10856154139999999, + "2024-05-24T13": 0.10823501999999999, + "2024-05-26T03": 0.107788142, + "2024-05-26T00": 0.10854588720000001, + "2024-05-25T06": 0.10823823903533966, + "2024-05-27T04": 0.1075229826, + "2024-05-22T10": 0.115374612, + "2024-05-27T09": 0.10673378400000001, + "2024-05-24T17": 0.108054598, + "2024-05-26T16": 0.1067351524, + "2024-05-22T09": 0.115466902, + "2024-05-24T21": 0.10829025299999999, + "2024-05-25T04": 0.10835664, + "2024-05-27T22": 0.10679096199999999, + "2024-05-27T11": 0.106633846, + "2024-05-23T21": 0.10871839999999999, + "2024-05-23T10": 0.11286048500000001, + "2024-05-23T14": 0.110745708, + "2024-05-27T02": 0.107336634, + "2024-05-25T18": 0.1083729, + "2024-05-27T05": 0.1070286016, + "2024-05-22T23": 0.11324901500000001, + "2024-05-28T01": 0.10586524, + "2024-05-22T04": 0.1135793253, + "2024-05-22T15": 0.11485766404320245, + "2024-05-24T03": 0.10955506400000001, + "2024-05-24T08": 0.1055393847, + "2024-05-21T22": 0.1153465398, + "2024-05-21T16": 0.11512047689999999, + "2024-05-21T23": 0.11517580799999999, + "2024-05-24T02": 0.109358428, + "2024-05-26T07": 0.1076801436, + "2024-05-27T07": 0.1061873125, + "2024-05-25T22": 0.1083005024, + "2024-05-24T16": 0.10795464, + "2024-05-27T20": 0.106940809, + "2024-05-22T02": 0.1154692118, + "2024-05-24T06": 0.106553096, + "2024-05-24T11": 0.10743549999999999, + "2024-05-25T21": 0.108208354, + "2024-05-27T15": 0.1078271888, + "2024-05-21T19": 0.114362248, + "2024-05-22T19": 0.11327620699999999, + "2024-05-21T12": 0.11547343500000001, + "2024-05-23T20": 0.1055208, + "2024-05-23T08": 0.114133764, + "2024-05-22T22": 0.113364636, + "2024-05-26T11": 0.107111778, + "2024-05-24T01": 0.1094562, + "2024-05-23T05": 0.11474881160000001, + "2024-05-28T04": 0.1040939559, + "2024-05-25T09": 0.10876083199999999, + "2024-05-27T18": 0.107990819, + "2024-05-24T10": 0.107445175, + "2024-05-25T19": 0.10827292499999999, + "2024-05-24T07": 0.1059503256, + "2024-05-26T04": 0.107671998, + "2024-05-26T09": 0.10665732000000001, + "2024-05-23T02": 0.113640876, + "2024-05-27T06": 0.1066587792, + "2024-05-28T08": 0.10390889848733728, + "2024-05-24T15": 0.108635655, + "2024-05-25T20": 0.108232935, + "2024-05-27T08": 0.10653604, + "2024-05-23T22": 0.108632606, + "2024-05-26T15": 0.10743549999999999, + "2024-05-24T20": 0.108429156, + "2024-05-21T20": 0.11526195099999999, + "2024-05-25T13": 0.108284838, + "2024-05-22T01": 0.1157261112, + "2024-05-25T17": 0.10847613, + "2024-05-27T10": 0.106634913, + "2024-05-21T21": 0.11450480340000001, + "2024-05-24T19": 0.1084763619, + "2024-05-26T02": 0.1078381365, + "2024-05-27T19": 0.10669213200000001, + "2024-05-25T11": 0.10898365, + "2024-05-27T17": 0.10848814200000001, + "2024-05-21T18": 0.11544456, + "2024-05-26T06": 0.1077533514, + "2024-05-23T00": 0.113439845, + "2024-05-22T00": 0.11573916320000001, + "2024-05-24T05": 0.10791061649999999, + "2024-05-23T15": 0.110070692, + "2024-05-22T13": 0.11318754799999999, + "2024-05-21T10": 0.116127809027956, + "2024-05-22T12": 0.11315076110000001, + "2024-05-23T04": 0.11430123083155519, + "2024-05-26T08": 0.10745485, + "2024-05-26T13": 0.106665856, + "2024-05-28T05": 0.10420969669999999, + "2024-05-22T18": 0.112886452, + "2024-05-22T06": 0.115174656, + "2024-05-21T08": 0.11580421183600823, + "2024-05-22T17": 0.114281712, + "2024-05-23T19": 0.107501008, + "2024-05-25T07": 0.10846768109999999, + "2024-05-26T22": 0.107055018, + "2024-05-25T16": 0.108584796, + "2024-05-26T05": 0.10756772, + "2024-05-24T04": 0.109738512, + "2024-05-21T14": 0.11577105, + "2024-05-25T12": 0.108492405, + "2024-05-28T07": 0.10401463799999999, + "2024-05-23T18": 0.1073037602, + "2024-05-26T23": 0.1067587312, + "2024-05-24T09": 0.1069418545, + "2024-05-23T03": 0.114023553, + "2024-05-26T14": 0.107058231, + "2024-05-21T13": 0.11547690000000001, + "2024-05-22T14": 0.1142491444, + "2024-05-25T14": 0.108492405, + "2024-05-25T00": 0.10792517150000001, + "2024-05-23T23": 0.1086821588, + "2024-05-21T11": 0.1164485504, + "2024-05-23T13": 0.11142137439405776, + "2024-05-22T11": 0.11481932880000001, + "2024-05-21T15": 0.11517235199999999, + "2024-05-28T00": 0.106165, + "2024-05-27T23": 0.10661037200000001, + "2024-05-28T02": 0.10512215200000001, + "2024-05-26T21": 0.10604695, + "2024-05-26T12": 0.106865792, + "2024-05-23T06": 0.1148376067, + "2024-05-22T07": 0.11554919740000001, + "2024-05-27T12": 0.106655289, + "2024-05-22T21": 0.112458375, + "2024-05-24T00": 0.1089609455, + "2024-05-25T02": 0.1082461806, + "2024-05-27T00": 0.10696649000000001, + "2024-05-26T20": 0.10633509599999999, + "2024-05-26T17": 0.1066323874, + "2024-05-27T13": 0.107132464, + "2024-05-23T12": 0.112444875, + "2024-05-25T10": 0.109070543, + "2024-05-21T09": 0.115956804, + "2024-05-23T11": 0.11294350000000002, + "2024-05-24T14": 0.1087427378, + "2024-05-25T01": 0.10827834, + "2024-05-27T21": 0.10689193, + "2024-05-27T03": 0.107336634, + "2024-05-27T01": 0.1070375259, + "latest": 0.101226, + "2024-05-28T09": 0.1043623959, + "2024-05-28T10": 0.10509795599999999, + "2024-05-28T11": 0.10526357630000001, + "2024-05-28T12": 0.10489395, + "2024-05-28T13": 0.10435554, + "2024-05-28T14": 0.10400693109999999, + "2024-05-28T15": 0.10390223999999999, + "2024-05-29": 0.10513762867564307, + "2024-05-28T20": 0.10490709020000001, + "2024-05-28T22": 0.1045137588, + "2024-05-28T21": 0.10464273819999999, + "2024-05-28T19": 0.104071834, + "2024-05-29T02": 0.10406374659999999, + "2024-05-28T17": 0.10411577999999999, + "2024-05-28T18": 0.10317087500000001, + "2024-05-28T23": 0.1039301312, + "2024-05-29T00": 0.1045564776, + "2024-05-29T01": 0.104073918, + "2024-05-28T16": 0.1038408525, + "2024-05-29T06": 0.10597161899999999, + "2024-05-29T05": 0.10557527400000001, + "2024-05-29T03": 0.1046589438, + "2024-05-29T07": 0.10538606, + "2024-05-29T04": 0.10521541654117691, + "2024-05-29T08": 0.10576835275060348, + "2024-05-29T09": 0.1067816704, + "2024-05-29T10": 0.106796307, + "2024-05-29T11": 0.1062347234, + "2024-05-29T12": 0.105497568, + "2024-05-29T13": 0.1053277802, + "2024-05-29T14": 0.10529202620000001, + "2024-05-29T15": 0.104982768, + "2024-05-29T18": 0.104499584, + "2024-05-29T17": 0.10550496, + "2024-05-29T23": 0.10328590800000001, + "2024-05-29T19": 0.1041378448, + "2024-05-29T22": 0.1037547043, + "2024-05-29T20": 0.1031760243, + "2024-05-29T16": 0.10451783290000001, + "2024-05-29T21": 0.10320897773408715, + "2024-05-30": 0.10193470915477036, + "2024-05-30T00": 0.1034915112, + "2024-05-30T05": 0.1036572776, + "2024-05-30T02": 0.104673192, + "2024-05-30T08": 0.10024981399999999, + "2024-05-30T01": 0.10388690723156392, + "2024-05-30T06": 0.102427992, + "2024-05-30T07": 0.101636946, + "2024-05-30T03": 0.1043746, + "2024-05-30T04": 0.10437564499999999, + "2024-05-30T09": 0.1009394, + "2024-05-30T10": 0.1012283472, + "2024-05-30T11": 0.101617623, + "2024-05-30T12": 0.10173854399999999, + "2024-05-30T13": 0.10233856, + "2024-05-30T14": 0.10245285, + "2024-05-30T15": 0.10163932800000001, + "2024-05-30T21": 0.10107978, + "2024-05-30T20": 0.101380734, + "2024-05-30T18": 0.102373376, + "2024-05-30T22": 0.1009146675, + "2024-05-30T16": 0.1020532476, + "2024-05-30T17": 0.1025910006, + "2024-05-30T19": 0.10188165800000001, + "2024-05-31": 0.10017107299705368, + "2024-05-30T23": 0.1008147025, + "2024-05-31T03": 0.1005117312, + "2024-05-31T07": 0.10036988000000001, + "2024-05-31T06": 0.10046985000000001, + "2024-05-31T04": 0.100603701, + "2024-05-31T02": 0.10045779, + "2024-05-31T05": 0.0999090205, + "2024-05-31T00": 0.1002119328, + "2024-05-31T01": 0.10057585599999999, + "2024-05-31T08": 0.10046784, + "2024-05-31T09": 0.1002858912, + "2024-05-31T10": 0.10033976, + "2024-05-31T11": 0.1007784876, + "2024-05-31T12": 0.10140810330000001, + "2024-05-31T13": 0.1006175784, + "2024-05-31T14": 0.0999230114, + "2024-06-01": 0.10009120866946745, + "2024-06-01T08": 0.1000069253, + "2024-06-01T02": 0.100098798, + "2024-06-01T05": 0.100021922, + "2024-05-31T21": 0.099883, + "2024-06-01T00": 0.099898, + "2024-05-31T18": 0.09939254, + "2024-05-31T15": 0.0995373154, + "2024-05-31T23": 0.09989973223699132, + "2024-05-31T22": 0.099944931, + "2024-06-01T01": 0.0998190808, + "2024-06-01T07": 0.10002007770001842, + "2024-06-01T04": 0.09991300769999999, + "2024-05-31T19": 0.099668264, + "2024-06-01T06": 0.09992100000000001, + "2024-05-31T20": 0.100082766, + "2024-05-31T17": 0.0991496237, + "2024-05-31T16": 0.0985700935, + "2024-06-01T03": 0.09992000000000001, + "2024-06-01T09": 0.099913, + "2024-06-01T10": 0.09981208800000001, + "2024-06-02": 0.09986253255283732, + "2024-06-01T13": 0.09991, + "2024-06-01T15": 0.09989900000000002, + "2024-06-01T18": 0.1000009199, + "2024-06-01T12": 0.099913, + "2024-06-01T21": 0.0999409733, + "2024-06-01T20": 0.0999709466, + "2024-06-02T01": 0.100150909440656, + "2024-06-01T17": 0.099900016, + "2024-06-01T11": 0.0998920176, + "2024-06-02T00": 0.099989944, + "2024-06-01T23": 0.09984705810000001, + "2024-06-01T14": 0.10009078199999999, + "2024-06-01T22": 0.10011282599999999, + "2024-06-01T19": 0.09991100000000001, + "2024-06-01T16": 0.09981908190000001, + "2024-06-02T13": 0.099828072, + "2024-06-02T11": 0.09892971, + "2024-06-02T07": 0.0995093321, + "2024-06-02T05": 0.0997961008, + "2024-06-02T08": 0.0994183672, + "2024-06-02T04": 0.0999489757, + "2024-06-02T10": 0.09832718400000001, + "2024-06-02T12": 0.0996392059, + "2024-06-02T02": 0.09981608400000001, + "2024-06-02T16": 0.0996492187, + "2024-06-02T17": 0.098835715, + "2024-06-02T03": 0.099815085, + "2024-06-02T09": 0.09850705080000001, + "2024-06-02T15": 0.099717166, + "2024-06-02T06": 0.099895017, + "2024-06-02T18": 0.098140098, + "2024-06-02T14": 0.099827073, + "2024-06-03": 0.09920067572850673, + "2024-06-03T01": 0.0999719728, + "2024-06-02T20": 0.0989125974, + "2024-06-03T00": 0.09894555, + "2024-06-02T21": 0.0989478459756934, + "2024-06-02T23": 0.0990364914, + "2024-06-02T19": 0.09860226795138147, + "2024-06-02T22": 0.09894654, + "2024-06-03T02": 0.100720368, + "2024-06-03T05": 0.10123921999999999, + "2024-06-03T06": 0.1016149248, + "2024-06-03T04": 0.10015187819999999, + "2024-06-03T03": 0.100740528, + "2024-06-03T07": 0.10173383 + }, + "USD injective": { + "2023-07-30": 7.919829341807577, + "2023-10-23": 10.22430177203997, + "2023-07-27": 8.126728486157868, + "2023-07-10": 8.008101738042862, + "2023-08-20": 7.822063111012853, + "2024-02-23": 33.547760334897205, + "2024-04-05": 32.32037528857918, + "2023-12-19": 37.863817391709766, + "2024-05-17": 24.56971341569028, + "2023-08-06": 7.958684105413447, + "2023-12-02": 18.099037329795625, + "2023-10-31": 13.424927841548373, + "2023-08-29": 7.205749312157676, + "2023-06-20": 6.2631556382311135, + "2023-09-09": 6.677037712182455, + "2023-06-26": 7.367957478565659, + "2023-10-01": 7.8616294989866455, + "2024-03-07": 42.93335604718447, + "2023-10-12": 7.3158954079065435, + "2024-04-22": 28.610856064454353, + "2023-07-05": 8.37156791335939, + "2023-07-29": 8.021841819276785, + "2024-04-26": 26.040328365470547, + "2024-01-08": 39.593503700395964, + "2023-05-29": 7.39691873341388, + "2023-10-07": 7.830311884453252, + "2023-09-26": 7.068762017387843, + "2023-08-24": 7.578918020732531, + "2023-12-05": 16.547380930426254, + "2024-02-19": 37.77509688493798, + "2024-01-07": 37.61542496435212, + "2024-04-28": 26.347759755973264, + "2023-07-31": 7.952482644146659, + "2023-10-18": 8.06497223554687, + "2024-05-19": 24.63696050387297, + "2024-05-12": 23.796811109604256, + "2024-04-29": 25.443022902930256, + "2023-08-25": 7.249349527985447, + "2024-03-09": 41.5729339213517, + "2023-07-12": 8.09621162389478, + "2023-09-05": 6.824970832000995, + "2023-06-07": 7.13393619408634, + "2023-09-16": 7.29775199957065, + "2024-04-25": 26.406700564017566, + "2023-08-12": 7.65489177999936, + "2023-06-06": 7.19290058914276, + "2023-09-01": 6.939947001128078, + "2023-09-08": 6.830267617421498, + "2024-03-22": 35.839433465384886, + "2023-08-10": 7.649266455498462, + "2023-12-07": 17.38669351966898, + "2023-11-18": 15.87033027108559, + "2023-07-13": 8.201819041732286, + "2023-09-13": 6.95935245870392, + "2023-06-17": 6.39997488119936, + "2023-07-17": 9.066114613686288, + "2023-07-07": 7.919067058029593, + "2023-09-07": 6.897924311166856, + "2024-03-26": 39.627327401089275, + "2024-05-14": 21.920016878495865, + "2024-02-22": 34.77217275057339, + "2024-04-15": 25.32066873446994, + "2023-12-30": 36.02325514095804, + "2023-09-17": 7.068557244309081, + "2024-04-17": 25.280554844639322, + "2024-02-12": 35.19017287447498, + "2023-10-26": 11.971944404164823, + "2024-01-03": 34.245167593195944, + "2024-05-07": 25.304401398949228, + "2023-06-01": 7.255443911772891, + "2024-01-22": 34.29740126466272, + "2023-06-12": 5.69575874625098, + "2023-10-03": 7.5580075213668065, + "2024-05-26": 25.055825611498864, + "2024-04-30": 23.59396338409238, + "2023-06-19": 6.032439567011857, + "2023-07-09": 8.295107627414447, + "2023-12-24": 42.17147250586471, + "2023-09-24": 6.967418019999999, + "2024-01-16": 40.86347773709644, + "2023-10-17": 7.82219508375183, + "2024-04-24": 28.1476489412828, + "2024-03-18": 40.79858315518609, + "2024-02-17": 34.87123793224486, + "2023-12-27": 38.4781505156343, + "2023-07-23": 8.686980571007828, + "2023-09-03": 6.79808402405551, + "2024-02-24": 34.28680501775429, + "2024-01-06": 37.85260261999889, + "2024-03-20": 36.54834169750899, + "2023-11-21": 15.494187320628455, + "2023-12-25": 41.5856667857111, + "2023-09-22": 7.139445899607636, + "2023-10-02": 7.779953037000242, + "2024-03-27": 38.45952765371276, + "2024-05-06": 25.346672331573274, + "2023-08-30": 7.115461241266555, + "2023-10-06": 7.663507096727654, + "2023-10-13": 7.498370381241672, + "2023-06-28": 7.521434770531443, + "2024-02-05": 32.51235354320005, + "2024-03-01": 42.79615343361381, + "2023-07-15": 9.204437576270374, + "2023-06-25": 7.0682657362170405, + "2023-12-10": 19.299608772040553, + "2023-11-23": 15.492484998927761, + "2023-08-04": 8.136425814304998, + "2024-05-13": 22.8900857510351, + "2024-01-13": 36.99614767558208, + "2024-03-28": 37.93114911953474, + "2023-08-05": 7.944165287936856, + "2024-02-09": 34.993066638818654, + "2023-10-09": 7.51448887587865, + "2024-01-09": 42.47415124259277, + "2024-05-10": 25.266206499224392, + "2023-05-27": 6.382524740686762, + "2023-08-18": 7.6383650914105745, + "2023-11-05": 15.645997142132618, + "2024-04-18": 26.47365225971567, + "2023-10-22": 9.035300443876517, + "2023-11-01": 14.670453410931202, + "2024-05-20": 25.79079345297654, + "2023-12-08": 19.294798902561126, + "2024-04-12": 28.894935306816453, + "2023-07-06": 8.224305843224492, + "2024-03-12": 47.76690321382265, + "2023-09-11": 6.505438779227807, + "2024-03-03": 40.991788187476665, + "2024-02-04": 33.03672704179634, + "2024-01-28": 36.65091362180031, + "2023-07-01": 8.454320712075855, + "2023-11-07": 17.156314036179854, + "2023-11-25": 16.54452139485172, + "2023-06-04": 7.883398026052616, + "2024-02-25": 34.49417701388006, + "2023-12-01": 18.233648771431895, + "2023-07-14": 9.116888654024766, + "2024-01-26": 33.35540981202979, + "2023-08-03": 8.020435679602292, + "2024-02-28": 40.08777792211163, + "2023-09-15": 7.200058143557595, + "2023-07-18": 9.000673063133856, + "2023-12-21": 39.78824581345142, + "2023-07-20": 9.294499283901962, + "2024-03-06": 38.531320495661895, + "2023-09-30": 7.670176968333906, + "2023-12-12": 26.267815845354754, + "2024-02-13": 35.79397102049327, + "2023-09-20": 7.433520493869016, + "2023-09-19": 7.455346573206117, + "2023-09-29": 7.479177240196061, + "2023-09-12": 6.861273054407825, + "2023-06-13": 5.896937877625795, + "2023-10-04": 7.456730926326875, + "2023-07-08": 7.9565825937741375, + "2024-04-16": 24.392595615865304, + "2024-03-02": 43.033997482176275, + "2023-06-27": 7.647427287657228, + "2023-10-08": 7.764550081057945, + "2023-11-20": 16.65670939850611, + "2023-12-20": 41.13816042341285, + "2023-12-31": 37.61166317669566, + "2023-11-06": 17.04663485221112, + "2023-08-22": 7.271686063164688, + "2023-06-09": 6.992333835363932, + "2024-03-17": 42.12693730208586, + "2023-09-18": 7.320248152119385, + "2024-04-01": 34.60796710857727, + "2024-05-21": 28.07927823635353, + "2024-01-19": 36.17751909104583, + "2023-11-11": 18.070844623476017, + "2023-09-23": 7.08699991134274, + "2023-11-19": 15.93069658422146, + "2023-07-02": 8.50948118746559, + "2023-08-15": 7.32161632, + "2024-01-25": 31.82880522107864, + "2024-03-13": 49.103077164881995, + "2024-01-21": 36.32030696581526, + "2024-02-01": 33.732557185447654, + "2023-06-15": 5.6823897970434345, + "2024-03-16": 44.67156941200276, + "2023-11-27": 16.83395296956337, + "2024-01-10": 39.1872784236547, + "2024-03-15": 43.65463150426087, + "2023-06-21": 7.105769277886522, + "2024-01-02": 39.02274956724947, + "2023-07-11": 8.17932147523518, + "2023-10-25": 12.001585637995552, + "2024-01-01": 37.846659029696994, + "2024-02-14": 35.119372062679204, + "2023-09-04": 6.8335012019692245, + "2023-09-06": 6.8320228174175375, + "2024-04-03": 33.8973570740998, + "2023-11-28": 16.403032999120445, + "2023-12-03": 17.75721484588109, + "2023-08-02": 8.067393161043459, + "2023-08-27": 7.035642154903994, + "2023-10-20": 8.650600116111915, + "2023-10-10": 7.40460561445652, + "2024-05-03": 23.908421303522164, + "2024-03-08": 42.34466817040961, + "2024-04-11": 32.50239593884703, + "2023-06-22": 7.16959585419972, + "2024-01-14": 38.2624141477237, + "2023-12-15": 31.710509727775488, + "2023-10-19": 8.38365461533372, + "2024-02-08": 33.31658845801818, + "2023-11-08": 17.171893343128904, + "2023-11-12": 17.436669470530614, + "2023-12-22": 38.91715329744375, + "2023-05-31": 7.23626199512805, + "2024-03-23": 35.70166227256816, + "2023-09-27": 7.209951626935869, + "2024-03-04": 40.062415803691934, + "2023-09-10": 6.626343727120475, + "2024-04-13": 25.581333526865095, + "2024-02-29": 43.00542010697269, + "2023-07-21": 9.239660796694569, + "2023-06-30": 8.04421271321898, + "2023-12-29": 36.18949940312928, + "2023-12-04": 16.806012001082962, + "2024-04-10": 32.827088143382525, + "2024-05-08": 23.797497335918564, + "2023-09-21": 7.165648527254572, + "2023-06-02": 7.948018340003811, + "2024-04-21": 29.054679065877057, + "2023-07-22": 8.867890101648864, + "2023-10-11": 7.300079153633361, + "2024-03-21": 38.41392624948665, + "2023-07-19": 9.054590864070363, + "2024-05-05": 24.201562832673027, + "2024-05-23": 26.709457961505066, + "2024-04-08": 35.698069212496854, + "2024-05-18": 24.892971627035244, + "2023-06-14": 6.14852743521515, + "2023-10-05": 7.5899436093793415, + "2023-10-16": 7.832559016248043, + "2024-05-22": 27.34873929208488, + "2024-02-10": 35.068779442333174, + "2024-04-07": 35.356167438750134, + "2024-02-20": 37.17382783309, + "2023-11-17": 16.009344173385255, + "2023-12-11": 22.688429139245613, + "2023-11-26": 16.780788472343374, + "2023-11-16": 17.11499623189765, + "2023-06-29": 7.795993894444022, + "2023-10-27": 13.112809002713954, + "2023-06-11": 5.7362527147582805, + "2024-02-02": 34.35714386398775, + "2023-09-14": 6.9122665759451785, + "2024-01-27": 34.764754839120975, + "2024-03-30": 36.671265448865405, + "2023-11-22": 15.442816605915446, + "2023-09-28": 7.180974522882528, + "2023-06-03": 7.92044056687354, + "2024-01-18": 37.746284153125245, + "2023-08-26": 7.204125957961374, + "2024-02-15": 34.620297124815174, + "2023-10-28": 13.463843557993972, + "2024-03-24": 35.77173550846881, + "2024-04-27": 25.495147422729353, + "2023-12-06": 17.404684614400033, + "2024-01-30": 36.78852509238718, + "2023-11-14": 15.611514728670336, + "2023-08-09": 7.994681028262231, + "2024-05-15": 22.60528896036064, + "2023-11-10": 17.439239388349836, + "2024-01-23": 31.792463983340664, + "2024-01-31": 34.724077733515664, + "2024-05-11": 24.251221550534922, + "2024-01-11": 39.676331272310655, + "2024-02-18": 38.69332547300361, + "2023-06-16": 5.962595159712106, + "2023-10-30": 13.806737245819999, + "2023-12-17": 29.861975071545118, + "2024-02-26": 36.176296051146444, + "2023-07-16": 9.15478765828229, + "2024-01-05": 37.25247097533857, + "2023-08-23": 7.504161773521337, + "2024-03-11": 41.062519829236834, + "2023-08-01": 7.721674880756949, + "2024-03-14": 48.52584259525736, + "2024-02-21": 34.97799872147793, + "2023-08-28": 6.917117637921394, + "2023-07-04": 8.693039335495088, + "2023-12-13": 25.726819168577855, + "2024-02-27": 37.55839393177432, + "2023-08-13": 7.670569660173512, + "2024-03-31": 36.854674339758034, + "2023-12-09": 19.211799291619275, + "2024-04-02": 32.428737118225406, + "2024-02-06": 31.581667669296756, + "2024-04-09": 34.36581742211757, + "2023-11-04": 14.742975383490146, + "2024-04-20": 28.092009275088913, + "2024-01-15": 39.27108239005086, + "2023-07-03": 8.787071364272741, + "2023-12-28": 36.59960633529101, + "2023-05-30": 7.526394568006986, + "2024-05-25": 25.62380622882668, + "2024-02-07": 32.22263175196358, + "2023-09-25": 7.011347665709121, + "2024-03-19": 36.352495332491884, + "2024-03-10": 40.41088831832475, + "2024-05-02": 23.297407209587345, + "2023-09-02": 6.798620131430601, + "2024-01-12": 38.1893579479638, + "2024-04-19": 27.922619567351184, + "2023-11-29": 16.80776891855215, + "2023-10-15": 7.674024245237545, + "2024-05-28": 25.747329507721133, + "2023-11-30": 17.946004125613015, + "2024-01-24": 33.0595173055969, + "2023-08-11": 7.689040258936193, + "2024-02-11": 35.44921584526613, + "2023-06-08": 6.912533695290393, + "2023-11-15": 16.661975380452194, + "2023-12-16": 30.491977723699787, + "2024-03-29": 37.12629330523344, + "2024-04-04": 32.92616402814544, + "2023-06-10": 5.883935837258404, + "2023-07-28": 8.083811558539526, + "2024-01-20": 35.458886591133066, + "2023-10-21": 8.914538509697485, + "2023-08-16": 7.140565631924083, + "2024-05-24": 25.17701318937667, + "2023-11-03": 14.244649673072857, + "2023-08-31": 7.095294892916736, + "2024-05-27": 25.614613567078518, + "2024-01-04": 36.85777097768668, + "2023-07-26": 7.950551744318997, + "2023-11-13": 16.69971007287511, + "2023-10-24": 11.798701148921957, + "2024-03-25": 37.47969418309595, + "2023-08-07": 7.898616205752154, + "2023-10-29": 13.738292552724563, + "2024-01-29": 37.65438341007791, + "2024-05-04": 24.729856292575658, + "2023-06-05": 7.457365708073217, + "2023-11-02": 14.881321267226907, + "2023-12-18": 31.824999074134702, + "2023-11-24": 15.552283633916169, + "2023-08-21": 7.499942914360715, + "2023-07-25": 8.017619987351827, + "2024-05-16": 23.585677030808867, + "2023-08-14": 7.652805604193893, + "2024-05-01": 22.975165332841918, + "2024-03-05": 40.73860946177497, + "2024-04-06": 34.79138065379545, + "2023-12-23": 39.80736514303855, + "2024-02-03": 33.33731461669436, + "2024-02-16": 34.45473548285769, + "2023-05-28": 6.834208680657599, + "2023-12-14": 31.20750554501116, + "2023-06-24": 6.9648753615912815, + "2023-12-26": 40.11067777123838, + "2023-11-09": 17.11948037900042, + "2023-08-19": 7.86935149411467, + "2024-05-09": 23.49856126001111, + "2024-01-17": 40.012418765230606, + "2023-06-23": 7.154881125752101, + "2023-06-18": 6.189503035839095, + "2024-04-23": 28.21674020975518, + "2023-08-08": 8.096034430685942, + "2023-08-17": 7.1301058603966325, + "2024-04-14": 24.79083925140422, + "2023-07-24": 8.201823190899624, + "2023-10-14": 7.630424525288141, + "2024-05-22T20": 27.12506255561807, + "2024-05-25T08": 25.669984799999998, + "2024-05-22T05": 27.3039918, + "2024-05-28T03": 25.120139400000003, + "2024-05-22T16": 27.443412, + "2024-05-25T05": 25.88964, + "2024-05-24T22": 25.556421599999997, + "2024-05-27T14": 25.70048232, + "2024-05-22T03": 27.37325041, + "2024-05-23T17": 26.2008594, + "2024-05-24T23": 25.66337976, + "2024-05-26T19": 24.886554, + "2024-05-26T18": 24.87405876, + "2024-05-26T10": 25.090713, + "2024-05-27T16": 26.363873899999998, + "2024-05-24T12": 25.036974, + "2024-05-26T01": 25.517447999999998, + "2024-05-21T17": 27.889814519999998, + "2024-05-23T07": 27.433255499999998, + "2024-05-22T08": 27.3635262, + "2024-05-23T09": 26.981093299999998, + "2024-05-24T18": 25.247370000000004, + "2024-05-23T01": 27.32905507, + "2024-05-25T15": 25.587441000000002, + "2024-05-23T16": 26.281853, + "2024-05-25T03": 26.1092908, + "2024-05-28T06": 24.842476397805132, + "2024-05-25T23": 25.325693899999997, + "2024-05-24T13": 24.985, + "2024-05-26T03": 25.3172148, + "2024-05-26T00": 25.3866993, + "2024-05-25T06": 25.706970369999997, + "2024-05-27T04": 25.22262492, + "2024-05-22T10": 27.483952199999997, + "2024-05-27T09": 25.052724472825133, + "2024-05-24T17": 24.88342981828412, + "2024-05-26T16": 24.915531079999997, + "2024-05-22T09": 27.274544000000002, + "2024-05-24T21": 25.4477095, + "2024-05-25T04": 25.989600000000003, + "2024-05-27T22": 25.802945425216933, + "2024-05-27T11": 25.2643264, + "2024-05-23T21": 25.950522499999998, + "2024-05-23T10": 26.74963435, + "2024-05-23T14": 26.5469856, + "2024-05-27T02": 25.105179200000002, + "2024-05-25T18": 25.5236175, + "2024-05-27T05": 24.989999039999997, + "2024-05-22T23": 27.267724, + "2024-05-28T01": 25.510575199999998, + "2024-05-22T04": 27.1526668, + "2024-05-22T15": 27.2420975, + "2024-05-24T03": 25.98734082, + "2024-05-24T08": 24.841634637277892, + "2024-05-21T22": 27.730955690000002, + "2024-05-21T16": 27.8580159, + "2024-05-21T23": 27.644193499999997, + "2024-05-24T02": 25.940139, + "2024-05-26T07": 25.25265306, + "2024-05-27T07": 24.905297200000003, + "2024-05-25T22": 25.3754316, + "2024-05-24T16": 24.9295252, + "2024-05-27T20": 25.823633, + "2024-05-22T02": 27.435060800000002, + "2024-05-24T06": 25.2688768, + "2024-05-24T11": 24.955018, + "2024-05-25T21": 25.464906, + "2024-05-27T15": 25.867734600000002, + "2024-05-21T19": 27.64787319, + "2024-05-22T19": 27.094309, + "2024-05-21T12": 27.993560000000002, + "2024-05-23T20": 25.20008575, + "2024-05-23T08": 27.2441892, + "2024-05-22T22": 27.3910392, + "2024-05-26T11": 25.157673950000003, + "2024-05-24T01": 25.989600000000003, + "2024-05-23T05": 27.369020680000002, + "2024-05-28T04": 24.80487921, + "2024-05-25T09": 25.6307696, + "2024-05-27T18": 25.95177217612285, + "2024-05-24T10": 24.98725, + "2024-05-25T19": 25.54461225, + "2024-05-24T07": 24.98400252, + "2024-05-26T04": 25.263476351902703, + "2024-05-26T09": 24.990999600000002, + "2024-05-23T02": 27.212841960000002, + "2024-05-27T06": 24.96548220885159, + "2024-05-28T08": 25.090002488596284, + "2024-05-24T15": 25.247370000000004, + "2024-05-25T20": 25.438638750000003, + "2024-05-27T08": 25.0269748, + "2024-05-23T22": 26.024205816412373, + "2024-05-26T15": 24.908084930538234, + "2024-05-24T20": 25.387461000000002, + "2024-05-21T20": 27.81384330424765, + "2024-05-25T13": 25.536424399999998, + "2024-05-22T01": 27.6366832, + "2024-05-25T17": 25.5243834, + "2024-05-27T10": 25.032016694296892, + "2024-05-21T21": 27.693906, + "2024-05-24T19": 25.232175599999998, + "2024-05-26T02": 25.267220299999998, + "2024-05-27T19": 25.773942, + "2024-05-25T11": 25.7661345, + "2024-05-27T17": 26.1530346, + "2024-05-21T18": 27.963571039999998, + "2024-05-26T06": 25.194795703582013, + "2024-05-23T00": 27.5254038, + "2024-05-22T00": 27.705012200000002, + "2024-05-24T05": 25.603910099999997, + "2024-05-23T15": 26.3360244, + "2024-05-22T13": 27.1870091, + "2024-05-21T10": 28.32014957079836, + "2024-05-22T12": 27.0653981, + "2024-05-23T04": 27.262087020000003, + "2024-05-26T08": 25.1494328, + "2024-05-26T13": 25.032334395836045, + "2024-05-28T05": 24.822871659999997, + "2024-05-22T18": 27.07879109532265, + "2024-05-22T06": 27.543939, + "2024-05-21T08": 28.48611634612221, + "2024-05-22T17": 27.545592, + "2024-05-23T19": 25.806236399999996, + "2024-05-25T07": 25.60101171, + "2024-05-26T22": 24.873548720000002, + "2024-05-25T16": 25.5614209, + "2024-05-26T05": 25.1644484, + "2024-05-24T04": 25.885496, + "2024-05-21T14": 27.8230425, + "2024-05-25T12": 25.558210799999998, + "2024-05-28T07": 24.889573799999997, + "2024-05-23T18": 25.69374448, + "2024-05-26T23": 24.9280288, + "2024-05-24T09": 24.8987905, + "2024-05-23T03": 27.3216822, + "2024-05-26T14": 25.05622426, + "2024-05-21T13": 27.824434, + "2024-05-22T14": 27.2526398, + "2024-05-25T14": 25.488481667618757, + "2024-05-25T00": 25.684091300000002, + "2024-05-23T23": 26.088516000000002, + "2024-05-21T11": 28.0524238, + "2024-05-23T13": 26.9205745, + "2024-05-22T11": 27.5050482, + "2024-05-21T15": 27.77187213066854, + "2024-05-28T00": 25.6334768, + "2024-05-27T23": 25.7183784, + "2024-05-28T02": 25.168361620000002, + "2024-05-26T21": 24.62768, + "2024-05-26T12": 25.1219584, + "2024-05-23T06": 27.482675, + "2024-05-22T07": 27.4250626, + "2024-05-27T12": 25.322262, + "2024-05-22T21": 27.0199989, + "2024-05-24T00": 26.090254100000003, + "2024-05-25T02": 26.38319442, + "2024-05-27T00": 24.937525, + "2024-05-26T20": 24.73639715284695, + "2024-05-26T17": 24.8965486, + "2024-05-27T13": 25.62584554, + "2024-05-23T12": 27.447695394110898, + "2024-05-25T10": 25.6230799, + "2024-05-21T09": 28.354328, + "2024-05-23T11": 27.0554655, + "2024-05-24T14": 25.125148470000003, + "2024-05-25T01": 26.064786, + "2024-05-27T21": 25.913800600000002, + "2024-05-27T03": 25.1151733, + "2024-05-27T01": 25.0577157, + "latest": 25.22, + "2024-05-28T09": 25.2140028, + "2024-05-28T10": 25.45679305, + "2024-05-28T11": 25.454265200000002, + "2024-05-28T12": 25.36361323732388, + "2024-05-28T13": 25.174799999999998, + "2024-05-28T14": 25.08114506, + "2024-05-28T15": 25.07440788, + "2024-05-29": 26.44028149557479, + "2024-05-28T20": 25.964529799999998, + "2024-05-28T22": 26.1159512, + "2024-05-28T21": 25.78118235, + "2024-05-28T19": 25.6783767, + "2024-05-29T02": 26.246201539999998, + "2024-05-28T17": 25.51446, + "2024-05-28T18": 25.285353750000002, + "2024-05-28T23": 26.2148096, + "2024-05-29T00": 26.29693296, + "2024-05-29T01": 26.0584311, + "2024-05-28T16": 25.31838775, + "2024-05-29T06": 26.6477172, + "2024-05-29T05": 26.518671, + "2024-05-29T03": 26.3320584, + "2024-05-29T07": 26.47138, + "2024-05-29T04": 26.468465, + "2024-05-29T08": 26.13384, + "2024-05-29T09": 26.274804919999998, + "2024-05-29T10": 26.365400729999998, + "2024-05-29T11": 26.3438937, + "2024-05-29T12": 26.3644017, + "2024-05-29T13": 26.4593456, + "2024-05-29T14": 26.5603308, + "2024-05-29T15": 26.28616608, + "2024-05-29T18": 26.6344064, + "2024-05-29T17": 26.67597, + "2024-05-29T23": 26.4991628, + "2024-05-29T19": 26.8836282, + "2024-05-29T22": 26.627705681059517, + "2024-05-29T20": 26.755630200000002, + "2024-05-29T16": 26.32981988, + "2024-05-29T21": 26.485280536144778, + "2024-05-30": 25.80837079109103, + "2024-05-30T00": 26.6469168, + "2024-05-30T05": 26.2539828, + "2024-05-30T02": 27.01666295905596, + "2024-05-30T08": 25.524676, + "2024-05-30T01": 26.780845989213738, + "2024-05-30T06": 25.919248, + "2024-05-30T07": 25.69206104, + "2024-05-30T03": 26.812786, + "2024-05-30T04": 26.7181675, + "2024-05-30T09": 25.53467, + "2024-05-30T10": 25.6169287, + "2024-05-30T11": 26.08285576, + "2024-05-30T12": 25.889352170088205, + "2024-05-30T13": 25.9334306, + "2024-05-30T14": 25.6731849, + "2024-05-30T15": 25.459812, + "2024-05-30T21": 25.134972, + "2024-05-30T20": 25.1352234, + "2024-05-30T18": 25.94956346293734, + "2024-05-30T22": 25.171187, + "2024-05-30T16": 25.5707912, + "2024-05-30T17": 26.24920944192767, + "2024-05-30T19": 25.53140352, + "2024-05-31": 24.803923654915867, + "2024-05-30T23": 25.111208, + "2024-05-31T03": 24.948021067930963, + "2024-05-31T07": 24.902527, + "2024-05-31T06": 24.882533000000002, + "2024-05-31T04": 24.94551978, + "2024-05-31T02": 24.823609225610355, + "2024-05-31T05": 24.7170257677887, + "2024-05-31T00": 24.8030532, + "2024-05-31T01": 24.7990468, + "2024-05-31T08": 24.8622903, + "2024-05-31T09": 24.74858262, + "2024-05-31T10": 24.78512, + "2024-05-31T11": 25.0946829, + "2024-05-31T12": 25.31258578759323, + "2024-05-31T13": 25.18137786, + "2024-05-31T14": 24.94177508, + "2024-06-01": 24.410443087686787, + "2024-06-01T08": 24.350140543974828, + "2024-06-01T02": 24.3453863, + "2024-06-01T05": 24.4109446, + "2024-05-31T21": 24.5412531, + "2024-06-01T00": 24.2951936, + "2024-05-31T18": 24.44656916, + "2024-05-31T15": 24.8093911, + "2024-05-31T23": 24.462268129999998, + "2024-05-31T22": 24.501790500000002, + "2024-06-01T01": 24.269463060000003, + "2024-06-01T07": 24.29658550802845, + "2024-06-01T04": 24.42317966, + "2024-05-31T19": 24.520590040000002, + "2024-06-01T06": 24.350747700000003, + "2024-05-31T20": 24.497304579999998, + "2024-05-31T17": 24.5101307, + "2024-05-31T16": 24.425199550000002, + "2024-06-01T03": 24.4024624, + "2024-06-01T09": 24.299226799648363, + "2024-06-01T10": 24.2186688, + "2024-06-02": 24.510115732853627, + "2024-06-01T13": 24.238166, + "2024-06-01T15": 24.429304938130958, + "2024-06-01T18": 24.53714249, + "2024-06-01T12": 24.183998732475864, + "2024-06-01T21": 24.598088200000003, + "2024-06-01T20": 24.5381416, + "2024-06-02T01": 24.799144799999997, + "2024-06-01T17": 24.465412, + "2024-06-01T11": 24.1487304, + "2024-06-02T00": 24.680239999999998, + "2024-06-01T23": 24.499648399999998, + "2024-06-01T14": 24.3434367, + "2024-06-01T22": 24.578598, + "2024-06-01T19": 24.4482217, + "2024-06-01T16": 24.4477323, + "2024-06-02T13": 24.712194399999998, + "2024-06-02T11": 24.462619200000002, + "2024-06-02T07": 24.6100497, + "2024-06-02T05": 24.729210000000002, + "2024-06-02T08": 24.552309599999997, + "2024-06-02T04": 24.689984900000002, + "2024-06-02T10": 24.331981000000003, + "2024-06-02T12": 24.718437440000002, + "2024-06-02T02": 24.7192184, + "2024-06-02T16": 24.5900659, + "2024-06-02T17": 24.3341725, + "2024-06-02T03": 24.714292277596893, + "2024-06-02T09": 24.334978780000004, + "2024-06-02T15": 24.699482399999997, + "2024-06-02T06": 24.7309608, + "2024-06-02T18": 23.97736488, + "2024-06-02T14": 24.721939799999998, + "2024-06-03": 24.21641889640882, + "2024-06-03T01": 24.37541344, + "2024-06-02T20": 24.174970379999998, + "2024-06-03T00": 24.000792299999997, + "2024-06-02T21": 24.187251238502828, + "2024-06-02T23": 24.1969266, + "2024-06-02T19": 24.215704300000002, + "2024-06-02T22": 24.1469536, + "2024-06-03T02": 24.56757627, + "2024-06-03T05": 24.775125999999997, + "2024-06-03T06": 25.12590912, + "2024-06-03T04": 24.5457552, + "2024-06-03T03": 24.5455096, + "2024-06-03T07": 25.173878400000003 + }, + "USD internet_computer": { + "2023-07-30": 4.279907775623287, + "2023-10-23": 3.3143166447512282, + "2023-07-27": 4.118355639085169, + "2023-07-10": 4.001156121085843, + "2023-08-20": 3.5686431000000005, + "2024-02-23": 12.49325050322646, + "2024-04-05": 16.956846258075295, + "2023-12-19": 9.734330989317224, + "2024-05-17": 12.828329365813074, + "2023-08-06": 4.0635903711084005, + "2023-12-02": 4.766244870636926, + "2023-10-31": 3.982639551922711, + "2023-08-29": 3.5916362329742286, + "2023-06-20": 4.008399061590649, + "2023-09-09": 3.275183522246639, + "2023-06-26": 4.252424269780994, + "2023-10-01": 3.2302586543349276, + "2024-03-07": 14.83544856573975, + "2023-10-12": 2.9112102862449016, + "2024-04-22": 15.148322794533183, + "2023-07-05": 4.25684602684021, + "2023-07-29": 4.328914639198354, + "2024-04-26": 13.430665172457191, + "2024-01-08": 12.87030947573068, + "2023-05-29": 4.937305590520293, + "2023-10-07": 3.097848277929073, + "2023-09-26": 2.946067269868756, + "2023-08-24": 3.600210579814528, + "2023-12-05": 5.036995315686549, + "2024-02-19": 14.215836528208596, + "2024-01-07": 11.965044290442483, + "2024-04-28": 13.659653799692688, + "2023-07-31": 4.248189433615685, + "2023-10-18": 3.0890518142715657, + "2024-05-19": 12.96921732204455, + "2024-05-12": 11.828616982361497, + "2024-04-29": 13.403271786522806, + "2023-08-25": 3.5334290389243437, + "2024-03-09": 14.870610537368847, + "2023-07-12": 4.160982304429303, + "2023-09-05": 3.286818423001235, + "2023-06-07": 4.241130564601254, + "2023-09-16": 3.029228847739154, + "2024-04-25": 13.720512468491858, + "2023-08-12": 4.038307960756543, + "2023-06-06": 4.33482418467153, + "2023-09-01": 3.3256624776571755, + "2023-09-08": 3.3125660738162113, + "2024-03-22": 13.28120307955829, + "2023-08-10": 4.034920623450214, + "2023-12-07": 4.960635305371006, + "2023-11-18": 4.234224857093973, + "2023-07-13": 4.335507577692133, + "2023-09-13": 2.927314795401917, + "2023-06-17": 3.987725731488678, + "2023-07-17": 4.083981529469867, + "2023-07-07": 4.095238141403014, + "2023-09-07": 3.3310318388884346, + "2024-03-26": 19.229947473426837, + "2024-05-14": 11.881558346942331, + "2024-02-22": 12.989147656045017, + "2024-04-15": 12.831152089504107, + "2023-12-30": 10.610094512505393, + "2023-09-17": 2.9691495139533783, + "2024-04-17": 12.092760598940648, + "2024-02-12": 13.060319083704062, + "2023-10-26": 3.5860609222035964, + "2024-01-03": 14.642313568417194, + "2024-05-07": 12.814071760576997, + "2023-06-01": 4.678608369171552, + "2024-01-22": 10.824278475979266, + "2023-06-12": 3.660791425878876, + "2023-10-03": 3.1117386411110264, + "2024-05-26": 12.224002637375312, + "2024-04-30": 12.857332504120583, + "2023-06-19": 3.9227926818645673, + "2023-07-09": 4.057725349212173, + "2023-12-24": 9.733558654893256, + "2023-09-24": 2.9551773, + "2024-01-16": 12.714885663243535, + "2023-10-17": 3.141283100521902, + "2024-04-24": 14.51062732817656, + "2024-03-18": 12.354013262454018, + "2024-02-17": 13.134256354904473, + "2023-12-27": 8.991081855997727, + "2023-07-23": 4.256018714448953, + "2023-09-03": 3.2503947533373747, + "2024-02-24": 12.40170608625468, + "2024-01-06": 12.179994207657892, + "2024-03-20": 11.239829732346228, + "2023-11-21": 4.5227318855298995, + "2023-12-25": 9.557217649226063, + "2023-09-22": 2.9105943764393096, + "2023-10-02": 3.2588180759252747, + "2024-03-27": 19.443716514599718, + "2024-05-06": 13.330609337292481, + "2023-08-30": 3.5383288675057685, + "2023-10-06": 3.082606221889145, + "2023-10-13": 2.9776040792499034, + "2023-06-28": 4.14999210304214, + "2024-02-05": 12.587891079493028, + "2024-03-01": 12.808467520154286, + "2023-07-15": 4.202328673706936, + "2023-06-25": 4.361386228488576, + "2023-12-10": 5.412936540790741, + "2023-11-23": 4.561824052005593, + "2023-08-04": 4.041969015726348, + "2024-05-13": 11.80374378995052, + "2024-01-13": 12.828049447012802, + "2024-03-28": 17.79815441520489, + "2023-08-05": 4.021022057987651, + "2024-02-09": 12.670178519784075, + "2023-10-09": 2.9503311541884054, + "2024-01-09": 13.042371794633803, + "2024-05-10": 12.230879697513242, + "2023-05-27": 4.907508839347454, + "2023-08-18": 3.4886055907668356, + "2023-11-05": 4.082285500161284, + "2024-04-18": 12.147761151315976, + "2023-10-22": 3.1931693728157997, + "2023-11-01": 3.855809760953365, + "2024-05-20": 12.713299756177014, + "2023-12-08": 5.123687931451004, + "2024-04-12": 15.094467189266773, + "2023-07-06": 4.239424618043362, + "2024-03-12": 14.390214444006586, + "2023-09-11": 2.985552242464509, + "2024-03-03": 13.320339162095017, + "2024-02-04": 12.75623787956231, + "2024-01-28": 12.647155320062593, + "2023-07-01": 4.167560894221482, + "2023-11-07": 4.1830395234021625, + "2023-11-25": 4.683059744114692, + "2023-06-04": 4.831431430557623, + "2024-02-25": 12.466548152973047, + "2023-12-01": 4.734017172955922, + "2023-07-14": 4.404974867030732, + "2024-01-26": 11.894951195387023, + "2023-08-03": 4.096202309257756, + "2024-02-28": 13.008946576516648, + "2023-09-15": 2.953796117444567, + "2023-07-18": 4.04830301678437, + "2023-12-21": 8.914799493926648, + "2023-07-20": 4.089946208803239, + "2024-03-06": 14.392416762262592, + "2023-09-30": 3.1631328186505208, + "2023-12-12": 5.537087941365962, + "2024-02-13": 13.104278583712816, + "2023-09-20": 3.0012691029907144, + "2023-09-19": 3.0258920938895257, + "2023-09-29": 3.13273871802311, + "2023-09-12": 3.004424646760813, + "2023-06-13": 3.8395048647559675, + "2023-10-04": 3.164463473113078, + "2023-07-08": 4.04135532574583, + "2024-04-16": 12.12571988359877, + "2024-03-02": 13.158238350864204, + "2023-06-27": 4.33027332440636, + "2023-10-08": 3.0951393359422616, + "2023-11-20": 4.53537956079733, + "2023-12-20": 9.30452559555571, + "2023-12-31": 13.46437342343216, + "2023-11-06": 4.1806421702305485, + "2023-08-22": 3.4594655048155802, + "2023-06-09": 4.243314805128733, + "2024-03-17": 12.441248811942957, + "2023-09-18": 2.989183059228988, + "2024-04-01": 18.15814014021385, + "2024-05-21": 13.533999327325278, + "2024-01-19": 11.180067049477726, + "2023-11-11": 4.405548501404082, + "2023-09-23": 2.939999963221061, + "2023-11-19": 4.454481450429403, + "2023-07-02": 4.150928772605535, + "2023-08-15": 4.029604637222695, + "2024-01-25": 11.371101803382093, + "2024-03-13": 14.478194598649075, + "2024-01-21": 11.312185357236745, + "2024-02-01": 11.591886385995167, + "2023-06-15": 3.8690352858954267, + "2024-03-16": 12.746030746744662, + "2023-11-27": 4.570772254617135, + "2024-01-10": 12.790147311915733, + "2024-03-15": 12.790617697571053, + "2023-06-21": 4.190846659984385, + "2024-01-02": 13.511294760747518, + "2023-07-11": 4.107127810928171, + "2023-10-25": 3.590688804969706, + "2024-01-01": 13.350671749714662, + "2024-02-14": 13.509066432301148, + "2023-09-04": 3.2468278075284145, + "2023-09-06": 3.3160806496650994, + "2024-04-03": 18.249897134639607, + "2023-11-28": 4.584269388292037, + "2023-12-03": 4.752509309546958, + "2023-08-02": 4.1524287791753425, + "2023-08-27": 3.5517960199298426, + "2023-10-20": 3.101337768091014, + "2023-10-10": 2.9464826950830765, + "2024-05-03": 13.495740637517823, + "2024-03-08": 14.570846183516586, + "2024-04-11": 15.732327139989646, + "2023-06-22": 4.229907411353233, + "2024-01-14": 13.27516718042629, + "2023-12-15": 6.885621030272613, + "2023-10-19": 3.0023532160158446, + "2024-02-08": 12.355002688294531, + "2023-11-08": 4.186670201094071, + "2023-11-12": 4.53334763242407, + "2023-12-22": 9.571730694669066, + "2023-05-31": 4.740844671129683, + "2024-03-23": 13.399111106550878, + "2023-09-27": 2.961926073768249, + "2024-03-04": 13.285008251575288, + "2023-09-10": 3.1257231119444446, + "2024-04-13": 13.231977964267479, + "2024-02-29": 13.057905539740876, + "2023-07-21": 4.085794093485452, + "2023-06-30": 4.089140706992455, + "2023-12-29": 9.43637571559805, + "2023-12-04": 5.008574590029187, + "2024-04-10": 15.810020579404151, + "2024-05-08": 12.27315848375915, + "2023-09-21": 2.934856046259024, + "2023-06-02": 4.800056904033156, + "2024-04-21": 15.322984448676129, + "2023-07-22": 4.110411000000001, + "2023-10-11": 2.922482214312073, + "2024-03-21": 12.234342411857314, + "2023-07-19": 4.088039702210595, + "2024-05-05": 12.987029895291487, + "2024-05-23": 12.551656337773643, + "2024-04-08": 17.794501264284282, + "2024-05-18": 13.303541640732249, + "2023-06-14": 3.910705655519233, + "2023-10-05": 3.1125907584715677, + "2023-10-16": 3.162629499345717, + "2024-05-22": 13.082766068454356, + "2024-02-10": 12.978462663247651, + "2024-04-07": 17.156587815950623, + "2024-02-20": 13.842004649977573, + "2023-11-17": 4.380711914574175, + "2023-12-11": 5.318872241559694, + "2023-11-26": 4.644709721264216, + "2023-11-16": 4.688280000232583, + "2023-06-29": 4.060545518914587, + "2023-10-27": 3.50044168608247, + "2023-06-11": 3.693124508494445, + "2024-02-02": 12.530591153325394, + "2023-09-14": 2.940113387337793, + "2024-01-27": 12.49838912798654, + "2024-03-30": 18.045793539360115, + "2023-11-22": 4.289809609374151, + "2023-09-28": 3.0208858868179633, + "2023-06-03": 4.810557264966683, + "2024-01-18": 12.048685967368522, + "2023-08-26": 3.5332872874484833, + "2024-02-15": 13.44280936627919, + "2023-10-28": 3.620545397460307, + "2024-03-24": 14.196011323395622, + "2024-04-27": 13.004302092260234, + "2023-12-06": 4.944037706909808, + "2024-01-30": 12.044662552316598, + "2023-11-14": 4.428344727187264, + "2023-08-09": 4.090838596029733, + "2024-05-15": 12.096190681739959, + "2023-11-10": 4.120554280127099, + "2024-01-23": 10.226136356658591, + "2024-01-31": 11.65211801234856, + "2024-05-11": 11.942088215147734, + "2024-01-11": 13.257368404161515, + "2024-02-18": 13.5432446554403, + "2023-06-16": 3.97137564995754, + "2023-10-30": 3.9998646313119797, + "2023-12-17": 10.833512903389, + "2024-02-26": 12.480779027901171, + "2023-07-16": 4.141366309911157, + "2024-01-05": 13.377483021412573, + "2023-08-23": 3.4377795918336957, + "2024-03-11": 14.42729331662366, + "2023-08-01": 4.15121239867749, + "2024-03-14": 14.056753219192089, + "2024-02-21": 13.004399054193621, + "2023-08-28": 3.473050685128861, + "2023-07-04": 4.440622354614041, + "2023-12-13": 5.776156087353377, + "2024-02-27": 13.017002785576485, + "2023-08-13": 4.058205160696864, + "2024-03-31": 18.086654484361652, + "2023-12-09": 5.405924270550281, + "2024-04-02": 17.520914346910356, + "2024-02-06": 12.180385697963954, + "2024-04-09": 17.029267133697065, + "2023-11-04": 3.9582354518315963, + "2024-04-20": 14.58362918194849, + "2024-01-15": 12.993491189940107, + "2023-07-03": 4.458870512172235, + "2023-12-28": 9.795609587490725, + "2023-05-30": 4.8883217317514465, + "2024-05-25": 12.344500724978113, + "2024-02-07": 12.01092291135772, + "2023-09-25": 2.968300473333863, + "2024-03-19": 11.405844769336637, + "2024-03-10": 14.514030414022889, + "2024-05-02": 13.391260000989547, + "2023-09-02": 3.260087978429507, + "2024-01-12": 12.713365763141507, + "2024-04-19": 13.421608658988408, + "2023-11-29": 4.5977615656023625, + "2023-10-15": 3.1574527340746856, + "2024-05-28": 12.377489925742639, + "2023-11-30": 4.519155860120196, + "2024-01-24": 10.815879462047318, + "2023-08-11": 4.0247220100204455, + "2024-02-11": 13.23447369530806, + "2023-06-08": 4.1794179, + "2023-11-15": 4.509967832953994, + "2023-12-16": 9.157703762836777, + "2024-03-29": 17.50363915275211, + "2024-04-04": 17.939934153484018, + "2023-06-10": 3.7317074115577022, + "2023-07-28": 4.262845966561036, + "2024-01-20": 11.248030144533342, + "2023-10-21": 3.1912439910773047, + "2023-08-16": 3.7678490101812354, + "2024-05-24": 12.226908110229214, + "2023-11-03": 3.904618957254365, + "2023-08-31": 3.450219774985108, + "2024-05-27": 12.180206641150582, + "2024-01-04": 14.291410270219828, + "2023-07-26": 4.028499129495967, + "2023-11-13": 4.7163979326193175, + "2023-10-24": 3.5632494438833557, + "2024-03-25": 16.910121500696636, + "2023-08-07": 4.098699713166556, + "2023-10-29": 3.8902536728845583, + "2024-01-29": 12.348713382681817, + "2024-05-04": 13.316912418204337, + "2023-06-05": 4.320808301957868, + "2023-11-02": 4.040350851044292, + "2023-12-18": 9.851275209397029, + "2023-11-24": 4.591502704285729, + "2023-08-21": 3.520498640166785, + "2023-07-25": 4.010582387623268, + "2024-05-16": 12.240331798108363, + "2023-08-14": 4.078161493312543, + "2024-05-01": 12.83734036676419, + "2024-03-05": 15.295928859080844, + "2024-04-06": 16.983841940152335, + "2023-12-23": 9.132162854253242, + "2024-02-03": 13.161493302644336, + "2024-02-16": 13.368188088030573, + "2023-05-28": 4.9363758103312305, + "2023-12-14": 6.420932832853205, + "2023-06-24": 4.298025697204805, + "2023-12-26": 9.31802217954971, + "2023-11-09": 4.309859568915828, + "2023-08-19": 3.5081061256083412, + "2024-05-09": 12.024671864993378, + "2024-01-17": 12.335328891329272, + "2023-06-23": 4.271965528566005, + "2023-06-18": 3.977971834866136, + "2024-04-23": 14.766963319683283, + "2023-08-08": 4.103478941453067, + "2023-08-17": 3.7261876680819954, + "2024-04-14": 12.435061062882212, + "2023-07-24": 4.0384740874311245, + "2023-10-14": 3.0972771075336696, + "2024-05-22T20": 12.873455, + "2024-05-25T08": 12.3651757, + "2024-05-22T05": 13.09911756, + "2024-05-28T03": 12.332249820000001, + "2024-05-22T16": 13.103054512, + "2024-05-25T05": 12.366096054444965, + "2024-05-24T22": 12.355270019999999, + "2024-05-27T14": 12.188218159999998, + "2024-05-22T03": 13.232220649999999, + "2024-05-23T17": 12.280547886476391, + "2024-05-24T23": 12.378771420000001, + "2024-05-26T19": 12.09946276, + "2024-05-26T18": 12.064840718280182, + "2024-05-26T10": 12.21647823, + "2024-05-27T16": 12.509603219999999, + "2024-05-24T12": 12.19765392, + "2024-05-26T01": 12.4681981831593, + "2024-05-21T17": 13.53314622, + "2024-05-23T07": 12.84416028, + "2024-05-22T08": 13.180363400000001, + "2024-05-23T09": 12.64682517, + "2024-05-24T18": 12.322835500000002, + "2024-05-23T01": 12.814461289999999, + "2024-05-25T15": 12.3327666, + "2024-05-23T16": 12.204773665920548, + "2024-05-25T03": 12.42090534, + "2024-05-28T06": 12.12132384, + "2024-05-25T23": 12.31690577, + "2024-05-24T13": 12.198676399999998, + "2024-05-26T03": 12.3386426, + "2024-05-26T00": 12.31239918, + "2024-05-25T06": 12.347182720000001, + "2024-05-27T04": 12.11757428, + "2024-05-22T10": 13.168102379999999, + "2024-05-27T09": 12.059718336, + "2024-05-24T17": 12.1598907, + "2024-05-26T16": 12.111910860000002, + "2024-05-22T09": 13.1093776, + "2024-05-24T21": 12.3488885, + "2024-05-25T04": 12.427027200000001, + "2024-05-27T22": 12.32441626, + "2024-05-27T11": 12.01454636, + "2024-05-23T21": 12.2048395, + "2024-05-23T10": 12.6015879, + "2024-05-23T14": 12.271849823913675, + "2024-05-27T02": 12.165817930000001, + "2024-05-25T18": 12.3149205, + "2024-05-27T05": 12.037219359999998, + "2024-05-22T23": 12.80825678410166, + "2024-05-28T01": 12.318137599999998, + "2024-05-22T04": 13.09846246, + "2024-05-22T15": 13.01122565, + "2024-05-24T03": 12.37892256, + "2024-05-24T08": 12.023512169999998, + "2024-05-21T22": 13.34812792, + "2024-05-21T16": 13.549971006, + "2024-05-21T23": 13.309204479999998, + "2024-05-24T02": 12.317317639999999, + "2024-05-26T07": 12.30244641, + "2024-05-27T07": 11.962937700000001, + "2024-05-25T22": 12.279789240000001, + "2024-05-24T16": 12.142835189659419, + "2024-05-27T20": 12.30843258, + "2024-05-22T02": 13.197624, + "2024-05-24T06": 12.123663239999999, + "2024-05-24T11": 12.1706932, + "2024-05-25T21": 12.25224906, + "2024-05-27T15": 12.339379, + "2024-05-21T19": 13.335397866, + "2024-05-22T19": 12.894091672, + "2024-05-21T12": 13.57287752, + "2024-05-23T20": 11.923051, + "2024-05-23T08": 12.657654299999999, + "2024-05-22T22": 12.888842400000001, + "2024-05-26T11": 12.256482100000001, + "2024-05-24T01": 12.29508, + "2024-05-23T05": 12.8770113, + "2024-05-28T04": 12.088200124227722, + "2024-05-25T09": 12.37254428, + "2024-05-27T18": 12.345518420000001, + "2024-05-24T10": 12.16779126, + "2024-05-25T19": 12.3069225, + "2024-05-24T07": 12.10361004, + "2024-05-26T04": 12.324106341187154, + "2024-05-26T09": 12.200118, + "2024-05-23T02": 12.80133984, + "2024-05-27T06": 11.99324048, + "2024-05-28T08": 12.096394557559542, + "2024-05-24T15": 12.304976333368492, + "2024-05-25T20": 12.27393075, + "2024-05-27T08": 12.015786199999999, + "2024-05-23T22": 12.30436656, + "2024-05-26T15": 12.237652999999998, + "2024-05-24T20": 12.299769900000001, + "2024-05-21T20": 13.38858031, + "2024-05-25T13": 12.261756000060233, + "2024-05-22T01": 13.22141324, + "2024-05-25T17": 12.344083704, + "2024-05-27T10": 12.04764645, + "2024-05-21T21": 13.25108412, + "2024-05-24T19": 12.267195990000001, + "2024-05-26T02": 12.33964249, + "2024-05-27T19": 12.264629072933161, + "2024-05-25T11": 12.4021394, + "2024-05-27T17": 12.4171971, + "2024-05-21T18": 13.61046384, + "2024-05-26T06": 12.25483194, + "2024-05-23T00": 12.84418897, + "2024-05-22T00": 13.26561176, + "2024-05-24T05": 12.1553109, + "2024-05-23T15": 12.21220088, + "2024-05-22T13": 12.895581329999999, + "2024-05-21T10": 13.603229144657345, + "2024-05-22T12": 12.92080309, + "2024-05-23T04": 12.897998280000001, + "2024-05-26T08": 12.269844500000001, + "2024-05-26T13": 12.1511104, + "2024-05-28T05": 12.122658359999999, + "2024-05-22T18": 12.873455, + "2024-05-22T06": 13.17909996, + "2024-05-21T08": 13.493160410351674, + "2024-05-22T17": 13.05591072, + "2024-05-23T19": 12.12983028, + "2024-05-25T07": 12.34418389, + "2024-05-26T22": 12.12112633487664, + "2024-05-25T16": 12.325736558540925, + "2024-05-26T05": 12.2703178, + "2024-05-24T04": 12.36107392, + "2024-05-21T14": 13.636590000000002, + "2024-05-25T12": 12.31313802, + "2024-05-28T07": 12.09807144, + "2024-05-23T18": 12.147369240000002, + "2024-05-26T23": 12.063206880000001, + "2024-05-24T09": 12.0985532, + "2024-05-23T03": 12.837393180000001, + "2024-05-26T14": 12.16425409, + "2024-05-21T13": 13.6062782, + "2024-05-22T14": 12.96149945, + "2024-05-25T14": 12.27414075, + "2024-05-25T00": 12.408145470000001, + "2024-05-23T23": 12.2745968, + "2024-05-21T11": 13.59232908, + "2024-05-23T13": 12.373755164048314, + "2024-05-22T11": 13.09664218, + "2024-05-21T15": 13.50975688, + "2024-05-28T00": 12.3271304, + "2024-05-27T23": 12.370599960000002, + "2024-05-28T02": 12.23524538049672, + "2024-05-26T21": 12.043975000000001, + "2024-05-26T12": 12.219513950928619, + "2024-05-23T06": 12.84989946, + "2024-05-22T07": 13.16562976, + "2024-05-27T12": 12.008588099999999, + "2024-05-22T21": 12.88623033, + "2024-05-24T00": 12.36749278507521, + "2024-05-25T02": 12.447261, + "2024-05-27T00": 12.051971, + "2024-05-26T20": 12.06963303, + "2024-05-26T17": 12.0834714, + "2024-05-27T13": 12.150340459999999, + "2024-05-23T12": 12.617814240000001, + "2024-05-25T10": 12.38865416, + "2024-05-21T09": 13.5292936, + "2024-05-23T11": 12.6346795, + "2024-05-24T14": 12.31624925, + "2024-05-25T01": 12.4155164, + "2024-05-27T21": 12.337526500000001, + "2024-05-27T03": 12.14782855, + "2024-05-27T01": 12.10606512, + "latest": 12.01, + "2024-05-28T09": 12.17544636, + "2024-05-28T10": 12.26309325, + "2024-05-28T11": 12.2176477, + "2024-05-28T12": 12.112753750000001, + "2024-05-28T13": 12.059928, + "2024-05-28T14": 12.005103169999998, + "2024-05-28T15": 11.99671248, + "2024-05-29": 12.167217775877425, + "2024-05-28T20": 12.211021460000001, + "2024-05-28T22": 12.14781372, + "2024-05-28T21": 12.148085164383192, + "2024-05-28T19": 12.13605427, + "2024-05-29T02": 12.06667942, + "2024-05-28T17": 12.091895999999998, + "2024-05-28T18": 12.006673343536242, + "2024-05-28T23": 12.10436864, + "2024-05-29T00": 12.08172672, + "2024-05-29T01": 12.039514538999999, + "2024-05-28T16": 12.038364219155204, + "2024-05-29T06": 12.296203569, + "2024-05-29T05": 12.2655096, + "2024-05-29T03": 12.14011782, + "2024-05-29T07": 12.155857480000002, + "2024-05-29T04": 12.174010298538631, + "2024-05-29T08": 12.053934, + "2024-05-29T09": 12.19776772, + "2024-05-29T10": 12.22113399, + "2024-05-29T11": 12.217915050119617, + "2024-05-29T12": 12.178175699999999, + "2024-05-29T13": 12.188585482, + "2024-05-29T14": 12.184976440000002, + "2024-05-29T15": 12.132230400000001, + "2024-05-29T18": 12.168307200000001, + "2024-05-29T17": 12.181073975120066, + "2024-05-29T23": 12.0944692, + "2024-05-29T19": 12.16406752, + "2024-05-29T22": 12.170475759999999, + "2024-05-29T20": 12.118961700000002, + "2024-05-29T16": 12.11863237, + "2024-05-29T21": 12.116776087164302, + "2024-05-30": 12.121133854044432, + "2024-05-30T00": 12.081999719999999, + "2024-05-30T05": 12.1179913, + "2024-05-30T02": 12.14129124, + "2024-05-30T08": 11.8298978, + "2024-05-30T01": 12.05687471427862, + "2024-05-30T06": 12.0383616, + "2024-05-30T07": 11.9625786, + "2024-05-30T03": 12.1494032, + "2024-05-30T04": 12.163508180000001, + "2024-05-30T09": 11.9598198, + "2024-05-30T10": 12.00887235, + "2024-05-30T11": 12.098192520000001, + "2024-05-30T12": 12.1912392, + "2024-05-30T13": 12.2286584, + "2024-05-30T14": 12.24336546, + "2024-05-30T15": 12.1931208, + "2024-05-30T21": 12.0235948, + "2024-05-30T20": 12.0677067, + "2024-05-30T18": 12.231985244898125, + "2024-05-30T22": 11.96681015, + "2024-05-30T16": 12.230895292, + "2024-05-30T17": 12.255341199999998, + "2024-05-30T19": 12.16880922, + "2024-05-31": 11.865019306282694, + "2024-05-30T23": 11.98080525, + "2024-05-31T03": 11.957329793814568, + "2024-05-31T07": 11.8484444, + "2024-05-31T06": 11.8794351, + "2024-05-31T04": 11.96249472, + "2024-05-31T02": 11.92698856, + "2024-05-31T05": 11.85413781, + "2024-05-31T00": 11.9066652, + "2024-05-31T01": 11.927436728, + "2024-05-31T08": 11.86332123, + "2024-05-31T09": 11.81498154, + "2024-05-31T10": 11.845273666311435, + "2024-05-31T11": 11.92672026, + "2024-05-31T12": 11.99567817, + "2024-05-31T13": 11.908612080000001, + "2024-05-31T14": 11.83924778, + "2024-06-01": 11.862422304981063, + "2024-06-01T08": 12.00902423, + "2024-06-01T02": 11.87599312, + "2024-06-01T05": 11.99963298, + "2024-05-31T21": 11.90805126, + "2024-06-01T00": 11.876873219999998, + "2024-05-31T18": 11.82421604, + "2024-05-31T15": 11.79819936, + "2024-05-31T23": 11.87899009, + "2024-05-31T22": 11.91528165, + "2024-06-01T01": 11.86700221, + "2024-06-01T07": 11.972433276739466, + "2024-06-01T04": 11.96178233, + "2024-05-31T19": 11.85732764, + "2024-06-01T06": 11.99052, + "2024-05-31T20": 11.894095207169755, + "2024-05-31T17": 11.794377618184674, + "2024-05-31T16": 11.70950761, + "2024-06-01T03": 11.9364432, + "2024-06-01T09": 12.041514759999998, + "2024-06-01T10": 12.1043388, + "2024-06-02": 12.063223226202831, + "2024-06-01T13": 12.0641325, + "2024-06-01T15": 12.10975678, + "2024-06-01T18": 12.07824079, + "2024-06-01T12": 12.05350432, + "2024-06-01T21": 12.08223723, + "2024-06-01T20": 12.07424435, + "2024-06-02T01": 12.150272, + "2024-06-01T17": 12.0843248, + "2024-06-01T11": 12.03539952, + "2024-06-02T00": 12.081327199999999, + "2024-06-01T23": 12.06897443, + "2024-06-01T14": 12.097801475351307, + "2024-06-01T22": 12.0694904, + "2024-06-01T19": 12.053317715734922, + "2024-06-01T16": 12.08599173, + "2024-06-02T13": 12.04831896, + "2024-06-02T11": 11.98848213, + "2024-06-02T07": 12.03524355, + "2024-06-02T05": 12.131236410484872, + "2024-06-02T08": 12.02333696, + "2024-06-02T04": 12.098192520000001, + "2024-06-02T10": 11.960142939999999, + "2024-06-02T12": 12.05243669, + "2024-06-02T02": 12.140793160000001, + "2024-06-02T16": 11.96230268, + "2024-06-02T17": 11.912251999999999, + "2024-06-02T03": 12.122686949999999, + "2024-06-02T09": 11.96713776, + "2024-06-02T15": 12.01402008, + "2024-06-02T06": 12.093711599999999, + "2024-06-02T18": 11.819315430525767, + "2024-06-02T14": 12.0611889, + "2024-06-03": 11.861970635986408, + "2024-06-03T01": 11.93387944, + "2024-06-02T20": 11.81414382, + "2024-06-03T00": 11.832538844977732, + "2024-06-02T21": 11.849754160483037, + "2024-06-02T23": 11.86558912, + "2024-06-02T19": 11.802032689999999, + "2024-06-02T22": 11.8535956, + "2024-06-03T02": 12.027585054042438, + "2024-06-03T05": 12.028778399999998, + "2024-06-03T06": 12.049283520000001, + "2024-06-03T04": 11.95506204, + "2024-06-03T03": 11.98992177, + "2024-06-03T07": 12.049283520000001 + }, + "USD iota": { + "2023-07-30": 0.17954915345645908, + "2023-10-23": 0.1521001552807665, + "2023-07-27": 0.17421488923694084, + "2023-07-10": 0.1813870005331919, + "2023-08-20": 0.14628318494341422, + "2024-02-23": 0.2689314419288995, + "2024-04-05": 0.30757046428930274, + "2023-12-19": 0.27147638934187013, + "2024-05-17": 0.21182961589637628, + "2023-08-06": 0.17005548546865334, + "2023-12-02": 0.23851133476109923, + "2023-10-31": 0.16398808258794695, + "2023-08-29": 0.1491431887247483, + "2023-06-20": 0.15830506161945643, + "2023-09-09": 0.17824442476226207, + "2023-06-26": 0.18104110313215652, + "2023-10-01": 0.15115089874950313, + "2024-03-07": 0.34983434421528015, + "2023-10-12": 0.14094021853544167, + "2024-04-22": 0.23773495956295917, + "2023-07-05": 0.18559066850268371, + "2023-07-29": 0.17515479963615363, + "2024-04-26": 0.23921329417117057, + "2024-01-08": 0.24038827367687335, + "2023-05-29": 0.2024418481308841, + "2023-10-07": 0.15414733511500514, + "2023-09-26": 0.1505573551494869, + "2023-08-24": 0.14654094711738475, + "2023-12-05": 0.3303249428244708, + "2024-02-19": 0.27386019149428675, + "2024-01-07": 0.24762019861379886, + "2024-04-28": 0.23451767826609934, + "2023-07-31": 0.17419815603518393, + "2023-10-18": 0.14849175665070607, + "2024-05-19": 0.21552928588436626, + "2024-05-12": 0.21018607698259437, + "2024-04-29": 0.22888771929704227, + "2023-08-25": 0.1452644074989759, + "2024-03-09": 0.33509025012036475, + "2023-07-12": 0.1806200901732393, + "2023-09-05": 0.1712247223102557, + "2023-06-07": 0.18720073749844127, + "2023-09-16": 0.16099018350353347, + "2024-04-25": 0.23979461169914684, + "2023-08-12": 0.1709454187200407, + "2023-06-06": 0.18488661742038764, + "2023-09-01": 0.15633194032679698, + "2023-09-08": 0.18120094915690743, + "2024-03-22": 0.32672705550025366, + "2023-08-10": 0.17410766280948756, + "2023-12-07": 0.29005883117929143, + "2023-11-18": 0.18196336479663208, + "2023-07-13": 0.1805814773508043, + "2023-09-13": 0.160601493669235, + "2023-06-17": 0.1577133894009764, + "2023-07-17": 0.1895406109534092, + "2023-07-07": 0.17948128991000942, + "2023-09-07": 0.17294893646372594, + "2024-03-26": 0.3440987950726322, + "2024-05-14": 0.20761919122700845, + "2024-02-22": 0.27616053029228443, + "2024-04-15": 0.23823670304737699, + "2023-12-30": 0.29919741440580583, + "2023-09-17": 0.15718353846945932, + "2024-04-17": 0.2211263509746299, + "2024-02-12": 0.25207385670998983, + "2023-10-26": 0.15645353690981284, + "2024-01-03": 0.30147514852493956, + "2024-05-07": 0.22673616564320914, + "2023-06-01": 0.20094565793198207, + "2024-01-22": 0.22536188358064366, + "2023-06-12": 0.15843582283682398, + "2023-10-03": 0.15102405809198863, + "2024-05-26": 0.23086355346368842, + "2024-04-30": 0.22438097474783794, + "2023-06-19": 0.15830819292907708, + "2023-07-09": 0.1814557787296486, + "2023-12-24": 0.29125469694811534, + "2023-09-24": 0.15073345833463755, + "2024-01-16": 0.24269905395480618, + "2023-10-17": 0.14778996997301422, + "2024-04-24": 0.25264468045251604, + "2024-03-18": 0.3278606141534457, + "2024-02-17": 0.2706057269609996, + "2023-12-27": 0.27578133540479055, + "2023-07-23": 0.18402030851841755, + "2023-09-03": 0.16736462879195302, + "2024-02-24": 0.2644282956203644, + "2024-01-06": 0.2528102791132086, + "2024-03-20": 0.28311961679920156, + "2023-11-21": 0.18426991882065594, + "2023-12-25": 0.2774307286893328, + "2023-09-22": 0.1474262160896156, + "2023-10-02": 0.15753940717817722, + "2024-03-27": 0.36484018713702143, + "2024-05-06": 0.22793725755968336, + "2023-08-30": 0.15616445850466598, + "2023-10-06": 0.15171353945451269, + "2023-10-13": 0.13874138525658739, + "2023-06-28": 0.18384339870588565, + "2024-02-05": 0.240256516560178, + "2024-03-01": 0.2887281716623338, + "2023-07-15": 0.18852497686658165, + "2023-06-25": 0.1808146789840113, + "2023-12-10": 0.2887030086304647, + "2023-11-23": 0.17810817484079194, + "2023-08-04": 0.1696588467200441, + "2024-05-13": 0.2069317005856808, + "2024-01-13": 0.24608781190353843, + "2024-03-28": 0.34892560157616304, + "2023-08-05": 0.16978798904986808, + "2024-02-09": 0.24507208787571688, + "2023-10-09": 0.15542698747736888, + "2024-01-09": 0.24990673344148, + "2024-05-10": 0.22681881649046842, + "2023-05-27": 0.1934705327386361, + "2023-08-18": 0.1436527859060388, + "2023-11-05": 0.16967653352664439, + "2024-04-18": 0.21613670429440018, + "2023-10-22": 0.14865701286623492, + "2023-11-01": 0.15912965755821648, + "2024-05-20": 0.20522854224006556, + "2023-12-08": 0.2939677680956426, + "2024-04-12": 0.3064572657350357, + "2023-07-06": 0.18342457965445041, + "2024-03-12": 0.3894190924474034, + "2023-09-11": 0.17138672349081813, + "2024-03-03": 0.3343846828500802, + "2024-02-04": 0.2481955810266691, + "2024-01-28": 0.25052240979664603, + "2023-07-01": 0.1821272625167954, + "2023-11-07": 0.17611966729081507, + "2023-11-25": 0.18063826720349443, + "2023-06-04": 0.20727132231943426, + "2024-02-25": 0.27296868330086876, + "2023-12-01": 0.23551547331801148, + "2023-07-14": 0.1938491055135312, + "2024-01-26": 0.24267265191435075, + "2023-08-03": 0.17338561916195122, + "2024-02-28": 0.28937487595444933, + "2023-09-15": 0.16684248130474713, + "2023-07-18": 0.19340318488114538, + "2023-12-21": 0.27975711648069285, + "2023-07-20": 0.1842176402578946, + "2024-03-06": 0.3390279322114661, + "2023-09-30": 0.15192971321602608, + "2023-12-12": 0.27280482303361286, + "2024-02-13": 0.25812196514705366, + "2023-09-20": 0.14916931217507967, + "2023-09-19": 0.14786953919494616, + "2023-09-29": 0.1527669085117792, + "2023-09-12": 0.1623211475619102, + "2023-06-13": 0.15851995919804687, + "2023-10-04": 0.15202990387949822, + "2023-07-08": 0.18216040437550862, + "2024-04-16": 0.22034195099354661, + "2024-03-02": 0.3149475901828805, + "2023-06-27": 0.18003930543893681, + "2023-10-08": 0.15488017485991804, + "2023-11-20": 0.18708555542256622, + "2023-12-20": 0.26469937095496004, + "2023-12-31": 0.3208197187443027, + "2023-11-06": 0.17308880834225301, + "2023-08-22": 0.14313288630097024, + "2023-06-09": 0.1799335757008272, + "2024-03-17": 0.32266908468704025, + "2023-09-18": 0.14886724470683962, + "2024-04-01": 0.351848375418717, + "2024-05-21": 0.23183509917473447, + "2024-01-19": 0.2309444336837815, + "2023-11-11": 0.1850633301089714, + "2023-09-23": 0.1483894690510569, + "2023-11-19": 0.18010312107756501, + "2023-07-02": 0.1858853547592877, + "2023-08-15": 0.16858461541621236, + "2024-01-25": 0.2182843497437415, + "2024-03-13": 0.3927990515483998, + "2024-01-21": 0.22806098852264106, + "2024-02-01": 0.23969966107914684, + "2023-06-15": 0.15327783207544007, + "2024-03-16": 0.3567686712441136, + "2023-11-27": 0.1773949295403011, + "2024-01-10": 0.23514437224574675, + "2024-03-15": 0.3907321013629125, + "2023-06-21": 0.16460462147942917, + "2024-01-02": 0.3149921372494199, + "2023-07-11": 0.1784979642104819, + "2023-10-25": 0.15364662810028548, + "2024-01-01": 0.311587282868848, + "2024-02-14": 0.2612397346896157, + "2023-09-04": 0.16775581314755536, + "2023-09-06": 0.16982843331930733, + "2024-04-03": 0.29898580475700653, + "2023-11-28": 0.17094983660443738, + "2023-12-03": 0.31056791192230354, + "2023-08-02": 0.17617484961082736, + "2023-08-27": 0.14819610096630734, + "2023-10-20": 0.14079744130868244, + "2023-10-10": 0.1492462605672876, + "2024-05-03": 0.21858576019164244, + "2024-03-08": 0.3457945250477699, + "2024-04-11": 0.3024648455250955, + "2023-06-22": 0.17198201927029755, + "2024-01-14": 0.249057779166957, + "2023-12-15": 0.29332707190298235, + "2023-10-19": 0.14203903671526408, + "2024-02-08": 0.25046243917445754, + "2023-11-08": 0.17622494461119242, + "2023-11-12": 0.1898650720461127, + "2023-12-22": 0.2831479009757242, + "2023-05-31": 0.2025530536356222, + "2024-03-23": 0.3073580092982942, + "2023-09-27": 0.14903753527709532, + "2024-03-04": 0.3238233036311746, + "2023-09-10": 0.17467808370874421, + "2024-04-13": 0.26302477776786715, + "2024-02-29": 0.29085124066326745, + "2023-07-21": 0.18338757986691737, + "2023-06-30": 0.17784918256946397, + "2023-12-29": 0.28319271199330226, + "2023-12-04": 0.3264733991917258, + "2024-04-10": 0.3032448675285268, + "2024-05-08": 0.21844035773576373, + "2023-09-21": 0.1486124561545926, + "2023-06-02": 0.2002534004451409, + "2024-04-21": 0.2441528282818076, + "2023-07-22": 0.18430616329289617, + "2023-10-11": 0.14499490083060193, + "2024-03-21": 0.3154817114491649, + "2023-07-19": 0.18449820327433328, + "2024-05-05": 0.2268859599513944, + "2024-05-23": 0.23190473313061566, + "2024-04-08": 0.3078440803620182, + "2024-05-18": 0.2197700794930585, + "2023-06-14": 0.15604855311921983, + "2023-10-05": 0.15406383729596942, + "2023-10-16": 0.14399630231764496, + "2024-05-22": 0.2337275318521892, + "2024-02-10": 0.2533624643422315, + "2024-04-07": 0.30280245633898967, + "2024-02-20": 0.2840673185043558, + "2023-11-17": 0.18397559827341786, + "2023-12-11": 0.2885358757758184, + "2023-11-26": 0.18095654221849905, + "2023-11-16": 0.1940912201755401, + "2023-06-29": 0.17458643334442567, + "2023-10-27": 0.1574287140521981, + "2023-06-11": 0.15891267938808287, + "2024-02-02": 0.24257945793578128, + "2023-09-14": 0.16847102696832175, + "2024-01-27": 0.24819646449846586, + "2024-03-30": 0.356234866226807, + "2023-11-22": 0.16817609427002272, + "2023-09-28": 0.14987102225925508, + "2023-06-03": 0.19992970674319746, + "2024-01-18": 0.2441233574681033, + "2023-08-26": 0.14626505277817242, + "2024-02-15": 0.27161106993704315, + "2023-10-28": 0.15166424619565547, + "2024-03-24": 0.3077883461280089, + "2024-04-27": 0.23123654098256768, + "2023-12-06": 0.31550455917640435, + "2024-01-30": 0.25784371834949077, + "2023-11-14": 0.18917885733667247, + "2023-08-09": 0.17355069108900653, + "2024-05-15": 0.20042425632597888, + "2023-11-10": 0.17863705289467752, + "2024-01-23": 0.2129177652507058, + "2024-01-31": 0.2484327253784384, + "2024-05-11": 0.21277584078752626, + "2024-01-11": 0.2615375868585181, + "2024-02-18": 0.26496850254618526, + "2023-06-16": 0.15352787324067044, + "2023-10-30": 0.15829752290695306, + "2023-12-17": 0.29261773300225147, + "2024-02-26": 0.2742703022066484, + "2023-07-16": 0.19218377645898715, + "2024-01-05": 0.26395394990246007, + "2023-08-23": 0.14304867655596862, + "2024-03-11": 0.3545217276809308, + "2023-08-01": 0.17412945106858568, + "2024-03-14": 0.41216946385148584, + "2024-02-21": 0.28487751879307294, + "2023-08-28": 0.14995252658727076, + "2023-07-04": 0.18554627395156473, + "2023-12-13": 0.2670743679091983, + "2024-02-27": 0.27866914051276365, + "2023-08-13": 0.1714109669310344, + "2024-03-31": 0.3432692309799509, + "2023-12-09": 0.29988695361381784, + "2024-04-02": 0.32596372155597597, + "2024-02-06": 0.24282737751642847, + "2024-04-09": 0.32468023677550023, + "2023-11-04": 0.1653004558596469, + "2024-04-20": 0.22603144043220494, + "2024-01-15": 0.23855491054710296, + "2023-07-03": 0.18370381297345167, + "2023-12-28": 0.29599720413132763, + "2023-05-30": 0.21033065891187488, + "2024-05-25": 0.22980278727616227, + "2024-02-07": 0.2521822125050494, + "2023-09-25": 0.1493247026484456, + "2024-03-19": 0.3119350755702566, + "2024-03-10": 0.34133624279013464, + "2024-05-02": 0.2136005723998685, + "2023-09-02": 0.16624416518688576, + "2024-01-12": 0.2651929301154032, + "2024-04-19": 0.22254040149989882, + "2023-11-29": 0.17259548030570288, + "2023-10-15": 0.1447356090644993, + "2024-05-28": 0.23046384209208828, + "2023-11-30": 0.25704767746263035, + "2024-01-24": 0.20770829117360728, + "2023-08-11": 0.1713228474698775, + "2024-02-11": 0.2529243939785782, + "2023-06-08": 0.1803347397738273, + "2023-11-15": 0.18623888908258812, + "2023-12-16": 0.2889232381646883, + "2024-03-29": 0.3551551361952424, + "2024-04-04": 0.29896069372180895, + "2023-06-10": 0.1766144424433945, + "2023-07-28": 0.17396312322075214, + "2024-01-20": 0.22847509879322236, + "2023-10-21": 0.1438936425550661, + "2023-08-16": 0.16204575238527733, + "2024-05-24": 0.22721853106475728, + "2023-11-03": 0.16300191048973386, + "2023-08-31": 0.15484841995091997, + "2024-05-27": 0.22386794095688162, + "2024-01-04": 0.2661408368529499, + "2023-07-26": 0.17415424468232693, + "2023-11-13": 0.19947899995886886, + "2023-10-24": 0.1553806161868331, + "2024-03-25": 0.32629479084301877, + "2023-08-07": 0.16892201888116756, + "2023-10-29": 0.15560894942672682, + "2024-01-29": 0.2416749606142829, + "2024-05-04": 0.22644146826577785, + "2023-06-05": 0.2041710290306049, + "2023-11-02": 0.16251587915650476, + "2023-12-18": 0.2760143131231372, + "2023-11-24": 0.17953594725635008, + "2023-08-21": 0.146950605997246, + "2023-07-25": 0.17797731146155904, + "2024-05-16": 0.214946040192822, + "2023-08-14": 0.16861929240062162, + "2024-05-01": 0.2127814599013332, + "2024-03-05": 0.33817145702891116, + "2024-04-06": 0.29819235654692194, + "2023-12-23": 0.29709923674543265, + "2024-02-03": 0.25306998378387563, + "2024-02-16": 0.27491822783788217, + "2023-05-28": 0.19721151328598757, + "2023-12-14": 0.277183939081338, + "2023-06-24": 0.1790877640094436, + "2023-12-26": 0.2921451541750437, + "2023-11-09": 0.18549758730632213, + "2023-08-19": 0.14541251675304367, + "2024-05-09": 0.21718508275451215, + "2024-01-17": 0.24746720053944368, + "2023-06-23": 0.16993338125277802, + "2023-06-18": 0.1590941621763833, + "2024-04-23": 0.24484582468245578, + "2023-08-08": 0.17065376215574984, + "2023-08-17": 0.15589906430089412, + "2024-04-14": 0.2220754710187049, + "2023-07-24": 0.18736431364910336, + "2023-10-14": 0.143240390969495, + "2024-05-22T20": 0.23084570663250376, + "2024-05-25T08": 0.22975722193788548, + "2024-05-22T05": 0.22906669880521446, + "2024-05-28T03": 0.22767314585017234, + "2024-05-22T16": 0.23128757749468334, + "2024-05-25T05": 0.2307975754221193, + "2024-05-24T22": 0.23045030919367063, + "2024-05-27T14": 0.23041862276821082, + "2024-05-22T03": 0.23193312978735636, + "2024-05-23T17": 0.22293607157618625, + "2024-05-24T23": 0.2301386608374128, + "2024-05-26T19": 0.2248024910057099, + "2024-05-26T18": 0.22495702216390956, + "2024-05-26T10": 0.22480993129556417, + "2024-05-27T16": 0.23199290481021737, + "2024-05-24T12": 0.2266878964508842, + "2024-05-26T01": 0.23091506448816954, + "2024-05-21T17": 0.23324869534986678, + "2024-05-23T07": 0.23134202901498024, + "2024-05-22T08": 0.23093939889538354, + "2024-05-23T09": 0.22914793651384754, + "2024-05-24T18": 0.22758487290166607, + "2024-05-23T01": 0.23102780342216078, + "2024-05-25T15": 0.23053202260000077, + "2024-05-23T16": 0.22402933200477895, + "2024-05-25T03": 0.22929467701767567, + "2024-05-28T06": 0.22442516110204772, + "2024-05-25T23": 0.2298330704927422, + "2024-05-24T13": 0.22818990184925014, + "2024-05-26T03": 0.22823363900137006, + "2024-05-26T00": 0.23086355346368842, + "2024-05-25T06": 0.23048616137035025, + "2024-05-27T04": 0.22684103880359652, + "2024-05-22T10": 0.22782789658755942, + "2024-05-27T09": 0.22657435285086755, + "2024-05-24T17": 0.22724025719145677, + "2024-05-26T16": 0.22641525397359114, + "2024-05-22T09": 0.22960067943141624, + "2024-05-24T21": 0.22952298229489593, + "2024-05-25T04": 0.22974064970300714, + "2024-05-27T22": 0.23122161387857823, + "2024-05-27T11": 0.22767292263619776, + "2024-05-23T21": 0.22084518141046008, + "2024-05-23T10": 0.22795353360287784, + "2024-05-23T14": 0.22433094813856239, + "2024-05-27T02": 0.22633399229259943, + "2024-05-25T18": 0.22891532603194775, + "2024-05-27T05": 0.22643127634493074, + "2024-05-22T23": 0.2303812637939589, + "2024-05-28T01": 0.2290163518771588, + "2024-05-22T04": 0.23088909834971974, + "2024-05-22T15": 0.2279912853345263, + "2024-05-24T03": 0.23100184495682985, + "2024-05-24T08": 0.22494075511276365, + "2024-05-21T22": 0.23256758951774628, + "2024-05-21T16": 0.2315426445493565, + "2024-05-21T23": 0.2334788655599167, + "2024-05-24T02": 0.23031370668676737, + "2024-05-26T07": 0.2275198982623122, + "2024-05-27T07": 0.22300138273205147, + "2024-05-25T22": 0.22940335945009183, + "2024-05-24T16": 0.22918280030644092, + "2024-05-27T20": 0.22988958085215644, + "2024-05-22T02": 0.2333203065385786, + "2024-05-24T06": 0.22544401668778724, + "2024-05-24T11": 0.22509199475407918, + "2024-05-25T21": 0.22966451146264405, + "2024-05-27T15": 0.22978575505995477, + "2024-05-21T19": 0.23264290458962342, + "2024-05-22T19": 0.2291264940646651, + "2024-05-21T12": 0.23488684629462728, + "2024-05-23T20": 0.21979989567250102, + "2024-05-23T08": 0.2304455935347095, + "2024-05-22T22": 0.231740000791481, + "2024-05-26T11": 0.22649716816316434, + "2024-05-24T01": 0.23307283512432825, + "2024-05-23T05": 0.23283556645166303, + "2024-05-28T04": 0.226082189672236, + "2024-05-25T09": 0.2286285749627702, + "2024-05-27T18": 0.23165923278170353, + "2024-05-24T10": 0.2254783149551848, + "2024-05-25T19": 0.23004861192094234, + "2024-05-24T07": 0.22208444669702979, + "2024-05-26T04": 0.2289546113745526, + "2024-05-26T09": 0.2261019515953318, + "2024-05-23T02": 0.23104290545757847, + "2024-05-27T06": 0.22505694449403138, + "2024-05-28T08": 0.22482739605840227, + "2024-05-24T15": 0.2294257575430328, + "2024-05-25T20": 0.23024372108468585, + "2024-05-27T08": 0.22456520100698626, + "2024-05-23T22": 0.22423624720870833, + "2024-05-26T15": 0.22698119178724455, + "2024-05-24T20": 0.22955136880202637, + "2024-05-21T20": 0.2300855982799995, + "2024-05-25T13": 0.2299374216348973, + "2024-05-22T01": 0.23073055792387953, + "2024-05-25T17": 0.22885411160944322, + "2024-05-27T10": 0.22681705907686503, + "2024-05-21T21": 0.23246014787193067, + "2024-05-24T19": 0.22908433110866097, + "2024-05-26T02": 0.23089843426696188, + "2024-05-27T19": 0.2329035289513558, + "2024-05-25T11": 0.230608271505444, + "2024-05-27T17": 0.23245493476717238, + "2024-05-21T18": 0.23388168016807123, + "2024-05-26T06": 0.22788635725794043, + "2024-05-23T00": 0.23190473313061566, + "2024-05-22T00": 0.2337275318521892, + "2024-05-24T05": 0.22941375195749708, + "2024-05-23T15": 0.2222964704020658, + "2024-05-22T13": 0.22329964255539234, + "2024-05-21T10": 0.23423657084049532, + "2024-05-22T12": 0.22730887594155683, + "2024-05-23T04": 0.23275281414976276, + "2024-05-26T08": 0.2280419745999515, + "2024-05-26T13": 0.22555000873856917, + "2024-05-28T05": 0.2229351236502158, + "2024-05-22T18": 0.2301498845365494, + "2024-05-22T06": 0.23055499111399946, + "2024-05-21T08": 0.2344766605975678, + "2024-05-22T17": 0.23173258892560225, + "2024-05-23T19": 0.2210101265308398, + "2024-05-25T07": 0.22973288852461163, + "2024-05-26T22": 0.2248228856474498, + "2024-05-25T16": 0.2309724876089985, + "2024-05-26T05": 0.22760547085913646, + "2024-05-24T04": 0.2302438334488071, + "2024-05-21T14": 0.23394086008736106, + "2024-05-25T12": 0.2297754847748364, + "2024-05-28T07": 0.22522666939595937, + "2024-05-23T18": 0.22141320809903764, + "2024-05-26T23": 0.22541068991579438, + "2024-05-24T09": 0.22368912701915447, + "2024-05-23T03": 0.23078381494928132, + "2024-05-26T14": 0.225714182080097, + "2024-05-21T13": 0.23440237605810707, + "2024-05-22T14": 0.2258856293445513, + "2024-05-25T14": 0.22850124377719966, + "2024-05-25T00": 0.22980278727616227, + "2024-05-23T23": 0.22488930794750028, + "2024-05-21T11": 0.23378742861163096, + "2024-05-23T13": 0.22616577585303443, + "2024-05-22T11": 0.229317063383422, + "2024-05-21T15": 0.2339392168387857, + "2024-05-28T00": 0.23032132041508402, + "2024-05-27T23": 0.2308438224314623, + "2024-05-28T02": 0.22708324628651028, + "2024-05-26T21": 0.22426081267836484, + "2024-05-26T12": 0.226599598252508, + "2024-05-23T06": 0.23152532178558355, + "2024-05-22T07": 0.23264551223413169, + "2024-05-27T12": 0.22808147294230172, + "2024-05-22T21": 0.22945867095264721, + "2024-05-24T00": 0.22721853106475728, + "2024-05-25T02": 0.22914495029614684, + "2024-05-27T00": 0.22386794095688162, + "2024-05-26T20": 0.22527337577602968, + "2024-05-26T17": 0.22559054995351613, + "2024-05-27T13": 0.22879282315401578, + "2024-05-23T12": 0.23237723629129112, + "2024-05-25T10": 0.229542370739429, + "2024-05-21T09": 0.23406272421918461, + "2024-05-23T11": 0.22777326439202739, + "2024-05-24T14": 0.22705454598209837, + "2024-05-25T01": 0.22867678194343188, + "2024-05-27T21": 0.23177038218508356, + "2024-05-27T03": 0.22730709173381672, + "2024-05-27T01": 0.22386850044312262, + "latest": 0.216963, + "2024-05-28T09": 0.22579074537117244, + "2024-05-28T10": 0.22760520313497332, + "2024-05-28T11": 0.22776283093999913, + "2024-05-28T12": 0.2284696541262323, + "2024-05-28T13": 0.22741910408581267, + "2024-05-28T14": 0.2262341633190673, + "2024-05-28T15": 0.22651036430351243, + "2024-05-29": 0.22863754844289003, + "2024-05-28T20": 0.22923071277947898, + "2024-05-28T22": 0.22998098788135635, + "2024-05-28T21": 0.22994062146854113, + "2024-05-28T19": 0.2275134334470938, + "2024-05-29T02": 0.22776623070383548, + "2024-05-28T17": 0.2265841798169883, + "2024-05-28T18": 0.22858599094055634, + "2024-05-28T23": 0.22939373882943132, + "2024-05-29T00": 0.2287071005102636, + "2024-05-29T01": 0.22831351438112232, + "2024-05-28T16": 0.22880302773211508, + "2024-05-29T06": 0.2307553195858061, + "2024-05-29T05": 0.2308833931728716, + "2024-05-29T03": 0.22909979242672573, + "2024-05-29T07": 0.23232362911324886, + "2024-05-29T04": 0.22911446004429226, + "2024-05-29T08": 0.22878813476426668, + "2024-05-29T09": 0.22968801510996398, + "2024-05-29T10": 0.22950456267376843, + "2024-05-29T11": 0.23101563964385016, + "2024-05-29T12": 0.22884743565314594, + "2024-05-29T13": 0.22905100807464776, + "2024-05-29T14": 0.22849447760020924, + "2024-05-29T15": 0.22766112268861188, + "2024-05-29T18": 0.22725588097833446, + "2024-05-29T17": 0.227206965181834, + "2024-05-29T23": 0.22462229872762682, + "2024-05-29T19": 0.22566463100652281, + "2024-05-29T22": 0.22384923226914602, + "2024-05-29T20": 0.22497665056294763, + "2024-05-29T16": 0.22523057241974687, + "2024-05-29T21": 0.22478081838715205, + "2024-05-30": 0.2229594789060001, + "2024-05-30T00": 0.2229594789060001, + "2024-05-30T05": 0.22404001665826873, + "2024-05-30T02": 0.22447799661115303, + "2024-05-30T08": 0.217610917060667, + "2024-05-30T01": 0.22261043380628034, + "2024-05-30T06": 0.22360959670482236, + "2024-05-30T07": 0.22032156804041902, + "2024-05-30T03": 0.22432770686403702, + "2024-05-30T04": 0.22462332337919483, + "2024-05-30T09": 0.22065515736909277, + "2024-05-30T10": 0.22111452464062617, + "2024-05-30T11": 0.22225711411039328, + "2024-05-30T12": 0.22104539069833445, + "2024-05-30T13": 0.22177160771967758, + "2024-05-30T14": 0.22309770931241768, + "2024-05-30T15": 0.2202697089555388, + "2024-05-30T21": 0.2195833563488735, + "2024-05-30T20": 0.22186695953958407, + "2024-05-30T18": 0.22370145205425404, + "2024-05-30T22": 0.218870794392919, + "2024-05-30T16": 0.22145871511364987, + "2024-05-30T17": 0.2226462238027946, + "2024-05-30T19": 0.22364976932149003, + "2024-05-31": 0.21805541235227027, + "2024-05-30T23": 0.21832080045934235, + "2024-05-31T03": 0.21809565057297095, + "2024-05-31T07": 0.21994629384879916, + "2024-05-31T06": 0.2180220125349715, + "2024-05-31T04": 0.21945858034672294, + "2024-05-31T02": 0.21763894930187946, + "2024-05-31T05": 0.2195664098916782, + "2024-05-31T00": 0.21837434864899416, + "2024-05-31T01": 0.21788959081614254, + "2024-05-31T08": 0.21886730659367176, + "2024-05-31T09": 0.21797973304510124, + "2024-05-31T10": 0.21830033888988362, + "2024-05-31T11": 0.2191612833773415, + "2024-05-31T12": 0.21888715361881678, + "2024-05-31T13": 0.21984718861465474, + "2024-05-31T14": 0.21827954385103157, + "2024-06-01": 0.2181295846842991, + "2024-06-01T08": 0.216721621215529, + "2024-06-01T02": 0.21646292967402755, + "2024-06-01T05": 0.21704519572500222, + "2024-05-31T21": 0.2191440562081585, + "2024-06-01T00": 0.21798346995754614, + "2024-05-31T18": 0.2163843659795234, + "2024-05-31T15": 0.2178916093629947, + "2024-05-31T23": 0.2186343041811973, + "2024-05-31T22": 0.2187953908841977, + "2024-06-01T01": 0.21714690214242233, + "2024-06-01T07": 0.21750443932493915, + "2024-06-01T04": 0.2167654310846579, + "2024-05-31T19": 0.21621666747710894, + "2024-06-01T06": 0.21752629533912776, + "2024-05-31T20": 0.21769611955739931, + "2024-05-31T17": 0.2154508069541193, + "2024-05-31T16": 0.21508447204316497, + "2024-06-01T03": 0.21726915895771828, + "2024-06-01T09": 0.21670186952000642, + "2024-06-01T10": 0.21597565213893313, + "2024-06-02": 0.21784937302400686, + "2024-06-01T13": 0.2167335539518655, + "2024-06-01T15": 0.21787997808237464, + "2024-06-01T18": 0.21781273657578873, + "2024-06-01T12": 0.21598454382261364, + "2024-06-01T21": 0.2182472682888079, + "2024-06-01T20": 0.21881305236544793, + "2024-06-02T01": 0.21841584317201693, + "2024-06-01T17": 0.21787553604789212, + "2024-06-01T11": 0.21589407426606735, + "2024-06-02T00": 0.2178946282236376, + "2024-06-01T23": 0.21844332790639717, + "2024-06-01T14": 0.2172171929962691, + "2024-06-01T22": 0.21820870764880862, + "2024-06-01T19": 0.21797159434501331, + "2024-06-01T16": 0.21895420993150982, + "2024-06-02T13": 0.21703308647208674, + "2024-06-02T11": 0.2161716331447672, + "2024-06-02T07": 0.21867955167366004, + "2024-06-02T05": 0.21881982268346598, + "2024-06-02T08": 0.21690848737310606, + "2024-06-02T04": 0.21852235178340765, + "2024-06-02T10": 0.21515759742619894, + "2024-06-02T12": 0.21839518460601345, + "2024-06-02T02": 0.21909028894714935, + "2024-06-02T16": 0.21724080151304978, + "2024-06-02T17": 0.2166011556328037, + "2024-06-02T03": 0.21798088269227914, + "2024-06-02T09": 0.21749397575467594, + "2024-06-02T15": 0.2179767305534069, + "2024-06-02T06": 0.21820140068082397, + "2024-06-02T18": 0.2146703920828917, + "2024-06-02T14": 0.21790062464862392, + "2024-06-03": 0.21372356575009774, + "2024-06-03T01": 0.21286859120973833, + "2024-06-02T20": 0.21414215907875417, + "2024-06-03T00": 0.21376501629047737, + "2024-06-02T21": 0.21381149230192928, + "2024-06-02T23": 0.2136523410448817, + "2024-06-02T19": 0.21484545982676778, + "2024-06-02T22": 0.2133033014360537, + "2024-06-03T02": 0.2157926980187771, + "2024-06-03T05": 0.2156349188957046, + "2024-06-03T06": 0.2162234947810273, + "2024-06-03T04": 0.21579340844091188, + "2024-06-03T03": 0.2166494603081104, + "2024-06-03T07": 0.21721062467053742 + }, + "USD klaytn": { + "2023-07-30": 0.1626964941808198, + "2023-10-23": 0.12524006266122914, + "2023-07-27": 0.16175843910377877, + "2023-07-10": 0.1623063330298006, + "2023-08-20": 0.14218578, + "2024-02-23": 0.21855517931778676, + "2024-04-05": 0.24547352427003954, + "2023-12-19": 0.23939522041561928, + "2024-05-17": 0.17593693120665324, + "2023-08-06": 0.1558979280781828, + "2023-12-02": 0.19118164449789776, + "2023-10-31": 0.13424690050540042, + "2023-08-29": 0.14037563527500177, + "2023-06-20": 0.1606759114985326, + "2023-09-09": 0.1329609246474422, + "2023-06-26": 0.16991695283061878, + "2023-10-01": 0.11750940925212197, + "2024-03-07": 0.2836254636554, + "2023-10-12": 0.11906574789309501, + "2024-04-22": 0.20358137707180865, + "2023-07-05": 0.1737990941419907, + "2023-07-29": 0.162296799709377, + "2024-04-26": 0.19227352052424626, + "2024-01-08": 0.16921861005712477, + "2023-05-29": 0.19077044615559774, + "2023-10-07": 0.12096661216846387, + "2023-09-26": 0.11326414037194775, + "2023-08-24": 0.13983906684632016, + "2023-12-05": 0.20501307615947845, + "2024-02-19": 0.23129638650038925, + "2024-01-07": 0.17869268053168902, + "2024-04-28": 0.19371106675832175, + "2023-07-31": 0.1603694010713005, + "2023-10-18": 0.1210446093402594, + "2024-05-19": 0.17921708975402809, + "2024-05-12": 0.16563766437172242, + "2024-04-29": 0.18587727863604236, + "2023-08-25": 0.13813858364337886, + "2024-03-09": 0.28844088099595255, + "2023-07-12": 0.16559929574945748, + "2023-09-05": 0.13252176487382222, + "2023-06-07": 0.1746383181405073, + "2023-09-16": 0.12121249038618101, + "2024-04-25": 0.19434740896716607, + "2023-08-12": 0.15829436787883797, + "2023-06-06": 0.17533333631124118, + "2023-09-01": 0.13444614707071706, + "2023-09-08": 0.13314673593451537, + "2024-03-22": 0.25074635338336027, + "2023-08-10": 0.15594233951982628, + "2023-12-07": 0.21962812763295825, + "2023-11-18": 0.16500213773688965, + "2023-07-13": 0.17252019772823365, + "2023-09-13": 0.12348850986349628, + "2023-06-17": 0.1566106822366606, + "2023-07-17": 0.17352769654100952, + "2023-07-07": 0.1697098687658343, + "2023-09-07": 0.13272158048724406, + "2024-03-26": 0.28142705176465305, + "2024-05-14": 0.16481585843093322, + "2024-02-22": 0.22243293487996466, + "2024-04-15": 0.18759767341800465, + "2023-12-30": 0.2340986430566467, + "2023-09-17": 0.11782595774439078, + "2024-04-17": 0.17874485812692936, + "2024-02-12": 0.22545635, + "2023-10-26": 0.13352345394639392, + "2024-01-03": 0.20540673769782422, + "2024-05-07": 0.17877461672724504, + "2023-06-01": 0.18372388999931893, + "2024-01-22": 0.19823729458584122, + "2023-06-12": 0.15110616937717297, + "2023-10-03": 0.11430011374599444, + "2024-05-26": 0.18703264399999997, + "2024-04-30": 0.17743848932840206, + "2023-06-19": 0.1572516026649583, + "2023-07-09": 0.16662978633935124, + "2023-12-24": 0.24292260143848157, + "2023-09-24": 0.11230673799999999, + "2024-01-16": 0.2270862564399136, + "2023-10-17": 0.1259514466100979, + "2024-04-24": 0.20488387104139677, + "2024-03-18": 0.26044573675093435, + "2024-02-17": 0.2228773748775432, + "2023-12-27": 0.23965620756765138, + "2023-07-23": 0.16800073872824814, + "2023-09-03": 0.13298208195313763, + "2024-02-24": 0.22706751868512734, + "2024-01-06": 0.18932991451589423, + "2024-03-20": 0.23792342186594473, + "2023-11-21": 0.17926210451819122, + "2023-12-25": 0.2393439493675887, + "2023-09-22": 0.11049142463678484, + "2023-10-02": 0.11772955418551408, + "2024-03-27": 0.27185093543634214, + "2024-05-06": 0.18261077676710946, + "2023-08-30": 0.14038937019025077, + "2023-10-06": 0.11512263988950051, + "2023-10-13": 0.121657335741516, + "2023-06-28": 0.16219969135263498, + "2024-02-05": 0.19300478366066315, + "2024-03-01": 0.25472390982226933, + "2023-07-15": 0.17265458916491722, + "2023-06-25": 0.17345513119722913, + "2023-12-10": 0.24892124969963922, + "2023-11-23": 0.22336970794396382, + "2023-08-04": 0.15475593794644452, + "2024-05-13": 0.16595847049890758, + "2024-01-13": 0.18975916524923842, + "2024-03-28": 0.2677477016202225, + "2023-08-05": 0.15390946327270172, + "2024-02-09": 0.2102041576868781, + "2023-10-09": 0.11712320609149339, + "2024-01-09": 0.17748851845067126, + "2024-05-10": 0.1706780396616236, + "2023-05-27": 0.18685745030373105, + "2023-08-18": 0.1401439839041577, + "2023-11-05": 0.14110230194368176, + "2024-04-18": 0.18082950008743057, + "2023-10-22": 0.12275480407507813, + "2023-11-01": 0.13122653905653794, + "2024-05-20": 0.17910895500000004, + "2023-12-08": 0.24094296705774412, + "2024-04-12": 0.20339978736989936, + "2023-07-06": 0.17210603488065523, + "2024-03-12": 0.2884179093669089, + "2023-09-11": 0.12685005855623982, + "2024-03-03": 0.3051410799951384, + "2024-02-04": 0.19242683139718914, + "2024-01-28": 0.20507949, + "2023-07-01": 0.16748007980545307, + "2023-11-07": 0.1418452036103954, + "2023-11-25": 0.20956148459212953, + "2023-06-04": 0.18615515304902144, + "2024-02-25": 0.22839074567682124, + "2023-12-01": 0.18954022937404244, + "2023-07-14": 0.1763630533354949, + "2024-01-26": 0.201906218821619, + "2023-08-03": 0.15645244487116575, + "2024-02-28": 0.23572513117166272, + "2023-09-15": 0.11790217520673818, + "2023-07-18": 0.17311294524760784, + "2023-12-21": 0.2409063461410952, + "2023-07-20": 0.17219773524594564, + "2024-03-06": 0.2711066986443406, + "2023-09-30": 0.11560266721504557, + "2023-12-12": 0.24900478543344928, + "2024-02-13": 0.22955931227916346, + "2023-09-20": 0.11360795481010631, + "2023-09-19": 0.11662106391680081, + "2023-09-29": 0.1142874276142259, + "2023-09-12": 0.12426872222976725, + "2023-06-13": 0.1532847251120636, + "2023-10-04": 0.11329591175443678, + "2023-07-08": 0.16961491295384623, + "2024-04-16": 0.17788190990106476, + "2024-03-02": 0.2953141778367281, + "2023-06-27": 0.16881065523320865, + "2023-10-08": 0.12027047934834602, + "2023-11-20": 0.17630033966197595, + "2023-12-20": 0.23668505272962487, + "2023-12-31": 0.22903275719467706, + "2023-11-06": 0.14297482331181474, + "2023-08-22": 0.13684951700146664, + "2023-06-09": 0.1641121752348869, + "2024-03-17": 0.25895444856831906, + "2023-09-18": 0.1174200209125312, + "2024-04-01": 0.25597848977564686, + "2024-05-21": 0.18826184091429624, + "2024-01-19": 0.20480610753259684, + "2023-11-11": 0.14787743369542689, + "2023-09-23": 0.11162483096700382, + "2023-11-19": 0.167185221, + "2023-07-02": 0.16849983141118063, + "2023-08-15": 0.155900192, + "2024-01-25": 0.19353591856112187, + "2024-03-13": 0.2999812848434784, + "2024-01-21": 0.20191913585388171, + "2024-02-01": 0.19118689783281118, + "2023-06-15": 0.14714041722528998, + "2024-03-16": 0.27522196911639063, + "2023-11-27": 0.20199174912383536, + "2024-01-10": 0.18176276758450713, + "2024-03-15": 0.2847558441535915, + "2023-06-21": 0.16699388981565078, + "2024-01-02": 0.2364627228727409, + "2023-07-11": 0.16420510994750567, + "2023-10-25": 0.13281508199854028, + "2024-01-01": 0.23110507652690052, + "2024-02-14": 0.23731211187664808, + "2023-09-04": 0.13255153004404902, + "2023-09-06": 0.13252285336301425, + "2024-04-03": 0.24209630153501013, + "2023-11-28": 0.2001375330062801, + "2023-12-03": 0.19597177655454734, + "2023-08-02": 0.15890184722580744, + "2023-08-27": 0.13953340599866423, + "2023-10-20": 0.12055302, + "2023-10-10": 0.11990980728975377, + "2024-05-03": 0.1778369067701568, + "2024-03-08": 0.2918253785834398, + "2024-04-11": 0.24349688845608752, + "2023-06-22": 0.16891597425283178, + "2024-01-14": 0.19074941935506448, + "2023-12-15": 0.2481098143405587, + "2023-10-19": 0.11963788235221487, + "2024-02-08": 0.2038529233560761, + "2023-11-08": 0.14263992003201456, + "2023-11-12": 0.16056223936350456, + "2023-12-22": 0.24366777739125645, + "2023-05-31": 0.18693330570340458, + "2024-03-23": 0.2557095529450608, + "2023-09-27": 0.11272107325271878, + "2024-03-04": 0.30917056716642366, + "2023-09-10": 0.13086728936030026, + "2024-04-13": 0.1949611201151486, + "2024-02-29": 0.2504484158939118, + "2023-07-21": 0.16969144827814028, + "2023-06-30": 0.161666027462269, + "2023-12-29": 0.23712459329336652, + "2023-12-04": 0.2026495570362855, + "2024-04-10": 0.23948295202367165, + "2024-05-08": 0.1743765654003929, + "2023-09-21": 0.11029459008598648, + "2023-06-02": 0.18534080940140524, + "2024-04-21": 0.20035768519230335, + "2023-07-22": 0.16791679000000004, + "2023-10-11": 0.11960129681843151, + "2024-03-21": 0.25174800818527987, + "2023-07-19": 0.17310168112833998, + "2024-05-05": 0.18232621666339566, + "2024-05-23": 0.18310107214803234, + "2024-04-08": 0.25369746318664305, + "2024-05-18": 0.18053053531810598, + "2023-06-14": 0.15246949662160852, + "2023-10-05": 0.11521432386355251, + "2023-10-16": 0.13072602010262027, + "2024-05-22": 0.18876470839861564, + "2024-02-10": 0.2159159706657366, + "2024-04-07": 0.24885485717030048, + "2024-02-20": 0.23430066075179476, + "2023-11-17": 0.16542166736649594, + "2023-12-11": 0.2402703658169921, + "2023-11-26": 0.21010761785462848, + "2023-11-16": 0.17325064746107074, + "2023-06-29": 0.16078200429486963, + "2023-10-27": 0.1307127725085387, + "2023-06-11": 0.15056495014644564, + "2024-02-02": 0.19540017864779843, + "2023-09-14": 0.11770453935022389, + "2024-01-27": 0.20397603714700452, + "2024-03-30": 0.2656539055891786, + "2023-11-22": 0.19443444054416165, + "2023-09-28": 0.11242132393880941, + "2023-06-03": 0.18616026346647943, + "2024-01-18": 0.2167665210223301, + "2023-08-26": 0.13952496999603325, + "2024-02-15": 0.23327917693356456, + "2023-10-28": 0.13171975500000002, + "2024-03-24": 0.2602003578422388, + "2024-04-27": 0.18828889143457134, + "2023-12-06": 0.21321519714332163, + "2024-01-30": 0.2068864368756072, + "2023-11-14": 0.16191899722863068, + "2023-08-09": 0.1569152295833442, + "2024-05-15": 0.16770439874907828, + "2023-11-10": 0.1456311377138803, + "2024-01-23": 0.18656556866682153, + "2024-01-31": 0.19522188000000001, + "2024-05-11": 0.16815300097441443, + "2024-01-11": 0.19924153384297857, + "2024-02-18": 0.22574694020720165, + "2023-06-16": 0.15024774808915178, + "2023-10-30": 0.13374048940238947, + "2023-12-17": 0.2501561103659302, + "2024-02-26": 0.22640108018570196, + "2023-07-16": 0.17295706159025095, + "2024-01-05": 0.2031547221417158, + "2023-08-23": 0.13803435950620005, + "2024-03-11": 0.2861992146132712, + "2023-08-01": 0.1577320771758507, + "2024-03-14": 0.30381150854444156, + "2024-02-21": 0.22065115393586296, + "2023-08-28": 0.13712303712220997, + "2023-07-04": 0.1763247119636161, + "2023-12-13": 0.24726848375138563, + "2024-02-27": 0.23300916032933822, + "2023-08-13": 0.15789307349168846, + "2024-03-31": 0.26413398659911547, + "2023-12-09": 0.2526411114351472, + "2024-04-02": 0.24096972558936033, + "2024-02-06": 0.19431626255404116, + "2024-04-09": 0.24600507037989391, + "2023-11-04": 0.13786889999999996, + "2024-04-20": 0.1895797307226991, + "2024-01-15": 0.19100347177989563, + "2023-07-03": 0.17939935351717753, + "2023-12-28": 0.24440391007096254, + "2023-05-30": 0.1916518198902347, + "2024-05-25": 0.18736214338956367, + "2024-02-07": 0.1973902106919073, + "2023-09-25": 0.11267344673113047, + "2024-03-19": 0.23719584250528336, + "2024-03-10": 0.28312782799403735, + "2024-05-02": 0.17299567482409356, + "2023-09-02": 0.13387282876449375, + "2024-01-12": 0.19691485376090093, + "2024-04-19": 0.18708249174056185, + "2023-11-29": 0.1975936582237427, + "2023-10-15": 0.1298004100901529, + "2024-05-28": 0.1919498967355149, + "2023-11-30": 0.18863119378418866, + "2024-01-24": 0.18975146624581382, + "2023-08-11": 0.15641773246939564, + "2024-02-11": 0.22128405919414237, + "2023-06-08": 0.1640164, + "2023-11-15": 0.168416246837668, + "2023-12-16": 0.2554472133174886, + "2024-03-29": 0.26734047645022246, + "2024-04-04": 0.2524604999970002, + "2023-06-10": 0.14386582460643368, + "2023-07-28": 0.15985672374603882, + "2024-01-20": 0.20050972242925585, + "2023-10-21": 0.12304796580015939, + "2023-08-16": 0.14902397430173075, + "2024-05-24": 0.18422337901092445, + "2023-11-03": 0.13203260773563147, + "2023-08-31": 0.1374863370597592, + "2024-05-27": 0.1911814652724636, + "2024-01-04": 0.20758552602740313, + "2023-07-26": 0.1604800472286182, + "2023-11-13": 0.1737979854703938, + "2023-10-24": 0.1315017369553737, + "2024-03-25": 0.272092773423423, + "2023-08-07": 0.1562550165845294, + "2023-10-29": 0.1314250301061626, + "2024-01-29": 0.20447559434309565, + "2024-05-04": 0.18393496981598775, + "2023-06-05": 0.17473268758149063, + "2023-11-02": 0.1358577724218164, + "2023-12-18": 0.2382091439336201, + "2023-11-24": 0.20994437231673987, + "2023-08-21": 0.13966592093789423, + "2023-07-25": 0.16248308102437822, + "2024-05-16": 0.17262416759877944, + "2023-08-14": 0.15751076008631912, + "2024-05-01": 0.16981084352350903, + "2024-03-05": 0.2930795525392458, + "2024-04-06": 0.2460736438473551, + "2023-12-23": 0.23873449348834064, + "2024-02-03": 0.19621981971625035, + "2024-02-16": 0.22820307269637624, + "2023-05-28": 0.18785235606488448, + "2023-12-14": 0.2545400222109809, + "2023-06-24": 0.1715808675676499, + "2023-12-26": 0.24327701639426927, + "2023-11-09": 0.1460489949759321, + "2023-08-19": 0.14186074157322587, + "2024-05-09": 0.17333241019914394, + "2024-01-17": 0.2258968650029308, + "2023-06-23": 0.17023847646029827, + "2023-06-18": 0.15705940569426236, + "2024-04-23": 0.21068205718470542, + "2023-08-08": 0.15636546814788965, + "2023-08-17": 0.14512856744295954, + "2024-04-14": 0.18088588113983986, + "2023-07-24": 0.1624788411011532, + "2023-10-14": 0.12769036979154705, + "2024-05-22T20": 0.18897732, + "2024-05-25T08": 0.187226953, + "2024-05-22T05": 0.18775868399999998, + "2024-05-28T03": 0.188650848, + "2024-05-22T16": 0.1895816880440478, + "2024-05-25T05": 0.18782484000000002, + "2024-05-24T22": 0.18507408599999997, + "2024-05-27T14": 0.192061616, + "2024-05-22T03": 0.189460205, + "2024-05-23T17": 0.18166728599999998, + "2024-05-24T23": 0.1855099533723702, + "2024-05-26T19": 0.186799074, + "2024-05-26T18": 0.18630307200000001, + "2024-05-26T10": 0.18673088399999999, + "2024-05-27T16": 0.19280893, + "2024-05-24T12": 0.184504008, + "2024-05-26T01": 0.18838116000000002, + "2024-05-21T17": 0.188590554, + "2024-05-23T07": 0.189384405, + "2024-05-22T08": 0.18876224, + "2024-05-23T09": 0.18770934728264493, + "2024-05-24T18": 0.1865067, + "2024-05-23T01": 0.189303406, + "2024-05-25T15": 0.18728127, + "2024-05-23T16": 0.18127483400000002, + "2024-05-25T03": 0.18692333, + "2024-05-28T06": 0.188134296, + "2024-05-25T23": 0.188068023, + "2024-05-24T13": 0.18438929999999998, + "2024-05-26T03": 0.187879331, + "2024-05-26T00": 0.188175534, + "2024-05-25T06": 0.1869921162289573, + "2024-05-27T04": 0.18800030699999998, + "2024-05-22T10": 0.18885844200000002, + "2024-05-27T09": 0.1890127394, + "2024-05-24T17": 0.184222594, + "2024-05-26T16": 0.18682150200000003, + "2024-05-22T09": 0.1889622, + "2024-05-24T21": 0.185483305, + "2024-05-25T04": 0.18752496, + "2024-05-27T22": 0.19220375199999998, + "2024-05-27T11": 0.190481828, + "2024-05-23T21": 0.182562975, + "2024-05-23T10": 0.18703451499999998, + "2024-05-23T14": 0.182110722, + "2024-05-27T02": 0.188088962, + "2024-05-25T18": 0.1875169755447738, + "2024-05-27T05": 0.18741, + "2024-05-22T23": 0.1893215074621913, + "2024-05-28T01": 0.19111256172741822, + "2024-05-22T04": 0.18694951, + "2024-05-22T15": 0.189145132, + "2024-05-24T03": 0.184624273, + "2024-05-24T08": 0.18078797811069827, + "2024-05-21T22": 0.188145422, + "2024-05-21T16": 0.1887787902, + "2024-05-21T23": 0.1886750312009867, + "2024-05-24T02": 0.18413000399999999, + "2024-05-26T07": 0.187730514, + "2024-05-27T07": 0.188188903, + "2024-05-25T22": 0.1871763022, + "2024-05-24T16": 0.18402267800000002, + "2024-05-27T20": 0.19220375199999998, + "2024-05-22T02": 0.190065782, + "2024-05-24T06": 0.18108725430604058, + "2024-05-24T11": 0.18378966, + "2024-05-25T21": 0.18736252, + "2024-05-27T15": 0.192933934, + "2024-05-21T19": 0.186438455, + "2024-05-22T19": 0.188760352, + "2024-05-21T12": 0.18895653, + "2024-05-23T20": 0.177167025, + "2024-05-23T08": 0.188090844, + "2024-05-22T22": 0.18972408000000002, + "2024-05-26T11": 0.187215715, + "2024-05-24T01": 0.18432624000000003, + "2024-05-23T05": 0.18908269600000002, + "2024-05-28T04": 0.187163271, + "2024-05-25T09": 0.187732392, + "2024-05-27T18": 0.19380406000000003, + "2024-05-24T10": 0.183506364, + "2024-05-25T19": 0.1878270977411548, + "2024-05-24T07": 0.18084934800000002, + "2024-05-26T04": 0.18761035407605173, + "2024-05-26T09": 0.18642540000000002, + "2024-05-23T02": 0.19010109600000002, + "2024-05-27T06": 0.187609904, + "2024-05-28T08": 0.1887345281178655, + "2024-05-24T15": 0.18600695, + "2024-05-25T20": 0.18739124132436957, + "2024-05-27T08": 0.18878666, + "2024-05-23T22": 0.18378598200000001, + "2024-05-26T15": 0.18718762, + "2024-05-24T20": 0.18668133, + "2024-05-21T20": 0.18773802599999997, + "2024-05-25T13": 0.187373764, + "2024-05-22T01": 0.189677236, + "2024-05-25T17": 0.187358772, + "2024-05-27T10": 0.189784161, + "2024-05-21T21": 0.18705883799999998, + "2024-05-24T19": 0.186042309, + "2024-05-26T02": 0.18707941899999997, + "2024-05-27T19": 0.192105777, + "2024-05-25T11": 0.18817177000000002, + "2024-05-27T17": 0.193400592, + "2024-05-21T18": 0.188609424, + "2024-05-26T06": 0.187736148, + "2024-05-23T00": 0.189699406, + "2024-05-22T00": 0.189265926, + "2024-05-24T05": 0.18269945999999998, + "2024-05-23T15": 0.181968888, + "2024-05-22T13": 0.18627950699999998, + "2024-05-21T10": 0.18884765087276936, + "2024-05-22T12": 0.186368312, + "2024-05-23T04": 0.190481828, + "2024-05-26T08": 0.187021418, + "2024-05-26T13": 0.186240384, + "2024-05-28T05": 0.18885447, + "2024-05-22T18": 0.18793161961891153, + "2024-05-22T06": 0.18915837600000002, + "2024-05-21T08": 0.18727446794063496, + "2024-05-22T17": 0.189669648, + "2024-05-23T19": 0.18103329599999998, + "2024-05-25T07": 0.18702703099999998, + "2024-05-26T22": 0.186721544, + "2024-05-25T16": 0.187373764, + "2024-05-26T05": 0.18704387, + "2024-05-24T04": 0.184596568, + "2024-05-21T14": 0.189452625, + "2024-05-25T12": 0.187686861, + "2024-05-28T07": 0.18784584, + "2024-05-23T18": 0.179772271, + "2024-05-26T23": 0.18691024, + "2024-05-24T09": 0.18251783000000002, + "2024-05-23T03": 0.19037236500000002, + "2024-05-26T14": 0.18674266319490848, + "2024-05-21T13": 0.18966206000000002, + "2024-05-22T14": 0.18784926700000001, + "2024-05-25T14": 0.187086903, + "2024-05-25T00": 0.185657289, + "2024-05-23T23": 0.18391904, + "2024-05-21T11": 0.18927096855631856, + "2024-05-23T13": 0.18203626500000003, + "2024-05-22T11": 0.1885148231649864, + "2024-05-21T15": 0.18855473599999997, + "2024-05-28T00": 0.1918464, + "2024-05-27T23": 0.192138468, + "2024-05-28T02": 0.18935977, + "2024-05-26T21": 0.18540725, + "2024-05-26T12": 0.18693239396611339, + "2024-05-23T06": 0.18918074099999999, + "2024-05-22T07": 0.18816612400000002, + "2024-05-27T12": 0.19026672, + "2024-05-22T21": 0.188730144, + "2024-05-24T00": 0.18491675000000002, + "2024-05-25T02": 0.18637908358026212, + "2024-05-27T00": 0.1873063, + "2024-05-26T20": 0.18645814601030994, + "2024-05-26T17": 0.18650383545234578, + "2024-05-27T13": 0.19087967, + "2024-05-23T12": 0.185009301, + "2024-05-25T10": 0.188349132, + "2024-05-21T09": 0.18826234, + "2024-05-23T11": 0.1878110031732765, + "2024-05-24T14": 0.185168437, + "2024-05-25T01": 0.18586282, + "2024-05-27T21": 0.192505373, + "2024-05-27T03": 0.188188903, + "2024-05-27T01": 0.188207733, + "latest": 0.234836, + "2024-05-28T09": 0.19180224, + "2024-05-28T10": 0.192612984, + "2024-05-28T11": 0.192605272, + "2024-05-28T12": 0.191905979, + "2024-05-28T13": 0.1907091, + "2024-05-28T14": 0.190311405, + "2024-05-28T15": 0.190720554, + "2024-05-29": 0.1955123222432288, + "2024-05-28T20": 0.19420948799999999, + "2024-05-28T22": 0.19312216399999999, + "2024-05-28T21": 0.193446253, + "2024-05-28T19": 0.19276261, + "2024-05-29T02": 0.19130467, + "2024-05-28T17": 0.1923075, + "2024-05-28T18": 0.19096100000000002, + "2024-05-28T23": 0.192115392, + "2024-05-29T00": 0.192372732, + "2024-05-29T01": 0.19126828499999998, + "2024-05-28T16": 0.19185833700000002, + "2024-05-29T06": 0.1953551698324152, + "2024-05-29T05": 0.194470254, + "2024-05-29T03": 0.19279542000000002, + "2024-05-29T07": 0.19399026400000002, + "2024-05-29T04": 0.19343507830905338, + "2024-05-29T08": 0.19361594138878724, + "2024-05-29T09": 0.195719772, + "2024-05-29T10": 0.196609104, + "2024-05-29T11": 0.195905861, + "2024-05-29T12": 0.19750823099999998, + "2024-05-29T13": 0.19674641799999998, + "2024-05-29T14": 0.19535533000000002, + "2024-05-29T15": 0.19437552000000002, + "2024-05-29T18": 0.194912704, + "2024-05-29T17": 0.19492475718363897, + "2024-05-29T23": 0.19546516000000003, + "2024-05-29T19": 0.194708998, + "2024-05-29T22": 0.19608210699999998, + "2024-05-29T20": 0.19462273200000002, + "2024-05-29T16": 0.193166623, + "2024-05-29T21": 0.19550276859246882, + "2024-05-30": 0.19839884652926784, + "2024-05-30T00": 0.19575696, + "2024-05-30T05": 0.199102693, + "2024-05-30T02": 0.19875921, + "2024-05-30T08": 0.1953827, + "2024-05-30T01": 0.19658599368434404, + "2024-05-30T06": 0.19724208, + "2024-05-30T07": 0.19478137701536677, + "2024-05-30T03": 0.19896096, + "2024-05-30T04": 0.19926259500000001, + "2024-05-30T09": 0.19748143999999998, + "2024-05-30T10": 0.198298816, + "2024-05-30T11": 0.198339215, + "2024-05-30T12": 0.1978416, + "2024-05-30T13": 0.19858077999999998, + "2024-05-30T14": 0.199608138, + "2024-05-30T15": 0.20161932, + "2024-05-30T21": 0.1982628308198534, + "2024-05-30T20": 0.19846228500000002, + "2024-05-30T18": 0.200547844, + "2024-05-30T22": 0.19863045499999998, + "2024-05-30T16": 0.202327136, + "2024-05-30T17": 0.201523392, + "2024-05-30T19": 0.199764036, + "2024-05-31": 0.2049951319547951, + "2024-05-30T23": 0.19973007, + "2024-05-31T03": 0.20110342399999998, + "2024-05-31T07": 0.20223931, + "2024-05-31T06": 0.20243925000000002, + "2024-05-31T04": 0.202206942, + "2024-05-31T02": 0.20071566400000002, + "2024-05-31T05": 0.201517344, + "2024-05-31T00": 0.199644084, + "2024-05-31T01": 0.200151952, + "2024-05-31T08": 0.2034666913326847, + "2024-05-31T09": 0.204530436, + "2024-05-31T10": 0.20777526, + "2024-05-31T11": 0.208172937, + "2024-05-31T12": 0.210271656, + "2024-05-31T13": 0.207071536, + "2024-05-31T14": 0.206182409, + "2024-06-01": 0.20578045309165416, + "2024-06-01T08": 0.21192395700000002, + "2024-06-01T02": 0.20630200617685227, + "2024-06-01T05": 0.21083542, + "2024-05-31T21": 0.205958746, + "2024-06-01T00": 0.205689982, + "2024-05-31T18": 0.203679788, + "2024-05-31T15": 0.206528439, + "2024-05-31T23": 0.20569204100000002, + "2024-05-31T22": 0.20596287, + "2024-06-01T01": 0.206391334, + "2024-06-01T07": 0.2105317719419968, + "2024-06-01T04": 0.208439378, + "2024-05-31T19": 0.204130192, + "2024-06-01T06": 0.211332915, + "2024-05-31T20": 0.2046647613428631, + "2024-05-31T17": 0.20427440360000002, + "2024-05-31T16": 0.204434274, + "2024-06-01T03": 0.20743392, + "2024-06-01T09": 0.21163207959312236, + "2024-06-01T10": 0.212213088, + "2024-06-02": 0.21512409532517932, + "2024-06-01T13": 0.21740415999999999, + "2024-06-01T15": 0.214982648, + "2024-06-01T18": 0.212510697, + "2024-06-01T12": 0.215212602, + "2024-06-01T21": 0.212111053, + "2024-06-01T20": 0.21281527483084756, + "2024-06-02T01": 0.22002384, + "2024-06-01T17": 0.21302944, + "2024-06-01T11": 0.21331212, + "2024-06-02T00": 0.21772568, + "2024-06-01T23": 0.212323625, + "2024-06-01T14": 0.21646379699999999, + "2024-06-01T22": 0.212215212, + "2024-06-01T19": 0.21281043, + "2024-06-01T16": 0.213605442, + "2024-06-02T13": 0.21914210399999998, + "2024-06-02T11": 0.219743871, + "2024-06-02T07": 0.22022147600000003, + "2024-06-02T05": 0.22001503200000003, + "2024-06-02T08": 0.21964174399999997, + "2024-06-02T04": 0.220321395, + "2024-06-02T10": 0.218937866, + "2024-06-02T12": 0.21924422600000001, + "2024-06-02T02": 0.21901587200000003, + "2024-06-02T16": 0.2194307347658051, + "2024-06-02T17": 0.218757715, + "2024-06-02T03": 0.21891739458874943, + "2024-06-02T09": 0.220436756, + "2024-06-02T15": 0.220017234, + "2024-06-02T06": 0.22101198, + "2024-06-02T18": 0.22096512899999998, + "2024-06-02T14": 0.219539619, + "2024-06-03": 0.23015012769860893, + "2024-06-03T01": 0.245732788, + "2024-06-02T20": 0.222570834, + "2024-06-03T00": 0.23537047499999997, + "2024-06-02T21": 0.22258267978572643, + "2024-06-02T23": 0.229675908, + "2024-06-02T19": 0.221169433, + "2024-06-02T22": 0.225778014, + "2024-06-03T02": 0.25539807600000003, + "2024-06-03T05": 0.23665792, + "2024-06-03T06": 0.237697382240898, + "2024-06-03T04": 0.237662076, + "2024-06-03T03": 0.248953031, + "2024-06-03T07": 0.236548512 + }, + "USD litecoin": { + "2023-07-30": 94.58527876234524, + "2023-10-23": 66.4507157995864, + "2023-07-27": 90.95697894689957, + "2023-07-10": 94.66675371610795, + "2023-08-20": 64.49478523248935, + "2024-02-23": 68.4428082196437, + "2024-04-05": 98.27863676036402, + "2023-12-19": 71.03870122845923, + "2024-05-17": 83.21034221705611, + "2023-08-06": 82.98943927586845, + "2023-12-02": 71.8730863579369, + "2023-10-31": 68.9980972689519, + "2023-08-29": 68.3462674081115, + "2023-06-20": 77.47460679127158, + "2023-09-09": 62.787529060047056, + "2023-06-26": 87.47986776324348, + "2023-10-01": 66.68816316948006, + "2024-03-07": 86.14392389584638, + "2023-10-12": 61.077820757230235, + "2024-04-22": 85.21177853945771, + "2023-07-05": 102.7556430433909, + "2023-07-29": 91.21701166951907, + "2024-04-26": 86.65886386402737, + "2024-01-08": 64.88128641527805, + "2023-05-29": 91.24387082018384, + "2023-10-07": 65.71694713058774, + "2023-09-26": 64.2505438532556, + "2023-08-24": 65.24300812459587, + "2023-12-05": 72.49770401936821, + "2024-02-19": 71.07109526479509, + "2024-01-07": 65.43395563478592, + "2024-04-28": 84.68705175299567, + "2023-07-31": 93.12256450241321, + "2023-10-18": 61.78180424442447, + "2024-05-19": 82.87794038059805, + "2024-05-12": 81.53360742562273, + "2024-04-29": 83.40695142406798, + "2023-08-25": 64.63646822318074, + "2024-03-09": 88.93927635672533, + "2023-07-12": 96.70793734616139, + "2023-09-05": 63.03487137428016, + "2023-06-07": 89.62699269081057, + "2023-09-16": 65.17671615897208, + "2024-04-25": 83.52172489789433, + "2023-08-12": 83.58025541633477, + "2023-06-06": 88.0410287551299, + "2023-09-01": 63.55479719001397, + "2023-09-08": 62.708521762015934, + "2024-03-22": 83.08900498859337, + "2023-08-10": 83.64933922115931, + "2023-12-07": 73.54890612191895, + "2023-11-18": 69.39844933539298, + "2023-07-13": 100.71933638300787, + "2023-09-13": 61.08634526597043, + "2023-06-17": 77.12809722268206, + "2023-07-17": 92.06745044208373, + "2023-07-07": 97.01687198693901, + "2023-09-07": 62.98554131406486, + "2024-03-26": 91.31716290236659, + "2024-05-14": 79.89752463628811, + "2024-02-22": 69.05297710670479, + "2024-04-15": 79.03466273957984, + "2023-12-30": 73.29080169958691, + "2023-09-17": 63.97531613768751, + "2024-04-17": 78.87692099174511, + "2024-02-12": 71.64628713496212, + "2023-10-26": 69.11810252556029, + "2024-01-03": 65.40572337255868, + "2024-05-07": 81.41795213479922, + "2023-06-01": 92.78156731517876, + "2024-01-22": 69.47670589005396, + "2023-06-12": 76.81356384114487, + "2023-10-03": 65.88676942040476, + "2024-05-26": 84.5032504659327, + "2024-04-30": 79.47192045969105, + "2023-06-19": 77.22698293051786, + "2023-07-09": 96.80167192906966, + "2023-12-24": 72.30925100292791, + "2023-09-24": 64.67046372617854, + "2024-01-16": 69.62652533158118, + "2023-10-17": 62.70609835286364, + "2024-04-24": 85.56761153877278, + "2024-03-18": 84.42275681231412, + "2024-02-17": 69.97667999773654, + "2023-12-27": 75.2359352146679, + "2023-07-23": 92.53947420511916, + "2023-09-03": 64.11150731180996, + "2024-02-24": 69.81054653886297, + "2024-01-06": 65.39747735929647, + "2024-03-20": 81.1628530173579, + "2023-11-21": 69.57131674488788, + "2023-12-25": 72.15215769320582, + "2023-09-22": 64.7307744360758, + "2023-10-02": 67.53367041888269, + "2024-03-27": 95.52960219268331, + "2024-05-06": 81.8004507896149, + "2023-08-30": 67.61963494147456, + "2023-10-06": 65.27311350670374, + "2023-10-13": 61.379225754310205, + "2023-06-28": 85.44942398362963, + "2024-02-05": 67.58204865141859, + "2024-03-01": 84.17343996194795, + "2023-07-15": 94.77644504320108, + "2023-06-25": 88.67893836640737, + "2023-12-10": 77.75992603532342, + "2023-11-23": 69.22599649025373, + "2023-08-04": 82.8915674525795, + "2024-05-13": 81.3352184977115, + "2024-01-13": 71.92709533051303, + "2024-03-28": 95.17049402469108, + "2023-08-05": 82.35537366320727, + "2024-02-09": 70.83208742549611, + "2023-10-09": 63.27818213128817, + "2024-01-09": 66.06076870280425, + "2024-05-10": 82.86634115652217, + "2023-05-27": 87.9563499875559, + "2023-08-18": 64.74439451364357, + "2023-11-05": 71.35432244112383, + "2024-04-18": 80.77360689827316, + "2023-10-22": 64.68877043086154, + "2023-11-01": 68.18087999140337, + "2024-05-20": 83.87227032753532, + "2023-12-08": 75.70859597810346, + "2024-04-12": 95.48040487544354, + "2023-07-06": 101.39666655522537, + "2024-03-12": 97.66341781505193, + "2023-09-11": 59.86367953718249, + "2024-03-03": 91.14231106387773, + "2024-02-04": 67.79462078535492, + "2024-01-28": 67.94001374153237, + "2023-07-01": 106.3200187101421, + "2023-11-07": 73.18842290922507, + "2023-11-25": 71.26222545255486, + "2023-06-04": 95.64217608737613, + "2024-02-25": 70.0825703900607, + "2023-12-01": 71.13563009802989, + "2023-07-14": 100.6270415939798, + "2024-01-26": 66.72035862049533, + "2023-08-03": 86.22646620557039, + "2024-02-28": 74.73602375750482, + "2023-09-15": 63.469862436659575, + "2023-07-18": 91.2088497536359, + "2023-12-21": 70.18950582832944, + "2023-07-20": 92.43244532971408, + "2024-03-06": 84.23744118888212, + "2023-09-30": 65.80151818987888, + "2023-12-12": 72.59969641247983, + "2024-02-13": 70.08733046341602, + "2023-09-20": 65.24138813528904, + "2023-09-19": 67.32959028311252, + "2023-09-29": 65.74569684094222, + "2023-09-12": 60.22696103773868, + "2023-06-13": 77.84432757430719, + "2023-10-04": 64.25590548173626, + "2023-07-08": 97.61657070863642, + "2024-04-16": 78.39256926118016, + "2024-03-02": 90.88292338365044, + "2023-06-27": 88.17638958307764, + "2023-10-08": 65.41890052777055, + "2023-11-20": 70.3199284446015, + "2023-12-20": 71.07855375253229, + "2023-12-31": 73.75556660419304, + "2023-11-06": 72.67040825769823, + "2023-08-22": 65.94213736541106, + "2023-06-09": 88.71764012307005, + "2024-03-17": 85.59206649986095, + "2023-09-18": 65.96563025322897, + "2024-04-01": 105.16581807165898, + "2024-05-21": 88.38075328750058, + "2024-01-19": 69.25114763713196, + "2023-11-11": 74.42100302879808, + "2023-09-23": 64.83444822590936, + "2023-11-19": 69.72526545513661, + "2023-07-02": 110.87301359730577, + "2023-08-15": 81.53542504426068, + "2024-01-25": 65.52978001247016, + "2024-03-13": 97.359661445994, + "2024-01-21": 71.23621196049685, + "2024-02-01": 66.60563398129605, + "2023-06-15": 73.3445916140747, + "2024-03-16": 88.32483692566245, + "2023-11-27": 68.93036628650866, + "2024-01-10": 67.2451980204529, + "2024-03-15": 88.47291057905616, + "2023-06-21": 84.37087418098359, + "2024-01-02": 74.729554512219, + "2023-07-11": 97.13383217739684, + "2023-10-25": 68.96860550453773, + "2024-01-01": 73.35352123988358, + "2024-02-14": 69.66549008284493, + "2023-09-04": 63.91361997822286, + "2023-09-06": 62.8628539220882, + "2024-04-03": 100.85477155983995, + "2023-11-28": 69.0724739383715, + "2023-12-03": 71.88853264968823, + "2023-08-02": 90.47380342845487, + "2023-08-27": 65.18813223498839, + "2023-10-20": 63.424553188277756, + "2023-10-10": 63.25333030026252, + "2024-05-03": 81.27662352753207, + "2024-03-08": 87.88233865492154, + "2024-04-11": 97.0886805885931, + "2023-06-22": 86.24370878005098, + "2024-01-14": 71.4600448338351, + "2023-12-15": 71.93534423599947, + "2023-10-19": 61.09272503798374, + "2024-02-08": 68.82981146283458, + "2023-11-08": 73.44737711588984, + "2023-11-12": 74.9019937393932, + "2023-12-22": 71.42431372483719, + "2023-05-31": 89.35782679456763, + "2024-03-23": 86.10124294924452, + "2023-09-27": 63.76903770797944, + "2024-03-04": 90.1690528530073, + "2023-09-10": 61.32460031683027, + "2024-04-13": 84.203356310306, + "2024-02-29": 82.24320190167282, + "2023-07-21": 92.55007789214702, + "2023-06-30": 98.69336006137695, + "2023-12-29": 76.13763560369983, + "2023-12-04": 73.3597987963794, + "2024-04-10": 96.43106324955019, + "2024-05-08": 80.93007251923301, + "2023-09-21": 64.46703779745913, + "2023-06-02": 94.77392579101425, + "2024-04-21": 84.68163621268626, + "2023-07-22": 93.81132922979887, + "2023-10-11": 62.09994136384069, + "2024-03-21": 85.43474105340299, + "2023-07-19": 92.81509138110239, + "2024-05-05": 81.22209311956462, + "2024-05-23": 85.83100998470518, + "2024-04-08": 103.5642460666802, + "2024-05-18": 84.03872827571107, + "2023-06-14": 77.4368338077823, + "2023-10-05": 64.65415148335983, + "2023-10-16": 63.35969832482063, + "2024-05-22": 86.64081340550021, + "2024-02-10": 70.65958289543622, + "2024-04-07": 103.16595721306132, + "2024-02-20": 70.35678144110899, + "2023-11-17": 70.1959876709609, + "2023-12-11": 73.26291204255934, + "2023-11-26": 70.4984218760627, + "2023-11-16": 72.79097467003554, + "2023-06-29": 84.4641865326968, + "2023-10-27": 67.77657393670698, + "2023-06-11": 77.73317591233035, + "2024-02-02": 67.8369923054373, + "2023-09-14": 62.699407827798225, + "2024-01-27": 67.24086800543155, + "2024-03-30": 103.77693077979932, + "2023-11-22": 67.72215941988829, + "2023-09-28": 64.01628416966075, + "2023-06-03": 96.14829674105688, + "2024-01-18": 69.13864894529449, + "2023-08-26": 65.20255749808798, + "2024-02-15": 70.02915671541318, + "2023-10-28": 67.94281243350348, + "2024-03-24": 88.12155484070291, + "2024-04-27": 85.17779451270513, + "2023-12-06": 73.57555439526136, + "2024-01-30": 68.1882852362333, + "2023-11-14": 71.21196721873429, + "2023-08-09": 83.86186709290546, + "2024-05-15": 80.09041943870136, + "2023-11-10": 73.03093099917818, + "2024-01-23": 64.91135531490306, + "2024-01-31": 67.89344972287401, + "2024-05-11": 80.8735768439226, + "2024-01-11": 71.50391166398056, + "2024-02-18": 70.43899265560245, + "2023-06-16": 75.29790264663451, + "2023-10-30": 68.99391806317894, + "2023-12-17": 72.53058735589015, + "2024-02-26": 70.65687867232604, + "2023-07-16": 94.67904404050788, + "2024-01-05": 65.4623948974514, + "2023-08-23": 65.03429597930467, + "2024-03-11": 95.87014525380772, + "2023-08-01": 92.28385174398915, + "2024-03-14": 95.14173129866852, + "2024-02-21": 68.38279401949828, + "2023-08-28": 64.91785953538748, + "2023-07-04": 107.07957602931363, + "2023-12-13": 71.9833038772962, + "2024-02-27": 74.78694880126876, + "2023-08-13": 83.0574156027862, + "2024-03-31": 103.19833975747139, + "2023-12-09": 77.74428329888183, + "2024-04-02": 101.10508024276254, + "2024-02-06": 67.96618721373214, + "2024-04-09": 99.72518685099624, + "2023-11-04": 69.48750345625498, + "2024-04-20": 82.72671470711505, + "2024-01-15": 70.43296360554797, + "2023-07-03": 109.77883919988614, + "2023-12-28": 76.22215481773357, + "2023-05-30": 91.9548632698814, + "2024-05-25": 84.9810143783302, + "2024-02-07": 68.10229643872471, + "2023-09-25": 64.2881713402834, + "2024-03-19": 80.5309667534485, + "2024-03-10": 88.65797928679399, + "2024-05-02": 80.11892583105023, + "2023-09-02": 64.00508068175452, + "2024-01-12": 73.71454105755613, + "2024-04-19": 80.97626724442364, + "2023-11-29": 69.72290498205739, + "2023-10-15": 61.58501836127501, + "2024-05-28": 85.2446354856238, + "2023-11-30": 69.51337583970017, + "2024-01-24": 65.46614024630708, + "2023-08-11": 83.05862274546861, + "2024-02-11": 72.14954970676827, + "2023-06-08": 88.34969505174632, + "2023-11-15": 71.99368358811263, + "2023-12-16": 72.05098256901293, + "2024-03-29": 103.557251593016, + "2024-04-04": 100.05203853407394, + "2023-06-10": 77.11110301352954, + "2023-07-28": 91.21625848509129, + "2024-01-20": 71.25233649070665, + "2023-10-21": 64.46016085466906, + "2023-08-16": 77.97004457417694, + "2024-05-24": 85.12417816815797, + "2023-11-03": 68.92553058772275, + "2023-08-31": 67.21033941252804, + "2024-05-27": 84.80674336326197, + "2024-01-04": 65.64967886243792, + "2023-07-26": 89.53716891767716, + "2023-11-13": 73.42878886976979, + "2023-10-24": 69.54036542667896, + "2024-03-25": 90.19426696147207, + "2023-08-07": 82.34475038649745, + "2023-10-29": 68.2516739201878, + "2024-01-29": 67.89214142080269, + "2024-05-04": 82.09722219070515, + "2023-06-05": 92.29107137462347, + "2023-11-02": 69.84880115610726, + "2023-12-18": 70.07664779587861, + "2023-11-24": 70.14016049010873, + "2023-08-21": 66.09141442095118, + "2023-07-25": 89.22953614296432, + "2024-05-16": 82.32191056913902, + "2023-08-14": 82.1060558672891, + "2024-05-01": 77.90689482938812, + "2024-03-05": 89.15308273901854, + "2024-04-06": 100.27009824981742, + "2023-12-23": 72.22680455811764, + "2024-02-03": 68.25360556778224, + "2024-02-16": 70.1874327376639, + "2023-05-28": 89.6864114409002, + "2023-12-14": 72.93109986456506, + "2023-06-24": 90.65721674020043, + "2023-12-26": 72.48585974537895, + "2023-11-09": 74.23891612802413, + "2023-08-19": 64.01641394067921, + "2024-05-09": 81.94696787117684, + "2024-01-17": 69.28080992225166, + "2023-06-23": 87.08081185105019, + "2023-06-18": 77.3075047560251, + "2024-04-23": 84.85868077068731, + "2023-08-08": 83.15327664002216, + "2023-08-17": 74.40575221545485, + "2024-04-14": 77.98624876364254, + "2023-07-24": 89.23546981358332, + "2023-10-14": 61.629432431247395, + "2024-05-22T20": 85.9496848, + "2024-05-25T08": 85.39668230000001, + "2024-05-22T05": 86.7609084, + "2024-05-28T03": 84.28373517458373, + "2024-05-22T16": 86.63579655235678, + "2024-05-25T05": 85.75568400000002, + "2024-05-24T22": 84.89811259999999, + "2024-05-27T14": 85.1186704, + "2024-05-22T03": 87.31166069999999, + "2024-05-23T17": 84.5981982, + "2024-05-24T23": 84.884718, + "2024-05-26T19": 83.9746292, + "2024-05-26T18": 83.8363824, + "2024-05-26T10": 84.6286758, + "2024-05-27T16": 86.1845927, + "2024-05-24T12": 85.32560760000001, + "2024-05-26T01": 85.11148800000001, + "2024-05-21T17": 88.7784786, + "2024-05-23T07": 86.4572289, + "2024-05-22T08": 87.172562, + "2024-05-23T09": 86.3015111, + "2024-05-24T18": 84.89753, + "2024-05-23T01": 86.3959156, + "2024-05-25T15": 84.871512, + "2024-05-23T16": 84.5915915, + "2024-05-25T03": 85.2450352, + "2024-05-28T06": 83.2866432, + "2024-05-25T23": 84.8655704, + "2024-05-24T13": 84.968988, + "2024-05-26T03": 84.6306896, + "2024-05-26T00": 84.9489552, + "2024-05-25T06": 85.4466628, + "2024-05-27T04": 84.4152362, + "2024-05-22T10": 86.71091940000001, + "2024-05-27T09": 84.5175666, + "2024-05-24T17": 84.364552, + "2024-05-26T16": 84.02915063610773, + "2024-05-22T09": 86.78264, + "2024-05-24T21": 85.192332, + "2024-05-25T04": 85.595748, + "2024-05-27T22": 85.2329736, + "2024-05-27T11": 84.647486, + "2024-05-23T21": 83.94699250000001, + "2024-05-23T10": 85.6600085, + "2024-05-23T14": 85.95786, + "2024-05-27T02": 84.44015089999999, + "2024-05-25T18": 84.82878749999999, + "2024-05-27T05": 84.2895216, + "2024-05-22T23": 85.7314035, + "2024-05-28T01": 84.802104, + "2024-05-22T04": 86.5366288, + "2024-05-22T15": 87.0647439, + "2024-05-24T03": 85.8347933, + "2024-05-24T08": 85.12530650000001, + "2024-05-21T22": 88.0544568, + "2024-05-21T16": 88.8917601, + "2024-05-21T23": 88.22146959999999, + "2024-05-24T02": 86.0372934, + "2024-05-26T07": 84.85859070000001, + "2024-05-27T07": 84.33021579999999, + "2024-05-25T22": 84.7547414, + "2024-05-24T16": 84.2446024, + "2024-05-27T20": 85.2229838, + "2024-05-22T02": 87.9041744, + "2024-05-24T06": 84.9326132, + "2024-05-24T11": 85.61859799999999, + "2024-05-25T21": 84.93301000000001, + "2024-05-27T15": 85.526384, + "2024-05-21T19": 87.4811217, + "2024-05-22T19": 85.98048453287593, + "2024-05-21T12": 88.51963580000002, + "2024-05-23T20": 82.2882375, + "2024-05-23T08": 86.349888, + "2024-05-22T22": 85.68571200000001, + "2024-05-26T11": 84.83180850000001, + "2024-05-24T01": 85.985592, + "2024-05-23T05": 86.26648159999999, + "2024-05-28T04": 82.9793808, + "2024-05-25T09": 85.28928479999999, + "2024-05-27T18": 86.0629885, + "2024-05-24T10": 85.6163134, + "2024-05-25T19": 84.93876, + "2024-05-24T07": 84.65628960000001, + "2024-05-26T04": 84.8035024451628, + "2024-05-26T09": 84.526176, + "2024-05-23T02": 86.4450252, + "2024-05-27T06": 84.2995168, + "2024-05-28T08": 83.15709251058733, + "2024-05-24T15": 84.847555, + "2024-05-25T20": 84.85878, + "2024-05-27T08": 84.72913199999999, + "2024-05-23T22": 84.97728140000001, + "2024-05-26T15": 84.289396, + "2024-05-24T20": 85.301469, + "2024-05-21T20": 88.02094349999999, + "2024-05-25T13": 84.6581462, + "2024-05-22T01": 87.8194604, + "2024-05-25T17": 84.77134620000001, + "2024-05-27T10": 84.5084184, + "2024-05-21T21": 87.72069719999999, + "2024-05-24T19": 84.8037027, + "2024-05-26T02": 84.6006929, + "2024-05-27T19": 84.9341298, + "2024-05-25T11": 85.507172, + "2024-05-27T17": 86.0812449, + "2024-05-21T18": 88.5974528, + "2024-05-26T06": 84.6612054, + "2024-05-23T00": 86.19429279999999, + "2024-05-22T00": 88.20412040000001, + "2024-05-24T05": 85.11316199999999, + "2024-05-23T15": 85.83815200000001, + "2024-05-22T13": 86.03053560000001, + "2024-05-21T10": 88.71540782662547, + "2024-05-22T12": 85.68543100000001, + "2024-05-23T04": 86.48634520000002, + "2024-05-26T08": 84.75438820000001, + "2024-05-26T13": 84.4329728, + "2024-05-28T05": 83.04600529999999, + "2024-05-22T18": 85.9996788, + "2024-05-22T06": 87.3107874, + "2024-05-21T08": 88.69790737327136, + "2024-05-22T17": 86.7061248, + "2024-05-23T19": 83.822812, + "2024-05-25T07": 85.2467408, + "2024-05-26T22": 84.064678, + "2024-05-25T16": 84.788128, + "2024-05-26T05": 84.494644, + "2024-05-24T04": 85.90186800000001, + "2024-05-21T14": 88.12796250000001, + "2024-05-25T12": 84.8440605, + "2024-05-28T07": 83.0618334, + "2024-05-23T18": 83.51787361765055, + "2024-05-26T23": 83.95967999999999, + "2024-05-24T09": 85.3515745, + "2024-05-23T03": 86.4920115, + "2024-05-26T14": 84.41706450000001, + "2024-05-21T13": 88.572282, + "2024-05-22T14": 86.2966936, + "2024-05-25T14": 84.6740724, + "2024-05-25T00": 84.92046380000001, + "2024-05-23T23": 85.262468, + "2024-05-21T11": 88.9359808, + "2024-05-23T13": 86.33977050000001, + "2024-05-22T11": 86.68439400000001, + "2024-05-21T15": 88.46876239999999, + "2024-05-28T00": 85.06189599999999, + "2024-05-27T23": 85.228348, + "2024-05-28T02": 84.387507, + "2024-05-26T21": 83.73811, + "2024-05-26T12": 84.6928896, + "2024-05-23T06": 86.2056562, + "2024-05-22T07": 87.2242968, + "2024-05-27T12": 84.730647, + "2024-05-22T21": 85.6083132, + "2024-05-24T00": 86.1911965, + "2024-05-25T02": 85.081278, + "2024-05-27T00": 83.96799500000002, + "2024-05-26T20": 83.87880270000001, + "2024-05-26T17": 83.73475880000001, + "2024-05-27T13": 84.846513, + "2024-05-23T12": 87.0273357, + "2024-05-25T10": 85.4869123, + "2024-05-21T09": 88.612274, + "2024-05-23T11": 86.84655500000001, + "2024-05-24T14": 84.71980620000001, + "2024-05-25T01": 85.202956, + "2024-05-27T21": 85.2438167, + "2024-05-27T03": 84.4901214, + "2024-05-27T01": 84.3286587, + "latest": 83.76, + "2024-05-28T09": 83.61378900000001, + "2024-05-28T10": 83.8086267, + "2024-05-28T11": 83.70667465615661, + "2024-05-28T12": 83.4855943, + "2024-05-28T13": 83.15675999999999, + "2024-05-28T14": 82.8778696, + "2024-05-28T15": 82.81208339999999, + "2024-05-29": 83.58261824814608, + "2024-05-28T20": 83.1883954, + "2024-05-28T22": 83.4631432, + "2024-05-28T21": 83.21085079999999, + "2024-05-28T19": 82.9478485, + "2024-05-29T02": 83.314932, + "2024-05-28T17": 82.78713, + "2024-05-28T18": 82.316975, + "2024-05-28T23": 83.3898688, + "2024-05-29T00": 83.3115762, + "2024-05-29T01": 83.21918279999998, + "2024-05-28T16": 82.7829865, + "2024-05-29T06": 83.9183358, + "2024-05-29T05": 83.88090360000001, + "2024-05-29T03": 83.64124620000001, + "2024-05-29T07": 83.46975520000001, + "2024-05-29T04": 83.83012330000001, + "2024-05-29T08": 83.01689999999999, + "2024-05-29T09": 83.323272, + "2024-05-29T10": 83.5688595, + "2024-05-29T11": 83.63711719999999, + "2024-05-29T12": 83.5688595, + "2024-05-29T13": 83.4648466, + "2024-05-29T14": 83.388247, + "2024-05-29T15": 83.78634240000001, + "2024-05-29T18": 83.80946560000001, + "2024-05-29T17": 83.834481, + "2024-05-29T23": 83.629524, + "2024-05-29T19": 83.8777192, + "2024-05-29T22": 83.7769043, + "2024-05-29T20": 83.60385120000001, + "2024-05-29T16": 83.6522401, + "2024-05-29T21": 83.43582643251402, + "2024-05-30": 83.89433442281607, + "2024-05-30T00": 83.5163112, + "2024-05-30T05": 83.7869687, + "2024-05-30T02": 83.7385536, + "2024-05-30T08": 82.10071, + "2024-05-30T01": 83.55903644154156, + "2024-05-30T06": 83.053504, + "2024-05-30T07": 82.7786454, + "2024-05-30T03": 83.679464, + "2024-05-30T04": 83.80015900000001, + "2024-05-30T09": 82.690356, + "2024-05-30T10": 82.74777710000001, + "2024-05-30T11": 83.0826485, + "2024-05-30T12": 83.163416, + "2024-05-30T13": 84.69915, + "2024-05-30T14": 84.6010656, + "2024-05-30T15": 84.83605200000001, + "2024-05-30T21": 84.03319, + "2024-05-30T20": 83.9240514, + "2024-05-30T18": 84.9579052, + "2024-05-30T22": 84.41044600000001, + "2024-05-30T16": 84.7735882781443, + "2024-05-30T17": 84.9277152, + "2024-05-30T19": 84.6547594, + "2024-05-31": 83.70995581449633, + "2024-05-30T23": 84.41044600000001, + "2024-05-31T03": 84.0896176, + "2024-05-31T07": 83.864833, + "2024-05-31T06": 83.92481500000001, + "2024-05-31T04": 84.1312818, + "2024-05-31T02": 84.1746318, + "2024-05-31T05": 83.8456092, + "2024-05-31T00": 84.2663988, + "2024-05-31T01": 84.30976079999999, + "2024-05-31T08": 83.7831808, + "2024-05-31T09": 83.6915352, + "2024-05-31T10": 83.8006894, + "2024-05-31T11": 83.97974109, + "2024-05-31T12": 84.45844890000001, + "2024-05-31T13": 83.98789520000001, + "2024-05-31T14": 83.4723936, + "2024-06-01": 83.17376623911284, + "2024-06-01T08": 83.1908942, + "2024-06-01T02": 83.06601850000001, + "2024-06-01T05": 83.25501039999999, + "2024-05-31T21": 83.3923167, + "2024-06-01T00": 83.0851666, + "2024-05-31T18": 83.2499928, + "2024-05-31T15": 82.98006933, + "2024-05-31T23": 83.14294073, + "2024-05-31T22": 83.26913024999999, + "2024-06-01T01": 82.9661195, + "2024-06-01T07": 83.27345929589946, + "2024-06-01T04": 83.1559206, + "2024-05-31T19": 83.41974040000001, + "2024-06-01T06": 83.3141298, + "2024-05-31T20": 83.5121763, + "2024-05-31T17": 82.9627457, + "2024-05-31T16": 82.333256, + "2024-06-01T03": 83.113456, + "2024-06-01T09": 83.25750289999999, + "2024-06-01T10": 83.376564, + "2024-06-02": 83.39977137245641, + "2024-06-01T13": 83.44483199999999, + "2024-06-01T15": 83.5255539, + "2024-06-01T18": 83.1958897, + "2024-06-01T12": 83.3074594, + "2024-06-01T21": 83.3557473, + "2024-06-01T20": 83.28580960000001, + "2024-06-02T01": 83.25334399999998, + "2024-06-01T17": 83.243352, + "2024-06-01T11": 83.26666080000001, + "2024-06-02T00": 83.323288, + "2024-06-01T23": 83.33077800000001, + "2024-06-01T14": 83.50887599999999, + "2024-06-01T22": 83.4073724, + "2024-06-01T19": 83.21587190000001, + "2024-06-01T16": 83.37505958999999, + "2024-06-02T13": 82.74038399999999, + "2024-06-02T11": 82.5513469, + "2024-06-02T07": 82.8228591, + "2024-06-02T05": 83.22003640000001, + "2024-06-02T08": 82.7503768, + "2024-06-02T04": 83.2724946, + "2024-06-02T10": 82.25908319999999, + "2024-06-02T12": 82.84114100000001, + "2024-06-02T02": 83.18007, + "2024-06-02T16": 82.8428429, + "2024-06-02T17": 82.6962125, + "2024-06-02T03": 83.2192035, + "2024-06-02T09": 82.33902400000001, + "2024-06-02T15": 82.98106849999999, + "2024-06-02T06": 83.13927149999999, + "2024-06-02T18": 82.5196323, + "2024-06-02T14": 82.99717498217771, + "2024-06-03": 82.98686276877132, + "2024-06-03T01": 83.4731996, + "2024-06-02T20": 82.77196439999999, + "2024-06-03T00": 82.86439949999999, + "2024-06-02T21": 82.9662696408314, + "2024-06-02T23": 83.1350828, + "2024-06-02T19": 82.6911834, + "2024-06-02T22": 83.0851098, + "2024-06-03T02": 83.66385330000001, + "2024-06-03T05": 83.739726, + "2024-06-03T06": 83.9162592, + "2024-06-03T04": 83.25168599999999, + "2024-06-03T03": 83.38077630000001, + "2024-06-03T07": 84.005361 + }, + "USD metis": { + "2023-07-30": 16.07623996369614, + "2023-10-23": 12.751610745413176, + "2023-07-27": 15.846831626873861, + "2023-07-10": 18.00077381087236, + "2023-08-20": 13.062692039289553, + "2024-02-23": 88.05830847323845, + "2024-04-05": 89.10615320034591, + "2023-12-19": 27.724213118978987, + "2024-05-17": 58.09704333728714, + "2023-08-06": 14.91199686912219, + "2023-12-02": 20.621263792341736, + "2023-10-31": 13.105685211323914, + "2023-08-29": 12.028512073631433, + "2023-06-20": 18.93730311535541, + "2023-09-09": 11.17271590697035, + "2023-06-26": 20.712363541652085, + "2023-10-01": 13.362928114424447, + "2024-03-07": 99.051918653201, + "2023-10-12": 11.611123627051663, + "2024-04-22": 65.84479227811644, + "2023-07-05": 18.429178212418446, + "2023-07-29": 15.705377790072973, + "2024-04-26": 64.53278905643018, + "2024-01-08": 72.99741690033686, + "2023-05-29": 22.26353597829648, + "2023-10-07": 12.409702576588725, + "2023-09-26": 14.34065065340358, + "2023-08-24": 12.264296394621299, + "2023-12-05": 24.273028708205615, + "2024-02-19": 88.04331671956665, + "2024-01-07": 80.388640964866, + "2024-04-28": 64.16675450702381, + "2023-07-31": 16.33444507698762, + "2023-10-18": 11.348447687953342, + "2024-05-19": 61.213768825029085, + "2024-05-12": 57.87296257971226, + "2024-04-29": 65.87296340630527, + "2023-08-25": 12.003800110993973, + "2024-03-09": 97.16441708077049, + "2023-07-12": 17.85210363760404, + "2023-09-05": 11.478178081760433, + "2023-06-07": 21.576678313392375, + "2023-09-16": 10.728024576420182, + "2024-04-25": 64.84608652104109, + "2023-08-12": 15.595724020732762, + "2023-06-06": 21.164418164064415, + "2023-09-01": 11.523020748828765, + "2023-09-08": 11.423589491134557, + "2024-03-22": 105.63806207520668, + "2023-08-10": 16.062985056829568, + "2023-12-07": 21.987845085781455, + "2023-11-18": 17.51191498358473, + "2023-07-13": 18.218813139287693, + "2023-09-13": 10.89665642558626, + "2023-06-17": 18.989174587854023, + "2023-07-17": 17.487636599858686, + "2023-07-07": 17.458646726440772, + "2023-09-07": 11.255986367097984, + "2024-03-26": 107.85234494013083, + "2024-05-14": 56.4706587990858, + "2024-02-22": 85.25233417561597, + "2024-04-15": 60.40646942328674, + "2023-12-30": 84.0248927520327, + "2023-09-17": 10.407089593230312, + "2024-04-17": 58.16583706372656, + "2024-02-12": 86.80753331897128, + "2023-10-26": 14.039457911202318, + "2024-01-03": 89.40084232644371, + "2024-05-07": 59.04052087359805, + "2023-06-01": 21.801164334190727, + "2024-01-22": 86.59568861000041, + "2023-06-12": 19.18908521175553, + "2023-10-03": 13.351807720197105, + "2024-05-26": 75.29477334859239, + "2024-04-30": 63.9510640892168, + "2023-06-19": 18.771029069414187, + "2023-07-09": 15.658303206237665, + "2023-12-24": 36.08887710983934, + "2023-09-24": 13.340473136223718, + "2024-01-16": 119.91930991120783, + "2023-10-17": 11.602067978313785, + "2024-04-24": 67.93551520820962, + "2024-03-18": 104.7361409007422, + "2024-02-17": 87.1880630841241, + "2023-12-27": 77.8779390933132, + "2023-07-23": 16.46938364154462, + "2023-09-03": 11.418990983753957, + "2024-02-24": 88.66168999622987, + "2024-01-06": 89.85028037702233, + "2024-03-20": 90.40192159323803, + "2023-11-21": 18.306686630736667, + "2023-12-25": 45.970529776550144, + "2023-09-22": 12.627274021797872, + "2023-10-02": 13.606205691158445, + "2024-03-27": 103.85199065479983, + "2024-05-06": 62.27292932993501, + "2023-08-30": 12.409235864998575, + "2023-10-06": 12.455593138020227, + "2023-10-13": 11.20865155480898, + "2023-06-28": 20.8294694176758, + "2024-02-05": 72.67089038504112, + "2024-03-01": 110.8540416444117, + "2023-07-15": 18.105148568287888, + "2023-06-25": 20.62046970545452, + "2023-12-10": 24.830279270682247, + "2023-11-23": 19.139195771938947, + "2023-08-04": 15.100523036654636, + "2024-05-13": 58.095873749976946, + "2024-01-13": 108.19995831683973, + "2024-03-28": 101.75626862346698, + "2023-08-05": 14.792428465352991, + "2024-02-09": 84.27961073935059, + "2023-10-09": 12.135974073119034, + "2024-01-09": 85.13787682467888, + "2024-05-10": 61.39946491180914, + "2023-05-27": 21.548876471630766, + "2023-08-18": 13.38477594315686, + "2023-11-05": 16.893618297253987, + "2024-04-18": 56.789377047094014, + "2023-10-22": 12.675388728952731, + "2023-11-01": 13.211785986435808, + "2024-05-20": 59.238683082604474, + "2023-12-08": 24.352007434006335, + "2024-04-12": 86.98179888013178, + "2023-07-06": 17.31706177991932, + "2024-03-12": 134.27819725633714, + "2023-09-11": 11.110980984728593, + "2024-03-03": 107.88163853347561, + "2024-02-04": 75.46778539791613, + "2024-01-28": 86.18468121410696, + "2023-07-01": 20.868349138884195, + "2023-11-07": 16.37810408461228, + "2023-11-25": 19.06472636571453, + "2023-06-04": 22.06886948093043, + "2024-02-25": 98.30780948283092, + "2023-12-01": 19.945362165181898, + "2023-07-14": 18.825802669155184, + "2024-01-26": 78.71595378993663, + "2023-08-03": 15.183020675772973, + "2024-02-28": 109.66051074105383, + "2023-09-15": 10.866522599734788, + "2023-07-18": 17.30990260006001, + "2023-12-21": 27.645676008618995, + "2023-07-20": 16.954448442410445, + "2024-03-06": 94.75444054041367, + "2023-09-30": 13.604723247331147, + "2023-12-12": 23.4232610792131, + "2024-02-13": 92.68234247908178, + "2023-09-20": 11.91447437697349, + "2023-09-19": 11.331941438706192, + "2023-09-29": 14.126007348050006, + "2023-09-12": 10.605757244491668, + "2023-06-13": 18.742912969613283, + "2023-10-04": 12.927932376611437, + "2023-07-08": 17.139112629716173, + "2024-04-16": 57.14667645158074, + "2024-03-02": 115.8751647798988, + "2023-06-27": 20.800009567756323, + "2023-10-08": 12.258804373767381, + "2023-11-20": 19.467146602060822, + "2023-12-20": 25.751081455174464, + "2023-12-31": 82.3875529149078, + "2023-11-06": 16.497525388237072, + "2023-08-22": 12.366968614562571, + "2023-06-09": 20.33958763283018, + "2024-03-17": 105.17716491050437, + "2023-09-18": 10.372462353452809, + "2024-04-01": 103.09895578305448, + "2024-05-21": 79.04360108314133, + "2024-01-19": 96.61272778620533, + "2023-11-11": 19.58657227760387, + "2023-09-23": 13.052077314910377, + "2023-11-19": 17.44037606176807, + "2023-07-02": 20.704662342952396, + "2023-08-15": 15.054327063324656, + "2024-01-25": 83.25024463161294, + "2024-03-13": 131.5016464233381, + "2024-01-21": 89.95645267681857, + "2024-02-01": 80.46276111390924, + "2023-06-15": 18.427138429951274, + "2024-03-16": 113.83570746593435, + "2023-11-27": 18.417419078023084, + "2024-01-10": 84.50405547818278, + "2024-03-15": 126.4119372309964, + "2023-06-21": 19.757273311554616, + "2024-01-02": 92.56828709347474, + "2023-07-11": 17.507403095092567, + "2023-10-25": 13.800953016379317, + "2024-01-01": 74.07988881536913, + "2024-02-14": 89.18393476405612, + "2023-09-04": 11.532130851259938, + "2023-09-06": 11.437914153140461, + "2024-04-03": 89.05954524765636, + "2023-11-28": 17.671757204148975, + "2023-12-03": 21.853174702500567, + "2023-08-02": 15.462355408701555, + "2023-08-27": 11.939443833008951, + "2023-10-20": 11.479158352087106, + "2023-10-10": 11.477848417016446, + "2024-05-03": 59.60513804709971, + "2024-03-08": 99.55261516082585, + "2024-04-11": 90.80615596685314, + "2023-06-22": 20.756833002706927, + "2024-01-14": 106.41123223051316, + "2023-12-15": 25.059677492766216, + "2023-10-19": 11.712031199864489, + "2024-02-08": 85.55533023810858, + "2023-11-08": 16.74817099830514, + "2023-11-12": 18.35015346886877, + "2023-12-22": 32.05908252450585, + "2023-05-31": 22.66917449392526, + "2024-03-23": 99.52132590176869, + "2023-09-27": 13.948898055522658, + "2024-03-04": 106.20752857086032, + "2023-09-10": 11.198978685424432, + "2024-04-13": 67.98462510566816, + "2024-02-29": 110.34638195750453, + "2023-07-21": 16.852837077681087, + "2023-06-30": 20.19014134829021, + "2023-12-29": 83.7566247320939, + "2023-12-04": 24.881726511133973, + "2024-04-10": 90.84960600162283, + "2024-05-08": 58.16742342819853, + "2023-09-21": 14.239634916909747, + "2023-06-02": 21.918455343824206, + "2024-04-21": 67.01493107430595, + "2023-07-22": 16.622519479566776, + "2023-10-11": 11.611156849859693, + "2024-03-21": 104.441847002237, + "2023-07-19": 17.040781365564293, + "2024-05-05": 61.32849081764553, + "2024-05-23": 75.99853518420228, + "2024-04-08": 89.30368117737257, + "2024-05-18": 61.106729707430624, + "2023-06-14": 19.007543647680233, + "2023-10-05": 12.702087944337055, + "2023-10-16": 11.401838443057889, + "2024-05-22": 78.90655725913493, + "2024-02-10": 88.18810915899778, + "2024-04-07": 87.68789098118377, + "2024-02-20": 89.80272922191982, + "2023-11-17": 17.827249506867254, + "2023-12-11": 25.39271893044286, + "2023-11-26": 18.987618701160212, + "2023-11-16": 18.884785071070723, + "2023-06-29": 19.975989468996886, + "2023-10-27": 13.471077296389298, + "2023-06-11": 19.12188233496303, + "2024-02-02": 77.02714444267556, + "2023-09-14": 10.702566508480315, + "2024-01-27": 87.11697622031735, + "2024-03-30": 98.30662527563383, + "2023-11-22": 17.171895672918296, + "2023-09-28": 13.492400741698482, + "2023-06-03": 23.082011678109552, + "2024-01-18": 108.93054039268284, + "2023-08-26": 11.800025178927864, + "2024-02-15": 90.26079915685118, + "2023-10-28": 12.859980535724837, + "2024-03-24": 96.73305044076602, + "2024-04-27": 62.04242712047265, + "2023-12-06": 23.248772717600716, + "2024-01-30": 89.35075475113352, + "2023-11-14": 19.515318782570777, + "2023-08-09": 16.28171642346418, + "2024-05-15": 54.2477649282824, + "2023-11-10": 18.78316032468221, + "2024-01-23": 84.88083005063108, + "2024-01-31": 86.61308257937189, + "2024-05-11": 58.73543444473304, + "2024-01-11": 97.89840272663524, + "2024-02-18": 83.92998816008887, + "2023-06-16": 18.405536045072747, + "2023-10-30": 13.244828975607607, + "2023-12-17": 24.56009109691177, + "2024-02-26": 109.85764903798368, + "2023-07-16": 17.86521754224592, + "2024-01-05": 96.86494325536326, + "2023-08-23": 12.125698045556216, + "2024-03-11": 109.46154822247696, + "2023-08-01": 15.625680402572916, + "2024-03-14": 133.2538916914961, + "2024-02-21": 89.18563510950078, + "2023-08-28": 12.167944961461378, + "2023-07-04": 19.087949963518128, + "2023-12-13": 24.21402996412538, + "2024-02-27": 106.20314472939933, + "2023-08-13": 15.503717199630433, + "2024-03-31": 96.61294975454337, + "2023-12-09": 26.630732548596267, + "2024-04-02": 97.47060478687308, + "2024-02-06": 76.55257341069759, + "2024-04-09": 96.37051764455903, + "2023-11-04": 15.68597912724972, + "2024-04-20": 62.17062933872642, + "2024-01-15": 115.16585639187717, + "2023-07-03": 19.05157374176412, + "2023-12-28": 92.19959570562301, + "2023-05-30": 22.61970775983127, + "2024-05-25": 73.82521410672229, + "2024-02-07": 86.82189362956463, + "2023-09-25": 13.440936208574708, + "2024-03-19": 95.10699054068965, + "2024-03-10": 104.55103623637044, + "2024-05-02": 59.4041643555335, + "2023-09-02": 11.566920175125542, + "2024-01-12": 108.45881768347277, + "2024-04-19": 58.90626539658845, + "2023-11-29": 17.835210141563408, + "2023-10-15": 11.334759116347952, + "2024-05-28": 78.4154235811785, + "2023-11-30": 18.083890724762348, + "2024-01-24": 82.89066042787061, + "2023-08-11": 15.702911318983023, + "2024-02-11": 85.92303813490301, + "2023-06-08": 20.526965267438968, + "2023-11-15": 19.099431778214704, + "2023-12-16": 25.067226068885844, + "2024-03-29": 101.64580424912282, + "2024-04-04": 88.37729704795798, + "2023-06-10": 19.88223370820954, + "2023-07-28": 15.427900315368507, + "2024-01-20": 97.73040179009699, + "2023-10-21": 12.266647195720143, + "2023-08-16": 14.522672186218774, + "2024-05-24": 78.46560249235112, + "2023-11-03": 14.81316977808794, + "2023-08-31": 12.016694033676604, + "2024-05-27": 80.22013470904943, + "2024-01-04": 84.14703640346167, + "2023-07-26": 15.613472859125661, + "2023-11-13": 18.928605050107144, + "2023-10-24": 13.523578845905048, + "2024-03-25": 101.19695135004898, + "2023-08-07": 14.957552096179516, + "2023-10-29": 12.812764350154305, + "2024-01-29": 83.53577306758973, + "2024-05-04": 61.643364950063095, + "2023-06-05": 22.27527832777199, + "2023-11-02": 13.94991220455038, + "2023-12-18": 23.935851227604775, + "2023-11-24": 18.758926716074928, + "2023-08-21": 13.029956011570755, + "2023-07-25": 15.613990431094297, + "2024-05-16": 58.33174097137353, + "2023-08-14": 15.36273149411803, + "2024-05-01": 59.0208288046591, + "2024-03-05": 98.6132250824163, + "2024-04-06": 85.26474204574765, + "2023-12-23": 39.44712223660188, + "2024-02-03": 78.60093745217407, + "2024-02-16": 92.83758036848933, + "2023-05-28": 21.31893934434324, + "2023-12-14": 25.587234464952093, + "2023-06-24": 21.29989075807955, + "2023-12-26": 71.08302162225122, + "2023-11-09": 17.211427643233208, + "2023-08-19": 13.163052470821802, + "2024-05-09": 58.26842078598194, + "2024-01-17": 120.06778100775492, + "2023-06-23": 20.688160932153853, + "2023-06-18": 19.060204817789963, + "2024-04-23": 68.3574103922958, + "2023-08-08": 14.796897118862637, + "2023-08-17": 14.241714001641686, + "2024-04-14": 56.51551652404028, + "2023-07-24": 15.866072930382144, + "2023-10-14": 11.271964595500268, + "2024-05-22T20": 75.90459655822242, + "2024-05-25T08": 75.10931584511366, + "2024-05-22T05": 76.83175629937062, + "2024-05-28T03": 77.8622262687064, + "2024-05-22T16": 75.74833422533, + "2024-05-25T05": 75.39954618052269, + "2024-05-24T22": 74.0470645885776, + "2024-05-27T14": 80.46645843817336, + "2024-05-22T03": 78.34620307731474, + "2024-05-23T17": 77.40631419719314, + "2024-05-24T23": 74.139660310488, + "2024-05-26T19": 82.68874543372624, + "2024-05-26T18": 82.21597327856593, + "2024-05-26T10": 78.0913481903272, + "2024-05-27T16": 80.37290294515218, + "2024-05-24T12": 72.80354916310971, + "2024-05-26T01": 75.53453030041308, + "2024-05-21T17": 81.39832115961971, + "2024-05-23T07": 77.42444016666457, + "2024-05-22T08": 76.35523394907608, + "2024-05-23T09": 77.18573998948067, + "2024-05-24T18": 73.90211067867088, + "2024-05-23T01": 76.82785477748546, + "2024-05-25T15": 74.95432441372223, + "2024-05-23T16": 76.71269362862373, + "2024-05-25T03": 74.8702209768713, + "2024-05-28T06": 76.81115596806781, + "2024-05-25T23": 75.03561364297465, + "2024-05-24T13": 73.28456089810821, + "2024-05-26T03": 76.4064424984443, + "2024-05-26T00": 75.3592386118159, + "2024-05-25T06": 76.037235309715, + "2024-05-27T04": 82.54021084211274, + "2024-05-22T10": 75.87809159501246, + "2024-05-27T09": 80.56749132112735, + "2024-05-24T17": 72.84193747298063, + "2024-05-26T16": 81.58777023921716, + "2024-05-22T09": 76.44139000027913, + "2024-05-24T21": 74.24454339331606, + "2024-05-25T04": 75.36255638667144, + "2024-05-27T22": 78.928225206483, + "2024-05-27T11": 79.94800937055942, + "2024-05-23T21": 77.56035187876441, + "2024-05-23T10": 77.16567920595803, + "2024-05-23T14": 77.64323890078896, + "2024-05-27T02": 82.17246445159647, + "2024-05-25T18": 74.46977230400682, + "2024-05-27T05": 81.69590402753578, + "2024-05-22T23": 75.52352372830255, + "2024-05-28T01": 77.92095465790128, + "2024-05-22T04": 77.97559745586032, + "2024-05-22T15": 75.64713712303498, + "2024-05-24T03": 79.36565293078618, + "2024-05-24T08": 74.45258122444076, + "2024-05-21T22": 79.43821312272956, + "2024-05-21T16": 80.99330917846319, + "2024-05-21T23": 80.52652658013858, + "2024-05-24T02": 79.66352135565836, + "2024-05-26T07": 77.7252427063226, + "2024-05-27T07": 80.88386849322217, + "2024-05-25T22": 75.4640317526911, + "2024-05-24T16": 73.20248305856592, + "2024-05-27T20": 78.56808993351052, + "2024-05-22T02": 78.25954240950291, + "2024-05-24T06": 75.98342370540419, + "2024-05-24T11": 72.58964419855114, + "2024-05-25T21": 75.23018287602254, + "2024-05-27T15": 79.57199302087137, + "2024-05-21T19": 78.25042683171905, + "2024-05-22T19": 76.13131220080628, + "2024-05-21T12": 79.87581329030098, + "2024-05-23T20": 77.6656584776925, + "2024-05-23T08": 76.69774489196581, + "2024-05-22T22": 76.3923176411802, + "2024-05-26T11": 79.17370677190503, + "2024-05-24T01": 79.98375845778918, + "2024-05-23T05": 76.7497763238533, + "2024-05-28T04": 76.83433520810988, + "2024-05-25T09": 75.17276303396851, + "2024-05-27T18": 79.7841924729797, + "2024-05-24T10": 72.57369490074498, + "2024-05-25T19": 75.15624739768708, + "2024-05-24T07": 74.39888642799937, + "2024-05-26T04": 77.69590641819899, + "2024-05-26T09": 78.32500145478636, + "2024-05-23T02": 76.27291404299372, + "2024-05-27T06": 81.50009843164237, + "2024-05-28T08": 77.38997783684374, + "2024-05-24T15": 74.06221469926705, + "2024-05-25T20": 75.4427713374457, + "2024-05-27T08": 80.87046723209308, + "2024-05-23T22": 81.69312922498803, + "2024-05-26T15": 80.75874042677785, + "2024-05-24T20": 74.23916781694864, + "2024-05-21T20": 77.15314292187045, + "2024-05-25T13": 75.02855750114391, + "2024-05-22T01": 78.69551407186353, + "2024-05-25T17": 74.84372400511347, + "2024-05-27T10": 80.55705678081472, + "2024-05-21T21": 78.7691595761878, + "2024-05-24T19": 74.22071047001191, + "2024-05-26T02": 75.9863128996097, + "2024-05-27T19": 79.2581723588832, + "2024-05-25T11": 75.87811230317831, + "2024-05-27T17": 80.46833707425722, + "2024-05-21T18": 79.17627561756635, + "2024-05-26T06": 77.75558185843789, + "2024-05-23T00": 76.04089694245282, + "2024-05-22T00": 79.74075127705002, + "2024-05-24T05": 76.85297009810064, + "2024-05-23T15": 75.74097110538901, + "2024-05-22T13": 73.86852683816016, + "2024-05-21T10": 77.71959778738565, + "2024-05-22T12": 74.93439514672308, + "2024-05-23T04": 76.56195831684799, + "2024-05-26T08": 78.42974243495395, + "2024-05-26T13": 79.85916105854223, + "2024-05-28T05": 75.94247731314945, + "2024-05-22T18": 76.56769599768789, + "2024-05-22T06": 77.18957335001032, + "2024-05-21T08": 76.30636998419212, + "2024-05-22T17": 76.29426736417203, + "2024-05-23T19": 77.43232307186112, + "2024-05-25T07": 75.46038304127745, + "2024-05-26T22": 81.46187944812257, + "2024-05-25T16": 75.39925386863077, + "2024-05-26T05": 77.14821467555623, + "2024-05-24T04": 77.88766036144513, + "2024-05-21T14": 78.88565363475153, + "2024-05-25T12": 75.55140712411857, + "2024-05-28T07": 77.13886608409257, + "2024-05-23T18": 76.61721022711538, + "2024-05-26T23": 80.60406903316628, + "2024-05-24T09": 72.8087395058521, + "2024-05-23T03": 76.65702934261769, + "2024-05-26T14": 79.86834662168428, + "2024-05-21T13": 78.17179692080892, + "2024-05-22T14": 74.40286056780509, + "2024-05-25T14": 74.38119742649519, + "2024-05-25T00": 74.03609917751794, + "2024-05-23T23": 80.3639419192957, + "2024-05-21T11": 77.34597941625358, + "2024-05-23T13": 80.2089915507425, + "2024-05-22T11": 75.63913637560626, + "2024-05-21T15": 79.9521542047817, + "2024-05-28T00": 78.71570634896871, + "2024-05-27T23": 78.79811489375291, + "2024-05-28T02": 77.01026666082758, + "2024-05-26T21": 81.79249807059706, + "2024-05-26T12": 79.06944891592258, + "2024-05-23T06": 76.60472511670444, + "2024-05-22T07": 77.16847382587385, + "2024-05-27T12": 79.7513575581634, + "2024-05-22T21": 75.5807853808466, + "2024-05-24T00": 78.63450545012304, + "2024-05-25T02": 74.162295257315, + "2024-05-27T00": 80.15247096420187, + "2024-05-26T20": 82.58649150958294, + "2024-05-26T17": 82.14588974728633, + "2024-05-27T13": 79.7656814190775, + "2024-05-23T12": 82.34278150542697, + "2024-05-25T10": 76.09147862238518, + "2024-05-21T09": 77.12472968491838, + "2024-05-23T11": 77.98841737094827, + "2024-05-24T14": 73.4923309803716, + "2024-05-25T01": 73.75943069857927, + "2024-05-27T21": 79.23450512313896, + "2024-05-27T03": 83.03337230700501, + "2024-05-27T01": 80.93484574860894, + "latest": 77.01, + "2024-05-28T09": 78.06323137085002, + "2024-05-28T10": 78.25485566161669, + "2024-05-28T11": 78.02506456606251, + "2024-05-28T12": 77.54089061865741, + "2024-05-28T13": 77.6239319376265, + "2024-05-28T14": 77.74347838966236, + "2024-05-28T15": 77.24931325051952, + "2024-05-29": 75.41236963486635, + "2024-05-28T20": 77.2904397617404, + "2024-05-28T22": 76.14296617266456, + "2024-05-28T21": 76.35197180739503, + "2024-05-28T19": 76.0558211030695, + "2024-05-29T02": 75.4350084705384, + "2024-05-28T17": 76.73494530887011, + "2024-05-28T18": 76.48017377032116, + "2024-05-28T23": 76.23904168563816, + "2024-05-29T00": 76.06208845280682, + "2024-05-29T01": 75.8260953082638, + "2024-05-28T16": 77.1514964098868, + "2024-05-29T06": 75.48228033118478, + "2024-05-29T05": 75.28497065439036, + "2024-05-29T03": 75.96005383149391, + "2024-05-29T07": 75.0383300659845, + "2024-05-29T04": 75.29568777028207, + "2024-05-29T08": 74.40254371589114, + "2024-05-29T09": 74.54065963617633, + "2024-05-29T10": 74.7268477675612, + "2024-05-29T11": 76.9737205, + "2024-05-29T12": 75.97383235805572, + "2024-05-29T13": 76.3304158, + "2024-05-29T14": 76.3115000834733, + "2024-05-29T15": 75.8053129813992, + "2024-05-29T18": 75.25708579185284, + "2024-05-29T17": 75.7369278445775, + "2024-05-29T23": 75.13714400756419, + "2024-05-29T19": 75.19936183696997, + "2024-05-29T22": 75.21018788062955, + "2024-05-29T20": 75.03744676025069, + "2024-05-29T16": 75.60312228879197, + "2024-05-29T21": 75.10570153111743, + "2024-05-30": 75.12146076091905, + "2024-05-30T00": 74.76219115897797, + "2024-05-30T05": 76.51653205163778, + "2024-05-30T02": 76.16283504352813, + "2024-05-30T08": 75.26110308146241, + "2024-05-30T01": 75.4612055502227, + "2024-05-30T06": 76.60940654471479, + "2024-05-30T07": 75.34438298219122, + "2024-05-30T03": 75.83164832589036, + "2024-05-30T04": 76.2085712824101, + "2024-05-30T09": 76.67251158675727, + "2024-05-30T10": 76.57222563740034, + "2024-05-30T11": 77.8523185953885, + "2024-05-30T12": 77.1715295390121, + "2024-05-30T13": 79.012564, + "2024-05-30T14": 78.5738394, + "2024-05-30T15": 79.08835200000001, + "2024-05-30T21": 76.83564796637953, + "2024-05-30T20": 76.885389, + "2024-05-30T18": 78.9494678, + "2024-05-30T22": 77.50262888683287, + "2024-05-30T16": 78.9915528, + "2024-05-30T17": 78.82003699999999, + "2024-05-30T19": 78.27058499644136, + "2024-05-31": 76.53467862797584, + "2024-05-30T23": 76.73359732785548, + "2024-05-31T03": 76.87302960397489, + "2024-05-31T07": 75.54761183439514, + "2024-05-31T06": 75.92239497783858, + "2024-05-31T04": 77.380197288199, + "2024-05-31T02": 76.80031590166135, + "2024-05-31T05": 76.63961730208118, + "2024-05-31T00": 76.62255090010727, + "2024-05-31T01": 76.65763571953569, + "2024-05-31T08": 75.53951295671081, + "2024-05-31T09": 75.2843946, + "2024-05-31T10": 75.45110977936667, + "2024-05-31T11": 76.58532668395294, + "2024-05-31T12": 76.92437801933343, + "2024-05-31T13": 78.21890918051629, + "2024-05-31T14": 77.77545095893616, + "2024-06-01": 77.34766154973495, + "2024-06-01T08": 77.95230271388755, + "2024-06-01T02": 77.6370187859825, + "2024-06-01T05": 77.52664394935125, + "2024-05-31T21": 78.36978161662978, + "2024-06-01T00": 77.16651984541052, + "2024-05-31T18": 77.71091570251951, + "2024-05-31T15": 78.3171702425803, + "2024-05-31T23": 77.52892371898298, + "2024-05-31T22": 78.28482240441774, + "2024-06-01T01": 77.46108641950565, + "2024-06-01T07": 78.2974285728888, + "2024-06-01T04": 77.43663563987711, + "2024-05-31T19": 78.11982945127669, + "2024-06-01T06": 77.96751658604336, + "2024-05-31T20": 78.36091059294958, + "2024-05-31T17": 77.77670186856183, + "2024-05-31T16": 78.32819676604112, + "2024-06-01T03": 77.96923284873142, + "2024-06-01T09": 78.61165720613116, + "2024-06-01T10": 79.49997839999999, + "2024-06-02": 77.55974213666138, + "2024-06-01T13": 79.048792, + "2024-06-01T15": 78.29084630000001, + "2024-06-01T18": 77.59396727044772, + "2024-06-01T12": 79.4108524, + "2024-06-01T21": 77.5209449, + "2024-06-01T20": 77.65197326955332, + "2024-06-02T01": 77.99031620370043, + "2024-06-01T17": 77.797712, + "2024-06-01T11": 79.4100576, + "2024-06-02T00": 77.62786564066056, + "2024-06-01T23": 77.5455837, + "2024-06-01T14": 78.58872478773247, + "2024-06-01T22": 77.5524706, + "2024-06-01T19": 77.55091820000001, + "2024-06-01T16": 77.9490018, + "2024-06-02T13": 77.08205990846503, + "2024-06-02T11": 76.07009128172537, + "2024-06-02T07": 77.35501763793141, + "2024-06-02T05": 77.51833277925952, + "2024-06-02T08": 76.55062351812506, + "2024-06-02T04": 77.48838223719514, + "2024-06-02T10": 76.25962688097839, + "2024-06-02T12": 76.95179512625614, + "2024-06-02T02": 77.90853471334785, + "2024-06-02T16": 76.87901844301068, + "2024-06-02T17": 76.28017967962953, + "2024-06-02T03": 77.5997735144861, + "2024-06-02T09": 76.58480142639134, + "2024-06-02T15": 77.02956160340251, + "2024-06-02T06": 77.07047158528579, + "2024-06-02T18": 75.54092007201683, + "2024-06-02T14": 77.15152299572965, + "2024-06-03": 76.3885305106001, + "2024-06-03T01": 76.07931025978004, + "2024-06-02T20": 75.97135916219453, + "2024-06-03T00": 76.33791778280931, + "2024-06-02T21": 76.15523064817305, + "2024-06-02T23": 76.14420089549336, + "2024-06-02T19": 76.10416735577218, + "2024-06-02T22": 76.26737117561704, + "2024-06-03T02": 77.36397734817281, + "2024-06-03T05": 77.19940675757104, + "2024-06-03T06": 77.61937704581999, + "2024-06-03T04": 77.30616568285238, + "2024-06-03T03": 77.58889269187188, + "2024-06-03T07": 77.94704916549536 + }, + "USD monero": { + "2023-07-30": 162.2614796306766, + "2023-10-23": 158.8861206768615, + "2023-07-27": 163.16918034243966, + "2023-07-10": 165.3092365591065, + "2023-08-20": 147.37292993163183, + "2024-02-23": 123.04682118184584, + "2024-04-05": 128.77857177883004, + "2023-12-19": 171.95125226802833, + "2024-05-17": 134.61825793691563, + "2023-08-06": 159.92363209298932, + "2023-12-02": 172.27345227012833, + "2023-10-31": 171.57221554817602, + "2023-08-29": 145.52658482691007, + "2023-06-20": 140.57065923514273, + "2023-09-09": 143.34787206914837, + "2023-06-26": 163.7444540104656, + "2023-10-01": 147.3117955986176, + "2024-03-07": 144.34896683342834, + "2023-10-12": 152.71236761884828, + "2024-04-22": 120.99836637265484, + "2023-07-05": 165.8991353173548, + "2023-07-29": 163.10829791597826, + "2024-04-26": 120.81336185618657, + "2024-01-08": 151.78230013248006, + "2023-05-29": 155.2410509823237, + "2023-10-07": 152.68407789005445, + "2023-09-26": 144.10437629846663, + "2023-08-24": 138.27844724724838, + "2023-12-05": 169.93611024044333, + "2024-02-19": 118.93541168487556, + "2024-01-07": 152.37607241484037, + "2024-04-28": 124.5328266636703, + "2023-07-31": 160.8851601318578, + "2023-10-18": 151.1496368358052, + "2024-05-19": 135.2929012384203, + "2024-05-12": 133.5297477777591, + "2024-04-29": 124.98472205220706, + "2023-08-25": 139.02877069920396, + "2024-03-09": 146.41162688702744, + "2023-07-12": 164.20108114142892, + "2023-09-05": 139.84238282414452, + "2023-06-07": 145.61314081636425, + "2023-09-16": 145.38654986148865, + "2024-04-25": 118.94781234008961, + "2023-08-12": 157.22300038905013, + "2023-06-06": 142.56100416295314, + "2023-09-01": 142.7267518571211, + "2023-09-08": 142.87259736637503, + "2024-03-22": 136.68038470900268, + "2023-08-10": 155.47224379929548, + "2023-12-07": 174.18950716683807, + "2023-11-18": 160.6493166792938, + "2023-07-13": 163.5478084225139, + "2023-09-13": 143.61764100111716, + "2023-06-17": 136.10400502963148, + "2023-07-17": 165.02514637044047, + "2023-07-07": 165.39658211275702, + "2023-09-07": 142.42360972701061, + "2024-03-26": 139.76336024301273, + "2024-05-14": 133.93162540779292, + "2024-02-22": 123.40973633801198, + "2024-04-15": 122.35839236585561, + "2023-12-30": 164.9843492873822, + "2023-09-17": 144.78605694688613, + "2024-04-17": 120.70494398699968, + "2024-02-12": 122.03053868814281, + "2023-10-26": 160.19419629739227, + "2024-01-03": 159.30335334835053, + "2024-05-07": 130.32998651050207, + "2023-06-01": 147.5920253410273, + "2024-01-22": 155.59274458365576, + "2023-06-12": 139.3498077053947, + "2023-10-03": 146.6540953143097, + "2024-05-26": 142.3287432, + "2024-04-30": 121.04803759310538, + "2023-06-19": 137.85641605048036, + "2023-07-09": 167.52994604925078, + "2023-12-24": 176.23039537560084, + "2023-09-24": 143.10858599999997, + "2024-01-16": 157.4638662544341, + "2023-10-17": 151.42376272739787, + "2024-04-24": 120.84048714179013, + "2024-03-18": 139.29032162971706, + "2024-02-17": 119.98086177816477, + "2023-12-27": 174.4091786480895, + "2023-07-23": 164.84983215172636, + "2023-09-03": 140.53762034076934, + "2024-02-24": 124.22427363870933, + "2024-01-06": 153.6065754346864, + "2024-03-20": 137.21439467580754, + "2023-11-21": 164.28645721384703, + "2023-12-25": 173.47209823218995, + "2023-09-22": 145.59869992183025, + "2023-10-02": 148.83786054399823, + "2024-03-27": 137.27522410963508, + "2024-05-06": 131.40657000000002, + "2023-08-30": 142.69044751043182, + "2023-10-06": 149.7825521001659, + "2023-10-13": 152.35505145188768, + "2023-06-28": 166.65390869108745, + "2024-02-05": 165.52438716322024, + "2024-03-01": 140.5549849463574, + "2023-07-15": 163.07607428176829, + "2023-06-25": 162.18969186948013, + "2023-12-10": 176.61507712718478, + "2023-11-23": 166.13322554485072, + "2023-08-04": 158.9661959117756, + "2024-05-13": 134.836258531251, + "2024-01-13": 153.47376702599212, + "2024-03-28": 136.53333134151453, + "2023-08-05": 159.13726786945315, + "2024-02-09": 122.93709344179794, + "2023-10-09": 154.06735924049875, + "2024-01-09": 146.9924366412744, + "2024-05-10": 132.88290258365424, + "2023-05-27": 151.0064277186897, + "2023-08-18": 143.6602928539855, + "2023-11-05": 169.1492527946145, + "2024-04-18": 116.28474527729252, + "2023-10-22": 158.04038911661797, + "2023-11-01": 170.99422187847128, + "2024-05-20": 135.506775, + "2023-12-08": 173.28575700523646, + "2024-04-12": 132.52986145591328, + "2023-07-06": 167.46810899408993, + "2024-03-12": 144.77374548349607, + "2023-09-11": 140.1909235371919, + "2024-03-03": 148.4737471890957, + "2024-02-04": 166.07657334709734, + "2024-01-28": 160.45805874407213, + "2023-07-01": 168.1529048714159, + "2023-11-07": 165.4446996120803, + "2023-11-25": 171.20176049414988, + "2023-06-04": 149.18979264914103, + "2024-02-25": 124.78494375223524, + "2023-12-01": 170.7960334602152, + "2023-07-14": 164.4390073108328, + "2024-01-26": 158.44169164540452, + "2023-08-03": 160.55771424488924, + "2024-02-28": 138.93375091042907, + "2023-09-15": 147.50130376393898, + "2023-07-18": 166.38751683362165, + "2023-12-21": 174.4469009101523, + "2023-07-20": 165.92892916019858, + "2024-03-06": 144.57862610084683, + "2023-09-30": 146.43103719203552, + "2023-12-12": 171.09927407937872, + "2024-02-13": 125.213279747348, + "2023-09-20": 147.50913971699788, + "2023-09-19": 147.39204421730534, + "2023-09-29": 145.5339902821573, + "2023-09-12": 141.36441933458642, + "2023-06-13": 139.21283443945276, + "2023-10-04": 148.86382426228556, + "2023-07-08": 167.14564541016492, + "2024-04-16": 120.08561221154396, + "2024-03-02": 143.04572989229146, + "2023-06-27": 167.6790735593017, + "2023-10-08": 155.01000775330442, + "2023-11-20": 163.89327830097426, + "2023-12-20": 173.48991955429554, + "2023-12-31": 165.92646264626964, + "2023-11-06": 166.1265086215151, + "2023-08-22": 148.64831323746802, + "2023-06-09": 142.43243977247658, + "2024-03-17": 142.48021190954495, + "2023-09-18": 146.61392841241332, + "2024-04-01": 123.41964003320011, + "2024-05-21": 138.74187819265475, + "2024-01-19": 152.92837257681387, + "2023-11-11": 170.35050238692165, + "2023-09-23": 143.6999982023355, + "2023-11-19": 160.98205900000002, + "2023-07-02": 164.7447430898299, + "2023-08-15": 157.69917383568946, + "2024-01-25": 155.8489056142744, + "2024-03-13": 146.0833071733386, + "2024-01-21": 158.40232133651793, + "2024-02-01": 167.1242078188468, + "2023-06-15": 133.47181692879175, + "2024-03-16": 143.9647812914797, + "2023-11-27": 167.22827111509076, + "2024-01-10": 148.2082417428402, + "2024-03-15": 142.21093800043155, + "2023-06-21": 143.97245566409686, + "2024-01-02": 170.27868598892985, + "2023-07-11": 163.90510061142618, + "2023-10-25": 157.9933383641554, + "2024-01-01": 165.7053484564907, + "2024-02-14": 129.0609714674857, + "2023-09-04": 142.02146893066876, + "2023-09-06": 139.30737259951184, + "2024-04-03": 124.10936846460066, + "2023-11-28": 166.08284067715056, + "2023-12-03": 172.58221611240674, + "2023-08-02": 159.82494507251857, + "2023-08-27": 144.68992946618795, + "2023-10-20": 154.7973014954891, + "2023-10-10": 153.09931013023376, + "2024-05-03": 123.6891078090741, + "2024-03-08": 148.25397561236716, + "2024-04-11": 133.31829638178885, + "2023-06-22": 147.7872929413001, + "2024-01-14": 157.45381929306328, + "2023-12-15": 170.30064807922102, + "2023-10-19": 151.0859682738762, + "2024-02-08": 125.03133237368793, + "2023-11-08": 166.04692771127515, + "2023-11-12": 169.29202281230621, + "2023-12-22": 173.3392029410173, + "2023-05-31": 149.72937123721533, + "2024-03-23": 137.25217152735578, + "2023-09-27": 145.26828385414655, + "2024-03-04": 147.55791685014822, + "2023-09-10": 142.629835286165, + "2024-04-13": 122.83816080539631, + "2024-02-29": 138.6768085610658, + "2023-07-21": 162.83203423035403, + "2023-06-30": 167.4450045295839, + "2023-12-29": 169.07288737026477, + "2023-12-04": 169.53332131333474, + "2024-04-10": 133.3805050957727, + "2024-05-08": 128.8326860770678, + "2023-09-21": 146.55281163193274, + "2023-06-02": 146.0060552310493, + "2024-04-21": 120.29402278245732, + "2023-07-22": 162.53478026900325, + "2023-10-11": 152.08690913338052, + "2024-03-21": 141.13719661815824, + "2023-07-19": 168.301634511263, + "2024-05-05": 128.20285083031257, + "2024-05-23": 139.28474571260801, + "2024-04-08": 133.71866289837567, + "2024-05-18": 135.90804429117387, + "2023-06-14": 135.51064662657242, + "2023-10-05": 150.0586658477399, + "2023-10-16": 151.91728284220915, + "2024-05-22": 137.77424161720995, + "2024-02-10": 119.17824396980731, + "2024-04-07": 131.97909326214287, + "2024-02-20": 119.52806006299515, + "2023-11-17": 162.6916476891414, + "2023-12-11": 170.27912850859929, + "2023-11-26": 170.9828707765936, + "2023-11-16": 160.56303778552908, + "2023-06-29": 164.45160851560976, + "2023-10-27": 159.70461873284816, + "2023-06-11": 137.2102398793176, + "2024-02-02": 167.91422001447637, + "2023-09-14": 144.68790269271088, + "2024-01-27": 159.98613699403828, + "2024-03-30": 131.30607167784524, + "2023-11-22": 162.82884218410248, + "2023-09-28": 146.3975462847607, + "2023-06-03": 147.09371916841292, + "2024-01-18": 157.07411202458223, + "2023-08-26": 142.9495879214808, + "2024-02-15": 127.0440634817224, + "2023-10-28": 161.62351996430309, + "2024-03-24": 141.59502797182466, + "2024-04-27": 120.18907687856448, + "2023-12-06": 172.14514421854966, + "2024-01-30": 164.99516984075927, + "2023-11-14": 163.5192433221068, + "2023-08-09": 158.37174920110422, + "2024-05-15": 133.82351008110706, + "2023-11-10": 171.21564904990115, + "2024-01-23": 149.10712749114228, + "2024-01-31": 163.65988564842755, + "2024-05-11": 131.8031608113365, + "2024-01-11": 152.34642860002583, + "2024-02-18": 120.78107048850298, + "2023-06-16": 135.07940574530886, + "2023-10-30": 171.84979546118393, + "2023-12-17": 168.37368245451117, + "2024-02-26": 130.69041512920964, + "2023-07-16": 164.8643916754729, + "2024-01-05": 159.64471475775036, + "2023-08-23": 143.8324559177989, + "2024-03-11": 144.56974518997816, + "2023-08-01": 160.246852489728, + "2024-03-14": 147.52969950707285, + "2024-02-21": 120.1506799705327, + "2023-08-28": 145.41065219125565, + "2023-07-04": 168.96529854809594, + "2023-12-13": 168.664802847425, + "2024-02-27": 136.06374886530213, + "2023-08-13": 158.6925320916464, + "2024-03-31": 128.5165364558362, + "2023-12-09": 175.6581628599766, + "2024-04-02": 120.09474991390039, + "2024-02-06": 116.9404317855867, + "2024-04-09": 135.46279200674974, + "2023-11-04": 169.23149675676947, + "2024-04-20": 118.44024434324228, + "2024-01-15": 155.72117510677273, + "2023-07-03": 169.5002593059992, + "2023-12-28": 176.0841523307706, + "2023-05-30": 153.45324235601527, + "2024-05-25": 141.22146613541017, + "2024-02-07": 127.52325588843345, + "2023-09-25": 144.16602501001785, + "2024-03-19": 135.01082935162657, + "2024-03-10": 145.89213399999997, + "2024-05-02": 123.27691787464887, + "2023-09-02": 140.6010585004602, + "2024-01-12": 155.8949177584562, + "2024-04-19": 117.87197420787699, + "2023-11-29": 166.77151549423584, + "2023-10-15": 152.70168154269305, + "2024-05-28": 141.36920418950612, + "2023-11-30": 168.48322460346796, + "2024-01-24": 152.40864311762962, + "2023-08-11": 156.82673065295086, + "2024-02-11": 120.64045719369908, + "2023-06-08": 144.21442000000002, + "2023-11-15": 164.25710840372497, + "2023-12-16": 170.54502889974825, + "2024-03-29": 133.31018371137355, + "2024-04-04": 129.90112969338517, + "2023-06-10": 136.58347579201612, + "2023-07-28": 163.15051273521226, + "2024-01-20": 156.77832881715383, + "2023-10-21": 156.38092969514398, + "2023-08-16": 155.13179063351294, + "2024-05-24": 141.34121428184872, + "2023-11-03": 171.04337721553668, + "2023-08-31": 143.68572098536288, + "2024-05-27": 142.69228084937745, + "2024-01-04": 157.41581882952408, + "2023-07-26": 162.47979859595299, + "2023-11-13": 168.47980038737984, + "2023-10-24": 159.07156012681028, + "2024-03-25": 141.50505407696497, + "2023-08-07": 158.61078657413793, + "2023-10-29": 164.17563591464548, + "2024-01-29": 165.4832103892901, + "2024-05-04": 124.90611528976616, + "2023-06-05": 145.55334664617862, + "2023-11-02": 170.9070835755853, + "2023-12-18": 170.59763011888776, + "2023-11-24": 168.51729829640212, + "2023-08-21": 147.69559095905106, + "2023-07-25": 161.68046971177708, + "2024-05-16": 133.2686577783161, + "2023-08-14": 158.8066703840731, + "2024-05-01": 119.86384751963901, + "2024-03-05": 148.2068849827153, + "2024-04-06": 131.03921684554277, + "2023-12-23": 176.2667852523167, + "2024-02-03": 167.92268186187792, + "2024-02-16": 125.47613912197718, + "2023-05-28": 153.85239455356844, + "2023-12-14": 168.16032282217378, + "2023-06-24": 156.07105615830866, + "2023-12-26": 174.44395749873846, + "2023-11-09": 167.75452421420596, + "2023-08-19": 144.25367227743502, + "2024-05-09": 132.54831368169832, + "2024-01-17": 158.0213902916874, + "2023-06-23": 152.17325831969777, + "2023-06-18": 138.96171985395844, + "2024-04-23": 122.167582257342, + "2023-08-08": 158.70067426332798, + "2023-08-17": 151.72226884441278, + "2024-04-14": 119.66969728119057, + "2023-07-24": 161.9474070549959, + "2023-10-14": 153.4854242926569, + "2024-05-22T20": 138.6465511963963, + "2024-05-25T08": 141.4048306, + "2024-05-22T05": 137.96964, + "2024-05-28T03": 142.6472196, + "2024-05-22T16": 138.0868512, + "2024-05-25T05": 142.02316800000003, + "2024-05-24T22": 141.51029378519223, + "2024-05-27T14": 142.8870472, + "2024-05-22T03": 137.8010557, + "2024-05-23T17": 138.7786176, + "2024-05-24T23": 140.9446254, + "2024-05-26T19": 143.3432190186699, + "2024-05-26T18": 143.025588, + "2024-05-26T10": 141.0178041, + "2024-05-27T16": 143.58770729999998, + "2024-05-24T12": 141.1065864, + "2024-05-26T01": 141.35617233512204, + "2024-05-21T17": 136.40084159999998, + "2024-05-23T07": 138.96632453448808, + "2024-05-22T08": 138.4723, + "2024-05-23T09": 139.27402439999997, + "2024-05-24T18": 143.098415, + "2024-05-23T01": 138.229467, + "2024-05-25T15": 141.31586700000003, + "2024-05-23T16": 139.73351730000002, + "2024-05-25T03": 141.0321531, + "2024-05-28T06": 143.3337552, + "2024-05-25T23": 141.1959926, + "2024-05-24T13": 140.61558, + "2024-05-26T03": 141.4144427, + "2024-05-26T00": 141.1616466, + "2024-05-25T06": 141.59475650000002, + "2024-05-27T04": 141.80480359999999, + "2024-05-22T10": 137.11982700000002, + "2024-05-27T09": 141.69424096396412, + "2024-05-24T17": 141.80332079187946, + "2024-05-26T16": 142.4101626, + "2024-05-22T09": 137.952404, + "2024-05-24T21": 141.98722, + "2024-05-25T04": 140.9436, + "2024-05-27T22": 142.35465, + "2024-05-27T11": 142.41165, + "2024-05-23T21": 140.90424249999998, + "2024-05-23T10": 139.7610665, + "2024-05-23T14": 137.5225809, + "2024-05-27T02": 141.21132871906414, + "2024-05-25T18": 141.0347325, + "2024-05-27T05": 141.93184, + "2024-05-22T23": 138.32806966473217, + "2024-05-28T01": 141.11701599999998, + "2024-05-22T04": 138.54277484325206, + "2024-05-22T15": 136.13051069999997, + "2024-05-24T03": 139.9426, + "2024-05-24T08": 142.09272360907602, + "2024-05-21T22": 135.3107485, + "2024-05-21T16": 137.25453983432357, + "2024-05-21T23": 136.1214085, + "2024-05-24T02": 139.1171154, + "2024-05-26T07": 141.8874822, + "2024-05-27T07": 141.7663085, + "2024-05-25T22": 141.47453000000002, + "2024-05-24T16": 141.29247310510735, + "2024-05-27T20": 143.52345659999997, + "2024-05-22T02": 138.5350592, + "2024-05-24T06": 140.6480876, + "2024-05-24T11": 142.38451799999999, + "2024-05-25T21": 141.951604, + "2024-05-27T15": 143.0069082, + "2024-05-21T19": 135.4852751, + "2024-05-22T19": 138.39093179999998, + "2024-05-21T12": 140.567662, + "2024-05-23T20": 140.3446625, + "2024-05-23T08": 139.06929300000002, + "2024-05-22T22": 137.8171365953041, + "2024-05-26T11": 141.2464105, + "2024-05-24T01": 139.14432, + "2024-05-23T05": 139.10785948621762, + "2024-05-28T04": 143.0754786, + "2024-05-25T09": 141.44936280790048, + "2024-05-27T18": 143.155267, + "2024-05-24T10": 142.40733519999998, + "2024-05-25T19": 141.0947175, + "2024-05-24T07": 141.3804024, + "2024-05-26T04": 141.73195547230364, + "2024-05-26T09": 141.65331600000002, + "2024-05-23T02": 138.8283757920859, + "2024-05-27T06": 141.5058324448735, + "2024-05-28T08": 144.1136492097455, + "2024-05-24T15": 141.07942500000001, + "2024-05-25T20": 141.41679539813285, + "2024-05-27T08": 141.754896, + "2024-05-23T22": 140.06684382948396, + "2024-05-26T15": 142.92519806315588, + "2024-05-24T20": 142.425756, + "2024-05-21T20": 135.2891335289861, + "2024-05-25T13": 140.83245757260508, + "2024-05-22T01": 138.56337040000003, + "2024-05-25T17": 140.91899099999998, + "2024-05-27T10": 142.27316040000002, + "2024-05-21T21": 135.5935176903421, + "2024-05-24T19": 143.5454871, + "2024-05-26T02": 141.1044768, + "2024-05-27T19": 143.0453781, + "2024-05-25T11": 140.8488695, + "2024-05-27T17": 143.3022465, + "2024-05-21T18": 135.6751165330541, + "2024-05-26T06": 142.7057068994042, + "2024-05-23T00": 138.86756158877438, + "2024-05-22T00": 136.97534000000002, + "2024-05-24T05": 140.42272499999999, + "2024-05-23T15": 137.90063999999998, + "2024-05-22T13": 136.18501799999999, + "2024-05-21T10": 140.81096678363983, + "2024-05-22T12": 135.876897, + "2024-05-23T04": 138.91382000000002, + "2024-05-26T08": 142.0603096, + "2024-05-26T13": 141.4947072, + "2024-05-28T05": 143.4094896, + "2024-05-22T18": 138.97332120000002, + "2024-05-22T06": 137.2383578043356, + "2024-05-21T08": 140.58083391592777, + "2024-05-22T17": 139.1377344, + "2024-05-23T19": 140.60052839999997, + "2024-05-25T07": 141.54477599999998, + "2024-05-26T22": 142.70004079999998, + "2024-05-25T16": 141.3602068, + "2024-05-26T05": 142.65718999999999, + "2024-05-24T04": 140.17146, + "2024-05-21T14": 140.64483, + "2024-05-25T12": 140.6501538, + "2024-05-28T07": 143.6221332, + "2024-05-23T18": 138.98125320000003, + "2024-05-26T23": 142.3916192, + "2024-05-24T09": 142.2459605, + "2024-05-23T03": 138.9668298, + "2024-05-26T14": 142.7742963, + "2024-05-21T13": 141.4717, + "2024-05-22T14": 136.6530937, + "2024-05-25T14": 141.72007889999998, + "2024-05-25T00": 140.9575723, + "2024-05-23T23": 138.7189368, + "2024-05-21T11": 140.7819786, + "2024-05-23T13": 138.85138500000002, + "2024-05-22T11": 137.15530760000001, + "2024-05-21T15": 137.6269616, + "2024-05-28T00": 141.27688799999999, + "2024-05-27T23": 141.4510812, + "2024-05-28T02": 142.1647202, + "2024-05-26T21": 142.94942864461387, + "2024-05-26T12": 141.41640492332527, + "2024-05-23T06": 139.45208979999998, + "2024-05-22T07": 137.2052986, + "2024-05-27T12": 142.630089, + "2024-05-22T21": 138.7586403, + "2024-05-24T00": 138.4276795, + "2024-05-25T02": 141.112796406588, + "2024-05-27T00": 141.938995, + "2024-05-26T20": 143.1925992, + "2024-05-26T17": 142.69290420000002, + "2024-05-27T13": 142.74001710000002, + "2024-05-23T12": 139.4516352, + "2024-05-25T10": 140.96193, + "2024-05-21T09": 140.161962, + "2024-05-23T11": 140.059935, + "2024-05-24T14": 141.10974090000002, + "2024-05-25T01": 141.311732, + "2024-05-27T21": 143.81460040000002, + "2024-05-27T03": 141.62112361204765, + "2024-05-27T01": 141.8404641, + "latest": 154.55, + "2024-05-28T09": 143.8017315, + "2024-05-28T10": 143.7504267, + "2024-05-28T11": 143.68524633148255, + "2024-05-28T12": 143.23518620000002, + "2024-05-28T13": 143.43642, + "2024-05-28T14": 142.65048550432752, + "2024-05-28T15": 142.47047227636713, + "2024-05-29": 141.77390725363614, + "2024-05-28T20": 141.6450574531398, + "2024-05-28T22": 141.7894336, + "2024-05-28T21": 141.5942682, + "2024-05-28T19": 141.3359427, + "2024-05-29T02": 141.7652518, + "2024-05-28T17": 141.94791, + "2024-05-28T18": 142.2039884724109, + "2024-05-28T23": 141.8037376, + "2024-05-29T00": 141.74354581139832, + "2024-05-29T01": 141.6483978, + "2024-05-28T16": 141.24154049999999, + "2024-05-29T06": 142.3575387, + "2024-05-29T05": 142.5116376, + "2024-05-29T03": 141.7895436, + "2024-05-29T07": 141.9365428, + "2024-05-29T04": 142.46071925946063, + "2024-05-29T08": 141.34851, + "2024-05-29T09": 141.84937839999998, + "2024-05-29T10": 142.62152279999998, + "2024-05-29T11": 143.1681231, + "2024-05-29T12": 142.4516877, + "2024-05-29T13": 142.0591074, + "2024-05-29T14": 141.994846, + "2024-05-29T15": 141.759216, + "2024-05-29T18": 140.30944977458245, + "2024-05-29T17": 141.76229899999998, + "2024-05-29T23": 140.361364, + "2024-05-29T19": 138.78385839999999, + "2024-05-29T22": 140.29410049999998, + "2024-05-29T20": 138.573783, + "2024-05-29T16": 141.4123581, + "2024-05-29T21": 139.3194486862836, + "2024-05-30": 144.63625733627381, + "2024-05-30T00": 140.20592879999998, + "2024-05-30T05": 143.77164569633368, + "2024-05-30T02": 140.70953519999998, + "2024-05-30T08": 143.3958955664431, + "2024-05-30T01": 140.53700940777625, + "2024-05-30T06": 143.80486399999998, + "2024-05-30T07": 144.41041, + "2024-05-30T03": 141.92947999999998, + "2024-05-30T04": 142.76990139999998, + "2024-05-30T09": 142.854236, + "2024-05-30T10": 143.45147094749166, + "2024-05-30T11": 144.5228416, + "2024-05-30T12": 144.814056, + "2024-05-30T13": 145.10288599999998, + "2024-05-30T14": 144.8233506, + "2024-05-30T15": 145.6917, + "2024-05-30T21": 146.130768, + "2024-05-30T20": 146.6921232, + "2024-05-30T18": 145.16224799999998, + "2024-05-30T22": 146.4187355, + "2024-05-30T16": 145.69786048653864, + "2024-05-30T17": 145.8845428, + "2024-05-30T19": 146.02371100000002, + "2024-05-31": 146.36512493154652, + "2024-05-30T23": 146.34876, + "2024-05-31T03": 145.32437185571933, + "2024-05-31T07": 144.467613232145, + "2024-05-31T06": 144.2571078336445, + "2024-05-31T04": 145.5730056, + "2024-05-31T02": 145.788743, + "2024-05-31T05": 144.59069350000001, + "2024-05-31T00": 146.4389856, + "2024-05-31T01": 146.114924, + "2024-05-31T08": 143.954456488596, + "2024-05-31T09": 144.4208802, + "2024-05-31T10": 145.402706, + "2024-05-31T11": 146.2507326, + "2024-05-31T12": 146.4506106, + "2024-05-31T13": 146.9888104, + "2024-05-31T14": 146.54642090000002, + "2024-06-01": 148.22575501058955, + "2024-06-01T08": 149.5157988, + "2024-06-01T02": 148.77958070000003, + "2024-06-01T05": 149.4847099335758, + "2024-05-31T21": 148.7058104, + "2024-06-01T00": 147.749142, + "2024-05-31T18": 147.4255870346555, + "2024-05-31T15": 145.9914915417429, + "2024-05-31T23": 148.3200453, + "2024-05-31T22": 148.2992595, + "2024-06-01T01": 147.7406311, + "2024-06-01T07": 149.63043591985772, + "2024-06-01T04": 149.4048696, + "2024-05-31T19": 147.505036, + "2024-06-01T06": 149.88150000000002, + "2024-05-31T20": 147.6570389, + "2024-05-31T17": 147.0108247, + "2024-05-31T16": 146.45127829999998, + "2024-06-01T03": 149.64019199999998, + "2024-06-01T09": 149.1620598022256, + "2024-06-01T10": 150.09779759999998, + "2024-06-02": 148.76319704418157, + "2024-06-01T13": 150.644298, + "2024-06-01T15": 148.9394191, + "2024-06-01T18": 147.4086894, + "2024-06-01T12": 150.5988649, + "2024-06-01T21": 148.567657, + "2024-06-01T20": 147.7983423, + "2024-06-02T01": 150.85921599999998, + "2024-06-01T17": 147.382, + "2024-06-01T11": 150.31242250178443, + "2024-06-02T00": 149.28521451880408, + "2024-06-01T23": 148.8263715, + "2024-06-01T14": 150.2560422, + "2024-06-01T22": 147.9911356, + "2024-06-01T19": 147.5285826, + "2024-06-01T16": 147.765411, + "2024-06-02T13": 151.0711504, + "2024-06-02T11": 151.59229299999998, + "2024-06-02T07": 151.24754993071434, + "2024-06-02T05": 151.62253, + "2024-06-02T08": 150.8770440837239, + "2024-06-02T04": 151.192321078625, + "2024-06-02T10": 151.6277124, + "2024-06-02T12": 150.9527474, + "2024-06-02T02": 150.7632524, + "2024-06-02T16": 151.92683950000003, + "2024-06-02T17": 152.3708945, + "2024-06-02T03": 150.59661752682467, + "2024-06-02T09": 151.41877412563954, + "2024-06-02T15": 152.00514537041352, + "2024-06-02T06": 151.5011145, + "2024-06-02T18": 152.10102859399314, + "2024-06-02T14": 151.74914220000002, + "2024-06-03": 152.73514655127894, + "2024-06-03T01": 152.50622520000002, + "2024-06-02T20": 151.112304, + "2024-06-03T00": 152.47807192602687, + "2024-06-02T21": 151.79998835139708, + "2024-06-02T23": 152.517596, + "2024-06-02T19": 151.51398235827975, + "2024-06-02T22": 152.02786060000003, + "2024-06-03T02": 153.2688219, + "2024-06-03T05": 154.127468, + "2024-06-03T06": 156.78959039999998, + "2024-06-03T04": 153.1811034, + "2024-06-03T03": 152.8897418, + "2024-06-03T07": 155.53123398272447 + }, + "USD near": { + "2023-07-30": 1.4054697146351702, + "2023-10-23": 1.0680825785348642, + "2023-07-27": 1.3712887527084008, + "2023-07-10": 1.31071845156011, + "2023-08-20": 1.1630837261629778, + "2024-02-23": 3.254549905240416, + "2024-04-05": 6.812157889888433, + "2023-12-19": 2.3971986993707537, + "2024-05-17": 8.095487380950258, + "2023-08-06": 1.3449969593632467, + "2023-12-02": 1.9842656027647727, + "2023-10-31": 1.303760800445926, + "2023-08-29": 1.2270641885970972, + "2023-06-20": 1.245271286664917, + "2023-09-09": 1.1600251010315674, + "2023-06-26": 1.557970291529294, + "2023-10-01": 1.140766488427112, + "2024-03-07": 5.618489125511497, + "2023-10-12": 1.0101093817847835, + "2024-04-22": 6.898121432360752, + "2023-07-05": 1.359993343685903, + "2023-07-29": 1.4017523003064662, + "2024-04-26": 7.182310755889022, + "2024-01-08": 3.2125393477333812, + "2023-05-29": 1.6401659776200161, + "2023-10-07": 1.0926016909928675, + "2023-09-26": 1.0925978868169357, + "2023-08-24": 1.1913772374431448, + "2023-12-05": 2.22567326256506, + "2024-02-19": 3.544356339200902, + "2024-01-07": 3.386454416641497, + "2024-04-28": 7.270142628337525, + "2023-07-31": 1.3929131768457637, + "2023-10-18": 1.0033695597469756, + "2024-05-19": 7.8581228536266385, + "2024-05-12": 6.976045774331901, + "2024-04-29": 6.870040283777848, + "2023-08-25": 1.1810323487888676, + "2024-03-09": 6.117743261137994, + "2023-07-12": 1.3426387173443979, + "2023-09-05": 1.125335650436831, + "2023-06-07": 1.4637616830552447, + "2023-09-16": 1.1271161441025244, + "2024-04-25": 6.870628879101422, + "2023-08-12": 1.3430431115919912, + "2023-06-06": 1.5000461248799069, + "2023-09-01": 1.1427194665475027, + "2023-09-08": 1.149422375835353, + "2024-03-22": 6.4830353732470565, + "2023-08-10": 1.3366491028659488, + "2023-12-07": 2.268046416080464, + "2023-11-18": 1.757146920615653, + "2023-07-13": 1.3844957131656879, + "2023-09-13": 1.0843675278103724, + "2023-06-17": 1.2584759285454798, + "2023-07-17": 1.4657877607775347, + "2023-07-07": 1.3410779847671408, + "2023-09-07": 1.1355852547888232, + "2024-03-26": 7.784667839936219, + "2024-05-14": 7.151781833055857, + "2024-02-22": 3.246777652942298, + "2024-04-15": 5.456997440159033, + "2023-12-30": 3.6731605602162545, + "2023-09-17": 1.1112448137013426, + "2024-04-17": 5.425398797030326, + "2024-02-12": 3.1929580376184354, + "2023-10-26": 1.178495002470962, + "2024-01-03": 3.8147428530396654, + "2024-05-07": 7.468788803604317, + "2023-06-01": 1.5602028764231766, + "2024-01-22": 2.762070695519851, + "2023-06-12": 1.1952845947371642, + "2023-10-03": 1.1087677656806063, + "2024-05-26": 8.037887965876175, + "2024-04-30": 6.241310682388657, + "2023-06-19": 1.2288431956103232, + "2023-07-09": 1.3402389477668044, + "2023-12-24": 3.807177763793938, + "2023-09-24": 1.1080664800000002, + "2024-01-16": 3.271066057069839, + "2023-10-17": 1.0302128788512779, + "2024-04-24": 6.985849193768894, + "2024-03-18": 7.625256304535106, + "2024-02-17": 3.2543359783360613, + "2023-12-27": 4.150420093179403, + "2023-07-23": 1.4526719350227004, + "2023-09-03": 1.1238052665789713, + "2024-02-24": 3.5551443906393274, + "2024-01-06": 3.403275471259292, + "2024-03-20": 6.431684649833105, + "2023-11-21": 1.91995428377254, + "2023-12-25": 3.9499041235910095, + "2023-09-22": 1.1151934680406244, + "2023-10-02": 1.142285519519648, + "2024-03-27": 7.56952697020486, + "2024-05-06": 7.396853029093122, + "2023-08-30": 1.208841176342802, + "2023-10-06": 1.08797961148466, + "2023-10-13": 1.0061184221179478, + "2023-06-28": 1.4010045481861273, + "2024-02-05": 2.7600712455704985, + "2024-03-01": 3.9762993866672343, + "2023-07-15": 1.4922909016376054, + "2023-06-25": 1.4285460691071454, + "2023-12-10": 2.4461181212879666, + "2023-11-23": 1.8074425847996873, + "2023-08-04": 1.3531406161424042, + "2024-05-13": 7.13482722853404, + "2024-01-13": 3.4138514587348143, + "2024-03-28": 7.27663488835769, + "2023-08-05": 1.3441359874912524, + "2024-02-09": 2.979060140781238, + "2023-10-09": 1.0442947291583757, + "2024-01-09": 3.33222587109972, + "2024-05-10": 7.45748779911197, + "2023-05-27": 1.5899155178373372, + "2023-08-18": 1.1408139174240082, + "2023-11-05": 1.6270951993516802, + "2024-04-18": 5.605910538411527, + "2023-10-22": 1.0384820958354097, + "2023-11-01": 1.4406645448318887, + "2024-05-20": 8.026475764081667, + "2023-12-08": 2.264655852994727, + "2024-04-12": 6.539219011255494, + "2023-07-06": 1.342827271586913, + "2024-03-12": 7.191207797528925, + "2023-09-11": 1.1165832916082206, + "2024-03-03": 4.329617685495044, + "2024-02-04": 2.7848766557866207, + "2024-01-28": 2.982700490847148, + "2023-07-01": 1.4009916313903612, + "2023-11-07": 1.5038083579301287, + "2023-11-25": 1.8521003040718544, + "2023-06-04": 1.6358681249095757, + "2024-02-25": 3.738263858742936, + "2023-12-01": 1.876510621951113, + "2023-07-14": 1.5112378589566229, + "2024-01-26": 2.8805509102041205, + "2023-08-03": 1.378992362498992, + "2024-02-28": 3.93177036391023, + "2023-09-15": 1.1130205343943984, + "2023-07-18": 1.469879423481444, + "2023-12-21": 3.36448561472388, + "2023-07-20": 1.528680628465326, + "2024-03-06": 4.554386978982408, + "2023-09-30": 1.1345594227795655, + "2023-12-12": 2.2966386419921148, + "2024-02-13": 3.3017937206501338, + "2023-09-20": 1.1140102338209938, + "2023-09-19": 1.1200950074355227, + "2023-09-29": 1.1078523972504004, + "2023-09-12": 1.0981242020522846, + "2023-06-13": 1.2098794350006323, + "2023-10-04": 1.088178147224983, + "2023-07-08": 1.3751209039595436, + "2024-04-16": 5.157542099736683, + "2024-03-02": 4.128852903018115, + "2023-06-27": 1.481170208375928, + "2023-10-08": 1.0912392937991582, + "2023-11-20": 2.066783477956778, + "2023-12-20": 2.8242868233416636, + "2023-12-31": 3.7075615930908894, + "2023-11-06": 1.5980395669833354, + "2023-08-22": 1.1295833032261309, + "2023-06-09": 1.4079953285561502, + "2024-03-17": 7.64252271582962, + "2023-09-18": 1.1072082999391586, + "2024-04-01": 6.816267802127186, + "2024-05-21": 8.066316682849642, + "2024-01-19": 2.991203032009808, + "2023-11-11": 1.5559697628273437, + "2023-09-23": 1.1139999860640348, + "2023-11-19": 1.8373194109155355, + "2023-07-02": 1.4572259657898057, + "2023-08-15": 1.32630016, + "2024-01-25": 2.668389557949906, + "2024-03-13": 7.942354228926991, + "2024-01-21": 2.9815745668554277, + "2024-02-01": 2.793329713963553, + "2023-06-15": 1.1784425298701442, + "2024-03-16": 7.348806910437667, + "2023-11-27": 1.7672227926426678, + "2024-01-10": 3.2381041000679747, + "2024-03-15": 7.5129628169105285, + "2023-06-21": 1.3145643123666404, + "2024-01-02": 3.963452953813446, + "2023-07-11": 1.32589902652225, + "2023-10-25": 1.1396282555839956, + "2024-01-01": 3.6617499482446276, + "2024-02-14": 3.3263959378070207, + "2023-09-04": 1.1313012170641086, + "2023-09-06": 1.1247863203421575, + "2024-04-03": 6.67577922133389, + "2023-11-28": 1.7793708998374556, + "2023-12-03": 1.9824263609451818, + "2023-08-02": 1.397954148105176, + "2023-08-27": 1.1908820076114992, + "2023-10-20": 1.0056940130200451, + "2023-10-10": 1.043315567083731, + "2024-05-03": 6.402006745678222, + "2024-03-08": 5.3991498633307, + "2024-04-11": 6.972372630751877, + "2023-06-22": 1.3489601492144754, + "2024-01-14": 3.4120465504225916, + "2023-12-15": 2.2471728655081358, + "2023-10-19": 0.981305085051497, + "2024-02-08": 2.9355140382638765, + "2023-11-08": 1.4570738446545097, + "2023-11-12": 1.6887335583645102, + "2023-12-22": 3.409204330086614, + "2023-05-31": 1.5701439812904667, + "2024-03-23": 6.662014246637509, + "2023-09-27": 1.0756885719495628, + "2024-03-04": 4.498551954476633, + "2023-09-10": 1.1477344268040377, + "2024-04-13": 5.558489352507792, + "2024-02-29": 3.9433723731513037, + "2023-07-21": 1.4973361812007713, + "2023-06-30": 1.3770891187744656, + "2023-12-29": 3.7642703446866634, + "2023-12-04": 2.1139244022428594, + "2024-04-10": 6.935023564142074, + "2024-05-08": 7.121512336045603, + "2023-09-21": 1.1269609326099588, + "2023-06-02": 1.594819141556715, + "2024-04-21": 6.2893520483305885, + "2023-07-22": 1.4647324684645977, + "2023-10-11": 1.0240349580898906, + "2024-03-21": 6.64985815316129, + "2023-07-19": 1.4814218020634609, + "2024-05-05": 7.108646968438157, + "2024-05-23": 7.803292757364551, + "2024-04-08": 7.353788311334597, + "2024-05-18": 7.979068186878109, + "2023-06-14": 1.197938391394732, + "2023-10-05": 1.0941394866675338, + "2023-10-16": 1.0349517924572176, + "2024-05-22": 7.924256781893937, + "2024-02-10": 3.041635504557843, + "2024-04-07": 6.973616504210478, + "2024-02-20": 3.431996898260808, + "2023-11-17": 1.8440767053498592, + "2023-12-11": 2.304550837684291, + "2023-11-26": 1.8561907977253589, + "2023-11-16": 1.7475929411440985, + "2023-06-29": 1.3553969236357801, + "2023-10-27": 1.210765394254972, + "2023-06-11": 1.203064848977018, + "2024-02-02": 2.88034975556738, + "2023-09-14": 1.1020334552274997, + "2024-01-27": 2.903555855914734, + "2024-03-30": 7.123578993086909, + "2023-11-22": 1.8243175790850412, + "2023-09-28": 1.0862598996194468, + "2023-06-03": 1.6160473131997728, + "2024-01-18": 3.2180291700433266, + "2023-08-26": 1.198155687902899, + "2024-02-15": 3.3414566893701068, + "2023-10-28": 1.2284842634193653, + "2024-03-24": 6.568162419413257, + "2024-04-27": 7.1373794423668055, + "2023-12-06": 2.311948510494999, + "2024-01-30": 3.0639896380762774, + "2023-11-14": 1.5668152124706178, + "2023-08-09": 1.35360170859351, + "2024-05-15": 7.5955106675460495, + "2023-11-10": 1.4612561859015896, + "2024-01-23": 2.5984204765915955, + "2024-01-31": 2.912049894573682, + "2024-05-11": 7.157744767607473, + "2024-01-11": 3.636287081199662, + "2024-02-18": 3.4233526656590993, + "2023-06-16": 1.2020549790566029, + "2023-10-30": 1.274999300535876, + "2023-12-17": 2.365648956220669, + "2024-02-26": 3.9123896738208614, + "2023-07-16": 1.4822142672281282, + "2024-01-05": 3.65838863748761, + "2023-08-23": 1.1822526042735517, + "2024-03-11": 6.851018963819408, + "2023-08-01": 1.3785862956448445, + "2024-03-14": 7.94711886482819, + "2024-02-21": 3.198323920616614, + "2023-08-28": 1.1765062713015835, + "2023-07-04": 1.425207534197242, + "2023-12-13": 2.199452209236713, + "2024-02-27": 3.999895162673172, + "2023-08-13": 1.3451032788288557, + "2024-03-31": 7.178773642003636, + "2023-12-09": 2.500235886832073, + "2024-04-02": 6.286779856598933, + "2024-02-06": 2.735359965981414, + "2024-04-09": 7.387577475279324, + "2023-11-04": 1.4979329118021207, + "2024-04-20": 5.756811181698787, + "2024-01-15": 3.348635820015811, + "2023-07-03": 1.4608328120232315, + "2023-12-28": 3.992211320662116, + "2023-05-30": 1.6256171411440736, + "2024-05-25": 8.014789651199154, + "2024-02-07": 2.7442945226707596, + "2023-09-25": 1.1057394151253797, + "2024-03-19": 6.704899247064352, + "2024-03-10": 6.01693321456876, + "2024-05-02": 6.041394173843164, + "2023-09-02": 1.1265582026310024, + "2024-01-12": 3.5667428349093946, + "2024-04-19": 5.60308943903456, + "2023-11-29": 1.8294660603140296, + "2023-10-15": 1.0203633489749082, + "2024-05-28": 7.812859882446081, + "2023-11-30": 1.8552633093867767, + "2024-01-24": 2.5982717504186783, + "2023-08-11": 1.3294156586607484, + "2024-02-11": 3.150043362247806, + "2023-06-08": 1.410141, + "2023-11-15": 1.6641354155316646, + "2023-12-16": 2.328325606682768, + "2024-03-29": 7.0414697121471965, + "2024-04-04": 6.765719287643795, + "2023-06-10": 1.209931752047761, + "2023-07-28": 1.3854499151038921, + "2024-01-20": 2.9328672819950397, + "2023-10-21": 1.0242208550099736, + "2023-08-16": 1.238154381962986, + "2024-05-24": 7.792360734611342, + "2023-11-03": 1.4886600574920614, + "2023-08-31": 1.1879689610217519, + "2024-05-27": 7.8351333193009385, + "2024-01-04": 3.7307847480511094, + "2023-07-26": 1.337929651269629, + "2023-11-13": 1.6780582103059116, + "2023-10-24": 1.123011297185177, + "2024-03-25": 7.399312584543455, + "2023-08-07": 1.3390838663819837, + "2023-10-29": 1.2262034780695084, + "2024-01-29": 2.9259643283373813, + "2024-05-04": 6.860593651681063, + "2023-06-05": 1.609301055057919, + "2023-11-02": 1.4987598730173934, + "2023-12-18": 2.185662091578081, + "2023-11-24": 1.825134927994318, + "2023-08-21": 1.14548359716495, + "2023-07-25": 1.354891222878843, + "2024-05-16": 8.099691789979572, + "2023-08-14": 1.3423872007356554, + "2024-05-01": 6.059669363565581, + "2024-03-05": 4.304438644043825, + "2024-04-06": 7.052630410081021, + "2023-12-23": 3.402134235805802, + "2024-02-03": 2.841423123020562, + "2024-02-16": 3.3410509735533775, + "2023-05-28": 1.643393391707548, + "2023-12-14": 2.282385450706646, + "2023-06-24": 1.4146504548996373, + "2023-12-26": 4.31162885376218, + "2023-11-09": 1.4888831559605695, + "2023-08-19": 1.1492049379574503, + "2024-05-09": 7.195732480696747, + "2024-01-17": 3.284834764176755, + "2023-06-23": 1.3445521987288664, + "2023-06-18": 1.251684904236704, + "2024-04-23": 7.035713797850911, + "2023-08-08": 1.3514078748424174, + "2023-08-17": 1.2068915284754589, + "2024-04-14": 5.381430300034119, + "2023-07-24": 1.389322988813562, + "2023-10-14": 1.0099238923172622, + "2024-05-22T20": 8.11202644, + "2024-05-25T08": 7.9209096400000005, + "2024-05-22T05": 7.8582708000000006, + "2024-05-28T03": 7.760864070000001, + "2024-05-22T16": 7.934495264, + "2024-05-25T05": 7.9888032, + "2024-05-24T22": 7.92289064, + "2024-05-27T14": 7.80337752, + "2024-05-22T03": 7.76036998, + "2024-05-23T17": 7.72335783, + "2024-05-24T23": 7.905576740000001, + "2024-05-26T19": 7.919721040000001, + "2024-05-26T18": 7.907386020000001, + "2024-05-26T10": 8.050620168, + "2024-05-27T16": 7.9113599919999995, + "2024-05-24T12": 7.71298716, + "2024-05-26T01": 8.3241675, + "2024-05-21T17": 7.847845608, + "2024-05-23T07": 8.090561744999999, + "2024-05-22T08": 7.9154166, + "2024-05-23T09": 7.972068349, + "2024-05-24T18": 7.992002000000001, + "2024-05-23T01": 7.9089643700000005, + "2024-05-25T15": 8.0561943, + "2024-05-23T16": 7.700083274000001, + "2024-05-25T03": 7.916894108360221, + "2024-05-28T06": 7.6972204799999995, + "2024-05-25T23": 8.17560991, + "2024-05-24T13": 7.6793895999999995, + "2024-05-26T03": 8.173833379242621, + "2024-05-26T00": 8.263925550000002, + "2024-05-25T06": 7.9405065445514404, + "2024-05-27T04": 7.8728251899999995, + "2024-05-22T10": 7.9512503400000005, + "2024-05-27T09": 7.766181980000001, + "2024-05-24T17": 7.81471644, + "2024-05-26T16": 7.93266688, + "2024-05-22T09": 7.9124172, + "2024-05-24T21": 7.99483825120978, + "2024-05-25T04": 7.966812, + "2024-05-27T22": 7.849884942, + "2024-05-27T11": 7.732104901967493, + "2024-05-23T21": 7.694225, + "2024-05-23T10": 7.950216450000001, + "2024-05-23T14": 7.604272079999999, + "2024-05-27T02": 7.895339000000001, + "2024-05-25T18": 8.079179700000001, + "2024-05-27T05": 7.84523248, + "2024-05-22T23": 7.957417550000001, + "2024-05-28T01": 7.8167416, + "2024-05-22T04": 7.76590264, + "2024-05-22T15": 7.881813611, + "2024-05-24T03": 7.8627749399999995, + "2024-05-24T08": 7.66177744, + "2024-05-21T22": 7.838626139, + "2024-05-21T16": 7.892504763, + "2024-05-21T23": 7.82535633, + "2024-05-24T02": 7.79003866, + "2024-05-26T07": 8.13498894, + "2024-05-27T07": 7.820783014, + "2024-05-25T22": 8.21952022, + "2024-05-24T16": 7.81371686, + "2024-05-27T20": 7.79104502, + "2024-05-22T02": 7.77260068, + "2024-05-24T06": 7.7066076, + "2024-05-24T11": 7.6274207999999994, + "2024-05-25T21": 8.163367, + "2024-05-27T15": 7.877419588, + "2024-05-21T19": 7.8197598951379, + "2024-05-22T19": 8.10029858, + "2024-05-21T12": 8.062145280000001, + "2024-05-23T20": 7.5043675, + "2024-05-23T08": 8.05732404, + "2024-05-22T22": 8.087763599999999, + "2024-05-26T11": 8.02538695, + "2024-05-24T01": 7.8198708, + "2024-05-23T05": 8.09197986, + "2024-05-28T04": 7.67339433, + "2024-05-25T09": 7.97112936, + "2024-05-27T18": 7.8670462500000005, + "2024-05-24T10": 7.63410462, + "2024-05-25T19": 8.1663579, + "2024-05-24T07": 7.68184848, + "2024-05-26T04": 8.159078088000001, + "2024-05-26T09": 8.056776000000001, + "2024-05-23T02": 7.974850920000001, + "2024-05-27T06": 7.842533776, + "2024-05-28T08": 7.74094448028339, + "2024-05-24T15": 7.872062000000001, + "2024-05-25T20": 8.12296875, + "2024-05-27T08": 7.80091664, + "2024-05-23T22": 7.683533254, + "2024-05-26T15": 7.935235999999999, + "2024-05-24T20": 7.95430449, + "2024-05-21T20": 7.853034368015713, + "2024-05-25T13": 8.08686768, + "2024-05-22T01": 7.7740670000000005, + "2024-05-25T17": 8.03447397808697, + "2024-05-27T10": 7.7232859199999995, + "2024-05-21T21": 7.798583934, + "2024-05-24T19": 7.9225432499999995, + "2024-05-26T02": 8.22509514, + "2024-05-27T19": 7.799114930000001, + "2024-05-25T11": 8.044693115, + "2024-05-27T17": 7.896305586449028, + "2024-05-21T18": 7.846357114390035, + "2024-05-26T06": 8.08924872, + "2024-05-23T00": 7.95378226, + "2024-05-22T00": 7.77460032, + "2024-05-24T05": 7.75273365, + "2024-05-23T15": 7.6145135999999995, + "2024-05-22T13": 7.9211285799999995, + "2024-05-21T10": 8.190729505561668, + "2024-05-22T12": 7.79667434, + "2024-05-23T04": 8.08448451, + "2024-05-26T08": 8.1315833, + "2024-05-26T13": 7.99444096, + "2024-05-28T05": 7.66809102, + "2024-05-22T18": 7.997240216, + "2024-05-22T06": 7.93725342, + "2024-05-21T08": 8.158887658278598, + "2024-05-22T17": 7.976723519999999, + "2024-05-23T19": 7.73987276, + "2024-05-25T07": 7.91291276, + "2024-05-26T22": 7.85569922, + "2024-05-25T16": 8.020576962, + "2024-05-26T05": 8.1265613, + "2024-05-24T04": 7.895576, + "2024-05-21T14": 7.970007, + "2024-05-25T12": 8.03443755, + "2024-05-28T07": 7.738449264, + "2024-05-23T18": 7.642969636, + "2024-05-26T23": 7.81924496, + "2024-05-24T09": 7.63956065, + "2024-05-23T03": 7.9936406700000004, + "2024-05-26T14": 8.00887532, + "2024-05-21T13": 8.015396599999999, + "2024-05-22T14": 7.9377948752365475, + "2024-05-25T14": 8.01143916, + "2024-05-25T00": 7.894583828, + "2024-05-23T23": 7.716503244, + "2024-05-21T11": 8.15579734, + "2024-05-23T13": 7.7392903, + "2024-05-22T11": 7.92457332, + "2024-05-21T15": 7.92609728, + "2024-05-28T00": 7.8217376000000005, + "2024-05-27T23": 7.8084354, + "2024-05-28T02": 7.71628572, + "2024-05-26T21": 7.8110925, + "2024-05-26T12": 7.99843968, + "2024-05-23T06": 8.120480872, + "2024-05-22T07": 7.89957782, + "2024-05-27T12": 7.7095994999999995, + "2024-05-22T21": 8.033026679999999, + "2024-05-24T00": 7.74551295, + "2024-05-25T02": 7.95524946, + "2024-05-27T00": 7.844076, + "2024-05-26T20": 7.858303509000001, + "2024-05-26T17": 7.932714020000001, + "2024-05-27T13": 7.77010175, + "2024-05-23T12": 7.853379482192072, + "2024-05-25T10": 7.953851879999999, + "2024-05-21T09": 8.193361000000001, + "2024-05-23T11": 7.949023500000001, + "2024-05-24T14": 7.76248472, + "2024-05-25T01": 7.9296297789935135, + "2024-05-27T21": 7.83407958, + "2024-05-27T03": 7.88634431, + "2024-05-27T01": 7.913969891208161, + "latest": 7.33, + "2024-05-28T09": 7.918835189999999, + "2024-05-28T10": 7.8745121, + "2024-05-28T11": 7.90300989, + "2024-05-28T12": 7.852061400000001, + "2024-05-28T13": 7.690302, + "2024-05-28T14": 7.664404719999999, + "2024-05-28T15": 7.60984002, + "2024-05-29": 7.688832611006733, + "2024-05-28T20": 7.69445204, + "2024-05-28T22": 7.68492336, + "2024-05-28T21": 7.682044868344238, + "2024-05-28T19": 7.6475818900000005, + "2024-05-29T02": 7.70513274, + "2024-05-28T17": 7.613379, + "2024-05-28T18": 7.570525, + "2024-05-28T23": 7.681209725758525, + "2024-05-29T00": 7.672935240000001, + "2024-05-29T01": 7.6427410799999995, + "2024-05-28T16": 7.5650483500000005, + "2024-05-29T06": 7.79755353, + "2024-05-29T05": 7.773960121788006, + "2024-05-29T03": 7.74378288, + "2024-05-29T07": 7.74063108, + "2024-05-29T04": 7.79471324, + "2024-05-29T08": 7.682309999999999, + "2024-05-29T09": 7.731680304, + "2024-05-29T10": 7.75047474, + "2024-05-29T11": 7.7523176, + "2024-05-29T12": 7.70052324, + "2024-05-29T13": 7.672410848, + "2024-05-29T14": 7.631061103241687, + "2024-05-29T15": 7.62711552, + "2024-05-29T18": 7.684915392000001, + "2024-05-29T17": 7.6990646, + "2024-05-29T23": 7.594875200000001, + "2024-05-29T19": 7.64649908, + "2024-05-29T22": 7.616536249999999, + "2024-05-29T20": 7.63005033, + "2024-05-29T16": 7.59706854586541, + "2024-05-29T21": 7.609922790137918, + "2024-05-30": 7.409634435163389, + "2024-05-30T00": 7.595569800000001, + "2024-05-30T05": 7.558409759, + "2024-05-30T02": 7.60179069, + "2024-05-30T08": 7.2626398, + "2024-05-30T01": 7.564764889083016, + "2024-05-30T06": 7.4371455200000005, + "2024-05-30T07": 7.35443742, + "2024-05-30T03": 7.5964825456385325, + "2024-05-30T04": 7.60493934, + "2024-05-30T09": 7.333841472654432, + "2024-05-30T10": 7.323202290008278, + "2024-05-30T11": 7.37202382, + "2024-05-30T12": 7.3895836, + "2024-05-30T13": 7.456350023885461, + "2024-05-30T14": 7.49555046, + "2024-05-30T15": 7.410034800000001, + "2024-05-30T21": 7.2855426, + "2024-05-30T20": 7.32960711, + "2024-05-30T18": 7.480654523999999, + "2024-05-30T22": 7.2834499, + "2024-05-30T16": 7.4073324, + "2024-05-30T17": 7.497191417689866, + "2024-05-30T19": 7.42066404, + "2024-05-31": 7.271382993341327, + "2024-05-30T23": 7.2914471, + "2024-05-31T03": 7.33247872, + "2024-05-31T07": 7.281526316174304, + "2024-05-31T06": 7.2908121, + "2024-05-31T04": 7.3416213, + "2024-05-31T02": 7.296134336, + "2024-05-31T05": 7.276437340323867, + "2024-05-31T00": 7.248969720000001, + "2024-05-31T01": 7.28725064, + "2024-05-31T08": 7.275671040000001, + "2024-05-31T09": 7.231240542, + "2024-05-31T10": 7.2786302, + "2024-05-31T11": 7.3218309569999995, + "2024-05-31T12": 7.37949576, + "2024-05-31T13": 7.28248206, + "2024-05-31T14": 7.190898850000001, + "2024-06-01": 7.245536506065928, + "2024-06-01T08": 7.22299993, + "2024-06-01T02": 7.234189580104513, + "2024-06-01T05": 7.201378539999999, + "2024-05-31T21": 7.283268594, + "2024-06-01T00": 7.25059684, + "2024-05-31T18": 7.169148948, + "2024-05-31T15": 7.16804558, + "2024-05-31T23": 7.25066942, + "2024-05-31T22": 7.27262685, + "2024-06-01T01": 7.2266936600000005, + "2024-06-01T07": 7.199247350935392, + "2024-06-01T04": 7.2101511521025525, + "2024-05-31T19": 7.23643528, + "2024-06-01T06": 7.185918636, + "2024-05-31T20": 7.29046017, + "2024-05-31T17": 7.1741842, + "2024-05-31T16": 7.12222632, + "2024-06-01T03": 7.2212184, + "2024-06-01T09": 7.237898843185688, + "2024-06-01T10": 7.20265608, + "2024-06-02": 7.368545571074638, + "2024-06-01T13": 7.233484, + "2024-06-01T15": 7.285733969, + "2024-06-01T18": 7.341360369, + "2024-06-01T12": 7.2237099, + "2024-06-01T21": 7.406402430000001, + "2024-06-01T20": 7.4133962, + "2024-06-02T01": 7.3880848, + "2024-06-01T17": 7.296373290544225, + "2024-06-01T11": 7.215644640000001, + "2024-06-02T00": 7.3850872, + "2024-06-01T23": 7.37587294, + "2024-06-01T14": 7.265072429999999, + "2024-06-01T22": 7.399659262275543, + "2024-06-01T19": 7.365538831, + "2024-06-01T16": 7.277171742, + "2024-06-02T13": 7.3896755999999995, + "2024-06-02T11": 7.4587005600000005, + "2024-06-02T07": 7.39300681, + "2024-06-02T05": 7.41176888, + "2024-06-02T08": 7.440638879999999, + "2024-06-02T04": 7.392207458000001, + "2024-06-02T10": 7.431813325667028, + "2024-06-02T12": 7.43971405, + "2024-06-02T02": 7.350820120000001, + "2024-06-02T16": 7.286593075000001, + "2024-06-02T17": 7.208511419999999, + "2024-06-02T03": 7.385335697501514, + "2024-06-02T09": 7.39852104, + "2024-06-02T15": 7.3438995, + "2024-06-02T06": 7.423684499999999, + "2024-06-02T18": 7.164526971, + "2024-06-02T14": 7.359723477, + "2024-06-03": 7.187356898352766, + "2024-06-03T01": 7.218088359999999, + "2024-06-02T20": 7.2008211, + "2024-06-03T00": 7.1380719, + "2024-06-02T21": 7.20220381920047, + "2024-06-02T23": 7.19511254, + "2024-06-02T19": 7.1617720600000006, + "2024-06-02T22": 7.1991103800000005, + "2024-06-03T02": 7.27824564, + "2024-06-03T05": 7.253792921521656, + "2024-06-03T06": 7.2993254400000005, + "2024-06-03T04": 7.195824, + "2024-06-03T03": 7.23173076, + "2024-06-03T07": 7.355216 + }, + "USD neo": { + "2023-07-30": 8.939807363100977, + "2023-10-23": 7.506401199759291, + "2023-07-27": 8.748631182810204, + "2023-07-10": 8.810343770748881, + "2023-08-20": 7.1718278238843265, + "2024-02-23": 12.437291362924203, + "2024-04-05": 15.03250253761269, + "2023-12-19": 12.640870059837281, + "2024-05-17": 15.55526523096004, + "2023-08-06": 8.459035559399158, + "2023-12-02": 11.554926676654949, + "2023-10-31": 8.940012558575527, + "2023-08-29": 7.378719290096246, + "2023-06-20": 7.818827802853297, + "2023-09-09": 7.347840572621805, + "2023-06-26": 8.94089204417735, + "2023-10-01": 7.503300806773579, + "2024-03-07": 17.110419860033225, + "2023-10-12": 6.7070705509217, + "2024-04-22": 19.76132733790371, + "2023-07-05": 9.063039594055539, + "2023-07-29": 8.77982687275619, + "2024-04-26": 18.358881030539536, + "2024-01-08": 11.213331233242275, + "2023-05-29": 11.14051828653632, + "2023-10-07": 7.153939429317756, + "2023-09-26": 7.2138263769471225, + "2023-08-24": 7.276829211159478, + "2023-12-05": 11.980311474379086, + "2024-02-19": 12.901471811540718, + "2024-01-07": 11.898703647034983, + "2024-04-28": 18.474461957527005, + "2023-07-31": 8.78432392651151, + "2023-10-18": 6.862529091522145, + "2024-05-19": 15.11144099432681, + "2024-05-12": 15.3742141100609, + "2024-04-29": 18.060638728843422, + "2023-08-25": 7.0648589666526895, + "2024-03-09": 17.4131237678055, + "2023-07-12": 9.099961300241926, + "2023-09-05": 7.5155631361323, + "2023-06-07": 9.172012470495142, + "2023-09-16": 7.331755503474365, + "2024-04-25": 17.77416617738728, + "2023-08-12": 8.522312937315215, + "2023-06-06": 9.361779965049728, + "2023-09-01": 7.007193241380866, + "2023-09-08": 7.367052881661999, + "2024-03-22": 14.53964193895976, + "2023-08-10": 8.45145542817252, + "2023-12-07": 11.964935210906216, + "2023-11-18": 10.923624751462524, + "2023-07-13": 9.381098288062795, + "2023-09-13": 7.209329199318285, + "2023-06-17": 7.865514162109247, + "2023-07-17": 9.061446286233698, + "2023-07-07": 9.050526295408371, + "2023-09-07": 7.385636143077813, + "2024-03-26": 16.19932822061618, + "2024-05-14": 14.762463487112695, + "2024-02-22": 12.5152265697181, + "2024-04-15": 20.602870336418455, + "2023-12-30": 13.680143807123757, + "2023-09-17": 7.179893428255698, + "2024-04-17": 18.14576518908889, + "2024-02-12": 11.793947750000001, + "2023-10-26": 7.821603492480309, + "2024-01-03": 12.47779281069855, + "2024-05-07": 16.022215732451283, + "2023-06-01": 10.198361913965888, + "2024-01-22": 11.012569906618712, + "2023-06-12": 7.67031316428138, + "2023-10-03": 7.32000728452038, + "2024-05-26": 15.364466799999999, + "2024-04-30": 17.67831962925037, + "2023-06-19": 7.730626061270595, + "2023-07-09": 9.011610893862875, + "2023-12-24": 13.879145173720095, + "2023-09-24": 7.35644136, + "2024-01-16": 12.091657641854374, + "2023-10-17": 6.946837531854804, + "2024-04-24": 18.47745837109432, + "2024-03-18": 15.02265196654283, + "2024-02-17": 12.679375455191053, + "2023-12-27": 13.906850967532389, + "2023-07-23": 9.100040014446774, + "2023-09-03": 7.018054385181, + "2024-02-24": 12.688184993898131, + "2024-01-06": 12.056329720402951, + "2024-03-20": 13.838650425553322, + "2023-11-21": 10.996011781949809, + "2023-12-25": 14.351102200451313, + "2023-09-22": 7.479419513874666, + "2023-10-02": 7.4949814992988575, + "2024-03-27": 15.875507938397076, + "2024-05-06": 16.5297169444889, + "2023-08-30": 7.4014395879504, + "2023-10-06": 7.091394585721622, + "2023-10-13": 6.787619635866012, + "2023-06-28": 8.68899654167468, + "2024-02-05": 10.935416054635635, + "2024-03-01": 15.38339872347566, + "2023-07-15": 9.322947688395297, + "2023-06-25": 9.171838945768535, + "2023-12-10": 12.976057779762558, + "2023-11-23": 10.864446824410216, + "2023-08-04": 8.472113323343121, + "2024-05-13": 15.046234825352766, + "2024-01-13": 12.318523005060142, + "2024-03-28": 15.896894905756305, + "2023-08-05": 8.349663289810424, + "2024-02-09": 11.685231125457522, + "2023-10-09": 6.885364224883352, + "2024-01-09": 11.596684163765232, + "2024-05-10": 15.607991793309575, + "2023-05-27": 10.17348965678099, + "2023-08-18": 6.9672151769756, + "2023-11-05": 13.13894129328932, + "2024-04-18": 17.54197404513774, + "2023-10-22": 7.042143976238589, + "2023-11-01": 9.47538887863319, + "2024-05-20": 15.8507925, + "2023-12-08": 12.342135563775448, + "2024-04-12": 22.05252181659932, + "2023-07-06": 9.240866315880584, + "2024-03-12": 17.37600012588862, + "2023-09-11": 6.97425420446718, + "2024-03-03": 16.325712823394284, + "2024-02-04": 10.999193223897635, + "2024-01-28": 10.9379061, + "2023-07-01": 10.040968437860592, + "2023-11-07": 12.760361565281855, + "2023-11-25": 11.216882478927307, + "2023-06-04": 10.465100543787546, + "2024-02-25": 12.759482989650785, + "2023-12-01": 11.082342368157713, + "2023-07-14": 9.563419114505566, + "2024-01-26": 10.814976671534245, + "2023-08-03": 8.521962674016882, + "2024-02-28": 13.387120830303623, + "2023-09-15": 7.30313473736055, + "2023-07-18": 8.960670071742152, + "2023-12-21": 14.290455900292253, + "2023-07-20": 9.199879002686991, + "2024-03-06": 16.616399870524788, + "2023-09-30": 7.336169262020539, + "2023-12-12": 11.953185247917151, + "2024-02-13": 11.953088373577355, + "2023-09-20": 7.540527986515858, + "2023-09-19": 7.591371141754015, + "2023-09-29": 7.324194289363121, + "2023-09-12": 7.094214424315594, + "2023-06-13": 7.8592168257065875, + "2023-10-04": 7.069744890590186, + "2023-07-08": 8.9767892610479, + "2024-04-16": 19.269820434119207, + "2024-03-02": 16.10582878401906, + "2023-06-27": 9.020569373243733, + "2023-10-08": 7.15419240716035, + "2023-11-20": 11.195196776418102, + "2023-12-20": 13.420553761295237, + "2023-12-31": 14.169019573120927, + "2023-11-06": 13.444598252135147, + "2023-08-22": 6.927444505625741, + "2023-06-09": 9.056671900835683, + "2024-03-17": 14.989418062085262, + "2023-09-18": 7.381258554808179, + "2024-04-01": 15.846670082929306, + "2024-05-21": 16.116733274235028, + "2024-01-19": 11.385487636201681, + "2023-11-11": 13.067178410907292, + "2023-09-23": 7.459999906676569, + "2023-11-19": 11.085775642108453, + "2023-07-02": 9.589990404944936, + "2023-08-15": 8.0596704, + "2024-01-25": 10.527836486412127, + "2024-03-13": 17.970247923514805, + "2024-01-21": 11.785509601435965, + "2024-02-01": 11.043466916113767, + "2023-06-15": 7.711636259193745, + "2024-03-16": 15.49693230204359, + "2023-11-27": 10.642904886716863, + "2024-01-10": 11.582956940189343, + "2024-03-15": 15.944850660442743, + "2023-06-21": 8.798678062801862, + "2024-01-02": 14.067138498645875, + "2023-07-11": 8.980279459979299, + "2023-10-25": 7.728877663288548, + "2024-01-01": 14.114746863232005, + "2024-02-14": 12.12472800941441, + "2023-09-04": 7.069414935682614, + "2023-09-06": 7.347722608784923, + "2024-04-03": 14.503426306586404, + "2023-11-28": 10.75074854856903, + "2023-12-03": 12.284795441176579, + "2023-08-02": 8.794977678045397, + "2023-08-27": 7.213557242781946, + "2023-10-20": 6.77497968, + "2023-10-10": 6.8175576004524725, + "2024-05-03": 16.24021356837017, + "2024-03-08": 17.425171160861947, + "2024-04-11": 22.674881867482966, + "2023-06-22": 9.05085593243415, + "2024-01-14": 12.285147707912122, + "2023-12-15": 13.325982156531103, + "2023-10-19": 6.623248733151088, + "2024-02-08": 11.540334940162758, + "2023-11-08": 12.511997295718134, + "2023-11-12": 12.491486797473156, + "2023-12-22": 13.903168846090276, + "2023-05-31": 10.411855068873416, + "2024-03-23": 14.618296351030017, + "2023-09-27": 7.18496911956603, + "2024-03-04": 17.949567715120764, + "2023-09-10": 7.098225778900931, + "2024-04-13": 19.040819605031594, + "2024-02-29": 14.361081388803756, + "2023-07-21": 9.149538902445396, + "2023-06-30": 9.360128819738469, + "2023-12-29": 13.738818567868543, + "2023-12-04": 12.069278452179878, + "2024-04-10": 19.52034669702702, + "2024-05-08": 15.536632718173847, + "2023-09-21": 7.409636559720398, + "2023-06-02": 10.302268412490417, + "2024-04-21": 19.09499985349784, + "2023-07-22": 9.430943000000001, + "2023-10-11": 6.692072561111569, + "2024-03-21": 14.887149374621982, + "2023-07-19": 8.960087018543769, + "2024-05-05": 16.686772617096697, + "2024-05-23": 15.011889212136712, + "2024-04-08": 19.96539215912377, + "2024-05-18": 15.654382079611915, + "2023-06-14": 7.828433826538983, + "2023-10-05": 7.098882558884512, + "2023-10-16": 7.046402537283548, + "2024-05-22": 15.737057787045606, + "2024-02-10": 11.81634668008503, + "2024-04-07": 15.39139285424672, + "2024-02-20": 12.724862425911189, + "2023-11-17": 11.190088885650713, + "2023-12-11": 11.89828415073602, + "2023-11-26": 11.09490435835237, + "2023-11-16": 11.740962424794079, + "2023-06-29": 8.739021875231098, + "2023-10-27": 8.799834337317007, + "2023-06-11": 7.698068017310192, + "2024-02-02": 11.021645341881172, + "2023-09-14": 7.320282311330831, + "2024-01-27": 10.966734425340697, + "2024-03-30": 16.299443020895364, + "2023-11-22": 10.53589456602782, + "2023-09-28": 7.264915778090172, + "2023-06-03": 10.504590838934547, + "2024-01-18": 11.984428354881922, + "2023-08-26": 7.186135632317186, + "2024-02-15": 12.898519714568076, + "2023-10-28": 9.291899122482382, + "2024-03-24": 14.872292441179306, + "2024-04-27": 17.695653020058764, + "2023-12-06": 11.970769728446726, + "2024-01-30": 11.22822625604084, + "2023-11-14": 11.631272867506333, + "2023-08-09": 8.50540511945388, + "2024-05-15": 14.920391349649659, + "2023-11-10": 13.642200280641275, + "2024-01-23": 10.209507563260553, + "2024-01-31": 11.084995114472774, + "2024-05-11": 15.103778470401032, + "2024-01-11": 12.711235287380152, + "2024-02-18": 12.912125833464733, + "2023-06-16": 7.809034856361307, + "2023-10-30": 9.142643748997717, + "2023-12-17": 12.818232045274927, + "2024-02-26": 12.879026370018073, + "2023-07-16": 9.23504680509657, + "2024-01-05": 12.249329059185227, + "2023-08-23": 7.17658726469599, + "2024-03-11": 17.666735449399457, + "2023-08-01": 8.746233683705283, + "2024-03-14": 17.5301938394605, + "2024-02-21": 12.149800102123802, + "2023-08-28": 7.143990301381609, + "2023-07-04": 9.559569758388234, + "2023-12-13": 12.559647764084572, + "2024-02-27": 13.306234264033224, + "2023-08-13": 8.454274694554966, + "2024-03-31": 16.233101226498473, + "2023-12-09": 13.089817121247497, + "2024-04-02": 14.599727298760765, + "2024-02-06": 11.059591957918624, + "2024-04-09": 20.62468780332816, + "2023-11-04": 10.99070789457607, + "2024-04-20": 18.294080891415284, + "2024-01-15": 12.06183411735048, + "2023-07-03": 9.466459126017172, + "2023-12-28": 14.125428285222858, + "2023-05-30": 10.798893903127352, + "2024-05-25": 15.391890061271784, + "2024-02-07": 11.323701707034479, + "2023-09-25": 7.283321409048127, + "2024-03-19": 13.75117680454846, + "2024-03-10": 17.26015629686754, + "2024-05-02": 15.759777468245415, + "2023-09-02": 6.931593142824759, + "2024-01-12": 13.02191680573173, + "2024-04-19": 18.51909323499679, + "2023-11-29": 10.90066183153844, + "2023-10-15": 6.90302180933995, + "2024-05-28": 15.87330866928264, + "2023-11-30": 11.026823496663203, + "2024-01-24": 10.426697491465184, + "2023-08-11": 8.489107970992297, + "2024-02-11": 11.845499750984809, + "2023-06-08": 8.990899, + "2023-11-15": 11.828814331767939, + "2023-12-16": 13.109064544338471, + "2024-03-29": 16.332472803711685, + "2024-04-04": 14.763537955450568, + "2023-06-10": 7.503433133158919, + "2023-07-28": 8.728261108099668, + "2024-01-20": 11.461394012984425, + "2023-10-21": 6.9627141623504825, + "2023-08-16": 7.900667806479158, + "2024-05-24": 15.12970735056621, + "2023-11-03": 9.767410620262632, + "2023-08-31": 7.2122832669966765, + "2024-05-27": 15.69027184933444, + "2024-01-04": 12.722563414795458, + "2023-07-26": 8.561335553833771, + "2023-11-13": 12.198930152987995, + "2023-10-24": 7.724802033910078, + "2024-03-25": 15.404904798425422, + "2023-08-07": 8.466725499276738, + "2023-10-29": 9.158018470885125, + "2024-01-29": 10.976636090120946, + "2024-05-04": 16.713112676667706, + "2023-06-05": 9.551786871226307, + "2023-11-02": 9.974241465725404, + "2023-12-18": 12.270235778238087, + "2023-11-24": 11.130018975843353, + "2023-08-21": 7.098267993264488, + "2023-07-25": 8.621102305182701, + "2024-05-16": 15.320144839386462, + "2023-08-14": 8.496791604656414, + "2024-05-01": 15.814818249473179, + "2024-03-05": 17.98215625730448, + "2024-04-06": 15.325586574737104, + "2023-12-23": 13.98411320216442, + "2024-02-03": 11.11549060022497, + "2024-02-16": 13.0247377207602, + "2023-05-28": 10.762516219804057, + "2023-12-14": 12.872656942834016, + "2023-06-24": 9.08428150154088, + "2023-12-26": 13.903878436803174, + "2023-11-09": 13.124270110185225, + "2023-08-19": 7.081040398612818, + "2024-05-09": 15.253052175482916, + "2024-01-17": 11.957574663976963, + "2023-06-23": 8.992032334771338, + "2023-06-18": 7.827976744659925, + "2024-04-23": 19.459055121996656, + "2023-08-08": 8.464917055862946, + "2023-08-17": 6.891859018282318, + "2024-04-14": 17.35865937487381, + "2023-07-24": 8.758859372591397, + "2023-10-14": 6.88148100943952, + "2024-05-22T20": 15.568131600000001, + "2024-05-25T08": 15.3540096, + "2024-05-22T05": 15.856510799999999, + "2024-05-28T03": 15.5177313, + "2024-05-22T16": 15.8262008, + "2024-05-25T05": 15.413832000000001, + "2024-05-24T22": 15.197871999999998, + "2024-05-27T14": 15.48884, + "2024-05-22T03": 15.946650499999999, + "2024-05-23T17": 14.939086499999998, + "2024-05-24T23": 15.20328751516483, + "2024-05-26T19": 15.351705599999999, + "2024-05-26T18": 15.3220284, + "2024-05-26T10": 15.3243279, + "2024-05-27T16": 16.020308650421377, + "2024-05-24T12": 15.18611799167497, + "2024-05-26T01": 15.512448599999999, + "2024-05-21T17": 16.030696799999998, + "2024-05-23T07": 15.690423, + "2024-05-22T08": 15.94681, + "2024-05-23T09": 15.574858599999999, + "2024-05-24T18": 15.212390000000001, + "2024-05-23T01": 15.640443362305122, + "2024-05-25T15": 15.420457800000001, + "2024-05-23T16": 15.00763758, + "2024-05-25T03": 15.32271511, + "2024-05-28T06": 15.2265888, + "2024-05-25T23": 15.514362109999999, + "2024-05-24T13": 15.115924999999999, + "2024-05-26T03": 15.448300499999998, + "2024-05-26T00": 15.5379798, + "2024-05-25T06": 15.30702793, + "2024-05-27T04": 15.3318698, + "2024-05-22T10": 15.901737413967822, + "2024-05-27T09": 15.23654748, + "2024-05-24T17": 15.060043527605611, + "2024-05-26T16": 15.373540400000001, + "2024-05-22T09": 15.881738532665356, + "2024-05-24T21": 15.198631999999998, + "2024-05-25T04": 15.353895785736029, + "2024-05-27T22": 15.8937718, + "2024-05-27T11": 15.2705264, + "2024-05-23T21": 15.028719999999998, + "2024-05-23T10": 15.5045715, + "2024-05-23T14": 15.0226353, + "2024-05-27T02": 15.3409435, + "2024-05-25T18": 15.39615, + "2024-05-27T05": 15.252675199999999, + "2024-05-22T23": 15.622966500000002, + "2024-05-28T01": 15.56725360726954, + "2024-05-22T04": 15.7557448, + "2024-05-22T15": 15.8154122, + "2024-05-24T03": 15.2537434, + "2024-05-24T08": 14.8456935, + "2024-05-21T22": 15.955371600000001, + "2024-05-21T16": 16.0131114, + "2024-05-21T23": 15.963685031025571, + "2024-05-24T02": 15.184227799999999, + "2024-05-26T07": 15.508513206150017, + "2024-05-27T07": 15.151055600000001, + "2024-05-25T22": 15.4372208, + "2024-05-24T16": 15.027763960887343, + "2024-05-27T20": 15.86480138, + "2024-05-22T02": 15.979312200961745, + "2024-05-24T06": 14.843466, + "2024-05-24T11": 15.0229808, + "2024-05-25T21": 15.406918000000001, + "2024-05-27T15": 15.756633871807793, + "2024-05-21T19": 15.7348058, + "2024-05-22T19": 15.646713499999999, + "2024-05-21T12": 16.1062947, + "2024-05-23T20": 14.5590725, + "2024-05-23T08": 15.619935179999999, + "2024-05-22T22": 15.633744000000002, + "2024-05-26T11": 15.364118062289613, + "2024-05-24T01": 15.222332419776414, + "2024-05-23T05": 15.706430959312602, + "2024-05-28T04": 15.268845599999999, + "2024-05-25T09": 15.4244452, + "2024-05-27T18": 15.972851110000002, + "2024-05-24T10": 14.98335459, + "2024-05-25T19": 15.416145, + "2024-05-24T07": 14.86383696, + "2024-05-26T04": 15.435985599999999, + "2024-05-26T09": 15.293880000000001, + "2024-05-23T02": 15.6318672, + "2024-05-27T06": 15.193112126764944, + "2024-05-28T08": 15.266615085447246, + "2024-05-24T15": 15.154419000000003, + "2024-05-25T20": 15.406147500000001, + "2024-05-27T08": 15.200874, + "2024-05-23T22": 15.1106256, + "2024-05-26T15": 15.525679, + "2024-05-24T20": 15.19848, + "2024-05-21T20": 15.914746399999999, + "2024-05-25T13": 15.384318348469783, + "2024-05-22T01": 15.948086, + "2024-05-25T17": 15.376616400000001, + "2024-05-27T10": 15.261684690000001, + "2024-05-21T21": 15.8765064, + "2024-05-24T19": 15.1752942, + "2024-05-26T02": 15.399352900119053, + "2024-05-27T19": 15.804021800000001, + "2024-05-25T11": 15.440826546038853, + "2024-05-27T17": 15.9735303, + "2024-05-21T18": 15.96633248, + "2024-05-26T06": 15.4747368, + "2024-05-23T00": 15.592731469999999, + "2024-05-22T00": 15.925132960000001, + "2024-05-24T05": 15.0229837070306, + "2024-05-23T15": 15.00119136, + "2024-05-22T13": 15.498294999999999, + "2024-05-21T10": 16.067173504889247, + "2024-05-22T12": 15.547356500000001, + "2024-05-23T04": 15.753226940000001, + "2024-05-26T08": 15.4235194, + "2024-05-26T13": 15.279109120000001, + "2024-05-28T05": 15.2382575, + "2024-05-22T18": 15.618125599999999, + "2024-05-22T06": 15.966486600000001, + "2024-05-21T08": 16.097805306162428, + "2024-05-22T17": 15.8874576, + "2024-05-23T19": 14.8663104, + "2024-05-25T07": 15.340559161378618, + "2024-05-26T22": 15.422527049500006, + "2024-05-25T16": 15.399843719999998, + "2024-05-26T05": 15.425371, + "2024-05-24T04": 15.201482400000002, + "2024-05-21T14": 16.135965000000002, + "2024-05-25T12": 15.3489255, + "2024-05-28T07": 15.2175114, + "2024-05-23T18": 14.80048419, + "2024-05-26T23": 15.3626224, + "2024-05-24T09": 14.9232815, + "2024-05-23T03": 15.709467600000002, + "2024-05-26T14": 15.44597372, + "2024-05-21T13": 16.176764, + "2024-05-22T14": 15.705758300000001, + "2024-05-25T14": 15.398922, + "2024-05-25T00": 15.3464695, + "2024-05-23T23": 15.123342800000001, + "2024-05-21T11": 16.127882913028312, + "2024-05-23T13": 14.99475, + "2024-05-22T11": 15.828071312307388, + "2024-05-21T15": 15.86429512878338, + "2024-05-28T00": 15.727408, + "2024-05-27T23": 15.836686, + "2024-05-28T02": 15.4285744, + "2024-05-26T21": 15.262365, + "2024-05-26T12": 15.3150976, + "2024-05-23T06": 15.660127899999999, + "2024-05-22T07": 15.95012846, + "2024-05-27T12": 15.2802963, + "2024-05-22T21": 15.5542428, + "2024-05-24T00": 15.2831195, + "2024-05-25T02": 15.39961134, + "2024-05-27T00": 15.29235, + "2024-05-26T20": 15.320687012463138, + "2024-05-26T17": 15.3317164, + "2024-05-27T13": 15.427274689999999, + "2024-05-23T12": 15.4024491, + "2024-05-25T10": 15.4258339, + "2024-05-21T09": 16.056787999999997, + "2024-05-23T11": 15.57221, + "2024-05-24T14": 15.13224847, + "2024-05-25T01": 15.3979198, + "2024-05-27T21": 15.9239006, + "2024-05-27T03": 15.3409435, + "2024-05-27T01": 15.32748585, + "latest": 14.85, + "2024-05-28T09": 15.358164780000001, + "2024-05-28T10": 15.385062, + "2024-05-28T11": 15.4244056, + "2024-05-28T12": 15.383447010000001, + "2024-05-28T13": 15.299995971371377, + "2024-05-28T14": 15.2548827, + "2024-05-28T15": 15.22767252, + "2024-05-29": 15.175432676927159, + "2024-05-28T20": 15.47881588, + "2024-05-28T22": 15.336877079999999, + "2024-05-28T21": 15.379826, + "2024-05-28T19": 15.381058000000001, + "2024-05-29T02": 15.2144654, + "2024-05-28T17": 15.3846, + "2024-05-28T18": 15.2309375, + "2024-05-28T23": 15.289308160000001, + "2024-05-29T00": 15.271990532750792, + "2024-05-29T01": 15.23754024, + "2024-05-28T16": 15.303914, + "2024-05-29T06": 15.457610509513412, + "2024-05-29T05": 15.4217808, + "2024-05-29T03": 15.319743840000001, + "2024-05-29T07": 15.3434112, + "2024-05-29T04": 15.43860617, + "2024-05-29T08": 15.174809999999999, + "2024-05-29T09": 15.2709378, + "2024-05-29T10": 15.2951493, + "2024-05-29T11": 15.285922638852144, + "2024-05-29T12": 15.17349599318407, + "2024-05-29T13": 15.118198600000001, + "2024-05-29T14": 15.0688408, + "2024-05-29T15": 15.0503616, + "2024-05-29T18": 15.019567360000002, + "2024-05-29T17": 15.090406399999999, + "2024-05-29T23": 14.887125045589585, + "2024-05-29T19": 14.9853, + "2024-05-29T22": 14.9034388, + "2024-05-29T20": 14.9164137, + "2024-05-29T16": 15.0096362, + "2024-05-29T21": 14.884983403310093, + "2024-05-30": 14.772468270541957, + "2024-05-30T00": 14.8715364, + "2024-05-30T05": 14.9451896, + "2024-05-30T02": 15.031813393186528, + "2024-05-30T08": 14.561258, + "2024-05-30T01": 14.867814684948053, + "2024-05-30T06": 14.7641792, + "2024-05-30T07": 14.67420850281728, + "2024-05-30T03": 15.068911643697216, + "2024-05-30T04": 15.044076219999999, + "2024-05-30T09": 14.6691932, + "2024-05-30T10": 14.6725132, + "2024-05-30T11": 14.728060600000001, + "2024-05-30T12": 14.78816, + "2024-05-30T13": 14.881066, + "2024-05-30T14": 14.9131368, + "2024-05-30T15": 14.859054, + "2024-05-30T21": 14.757048, + "2024-05-30T20": 14.777191799999999, + "2024-05-30T18": 14.9961, + "2024-05-30T22": 14.75183505, + "2024-05-30T16": 14.96061224, + "2024-05-30T17": 15.034284799999998, + "2024-05-30T19": 14.9573072, + "2024-05-31": 14.693483348939262, + "2024-05-30T23": 14.7648305, + "2024-05-31T03": 14.762910399999999, + "2024-05-31T07": 14.757571400000002, + "2024-05-31T06": 14.747574400000001, + "2024-05-31T04": 14.773201199999999, + "2024-05-31T02": 14.739806680000001, + "2024-05-31T05": 14.684412999470142, + "2024-05-31T00": 14.685792308043846, + "2024-05-31T01": 14.70846912, + "2024-05-31T08": 14.730162191953154, + "2024-05-31T09": 14.744985, + "2024-05-31T10": 14.751143999999998, + "2024-05-31T11": 14.790972, + "2024-05-31T12": 14.87092517156411, + "2024-05-31T13": 14.80883404001101, + "2024-05-31T14": 14.6516438, + "2024-06-01": 14.612203120411754, + "2024-06-01T08": 14.5079484, + "2024-06-01T02": 14.556334986842367, + "2024-06-01T05": 14.550684205592782, + "2024-05-31T21": 14.682801, + "2024-06-01T00": 14.5551386, + "2024-05-31T18": 14.57723956, + "2024-05-31T15": 14.5978737, + "2024-05-31T23": 14.615223700000001, + "2024-05-31T22": 14.663118, + "2024-06-01T01": 14.5053348, + "2024-06-01T07": 14.492655546058554, + "2024-06-01T04": 14.52280882, + "2024-05-31T19": 14.649698391420673, + "2024-06-01T06": 14.5185213, + "2024-05-31T20": 14.6728127, + "2024-05-31T17": 14.554211778828648, + "2024-05-31T16": 14.44129307, + "2024-06-01T03": 14.548352, + "2024-06-01T09": 14.54133802, + "2024-06-01T10": 14.5571784, + "2024-06-02": 14.63960232786252, + "2024-06-01T13": 14.606841999999999, + "2024-06-01T15": 14.6451934, + "2024-06-01T18": 14.6069882, + "2024-06-01T12": 14.5473328, + "2024-06-01T21": 14.636961500000002, + "2024-06-01T20": 14.6069882, + "2024-06-02T01": 14.628288, + "2024-06-01T17": 14.608503840000001, + "2024-06-01T11": 14.5571784, + "2024-06-02T00": 14.558344, + "2024-06-01T23": 14.5479152, + "2024-06-01T14": 14.634031499999999, + "2024-06-01T22": 14.614175250175096, + "2024-06-01T19": 14.5969971, + "2024-06-01T16": 14.6366685, + "2024-06-02T13": 14.722765272276652, + "2024-06-02T11": 14.799484900000001, + "2024-06-02T07": 14.7580363, + "2024-06-02T05": 14.66367216, + "2024-06-02T08": 14.719394399999999, + "2024-06-02T04": 14.6381335, + "2024-06-02T10": 14.639159000000001, + "2024-06-02T12": 14.779499099999999, + "2024-06-02T02": 14.6077192, + "2024-06-02T16": 14.7080768, + "2024-06-02T17": 14.530548999999999, + "2024-06-02T03": 14.6175645, + "2024-06-02T09": 14.7190998, + "2024-06-02T15": 14.7277658, + "2024-06-02T06": 14.727471, + "2024-06-02T18": 14.48915622, + "2024-06-02T14": 14.7192471, + "2024-06-03": 14.642089000000002, + "2024-06-03T01": 14.569217405456776, + "2024-06-02T20": 14.49159, + "2024-06-03T00": 14.352101999999999, + "2024-06-02T21": 14.508352850335001, + "2024-06-02T23": 14.47817756, + "2024-06-02T19": 14.5314214, + "2024-06-02T22": 14.482175400000001, + "2024-06-03T02": 14.75433486, + "2024-06-03T05": 14.79112, + "2024-06-03T06": 14.89146336, + "2024-06-03T04": 14.671485599999999, + "2024-06-03T03": 14.7313034, + "2024-06-03T07": 14.89146336 + }, + "USD nervos": { + "2023-07-30": 0.0028162857906027395, + "2023-10-23": 0.0026435043048736503, + "2023-07-27": 0.002740150715238163, + "2023-07-10": 0.002829919104229188, + "2023-08-20": 0.0027809367738459863, + "2024-02-23": 0.01060777031067762, + "2024-04-05": 0.019255427920995872, + "2023-12-19": 0.0032620539189252146, + "2024-05-17": 0.014674702224154767, + "2023-08-06": 0.002916648707111304, + "2023-12-02": 0.0031358915406815425, + "2023-10-31": 0.003008632244629821, + "2023-08-29": 0.0026866145111925596, + "2023-06-20": 0.002654664824365962, + "2023-09-09": 0.0027912400305142343, + "2023-06-26": 0.0030101268730928503, + "2023-10-01": 0.0028074996473167386, + "2024-03-07": 0.01907027785978711, + "2023-10-12": 0.002615426414988554, + "2024-04-22": 0.019790054148790013, + "2023-07-05": 0.0031054322289817042, + "2023-07-29": 0.002804287575673748, + "2024-04-26": 0.017912943136870155, + "2024-01-08": 0.003168671311307337, + "2023-05-29": 0.003525294942393208, + "2023-10-07": 0.0027913181631380305, + "2023-09-26": 0.0027073812172141117, + "2023-08-24": 0.0027930361811333024, + "2023-12-05": 0.003417745476627803, + "2024-02-19": 0.011344239780019503, + "2024-01-07": 0.003360285175693791, + "2024-04-28": 0.017461957007242006, + "2023-07-31": 0.0027713913311118643, + "2023-10-18": 0.0025151421983691216, + "2024-05-19": 0.016193465356943895, + "2024-05-12": 0.01613370440329511, + "2024-04-29": 0.01810403947631295, + "2023-08-25": 0.002749482473500404, + "2024-03-09": 0.020841189417855267, + "2023-07-12": 0.0028060485844764683, + "2023-09-05": 0.0026572807955494797, + "2023-06-07": 0.003398563353477663, + "2023-09-16": 0.0027643657032915773, + "2024-04-25": 0.018824191764544126, + "2023-08-12": 0.0030716419420201858, + "2023-06-06": 0.003305061798244068, + "2023-09-01": 0.0026202747615531262, + "2023-09-08": 0.002814686683664369, + "2024-03-22": 0.020478440181957477, + "2023-08-10": 0.0030003855829306807, + "2023-12-07": 0.0033854780411994513, + "2023-11-18": 0.0035755009535637866, + "2023-07-13": 0.002752893501658044, + "2023-09-13": 0.002617710657120795, + "2023-06-17": 0.002610281552224303, + "2023-07-17": 0.0028259556993938425, + "2023-07-07": 0.0028646323215548697, + "2023-09-07": 0.0027566680832831376, + "2024-03-26": 0.02196885253685593, + "2024-05-14": 0.015312625888056786, + "2024-02-22": 0.010025620255519197, + "2024-04-15": 0.025962820205831353, + "2023-12-30": 0.0037812967690897064, + "2023-09-17": 0.0027867468383416887, + "2024-04-17": 0.022330572606814373, + "2024-02-12": 0.004753821722084619, + "2023-10-26": 0.0029544451359628924, + "2024-01-03": 0.003821043095135458, + "2024-05-07": 0.018167790771036186, + "2023-06-01": 0.003589906026325037, + "2024-01-22": 0.003238696361722511, + "2023-06-12": 0.0028130907205923712, + "2023-10-03": 0.0027314412471773825, + "2024-05-26": 0.016477052924214863, + "2024-04-30": 0.0187099707488196, + "2023-06-19": 0.002648015617829006, + "2023-07-09": 0.0028584592544588588, + "2023-12-24": 0.0036538037812306415, + "2023-09-24": 0.0027123514776699127, + "2024-01-16": 0.003239198321516389, + "2023-10-17": 0.002567636869284336, + "2024-04-24": 0.0189155861971973, + "2024-03-18": 0.018271181009513478, + "2024-02-17": 0.010628352892725984, + "2023-12-27": 0.004073905196047591, + "2023-07-23": 0.00276248329959237, + "2023-09-03": 0.0027122008950479625, + "2024-02-24": 0.010382024375979584, + "2024-01-06": 0.0034774000050298197, + "2024-03-20": 0.017611397441566475, + "2023-11-21": 0.0033295176827260325, + "2023-12-25": 0.003699444060609223, + "2023-09-22": 0.002716827616393249, + "2023-10-02": 0.002848241530015321, + "2024-03-27": 0.020627045390625664, + "2024-05-06": 0.018870403034269487, + "2023-08-30": 0.0027958604761714793, + "2023-10-06": 0.0027204092814807224, + "2023-10-13": 0.002572110670408251, + "2023-06-28": 0.0029196599602250876, + "2024-02-05": 0.004508535065249667, + "2024-03-01": 0.015216669949601531, + "2023-07-15": 0.002889889197053725, + "2023-06-25": 0.0030245074965771328, + "2023-12-10": 0.003577807933415854, + "2023-11-23": 0.003179904529422712, + "2023-08-04": 0.0028053595926485924, + "2024-05-13": 0.015634409188586402, + "2024-01-13": 0.003321456482362748, + "2024-03-28": 0.01987463342551515, + "2023-08-05": 0.002832917722614333, + "2024-02-09": 0.0051604436424502655, + "2023-10-09": 0.0027128331941681815, + "2024-01-09": 0.003389414943413829, + "2024-05-10": 0.017552299893260324, + "2023-05-27": 0.00331242056564328, + "2023-08-18": 0.002664794293145208, + "2023-11-05": 0.0034801773029050757, + "2024-04-18": 0.021257248137014913, + "2023-10-22": 0.002613216860250213, + "2023-11-01": 0.0029030472020921626, + "2024-05-20": 0.015264803430822916, + "2023-12-08": 0.0034849920410507276, + "2024-04-12": 0.028692657846523265, + "2023-07-06": 0.00298974040589597, + "2024-03-12": 0.024144611718780712, + "2023-09-11": 0.002722164601064788, + "2024-03-03": 0.015538874613719233, + "2024-02-04": 0.004394049425580109, + "2024-01-28": 0.0032654870368917554, + "2023-07-01": 0.0029405417052703617, + "2023-11-07": 0.0037598590813948743, + "2023-11-25": 0.0032859201049842968, + "2023-06-04": 0.0036502007831111785, + "2024-02-25": 0.011836882163450798, + "2023-12-01": 0.003151847961962626, + "2023-07-14": 0.0029743182853486775, + "2024-01-26": 0.003131947248781826, + "2023-08-03": 0.002795946268382533, + "2024-02-28": 0.015787203345140582, + "2023-09-15": 0.002719202345347496, + "2023-07-18": 0.002833438463782362, + "2023-12-21": 0.003347679876544194, + "2023-07-20": 0.002742335361108054, + "2024-03-06": 0.018177341946467283, + "2023-09-30": 0.0027408643911181153, + "2023-12-12": 0.0033167401742137223, + "2024-02-13": 0.005756060794976222, + "2023-09-20": 0.0027508905015914357, + "2023-09-19": 0.0027177652453175224, + "2023-09-29": 0.002729003665485978, + "2023-09-12": 0.0026005256234002743, + "2023-06-13": 0.0028135191954054063, + "2023-10-04": 0.00267421628769791, + "2023-07-08": 0.0028909456674259823, + "2024-04-16": 0.02345170260225718, + "2024-03-02": 0.015564075120278239, + "2023-06-27": 0.0028852583660342913, + "2023-10-08": 0.0027688204494376307, + "2023-11-20": 0.003529172351835405, + "2023-12-20": 0.0032496404779731917, + "2023-12-31": 0.003703103551939232, + "2023-11-06": 0.003495860451143903, + "2023-08-22": 0.0026853893702054204, + "2023-06-09": 0.0032619703796915017, + "2024-03-17": 0.01726082686909861, + "2023-09-18": 0.0026596634773981276, + "2024-04-01": 0.02030716982302165, + "2024-05-21": 0.016975351174753482, + "2024-01-19": 0.0032613688891064154, + "2023-11-11": 0.003569875836079963, + "2023-09-23": 0.0027356654890495265, + "2023-11-19": 0.003507091379285251, + "2023-07-02": 0.0030412945279553872, + "2023-08-15": 0.003311254785843167, + "2024-01-25": 0.003137134805093224, + "2024-03-13": 0.023476425285294634, + "2024-01-21": 0.0032217326741827454, + "2024-02-01": 0.004504394577157883, + "2023-06-15": 0.002659217230219609, + "2024-03-16": 0.019892447580872406, + "2023-11-27": 0.003336412060982914, + "2024-01-10": 0.003218192634957911, + "2024-03-15": 0.02022996065544142, + "2023-06-21": 0.002753924482565912, + "2024-01-02": 0.003974989035423242, + "2023-07-11": 0.0028548100552456116, + "2023-10-25": 0.002860823186032921, + "2024-01-01": 0.003907460365110098, + "2024-02-14": 0.008764689493266404, + "2023-09-04": 0.002650451000368418, + "2023-09-06": 0.0027545635815218903, + "2024-04-03": 0.016615070662590235, + "2023-11-28": 0.0031580008156145687, + "2023-12-03": 0.0033427551738955956, + "2023-08-02": 0.0028406877397804385, + "2023-08-27": 0.0026673018481828056, + "2023-10-20": 0.002520093856797742, + "2023-10-10": 0.002636898845113433, + "2024-05-03": 0.015536933951478218, + "2024-03-08": 0.02103245073302528, + "2024-04-11": 0.032294840329101425, + "2023-06-22": 0.0029176879947764023, + "2024-01-14": 0.0033445579037772173, + "2023-12-15": 0.0034521808564627466, + "2023-10-19": 0.002549758010965863, + "2024-02-08": 0.004882453930551924, + "2023-11-08": 0.0037109456503081604, + "2023-11-12": 0.0036171348903294744, + "2023-12-22": 0.003458159036930939, + "2023-05-31": 0.003663046780560709, + "2024-03-23": 0.020216194840234417, + "2023-09-27": 0.0027247290499042907, + "2024-03-04": 0.015193911115809143, + "2023-09-10": 0.002832057973643393, + "2024-04-13": 0.02658144610500663, + "2024-02-29": 0.016915208615059085, + "2023-07-21": 0.002790156374438448, + "2023-06-30": 0.0028223815116451226, + "2023-12-29": 0.0038789443979384843, + "2023-12-04": 0.003323608371172854, + "2024-04-10": 0.031605946984755745, + "2024-05-08": 0.01748009067010551, + "2023-09-21": 0.002822856554341805, + "2023-06-02": 0.0035324942731796054, + "2024-04-21": 0.022321553874657722, + "2023-07-22": 0.0027838681740828142, + "2023-10-11": 0.002647790312262028, + "2024-03-21": 0.02044261845309537, + "2023-07-19": 0.002786857254638577, + "2024-05-05": 0.019564464202430732, + "2024-05-23": 0.015766748596478287, + "2024-04-08": 0.027351176057392308, + "2024-05-18": 0.01604537517718709, + "2023-06-14": 0.002771138632232396, + "2023-10-05": 0.002711836484514925, + "2023-10-16": 0.002576364890680309, + "2024-05-22": 0.017165616798280284, + "2024-02-10": 0.005075431248558107, + "2024-04-07": 0.02509884315357665, + "2024-02-20": 0.01169269482594434, + "2023-11-17": 0.003684440795352973, + "2023-12-11": 0.0036273071943442804, + "2023-11-26": 0.0033621841703826926, + "2023-11-16": 0.0036948676455650672, + "2023-06-29": 0.0027378150649734674, + "2023-10-27": 0.002997264524893218, + "2023-06-11": 0.002851432580106931, + "2024-02-02": 0.004171555941548007, + "2023-09-14": 0.00266854151814672, + "2024-01-27": 0.0032460000495913217, + "2024-03-30": 0.01940072626963553, + "2023-11-22": 0.003050274930106511, + "2023-09-28": 0.002686430306335257, + "2023-06-03": 0.0036925431403200338, + "2024-01-18": 0.0033344008187809774, + "2023-08-26": 0.0027085125236738904, + "2024-02-15": 0.011768984797182764, + "2023-10-28": 0.0028963926498657222, + "2024-03-24": 0.02011430722805639, + "2024-04-27": 0.01730919965048017, + "2023-12-06": 0.0034137058623693057, + "2024-01-30": 0.0033069397729964135, + "2023-11-14": 0.003676821394987694, + "2023-08-09": 0.002972504666451271, + "2024-05-15": 0.014682425539606732, + "2023-11-10": 0.003462359125454448, + "2024-01-23": 0.0030851431897167777, + "2024-01-31": 0.004049403968309601, + "2024-05-11": 0.016359901977186366, + "2024-01-11": 0.0034574911347454696, + "2024-02-18": 0.010930069235328427, + "2023-06-16": 0.0026035872339381953, + "2023-10-30": 0.003023276578883851, + "2023-12-17": 0.0034407973226368528, + "2024-02-26": 0.016238408451369243, + "2023-07-16": 0.002904642468636188, + "2024-01-05": 0.003591603438274662, + "2023-08-23": 0.0026462556100139588, + "2024-03-11": 0.023029282924968857, + "2023-08-01": 0.0027629353624833456, + "2024-03-14": 0.02191124567543594, + "2024-02-21": 0.010723898647570718, + "2023-08-28": 0.002717237776417484, + "2023-07-04": 0.0032084203133955556, + "2023-12-13": 0.0033021824101148894, + "2024-02-27": 0.014352969437411317, + "2023-08-13": 0.00315103623338723, + "2024-03-31": 0.019067341527325504, + "2023-12-09": 0.003576673743903883, + "2024-04-02": 0.01874783576010353, + "2024-02-06": 0.004232336930154408, + "2024-04-09": 0.031935078021811135, + "2023-11-04": 0.003476611738316121, + "2024-04-20": 0.019674006572186452, + "2024-01-15": 0.003172210087787867, + "2023-07-03": 0.0031183662365384082, + "2023-12-28": 0.003991936468822156, + "2023-05-30": 0.003587190904485552, + "2024-05-25": 0.01540541368352543, + "2024-02-07": 0.004948534008483223, + "2023-09-25": 0.0026713955795766896, + "2024-03-19": 0.017354781797272376, + "2024-03-10": 0.022235331276105025, + "2024-05-02": 0.016202156901605664, + "2023-09-02": 0.0026089334415907643, + "2024-01-12": 0.003481850439844226, + "2024-04-19": 0.02012912113941243, + "2023-11-29": 0.0032576815844612616, + "2023-10-15": 0.0026202407125786643, + "2024-05-28": 0.01750438633126841, + "2023-11-30": 0.003139793594822059, + "2024-01-24": 0.0030354183857682626, + "2023-08-11": 0.003038151537264043, + "2024-02-11": 0.004873297407468218, + "2023-06-08": 0.0031866179863563747, + "2023-11-15": 0.0036180663825281234, + "2023-12-16": 0.003303162657494405, + "2024-03-29": 0.01983352989578787, + "2024-04-04": 0.01684990759752401, + "2023-06-10": 0.003213710287373132, + "2023-07-28": 0.002779966055037771, + "2024-01-20": 0.0031463100996321222, + "2023-10-21": 0.0025176142128411324, + "2023-08-16": 0.003050269085734148, + "2024-05-24": 0.015535533916787555, + "2023-11-03": 0.0030854786579546357, + "2023-08-31": 0.0027485054780259227, + "2024-05-27": 0.015953826007240147, + "2024-01-04": 0.0036141292822807957, + "2023-07-26": 0.0027191951477488065, + "2023-11-13": 0.0037196813132354067, + "2023-10-24": 0.0027544876219866197, + "2024-03-25": 0.02267105628716365, + "2023-08-07": 0.0029426700932929572, + "2023-10-29": 0.002925878088112081, + "2024-01-29": 0.0031946887599872, + "2024-05-04": 0.018107819128976573, + "2023-06-05": 0.0036688802338292067, + "2023-11-02": 0.0030172441834877156, + "2023-12-18": 0.0033157434460036857, + "2023-11-24": 0.0032080360251438584, + "2023-08-21": 0.0026973265299251163, + "2023-07-25": 0.002742068577294432, + "2024-05-16": 0.015945088154672604, + "2023-08-14": 0.0032885695425264954, + "2024-05-01": 0.016382491985557114, + "2024-03-05": 0.02079800730007594, + "2024-04-06": 0.01884183477776468, + "2023-12-23": 0.00354852657176837, + "2024-02-03": 0.004021355353803669, + "2024-02-16": 0.013504988053956597, + "2023-05-28": 0.003370830267380175, + "2023-12-14": 0.0033647501586165614, + "2023-06-24": 0.0030078649153487394, + "2023-12-26": 0.0038116620372975743, + "2023-11-09": 0.0037634662520844254, + "2023-08-19": 0.0027731557665614886, + "2024-05-09": 0.017448227056091514, + "2024-01-17": 0.0033446734868482456, + "2023-06-23": 0.0028551110240672187, + "2023-06-18": 0.0026704171036378054, + "2024-04-23": 0.02006888762193018, + "2023-08-08": 0.0029990735530769684, + "2023-08-17": 0.0028981195170905893, + "2024-04-14": 0.023597351789402428, + "2023-07-24": 0.002824919376651902, + "2023-10-14": 0.002604238504216861, + "2024-05-22T20": 0.015758879795680556, + "2024-05-25T08": 0.015808071313604448, + "2024-05-22T05": 0.016584863248015187, + "2024-05-28T03": 0.017736335591929237, + "2024-05-22T16": 0.015984618892497072, + "2024-05-25T05": 0.015488596870059936, + "2024-05-24T22": 0.01542152401844357, + "2024-05-27T14": 0.01640481597821862, + "2024-05-22T03": 0.016798117646787035, + "2024-05-23T17": 0.015116313551291284, + "2024-05-24T23": 0.015447478090207975, + "2024-05-26T19": 0.016030768023140934, + "2024-05-26T18": 0.016068530724952977, + "2024-05-26T10": 0.016350924330564943, + "2024-05-27T16": 0.018035733691577384, + "2024-05-24T12": 0.015252035921833376, + "2024-05-26T01": 0.016485412988028518, + "2024-05-21T17": 0.016999157704379046, + "2024-05-23T07": 0.015841692069567634, + "2024-05-22T08": 0.01628336414725695, + "2024-05-23T09": 0.01573285381106765, + "2024-05-24T18": 0.015417665152292788, + "2024-05-23T01": 0.015829712079169226, + "2024-05-25T15": 0.01607308695688735, + "2024-05-23T16": 0.015041333818814756, + "2024-05-25T03": 0.015391202039792218, + "2024-05-28T06": 0.017085015856190416, + "2024-05-25T23": 0.016339920675689186, + "2024-05-24T13": 0.01538182077895425, + "2024-05-26T03": 0.016598999044373328, + "2024-05-26T00": 0.016477052924214863, + "2024-05-25T06": 0.015812646184771493, + "2024-05-27T04": 0.016090391556800154, + "2024-05-22T10": 0.01601462564710391, + "2024-05-27T09": 0.01601172944897196, + "2024-05-24T17": 0.015148513793191574, + "2024-05-26T16": 0.016082022708383412, + "2024-05-22T09": 0.0161803195924751, + "2024-05-24T21": 0.01541560353158641, + "2024-05-25T04": 0.01540863460057438, + "2024-05-27T22": 0.01741649606683261, + "2024-05-27T11": 0.016113337114559298, + "2024-05-23T21": 0.015063733781024328, + "2024-05-23T10": 0.015641982164146778, + "2024-05-23T14": 0.01501555804863575, + "2024-05-27T02": 0.016166985835142457, + "2024-05-25T18": 0.016265640189589623, + "2024-05-27T05": 0.01605736951975067, + "2024-05-22T23": 0.015776059184100324, + "2024-05-28T01": 0.017434980243851057, + "2024-05-22T04": 0.01684744482309042, + "2024-05-22T15": 0.01586148869062711, + "2024-05-24T03": 0.015610030618305336, + "2024-05-24T08": 0.015293182163329762, + "2024-05-21T22": 0.017128601771718363, + "2024-05-21T16": 0.016815119994405527, + "2024-05-21T23": 0.017241194076351073, + "2024-05-24T02": 0.015448010802951152, + "2024-05-26T07": 0.016655373257492275, + "2024-05-27T07": 0.01586871649068064, + "2024-05-25T22": 0.016366868780143387, + "2024-05-24T16": 0.015181637626585497, + "2024-05-27T20": 0.0172836011154391, + "2024-05-22T02": 0.017041566757988773, + "2024-05-24T06": 0.015276886465054021, + "2024-05-24T11": 0.015233296952106276, + "2024-05-25T21": 0.016317876883363204, + "2024-05-27T15": 0.016924874189605196, + "2024-05-21T19": 0.01711663040453841, + "2024-05-22T19": 0.015806646537474614, + "2024-05-21T12": 0.017303577107861786, + "2024-05-23T20": 0.014952877900264564, + "2024-05-23T08": 0.015797306629332278, + "2024-05-22T22": 0.015911483255225182, + "2024-05-26T11": 0.016380369698294598, + "2024-05-24T01": 0.015482549678325127, + "2024-05-23T05": 0.01588136449140846, + "2024-05-28T04": 0.017386882239277198, + "2024-05-25T09": 0.01590900772916521, + "2024-05-27T18": 0.017356140772582813, + "2024-05-24T10": 0.015266346520850104, + "2024-05-25T19": 0.016255732385374602, + "2024-05-24T07": 0.015148118847757354, + "2024-05-26T04": 0.016580937666798194, + "2024-05-26T09": 0.0165320443261782, + "2024-05-23T02": 0.015841443257580152, + "2024-05-27T06": 0.015992255719987466, + "2024-05-28T08": 0.016984358966967768, + "2024-05-24T15": 0.015441361984622499, + "2024-05-25T20": 0.016383521378272255, + "2024-05-27T08": 0.015977709967766474, + "2024-05-23T22": 0.015303619817721614, + "2024-05-26T15": 0.016303441162252293, + "2024-05-24T20": 0.015407771184110818, + "2024-05-21T20": 0.016926532941636083, + "2024-05-25T13": 0.016032198024250672, + "2024-05-22T01": 0.0168839372755611, + "2024-05-25T17": 0.016361409165277067, + "2024-05-27T10": 0.01615080953699633, + "2024-05-21T21": 0.017159480682930817, + "2024-05-24T19": 0.015448554417516334, + "2024-05-26T02": 0.016793092247346632, + "2024-05-27T19": 0.017576377609526198, + "2024-05-25T11": 0.016272731593805566, + "2024-05-27T17": 0.01745026169191369, + "2024-05-21T18": 0.017222040773526643, + "2024-05-26T06": 0.01649992724556478, + "2024-05-23T00": 0.015790846634784597, + "2024-05-22T00": 0.017165616798280284, + "2024-05-24T05": 0.015576322739964078, + "2024-05-23T15": 0.014972700328510849, + "2024-05-22T13": 0.015496750710706851, + "2024-05-21T10": 0.01711409709309413, + "2024-05-22T12": 0.015612020924198762, + "2024-05-23T04": 0.01593227191575206, + "2024-05-26T08": 0.016740310442350848, + "2024-05-26T13": 0.016207856527602437, + "2024-05-28T05": 0.017147668598516255, + "2024-05-22T18": 0.01588491165349583, + "2024-05-22T06": 0.016461428216870643, + "2024-05-21T08": 0.01732919847612339, + "2024-05-22T17": 0.015966489067792976, + "2024-05-23T19": 0.014992402033873333, + "2024-05-25T07": 0.015735192099629737, + "2024-05-26T22": 0.016067668625737972, + "2024-05-25T16": 0.016266282704982604, + "2024-05-26T05": 0.016540538215318985, + "2024-05-24T04": 0.015573417745070917, + "2024-05-21T14": 0.016887836530837592, + "2024-05-25T12": 0.016086951588739382, + "2024-05-28T07": 0.01688236558093612, + "2024-05-23T18": 0.014985143336495978, + "2024-05-26T23": 0.016091399304253313, + "2024-05-24T09": 0.015271693812005376, + "2024-05-23T03": 0.01583732462206306, + "2024-05-26T14": 0.016132776105473024, + "2024-05-21T13": 0.01698137952539967, + "2024-05-22T14": 0.015704601990236378, + "2024-05-25T14": 0.015944829613643928, + "2024-05-25T00": 0.01540541368352543, + "2024-05-23T23": 0.015408445236554078, + "2024-05-21T11": 0.01720573695741514, + "2024-05-23T13": 0.015257622155166729, + "2024-05-22T11": 0.01606009271008374, + "2024-05-21T15": 0.017009747951184755, + "2024-05-28T00": 0.01750438633126841, + "2024-05-27T23": 0.01747231082361486, + "2024-05-28T02": 0.017138868542359166, + "2024-05-26T21": 0.01601890056374212, + "2024-05-26T12": 0.01629075745641711, + "2024-05-23T06": 0.01573218738550122, + "2024-05-22T07": 0.016523431721791756, + "2024-05-27T12": 0.016177947629521523, + "2024-05-22T21": 0.015730180139590686, + "2024-05-24T00": 0.015535533916787555, + "2024-05-25T02": 0.015409895033384198, + "2024-05-27T00": 0.015953826007240147, + "2024-05-26T20": 0.016071823111063636, + "2024-05-26T17": 0.01608987060434668, + "2024-05-27T13": 0.01619485315142171, + "2024-05-23T12": 0.015729586419219885, + "2024-05-25T10": 0.016241703251443373, + "2024-05-21T09": 0.017032181815725477, + "2024-05-23T11": 0.015522174914304672, + "2024-05-24T14": 0.01531915117415191, + "2024-05-25T01": 0.015390424188062475, + "2024-05-27T21": 0.017467803464770944, + "2024-05-27T03": 0.016112319395144528, + "2024-05-27T01": 0.015986838638596724, + "latest": 0.01544925, + "2024-05-28T09": 0.0171749240814495, + "2024-05-28T10": 0.017420020343744073, + "2024-05-28T11": 0.017307264086661344, + "2024-05-28T12": 0.017241518400089938, + "2024-05-28T13": 0.016991832355255997, + "2024-05-28T14": 0.017001331453992453, + "2024-05-28T15": 0.017014872171718626, + "2024-05-29": 0.016785391312566077, + "2024-05-28T20": 0.016980583665425857, + "2024-05-28T22": 0.016869850273202765, + "2024-05-28T21": 0.016843458891353264, + "2024-05-28T19": 0.01666864385464799, + "2024-05-29T02": 0.016674555057869262, + "2024-05-28T17": 0.016914508884186098, + "2024-05-28T18": 0.01686183275304978, + "2024-05-28T23": 0.016794471353241674, + "2024-05-29T00": 0.016785391312566077, + "2024-05-29T01": 0.016745219146143676, + "2024-05-28T16": 0.017030103837728017, + "2024-05-29T06": 0.01700487306542517, + "2024-05-29T05": 0.016962629720514363, + "2024-05-29T03": 0.01666055994445235, + "2024-05-29T07": 0.016988973381552204, + "2024-05-29T04": 0.01650378617934335, + "2024-05-29T08": 0.0166596601112207, + "2024-05-29T09": 0.016615689693838132, + "2024-05-29T10": 0.016756359882065024, + "2024-05-29T11": 0.016799838516176547, + "2024-05-29T12": 0.01669184937374287, + "2024-05-29T13": 0.016643719003994285, + "2024-05-29T14": 0.01658405118046147, + "2024-05-29T15": 0.016535818100814392, + "2024-05-29T18": 0.016123131002096208, + "2024-05-29T17": 0.016186367278096025, + "2024-05-29T23": 0.016017072532886478, + "2024-05-29T19": 0.016091085184043032, + "2024-05-29T22": 0.016120742359777784, + "2024-05-29T20": 0.016000545514938593, + "2024-05-29T16": 0.01621910648166835, + "2024-05-29T21": 0.01602297731524859, + "2024-05-30": 0.015938710840302465, + "2024-05-30T00": 0.015938710840302465, + "2024-05-30T05": 0.01618268152352891, + "2024-05-30T02": 0.01601480770735336, + "2024-05-30T08": 0.015440148319499414, + "2024-05-30T01": 0.01600621157752146, + "2024-05-30T06": 0.016115400486240612, + "2024-05-30T07": 0.015843617117903847, + "2024-05-30T03": 0.016140631280842265, + "2024-05-30T04": 0.01620013086718605, + "2024-05-30T09": 0.015654973665429662, + "2024-05-30T10": 0.015639791727136323, + "2024-05-30T11": 0.015703752929277986, + "2024-05-30T12": 0.01567571947884528, + "2024-05-30T13": 0.01600004095652757, + "2024-05-30T14": 0.016156902138395143, + "2024-05-30T15": 0.016133202024594784, + "2024-05-30T21": 0.016191578346197066, + "2024-05-30T20": 0.016343008737334217, + "2024-05-30T18": 0.016638061036499084, + "2024-05-30T22": 0.016169339994936485, + "2024-05-30T16": 0.016412485865660447, + "2024-05-30T17": 0.0164641671595768, + "2024-05-30T19": 0.01674924569172732, + "2024-05-31": 0.016107864239947915, + "2024-05-30T23": 0.016116391517421873, + "2024-05-31T03": 0.01613702271857587, + "2024-05-31T07": 0.016193140773544844, + "2024-05-31T06": 0.01606925276893201, + "2024-05-31T04": 0.016094686163626616, + "2024-05-31T02": 0.016006060733565468, + "2024-05-31T05": 0.016122653097011136, + "2024-05-31T00": 0.016107864239947915, + "2024-05-31T01": 0.01606082687585987, + "2024-05-31T08": 0.01631452057639253, + "2024-05-31T09": 0.01650769837678144, + "2024-05-31T10": 0.016476939443962495, + "2024-05-31T11": 0.016649854794971476, + "2024-05-31T12": 0.016635297867300218, + "2024-05-31T13": 0.01657944521845912, + "2024-05-31T14": 0.016364042975917446, + "2024-06-01": 0.016036141580146043, + "2024-06-01T08": 0.01596835330474583, + "2024-06-01T02": 0.016001454365279676, + "2024-06-01T05": 0.015981019316878613, + "2024-05-31T21": 0.016162407725918457, + "2024-06-01T00": 0.016007750566833793, + "2024-05-31T18": 0.016012831152770395, + "2024-05-31T15": 0.016223875843594332, + "2024-05-31T23": 0.016130036111916057, + "2024-05-31T22": 0.01610741621871778, + "2024-06-01T01": 0.016008655643821198, + "2024-06-01T07": 0.016041422037675262, + "2024-06-01T04": 0.01597711419421434, + "2024-05-31T19": 0.01597881721658796, + "2024-06-01T06": 0.015967550180884083, + "2024-05-31T20": 0.016052861547252766, + "2024-05-31T17": 0.015944338025453118, + "2024-05-31T16": 0.015985371239070713, + "2024-06-01T03": 0.0160593747972169, + "2024-06-01T09": 0.015987126964893766, + "2024-06-01T10": 0.015909932765433392, + "2024-06-02": 0.015553745023389218, + "2024-06-01T13": 0.015807422231243096, + "2024-06-01T15": 0.01549773239809503, + "2024-06-01T18": 0.015477407314098805, + "2024-06-01T12": 0.015808585079479576, + "2024-06-01T21": 0.01559339722058273, + "2024-06-01T20": 0.015471228228276351, + "2024-06-02T01": 0.0156149670123403, + "2024-06-01T17": 0.015491493866994131, + "2024-06-01T11": 0.015890801723715844, + "2024-06-02T00": 0.015553745023389218, + "2024-06-01T23": 0.015575909248670652, + "2024-06-01T14": 0.015348819601436444, + "2024-06-01T22": 0.01557660533905149, + "2024-06-01T19": 0.01552825369413772, + "2024-06-01T16": 0.015435848387237326, + "2024-06-02T13": 0.015555316760984003, + "2024-06-02T11": 0.015404165408874014, + "2024-06-02T07": 0.01570637821991231, + "2024-06-02T05": 0.01579585992770291, + "2024-06-02T08": 0.015577059520038104, + "2024-06-02T04": 0.015776987236988806, + "2024-06-02T10": 0.015400728374616613, + "2024-06-02T12": 0.015606628780866444, + "2024-06-02T02": 0.015646020403305736, + "2024-06-02T16": 0.015709590547388127, + "2024-06-02T17": 0.01553862744120223, + "2024-06-02T03": 0.015648134184537744, + "2024-06-02T09": 0.015561108565853852, + "2024-06-02T15": 0.01588845439835953, + "2024-06-02T06": 0.015729198172997293, + "2024-06-02T18": 0.015183646734973731, + "2024-06-02T14": 0.015736279903816118, + "2024-06-03": 0.015296244045763237, + "2024-06-03T01": 0.01520085001676441, + "2024-06-02T20": 0.015291029029172572, + "2024-06-03T00": 0.015285409224155489, + "2024-06-02T21": 0.015284928307042143, + "2024-06-02T23": 0.015256877274980643, + "2024-06-02T19": 0.015278837649585906, + "2024-06-02T22": 0.015259361044112543, + "2024-06-03T02": 0.015511221483130224, + "2024-06-03T05": 0.015345591818857168, + "2024-06-03T06": 0.015287551991903741, + "2024-06-03T04": 0.01547095469193321, + "2024-06-03T03": 0.015539190372510012, + "2024-06-03T07": 0.015510607518623938 + }, + "USD osmo": { + "2023-07-30": 0.4855895364118383, + "2023-10-23": 0.2419772547847324, + "2023-07-27": 0.49392272049237035, + "2023-07-10": 0.49371926442891284, + "2023-08-20": 0.4349565, + "2024-02-23": 1.5361654484833633, + "2024-04-05": 1.2844847290756225, + "2023-12-19": 1.4381375994837184, + "2024-05-17": 0.8587850547822897, + "2023-08-06": 0.4574071176156806, + "2023-12-02": 0.7013995340527269, + "2023-10-31": 0.3605682950846522, + "2023-08-29": 0.3841333267283168, + "2023-06-20": 0.48748656328818213, + "2023-09-09": 0.3497971995048122, + "2023-06-26": 0.5053504194544536, + "2023-10-01": 0.3150252345023353, + "2024-03-07": 1.7451425953497486, + "2023-10-12": 0.2519275000583391, + "2024-04-22": 0.9779, + "2023-07-05": 0.4979974043884429, + "2023-07-29": 0.49199029856446996, + "2024-04-26": 0.926772366999084, + "2024-01-08": 1.7830403132655661, + "2023-05-29": 0.5890291867771279, + "2023-10-07": 0.29546271002765, + "2023-09-26": 0.3172995424012023, + "2023-08-24": 0.40862194801126295, + "2023-12-05": 0.7295465343823682, + "2024-02-19": 1.6268855965762234, + "2024-01-07": 1.797578173646142, + "2024-04-28": 0.9416676779825331, + "2023-07-31": 0.4819080506007908, + "2023-10-18": 0.23668717630721284, + "2024-05-19": 0.8452806041300476, + "2024-05-12": 0.8270887356738874, + "2024-04-29": 0.890891098788132, + "2023-08-25": 0.39982223919936, + "2024-03-09": 1.6619373171077776, + "2023-07-12": 0.49159790936251985, + "2023-09-05": 0.3557899569764759, + "2023-06-07": 0.5419189047452855, + "2023-09-16": 0.33623464742437337, + "2024-04-25": 0.9474436187149345, + "2023-08-12": 0.45459664108638503, + "2023-06-06": 0.5388024430739624, + "2023-09-01": 0.3597558983698964, + "2023-09-08": 0.35115952202548983, + "2024-03-22": 1.3036036692029256, + "2023-08-10": 0.4518431785061975, + "2023-12-07": 0.74789578253154, + "2023-11-18": 0.6806659266526744, + "2023-07-13": 0.4954089488074949, + "2023-09-13": 0.32456980001369146, + "2023-06-17": 0.498642802009015, + "2023-07-17": 0.5190828501716654, + "2023-07-07": 0.49442875143092807, + "2023-09-07": 0.35778859800025126, + "2024-03-26": 1.3639279688235042, + "2024-05-14": 0.7947942427184845, + "2024-02-22": 1.54933286506503, + "2024-04-15": 0.9558686446253286, + "2023-12-30": 1.5238296597203453, + "2023-09-17": 0.3344736865002061, + "2024-04-17": 0.9189419764537267, + "2024-02-12": 1.6397098250000002, + "2023-10-26": 0.27304811224378495, + "2024-01-03": 1.5052822058761641, + "2024-05-07": 0.8966999071891905, + "2023-06-01": 0.5527718780763395, + "2024-01-22": 1.486449723180871, + "2023-06-12": 0.4720192716480848, + "2023-10-03": 0.3072003499566527, + "2024-05-26": 0.83170048, + "2024-04-30": 0.8431362458839222, + "2023-06-19": 0.4872500390267049, + "2023-07-09": 0.4970888584073084, + "2023-12-24": 1.5405287891605408, + "2023-09-24": 0.32301937999999997, + "2024-01-16": 1.7837856418268094, + "2023-10-17": 0.24790125882511263, + "2024-04-24": 0.9995213152414847, + "2024-03-18": 1.3754107108897786, + "2024-02-17": 1.598354890392004, + "2023-12-27": 1.6791502299039935, + "2023-07-23": 0.5088022372912658, + "2023-09-03": 0.3559520389121578, + "2024-02-24": 1.5682756629573855, + "2024-01-06": 1.769570717973006, + "2024-03-20": 1.2769886052136246, + "2023-11-21": 0.6274195828420008, + "2023-12-25": 1.5503042358640278, + "2023-09-22": 0.3241748404275624, + "2023-10-02": 0.3160790054012336, + "2024-03-27": 1.3528558320666222, + "2024-05-06": 0.9189459450000002, + "2023-08-30": 0.3811711390065783, + "2023-10-06": 0.29605815717190576, + "2023-10-13": 0.2500123339938521, + "2023-06-28": 0.4953990573125485, + "2024-02-05": 1.558124022130105, + "2024-03-01": 1.5929098144514948, + "2023-07-15": 0.5491736352928132, + "2023-06-25": 0.5210656161513072, + "2023-12-10": 0.7979681202705591, + "2023-11-23": 0.6351213045850184, + "2023-08-04": 0.4625693948947954, + "2024-05-13": 0.8177953546271469, + "2024-01-13": 1.7610084330545648, + "2024-03-28": 1.3612341140998243, + "2023-08-05": 0.4564349429956177, + "2024-02-09": 1.6741331131474915, + "2023-10-09": 0.27305407792293335, + "2024-01-09": 1.813340524829648, + "2024-05-10": 0.8702880241445645, + "2023-05-27": 0.5801783788873877, + "2023-08-18": 0.438824600099324, + "2023-11-05": 0.4684782372736704, + "2024-04-18": 0.9117508331531694, + "2023-10-22": 0.23810629778336323, + "2023-11-01": 0.3449851435499368, + "2024-05-20": 0.85724286, + "2023-12-08": 0.7783388001840452, + "2024-04-12": 1.0647988868803777, + "2023-07-06": 0.4900171824027953, + "2024-03-12": 1.6251542996040422, + "2023-09-11": 0.3258717028316326, + "2024-03-03": 1.5976935774007204, + "2024-02-04": 1.5673040464813133, + "2024-01-28": 1.5928407, + "2023-07-01": 0.4953410837947549, + "2023-11-07": 0.5098130917956277, + "2023-11-25": 0.6510877624597146, + "2023-06-04": 0.5791715938494542, + "2024-02-25": 1.5841358113013146, + "2023-12-01": 0.6941473307946461, + "2023-07-14": 0.527886945531628, + "2024-01-26": 1.5041013766473872, + "2023-08-03": 0.4670595017705619, + "2024-02-28": 1.6102566623263335, + "2023-09-15": 0.3290060699153254, + "2023-07-18": 0.5104028898276833, + "2023-12-21": 1.4417019379515155, + "2023-07-20": 0.5139932399327298, + "2024-03-06": 1.5864418649354948, + "2023-09-30": 0.3124071757813743, + "2023-12-12": 1.0281074417985896, + "2024-02-13": 1.6420242572438986, + "2023-09-20": 0.3348234442818978, + "2023-09-19": 0.33706087941648266, + "2023-09-29": 0.31186569252551344, + "2023-09-12": 0.3244183456440827, + "2023-06-13": 0.4718199779566436, + "2023-10-04": 0.30138913965497643, + "2023-07-08": 0.491443208876887, + "2024-04-16": 0.9123226213592094, + "2024-03-02": 1.605123031665234, + "2023-06-27": 0.5029317447676578, + "2023-10-08": 0.29057022824067075, + "2023-11-20": 0.6712820549143445, + "2023-12-20": 1.4235223784301827, + "2023-12-31": 1.5351376781473791, + "2023-11-06": 0.5251893568610074, + "2023-08-22": 0.4097488460109655, + "2023-06-09": 0.5157732841763674, + "2024-03-17": 1.3890271745985936, + "2023-09-18": 0.33605730005630735, + "2024-04-01": 1.3335557212101292, + "2024-05-21": 0.9000175740363754, + "2024-01-19": 1.6124729693549111, + "2023-11-11": 0.5788622991666993, + "2023-09-23": 0.32339999595431673, + "2023-11-19": 0.6710422127195831, + "2023-07-02": 0.49599950373854945, + "2023-08-15": 0.45641504000000005, + "2024-01-25": 1.4367188270329236, + "2024-03-13": 1.6328311573710361, + "2024-01-21": 1.6030351281997754, + "2024-02-01": 1.606449658005545, + "2023-06-15": 0.45171779121476147, + "2024-03-16": 1.4731401472474324, + "2023-11-27": 0.6490096603224298, + "2024-01-10": 1.767218381397612, + "2024-03-15": 1.4805892047830675, + "2023-06-21": 0.5083813986962685, + "2024-01-02": 1.584790580675242, + "2023-07-11": 0.49201531117035796, + "2023-10-25": 0.2618294667063537, + "2024-01-01": 1.5278318706616782, + "2024-02-14": 1.6551819472543279, + "2023-09-04": 0.35537005226741647, + "2023-09-06": 0.35779171571613194, + "2024-04-03": 1.2645029964473258, + "2023-11-28": 0.6355182325734917, + "2023-12-03": 0.7089596633190797, + "2023-08-02": 0.4743291370454938, + "2023-08-27": 0.37702006262676324, + "2023-10-20": 0.22980106282405144, + "2023-10-10": 0.28202307730049797, + "2024-05-03": 0.8651795520595367, + "2024-03-08": 1.682575080202562, + "2024-04-11": 1.257183934977385, + "2023-06-22": 0.5176489536605431, + "2024-01-14": 1.7857383164500156, + "2023-12-15": 1.322279974718919, + "2023-10-19": 0.22717171121323873, + "2024-02-08": 1.657617199236754, + "2023-11-08": 0.51918274256068, + "2023-11-12": 0.6263618003644459, + "2023-12-22": 1.5143300912207371, + "2023-05-31": 0.5590996141690914, + "2024-03-23": 1.2977150814186598, + "2023-09-27": 0.31318071238831624, + "2024-03-04": 1.6029636986454119, + "2023-09-10": 0.33991503729948125, + "2024-04-13": 0.9652998511662619, + "2024-02-29": 1.6186129051162839, + "2023-07-21": 0.5199737955488094, + "2023-06-30": 0.4908968428198767, + "2023-12-29": 1.5879735339605883, + "2023-12-04": 0.7361800295099019, + "2024-04-10": 1.2600103041546082, + "2024-05-08": 0.8703830285610208, + "2023-09-21": 0.33188372121068827, + "2023-06-02": 0.5670248507806618, + "2024-04-21": 0.9660732346856583, + "2023-07-22": 0.5172517200000001, + "2023-10-11": 0.2639032819862042, + "2024-03-21": 1.3561232688358964, + "2023-07-19": 0.510704959862757, + "2024-05-05": 0.8916282071059639, + "2024-05-23": 0.8437441328998156, + "2024-04-08": 1.3469865309909665, + "2024-05-18": 0.8707437444282539, + "2023-06-14": 0.4646303235757482, + "2023-10-05": 0.2980370500030814, + "2023-10-16": 0.251049977006158, + "2024-05-22": 0.8811352622441736, + "2024-02-10": 1.68260374359856, + "2024-04-07": 1.3198909546701307, + "2024-02-20": 1.6131045491195906, + "2023-11-17": 0.6687441835562944, + "2023-12-11": 0.8190989749366622, + "2023-11-26": 0.6720970917891002, + "2023-11-16": 0.6910444636575688, + "2023-06-29": 0.4890452630635618, + "2023-10-27": 0.27422685393633506, + "2023-06-11": 0.4641666315284267, + "2024-02-02": 1.6198724784372733, + "2023-09-14": 0.3290126885830387, + "2024-01-27": 1.5534175064293443, + "2024-03-30": 1.387203671219726, + "2023-11-22": 0.6176101878248036, + "2023-09-28": 0.30958320923813576, + "2023-06-03": 0.574285906803363, + "2024-01-18": 1.699269718484266, + "2023-08-26": 0.39378823910055233, + "2024-02-15": 1.6307524341199129, + "2023-10-28": 0.2834425142498153, + "2024-03-24": 1.2851363959866835, + "2024-04-27": 0.9263433003196725, + "2023-12-06": 0.7592541166567063, + "2024-01-30": 1.6946888990661144, + "2023-11-14": 0.6256789718837741, + "2023-08-09": 0.4562535178649467, + "2024-05-15": 0.806590331181738, + "2023-11-10": 0.5360742092288063, + "2024-01-23": 1.3987006699295232, + "2024-01-31": 1.6278485999999999, + "2024-05-11": 0.8341668490668931, + "2024-01-11": 1.8895328334316785, + "2024-02-18": 1.6196367757090013, + "2023-06-16": 0.48228017648678834, + "2023-10-30": 0.34610033999999995, + "2023-12-17": 1.4716949464320634, + "2024-02-26": 1.580825979909396, + "2023-07-16": 0.5271739239911062, + "2024-01-05": 1.8124218074978846, + "2023-08-23": 0.40880559766861563, + "2024-03-11": 1.6485281905560618, + "2023-08-01": 0.4737959732658633, + "2024-03-14": 1.6196366657397563, + "2024-02-21": 1.549, + "2023-08-28": 0.37708835208607744, + "2023-07-04": 0.5100714866786399, + "2023-12-13": 1.0277159018554767, + "2024-02-27": 1.6309640754353247, + "2023-08-13": 0.4549918757010491, + "2024-03-31": 1.3794774998718664, + "2023-12-09": 0.803550987827995, + "2024-04-02": 1.2485612763828957, + "2024-02-06": 1.5617232988404997, + "2024-04-09": 1.304874129818043, + "2023-11-04": 0.4361149716387595, + "2024-04-20": 0.9307162443999376, + "2024-01-15": 1.7715047272772737, + "2023-07-03": 0.5114981567672034, + "2023-12-28": 1.6645638014718946, + "2023-05-30": 0.5715220246324457, + "2024-05-25": 0.8303322309766948, + "2024-02-07": 1.5947130135696572, + "2023-09-25": 0.31792507595829184, + "2024-03-19": 1.2688508344895466, + "2024-03-10": 1.6442793284034403, + "2024-05-02": 0.8552786166303308, + "2023-09-02": 0.35362822654220644, + "2024-01-12": 1.849869700364395, + "2024-04-19": 0.9282092825277368, + "2023-11-29": 0.6737193389765485, + "2023-10-15": 0.2713008479361586, + "2024-05-28": 0.8726635052149424, + "2023-11-30": 0.7108175473087109, + "2024-01-24": 1.4604207786334076, + "2023-08-11": 0.4504750788230999, + "2024-02-11": 1.6677335220730323, + "2023-06-08": 0.52335233, + "2023-11-15": 0.6454605928110793, + "2023-12-16": 1.4780751536040686, + "2024-03-29": 1.3756082728291692, + "2024-04-04": 1.3063130467356667, + "2023-06-10": 0.4582442526574331, + "2023-07-28": 0.4934664092623188, + "2024-01-20": 1.614585167, + "2023-10-21": 0.23529172303405294, + "2023-08-16": 0.43278879400093795, + "2024-05-24": 0.8174600073528704, + "2023-11-03": 0.43928760842181325, + "2023-08-31": 0.37596263806886876, + "2024-05-27": 0.8467749896777753, + "2024-01-04": 1.6408457703853176, + "2023-07-26": 0.49053901040722786, + "2023-11-13": 0.6722111727589904, + "2023-10-24": 0.2557040212123611, + "2024-03-25": 1.3326242969131394, + "2023-08-07": 0.4563844605801175, + "2023-10-29": 0.2926557108241329, + "2024-01-29": 1.625405995912647, + "2024-05-04": 0.880381183773322, + "2023-06-05": 0.5641055283111661, + "2023-11-02": 0.3670724666739178, + "2023-12-18": 1.2989191752660876, + "2023-11-24": 0.6488178662934161, + "2023-08-21": 0.4218970553743119, + "2023-07-25": 0.49284868084256017, + "2024-05-16": 0.8765227142732925, + "2023-08-14": 0.4566513602502542, + "2024-05-01": 0.8371490883850787, + "2024-03-05": 1.588030969187601, + "2024-04-06": 1.2984886056937974, + "2023-12-23": 1.4863619737149552, + "2024-02-03": 1.6151400137418104, + "2024-02-16": 1.606785284476906, + "2023-05-28": 0.5784292217141139, + "2023-12-14": 1.1868441735066768, + "2023-06-24": 0.5192447245924798, + "2023-12-26": 1.7986232199179228, + "2023-11-09": 0.5312674596994332, + "2023-08-19": 0.4328802050825004, + "2024-05-09": 0.8569658319707387, + "2024-01-17": 1.7612335305023823, + "2023-06-23": 0.5132159945462929, + "2023-06-18": 0.49977082690363944, + "2024-04-23": 1.019497077288382, + "2023-08-08": 0.4571067199850449, + "2023-08-17": 0.47943367083703076, + "2024-04-14": 0.9493, + "2023-07-24": 0.4988350389253251, + "2023-10-14": 0.25068110871676985, + "2024-05-22T20": 0.876794772, + "2024-05-25T08": 0.828176885, + "2024-05-22T05": 0.876507126, + "2024-05-28T03": 0.8599201260000001, + "2024-05-22T16": 0.885887336, + "2024-05-25T05": 0.82926816, + "2024-05-24T22": 0.8186853679999999, + "2024-05-27T14": 0.835797792, + "2024-05-22T03": 0.882014738, + "2024-05-23T17": 0.834090669, + "2024-05-24T23": 0.8184526520000001, + "2024-05-26T19": 0.833349748, + "2024-05-26T18": 0.8297682960000001, + "2024-05-26T10": 0.828593307, + "2024-05-27T16": 0.857550184, + "2024-05-24T12": 0.816175368, + "2024-05-26T01": 0.83551644, + "2024-05-21T17": 0.8968795079999999, + "2024-05-23T07": 0.872567409, + "2024-05-22T08": 0.88272342, + "2024-05-23T09": 0.8688131969999999, + "2024-05-24T18": 0.8189903000000001, + "2024-05-23T01": 0.8723548720000001, + "2024-05-25T15": 0.8307457418001616, + "2024-05-23T16": 0.8355432315348367, + "2024-05-25T03": 0.825361463, + "2024-05-28T06": 0.852149448, + "2024-05-25T23": 0.833358305, + "2024-05-24T13": 0.8154526598285017, + "2024-05-26T03": 0.831508524, + "2024-05-26T00": 0.834691476, + "2024-05-25T06": 0.8266774699999999, + "2024-05-27T04": 0.840154482, + "2024-05-22T10": 0.88280574, + "2024-05-27T09": 0.832183726, + "2024-05-24T17": 0.8153569858844277, + "2024-05-26T16": 0.8312781951663633, + "2024-05-22T09": 0.8838232, + "2024-05-24T21": 0.8187263079999999, + "2024-05-25T04": 0.8278687200000001, + "2024-05-27T22": 0.871310356, + "2024-05-27T11": 0.83248354, + "2024-05-23T21": 0.8333744999999999, + "2024-05-23T10": 0.863397705, + "2024-05-23T14": 0.8430866850000001, + "2024-05-27T02": 0.839304518, + "2024-05-25T18": 0.831891975, + "2024-05-27T05": 0.8358131821327527, + "2024-05-22T23": 0.87100787, + "2024-05-28T01": 0.86600664, + "2024-05-22T04": 0.8745889130426602, + "2024-05-22T15": 0.8846755468869598, + "2024-05-24T03": 0.838056256, + "2024-05-24T08": 0.8061155411655101, + "2024-05-21T22": 0.8890594558938494, + "2024-05-21T16": 0.899013258, + "2024-05-21T23": 0.8922125959999999, + "2024-05-24T02": 0.836885542445121, + "2024-05-26T07": 0.834391161, + "2024-05-27T07": 0.8306512476759036, + "2024-05-25T22": 0.8326759770516002, + "2024-05-24T16": 0.81215875, + "2024-05-27T20": 0.865915864, + "2024-05-22T02": 0.8873502096524266, + "2024-05-24T06": 0.8201460370695449, + "2024-05-24T11": 0.81541046, + "2024-05-25T21": 0.8323335000000001, + "2024-05-27T15": 0.8386781160000001, + "2024-05-21T19": 0.8841081479999999, + "2024-05-22T19": 0.877215746, + "2024-05-21T12": 0.9001929080000001, + "2024-05-23T20": 0.81558785, + "2024-05-23T08": 0.870598648604974, + "2024-05-22T22": 0.8778604591241533, + "2024-05-26T11": 0.829526545, + "2024-05-24T01": 0.8373649200000001, + "2024-05-23T05": 0.871359422, + "2024-05-28T04": 0.85037877, + "2024-05-25T09": 0.829901128, + "2024-05-27T18": 0.8556349350000001, + "2024-05-24T10": 0.814484401, + "2024-05-25T19": 0.8338608072702915, + "2024-05-24T07": 0.8118896456215118, + "2024-05-26T04": 0.8307839399999999, + "2024-05-26T09": 0.8297074465193233, + "2024-05-23T02": 0.873245676, + "2024-05-27T06": 0.833799584, + "2024-05-28T08": 0.8556498140822659, + "2024-05-24T15": 0.81909025, + "2024-05-25T20": 0.833396776042921, + "2024-05-27T08": 0.83230032, + "2024-05-23T22": 0.8341092564599073, + "2024-05-26T15": 0.8329999, + "2024-05-24T20": 0.81811818, + "2024-05-21T20": 0.8873070919999999, + "2024-05-25T13": 0.8299837859999999, + "2024-05-22T01": 0.890793092, + "2024-05-25T17": 0.83131707, + "2024-05-27T10": 0.830892846, + "2024-05-21T21": 0.886005036, + "2024-05-24T19": 0.8166964929971303, + "2024-05-26T02": 0.833618763965267, + "2024-05-27T19": 0.8545360460000001, + "2024-05-25T11": 0.8343195091455716, + "2024-05-27T17": 0.8565168780000001, + "2024-05-21T18": 0.8937631858253396, + "2024-05-26T06": 0.8291040026674542, + "2024-05-23T00": 0.8725719030311548, + "2024-05-22T00": 0.8935391340000001, + "2024-05-24T05": 0.82694493, + "2024-05-23T15": 0.8404944079999999, + "2024-05-22T13": 0.866804641, + "2024-05-21T10": 0.9045492562714754, + "2024-05-22T12": 0.8735803926849645, + "2024-05-23T04": 0.8716592360000001, + "2024-05-26T08": 0.83364972, + "2024-05-26T13": 0.8260355840000001, + "2024-05-28T05": 0.8510490958879922, + "2024-05-22T18": 0.877094736, + "2024-05-22T06": 0.883405608, + "2024-05-21T08": 0.8994773697778707, + "2024-05-22T17": 0.8845719063529633, + "2024-05-23T19": 0.826438976, + "2024-05-25T07": 0.8270773140000001, + "2024-05-26T22": 0.83614867, + "2024-05-25T16": 0.8315835619999999, + "2024-05-26T05": 0.82845139, + "2024-05-24T04": 0.838929936, + "2024-05-21T14": 0.9029742000000001, + "2024-05-25T12": 0.830641851, + "2024-05-28T07": 0.850701852, + "2024-05-23T18": 0.824714037, + "2024-05-26T23": 0.834899056, + "2024-05-24T09": 0.8099353650000001, + "2024-05-23T03": 0.875812812, + "2024-05-26T14": 0.827577119, + "2024-05-21T13": 0.8993503399156334, + "2024-05-22T14": 0.8739920654162656, + "2024-05-25T14": 0.826342152, + "2024-05-25T00": 0.820411262, + "2024-05-23T23": 0.832333612, + "2024-05-21T11": 0.906370441552628, + "2024-05-23T13": 0.850202325, + "2024-05-22T11": 0.88034376252996, + "2024-05-21T15": 0.8984158826989237, + "2024-05-28T00": 0.87140232, + "2024-05-27T23": 0.873165924, + "2024-05-28T02": 0.8583886578460376, + "2024-05-26T21": 0.8318206051557641, + "2024-05-26T12": 0.827035264, + "2024-05-23T06": 0.869252026, + "2024-05-22T07": 0.883940862, + "2024-05-27T12": 0.83381592, + "2024-05-22T21": 0.87367662, + "2024-05-24T00": 0.832725105, + "2024-05-25T02": 0.8253183900000001, + "2024-05-27T00": 0.8351822000000001, + "2024-05-26T20": 0.835190223, + "2024-05-26T17": 0.830151476, + "2024-05-27T13": 0.8373721646735606, + "2024-05-23T12": 0.869473749, + "2024-05-25T10": 0.83177536, + "2024-05-21T09": 0.90261944, + "2024-05-23T11": 0.86666645, + "2024-05-24T14": 0.818318581, + "2024-05-25T01": 0.82263544, + "2024-05-27T21": 0.866424027, + "2024-05-27T03": 0.8388048130000001, + "2024-05-27T01": 0.8364070896926454, + "latest": 0.831384, + "2024-05-28T09": 0.863010183, + "2024-05-28T10": 0.866059107, + "2024-05-28T11": 0.8707196840000001, + "2024-05-28T12": 0.868721704, + "2024-05-28T13": 0.8702289, + "2024-05-28T14": 0.8682688133755353, + "2024-05-28T15": 0.866884362, + "2024-05-29": 0.8913443735585524, + "2024-05-28T20": 0.886830054, + "2024-05-28T22": 0.885984144, + "2024-05-28T21": 0.8847394709999999, + "2024-05-28T19": 0.880315878, + "2024-05-29T02": 0.883897504, + "2024-05-28T17": 0.8745246, + "2024-05-28T18": 0.8735504073061103, + "2024-05-28T23": 0.8869477120000001, + "2024-05-29T00": 0.8873865339531717, + "2024-05-29T01": 0.8842288806883787, + "2024-05-28T16": 0.870185345, + "2024-05-29T06": 0.8934176549999999, + "2024-05-29T05": 0.8946837306197456, + "2024-05-29T03": 0.8872968903572156, + "2024-05-29T07": 0.892135452, + "2024-05-29T04": 0.88794209, + "2024-05-29T08": 0.8946417256341693, + "2024-05-29T09": 0.899172, + "2024-05-29T10": 0.9018675503605333, + "2024-05-29T11": 0.89511296, + "2024-05-29T12": 0.893532432, + "2024-05-29T13": 0.8923127212018483, + "2024-05-29T14": 0.8843451, + "2024-05-29T15": 0.8839339199999999, + "2024-05-29T18": 0.87715712, + "2024-05-29T17": 0.87730971, + "2024-05-29T23": 0.87255168, + "2024-05-29T19": 0.8764762441239164, + "2024-05-29T22": 0.871731303, + "2024-05-29T20": 0.8716061159999999, + "2024-05-29T16": 0.87739418, + "2024-05-29T21": 0.8703219826150169, + "2024-05-30": 0.8893465674646979, + "2024-05-30T00": 0.87291624, + "2024-05-30T05": 0.879328602, + "2024-05-30T02": 0.879834111, + "2024-05-30T08": 0.85868448, + "2024-05-30T01": 0.8748476283981124, + "2024-05-30T06": 0.87090272, + "2024-05-30T07": 0.865163266, + "2024-05-30T03": 0.8812666050468121, + "2024-05-30T04": 0.8832205494701332, + "2024-05-30T09": 0.8647808199999999, + "2024-05-30T10": 0.884748548, + "2024-05-30T11": 0.90226857, + "2024-05-30T12": 0.89868048, + "2024-05-30T13": 0.8973612599999999, + "2024-05-30T14": 0.89558784, + "2024-05-30T15": 0.88674516, + "2024-05-30T21": 0.87292538, + "2024-05-30T20": 0.875633598, + "2024-05-30T18": 0.8883689639999999, + "2024-05-30T22": 0.87109501, + "2024-05-30T16": 0.88917978, + "2024-05-30T17": 0.883564118, + "2024-05-30T19": 0.8804414920000001, + "2024-05-31": 0.8515643706752092, + "2024-05-30T23": 0.8682215759669855, + "2024-05-31T03": 0.8633920069352478, + "2024-05-31T07": 0.85394374, + "2024-05-31T06": 0.85684287, + "2024-05-31T04": 0.86310279, + "2024-05-31T02": 0.859877252845296, + "2024-05-31T05": 0.8569485069999999, + "2024-05-31T00": 0.861658668, + "2024-05-31T01": 0.861093288, + "2024-05-31T08": 0.8529676042028056, + "2024-05-31T09": 0.849511068, + "2024-05-31T10": 0.8504894, + "2024-05-31T11": 0.852679548, + "2024-05-31T12": 0.8531046035945653, + "2024-05-31T13": 0.8498727520000001, + "2024-05-31T14": 0.843918692, + "2024-06-01": 0.8403425119283771, + "2024-06-01T08": 0.837204543, + "2024-06-01T02": 0.837053721, + "2024-06-01T05": 0.8391449559999999, + "2024-05-31T21": 0.843112403, + "2024-06-01T00": 0.837944424, + "2024-05-31T18": 0.841689992, + "2024-05-31T15": 0.844998069, + "2024-05-31T23": 0.841349378, + "2024-05-31T22": 0.8426298600000001, + "2024-06-01T01": 0.836354428, + "2024-06-01T07": 0.8365315589456086, + "2024-06-01T04": 0.836655279, + "2024-05-31T19": 0.842786052, + "2024-06-01T06": 0.8380374270000001, + "2024-05-31T20": 0.843911467, + "2024-05-31T17": 0.842017413, + "2024-05-31T16": 0.8393195999999999, + "2024-06-01T03": 0.8373295999999999, + "2024-06-01T09": 0.833374333, + "2024-06-01T10": 0.830468544, + "2024-06-02": 0.8327085747309104, + "2024-06-01T13": 0.83235021, + "2024-06-01T15": 0.8367540240000001, + "2024-06-01T18": 0.837454002, + "2024-06-01T12": 0.830077204, + "2024-06-01T21": 0.8419499970000001, + "2024-06-01T20": 0.8403006703907216, + "2024-06-02T01": 0.83802904, + "2024-06-01T17": 0.83822888, + "2024-06-01T11": 0.829069776, + "2024-06-02T00": 0.83503144, + "2024-06-01T23": 0.8353517901188062, + "2024-06-01T14": 0.836886798, + "2024-06-01T22": 0.838070244, + "2024-06-01T19": 0.8372828192453046, + "2024-06-01T16": 0.836438148, + "2024-06-02T13": 0.83140096, + "2024-06-02T11": 0.830609848, + "2024-06-02T07": 0.834764142647078, + "2024-06-02T05": 0.837695744, + "2024-06-02T08": 0.8343987999999999, + "2024-06-02T04": 0.8385202479999999, + "2024-06-02T10": 0.8295856520000001, + "2024-06-02T12": 0.833507789, + "2024-06-02T02": 0.837695744, + "2024-06-02T16": 0.835023083, + "2024-06-02T17": 0.82766167, + "2024-06-02T03": 0.837187785, + "2024-06-02T09": 0.833083062, + "2024-06-02T15": 0.8356058710000001, + "2024-06-02T06": 0.836788125, + "2024-06-02T18": 0.822398031, + "2024-06-02T14": 0.833790888, + "2024-06-03": 0.8328500180000001, + "2024-06-03T01": 0.8263570202698741, + "2024-06-02T20": 0.8266202819999999, + "2024-06-03T00": 0.82654515, + "2024-06-02T21": 0.8241655938541087, + "2024-06-02T23": 0.8275863823354421, + "2024-06-02T19": 0.830010005, + "2024-06-02T22": 0.825154176, + "2024-06-03T02": 0.8293443, + "2024-06-03T05": 0.82780302, + "2024-06-03T06": 0.831267648, + "2024-06-03T04": 0.825321036, + "2024-06-03T03": 0.827911244, + "2024-06-03T07": 0.832366944 + }, + "USD polygon": { + "2023-07-30": 0.7103678589928558, + "2023-10-23": 0.6158162164230059, + "2023-07-27": 0.7245488869811706, + "2023-07-10": 0.7071236847694764, + "2023-08-20": 0.5762509328665327, + "2024-02-23": 0.9820450944275426, + "2024-04-05": 0.8863135435651432, + "2023-12-19": 0.7856563981499816, + "2024-05-17": 0.7097847906624208, + "2023-08-06": 0.6679967758330896, + "2023-12-02": 0.8077342735406818, + "2023-10-31": 0.6416701043327105, + "2023-08-29": 0.564791171159094, + "2023-06-20": 0.6098156960563682, + "2023-09-09": 0.54124082366863, + "2023-06-26": 0.6556834426665673, + "2023-10-01": 0.5530213174253489, + "2024-03-07": 1.1371374182907699, + "2023-10-12": 0.5098949821592481, + "2024-04-22": 0.7379489741526596, + "2023-07-05": 0.6767092158147616, + "2023-07-29": 0.7136425155049064, + "2024-04-26": 0.7139219973075964, + "2024-01-08": 0.7923615901711802, + "2023-05-29": 0.9284743832952996, + "2023-10-07": 0.5720410525477139, + "2023-09-26": 0.5192977010569955, + "2023-08-24": 0.5532886241045837, + "2023-12-05": 0.7986751646519147, + "2024-02-19": 0.9941559823523342, + "2024-01-07": 0.832564711260982, + "2024-04-28": 0.7362700567934801, + "2023-07-31": 0.6981661500837528, + "2023-10-18": 0.5168886928927126, + "2024-05-19": 0.6925880044806351, + "2024-05-12": 0.6778351380932902, + "2024-04-29": 0.7031182444795201, + "2023-08-25": 0.5427586897131311, + "2024-03-09": 1.1375205776137707, + "2023-07-12": 0.7376419873766804, + "2023-09-05": 0.5578416325246328, + "2023-06-07": 0.7892890923722714, + "2023-09-16": 0.5280662617893345, + "2024-04-25": 0.7097575461720489, + "2023-08-12": 0.6799204410086047, + "2023-06-06": 0.8210436420453875, + "2023-09-01": 0.5468616904563275, + "2023-09-08": 0.5435151722996967, + "2024-03-22": 0.9837913007391178, + "2023-08-10": 0.687952467160355, + "2023-12-07": 0.833953817036092, + "2023-11-18": 0.8134711862921031, + "2023-07-13": 0.7764252401357112, + "2023-09-13": 0.5119368779922264, + "2023-06-17": 0.6171472438195362, + "2023-07-17": 0.7746400944782368, + "2023-07-07": 0.6700389633064763, + "2023-09-07": 0.5555107597056698, + "2024-03-26": 1.0529997622652207, + "2024-05-14": 0.6578358096650565, + "2024-02-22": 0.971290205960334, + "2024-04-15": 0.7138765769472959, + "2023-12-30": 0.965277810528521, + "2023-09-17": 0.521910375166989, + "2024-04-17": 0.6833209687199396, + "2024-02-12": 0.84011046827421, + "2023-10-26": 0.6365862879957342, + "2024-01-03": 0.8660515130038879, + "2024-05-07": 0.7070999268132891, + "2023-06-01": 0.8920897397256538, + "2024-01-22": 0.760851688035992, + "2023-06-12": 0.6367482254823138, + "2023-10-03": 0.5658845172201713, + "2024-05-26": 0.7214092987661291, + "2024-04-30": 0.666115400290995, + "2023-06-19": 0.6004398367744668, + "2023-07-09": 0.6895750939137305, + "2023-12-24": 0.8529328183989194, + "2023-09-24": 0.5204360589475814, + "2024-01-16": 0.8485537976541158, + "2023-10-17": 0.5287815824285167, + "2024-04-24": 0.7378084199524213, + "2024-03-18": 1.0559496017257, + "2024-02-17": 0.9305737290756985, + "2023-12-27": 1.0473035747941573, + "2023-07-23": 0.7519546965605637, + "2023-09-03": 0.5420449771877532, + "2024-02-24": 0.9979856642502879, + "2024-01-06": 0.8260575077478902, + "2024-03-20": 0.9628557742203079, + "2023-11-21": 0.7737311168863995, + "2023-12-25": 0.877554906150641, + "2023-09-22": 0.5203708102007417, + "2023-10-02": 0.5616638648785784, + "2024-03-27": 1.0321530271573363, + "2024-05-06": 0.7431069811690839, + "2023-08-30": 0.5772206243993325, + "2023-10-06": 0.5550627159526615, + "2023-10-13": 0.5116558205468399, + "2023-06-28": 0.6325094848851648, + "2024-02-05": 0.7809569615425258, + "2024-03-01": 1.0177257252906406, + "2023-07-15": 0.8069895936358663, + "2023-06-25": 0.6686799762376158, + "2023-12-10": 0.9019052769663011, + "2023-11-23": 0.7755789797323802, + "2023-08-04": 0.6676720252877035, + "2024-05-13": 0.6683537933843041, + "2024-01-13": 0.872895476346386, + "2024-03-28": 1.0094090491477081, + "2023-08-05": 0.6638121054191324, + "2024-02-09": 0.8442019001388822, + "2023-10-09": 0.5369172334717617, + "2024-01-09": 0.8061001924718324, + "2024-05-10": 0.6930878692327901, + "2023-05-27": 0.9192375093361307, + "2023-08-18": 0.5749160187524148, + "2023-11-05": 0.6868579912771301, + "2024-04-18": 0.673119113297561, + "2023-10-22": 0.5734864420804259, + "2023-11-01": 0.632426225330868, + "2024-05-20": 0.6936650987185488, + "2023-12-08": 0.8758226129494194, + "2024-04-12": 0.8404094885971481, + "2023-07-06": 0.6746799869206868, + "2024-03-12": 1.1835111046336506, + "2023-09-11": 0.5040266821392911, + "2024-03-03": 1.0800649478714934, + "2024-02-04": 0.7805661573727622, + "2024-01-28": 0.7951423309522525, + "2023-07-01": 0.6643477853809613, + "2023-11-07": 0.7257170975679188, + "2023-11-25": 0.7709718236036583, + "2023-06-04": 0.9021980332006554, + "2024-02-25": 0.978837135402207, + "2023-12-01": 0.7813061188976372, + "2023-07-14": 0.8447467799517941, + "2024-01-26": 0.7485415969152278, + "2023-08-03": 0.6750384113753437, + "2024-02-28": 1.0342750023683258, + "2023-09-15": 0.5224160510106103, + "2023-07-18": 0.7512876943405751, + "2023-12-21": 0.7885884556870646, + "2023-07-20": 0.7679705144462049, + "2024-03-06": 1.067209887154874, + "2023-09-30": 0.5287228679756693, + "2023-12-12": 0.8631612099916439, + "2024-02-13": 0.8679690907487665, + "2023-09-20": 0.5412481425263703, + "2023-09-19": 0.5381607179113926, + "2023-09-29": 0.522311714274563, + "2023-09-12": 0.5081036801933427, + "2023-06-13": 0.6445618390339145, + "2023-10-04": 0.5648381625431439, + "2023-07-08": 0.6796677850576994, + "2024-04-16": 0.6986935589240866, + "2024-03-02": 1.0742870303278182, + "2023-06-27": 0.6639871488922543, + "2023-10-08": 0.5619880536724086, + "2023-11-20": 0.8454098634292047, + "2023-12-20": 0.7782422389289801, + "2023-12-31": 0.9825172381616584, + "2023-11-06": 0.7088119512426657, + "2023-08-22": 0.5404018398628044, + "2023-06-09": 0.7737537179522276, + "2024-03-17": 1.0587548383520995, + "2023-09-18": 0.5263897530346267, + "2024-04-01": 0.9628818800356816, + "2024-05-21": 0.7437672284821789, + "2024-01-19": 0.7731631919389528, + "2023-11-11": 0.8174520358841795, + "2023-09-23": 0.521127849748724, + "2023-11-19": 0.8387599274791998, + "2023-07-02": 0.6709636903837459, + "2023-08-15": 0.6699634176206033, + "2024-01-25": 0.7290719026080816, + "2024-03-13": 1.2626256798072164, + "2024-01-21": 0.7909766942452324, + "2024-02-01": 0.786433857788315, + "2023-06-15": 0.5980104259546543, + "2024-03-16": 1.1235659689268427, + "2023-11-27": 0.7438540421828161, + "2024-01-10": 0.840002481761252, + "2024-03-15": 1.12703902002872, + "2023-06-21": 0.6510633245762367, + "2024-01-02": 1.0101761790217767, + "2023-07-11": 0.7395206929003355, + "2023-10-25": 0.6325208730488138, + "2024-01-01": 0.9885910592410189, + "2024-02-14": 0.8831558103884118, + "2023-09-04": 0.5470787917990234, + "2023-09-06": 0.5556765193803614, + "2024-04-03": 0.902217956918202, + "2023-11-28": 0.7420733595090596, + "2023-12-03": 0.8104693138295875, + "2023-08-02": 0.6915480450933764, + "2023-08-27": 0.5484608804762465, + "2023-10-20": 0.5350353120000002, + "2023-10-10": 0.5245808619545509, + "2024-05-03": 0.7281664195018097, + "2024-03-08": 1.151948393887004, + "2024-04-11": 0.8786765584974178, + "2023-06-22": 0.6789601629566256, + "2024-01-14": 0.869770846208038, + "2023-12-15": 0.8613979263386009, + "2023-10-19": 0.5111618998228061, + "2024-02-08": 0.8366829521365775, + "2023-11-08": 0.7725277822751492, + "2023-11-12": 0.8364092628666208, + "2023-12-22": 0.8471698723548456, + "2023-05-31": 0.8883476685612933, + "2024-03-23": 0.9850368961648848, + "2023-09-27": 0.5077386688998434, + "2024-03-04": 1.109522514024467, + "2023-09-10": 0.5256996254413455, + "2024-04-13": 0.7432760355520622, + "2024-02-29": 1.0327501499441298, + "2023-07-21": 0.767610645009938, + "2023-06-30": 0.6514273317120339, + "2023-12-29": 0.989627893273622, + "2023-12-04": 0.807177359383024, + "2024-04-10": 0.8827699099777193, + "2024-05-08": 0.6831162142680657, + "2023-09-21": 0.5280958881322672, + "2023-06-02": 0.9008724574120323, + "2024-04-21": 0.7251736742828174, + "2023-07-22": 0.763772224891084, + "2023-10-11": 0.5144563975194946, + "2024-03-21": 0.9958744297750374, + "2023-07-19": 0.7450008557089328, + "2024-05-05": 0.7311974300105823, + "2024-05-23": 0.7337451725633439, + "2024-04-08": 0.9348517526319772, + "2024-05-18": 0.7143048189223562, + "2023-06-14": 0.6508262072101189, + "2023-10-05": 0.5594322867716742, + "2023-10-16": 0.5252264093448782, + "2024-05-22": 0.7232683407053762, + "2024-02-10": 0.8510887333609929, + "2024-04-07": 0.9070524576614114, + "2024-02-20": 0.9842696174924607, + "2023-11-17": 0.8324938102422794, + "2023-12-11": 0.8531326385765959, + "2023-11-26": 0.7711495392519144, + "2023-11-16": 0.9070636512553888, + "2023-06-29": 0.6244014607185103, + "2023-10-27": 0.6219343589161225, + "2023-06-11": 0.6230860436873735, + "2024-02-02": 0.8077605119978774, + "2023-09-14": 0.5212000210171506, + "2024-01-27": 0.7694805353810404, + "2024-03-30": 0.9924011981009302, + "2023-11-22": 0.7588581406414112, + "2023-09-28": 0.5114447295261745, + "2023-06-03": 0.8998356996475164, + "2024-01-18": 0.8048967629943671, + "2023-08-26": 0.5466033961973549, + "2024-02-15": 0.8918202433517206, + "2023-10-28": 0.6216963174655957, + "2024-03-24": 0.9970595295851106, + "2024-04-27": 0.6994708797654869, + "2023-12-06": 0.8236803814483481, + "2024-01-30": 0.8099721146510556, + "2023-11-14": 0.9152451681239022, + "2023-08-09": 0.6896274421178821, + "2024-05-15": 0.6708993270526145, + "2023-11-10": 0.8366211047341205, + "2024-01-23": 0.7139850337010352, + "2024-01-31": 0.8038570587322929, + "2024-05-11": 0.681980923090446, + "2024-01-11": 0.9194750150187372, + "2024-02-18": 0.9469597681409084, + "2023-06-16": 0.5872487969939723, + "2023-10-30": 0.6430153842618599, + "2023-12-17": 0.8336868494862143, + "2024-02-26": 1.0180240352160388, + "2023-07-16": 0.7883730915194144, + "2024-01-05": 0.8495101742597823, + "2023-08-23": 0.5528414729669531, + "2024-03-11": 1.213760217252863, + "2023-08-01": 0.6812742211919104, + "2024-03-14": 1.2260874475686578, + "2024-02-21": 0.9500623163619735, + "2023-08-28": 0.5573888512752962, + "2023-07-04": 0.7030257198729942, + "2023-12-13": 0.8560665362798704, + "2024-02-27": 1.0449114819646954, + "2023-08-13": 0.6796210203229139, + "2024-03-31": 0.9972077213182177, + "2023-12-09": 0.9145479343374097, + "2024-04-02": 0.9054038558122667, + "2024-02-06": 0.7928771561587366, + "2024-04-09": 0.931206587129754, + "2023-11-04": 0.6691378914559706, + "2024-04-20": 0.6878157440824822, + "2024-01-15": 0.8521507996734463, + "2023-07-03": 0.6925355123745801, + "2023-12-28": 1.0238587789845746, + "2023-05-30": 0.9062284125884985, + "2024-05-25": 0.7273972705522764, + "2024-02-07": 0.8040850668939854, + "2023-09-25": 0.5147372172080549, + "2024-03-19": 0.9539711149947208, + "2024-03-10": 1.215026394929447, + "2024-05-02": 0.7108302245440062, + "2023-09-02": 0.5416950084539042, + "2024-01-12": 0.9116581264425146, + "2024-04-19": 0.6741177970646461, + "2023-11-29": 0.7551476141428614, + "2023-10-15": 0.5165092103572497, + "2024-05-28": 0.7435233186651398, + "2023-11-30": 0.7647116568817817, + "2024-01-24": 0.7284924810971635, + "2023-08-11": 0.6831604975667439, + "2024-02-11": 0.8500795307899986, + "2023-06-08": 0.7744871724924065, + "2023-11-15": 0.9275609283880615, + "2023-12-16": 0.8516667484813062, + "2024-03-29": 0.9922258865777573, + "2024-04-04": 0.8992767234892162, + "2023-06-10": 0.5895888703945719, + "2023-07-28": 0.7113883609284845, + "2024-01-20": 0.7710009186158956, + "2023-10-21": 0.5603814492955801, + "2023-08-16": 0.6240670551655875, + "2024-05-24": 0.724080860754708, + "2023-11-03": 0.6586056709046878, + "2023-08-31": 0.573942963434922, + "2024-05-27": 0.730364887200882, + "2024-01-04": 0.8661143119532179, + "2023-07-26": 0.707425157485468, + "2023-11-13": 0.8905799839389035, + "2023-10-24": 0.6402432081058754, + "2024-03-25": 1.028554792599374, + "2023-08-07": 0.6683055175908824, + "2023-10-29": 0.6298708757419729, + "2024-01-29": 0.7931600643368737, + "2024-05-04": 0.7317128989097659, + "2023-06-05": 0.8797179301048318, + "2023-11-02": 0.6663725516105807, + "2023-12-18": 0.7827145231874741, + "2023-11-24": 0.7770413890122487, + "2023-08-21": 0.5649963243989331, + "2023-07-25": 0.7201014528562458, + "2024-05-16": 0.6857428269187893, + "2023-08-14": 0.6794689122098299, + "2024-05-01": 0.6680629751834145, + "2024-03-05": 1.1190093797366727, + "2024-04-06": 0.8947604797478792, + "2023-12-23": 0.8483097603552316, + "2024-02-03": 0.7895883000203532, + "2024-02-16": 0.9278833279502068, + "2023-05-28": 0.9271584176115425, + "2023-12-14": 0.8807017496125593, + "2023-06-24": 0.6743214032218313, + "2023-12-26": 0.9125471118540751, + "2023-11-09": 0.8132678627555852, + "2023-08-19": 0.5785134670747333, + "2024-05-09": 0.6855952241758533, + "2024-01-17": 0.8351776390030832, + "2023-06-23": 0.6694303477140148, + "2023-06-18": 0.6097467821859777, + "2024-04-23": 0.7334951292436853, + "2023-08-08": 0.6762467036359563, + "2023-08-17": 0.6061628194027873, + "2024-04-14": 0.6823472232728536, + "2023-07-24": 0.7263272314370455, + "2023-10-14": 0.5178357510675863, + "2024-05-22T20": 0.720513528, + "2024-05-25T08": 0.727616119, + "2024-05-22T05": 0.723240852, + "2024-05-28T03": 0.7319213250000001, + "2024-05-22T16": 0.723226384, + "2024-05-25T05": 0.7312074000000001, + "2024-05-24T22": 0.7236986679999999, + "2024-05-27T14": 0.7318726720000001, + "2024-05-22T03": 0.727647162, + "2024-05-23T17": 0.7319652750000001, + "2024-05-24T23": 0.721970022, + "2024-05-26T19": 0.7191114700000001, + "2024-05-26T18": 0.71762664, + "2024-05-26T10": 0.7217115477916993, + "2024-05-27T16": 0.746959777, + "2024-05-24T12": 0.725522532, + "2024-05-26T01": 0.7319268, + "2024-05-21T17": 0.7379717279999999, + "2024-05-23T07": 0.737649759, + "2024-05-22T08": 0.72905416, + "2024-05-23T09": 0.741255305, + "2024-05-24T18": 0.72633665, + "2024-05-23T01": 0.724330403, + "2024-05-25T15": 0.72422757, + "2024-05-23T16": 0.7328939540000001, + "2024-05-25T03": 0.727401643, + "2024-05-28T06": 0.728558304, + "2024-05-25T23": 0.7293762539871221, + "2024-05-24T13": 0.7270635, + "2024-05-26T03": 0.7252690931577542, + "2024-05-26T00": 0.731004957, + "2024-05-25T06": 0.729415417, + "2024-05-27T04": 0.721917181, + "2024-05-22T10": 0.724640544, + "2024-05-27T09": 0.72355112, + "2024-05-24T17": 0.7193977260000001, + "2024-05-26T16": 0.719897516, + "2024-05-22T09": 0.72465504, + "2024-05-24T21": 0.723234903, + "2024-05-25T04": 0.7307076, + "2024-05-27T22": 0.7452390799999999, + "2024-05-27T11": 0.726749136, + "2024-05-23T21": 0.726954375, + "2024-05-23T10": 0.7352425750000001, + "2024-05-23T14": 0.7357394401128832, + "2024-05-27T02": 0.724472309, + "2024-05-25T18": 0.7280226640158283, + "2024-05-27T05": 0.717355504, + "2024-05-22T23": 0.72247474, + "2024-05-28T01": 0.739408, + "2024-05-22T04": 0.7199399971890511, + "2024-05-22T15": 0.723290185, + "2024-05-24T03": 0.742495452, + "2024-05-24T08": 0.7098940709999999, + "2024-05-21T22": 0.7276889089999999, + "2024-05-21T16": 0.74068137, + "2024-05-21T23": 0.729446784, + "2024-05-24T02": 0.743617318, + "2024-05-26T07": 0.725531454, + "2024-05-27T07": 0.716377088, + "2024-05-25T22": 0.727469032, + "2024-05-24T16": 0.717798398, + "2024-05-27T20": 0.747436836, + "2024-05-22T02": 0.728068924, + "2024-05-24T06": 0.720882672, + "2024-05-24T11": 0.7235655999999999, + "2024-05-25T21": 0.7273545, + "2024-05-27T15": 0.74036274, + "2024-05-21T19": 0.723561146, + "2024-05-22T19": 0.720648632, + "2024-05-21T12": 0.7478279600000001, + "2024-05-23T20": 0.70407155, + "2024-05-23T08": 0.735473178, + "2024-05-22T22": 0.72181116, + "2024-05-26T11": 0.7234742900000001, + "2024-05-24T01": 0.74690112, + "2024-05-23T05": 0.7315461600000001, + "2024-05-28T04": 0.725569947, + "2024-05-25T09": 0.7276379559999999, + "2024-05-27T18": 0.748543207, + "2024-05-24T10": 0.724330403, + "2024-05-25T19": 0.729517575, + "2024-05-24T07": 0.714000024, + "2024-05-26T04": 0.725011448, + "2024-05-26T09": 0.7201118400000001, + "2024-05-23T02": 0.728221128, + "2024-05-27T06": 0.716455936, + "2024-05-28T08": 0.7266629025946192, + "2024-05-24T15": 0.7244376, + "2024-05-25T20": 0.727518075, + "2024-05-27T08": 0.72196656, + "2024-05-23T22": 0.741739836, + "2024-05-26T15": 0.72286602, + "2024-05-24T20": 0.7234276500000001, + "2024-05-21T20": 0.7263602219999999, + "2024-05-25T13": 0.7229987659999999, + "2024-05-22T01": 0.7292124839999999, + "2024-05-25T17": 0.7253403900000001, + "2024-05-27T10": 0.723158604, + "2024-05-21T21": 0.723540786, + "2024-05-24T19": 0.7229758079999999, + "2024-05-26T02": 0.726320096, + "2024-05-27T19": 0.74125058, + "2024-05-25T11": 0.73129029, + "2024-05-27T17": 0.7485282209999999, + "2024-05-21T18": 0.731848544, + "2024-05-26T06": 0.72625299, + "2024-05-23T00": 0.725415326, + "2024-05-22T00": 0.7302685280000001, + "2024-05-24T05": 0.7307978399999999, + "2024-05-23T15": 0.73397116, + "2024-05-22T13": 0.711221757, + "2024-05-21T10": 0.7450934578902858, + "2024-05-22T12": 0.7104857451269301, + "2024-05-23T04": 0.734344424, + "2024-05-26T08": 0.7240957520000001, + "2024-05-26T13": 0.7172704000000001, + "2024-05-28T05": 0.7264402099999999, + "2024-05-22T18": 0.7180138279999999, + "2024-05-22T06": 0.728439708, + "2024-05-21T08": 0.7445984851862832, + "2024-05-22T17": 0.7267836959999999, + "2024-05-23T19": 0.7195374159999999, + "2024-05-25T07": 0.728815651, + "2024-05-26T22": 0.718598062, + "2024-05-25T16": 0.7249984859999999, + "2024-05-26T05": 0.72358286, + "2024-05-24T04": 0.743883192, + "2024-05-21T14": 0.749512575, + "2024-05-25T12": 0.7260491729999999, + "2024-05-28T07": 0.727802712, + "2024-05-23T18": 0.7181897230000001, + "2024-05-26T23": 0.716455936, + "2024-05-24T09": 0.71687726, + "2024-05-23T03": 0.730310364, + "2024-05-26T14": 0.7207188099999999, + "2024-05-21T13": 0.7472505199999999, + "2024-05-22T14": 0.721605114, + "2024-05-25T14": 0.723049383, + "2024-05-25T00": 0.722733733, + "2024-05-23T23": 0.7421733, + "2024-05-21T11": 0.750697257, + "2024-05-23T13": 0.73274345, + "2024-05-22T11": 0.720470292, + "2024-05-21T15": 0.7473206, + "2024-05-28T00": 0.7459028000000001, + "2024-05-27T23": 0.741676468, + "2024-05-28T02": 0.732257728, + "2024-05-26T21": 0.71454255, + "2024-05-26T12": 0.7199695359999999, + "2024-05-23T06": 0.732738084, + "2024-05-22T07": 0.7292687080000001, + "2024-05-27T12": 0.72699075, + "2024-05-22T21": 0.7197336, + "2024-05-24T00": 0.7496625, + "2024-05-25T02": 0.7248405, + "2024-05-27T00": 0.7170413000000001, + "2024-05-26T20": 0.71756202, + "2024-05-26T17": 0.718911578, + "2024-05-27T13": 0.730139722, + "2024-05-23T12": 0.749032794, + "2024-05-25T10": 0.729403008, + "2024-05-21T09": 0.7430513599999999, + "2024-05-23T11": 0.7414291000000001, + "2024-05-24T14": 0.724685108, + "2024-05-25T01": 0.72365524, + "2024-05-27T21": 0.74824351, + "2024-05-27T03": 0.7257715419999999, + "2024-05-27T01": 0.722245926, + "latest": 0.707526, + "2024-05-28T09": 0.7337434650000001, + "2024-05-28T10": 0.742379193, + "2024-05-28T11": 0.740651186, + "2024-05-28T12": 0.7409063779116867, + "2024-05-28T13": 0.7373334393427682, + "2024-05-28T14": 0.7344721519999999, + "2024-05-28T15": 0.73081239, + "2024-05-29": 0.7268017142178977, + "2024-05-28T20": 0.737976074, + "2024-05-28T22": 0.7335245359999999, + "2024-05-28T21": 0.7340371499999999, + "2024-05-28T19": 0.732298164, + "2024-05-29T02": 0.7235612140000001, + "2024-05-28T17": 0.7317675, + "2024-05-28T18": 0.72529225, + "2024-05-28T23": 0.7311709133901916, + "2024-05-29T00": 0.7305369480000001, + "2024-05-29T01": 0.723523476, + "2024-05-28T16": 0.72823455, + "2024-05-29T06": 0.7350095609999999, + "2024-05-29T05": 0.732734352, + "2024-05-29T03": 0.728127366, + "2024-05-29T07": 0.730410304, + "2024-05-29T04": 0.732027849, + "2024-05-29T08": 0.7261246120191078, + "2024-05-29T09": 0.734123984, + "2024-05-29T10": 0.740381133, + "2024-05-29T11": 0.742164529, + "2024-05-29T12": 0.738582879, + "2024-05-29T13": 0.73142904, + "2024-05-29T14": 0.7296478527827123, + "2024-05-29T15": 0.723336768, + "2024-05-29T18": 0.720207936, + "2024-05-29T17": 0.72085065, + "2024-05-29T23": 0.71583996, + "2024-05-29T19": 0.7185950860000001, + "2024-05-29T22": 0.718002132, + "2024-05-29T20": 0.716147712, + "2024-05-29T16": 0.7199029240000001, + "2024-05-29T21": 0.7156783207420482, + "2024-05-30": 0.7035949566618271, + "2024-05-30T00": 0.7143131519999999, + "2024-05-30T05": 0.715890566, + "2024-05-30T02": 0.7199339631473761, + "2024-05-30T08": 0.6948367515813284, + "2024-05-30T01": 0.7158207473282568, + "2024-05-30T06": 0.706934, + "2024-05-30T07": 0.6990663100000001, + "2024-05-30T03": 0.72003492, + "2024-05-30T04": 0.719642605, + "2024-05-30T09": 0.6982807799999999, + "2024-05-30T10": 0.6996429999999999, + "2024-05-30T11": 0.702830246, + "2024-05-30T12": 0.7025375199999999, + "2024-05-30T13": 0.7052765799999999, + "2024-05-30T14": 0.704575746, + "2024-05-30T15": 0.70201908, + "2024-05-30T21": 0.69826032, + "2024-05-30T20": 0.7000669620000001, + "2024-05-30T18": 0.710215296, + "2024-05-30T22": 0.697055945, + "2024-05-30T16": 0.704446308, + "2024-05-30T17": 0.7103299719999999, + "2024-05-30T19": 0.705772938, + "2024-05-31": 0.6958631069847584, + "2024-05-30T23": 0.696656085, + "2024-05-31T03": 0.696565488, + "2024-05-31T07": 0.6948914700000001, + "2024-05-31T06": 0.6939917400000001, + "2024-05-31T04": 0.698078736, + "2024-05-31T02": 0.6968072180000001, + "2024-05-31T05": 0.691416403, + "2024-05-31T00": 0.6928059599999999, + "2024-05-31T01": 0.694933176, + "2024-05-31T08": 0.695477376, + "2024-05-31T09": 0.694163904, + "2024-05-31T10": 0.69688162, + "2024-05-31T11": 0.699872817, + "2024-05-31T12": 0.7055693399999999, + "2024-05-31T13": 0.699566, + "2024-05-31T14": 0.696003052, + "2024-06-01": 0.694666142180551, + "2024-06-01T08": 0.6950512597975094, + "2024-06-01T02": 0.692999363, + "2024-06-01T05": 0.6954571199999999, + "2024-05-31T21": 0.6961845099999999, + "2024-06-01T00": 0.693891508, + "2024-05-31T18": 0.6983449720000001, + "2024-05-31T15": 0.692724561, + "2024-05-31T23": 0.695197141, + "2024-05-31T22": 0.696897645, + "2024-06-01T01": 0.6923999690000001, + "2024-06-01T07": 0.6955442166531751, + "2024-06-01T04": 0.694664696, + "2024-05-31T19": 0.695980092, + "2024-06-01T06": 0.695550081, + "2024-05-31T20": 0.695485329, + "2024-05-31T17": 0.693737617, + "2024-05-31T16": 0.686645465008388, + "2024-06-01T03": 0.6939444, + "2024-06-01T09": 0.697172478654535, + "2024-06-01T10": 0.6968862, + "2024-06-02": 0.6986011517124475, + "2024-06-01T13": 0.70096856, + "2024-06-01T15": 0.7015906770000001, + "2024-06-01T18": 0.6996767330000001, + "2024-06-01T12": 0.699890565, + "2024-06-01T21": 0.7008756650000001, + "2024-06-01T20": 0.700076377, + "2024-06-02T01": 0.7014383999999999, + "2024-06-01T17": 0.70083888, + "2024-06-01T11": 0.698185056, + "2024-06-02T00": 0.6987405600000001, + "2024-06-01T23": 0.699419, + "2024-06-01T14": 0.7013347109999999, + "2024-06-01T22": 0.701089521, + "2024-06-01T19": 0.694681183, + "2024-06-01T16": 0.7007617260000001, + "2024-06-02T13": 0.6973975119999999, + "2024-06-02T11": 0.695006195, + "2024-06-02T07": 0.700232352, + "2024-06-02T05": 0.7019099000000001, + "2024-06-02T08": 0.6996958560000001, + "2024-06-02T04": 0.7018310560000001, + "2024-06-02T10": 0.693386514, + "2024-06-02T12": 0.696605059, + "2024-06-02T02": 0.700211328, + "2024-06-02T16": 0.699732757, + "2024-06-02T17": 0.694327536, + "2024-06-02T03": 0.701703045, + "2024-06-02T09": 0.6948854040000001, + "2024-06-02T15": 0.701817008, + "2024-06-02T06": 0.7034016, + "2024-06-02T18": 0.689279283, + "2024-06-02T14": 0.7007880510000001, + "2024-06-03": 0.6895389204004067, + "2024-06-03T01": 0.693727944, + "2024-06-02T20": 0.688400496, + "2024-06-03T00": 0.685922535, + "2024-06-02T21": 0.6909405240000001, + "2024-06-02T23": 0.689827292, + "2024-06-02T19": 0.6885934899999999, + "2024-06-02T22": 0.6896274, + "2024-06-03T02": 0.698747553, + "2024-06-03T05": 0.7014788599999999, + "2024-06-03T06": 0.705954968, + "2024-06-03T04": 0.697195392, + "2024-06-03T03": 0.698287767, + "2024-06-03T07": 0.70654752 + }, + "USD qtum": { + "2023-07-30": 2.6146331766608455, + "2023-10-23": 2.3822712336520246, + "2023-07-27": 2.553832353386059, + "2023-07-10": 2.7587476767014785, + "2023-08-20": 2.2487751000000005, + "2024-02-23": 3.221298454287925, + "2024-04-05": 4.210261058079039, + "2023-12-19": 3.0856494589687546, + "2024-05-17": 3.6957757855852083, + "2023-08-06": 2.5746939359199486, + "2023-12-02": 3.080315454782979, + "2023-10-31": 3.000048096987301, + "2023-08-29": 2.1936192577874207, + "2023-06-20": 2.0566916611853236, + "2023-09-09": 2.156566215409491, + "2023-06-26": 2.3968803401808727, + "2023-10-01": 2.322185942837679, + "2024-03-07": 4.884202295536984, + "2023-10-12": 2.092519137022543, + "2024-04-22": 4.322727913156193, + "2023-07-05": 2.7023416179060957, + "2023-07-29": 2.570615977323301, + "2024-04-26": 3.981451683450591, + "2024-01-08": 2.927752143371555, + "2023-05-29": 2.7687321463857724, + "2023-10-07": 2.267770740054491, + "2023-09-26": 2.1420218320827225, + "2023-08-24": 2.236725374424665, + "2023-12-05": 3.142577485054578, + "2024-02-19": 3.344381530061407, + "2024-01-07": 3.0906029684344194, + "2024-04-28": 4.033148371361343, + "2023-07-31": 2.588435468194332, + "2023-10-18": 2.180003410531349, + "2024-05-19": 3.6563486614995906, + "2024-05-12": 3.4996829388376596, + "2024-04-29": 4.015509150093308, + "2023-08-25": 2.1862280039421, + "2024-03-09": 5.158097600335705, + "2023-07-12": 2.7819881689311035, + "2023-09-05": 2.127743871918307, + "2023-06-07": 2.4391351810850006, + "2023-09-16": 2.215228269021377, + "2024-04-25": 3.964927078002987, + "2023-08-12": 2.6119287019627326, + "2023-06-06": 2.4499658145715073, + "2023-09-01": 2.1240492037960346, + "2023-09-08": 2.1482406170935957, + "2024-03-22": 4.162013278653385, + "2023-08-10": 2.596263806004519, + "2023-12-07": 3.234451523405837, + "2023-11-18": 3.0514567409691282, + "2023-07-13": 2.853334052861743, + "2023-09-13": 2.0826062214063974, + "2023-06-17": 2.096677847797556, + "2023-07-17": 2.73043897058467, + "2023-07-07": 2.792575267482742, + "2023-09-07": 2.1524282221037465, + "2024-03-26": 4.740792382652643, + "2024-05-14": 3.5361947066624726, + "2024-02-22": 3.291007737639746, + "2024-04-15": 4.253434318688817, + "2023-12-30": 3.457569363027489, + "2023-09-17": 2.1524742025970203, + "2024-04-17": 3.8427018603309238, + "2024-02-12": 3.0147535, + "2023-10-26": 2.4699585276952396, + "2024-01-03": 3.2636796830918047, + "2024-05-07": 3.691999617868285, + "2023-06-01": 2.579335396343187, + "2024-01-22": 2.909357167564657, + "2023-06-12": 2.0955360570953903, + "2023-10-03": 2.3082923032536207, + "2024-05-26": 3.71966044, + "2024-04-30": 3.785687655211152, + "2023-06-19": 2.05046892705719, + "2023-07-09": 2.773495783427497, + "2023-12-24": 3.2516410818577643, + "2023-09-24": 2.1951316999999997, + "2024-01-16": 3.1268713015552305, + "2023-10-17": 2.2020994779836975, + "2024-04-24": 4.166671989407029, + "2024-03-18": 4.479100366098595, + "2024-02-17": 3.2631328404423066, + "2023-12-27": 3.583840533033785, + "2023-07-23": 2.752182446652634, + "2023-09-03": 2.0991171643038884, + "2024-02-24": 3.2765313022067915, + "2024-01-06": 3.0881190073786975, + "2024-03-20": 3.9735622620418196, + "2023-11-21": 3.116560562397611, + "2023-12-25": 3.3706189275753196, + "2023-09-22": 2.1932297809803067, + "2023-10-02": 2.356591585905447, + "2024-03-27": 4.617166678356117, + "2024-05-06": 3.7681884, + "2023-08-30": 2.2367306422975206, + "2023-10-06": 2.233467152392749, + "2023-10-13": 2.128253638403349, + "2023-06-28": 2.341995543451733, + "2024-02-05": 2.8321354124119047, + "2024-03-01": 3.789569103240402, + "2023-07-15": 2.7895076564536656, + "2023-06-25": 2.4250707875515722, + "2023-12-10": 3.4302718205230325, + "2023-11-23": 3.053828914186972, + "2023-08-04": 2.5726051659915727, + "2024-05-13": 3.5120271513397183, + "2024-01-13": 3.1192287653377178, + "2024-03-28": 4.682085374963418, + "2023-08-05": 2.5165277606760266, + "2024-02-09": 2.9850590423184165, + "2023-10-09": 2.1369233972201163, + "2024-01-09": 2.9734829584858793, + "2024-05-10": 3.7865128072558205, + "2023-05-27": 2.6197280549406163, + "2023-08-18": 2.14256088612188, + "2023-11-05": 3.0790545603685224, + "2024-04-18": 3.8000577741632595, + "2023-10-22": 2.279853513784603, + "2023-11-01": 3.1346610461642643, + "2024-05-20": 3.6841842000000007, + "2023-12-08": 3.321437009837575, + "2024-04-12": 5.163334461546689, + "2023-07-06": 2.796556505095302, + "2024-03-12": 5.205983257399202, + "2023-09-11": 2.041796135594763, + "2024-03-03": 4.15749893489867, + "2024-02-04": 2.865947490868481, + "2024-01-28": 2.9177082000000003, + "2023-07-01": 3.168155370194918, + "2023-11-07": 3.0927079084525944, + "2023-11-25": 3.2969635428073762, + "2023-06-04": 2.683495051502471, + "2024-02-25": 3.4108617929231055, + "2023-12-01": 3.034644094569101, + "2023-07-14": 2.877028595535356, + "2024-01-26": 2.8776633860764407, + "2023-08-03": 2.6318021511607688, + "2024-02-28": 3.530657358472619, + "2023-09-15": 2.163939923069217, + "2023-07-18": 2.714109480890915, + "2023-12-21": 3.2800864065703292, + "2023-07-20": 2.713905679394376, + "2024-03-06": 4.855836616015343, + "2023-09-30": 2.2257513531187447, + "2023-12-12": 3.116006918108215, + "2024-02-13": 3.031083154682131, + "2023-09-20": 2.209554712653599, + "2023-09-19": 2.224301749953459, + "2023-09-29": 2.227154997969613, + "2023-09-12": 2.059704674004471, + "2023-06-13": 2.1414269661657253, + "2023-10-04": 2.1958488764582413, + "2023-07-08": 2.785986938741859, + "2024-04-16": 3.9567602415821175, + "2024-03-02": 4.133286274968738, + "2023-06-27": 2.464355548730289, + "2023-10-08": 2.2605249067549833, + "2023-11-20": 3.1799576283613837, + "2023-12-20": 3.1388017765876324, + "2023-12-31": 3.6573689934016906, + "2023-11-06": 3.1715337310337213, + "2023-08-22": 2.1953923994774525, + "2023-06-09": 2.347729867779959, + "2024-03-17": 4.435884566197346, + "2023-09-18": 2.195674377421463, + "2024-04-01": 4.590407540369064, + "2024-05-21": 3.8833558648332103, + "2024-01-19": 2.9748138413696728, + "2023-11-11": 3.1878582367861505, + "2023-09-23": 2.204910814725129, + "2023-11-19": 3.018514288006357, + "2023-07-02": 2.8552239537901007, + "2023-08-15": 2.500695008, + "2024-01-25": 2.8156650450478264, + "2024-03-13": 5.419235194733302, + "2024-01-21": 3.0621568783068027, + "2024-02-01": 2.8273274122792618, + "2023-06-15": 2.0398582449600986, + "2024-03-16": 4.704048520509523, + "2023-11-27": 3.0465135254743765, + "2024-01-10": 2.99103289120269, + "2024-03-15": 4.828724112950926, + "2023-06-21": 2.2019194333776224, + "2024-01-02": 3.6755201833221784, + "2023-07-11": 2.7745855906977486, + "2023-10-25": 2.445897587601636, + "2024-01-01": 3.613680821982751, + "2024-02-14": 3.0864581161022735, + "2023-09-04": 2.1152265277014157, + "2023-09-06": 2.159742730901009, + "2024-04-03": 4.181663390150175, + "2023-11-28": 3.0295636236466894, + "2023-12-03": 3.127145347164446, + "2023-08-02": 2.844447984954848, + "2023-08-27": 2.160668794751522, + "2023-10-20": 2.2325898106113793, + "2023-10-10": 2.140675083433844, + "2024-05-03": 3.6627601383144777, + "2024-03-08": 5.033653668878613, + "2024-04-11": 5.2943855802680755, + "2023-06-22": 2.274215070757487, + "2024-01-14": 3.099178197068658, + "2023-12-15": 3.1881261109137493, + "2023-10-19": 2.132476572709913, + "2024-02-08": 2.928323749435738, + "2023-11-08": 3.1010886298646065, + "2023-11-12": 3.1898694847692353, + "2023-12-22": 3.2849137149133254, + "2023-05-31": 2.6114652819239663, + "2024-03-23": 4.280765927051667, + "2023-09-27": 2.15219304489699, + "2024-03-04": 5.527774457175964, + "2023-09-10": 2.0804092966916827, + "2024-04-13": 4.377499202557205, + "2024-02-29": 3.7072263938214123, + "2023-07-21": 2.730654475939148, + "2023-06-30": 2.6108055420764327, + "2023-12-29": 3.415418006507064, + "2023-12-04": 3.1257643916011464, + "2024-04-10": 4.939649326948582, + "2024-05-08": 3.5895176019920325, + "2023-09-21": 2.1790931161865976, + "2023-06-02": 2.6238777404355447, + "2024-04-21": 4.184676895850181, + "2023-07-22": 2.757262401694556, + "2023-10-11": 2.097522743115887, + "2024-03-21": 4.25083308780792, + "2023-07-19": 2.7206521955542526, + "2024-05-05": 3.7415379952702317, + "2024-05-23": 3.6880074029816554, + "2024-04-08": 4.9819501836651785, + "2024-05-18": 3.7108036093610846, + "2023-06-14": 2.104578953367121, + "2023-10-05": 2.237278146551797, + "2023-10-16": 2.203438579082421, + "2024-05-22": 3.8442812629275727, + "2024-02-10": 2.9916068224770735, + "2024-04-07": 4.357960661941315, + "2024-02-20": 3.315015796281287, + "2023-11-17": 3.1153606891919035, + "2023-12-11": 3.129471449585454, + "2023-11-26": 3.236430622116313, + "2023-11-16": 3.1806610186512003, + "2023-06-29": 2.310541390078263, + "2023-10-27": 2.597975501316305, + "2023-06-11": 2.0899015339264118, + "2024-02-02": 2.8645366342945797, + "2023-09-14": 2.171783756218192, + "2024-01-27": 2.931655592720673, + "2024-03-30": 4.773765704847732, + "2023-11-22": 3.0118566170873207, + "2023-09-28": 2.206082237547673, + "2023-06-03": 2.6698642836756243, + "2024-01-18": 3.083678573253148, + "2023-08-26": 2.1928208035193193, + "2024-02-15": 3.332559438858122, + "2023-10-28": 3.091894405145025, + "2024-03-24": 4.360462791052094, + "2024-04-27": 3.92168582796846, + "2023-12-06": 3.198469102471709, + "2024-01-30": 2.9418071401065076, + "2023-11-14": 3.1259184723518643, + "2023-08-09": 2.594011878620345, + "2024-05-15": 3.553093194725552, + "2023-11-10": 3.1890594692465215, + "2024-01-23": 2.7382605073043518, + "2024-01-31": 2.8678524, + "2024-05-11": 3.5470086055720715, + "2024-01-11": 3.271682014058147, + "2024-02-18": 3.305987423424296, + "2023-06-16": 2.0479442485228425, + "2023-10-30": 3.0303244524841912, + "2023-12-17": 3.167911445568549, + "2024-02-26": 3.3742689037858558, + "2023-07-16": 2.7558804708901583, + "2024-01-05": 3.115360758924952, + "2023-08-23": 2.2293398656236683, + "2024-03-11": 5.1521388130318195, + "2023-08-01": 2.703979072217677, + "2024-03-14": 5.274363111368768, + "2024-02-21": 3.255040820141402, + "2023-08-28": 2.1414980440361466, + "2023-07-04": 2.9236696595182545, + "2023-12-13": 3.082871801505848, + "2024-02-27": 3.458620297374505, + "2023-08-13": 2.5819399329046027, + "2024-03-31": 4.785615773861293, + "2023-12-09": 3.4975418384450356, + "2024-04-02": 4.203216218042724, + "2024-02-06": 2.8393152605582777, + "2024-04-09": 4.889100763882879, + "2023-11-04": 3.2085746372874255, + "2024-04-20": 4.052178493864598, + "2024-01-15": 3.1034316058428884, + "2023-07-03": 2.7874752157829983, + "2023-12-28": 3.607533768792022, + "2023-05-30": 2.7202355124816977, + "2024-05-25": 3.7732376155400917, + "2024-02-07": 2.8504145868016177, + "2023-09-25": 2.1625903515892486, + "2024-03-19": 4.010847801484449, + "2024-03-10": 5.12297750246572, + "2024-05-02": 3.4859128464554345, + "2023-09-02": 2.070579748851879, + "2024-01-12": 3.35084421174097, + "2024-04-19": 4.0696646149330915, + "2023-11-29": 3.0417417675830123, + "2023-10-15": 2.1646068388377886, + "2024-05-28": 3.8077187213312302, + "2023-11-30": 3.0104978435334457, + "2024-01-24": 2.8422888485823656, + "2023-08-11": 2.6199565278960977, + "2024-02-11": 3.0087429314299396, + "2023-06-08": 2.3645364300000002, + "2023-11-15": 3.182937106922898, + "2023-12-16": 3.1780991328232155, + "2024-03-29": 4.8227301812307255, + "2024-04-04": 4.2420165629448405, + "2023-06-10": 2.02788628645831, + "2023-07-28": 2.565305523028991, + "2024-01-20": 3.03390516, + "2023-10-21": 2.304192633175445, + "2023-08-16": 2.3657056510298213, + "2024-05-24": 3.723451366335831, + "2023-11-03": 3.05802818698273, + "2023-08-31": 2.216179763340002, + "2024-05-27": 3.7886509924093543, + "2024-01-04": 3.2258616513783798, + "2023-07-26": 2.539340442060324, + "2023-11-13": 3.167971864296933, + "2023-10-24": 2.4532261344369255, + "2024-03-25": 4.4504169771555, + "2023-08-07": 2.553718728709257, + "2023-10-29": 3.0015665341611415, + "2024-01-29": 2.9026535470807175, + "2024-05-04": 3.7547138482284828, + "2023-06-05": 2.4694619670217537, + "2023-11-02": 3.32416841169724, + "2023-12-18": 3.0035934843307968, + "2023-11-24": 3.11744680622387, + "2023-08-21": 2.211460394521275, + "2023-07-25": 2.5865263939240832, + "2024-05-16": 3.610505475269952, + "2023-08-14": 2.576904001412196, + "2024-05-01": 3.489036828217492, + "2024-03-05": 5.455311485641818, + "2024-04-06": 4.29028397644303, + "2023-12-23": 3.264839280186318, + "2024-02-03": 2.904313225601454, + "2024-02-16": 3.357640980513385, + "2023-05-28": 2.730761086566212, + "2023-12-14": 3.1835005528391043, + "2023-06-24": 2.398930637047877, + "2023-12-26": 3.345683916379881, + "2023-11-09": 3.1586304208255673, + "2023-08-19": 2.2073891289195404, + "2024-05-09": 3.54361819005747, + "2024-01-17": 3.117112512986966, + "2023-06-23": 2.360533516135746, + "2023-06-18": 2.0824617572320085, + "2024-04-23": 4.290671145608743, + "2023-08-08": 2.5678226490147082, + "2023-08-17": 2.2985641385996987, + "2024-04-14": 3.7950684448916343, + "2023-07-24": 2.6206587232376766, + "2023-10-14": 2.1506378022526182, + "2024-05-22T20": 3.824541, + "2024-05-25T08": 3.7685297, + "2024-05-22T05": 3.8491530000000003, + "2024-05-28T03": 3.73904382, + "2024-05-22T16": 3.85807384, + "2024-05-25T05": 3.768492, + "2024-05-24T22": 3.7594735999999997, + "2024-05-27T14": 3.7602906399999996, + "2024-05-22T03": 3.87318646, + "2024-05-23T17": 3.68330922, + "2024-05-24T23": 3.76132284, + "2024-05-26T19": 3.6980020000000002, + "2024-05-26T18": 3.69507756, + "2024-05-26T10": 3.7146250800000002, + "2024-05-27T16": 3.83120335, + "2024-05-24T12": 3.6990754800000003, + "2024-05-26T01": 3.7686231, + "2024-05-21T17": 3.9407130599999998, + "2024-05-23T07": 3.83066187, + "2024-05-22T08": 3.8712256, + "2024-05-23T09": 3.8086752327716713, + "2024-05-24T18": 3.7571205, + "2024-05-23T01": 3.81505333, + "2024-05-25T15": 3.7966203000000003, + "2024-05-23T16": 3.68545528, + "2024-05-25T03": 3.77145307, + "2024-05-28T06": 3.7057360800000003, + "2024-05-25T23": 3.76535978, + "2024-05-24T13": 3.7117715999999996, + "2024-05-26T03": 3.739728341978884, + "2024-05-26T00": 3.7685100300000003, + "2024-05-25T06": 3.76353165, + "2024-05-27T04": 3.7200273399999997, + "2024-05-22T10": 3.85515168, + "2024-05-27T09": 3.68071654, + "2024-05-24T17": 3.7284334, + "2024-05-26T16": 3.7010193930567037, + "2024-05-22T09": 3.857384408765517, + "2024-05-24T21": 3.7630552184554724, + "2024-05-25T04": 3.7734900000000002, + "2024-05-27T22": 3.8250944199999997, + "2024-05-27T11": 3.6927091, + "2024-05-23T21": 3.67724, + "2024-05-23T10": 3.7906728, + "2024-05-23T14": 3.69903531946436, + "2024-05-27T02": 3.71980402, + "2024-05-25T18": 3.7710570000000003, + "2024-05-27T05": 3.6952254399999998, + "2024-05-22T23": 3.8152823500000004, + "2024-05-28T01": 3.7579912, + "2024-05-22T04": 3.83296482, + "2024-05-22T15": 3.84988321, + "2024-05-24T03": 3.72747111, + "2024-05-24T08": 3.6499412099999997, + "2024-05-21T22": 3.89786929, + "2024-05-21T16": 3.9183144, + "2024-05-21T23": 3.8981812099999997, + "2024-05-24T02": 3.7185863999999995, + "2024-05-26T07": 3.7466132400000003, + "2024-05-27T07": 3.66383706, + "2024-05-25T22": 3.7563237400000005, + "2024-05-24T16": 3.72143634, + "2024-05-27T20": 3.82009952, + "2024-05-22T02": 3.8853005200000004, + "2024-05-24T06": 3.6423966400000003, + "2024-05-24T11": 3.727762, + "2024-05-25T21": 3.7582482, + "2024-05-27T15": 3.79073716, + "2024-05-21T19": 3.88071894, + "2024-05-22T19": 3.83019549, + "2024-05-21T12": 3.8591122, + "2024-05-23T20": 3.565324, + "2024-05-23T08": 3.82078266, + "2024-05-22T22": 3.8215125124934786, + "2024-05-26T11": 3.7203251, + "2024-05-24T01": 3.708516, + "2024-05-23T05": 3.82962416, + "2024-05-28T04": 3.69530046, + "2024-05-25T09": 3.77464064, + "2024-05-27T18": 3.8221357400000002, + "2024-05-24T10": 3.74209056, + "2024-05-25T19": 3.7720567500000004, + "2024-05-24T07": 3.6379810800000003, + "2024-05-26T04": 3.7390276, + "2024-05-26T09": 3.7155132, + "2024-05-23T02": 3.823011, + "2024-05-27T06": 3.6732359999999997, + "2024-05-28T08": 3.723735237137558, + "2024-05-24T15": 3.7481250000000004, + "2024-05-25T20": 3.7632341475037303, + "2024-05-27T08": 3.672795, + "2024-05-23T22": 3.69670662, + "2024-05-26T15": 3.7257631999999994, + "2024-05-24T20": 3.7646235000000003, + "2024-05-21T20": 3.90071234, + "2024-05-25T13": 3.77347164, + "2024-05-22T01": 3.88753344, + "2024-05-25T17": 3.7751692799999996, + "2024-05-27T10": 3.68375154, + "2024-05-21T21": 3.8791463999999998, + "2024-05-24T19": 3.7488375, + "2024-05-26T02": 3.739628502481035, + "2024-05-27T19": 3.80115695, + "2024-05-25T11": 3.79043135, + "2024-05-27T17": 3.83005098, + "2024-05-21T18": 3.9501030399999997, + "2024-05-26T06": 3.73672908, + "2024-05-23T00": 3.81197858, + "2024-05-22T00": 3.899298, + "2024-05-24T05": 3.6839726999999995, + "2024-05-23T15": 3.6873432, + "2024-05-22T13": 3.78258387, + "2024-05-21T10": 3.867927798976943, + "2024-05-22T12": 3.78235689, + "2024-05-23T04": 3.8436154800000004, + "2024-05-26T08": 3.7284334, + "2024-05-26T13": 3.70581376, + "2024-05-28T05": 3.70014869, + "2024-05-22T18": 3.81854172, + "2024-05-22T06": 3.88114596, + "2024-05-21T08": 3.8574740913773073, + "2024-05-22T17": 3.8713804799999996, + "2024-05-23T19": 3.65263648, + "2024-05-25T07": 3.76553087, + "2024-05-26T22": 3.7054713963783112, + "2024-05-25T16": 3.78746968, + "2024-05-26T05": 3.7278813000000004, + "2024-05-24T04": 3.72091512, + "2024-05-21T14": 3.8810295000000004, + "2024-05-25T12": 3.78173526, + "2024-05-28T07": 3.7009627199999997, + "2024-05-23T18": 3.6354170199999998, + "2024-05-26T23": 3.6932264, + "2024-05-24T09": 3.6703476000000004, + "2024-05-23T03": 3.83442921, + "2024-05-26T14": 3.7185491999999996, + "2024-05-21T13": 3.8762246, + "2024-05-22T14": 3.82696644, + "2024-05-25T14": 3.7707360299999997, + "2024-05-25T00": 3.7691329000000002, + "2024-05-23T23": 3.70037112, + "2024-05-21T11": 3.87095456, + "2024-05-23T13": 3.6927071000000002, + "2024-05-22T11": 3.83730916, + "2024-05-21T15": 3.87407, + "2024-05-28T00": 3.7829712, + "2024-05-27T23": 3.80280296, + "2024-05-28T02": 3.71924572, + "2024-05-26T21": 3.6791595000000004, + "2024-05-26T12": 3.70981248, + "2024-05-23T06": 3.8265877299999995, + "2024-05-22T07": 3.87530232, + "2024-05-27T12": 3.7024065, + "2024-05-22T21": 3.81258882, + "2024-05-24T00": 3.7103296, + "2024-05-25T02": 3.7831675199999997, + "2024-05-27T00": 3.688155, + "2024-05-26T20": 3.69074727, + "2024-05-26T17": 3.691762554378619, + "2024-05-27T13": 3.7456387600000003, + "2024-05-23T12": 3.77315025, + "2024-05-25T10": 3.77997913, + "2024-05-21T09": 3.864227, + "2024-05-23T11": 3.8090945, + "2024-05-24T14": 3.73434673, + "2024-05-25T01": 3.7732452000000003, + "2024-05-27T21": 3.82313473, + "2024-05-27T03": 3.71580638, + "2024-05-27T01": 3.708194048517295, + "latest": 3.5, + "2024-05-28T09": 3.7461375, + "2024-05-28T10": 3.76134795, + "2024-05-28T11": 3.75120745, + "2024-05-28T12": 3.73921957, + "2024-05-28T13": 3.7242719999999996, + "2024-05-28T14": 3.71431918, + "2024-05-28T15": 3.713523653080468, + "2024-05-29": 3.726422901393906, + "2024-05-28T20": 3.75731422, + "2024-05-28T22": 3.7435527599999996, + "2024-05-28T21": 3.7450875, + "2024-05-28T19": 3.7353998000000006, + "2024-05-29T02": 3.71720458, + "2024-05-28T17": 3.733263, + "2024-05-28T18": 3.70036875, + "2024-05-28T23": 3.7294163200000003, + "2024-05-29T00": 3.72659742, + "2024-05-29T01": 3.7145000099999996, + "2024-05-28T16": 3.7200898000000002, + "2024-05-29T06": 3.78141894, + "2024-05-29T05": 3.7685478600000004, + "2024-05-29T03": 3.7340377200000003, + "2024-05-29T07": 3.75693812, + "2024-05-29T04": 3.7555256, + "2024-05-29T08": 3.73626, + "2024-05-29T09": 3.7615362, + "2024-05-29T10": 3.7663431, + "2024-05-29T11": 3.7462874999999998, + "2024-05-29T12": 3.7263819, + "2024-05-29T13": 3.72109528, + "2024-05-29T14": 3.71125164, + "2024-05-29T15": 3.71162304, + "2024-05-29T18": 3.7124326400000003, + "2024-05-29T17": 3.7236456999999996, + "2024-05-29T23": 3.6625996, + "2024-05-29T19": 3.69737302, + "2024-05-29T22": 3.6709207499999996, + "2024-05-29T20": 3.67365393, + "2024-05-29T16": 3.6974470000000004, + "2024-05-29T21": 3.666301281217989, + "2024-05-30": 3.6111588539558928, + "2024-05-30T00": 3.6704429999999997, + "2024-05-30T05": 3.67535779, + "2024-05-30T02": 3.6915278399999996, + "2024-05-30T08": 3.5518676, + "2024-05-30T01": 3.678994993594711, + "2024-05-30T06": 3.6290944, + "2024-05-30T07": 3.5877742, + "2024-05-30T03": 3.7015528, + "2024-05-30T04": 3.69659581, + "2024-05-30T09": 3.572855, + "2024-05-30T10": 3.5681792999999997, + "2024-05-30T11": 3.59108886, + "2024-05-30T12": 3.5981191999999997, + "2024-05-30T13": 3.6248237999999997, + "2024-05-30T14": 3.63632652, + "2024-05-30T15": 3.6115548, + "2024-05-30T21": 3.5872824000000003, + "2024-05-30T20": 3.5863184699999997, + "2024-05-30T18": 3.6370541199999997, + "2024-05-30T22": 3.5887435, + "2024-05-30T16": 3.6176971599999996, + "2024-05-30T17": 3.63047327889708, + "2024-05-30T19": 3.6203482200000003, + "2024-05-31": 3.523197660363982, + "2024-05-30T23": 3.58374525, + "2024-05-31T03": 3.55429312, + "2024-05-31T07": 3.5459359000000004, + "2024-05-31T06": 3.5429368, + "2024-05-31T04": 3.54736746, + "2024-05-31T02": 3.55250732, + "2024-05-31T05": 3.52155557, + "2024-05-31T00": 3.5510054400000004, + "2024-05-31T01": 3.55214728, + "2024-05-31T08": 3.5388672, + "2024-05-31T09": 3.5188032, + "2024-05-31T10": 3.5271823057751313, + "2024-05-31T11": 3.5318442599999997, + "2024-05-31T12": 3.55882779, + "2024-05-31T13": 3.5418001220192856, + "2024-05-31T14": 3.51299645, + "2024-06-01": 3.492526606237568, + "2024-06-01T08": 3.499261907777124, + "2024-06-01T02": 3.48447712, + "2024-06-01T05": 3.49327312, + "2024-05-31T21": 3.5060797849151975, + "2024-06-01T00": 3.4914351, + "2024-05-31T18": 3.4982178399999997, + "2024-05-31T15": 3.50209085, + "2024-05-31T23": 3.49746399, + "2024-05-31T22": 3.5059635, + "2024-06-01T01": 3.4834781300000004, + "2024-06-01T07": 3.492209506109534, + "2024-06-01T04": 3.4833547397049136, + "2024-05-31T19": 3.508833314014947, + "2024-06-01T06": 3.494722111885533, + "2024-05-31T20": 3.5108874500000002, + "2024-05-31T17": 3.4871731, + "2024-05-31T16": 3.4721852500000003, + "2024-06-01T03": 3.4832550797364554, + "2024-06-01T09": 3.4979541299999997, + "2024-06-01T10": 3.4979191199999997, + "2024-06-02": 3.479528689803228, + "2024-06-01T13": 3.5068409999999997, + "2024-06-01T15": 3.5114498500000004, + "2024-06-01T18": 3.4998279631131277, + "2024-06-01T12": 3.50794543, + "2024-06-01T21": 3.49988233, + "2024-06-01T20": 3.4958858900000003, + "2024-06-02T01": 3.5011967999999998, + "2024-06-01T17": 3.4981991999999997, + "2024-06-01T11": 3.50791032, + "2024-06-02T00": 3.4872080000000003, + "2024-06-01T23": 3.4831066199999996, + "2024-06-01T14": 3.5043720908562586, + "2024-06-01T22": 3.496955, + "2024-06-01T19": 3.49089034, + "2024-06-01T16": 3.50580681, + "2024-06-02T13": 3.4874140506189533, + "2024-06-02T11": 3.48152636, + "2024-06-02T07": 3.4791795800000003, + "2024-06-02T05": 3.48806756, + "2024-06-02T08": 3.4784936799999997, + "2024-06-02T04": 3.49316824, + "2024-06-02T10": 3.4654336800000003, + "2024-06-02T12": 3.49151926, + "2024-06-02T02": 3.49606084, + "2024-06-02T16": 3.48817229, + "2024-06-02T17": 3.457751, + "2024-06-02T03": 3.4910300999999997, + "2024-06-02T09": 3.47042998, + "2024-06-02T15": 3.496911851356242, + "2024-06-02T06": 3.49003095, + "2024-06-02T18": 3.42490953, + "2024-06-02T14": 3.49444719, + "2024-06-03": 3.4801197200000007, + "2024-06-03T01": 3.4666410799999996, + "2024-06-02T20": 3.42401292, + "2024-06-03T00": 3.42111735, + "2024-06-02T21": 3.425194627865669, + "2024-06-02T23": 3.4331451, + "2024-06-02T19": 3.43397276, + "2024-06-02T22": 3.43014672, + "2024-06-03T02": 3.501263828893932, + "2024-06-03T05": 3.5018976, + "2024-06-03T06": 3.5159623234377726, + "2024-06-03T04": 3.47898102, + "2024-06-03T03": 3.49393736, + "2024-06-03T07": 3.51474912 + }, + "USD ravencoin": { + "2023-07-30": 0.018401603478275637, + "2023-10-23": 0.014806727264669734, + "2023-07-27": 0.018237146602795212, + "2023-07-10": 0.018660728122834744, + "2023-08-20": 0.015891410700000004, + "2024-02-23": 0.022769285114866655, + "2024-04-05": 0.039390564258894645, + "2023-12-19": 0.02218029202932189, + "2024-05-17": 0.02964622308678341, + "2023-08-06": 0.017964714479630703, + "2023-12-02": 0.018843726645697216, + "2023-10-31": 0.01766911069210247, + "2023-08-29": 0.01565728239605789, + "2023-06-20": 0.01710743525662659, + "2023-09-09": 0.015112558630792357, + "2023-06-26": 0.019431938749257933, + "2023-10-01": 0.01557378013141917, + "2024-03-07": 0.02800724756112866, + "2023-10-12": 0.013876006749245025, + "2024-04-22": 0.03305321227740815, + "2023-07-05": 0.02020989466403701, + "2023-07-29": 0.01853463452010661, + "2024-04-26": 0.03300545456321045, + "2024-01-08": 0.01858302536227562, + "2023-05-29": 0.021725745021495296, + "2023-10-07": 0.014688801467910765, + "2023-09-26": 0.01454439521863608, + "2023-08-24": 0.015543227229880477, + "2023-12-05": 0.021401365098149758, + "2024-02-19": 0.02285260704602367, + "2024-01-07": 0.01941006720221034, + "2024-04-28": 0.03199978723401807, + "2023-07-31": 0.018410487227723985, + "2023-10-18": 0.013915125200478997, + "2024-05-19": 0.02940280378777023, + "2024-05-12": 0.027939485330052152, + "2024-04-29": 0.030086322292407285, + "2023-08-25": 0.01514826508766575, + "2024-03-09": 0.028246082270817346, + "2023-07-12": 0.01927991800754553, + "2023-09-05": 0.015053113292077754, + "2023-06-07": 0.018864139061454566, + "2023-09-16": 0.015161562328832541, + "2024-04-25": 0.032575539574745016, + "2023-08-12": 0.01784109437967736, + "2023-06-06": 0.019123635996981924, + "2023-09-01": 0.014746093394700505, + "2023-09-08": 0.015025988998255517, + "2024-03-22": 0.025785979213182996, + "2023-08-10": 0.01798281904994486, + "2023-12-07": 0.021922807639865413, + "2023-11-18": 0.017455200060757382, + "2023-07-13": 0.020031042530463214, + "2023-09-13": 0.014535647513244094, + "2023-06-17": 0.017380087837240127, + "2023-07-17": 0.019663138409200275, + "2023-07-07": 0.01979115087139576, + "2023-09-07": 0.014930178395323334, + "2024-03-26": 0.030962095196784778, + "2024-05-14": 0.027745835233733813, + "2024-02-22": 0.02264317292148853, + "2024-04-15": 0.030993226063469083, + "2023-12-30": 0.02164987450737463, + "2023-09-17": 0.014900282618999911, + "2024-04-17": 0.028986392769485336, + "2024-02-12": 0.019795132079496094, + "2023-10-26": 0.015940099250876655, + "2024-01-03": 0.019920351425054456, + "2024-05-07": 0.030299996863870266, + "2023-06-01": 0.02058267640819806, + "2024-01-22": 0.018433255405758218, + "2023-06-12": 0.016280664708539876, + "2023-10-03": 0.015145262862431907, + "2024-05-26": 0.029989199999999997, + "2024-04-30": 0.028580092450135295, + "2023-06-19": 0.017154720290722725, + "2023-07-09": 0.01926344348677014, + "2023-12-24": 0.022561386583351564, + "2023-09-24": 0.014970898199999999, + "2024-01-16": 0.02013629169905334, + "2023-10-17": 0.014327852416841256, + "2024-04-24": 0.03418392834136096, + "2024-03-18": 0.026884357283149328, + "2024-02-17": 0.020997289491380754, + "2023-12-27": 0.02302540024293545, + "2023-07-23": 0.019294084839421546, + "2023-09-03": 0.014976981996812393, + "2024-02-24": 0.023465691414369168, + "2024-01-06": 0.0196034515082789, + "2024-03-20": 0.023978161269448225, + "2023-11-21": 0.017355051098843062, + "2023-12-25": 0.023104242500590465, + "2023-09-22": 0.015167283388858156, + "2023-10-02": 0.015881584038222856, + "2024-03-27": 0.03448665629395291, + "2024-05-06": 0.031061553000000006, + "2023-08-30": 0.01574780762910441, + "2023-10-06": 0.014691188867813476, + "2023-10-13": 0.01412604674796931, + "2023-06-28": 0.018669964473204036, + "2024-02-05": 0.01768211527325951, + "2024-03-01": 0.02621723115824116, + "2023-07-15": 0.01993330242346063, + "2023-06-25": 0.02055653371455051, + "2023-12-10": 0.023762028496839806, + "2023-11-23": 0.01710326662740758, + "2023-08-04": 0.017927311494583605, + "2024-05-13": 0.02809297000614038, + "2024-01-13": 0.020155662652395396, + "2024-03-28": 0.03514577758983542, + "2023-08-05": 0.01767711609645391, + "2024-02-09": 0.02094041418631412, + "2023-10-09": 0.014272795427791644, + "2024-01-09": 0.018869410698870683, + "2024-05-10": 0.02926623445164454, + "2023-05-27": 0.020746378582973138, + "2023-08-18": 0.01568373115161365, + "2023-11-05": 0.017776095970490246, + "2024-04-18": 0.028946117864873784, + "2023-10-22": 0.014514643168728789, + "2023-11-01": 0.01704344778468492, + "2024-05-20": 0.030051502500000004, + "2023-12-08": 0.022413997060041702, + "2024-04-12": 0.03713378697921596, + "2023-07-06": 0.020050703075869477, + "2024-03-12": 0.03258793941131257, + "2023-09-11": 0.014394332885814445, + "2024-03-03": 0.02804240661502272, + "2024-02-04": 0.017933181066314665, + "2024-01-28": 0.018648135, + "2023-07-01": 0.02117748113599699, + "2023-11-07": 0.01804515055604434, + "2023-11-25": 0.01798070860826967, + "2023-06-04": 0.02073614359326284, + "2024-02-25": 0.024743376873376216, + "2023-12-01": 0.01875396384503223, + "2023-07-14": 0.020247238794727264, + "2024-01-26": 0.018311494697089405, + "2023-08-03": 0.017914104655075817, + "2024-02-28": 0.025801426754877458, + "2023-09-15": 0.014860274160917127, + "2023-07-18": 0.01915143212877926, + "2023-12-21": 0.022110582454045725, + "2023-07-20": 0.019496743577759598, + "2024-03-06": 0.027078571257417746, + "2023-09-30": 0.015174348544515279, + "2023-12-12": 0.021671713160165317, + "2024-02-13": 0.019819120755988427, + "2023-09-20": 0.015238066966915403, + "2023-09-19": 0.015277759445361342, + "2023-09-29": 0.015258321474637175, + "2023-09-12": 0.014496351346191675, + "2023-06-13": 0.016708335007322783, + "2023-10-04": 0.014707638296599391, + "2023-07-08": 0.019861746292826568, + "2024-04-16": 0.029295424335156982, + "2024-03-02": 0.028311743545997487, + "2023-06-27": 0.019201211969654065, + "2023-10-08": 0.014741823108988, + "2023-11-20": 0.017864236039758546, + "2023-12-20": 0.02199861073110159, + "2023-12-31": 0.021643645540221555, + "2023-11-06": 0.01819454013933724, + "2023-08-22": 0.015414313748448618, + "2023-06-09": 0.018881400782660967, + "2024-03-17": 0.027121017884164014, + "2023-09-18": 0.015099574580208547, + "2024-04-01": 0.04836606349551407, + "2024-05-21": 0.031697575169128245, + "2024-01-19": 0.018570110581283484, + "2023-11-11": 0.01891708424699705, + "2023-09-23": 0.015117999810876189, + "2023-11-19": 0.017482070140144343, + "2023-07-02": 0.020019979969447096, + "2023-08-15": 0.01782914944, + "2024-01-25": 0.01765163105983124, + "2024-03-13": 0.03239674005778854, + "2024-01-21": 0.019388330104161872, + "2024-02-01": 0.017879422907626723, + "2023-06-15": 0.01716138742654774, + "2024-03-16": 0.02803433593318605, + "2023-11-27": 0.01968332559537532, + "2024-01-10": 0.019076587660080083, + "2024-03-15": 0.028649156453804923, + "2023-06-21": 0.018149335929066236, + "2024-01-02": 0.02251549413726902, + "2023-07-11": 0.01917059657547919, + "2023-10-25": 0.015871786236172015, + "2024-01-01": 0.021510472505814067, + "2024-02-14": 0.020319599461276233, + "2023-09-04": 0.014965527573826982, + "2023-09-06": 0.014982278241062946, + "2024-04-03": 0.04201541553510586, + "2023-11-28": 0.018563453567145116, + "2023-12-03": 0.01891819340511041, + "2023-08-02": 0.018170093685070273, + "2023-08-27": 0.015288703281916678, + "2023-10-20": 0.014086194882728099, + "2023-10-10": 0.014141157138400856, + "2024-05-03": 0.029746173269653897, + "2024-03-08": 0.02783038340866041, + "2024-04-11": 0.04174690168184613, + "2023-06-22": 0.01849174875035441, + "2024-01-14": 0.02015465562996908, + "2023-12-15": 0.021240840211984954, + "2023-10-19": 0.013594291305098698, + "2024-02-08": 0.018375756406496708, + "2023-11-08": 0.018263952622764493, + "2023-11-12": 0.018977419449425405, + "2023-12-22": 0.022446243533086187, + "2023-05-31": 0.020843713701760042, + "2024-03-23": 0.02592072762328601, + "2023-09-27": 0.014520832583645893, + "2024-03-04": 0.028377372997242578, + "2023-09-10": 0.014736316617042215, + "2024-04-13": 0.032671037409010145, + "2024-02-29": 0.026419648228568744, + "2023-07-21": 0.019565014007130777, + "2023-06-30": 0.019515898924325852, + "2023-12-29": 0.022171649735784817, + "2023-12-04": 0.0195777431622258, + "2024-04-10": 0.040139250324997384, + "2024-05-08": 0.029716006443232093, + "2023-09-21": 0.01524725212720872, + "2023-06-02": 0.020844589681194202, + "2024-04-21": 0.03196603235749154, + "2023-07-22": 0.019501950000000004, + "2023-10-11": 0.013890172742661524, + "2024-03-21": 0.026121455341696787, + "2023-07-19": 0.019388188294143592, + "2024-05-05": 0.030644406355273962, + "2024-05-23": 0.030063756824305746, + "2024-04-08": 0.04135215755433115, + "2024-05-18": 0.029838352551745904, + "2023-06-14": 0.017596479610100395, + "2023-10-05": 0.014711696827688763, + "2023-10-16": 0.014290844906231018, + "2024-05-22": 0.031194167913330552, + "2024-02-10": 0.020030758724411707, + "2024-04-07": 0.040368868988713176, + "2024-02-20": 0.02238006311406388, + "2023-11-17": 0.017782438545314517, + "2023-12-11": 0.0219272955570813, + "2023-11-26": 0.017937929228607572, + "2023-11-16": 0.01858546432477675, + "2023-06-29": 0.018347946385639663, + "2023-10-27": 0.01536459210351115, + "2023-06-11": 0.016917297720773397, + "2024-02-02": 0.018120742909895578, + "2023-09-14": 0.014789570369162796, + "2024-01-27": 0.018507825723485558, + "2024-03-30": 0.05136543528374594, + "2023-11-22": 0.016763751116673397, + "2023-09-28": 0.014789643307696608, + "2023-06-03": 0.020906767901393983, + "2024-01-18": 0.019329180561207776, + "2023-08-26": 0.015309767123203708, + "2024-02-15": 0.020926072885803667, + "2023-10-28": 0.015709000586659305, + "2024-03-24": 0.026042764008944157, + "2024-04-27": 0.031875780694142694, + "2023-12-06": 0.021591538960245377, + "2024-01-30": 0.018682182814154406, + "2023-11-14": 0.01828698274694099, + "2023-08-09": 0.018195170411240646, + "2024-05-15": 0.028620750698858798, + "2023-11-10": 0.018319048909803154, + "2024-01-23": 0.017312679529946886, + "2024-01-31": 0.018122748, + "2024-05-11": 0.028402061579566675, + "2024-01-11": 0.02132444528881678, + "2024-02-18": 0.02316481672662291, + "2023-06-16": 0.017012760305573502, + "2023-10-30": 0.017968086369518573, + "2023-12-17": 0.021558981077063794, + "2024-02-26": 0.025363141125698572, + "2023-07-16": 0.019656485021679767, + "2024-01-05": 0.019694999663788012, + "2023-08-23": 0.015735517173831336, + "2024-03-11": 0.03219847227130605, + "2023-08-01": 0.01809920609266875, + "2024-03-14": 0.03177214802918173, + "2024-02-21": 0.02134131463235245, + "2023-08-28": 0.01537836860203677, + "2023-07-04": 0.02123297580821083, + "2023-12-13": 0.021500600907680453, + "2024-02-27": 0.025846378267653014, + "2023-08-13": 0.01793385504355596, + "2024-03-31": 0.051981670455159695, + "2023-12-09": 0.024167548694042522, + "2024-04-02": 0.046350305310997035, + "2024-02-06": 0.017553402226604127, + "2024-04-09": 0.041900322906585075, + "2023-11-04": 0.017467834056144296, + "2024-04-20": 0.03103789839214544, + "2024-01-15": 0.019969907724554238, + "2023-07-03": 0.021149923784215745, + "2023-12-28": 0.022869723226451918, + "2023-05-30": 0.021405787816550222, + "2024-05-25": 0.03058382052447573, + "2024-02-07": 0.018009982767940098, + "2023-09-25": 0.014648547839436768, + "2024-03-19": 0.023959223994149563, + "2024-03-10": 0.02883682610163568, + "2024-05-02": 0.028429289221092374, + "2023-09-02": 0.014956964289147322, + "2024-01-12": 0.021299009761289962, + "2024-04-19": 0.03075033612815454, + "2023-11-29": 0.018838929541028226, + "2023-10-15": 0.014129044159565002, + "2024-05-28": 0.030550073651169043, + "2023-11-30": 0.018723096222905685, + "2024-01-24": 0.017739320345406817, + "2023-08-11": 0.017817238261743803, + "2024-02-11": 0.01983753568634649, + "2023-06-08": 0.018731873, + "2023-11-15": 0.018455297258675594, + "2023-12-16": 0.02173699878581916, + "2024-03-29": 0.0461840582157279, + "2024-04-04": 0.040917893567647655, + "2023-06-10": 0.015627150071992307, + "2023-07-28": 0.0183520317561353, + "2024-01-20": 0.019096814099999998, + "2023-10-21": 0.014425623495540153, + "2023-08-16": 0.017085826592140113, + "2024-05-24": 0.030107477893700732, + "2023-11-03": 0.017107215414552266, + "2023-08-31": 0.015484461205144951, + "2024-05-27": 0.030331194307471353, + "2024-01-04": 0.02016802482860257, + "2023-07-26": 0.017847780953463146, + "2023-11-13": 0.01916330084916568, + "2023-10-24": 0.015734205291031828, + "2024-03-25": 0.02793889552078065, + "2023-08-07": 0.01803073063578285, + "2023-10-29": 0.016366210874035742, + "2024-01-29": 0.018387805281024593, + "2024-05-04": 0.030685834007365437, + "2023-06-05": 0.019253601808492816, + "2023-11-02": 0.0176465586422426, + "2023-12-18": 0.020713396044652447, + "2023-11-24": 0.01762591860020042, + "2023-08-21": 0.015579198611132468, + "2023-07-25": 0.01816810819823355, + "2024-05-16": 0.029364111012167814, + "2023-08-14": 0.01806829200990179, + "2024-05-01": 0.027448821081997334, + "2024-03-05": 0.02843226564281684, + "2024-04-06": 0.04011940837487725, + "2023-12-23": 0.02212246291293886, + "2024-02-03": 0.01809260691219629, + "2024-02-16": 0.02128040037411195, + "2023-05-28": 0.02155600784450618, + "2023-12-14": 0.022103475406140185, + "2023-06-24": 0.019349119409669675, + "2023-12-26": 0.02264786034249979, + "2023-11-09": 0.01865897476527831, + "2023-08-19": 0.015785631497119354, + "2024-05-09": 0.03017823220249225, + "2024-01-17": 0.01997790289663657, + "2023-06-23": 0.018724231958500495, + "2023-06-18": 0.017165563308532684, + "2024-04-23": 0.03344302550657503, + "2023-08-08": 0.01814438914738451, + "2023-08-17": 0.016557441586386376, + "2024-04-14": 0.0303706657918157, + "2023-07-24": 0.018747558588594598, + "2023-10-14": 0.014118935999524494, + "2024-05-22T20": 0.031046274000000002, + "2024-05-25T08": 0.0306680348, + "2024-05-22T05": 0.031103155799999997, + "2024-05-28T03": 0.0298064343, + "2024-05-22T16": 0.0314724448, + "2024-05-25T05": 0.030867648, + "2024-05-24T22": 0.0304557356, + "2024-05-27T14": 0.030238212799999997, + "2024-05-22T03": 0.031353414399999995, + "2024-05-23T17": 0.0297682533, + "2024-05-24T23": 0.0304045262, + "2024-05-26T19": 0.029883854, + "2024-05-26T18": 0.0298044936, + "2024-05-26T10": 0.030008892600000003, + "2024-05-27T16": 0.0309393397, + "2024-05-24T12": 0.030114332400000002, + "2024-05-26T01": 0.030666933, + "2024-05-21T17": 0.0316416372, + "2024-05-23T07": 0.0313608582, + "2024-05-22T08": 0.031213756000000002, + "2024-05-23T09": 0.0310797403, + "2024-05-24T18": 0.030514735000000005, + "2024-05-23T01": 0.0311441084, + "2024-05-25T15": 0.03049695, + "2024-05-23T16": 0.029849389700000003, + "2024-05-25T03": 0.0307174007, + "2024-05-28T06": 0.029424084, + "2024-05-25T23": 0.030594798, + "2024-05-24T13": 0.030141903999999997, + "2024-05-26T03": 0.030366659299999998, + "2024-05-26T00": 0.030626121961075878, + "2024-05-25T06": 0.0308179763, + "2024-05-27T04": 0.029874257041151684, + "2024-05-22T10": 0.0313630986, + "2024-05-27T09": 0.029611629400000002, + "2024-05-24T17": 0.0301673244, + "2024-05-26T16": 0.029927425200000003, + "2024-05-22T09": 0.03124375, + "2024-05-24T21": 0.0304672577, + "2024-05-25T04": 0.030807672, + "2024-05-27T22": 0.0305987574, + "2024-05-27T11": 0.0298614744, + "2024-05-23T21": 0.0298076275, + "2024-05-23T10": 0.030909178000000002, + "2024-05-23T14": 0.030155216699999998, + "2024-05-27T02": 0.0300022882, + "2024-05-25T18": 0.0304223925, + "2024-05-27T05": 0.029685744, + "2024-05-22T23": 0.0310560185, + "2024-05-28T01": 0.030215808, + "2024-05-22T04": 0.0310416165, + "2024-05-22T15": 0.0313609027, + "2024-05-24T03": 0.030447511400000002, + "2024-05-24T08": 0.029321494299999997, + "2024-05-21T22": 0.0315808389, + "2024-05-21T16": 0.0315764163, + "2024-05-21T23": 0.0316533514, + "2024-05-24T02": 0.030298482199999997, + "2024-05-26T07": 0.0303187779, + "2024-05-27T07": 0.029512577300000002, + "2024-05-25T22": 0.030394528, + "2024-05-24T16": 0.0299874, + "2024-05-27T20": 0.0306786758, + "2024-05-22T02": 0.03158513300839694, + "2024-05-24T06": 0.029536998, + "2024-05-24T11": 0.029852078, + "2024-05-25T21": 0.030383922, + "2024-05-27T15": 0.030503744200000002, + "2024-05-21T19": 0.031159713899999997, + "2024-05-22T19": 0.031003487899999998, + "2024-05-21T12": 0.0317127044, + "2024-05-23T20": 0.028618519999999998, + "2024-05-23T08": 0.0311219388, + "2024-05-22T22": 0.031227504000000003, + "2024-05-26T11": 0.030056468500000003, + "2024-05-24T01": 0.0302379, + "2024-05-23T05": 0.0312606064, + "2024-05-28T04": 0.0293585526, + "2024-05-25T09": 0.030668955199999997, + "2024-05-27T18": 0.0308288314, + "2024-05-24T10": 0.0297048428, + "2024-05-25T19": 0.0304823775, + "2024-05-24T07": 0.029421759600000003, + "2024-05-26T04": 0.030322114199999996, + "2024-05-26T09": 0.029988, + "2024-05-23T02": 0.031193770800000003, + "2024-05-27T06": 0.0295558064, + "2024-05-28T08": 0.02938423754339028, + "2024-05-24T15": 0.030394795000000002, + "2024-05-25T20": 0.030492375, + "2024-05-27T08": 0.02958224, + "2024-05-23T22": 0.0300613504, + "2024-05-26T15": 0.030091934, + "2024-05-24T20": 0.030489115429927383, + "2024-05-21T20": 0.031439621499999994, + "2024-05-25T13": 0.030295758, + "2024-05-22T01": 0.0316162056, + "2024-05-25T17": 0.0303833142, + "2024-05-27T10": 0.0297118647, + "2024-05-21T21": 0.0313331052, + "2024-05-24T19": 0.0304505574, + "2024-05-26T02": 0.030346661499999997, + "2024-05-27T19": 0.030718942500000002, + "2024-05-25T11": 0.0306853965, + "2024-05-27T17": 0.030868173000000002, + "2024-05-21T18": 0.0315748368, + "2024-05-26T06": 0.0302797014, + "2024-05-23T00": 0.0312234428, + "2024-05-22T00": 0.0316043102, + "2024-05-24T05": 0.029943522, + "2024-05-23T15": 0.029898457599999997, + "2024-05-22T13": 0.030746617499999997, + "2024-05-21T10": 0.03173120401641979, + "2024-05-22T12": 0.0308647521, + "2024-05-23T04": 0.0312506126, + "2024-05-26T08": 0.0302173034, + "2024-05-26T13": 0.0298504448, + "2024-05-28T05": 0.0294073389, + "2024-05-22T18": 0.030926288399999998, + "2024-05-22T06": 0.0313830942, + "2024-05-21T08": 0.031485707396959925, + "2024-05-22T17": 0.031414972799999996, + "2024-05-23T19": 0.029372951999999997, + "2024-05-25T07": 0.0307280114, + "2024-05-26T22": 0.029737505, + "2024-05-25T16": 0.0304657342, + "2024-05-26T05": 0.030230928, + "2024-05-24T04": 0.0304529368, + "2024-05-21T14": 0.03187203, + "2024-05-25T12": 0.0305578608, + "2024-05-28T07": 0.0293159412, + "2024-05-23T18": 0.0293191686, + "2024-05-26T23": 0.0296657536, + "2024-05-24T09": 0.0295367025, + "2024-05-23T03": 0.0313090089, + "2024-05-26T14": 0.0299483156, + "2024-05-21T13": 0.03193361200000001, + "2024-05-22T14": 0.0310716084, + "2024-05-25T14": 0.0303578748, + "2024-05-25T00": 0.0305629689, + "2024-05-23T23": 0.030036778, + "2024-05-21T11": 0.0318713924, + "2024-05-23T13": 0.0307792235, + "2024-05-22T11": 0.031244375, + "2024-05-21T15": 0.03174238, + "2024-05-28T00": 0.030405656, + "2024-05-27T23": 0.030524338, + "2024-05-28T02": 0.029628059, + "2024-05-26T21": 0.029595195, + "2024-05-26T12": 0.029920422399999997, + "2024-05-23T06": 0.0311203818, + "2024-05-22T07": 0.031204382200000002, + "2024-05-27T12": 0.029919042, + "2024-05-22T21": 0.030879716554940664, + "2024-05-24T00": 0.030206401, + "2024-05-25T02": 0.0307332372, + "2024-05-27T00": 0.029715135, + "2024-05-26T20": 0.0297918159, + "2024-05-26T17": 0.0297739134, + "2024-05-27T13": 0.0301210118, + "2024-05-23T12": 0.030924839399999998, + "2024-05-25T10": 0.030741697499999998, + "2024-05-21T09": 0.03164367, + "2024-05-23T11": 0.031114435000000003, + "2024-05-24T14": 0.0301985438, + "2024-05-25T01": 0.030653868, + "2024-05-27T21": 0.030758902100000002, + "2024-05-27T03": 0.0299123413, + "2024-05-27T01": 0.0298453686, + "latest": 0.02818008, + "2024-05-28T09": 0.0296194605, + "2024-05-28T10": 0.029890977599999997, + "2024-05-28T11": 0.0297898818, + "2024-05-28T12": 0.029570104000000003, + "2024-05-28T13": 0.0293706, + "2024-05-28T14": 0.0292210425, + "2024-05-28T15": 0.0292524768, + "2024-05-29": 0.029571613372991856, + "2024-05-28T20": 0.0297408254, + "2024-05-28T22": 0.0295527864, + "2024-05-28T21": 0.0297010406, + "2024-05-28T19": 0.029433751900000003, + "2024-05-29T02": 0.029449930399999998, + "2024-05-28T17": 0.02940057, + "2024-05-28T18": 0.029123549999999998, + "2024-05-28T23": 0.0294117376, + "2024-05-29T00": 0.0294352254, + "2024-05-29T01": 0.0293144865, + "2024-05-28T16": 0.029269235, + "2024-05-29T06": 0.0299936637, + "2024-05-29T05": 0.029864718000000002, + "2024-05-29T03": 0.0295386558, + "2024-05-29T07": 0.029734299214234875, + "2024-05-29T04": 0.0296247046, + "2024-05-29T08": 0.02952045, + "2024-05-29T09": 0.0298525104, + "2024-05-29T10": 0.02989129081695909, + "2024-05-29T11": 0.0299203495, + "2024-05-29T12": 0.0297311328, + "2024-05-29T13": 0.0296168808, + "2024-05-29T14": 0.0295980812, + "2024-05-29T15": 0.0295210944, + "2024-05-29T18": 0.0292818624, + "2024-05-29T17": 0.029423495, + "2024-05-29T23": 0.029075068000000003, + "2024-05-29T19": 0.0292513056, + "2024-05-29T22": 0.0291476102, + "2024-05-29T20": 0.0290435463, + "2024-05-29T16": 0.0293197554, + "2024-05-29T21": 0.028980762988592337, + "2024-05-30": 0.028735349308395216, + "2024-05-30T00": 0.0291837672, + "2024-05-30T05": 0.0291411217, + "2024-05-30T02": 0.029364426, + "2024-05-30T08": 0.02818308, + "2024-05-30T01": 0.02920820353318201, + "2024-05-30T06": 0.028687031999999998, + "2024-05-30T07": 0.028322429200000002, + "2024-05-30T03": 0.029324768, + "2024-05-30T04": 0.0293050854, + "2024-05-30T09": 0.028472906, + "2024-05-30T10": 0.0286054038, + "2024-05-30T11": 0.028686744900000002, + "2024-05-30T12": 0.028717008000000002, + "2024-05-30T13": 0.028992594, + "2024-05-30T14": 0.0290966094, + "2024-05-30T15": 0.028838460000000003, + "2024-05-30T21": 0.028624273999999998, + "2024-05-30T20": 0.0286745508, + "2024-05-30T18": 0.0291724132, + "2024-05-30T22": 0.0285799935, + "2024-05-30T16": 0.028979761061501172, + "2024-05-30T17": 0.0291189306, + "2024-05-30T19": 0.028954787200000002, + "2024-05-31": 0.028445448344385508, + "2024-05-30T23": 0.028609983000000002, + "2024-05-31T03": 0.0284763248, + "2024-05-31T07": 0.028571426, + "2024-05-31T06": 0.028621411, + "2024-05-31T04": 0.0284469084, + "2024-05-31T02": 0.02848803, + "2024-05-31T05": 0.0282784011, + "2024-05-31T00": 0.0283020732, + "2024-05-31T01": 0.0285131552, + "2024-05-31T08": 0.028590954552596155, + "2024-05-31T09": 0.0284603202, + "2024-05-31T10": 0.028492939619189507, + "2024-05-31T11": 0.028522590599999998, + "2024-05-31T12": 0.028794640253380677, + "2024-05-31T13": 0.028682206000000002, + "2024-05-31T14": 0.0283739145687606, + "2024-06-01": 0.028317945877210423, + "2024-06-01T08": 0.0280167268, + "2024-06-01T02": 0.028211477600000003, + "2024-06-01T05": 0.0282479494, + "2024-05-31T21": 0.0283767603, + "2024-06-01T00": 0.028261144199999998, + "2024-05-31T18": 0.028299403600000002, + "2024-05-31T15": 0.028286502699999997, + "2024-05-31T23": 0.0283213665, + "2024-05-31T22": 0.0284172825, + "2024-06-01T01": 0.0281615281, + "2024-06-01T07": 0.028097548300944235, + "2024-06-01T04": 0.0282182552, + "2024-05-31T19": 0.0284024592, + "2024-06-01T06": 0.028157737800000002, + "2024-05-31T20": 0.0284167135, + "2024-05-31T17": 0.0282870689, + "2024-05-31T16": 0.027958880345110314, + "2024-06-01T03": 0.028197424, + "2024-06-01T09": 0.028025596499999996, + "2024-06-01T10": 0.02797536, + "2024-06-02": 0.027970134413438357, + "2024-06-01T13": 0.028054728, + "2024-06-01T15": 0.028071619000000003, + "2024-06-01T18": 0.0281049643, + "2024-06-01T12": 0.028005613899999997, + "2024-06-01T21": 0.0281149554, + "2024-06-01T20": 0.028074991, + "2024-06-02T01": 0.028157456, + "2024-06-01T17": 0.028147464, + "2024-06-01T11": 0.0279853512, + "2024-06-02T00": 0.027997584, + "2024-06-01T23": 0.028036710200000002, + "2024-06-01T14": 0.0281093274, + "2024-06-01T22": 0.0281155182, + "2024-06-01T19": 0.0280250355, + "2024-06-01T16": 0.028034465400000003, + "2024-06-02T13": 0.0280897608, + "2024-06-02T11": 0.027860205199999998, + "2024-06-02T07": 0.0280872309, + "2024-06-02T05": 0.0281663204, + "2024-06-02T08": 0.0280497896, + "2024-06-02T04": 0.028167166100000002, + "2024-06-02T10": 0.027829391000000002, + "2024-06-02T12": 0.028100742084224306, + "2024-06-02T02": 0.0281663204, + "2024-06-02T16": 0.028087603559321075, + "2024-06-02T17": 0.027821903999999998, + "2024-06-02T03": 0.028156047, + "2024-06-02T09": 0.0279393096, + "2024-06-02T15": 0.0281566106, + "2024-06-02T06": 0.028196013, + "2024-06-02T18": 0.0275331945, + "2024-06-02T14": 0.0281594286, + "2024-06-03": 0.027974885400000003, + "2024-06-03T01": 0.027881028000000002, + "2024-06-02T20": 0.0276039804, + "2024-06-03T00": 0.0276547815, + "2024-06-02T21": 0.027655423213610465, + "2024-06-02T23": 0.0276950366, + "2024-06-02T19": 0.027693651099999998, + "2024-06-02T22": 0.0276750474, + "2024-06-03T02": 0.0280877931, + "2024-06-03T05": 0.028073146, + "2024-06-03T06": 0.0281519712, + "2024-06-03T04": 0.0279437832, + "2024-06-03T03": 0.0280234564, + "2024-06-03T07": 0.028201939199999998 + }, + "USD stacks": { + "2023-07-30": 0.5999870713490588, + "2023-10-23": 0.6570207166342843, + "2023-07-27": 0.5994062164679678, + "2023-07-10": 0.6258244190391202, + "2023-08-20": 0.4896510300000001, + "2024-02-23": 2.5381327561791847, + "2024-04-05": 3.079666114602505, + "2023-12-19": 1.2016940635819762, + "2024-05-17": 2.050328263237748, + "2023-08-06": 0.57755138890207, + "2023-12-02": 0.7813565440045855, + "2023-10-31": 0.6259391511026249, + "2023-08-29": 0.511511217996374, + "2023-06-20": 0.6374318742290255, + "2023-09-09": 0.4657631187461903, + "2023-06-26": 0.7455010093630007, + "2023-10-01": 0.5045403997250684, + "2024-03-07": 2.8372106845999707, + "2023-10-12": 0.4858602306972643, + "2024-04-22": 2.883916468733474, + "2023-07-05": 0.676471893495748, + "2023-07-29": 0.5987, + "2024-04-26": 2.6441729730691796, + "2024-01-08": 1.8296630210008205, + "2023-05-29": 0.6361682243863264, + "2023-10-07": 0.518185346915198, + "2023-09-26": 0.4613539345247475, + "2023-08-24": 0.48009080633515067, + "2023-12-05": 1.1645312816477884, + "2024-02-19": 2.716906931195962, + "2024-01-07": 1.6883226873937516, + "2024-04-28": 2.542117487159168, + "2023-07-31": 0.5935867419952064, + "2023-10-18": 0.5516955918228881, + "2024-05-19": 2.002673391544065, + "2024-05-12": 1.989958144470236, + "2024-04-29": 2.3868815694884504, + "2023-08-25": 0.4675921087436515, + "2024-03-09": 2.8260020951350744, + "2023-07-12": 0.6751971285630054, + "2023-09-05": 0.4692229910125153, + "2023-06-07": 0.6301511268980367, + "2023-09-16": 0.4711485496776392, + "2024-04-25": 2.722431421598823, + "2023-08-12": 0.5841102148054342, + "2023-06-06": 0.5777098405782823, + "2023-09-01": 0.48210147186562885, + "2023-09-08": 0.46231505532817835, + "2024-03-22": 3.432649596849053, + "2023-08-10": 0.5826109699421057, + "2023-12-07": 1.0069826467850143, + "2023-11-18": 0.623989475689885, + "2023-07-13": 0.6771136607532025, + "2023-09-13": 0.4552576400068814, + "2023-06-17": 0.5707486965390433, + "2023-07-17": 0.6330315257459824, + "2023-07-07": 0.6487705616315272, + "2023-09-07": 0.46342618126457125, + "2024-03-26": 3.5663670589008953, + "2024-05-14": 1.9815258369771616, + "2024-02-22": 2.598517434429766, + "2024-04-15": 2.674815107924723, + "2023-12-30": 1.4152125163135605, + "2023-09-17": 0.4592011646897267, + "2024-04-17": 2.2971422560922656, + "2024-02-12": 1.913941157800589, + "2023-10-26": 0.6680231162524045, + "2024-01-03": 1.552012994697108, + "2024-05-07": 2.2182740736878603, + "2023-06-01": 0.6011781724474176, + "2024-01-22": 1.401170709597492, + "2023-06-12": 0.5189390352239053, + "2023-10-03": 0.5109005084236969, + "2024-05-26": 1.988354374340638, + "2024-04-30": 2.288495288996592, + "2023-06-19": 0.5721239173881478, + "2023-07-09": 0.6454153728978593, + "2023-12-24": 1.4326996999256185, + "2023-09-24": 0.47082824799999995, + "2024-01-16": 1.63105923569468, + "2023-10-17": 0.5408411109559936, + "2024-04-24": 2.851811545616674, + "2024-03-18": 2.6791081386349003, + "2024-02-17": 2.5404430141806005, + "2023-12-27": 1.6041915230971198, + "2023-07-23": 0.62510274868469, + "2023-09-03": 0.4563794122092162, + "2024-02-24": 2.50385908369791, + "2024-01-06": 1.5332570463807536, + "2024-03-20": 2.9738403397928432, + "2023-11-21": 0.6231860940143685, + "2023-12-25": 1.4930722221886805, + "2023-09-22": 0.4716633936757594, + "2023-10-02": 0.5239315249139531, + "2024-03-27": 3.459157243943863, + "2024-05-06": 2.286758530450504, + "2023-08-30": 0.5309391758968762, + "2023-10-06": 0.5097002370781014, + "2023-10-13": 0.49122773034824124, + "2023-06-28": 0.6858941509023195, + "2024-02-05": 1.4800032769441427, + "2024-03-01": 2.9504720938565487, + "2023-07-15": 0.6459988514598713, + "2023-06-25": 0.7377531758702996, + "2023-12-10": 0.9912587476673739, + "2023-11-23": 0.6296424917304214, + "2023-08-04": 0.5900507227318924, + "2024-05-13": 2.03197564100533, + "2024-01-13": 1.679240926855646, + "2024-03-28": 3.397035275452538, + "2023-08-05": 0.5755874346791564, + "2024-02-09": 1.8109585556339125, + "2023-10-09": 0.4893969661875979, + "2024-01-09": 1.9636839464605524, + "2024-05-10": 2.0859813065536694, + "2023-05-27": 0.6042857908377083, + "2023-08-18": 0.47720925760231725, + "2023-11-05": 0.6480550889406201, + "2024-04-18": 2.348201750096296, + "2023-10-22": 0.6203937833435758, + "2023-11-01": 0.6196876767687326, + "2024-05-20": 2.0186667403025487, + "2023-12-08": 1.0114000065879485, + "2024-04-12": 2.7788197999395474, + "2023-07-06": 0.6723, + "2024-03-12": 3.0027200702002905, + "2023-09-11": 0.4314301439942718, + "2024-03-03": 3.0239797109807967, + "2024-02-04": 1.4885320211207047, + "2024-01-28": 1.5233588193088454, + "2023-07-01": 0.6814888672085038, + "2023-11-07": 0.6621469267919317, + "2023-11-25": 0.6527887755167018, + "2023-06-04": 0.6174829445306874, + "2024-02-25": 2.5700623556286883, + "2023-12-01": 0.7261343217435159, + "2023-07-14": 0.6825295540173035, + "2024-01-26": 1.5075096976600033, + "2023-08-03": 0.61731778854338, + "2024-02-28": 3.112274086540866, + "2023-09-15": 0.46110850710625084, + "2023-07-18": 0.6356157151101305, + "2023-12-21": 1.4522287068421291, + "2023-07-20": 0.6289917274663172, + "2024-03-06": 2.781487413887571, + "2023-09-30": 0.4765109941865849, + "2023-12-12": 0.9482255405171252, + "2024-02-13": 2.0812388075257973, + "2023-09-20": 0.4854339900072676, + "2023-09-19": 0.4926889887256954, + "2023-09-29": 0.47754746656652924, + "2023-09-12": 0.4477872943420173, + "2023-06-13": 0.522322451278797, + "2023-10-04": 0.48568247430829603, + "2023-07-08": 0.6485262211745948, + "2024-04-16": 2.418074088333299, + "2024-03-02": 2.922844340119313, + "2023-06-27": 0.7174856559322732, + "2023-10-08": 0.5117999183583942, + "2023-11-20": 0.6496079745563637, + "2023-12-20": 1.4337531970342912, + "2023-12-31": 1.4806366640941597, + "2023-11-06": 0.6715514444149059, + "2023-08-22": 0.46262933870181716, + "2023-06-09": 0.6284853254862086, + "2024-03-17": 2.734949761347711, + "2023-09-18": 0.48738310213523384, + "2024-04-01": 3.627331330426245, + "2024-05-21": 2.184982335704156, + "2024-01-19": 1.4658501119063316, + "2023-11-11": 0.6786114047709914, + "2023-09-23": 0.4727999940853461, + "2023-11-19": 0.6331822332520455, + "2023-07-02": 0.6865158109264884, + "2023-08-15": 0.5525917760000001, + "2024-01-25": 1.4599413324026351, + "2024-03-13": 3.066041759739749, + "2024-01-21": 1.4764296447929162, + "2024-02-01": 1.4774085288412242, + "2023-06-15": 0.48574328187991256, + "2024-03-16": 2.696564195778853, + "2023-11-27": 0.6640032415094467, + "2024-01-10": 1.7812005004850269, + "2024-03-15": 2.7646668023426635, + "2023-06-21": 0.7550103868548368, + "2024-01-02": 1.6377747259954947, + "2023-07-11": 0.6532203277570687, + "2023-10-25": 0.6837798309419348, + "2024-01-01": 1.498611103429576, + "2024-02-14": 2.3651354907945716, + "2023-09-04": 0.45368550140353703, + "2023-09-06": 0.4650292886109391, + "2024-04-03": 3.2525982522198715, + "2023-11-28": 0.6854141060426837, + "2023-12-03": 0.820646108877443, + "2023-08-02": 0.6121504349775916, + "2023-08-27": 0.4656777496760578, + "2023-10-20": 0.6353803024103168, + "2023-10-10": 0.49944084871145145, + "2024-05-03": 2.164313231467471, + "2024-03-08": 2.878618008120976, + "2024-04-11": 3.042642626646754, + "2023-06-22": 0.8317599367334875, + "2024-01-14": 1.6561779237747192, + "2023-12-15": 1.0240154987792776, + "2023-10-19": 0.5529506683315737, + "2024-02-08": 1.7483707356460003, + "2023-11-08": 0.6802133887154983, + "2023-11-12": 0.6671331286726068, + "2023-12-22": 1.3421531999109444, + "2023-05-31": 0.600571355943752, + "2024-03-23": 3.5063328808994347, + "2023-09-27": 0.4615768061651667, + "2024-03-04": 3.073135818263393, + "2023-09-10": 0.45168709956442826, + "2024-04-13": 2.56836453552319, + "2024-02-29": 3.0166161352756444, + "2023-07-21": 0.6229686050517466, + "2023-06-30": 0.6894805226320949, + "2023-12-29": 1.4770551524390156, + "2023-12-04": 0.9934892345761772, + "2024-04-10": 3.1143712354292683, + "2024-05-08": 2.110174931230607, + "2023-09-21": 0.48147638373891655, + "2023-06-02": 0.6095342107351126, + "2024-04-21": 2.7901248908241496, + "2023-07-22": 0.6302630200000001, + "2023-10-11": 0.4870052805232119, + "2024-03-21": 3.3637163468498064, + "2023-07-19": 0.6325878186955427, + "2024-05-05": 2.310499363012047, + "2024-05-23": 2.0153217503447065, + "2024-04-08": 3.4451571500958993, + "2024-05-18": 2.107467458373374, + "2023-06-14": 0.516754382654502, + "2023-10-05": 0.4978618960006636, + "2023-10-16": 0.5395073851825047, + "2024-05-22": 2.081758539746577, + "2024-02-10": 1.7870988750435597, + "2024-04-07": 3.274407684701227, + "2024-02-20": 2.7136389294893855, + "2023-11-17": 0.6490738185896336, + "2023-12-11": 0.9080058622440588, + "2023-11-26": 0.6762131646068565, + "2023-11-16": 0.6646843573339247, + "2023-06-29": 0.6976887147131582, + "2023-10-27": 0.6377858849596302, + "2023-06-11": 0.5345466491616803, + "2024-02-02": 1.5337464574319182, + "2023-09-14": 0.4673180224159696, + "2024-01-27": 1.5176892927654908, + "2024-03-30": 3.60967553354472, + "2023-11-22": 0.610592161896027, + "2023-09-28": 0.4737684415945737, + "2023-06-03": 0.6154992483123309, + "2024-01-18": 1.5542389943130486, + "2023-08-26": 0.46894782179182526, + "2024-02-15": 2.655301272110745, + "2023-10-28": 0.6551360657655888, + "2024-03-24": 3.6135406121786953, + "2024-04-27": 2.529640592451039, + "2023-12-06": 1.0587428527691478, + "2024-01-30": 1.5769550897997622, + "2023-11-14": 0.6328015738028435, + "2023-08-09": 0.5888818679650089, + "2024-05-15": 2.090693101425606, + "2023-11-10": 0.6842342263930051, + "2024-01-23": 1.3320805209045368, + "2024-01-31": 1.513258300863352, + "2024-05-11": 1.9993753612779808, + "2024-01-11": 1.7986946049137682, + "2024-02-18": 2.5147107541838154, + "2023-06-16": 0.539627180341887, + "2023-10-30": 0.6324435276931929, + "2023-12-17": 1.0309620638578585, + "2024-02-26": 2.6882612955603253, + "2023-07-16": 0.6425606249243702, + "2024-01-05": 1.6500522398547601, + "2023-08-23": 0.4736747499637089, + "2024-03-11": 3.096438616578688, + "2023-08-01": 0.6022406622208495, + "2024-03-14": 2.9494415191355206, + "2024-02-21": 2.757608961150517, + "2023-08-28": 0.4559440928218089, + "2023-07-04": 0.7189, + "2023-12-13": 0.9289783189445404, + "2024-02-27": 3.0893885826939154, + "2023-08-13": 0.590899837693895, + "2024-03-31": 3.550072523227197, + "2023-12-09": 1.0053966020636635, + "2024-04-02": 3.421751258450002, + "2024-02-06": 1.4810515041007404, + "2024-04-09": 3.2859605431834074, + "2023-11-04": 0.6451700900939549, + "2024-04-20": 2.559511887164541, + "2024-01-15": 1.6001744029293459, + "2023-07-03": 0.7301259970684438, + "2023-12-28": 1.4718420723597263, + "2023-05-30": 0.6302704160377708, + "2024-05-25": 1.9846309170058674, + "2024-02-07": 1.5263066838315444, + "2023-09-25": 0.46339079467505745, + "2024-03-19": 2.730825976278612, + "2024-03-10": 3.0227661762475346, + "2024-05-02": 2.077295935520136, + "2023-09-02": 0.46156089187971366, + "2024-01-12": 1.7283168781346572, + "2024-04-19": 2.4588935789958595, + "2023-11-29": 0.7543595072322471, + "2023-10-15": 0.5070016018159285, + "2024-05-28": 2.071874902665695, + "2023-11-30": 0.7008170192913931, + "2024-01-24": 1.4402077555387696, + "2023-08-11": 0.5818220253092143, + "2024-02-11": 1.8683354999272959, + "2023-06-08": 0.6479638953233737, + "2023-11-15": 0.634674868134191, + "2023-12-16": 1.0316394596826293, + "2024-03-29": 3.576258159285533, + "2024-04-04": 3.213457755824414, + "2023-06-10": 0.5235721861738214, + "2023-07-28": 0.5972383162344191, + "2024-01-20": 1.4669736056627027, + "2023-10-21": 0.6305514579701391, + "2023-08-16": 0.5282760054167923, + "2024-05-24": 1.9665421856845218, + "2023-11-03": 0.6206767858973711, + "2023-08-31": 0.5209182028429389, + "2024-05-27": 2.059056000506505, + "2024-01-04": 1.603732447816448, + "2023-07-26": 0.6013252361575762, + "2023-11-13": 0.6601566611832206, + "2023-10-24": 0.7046810069208048, + "2024-03-25": 3.578018007249785, + "2023-08-07": 0.5774002903598245, + "2023-10-29": 0.6404035680329763, + "2024-01-29": 1.4707012069205636, + "2024-05-04": 2.3977490892419815, + "2023-06-05": 0.5557039566129147, + "2023-11-02": 0.6373701399736591, + "2023-12-18": 1.1294781195688823, + "2023-11-24": 0.6464170601276681, + "2023-08-21": 0.4749841019154872, + "2023-07-25": 0.5916383941053821, + "2024-05-16": 2.0645106465113487, + "2023-08-14": 0.5826999203193315, + "2024-05-01": 2.0287460909058055, + "2024-03-05": 2.88395293963497, + "2024-04-06": 3.172544897108868, + "2023-12-23": 1.465608625606065, + "2024-02-03": 1.5380074681434377, + "2024-02-16": 2.54524360177603, + "2023-05-28": 0.6152714814457425, + "2023-12-14": 1.078724373943563, + "2023-06-24": 0.7467297470519765, + "2023-12-26": 1.529481056676007, + "2023-11-09": 0.7091411676065178, + "2023-08-19": 0.4828663719511494, + "2024-05-09": 2.0605566493779457, + "2024-01-17": 1.5932983901625892, + "2023-06-23": 0.7788220093262036, + "2023-06-18": 0.5613545661122069, + "2024-04-23": 3.0315270854801426, + "2023-08-08": 0.6046797528632768, + "2023-08-17": 0.46944546936125925, + "2024-04-14": 2.611976422996925, + "2023-07-24": 0.5915229685873368, + "2023-10-14": 0.5058618486886739, + "2024-05-22T20": 2.0617552907917656, + "2024-05-25T08": 1.9706411501, + "2024-05-22T05": 2.1138348540000003, + "2024-05-28T03": 2.0015575194000004, + "2024-05-22T16": 2.08299996, + "2024-05-25T05": 1.9763091600000002, + "2024-05-24T22": 1.9697242, + "2024-05-27T14": 2.0155477599999996, + "2024-05-22T03": 2.126753288, + "2024-05-23T17": 1.994642847, + "2024-05-24T23": 1.9656461200000002, + "2024-05-26T19": 1.980729828, + "2024-05-26T18": 1.97297352, + "2024-05-26T10": 1.9942618500000002, + "2024-05-27T16": 2.1159031799999997, + "2024-05-24T12": 1.93699224, + "2024-05-26T01": 2.019798, + "2024-05-21T17": 2.185431714, + "2024-05-23T07": 2.0633605818, + "2024-05-22T08": 2.11787634, + "2024-05-23T09": 2.05532152, + "2024-05-24T18": 1.9950020000000002, + "2024-05-23T01": 2.071143178, + "2024-05-25T15": 1.99410057, + "2024-05-23T16": 1.9917247610000002, + "2024-05-25T03": 1.988484387, + "2024-05-28T06": 1.97619172549721, + "2024-05-25T23": 1.99166136, + "2024-05-24T13": 1.931003082940413, + "2024-05-26T03": 2.002097389042092, + "2024-05-26T00": 1.99374078, + "2024-05-25T06": 1.975029438, + "2024-05-27T04": 1.9959461539525936, + "2024-05-22T10": 2.1090359100000002, + "2024-05-27T09": 1.9791955603224067, + "2024-05-24T17": 1.968872726, + "2024-05-26T16": 1.9741705, + "2024-05-22T09": 2.110003030111694, + "2024-05-24T21": 1.9843689018669899, + "2024-05-25T04": 1.98440592, + "2024-05-27T22": 2.0828732999999997, + "2024-05-27T11": 1.9857680600000003, + "2024-05-23T21": 2.00149775, + "2024-05-23T10": 2.046383515, + "2024-05-23T14": 2.0090150999999996, + "2024-05-27T02": 1.99981941, + "2024-05-25T18": 1.98970245, + "2024-05-27T05": 1.9813141151247322, + "2024-05-22T23": 2.059372865, + "2024-05-28T01": 2.0643472, + "2024-05-22T04": 2.109830192, + "2024-05-22T15": 2.080496481, + "2024-05-24T03": 2.0181365263606827, + "2024-05-24T08": 1.90444755, + "2024-05-21T22": 2.172769714, + "2024-05-21T16": 2.182161267, + "2024-05-21T23": 2.171143964, + "2024-05-24T02": 2.0120030573379006, + "2024-05-26T07": 1.99126296, + "2024-05-27T07": 1.9748341600000001, + "2024-05-25T22": 1.9846427, + "2024-05-24T16": 1.944268857433857, + "2024-05-27T20": 2.101654124, + "2024-05-22T02": 2.1436140800000003, + "2024-05-24T06": 1.9479425279999998, + "2024-05-24T11": 1.93413882, + "2024-05-25T21": 1.9866026, + "2024-05-27T15": 2.06122582, + "2024-05-21T19": 2.1632958767, + "2024-05-22T19": 2.0714887766504604, + "2024-05-21T12": 2.234385973, + "2024-05-23T20": 1.9475382499999998, + "2024-05-23T08": 2.0630894545977023, + "2024-05-22T22": 2.06307444, + "2024-05-26T11": 1.9940344338606333, + "2024-05-24T01": 2.010879882896835, + "2024-05-23T05": 2.0722144300000003, + "2024-05-28T04": 1.9715597099999997, + "2024-05-25T09": 1.978687416, + "2024-05-27T18": 2.13184466, + "2024-05-24T10": 1.9290157, + "2024-05-25T19": 1.9885027499999999, + "2024-05-24T07": 1.9164632400000001, + "2024-05-26T04": 1.9924818199999998, + "2024-05-26T09": 1.9812072, + "2024-05-23T02": 2.068024068, + "2024-05-27T06": 1.97805008, + "2024-05-28T08": 1.9752397208315842, + "2024-05-24T15": 1.9678079976752527, + "2024-05-25T20": 1.9775055000000001, + "2024-05-27T08": 1.9829896303353869, + "2024-05-23T22": 1.99975938, + "2024-05-26T15": 1.986497386, + "2024-05-24T20": 1.9904009400000002, + "2024-05-21T20": 2.174807512226754, + "2024-05-25T13": 1.975323416, + "2024-05-22T01": 2.143042804, + "2024-05-25T17": 1.9915562401199272, + "2024-05-27T10": 1.980230298947705, + "2024-05-21T21": 2.1645237, + "2024-05-24T19": 1.983584898, + "2024-05-26T02": 1.995280495, + "2024-05-27T19": 2.113639190140896, + "2024-05-25T11": 1.9977003, + "2024-05-27T17": 2.13080301, + "2024-05-21T18": 2.190747936, + "2024-05-26T06": 1.99332204, + "2024-05-23T00": 2.076698766, + "2024-05-22T00": 2.1534250325820503, + "2024-05-24T05": 1.9809099, + "2024-05-23T15": 2.0003587039999995, + "2024-05-22T13": 2.0491745659999996, + "2024-05-21T10": 2.2585739166318715, + "2024-05-22T12": 2.059935465992131, + "2024-05-23T04": 2.079110152, + "2024-05-26T08": 1.99016378, + "2024-05-26T13": 1.9763673599999998, + "2024-05-28T05": 1.9782755539999999, + "2024-05-22T18": 2.0497539999999996, + "2024-05-22T06": 2.12803173, + "2024-05-21T08": 2.204299476892279, + "2024-05-22T17": 2.0739681119999998, + "2024-05-23T19": 1.9852718679999999, + "2024-05-25T07": 1.9722305299999998, + "2024-05-26T22": 1.985941744001314, + "2024-05-25T16": 2.00021993, + "2024-05-26T05": 1.98750357, + "2024-05-24T04": 2.00787496, + "2024-05-21T14": 2.19565095, + "2024-05-25T12": 1.9809414600842374, + "2024-05-28T07": 1.9643878799999999, + "2024-05-23T18": 1.954411382, + "2024-05-26T23": 1.9790496, + "2024-05-24T09": 1.9151378000000001, + "2024-05-23T03": 2.073377928962739, + "2024-05-26T14": 1.9852254599999999, + "2024-05-21T13": 2.2119575200000003, + "2024-05-22T14": 2.0593438269999997, + "2024-05-25T14": 1.97186196, + "2024-05-25T00": 1.9891449082053114, + "2024-05-23T23": 1.9992199560000001, + "2024-05-21T11": 2.2393952, + "2024-05-23T13": 2.04828285, + "2024-05-22T11": 2.0826250600000002, + "2024-05-21T15": 2.1664799199999996, + "2024-05-28T00": 2.0673448, + "2024-05-27T23": 2.073556748, + "2024-05-28T02": 2.0271088286000003, + "2024-05-26T21": 1.9620185, + "2024-05-26T12": 1.9843647999999998, + "2024-05-23T06": 2.067104954011958, + "2024-05-22T07": 2.117818724, + "2024-05-27T12": 1.9816119, + "2024-05-22T21": 2.056338873, + "2024-05-24T00": 2.0070964, + "2024-05-25T02": 1.9885624199999998, + "2024-05-27T00": 1.9852069, + "2024-05-26T20": 1.9728896450509479, + "2024-05-26T17": 1.9739335, + "2024-05-27T13": 1.9930635784000001, + "2024-05-23T12": 2.04799599, + "2024-05-25T10": 1.98146486, + "2024-05-21T09": 2.2120575, + "2024-05-23T11": 2.0578733073329163, + "2024-05-24T14": 1.954111595, + "2024-05-25T01": 1.979604, + "2024-05-27T21": 2.0858911200000003, + "2024-05-27T03": 2.007614808, + "2024-05-27T01": 1.9940224500000001, + "latest": 1.88, + "2024-05-28T09": 1.9859577813317877, + "2024-05-28T10": 2.007099574757532, + "2024-05-28T11": 1.9931889760302504, + "2024-05-28T12": 1.98699111, + "2024-05-28T13": 1.9768858011624972, + "2024-05-28T14": 1.971546235, + "2024-05-28T15": 1.9640820257999998, + "2024-05-29": 1.9699173164812043, + "2024-05-28T20": 1.990347546, + "2024-05-28T22": 1.9831737999999999, + "2024-05-28T21": 1.978804366, + "2024-05-28T19": 1.9863254805356079, + "2024-05-29T02": 1.995562448, + "2024-05-28T17": 1.976022, + "2024-05-28T18": 1.9675375, + "2024-05-28T23": 1.9820967177200761, + "2024-05-29T00": 1.9832092436230477, + "2024-05-29T01": 1.9816093478999999, + "2024-05-28T16": 1.9702290850000002, + "2024-05-29T06": 1.9995775799999997, + "2024-05-29T05": 2.0011358699999997, + "2024-05-29T03": 1.9998778799999999, + "2024-05-29T07": 1.9808583600000003, + "2024-05-29T04": 2.0031534073999997, + "2024-05-29T08": 1.96179624, + "2024-05-29T09": 1.9711848399999998, + "2024-05-29T10": 1.9720852199999999, + "2024-05-29T11": 1.9750427699999997, + "2024-05-29T12": 1.96908813, + "2024-05-29T13": 1.9690629320000002, + "2024-05-29T14": 1.9645451600000001, + "2024-05-29T15": 1.956447072, + "2024-05-29T18": 1.948978234944036, + "2024-05-29T17": 1.9572903657722267, + "2024-05-29T23": 1.93547464, + "2024-05-29T19": 1.94675793089602, + "2024-05-29T22": 1.9418421599999998, + "2024-05-29T20": 1.9370298251682356, + "2024-05-29T16": 1.9396607099999998, + "2024-05-29T21": 1.933283946704838, + "2024-05-30": 1.9428392527806317, + "2024-05-30T00": 1.9395963630667312, + "2024-05-30T05": 1.9395779149999999, + "2024-05-30T02": 1.9563799124999999, + "2024-05-30T01": 1.9409870138620373, + "2024-05-30T06": 1.9174648, + "2024-05-30T07": 1.9043327899981313, + "2024-05-30T03": 1.9506564, + "2024-05-30T04": 1.95267355, + "2024-05-30T08": 1.90405986928867, + "2024-05-30T09": 1.9032573599999998, + "2024-05-30T10": 1.912224268, + "2024-05-30T11": 1.9193640548, + "2024-05-30T12": 1.9324362846236391, + "2024-05-30T13": 1.951120770749807, + "2024-05-30T14": 1.9920832199999998, + "2024-05-30T15": 1.9612246700455516, + "2024-05-30T21": 1.9256148000000002, + "2024-05-30T20": 1.94263083, + "2024-05-30T18": 1.9804849399999997, + "2024-05-30T22": 1.9183283500000001, + "2024-05-30T16": 1.96529224, + "2024-05-30T17": 1.9912430399999999, + "2024-05-30T19": 1.9694523315944399, + "2024-05-31": 1.8990863542731349, + "2024-05-30T23": 1.9173287000000003, + "2024-05-31T03": 1.9144358738265348, + "2024-05-31T07": 1.90672781, + "2024-05-31T06": 1.9157251100000001, + "2024-05-31T04": 1.91611818, + "2024-05-31T02": 1.9141957, + "2024-05-31T05": 1.902319729, + "2024-05-31T00": 1.90246716, + "2024-05-31T01": 1.91254088, + "2024-05-31T08": 1.9043904, + "2024-05-31T09": 1.89535536, + "2024-05-31T10": 1.9021820883013953, + "2024-05-31T11": 1.9088471625460468, + "2024-05-31T12": 1.942014648, + "2024-05-31T13": 1.9170323270312346, + "2024-05-31T14": 1.9009158600000002, + "2024-06-01": 1.828960154990504, + "2024-06-01T08": 1.814904646738788, + "2024-06-01T02": 1.8172627090000002, + "2024-06-01T05": 1.81758118, + "2024-05-31T21": 1.8352901952, + "2024-06-01T00": 1.8181435999999997, + "2024-05-31T18": 1.8160365600000001, + "2024-05-31T15": 1.8795262996255941, + "2024-05-31T23": 1.8315482660000002, + "2024-05-31T22": 1.8348896824657392, + "2024-06-01T01": 1.8130669510000001, + "2024-06-01T07": 1.810553254669664, + "2024-06-01T04": 1.8173995239999998, + "2024-05-31T19": 1.82458836, + "2024-06-01T06": 1.81456536, + "2024-05-31T20": 1.8378472, + "2024-05-31T17": 1.8254002272, + "2024-05-31T16": 1.8192352249000001, + "2024-06-01T03": 1.82144168, + "2024-06-01T09": 1.8176172959999999, + "2024-06-01T10": 1.81739928, + "2024-06-02": 1.836663383696252, + "2024-06-01T13": 1.8233575, + "2024-06-01T15": 1.8401395800000002, + "2024-06-01T18": 1.84235884, + "2024-06-01T12": 1.81641834, + "2024-06-01T21": 1.8416794452, + "2024-06-01T20": 1.84435706, + "2024-06-02T01": 1.853795776, + "2024-06-01T17": 1.84182536, + "2024-06-01T11": 1.812103944, + "2024-06-02T00": 1.8369540747499395, + "2024-06-01T23": 1.83547529, + "2024-06-01T14": 1.83499767, + "2024-06-01T22": 1.84244985893422, + "2024-06-01T19": 1.84235884, + "2024-06-01T16": 1.8363274200000002, + "2024-06-02T13": 1.87165144, + "2024-06-02T11": 1.8580100726836963, + "2024-06-02T07": 1.84450474, + "2024-06-02T05": 1.8454485200000001, + "2024-06-02T08": 1.8501576974466396, + "2024-06-02T04": 1.8525976492695917, + "2024-06-02T10": 1.83763914, + "2024-06-02T12": 1.86167727, + "2024-06-02T02": 1.855402194325986, + "2024-06-02T16": 1.8654877300000001, + "2024-06-02T17": 1.8395629034557741, + "2024-06-02T03": 1.8579194250000002, + "2024-06-02T09": 1.845033664, + "2024-06-02T15": 1.87144541, + "2024-06-02T06": 1.8464291999999998, + "2024-06-02T18": 1.8228873599999997, + "2024-06-02T14": 1.8779487310701055, + "2024-06-03": 1.8231470743915155, + "2024-06-03T01": 1.8475107403765147, + "2024-06-02T20": 1.82793918, + "2024-06-03T00": 1.8230767935949792, + "2024-06-02T21": 1.826837099741135, + "2024-06-02T23": 1.8250139600000002, + "2024-06-02T19": 1.8289203, + "2024-06-02T22": 1.8230150399999998, + "2024-06-03T02": 1.8659247540000001, + "2024-06-03T05": 1.8724758400000001, + "2024-06-03T06": 1.8927878400000002, + "2024-06-03T04": 1.8562870868227486, + "2024-06-03T03": 1.85790319, + "2024-06-03T07": 1.89178848 + }, + "USD stellar": { + "2023-07-30": 0.15747902786456158, + "2023-10-23": 0.11228176659922706, + "2023-07-27": 0.15923871924164792, + "2023-07-10": 0.09863828109216594, + "2023-08-20": 0.12967934876719886, + "2024-02-23": 0.11490695390348458, + "2024-04-05": 0.1272992405195172, + "2023-12-19": 0.12079991089641551, + "2024-05-17": 0.10813418271188636, + "2023-08-06": 0.14021380486404106, + "2023-12-02": 0.120287, + "2023-10-31": 0.12037689884815808, + "2023-08-29": 0.12290900552163818, + "2023-06-20": 0.080101, + "2023-09-09": 0.13042515318896564, + "2023-06-26": 0.091566, + "2023-10-01": 0.11290928308163127, + "2024-03-07": 0.14088396222501887, + "2023-10-12": 0.10198348302081403, + "2024-04-22": 0.11632696241139065, + "2023-07-05": 0.101128, + "2023-07-29": 0.15925216323672103, + "2024-04-26": 0.11354595191339, + "2024-01-08": 0.11680775404291327, + "2023-05-29": 0.089092, + "2023-10-07": 0.11103686260555574, + "2023-09-26": 0.11179359673716138, + "2023-08-24": 0.12565999720947824, + "2023-12-05": 0.121587, + "2024-02-19": 0.11716514614950584, + "2024-01-07": 0.11856719862235977, + "2024-04-28": 0.11432, + "2023-07-31": 0.15454854135494867, + "2023-10-18": 0.10354170375858085, + "2024-05-19": 0.106177, + "2024-05-12": 0.10540033392489084, + "2024-04-29": 0.11115641240435088, + "2023-08-25": 0.12244556075480399, + "2024-03-09": 0.14250330830482755, + "2023-07-12": 0.09719215210345851, + "2023-09-05": 0.1246229865611034, + "2023-06-07": 0.088281, + "2023-09-16": 0.1192968701409676, + "2024-04-25": 0.1137800420168865, + "2023-08-12": 0.13867518841314583, + "2023-06-06": 0.088078, + "2023-09-01": 0.11553948333656376, + "2023-09-08": 0.12486830995728089, + "2024-03-22": 0.1295612789296485, + "2023-08-10": 0.13933869885094247, + "2023-12-07": 0.12431525766847543, + "2023-11-18": 0.11754592186275901, + "2023-07-13": 0.1457924858908988, + "2023-09-13": 0.12026250081730548, + "2023-06-17": 0.07918, + "2023-07-17": 0.12801780685178143, + "2023-07-07": 0.096358, + "2023-09-07": 0.122727338507749, + "2024-03-26": 0.13821465313486003, + "2024-05-14": 0.10314734135883752, + "2024-02-22": 0.11586493696954843, + "2024-04-15": 0.10873914025160318, + "2023-12-30": 0.13388139185144357, + "2023-09-17": 0.11693446931051783, + "2024-04-17": 0.10833441132125507, + "2024-02-12": 0.11115778250000001, + "2023-10-26": 0.11426035583619668, + "2024-01-03": 0.12158712037257753, + "2024-05-07": 0.109312, + "2023-06-01": 0.09206, + "2024-01-22": 0.11368384069222473, + "2023-06-12": 0.082971, + "2023-10-03": 0.11139896600075702, + "2024-05-26": 0.109395, + "2024-04-30": 0.10721, + "2023-06-19": 0.079785, + "2023-07-09": 0.09906, + "2023-12-24": 0.12676311317996714, + "2023-09-24": 0.1132167926, + "2024-01-16": 0.11842455305110067, + "2023-10-17": 0.10567471875424045, + "2024-04-24": 0.11789130437512721, + "2024-03-18": 0.13002008967347253, + "2024-02-17": 0.11403959037719893, + "2023-12-27": 0.1296766959226916, + "2023-07-23": 0.15595394239663438, + "2023-09-03": 0.1160713233679256, + "2024-02-24": 0.11643829404522034, + "2024-01-06": 0.11922480434535837, + "2024-03-20": 0.12437989476149508, + "2023-11-21": 0.1175407256048366, + "2023-12-25": 0.1295088450362139, + "2023-09-22": 0.114413, + "2023-10-02": 0.11346339426216384, + "2024-03-27": 0.1354945712787825, + "2024-05-06": 0.111322, + "2023-08-30": 0.12232073828613516, + "2023-10-06": 0.11101970766409203, + "2023-10-13": 0.10262643364839365, + "2023-06-28": 0.10260022816723537, + "2024-02-05": 0.10852023627876728, + "2024-03-01": 0.12464521183494084, + "2023-07-15": 0.13199389820236293, + "2023-06-25": 0.091539, + "2023-12-10": 0.13328101479115187, + "2023-11-23": 0.117218, + "2023-08-04": 0.13990373090571942, + "2024-05-13": 0.104363, + "2024-01-13": 0.1195636574308563, + "2024-03-28": 0.13736315798194873, + "2023-08-05": 0.13628686008323404, + "2024-02-09": 0.11130220147740026, + "2023-10-09": 0.10602100636804698, + "2024-01-09": 0.11631648453213976, + "2024-05-10": 0.10669188008617982, + "2023-05-27": 0.087894, + "2023-08-18": 0.11553856986683579, + "2023-11-05": 0.12487489103637452, + "2024-04-18": 0.108735202741919, + "2023-10-22": 0.10982800914180438, + "2023-11-01": 0.12088602473804919, + "2024-05-20": 0.10751537550000001, + "2023-12-08": 0.1281671352886579, + "2024-04-12": 0.11928960024571444, + "2023-07-06": 0.0989564143007166, + "2024-03-12": 0.1497996277508897, + "2023-09-11": 0.12751948580316086, + "2024-03-03": 0.13463935366808014, + "2024-02-04": 0.10975826538914996, + "2024-01-28": 0.11488851, + "2023-07-01": 0.10720355058901686, + "2023-11-07": 0.1271433159730216, + "2023-11-25": 0.120292, + "2023-06-04": 0.09214, + "2024-02-25": 0.11606211218632542, + "2023-12-01": 0.11933152800879011, + "2023-07-14": 0.1450874235252229, + "2024-01-26": 0.11498571914994356, + "2023-08-03": 0.14169214102504393, + "2024-02-28": 0.12195104366915667, + "2023-09-15": 0.119527, + "2023-07-18": 0.12845618971040107, + "2023-12-21": 0.12280323497769403, + "2023-07-20": 0.16612443173153338, + "2024-03-06": 0.13425922963969944, + "2023-09-30": 0.112265, + "2023-12-12": 0.12299192422257553, + "2024-02-13": 0.1116688523871277, + "2023-09-20": 0.11760914131603403, + "2023-09-19": 0.11834142500163705, + "2023-09-29": 0.11464, + "2023-09-12": 0.12873774328756818, + "2023-06-13": 0.083305, + "2023-10-04": 0.11289592618778387, + "2023-07-08": 0.098455, + "2024-04-16": 0.10727457532649488, + "2024-03-02": 0.13358489332865614, + "2023-06-27": 0.09730614190871566, + "2023-10-08": 0.11086720140314861, + "2023-11-20": 0.12056862048392793, + "2023-12-20": 0.1213086089372719, + "2023-12-31": 0.13086122888009394, + "2023-11-06": 0.13073735187318336, + "2023-08-22": 0.120382, + "2023-06-09": 0.087676, + "2024-03-17": 0.13019967928997495, + "2023-09-18": 0.11788289572598595, + "2024-04-01": 0.13628078034394522, + "2024-05-21": 0.1127471471051789, + "2024-01-19": 0.11297899444557086, + "2023-11-11": 0.12490068707919, + "2023-09-23": 0.114132, + "2023-11-19": 0.11930267742973204, + "2023-07-02": 0.106591, + "2023-08-15": 0.13421277366701165, + "2024-01-25": 0.11174701882724422, + "2024-03-13": 0.15037072239542917, + "2024-01-21": 0.11593022124138028, + "2024-02-01": 0.10903549688217302, + "2023-06-15": 0.07693247536719497, + "2024-03-16": 0.13646336832510667, + "2023-11-27": 0.11618982264785702, + "2024-01-10": 0.1160709934581517, + "2024-03-15": 0.13430109132252027, + "2023-06-21": 0.08404, + "2024-01-02": 0.13178852994065804, + "2023-07-11": 0.09977, + "2023-10-25": 0.1141129582532639, + "2024-01-01": 0.12970309238803265, + "2024-02-14": 0.11327351309727697, + "2023-09-04": 0.12307133332780995, + "2023-09-06": 0.12086701837666816, + "2024-04-03": 0.12872621443485094, + "2023-11-28": 0.11699099621057255, + "2023-12-03": 0.12160065230298538, + "2023-08-02": 0.14826944956765606, + "2023-08-27": 0.1211761257049317, + "2023-10-20": 0.10842717791676898, + "2023-10-10": 0.10478393203282416, + "2024-05-03": 0.11071297643638162, + "2024-03-08": 0.14131113997348538, + "2024-04-11": 0.1299944252638203, + "2023-06-22": 0.087375, + "2024-01-14": 0.11960094417146014, + "2023-12-15": 0.12565653715203895, + "2023-10-19": 0.10324837020001908, + "2024-02-08": 0.10937474161429488, + "2023-11-08": 0.12738690382323856, + "2023-11-12": 0.12471313915362114, + "2023-12-22": 0.12513480686225853, + "2023-05-31": 0.090907, + "2024-03-23": 0.13170302186032506, + "2023-09-27": 0.112729, + "2024-03-04": 0.14620798976004398, + "2023-09-10": 0.13110267235364165, + "2024-04-13": 0.11032963234231843, + "2024-02-29": 0.12538112868786844, + "2023-07-21": 0.1592862788551557, + "2023-06-30": 0.10843794230331597, + "2023-12-29": 0.1300195639807539, + "2023-12-04": 0.12193107008021334, + "2024-04-10": 0.12911172167081497, + "2024-05-08": 0.108002, + "2023-09-21": 0.11379441842053728, + "2023-06-02": 0.091987, + "2024-04-21": 0.1143621481850374, + "2023-07-22": 0.16041477435569015, + "2023-10-11": 0.10339745622860523, + "2024-03-21": 0.13182023653736347, + "2023-07-19": 0.14238916185052058, + "2024-05-05": 0.11039820368070516, + "2024-05-23": 0.10854135611575454, + "2024-04-08": 0.13265536376784742, + "2024-05-18": 0.108378, + "2023-06-14": 0.081431, + "2023-10-05": 0.11132237008487636, + "2023-10-16": 0.10752159272538338, + "2024-05-22": 0.111054, + "2024-02-10": 0.11186008118827317, + "2024-04-07": 0.1297517710593676, + "2024-02-20": 0.11820363067247643, + "2023-11-17": 0.1181058739816365, + "2023-12-11": 0.12459897516589809, + "2023-11-26": 0.12094662031779423, + "2023-11-16": 0.12138547628560854, + "2023-06-29": 0.10228241731076497, + "2023-10-27": 0.11231595047410003, + "2023-06-11": 0.082669, + "2024-02-02": 0.10976392644041547, + "2023-09-14": 0.11930802048835643, + "2024-01-27": 0.11618635057098985, + "2024-03-30": 0.14023203488304908, + "2023-11-22": 0.1163206040909774, + "2023-09-28": 0.11326073649088585, + "2023-06-03": 0.092462, + "2024-01-18": 0.1158751909612456, + "2023-08-26": 0.12242062270447102, + "2024-02-15": 0.11560059337841515, + "2023-10-28": 0.11336927708426044, + "2024-03-24": 0.133899, + "2024-04-27": 0.11315, + "2023-12-06": 0.12261225917052349, + "2024-01-30": 0.11549242851199919, + "2023-11-14": 0.120294624075643, + "2023-08-09": 0.14231937287998123, + "2024-05-15": 0.10450274102133977, + "2023-11-10": 0.12282699605466126, + "2024-01-23": 0.10944051024268213, + "2024-01-31": 0.111085548, + "2024-05-11": 0.10637026934410045, + "2024-01-11": 0.12282539083318932, + "2024-02-18": 0.11523119222066229, + "2023-06-16": 0.07729180580999588, + "2023-10-30": 0.1173135789934775, + "2023-12-17": 0.12418958342272618, + "2024-02-26": 0.11608564851451252, + "2023-07-16": 0.13285865856010826, + "2024-01-05": 0.11825047529858494, + "2023-08-23": 0.12404041256229408, + "2024-03-11": 0.1472711521975922, + "2023-08-01": 0.14827256147316345, + "2024-03-14": 0.14571863797271634, + "2024-02-21": 0.11343635585348821, + "2023-08-28": 0.11953217349814486, + "2023-07-04": 0.10498, + "2023-12-13": 0.1207522239913812, + "2024-02-27": 0.11981470783174376, + "2023-08-13": 0.1385145192794626, + "2024-03-31": 0.14041693632479296, + "2023-12-09": 0.135, + "2024-04-02": 0.12940716108475245, + "2024-02-06": 0.10819769272289283, + "2024-04-09": 0.13331113521692178, + "2023-11-04": 0.12281576465255392, + "2024-04-20": 0.113709, + "2024-01-15": 0.11927425009125792, + "2023-07-03": 0.1069, + "2023-12-28": 0.132801989774299, + "2023-05-30": 0.089901, + "2024-05-25": 0.11098489568822005, + "2024-02-07": 0.10784001890459137, + "2023-09-25": 0.112186, + "2024-03-19": 0.12486354156690388, + "2024-03-10": 0.14204075999662064, + "2024-05-02": 0.10919726988896543, + "2023-09-02": 0.1131212785138429, + "2024-01-12": 0.1227957629004769, + "2024-04-19": 0.11175911696009223, + "2023-11-29": 0.11883317012831635, + "2023-10-15": 0.10503304041307011, + "2024-05-28": 0.107989, + "2023-11-30": 0.11879953548959475, + "2024-01-24": 0.11167176991974155, + "2023-08-11": 0.1395374024647163, + "2024-02-11": 0.11194252361584327, + "2023-06-08": 0.08732245816445254, + "2023-11-15": 0.11960119828256144, + "2023-12-16": 0.12470849788987254, + "2024-03-29": 0.14185285138082485, + "2024-04-04": 0.1281356558853982, + "2023-06-10": 0.08129527203632485, + "2023-07-28": 0.16174548729789812, + "2024-01-20": 0.114121202, + "2023-10-21": 0.10945403187046177, + "2023-08-16": 0.12874804386097338, + "2024-05-24": 0.10954990111885518, + "2023-11-03": 0.12022407772758638, + "2023-08-31": 0.11937484919501842, + "2024-05-27": 0.10971740215570136, + "2024-01-04": 0.12101274532840957, + "2023-07-26": 0.14370865600949306, + "2023-11-13": 0.12340446659849352, + "2023-10-24": 0.1154714448448315, + "2024-03-25": 0.13703134388025828, + "2023-08-07": 0.14056156349646678, + "2023-10-29": 0.11557327777277324, + "2024-01-29": 0.11488628748176867, + "2024-05-04": 0.11135020281682413, + "2023-06-05": 0.08831652154233328, + "2023-11-02": 0.12080582637554249, + "2023-12-18": 0.11982216879374293, + "2023-11-24": 0.117992, + "2023-08-21": 0.12493515864689672, + "2023-07-25": 0.1442746313916211, + "2024-05-16": 0.10648490801994233, + "2023-08-14": 0.13685542562724612, + "2024-05-01": 0.107085, + "2024-03-05": 0.14642240921114139, + "2024-04-06": 0.12861907962630162, + "2023-12-23": 0.12587091064892394, + "2024-02-03": 0.11119456314434892, + "2024-02-16": 0.11653700165796556, + "2023-05-28": 0.088364, + "2023-12-14": 0.12551973590364676, + "2023-06-24": 0.090223, + "2023-12-26": 0.12688802944404276, + "2023-11-09": 0.12809788152479828, + "2023-08-19": 0.12078682746145165, + "2024-05-09": 0.107218, + "2024-01-17": 0.11804853816308648, + "2023-06-23": 0.088148, + "2023-06-18": 0.080168, + "2024-04-23": 0.11673979050121025, + "2023-08-08": 0.1416602221774666, + "2023-08-17": 0.12320341644752862, + "2024-04-14": 0.10749492698636832, + "2023-07-24": 0.14709830008893585, + "2023-10-14": 0.10386250271776805, + "2024-05-22T20": 0.110218, + "2024-05-25T08": 0.11105667100000001, + "2024-05-22T05": 0.111746, + "2024-05-28T03": 0.10880621425924555, + "2024-05-22T16": 0.11165806250975055, + "2024-05-25T05": 0.111435408, + "2024-05-24T22": 0.11028455799999999, + "2024-05-27T14": 0.10976739206917405, + "2024-05-22T03": 0.11195178859168368, + "2024-05-23T17": 0.1077412914, + "2024-05-24T23": 0.11018016400000001, + "2024-05-26T19": 0.1089017859321344, + "2024-05-26T18": 0.10894253960693259, + "2024-05-26T10": 0.10954147357571498, + "2024-05-27T16": 0.111104, + "2024-05-24T12": 0.1097728884, + "2024-05-26T01": 0.111222, + "2024-05-21T17": 0.11322497255150912, + "2024-05-23T07": 0.11113216799999999, + "2024-05-22T08": 0.1119744276138177, + "2024-05-23T09": 0.110563502, + "2024-05-24T18": 0.10984505, + "2024-05-23T01": 0.110843441, + "2024-05-25T15": 0.11138886, + "2024-05-23T16": 0.10798543860000001, + "2024-05-25T03": 0.11109504796392179, + "2024-05-28T06": 0.107812, + "2024-05-25T23": 0.1107411708, + "2024-05-24T13": 0.109704138, + "2024-05-26T03": 0.1103782463654539, + "2024-05-26T00": 0.111054, + "2024-05-25T06": 0.11115663199999999, + "2024-05-27T04": 0.10914505205812666, + "2024-05-22T10": 0.111391, + "2024-05-27T09": 0.10855790334702325, + "2024-05-24T17": 0.109254094, + "2024-05-26T16": 0.10918597042932673, + "2024-05-22T09": 0.111391, + "2024-05-24T21": 0.11004009549999999, + "2024-05-25T04": 0.11146618556664413, + "2024-05-27T22": 0.110417, + "2024-05-27T11": 0.10880298916910376, + "2024-05-23T21": 0.10774912749999999, + "2024-05-23T10": 0.1100514685, + "2024-05-23T14": 0.1087766733, + "2024-05-27T02": 0.10923019923905453, + "2024-05-25T18": 0.11096225250000001, + "2024-05-27T05": 0.1088, + "2024-05-22T23": 0.11067403042014362, + "2024-05-28T01": 0.11000172971715466, + "2024-05-22T04": 0.111026, + "2024-05-22T15": 0.11151510301944476, + "2024-05-24T03": 0.1096750148, + "2024-05-24T08": 0.1079286916, + "2024-05-21T22": 0.1121174765, + "2024-05-21T16": 0.1128814401, + "2024-05-21T23": 0.1122164296, + "2024-05-24T02": 0.109558352, + "2024-05-26T07": 0.11035, + "2024-05-27T07": 0.1081639955574158, + "2024-05-25T22": 0.110580092, + "2024-05-24T16": 0.1090141948, + "2024-05-27T20": 0.110381, + "2024-05-22T02": 0.112227, + "2024-05-24T06": 0.108552216, + "2024-05-24T11": 0.1094343, + "2024-05-25T21": 0.11067786, + "2024-05-27T15": 0.11062695922336654, + "2024-05-21T19": 0.1118730697, + "2024-05-22T19": 0.11031116546849562, + "2024-05-21T12": 0.11269407440000001, + "2024-05-23T20": 0.10540089, + "2024-05-23T08": 0.1107957012, + "2024-05-22T22": 0.110749, + "2024-05-26T11": 0.109662, + "2024-05-24T01": 0.109466196, + "2024-05-23T05": 0.111230994, + "2024-05-28T04": 0.107988, + "2024-05-25T09": 0.1110300148, + "2024-05-27T18": 0.11085835571056961, + "2024-05-24T10": 0.1089544049, + "2024-05-25T19": 0.11096225250000001, + "2024-05-24T07": 0.1081597068, + "2024-05-26T04": 0.11022879230922131, + "2024-05-26T09": 0.10977327407090078, + "2024-05-23T02": 0.110992254, + "2024-05-27T06": 0.1083365630939783, + "2024-05-28T08": 0.107782, + "2024-05-24T15": 0.10993574817744012, + "2024-05-25T20": 0.110592345, + "2024-05-27T08": 0.1085, + "2024-05-23T22": 0.10838666044332468, + "2024-05-26T15": 0.10966536303842789, + "2024-05-24T20": 0.10978902, + "2024-05-21T20": 0.112562842, + "2024-05-25T13": 0.110884474, + "2024-05-22T01": 0.111954, + "2024-05-25T17": 0.110875602, + "2024-05-27T10": 0.10883099199692711, + "2024-05-21T21": 0.1117154172, + "2024-05-24T19": 0.1095260364, + "2024-05-26T02": 0.11045629981963852, + "2024-05-27T19": 0.109949, + "2024-05-25T11": 0.11147327650000001, + "2024-05-27T17": 0.111219, + "2024-05-21T18": 0.113045712, + "2024-05-26T06": 0.11025135187136136, + "2024-05-23T00": 0.1109711541, + "2024-05-22T00": 0.1122303259589861, + "2024-05-24T05": 0.10899002249999999, + "2024-05-23T15": 0.108521808, + "2024-05-22T13": 0.11014, + "2024-05-21T10": 0.11289870414537767, + "2024-05-22T12": 0.110099, + "2024-05-23T04": 0.11133093200000001, + "2024-05-26T08": 0.1099, + "2024-05-26T13": 0.10924432282010668, + "2024-05-28T05": 0.1078941195963451, + "2024-05-22T18": 0.11038876410073271, + "2024-05-22T06": 0.111928, + "2024-05-21T08": 0.11268463714313699, + "2024-05-22T17": 0.11171311320401739, + "2024-05-23T19": 0.107101376, + "2024-05-25T07": 0.11096735522591314, + "2024-05-26T22": 0.10899, + "2024-05-25T16": 0.111084446, + "2024-05-26T05": 0.11, + "2024-05-24T04": 0.110038344, + "2024-05-21T14": 0.1133816475, + "2024-05-25T12": 0.11099223, + "2024-05-28T07": 0.10772158956315694, + "2024-05-23T18": 0.10698398740000001, + "2024-05-26T23": 0.10888771336106717, + "2024-05-24T09": 0.108251265, + "2024-05-23T03": 0.111125496, + "2024-05-26T14": 0.10934098371120166, + "2024-05-21T13": 0.113057384, + "2024-05-22T14": 0.11082437236966866, + "2024-05-25T14": 0.11077889319532214, + "2024-05-25T00": 0.1102346402, + "2024-05-23T23": 0.1086621676, + "2024-05-21T11": 0.11285951970000001, + "2024-05-23T13": 0.10946167500000001, + "2024-05-22T11": 0.111, + "2024-05-21T15": 0.11357273600000001, + "2024-05-28T00": 0.11031817701588059, + "2024-05-27T23": 0.11024144374245948, + "2024-05-28T02": 0.1089, + "2024-05-26T21": 0.108208, + "2024-05-26T12": 0.10939645920919394, + "2024-05-23T06": 0.111030007, + "2024-05-22T07": 0.1118998000631965, + "2024-05-27T12": 0.108911, + "2024-05-22T21": 0.11042344883133995, + "2024-05-24T00": 0.1091208735, + "2024-05-25T02": 0.11097558, + "2024-05-27T00": 0.10864002679091636, + "2024-05-26T20": 0.10873605249063834, + "2024-05-26T17": 0.10916212718236067, + "2024-05-27T13": 0.10959045830252634, + "2024-05-23T12": 0.109646247, + "2024-05-25T10": 0.11126994899999999, + "2024-05-21T09": 0.11287742, + "2024-05-23T11": 0.11084455, + "2024-05-24T14": 0.109821971, + "2024-05-25T01": 0.110767842, + "2024-05-27T21": 0.11049438150525506, + "2024-05-27T03": 0.108908, + "2024-05-27T01": 0.10879978187682676, + "latest": 0.106901, + "2022-07-10": 0.10916379406930915, + "2023-02-03": 0.092449, + "2022-07-11": 0.10545718020543854, + "2022-09-30": 0.11473836776065086, + "2022-12-13": 0.08323157611570187, + "2022-04-14": 0.19577432506344664, + "2022-10-22": 0.11080595765864308, + "2023-04-13": 0.105031, + "2023-05-03": 0.092782, + "2021-06-28": 0.2604667742270606, + "2021-12-12": 0.2746420000146871, + "2022-04-24": 0.19155968923711914, + "2021-08-16": 0.39484642749931775, + "2022-03-18": 0.18871603292592717, + "2022-03-10": 0.17862225403771706, + "2022-11-20": 0.08896017859937153, + "2022-03-21": 0.1982086013781087, + "2022-02-05": 0.21317006671179492, + "2023-01-22": 0.0913041900033253, + "2022-04-19": 0.2036873348777895, + "2022-10-05": 0.118867, + "2021-09-24": 0.28062458167438303, + "2023-03-08": 0.08280243548292128, + "2022-04-05": 0.23001947334336548, + "2023-01-10": 0.079242, + "2022-06-09": 0.13992514041746107, + "2023-05-10": 0.0891, + "2022-03-24": 0.21133392531773446, + "2022-10-08": 0.12536185805937497, + "2021-12-17": 0.25541563356308566, + "2023-02-18": 0.09109137461758988, + "2022-09-06": 0.105167, + "2022-04-28": 0.1858833836845812, + "2022-03-20": 0.19690165686852099, + "2022-11-18": 0.08977333279934957, + "2022-09-09": 0.11007028996576551, + "2021-08-01": 0.29076289708934155, + "2021-10-28": 0.34203478929066167, + "2022-08-20": 0.109173, + "2021-12-04": 0.2832115265646002, + "2022-07-25": 0.10959366555134041, + "2022-07-30": 0.11965156920221345, + "2022-08-25": 0.11006, + "2022-10-31": 0.11071749181064772, + "2021-10-07": 0.3540232809128595, + "2022-04-15": 0.20393060218348377, + "2022-01-23": 0.19416693890417158, + "2022-05-29": 0.12573164358777458, + "2023-04-25": 0.092887, + "2022-04-04": 0.23314137352341652, + "2023-02-17": 0.088171, + "2021-07-29": 0.26843231186981575, + "2022-02-01": 0.2032733441182368, + "2023-04-11": 0.1059769973665983, + "2022-12-18": 0.07627, + "2022-01-09": 0.2589666406392068, + "2022-11-22": 0.08463954000612298, + "2023-01-18": 0.08693623581461499, + "2021-10-08": 0.3409477529191039, + "2022-12-06": 0.08574, + "2022-10-17": 0.11397805903041475, + "2022-03-03": 0.19116476100816004, + "2022-10-21": 0.109402, + "2023-05-23": 0.0881263195936484, + "2023-01-30": 0.0914821600481294, + "2022-02-12": 0.21693669697197526, + "2022-11-17": 0.08999522356375149, + "2022-01-29": 0.20077727985462812, + "2022-06-25": 0.12753209324888298, + "2021-12-19": 0.2600635205067442, + "2022-10-11": 0.1185850832239369, + "2021-07-08": 0.24503564142584064, + "2021-09-28": 0.2631465256840007, + "2021-10-03": 0.31616317705205554, + "2023-01-29": 0.093479, + "2023-03-24": 0.08988872804854485, + "2022-12-12": 0.08320359675803878, + "2023-02-26": 0.08798361131076142, + "2023-03-11": 0.07848902743725551, + "2022-11-09": 0.09372749362656793, + "2022-08-31": 0.104374, + "2023-01-15": 0.086907, + "2021-09-04": 0.3750319173746552, + "2023-03-10": 0.076828, + "2022-01-24": 0.18736423417974726, + "2022-12-04": 0.087, + "2023-05-09": 0.088911, + "2023-02-05": 0.0919184373090863, + "2023-04-30": 0.09517636458492787, + "2022-09-22": 0.11873150828591332, + "2022-07-19": 0.11591988235598104, + "2021-10-18": 0.3851278767570356, + "2021-11-30": 0.33923598395294347, + "2021-12-07": 0.2915923701197751, + "2022-06-06": 0.14643266034091407, + "2022-09-11": 0.114447, + "2022-05-30": 0.138520327088884, + "2022-10-25": 0.111290409641837, + "2022-06-05": 0.14434486956263212, + "2022-04-12": 0.19042398103025168, + "2021-12-24": 0.2826971086085984, + "2021-07-15": 0.2345850955416348, + "2021-09-09": 0.33381412197239424, + "2021-10-11": 0.34631868127129556, + "2021-08-18": 0.34452567842744036, + "2021-07-12": 0.2444030204173848, + "2022-08-07": 0.1231407023640144, + "2022-01-18": 0.25235242051821294, + "2021-12-15": 0.2609210973194156, + "2022-07-09": 0.11345221003807505, + "2023-02-06": 0.09087, + "2022-05-17": 0.13900888241248596, + "2022-11-28": 0.08715595179778851, + "2021-11-05": 0.36650025851680934, + "2021-08-12": 0.3306786511963828, + "2023-04-09": 0.10391, + "2022-12-15": 0.08258, + "2023-04-06": 0.105567, + "2022-02-04": 0.19937277872255216, + "2022-10-04": 0.11925756769416095, + "2023-02-24": 0.09041261840798816, + "2023-01-11": 0.07999620285031019, + "2023-04-27": 0.093944, + "2022-12-20": 0.0752, + "2023-03-18": 0.087428, + "2022-06-08": 0.14059731907699044, + "2021-09-15": 0.3358287991753204, + "2021-08-02": 0.278764655741123, + "2021-09-27": 0.2747975249763839, + "2021-09-17": 0.32269344784712245, + "2022-01-05": 0.2845876535493046, + "2021-07-25": 0.2590985161098848, + "2023-03-09": 0.079803, + "2021-09-29": 0.2686359868672564, + "2021-11-22": 0.3424671443790899, + "2023-04-20": 0.09701804996919336, + "2022-01-28": 0.19494, + "2021-12-05": 0.2810478736425355, + "2023-02-01": 0.089884, + "2022-12-02": 0.087637, + "2021-07-04": 0.2691330179866935, + "2022-07-16": 0.107854, + "2021-10-06": 0.3234239961184583, + "2022-07-14": 0.104316, + "2022-06-02": 0.1395013908579252, + "2022-07-28": 0.1126230448141229, + "2021-10-02": 0.3033473183452732, + "2021-07-05": 0.25917192323336763, + "2023-02-22": 0.091887, + "2022-07-24": 0.11360653287658017, + "2022-10-19": 0.111905, + "2022-10-15": 0.11278750590943044, + "2021-11-12": 0.37895487444357534, + "2021-07-10": 0.24238556599932543, + "2023-03-21": 0.09249992487973065, + "2022-03-31": 0.23558070993974917, + "2022-09-27": 0.114558, + "2022-09-16": 0.103418, + "2022-04-11": 0.19069628652274193, + "2022-11-19": 0.08912188113050504, + "2022-05-18": 0.13491208208497638, + "2022-04-22": 0.1961696127253501, + "2022-11-15": 0.09205847993063525, + "2022-03-13": 0.18518284184418043, + "2021-11-19": 0.3456598654220858, + "2022-01-20": 0.2469140356968783, + "2022-11-21": 0.08502040072345396, + "2022-04-26": 0.18586324099047996, + "2022-08-18": 0.120293, + "2021-09-18": 0.32312422139556907, + "2021-09-23": 0.2976311649610932, + "2022-11-02": 0.10887527764483054, + "2022-01-12": 0.27377098956052565, + "2022-01-21": 0.2219708302447299, + "2021-09-08": 0.32782139005890104, + "2023-03-15": 0.08590549717024598, + "2021-08-09": 0.29819161131994226, + "2022-09-14": 0.104526, + "2022-04-08": 0.20965868000712112, + "2022-07-05": 0.10804271448523345, + "2022-12-17": 0.07424, + "2022-01-10": 0.2508428073194954, + "2022-03-12": 0.18459605299237597, + "2022-11-13": 0.08921782210969328, + "2022-09-19": 0.10701199374595355, + "2022-10-12": 0.11608785728170568, + "2021-10-21": 0.3885490874949443, + "2022-10-24": 0.110411, + "2022-12-28": 0.07236233133088886, + "2022-12-07": 0.084363, + "2023-03-20": 0.088137, + "2021-08-27": 0.34052774162407207, + "2021-06-26": 0.23750870343886377, + "2022-02-25": 0.18432821790586454, + "2021-12-31": 0.26837847908846146, + "2023-04-28": 0.09451844634356446, + "2022-11-03": 0.109222, + "2021-12-22": 0.27241307757863825, + "2021-12-21": 0.26423392618557995, + "2022-12-26": 0.07462, + "2023-04-24": 0.0937, + "2022-01-04": 0.28337175164411044, + "2022-05-31": 0.1478569003129033, + "2022-11-14": 0.08755299024514282, + "2021-07-21": 0.22087691214669233, + "2021-08-26": 0.3403852686265127, + "2022-08-14": 0.127235, + "2021-11-15": 0.3848668064882755, + "2022-04-10": 0.20489813999369927, + "2022-07-26": 0.10433827694921165, + "2022-09-05": 0.10444, + "2023-03-03": 0.08441637042610094, + "2021-11-13": 0.3767594869753489, + "2021-11-03": 0.38214489014154474, + "2022-06-27": 0.12081898817525065, + "2023-01-01": 0.07181075915545779, + "2021-07-14": 0.2308608105596783, + "2021-07-01": 0.2666782641023996, + "2021-08-17": 0.36914550351450875, + "2023-04-01": 0.10955360793617851, + "2023-01-23": 0.09420942162166383, + "2022-02-09": 0.24045613672936889, + "2021-10-14": 0.3729381738243463, + "2021-07-24": 0.26587742495189326, + "2022-02-27": 0.18795198745922018, + "2021-09-14": 0.3226286916971012, + "2021-09-13": 0.31799766690348874, + "2022-01-16": 0.2585887426634914, + "2023-05-07": 0.092661, + "2022-12-08": 0.084598, + "2022-08-01": 0.11858549698928193, + "2023-05-24": 0.087251, + "2022-06-28": 0.11748701160698338, + "2022-02-23": 0.18732395134721685, + "2023-01-24": 0.094148, + "2021-11-11": 0.3909777205683731, + "2022-09-08": 0.102439, + "2021-12-02": 0.3268, + "2022-08-30": 0.1028044367249457, + "2023-02-10": 0.085785, + "2023-01-04": 0.073969, + "2022-05-07": 0.1696715611497925, + "2023-01-05": 0.073209, + "2022-10-20": 0.111357, + "2022-12-10": 0.08523999910348268, + "2021-07-13": 0.23530908185439373, + "2021-08-06": 0.27844915390548874, + "2021-07-17": 0.23250924273965434, + "2023-04-18": 0.104955, + "2022-07-07": 0.1110585617210391, + "2021-10-17": 0.38475202045315, + "2022-08-11": 0.12574576789867253, + "2021-09-10": 0.3318918591246804, + "2022-06-17": 0.1120124166050906, + "2022-01-13": 0.28386452885658686, + "2022-04-01": 0.2277206808300147, + "2021-10-04": 0.3042490003569344, + "2022-08-23": 0.10960927952922779, + "2021-12-08": 0.29725657315915854, + "2023-03-25": 0.09058349846053422, + "2023-05-18": 0.088825, + "2021-09-06": 0.4109912136418381, + "2022-12-09": 0.085103, + "2021-11-26": 0.3295693306866297, + "2022-06-21": 0.11523136996905738, + "2022-02-22": 0.1811884185490639, + "2021-12-18": 0.2595718175690678, + "2021-12-16": 0.26773587212100813, + "2021-10-15": 0.36235862635280297, + "2022-01-30": 0.20074013444453115, + "2023-01-19": 0.083313, + "2022-04-07": 0.210597, + "2022-10-07": 0.11911950673650261, + "2021-12-09": 0.2912787015832021, + "2021-10-26": 0.38192477481325937, + "2022-06-20": 0.11380702879686189, + "2022-11-08": 0.103472, + "2023-03-26": 0.091862, + "2022-03-08": 0.171121, + "2021-11-16": 0.35153377604876973, + "2023-02-19": 0.09165211718935262, + "2022-04-20": 0.20261203326500754, + "2022-09-17": 0.110729, + "2021-09-02": 0.3600865857035641, + "2021-08-07": 0.2971583540519906, + "2022-04-25": 0.1853464834920446, + "2023-04-21": 0.095413, + "2022-09-26": 0.114531, + "2023-01-06": 0.073562, + "2022-02-06": 0.21903737347771018, + "2022-01-17": 0.2536510909014892, + "2022-09-07": 0.100566, + "2022-08-27": 0.104727, + "2021-10-05": 0.31542434055224394, + "2021-10-12": 0.33222978559215427, + "2022-03-01": 0.19756229654966265, + "2022-07-13": 0.102585, + "2023-01-17": 0.08714542781701519, + "2023-01-03": 0.07373420588557024, + "2022-11-29": 0.088307, + "2022-12-23": 0.075721, + "2023-03-07": 0.08249244246111272, + "2022-07-03": 0.10747680788459467, + "2022-08-29": 0.102981, + "2022-05-09": 0.15243862458611576, + "2021-12-28": 0.2861543354925139, + "2022-08-09": 0.124261, + "2021-06-27": 0.24770675356823155, + "2022-06-29": 0.11094608568620284, + "2022-11-11": 0.09483630591323883, + "2022-08-12": 0.125228, + "2021-12-13": 0.2606921940357717, + "2022-11-23": 0.08779767039244327, + "2022-11-01": 0.11062098524633567, + "2021-10-31": 0.37055538706338875, + "2022-03-09": 0.18455955114866915, + "2023-03-27": 0.092398, + "2022-06-30": 0.10705020209405312, + "2022-03-30": 0.23380859537389378, + "2022-05-27": 0.12146845483187181, + "2023-05-19": 0.089023, + "2021-07-30": 0.2744868767440317, + "2022-09-12": 0.114476, + "2023-02-23": 0.0917671471680102, + "2022-08-02": 0.11555751630046913, + "2022-05-21": 0.12776847002548128, + "2023-02-13": 0.084064, + "2022-04-02": 0.23501270831428542, + "2021-08-29": 0.34628381342254333, + "2022-06-18": 0.10598461657559002, + "2022-11-24": 0.08892966469239247, + "2022-03-27": 0.22027554149070075, + "2021-09-05": 0.3833076483560406, + "2022-07-29": 0.11711923136095603, + "2021-12-10": 0.27290876824177623, + "2023-01-27": 0.091451, + "2022-06-10": 0.13527178883768226, + "2022-10-02": 0.12060686323117342, + "2023-02-07": 0.090059, + "2023-03-14": 0.087199, + "2021-11-01": 0.3656683021053232, + "2022-03-05": 0.17676889739344298, + "2022-01-02": 0.2852827117724024, + "2022-02-14": 0.20950875006015093, + "2023-04-14": 0.107071, + "2022-05-26": 0.12557393371881076, + "2021-10-23": 0.37360486949610194, + "2022-05-25": 0.1309793691896937, + "2022-01-01": 0.2710157280663719, + "2022-01-08": 0.25890781813305297, + "2022-03-14": 0.17775657709974352, + "2022-06-16": 0.1115465015616824, + "2022-11-10": 0.0909246690208328, + "2023-01-25": 0.090708, + "2022-09-28": 0.10861309313735659, + "2022-02-18": 0.20227160592458104, + "2021-08-15": 0.3846921594082417, + "2021-10-30": 0.36019362560402024, + "2022-08-17": 0.12225, + "2023-01-20": 0.084538, + "2021-11-28": 0.3122834124249142, + "2021-07-06": 0.2585503515725076, + "2021-12-20": 0.2595972429658062, + "2023-03-30": 0.104633, + "2021-12-01": 0.336871473549739, + "2023-03-13": 0.083676, + "2023-02-20": 0.09273530878368368, + "2023-03-02": 0.08699281276334891, + "2021-07-19": 0.21778662962363424, + "2022-04-09": 0.20369232680654073, + "2022-06-15": 0.110014422815242, + "2022-12-29": 0.07189331579836977, + "2023-05-14": 0.088194, + "2023-05-13": 0.08880625498693774, + "2021-11-07": 0.36130070876660664, + "2022-06-01": 0.14536388636829875, + "2022-01-19": 0.24857433866938017, + "2022-06-13": 0.10873798149205707, + "2022-05-14": 0.1346269754585692, + "2021-08-22": 0.37225115904131023, + "2021-09-19": 0.31851772942707673, + "2022-08-05": 0.1163481041499591, + "2021-08-10": 0.30393586995706195, + "2022-08-28": 0.105462, + "2022-02-28": 0.18372127422769002, + "2021-11-02": 0.37186824392207435, + "2021-07-27": 0.260183558842663, + "2022-06-22": 0.11289314204516808, + "2022-04-17": 0.20433417112597332, + "2022-11-12": 0.09193484605911571, + "2021-08-13": 0.3539812649218483, + "2022-03-22": 0.20744768243661968, + "2021-10-19": 0.37307160545436524, + "2022-02-07": 0.23430744619820998, + "2023-05-06": 0.093, + "2021-08-14": 0.37053442902661476, + "2023-01-07": 0.075243, + "2023-04-16": 0.1067111865568493, + "2023-05-16": 0.08781, + "2022-10-18": 0.112345, + "2022-02-17": 0.2168370158730302, + "2022-01-11": 0.25409881763588965, + "2022-02-08": 0.24077411397280724, + "2021-08-25": 0.3546804186798992, + "2023-04-15": 0.106751, + "2022-06-04": 0.14357082670267435, + "2022-10-06": 0.11953745074504699, + "2022-07-01": 0.11006367533466167, + "2022-07-23": 0.11141461019839706, + "2023-03-04": 0.084855, + "2023-01-12": 0.080995, + "2022-04-16": 0.20490983837350416, + "2021-12-27": 0.30045298875647625, + "2022-07-31": 0.1198, + "2023-03-19": 0.088033, + "2022-06-26": 0.12532565267656456, + "2022-07-06": 0.1087860690994611, + "2021-12-25": 0.2890859277736979, + "2021-07-11": 0.24451123626010587, + "2022-07-21": 0.11180501816721682, + "2022-07-02": 0.10775072805851876, + "2022-09-02": 0.104906, + "2022-01-14": 0.26928838260783367, + "2022-03-11": 0.17602604857200957, + "2022-05-19": 0.12835857063547834, + "2022-10-13": 0.11128, + "2022-03-17": 0.18839900291204514, + "2023-04-26": 0.094866, + "2021-07-03": 0.2646256335300486, + "2022-01-06": 0.2666988182892279, + "2022-01-25": 0.19432173484045698, + "2022-04-27": 0.1840270064842068, + "2023-04-03": 0.108209, + "2021-08-21": 0.37717217072400133, + "2022-08-15": 0.123647, + "2022-10-27": 0.11328752839662344, + "2023-02-14": 0.0843681013870924, + "2021-11-17": 0.3434029718639027, + "2021-07-09": 0.2401042860818117, + "2022-07-17": 0.10875267690113426, + "2021-09-16": 0.33368502894319657, + "2022-06-03": 0.14482632223713104, + "2022-06-14": 0.11020631979111178, + "2022-01-07": 0.25910940499413193, + "2022-03-29": 0.23480059694603028, + "2022-11-04": 0.11338916503276317, + "2023-05-25": 0.086541, + "2022-02-20": 0.19771043478176697, + "2023-01-26": 0.091872, + "2022-12-19": 0.07537, + "2021-10-27": 0.3397704158470319, + "2022-09-20": 0.11550209898664539, + "2021-08-04": 0.27298809457592327, + "2021-08-31": 0.3407452346456042, + "2022-04-21": 0.20163878830868465, + "2022-11-06": 0.112957, + "2022-07-18": 0.11266872729542393, + "2023-02-11": 0.08587821058912622, + "2021-12-26": 0.29035572064269055, + "2022-10-16": 0.1133242659875337, + "2021-11-24": 0.3317101149675955, + "2023-05-20": 0.08862, + "2022-08-04": 0.114381, + "2021-12-06": 0.2715816860076289, + "2022-03-15": 0.17974595910624266, + "2022-12-25": 0.073954, + "2022-09-01": 0.10398949726766013, + "2021-07-02": 0.25975341641948835, + "2022-09-03": 0.104604, + "2022-10-28": 0.11111501521425973, + "2021-09-12": 0.3288936157190693, + "2022-05-03": 0.17428110180640968, + "2021-07-16": 0.24167623539692934, + "2022-10-01": 0.11987072571583536, + "2023-01-09": 0.07967545168253463, + "2021-08-24": 0.3689342590316769, + "2021-08-23": 0.37852924630851037, + "2022-09-21": 0.114047, + "2022-02-16": 0.21821076740863876, + "2023-05-05": 0.093568, + "2022-11-30": 0.089357, + "2023-04-29": 0.09500601902442785, + "2023-03-23": 0.09230375633050379, + "2021-09-25": 0.2780626372400158, + "2021-11-14": 0.373688448345806, + "2022-01-22": 0.18893806904567437, + "2022-05-15": 0.13774385696051625, + "2023-01-31": 0.09056, + "2021-10-29": 0.35136827177714314, + "2022-05-11": 0.13594725813166575, + "2022-01-27": 0.19411689381736924, + "2022-08-22": 0.10829, + "2023-03-16": 0.084681, + "2023-05-21": 0.088381, + "2022-03-25": 0.21459380757931273, + "2021-09-30": 0.2767934665542241, + "2023-02-16": 0.09003028111076611, + "2023-05-04": 0.09332000800241791, + "2022-04-03": 0.23330759517221789, + "2021-07-31": 0.2810594015560433, + "2021-06-25": 0.25282937768251573, + "2022-10-26": 0.11263090841100758, + "2021-07-07": 0.26126524579796695, + "2021-12-29": 0.27529775184415034, + "2021-10-10": 0.34789546004747124, + "2023-05-01": 0.09339203797388565, + "2023-04-12": 0.103527, + "2023-01-08": 0.07546148572187703, + "2022-12-24": 0.074598, + "2022-09-24": 0.122777, + "2021-07-18": 0.2336795548881043, + "2022-04-13": 0.19363450636913268, + "2022-09-10": 0.114503, + "2021-10-13": 0.35836668357332113, + "2022-02-10": 0.2364, + "2023-05-15": 0.088576, + "2022-08-19": 0.109223, + "2022-11-07": 0.109943, + "2021-09-22": 0.2784882333703111, + "2022-08-08": 0.13077544512443304, + "2021-06-29": 0.28088716986049106, + "2023-04-02": 0.108761655447906, + "2022-08-21": 0.11024, + "2023-03-22": 0.09347900772944957, + "2022-03-06": 0.17670879446384255, + "2022-03-04": 0.18161349804372906, + "2022-04-18": 0.196592, + "2022-05-02": 0.17465263042233306, + "2021-09-21": 0.2788906179483072, + "2022-08-13": 0.126948, + "2022-07-15": 0.10703257902160628, + "2022-06-12": 0.12122993020071329, + "2021-11-08": 0.3718108510518131, + "2022-12-21": 0.07511, + "2022-03-26": 0.2126457323036879, + "2022-10-03": 0.11615164088477037, + "2022-05-24": 0.12910839713682837, + "2021-07-26": 0.27523884632714724, + "2023-03-28": 0.09488419618247512, + "2021-08-03": 0.27227165955667726, + "2023-02-28": 0.087372, + "2023-03-06": 0.082543, + "2021-12-14": 0.25943898122999176, + "2023-04-10": 0.1037457063118021, + "2022-07-20": 0.11831753349488765, + "2021-07-22": 0.25104763681661696, + "2021-12-03": 0.3472299116900595, + "2021-08-11": 0.32799264503793746, + "2022-12-16": 0.07938, + "2021-10-24": 0.37855356174222676, + "2023-04-22": 0.094682, + "2022-09-23": 0.12318975433652148, + "2021-09-07": 0.3726528878369126, + "2022-10-10": 0.12659502007313103, + "2022-12-30": 0.071928, + "2022-04-29": 0.18248867623437784, + "2022-12-05": 0.087803, + "2022-05-28": 0.12187313508588936, + "2023-05-02": 0.092795, + "2021-10-09": 0.35445155316220456, + "2021-11-20": 0.3480071912835718, + "2022-10-23": 0.11063029837234324, + "2023-02-08": 0.091534, + "2021-09-11": 0.32316924458389085, + "2022-02-19": 0.204196, + "2022-12-11": 0.08500036721516559, + "2022-08-26": 0.10839136410703012, + "2022-04-23": 0.19382980740010555, + "2022-06-24": 0.12599048820859227, + "2022-06-11": 0.12730815806215237, + "2021-08-20": 0.3752230023610642, + "2021-07-28": 0.27088945889955673, + "2022-09-13": 0.10913266476750097, + "2021-08-30": 0.3398815923485349, + "2021-08-19": 0.34611601517667867, + "2022-05-22": 0.1336774830100882, + "2022-05-20": 0.13062617612513755, + "2022-06-07": 0.1382916296990187, + "2022-10-09": 0.12614261303212396, + "2022-01-31": 0.19546206927666984, + "2022-03-07": 0.17190182151011207, + "2023-02-09": 0.089113, + "2022-08-16": 0.122191, + "2023-04-23": 0.094263, + "2023-04-17": 0.104895, + "2023-05-08": 0.089795, + "2021-08-28": 0.3488405704806014, + "2021-10-25": 0.3786836887032167, + "2021-10-20": 0.38318525368358114, + "2022-07-22": 0.11361136000000001, + "2022-05-12": 0.11766747504465559, + "2022-05-01": 0.1725684172905846, + "2021-11-06": 0.3571899623439282, + "2022-03-16": 0.1837915458443938, + "2021-11-18": 0.33497110563806387, + "2022-09-15": 0.1031978286262625, + "2021-11-29": 0.3274203637197104, + "2021-11-04": 0.37780246193177575, + "2021-11-10": 0.4077897071227513, + "2022-02-02": 0.2004615268626492, + "2022-11-05": 0.11498, + "2021-11-25": 0.3389324542391944, + "2022-02-15": 0.2175258940581427, + "2022-05-13": 0.1341282854638609, + "2022-10-29": 0.1130116497948577, + "2021-09-20": 0.2851541462213454, + "2022-07-04": 0.1088631830165131, + "2023-01-16": 0.08789950884444604, + "2022-09-29": 0.10853390938635754, + "2022-12-27": 0.074295, + "2021-10-16": 0.40060629022294963, + "2023-03-17": 0.086169, + "2022-06-19": 0.11000969038299512, + "2023-01-13": 0.082352, + "2022-05-08": 0.1649076831076805, + "2023-04-07": 0.10560001285360371, + "2021-07-20": 0.20464977940025922, + "2022-09-25": 0.119287, + "2022-12-03": 0.08760657357508655, + "2023-02-04": 0.093292, + "2023-02-02": 0.092941, + "2022-03-28": 0.23401796657831, + "2021-09-03": 0.36576180600277836, + "2023-04-05": 0.1072198116463767, + "2023-02-25": 0.08850793923270121, + "2023-02-15": 0.086527, + "2022-02-26": 0.19350879469732815, + "2023-01-02": 0.07298059323764253, + "2022-03-23": 0.20723334864004475, + "2023-03-29": 0.102517, + "2023-03-31": 0.10963189147134693, + "2023-05-12": 0.0888, + "2021-11-21": 0.3433996758330059, + "2022-07-08": 0.11396074216267509, + "2023-03-01": 0.0878203239193468, + "2023-03-12": 0.080289, + "2022-12-22": 0.074814, + "2022-01-03": 0.2911399247400155, + "2022-10-30": 0.11313311450588896, + "2023-05-22": 0.088063, + "2022-08-24": 0.109378, + "2021-12-11": 0.2721825978722784, + "2022-08-03": 0.116157, + "2021-08-08": 0.30056212167803403, + "2023-05-17": 0.088173, + "2023-04-04": 0.10582451273683235, + "2022-02-13": 0.21647943010986648, + "2023-02-27": 0.08820572471470334, + "2021-11-23": 0.3365119722474455, + "2023-01-28": 0.09300477138068222, + "2022-02-03": 0.19235765354860868, + "2022-07-27": 0.107, + "2022-05-10": 0.1496861023731847, + "2021-11-27": 0.32531071622476937, + "2022-08-06": 0.12014360402877165, + "2021-11-09": 0.39045958304178885, + "2022-11-27": 0.0902218621960621, + "2021-12-30": 0.26920583747594934, + "2021-09-01": 0.3471722803711972, + "2022-05-05": 0.1804737142717824, + "2023-05-26": 0.087727, + "2022-12-31": 0.071626, + "2022-07-12": 0.102026, + "2022-02-21": 0.19310187361500525, + "2022-11-26": 0.08925476787613412, + "2021-08-05": 0.27531783370393614, + "2022-03-19": 0.19557500677162315, + "2023-02-21": 0.09526508988942009, + "2022-05-23": 0.13568412758054785, + "2022-12-14": 0.083546, + "2022-04-30": 0.1787401087205167, + "2021-12-23": 0.27571491434568546, + "2022-02-11": 0.2284939498954155, + "2021-07-23": 0.2620882673640632, + "2022-06-23": 0.1167629873430053, + "2023-03-05": 0.083414, + "2022-05-04": 0.17559391452671497, + "2022-03-02": 0.19490387492140243, + "2021-10-22": 0.3761381887851469, + "2022-11-16": 0.09053406950997306, + "2022-10-14": 0.114843, + "2023-04-08": 0.105021, + "2023-02-12": 0.08607, + "2022-11-25": 0.0896158764022938, + "2021-10-01": 0.2930026885291127, + "2023-01-14": 0.08695960748712023, + "2022-09-18": 0.11231032373608675, + "2022-08-10": 0.12171780279903154, + "2022-09-04": 0.10622, + "2023-05-11": 0.088653, + "2021-09-26": 0.27407817090488407, + "2022-04-06": 0.21344368741635464, + "2021-06-30": 0.27415620938206103, + "2022-05-16": 0.13731389158079335, + "2023-04-19": 0.098927, + "2022-01-26": 0.19957350943463892, + "2022-02-24": 0.1688774718288389, + "2022-05-06": 0.1691666039111805, + "2022-12-01": 0.088463, + "2022-01-15": 0.2611042850620136, + "2023-01-21": 0.08949590338473969, + "2024-05-28T09": 0.1079506778072197, + "2024-05-28T10": 0.10889221747089774, + "2024-05-28T11": 0.108351, + "2024-05-28T12": 0.108137, + "2024-05-28T13": 0.10796712472735105, + "2024-05-28T14": 0.107669, + "2024-05-28T15": 0.107698, + "2024-05-29": 0.1076, + "2024-05-28T20": 0.107994, + "2024-05-28T22": 0.108138, + "2024-05-28T21": 0.10806295020646334, + "2024-05-28T19": 0.10781021248830208, + "2024-05-29T02": 0.10785, + "2024-05-28T17": 0.10788, + "2024-05-28T18": 0.1070758152058417, + "2024-05-28T23": 0.10775431714193874, + "2024-05-29T00": 0.10776, + "2024-05-29T01": 0.10759, + "2024-05-28T16": 0.10771131386070285, + "2024-05-29T06": 0.109192, + "2024-05-29T05": 0.10892677881808788, + "2024-05-29T03": 0.10832011876953734, + "2024-05-29T07": 0.10828, + "2024-05-29T04": 0.108721, + "2024-05-29T08": 0.10750534474929452, + "2024-05-29T09": 0.1082626164820364, + "2024-05-29T10": 0.1082895492666535, + "2024-05-29T11": 0.10831, + "2024-05-29T12": 0.10788, + "2024-05-29T13": 0.107687, + "2024-05-29T14": 0.1075890471656985, + "2024-05-29T15": 0.107341, + "2024-05-29T18": 0.10729, + "2024-05-29T17": 0.10739720823004639, + "2024-05-29T23": 0.106674, + "2024-05-29T19": 0.107247, + "2024-05-29T22": 0.1066549175856761, + "2024-05-29T20": 0.106907, + "2024-05-29T16": 0.1069, + "2024-05-29T21": 0.10673947961032913, + "2024-05-30": 0.106682, + "2024-05-30T00": 0.10694, + "2024-05-30T05": 0.10686894092260839, + "2024-05-30T02": 0.10757035043524246, + "2024-05-30T01": 0.106963, + "2024-05-30T06": 0.10599127847968651, + "2024-05-30T07": 0.10595029129349726, + "2024-05-30T03": 0.10742, + "2024-05-30T04": 0.10733480186831999, + "2024-05-30T08": 0.10503523915572793, + "2024-05-30T09": 0.10583036106643362, + "2024-05-30T10": 0.10633825354429757, + "2024-05-30T11": 0.10669349149876263, + "2024-05-30T12": 0.10641346967298197, + "2024-05-30T13": 0.106702, + "2024-05-30T14": 0.10655, + "2024-05-30T15": 0.10628454047149063, + "2024-05-30T21": 0.106638, + "2024-05-30T20": 0.106699, + "2024-05-30T18": 0.10744631058313889, + "2024-05-30T22": 0.10669408014474065, + "2024-05-30T16": 0.106569, + "2024-05-30T17": 0.1072031017052355, + "2024-05-30T19": 0.10741916351905091, + "2024-05-31": 0.10622565882084652, + "2024-05-30T23": 0.107004, + "2024-05-31T03": 0.106748736, + "2024-05-31T07": 0.10636808, + "2024-05-31T06": 0.10626811000000001, + "2024-05-31T04": 0.10675087200000001, + "2024-05-31T02": 0.10645527, + "2024-05-31T05": 0.106056499, + "2024-05-31T00": 0.1064401884, + "2024-05-31T01": 0.106674392, + "2024-05-31T08": 0.1066458624, + "2024-05-31T09": 0.106263858, + "2024-05-31T10": 0.106366142, + "2024-05-31T11": 0.10643739650979116, + "2024-05-31T12": 0.106834791, + "2024-05-31T13": 0.1062640754, + "2024-05-31T14": 0.105539808, + "2024-06-01": 0.106517, + "2024-06-01T08": 0.10659368922288961, + "2024-06-01T02": 0.106241, + "2024-06-01T05": 0.1065303999160987, + "2024-05-31T21": 0.10627551199999999, + "2024-06-01T00": 0.10623523562749491, + "2024-05-31T18": 0.1058056064, + "2024-05-31T15": 0.105412435, + "2024-05-31T23": 0.1062126168, + "2024-05-31T22": 0.10628762850000001, + "2024-06-01T01": 0.10618243721975952, + "2024-06-01T07": 0.106609, + "2024-06-01T04": 0.10633738734096482, + "2024-05-31T19": 0.106059816, + "2024-06-01T06": 0.10672186616518138, + "2024-05-31T20": 0.10617562900000001, + "2024-05-31T17": 0.10556442349999999, + "2024-05-31T16": 0.10491494999999999, + "2024-06-01T03": 0.10650827143437927, + "2024-06-01T09": 0.106625, + "2024-06-01T10": 0.106644, + "2024-06-02": 0.1057, + "2024-06-01T13": 0.106499, + "2024-06-01T15": 0.10655, + "2024-06-01T18": 0.10652, + "2024-06-01T12": 0.1064969475105867, + "2024-06-01T21": 0.106558, + "2024-06-01T20": 0.10652302906288852, + "2024-06-02T01": 0.106533, + "2024-06-01T17": 0.106532, + "2024-06-01T11": 0.106573, + "2024-06-02T00": 0.10644492875434372, + "2024-06-01T23": 0.10634, + "2024-06-01T14": 0.10658942304031849, + "2024-06-01T22": 0.106506, + "2024-06-01T19": 0.10641602046362254, + "2024-06-01T16": 0.10655, + "2024-06-02T13": 0.10573272001715789, + "2024-06-02T11": 0.105401, + "2024-06-02T07": 0.10612, + "2024-06-02T05": 0.106021, + "2024-06-02T08": 0.1058413172537881, + "2024-06-02T04": 0.10625435143014011, + "2024-06-02T10": 0.10530183724709541, + "2024-06-02T12": 0.105827, + "2024-06-02T02": 0.10634, + "2024-06-02T16": 0.10581417206718972, + "2024-06-02T17": 0.1052354814942553, + "2024-06-02T03": 0.10634, + "2024-06-02T09": 0.10534000437973692, + "2024-06-02T15": 0.106098, + "2024-06-02T06": 0.10606589922987386, + "2024-06-02T18": 0.10485509835548734, + "2024-06-02T14": 0.106132, + "2024-06-03": 0.1057, + "2024-06-03T01": 0.1058, + "2024-06-02T20": 0.10500331833894581, + "2024-06-03T00": 0.10490043728098698, + "2024-06-02T21": 0.105098, + "2024-06-02T23": 0.1051174036999653, + "2024-06-02T19": 0.105098, + "2024-06-02T22": 0.10512382814218069, + "2024-06-03T02": 0.106159, + "2024-06-03T05": 0.10604308329857709, + "2024-06-03T06": 0.10662398617779686, + "2024-06-03T04": 0.105628, + "2024-06-03T03": 0.106103, + "2024-06-03T07": 0.10679364541050737 + }, + "USD tezos": { + "2023-07-30": 0.8389819214364339, + "2023-10-23": 0.6776423065714835, + "2023-07-27": 0.8138726608922864, + "2023-07-10": 0.8093545663928704, + "2023-08-20": 0.7067093001442903, + "2024-02-23": 1.0917622321795202, + "2024-04-05": 1.2403715162789284, + "2023-12-19": 0.8936088812173848, + "2024-05-17": 0.940597442335058, + "2023-08-06": 0.8092510642008427, + "2023-12-02": 0.8461613548734794, + "2023-10-31": 0.7458715275399551, + "2023-08-29": 0.706624903645088, + "2023-06-20": 0.721776715692409, + "2023-09-09": 0.6937550009379013, + "2023-06-26": 0.808794631305833, + "2023-10-01": 0.6920606442805621, + "2024-03-07": 1.442377160545261, + "2023-10-12": 0.6417077568896773, + "2024-04-22": 1.0554218811339466, + "2023-07-05": 0.8066982229383114, + "2023-07-29": 0.8360835134751083, + "2024-04-26": 1.0078611996278743, + "2024-01-08": 0.8756137421643062, + "2023-05-29": 0.9322465174969436, + "2023-10-07": 0.6754678475020284, + "2023-09-26": 0.6528557923706363, + "2023-08-24": 0.7036933742659714, + "2023-12-05": 0.8750558159290205, + "2024-02-19": 1.0821234496191516, + "2024-01-07": 0.9084711865776798, + "2024-04-28": 1.0165333069825242, + "2023-07-31": 0.8314834567027725, + "2023-10-18": 0.643236916168799, + "2024-05-19": 0.9230880236772764, + "2024-05-12": 0.9006610476700175, + "2024-04-29": 0.9818799764421386, + "2023-08-25": 0.6887333589459859, + "2024-03-09": 1.4477297274914598, + "2023-07-12": 0.8319964617364047, + "2023-09-05": 0.6954157637835547, + "2023-06-07": 0.8641896155406547, + "2023-09-16": 0.6821389836533496, + "2024-04-25": 1.00672757628568, + "2023-08-12": 0.795269305290273, + "2023-06-06": 0.8561627831284794, + "2023-09-01": 0.6819538841515681, + "2023-09-08": 0.6929250325295939, + "2024-03-22": 1.2228294994813604, + "2023-08-10": 0.7889024056297682, + "2023-12-07": 0.906116045698817, + "2023-11-18": 0.8346066171359202, + "2023-07-13": 0.8537814880246269, + "2023-09-13": 0.6384550399943482, + "2023-06-17": 0.7255055298274392, + "2023-07-17": 0.8613388017561999, + "2023-07-07": 0.7872597039381418, + "2023-09-07": 0.6893938156119787, + "2024-03-26": 1.3649307885028263, + "2024-05-14": 0.8825494420528444, + "2024-02-22": 1.1194624740610535, + "2024-04-15": 1.0361958435971683, + "2023-12-30": 1.0248940592428757, + "2023-09-17": 0.6680471746814822, + "2024-04-17": 0.9692692846299045, + "2024-02-12": 1.030320061236038, + "2023-10-26": 0.7135470384893166, + "2024-01-03": 0.9835110723670784, + "2024-05-07": 0.9379999029145316, + "2023-06-01": 0.8951163938453481, + "2024-01-22": 0.9781114928041893, + "2023-06-12": 0.7130291116209418, + "2023-10-03": 0.6787830426146862, + "2024-05-26": 0.9707929435161813, + "2024-04-30": 0.9187814960097709, + "2023-06-19": 0.7170538208350664, + "2023-07-09": 0.8159101603759239, + "2023-12-24": 0.9874983839364964, + "2023-09-24": 0.6600396, + "2024-01-16": 1.1389670433358514, + "2023-10-17": 0.6516187007830727, + "2024-04-24": 1.056916796929021, + "2024-03-18": 1.3067565226334728, + "2024-02-17": 1.0600680168659449, + "2023-12-27": 1.0822538254933172, + "2023-07-23": 0.8573037697126614, + "2023-09-03": 0.687984264983655, + "2024-02-24": 1.1014424420234974, + "2024-01-06": 0.913626913070885, + "2024-03-20": 1.1669010642535305, + "2023-11-21": 0.8275535329673204, + "2023-12-25": 1.0260436342747812, + "2023-09-22": 0.6595488116780387, + "2023-10-02": 0.6966741369049343, + "2024-03-27": 1.3847500756871418, + "2024-05-06": 0.9580479000000001, + "2023-08-30": 0.7161018410473026, + "2023-10-06": 0.6718434218388244, + "2023-10-13": 0.6497519379897029, + "2023-06-28": 0.7819985119467358, + "2024-02-05": 0.9690198765571596, + "2024-03-01": 1.2555845839694804, + "2023-07-15": 0.8825259240764661, + "2023-06-25": 0.8288038982437391, + "2023-12-10": 0.962082130217167, + "2023-11-23": 0.8081541886189191, + "2023-08-04": 0.8092466735740481, + "2024-05-13": 0.890398031359652, + "2024-01-13": 1.0229559592672572, + "2024-03-28": 1.391728157786967, + "2023-08-05": 0.8054029278592256, + "2024-02-09": 1.0348204680037179, + "2023-10-09": 0.650462534912605, + "2024-01-09": 0.8914445881597975, + "2024-05-10": 0.9398790701928891, + "2023-05-27": 0.8875728889427225, + "2023-08-18": 0.697721118153367, + "2023-11-05": 0.8045832782066272, + "2024-04-18": 0.955882640936132, + "2023-10-22": 0.6637511715256122, + "2023-11-01": 0.7559483513828504, + "2024-05-20": 0.9250462500000002, + "2023-12-08": 0.923164626792436, + "2024-04-12": 1.1247988241576343, + "2023-07-06": 0.797051174277564, + "2024-03-12": 1.5141740786317994, + "2023-09-11": 0.6577410443656879, + "2024-03-03": 1.3747442948906512, + "2024-02-04": 0.9820265930628499, + "2024-01-28": 0.9849015, + "2023-07-01": 0.8189025991681556, + "2023-11-07": 0.8312651265916836, + "2023-11-25": 0.830294491208133, + "2023-06-04": 0.9172717643522443, + "2024-02-25": 1.1153548061643013, + "2023-12-01": 0.8345032822020013, + "2023-07-14": 0.8970559086848128, + "2024-01-26": 0.9564557464871642, + "2023-08-03": 0.8220584082173428, + "2024-02-28": 1.172324094698073, + "2023-09-15": 0.658143137001426, + "2023-07-18": 0.8321075690004711, + "2023-12-21": 0.9150241042719058, + "2023-07-20": 0.8650878721484394, + "2024-03-06": 1.3457633508347513, + "2023-09-30": 0.6810156424683609, + "2023-12-12": 0.8936575084334127, + "2024-02-13": 1.040168753111556, + "2023-09-20": 0.6737396566195408, + "2023-09-19": 0.6735216504423127, + "2023-09-29": 0.6729259732916658, + "2023-09-12": 0.6415052303325572, + "2023-06-13": 0.7319837767979152, + "2023-10-04": 0.6701207267917453, + "2023-07-08": 0.7981295429136104, + "2024-04-16": 0.9956611786985333, + "2024-03-02": 1.3373119925299113, + "2023-06-27": 0.8030506881058445, + "2023-10-08": 0.6757628762752143, + "2023-11-20": 0.8568047153685812, + "2023-12-20": 0.8839441766497186, + "2023-12-31": 1.0276982732262245, + "2023-11-06": 0.8164283957854634, + "2023-08-22": 0.6867466631118159, + "2023-06-09": 0.8335618406963938, + "2024-03-17": 1.3204328035302095, + "2023-09-18": 0.6695955100413785, + "2024-04-01": 1.352414687474013, + "2024-05-21": 0.9957981600908682, + "2024-01-19": 1.0119161925142641, + "2023-11-11": 0.8969313401332978, + "2023-09-23": 0.6673999916509306, + "2023-11-19": 0.8432407149336417, + "2023-07-02": 0.818571894732109, + "2023-08-15": 0.7809990400000001, + "2024-01-25": 0.9355564366932075, + "2024-03-13": 1.5261567632514295, + "2024-01-21": 1.0363762019595804, + "2024-02-01": 0.9583330702137096, + "2023-06-15": 0.7199932000430013, + "2024-03-16": 1.3744839892758332, + "2023-11-27": 0.8156969035783963, + "2024-01-10": 0.8943088289518403, + "2024-03-15": 1.3634192335886413, + "2023-06-21": 0.7579722663488818, + "2024-01-02": 1.0917512935004667, + "2023-07-11": 0.8173467780451612, + "2023-10-25": 0.7097375375332954, + "2024-01-01": 1.082023768074887, + "2024-02-14": 1.0587001550921964, + "2023-09-04": 0.6947410150825813, + "2023-09-06": 0.6935962310251274, + "2024-04-03": 1.2344910582405062, + "2023-11-28": 0.8031941582402038, + "2023-12-03": 0.8400424297612519, + "2023-08-02": 0.841519455103889, + "2023-08-27": 0.6883317895358843, + "2023-10-20": 0.6430580029268073, + "2023-10-10": 0.7057814962069687, + "2024-05-03": 0.9461963656049961, + "2024-03-08": 1.437592877053897, + "2024-04-11": 1.2799836436295362, + "2023-06-22": 0.7800891204809619, + "2024-01-14": 1.1348531056830387, + "2023-12-15": 0.9450373823128898, + "2023-10-19": 0.6236302925594295, + "2024-02-08": 1.0067675027933722, + "2023-11-08": 0.8548612589559655, + "2023-11-12": 0.9229650704336906, + "2023-12-22": 0.9862743370598475, + "2023-05-31": 0.9071616279988655, + "2024-03-23": 1.252111037250433, + "2023-09-27": 0.6549868190022232, + "2024-03-04": 1.4279342002025748, + "2023-09-10": 0.6782911396579182, + "2024-04-13": 1.0692207202619841, + "2024-02-29": 1.2620249056230195, + "2023-07-21": 0.8489572161941138, + "2023-06-30": 0.7965740886239224, + "2023-12-29": 1.0455493670530296, + "2023-12-04": 0.8660117792794472, + "2024-04-10": 1.2516109020794566, + "2024-05-08": 0.9308748990124186, + "2023-09-21": 0.6618202118935137, + "2023-06-02": 0.8977976822379997, + "2024-04-21": 1.0538161028513149, + "2023-07-22": 0.8470847000000001, + "2023-10-11": 0.6655113054406507, + "2024-03-21": 1.2528539819538795, + "2023-07-19": 0.8346660359407136, + "2024-05-05": 0.960138058128688, + "2024-05-23": 0.9504864610136515, + "2024-04-08": 1.3129868709659531, + "2024-05-18": 0.9412634847868889, + "2023-06-14": 0.755696749753513, + "2023-10-05": 0.6793314421064721, + "2023-10-16": 0.6571693769085596, + "2024-05-22": 0.9728181193312166, + "2024-02-10": 1.0355562077805254, + "2024-04-07": 1.2709801728549068, + "2024-02-20": 1.098703098454959, + "2023-11-17": 0.8436875342699609, + "2023-12-11": 0.8824217485758815, + "2023-11-26": 0.839371033062005, + "2023-11-16": 0.8651427261347223, + "2023-06-29": 0.769384879330175, + "2023-10-27": 0.7039724732471593, + "2023-06-11": 0.7197104660156346, + "2024-02-02": 1.00148838365777, + "2023-09-14": 0.648012517711558, + "2024-01-27": 0.9843843557413038, + "2024-03-30": 1.3921291309835482, + "2023-11-22": 0.7880188241240699, + "2023-09-28": 0.6558428214328499, + "2023-06-03": 0.9082940313141502, + "2024-01-18": 1.0558627314313498, + "2023-08-26": 0.6865259894147867, + "2024-02-15": 1.077627703655351, + "2023-10-28": 0.7278608373983495, + "2024-03-24": 1.2768389957556727, + "2024-04-27": 0.9984108415240804, + "2023-12-06": 0.8860631551078, + "2024-01-30": 0.9986345312115462, + "2023-11-14": 0.871643793711641, + "2023-08-09": 0.7972692906919342, + "2024-05-15": 0.8840231872044436, + "2023-11-10": 0.865044913314333, + "2024-01-23": 0.9230765081171912, + "2024-01-31": 0.97461, + "2024-05-11": 0.9127448831257169, + "2024-01-11": 1.0745687550859302, + "2024-02-18": 1.0724229919812212, + "2023-06-16": 0.7162741714090547, + "2023-10-30": 0.74921721, + "2023-12-17": 0.9270961278737351, + "2024-02-26": 1.1159692495682474, + "2023-07-16": 0.8714537085162314, + "2024-01-05": 0.9357126364655382, + "2023-08-23": 0.6955698369066483, + "2024-03-11": 1.4652820638564432, + "2023-08-01": 0.8148680217116896, + "2024-03-14": 1.494743282781302, + "2024-02-21": 1.07, + "2023-08-28": 0.6995659350725749, + "2023-07-04": 0.837020690662165, + "2023-12-13": 0.8977175567482113, + "2024-02-27": 1.1416348340567104, + "2023-08-13": 0.7951615099831425, + "2024-03-31": 1.3941793941328862, + "2023-12-09": 0.980833735052527, + "2024-04-02": 1.2453603501816257, + "2024-02-06": 0.9805728107804185, + "2024-04-09": 1.3140270819681126, + "2023-11-04": 0.78039, + "2024-04-20": 1.0066887399189208, + "2024-01-15": 1.1857591570750912, + "2023-07-03": 0.8480483921328996, + "2023-12-28": 1.0724559623253045, + "2023-05-30": 0.936253149359393, + "2024-05-25": 0.992408728491814, + "2024-02-07": 0.9815540552937829, + "2023-09-25": 0.6534460051771683, + "2024-03-19": 1.18935493283695, + "2024-03-10": 1.4312590432478127, + "2024-05-02": 0.9223769390621035, + "2023-09-02": 0.6849047114443032, + "2024-01-12": 1.0676993874871248, + "2024-04-19": 0.9786946674546481, + "2023-11-29": 0.8182695872561363, + "2023-10-15": 0.6529667122946456, + "2024-05-28": 0.9947152308481986, + "2023-11-30": 0.8196494293233824, + "2024-01-24": 0.9474296161941218, + "2023-08-11": 0.7896798166686092, + "2024-02-11": 1.0393948350032274, + "2023-06-08": 0.8390839, + "2023-11-15": 0.8611883642368665, + "2023-12-16": 0.938438706201572, + "2024-03-29": 1.4172145721285645, + "2024-04-04": 1.2553008220928497, + "2023-06-10": 0.7153272920278169, + "2023-07-28": 0.8217775292010252, + "2024-01-20": 1.0272906800000001, + "2023-10-21": 0.6580055229366891, + "2023-08-16": 0.7461186917117485, + "2024-05-24": 0.9606004733016733, + "2023-11-03": 0.778192297320629, + "2023-08-31": 0.7086885796602064, + "2024-05-27": 0.9723971025097077, + "2024-01-04": 0.9738703800610571, + "2023-07-26": 0.808899428086929, + "2023-11-13": 0.9225685515385479, + "2023-10-24": 0.7094143555474196, + "2024-03-25": 1.30951691562777, + "2023-08-07": 0.7931564547907358, + "2023-10-29": 0.7361401338570123, + "2024-01-29": 0.9878820890512398, + "2024-05-04": 0.9721848323063627, + "2023-06-05": 0.856160163536096, + "2023-11-02": 0.7903148500261472, + "2023-12-18": 0.8663059051612778, + "2023-11-24": 0.8203521731284592, + "2023-08-21": 0.6977491014728945, + "2023-07-25": 0.8099156654138238, + "2024-05-16": 0.9151281190781182, + "2023-08-14": 0.7965430004365218, + "2024-05-01": 0.8999777217932896, + "2024-03-05": 1.4120106632964797, + "2024-04-06": 1.25837660115769, + "2023-12-23": 0.9815529677789697, + "2024-02-03": 1.006588682905064, + "2024-02-16": 1.072524174943489, + "2023-05-28": 0.9093534446144116, + "2023-12-14": 0.9401478227046051, + "2023-06-24": 0.8091504589436612, + "2023-12-26": 1.0199036445629046, + "2023-11-09": 0.8649218446021062, + "2023-08-19": 0.7026055615057304, + "2024-05-09": 0.9246394430655683, + "2024-01-17": 1.1013331161627564, + "2023-06-23": 0.774174975207232, + "2023-06-18": 0.7269188746524696, + "2024-04-23": 1.054410675558782, + "2023-08-08": 0.7932175409751413, + "2023-08-17": 0.7232456688606124, + "2024-04-14": 1.0165215329115154, + "2023-07-24": 0.8268923174809457, + "2023-10-14": 0.6532845049970422, + "2024-05-22T20": 0.96888372, + "2024-05-25T08": 0.99061351, + "2024-05-22T05": 0.98378352, + "2024-05-28T03": 0.98322264, + "2024-05-22T16": 0.9739719274220411, + "2024-05-25T05": 0.989604, + "2024-05-24T22": 0.9830809665037139, + "2024-05-27T14": 0.97329872, + "2024-05-22T03": 0.9887923099999999, + "2024-05-23T17": 0.94431015, + "2024-05-24T23": 0.982023204, + "2024-05-26T19": 0.96148052, + "2024-05-26T18": 0.9614129505904055, + "2024-05-26T10": 0.97263999, + "2024-05-27T16": 1.0000090099999999, + "2024-05-24T12": 0.9644982, + "2024-05-26T01": 0.9939006, + "2024-05-21T17": 1.0004194199999998, + "2024-05-23T07": 0.98339976, + "2024-05-22T08": 0.9888022, + "2024-05-23T09": 0.97267891, + "2024-05-24T18": 0.969515, + "2024-05-23T01": 0.97050479, + "2024-05-25T15": 1.0008998999999998, + "2024-05-23T16": 0.94534726, + "2024-05-25T03": 0.9855957399999999, + "2024-05-28T06": 0.9691464, + "2024-05-25T23": 0.99383102, + "2024-05-24T13": 0.9684185999999999, + "2024-05-26T03": 0.9898910999999999, + "2024-05-26T00": 0.9937973692027312, + "2024-05-25T06": 0.9896138999999999, + "2024-05-27T04": 0.9664874899999999, + "2024-05-22T10": 0.98078418, + "2024-05-27T09": 0.95840542, + "2024-05-24T17": 0.95859722, + "2024-05-26T16": 0.9619957920000001, + "2024-05-22T09": 0.9818036, + "2024-05-24T21": 0.98091171, + "2024-05-25T04": 0.9866052000000001, + "2024-05-27T22": 0.99698204, + "2024-05-27T11": 0.96040418, + "2024-05-23T21": 0.9405948097562261, + "2024-05-23T10": 0.96466225, + "2024-05-23T14": 0.95553156, + "2024-05-27T02": 0.96343124, + "2024-05-25T18": 0.991752, + "2024-05-27T05": 0.96053872, + "2024-05-22T23": 0.9675644, + "2024-05-28T01": 0.9832128, + "2024-05-22T04": 0.97773594, + "2024-05-22T15": 0.97171812, + "2024-05-24T03": 0.9610058260000001, + "2024-05-24T08": 0.93672827, + "2024-05-21T22": 0.99171232, + "2024-05-21T16": 1.00156914, + "2024-05-21T23": 0.9899920579999999, + "2024-05-24T02": 0.9566363399999999, + "2024-05-26T07": 0.98163666, + "2024-05-27T07": 0.95243773, + "2024-05-25T22": 0.9944233306361238, + "2024-05-24T16": 0.96159596, + "2024-05-27T20": 0.99798102, + "2024-05-22T02": 0.9898218000000001, + "2024-05-24T06": 0.94158552, + "2024-05-24T11": 0.9544269999999999, + "2024-05-25T21": 0.9988002, + "2024-05-27T15": 0.98515204, + "2024-05-21T19": 0.98667429, + "2024-05-22T19": 0.9687965099999999, + "2024-05-21T12": 0.99577092, + "2024-05-23T20": 0.9168118749999999, + "2024-05-23T08": 0.97743276, + "2024-05-22T22": 0.969612, + "2024-05-26T11": 0.9740614750000001, + "2024-05-24T01": 0.9556176, + "2024-05-23T05": 0.9798390883747168, + "2024-05-28T04": 0.9692919, + "2024-05-25T09": 0.99264252, + "2024-05-27T18": 1.00198697, + "2024-05-24T10": 0.9515144799999999, + "2024-05-25T19": 0.995751, + "2024-05-24T07": 0.9357379200000001, + "2024-05-26T04": 0.9897425999999999, + "2024-05-26T09": 0.9716112, + "2024-05-23T02": 0.9724940400000001, + "2024-05-27T06": 0.95754016, + "2024-05-28T08": 0.9661529311274534, + "2024-05-24T15": 0.9735130000000001, + "2024-05-25T20": 0.9984503250000001, + "2024-05-27T08": 0.9554263999999999, + "2024-05-23T22": 0.94241534, + "2024-05-26T15": 0.96701944, + "2024-05-24T20": 0.9759024, + "2024-05-21T20": 0.9946716499999999, + "2024-05-25T13": 0.98786168, + "2024-05-22T01": 0.990081176, + "2024-05-25T17": 0.99278154, + "2024-05-27T10": 0.958514949, + "2024-05-21T21": 0.9911118864773673, + "2024-05-24T19": 0.9696992999999999, + "2024-05-26T02": 0.9858915399999999, + "2024-05-27T19": 0.9913465870373547, + "2024-05-25T11": 0.99885015, + "2024-05-27T17": 1.00396485, + "2024-05-21T18": 0.9989202879999999, + "2024-05-26T06": 0.982265916, + "2024-05-23T00": 0.9704853699999999, + "2024-05-22T00": 0.99182144, + "2024-05-24T05": 0.9524758499999999, + "2024-05-23T15": 0.9511319283483494, + "2024-05-22T13": 0.9608942899999999, + "2024-05-21T10": 1.002722042484847, + "2024-05-22T12": 0.96683561, + "2024-05-23T04": 0.9783930200000001, + "2024-05-26T08": 0.97758924, + "2024-05-26T13": 0.96569088, + "2024-05-28T05": 0.9703522529999999, + "2024-05-22T18": 0.9658840799999999, + "2024-05-22T06": 0.998480286, + "2024-05-21T08": 0.997863956245348, + "2024-05-22T17": 0.9768436799999999, + "2024-05-23T19": 0.9371370399999999, + "2024-05-25T07": 0.98861429, + "2024-05-26T22": 0.964394784, + "2024-05-25T16": 0.99686042, + "2024-05-26T05": 0.9827051, + "2024-05-24T04": 0.9642597119999999, + "2024-05-21T14": 1.0047487499999999, + "2024-05-25T12": 0.99493035, + "2024-05-28T07": 0.9652078799999999, + "2024-05-23T18": 0.93733402, + "2024-05-26T23": 0.9612755265202119, + "2024-05-24T09": 0.94257565, + "2024-05-23T03": 0.97434675, + "2024-05-26T14": 0.96862209, + "2024-05-21T13": 1.0007998, + "2024-05-22T14": 0.96773864, + "2024-05-25T14": 0.996230259, + "2024-05-25T00": 0.980074531, + "2024-05-23T23": 0.94158552, + "2024-05-21T11": 0.99873027, + "2024-05-23T13": 0.9636626, + "2024-05-22T11": 0.97582432, + "2024-05-21T15": 1.0063584159999999, + "2024-05-28T00": 0.9902313927767294, + "2024-05-27T23": 0.9941642, + "2024-05-28T02": 0.97627702, + "2024-05-26T21": 0.9575210000000001, + "2024-05-26T12": 0.9716889599999999, + "2024-05-23T06": 0.9784831669999999, + "2024-05-22T07": 0.9898218000000001, + "2024-05-27T12": 0.9610764282237401, + "2024-05-22T21": 0.96664221, + "2024-05-24T00": 0.9515716, + "2024-05-25T02": 0.98578308, + "2024-05-27T00": 0.95952, + "2024-05-26T20": 0.9594144, + "2024-05-26T17": 0.96148052, + "2024-05-27T13": 0.96739016, + "2024-05-23T12": 0.96852519, + "2024-05-25T10": 0.9974371359135009, + "2024-05-21T09": 0.99960004, + "2024-05-23T11": 0.9705145000000001, + "2024-05-24T14": 0.969011513, + "2024-05-25T01": 0.984803, + "2024-05-27T21": 0.99998899, + "2024-05-27T03": 0.96443065, + "2024-05-27T01": 0.966126366, + "latest": 0.94064, + "2024-05-28T09": 0.9690008999999999, + "2024-05-28T10": 0.978649788, + "2024-05-28T11": 0.9763129269999999, + "2024-05-28T12": 0.97301626, + "2024-05-28T13": 0.973026, + "2024-05-28T14": 0.9680406899999999, + "2024-05-28T15": 0.9620947799999999, + "2024-05-29": 0.9708680363470772, + "2024-05-28T20": 0.9847654206391314, + "2024-05-28T22": 0.97809932, + "2024-05-28T21": 0.9817122699999999, + "2024-05-28T19": 0.97479952, + "2024-05-29T02": 0.9631279974838531, + "2024-05-28T17": 0.9715275, + "2024-05-28T18": 0.96379375, + "2024-05-28T23": 0.97106688, + "2024-05-29T00": 0.96985422, + "2024-05-29T01": 0.9648311399999999, + "2024-05-28T16": 0.9649857, + "2024-05-29T06": 0.98380815, + "2024-05-29T05": 0.9758471400000001, + "2024-05-29T03": 0.96797286, + "2024-05-29T07": 0.97694376, + "2024-05-29T04": 0.975637608, + "2024-05-29T08": 0.968031, + "2024-05-29T09": 0.9840937999999999, + "2024-05-29T10": 0.99003873, + "2024-05-29T11": 0.98602287, + "2024-05-29T12": 0.98004843, + "2024-05-29T13": 0.97823638, + "2024-05-29T14": 0.97227998, + "2024-05-29T15": 0.969079392, + "2024-05-29T18": 0.9631442571900383, + "2024-05-29T17": 0.9711251999999999, + "2024-05-29T23": 0.9478612, + "2024-05-29T19": 0.9580601799999999, + "2024-05-29T22": 0.949345056, + "2024-05-29T20": 0.9531318599999999, + "2024-05-29T16": 0.96233553, + "2024-05-29T21": 0.9471444808508926, + "2024-05-30": 0.9545133420695353, + "2024-05-30T00": 0.946624728, + "2024-05-30T05": 0.952456134, + "2024-05-30T02": 0.9548432399999999, + "2024-05-30T01": 0.9474685722032538, + "2024-05-30T06": 0.9412463999999999, + "2024-05-30T07": 0.93791813, + "2024-05-30T03": 0.9568504, + "2024-05-30T04": 0.9588576, + "2024-05-30T08": 0.9312703742085001, + "2024-05-30T09": 0.94083516, + "2024-05-30T10": 0.94551754, + "2024-05-30T11": 0.954326369, + "2024-05-30T12": 0.9532367999999999, + "2024-05-30T13": 0.9573074814273776, + "2024-05-30T14": 0.96155748, + "2024-05-30T15": 0.9585480402119392, + "2024-05-30T21": 0.9618076, + "2024-05-30T20": 0.963516897, + "2024-05-30T18": 0.9727470199999999, + "2024-05-30T22": 0.9589642450000001, + "2024-05-30T16": 0.9666518799999999, + "2024-05-30T17": 0.97362988, + "2024-05-30T19": 0.97082522, + "2024-05-31": 0.9565106839626469, + "2024-05-30T23": 0.9605960032067823, + "2024-05-31T03": 0.9595391999999999, + "2024-05-31T07": 0.9547135, + "2024-05-31T06": 0.9557132, + "2024-05-31T04": 0.96255702, + "2024-05-31T02": 0.96259554, + "2024-05-31T05": 0.95260927, + "2024-05-31T00": 0.95173344, + "2024-05-31T01": 0.95876984, + "2024-05-31T08": 0.95669376, + "2024-05-31T09": 0.9536756399999999, + "2024-05-31T10": 0.9584246, + "2024-05-31T11": 0.9604137899999999, + "2024-05-31T12": 0.96740952, + "2024-05-31T13": 0.96540108, + "2024-05-31T14": 0.95645451, + "2024-06-01": 0.9584932591556288, + "2024-06-01T08": 0.9492115, + "2024-06-01T02": 0.95303646, + "2024-06-01T05": 0.95625354, + "2024-05-31T21": 0.96287212, + "2024-06-01T00": 0.9540259, + "2024-05-31T18": 0.95097184, + "2024-05-31T15": 0.95120984, + "2024-05-31T23": 0.96102838, + "2024-05-31T22": 0.96329094, + "2024-06-01T01": 0.9522372680000001, + "2024-06-01T07": 0.9502406982289462, + "2024-06-01T04": 0.9512669599999999, + "2024-05-31T19": 0.95573676, + "2024-06-01T06": 0.9514477620000001, + "2024-05-31T20": 0.9588768, + "2024-05-31T17": 0.9492305, + "2024-05-31T16": 0.93823941, + "2024-06-01T03": 0.9512383999999999, + "2024-06-01T09": 0.9481743699999999, + "2024-06-01T10": 0.94816488, + "2024-06-02": 0.9389210245642156, + "2024-06-01T13": 0.9481459, + "2024-06-01T15": 0.94804151, + "2024-06-01T18": 0.94116162, + "2024-06-01T12": 0.94717524, + "2024-06-01T21": 0.94116162, + "2024-06-01T20": 0.94016251, + "2024-06-02T01": 0.9462423999999999, + "2024-06-01T17": 0.9418789959456876, + "2024-06-01T11": 0.94616664, + "2024-06-02T00": 0.9412463999999999, + "2024-06-01T23": 0.9392197999999999, + "2024-06-01T14": 0.9489644999999999, + "2024-06-01T22": 0.94217959, + "2024-06-01T19": 0.9391634, + "2024-06-01T16": 0.944639595, + "2024-06-02T13": 0.9403224799999998, + "2024-06-02T11": 0.93433615, + "2024-06-02T07": 0.938339329, + "2024-06-02T05": 0.94020956, + "2024-06-02T08": 0.9357394009393881, + "2024-06-02T04": 0.94023779, + "2024-06-02T10": 0.9303110600000001, + "2024-06-02T12": 0.9413311799999999, + "2024-06-02T02": 0.94520536, + "2024-06-02T16": 0.93724022, + "2024-06-02T17": 0.9293955, + "2024-06-02T03": 0.9402001499999999, + "2024-06-02T09": 0.9303110600000001, + "2024-06-02T15": 0.9392197999999999, + "2024-06-02T06": 0.9411993, + "2024-06-02T18": 0.9234363600000001, + "2024-06-02T14": 0.9408142493553583, + "2024-06-03": 0.9260112253660611, + "2024-06-03T01": 0.9333648800000001, + "2024-06-02T20": 0.924663384, + "2024-06-03T00": 0.9222924599999999, + "2024-06-02T21": 0.9257120701281537, + "2024-06-02T23": 0.92749888, + "2024-06-02T19": 0.9254536600000001, + "2024-06-02T22": 0.92749888, + "2024-06-03T02": 0.94125582, + "2024-06-03T05": 0.9384366, + "2024-06-03T06": 0.941197248, + "2024-06-03T04": 0.93645654, + "2024-06-03T03": 0.93844599, + "2024-06-03T07": 0.9443857499999999 + }, + "USD vechain": { + "2024-05-26": 0.03551860350062877, + "2024-05-29": 0.0357485341830793, + "2024-05-25": 0.03530195876852486, + "2024-05-28": 0.03655520902650525, + "2024-05-24": 0.035124332167714906, + "2024-05-27": 0.035598198176327596, + "2024-05-23": 0.0358468060913031, + "2024-05-22": 0.03648673066598058, + "2024-05-22T20": 0.03599990768851298, + "2024-05-25T08": 0.0354996531273406, + "2024-05-28T03": 0.03622033264126389, + "2024-05-29T06": 0.03605188827962017, + "2024-05-22T16": 0.03643670659611718, + "2024-05-28T20": 0.035877086330754204, + "2024-05-29T08": 0.03576048796342364, + "2024-05-25T05": 0.03564218628428257, + "2024-05-24T22": 0.035265733277515615, + "2024-05-27T14": 0.0359020757800497, + "2024-05-29T09": 0.035840070313822685, + "2024-05-28T10": 0.035889822948962924, + "2024-05-29T05": 0.03588219862421071, + "2024-05-23T17": 0.03513290960930908, + "2024-05-24T23": 0.03525759141491951, + "2024-05-26T19": 0.035822440816662804, + "2024-05-26T18": 0.0358507693588624, + "2024-05-26T10": 0.034910482985509396, + "2024-05-27T16": 0.03684600791552551, + "2024-05-24T12": 0.034788633840855177, + "2024-05-26T01": 0.035464665183822, + "2024-05-23T07": 0.03630906208850039, + "2024-05-23T09": 0.03615671826337957, + "2024-05-24T18": 0.03497068423945271, + "2024-05-23T01": 0.03579214765139642, + "2024-05-28T14": 0.03543160696093718, + "2024-05-25T15": 0.03533667832834965, + "2024-05-23T16": 0.0351741296273511, + "2024-05-28T13": 0.03566084357362357, + "2024-05-25T03": 0.035388658893693574, + "2024-05-28T06": 0.035461958578584724, + "2024-05-25T23": 0.035378463188183475, + "2024-05-24T13": 0.03508700689749254, + "2024-05-29T03": 0.035645374104265166, + "2024-05-26T03": 0.035059963358640214, + "2024-05-26T00": 0.035564268767030595, + "2024-05-25T06": 0.035609189181646204, + "2024-05-27T04": 0.03579575363069517, + "2024-05-27T09": 0.03518957098401774, + "2024-05-24T17": 0.03475218311669817, + "2024-05-26T16": 0.03552726108961988, + "2024-05-29T12": 0.03578668697934821, + "2024-05-24T21": 0.035217290694848594, + "2024-05-28T22": 0.036025679706950996, + "2024-05-25T04": 0.03545652004658942, + "2024-05-27T22": 0.036707244361306963, + "2024-05-27T11": 0.0352540153540155, + "2024-05-23T21": 0.03468175219238372, + "2024-05-23T10": 0.03598833015346476, + "2024-05-23T14": 0.035063504427230656, + "2024-05-27T02": 0.03584758328238708, + "2024-05-25T18": 0.035159553480188475, + "2024-05-27T05": 0.03563115329046304, + "2024-05-22T23": 0.03583146193616202, + "2024-05-28T01": 0.036266974704031264, + "2024-05-22T15": 0.03613965782687705, + "2024-05-28T21": 0.035962412923286474, + "2024-05-24T03": 0.03526605371066274, + "2024-05-24T08": 0.034597841634600786, + "2024-05-24T02": 0.03516555193117536, + "2024-05-28T19": 0.03545480418260086, + "2024-05-26T07": 0.035217191121633504, + "2024-05-27T07": 0.03508539100773591, + "2024-05-25T22": 0.035257221311157216, + "2024-05-24T16": 0.03493204883428789, + "2024-05-27T20": 0.03645368450956088, + "2024-05-29T02": 0.03557599618646609, + "2024-05-28T09": 0.03559945312578734, + "2024-05-24T06": 0.03464381371825726, + "2024-05-24T11": 0.034653731111482906, + "2024-05-27T15": 0.036401613155325994, + "2024-05-22T19": 0.03603554141141852, + "2024-05-29T15": 0.03542663009871769, + "2024-05-23T20": 0.03463783633058504, + "2024-05-25T21": 0.03527832102038822, + "2024-05-29T13": 0.0356722363596406, + "2024-05-28T23": 0.03584320901713724, + "2024-05-23T08": 0.03634575317817763, + "2024-05-22T22": 0.03614472502555698, + "2024-05-26T11": 0.034995619297454664, + "2024-05-24T01": 0.035244425151460555, + "2024-05-23T05": 0.03623638669784683, + "2024-05-29T00": 0.0357433855361098, + "2024-05-28T04": 0.03581980229827204, + "2024-05-29T07": 0.036008414642323176, + "2024-05-25T09": 0.0355291517407906, + "2024-05-27T18": 0.03680624291617208, + "2024-05-24T10": 0.0346375457516352, + "2024-05-25T19": 0.03527958334571808, + "2024-05-24T07": 0.03428138108197806, + "2024-05-26T04": 0.03526729360969876, + "2024-05-26T09": 0.035075591592377046, + "2024-05-23T02": 0.035842661782203425, + "2024-05-27T06": 0.035374810545395, + "2024-05-28T08": 0.03532175889052977, + "2024-05-24T15": 0.03525780071767398, + "2024-05-25T20": 0.035281010132245584, + "2024-05-27T08": 0.03515036447754138, + "2024-05-23T22": 0.035156028823708656, + "2024-05-26T15": 0.03558285721114971, + "2024-05-29T14": 0.03552467969600561, + "2024-05-25T13": 0.035274807135835425, + "2024-05-25T17": 0.035203600929155615, + "2024-05-24T20": 0.03523616718867997, + "2024-05-28T17": 0.0356019018156804, + "2024-05-27T10": 0.03517304888083298, + "2024-05-28T15": 0.03540946375028532, + "2024-05-24T19": 0.03512057667556657, + "2024-05-26T02": 0.03537488361845068, + "2024-05-27T19": 0.037057532586131585, + "2024-05-25T11": 0.03562666170412946, + "2024-05-27T17": 0.036916527684537515, + "2024-05-26T06": 0.03528064246469098, + "2024-05-29T04": 0.035711625299229624, + "2024-05-23T15": 0.03492491747989882, + "2024-05-23T00": 0.0358468060913031, + "2024-05-24T05": 0.035268213317836, + "2024-05-28T11": 0.03591309234770133, + "2024-05-29T10": 0.03594434711695815, + "2024-05-23T04": 0.036145972342563545, + "2024-05-26T08": 0.03527561827969779, + "2024-05-26T13": 0.035204812658055196, + "2024-05-28T05": 0.03532450003445537, + "2024-05-22T18": 0.03638858460057189, + "2024-05-22T17": 0.036340671747074844, + "2024-05-23T19": 0.03481006094880869, + "2024-05-25T07": 0.035457345901567225, + "2024-05-26T22": 0.03552110842004454, + "2024-05-25T16": 0.03524562424006472, + "2024-05-26T05": 0.03519310067189321, + "2024-05-24T04": 0.035227095584222774, + "2024-05-29T11": 0.03593882651690565, + "2024-05-25T12": 0.03528559087180122, + "2024-05-28T18": 0.0355687281863066, + "2024-05-28T07": 0.03541485402114232, + "2024-05-23T18": 0.03483616158758234, + "2024-05-26T23": 0.0356756901023795, + "2024-05-24T09": 0.03449533748727322, + "2024-05-23T03": 0.03591437887005856, + "2024-05-28T12": 0.035854202801644905, + "2024-05-26T14": 0.035239057836878536, + "2024-05-29T01": 0.035673401026689096, + "2024-05-28T16": 0.03587026031511044, + "2024-05-25T14": 0.0351873396630761, + "2024-05-25T00": 0.03530195876852486, + "2024-05-23T23": 0.0349549029862808, + "2024-05-23T13": 0.035924429238273714, + "2024-05-28T00": 0.03658831317050527, + "2024-05-27T23": 0.036506794223250656, + "2024-05-28T02": 0.035908622903084136, + "2024-05-26T21": 0.03567348782874296, + "2024-05-26T12": 0.035020278737059825, + "2024-05-23T06": 0.036074520966711064, + "2024-05-27T12": 0.03527677040318778, + "2024-05-22T21": 0.035781758708682665, + "2024-05-24T00": 0.035124332167714906, + "2024-05-25T02": 0.035296314187133485, + "2024-05-27T00": 0.035598198176327596, + "2024-05-26T20": 0.035737169728173424, + "2024-05-26T17": 0.03555749315564474, + "2024-05-27T13": 0.03535449664083369, + "2024-05-23T12": 0.03636802197777713, + "2024-05-25T10": 0.035459423851038424, + "2024-05-23T11": 0.035887128275622474, + "2024-05-24T14": 0.034881192145342806, + "2024-05-25T01": 0.03518668224570805, + "2024-05-27T21": 0.03685658916665691, + "2024-05-27T03": 0.035803256581912905, + "2024-05-27T01": 0.035753581674062784, + "latest": 0.03378655, + "2024-05-29T18": 0.03556731376357841, + "2024-05-29T17": 0.03549429006308786, + "2024-05-29T23": 0.03525972818674625, + "2024-05-29T19": 0.03532635379434616, + "2024-05-29T22": 0.0353067758528242, + "2024-05-29T20": 0.03525466693954293, + "2024-05-29T16": 0.035264420834501986, + "2024-05-29T21": 0.03527179458737419, + "2024-05-30": 0.03516787715659147, + "2024-05-30T00": 0.03516787715659147, + "2024-05-30T09": 0.034612737079778674, + "2024-05-30T05": 0.03536290453978098, + "2024-05-30T02": 0.03531436876680915, + "2024-05-30T08": 0.03434622998222168, + "2024-05-30T01": 0.035127328598954295, + "2024-05-30T06": 0.03526866392217206, + "2024-05-30T07": 0.03476290501172617, + "2024-05-30T03": 0.03534326480416076, + "2024-05-30T04": 0.0353983714071228, + "2024-05-30T10": 0.034568005263409876, + "2024-05-30T11": 0.03472382701035819, + "2024-05-30T12": 0.034613373755649414, + "2024-05-30T13": 0.03466829295574694, + "2024-05-30T14": 0.034898795892257216, + "2024-05-30T15": 0.03457460933444402, + "2024-05-30T21": 0.03437464170563059, + "2024-05-30T20": 0.03473065882120569, + "2024-05-30T18": 0.035094493171046605, + "2024-05-30T22": 0.03441872256791269, + "2024-05-30T16": 0.03476981100396473, + "2024-05-30T17": 0.03488062188481477, + "2024-05-30T19": 0.03504575322751764, + "2024-05-31": 0.034295022161872614, + "2024-05-30T23": 0.03433642732092341, + "2024-05-31T03": 0.03415665758856157, + "2024-05-31T07": 0.034115974002358176, + "2024-05-31T06": 0.03416522778898745, + "2024-05-31T04": 0.034221324013840454, + "2024-05-31T02": 0.034108530715976436, + "2024-05-31T05": 0.034255743886496555, + "2024-05-31T00": 0.034295022161872614, + "2024-05-31T01": 0.034187329597321826, + "2024-05-31T08": 0.03411415702296618, + "2024-05-31T09": 0.03408974882249601, + "2024-05-31T10": 0.03402334501666208, + "2024-05-31T11": 0.03414093996878764, + "2024-05-31T12": 0.034192595527518875, + "2024-05-31T13": 0.03434223090536881, + "2024-05-31T14": 0.03400549984101275, + "2024-06-01": 0.03394102872702565, + "2024-06-01T08": 0.03360349901438905, + "2024-06-01T02": 0.03371930693317186, + "2024-06-01T05": 0.03373079091480948, + "2024-05-31T21": 0.034043059442222086, + "2024-06-01T00": 0.03394102872702565, + "2024-05-31T18": 0.033845867520648415, + "2024-05-31T15": 0.03377063015023074, + "2024-05-31T23": 0.03399107223826383, + "2024-05-31T22": 0.03404998127578497, + "2024-06-01T01": 0.033823429425096134, + "2024-06-01T07": 0.03361065970730737, + "2024-06-01T04": 0.033763921334999024, + "2024-05-31T19": 0.03377957097796576, + "2024-06-01T06": 0.03368327351606511, + "2024-05-31T20": 0.03402531884397045, + "2024-05-31T17": 0.03362641348504989, + "2024-05-31T16": 0.03348529503543901, + "2024-06-01T03": 0.03378028565584996, + "2024-06-01T09": 0.033659174182151454, + "2024-06-01T10": 0.03361628569000213, + "2024-06-02": 0.03367679116798694, + "2024-06-01T13": 0.03367672917781068, + "2024-06-01T15": 0.03375993745600703, + "2024-06-01T18": 0.033688316463267934, + "2024-06-01T12": 0.03353171277144125, + "2024-06-01T21": 0.033741596221387955, + "2024-06-01T20": 0.03362571288561706, + "2024-06-02T01": 0.03379508435344312, + "2024-06-01T17": 0.03369193384632785, + "2024-06-01T11": 0.03353611755121166, + "2024-06-02T00": 0.03367679116798694, + "2024-06-01T23": 0.0337519471549808, + "2024-06-01T14": 0.03368063833743388, + "2024-06-01T22": 0.03374343642143117, + "2024-06-01T19": 0.033597220974317527, + "2024-06-01T16": 0.03375978007984833, + "2024-06-02T13": 0.03374299842572318, + "2024-06-02T11": 0.033646950088322025, + "2024-06-02T07": 0.03386154186452592, + "2024-06-02T05": 0.03378933845098394, + "2024-06-02T08": 0.03366539707040835, + "2024-06-02T04": 0.03373956038616591, + "2024-06-02T10": 0.03369234321572072, + "2024-06-02T12": 0.03394557952749521, + "2024-06-02T02": 0.033710199238462336, + "2024-06-02T16": 0.033854503901205944, + "2024-06-02T17": 0.033764070607523206, + "2024-06-02T03": 0.03357882436790793, + "2024-06-02T09": 0.03374688494628823, + "2024-06-02T15": 0.0338502205226264, + "2024-06-02T06": 0.033688350547358, + "2024-06-02T18": 0.033402814707648595, + "2024-06-02T14": 0.03380027515208747, + "2024-06-03": 0.03328253736326864, + "2024-06-03T01": 0.033286408338635214, + "2024-06-02T20": 0.033286653825883535, + "2024-06-03T00": 0.03327258911738473, + "2024-06-02T21": 0.03332066045759687, + "2024-06-02T23": 0.03326998347532006, + "2024-06-02T19": 0.0333574154516904, + "2024-06-02T22": 0.03325748861699089, + "2024-06-03T02": 0.03404935661550668, + "2024-06-03T05": 0.03379663362941324, + "2024-06-03T06": 0.03379307370398989, + "2024-06-03T04": 0.033993747271419995, + "2024-06-03T03": 0.03417223927088815, + "2024-06-03T07": 0.034015854866044345 + }, + "USD zcash": { + "2024-05-26": 26.470467199999998, + "2024-05-29": 26.840472741877857, + "2024-05-25": 27.144513940677346, + "2024-05-28": 26.644378230963802, + "2024-05-24": 26.56294138980098, + "2024-05-27": 27.184802002980387, + "2024-05-23": 25.07983285901207, + "2024-05-22": 25.61732531699065, + "2024-05-22T20": 25.48210137675717, + "2024-05-25T08": 27.549251599999998, + "2024-05-28T03": 26.7888201, + "2024-05-29T06": 27.25260788180255, + "2024-05-22T16": 25.809633703615027, + "2024-05-28T20": 26.6938144, + "2024-05-29T08": 26.757820619464628, + "2024-05-25T05": 27.489, + "2024-05-24T22": 27.43456836185548, + "2024-05-27T14": 27.567032061372064, + "2024-05-29T09": 27.05127660530589, + "2024-05-28T10": 26.803974899999996, + "2024-05-29T05": 27.106020759654037, + "2024-05-23T17": 24.605017312507083, + "2024-05-24T23": 27.42276245219879, + "2024-05-26T19": 26.48569, + "2024-05-26T18": 26.4562356, + "2024-05-26T10": 26.4402135, + "2024-05-27T16": 27.7051402235025, + "2024-05-24T12": 27.0353401866439, + "2024-05-26T01": 26.977302, + "2024-05-23T07": 25.586263807350562, + "2024-05-23T09": 25.065086552047962, + "2024-05-24T18": 26.87042849163809, + "2024-05-23T01": 24.991621372392267, + "2024-05-28T14": 26.5436957, + "2024-05-25T15": 26.617338, + "2024-05-23T16": 24.62809969343755, + "2024-05-28T13": 26.56341, + "2024-05-25T03": 27.368774199999997, + "2024-05-28T06": 26.8363632, + "2024-05-25T23": 26.885428700000002, + "2024-05-24T13": 26.99333841605769, + "2024-05-29T03": 26.684584028828667, + "2024-05-26T03": 26.897040999999998, + "2024-05-26T00": 26.9065017, + "2024-05-25T06": 27.5592477, + "2024-05-27T04": 26.777862916559517, + "2024-05-27T09": 27.018751172582025, + "2024-05-24T17": 26.659200306268815, + "2024-05-26T16": 26.328937200000002, + "2024-05-29T12": 27.113399660826772, + "2024-05-24T21": 27.378764356961582, + "2024-05-28T22": 26.675435999999998, + "2024-05-25T04": 27.369048, + "2024-05-27T22": 27.309455405709755, + "2024-05-27T11": 27.435540808714048, + "2024-05-23T21": 24.49735217635579, + "2024-05-23T10": 24.983497480372172, + "2024-05-23T14": 24.75649122916279, + "2024-05-27T02": 27.02709443893088, + "2024-05-25T18": 26.793300000000002, + "2024-05-27T05": 26.621483439966973, + "2024-05-22T23": 24.796329806995026, + "2024-05-28T01": 26.758576, + "2024-05-22T15": 25.72284777321683, + "2024-05-28T21": 26.665022999999998, + "2024-05-24T03": 26.71724176108774, + "2024-05-24T08": 26.59617978183181, + "2024-05-24T02": 26.51917939112154, + "2024-05-28T19": 26.5073558, + "2024-05-26T07": 26.750098800000004, + "2024-05-27T07": 26.602507341890902, + "2024-05-25T22": 26.7751796, + "2024-05-24T16": 26.592189851136997, + "2024-05-27T20": 27.38350840538847, + "2024-05-29T02": 26.53474082009811, + "2024-05-28T09": 26.82246202788394, + "2024-05-24T06": 26.528809432529, + "2024-05-24T11": 26.770393087986307, + "2024-05-27T15": 27.893252050941026, + "2024-05-22T19": 25.53338916989439, + "2024-05-23T20": 23.84277908147305, + "2024-05-25T21": 26.804638, + "2024-05-29T13": 27.051808998107767, + "2024-05-28T23": 26.584454400000002, + "2024-05-23T08": 25.58373324557321, + "2024-05-22T22": 24.74904480114584, + "2024-05-26T11": 26.448093000000004, + "2024-05-24T01": 26.031920999021036, + "2024-05-23T05": 25.44172574262765, + "2024-05-29T00": 26.723237971967208, + "2024-05-28T04": 26.580582, + "2024-05-29T07": 26.990838174105257, + "2024-05-25T09": 27.4463318547075, + "2024-05-27T18": 27.657113841930038, + "2024-05-24T10": 26.84257966527031, + "2024-05-25T19": 26.853285, + "2024-05-24T07": 26.215260316679032, + "2024-05-26T04": 26.797574413941163, + "2024-05-26T09": 26.49096049333771, + "2024-05-23T02": 24.843365395976846, + "2024-05-27T06": 26.605945022123496, + "2024-05-28T08": 26.806497561685184, + "2024-05-24T15": 27.20980020348527, + "2024-05-25T20": 26.853285, + "2024-05-27T08": 26.993702182271544, + "2024-05-23T22": 24.81766434437599, + "2024-05-26T15": 26.33419, + "2024-05-29T14": 27.002211761724364, + "2024-05-25T13": 26.986221399999998, + "2024-05-25T17": 26.7841062, + "2024-05-24T20": 27.00640960914753, + "2024-05-28T17": 26.41356, + "2024-05-27T10": 26.969569634068453, + "2024-05-28T15": 26.475089999999998, + "2024-05-24T19": 27.031577830152063, + "2024-05-26T02": 26.9270377, + "2024-05-27T19": 27.591101852025798, + "2024-05-25T11": 27.2459125, + "2024-05-27T17": 27.51800709036382, + "2024-05-26T06": 26.6809254, + "2024-05-29T04": 26.9175568685411, + "2024-05-23T15": 24.669299276828216, + "2024-05-23T00": 24.928947959727044, + "2024-05-24T05": 26.59723150752737, + "2024-05-28T11": 26.7129926, + "2024-05-29T10": 27.11887012578162, + "2024-05-23T04": 25.178473967617826, + "2024-05-26T08": 26.591233352260197, + "2024-05-26T13": 26.341568000000002, + "2024-05-28T05": 26.8093409, + "2024-05-22T18": 25.493994161957634, + "2024-05-22T17": 25.729698126958365, + "2024-05-23T19": 24.086282602555652, + "2024-05-25T07": 27.5392555, + "2024-05-26T22": 26.698781800000003, + "2024-05-25T16": 26.6862634, + "2024-05-26T05": 26.701987000000003, + "2024-05-24T04": 26.972679040286682, + "2024-05-29T11": 27.16925309449399, + "2024-05-25T12": 27.0481065, + "2024-05-28T18": 26.24715, + "2024-05-28T07": 26.7580404, + "2024-05-23T18": 24.076701948798835, + "2024-05-26T23": 26.6072224, + "2024-05-24T09": 26.72750894129877, + "2024-05-23T03": 25.123497479909155, + "2024-05-28T12": 26.6230835, + "2024-05-26T14": 26.369711799999997, + "2024-05-29T01": 26.598631746208312, + "2024-05-28T16": 26.3423115, + "2024-05-25T14": 26.798124, + "2024-05-25T00": 27.7136244, + "2024-05-23T23": 25.222003251679507, + "2024-05-23T13": 24.937495437472805, + "2024-05-28T00": 26.888472, + "2024-05-27T23": 27.018846281252845, + "2024-05-28T02": 26.650264200000002, + "2024-05-26T21": 26.406790000000004, + "2024-05-26T12": 26.371558399999998, + "2024-05-23T06": 25.4551031080738, + "2024-05-27T12": 27.431431248486867, + "2024-05-22T21": 25.117634086659997, + "2024-05-24T00": 25.59783751828278, + "2024-05-25T02": 27.4039698, + "2024-05-27T00": 26.92666737787335, + "2024-05-26T20": 26.44596128832578, + "2024-05-26T17": 26.385744, + "2024-05-27T13": 27.347046129025134, + "2024-05-23T12": 25.254007601441106, + "2024-05-25T10": 27.3726074, + "2024-05-23T11": 25.619270305567106, + "2024-05-24T14": 27.1428820955094, + "2024-05-25T01": 27.59448, + "2024-05-27T21": 27.410753233514363, + "2024-05-27T03": 26.969594401773595, + "2024-05-27T01": 27.130832366710255, + "latest": 26.53, + "2024-05-29T15": 26.948110475962057, + "2024-05-29T18": 26.816820728409578, + "2024-05-29T17": 26.85758688580865, + "2024-05-29T19": 27.163752849948267, + "2024-05-29T22": 27.114746279875273, + "2024-05-29T20": 27.085890574011156, + "2024-05-29T16": 26.830576406699326, + "2024-05-29T21": 27.109330254475765, + "2024-05-30": 26.852234252163623, + "2024-05-30T00": 26.917281417906793, + "2024-05-30T05": 27.197264126304148, + "2024-05-29T23": 26.97435691099613, + "2024-05-30T02": 27.124422534839827, + "2024-05-30T08": 26.521208209936834, + "2024-05-30T01": 26.864772014247453, + "2024-05-30T06": 26.84277524663084, + "2024-05-30T07": 26.814666291204897, + "2024-05-30T03": 27.202393218825396, + "2024-05-30T04": 27.19729327304143, + "2024-05-30T09": 26.58260223889567, + "2024-05-30T10": 26.98449329853779, + "2024-05-30T11": 26.74740303904119, + "2024-05-30T12": 26.638036785582877, + "2024-05-30T13": 26.835947493513398, + "2024-05-30T14": 26.898047025245745, + "2024-05-30T15": 26.875468381164186, + "2024-05-30T21": 26.876234138890055, + "2024-05-30T20": 26.808303281722225, + "2024-05-30T18": 26.949506500781315, + "2024-05-30T16": 26.99021000439824, + "2024-05-30T17": 26.878530707167048, + "2024-05-30T19": 27.027213305357208, + "2024-05-31": 26.888544336942612, + "2024-05-30T22": 26.825265094277498, + "2024-05-30T23": 26.79291370604743, + "2024-05-31T03": 26.6862370597496, + "2024-05-31T07": 26.861508119428184, + "2024-05-31T06": 26.84484782226719, + "2024-05-31T04": 26.69027882148, + "2024-05-31T02": 26.521820546318533, + "2024-05-31T05": 26.639152225709218, + "2024-05-31T00": 26.85692467495772, + "2024-05-31T01": 26.84945582655919, + "2024-05-31T08": 26.926034502850555, + "2024-05-31T09": 26.75045166483188, + "2024-05-31T10": 26.90024204553683, + "2024-05-31T11": 26.9014266853112, + "2024-05-31T12": 26.98394149053396, + "2024-05-31T13": 26.886581085314344, + "2024-05-31T14": 26.75219068046772, + "2024-06-01": 26.987470836057867, + "2024-06-01T08": 26.4779201904504, + "2024-06-01T02": 26.916885927537322, + "2024-06-01T05": 26.806768979946074, + "2024-05-31T21": 26.84416585050862, + "2024-06-01T00": 26.89875037172125, + "2024-05-31T18": 26.707825241128333, + "2024-05-31T15": 26.669788726186763, + "2024-05-31T23": 26.825746414213505, + "2024-05-31T22": 26.89822753619776, + "2024-06-01T01": 26.880761025857023, + "2024-06-01T07": 26.488164978840096, + "2024-06-01T04": 26.91859283845598, + "2024-05-31T19": 26.806953896573496, + "2024-06-01T06": 26.559227701396804, + "2024-05-31T20": 26.874440587997555, + "2024-05-31T17": 26.656212801942427, + "2024-05-31T16": 26.54048289040226, + "2024-06-01T03": 26.940572880337207, + "2024-06-01T09": 26.532492964380754, + "2024-06-01T10": 26.534602601420936, + "2024-06-02": 26.85048424606371, + "2024-06-01T13": 26.855494882059997, + "2024-06-01T15": 26.854635356180403, + "2024-06-01T18": 26.84742138124186, + "2024-06-01T12": 26.70509619362354, + "2024-06-01T21": 26.847760879137024, + "2024-06-01T20": 26.768807663718754, + "2024-06-02T01": 27.180134547148803, + "2024-06-01T17": 26.814733964097957, + "2024-06-01T11": 26.597156416986387, + "2024-06-02T00": 27.1377266006688, + "2024-06-01T23": 26.97729613253519, + "2024-06-01T14": 26.850292685330402, + "2024-06-01T22": 26.9979042507944, + "2024-06-01T19": 26.800139006822807, + "2024-06-01T16": 26.80465503076956, + "2024-06-02T13": 26.69567365852293, + "2024-06-02T11": 26.74910783729995, + "2024-06-02T07": 26.4648735358151, + "2024-06-02T05": 26.790004477320004, + "2024-06-02T08": 26.561384389408275, + "2024-06-02T04": 27.226313036447216, + "2024-06-02T10": 26.4741485470955, + "2024-06-02T12": 26.688701332293167, + "2024-06-02T02": 27.195030569535604, + "2024-06-02T16": 26.68896423823167, + "2024-06-02T17": 26.490255199849795, + "2024-06-02T03": 27.1603271918565, + "2024-06-02T09": 26.571659493434613, + "2024-06-02T15": 26.757004194169255, + "2024-06-02T06": 26.58576250231875, + "2024-06-02T18": 26.453443736862738, + "2024-06-02T14": 26.713008860880176, + "2024-06-03": 26.370145963871696, + "2024-06-03T01": 26.736185657349072, + "2024-06-02T20": 26.307417135933605, + "2024-06-03T00": 26.29570583611137, + "2024-06-02T21": 26.374072285332996, + "2024-06-02T23": 26.68776636046343, + "2024-06-02T19": 26.422205657660417, + "2024-06-02T22": 26.671852512348647, + "2024-06-03T02": 26.829224100492713, + "2024-06-03T05": 26.833082836434976, + "2024-06-03T06": 27.125271987004492, + "2024-06-03T04": 26.691316184250564, + "2024-06-03T03": 26.79915296249767, + "2024-06-03T07": 27.210320707291576 + }, + "USD zilliqa": { + "2024-05-26": 0.024263690918053974, + "2024-05-29": 0.02469629333041752, + "2024-05-25": 0.02404046711963215, + "2024-05-28": 0.025012943482002496, + "2024-05-24": 0.023736665426077806, + "2024-05-27": 0.023970555187019963, + "2024-05-23": 0.024254781615138055, + "2024-05-22": 0.024718844807607592, + "2024-05-22T20": 0.024297084, + "2024-05-25T08": 0.0242705308, + "2024-05-28T03": 0.024570573900000003, + "2024-05-29T06": 0.0251395443, + "2024-05-22T16": 0.024464127199999998, + "2024-05-28T20": 0.0250054706, + "2024-05-29T08": 0.02476521, + "2024-05-25T05": 0.024430224, + "2024-05-24T22": 0.023946646999999998, + "2024-05-27T14": 0.02473218, + "2024-05-29T09": 0.0249969816, + "2024-05-28T10": 0.024865856699999998, + "2024-05-29T05": 0.0249804882, + "2024-05-23T17": 0.0235028304, + "2024-05-24T23": 0.023965685400000002, + "2024-05-26T19": 0.0240570022, + "2024-05-26T18": 0.024057483600000002, + "2024-05-26T10": 0.0241310682, + "2024-05-27T16": 0.0254547748, + "2024-05-24T12": 0.023897566800000002, + "2024-05-26T01": 0.024317568, + "2024-05-23T07": 0.0243651282, + "2024-05-23T09": 0.024182017299999997, + "2024-05-24T18": 0.02396801, + "2024-05-23T01": 0.024317591700000002, + "2024-05-28T14": 0.0246555668, + "2024-05-25T15": 0.024397560000000002, + "2024-05-23T16": 0.0234637988, + "2024-05-28T13": 0.02476521, + "2024-05-25T03": 0.0241301026, + "2024-05-28T06": 0.0243485544, + "2024-05-25T23": 0.0242658741, + "2024-05-24T13": 0.023905647999999998, + "2024-05-29T03": 0.0249035742, + "2024-05-26T03": 0.024127345699999997, + "2024-05-26T00": 0.0242768436, + "2024-05-25T06": 0.024300519099999997, + "2024-05-27T04": 0.0242071634, + "2024-05-27T09": 0.024414853400000002, + "2024-05-24T17": 0.0238199914, + "2024-05-26T16": 0.024159848600000002, + "2024-05-29T12": 0.024795924599999998, + "2024-05-24T21": 0.023937845399999998, + "2024-05-28T22": 0.0249370368, + "2024-05-25T04": 0.024280284, + "2024-05-27T22": 0.025044428599999998, + "2024-05-27T11": 0.024584748, + "2024-05-23T21": 0.023602284999999997, + "2024-05-23T10": 0.0240415825, + "2024-05-23T14": 0.023688386999999998, + "2024-05-27T02": 0.0241757279, + "2024-05-25T18": 0.0243239175, + "2024-05-27T05": 0.0240084704, + "2024-05-22T23": 0.0242790695, + "2024-05-28T01": 0.024720208, + "2024-05-22T15": 0.024382926899999997, + "2024-05-28T21": 0.0248873548, + "2024-05-24T03": 0.023960172300000002, + "2024-05-24T08": 0.0234332024, + "2024-05-24T02": 0.023840937, + "2024-05-28T19": 0.024799459100000004, + "2024-05-26T07": 0.0241310682, + "2024-05-27T07": 0.0239058872, + "2024-05-25T22": 0.024175647600000003, + "2024-05-24T16": 0.023720033400000003, + "2024-05-27T20": 0.0250644082, + "2024-05-29T02": 0.024694785599999998, + "2024-05-28T09": 0.024754476600000002, + "2024-05-24T06": 0.023279752400000003, + "2024-05-24T11": 0.023745744, + "2024-05-27T15": 0.0251183796, + "2024-05-22T19": 0.024274901199999997, + "2024-05-29T15": 0.024534287999999998, + "2024-05-23T20": 0.022762915, + "2024-05-25T21": 0.02419516, + "2024-05-29T13": 0.024730695, + "2024-05-28T23": 0.0248161536, + "2024-05-23T08": 0.024295900199999998, + "2024-05-22T22": 0.024420228000000002, + "2024-05-26T11": 0.0241191415, + "2024-05-24T01": 0.023780484, + "2024-05-23T05": 0.0244448348, + "2024-05-29T00": 0.0247407714, + "2024-05-28T04": 0.0242223048, + "2024-05-29T07": 0.0249430324, + "2024-05-25T09": 0.0243312376, + "2024-05-27T18": 0.0252045177, + "2024-05-24T10": 0.0236679232, + "2024-05-25T19": 0.0243239175, + "2024-05-24T07": 0.023463428400000003, + "2024-05-26T04": 0.024033749599999998, + "2024-05-26T09": 0.024050376000000002, + "2024-05-23T02": 0.0243973068, + "2024-05-27T06": 0.023948499199999997, + "2024-05-28T08": 0.024528494787155096, + "2024-05-24T15": 0.023978005000000004, + "2024-05-25T20": 0.024213945, + "2024-05-27T08": 0.024375366, + "2024-05-23T22": 0.023795237800000004, + "2024-05-26T15": 0.024125516, + "2024-05-29T14": 0.024631759, + "2024-05-25T13": 0.0242766008, + "2024-05-25T17": 0.024284656199999997, + "2024-05-24T20": 0.023927607, + "2024-05-28T17": 0.02472525, + "2024-05-27T10": 0.024485055000000002, + "2024-05-28T15": 0.0247666974, + "2024-05-24T19": 0.023892591, + "2024-05-26T02": 0.0241073479, + "2024-05-27T19": 0.0250846389, + "2024-05-25T11": 0.0244263355, + "2024-05-27T17": 0.025323889500000002, + "2024-05-26T06": 0.024031826399999998, + "2024-05-29T04": 0.0249602619, + "2024-05-23T15": 0.0235430368, + "2024-05-23T00": 0.0243071104, + "2024-05-24T05": 0.02349174669962068, + "2024-05-28T11": 0.024824901500000003, + "2024-05-29T10": 0.025045682099999998, + "2024-05-23T04": 0.0244648224, + "2024-05-26T08": 0.0241298612, + "2024-05-26T13": 0.0240023168, + "2024-05-28T05": 0.0242912813, + "2024-05-22T18": 0.0242170936, + "2024-05-22T17": 0.0244860816, + "2024-05-23T19": 0.0232885548, + "2024-05-25T07": 0.0242805269, + "2024-05-26T22": 0.024089878000000002, + "2024-05-25T16": 0.0243265938, + "2024-05-26T05": 0.0239928, + "2024-05-24T04": 0.0239165992, + "2024-05-29T11": 0.0249053193, + "2024-05-25T12": 0.0243082983, + "2024-05-28T18": 0.024539287500000003, + "2024-05-28T07": 0.0243400248, + "2024-05-23T18": 0.0231235706, + "2024-05-26T23": 0.02398848, + "2024-05-24T09": 0.02358938, + "2024-05-23T03": 0.0244436118, + "2024-05-28T12": 0.024734992400000003, + "2024-05-26T14": 0.0240306244, + "2024-05-29T01": 0.0247100646, + "2024-05-28T16": 0.0246640755, + "2024-05-25T14": 0.0242283039, + "2024-05-25T00": 0.0240344708, + "2024-05-23T23": 0.023689572, + "2024-05-23T13": 0.023731691000000003, + "2024-05-28T00": 0.024920048, + "2024-05-27T23": 0.025018966400000002, + "2024-05-28T02": 0.024531833, + "2024-05-26T21": 0.02388805, + "2024-05-26T12": 0.024042304, + "2024-05-23T06": 0.0242946847, + "2024-05-27T12": 0.024492843, + "2024-05-22T21": 0.0242210349, + "2024-05-24T00": 0.0237193215, + "2024-05-25T02": 0.0241746804, + "2024-05-27T00": 0.023988000000000002, + "2024-05-26T20": 0.02398536, + "2024-05-26T17": 0.024086986, + "2024-05-27T13": 0.0246244768, + "2024-05-23T12": 0.0243480636, + "2024-05-25T10": 0.0244433985, + "2024-05-23T11": 0.024237875000000002, + "2024-05-24T14": 0.0239629742, + "2024-05-25T01": 0.024105178, + "2024-05-27T21": 0.0251545682, + "2024-05-27T03": 0.024225698400000002, + "2024-05-27T01": 0.02398824, + "latest": 0.023372, + "2024-05-29T18": 0.024546412800000004, + "2024-05-29T17": 0.024597841999999998, + "2024-05-29T23": 0.024330768, + "2024-05-29T19": 0.0245059606, + "2024-05-29T22": 0.0243829049, + "2024-05-29T20": 0.0243478233, + "2024-05-29T16": 0.0243531847, + "2024-05-29T21": 0.024265519923919607, + "2024-05-30": 0.024017754569764765, + "2024-05-30T00": 0.0243997068, + "2024-05-30T05": 0.0244357846, + "2024-05-30T02": 0.024520294499999998, + "2024-05-30T08": 0.023615822, + "2024-05-30T01": 0.024413423199417524, + "2024-05-30T06": 0.02408072, + "2024-05-30T07": 0.0238951758, + "2024-05-30T03": 0.024482570560925985, + "2024-05-30T04": 0.0245107974, + "2024-05-30T09": 0.02383569, + "2024-05-30T10": 0.0238578263, + "2024-05-30T11": 0.02388103289596393, + "2024-05-30T12": 0.023960816, + "2024-05-30T13": 0.024115521999999997, + "2024-05-30T14": 0.0241588818, + "2024-05-30T15": 0.02409036, + "2024-05-30T21": 0.023935212, + "2024-05-30T20": 0.0240554286, + "2024-05-30T18": 0.024443642999999998, + "2024-05-30T22": 0.0239616105, + "2024-05-30T16": 0.0243112448, + "2024-05-30T17": 0.0244207166, + "2024-05-30T19": 0.0243556152, + "2024-05-31": 0.02367788725504191, + "2024-05-30T23": 0.023951614, + "2024-05-31T03": 0.023828556799999998, + "2024-05-31T07": 0.023682893, + "2024-05-31T06": 0.023742875, + "2024-05-31T04": 0.023799047400000002, + "2024-05-31T02": 0.023839983, + "2024-05-31T05": 0.0236403035, + "2024-05-31T00": 0.0237733416, + "2024-05-31T01": 0.0238642712, + "2024-05-31T08": 0.0236524288, + "2024-05-31T09": 0.0235819794, + "2024-05-31T10": 0.023685779999999997, + "2024-05-31T11": 0.0237555003, + "2024-05-31T12": 0.023865433199999998, + "2024-05-31T13": 0.0237552626, + "2024-05-31T14": 0.023586548, + "2024-06-01": 0.023644574562168424, + "2024-06-01T08": 0.0235004784, + "2024-06-01T02": 0.0235561842, + "2024-06-01T05": 0.0236515374, + "2024-05-31T21": 0.023672270999999998, + "2024-06-01T00": 0.023585917799999998, + "2024-05-31T18": 0.023544544400000002, + "2024-05-31T15": 0.0235704203, + "2024-05-31T23": 0.0236660731, + "2024-05-31T22": 0.023692722000000003, + "2024-06-01T01": 0.0235661741, + "2024-06-01T07": 0.023531197101253086, + "2024-06-01T04": 0.0236417818, + "2024-05-31T19": 0.0236287688, + "2024-06-01T06": 0.0235713639, + "2024-05-31T20": 0.0236622827, + "2024-05-31T17": 0.023550908300000003, + "2024-05-31T16": 0.0233210946, + "2024-06-01T03": 0.02363108, + "2024-06-01T09": 0.0234295985, + "2024-06-01T10": 0.023411379840000003, + "2024-06-02": 0.023594031608471833, + "2024-06-01T13": 0.023398922, + "2024-06-01T15": 0.0235461943, + "2024-06-01T18": 0.0235989782, + "2024-06-01T12": 0.023384623847593607, + "2024-06-01T21": 0.0236888981, + "2024-06-01T20": 0.023618960400000003, + "2024-06-02T01": 0.023711016, + "2024-06-01T17": 0.023511175999999998, + "2024-06-01T11": 0.0233594256, + "2024-06-02T00": 0.023601103999999998, + "2024-06-01T23": 0.0236203788, + "2024-06-01T14": 0.0234943632, + "2024-06-01T22": 0.023689372299999997, + "2024-06-01T19": 0.0235590138, + "2024-06-01T16": 0.023528569500000002, + "2024-06-02T13": 0.023602993599999997, + "2024-06-02T11": 0.0235632582, + "2024-06-02T07": 0.023561288578240615, + "2024-06-02T05": 0.02374025680586947, + "2024-06-02T08": 0.0235230512, + "2024-06-02T04": 0.0237407544, + "2024-06-02T10": 0.02348261, + "2024-06-02T12": 0.023645490756455615, + "2024-06-02T02": 0.0237200584, + "2024-06-02T16": 0.0234909569, + "2024-06-02T17": 0.0233148355, + "2024-06-02T03": 0.023759786999999997, + "2024-06-02T09": 0.023452632200000004, + "2024-06-02T15": 0.0236603456, + "2024-06-02T06": 0.023619906, + "2024-06-02T18": 0.0230259456, + "2024-06-02T14": 0.0236327355, + "2024-06-03": 0.023097209241298218, + "2024-06-03T01": 0.0232641696, + "2024-06-02T20": 0.023137029707782857, + "2024-06-03T00": 0.0229973445, + "2024-06-02T21": 0.023107820191495265, + "2024-06-02T23": 0.0231075152, + "2024-06-02T19": 0.0231263474, + "2024-06-02T22": 0.0231075152, + "2024-06-03T02": 0.0233915061, + "2024-06-03T05": 0.023306008, + "2024-06-03T06": 0.0234249984, + "2024-06-03T04": 0.0231665556, + "2024-06-03T03": 0.0233162353, + "2024-06-03T07": 0.023434991999999998 + }, + "status": { + "USD bitcoin": { + "timestamp": 1717401276964, + "oldestDateRequested": "2023-04-09T22:00:00.000Z" + }, + "USD ethereum": { + "timestamp": 1717401261391, + "oldestDateRequested": "2023-04-09T22:00:00.000Z" + }, + "USD bitcoin_testnet": { + "timestamp": 1714802871375, + "failures": 30 + }, + "USD ethereum_holesky": { + "timestamp": 1714802871374, + "failures": 30 + }, + "USD ethereum/erc20/usd_tether__erc20_": { + "timestamp": 1717401261398, + "oldestDateRequested": "2023-04-14T22:00:00.000Z" + }, + "USD solana": { + "timestamp": 1717401261449, + "oldestDateRequested": "2023-04-17T22:00:00.000Z" + }, + "USD cardano": { + "timestamp": 1717401261369, + "oldestDateRequested": "2023-04-17T22:00:00.000Z" + }, + "USD polkadot": { + "timestamp": 1717401261448, + "oldestDateRequested": "2023-04-17T22:00:00.000Z" + }, + "USD tron": { + "timestamp": 1717401261451, + "oldestDateRequested": "2023-04-17T22:00:00.000Z" + }, + "USD ripple": { + "timestamp": 1717401261459, + "oldestDateRequested": "2023-04-18T22:00:00.000Z" + }, + "USD ethereum_sepolia": { + "timestamp": 1717351623939, + "failures": 28 + }, + "USD bitcoin_cash": { + "timestamp": 1717401261369, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD celo": { + "timestamp": 1717401261386, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD casper": { + "timestamp": 1717401261381, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD algorand": { + "timestamp": 1717401261365, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD axelar": { + "timestamp": 1717401261368, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD bsc": { + "timestamp": 1717401261363, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD avalanche_c_chain": { + "timestamp": 1717401261365, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD astar": { + "timestamp": 1717401261366, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD bitcoin_gold": { + "timestamp": 1717401261370, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD bittorrent": { + "timestamp": 1717401261366, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD cosmos": { + "timestamp": 1717401261384, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD eos": { + "timestamp": 1717401261391, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD dash": { + "timestamp": 1717401261392, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD crypto_org": { + "timestamp": 1717401261390, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD ethereum_classic": { + "timestamp": 1717401261400, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD elrond": { + "timestamp": 1717401261389, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD dogecoin": { + "timestamp": 1717401261390, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD cronos": { + "timestamp": 1717401261418, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD filecoin": { + "timestamp": 1717401261406, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD fantom": { + "timestamp": 1717401261403, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD hedera": { + "timestamp": 1717401261408, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD internet_computer": { + "timestamp": 1717401261412, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD injective": { + "timestamp": 1717401261414, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD klaytn": { + "timestamp": 1717401261415, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD flow": { + "timestamp": 1717401261413, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD flare": { + "timestamp": 1717401261412, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD metis": { + "timestamp": 1717401261425, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD iota": { + "timestamp": 1717401261449, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD monero": { + "timestamp": 1717401261426, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD litecoin": { + "timestamp": 1717401261420, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD neo": { + "timestamp": 1717401261433, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD polygon": { + "timestamp": 1717401261435, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD nervos": { + "timestamp": 1717401261429, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD stacks": { + "timestamp": 1717401261449, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD near": { + "timestamp": 1717401261430, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD osmo": { + "timestamp": 1717401261432, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD ravencoin": { + "timestamp": 1717401261448, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD stellar": { + "timestamp": 1717401261453, + "oldestDateRequested": "2021-06-25T11:29:22.000Z" + }, + "USD qtum": { + "timestamp": 1717401261433, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD tezos": { + "timestamp": 1717401261454, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD vechain": { + "timestamp": 1717401261468, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD zilliqa": { + "timestamp": 1717401261464, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD zcash": { + "timestamp": 1717401261470, + "oldestDateRequested": "2023-05-27T22:00:00.000Z" + }, + "USD decred": { + "timestamp": 1717056691852, + "oldestDateRequested": "2024-05-22T14:00:00.000Z" + }, + "USD nem": { + "timestamp": 1716995986810, + "oldestDateRequested": "2024-05-22T14:00:00.000Z" + }, + "USD kusama": { + "timestamp": 1716995986783, + "oldestDateRequested": "2024-05-22T14:00:00.000Z" + }, + "USD ontology": { + "timestamp": 1716995986812, + "oldestDateRequested": "2024-05-22T14:00:00.000Z" + }, + "USD base": { + "timestamp": 1717056691819, + "oldestDateRequested": "2024-05-22T15:00:00.000Z" + }, + "USD arbitrum": { + "timestamp": 1717056691805, + "oldestDateRequested": "2024-05-22T15:00:00.000Z" + }, + "USD aion": { + "timestamp": 1717056691810, + "oldestDateRequested": "2024-05-22T15:00:00.000Z" + }, + "USD ark": { + "timestamp": 1717056691806, + "oldestDateRequested": "2024-05-22T15:00:00.000Z" + }, + "USD banano": { + "timestamp": 1717056691818, + "oldestDateRequested": "2024-05-22T15:00:00.000Z" + }, + "USD aeternity": { + "timestamp": 1717056691804, + "oldestDateRequested": "2024-05-22T15:00:00.000Z" + }, + "USD boba": { + "timestamp": 1717056739597, + "oldestDateRequested": "2024-05-22T15:00:00.000Z" + }, + "USD bitcoin_private": { + "timestamp": 1717057472608, + "oldestDateRequested": "2024-05-22T15:00:00.000Z" + }, + "USD binance_beacon_chain": { + "timestamp": 1717056691822, + "oldestDateRequested": "2024-05-22T15:00:00.000Z" + }, + "USD callisto": { + "timestamp": 1717057472577, + "oldestDateRequested": "2024-05-22T15:00:00.000Z" + }, + "USD digibyte": { + "timestamp": 1717056739648, + "oldestDateRequested": "2024-05-22T15:00:00.000Z" + }, + "USD desmos": { + "timestamp": 1717056739629, + "oldestDateRequested": "2024-05-22T15:00:00.000Z" + }, + "USD coreum": { + "timestamp": 1717056739618, + "oldestDateRequested": "2024-05-22T15:00:00.000Z" + }, + "USD elastos": { + "timestamp": 1717056739612, + "oldestDateRequested": "2024-05-22T15:00:00.000Z" + }, + "USD energy_web": { + "timestamp": 1717056739616, + "oldestDateRequested": "2024-05-22T15:00:00.000Z" + }, + "USD ether1": { + "timestamp": 1717056739612, + "oldestDateRequested": "2024-05-22T15:00:00.000Z" + }, + "USD expanse": { + "timestamp": 1717056739624, + "oldestDateRequested": "2024-05-22T15:00:00.000Z" + }, + "USD ethergem": { + "timestamp": 1717056384858, + "oldestDateRequested": "2024-05-22T15:00:00.000Z" + }, + "USD game_credits": { + "timestamp": 1717056739653, + "oldestDateRequested": "2024-05-22T15:00:00.000Z" + }, + "USD gochain": { + "timestamp": 1717057281274, + "oldestDateRequested": "2024-05-22T15:00:00.000Z" + }, + "USD linea": { + "timestamp": 1717056691869, + "oldestDateRequested": "2024-05-22T15:00:00.000Z" + }, + "USD optimism": { + "timestamp": 1717056691871, + "oldestDateRequested": "2024-05-22T15:00:00.000Z" + } + } + }, + "discover": { + "recentlyUsed": [ + { + "id": "paraswap", + "usedAt": "2024-05-29T12:52:40.360Z" + }, + { + "id": "1inch", + "usedAt": "2024-05-29T12:41:00.801Z" + } + ], + "currentAccountHist": {} + } + } +} \ No newline at end of file diff --git a/apps/ledger-live-desktop/tests/userdata/speculos.json b/apps/ledger-live-desktop/tests/userdata/speculos.json deleted file mode 100644 index 28b5fb382377..000000000000 --- a/apps/ledger-live-desktop/tests/userdata/speculos.json +++ /dev/null @@ -1,25205 +0,0 @@ -{ - "data": { - "PLAYWRIGHT_RUN": { - "localStorage": { - "acceptedTermsVersion": "2042-01-01" - } - }, - "settings": { - "hasCompletedOnboarding": true, - "counterValue": "USD", - "language": "en", - "locale": "en-US", - "theme": null, - "region": null, - "orderAccounts": "name|asc", - "countervalueFirst": false, - "autoLockTimeout": 10, - "selectedTimeRange": "year", - "currenciesSettings": {}, - "pairExchanges": {}, - "developerMode": true, - "loaded": true, - "shareAnalytics": true, - "sharePersonalizedRecommandations": false, - "hasSeenAnalyticsOptInPrompt": false, - "sentryLogs": true, - "lastUsedVersion": "99.99.99", - "dismissedBanners": [], - "accountsViewMode": "list", - "nftsViewMode": "list", - "showAccountsHelperBanner": true, - "hideEmptyTokenAccounts": false, - "filterTokenOperationsZeroAmount": true, - "sidebarCollapsed": false, - "discreetMode": false, - "preferredDeviceModel": "nanoSP", - "hasInstalledApps": true, - "lastSeenDevice": { - "modelId": "nanoSP", - "deviceInfo": { - "version": "1.1.1", - "mcuVersion": "4.03", - "seVersion": "1.1.1", - "majMin": "1.1.1", - "providerName": null, - "targetId": 856686596, - "hasDevFirmware": false, - "seTargetId": 856686596, - "isOSU": false, - "isBootloader": false, - "isRecoveryMode": false, - "managerAllowed": false, - "pinValidated": true, - "onboarded": true, - "bootloaderVersion": "3.12", - "languageId": 0 - }, - "apps": [] - }, - "devicesModelList": [ - "stax", - "nanoX", - "nanoSP" - ], - "lastSeenCustomImage": { - "size": 0, - "hash": "" - }, - "latestFirmware": null, - "blacklistedTokenIds": [], - "hiddenNftCollections": [], - "deepLinkUrl": null, - "firstTimeLend": false, - "showClearCacheBanner": false, - "fullNodeEnabled": false, - "allowDebugApps": false, - "allowExperimentalApps": false, - "enablePlatformDevTools": false, - "catalogProvider": "production", - "enableLearnPageStagingUrl": false, - "swap": { - "hasAcceptedIPSharing": false, - "acceptedProviders": [], - "selectableCurrencies": [] - }, - "starredMarketCoins": [], - "overriddenFeatureFlags": { - "customImage": { - "enabled": true, - "overridesRemote": true - }, - "llmNewDeviceSelection": { - "enabled": true, - "overridesRemote": true - }, - "postOnboardingClaimNft": { - "enabled": true, - "overridesRemote": true - }, - "staxWelcomeScreen": { - "enabled": true, - "overridesRemote": true - }, - "syncOnboarding": { - "enabled": true, - "overridesRemote": true - }, - "llmNewFirmwareUpdateUx": { - "enabled": true, - "overridesRemote": true - } - }, - "featureFlagsButtonVisible": false, - "vaultSigner": { - "enabled": false, - "host": "", - "token": "", - "workspace": "" - }, - "supportedCounterValues": [ - { - "value": "AUD", - "label": "Australian Dollar - AUD", - "currency": { - "type": "FiatCurrency", - "ticker": "AUD", - "name": "Australian Dollar", - "symbol": "AU$", - "units": [ - { - "code": "AU$", - "name": "Australian Dollar", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "BHD", - "label": "Bahraini Dinar - BHD", - "currency": { - "type": "FiatCurrency", - "ticker": "BHD", - "name": "Bahraini Dinar", - "symbol": "د.ب.", - "units": [ - { - "code": "د.ب.", - "name": "Bahraini Dinar", - "magnitude": 3, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "BTC", - "label": "Bitcoin - BTC", - "currency": { - "type": "CryptoCurrency", - "id": "bitcoin", - "coinType": 0, - "name": "Bitcoin", - "managerAppName": "Bitcoin", - "ticker": "BTC", - "scheme": "bitcoin", - "color": "#ffae35", - "symbol": "Ƀ", - "units": [ - { - "name": "bitcoin", - "code": "BTC", - "magnitude": 8 - }, - { - "name": "mBTC", - "code": "mBTC", - "magnitude": 5 - }, - { - "name": "bit", - "code": "bit", - "magnitude": 2 - }, - { - "name": "satoshi", - "code": "sat", - "magnitude": 0 - } - ], - "supportsSegwit": true, - "supportsNativeSegwit": true, - "family": "bitcoin", - "blockAvgTime": 900, - "bitcoinLikeInfo": { - "P2PKH": 0, - "P2SH": 5, - "XPUBVersion": 76067358 - }, - "explorerViews": [ - { - "address": "https://blockstream.info/address/$address", - "tx": "https://blockstream.info/tx/$hash" - }, - { - "address": "https://www.blockchain.com/btc/address/$address", - "tx": "https://blockchain.info/btc/tx/$hash" - } - ], - "keywords": [ - "btc", - "bitcoin" - ], - "explorerId": "btc" - } - }, - { - "value": "BRL", - "label": "Brazilian Real - BRL", - "currency": { - "type": "FiatCurrency", - "ticker": "BRL", - "name": "Brazilian Real", - "symbol": "R$", - "units": [ - { - "code": "R$", - "name": "Brazilian Real", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "GBP", - "label": "British Pound - GBP", - "currency": { - "type": "FiatCurrency", - "ticker": "GBP", - "name": "British Pound", - "symbol": "£", - "units": [ - { - "code": "£", - "name": "British Pound", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "CAD", - "label": "Canadian Dollar - CAD", - "currency": { - "type": "FiatCurrency", - "ticker": "CAD", - "name": "Canadian Dollar", - "symbol": "CA$", - "units": [ - { - "code": "CA$", - "name": "Canadian Dollar", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "CLP", - "label": "Chilean Peso - CLP", - "currency": { - "type": "FiatCurrency", - "ticker": "CLP", - "name": "Chilean Peso", - "symbol": "CLP$", - "units": [ - { - "code": "CLP$", - "name": "Chilean Peso", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "CZK", - "label": "Czech Koruna - CZK", - "currency": { - "type": "FiatCurrency", - "ticker": "CZK", - "name": "Czech Koruna", - "symbol": "Kč", - "units": [ - { - "code": "Kč", - "name": "Czech Koruna", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "DKK", - "label": "Danish Krone - DKK", - "currency": { - "type": "FiatCurrency", - "ticker": "DKK", - "name": "Danish Krone", - "symbol": "kr.", - "units": [ - { - "code": "kr.", - "name": "Danish Krone", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "AED", - "label": "Emirati Dirham - AED", - "currency": { - "type": "FiatCurrency", - "ticker": "AED", - "name": "Emirati Dirham", - "symbol": "د.إ.", - "units": [ - { - "code": "د.إ.", - "name": "Emirati Dirham", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "ETH", - "label": "Ethereum - ETH", - "currency": { - "type": "CryptoCurrency", - "id": "ethereum", - "coinType": 60, - "name": "Ethereum", - "managerAppName": "Ethereum", - "ticker": "ETH", - "scheme": "ethereum", - "color": "#0ebdcd", - "symbol": "Ξ", - "family": "evm", - "blockAvgTime": 15, - "units": [ - { - "name": "ether", - "code": "ETH", - "magnitude": 18 - }, - { - "name": "Gwei", - "code": "Gwei", - "magnitude": 9 - }, - { - "name": "Mwei", - "code": "Mwei", - "magnitude": 6 - }, - { - "name": "Kwei", - "code": "Kwei", - "magnitude": 3 - }, - { - "name": "wei", - "code": "wei", - "magnitude": 0 - } - ], - "ethereumLikeInfo": { - "chainId": 1 - }, - "explorerViews": [ - { - "tx": "https://etherscan.io/tx/$hash", - "address": "https://etherscan.io/address/$address", - "token": "https://etherscan.io/token/$contractAddress?a=$address" - } - ], - "keywords": [ - "eth", - "ethereum" - ], - "explorerId": "eth" - } - }, - { - "value": "EUR", - "label": "Euro - EUR", - "currency": { - "type": "FiatCurrency", - "ticker": "EUR", - "name": "Euro", - "symbol": "€", - "units": [ - { - "code": "€", - "name": "Euro", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "HKD", - "label": "Hong Kong Dollar - HKD", - "currency": { - "type": "FiatCurrency", - "ticker": "HKD", - "name": "Hong Kong Dollar", - "symbol": "HK$", - "units": [ - { - "code": "HK$", - "name": "Hong Kong Dollar", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "HUF", - "label": "Hungarian Forint - HUF", - "currency": { - "type": "FiatCurrency", - "ticker": "HUF", - "name": "Hungarian Forint", - "symbol": "Ft", - "units": [ - { - "code": "Ft", - "name": "Hungarian Forint", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "INR", - "label": "Indian Rupee - INR", - "currency": { - "type": "FiatCurrency", - "ticker": "INR", - "name": "Indian Rupee", - "symbol": "₹", - "units": [ - { - "code": "₹", - "name": "Indian Rupee", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "IDR", - "label": "Indonesian Rupiah - IDR", - "currency": { - "type": "FiatCurrency", - "ticker": "IDR", - "name": "Indonesian Rupiah", - "symbol": "Rp", - "units": [ - { - "code": "Rp", - "name": "Indonesian Rupiah", - "magnitude": 0, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "ILS", - "label": "Israeli Shekel - ILS", - "currency": { - "type": "FiatCurrency", - "ticker": "ILS", - "name": "Israeli Shekel", - "symbol": "₪", - "units": [ - { - "code": "₪", - "name": "Israeli Shekel", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "JPY", - "label": "Japanese Yen - JPY", - "currency": { - "type": "FiatCurrency", - "ticker": "JPY", - "name": "Japanese Yen", - "symbol": "¥", - "units": [ - { - "code": "¥", - "name": "Japanese Yen", - "magnitude": 0, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "MYR", - "label": "Malaysian Ringgit - MYR", - "currency": { - "type": "FiatCurrency", - "ticker": "MYR", - "name": "Malaysian Ringgit", - "symbol": "RM", - "units": [ - { - "code": "RM", - "name": "Malaysian Ringgit", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "MXN", - "label": "Mexico Peso - MXN", - "currency": { - "type": "FiatCurrency", - "ticker": "MXN", - "name": "Mexico Peso", - "symbol": "Mex$", - "units": [ - { - "code": "Mex$", - "name": "Mexico Peso", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "NZD", - "label": "New Zealand Dollar - NZD", - "currency": { - "type": "FiatCurrency", - "ticker": "NZD", - "name": "New Zealand Dollar", - "symbol": "NZ$", - "units": [ - { - "code": "NZ$", - "name": "New Zealand Dollar", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "NGN", - "label": "Nigerian Naira - NGN", - "currency": { - "type": "FiatCurrency", - "ticker": "NGN", - "name": "Nigerian Naira", - "symbol": "₦", - "units": [ - { - "code": "₦", - "name": "Nigerian Naira", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "NOK", - "label": "Norwegian Krone - NOK", - "currency": { - "type": "FiatCurrency", - "ticker": "NOK", - "name": "Norwegian Krone", - "symbol": "kr", - "units": [ - { - "code": "kr", - "name": "Norwegian Krone", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "PKR", - "label": "Pakistani Rupee - PKR", - "currency": { - "type": "FiatCurrency", - "ticker": "PKR", - "name": "Pakistani Rupee", - "symbol": "₨", - "units": [ - { - "code": "₨", - "name": "Pakistani Rupee", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "PHP", - "label": "Philippine Peso - PHP", - "currency": { - "type": "FiatCurrency", - "ticker": "PHP", - "name": "Philippine Peso", - "symbol": "₱", - "units": [ - { - "code": "₱", - "name": "Philippine Peso", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "PLN", - "label": "Polish Złoty - PLN", - "currency": { - "type": "FiatCurrency", - "ticker": "PLN", - "name": "Polish Złoty", - "symbol": "zł", - "units": [ - { - "code": "zł", - "name": "Polish Złoty", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "RUB", - "label": "Russian Rouble - RUB", - "currency": { - "type": "FiatCurrency", - "ticker": "RUB", - "name": "Russian Rouble", - "symbol": "₽", - "units": [ - { - "code": "₽", - "name": "Russian Rouble", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "SGD", - "label": "Singapore Dollar - SGD", - "currency": { - "type": "FiatCurrency", - "ticker": "SGD", - "name": "Singapore Dollar", - "symbol": "S$", - "units": [ - { - "code": "S$", - "name": "Singapore Dollar", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "ZAR", - "label": "South African Rand - ZAR", - "currency": { - "type": "FiatCurrency", - "ticker": "ZAR", - "name": "South African Rand", - "symbol": "R", - "units": [ - { - "code": "R", - "name": "South African Rand", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "KRW", - "label": "South Korean Won - KRW", - "currency": { - "type": "FiatCurrency", - "ticker": "KRW", - "name": "South Korean Won", - "symbol": "₩", - "units": [ - { - "code": "₩", - "name": "South Korean Won", - "magnitude": 0, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "SEK", - "label": "Swedish Krona - SEK", - "currency": { - "type": "FiatCurrency", - "ticker": "SEK", - "name": "Swedish Krona", - "symbol": "kr", - "units": [ - { - "code": "kr", - "name": "Swedish Krona", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "CHF", - "label": "Swiss Franc - CHF", - "currency": { - "type": "FiatCurrency", - "ticker": "CHF", - "name": "Swiss Franc", - "symbol": "CHF", - "units": [ - { - "code": "CHF", - "name": "Swiss Franc", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "THB", - "label": "Thai Baht - THB", - "currency": { - "type": "FiatCurrency", - "ticker": "THB", - "name": "Thai Baht", - "symbol": "฿", - "units": [ - { - "code": "฿", - "name": "Thai Baht", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "TRY", - "label": "Turkish Lira - TRY", - "currency": { - "type": "FiatCurrency", - "ticker": "TRY", - "name": "Turkish Lira", - "symbol": "TL", - "units": [ - { - "code": "TL", - "name": "Turkish Lira", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "USD", - "label": "US Dollar - USD", - "currency": { - "type": "FiatCurrency", - "ticker": "USD", - "name": "US Dollar", - "symbol": "$", - "units": [ - { - "code": "$", - "name": "US Dollar", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "UAH", - "label": "Ukrainian Hryvnia - UAH", - "currency": { - "type": "FiatCurrency", - "ticker": "UAH", - "name": "Ukrainian Hryvnia", - "symbol": "₴", - "units": [ - { - "code": "₴", - "name": "Ukrainian Hryvnia", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "VND", - "label": "Vietnamese Dong - VND", - "currency": { - "type": "FiatCurrency", - "ticker": "VND", - "name": "Vietnamese Dong", - "symbol": "₫", - "units": [ - { - "code": "₫", - "name": "Vietnamese Dong", - "magnitude": 1, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "CNY", - "label": "Yuan or Chinese Renminbi - CNY", - "currency": { - "type": "FiatCurrency", - "ticker": "CNY", - "name": "Yuan or Chinese Renminbi", - "symbol": "¥", - "units": [ - { - "code": "¥", - "name": "Yuan or Chinese Renminbi", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - } - ], - "allowReactQueryDebug": false, - "dismissedContentCards": {}, - "anonymousBrazeId": "anonymous_id_18" - }, - "user": { - "id": "1af6fd6d-bfa6-4219-afbf-3d670f9a238f" - }, - "announcements": { - "announcements": [], - "seenIds": [], - "lastUpdateTime": 1715785652372 - }, - "accounts": [ - { - "data": { - "id": "js:2:bitcoin:xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB:native_segwit", - "seedIdentifier": "048935555dec2a20c96f40434fca2817abfa16bfb19933eb0d65bdcd5ec1ab8b659491c0dc9510ffcf4fdd5c1b55c9077d79e9e4fdd9e6b88e899757cfa15d121d", - "name": "Bitcoin 1", - "starred": false, - "used": true, - "derivationMode": "native_segwit", - "index": 0, - "freshAddress": "bc1qx7f9plgr8msjatkv0dw2ne8gguwfjqr6xyjp50", - "freshAddressPath": "84'/0'/0'/0/1", - "freshAddresses": [ - { - "address": "bc1qmkhvthj7lrxlpfm4gj3e0ww0a5v3p3dy5a85fv", - "derivationPath": "84'/0'/0'/0/0" - } - ], - "blockHeight": 843572, - "creationDate": "2024-04-10T12:18:05.000Z", - "operationsCount": 1, - "operations": [ - { - "id": "js:2:bitcoin:xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB:native_segwit-240876da9a80b15d379af3f72d9881184bf80f32f2cee9b72834e0ec3d788b19-IN", - "hash": "240876da9a80b15d379af3f72d9881184bf80f32f2cee9b72834e0ec3d788b19", - "type": "IN", - "senders": [ - "bc1qgdhkyajg2k95hqx85z3ndugh0ufhz0nk03ffq0" - ], - "recipients": [ - "bc1qmkhvthj7lrxlpfm4gj3e0ww0a5v3p3dy5a85fv" - ], - "accountId": "js:2:bitcoin:xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB:native_segwit", - "blockHash": "00000000000000000001165e07b3df13b3c40b54dd017a9a92bbe4be06e2775b", - "blockHeight": 838601, - "extra": {}, - "date": "2024-04-10T12:18:05.000Z", - "value": "6205", - "fee": "5390", - "hasFailed": false - } - ], - "pendingOperations": [], - "currencyId": "bitcoin", - "unitMagnitude": 8, - "lastSyncDate": "2024-05-15T15:06:18.689Z", - "balance": "6205", - "spendableBalance": "6205", - "balanceHistoryCache": { - "HOUR": { - "balances": [ - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205 - ], - "latestDate": 1715785200000 - }, - "DAY": { - "balances": [ - 0, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205 - ], - "latestDate": 1715724000000 - }, - "WEEK": { - "balances": [ - 0, - 6205, - 6205, - 6205, - 6205, - 6205 - ], - "latestDate": 1715464800000 - } - }, - "xpub": "xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB", - "bitcoinResources": { - "utxos": [ - [ - "240876da9a80b15d379af3f72d9881184bf80f32f2cee9b72834e0ec3d788b19", - 0, - 838601, - "bc1qmkhvthj7lrxlpfm4gj3e0ww0a5v3p3dy5a85fv", - "6205", - 1, - 0 - ] - ], - "walletAccount": { - "params": { - "xpub": "xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB", - "path": "84'/0'", - "index": 0, - "currency": "bitcoin", - "network": "mainnet", - "derivationMode": "Native SegWit" - }, - "xpub": { - "xpub": "xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB", - "data": { - "txs": [ - { - "id": "240876da9a80b15d379af3f72d9881184bf80f32f2cee9b72834e0ec3d788b19", - "received_at": "2024-04-10T12:18:05Z", - "fees": "5390", - "inputs": [ - { - "output_hash": "4e24e5145049cc16fea258e12b4cf4a3a7b6797024264212001e7382120f41a1", - "output_index": 0, - "value": "11595", - "address": "bc1qgdhkyajg2k95hqx85z3ndugh0ufhz0nk03ffq0", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "6205", - "address": "bc1qmkhvthj7lrxlpfm4gj3e0ww0a5v3p3dy5a85fv", - "spent_at_height": null, - "output_hash": "240876da9a80b15d379af3f72d9881184bf80f32f2cee9b72834e0ec3d788b19", - "block_height": 838601, - "rbf": true - } - ], - "block": { - "hash": "00000000000000000001165e07b3df13b3c40b54dd017a9a92bbe4be06e2775b", - "height": 838601, - "time": "2024-04-10T12:18:05Z" - }, - "tx_index": 852, - "account": 0, - "index": 0, - "address": "bc1qmkhvthj7lrxlpfm4gj3e0ww0a5v3p3dy5a85fv" - } - ], - "addressCache": { - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-1": "bc1qx7f9plgr8msjatkv0dw2ne8gguwfjqr6xyjp50", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-2": "bc1qm6tw2c0u842qjs7g2n2c7ulh76f6xn4sk0dsyt", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-0": "bc1qmkhvthj7lrxlpfm4gj3e0ww0a5v3p3dy5a85fv", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-4": "bc1q5gygy3ywwcmdyky7q098jgjld4g9mkgslh6wrp", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-5": "bc1q82phqmfukzmfwf6t3tgprm5hzsh47e6l9cevaw", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-3": "bc1qm4mm7usmutz9sryheuytjpzj0yuy83pkg49qzk", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-7": "bc1qd0jevdq89hlcazal9cak8t850t6nn9fmn5flnj", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-8": "bc1q9cpp30ke572kl5swmxkw2xnuucp0a4psxqnk6h", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-10": "bc1q2j7y9768yrf0zgepu6up9nfxaa9jz2g68rr77m", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-6": "bc1q4nrdyq8ztm3v86wfrp7rmdxz9e7ew28qvpvusw", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-11": "bc1qk903vzzt485v6k8smfapgtl7tvppxv3989syw7", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-13": "bc1qa3ar6fwgff2ag2kx965vyqf8k2wrk3fke8renh", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-14": "bc1qhw6ry8av9tds23jxs49germfdg053pegxygxa5", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-9": "bc1qw3ecp854rpd3aqd4cc8cgev8hjpfuv0vyckmur", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-16": "bc1qy3jdtz2qu5lhh32agnjw2cxfr8ugjulhmtlhxx", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-17": "bc1qlgnzp9yqazjdxj0a88fhh9drkru5slzm9xtxr2", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-12": "bc1qt8aev946g87zdsz6c0wus4v04kd3pc9rjw6tup", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-0": "bc1qyfgqn8fke74qqk5gxeunrkahzsjwdpvtu4w3uw", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-19": "bc1q7dehctzmpymjlznc47ppvscxjmswjtjl2s9nvc", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-15": "bc1q3e5k4rr3kqqpfsyw45j0272n33yhq8sm6x6wt6", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-3": "bc1qrhxzhlquqst9dr88ukuf4jjql7kcp223nyd4sc", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-2": "bc1qr3m7tgd55s97gunrmd00hhhfvknnec723hhw6s", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-18": "bc1qvfdn7xdfcnf6d3gkkntrqfv0sfzve3nympnhq5", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-6": "bc1qajpassyzqgkrx7trl3tn5ekzarshvxqsej3req", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-5": "bc1q8flt9qc7q3l28uewrklw0jj0l4saj6jtkrxtd8", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-8": "bc1qw3tgz03f6l7tpmlftzt974cwnunzc9rk0x8zf3", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-1": "bc1qllefeacr0z2hwj9s6lz2mtjw2up0vfcfz5pdwc", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-11": "bc1qaj7gnuf59dw6ng3uxle706xhpcz7jl9nrmx3d9", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-9": "bc1qaqjyqtn6tayespq848c4gqszyjaxasw0c3vset", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-14": "bc1q0d24txphdg7zqcf9xvatcjac4s2z844rm8x7yl", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-12": "bc1qy2strxr0ef65pgnee4y72d2uavlgk5dex62v4u", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-17": "bc1qsy664lafkagrhq53fvt9mqth475cunfe9s8r9v", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-15": "bc1qvpnnmqvu4s95uj2vgst3wp0h4q5ut0amk9enr3", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-4": "bc1qn8yvjn09srgxrv3rep8swg8ae5x5hvfpetfrpq", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-18": "bc1qrseq5f8dl95ht6nxa555mt2m6kqmtvrm5c3exp", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-7": "bc1q3s6dd4xeqcqey34k8786m32y83av2pdq68m5zh", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-10": "bc1qesuj6ecg583cr86km4gu8u96gvtck6ffz4ltzf", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-13": "bc1q0md9s9ujgnl07whnh3alun5cvlwv4fjzdhwv6p", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-16": "bc1qcufy8pc8dp85tggzmh9hvwcf924k3447slxl2c", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-1-19": "bc1q2r4ux5hl878rmn4ywveytwxsa0ra202cuyqksv", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-22": "bc1qcm73kldqunlz0zc3x5jxqrgm8m280qjw58ta46", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-25": "bc1qu47yuv7cjhttglju24nj0qdl20pjt7m7epjlcm", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-20": "bc1qe7uazljj85y4vl37ustjqdnvc64rnwux0s32ph", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-21": "bc1q9pywjsyjuzj3rjvtjhfnw5fxj4ccd2r642xmc4", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-28": "bc1q98r07n0mvsgaevfrd0tx55g3x028347c3aedlg", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-23": "bc1qfkmf272x979486vujul0aam4kkwwwum35nm033", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-24": "bc1q0706hw8pdt2htjq767mwwyd2f9v0tqxpdn9cxv", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-31": "bc1qptdachestqs056ay455cfqzqtuh54v0x79eqgs", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-26": "bc1qz2f35hu7lmas55mjeflwnkesj97twprzuv4gzk", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-27": "bc1qx9a384t9yfgv52kumzhqs7f2033s0wkft9sgf9", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-34": "bc1qvuwp3x2jwpq4llhcvtlg3gla8mj25d2m484gjd", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-29": "bc1q94vxg7d3dj43me4m5jzvyjsf4unndvj39j6gje", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-37": "bc1q4x0je3hyvkmrnwryjde2edgaj38knu8k9p6cw0", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-30": "bc1qez0r6qhqevzd8f32gz9e90au597jcjmu609y8j", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-32": "bc1qu6g4d9qklddn9j97py7cwndkvxg0wedg5yzchw", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-33": "bc1q96ql5d4fz2f6tzharfv88qgmr8hfr6zrdq8jzd", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-35": "bc1qhjq0lw6vstqj9dha9u7x5m4zf27jyv8wjelsrq", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-36": "bc1qugz20mkcw7rjt3tslxfg5ay7fewmtc05s3ctvj", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-38": "bc1qjgxkemk3c82nyxmxj0tx48lurpl399lk7677cz", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB-0-39": "bc1q7r6dckz6s9xry0gjjk0vrwk58hd6n4324c8mgf" - } - } - } - } - }, - "swapHistory": [] - }, - "version": 1 - }, - { - "data": { - "id": "js:2:bitcoin:xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo:native_segwit", - "seedIdentifier": "048935555dec2a20c96f40434fca2817abfa16bfb19933eb0d65bdcd5ec1ab8b659491c0dc9510ffcf4fdd5c1b55c9077d79e9e4fdd9e6b88e899757cfa15d121d", - "name": "Bitcoin 2", - "starred": false, - "used": false, - "derivationMode": "native_segwit", - "index": 1, - "freshAddress": "bc1q7ezsfc44adw2gyzqjmwhuh2e83uk8u5hrw590r", - "freshAddressPath": "84'/0'/1'/0/0", - "freshAddresses": [ - { - "address": "bc1q7ezsfc44adw2gyzqjmwhuh2e83uk8u5hrw590r", - "derivationPath": "84'/0'/1'/0/0" - } - ], - "blockHeight": 843572, - "creationDate": "2024-05-15T15:06:17.182Z", - "operationsCount": 0, - "operations": [], - "pendingOperations": [], - "currencyId": "bitcoin", - "unitMagnitude": 8, - "lastSyncDate": "2024-05-15T15:06:17.182Z", - "balance": "0", - "spendableBalance": "0", - "balanceHistoryCache": { - "HOUR": { - "balances": [], - "latestDate": 1715785200000 - }, - "DAY": { - "balances": [], - "latestDate": 1715724000000 - }, - "WEEK": { - "balances": [], - "latestDate": 1715464800000 - } - }, - "xpub": "xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo", - "bitcoinResources": { - "utxos": [], - "walletAccount": { - "params": { - "xpub": "xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo", - "path": "84'/0'", - "index": 1, - "currency": "bitcoin", - "network": "mainnet", - "derivationMode": "Native SegWit" - }, - "xpub": { - "xpub": "xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo", - "data": { - "txs": [], - "addressCache": { - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-0-1": "bc1qhdjucktmsegr2djap4um7ms9lwncssgzmr4zlc", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-0-0": "bc1q7ezsfc44adw2gyzqjmwhuh2e83uk8u5hrw590r", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-0-2": "bc1qe38qzn6jsrhvup47s8zehwqmczp7wp22ejmnwx", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-0-4": "bc1qvug6sewh0ml5yu8g4atxjpt2lsevdq7ktpmda4", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-0-3": "bc1qa7tx92nf8k78y8eyvderx9l72jxvpzmsnm5x4z", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-0-5": "bc1q9tvewvqadxws0gk439za90chpx64pgfaqvhg5r", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-0-7": "bc1qyks0qnfq5dwzx5raaahnxyp693g875277flk0n", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-0-6": "bc1q2cq4x9k3czc7fwv4vwp0pyruhrwhdehf72g49q", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-0-8": "bc1qfeze83nntql9dafr0mjjvqvmte7tje9wul36zk", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-0-10": "bc1qmws7wh5q8kajmpdpe42vt24mg6k4y8tf0vyw36", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-0-9": "bc1qy0rwgn4hst2n2m8300dk5nc4ghf2f0h4z5qq7a", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-0-11": "bc1qcqumau04smhzanh3yn0ysdjtanq5mh7jy39xg6", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-0-13": "bc1qkv6f3px2cd7w4qz37cree0ehy5jla32a266w5l", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-0-12": "bc1qjejmda9qmclulpwdtfzfsxjhs90s0f6gunlvqv", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-0-14": "bc1q29mdqn4dt59reqx933rdqu8xet2n9g0xcex7mt", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-0-16": "bc1qkk067fqnr5069vxewd84t5nvjuf9ptvjm40rcu", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-0-17": "bc1qw0dspgpuctx55yv8xfl6f5tkylwktfselv7th2", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-0-15": "bc1qtvx0jz5nej4x0fsustmd04zw579ss9jrgq44yx", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-0-19": "bc1qj9tr09s4vwt8gsggthu777pxkkvq72mnzdd0yc", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-1-0": "bc1qerwwptac8mk6xga2lrdxpntf8ewfj6velxvk8y", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-0-18": "bc1qt9sqwqrdul6k6hnydct6mtsp70vaknn9vtdhlk", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-1-2": "bc1q7d9la8gvk3z6kammg5f3l35977vszkgky8huez", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-1-1": "bc1qfq9q9xzln4c5sxwvvv7k9fmq0s57r8lnxmwswn", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-1-5": "bc1qj4pnfgvjxlvzm329sl2nul3cjznd5lelrsjcr2", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-1-3": "bc1qgzzlkt3wsrgk4uc5u6qxdglt8enqwzh5sxn6zd", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-1-4": "bc1qccunsjwae3g228l6rf8zusk59vpalmdummxh8z", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-1-8": "bc1q9v8qet8hjvjn4vj2desqmkwehs800gh9675jcf", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-1-6": "bc1q54cz6agy8ee76fjymvpmwgnvxkku2mq7kdq7zf", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-1-7": "bc1q0lf3cu7r2jpzgludqc785zh6cy86rur76rx2ey", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-1-11": "bc1qquflfad0mqrpmvxk5q2knyf87060u4lcr03x3f", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-1-9": "bc1qsnye25ddqhskul90rjll85a8auq6wdhhelhd5s", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-1-10": "bc1qup46r0xwpmdanu006vqhxgjk4thnn2v3myt0xz", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-1-14": "bc1q2hd7hu8pq0txakky2z4r5w3pksjaypfl2t9vsn", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-1-12": "bc1qhww3pjsewstsmuj02y59tda9sm8cnch4hn5upc", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-1-13": "bc1q7ded6785pra26qy0062rka8a8al3dhcny80z3x", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-1-17": "bc1qr4ygpyknwa5jltdlzewrz3yc4l7mvxvlhwy54x", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-1-16": "bc1qxkcgwcqq5494fxg2zex7zkmhf7jrw6slw6v9yw", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-1-15": "bc1q6tzg3rm9mjg4zamv5zlj85kaprwddx3fdjall9", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-1-19": "bc1qes4e5c30pl6sdq3la7cuz4xgn575symphtycma", - "Bitcoin-Native SegWit-xpub6DM4oxVnZiePGigFNEDbmrTvLznekrjGhRZDBDc7zi6anZYC9FZbkedyQc4Ts1SL73UATKh9s3JQ7J34wj3UU5b9NYppWviJ6cKK5hNkmgo-1-18": "bc1qhp4ktmrl0dk0vcpq374t0l5ezql33msazuxavc" - } - } - } - } - }, - "swapHistory": [] - }, - "version": 1 - }, - { - "data": { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", - "seedIdentifier": "045149ac56e773488fc925cafe39fe5814d1f7102b05035ad4246d206e7ec57260727f8a06040e7631a3e997d6203639a90f2e384a83535eb0034d12b90fa2acbb", - "name": "Bitcoin Testnet 1", - "starred": false, - "used": true, - "derivationMode": "native_segwit", - "index": 0, - "freshAddress": "tb1qxmwe6n93fls8r69837cmyt6ua406xaen9hy24d", - "freshAddressPath": "84'/1'/0'/0/4", - "freshAddresses": [ - { - "address": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk", - "derivationPath": "84'/1'/0'/0/0" - } - ], - "blockHeight": 2815506, - "creationDate": "2024-04-10T12:47:03.000Z", - "operationsCount": 29, - "operations": [ - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-ca716f4736eaf5c24f0e9190c7173408c7a46c925e10c76cb4488d14278235ac-IN", - "hash": "ca716f4736eaf5c24f0e9190c7173408c7a46c925e10c76cb4488d14278235ac", - "type": "IN", - "senders": [ - "tb1qhxjdvd53z73r3e3kdn2nt8h2lqayw93jhr43rw" - ], - "recipients": [ - "tb1qjnl3f0lahssa62qvn6vm2fruejfc6e9x2r8c5z" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", - "blockHash": "000000000000000cebb4e30283a056706c8e456ed76e6503a0be8abd70701d19", - "blockHeight": 2815481, - "extra": {}, - "date": "2024-05-15T13:14:19.000Z", - "value": "30197", - "fee": "6895", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-f6ee9f6eb35fc2abb14ef246ee6faa3105f3af657cb447761df79743553605c0-OUT", - "hash": "f6ee9f6eb35fc2abb14ef246ee6faa3105f3af657cb447761df79743553605c0", - "type": "OUT", - "senders": [ - "tb1qdy7rh3f3d4v08sx50zwwuv29m206qnu3nehj7j" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", - "blockHash": "000000000000000d6cd593acf0cc74f17f3a51a620e5531e8d313fc82c4cdf63", - "blockHeight": 2815479, - "extra": {}, - "date": "2024-05-15T12:55:09.000Z", - "value": "15090", - "fee": "14090", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-507107ff04a3185909cc891cddf906d98c8a4695bd53f38e7c62008ff54788e4-OUT", - "hash": "507107ff04a3185909cc891cddf906d98c8a4695bd53f38e7c62008ff54788e4", - "type": "OUT", - "senders": [ - "tb1qfljcl04fyxq3zm8x7gkduca43gjxn65uky07t5" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", - "blockHash": "000000000000000d6cd593acf0cc74f17f3a51a620e5531e8d313fc82c4cdf63", - "blockHeight": 2815479, - "extra": {}, - "date": "2024-05-15T12:55:09.000Z", - "value": "15090", - "fee": "14090", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-e1f91c616f34b1048e635fbe10b1d715e953ad982c73f8f252a3d59d6caa985e-OUT", - "hash": "e1f91c616f34b1048e635fbe10b1d715e953ad982c73f8f252a3d59d6caa985e", - "type": "OUT", - "senders": [ - "tb1qta50jk5cs3cece26p26tepqenjs96zk9y02mdm" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", - "blockHash": "00000000000000164ad9408b1ed139e3a7fba0540348f081f8c392e767fbd7ab", - "blockHeight": 2815460, - "extra": {}, - "date": "2024-05-15T10:51:05.000Z", - "value": "15090", - "fee": "14090", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-58d21eece42b687fb811cf5fffae58f31454f5339b22a93f3407405c997b48fd-OUT", - "hash": "58d21eece42b687fb811cf5fffae58f31454f5339b22a93f3407405c997b48fd", - "type": "OUT", - "senders": [ - "tb1qgjuuqs4pkaukww7dgdukm84cg8n4h9dv0t0j8y" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", - "blockHash": "00000000000000164ad9408b1ed139e3a7fba0540348f081f8c392e767fbd7ab", - "blockHeight": 2815460, - "extra": {}, - "date": "2024-05-15T10:51:05.000Z", - "value": "15090", - "fee": "14090", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-2ae182dc9906bafa7404e51be13b8bdfd3b2a408ae0efade21fa74ed234a4601-OUT", - "hash": "2ae182dc9906bafa7404e51be13b8bdfd3b2a408ae0efade21fa74ed234a4601", - "type": "OUT", - "senders": [ - "tb1qarvwul33lpgqagp8pkr7qxuu7yvm3mwpxe8e0z" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", - "blockHash": "00000000000000164ad9408b1ed139e3a7fba0540348f081f8c392e767fbd7ab", - "blockHeight": 2815460, - "extra": {}, - "date": "2024-05-15T10:51:05.000Z", - "value": "15090", - "fee": "14090", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f-OUT", - "hash": "1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f", - "type": "OUT", - "senders": [ - "tb1qs2ex5k9z7t96fgkp4l5c2cs4lfdf64unymwe79", - "tb1qmk6cuwhq9r3jjckq56ctv896fn2erg7fpnm0xz" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", - "blockHash": "00000000000000176ff48d54445b1ef7e934f1ef13f03c6144a963e789982542", - "blockHeight": 2815454, - "extra": {}, - "date": "2024-05-15T10:12:36.000Z", - "value": "134308", - "fee": "133308", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019-OUT", - "hash": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", - "type": "OUT", - "senders": [ - "tb1qlfnf6f09wc5ukp346ty7w462rcf3t7n4utvy40", - "tb1qjnl3f0lahssa62qvn6vm2fruejfc6e9x2r8c5z", - "tb1qhvearg8afglty8rsmfta8j06el0qetxcyu2jun" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", - "blockHash": "000000000000000d27a09b060bc13bbdde3cedd1a9aeee148c80d70d95ca82fd", - "blockHeight": 2815444, - "extra": {}, - "date": "2024-05-15T08:11:02.000Z", - "value": "102016", - "fee": "101016", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea-OUT", - "hash": "762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea", - "type": "OUT", - "senders": [ - "tb1qnf94s85m3qqfu2pgda2pdz5f6xfjxg6p4z9qkh" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", - "blockHash": "000000000000000d27a09b060bc13bbdde3cedd1a9aeee148c80d70d95ca82fd", - "blockHeight": 2815444, - "extra": {}, - "date": "2024-05-15T08:11:02.000Z", - "value": "52336", - "fee": "51336", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075-OUT", - "hash": "8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075", - "type": "OUT", - "senders": [ - "tb1q3hmw2894p6fhencz0syk9v6kyh4heyffm4hz4f" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", - "blockHash": "0000000000000007f533a45f5f92a4d1ca52850333132a79dac787109f2445db", - "blockHeight": 2815108, - "extra": {}, - "date": "2024-05-13T13:19:27.000Z", - "value": "7417", - "fee": "6417", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f-OUT", - "hash": "0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f", - "type": "OUT", - "senders": [ - "tb1qslf059lsyurz6k0kgvjj9rw8pr75f0ts2a66a3" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", - "blockHash": "00000000000000f1ab393053a5b2e3e948458b40ec204de53b869478845f3565", - "blockHeight": 2812143, - "extra": {}, - "date": "2024-05-06T16:50:47.000Z", - "value": "13137", - "fee": "12137", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-db6b8183e8c8bed2551de17045e30600b8552496fe9a3db869abfe5be432f955-IN", - "hash": "db6b8183e8c8bed2551de17045e30600b8552496fe9a3db869abfe5be432f955", - "type": "IN", - "senders": [ - "tb1pxvwvelj9p6ug7vxxqvdq8r8hd7vlgp0w45ety53a5juzt9cffl6q2haz3p" - ], - "recipients": [ - "tb1qjnl3f0lahssa62qvn6vm2fruejfc6e9x2r8c5z" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", - "blockHash": "000000000000009bb4143dffff985f5750400d6b5b691e982daec9efab2b78da", - "blockHeight": 2812062, - "extra": {}, - "date": "2024-05-06T14:25:34.000Z", - "value": "4900", - "fee": "17241", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c-OUT", - "hash": "b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c", - "type": "OUT", - "senders": [ - "tb1q5q9ted8tnvj36x6ndl82p7wze4zhs6gxrt8rdu" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", - "blockHash": "000000000000008e9b0cd4eb69f924afa9112a12ed35f4c5d3a862757099ff7a", - "blockHeight": 2812060, - "extra": {}, - "date": "2024-05-06T14:25:31.000Z", - "value": "7975", - "fee": "6975", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-9dbd0423ef356dda8ab6a7d44d8bdce6f4cf9e7a8852b23214a4f356919103f7-OUT", - "hash": "9dbd0423ef356dda8ab6a7d44d8bdce6f4cf9e7a8852b23214a4f356919103f7", - "type": "OUT", - "senders": [ - "tb1qqrx4qnvvrltfqkjz2rya0xxx7fhjgv55fmpgmy" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", - "blockHash": "00000000000000df392c19e655e3cb90065767f8cb52a60b087e8bef4a3d2fd4", - "blockHeight": 2810662, - "extra": {}, - "date": "2024-05-02T07:53:19.000Z", - "value": "7975", - "fee": "6975", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-12ebf312956be518826b9989b6925e41c1e86b54a1a655726aee9a73326b8450-OUT", - "hash": "12ebf312956be518826b9989b6925e41c1e86b54a1a655726aee9a73326b8450", - "type": "OUT", - "senders": [ - "tb1qr4ckf85dgctzmaca7zg9z2xj5q5qx75x0uvpz0" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", - "blockHash": "000000000000029c1d61c5accc2cf0bb4122b5adffa2016a6e7c315eea9a5ba5", - "blockHeight": 2808871, - "extra": {}, - "date": "2024-04-30T16:23:21.000Z", - "value": "3651", - "fee": "2651", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a-OUT", - "hash": "fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a", - "type": "OUT", - "senders": [ - "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", - "tb1q0rczr7cpz48jq3747z8ez8x2hyx2xunwr0lm5y" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", - "blockHash": "00000000000002300b019883058de5064a4adcf02fc613bcdc45fcbfab38c0fd", - "blockHeight": 2808759, - "extra": {}, - "date": "2024-04-30T15:02:55.000Z", - "value": "6216", - "fee": "5216", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-5351b3a1d1c2f832ab5236a6bb472c19c0554dcfe82067408ae9ff02abae53bd-OUT", - "hash": "5351b3a1d1c2f832ab5236a6bb472c19c0554dcfe82067408ae9ff02abae53bd", - "type": "OUT", - "senders": [ - "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", - "blockHash": "0000000000000338630f87263192a22fed26a325824009fc04bc306d4c00e6c3", - "blockHeight": 2808748, - "extra": {}, - "date": "2024-04-30T14:49:05.000Z", - "value": "3651", - "fee": "2651", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-ea0071ab676dc35448c7ba6b275aad69dfa98e0346f846dd529d7322c88aabf8-OUT", - "hash": "ea0071ab676dc35448c7ba6b275aad69dfa98e0346f846dd529d7322c88aabf8", - "type": "OUT", - "senders": [ - "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", - "blockHash": "0000000000000055c5690cb5ba47beda5d40a8e7e0bea4519a183b9f1f20ef8c", - "blockHeight": 2808681, - "extra": {}, - "date": "2024-04-30T14:03:12.000Z", - "value": "3651", - "fee": "2651", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6-OUT", - "hash": "fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6", - "type": "OUT", - "senders": [ - "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk", - "tb1qx86xqtf50d287uq89unn0w373k5drmavf75vkh" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", - "blockHash": "00000000000002d0e8c9b1fd3a5a499d5c684060025e9d56797e2cb81089ca47", - "blockHeight": 2808671, - "extra": {}, - "date": "2024-04-30T13:58:35.000Z", - "value": "4933", - "fee": "3933", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-4b403adf0e193ca294f6418f517b1ac1358d9f5a2ceb53d8863e92227a7c1938-OUT", - "hash": "4b403adf0e193ca294f6418f517b1ac1358d9f5a2ceb53d8863e92227a7c1938", - "type": "OUT", - "senders": [ - "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk" - ], - "recipients": [ - "tb1q8kkh3hkwaq6frqrfdkhpmxzzhe5dtclzwlu4y9" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", - "blockHash": "000000000024db40b1e77e9beefd5323e65b1d34b767f3654bc0eada1390a7f3", - "blockHeight": 2586529, - "extra": {}, - "date": "2024-04-16T09:27:18.000Z", - "value": "3000", - "fee": "2000", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902-OUT", - "hash": "f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902", - "type": "OUT", - "senders": [ - "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk" - ], - "recipients": [ - "tb1q8kkh3hkwaq6frqrfdkhpmxzzhe5dtclzwlu4y9" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", - "blockHash": "0000000000000000aed4c9f3d04c79b3446e87e6a4e9cb84986631a9d97c97ad", - "blockHeight": 2586394, - "extra": {}, - "date": "2024-04-15T15:45:15.000Z", - "value": "3232", - "fee": "2232", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-1a4b3b55909256ecca18c215a0bcd8e862a81427afa8760a6fa245a6a72c9888-IN", - "hash": "1a4b3b55909256ecca18c215a0bcd8e862a81427afa8760a6fa245a6a72c9888", - "type": "IN", - "senders": [ - "tb1q3vv6s54gr7ftmlz3rdafvhszqfltntnvwrkwvg", - "tb1qx0psqru962yk34u8zjhzumzvgjv2c7uz35ag2j" - ], - "recipients": [ - "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", - "blockHash": "000000000000124ee9e7aec1fc00e0b343920f6047b11e7fc42fd28f9d84042d", - "blockHeight": 2586076, - "extra": {}, - "date": "2024-04-12T14:11:02.000Z", - "value": "1000000", - "fee": "549", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-dcb3b6a870d0a1b87b7dd05201b2fa16ae6965c08f46eae024dc8300c4e6e44e-IN", - "hash": "dcb3b6a870d0a1b87b7dd05201b2fa16ae6965c08f46eae024dc8300c4e6e44e", - "type": "IN", - "senders": [ - "tb1p2aa8fs4d9h4yeu3e2q6jt7xkzqgp6klc2vavhhf5njzm0vrh3tyq46g67p" - ], - "recipients": [ - "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", - "blockHash": "000000000000124ee9e7aec1fc00e0b343920f6047b11e7fc42fd28f9d84042d", - "blockHeight": 2586076, - "extra": {}, - "date": "2024-04-12T14:11:02.000Z", - "value": "14764", - "fee": "132", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-3a81b0e315a34becc02405fde400f79c4afe2c5f07d855df21f59576a662419f-IN", - "hash": "3a81b0e315a34becc02405fde400f79c4afe2c5f07d855df21f59576a662419f", - "type": "IN", - "senders": [ - "tb1pecshtass32dxesxf69rqerrmrvp8a9va46wgk8r9rfzx2ev4g06ss2jx4s" - ], - "recipients": [ - "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", - "blockHash": "000000000000124ee9e7aec1fc00e0b343920f6047b11e7fc42fd28f9d84042d", - "blockHeight": 2586076, - "extra": {}, - "date": "2024-04-12T14:11:02.000Z", - "value": "1000", - "fee": "291", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-b4ea6cb6403312cb02fbdb0a4a98ea1fe9221672eebdbba3c68f17f5cc8d4612-IN", - "hash": "b4ea6cb6403312cb02fbdb0a4a98ea1fe9221672eebdbba3c68f17f5cc8d4612", - "type": "IN", - "senders": [ - "tb1pc5e5pnt766qp9d6dlhufp0nern556u0cv9klg6w40t23xkg6882s27yhy7" - ], - "recipients": [ - "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", - "blockHash": "000000000000124ee9e7aec1fc00e0b343920f6047b11e7fc42fd28f9d84042d", - "blockHeight": 2586076, - "extra": {}, - "date": "2024-04-12T14:11:02.000Z", - "value": "1000", - "fee": "322", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-292bf44de2a8713cbcbceccfeab33f0478ebfb73cb1e8b09252942d849bcfcdd-IN", - "hash": "292bf44de2a8713cbcbceccfeab33f0478ebfb73cb1e8b09252942d849bcfcdd", - "type": "IN", - "senders": [ - "tb1p7qhtmu58ks34ddgwlfxzqfye7el4hzugga07hg9stz9kpr8k36uqan4rq3" - ], - "recipients": [ - "tb1qx86xqtf50d287uq89unn0w373k5drmavf75vkh" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", - "blockHash": "000000000028f602c2e9c2146b394392270365a394e9c0287c0605207999eeb7", - "blockHeight": 2585947, - "extra": {}, - "date": "2024-04-11T08:24:47.000Z", - "value": "18752", - "fee": "130", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-185b469ab015a7ed5e102543912dc268c1509e3beb222b48cffc6d6e5213f474-IN", - "hash": "185b469ab015a7ed5e102543912dc268c1509e3beb222b48cffc6d6e5213f474", - "type": "IN", - "senders": [ - "tb1pl3pp4x2cxleskff939kd9f90a8ycfprq0w7jlahceafy0cqa9h8qgum8gs" - ], - "recipients": [ - "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", - "blockHash": "00000000015a1f0b83a9c6d145ba3421390ef72f65628fd4b088220649184087", - "blockHeight": 2585850, - "extra": {}, - "date": "2024-04-10T13:07:51.000Z", - "value": "3000", - "fee": "291", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-cdc50ee65b9557642190cfe1d6a4f2b89ade172fa5c15addce1a4d242434d725-IN", - "hash": "cdc50ee65b9557642190cfe1d6a4f2b89ade172fa5c15addce1a4d242434d725", - "type": "IN", - "senders": [ - "tb1ppzsd0ady8k9wcz578a8gphpz746s6vp483zd8phgqx3vy080kwtqqplapn" - ], - "recipients": [ - "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", - "blockHash": "00000000015a1f0b83a9c6d145ba3421390ef72f65628fd4b088220649184087", - "blockHeight": 2585850, - "extra": {}, - "date": "2024-04-10T13:07:51.000Z", - "value": "1000", - "fee": "291", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-1756ba36fae7733fdffc0c5314d556a00b5990564a61d811c0938981ef830cbc-IN", - "hash": "1756ba36fae7733fdffc0c5314d556a00b5990564a61d811c0938981ef830cbc", - "type": "IN", - "senders": [ - "tb1qt0h29js84pupjarxgxf9uc57vh3v3euj7r5fak" - ], - "recipients": [ - "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", - "blockHash": "00000000009c8bb50b2b9bf034e2bc1e228cb0d12439e803579d5767041fee64", - "blockHeight": 2585849, - "extra": {}, - "date": "2024-04-10T12:47:03.000Z", - "value": "489501", - "fee": "220", - "hasFailed": false - } - ], - "pendingOperations": [], - "currencyId": "bitcoin_testnet", - "unitMagnitude": 8, - "lastSyncDate": "2024-05-15T15:06:19.226Z", - "balance": "1135166", - "spendableBalance": "1135166", - "balanceHistoryCache": { - "HOUR": { - "balances": [ - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1469079, - 1469079, - 1469079, - 1469079, - 1469079, - 1469079, - 1469079, - 1469079, - 1469079, - 1469079, - 1469079, - 1469079, - 1469079, - 1469079, - 1469079, - 1469079, - 1469079, - 1469079, - 1469079, - 1469079, - 1469079, - 1469079, - 1469079, - 1469079, - 1469079, - 1469079, - 1469079, - 1469079, - 1469079, - 1469079, - 1469079, - 1469079, - 1469079, - 1469079, - 1469079, - 1469079, - 1469079, - 1469079, - 1469079, - 1469079, - 1469079, - 1469079, - 1469079, - 1314727, - 1314727, - 1135149, - 1135149, - 1104969, - 1135166, - 1135166 - ], - "latestDate": 1715785200000 - }, - "DAY": { - "balances": [ - 0, - 493501, - 512253, - 1529017, - 1529017, - 1529017, - 1525785, - 1522785, - 1522785, - 1522785, - 1522785, - 1522785, - 1522785, - 1522785, - 1522785, - 1522785, - 1522785, - 1522785, - 1522785, - 1522785, - 1522785, - 1500683, - 1500683, - 1492708, - 1492708, - 1492708, - 1492708, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1469079, - 1469079 - ], - "latestDate": 1715724000000 - }, - "WEEK": { - "balances": [ - 0, - 1529017, - 1522785, - 1522785, - 1492708, - 1476496 - ], - "latestDate": 1715464800000 - } - }, - "xpub": "tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h", - "bitcoinResources": { - "utxos": [ - [ - "f6ee9f6eb35fc2abb14ef246ee6faa3105f3af657cb447761df79743553605c0", - 1, - 2815479, - "tb1qn9mfj32wvxem4m9dujgqsqwp9arp8zp3c7e2ke", - "760211", - 1, - 1 - ], - [ - "507107ff04a3185909cc891cddf906d98c8a4695bd53f38e7c62008ff54788e4", - 1, - 2815479, - "tb1q8t2nc9phmeu39sewkqnca84kh2ffnrkyhww9j0", - "344758", - 1, - 1 - ], - [ - "ca716f4736eaf5c24f0e9190c7173408c7a46c925e10c76cb4488d14278235ac", - 1, - 2815481, - "tb1qjnl3f0lahssa62qvn6vm2fruejfc6e9x2r8c5z", - "30197", - 1, - 0 - ] - ], - "walletAccount": { - "params": { - "xpub": "tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h", - "path": "84'/1'", - "index": 0, - "currency": "bitcoin_testnet", - "network": "testnet", - "derivationMode": "Native SegWit" - }, - "xpub": { - "xpub": "tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h", - "data": { - "txs": [ - { - "id": "292bf44de2a8713cbcbceccfeab33f0478ebfb73cb1e8b09252942d849bcfcdd", - "received_at": "2024-04-11T08:24:47Z", - "fees": "130", - "inputs": [ - { - "output_hash": "325d3c180e46899cd727b90ce9b73839adbebd7f2307f19db186db133100d7ce", - "output_index": 0, - "value": "2013656253", - "address": "tb1p7qhtmu58ks34ddgwlfxzqfye7el4hzugga07hg9stz9kpr8k36uqan4rq3", - "sequence": 4294967293 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "18752", - "address": "tb1qx86xqtf50d287uq89unn0w373k5drmavf75vkh", - "spent_at_height": null, - "output_hash": "292bf44de2a8713cbcbceccfeab33f0478ebfb73cb1e8b09252942d849bcfcdd", - "block_height": 2585947, - "rbf": true - }, - { - "output_index": 1, - "value": "2013637371", - "address": "tb1qu5cutnd0d26upy4qcjuwjqma9s5mpsfx7ltc0l", - "spent_at_height": null, - "output_hash": "292bf44de2a8713cbcbceccfeab33f0478ebfb73cb1e8b09252942d849bcfcdd", - "block_height": 2585947, - "rbf": true - } - ], - "block": { - "hash": "000000000028f602c2e9c2146b394392270365a394e9c0287c0605207999eeb7", - "height": 2585947, - "time": "2024-04-11T08:24:47Z" - }, - "tx_index": 1279, - "account": 0, - "index": 1, - "address": "tb1qx86xqtf50d287uq89unn0w373k5drmavf75vkh" - }, - { - "id": "1756ba36fae7733fdffc0c5314d556a00b5990564a61d811c0938981ef830cbc", - "received_at": "2024-04-10T12:47:03Z", - "fees": "220", - "inputs": [ - { - "output_hash": "f6b8c04a98acbba18c59d17c021e4c91aef6fd5f05938529285aa955cd1d399c", - "output_index": 1, - "value": "489721", - "address": "tb1qt0h29js84pupjarxgxf9uc57vh3v3euj7r5fak", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "489501", - "address": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk", - "spent_at_height": null, - "output_hash": "1756ba36fae7733fdffc0c5314d556a00b5990564a61d811c0938981ef830cbc", - "block_height": 2585849, - "rbf": true - } - ], - "block": { - "hash": "00000000009c8bb50b2b9bf034e2bc1e228cb0d12439e803579d5767041fee64", - "height": 2585849, - "time": "2024-04-10T12:47:03Z" - }, - "tx_index": 268, - "account": 0, - "index": 0, - "address": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk" - }, - { - "id": "185b469ab015a7ed5e102543912dc268c1509e3beb222b48cffc6d6e5213f474", - "received_at": "2024-04-10T13:07:51Z", - "fees": "291", - "inputs": [ - { - "output_hash": "287f720e73e9c0e2cbb95b9647df0b6251bd09c4a70e34bf2d615655e72960ea", - "output_index": 4, - "value": "652609929", - "address": "tb1pl3pp4x2cxleskff939kd9f90a8ycfprq0w7jlahceafy0cqa9h8qgum8gs", - "sequence": 4294967293 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "3000", - "address": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk", - "spent_at_height": null, - "output_hash": "185b469ab015a7ed5e102543912dc268c1509e3beb222b48cffc6d6e5213f474", - "block_height": 2585850, - "rbf": true - }, - { - "output_index": 1, - "value": "6000", - "address": "tb1q3nv2zmqjl98rv6reeqnng537uc439p0ht94a08", - "spent_at_height": null, - "output_hash": "185b469ab015a7ed5e102543912dc268c1509e3beb222b48cffc6d6e5213f474", - "block_height": 2585850, - "rbf": true - }, - { - "output_index": 2, - "value": "652516638", - "address": "tb1ppwj82sgfkkk22qu452efu5f87pdjw2wtz68nf65u0lawre08xcpqkspdcl", - "spent_at_height": 2585850, - "output_hash": "185b469ab015a7ed5e102543912dc268c1509e3beb222b48cffc6d6e5213f474", - "block_height": 2585850, - "rbf": true - }, - { - "output_index": 3, - "value": "73000", - "address": "tb1ph4c5egccqdkw62n7vtztrmyknf7caxjuzv96ptlzewh8skkedhxsgzc4d2", - "spent_at_height": null, - "output_hash": "185b469ab015a7ed5e102543912dc268c1509e3beb222b48cffc6d6e5213f474", - "block_height": 2585850, - "rbf": true - }, - { - "output_index": 4, - "value": "10000", - "address": "tb1p5r87v4lhczhv4h4aduly8ytl8lx55y2ak9xkkt0taqxa7hql506suqa3sm", - "spent_at_height": null, - "output_hash": "185b469ab015a7ed5e102543912dc268c1509e3beb222b48cffc6d6e5213f474", - "block_height": 2585850, - "rbf": true - }, - { - "output_index": 5, - "value": "1000", - "address": "tb1qrvh2qtvwj2skkj2k4psgj5j5wxemwy4ddc3394", - "spent_at_height": null, - "output_hash": "185b469ab015a7ed5e102543912dc268c1509e3beb222b48cffc6d6e5213f474", - "block_height": 2585850, - "rbf": true - } - ], - "block": { - "hash": "00000000015a1f0b83a9c6d145ba3421390ef72f65628fd4b088220649184087", - "height": 2585850, - "time": "2024-04-10T13:07:51Z" - }, - "tx_index": 1688, - "account": 0, - "index": 0, - "address": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk" - }, - { - "id": "cdc50ee65b9557642190cfe1d6a4f2b89ade172fa5c15addce1a4d242434d725", - "received_at": "2024-04-10T13:07:51Z", - "fees": "291", - "inputs": [ - { - "output_hash": "109add5ba40419f25dcd4dda0e06c6cedf8b5940280f8851f810385778ba4b6a", - "output_index": 1, - "value": "740811180", - "address": "tb1ppzsd0ady8k9wcz578a8gphpz746s6vp483zd8phgqx3vy080kwtqqplapn", - "sequence": 4294967293 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk", - "spent_at_height": null, - "output_hash": "cdc50ee65b9557642190cfe1d6a4f2b89ade172fa5c15addce1a4d242434d725", - "block_height": 2585850, - "rbf": true - }, - { - "output_index": 1, - "value": "19000", - "address": "tb1p5r87v4lhczhv4h4aduly8ytl8lx55y2ak9xkkt0taqxa7hql506suqa3sm", - "spent_at_height": null, - "output_hash": "cdc50ee65b9557642190cfe1d6a4f2b89ade172fa5c15addce1a4d242434d725", - "block_height": 2585850, - "rbf": true - }, - { - "output_index": 2, - "value": "3000", - "address": "tb1q3nv2zmqjl98rv6reeqnng537uc439p0ht94a08", - "spent_at_height": null, - "output_hash": "cdc50ee65b9557642190cfe1d6a4f2b89ade172fa5c15addce1a4d242434d725", - "block_height": 2585850, - "rbf": true - }, - { - "output_index": 3, - "value": "1000", - "address": "tb1qvtgdvlva0sal0j09k84mp72ppyg7n5df0nmdzp", - "spent_at_height": null, - "output_hash": "cdc50ee65b9557642190cfe1d6a4f2b89ade172fa5c15addce1a4d242434d725", - "block_height": 2585850, - "rbf": true - }, - { - "output_index": 4, - "value": "740713889", - "address": "tb1p5wt63s45h528n96zd68y9ljvfdz3n8pjatyu5m7aa8nc9yn6m4cqn9j0xm", - "spent_at_height": 2585850, - "output_hash": "cdc50ee65b9557642190cfe1d6a4f2b89ade172fa5c15addce1a4d242434d725", - "block_height": 2585850, - "rbf": true - }, - { - "output_index": 5, - "value": "73000", - "address": "tb1ph4c5egccqdkw62n7vtztrmyknf7caxjuzv96ptlzewh8skkedhxsgzc4d2", - "spent_at_height": null, - "output_hash": "cdc50ee65b9557642190cfe1d6a4f2b89ade172fa5c15addce1a4d242434d725", - "block_height": 2585850, - "rbf": true - } - ], - "block": { - "hash": "00000000015a1f0b83a9c6d145ba3421390ef72f65628fd4b088220649184087", - "height": 2585850, - "time": "2024-04-10T13:07:51Z" - }, - "tx_index": 1715, - "account": 0, - "index": 0, - "address": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk" - }, - { - "id": "f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902", - "received_at": "2024-04-15T15:45:15Z", - "fees": "2232", - "inputs": [ - { - "output_hash": "1756ba36fae7733fdffc0c5314d556a00b5990564a61d811c0938981ef830cbc", - "output_index": 0, - "value": "489501", - "address": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1q8kkh3hkwaq6frqrfdkhpmxzzhe5dtclzwlu4y9", - "spent_at_height": null, - "output_hash": "f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902", - "block_height": 2586394, - "rbf": true - }, - { - "output_index": 1, - "value": "486269", - "address": "tb1q0rczr7cpz48jq3747z8ez8x2hyx2xunwr0lm5y", - "spent_at_height": null, - "output_hash": "f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902", - "block_height": 2586394, - "rbf": true - } - ], - "block": { - "hash": "0000000000000000aed4c9f3d04c79b3446e87e6a4e9cb84986631a9d97c97ad", - "height": 2586394, - "time": "2024-04-15T15:45:15Z" - }, - "tx_index": 898, - "account": 0, - "index": 0, - "address": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk" - }, - { - "id": "f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902", - "received_at": "2024-04-15T15:45:15Z", - "fees": "2232", - "inputs": [ - { - "output_hash": "1756ba36fae7733fdffc0c5314d556a00b5990564a61d811c0938981ef830cbc", - "output_index": 0, - "value": "489501", - "address": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1q8kkh3hkwaq6frqrfdkhpmxzzhe5dtclzwlu4y9", - "spent_at_height": null, - "output_hash": "f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902", - "block_height": 2586394, - "rbf": true - }, - { - "output_index": 1, - "value": "486269", - "address": "tb1q0rczr7cpz48jq3747z8ez8x2hyx2xunwr0lm5y", - "spent_at_height": null, - "output_hash": "f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902", - "block_height": 2586394, - "rbf": true - } - ], - "block": { - "hash": "0000000000000000aed4c9f3d04c79b3446e87e6a4e9cb84986631a9d97c97ad", - "height": 2586394, - "time": "2024-04-15T15:45:15Z" - }, - "tx_index": 898, - "account": 1, - "index": 0, - "address": "tb1q0rczr7cpz48jq3747z8ez8x2hyx2xunwr0lm5y" - }, - { - "id": "4b403adf0e193ca294f6418f517b1ac1358d9f5a2ceb53d8863e92227a7c1938", - "received_at": "2024-04-16T09:27:18Z", - "fees": "2000", - "inputs": [ - { - "output_hash": "185b469ab015a7ed5e102543912dc268c1509e3beb222b48cffc6d6e5213f474", - "output_index": 0, - "value": "3000", - "address": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1q8kkh3hkwaq6frqrfdkhpmxzzhe5dtclzwlu4y9", - "spent_at_height": null, - "output_hash": "4b403adf0e193ca294f6418f517b1ac1358d9f5a2ceb53d8863e92227a7c1938", - "block_height": 2586529, - "rbf": true - } - ], - "block": { - "hash": "000000000024db40b1e77e9beefd5323e65b1d34b767f3654bc0eada1390a7f3", - "height": 2586529, - "time": "2024-04-16T09:27:18Z" - }, - "tx_index": 3084, - "account": 0, - "index": 0, - "address": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk" - }, - { - "id": "fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6", - "received_at": "2024-04-30T13:58:35Z", - "fees": "3933", - "inputs": [ - { - "output_hash": "cdc50ee65b9557642190cfe1d6a4f2b89ade172fa5c15addce1a4d242434d725", - "output_index": 0, - "value": "1000", - "address": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk", - "sequence": 0 - }, - { - "output_hash": "292bf44de2a8713cbcbceccfeab33f0478ebfb73cb1e8b09252942d849bcfcdd", - "output_index": 0, - "value": "18752", - "address": "tb1qx86xqtf50d287uq89unn0w373k5drmavf75vkh", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6", - "block_height": 2808671, - "rbf": true - }, - { - "output_index": 1, - "value": "14819", - "address": "tb1qr4ckf85dgctzmaca7zg9z2xj5q5qx75x0uvpz0", - "spent_at_height": null, - "output_hash": "fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6", - "block_height": 2808671, - "rbf": true - } - ], - "block": { - "hash": "00000000000002d0e8c9b1fd3a5a499d5c684060025e9d56797e2cb81089ca47", - "height": 2808671, - "time": "2024-04-30T13:58:35Z" - }, - "tx_index": 271, - "account": 0, - "index": 0, - "address": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk" - }, - { - "id": "fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6", - "received_at": "2024-04-30T13:58:35Z", - "fees": "3933", - "inputs": [ - { - "output_hash": "cdc50ee65b9557642190cfe1d6a4f2b89ade172fa5c15addce1a4d242434d725", - "output_index": 0, - "value": "1000", - "address": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk", - "sequence": 0 - }, - { - "output_hash": "292bf44de2a8713cbcbceccfeab33f0478ebfb73cb1e8b09252942d849bcfcdd", - "output_index": 0, - "value": "18752", - "address": "tb1qx86xqtf50d287uq89unn0w373k5drmavf75vkh", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6", - "block_height": 2808671, - "rbf": true - }, - { - "output_index": 1, - "value": "14819", - "address": "tb1qr4ckf85dgctzmaca7zg9z2xj5q5qx75x0uvpz0", - "spent_at_height": null, - "output_hash": "fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6", - "block_height": 2808671, - "rbf": true - } - ], - "block": { - "hash": "00000000000002d0e8c9b1fd3a5a499d5c684060025e9d56797e2cb81089ca47", - "height": 2808671, - "time": "2024-04-30T13:58:35Z" - }, - "tx_index": 271, - "account": 0, - "index": 1, - "address": "tb1qx86xqtf50d287uq89unn0w373k5drmavf75vkh" - }, - { - "id": "fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6", - "received_at": "2024-04-30T13:58:35Z", - "fees": "3933", - "inputs": [ - { - "output_hash": "cdc50ee65b9557642190cfe1d6a4f2b89ade172fa5c15addce1a4d242434d725", - "output_index": 0, - "value": "1000", - "address": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk", - "sequence": 0 - }, - { - "output_hash": "292bf44de2a8713cbcbceccfeab33f0478ebfb73cb1e8b09252942d849bcfcdd", - "output_index": 0, - "value": "18752", - "address": "tb1qx86xqtf50d287uq89unn0w373k5drmavf75vkh", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6", - "block_height": 2808671, - "rbf": true - }, - { - "output_index": 1, - "value": "14819", - "address": "tb1qr4ckf85dgctzmaca7zg9z2xj5q5qx75x0uvpz0", - "spent_at_height": null, - "output_hash": "fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6", - "block_height": 2808671, - "rbf": true - } - ], - "block": { - "hash": "00000000000002d0e8c9b1fd3a5a499d5c684060025e9d56797e2cb81089ca47", - "height": 2808671, - "time": "2024-04-30T13:58:35Z" - }, - "tx_index": 271, - "account": 1, - "index": 1, - "address": "tb1qr4ckf85dgctzmaca7zg9z2xj5q5qx75x0uvpz0" - }, - { - "id": "ea0071ab676dc35448c7ba6b275aad69dfa98e0346f846dd529d7322c88aabf8", - "received_at": "2024-04-30T14:03:12Z", - "fees": "2651", - "inputs": [ - { - "output_hash": "1a4b3b55909256ecca18c215a0bcd8e862a81427afa8760a6fa245a6a72c9888", - "output_index": 0, - "value": "1000000", - "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "ea0071ab676dc35448c7ba6b275aad69dfa98e0346f846dd529d7322c88aabf8", - "block_height": 2808681, - "rbf": true - }, - { - "output_index": 1, - "value": "996349", - "address": "tb1qqrx4qnvvrltfqkjz2rya0xxx7fhjgv55fmpgmy", - "spent_at_height": null, - "output_hash": "ea0071ab676dc35448c7ba6b275aad69dfa98e0346f846dd529d7322c88aabf8", - "block_height": 2808681, - "rbf": true - } - ], - "block": { - "hash": "0000000000000055c5690cb5ba47beda5d40a8e7e0bea4519a183b9f1f20ef8c", - "height": 2808681, - "time": "2024-04-30T14:03:12Z" - }, - "tx_index": 53, - "account": 1, - "index": 2, - "address": "tb1qqrx4qnvvrltfqkjz2rya0xxx7fhjgv55fmpgmy" - }, - { - "id": "1a4b3b55909256ecca18c215a0bcd8e862a81427afa8760a6fa245a6a72c9888", - "received_at": "2024-04-12T14:11:02Z", - "fees": "549", - "inputs": [ - { - "output_hash": "158795770aaa24420aff7f11b8769f71337540b1066b8d16dbf1969ea92fa991", - "output_index": 0, - "value": "100", - "address": "tb1q3vv6s54gr7ftmlz3rdafvhszqfltntnvwrkwvg", - "sequence": 0 - }, - { - "output_hash": "bfa1e34839fb666474271ef446e82f688a9522b480bb5c94d2d40d30511b75e6", - "output_index": 0, - "value": "800000", - "address": "tb1q3vv6s54gr7ftmlz3rdafvhszqfltntnvwrkwvg", - "sequence": 0 - }, - { - "output_hash": "f179a6ff7712287b00c2a3236a6e85ba9d55150f347da206fd21e53035c1afc0", - "output_index": 1, - "value": "681552", - "address": "tb1qx0psqru962yk34u8zjhzumzvgjv2c7uz35ag2j", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000000", - "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", - "spent_at_height": null, - "output_hash": "1a4b3b55909256ecca18c215a0bcd8e862a81427afa8760a6fa245a6a72c9888", - "block_height": 2586076, - "rbf": true - }, - { - "output_index": 1, - "value": "481103", - "address": "tb1qkglmpj3584ppyxmyh8ehc0643uku3uwdf93u8s", - "spent_at_height": null, - "output_hash": "1a4b3b55909256ecca18c215a0bcd8e862a81427afa8760a6fa245a6a72c9888", - "block_height": 2586076, - "rbf": true - } - ], - "block": { - "hash": "000000000000124ee9e7aec1fc00e0b343920f6047b11e7fc42fd28f9d84042d", - "height": 2586076, - "time": "2024-04-12T14:11:02Z" - }, - "tx_index": 2104, - "account": 0, - "index": 2, - "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0" - }, - { - "id": "dcb3b6a870d0a1b87b7dd05201b2fa16ae6965c08f46eae024dc8300c4e6e44e", - "received_at": "2024-04-12T14:11:02Z", - "fees": "132", - "inputs": [ - { - "output_hash": "e4eccfce9caf08afbf205d50b8ed0a57f27fbdcf5dead07f9bf419772f80514c", - "output_index": 1, - "value": "2865033137", - "address": "tb1p2aa8fs4d9h4yeu3e2q6jt7xkzqgp6klc2vavhhf5njzm0vrh3tyq46g67p", - "sequence": 4294967293 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "14764", - "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", - "spent_at_height": null, - "output_hash": "dcb3b6a870d0a1b87b7dd05201b2fa16ae6965c08f46eae024dc8300c4e6e44e", - "block_height": 2586076, - "rbf": true - }, - { - "output_index": 1, - "value": "2865018241", - "address": "tb1qrc2pquldld7kylqxu09hdzta9r7qcc4tcz7mjd", - "spent_at_height": null, - "output_hash": "dcb3b6a870d0a1b87b7dd05201b2fa16ae6965c08f46eae024dc8300c4e6e44e", - "block_height": 2586076, - "rbf": true - } - ], - "block": { - "hash": "000000000000124ee9e7aec1fc00e0b343920f6047b11e7fc42fd28f9d84042d", - "height": 2586076, - "time": "2024-04-12T14:11:02Z" - }, - "tx_index": 3965, - "account": 0, - "index": 2, - "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0" - }, - { - "id": "3a81b0e315a34becc02405fde400f79c4afe2c5f07d855df21f59576a662419f", - "received_at": "2024-04-12T14:11:02Z", - "fees": "291", - "inputs": [ - { - "output_hash": "82a5412ea5f1397dabdda2b738a3f0f90b9955d244580dacb5938fae1ef9df06", - "output_index": 2, - "value": "715365582", - "address": "tb1pecshtass32dxesxf69rqerrmrvp8a9va46wgk8r9rfzx2ev4g06ss2jx4s", - "sequence": 4294967293 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "2000", - "address": "tb1q3nv2zmqjl98rv6reeqnng537uc439p0ht94a08", - "spent_at_height": null, - "output_hash": "3a81b0e315a34becc02405fde400f79c4afe2c5f07d855df21f59576a662419f", - "block_height": 2586076, - "rbf": true - }, - { - "output_index": 1, - "value": "1000", - "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", - "spent_at_height": null, - "output_hash": "3a81b0e315a34becc02405fde400f79c4afe2c5f07d855df21f59576a662419f", - "block_height": 2586076, - "rbf": true - }, - { - "output_index": 2, - "value": "3000", - "address": "tb1p9rgq4h2qr372eaue4fpaqayhy5vv0hxq9346c9qrzec8p9krs5gqfj6h0c", - "spent_at_height": null, - "output_hash": "3a81b0e315a34becc02405fde400f79c4afe2c5f07d855df21f59576a662419f", - "block_height": 2586076, - "rbf": true - }, - { - "output_index": 3, - "value": "1000", - "address": "tb1q9y0tnqzskhuv2x9qeusz8znxwtsz9rz06s6v8y", - "spent_at_height": null, - "output_hash": "3a81b0e315a34becc02405fde400f79c4afe2c5f07d855df21f59576a662419f", - "block_height": 2586076, - "rbf": true - }, - { - "output_index": 4, - "value": "98000", - "address": "tb1ph4c5egccqdkw62n7vtztrmyknf7caxjuzv96ptlzewh8skkedhxsgzc4d2", - "spent_at_height": null, - "output_hash": "3a81b0e315a34becc02405fde400f79c4afe2c5f07d855df21f59576a662419f", - "block_height": 2586076, - "rbf": true - }, - { - "output_index": 5, - "value": "715260291", - "address": "tb1pc5e5pnt766qp9d6dlhufp0nern556u0cv9klg6w40t23xkg6882s27yhy7", - "spent_at_height": 2586076, - "output_hash": "3a81b0e315a34becc02405fde400f79c4afe2c5f07d855df21f59576a662419f", - "block_height": 2586076, - "rbf": true - } - ], - "block": { - "hash": "000000000000124ee9e7aec1fc00e0b343920f6047b11e7fc42fd28f9d84042d", - "height": 2586076, - "time": "2024-04-12T14:11:02Z" - }, - "tx_index": 4161, - "account": 0, - "index": 2, - "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0" - }, - { - "id": "b4ea6cb6403312cb02fbdb0a4a98ea1fe9221672eebdbba3c68f17f5cc8d4612", - "received_at": "2024-04-12T14:11:02Z", - "fees": "322", - "inputs": [ - { - "output_hash": "3a81b0e315a34becc02405fde400f79c4afe2c5f07d855df21f59576a662419f", - "output_index": 5, - "value": "715260291", - "address": "tb1pc5e5pnt766qp9d6dlhufp0nern556u0cv9klg6w40t23xkg6882s27yhy7", - "sequence": 4294967293 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "3000", - "address": "tb1qy4n0amufsudmkvscalkaze9ygnmdh8nxuyn0su", - "spent_at_height": null, - "output_hash": "b4ea6cb6403312cb02fbdb0a4a98ea1fe9221672eebdbba3c68f17f5cc8d4612", - "block_height": 2586076, - "rbf": true - }, - { - "output_index": 1, - "value": "715166969", - "address": "tb1pk7kaxs533dglczwuxz3cfse4d80jvpyyl03z2e6ww43xp0aet6lsjayck7", - "spent_at_height": 2586077, - "output_hash": "b4ea6cb6403312cb02fbdb0a4a98ea1fe9221672eebdbba3c68f17f5cc8d4612", - "block_height": 2586076, - "rbf": true - }, - { - "output_index": 2, - "value": "82000", - "address": "tb1ph4c5egccqdkw62n7vtztrmyknf7caxjuzv96ptlzewh8skkedhxsgzc4d2", - "spent_at_height": null, - "output_hash": "b4ea6cb6403312cb02fbdb0a4a98ea1fe9221672eebdbba3c68f17f5cc8d4612", - "block_height": 2586076, - "rbf": true - }, - { - "output_index": 3, - "value": "1000", - "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", - "spent_at_height": null, - "output_hash": "b4ea6cb6403312cb02fbdb0a4a98ea1fe9221672eebdbba3c68f17f5cc8d4612", - "block_height": 2586076, - "rbf": true - }, - { - "output_index": 4, - "value": "1000", - "address": "tb1q9y0tnqzskhuv2x9qeusz8znxwtsz9rz06s6v8y", - "spent_at_height": null, - "output_hash": "b4ea6cb6403312cb02fbdb0a4a98ea1fe9221672eebdbba3c68f17f5cc8d4612", - "block_height": 2586076, - "rbf": true - }, - { - "output_index": 5, - "value": "3000", - "address": "tb1q3nv2zmqjl98rv6reeqnng537uc439p0ht94a08", - "spent_at_height": null, - "output_hash": "b4ea6cb6403312cb02fbdb0a4a98ea1fe9221672eebdbba3c68f17f5cc8d4612", - "block_height": 2586076, - "rbf": true - }, - { - "output_index": 6, - "value": "3000", - "address": "tb1p9rgq4h2qr372eaue4fpaqayhy5vv0hxq9346c9qrzec8p9krs5gqfj6h0c", - "spent_at_height": null, - "output_hash": "b4ea6cb6403312cb02fbdb0a4a98ea1fe9221672eebdbba3c68f17f5cc8d4612", - "block_height": 2586076, - "rbf": true - } - ], - "block": { - "hash": "000000000000124ee9e7aec1fc00e0b343920f6047b11e7fc42fd28f9d84042d", - "height": 2586076, - "time": "2024-04-12T14:11:02Z" - }, - "tx_index": 4172, - "account": 0, - "index": 2, - "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0" - }, - { - "id": "ea0071ab676dc35448c7ba6b275aad69dfa98e0346f846dd529d7322c88aabf8", - "received_at": "2024-04-30T14:03:12Z", - "fees": "2651", - "inputs": [ - { - "output_hash": "1a4b3b55909256ecca18c215a0bcd8e862a81427afa8760a6fa245a6a72c9888", - "output_index": 0, - "value": "1000000", - "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "ea0071ab676dc35448c7ba6b275aad69dfa98e0346f846dd529d7322c88aabf8", - "block_height": 2808681, - "rbf": true - }, - { - "output_index": 1, - "value": "996349", - "address": "tb1qqrx4qnvvrltfqkjz2rya0xxx7fhjgv55fmpgmy", - "spent_at_height": null, - "output_hash": "ea0071ab676dc35448c7ba6b275aad69dfa98e0346f846dd529d7322c88aabf8", - "block_height": 2808681, - "rbf": true - } - ], - "block": { - "hash": "0000000000000055c5690cb5ba47beda5d40a8e7e0bea4519a183b9f1f20ef8c", - "height": 2808681, - "time": "2024-04-30T14:03:12Z" - }, - "tx_index": 53, - "account": 0, - "index": 2, - "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0" - }, - { - "id": "5351b3a1d1c2f832ab5236a6bb472c19c0554dcfe82067408ae9ff02abae53bd", - "received_at": "2024-04-30T14:49:05Z", - "fees": "2651", - "inputs": [ - { - "output_hash": "dcb3b6a870d0a1b87b7dd05201b2fa16ae6965c08f46eae024dc8300c4e6e44e", - "output_index": 0, - "value": "14764", - "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "5351b3a1d1c2f832ab5236a6bb472c19c0554dcfe82067408ae9ff02abae53bd", - "block_height": 2808748, - "rbf": true - }, - { - "output_index": 1, - "value": "11113", - "address": "tb1q5q9ted8tnvj36x6ndl82p7wze4zhs6gxrt8rdu", - "spent_at_height": null, - "output_hash": "5351b3a1d1c2f832ab5236a6bb472c19c0554dcfe82067408ae9ff02abae53bd", - "block_height": 2808748, - "rbf": true - } - ], - "block": { - "hash": "0000000000000338630f87263192a22fed26a325824009fc04bc306d4c00e6c3", - "height": 2808748, - "time": "2024-04-30T14:49:05Z" - }, - "tx_index": 238, - "account": 0, - "index": 2, - "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0" - }, - { - "id": "fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a", - "received_at": "2024-04-30T15:02:55Z", - "fees": "5216", - "inputs": [ - { - "output_hash": "3a81b0e315a34becc02405fde400f79c4afe2c5f07d855df21f59576a662419f", - "output_index": 1, - "value": "1000", - "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", - "sequence": 0 - }, - { - "output_hash": "b4ea6cb6403312cb02fbdb0a4a98ea1fe9221672eebdbba3c68f17f5cc8d4612", - "output_index": 3, - "value": "1000", - "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", - "sequence": 0 - }, - { - "output_hash": "f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902", - "output_index": 1, - "value": "486269", - "address": "tb1q0rczr7cpz48jq3747z8ez8x2hyx2xunwr0lm5y", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a", - "block_height": 2808759, - "rbf": true - }, - { - "output_index": 1, - "value": "482053", - "address": "tb1qslf059lsyurz6k0kgvjj9rw8pr75f0ts2a66a3", - "spent_at_height": null, - "output_hash": "fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a", - "block_height": 2808759, - "rbf": true - } - ], - "block": { - "hash": "00000000000002300b019883058de5064a4adcf02fc613bcdc45fcbfab38c0fd", - "height": 2808759, - "time": "2024-04-30T15:02:55Z" - }, - "tx_index": 221, - "account": 0, - "index": 2, - "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0" - }, - { - "id": "fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a", - "received_at": "2024-04-30T15:02:55Z", - "fees": "5216", - "inputs": [ - { - "output_hash": "3a81b0e315a34becc02405fde400f79c4afe2c5f07d855df21f59576a662419f", - "output_index": 1, - "value": "1000", - "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", - "sequence": 0 - }, - { - "output_hash": "b4ea6cb6403312cb02fbdb0a4a98ea1fe9221672eebdbba3c68f17f5cc8d4612", - "output_index": 3, - "value": "1000", - "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", - "sequence": 0 - }, - { - "output_hash": "f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902", - "output_index": 1, - "value": "486269", - "address": "tb1q0rczr7cpz48jq3747z8ez8x2hyx2xunwr0lm5y", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a", - "block_height": 2808759, - "rbf": true - }, - { - "output_index": 1, - "value": "482053", - "address": "tb1qslf059lsyurz6k0kgvjj9rw8pr75f0ts2a66a3", - "spent_at_height": null, - "output_hash": "fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a", - "block_height": 2808759, - "rbf": true - } - ], - "block": { - "hash": "00000000000002300b019883058de5064a4adcf02fc613bcdc45fcbfab38c0fd", - "height": 2808759, - "time": "2024-04-30T15:02:55Z" - }, - "tx_index": 221, - "account": 1, - "index": 0, - "address": "tb1q0rczr7cpz48jq3747z8ez8x2hyx2xunwr0lm5y" - }, - { - "id": "fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a", - "received_at": "2024-04-30T15:02:55Z", - "fees": "5216", - "inputs": [ - { - "output_hash": "3a81b0e315a34becc02405fde400f79c4afe2c5f07d855df21f59576a662419f", - "output_index": 1, - "value": "1000", - "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", - "sequence": 0 - }, - { - "output_hash": "b4ea6cb6403312cb02fbdb0a4a98ea1fe9221672eebdbba3c68f17f5cc8d4612", - "output_index": 3, - "value": "1000", - "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", - "sequence": 0 - }, - { - "output_hash": "f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902", - "output_index": 1, - "value": "486269", - "address": "tb1q0rczr7cpz48jq3747z8ez8x2hyx2xunwr0lm5y", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a", - "block_height": 2808759, - "rbf": true - }, - { - "output_index": 1, - "value": "482053", - "address": "tb1qslf059lsyurz6k0kgvjj9rw8pr75f0ts2a66a3", - "spent_at_height": null, - "output_hash": "fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a", - "block_height": 2808759, - "rbf": true - } - ], - "block": { - "hash": "00000000000002300b019883058de5064a4adcf02fc613bcdc45fcbfab38c0fd", - "height": 2808759, - "time": "2024-04-30T15:02:55Z" - }, - "tx_index": 221, - "account": 1, - "index": 4, - "address": "tb1qslf059lsyurz6k0kgvjj9rw8pr75f0ts2a66a3" - }, - { - "id": "12ebf312956be518826b9989b6925e41c1e86b54a1a655726aee9a73326b8450", - "received_at": "2024-04-30T16:23:21Z", - "fees": "2651", - "inputs": [ - { - "output_hash": "fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6", - "output_index": 1, - "value": "14819", - "address": "tb1qr4ckf85dgctzmaca7zg9z2xj5q5qx75x0uvpz0", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "12ebf312956be518826b9989b6925e41c1e86b54a1a655726aee9a73326b8450", - "block_height": 2808871, - "rbf": true - }, - { - "output_index": 1, - "value": "11168", - "address": "tb1q3hmw2894p6fhencz0syk9v6kyh4heyffm4hz4f", - "spent_at_height": null, - "output_hash": "12ebf312956be518826b9989b6925e41c1e86b54a1a655726aee9a73326b8450", - "block_height": 2808871, - "rbf": true - } - ], - "block": { - "hash": "000000000000029c1d61c5accc2cf0bb4122b5adffa2016a6e7c315eea9a5ba5", - "height": 2808871, - "time": "2024-04-30T16:23:21Z" - }, - "tx_index": 196, - "account": 1, - "index": 1, - "address": "tb1qr4ckf85dgctzmaca7zg9z2xj5q5qx75x0uvpz0" - }, - { - "id": "12ebf312956be518826b9989b6925e41c1e86b54a1a655726aee9a73326b8450", - "received_at": "2024-04-30T16:23:21Z", - "fees": "2651", - "inputs": [ - { - "output_hash": "fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6", - "output_index": 1, - "value": "14819", - "address": "tb1qr4ckf85dgctzmaca7zg9z2xj5q5qx75x0uvpz0", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "12ebf312956be518826b9989b6925e41c1e86b54a1a655726aee9a73326b8450", - "block_height": 2808871, - "rbf": true - }, - { - "output_index": 1, - "value": "11168", - "address": "tb1q3hmw2894p6fhencz0syk9v6kyh4heyffm4hz4f", - "spent_at_height": null, - "output_hash": "12ebf312956be518826b9989b6925e41c1e86b54a1a655726aee9a73326b8450", - "block_height": 2808871, - "rbf": true - } - ], - "block": { - "hash": "000000000000029c1d61c5accc2cf0bb4122b5adffa2016a6e7c315eea9a5ba5", - "height": 2808871, - "time": "2024-04-30T16:23:21Z" - }, - "tx_index": 196, - "account": 1, - "index": 5, - "address": "tb1q3hmw2894p6fhencz0syk9v6kyh4heyffm4hz4f" - }, - { - "id": "9dbd0423ef356dda8ab6a7d44d8bdce6f4cf9e7a8852b23214a4f356919103f7", - "received_at": "2024-05-02T07:53:19Z", - "fees": "6975", - "inputs": [ - { - "output_hash": "ea0071ab676dc35448c7ba6b275aad69dfa98e0346f846dd529d7322c88aabf8", - "output_index": 1, - "value": "996349", - "address": "tb1qqrx4qnvvrltfqkjz2rya0xxx7fhjgv55fmpgmy", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "9dbd0423ef356dda8ab6a7d44d8bdce6f4cf9e7a8852b23214a4f356919103f7", - "block_height": 2810662, - "rbf": true - }, - { - "output_index": 1, - "value": "988374", - "address": "tb1qnf94s85m3qqfu2pgda2pdz5f6xfjxg6p4z9qkh", - "spent_at_height": null, - "output_hash": "9dbd0423ef356dda8ab6a7d44d8bdce6f4cf9e7a8852b23214a4f356919103f7", - "block_height": 2810662, - "rbf": true - } - ], - "block": { - "hash": "00000000000000df392c19e655e3cb90065767f8cb52a60b087e8bef4a3d2fd4", - "height": 2810662, - "time": "2024-05-02T07:53:19Z" - }, - "tx_index": 611, - "account": 1, - "index": 2, - "address": "tb1qqrx4qnvvrltfqkjz2rya0xxx7fhjgv55fmpgmy" - }, - { - "id": "5351b3a1d1c2f832ab5236a6bb472c19c0554dcfe82067408ae9ff02abae53bd", - "received_at": "2024-04-30T14:49:05Z", - "fees": "2651", - "inputs": [ - { - "output_hash": "dcb3b6a870d0a1b87b7dd05201b2fa16ae6965c08f46eae024dc8300c4e6e44e", - "output_index": 0, - "value": "14764", - "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "5351b3a1d1c2f832ab5236a6bb472c19c0554dcfe82067408ae9ff02abae53bd", - "block_height": 2808748, - "rbf": true - }, - { - "output_index": 1, - "value": "11113", - "address": "tb1q5q9ted8tnvj36x6ndl82p7wze4zhs6gxrt8rdu", - "spent_at_height": null, - "output_hash": "5351b3a1d1c2f832ab5236a6bb472c19c0554dcfe82067408ae9ff02abae53bd", - "block_height": 2808748, - "rbf": true - } - ], - "block": { - "hash": "0000000000000338630f87263192a22fed26a325824009fc04bc306d4c00e6c3", - "height": 2808748, - "time": "2024-04-30T14:49:05Z" - }, - "tx_index": 238, - "account": 1, - "index": 3, - "address": "tb1q5q9ted8tnvj36x6ndl82p7wze4zhs6gxrt8rdu" - }, - { - "id": "b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c", - "received_at": "2024-05-06T14:25:31Z", - "fees": "6975", - "inputs": [ - { - "output_hash": "5351b3a1d1c2f832ab5236a6bb472c19c0554dcfe82067408ae9ff02abae53bd", - "output_index": 1, - "value": "11113", - "address": "tb1q5q9ted8tnvj36x6ndl82p7wze4zhs6gxrt8rdu", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c", - "block_height": 2812060, - "rbf": true - }, - { - "output_index": 1, - "value": "3138", - "address": "tb1qlfnf6f09wc5ukp346ty7w462rcf3t7n4utvy40", - "spent_at_height": null, - "output_hash": "b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c", - "block_height": 2812060, - "rbf": true - } - ], - "block": { - "hash": "000000000000008e9b0cd4eb69f924afa9112a12ed35f4c5d3a862757099ff7a", - "height": 2812060, - "time": "2024-05-06T14:25:31Z" - }, - "tx_index": 246, - "account": 1, - "index": 3, - "address": "tb1q5q9ted8tnvj36x6ndl82p7wze4zhs6gxrt8rdu" - }, - { - "id": "0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f", - "received_at": "2024-05-06T16:50:47Z", - "fees": "12137", - "inputs": [ - { - "output_hash": "fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a", - "output_index": 1, - "value": "482053", - "address": "tb1qslf059lsyurz6k0kgvjj9rw8pr75f0ts2a66a3", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f", - "block_height": 2812143, - "rbf": true - }, - { - "output_index": 1, - "value": "468916", - "address": "tb1qhvearg8afglty8rsmfta8j06el0qetxcyu2jun", - "spent_at_height": null, - "output_hash": "0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f", - "block_height": 2812143, - "rbf": true - } - ], - "block": { - "hash": "00000000000000f1ab393053a5b2e3e948458b40ec204de53b869478845f3565", - "height": 2812143, - "time": "2024-05-06T16:50:47Z" - }, - "tx_index": 3, - "account": 1, - "index": 4, - "address": "tb1qslf059lsyurz6k0kgvjj9rw8pr75f0ts2a66a3" - }, - { - "id": "8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075", - "received_at": "2024-05-13T13:19:27Z", - "fees": "6417", - "inputs": [ - { - "output_hash": "12ebf312956be518826b9989b6925e41c1e86b54a1a655726aee9a73326b8450", - "output_index": 1, - "value": "11168", - "address": "tb1q3hmw2894p6fhencz0syk9v6kyh4heyffm4hz4f", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075", - "block_height": 2815108, - "rbf": true - }, - { - "output_index": 1, - "value": "3751", - "address": "tb1qs2ex5k9z7t96fgkp4l5c2cs4lfdf64unymwe79", - "spent_at_height": null, - "output_hash": "8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075", - "block_height": 2815108, - "rbf": true - } - ], - "block": { - "hash": "0000000000000007f533a45f5f92a4d1ca52850333132a79dac787109f2445db", - "height": 2815108, - "time": "2024-05-13T13:19:27Z" - }, - "tx_index": 242, - "account": 1, - "index": 5, - "address": "tb1q3hmw2894p6fhencz0syk9v6kyh4heyffm4hz4f" - }, - { - "id": "9dbd0423ef356dda8ab6a7d44d8bdce6f4cf9e7a8852b23214a4f356919103f7", - "received_at": "2024-05-02T07:53:19Z", - "fees": "6975", - "inputs": [ - { - "output_hash": "ea0071ab676dc35448c7ba6b275aad69dfa98e0346f846dd529d7322c88aabf8", - "output_index": 1, - "value": "996349", - "address": "tb1qqrx4qnvvrltfqkjz2rya0xxx7fhjgv55fmpgmy", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "9dbd0423ef356dda8ab6a7d44d8bdce6f4cf9e7a8852b23214a4f356919103f7", - "block_height": 2810662, - "rbf": true - }, - { - "output_index": 1, - "value": "988374", - "address": "tb1qnf94s85m3qqfu2pgda2pdz5f6xfjxg6p4z9qkh", - "spent_at_height": null, - "output_hash": "9dbd0423ef356dda8ab6a7d44d8bdce6f4cf9e7a8852b23214a4f356919103f7", - "block_height": 2810662, - "rbf": true - } - ], - "block": { - "hash": "00000000000000df392c19e655e3cb90065767f8cb52a60b087e8bef4a3d2fd4", - "height": 2810662, - "time": "2024-05-02T07:53:19Z" - }, - "tx_index": 611, - "account": 1, - "index": 6, - "address": "tb1qnf94s85m3qqfu2pgda2pdz5f6xfjxg6p4z9qkh" - }, - { - "id": "b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c", - "received_at": "2024-05-06T14:25:31Z", - "fees": "6975", - "inputs": [ - { - "output_hash": "5351b3a1d1c2f832ab5236a6bb472c19c0554dcfe82067408ae9ff02abae53bd", - "output_index": 1, - "value": "11113", - "address": "tb1q5q9ted8tnvj36x6ndl82p7wze4zhs6gxrt8rdu", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c", - "block_height": 2812060, - "rbf": true - }, - { - "output_index": 1, - "value": "3138", - "address": "tb1qlfnf6f09wc5ukp346ty7w462rcf3t7n4utvy40", - "spent_at_height": null, - "output_hash": "b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c", - "block_height": 2812060, - "rbf": true - } - ], - "block": { - "hash": "000000000000008e9b0cd4eb69f924afa9112a12ed35f4c5d3a862757099ff7a", - "height": 2812060, - "time": "2024-05-06T14:25:31Z" - }, - "tx_index": 246, - "account": 1, - "index": 7, - "address": "tb1qlfnf6f09wc5ukp346ty7w462rcf3t7n4utvy40" - }, - { - "id": "0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f", - "received_at": "2024-05-06T16:50:47Z", - "fees": "12137", - "inputs": [ - { - "output_hash": "fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a", - "output_index": 1, - "value": "482053", - "address": "tb1qslf059lsyurz6k0kgvjj9rw8pr75f0ts2a66a3", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f", - "block_height": 2812143, - "rbf": true - }, - { - "output_index": 1, - "value": "468916", - "address": "tb1qhvearg8afglty8rsmfta8j06el0qetxcyu2jun", - "spent_at_height": null, - "output_hash": "0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f", - "block_height": 2812143, - "rbf": true - } - ], - "block": { - "hash": "00000000000000f1ab393053a5b2e3e948458b40ec204de53b869478845f3565", - "height": 2812143, - "time": "2024-05-06T16:50:47Z" - }, - "tx_index": 3, - "account": 1, - "index": 8, - "address": "tb1qhvearg8afglty8rsmfta8j06el0qetxcyu2jun" - }, - { - "id": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", - "received_at": "2024-05-15T08:11:02Z", - "fees": "101016", - "inputs": [ - { - "output_hash": "b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c", - "output_index": 1, - "value": "3138", - "address": "tb1qlfnf6f09wc5ukp346ty7w462rcf3t7n4utvy40", - "sequence": 0 - }, - { - "output_hash": "db6b8183e8c8bed2551de17045e30600b8552496fe9a3db869abfe5be432f955", - "output_index": 0, - "value": "4900", - "address": "tb1qjnl3f0lahssa62qvn6vm2fruejfc6e9x2r8c5z", - "sequence": 0 - }, - { - "output_hash": "0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f", - "output_index": 1, - "value": "468916", - "address": "tb1qhvearg8afglty8rsmfta8j06el0qetxcyu2jun", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", - "block_height": 2815444, - "rbf": true - }, - { - "output_index": 1, - "value": "374938", - "address": "tb1qta50jk5cs3cece26p26tepqenjs96zk9y02mdm", - "spent_at_height": null, - "output_hash": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", - "block_height": 2815444, - "rbf": true - } - ], - "block": { - "hash": "000000000000000d27a09b060bc13bbdde3cedd1a9aeee148c80d70d95ca82fd", - "height": 2815444, - "time": "2024-05-15T08:11:02Z" - }, - "tx_index": 14, - "account": 1, - "index": 8, - "address": "tb1qhvearg8afglty8rsmfta8j06el0qetxcyu2jun" - }, - { - "id": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", - "received_at": "2024-05-15T08:11:02Z", - "fees": "101016", - "inputs": [ - { - "output_hash": "b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c", - "output_index": 1, - "value": "3138", - "address": "tb1qlfnf6f09wc5ukp346ty7w462rcf3t7n4utvy40", - "sequence": 0 - }, - { - "output_hash": "db6b8183e8c8bed2551de17045e30600b8552496fe9a3db869abfe5be432f955", - "output_index": 0, - "value": "4900", - "address": "tb1qjnl3f0lahssa62qvn6vm2fruejfc6e9x2r8c5z", - "sequence": 0 - }, - { - "output_hash": "0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f", - "output_index": 1, - "value": "468916", - "address": "tb1qhvearg8afglty8rsmfta8j06el0qetxcyu2jun", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", - "block_height": 2815444, - "rbf": true - }, - { - "output_index": 1, - "value": "374938", - "address": "tb1qta50jk5cs3cece26p26tepqenjs96zk9y02mdm", - "spent_at_height": null, - "output_hash": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", - "block_height": 2815444, - "rbf": true - } - ], - "block": { - "hash": "000000000000000d27a09b060bc13bbdde3cedd1a9aeee148c80d70d95ca82fd", - "height": 2815444, - "time": "2024-05-15T08:11:02Z" - }, - "tx_index": 14, - "account": 1, - "index": 7, - "address": "tb1qlfnf6f09wc5ukp346ty7w462rcf3t7n4utvy40" - }, - { - "id": "762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea", - "received_at": "2024-05-15T08:11:02Z", - "fees": "51336", - "inputs": [ - { - "output_hash": "9dbd0423ef356dda8ab6a7d44d8bdce6f4cf9e7a8852b23214a4f356919103f7", - "output_index": 1, - "value": "988374", - "address": "tb1qnf94s85m3qqfu2pgda2pdz5f6xfjxg6p4z9qkh", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea", - "block_height": 2815444, - "rbf": true - }, - { - "output_index": 1, - "value": "936038", - "address": "tb1qmk6cuwhq9r3jjckq56ctv896fn2erg7fpnm0xz", - "spent_at_height": null, - "output_hash": "762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea", - "block_height": 2815444, - "rbf": true - } - ], - "block": { - "hash": "000000000000000d27a09b060bc13bbdde3cedd1a9aeee148c80d70d95ca82fd", - "height": 2815444, - "time": "2024-05-15T08:11:02Z" - }, - "tx_index": 15, - "account": 1, - "index": 6, - "address": "tb1qnf94s85m3qqfu2pgda2pdz5f6xfjxg6p4z9qkh" - }, - { - "id": "8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075", - "received_at": "2024-05-13T13:19:27Z", - "fees": "6417", - "inputs": [ - { - "output_hash": "12ebf312956be518826b9989b6925e41c1e86b54a1a655726aee9a73326b8450", - "output_index": 1, - "value": "11168", - "address": "tb1q3hmw2894p6fhencz0syk9v6kyh4heyffm4hz4f", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075", - "block_height": 2815108, - "rbf": true - }, - { - "output_index": 1, - "value": "3751", - "address": "tb1qs2ex5k9z7t96fgkp4l5c2cs4lfdf64unymwe79", - "spent_at_height": null, - "output_hash": "8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075", - "block_height": 2815108, - "rbf": true - } - ], - "block": { - "hash": "0000000000000007f533a45f5f92a4d1ca52850333132a79dac787109f2445db", - "height": 2815108, - "time": "2024-05-13T13:19:27Z" - }, - "tx_index": 242, - "account": 1, - "index": 9, - "address": "tb1qs2ex5k9z7t96fgkp4l5c2cs4lfdf64unymwe79" - }, - { - "id": "762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea", - "received_at": "2024-05-15T08:11:02Z", - "fees": "51336", - "inputs": [ - { - "output_hash": "9dbd0423ef356dda8ab6a7d44d8bdce6f4cf9e7a8852b23214a4f356919103f7", - "output_index": 1, - "value": "988374", - "address": "tb1qnf94s85m3qqfu2pgda2pdz5f6xfjxg6p4z9qkh", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea", - "block_height": 2815444, - "rbf": true - }, - { - "output_index": 1, - "value": "936038", - "address": "tb1qmk6cuwhq9r3jjckq56ctv896fn2erg7fpnm0xz", - "spent_at_height": null, - "output_hash": "762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea", - "block_height": 2815444, - "rbf": true - } - ], - "block": { - "hash": "000000000000000d27a09b060bc13bbdde3cedd1a9aeee148c80d70d95ca82fd", - "height": 2815444, - "time": "2024-05-15T08:11:02Z" - }, - "tx_index": 15, - "account": 1, - "index": 10, - "address": "tb1qmk6cuwhq9r3jjckq56ctv896fn2erg7fpnm0xz" - }, - { - "id": "1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f", - "received_at": "2024-05-15T10:12:36Z", - "fees": "133308", - "inputs": [ - { - "output_hash": "8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075", - "output_index": 1, - "value": "3751", - "address": "tb1qs2ex5k9z7t96fgkp4l5c2cs4lfdf64unymwe79", - "sequence": 0 - }, - { - "output_hash": "762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea", - "output_index": 1, - "value": "936038", - "address": "tb1qmk6cuwhq9r3jjckq56ctv896fn2erg7fpnm0xz", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f", - "block_height": 2815454, - "rbf": true - }, - { - "output_index": 1, - "value": "805481", - "address": "tb1qgjuuqs4pkaukww7dgdukm84cg8n4h9dv0t0j8y", - "spent_at_height": null, - "output_hash": "1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f", - "block_height": 2815454, - "rbf": true - } - ], - "block": { - "hash": "00000000000000176ff48d54445b1ef7e934f1ef13f03c6144a963e789982542", - "height": 2815454, - "time": "2024-05-15T10:12:36Z" - }, - "tx_index": 12, - "account": 1, - "index": 9, - "address": "tb1qs2ex5k9z7t96fgkp4l5c2cs4lfdf64unymwe79" - }, - { - "id": "1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f", - "received_at": "2024-05-15T10:12:36Z", - "fees": "133308", - "inputs": [ - { - "output_hash": "8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075", - "output_index": 1, - "value": "3751", - "address": "tb1qs2ex5k9z7t96fgkp4l5c2cs4lfdf64unymwe79", - "sequence": 0 - }, - { - "output_hash": "762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea", - "output_index": 1, - "value": "936038", - "address": "tb1qmk6cuwhq9r3jjckq56ctv896fn2erg7fpnm0xz", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f", - "block_height": 2815454, - "rbf": true - }, - { - "output_index": 1, - "value": "805481", - "address": "tb1qgjuuqs4pkaukww7dgdukm84cg8n4h9dv0t0j8y", - "spent_at_height": null, - "output_hash": "1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f", - "block_height": 2815454, - "rbf": true - } - ], - "block": { - "hash": "00000000000000176ff48d54445b1ef7e934f1ef13f03c6144a963e789982542", - "height": 2815454, - "time": "2024-05-15T10:12:36Z" - }, - "tx_index": 12, - "account": 1, - "index": 10, - "address": "tb1qmk6cuwhq9r3jjckq56ctv896fn2erg7fpnm0xz" - }, - { - "id": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", - "received_at": "2024-05-15T08:11:02Z", - "fees": "101016", - "inputs": [ - { - "output_hash": "b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c", - "output_index": 1, - "value": "3138", - "address": "tb1qlfnf6f09wc5ukp346ty7w462rcf3t7n4utvy40", - "sequence": 0 - }, - { - "output_hash": "db6b8183e8c8bed2551de17045e30600b8552496fe9a3db869abfe5be432f955", - "output_index": 0, - "value": "4900", - "address": "tb1qjnl3f0lahssa62qvn6vm2fruejfc6e9x2r8c5z", - "sequence": 0 - }, - { - "output_hash": "0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f", - "output_index": 1, - "value": "468916", - "address": "tb1qhvearg8afglty8rsmfta8j06el0qetxcyu2jun", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", - "block_height": 2815444, - "rbf": true - }, - { - "output_index": 1, - "value": "374938", - "address": "tb1qta50jk5cs3cece26p26tepqenjs96zk9y02mdm", - "spent_at_height": null, - "output_hash": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", - "block_height": 2815444, - "rbf": true - } - ], - "block": { - "hash": "000000000000000d27a09b060bc13bbdde3cedd1a9aeee148c80d70d95ca82fd", - "height": 2815444, - "time": "2024-05-15T08:11:02Z" - }, - "tx_index": 14, - "account": 1, - "index": 11, - "address": "tb1qta50jk5cs3cece26p26tepqenjs96zk9y02mdm" - }, - { - "id": "1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f", - "received_at": "2024-05-15T10:12:36Z", - "fees": "133308", - "inputs": [ - { - "output_hash": "8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075", - "output_index": 1, - "value": "3751", - "address": "tb1qs2ex5k9z7t96fgkp4l5c2cs4lfdf64unymwe79", - "sequence": 0 - }, - { - "output_hash": "762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea", - "output_index": 1, - "value": "936038", - "address": "tb1qmk6cuwhq9r3jjckq56ctv896fn2erg7fpnm0xz", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f", - "block_height": 2815454, - "rbf": true - }, - { - "output_index": 1, - "value": "805481", - "address": "tb1qgjuuqs4pkaukww7dgdukm84cg8n4h9dv0t0j8y", - "spent_at_height": null, - "output_hash": "1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f", - "block_height": 2815454, - "rbf": true - } - ], - "block": { - "hash": "00000000000000176ff48d54445b1ef7e934f1ef13f03c6144a963e789982542", - "height": 2815454, - "time": "2024-05-15T10:12:36Z" - }, - "tx_index": 12, - "account": 1, - "index": 12, - "address": "tb1qgjuuqs4pkaukww7dgdukm84cg8n4h9dv0t0j8y" - }, - { - "id": "58d21eece42b687fb811cf5fffae58f31454f5339b22a93f3407405c997b48fd", - "received_at": "2024-05-15T10:51:05Z", - "fees": "14090", - "inputs": [ - { - "output_hash": "1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f", - "output_index": 1, - "value": "805481", - "address": "tb1qgjuuqs4pkaukww7dgdukm84cg8n4h9dv0t0j8y", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "58d21eece42b687fb811cf5fffae58f31454f5339b22a93f3407405c997b48fd", - "block_height": 2815460, - "rbf": true - }, - { - "output_index": 1, - "value": "790391", - "address": "tb1qarvwul33lpgqagp8pkr7qxuu7yvm3mwpxe8e0z", - "spent_at_height": 2815460, - "output_hash": "58d21eece42b687fb811cf5fffae58f31454f5339b22a93f3407405c997b48fd", - "block_height": 2815460, - "rbf": true - } - ], - "block": { - "hash": "00000000000000164ad9408b1ed139e3a7fba0540348f081f8c392e767fbd7ab", - "height": 2815460, - "time": "2024-05-15T10:51:05Z" - }, - "tx_index": 441, - "account": 1, - "index": 14, - "address": "tb1qarvwul33lpgqagp8pkr7qxuu7yvm3mwpxe8e0z" - }, - { - "id": "2ae182dc9906bafa7404e51be13b8bdfd3b2a408ae0efade21fa74ed234a4601", - "received_at": "2024-05-15T10:51:05Z", - "fees": "14090", - "inputs": [ - { - "output_hash": "58d21eece42b687fb811cf5fffae58f31454f5339b22a93f3407405c997b48fd", - "output_index": 1, - "value": "790391", - "address": "tb1qarvwul33lpgqagp8pkr7qxuu7yvm3mwpxe8e0z", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "2ae182dc9906bafa7404e51be13b8bdfd3b2a408ae0efade21fa74ed234a4601", - "block_height": 2815460, - "rbf": true - }, - { - "output_index": 1, - "value": "775301", - "address": "tb1qdy7rh3f3d4v08sx50zwwuv29m206qnu3nehj7j", - "spent_at_height": null, - "output_hash": "2ae182dc9906bafa7404e51be13b8bdfd3b2a408ae0efade21fa74ed234a4601", - "block_height": 2815460, - "rbf": true - } - ], - "block": { - "hash": "00000000000000164ad9408b1ed139e3a7fba0540348f081f8c392e767fbd7ab", - "height": 2815460, - "time": "2024-05-15T10:51:05Z" - }, - "tx_index": 442, - "account": 1, - "index": 14, - "address": "tb1qarvwul33lpgqagp8pkr7qxuu7yvm3mwpxe8e0z" - }, - { - "id": "58d21eece42b687fb811cf5fffae58f31454f5339b22a93f3407405c997b48fd", - "received_at": "2024-05-15T10:51:05Z", - "fees": "14090", - "inputs": [ - { - "output_hash": "1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f", - "output_index": 1, - "value": "805481", - "address": "tb1qgjuuqs4pkaukww7dgdukm84cg8n4h9dv0t0j8y", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "58d21eece42b687fb811cf5fffae58f31454f5339b22a93f3407405c997b48fd", - "block_height": 2815460, - "rbf": true - }, - { - "output_index": 1, - "value": "790391", - "address": "tb1qarvwul33lpgqagp8pkr7qxuu7yvm3mwpxe8e0z", - "spent_at_height": 2815460, - "output_hash": "58d21eece42b687fb811cf5fffae58f31454f5339b22a93f3407405c997b48fd", - "block_height": 2815460, - "rbf": true - } - ], - "block": { - "hash": "00000000000000164ad9408b1ed139e3a7fba0540348f081f8c392e767fbd7ab", - "height": 2815460, - "time": "2024-05-15T10:51:05Z" - }, - "tx_index": 441, - "account": 1, - "index": 12, - "address": "tb1qgjuuqs4pkaukww7dgdukm84cg8n4h9dv0t0j8y" - }, - { - "id": "e1f91c616f34b1048e635fbe10b1d715e953ad982c73f8f252a3d59d6caa985e", - "received_at": "2024-05-15T10:51:05Z", - "fees": "14090", - "inputs": [ - { - "output_hash": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", - "output_index": 1, - "value": "374938", - "address": "tb1qta50jk5cs3cece26p26tepqenjs96zk9y02mdm", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "e1f91c616f34b1048e635fbe10b1d715e953ad982c73f8f252a3d59d6caa985e", - "block_height": 2815460, - "rbf": true - }, - { - "output_index": 1, - "value": "359848", - "address": "tb1qfljcl04fyxq3zm8x7gkduca43gjxn65uky07t5", - "spent_at_height": null, - "output_hash": "e1f91c616f34b1048e635fbe10b1d715e953ad982c73f8f252a3d59d6caa985e", - "block_height": 2815460, - "rbf": true - } - ], - "block": { - "hash": "00000000000000164ad9408b1ed139e3a7fba0540348f081f8c392e767fbd7ab", - "height": 2815460, - "time": "2024-05-15T10:51:05Z" - }, - "tx_index": 443, - "account": 1, - "index": 11, - "address": "tb1qta50jk5cs3cece26p26tepqenjs96zk9y02mdm" - }, - { - "id": "e1f91c616f34b1048e635fbe10b1d715e953ad982c73f8f252a3d59d6caa985e", - "received_at": "2024-05-15T10:51:05Z", - "fees": "14090", - "inputs": [ - { - "output_hash": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", - "output_index": 1, - "value": "374938", - "address": "tb1qta50jk5cs3cece26p26tepqenjs96zk9y02mdm", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "e1f91c616f34b1048e635fbe10b1d715e953ad982c73f8f252a3d59d6caa985e", - "block_height": 2815460, - "rbf": true - }, - { - "output_index": 1, - "value": "359848", - "address": "tb1qfljcl04fyxq3zm8x7gkduca43gjxn65uky07t5", - "spent_at_height": null, - "output_hash": "e1f91c616f34b1048e635fbe10b1d715e953ad982c73f8f252a3d59d6caa985e", - "block_height": 2815460, - "rbf": true - } - ], - "block": { - "hash": "00000000000000164ad9408b1ed139e3a7fba0540348f081f8c392e767fbd7ab", - "height": 2815460, - "time": "2024-05-15T10:51:05Z" - }, - "tx_index": 443, - "account": 1, - "index": 13, - "address": "tb1qfljcl04fyxq3zm8x7gkduca43gjxn65uky07t5" - }, - { - "id": "2ae182dc9906bafa7404e51be13b8bdfd3b2a408ae0efade21fa74ed234a4601", - "received_at": "2024-05-15T10:51:05Z", - "fees": "14090", - "inputs": [ - { - "output_hash": "58d21eece42b687fb811cf5fffae58f31454f5339b22a93f3407405c997b48fd", - "output_index": 1, - "value": "790391", - "address": "tb1qarvwul33lpgqagp8pkr7qxuu7yvm3mwpxe8e0z", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "2ae182dc9906bafa7404e51be13b8bdfd3b2a408ae0efade21fa74ed234a4601", - "block_height": 2815460, - "rbf": true - }, - { - "output_index": 1, - "value": "775301", - "address": "tb1qdy7rh3f3d4v08sx50zwwuv29m206qnu3nehj7j", - "spent_at_height": null, - "output_hash": "2ae182dc9906bafa7404e51be13b8bdfd3b2a408ae0efade21fa74ed234a4601", - "block_height": 2815460, - "rbf": true - } - ], - "block": { - "hash": "00000000000000164ad9408b1ed139e3a7fba0540348f081f8c392e767fbd7ab", - "height": 2815460, - "time": "2024-05-15T10:51:05Z" - }, - "tx_index": 442, - "account": 1, - "index": 15, - "address": "tb1qdy7rh3f3d4v08sx50zwwuv29m206qnu3nehj7j" - }, - { - "id": "f6ee9f6eb35fc2abb14ef246ee6faa3105f3af657cb447761df79743553605c0", - "received_at": "2024-05-15T12:55:09Z", - "fees": "14090", - "inputs": [ - { - "output_hash": "2ae182dc9906bafa7404e51be13b8bdfd3b2a408ae0efade21fa74ed234a4601", - "output_index": 1, - "value": "775301", - "address": "tb1qdy7rh3f3d4v08sx50zwwuv29m206qnu3nehj7j", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "f6ee9f6eb35fc2abb14ef246ee6faa3105f3af657cb447761df79743553605c0", - "block_height": 2815479, - "rbf": true - }, - { - "output_index": 1, - "value": "760211", - "address": "tb1qn9mfj32wvxem4m9dujgqsqwp9arp8zp3c7e2ke", - "spent_at_height": null, - "output_hash": "f6ee9f6eb35fc2abb14ef246ee6faa3105f3af657cb447761df79743553605c0", - "block_height": 2815479, - "rbf": true - } - ], - "block": { - "hash": "000000000000000d6cd593acf0cc74f17f3a51a620e5531e8d313fc82c4cdf63", - "height": 2815479, - "time": "2024-05-15T12:55:09Z" - }, - "tx_index": 1044, - "account": 1, - "index": 15, - "address": "tb1qdy7rh3f3d4v08sx50zwwuv29m206qnu3nehj7j" - }, - { - "id": "f6ee9f6eb35fc2abb14ef246ee6faa3105f3af657cb447761df79743553605c0", - "received_at": "2024-05-15T12:55:09Z", - "fees": "14090", - "inputs": [ - { - "output_hash": "2ae182dc9906bafa7404e51be13b8bdfd3b2a408ae0efade21fa74ed234a4601", - "output_index": 1, - "value": "775301", - "address": "tb1qdy7rh3f3d4v08sx50zwwuv29m206qnu3nehj7j", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "f6ee9f6eb35fc2abb14ef246ee6faa3105f3af657cb447761df79743553605c0", - "block_height": 2815479, - "rbf": true - }, - { - "output_index": 1, - "value": "760211", - "address": "tb1qn9mfj32wvxem4m9dujgqsqwp9arp8zp3c7e2ke", - "spent_at_height": null, - "output_hash": "f6ee9f6eb35fc2abb14ef246ee6faa3105f3af657cb447761df79743553605c0", - "block_height": 2815479, - "rbf": true - } - ], - "block": { - "hash": "000000000000000d6cd593acf0cc74f17f3a51a620e5531e8d313fc82c4cdf63", - "height": 2815479, - "time": "2024-05-15T12:55:09Z" - }, - "tx_index": 1044, - "account": 1, - "index": 16, - "address": "tb1qn9mfj32wvxem4m9dujgqsqwp9arp8zp3c7e2ke" - }, - { - "id": "507107ff04a3185909cc891cddf906d98c8a4695bd53f38e7c62008ff54788e4", - "received_at": "2024-05-15T12:55:09Z", - "fees": "14090", - "inputs": [ - { - "output_hash": "e1f91c616f34b1048e635fbe10b1d715e953ad982c73f8f252a3d59d6caa985e", - "output_index": 1, - "value": "359848", - "address": "tb1qfljcl04fyxq3zm8x7gkduca43gjxn65uky07t5", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "507107ff04a3185909cc891cddf906d98c8a4695bd53f38e7c62008ff54788e4", - "block_height": 2815479, - "rbf": true - }, - { - "output_index": 1, - "value": "344758", - "address": "tb1q8t2nc9phmeu39sewkqnca84kh2ffnrkyhww9j0", - "spent_at_height": null, - "output_hash": "507107ff04a3185909cc891cddf906d98c8a4695bd53f38e7c62008ff54788e4", - "block_height": 2815479, - "rbf": true - } - ], - "block": { - "hash": "000000000000000d6cd593acf0cc74f17f3a51a620e5531e8d313fc82c4cdf63", - "height": 2815479, - "time": "2024-05-15T12:55:09Z" - }, - "tx_index": 1045, - "account": 1, - "index": 17, - "address": "tb1q8t2nc9phmeu39sewkqnca84kh2ffnrkyhww9j0" - }, - { - "id": "507107ff04a3185909cc891cddf906d98c8a4695bd53f38e7c62008ff54788e4", - "received_at": "2024-05-15T12:55:09Z", - "fees": "14090", - "inputs": [ - { - "output_hash": "e1f91c616f34b1048e635fbe10b1d715e953ad982c73f8f252a3d59d6caa985e", - "output_index": 1, - "value": "359848", - "address": "tb1qfljcl04fyxq3zm8x7gkduca43gjxn65uky07t5", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "507107ff04a3185909cc891cddf906d98c8a4695bd53f38e7c62008ff54788e4", - "block_height": 2815479, - "rbf": true - }, - { - "output_index": 1, - "value": "344758", - "address": "tb1q8t2nc9phmeu39sewkqnca84kh2ffnrkyhww9j0", - "spent_at_height": null, - "output_hash": "507107ff04a3185909cc891cddf906d98c8a4695bd53f38e7c62008ff54788e4", - "block_height": 2815479, - "rbf": true - } - ], - "block": { - "hash": "000000000000000d6cd593acf0cc74f17f3a51a620e5531e8d313fc82c4cdf63", - "height": 2815479, - "time": "2024-05-15T12:55:09Z" - }, - "tx_index": 1045, - "account": 1, - "index": 13, - "address": "tb1qfljcl04fyxq3zm8x7gkduca43gjxn65uky07t5" - }, - { - "id": "db6b8183e8c8bed2551de17045e30600b8552496fe9a3db869abfe5be432f955", - "received_at": "2024-05-06T14:25:34Z", - "fees": "17241", - "inputs": [ - { - "output_hash": "f121e02ba088ca19bd2dbd832902d2617cf11fc7a5ed1168f927ed1e708e11a7", - "output_index": 1, - "value": "44153925", - "address": "tb1pxvwvelj9p6ug7vxxqvdq8r8hd7vlgp0w45ety53a5juzt9cffl6q2haz3p", - "sequence": 4294967293 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "4900", - "address": "tb1qjnl3f0lahssa62qvn6vm2fruejfc6e9x2r8c5z", - "spent_at_height": null, - "output_hash": "db6b8183e8c8bed2551de17045e30600b8552496fe9a3db869abfe5be432f955", - "block_height": 2812062, - "rbf": true - }, - { - "output_index": 1, - "value": "1000", - "address": "tb1pcyuraxw8vrrpwqzchw8jrrgrsf68xmfq3x78ux7xf2nlttng0esqj3sr48", - "spent_at_height": null, - "output_hash": "db6b8183e8c8bed2551de17045e30600b8552496fe9a3db869abfe5be432f955", - "block_height": 2812062, - "rbf": true - }, - { - "output_index": 2, - "value": "3990", - "address": "tb1qud28dkclhmeylmx3mgr8mvcvrxy5z2vp97rpz2", - "spent_at_height": null, - "output_hash": "db6b8183e8c8bed2551de17045e30600b8552496fe9a3db869abfe5be432f955", - "block_height": 2812062, - "rbf": true - }, - { - "output_index": 3, - "value": "44126794", - "address": "tb1pgcpu7y3ula4axhgzwmhs5je9xfqxw39v56d2yqy4qsdznu3l7w7sxp6kja", - "spent_at_height": 2812065, - "output_hash": "db6b8183e8c8bed2551de17045e30600b8552496fe9a3db869abfe5be432f955", - "block_height": 2812062, - "rbf": true - } - ], - "block": { - "hash": "000000000000009bb4143dffff985f5750400d6b5b691e982daec9efab2b78da", - "height": 2812062, - "time": "2024-05-06T14:25:34Z" - }, - "tx_index": 13, - "account": 0, - "index": 3, - "address": "tb1qjnl3f0lahssa62qvn6vm2fruejfc6e9x2r8c5z" - }, - { - "id": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", - "received_at": "2024-05-15T08:11:02Z", - "fees": "101016", - "inputs": [ - { - "output_hash": "b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c", - "output_index": 1, - "value": "3138", - "address": "tb1qlfnf6f09wc5ukp346ty7w462rcf3t7n4utvy40", - "sequence": 0 - }, - { - "output_hash": "db6b8183e8c8bed2551de17045e30600b8552496fe9a3db869abfe5be432f955", - "output_index": 0, - "value": "4900", - "address": "tb1qjnl3f0lahssa62qvn6vm2fruejfc6e9x2r8c5z", - "sequence": 0 - }, - { - "output_hash": "0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f", - "output_index": 1, - "value": "468916", - "address": "tb1qhvearg8afglty8rsmfta8j06el0qetxcyu2jun", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", - "block_height": 2815444, - "rbf": true - }, - { - "output_index": 1, - "value": "374938", - "address": "tb1qta50jk5cs3cece26p26tepqenjs96zk9y02mdm", - "spent_at_height": null, - "output_hash": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", - "block_height": 2815444, - "rbf": true - } - ], - "block": { - "hash": "000000000000000d27a09b060bc13bbdde3cedd1a9aeee148c80d70d95ca82fd", - "height": 2815444, - "time": "2024-05-15T08:11:02Z" - }, - "tx_index": 14, - "account": 0, - "index": 3, - "address": "tb1qjnl3f0lahssa62qvn6vm2fruejfc6e9x2r8c5z" - }, - { - "id": "ca716f4736eaf5c24f0e9190c7173408c7a46c925e10c76cb4488d14278235ac", - "received_at": "2024-05-15T13:14:19Z", - "fees": "6895", - "inputs": [ - { - "output_hash": "e0808b93d68f4cef0054bffd9c93fa705e474a1a109c90b8a1174b7440de131b", - "output_index": 0, - "value": "290118603", - "address": "tb1qhxjdvd53z73r3e3kdn2nt8h2lqayw93jhr43rw", - "sequence": 4294967293 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "290081511", - "address": "tb1qz3nw7l85hzy78we650p53h7369ty85jmf2qp2x", - "spent_at_height": 2815483, - "output_hash": "ca716f4736eaf5c24f0e9190c7173408c7a46c925e10c76cb4488d14278235ac", - "block_height": 2815481, - "rbf": true - }, - { - "output_index": 1, - "value": "30197", - "address": "tb1qjnl3f0lahssa62qvn6vm2fruejfc6e9x2r8c5z", - "spent_at_height": null, - "output_hash": "ca716f4736eaf5c24f0e9190c7173408c7a46c925e10c76cb4488d14278235ac", - "block_height": 2815481, - "rbf": true - } - ], - "block": { - "hash": "000000000000000cebb4e30283a056706c8e456ed76e6503a0be8abd70701d19", - "height": 2815481, - "time": "2024-05-15T13:14:19Z" - }, - "tx_index": 3428, - "account": 0, - "index": 3, - "address": "tb1qjnl3f0lahssa62qvn6vm2fruejfc6e9x2r8c5z" - } - ], - "addressCache": { - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-1": "tb1qx86xqtf50d287uq89unn0w373k5drmavf75vkh", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-2": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-0": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-4": "tb1qxmwe6n93fls8r69837cmyt6ua406xaen9hy24d", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-3": "tb1qjnl3f0lahssa62qvn6vm2fruejfc6e9x2r8c5z", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-5": "tb1q05hpnj2ax0y93m05ds52m7gjt8rvj2nyctpqfz", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-7": "tb1qvl8runktfnc4t76edzsqfph86ax8xpcynyh2zk", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-6": "tb1qqtps7vrsjxkkp2gt3c5al9ll6k93u6yrp8vnww", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-8": "tb1qg7n5stkrzcyqagk3aa65v7fl96qtwa9fw9wzh6", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-10": "tb1qr484cv4e8nfwt7tnsgml6n9zr3pvwujpewz9gd", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-9": "tb1q5dg3rhdjm353w0xws7jzmaq7kt6j97g0g03y79", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-11": "tb1qvtcc8f8u54d3e0lf27x6vt9u5spxld09jzvvkc", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-13": "tb1q4vax46yusv3a7zwhzwtkfjhtze8k72ueyuu36d", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-12": "tb1q255gj7g4jpmv6m3ntt2grau28wgzcd5xzdl6dh", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-14": "tb1qg8m6rn3lgqzktg7ecseh6s98x5d7267mrzveys", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-16": "tb1q5grrr3m3lyqmklppm00yzjxlrqaww7lfwyxxf4", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-17": "tb1qa08asf3aqjg04u4qhdf7wyv9hmz3lrexhz0zsx", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-15": "tb1qtuwvet7349zkxu6umps48e8egymd5q4e0khtpn", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-19": "tb1qz7vkfrxxu3j43w3a80fnkz2yhyf7r99zdzd3rz", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-18": "tb1qkl09k2n4tq20sqjgvcl6y8w3m5j5pa4cp05urr", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-0": "tb1q0rczr7cpz48jq3747z8ez8x2hyx2xunwr0lm5y", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-2": "tb1qqrx4qnvvrltfqkjz2rya0xxx7fhjgv55fmpgmy", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-3": "tb1q5q9ted8tnvj36x6ndl82p7wze4zhs6gxrt8rdu", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-1": "tb1qr4ckf85dgctzmaca7zg9z2xj5q5qx75x0uvpz0", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-5": "tb1q3hmw2894p6fhencz0syk9v6kyh4heyffm4hz4f", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-6": "tb1qnf94s85m3qqfu2pgda2pdz5f6xfjxg6p4z9qkh", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-4": "tb1qslf059lsyurz6k0kgvjj9rw8pr75f0ts2a66a3", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-8": "tb1qhvearg8afglty8rsmfta8j06el0qetxcyu2jun", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-7": "tb1qlfnf6f09wc5ukp346ty7w462rcf3t7n4utvy40", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-9": "tb1qs2ex5k9z7t96fgkp4l5c2cs4lfdf64unymwe79", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-11": "tb1qta50jk5cs3cece26p26tepqenjs96zk9y02mdm", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-10": "tb1qmk6cuwhq9r3jjckq56ctv896fn2erg7fpnm0xz", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-12": "tb1qgjuuqs4pkaukww7dgdukm84cg8n4h9dv0t0j8y", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-14": "tb1qarvwul33lpgqagp8pkr7qxuu7yvm3mwpxe8e0z", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-13": "tb1qfljcl04fyxq3zm8x7gkduca43gjxn65uky07t5", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-15": "tb1qdy7rh3f3d4v08sx50zwwuv29m206qnu3nehj7j", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-17": "tb1q8t2nc9phmeu39sewkqnca84kh2ffnrkyhww9j0", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-18": "tb1qhky8u83jhv99hsfgcfujysaapxxf9f7tlnnfru", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-16": "tb1qn9mfj32wvxem4m9dujgqsqwp9arp8zp3c7e2ke", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-19": "tb1qh8sk5cy95cmgkge5wjnq4anhu0e9hku5e2fksc", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-22": "tb1q64rm6hu4xe7s5ewa0sfap85umyatg78etyga4s", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-25": "tb1ql0rkdyw8fe9a0y7dpvkmwdfpf4c2lll7tm66ne", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-20": "tb1qgv0ycetyywfx83evaj0jsgnldcktv634p2qk28", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-21": "tb1qddwrtknzatk9a4y3h4tka257tulhzpdhdm944n", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-28": "tb1qh9j3xcqy8pl68aekh3zjjdhwwker3ahcgnnhya", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-23": "tb1q0kmpz5z2gdxxxlg9p62hxx27pp3hvhdr2lhuu3", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-24": "tb1q5p4k3qzhmlwtgz8qn25pspqcx9lhu52cvx8xpq", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-31": "tb1q3agefz4tj6lf4mz7ca67ajd3wln8gjagszps72", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-26": "tb1qrg02ajtkndd57acg75xxur0sdte0y6g92s4kdz", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-27": "tb1qwfxj48ggm4ycvql54gtchks3guh99dehwrazjc", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-34": "tb1qew5zekp00f3ndnlkq5argm09pgl0xw6l80mu8a", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-29": "tb1qh3uj3a7zpqkjn7506ay0pf5d7su2ysdw0mpn0v", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-37": "tb1ql038dc4us53wzc9d8uqqzs93p8gm3d982cp7kv", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-30": "tb1qvgp5h03hlwvw2jlkgsfqka3gvpnwcqa0n0ghny", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-32": "tb1q48gt6e3j6mxzwg0d84c7dcewth7ycmyk332qgg", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-33": "tb1qglxz48n82hqr34j484gj05xwrc2w5r30a0h999", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-35": "tb1qt70m797lzxfdaqzfnmq8nmqdvg7hdx24wg93vy", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-36": "tb1qm2mfnljxw2nrn4fuz5vrsznl2v7jqkzdks4px3", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-38": "tb1q72e5gyc29gupga5uxunje3dyvhgp8q6zch84pj", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-0-39": "tb1qn30u0gy94hv2cmgl2fhcykt0jurq9f2ee8lnrx", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-22": "tb1q8hjez3ckzd2qm82rkkr7e03jx7curpzze3x4mw", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-25": "tb1q2vfls5ndpqd03263mwsvypklh7svh62hh7h0c9", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-21": "tb1qcs7czzls6mxzrq5gcg4kz87en0zgy7r6rsqgk2", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-20": "tb1qw87hx00arcycwudpjmzvmaf7yslaarcr9vm0xv", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-28": "tb1q2lkmwur2gt5uf303w65fsy6hl0p4680vkyan6w", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-24": "tb1qwrg4w98w8ju2gk4vrrr07n9g6xv4ej8latu6lc", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-23": "tb1qg787hv33nj2z57zwltf3p3huvxwgma9d7prldj", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-31": "tb1qmyyh2lrhv4nwn4kdgcyp59ugykny4lsdmuzy83", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-26": "tb1qrp2nh6yn443p8hd9ksqg99uajjkjmua4c60z2n", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-27": "tb1qnj33kr4p0p7pmdxxnrpaxr9v9ne83v859r4wcg", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-29": "tb1qph42ht325dhskasgenvwdce2d6u5kqrt829j5f", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-34": "tb1q2luv7unnsx84dm3dc3rf7x4lt82qgmk398gj6f", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-30": "tb1qmhtn49y7ehf2937tpuwjg2lzvd3vm6xrzlmzd6", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-32": "tb1qdvde4kyyavkqsk6ww7f8tzvnp0czy8qrln92en", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-37": "tb1q6k2zs6cc3ng5qe5ln8aw86x694y5edzns9j9hr", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-33": "tb1q3mk8wh0aaglcxagfnsacpkxzmcjzztl5wfrttz", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-35": "tb1q3j20uknfxkz742nsrtqu30p9ffc94vhaxpzjcp", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-36": "tb1qqd02kg5fxfq4v7nlyc70698ankqwsurh88p9l2", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-38": "tb1q865jjq2xnyhm3mtk28vwa06ztaz3zt9hpur3zj", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h-1-39": "tb1qwjt6zzyn6qxm22r85v7e3ll2xjmf9yt49wq9af" - } - } - } - } - }, - "swapHistory": [] - }, - "version": 1 - }, - { - "data": { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", - "seedIdentifier": "045149ac56e773488fc925cafe39fe5814d1f7102b05035ad4246d206e7ec57260727f8a06040e7631a3e997d6203639a90f2e384a83535eb0034d12b90fa2acbb", - "name": "Bitcoin Testnet 2", - "starred": false, - "used": true, - "derivationMode": "native_segwit", - "index": 1, - "freshAddress": "tb1q4efvpk2ttsefx0gzkqv2eqd4lgugh7jyvj29de", - "freshAddressPath": "84'/1'/1'/0/3", - "freshAddresses": [ - { - "address": "tb1q8gc0lnlcyf8sqld5swnf2wzyh5x9k66dtruf8x", - "derivationPath": "84'/1'/1'/0/0" - } - ], - "blockHeight": 2815506, - "creationDate": "2024-04-10T13:17:50.000Z", - "operationsCount": 20, - "operations": [ - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-f6ee9f6eb35fc2abb14ef246ee6faa3105f3af657cb447761df79743553605c0-IN", - "hash": "f6ee9f6eb35fc2abb14ef246ee6faa3105f3af657cb447761df79743553605c0", - "type": "IN", - "senders": [ - "tb1qdy7rh3f3d4v08sx50zwwuv29m206qnu3nehj7j" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", - "blockHash": "000000000000000d6cd593acf0cc74f17f3a51a620e5531e8d313fc82c4cdf63", - "blockHeight": 2815479, - "extra": {}, - "date": "2024-05-15T12:55:09.000Z", - "value": "1000", - "fee": "14090", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-507107ff04a3185909cc891cddf906d98c8a4695bd53f38e7c62008ff54788e4-IN", - "hash": "507107ff04a3185909cc891cddf906d98c8a4695bd53f38e7c62008ff54788e4", - "type": "IN", - "senders": [ - "tb1qfljcl04fyxq3zm8x7gkduca43gjxn65uky07t5" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", - "blockHash": "000000000000000d6cd593acf0cc74f17f3a51a620e5531e8d313fc82c4cdf63", - "blockHeight": 2815479, - "extra": {}, - "date": "2024-05-15T12:55:09.000Z", - "value": "1000", - "fee": "14090", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-58d21eece42b687fb811cf5fffae58f31454f5339b22a93f3407405c997b48fd-IN", - "hash": "58d21eece42b687fb811cf5fffae58f31454f5339b22a93f3407405c997b48fd", - "type": "IN", - "senders": [ - "tb1qgjuuqs4pkaukww7dgdukm84cg8n4h9dv0t0j8y" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", - "blockHash": "00000000000000164ad9408b1ed139e3a7fba0540348f081f8c392e767fbd7ab", - "blockHeight": 2815460, - "extra": {}, - "date": "2024-05-15T10:51:05.000Z", - "value": "1000", - "fee": "14090", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-2ae182dc9906bafa7404e51be13b8bdfd3b2a408ae0efade21fa74ed234a4601-IN", - "hash": "2ae182dc9906bafa7404e51be13b8bdfd3b2a408ae0efade21fa74ed234a4601", - "type": "IN", - "senders": [ - "tb1qarvwul33lpgqagp8pkr7qxuu7yvm3mwpxe8e0z" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", - "blockHash": "00000000000000164ad9408b1ed139e3a7fba0540348f081f8c392e767fbd7ab", - "blockHeight": 2815460, - "extra": {}, - "date": "2024-05-15T10:51:05.000Z", - "value": "1000", - "fee": "14090", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-e1f91c616f34b1048e635fbe10b1d715e953ad982c73f8f252a3d59d6caa985e-IN", - "hash": "e1f91c616f34b1048e635fbe10b1d715e953ad982c73f8f252a3d59d6caa985e", - "type": "IN", - "senders": [ - "tb1qta50jk5cs3cece26p26tepqenjs96zk9y02mdm" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", - "blockHash": "00000000000000164ad9408b1ed139e3a7fba0540348f081f8c392e767fbd7ab", - "blockHeight": 2815460, - "extra": {}, - "date": "2024-05-15T10:51:05.000Z", - "value": "1000", - "fee": "14090", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f-IN", - "hash": "1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f", - "type": "IN", - "senders": [ - "tb1qs2ex5k9z7t96fgkp4l5c2cs4lfdf64unymwe79", - "tb1qmk6cuwhq9r3jjckq56ctv896fn2erg7fpnm0xz" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", - "blockHash": "00000000000000176ff48d54445b1ef7e934f1ef13f03c6144a963e789982542", - "blockHeight": 2815454, - "extra": {}, - "date": "2024-05-15T10:12:36.000Z", - "value": "1000", - "fee": "133308", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019-IN", - "hash": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", - "type": "IN", - "senders": [ - "tb1qlfnf6f09wc5ukp346ty7w462rcf3t7n4utvy40", - "tb1qjnl3f0lahssa62qvn6vm2fruejfc6e9x2r8c5z", - "tb1qhvearg8afglty8rsmfta8j06el0qetxcyu2jun" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", - "blockHash": "000000000000000d27a09b060bc13bbdde3cedd1a9aeee148c80d70d95ca82fd", - "blockHeight": 2815444, - "extra": {}, - "date": "2024-05-15T08:11:02.000Z", - "value": "1000", - "fee": "101016", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea-IN", - "hash": "762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea", - "type": "IN", - "senders": [ - "tb1qnf94s85m3qqfu2pgda2pdz5f6xfjxg6p4z9qkh" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", - "blockHash": "000000000000000d27a09b060bc13bbdde3cedd1a9aeee148c80d70d95ca82fd", - "blockHeight": 2815444, - "extra": {}, - "date": "2024-05-15T08:11:02.000Z", - "value": "1000", - "fee": "51336", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075-IN", - "hash": "8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075", - "type": "IN", - "senders": [ - "tb1q3hmw2894p6fhencz0syk9v6kyh4heyffm4hz4f" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", - "blockHash": "0000000000000007f533a45f5f92a4d1ca52850333132a79dac787109f2445db", - "blockHeight": 2815108, - "extra": {}, - "date": "2024-05-13T13:19:27.000Z", - "value": "1000", - "fee": "6417", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f-IN", - "hash": "0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f", - "type": "IN", - "senders": [ - "tb1qslf059lsyurz6k0kgvjj9rw8pr75f0ts2a66a3" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", - "blockHash": "00000000000000f1ab393053a5b2e3e948458b40ec204de53b869478845f3565", - "blockHeight": 2812143, - "extra": {}, - "date": "2024-05-06T16:50:47.000Z", - "value": "1000", - "fee": "12137", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c-IN", - "hash": "b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c", - "type": "IN", - "senders": [ - "tb1q5q9ted8tnvj36x6ndl82p7wze4zhs6gxrt8rdu" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", - "blockHash": "000000000000008e9b0cd4eb69f924afa9112a12ed35f4c5d3a862757099ff7a", - "blockHeight": 2812060, - "extra": {}, - "date": "2024-05-06T14:25:31.000Z", - "value": "1000", - "fee": "6975", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-9dbd0423ef356dda8ab6a7d44d8bdce6f4cf9e7a8852b23214a4f356919103f7-IN", - "hash": "9dbd0423ef356dda8ab6a7d44d8bdce6f4cf9e7a8852b23214a4f356919103f7", - "type": "IN", - "senders": [ - "tb1qqrx4qnvvrltfqkjz2rya0xxx7fhjgv55fmpgmy" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", - "blockHash": "00000000000000df392c19e655e3cb90065767f8cb52a60b087e8bef4a3d2fd4", - "blockHeight": 2810662, - "extra": {}, - "date": "2024-05-02T07:53:19.000Z", - "value": "1000", - "fee": "6975", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-12ebf312956be518826b9989b6925e41c1e86b54a1a655726aee9a73326b8450-IN", - "hash": "12ebf312956be518826b9989b6925e41c1e86b54a1a655726aee9a73326b8450", - "type": "IN", - "senders": [ - "tb1qr4ckf85dgctzmaca7zg9z2xj5q5qx75x0uvpz0" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", - "blockHash": "000000000000029c1d61c5accc2cf0bb4122b5adffa2016a6e7c315eea9a5ba5", - "blockHeight": 2808871, - "extra": {}, - "date": "2024-04-30T16:23:21.000Z", - "value": "1000", - "fee": "2651", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a-IN", - "hash": "fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a", - "type": "IN", - "senders": [ - "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", - "tb1q0rczr7cpz48jq3747z8ez8x2hyx2xunwr0lm5y" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", - "blockHash": "00000000000002300b019883058de5064a4adcf02fc613bcdc45fcbfab38c0fd", - "blockHeight": 2808759, - "extra": {}, - "date": "2024-04-30T15:02:55.000Z", - "value": "1000", - "fee": "5216", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-5351b3a1d1c2f832ab5236a6bb472c19c0554dcfe82067408ae9ff02abae53bd-IN", - "hash": "5351b3a1d1c2f832ab5236a6bb472c19c0554dcfe82067408ae9ff02abae53bd", - "type": "IN", - "senders": [ - "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", - "blockHash": "0000000000000338630f87263192a22fed26a325824009fc04bc306d4c00e6c3", - "blockHeight": 2808748, - "extra": {}, - "date": "2024-04-30T14:49:05.000Z", - "value": "1000", - "fee": "2651", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-ea0071ab676dc35448c7ba6b275aad69dfa98e0346f846dd529d7322c88aabf8-IN", - "hash": "ea0071ab676dc35448c7ba6b275aad69dfa98e0346f846dd529d7322c88aabf8", - "type": "IN", - "senders": [ - "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", - "blockHash": "0000000000000055c5690cb5ba47beda5d40a8e7e0bea4519a183b9f1f20ef8c", - "blockHeight": 2808681, - "extra": {}, - "date": "2024-04-30T14:03:12.000Z", - "value": "1000", - "fee": "2651", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6-IN", - "hash": "fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6", - "type": "IN", - "senders": [ - "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk", - "tb1qx86xqtf50d287uq89unn0w373k5drmavf75vkh" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", - "blockHash": "00000000000002d0e8c9b1fd3a5a499d5c684060025e9d56797e2cb81089ca47", - "blockHeight": 2808671, - "extra": {}, - "date": "2024-04-30T13:58:35.000Z", - "value": "1000", - "fee": "3933", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-4b403adf0e193ca294f6418f517b1ac1358d9f5a2ceb53d8863e92227a7c1938-IN", - "hash": "4b403adf0e193ca294f6418f517b1ac1358d9f5a2ceb53d8863e92227a7c1938", - "type": "IN", - "senders": [ - "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk" - ], - "recipients": [ - "tb1q8kkh3hkwaq6frqrfdkhpmxzzhe5dtclzwlu4y9" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", - "blockHash": "000000000024db40b1e77e9beefd5323e65b1d34b767f3654bc0eada1390a7f3", - "blockHeight": 2586529, - "extra": {}, - "date": "2024-04-16T09:27:18.000Z", - "value": "1000", - "fee": "2000", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902-IN", - "hash": "f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902", - "type": "IN", - "senders": [ - "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk" - ], - "recipients": [ - "tb1q8kkh3hkwaq6frqrfdkhpmxzzhe5dtclzwlu4y9" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", - "blockHash": "0000000000000000aed4c9f3d04c79b3446e87e6a4e9cb84986631a9d97c97ad", - "blockHeight": 2586394, - "extra": {}, - "date": "2024-04-15T15:45:15.000Z", - "value": "1000", - "fee": "2232", - "hasFailed": false - }, - { - "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-88b684a739e415beaedf0a791a0ab836cd788bc44340ac5c3a6b72ad567ff983-IN", - "hash": "88b684a739e415beaedf0a791a0ab836cd788bc44340ac5c3a6b72ad567ff983", - "type": "IN", - "senders": [ - "tb1pnxgxlsurkxrqxmq00phy4kk268jct6afxehy8nc2dqfx2saa5hhql7sxed" - ], - "recipients": [ - "tb1q8gc0lnlcyf8sqld5swnf2wzyh5x9k66dtruf8x" - ], - "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", - "blockHash": "0000000000000023aa2bf7e7113c947e0fa80c7465726a43519fe9dc696b2ecc", - "blockHeight": 2585852, - "extra": {}, - "date": "2024-04-10T13:17:50.000Z", - "value": "2990", - "fee": "353", - "hasFailed": false - } - ], - "pendingOperations": [], - "currencyId": "bitcoin_testnet", - "unitMagnitude": 8, - "lastSyncDate": "2024-05-15T15:06:18.351Z", - "balance": "21990", - "spendableBalance": "21990", - "balanceHistoryCache": { - "HOUR": { - "balances": [ - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 13990, - 13990, - 13990, - 13990, - 13990, - 13990, - 13990, - 13990, - 13990, - 13990, - 13990, - 13990, - 13990, - 13990, - 13990, - 13990, - 13990, - 13990, - 13990, - 13990, - 13990, - 13990, - 13990, - 13990, - 13990, - 13990, - 13990, - 13990, - 13990, - 13990, - 13990, - 13990, - 13990, - 13990, - 13990, - 13990, - 13990, - 13990, - 13990, - 13990, - 13990, - 13990, - 13990, - 15990, - 15990, - 19990, - 19990, - 21990, - 21990, - 21990 - ], - "latestDate": 1715785200000 - }, - "DAY": { - "balances": [ - 0, - 2990, - 2990, - 2990, - 2990, - 2990, - 3990, - 4990, - 4990, - 4990, - 4990, - 4990, - 4990, - 4990, - 4990, - 4990, - 4990, - 4990, - 4990, - 4990, - 4990, - 9990, - 9990, - 10990, - 10990, - 10990, - 10990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 13990, - 13990 - ], - "latestDate": 1715724000000 - }, - "WEEK": { - "balances": [ - 0, - 2990, - 4990, - 4990, - 10990, - 12990 - ], - "latestDate": 1715464800000 - } - }, - "xpub": "tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7", - "bitcoinResources": { - "utxos": [ - [ - "88b684a739e415beaedf0a791a0ab836cd788bc44340ac5c3a6b72ad567ff983", - 0, - 2585852, - "tb1q8gc0lnlcyf8sqld5swnf2wzyh5x9k66dtruf8x", - "2990", - 1, - 0 - ], - [ - "f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902", - 0, - 2586394, - "tb1q8kkh3hkwaq6frqrfdkhpmxzzhe5dtclzwlu4y9", - "1000", - 1, - 0 - ], - [ - "4b403adf0e193ca294f6418f517b1ac1358d9f5a2ceb53d8863e92227a7c1938", - 0, - 2586529, - "tb1q8kkh3hkwaq6frqrfdkhpmxzzhe5dtclzwlu4y9", - "1000", - 1, - 0 - ], - [ - "fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6", - 0, - 2808671, - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "1000", - 1, - 0 - ], - [ - "ea0071ab676dc35448c7ba6b275aad69dfa98e0346f846dd529d7322c88aabf8", - 0, - 2808681, - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "1000", - 1, - 0 - ], - [ - "5351b3a1d1c2f832ab5236a6bb472c19c0554dcfe82067408ae9ff02abae53bd", - 0, - 2808748, - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "1000", - 1, - 0 - ], - [ - "fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a", - 0, - 2808759, - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "1000", - 1, - 0 - ], - [ - "12ebf312956be518826b9989b6925e41c1e86b54a1a655726aee9a73326b8450", - 0, - 2808871, - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "1000", - 1, - 0 - ], - [ - "9dbd0423ef356dda8ab6a7d44d8bdce6f4cf9e7a8852b23214a4f356919103f7", - 0, - 2810662, - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "1000", - 1, - 0 - ], - [ - "b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c", - 0, - 2812060, - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "1000", - 1, - 0 - ], - [ - "0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f", - 0, - 2812143, - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "1000", - 1, - 0 - ], - [ - "8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075", - 0, - 2815108, - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "1000", - 1, - 0 - ], - [ - "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", - 0, - 2815444, - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "1000", - 1, - 0 - ], - [ - "762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea", - 0, - 2815444, - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "1000", - 1, - 0 - ], - [ - "1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f", - 0, - 2815454, - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "1000", - 1, - 0 - ], - [ - "58d21eece42b687fb811cf5fffae58f31454f5339b22a93f3407405c997b48fd", - 0, - 2815460, - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "1000", - 1, - 0 - ], - [ - "2ae182dc9906bafa7404e51be13b8bdfd3b2a408ae0efade21fa74ed234a4601", - 0, - 2815460, - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "1000", - 1, - 0 - ], - [ - "e1f91c616f34b1048e635fbe10b1d715e953ad982c73f8f252a3d59d6caa985e", - 0, - 2815460, - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "1000", - 1, - 0 - ], - [ - "f6ee9f6eb35fc2abb14ef246ee6faa3105f3af657cb447761df79743553605c0", - 0, - 2815479, - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "1000", - 1, - 0 - ], - [ - "507107ff04a3185909cc891cddf906d98c8a4695bd53f38e7c62008ff54788e4", - 0, - 2815479, - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "1000", - 1, - 0 - ] - ], - "walletAccount": { - "params": { - "xpub": "tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7", - "path": "84'/1'", - "index": 1, - "currency": "bitcoin_testnet", - "network": "testnet", - "derivationMode": "Native SegWit" - }, - "xpub": { - "xpub": "tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7", - "data": { - "txs": [ - { - "id": "88b684a739e415beaedf0a791a0ab836cd788bc44340ac5c3a6b72ad567ff983", - "received_at": "2024-04-10T13:17:50Z", - "fees": "353", - "inputs": [ - { - "output_hash": "800ded928da888280fd9d99ba99174fe8a26a1e5fcd6461100c16945456ef7ff", - "output_index": 4, - "value": "483218529", - "address": "tb1pnxgxlsurkxrqxmq00phy4kk268jct6afxehy8nc2dqfx2saa5hhql7sxed", - "sequence": 4294967293 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "2990", - "address": "tb1q8gc0lnlcyf8sqld5swnf2wzyh5x9k66dtruf8x", - "spent_at_height": null, - "output_hash": "88b684a739e415beaedf0a791a0ab836cd788bc44340ac5c3a6b72ad567ff983", - "block_height": 2585852, - "rbf": true - }, - { - "output_index": 1, - "value": "16000", - "address": "tb1p5r87v4lhczhv4h4aduly8ytl8lx55y2ak9xkkt0taqxa7hql506suqa3sm", - "spent_at_height": null, - "output_hash": "88b684a739e415beaedf0a791a0ab836cd788bc44340ac5c3a6b72ad567ff983", - "block_height": 2585852, - "rbf": true - }, - { - "output_index": 2, - "value": "483123186", - "address": "tb1p8hnglyhxavad4ucaa4zt7k5lrukwdn6tssmx5nyzdac76fmj0pjqpyrp78", - "spent_at_height": 2585852, - "output_hash": "88b684a739e415beaedf0a791a0ab836cd788bc44340ac5c3a6b72ad567ff983", - "block_height": 2585852, - "rbf": true - }, - { - "output_index": 3, - "value": "1000", - "address": "tb1q6rqva052q5ue3tl3te0u7pwkpm3h9yx35akam7", - "spent_at_height": null, - "output_hash": "88b684a739e415beaedf0a791a0ab836cd788bc44340ac5c3a6b72ad567ff983", - "block_height": 2585852, - "rbf": true - }, - { - "output_index": 4, - "value": "1000", - "address": "tb1qfu2qp6xwqh2w3t65xaadvn7cfrf0f4u0m47xmd", - "spent_at_height": null, - "output_hash": "88b684a739e415beaedf0a791a0ab836cd788bc44340ac5c3a6b72ad567ff983", - "block_height": 2585852, - "rbf": true - }, - { - "output_index": 5, - "value": "1000", - "address": "tb1q2kycsgntv2j6l8xaf5wj7nz4xq0lp3e5dlzftg", - "spent_at_height": null, - "output_hash": "88b684a739e415beaedf0a791a0ab836cd788bc44340ac5c3a6b72ad567ff983", - "block_height": 2585852, - "rbf": true - }, - { - "output_index": 6, - "value": "2000", - "address": "tb1qqym38kje75x3ymsuegkdaq9gczm4rgh65yrtfu", - "spent_at_height": null, - "output_hash": "88b684a739e415beaedf0a791a0ab836cd788bc44340ac5c3a6b72ad567ff983", - "block_height": 2585852, - "rbf": true - }, - { - "output_index": 7, - "value": "71000", - "address": "tb1ph4c5egccqdkw62n7vtztrmyknf7caxjuzv96ptlzewh8skkedhxsgzc4d2", - "spent_at_height": null, - "output_hash": "88b684a739e415beaedf0a791a0ab836cd788bc44340ac5c3a6b72ad567ff983", - "block_height": 2585852, - "rbf": true - } - ], - "block": { - "hash": "0000000000000023aa2bf7e7113c947e0fa80c7465726a43519fe9dc696b2ecc", - "height": 2585852, - "time": "2024-04-10T13:17:50Z" - }, - "tx_index": 753, - "account": 0, - "index": 0, - "address": "tb1q8gc0lnlcyf8sqld5swnf2wzyh5x9k66dtruf8x" - }, - { - "id": "f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902", - "received_at": "2024-04-15T15:45:15Z", - "fees": "2232", - "inputs": [ - { - "output_hash": "1756ba36fae7733fdffc0c5314d556a00b5990564a61d811c0938981ef830cbc", - "output_index": 0, - "value": "489501", - "address": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1q8kkh3hkwaq6frqrfdkhpmxzzhe5dtclzwlu4y9", - "spent_at_height": null, - "output_hash": "f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902", - "block_height": 2586394, - "rbf": true - }, - { - "output_index": 1, - "value": "486269", - "address": "tb1q0rczr7cpz48jq3747z8ez8x2hyx2xunwr0lm5y", - "spent_at_height": null, - "output_hash": "f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902", - "block_height": 2586394, - "rbf": true - } - ], - "block": { - "hash": "0000000000000000aed4c9f3d04c79b3446e87e6a4e9cb84986631a9d97c97ad", - "height": 2586394, - "time": "2024-04-15T15:45:15Z" - }, - "tx_index": 898, - "account": 0, - "index": 1, - "address": "tb1q8kkh3hkwaq6frqrfdkhpmxzzhe5dtclzwlu4y9" - }, - { - "id": "4b403adf0e193ca294f6418f517b1ac1358d9f5a2ceb53d8863e92227a7c1938", - "received_at": "2024-04-16T09:27:18Z", - "fees": "2000", - "inputs": [ - { - "output_hash": "185b469ab015a7ed5e102543912dc268c1509e3beb222b48cffc6d6e5213f474", - "output_index": 0, - "value": "3000", - "address": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1q8kkh3hkwaq6frqrfdkhpmxzzhe5dtclzwlu4y9", - "spent_at_height": null, - "output_hash": "4b403adf0e193ca294f6418f517b1ac1358d9f5a2ceb53d8863e92227a7c1938", - "block_height": 2586529, - "rbf": true - } - ], - "block": { - "hash": "000000000024db40b1e77e9beefd5323e65b1d34b767f3654bc0eada1390a7f3", - "height": 2586529, - "time": "2024-04-16T09:27:18Z" - }, - "tx_index": 3084, - "account": 0, - "index": 1, - "address": "tb1q8kkh3hkwaq6frqrfdkhpmxzzhe5dtclzwlu4y9" - }, - { - "id": "fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6", - "received_at": "2024-04-30T13:58:35Z", - "fees": "3933", - "inputs": [ - { - "output_hash": "cdc50ee65b9557642190cfe1d6a4f2b89ade172fa5c15addce1a4d242434d725", - "output_index": 0, - "value": "1000", - "address": "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk", - "sequence": 0 - }, - { - "output_hash": "292bf44de2a8713cbcbceccfeab33f0478ebfb73cb1e8b09252942d849bcfcdd", - "output_index": 0, - "value": "18752", - "address": "tb1qx86xqtf50d287uq89unn0w373k5drmavf75vkh", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6", - "block_height": 2808671, - "rbf": true - }, - { - "output_index": 1, - "value": "14819", - "address": "tb1qr4ckf85dgctzmaca7zg9z2xj5q5qx75x0uvpz0", - "spent_at_height": null, - "output_hash": "fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6", - "block_height": 2808671, - "rbf": true - } - ], - "block": { - "hash": "00000000000002d0e8c9b1fd3a5a499d5c684060025e9d56797e2cb81089ca47", - "height": 2808671, - "time": "2024-04-30T13:58:35Z" - }, - "tx_index": 271, - "account": 0, - "index": 2, - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - }, - { - "id": "ea0071ab676dc35448c7ba6b275aad69dfa98e0346f846dd529d7322c88aabf8", - "received_at": "2024-04-30T14:03:12Z", - "fees": "2651", - "inputs": [ - { - "output_hash": "1a4b3b55909256ecca18c215a0bcd8e862a81427afa8760a6fa245a6a72c9888", - "output_index": 0, - "value": "1000000", - "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "ea0071ab676dc35448c7ba6b275aad69dfa98e0346f846dd529d7322c88aabf8", - "block_height": 2808681, - "rbf": true - }, - { - "output_index": 1, - "value": "996349", - "address": "tb1qqrx4qnvvrltfqkjz2rya0xxx7fhjgv55fmpgmy", - "spent_at_height": null, - "output_hash": "ea0071ab676dc35448c7ba6b275aad69dfa98e0346f846dd529d7322c88aabf8", - "block_height": 2808681, - "rbf": true - } - ], - "block": { - "hash": "0000000000000055c5690cb5ba47beda5d40a8e7e0bea4519a183b9f1f20ef8c", - "height": 2808681, - "time": "2024-04-30T14:03:12Z" - }, - "tx_index": 53, - "account": 0, - "index": 2, - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - }, - { - "id": "5351b3a1d1c2f832ab5236a6bb472c19c0554dcfe82067408ae9ff02abae53bd", - "received_at": "2024-04-30T14:49:05Z", - "fees": "2651", - "inputs": [ - { - "output_hash": "dcb3b6a870d0a1b87b7dd05201b2fa16ae6965c08f46eae024dc8300c4e6e44e", - "output_index": 0, - "value": "14764", - "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "5351b3a1d1c2f832ab5236a6bb472c19c0554dcfe82067408ae9ff02abae53bd", - "block_height": 2808748, - "rbf": true - }, - { - "output_index": 1, - "value": "11113", - "address": "tb1q5q9ted8tnvj36x6ndl82p7wze4zhs6gxrt8rdu", - "spent_at_height": null, - "output_hash": "5351b3a1d1c2f832ab5236a6bb472c19c0554dcfe82067408ae9ff02abae53bd", - "block_height": 2808748, - "rbf": true - } - ], - "block": { - "hash": "0000000000000338630f87263192a22fed26a325824009fc04bc306d4c00e6c3", - "height": 2808748, - "time": "2024-04-30T14:49:05Z" - }, - "tx_index": 238, - "account": 0, - "index": 2, - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - }, - { - "id": "fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a", - "received_at": "2024-04-30T15:02:55Z", - "fees": "5216", - "inputs": [ - { - "output_hash": "3a81b0e315a34becc02405fde400f79c4afe2c5f07d855df21f59576a662419f", - "output_index": 1, - "value": "1000", - "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", - "sequence": 0 - }, - { - "output_hash": "b4ea6cb6403312cb02fbdb0a4a98ea1fe9221672eebdbba3c68f17f5cc8d4612", - "output_index": 3, - "value": "1000", - "address": "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", - "sequence": 0 - }, - { - "output_hash": "f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902", - "output_index": 1, - "value": "486269", - "address": "tb1q0rczr7cpz48jq3747z8ez8x2hyx2xunwr0lm5y", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a", - "block_height": 2808759, - "rbf": true - }, - { - "output_index": 1, - "value": "482053", - "address": "tb1qslf059lsyurz6k0kgvjj9rw8pr75f0ts2a66a3", - "spent_at_height": null, - "output_hash": "fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a", - "block_height": 2808759, - "rbf": true - } - ], - "block": { - "hash": "00000000000002300b019883058de5064a4adcf02fc613bcdc45fcbfab38c0fd", - "height": 2808759, - "time": "2024-04-30T15:02:55Z" - }, - "tx_index": 221, - "account": 0, - "index": 2, - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - }, - { - "id": "12ebf312956be518826b9989b6925e41c1e86b54a1a655726aee9a73326b8450", - "received_at": "2024-04-30T16:23:21Z", - "fees": "2651", - "inputs": [ - { - "output_hash": "fcb06d7bd8cc35a489c6dcdad1b3b7b9199e0f79f58e0c356d7d4885034f49b6", - "output_index": 1, - "value": "14819", - "address": "tb1qr4ckf85dgctzmaca7zg9z2xj5q5qx75x0uvpz0", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "12ebf312956be518826b9989b6925e41c1e86b54a1a655726aee9a73326b8450", - "block_height": 2808871, - "rbf": true - }, - { - "output_index": 1, - "value": "11168", - "address": "tb1q3hmw2894p6fhencz0syk9v6kyh4heyffm4hz4f", - "spent_at_height": null, - "output_hash": "12ebf312956be518826b9989b6925e41c1e86b54a1a655726aee9a73326b8450", - "block_height": 2808871, - "rbf": true - } - ], - "block": { - "hash": "000000000000029c1d61c5accc2cf0bb4122b5adffa2016a6e7c315eea9a5ba5", - "height": 2808871, - "time": "2024-04-30T16:23:21Z" - }, - "tx_index": 196, - "account": 0, - "index": 2, - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - }, - { - "id": "9dbd0423ef356dda8ab6a7d44d8bdce6f4cf9e7a8852b23214a4f356919103f7", - "received_at": "2024-05-02T07:53:19Z", - "fees": "6975", - "inputs": [ - { - "output_hash": "ea0071ab676dc35448c7ba6b275aad69dfa98e0346f846dd529d7322c88aabf8", - "output_index": 1, - "value": "996349", - "address": "tb1qqrx4qnvvrltfqkjz2rya0xxx7fhjgv55fmpgmy", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "9dbd0423ef356dda8ab6a7d44d8bdce6f4cf9e7a8852b23214a4f356919103f7", - "block_height": 2810662, - "rbf": true - }, - { - "output_index": 1, - "value": "988374", - "address": "tb1qnf94s85m3qqfu2pgda2pdz5f6xfjxg6p4z9qkh", - "spent_at_height": null, - "output_hash": "9dbd0423ef356dda8ab6a7d44d8bdce6f4cf9e7a8852b23214a4f356919103f7", - "block_height": 2810662, - "rbf": true - } - ], - "block": { - "hash": "00000000000000df392c19e655e3cb90065767f8cb52a60b087e8bef4a3d2fd4", - "height": 2810662, - "time": "2024-05-02T07:53:19Z" - }, - "tx_index": 611, - "account": 0, - "index": 2, - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - }, - { - "id": "b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c", - "received_at": "2024-05-06T14:25:31Z", - "fees": "6975", - "inputs": [ - { - "output_hash": "5351b3a1d1c2f832ab5236a6bb472c19c0554dcfe82067408ae9ff02abae53bd", - "output_index": 1, - "value": "11113", - "address": "tb1q5q9ted8tnvj36x6ndl82p7wze4zhs6gxrt8rdu", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c", - "block_height": 2812060, - "rbf": true - }, - { - "output_index": 1, - "value": "3138", - "address": "tb1qlfnf6f09wc5ukp346ty7w462rcf3t7n4utvy40", - "spent_at_height": null, - "output_hash": "b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c", - "block_height": 2812060, - "rbf": true - } - ], - "block": { - "hash": "000000000000008e9b0cd4eb69f924afa9112a12ed35f4c5d3a862757099ff7a", - "height": 2812060, - "time": "2024-05-06T14:25:31Z" - }, - "tx_index": 246, - "account": 0, - "index": 2, - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - }, - { - "id": "0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f", - "received_at": "2024-05-06T16:50:47Z", - "fees": "12137", - "inputs": [ - { - "output_hash": "fd6823ba244c0a65678d6acddfefd4f5eceafc9ff8846be34275c863b794575a", - "output_index": 1, - "value": "482053", - "address": "tb1qslf059lsyurz6k0kgvjj9rw8pr75f0ts2a66a3", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f", - "block_height": 2812143, - "rbf": true - }, - { - "output_index": 1, - "value": "468916", - "address": "tb1qhvearg8afglty8rsmfta8j06el0qetxcyu2jun", - "spent_at_height": null, - "output_hash": "0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f", - "block_height": 2812143, - "rbf": true - } - ], - "block": { - "hash": "00000000000000f1ab393053a5b2e3e948458b40ec204de53b869478845f3565", - "height": 2812143, - "time": "2024-05-06T16:50:47Z" - }, - "tx_index": 3, - "account": 0, - "index": 2, - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - }, - { - "id": "8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075", - "received_at": "2024-05-13T13:19:27Z", - "fees": "6417", - "inputs": [ - { - "output_hash": "12ebf312956be518826b9989b6925e41c1e86b54a1a655726aee9a73326b8450", - "output_index": 1, - "value": "11168", - "address": "tb1q3hmw2894p6fhencz0syk9v6kyh4heyffm4hz4f", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075", - "block_height": 2815108, - "rbf": true - }, - { - "output_index": 1, - "value": "3751", - "address": "tb1qs2ex5k9z7t96fgkp4l5c2cs4lfdf64unymwe79", - "spent_at_height": null, - "output_hash": "8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075", - "block_height": 2815108, - "rbf": true - } - ], - "block": { - "hash": "0000000000000007f533a45f5f92a4d1ca52850333132a79dac787109f2445db", - "height": 2815108, - "time": "2024-05-13T13:19:27Z" - }, - "tx_index": 242, - "account": 0, - "index": 2, - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - }, - { - "id": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", - "received_at": "2024-05-15T08:11:02Z", - "fees": "101016", - "inputs": [ - { - "output_hash": "b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c", - "output_index": 1, - "value": "3138", - "address": "tb1qlfnf6f09wc5ukp346ty7w462rcf3t7n4utvy40", - "sequence": 0 - }, - { - "output_hash": "db6b8183e8c8bed2551de17045e30600b8552496fe9a3db869abfe5be432f955", - "output_index": 0, - "value": "4900", - "address": "tb1qjnl3f0lahssa62qvn6vm2fruejfc6e9x2r8c5z", - "sequence": 0 - }, - { - "output_hash": "0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f", - "output_index": 1, - "value": "468916", - "address": "tb1qhvearg8afglty8rsmfta8j06el0qetxcyu2jun", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", - "block_height": 2815444, - "rbf": true - }, - { - "output_index": 1, - "value": "374938", - "address": "tb1qta50jk5cs3cece26p26tepqenjs96zk9y02mdm", - "spent_at_height": null, - "output_hash": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", - "block_height": 2815444, - "rbf": true - } - ], - "block": { - "hash": "000000000000000d27a09b060bc13bbdde3cedd1a9aeee148c80d70d95ca82fd", - "height": 2815444, - "time": "2024-05-15T08:11:02Z" - }, - "tx_index": 14, - "account": 0, - "index": 2, - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - }, - { - "id": "762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea", - "received_at": "2024-05-15T08:11:02Z", - "fees": "51336", - "inputs": [ - { - "output_hash": "9dbd0423ef356dda8ab6a7d44d8bdce6f4cf9e7a8852b23214a4f356919103f7", - "output_index": 1, - "value": "988374", - "address": "tb1qnf94s85m3qqfu2pgda2pdz5f6xfjxg6p4z9qkh", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea", - "block_height": 2815444, - "rbf": true - }, - { - "output_index": 1, - "value": "936038", - "address": "tb1qmk6cuwhq9r3jjckq56ctv896fn2erg7fpnm0xz", - "spent_at_height": null, - "output_hash": "762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea", - "block_height": 2815444, - "rbf": true - } - ], - "block": { - "hash": "000000000000000d27a09b060bc13bbdde3cedd1a9aeee148c80d70d95ca82fd", - "height": 2815444, - "time": "2024-05-15T08:11:02Z" - }, - "tx_index": 15, - "account": 0, - "index": 2, - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - }, - { - "id": "1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f", - "received_at": "2024-05-15T10:12:36Z", - "fees": "133308", - "inputs": [ - { - "output_hash": "8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075", - "output_index": 1, - "value": "3751", - "address": "tb1qs2ex5k9z7t96fgkp4l5c2cs4lfdf64unymwe79", - "sequence": 0 - }, - { - "output_hash": "762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea", - "output_index": 1, - "value": "936038", - "address": "tb1qmk6cuwhq9r3jjckq56ctv896fn2erg7fpnm0xz", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f", - "block_height": 2815454, - "rbf": true - }, - { - "output_index": 1, - "value": "805481", - "address": "tb1qgjuuqs4pkaukww7dgdukm84cg8n4h9dv0t0j8y", - "spent_at_height": null, - "output_hash": "1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f", - "block_height": 2815454, - "rbf": true - } - ], - "block": { - "hash": "00000000000000176ff48d54445b1ef7e934f1ef13f03c6144a963e789982542", - "height": 2815454, - "time": "2024-05-15T10:12:36Z" - }, - "tx_index": 12, - "account": 0, - "index": 2, - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - }, - { - "id": "58d21eece42b687fb811cf5fffae58f31454f5339b22a93f3407405c997b48fd", - "received_at": "2024-05-15T10:51:05Z", - "fees": "14090", - "inputs": [ - { - "output_hash": "1b9cd5abfb85a1c4b3f744a9b850b2697bc5d35bf0701ab1355b5f78e9ea199f", - "output_index": 1, - "value": "805481", - "address": "tb1qgjuuqs4pkaukww7dgdukm84cg8n4h9dv0t0j8y", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "58d21eece42b687fb811cf5fffae58f31454f5339b22a93f3407405c997b48fd", - "block_height": 2815460, - "rbf": true - }, - { - "output_index": 1, - "value": "790391", - "address": "tb1qarvwul33lpgqagp8pkr7qxuu7yvm3mwpxe8e0z", - "spent_at_height": 2815460, - "output_hash": "58d21eece42b687fb811cf5fffae58f31454f5339b22a93f3407405c997b48fd", - "block_height": 2815460, - "rbf": true - } - ], - "block": { - "hash": "00000000000000164ad9408b1ed139e3a7fba0540348f081f8c392e767fbd7ab", - "height": 2815460, - "time": "2024-05-15T10:51:05Z" - }, - "tx_index": 441, - "account": 0, - "index": 2, - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - }, - { - "id": "2ae182dc9906bafa7404e51be13b8bdfd3b2a408ae0efade21fa74ed234a4601", - "received_at": "2024-05-15T10:51:05Z", - "fees": "14090", - "inputs": [ - { - "output_hash": "58d21eece42b687fb811cf5fffae58f31454f5339b22a93f3407405c997b48fd", - "output_index": 1, - "value": "790391", - "address": "tb1qarvwul33lpgqagp8pkr7qxuu7yvm3mwpxe8e0z", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "2ae182dc9906bafa7404e51be13b8bdfd3b2a408ae0efade21fa74ed234a4601", - "block_height": 2815460, - "rbf": true - }, - { - "output_index": 1, - "value": "775301", - "address": "tb1qdy7rh3f3d4v08sx50zwwuv29m206qnu3nehj7j", - "spent_at_height": null, - "output_hash": "2ae182dc9906bafa7404e51be13b8bdfd3b2a408ae0efade21fa74ed234a4601", - "block_height": 2815460, - "rbf": true - } - ], - "block": { - "hash": "00000000000000164ad9408b1ed139e3a7fba0540348f081f8c392e767fbd7ab", - "height": 2815460, - "time": "2024-05-15T10:51:05Z" - }, - "tx_index": 442, - "account": 0, - "index": 2, - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - }, - { - "id": "e1f91c616f34b1048e635fbe10b1d715e953ad982c73f8f252a3d59d6caa985e", - "received_at": "2024-05-15T10:51:05Z", - "fees": "14090", - "inputs": [ - { - "output_hash": "619a252765124935e7f48a834e75e893934d636f84a3ff1d5134024ea9171019", - "output_index": 1, - "value": "374938", - "address": "tb1qta50jk5cs3cece26p26tepqenjs96zk9y02mdm", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "e1f91c616f34b1048e635fbe10b1d715e953ad982c73f8f252a3d59d6caa985e", - "block_height": 2815460, - "rbf": true - }, - { - "output_index": 1, - "value": "359848", - "address": "tb1qfljcl04fyxq3zm8x7gkduca43gjxn65uky07t5", - "spent_at_height": null, - "output_hash": "e1f91c616f34b1048e635fbe10b1d715e953ad982c73f8f252a3d59d6caa985e", - "block_height": 2815460, - "rbf": true - } - ], - "block": { - "hash": "00000000000000164ad9408b1ed139e3a7fba0540348f081f8c392e767fbd7ab", - "height": 2815460, - "time": "2024-05-15T10:51:05Z" - }, - "tx_index": 443, - "account": 0, - "index": 2, - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - }, - { - "id": "f6ee9f6eb35fc2abb14ef246ee6faa3105f3af657cb447761df79743553605c0", - "received_at": "2024-05-15T12:55:09Z", - "fees": "14090", - "inputs": [ - { - "output_hash": "2ae182dc9906bafa7404e51be13b8bdfd3b2a408ae0efade21fa74ed234a4601", - "output_index": 1, - "value": "775301", - "address": "tb1qdy7rh3f3d4v08sx50zwwuv29m206qnu3nehj7j", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "f6ee9f6eb35fc2abb14ef246ee6faa3105f3af657cb447761df79743553605c0", - "block_height": 2815479, - "rbf": true - }, - { - "output_index": 1, - "value": "760211", - "address": "tb1qn9mfj32wvxem4m9dujgqsqwp9arp8zp3c7e2ke", - "spent_at_height": null, - "output_hash": "f6ee9f6eb35fc2abb14ef246ee6faa3105f3af657cb447761df79743553605c0", - "block_height": 2815479, - "rbf": true - } - ], - "block": { - "hash": "000000000000000d6cd593acf0cc74f17f3a51a620e5531e8d313fc82c4cdf63", - "height": 2815479, - "time": "2024-05-15T12:55:09Z" - }, - "tx_index": 1044, - "account": 0, - "index": 2, - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - }, - { - "id": "507107ff04a3185909cc891cddf906d98c8a4695bd53f38e7c62008ff54788e4", - "received_at": "2024-05-15T12:55:09Z", - "fees": "14090", - "inputs": [ - { - "output_hash": "e1f91c616f34b1048e635fbe10b1d715e953ad982c73f8f252a3d59d6caa985e", - "output_index": 1, - "value": "359848", - "address": "tb1qfljcl04fyxq3zm8x7gkduca43gjxn65uky07t5", - "sequence": 0 - } - ], - "outputs": [ - { - "output_index": 0, - "value": "1000", - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "spent_at_height": null, - "output_hash": "507107ff04a3185909cc891cddf906d98c8a4695bd53f38e7c62008ff54788e4", - "block_height": 2815479, - "rbf": true - }, - { - "output_index": 1, - "value": "344758", - "address": "tb1q8t2nc9phmeu39sewkqnca84kh2ffnrkyhww9j0", - "spent_at_height": null, - "output_hash": "507107ff04a3185909cc891cddf906d98c8a4695bd53f38e7c62008ff54788e4", - "block_height": 2815479, - "rbf": true - } - ], - "block": { - "hash": "000000000000000d6cd593acf0cc74f17f3a51a620e5531e8d313fc82c4cdf63", - "height": 2815479, - "time": "2024-05-15T12:55:09Z" - }, - "tx_index": 1045, - "account": 0, - "index": 2, - "address": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - } - ], - "addressCache": { - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-2": "tb1qe035p7qk4nr4qj0usnps8rl3xzhmzw8pe7c0y5", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-1": "tb1qxcfyjkugwkk890hkh6hlrrq9nah6asxuwcl80y", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-0": "tb1qqz47t97dklnnk55ese09jxhf6m64u8mpgqqalp", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-5": "tb1qc3rge9ca5y9j4gzw9acm0llvams9up2ygsm2ej", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-4": "tb1qdnyunnajadm4a7jehtjc2c6k2dd0ghd8vflctk", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-3": "tb1q9txamrp83zcqmu6vencq07c35j9r5lcj3y0w3n", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-8": "tb1qnu22q25n26uh85e9wgalx57e2v650jre9ntc8w", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-6": "tb1qz64wq5u5v0a4nnu03yahpxzmlelg55wxvd840s", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-7": "tb1q9zk0e5djpmv35s5fwy27smzx6jzjep2ccnw3yq", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-11": "tb1qetn25kphe7pw64698j97jrqchmns4zldsawxa3", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-9": "tb1q3n0wq74sfme68gk6v2zxaty5s3vef7t5pgru0e", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-10": "tb1qzlhk7z0ml0x3vwl3ma80uxsj9qf3lvw3ssxtc4", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-14": "tb1qdr9vxedvwsg0pd74mufhce8ead4s4l3sjfcc7q", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-12": "tb1q7hfdp70ype703s69jqucm0m6xsxg6amjvl76ye", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-13": "tb1quaeytsppac99880nhgngyrx9xkktu2sygt39m3", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-17": "tb1qnj6t9zkcey3gnaynv6nu053uzefvsf5l6wldh4", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-16": "tb1qc9vcq5s5dcqmxtkjjt0htcsxyyj7c9kxfnsqv5", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-15": "tb1qhxk3qadqeagpy2zpe9r5dyk73v7mtwjkl5w53v", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-0": "tb1q8gc0lnlcyf8sqld5swnf2wzyh5x9k66dtruf8x", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-19": "tb1q3hy58g0rd6a6drwernxwy0e4p6ada7chhcau7c", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-1-18": "tb1qhp74xfx8ygtkqm6xzc2vwcpy56x2zewmyrltgy", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-2": "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-3": "tb1q4efvpk2ttsefx0gzkqv2eqd4lgugh7jyvj29de", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-1": "tb1q8kkh3hkwaq6frqrfdkhpmxzzhe5dtclzwlu4y9", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-5": "tb1qzlzc7lgqck57cttchsm6dsqcg45l2qyzpg5ckc", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-6": "tb1qa4hwte0g3m5m068ptl70jy6ykj5ua0m2danl4h", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-4": "tb1qtxnke649ut5dq6293n9kk4guhpw5npet2gqhwp", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-8": "tb1qpxdmmjg5mv53n2fg0qqh99prswmew5dv8gvhve", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-9": "tb1q792gl2h9t7t9czgycmsguypcux2ngxg6ke6xc0", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-7": "tb1q2adm04hv8gygj8wqch5h68yadlf5mzytgh9482", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-11": "tb1qhnwgh07xyxpw5n00c7c8gtw9a9wq78hutgtc9k", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-12": "tb1qzhzf0dwg5ygnstag32jz2gtmnsq727kqmya60m", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-10": "tb1qkauwykqqf3zecvral7k3cyx70scdw4tncz3qdm", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-14": "tb1qta342t6h3skes08c6x8pa6csmk42scd4p05n2a", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-15": "tb1qvyjp9kzy34ce88ldtucpcjp5qecd7h02jxd3l5", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-13": "tb1qlglya2d4097442ld30urajnzad45evtfxfne0m", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-17": "tb1q5zlpdld7x658dksvazg3mq2dssusc6pg0kf3dx", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-18": "tb1qa4p3t394t5n08vnyt8dfmk938ghcvepdxklvnr", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-16": "tb1q2t4ddgn8u576mkwr4zgkpt70gvxq8rphhthgz9", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-19": "tb1ql24ppuh3thr2z8msk0jg5ls32z36r9eztylj4k", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-22": "tb1qag6spfmsr055zd376ccuyrnefgp98mvuyfvkdg", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-25": "tb1qez7nvlc8udwjpa2ff65l38snxatagp7s3wttr6", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-20": "tb1qvqvppg762upzpn3s6yjsnr78yta25atuv9px42", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-21": "tb1qjlzkqew86ecw643hn7syw7r2td27yaj6hrjg89", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-28": "tb1q8e2ew08hyxlcgc04rukv6yayk7dx9ad93xc2fy", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-23": "tb1qr78klznerdlfuk0s59r24g6j5xstqumwu6yfpm", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-24": "tb1q9l944t93vm9gvth4w090kt9cvq58pg6kh7ptpu", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-31": "tb1qsrm0h269g3nm5rjtl8d7c2y2y2grwksxmak6jq", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-26": "tb1q4h6jzxsk2hltkcktut3qd6yuupljn5wdvd3cjc", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-27": "tb1q2r4vmea50p5rva9zh843d2dzj8hd07r4xye8cq", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-34": "tb1qs9n0kd06p6gy47csd8jyxfzne77a3tuz8q6yfl", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-29": "tb1q77et6v7yr4pw6v6qn65q2glkjx9qvewnvd9agr", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-30": "tb1qskm34kf5wtn8ye7hmdd0gwm3ul3mc8lzj7zw8v", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-37": "tb1qzxg79p6mpjnhda3j8qftm8ugs5p49rnyltgr35", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-33": "tb1qwu65wwrjjdcgkt0fdvsxqm646rcscw653tuxp9", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-32": "tb1qz48w9463202af0xpe3mytvlsnvcat2pxx9yrrf", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-35": "tb1qs0e3nka6gu5jxrs8evx7v7dktc53xan87e4s4n", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-36": "tb1q8a0fykmrn5hcru7mcgdz9ffqguwmaw3k0z3u0v", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-38": "tb1qkv33cc3cvqhwe3krpycnzvfdlfe8nlnytufwfq", - "Bitcoin-Native SegWit-tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7-0-39": "tb1q34gquym64t7qsgrlg92nx6nwx2uhp654ycfydl" - } - } - } - } - }, - "swapHistory": [] - }, - "version": 1 - }, - { - "data": { - "id": "js:2:cardano:b5d4ee919fca83cc08710bf48736d97dd3b9a8086a7afa06c314aa11b3ff7823f2ea9a3f56e66d71cc89e0b50b7250c25794f4f12d345f48e95d5112571449ac:cardano", - "seedIdentifier": "016b14936191510a6fa3a1faefe6eb1edc4eaaf145e67285b302ef0d", - "name": "Cardano 1", - "starred": false, - "used": true, - "derivationMode": "cardano", - "index": 0, - "freshAddress": "addr1q9q9q55zyew785z6c2lnrhnzghy038r6mepmqn6v28kupk5ug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ews8d5td8", - "freshAddressPath": "1852'/1815'/0'/0/1", - "freshAddresses": [ - { - "derivationPath": "1852'/1815'/0'/0/1", - "address": "addr1q9q9q55zyew785z6c2lnrhnzghy038r6mepmqn6v28kupk5ug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ews8d5td8" - }, - { - "derivationPath": "1852'/1815'/0'/0/2", - "address": "addr1qyp29zc2evskm4s8h7z62k0vkxym690vxktttqjl4553av5ug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ewssw0a5a" - }, - { - "derivationPath": "1852'/1815'/0'/0/3", - "address": "addr1qxz6kerauvfllk6ex5jsjn359j0dlck7rql3vk3vmd2zn5vug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ewss077ym" - }, - { - "derivationPath": "1852'/1815'/0'/0/4", - "address": "addr1q8dt9a07a7t0sp6smqhprjtj2y7a9a2hmj86lkxy3vmw4c5ug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ewshtp9q5" - }, - { - "derivationPath": "1852'/1815'/0'/0/5", - "address": "addr1q9uwfytf7p3qaadev5t9y4jkv7cx0ver9wexnrhzx0rekauug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ewsxde8rx" - }, - { - "derivationPath": "1852'/1815'/0'/0/6", - "address": "addr1qyh5mevwnnzqtdkahwzraxu4wkzrfkv0rct5gaa37wk9ga5ug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ewsw4wpsd" - }, - { - "derivationPath": "1852'/1815'/0'/0/7", - "address": "addr1qy5t0t8sxtlwh7w3sssn2sg886pmg5chj86ram59g08mkkvug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ewsp44vua" - }, - { - "derivationPath": "1852'/1815'/0'/0/8", - "address": "addr1qy3vk7qy6sgxpdmxswryp4l6dng8edx7jkrqna0wuf8s2f5ug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ewsaarjy3" - }, - { - "derivationPath": "1852'/1815'/0'/0/9", - "address": "addr1q9ven3phczlzp0ga90hjj2v5k87zhz5e5vsufd2uef5t4hyug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ewshk4ftk" - }, - { - "derivationPath": "1852'/1815'/0'/0/10", - "address": "addr1q9jkuwpj7slp3hkguyjwf4702x6hrxfqpr7jd00nyqq4devug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ews0kqj3t" - }, - { - "derivationPath": "1852'/1815'/0'/0/11", - "address": "addr1qx9wfp9yvt5hptrdugaps825lp9n6xph8cen2yz8gfqm9auug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ewsepe4yl" - }, - { - "derivationPath": "1852'/1815'/0'/0/12", - "address": "addr1q8t0qusccp0qf3283g07jej9668fvv97h5upfum2zdfrft5ug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ews0mk4p2" - }, - { - "derivationPath": "1852'/1815'/0'/0/13", - "address": "addr1qxhznlnuuqxnhc6e3n6t6jv6zjgfu39jlqrzchu2uv0ukfvug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ewslws5qw" - }, - { - "derivationPath": "1852'/1815'/0'/0/14", - "address": "addr1qxmgsvqkpgj7t205ldfwhfdr2tl0a5kgvpw4vtjgk8a50myug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ewsgvpfu5" - }, - { - "derivationPath": "1852'/1815'/0'/0/15", - "address": "addr1qx5z0rtexwq8jz535tv8nz3efllvnf8lujya0awkxwqe5s5ug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ewswkv6kk" - }, - { - "derivationPath": "1852'/1815'/0'/0/16", - "address": "addr1q8q9jffpvfnmkfyfwwa35p573yylertpk5hrfs4u5vl6gayug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ews6zgyl0" - }, - { - "derivationPath": "1852'/1815'/0'/0/17", - "address": "addr1q9a4u3x98wzwynfshdhmqcc2u69l3dwf49su0se0jk9qpryug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ewsu75tkp" - }, - { - "derivationPath": "1852'/1815'/0'/0/18", - "address": "addr1q99lkraghag7gdp3s4gc3kqntfrq6x36fv3agv3sm9d8nq5ug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ews0v4rev" - }, - { - "derivationPath": "1852'/1815'/0'/0/19", - "address": "addr1qxansyz3s6a0qnmtaqgu947t3d4z38upmw90ftpjn7khmjyug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ewsukwvd3" - }, - { - "derivationPath": "1852'/1815'/0'/0/20", - "address": "addr1qxk4jwewc0u79d7wtq0ghlya3wnunqfn90jj2sl298c3py5ug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ewsq4xyn4" - } - ], - "blockHeight": 10318811, - "syncHash": "[]_102", - "creationDate": "2024-04-18T14:08:42.000Z", - "operationsCount": 2, - "operations": [ - { - "id": "js:2:cardano:b5d4ee919fca83cc08710bf48736d97dd3b9a8086a7afa06c314aa11b3ff7823f2ea9a3f56e66d71cc89e0b50b7250c25794f4f12d345f48e95d5112571449ac:cardano-1c26109639901883bb9cd4b3aff3f3f7479dca4985ff9ea29fb0fc399e086278-OUT", - "hash": "1c26109639901883bb9cd4b3aff3f3f7479dca4985ff9ea29fb0fc399e086278", - "type": "OUT", - "senders": [ - "addr1qyqkk9ynvxg4zzn05wsl4mlxav0dcn4279z7vu59kvpw7rvug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ews7fq9gm" - ], - "recipients": [ - "addr1qx4tv7p6q4srm6c0kqf3sp2yp9aveuym530587lfcjsa0ag5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2qffgxst", - "addr1q8j6kym4fq4542req4aly2lv6p2wh7kvwvf5pfwlpuskzs5ug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ewsvwqaef" - ], - "accountId": "js:2:cardano:b5d4ee919fca83cc08710bf48736d97dd3b9a8086a7afa06c314aa11b3ff7823f2ea9a3f56e66d71cc89e0b50b7250c25794f4f12d345f48e95d5112571449ac:cardano", - "blockHeight": 10248857, - "extra": {}, - "date": "2024-04-29T09:17:42.000Z", - "value": "1168141", - "fee": "168141" - }, - { - "id": "js:2:cardano:b5d4ee919fca83cc08710bf48736d97dd3b9a8086a7afa06c314aa11b3ff7823f2ea9a3f56e66d71cc89e0b50b7250c25794f4f12d345f48e95d5112571449ac:cardano-ff319c730ad93ed5ec51679be45f818c01cace99be500fbee52f0c77164c4fe6-IN", - "hash": "ff319c730ad93ed5ec51679be45f818c01cace99be500fbee52f0c77164c4fe6", - "type": "IN", - "senders": [ - "addr1qx3ql93ec9xgjswywtztuv7dnhkpwx7twgn8y0w4af4g2mccs3erk7ngszhq3qt50hfnmkd4xfaze3p73dlxt7gpcwuqspf8l9" - ], - "recipients": [ - "addr1qyqkk9ynvxg4zzn05wsl4mlxav0dcn4279z7vu59kvpw7rvug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ews7fq9gm", - "addr1qyexe854sslqsdcrandhre6uv5e0asp5sde63m09awge3rgcs3erk7ngszhq3qt50hfnmkd4xfaze3p73dlxt7gpcwuqc2qq25" - ], - "accountId": "js:2:cardano:b5d4ee919fca83cc08710bf48736d97dd3b9a8086a7afa06c314aa11b3ff7823f2ea9a3f56e66d71cc89e0b50b7250c25794f4f12d345f48e95d5112571449ac:cardano", - "blockHeight": 10202804, - "extra": { - "memo": "TEST" - }, - "date": "2024-04-18T14:08:42.000Z", - "value": "25000000", - "fee": "170517" - } - ], - "pendingOperations": [], - "currencyId": "cardano", - "unitMagnitude": 6, - "lastSyncDate": "2024-05-15T15:06:18.219Z", - "balance": "23831859", - "spendableBalance": "23831859", - "balanceHistoryCache": { - "HOUR": { - "balances": [ - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859 - ], - "latestDate": 1715785200000 - }, - "DAY": { - "balances": [ - 0, - 25000000, - 25000000, - 25000000, - 25000000, - 25000000, - 25000000, - 25000000, - 25000000, - 25000000, - 25000000, - 25000000, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859 - ], - "latestDate": 1715724000000 - }, - "WEEK": { - "balances": [ - 0, - 25000000, - 25000000, - 23831859, - 23831859 - ], - "latestDate": 1715464800000 - } - }, - "xpub": "b5d4ee919fca83cc08710bf48736d97dd3b9a8086a7afa06c314aa11b3ff7823f2ea9a3f56e66d71cc89e0b50b7250c25794f4f12d345f48e95d5112571449ac", - "subAccounts": [], - "cardanoResources": { - "internalCredentials": [ - { - "isUsed": true, - "key": "e5ab1375482b4aa879057bf22becd054ebfacc731340a5df0f216142", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 1, - "index": 0 - } - }, - { - "isUsed": false, - "key": "bf1cad66e26f187c2dc255975f620ba25544ff51004d6f33b62f3d6d", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 1, - "index": 1 - } - }, - { - "isUsed": false, - "key": "95859875b076e9e8e03270dcfeda0757c494d36fa99f0f674c65e52e", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 1, - "index": 2 - } - }, - { - "isUsed": false, - "key": "c0f93ac61754fa073ad3c796fe9f4be208cb96ef97a72269f75bb208", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 1, - "index": 3 - } - }, - { - "isUsed": false, - "key": "9132b0b5d40a476d862383b05439719f66f570883644fb4c877c8b17", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 1, - "index": 4 - } - }, - { - "isUsed": false, - "key": "195bc04d130414393e98620c23e60db39cdbc6e1e3da1b3adba63f1c", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 1, - "index": 5 - } - }, - { - "isUsed": false, - "key": "b14e88412aa560c34c2f1866c9850be03cc54ecee4a9194adef5a476", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 1, - "index": 6 - } - }, - { - "isUsed": false, - "key": "b5d434393c28b2abc57e587ce62a24bcd1367e3593e4b6aaa670bf64", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 1, - "index": 7 - } - }, - { - "isUsed": false, - "key": "3240bf076d06a42ab2a21f16b31fa1252bcdbd7aa4697921af4f0e3c", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 1, - "index": 8 - } - }, - { - "isUsed": false, - "key": "e7f22628b2fc86f1695e94e4b82cf729c7b332355e231c2292db3833", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 1, - "index": 9 - } - }, - { - "isUsed": false, - "key": "b81bf07ba85b6d4ba8d480e928fff7703a2c6975f7af10c1900e4a2d", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 1, - "index": 10 - } - }, - { - "isUsed": false, - "key": "4c97edad2fb278bf3ef1f4f31a26dd3540ebd5fda6b548f1bccb263d", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 1, - "index": 11 - } - }, - { - "isUsed": false, - "key": "5c86578fc336e7feb383e46a8d0f3c5e50a34e83ea1aea051a8d23f4", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 1, - "index": 12 - } - }, - { - "isUsed": false, - "key": "2b07feb0898ed3348e623cd670cf51ad409b33f6b719c8d6a4f788e2", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 1, - "index": 13 - } - }, - { - "isUsed": false, - "key": "7737d47508da4644a611e741760c699647f9121169a121885c59ad74", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 1, - "index": 14 - } - }, - { - "isUsed": false, - "key": "31ed59e3697b0f0551e1ea4fcc2164f42b770765b45a626f65cebfe4", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 1, - "index": 15 - } - }, - { - "isUsed": false, - "key": "93edd70505abca80f20a99f22ce385cba05f4c8a7e02cfb55aef231f", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 1, - "index": 16 - } - }, - { - "isUsed": false, - "key": "da091ec54446c37ff6e3c7a1f0a9de007766dbfdb5a4e69f8c2dd013", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 1, - "index": 17 - } - }, - { - "isUsed": false, - "key": "ab46c6d207e5bf1081611e052a21bb5dd3be3704c1f50b6b4b678ede", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 1, - "index": 18 - } - }, - { - "isUsed": false, - "key": "679cb3c97cbb39e1bee5cb6657baeb48dd34389d6dcb3c3a57f4a7ef", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 1, - "index": 19 - } - }, - { - "isUsed": false, - "key": "a51e288aa17f6e34e267519c496469fa9811042e1f1a08f7ac62d131", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 1, - "index": 20 - } - } - ], - "externalCredentials": [ - { - "isUsed": true, - "key": "016b14936191510a6fa3a1faefe6eb1edc4eaaf145e67285b302ef0d", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 0, - "index": 0 - } - }, - { - "isUsed": false, - "key": "40505282265de3d05ac2bf31de6245c8f89c7ade43b04f4c51edc0da", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 0, - "index": 1 - } - }, - { - "isUsed": false, - "key": "02a28b0acb216dd607bf85a559ecb189bd15ec3596b5825fad291eb2", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 0, - "index": 2 - } - }, - { - "isUsed": false, - "key": "85ab647de313ffdb593525094e342c9edfe2de183f165a2cdb5429d1", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 0, - "index": 3 - } - }, - { - "isUsed": false, - "key": "dab2f5feef96f80750d82e11c972513dd2f557dc8fafd8c48b36eae2", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 0, - "index": 4 - } - }, - { - "isUsed": false, - "key": "78e49169f0620ef5b9651652565667b067b3232bb2698ee233c79b77", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 0, - "index": 5 - } - }, - { - "isUsed": false, - "key": "2f4de58e9cc405b6ddbb843e9b95758434d98f1e174477b1f3ac5476", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 0, - "index": 6 - } - }, - { - "isUsed": false, - "key": "28b7acf032feebf9d184213541073e83b4531791f43eee8543cfbb59", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 0, - "index": 7 - } - }, - { - "isUsed": false, - "key": "22cb7804d41060b766838640d7fa6cd07cb4de958609f5eee24f0526", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 0, - "index": 8 - } - }, - { - "isUsed": false, - "key": "5999c437c0be20bd1d2bef292994b1fc2b8a99a321c4b55cca68badc", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 0, - "index": 9 - } - }, - { - "isUsed": false, - "key": "656e3832f43e18dec8e124e4d7cf51b571992008fd26bdf3200156e5", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 0, - "index": 10 - } - }, - { - "isUsed": false, - "key": "8ae484a462e970ac6de23a181d54f84b3d18373e333510474241b2f7", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 0, - "index": 11 - } - }, - { - "isUsed": false, - "key": "d6f07218c05e04c5478a1fe96645d68e9630bebd3814f36a135234ae", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 0, - "index": 12 - } - }, - { - "isUsed": false, - "key": "ae29fe7ce00d3be3598cf4bd499a14909e44b2f8062c5f8ae31fcb25", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 0, - "index": 13 - } - }, - { - "isUsed": false, - "key": "b68830160a25e5a9f4fb52eba5a352fefed2c8605d562e48b1fb47ec", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 0, - "index": 14 - } - }, - { - "isUsed": false, - "key": "a8278d793380790a91a2d8798a394ffec9a4ffe489d7f5d633819a42", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 0, - "index": 15 - } - }, - { - "isUsed": false, - "key": "c05925216267bb248973bb1a069e8909fc8d61b52e34c2bca33fa474", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 0, - "index": 16 - } - }, - { - "isUsed": false, - "key": "7b5e44c53b84e24d30bb6fb0630ae68bf8b5c9a961c7c32f958a008c", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 0, - "index": 17 - } - }, - { - "isUsed": false, - "key": "4bfb0fa8bf51e43431855188d8135a460d1a3a4b23d43230d95a7982", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 0, - "index": 18 - } - }, - { - "isUsed": false, - "key": "bb38105186baf04f6be811c2d7cb8b6a289f81db8af4ac329fad7dc8", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 0, - "index": 19 - } - }, - { - "isUsed": false, - "key": "ad593b2ec3f9e2b7ce581e8bfc9d8ba7c981332be52543ea29f11092", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 0, - "index": 20 - } - } - ], - "delegation": { - "status": false, - "rewards": "0" - }, - "utxos": [ - { - "hash": "1c26109639901883bb9cd4b3aff3f3f7479dca4985ff9ea29fb0fc399e086278", - "index": 1, - "address": "01e5ab1375482b4aa879057bf22becd054ebfacc731340a5df0f2161429c4571e653ee7264e44ebb98448ddc7709cc321df5b7189be87c565d", - "amount": "23831859", - "tokens": [], - "paymentCredential": { - "key": "e5ab1375482b4aa879057bf22becd054ebfacc731340a5df0f216142", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 0, - "chain": 1, - "index": 0 - } - } - } - ], - "protocolParams": { - "minFeeA": "44", - "minFeeB": "155381", - "stakeKeyDeposit": "2000000", - "lovelacePerUtxoWord": "34482", - "collateralPercent": "150", - "priceSteps": "0.0000721", - "priceMem": "0.0577", - "languageView": { - "PlutusScriptV1": { - "sha2_256-memory-arguments": 4, - "equalsString-cpu-arguments-constant": 1000, - "cekDelayCost-exBudgetMemory": 100, - "lessThanEqualsByteString-cpu-arguments-intercept": 103599, - "divideInteger-memory-arguments-minimum": 1, - "appendByteString-cpu-arguments-slope": 621, - "blake2b-cpu-arguments-slope": 29175, - "iData-cpu-arguments": 150000, - "encodeUtf8-cpu-arguments-slope": 1000, - "unBData-cpu-arguments": 150000, - "multiplyInteger-cpu-arguments-intercept": 61516, - "cekConstCost-exBudgetMemory": 100, - "nullList-cpu-arguments": 150000, - "equalsString-cpu-arguments-intercept": 150000, - "trace-cpu-arguments": 150000, - "mkNilData-memory-arguments": 32, - "lengthOfByteString-cpu-arguments": 150000, - "cekBuiltinCost-exBudgetCPU": 29773, - "bData-cpu-arguments": 150000, - "subtractInteger-cpu-arguments-slope": 0, - "unIData-cpu-arguments": 150000, - "consByteString-memory-arguments-intercept": 0, - "divideInteger-memory-arguments-slope": 1, - "divideInteger-cpu-arguments-model-arguments-slope": 118, - "listData-cpu-arguments": 150000, - "headList-cpu-arguments": 150000, - "chooseData-memory-arguments": 32, - "equalsInteger-cpu-arguments-intercept": 136542, - "sha3_256-cpu-arguments-slope": 82363, - "sliceByteString-cpu-arguments-slope": 5000, - "unMapData-cpu-arguments": 150000, - "lessThanInteger-cpu-arguments-intercept": 179690, - "mkCons-cpu-arguments": 150000, - "appendString-memory-arguments-intercept": 0, - "modInteger-cpu-arguments-model-arguments-slope": 118, - "ifThenElse-cpu-arguments": 1, - "mkNilPairData-cpu-arguments": 150000, - "lessThanEqualsInteger-cpu-arguments-intercept": 145276, - "addInteger-memory-arguments-slope": 1, - "chooseList-memory-arguments": 32, - "constrData-memory-arguments": 32, - "decodeUtf8-cpu-arguments-intercept": 150000, - "equalsData-memory-arguments": 1, - "subtractInteger-memory-arguments-slope": 1, - "appendByteString-memory-arguments-intercept": 0, - "lengthOfByteString-memory-arguments": 4, - "headList-memory-arguments": 32, - "listData-memory-arguments": 32, - "consByteString-cpu-arguments-intercept": 150000, - "unIData-memory-arguments": 32, - "remainderInteger-memory-arguments-minimum": 1, - "bData-memory-arguments": 32, - "lessThanByteString-cpu-arguments-slope": 248, - "encodeUtf8-memory-arguments-intercept": 0, - "cekStartupCost-exBudgetCPU": 100, - "multiplyInteger-memory-arguments-intercept": 0, - "unListData-memory-arguments": 32, - "remainderInteger-cpu-arguments-model-arguments-slope": 118, - "cekVarCost-exBudgetCPU": 29773, - "remainderInteger-memory-arguments-slope": 1, - "cekForceCost-exBudgetCPU": 29773, - "sha2_256-cpu-arguments-slope": 29175, - "equalsInteger-memory-arguments": 1, - "indexByteString-memory-arguments": 1, - "addInteger-memory-arguments-intercept": 1, - "chooseUnit-cpu-arguments": 150000, - "sndPair-cpu-arguments": 150000, - "cekLamCost-exBudgetCPU": 29773, - "fstPair-cpu-arguments": 150000, - "quotientInteger-memory-arguments-minimum": 1, - "decodeUtf8-cpu-arguments-slope": 1000, - "lessThanInteger-memory-arguments": 1, - "lessThanEqualsInteger-cpu-arguments-slope": 1366, - "fstPair-memory-arguments": 32, - "modInteger-memory-arguments-intercept": 0, - "unConstrData-cpu-arguments": 150000, - "lessThanEqualsInteger-memory-arguments": 1, - "chooseUnit-memory-arguments": 32, - "sndPair-memory-arguments": 32, - "addInteger-cpu-arguments-intercept": 197209, - "decodeUtf8-memory-arguments-slope": 8, - "equalsData-cpu-arguments-intercept": 150000, - "mapData-cpu-arguments": 150000, - "mkPairData-cpu-arguments": 150000, - "quotientInteger-cpu-arguments-constant": 148000, - "consByteString-memory-arguments-slope": 1, - "cekVarCost-exBudgetMemory": 100, - "indexByteString-cpu-arguments": 150000, - "unListData-cpu-arguments": 150000, - "equalsInteger-cpu-arguments-slope": 1326, - "cekStartupCost-exBudgetMemory": 100, - "subtractInteger-cpu-arguments-intercept": 197209, - "divideInteger-cpu-arguments-model-arguments-intercept": 425507, - "divideInteger-memory-arguments-intercept": 0, - "cekForceCost-exBudgetMemory": 100, - "blake2b-cpu-arguments-intercept": 2477736, - "remainderInteger-cpu-arguments-constant": 148000, - "tailList-cpu-arguments": 150000, - "encodeUtf8-cpu-arguments-intercept": 150000, - "equalsString-cpu-arguments-slope": 1000, - "lessThanByteString-memory-arguments": 1, - "multiplyInteger-cpu-arguments-slope": 11218, - "appendByteString-cpu-arguments-intercept": 396231, - "lessThanEqualsByteString-cpu-arguments-slope": 248, - "modInteger-memory-arguments-slope": 1, - "addInteger-cpu-arguments-slope": 0, - "equalsData-cpu-arguments-slope": 10000, - "decodeUtf8-memory-arguments-intercept": 0, - "chooseList-cpu-arguments": 150000, - "constrData-cpu-arguments": 150000, - "equalsByteString-memory-arguments": 1, - "cekApplyCost-exBudgetCPU": 29773, - "quotientInteger-memory-arguments-slope": 1, - "verifySignature-cpu-arguments-intercept": 3345831, - "unMapData-memory-arguments": 32, - "mkCons-memory-arguments": 32, - "sliceByteString-memory-arguments-slope": 1, - "sha3_256-memory-arguments": 4, - "ifThenElse-memory-arguments": 1, - "mkNilPairData-memory-arguments": 32, - "equalsByteString-cpu-arguments-slope": 247, - "appendString-cpu-arguments-intercept": 150000, - "quotientInteger-cpu-arguments-model-arguments-slope": 118, - "cekApplyCost-exBudgetMemory": 100, - "equalsString-memory-arguments": 1, - "multiplyInteger-memory-arguments-slope": 1, - "cekBuiltinCost-exBudgetMemory": 100, - "remainderInteger-memory-arguments-intercept": 0, - "sha2_256-cpu-arguments-intercept": 2477736, - "remainderInteger-cpu-arguments-model-arguments-intercept": 425507, - "lessThanEqualsByteString-memory-arguments": 1, - "tailList-memory-arguments": 32, - "mkNilData-cpu-arguments": 150000, - "chooseData-cpu-arguments": 150000, - "unBData-memory-arguments": 32, - "blake2b-memory-arguments": 4, - "iData-memory-arguments": 32, - "nullList-memory-arguments": 32, - "cekDelayCost-exBudgetCPU": 29773, - "subtractInteger-memory-arguments-intercept": 1, - "lessThanByteString-cpu-arguments-intercept": 103599, - "consByteString-cpu-arguments-slope": 1000, - "appendByteString-memory-arguments-slope": 1, - "trace-memory-arguments": 32, - "divideInteger-cpu-arguments-constant": 148000, - "cekConstCost-exBudgetCPU": 29773, - "encodeUtf8-memory-arguments-slope": 8, - "quotientInteger-cpu-arguments-model-arguments-intercept": 425507, - "mapData-memory-arguments": 32, - "appendString-cpu-arguments-slope": 1000, - "modInteger-cpu-arguments-constant": 148000, - "verifySignature-cpu-arguments-slope": 1, - "unConstrData-memory-arguments": 32, - "quotientInteger-memory-arguments-intercept": 0, - "equalsByteString-cpu-arguments-constant": 150000, - "sliceByteString-memory-arguments-intercept": 0, - "mkPairData-memory-arguments": 32, - "equalsByteString-cpu-arguments-intercept": 112536, - "appendString-memory-arguments-slope": 1, - "lessThanInteger-cpu-arguments-slope": 497, - "modInteger-cpu-arguments-model-arguments-intercept": 425507, - "modInteger-memory-arguments-minimum": 1, - "sha3_256-cpu-arguments-intercept": 0, - "verifySignature-memory-arguments": 1, - "cekLamCost-exBudgetMemory": 100, - "sliceByteString-cpu-arguments-intercept": 150000 - } - } - } - }, - "swapHistory": [] - }, - "version": 1 - }, - { - "data": { - "id": "js:2:cardano:b4ee80fe8db05090bc2edcc3051e72fea0851c7905b9319c75160fa24f427ec32db3bba194dda5518d6f838cd036d9d0b96c5a6606e3c5668a51985673605776:cardano", - "seedIdentifier": "016b14936191510a6fa3a1faefe6eb1edc4eaaf145e67285b302ef0d", - "name": "Cardano 2", - "starred": false, - "used": true, - "derivationMode": "cardano", - "index": 1, - "freshAddress": "addr1qyjd47qfktpza4ycjddjadaarzwdumwrqws0xage8gvsmrq5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2qwzv6ac", - "freshAddressPath": "1852'/1815'/1'/0/1", - "freshAddresses": [ - { - "derivationPath": "1852'/1815'/1'/0/1", - "address": "addr1qyjd47qfktpza4ycjddjadaarzwdumwrqws0xage8gvsmrq5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2qwzv6ac" - }, - { - "derivationPath": "1852'/1815'/1'/0/2", - "address": "addr1qyflat7mhgnm9fq7lvhlysah4qetsfcystl9fa2wt39dr0c5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2qwg4q5g" - }, - { - "derivationPath": "1852'/1815'/1'/0/3", - "address": "addr1qylqelpccm8x04vffs90vhw88f5lfplruvjq0mh90qjvmjg5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2qep25u3" - }, - { - "derivationPath": "1852'/1815'/1'/0/4", - "address": "addr1q8fmt5knxv7kp8t0vk95m2yalv36x5zgtnrjxmz752ajvcc5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2qnc4ph4" - }, - { - "derivationPath": "1852'/1815'/1'/0/5", - "address": "addr1qxw5qevjz49qmfnayy4m9yr204yrer9xxqrymjaym2k0n7q5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2q86f2ta" - }, - { - "derivationPath": "1852'/1815'/1'/0/6", - "address": "addr1q8j55zeef0etz09nfeqdfrg929zpk0sy972kpl2k89jhtfq5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2qpzdste" - }, - { - "derivationPath": "1852'/1815'/1'/0/7", - "address": "addr1qxca4u4u0l8w7qftuqxnfswuvrdqdmr6xy53n3tdqmrqqms5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2ql8ukt8" - }, - { - "derivationPath": "1852'/1815'/1'/0/8", - "address": "addr1qy3knedr7qy5slzgyd9fzpq925mfr5v7vxz320s0q0x433s5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2q97f550" - }, - { - "derivationPath": "1852'/1815'/1'/0/9", - "address": "addr1qyc4j7ns09h60n7fcdrffj4h2alzyxn8vuwm76x24a965ks5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2q5km5g7" - }, - { - "derivationPath": "1852'/1815'/1'/0/10", - "address": "addr1q986ymkr04ap3md63r4kk8m6fuul9d3q9g6rdsxt46uv08q5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2qjxcuka" - }, - { - "derivationPath": "1852'/1815'/1'/0/11", - "address": "addr1q9eypsux879wacvp3esgvlndk2yylg8re5h66vnwdsmw25c5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2q2s6sn3" - }, - { - "derivationPath": "1852'/1815'/1'/0/12", - "address": "addr1q8edz6pdutnmvf9qxxsy52m6zj3wc33f3yedqfeh8z4a82s5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2q69a305" - }, - { - "derivationPath": "1852'/1815'/1'/0/13", - "address": "addr1q9enz0qud2vjkdc2rjv0336ya2nkfnxczf2r2lv7vk6m79c5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2q72h08j" - }, - { - "derivationPath": "1852'/1815'/1'/0/14", - "address": "addr1qxq22x7sw96y0el4lr66dxcd2e4zvqtp94su7q9384f3w4s5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2q8yrqnj" - }, - { - "derivationPath": "1852'/1815'/1'/0/15", - "address": "addr1q9ue9v6gu4xn3s8l7g9qy9yljyy0mkw2gj08308rzm6qdfs5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2qf3v7pj" - }, - { - "derivationPath": "1852'/1815'/1'/0/16", - "address": "addr1qynqu49hh3z8shlexev5mlgmwwt80v64xt6yjp7x87tj2ds5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2qjpktmx" - }, - { - "derivationPath": "1852'/1815'/1'/0/17", - "address": "addr1qy7r9f8hawd6hzjrfzenzhk4c8uh466qkpr7r8xytgq8m7g5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2q7ckv8h" - }, - { - "derivationPath": "1852'/1815'/1'/0/18", - "address": "addr1qyf7cftxx0hzrapu0gv2gzy2tdw0yjvrrafm4gfp38e2ljq5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2qpe24j4" - }, - { - "derivationPath": "1852'/1815'/1'/0/19", - "address": "addr1q9sgs68742fy44q4tdf8h4tku0verzhwj94uq403fv3c89s5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2q8nz37c" - }, - { - "derivationPath": "1852'/1815'/1'/0/20", - "address": "addr1q99dupz79gapjkuq386sdswhk0wrteyrsr60ye7k2y8ejeq5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2q2f6v8s" - } - ], - "blockHeight": 10318811, - "syncHash": "[]_102", - "creationDate": "2024-04-29T09:17:42.000Z", - "operationsCount": 1, - "operations": [ - { - "id": "js:2:cardano:b4ee80fe8db05090bc2edcc3051e72fea0851c7905b9319c75160fa24f427ec32db3bba194dda5518d6f838cd036d9d0b96c5a6606e3c5668a51985673605776:cardano-1c26109639901883bb9cd4b3aff3f3f7479dca4985ff9ea29fb0fc399e086278-IN", - "hash": "1c26109639901883bb9cd4b3aff3f3f7479dca4985ff9ea29fb0fc399e086278", - "type": "IN", - "senders": [ - "addr1qyqkk9ynvxg4zzn05wsl4mlxav0dcn4279z7vu59kvpw7rvug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ews7fq9gm" - ], - "recipients": [ - "addr1qx4tv7p6q4srm6c0kqf3sp2yp9aveuym530587lfcjsa0ag5ghmxjmdj4eylq78wur2gmm7gtqfq49v6mtdkaqwqzy2qffgxst", - "addr1q8j6kym4fq4542req4aly2lv6p2wh7kvwvf5pfwlpuskzs5ug4c7v5lwwfjwgn4mnpzgmhrhp8xry804kuvfh6ru2ewsvwqaef" - ], - "accountId": "js:2:cardano:b4ee80fe8db05090bc2edcc3051e72fea0851c7905b9319c75160fa24f427ec32db3bba194dda5518d6f838cd036d9d0b96c5a6606e3c5668a51985673605776:cardano", - "blockHeight": 10248857, - "extra": {}, - "date": "2024-04-29T09:17:42.000Z", - "value": "1000000", - "fee": "168141" - } - ], - "pendingOperations": [], - "currencyId": "cardano", - "unitMagnitude": 6, - "lastSyncDate": "2024-05-15T15:06:19.232Z", - "balance": "1000000", - "spendableBalance": "1000000", - "balanceHistoryCache": { - "HOUR": { - "balances": [ - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000 - ], - "latestDate": 1715785200000 - }, - "DAY": { - "balances": [ - 0, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000 - ], - "latestDate": 1715724000000 - }, - "WEEK": { - "balances": [ - 0, - 1000000, - 1000000 - ], - "latestDate": 1715464800000 - } - }, - "xpub": "b4ee80fe8db05090bc2edcc3051e72fea0851c7905b9319c75160fa24f427ec32db3bba194dda5518d6f838cd036d9d0b96c5a6606e3c5668a51985673605776", - "subAccounts": [], - "cardanoResources": { - "internalCredentials": [ - { - "isUsed": false, - "key": "a586c76d70ef0ff3e15f54ecae60cf1d1b381ab139052f655003375d", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 1, - "index": 0 - } - }, - { - "isUsed": false, - "key": "d1926643498f6c53ce0a78716713622a8b2cf8a176f39f5f3a16e17c", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 1, - "index": 1 - } - }, - { - "isUsed": false, - "key": "fbca96f776f4f9824964d2df85b494a789939492e1839d8a9497a673", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 1, - "index": 2 - } - }, - { - "isUsed": false, - "key": "b391dedf0a93dcd315dd23bdbb98088193cdabf140f287019847f4c8", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 1, - "index": 3 - } - }, - { - "isUsed": false, - "key": "5b3a6bf919383401e47b81696eea3b72d06169b53ad4074cce0ae711", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 1, - "index": 4 - } - }, - { - "isUsed": false, - "key": "e6c8a52637c51cbb6467dd41d3d5a866373a7999f00a5ff17949a51a", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 1, - "index": 5 - } - }, - { - "isUsed": false, - "key": "d5f78cf6018e8670b7fb563bc07433f83f224b9ccf2cf3d832e9f475", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 1, - "index": 6 - } - }, - { - "isUsed": false, - "key": "9d65c0e2f8dde5ebd230b7c82962a2ae3c113bade589ec3701cedafe", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 1, - "index": 7 - } - }, - { - "isUsed": false, - "key": "d0798007da8a61964f7df0988c37b883be22285b29116315ea2451dd", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 1, - "index": 8 - } - }, - { - "isUsed": false, - "key": "0aa5f1764a4423d0b6c0efb668235c9dc57996b9a8ca28f2cc1eea14", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 1, - "index": 9 - } - }, - { - "isUsed": false, - "key": "0e342f6cde2b5c05276213a0d054de2665eddd1b1f35b4fb3c4844c4", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 1, - "index": 10 - } - }, - { - "isUsed": false, - "key": "f4eedf23cefe4ac640cebc9564ed40fd4b220f277e634aec7c50a455", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 1, - "index": 11 - } - }, - { - "isUsed": false, - "key": "b60d47f7c6afcfaec1f392dd743b380134064950c2de26c7c2d426f6", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 1, - "index": 12 - } - }, - { - "isUsed": false, - "key": "3b0c03aed3451285397792c836455fd9f17ea415c7143b7d06470641", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 1, - "index": 13 - } - }, - { - "isUsed": false, - "key": "4502548e4b37e2d93dfe130b039c2d319943f9084913a0bab1ed00aa", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 1, - "index": 14 - } - }, - { - "isUsed": false, - "key": "2782410be0c79cf202d73f651bb1d4f2eda8791ff846ecaa2b8430bc", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 1, - "index": 15 - } - }, - { - "isUsed": false, - "key": "d9d17b1737cb8fece91807a46d00bf78f76d0a9075ebc9992fa90615", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 1, - "index": 16 - } - }, - { - "isUsed": false, - "key": "6c75292e0e4350a1eb7b379ab5302fc7788474ec6728e9f36e0f2326", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 1, - "index": 17 - } - }, - { - "isUsed": false, - "key": "6d5066764747b13f15c84765e36f3d4905d7fe99c2738b2e1011a2e7", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 1, - "index": 18 - } - }, - { - "isUsed": false, - "key": "c20a2414dcaa6a06df7d2d41c6752efda34c5a1f28fe3e566217e3ad", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 1, - "index": 19 - } - } - ], - "externalCredentials": [ - { - "isUsed": true, - "key": "aab6783a05603deb0fb013180544097accf09ba45f43fbe9c4a1d7f5", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 0, - "index": 0 - } - }, - { - "isUsed": false, - "key": "24daf809b2c22ed498935b2eb7bd189cde6dc303a0f375193a190d8c", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 0, - "index": 1 - } - }, - { - "isUsed": false, - "key": "13feafdbba27b2a41efb2ff243b7a832b8270482fe54f54e5c4ad1bf", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 0, - "index": 2 - } - }, - { - "isUsed": false, - "key": "3e0cfc38c6ce67d5894c0af65dc73a69f487e3e32407eee57824cdc9", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 0, - "index": 3 - } - }, - { - "isUsed": false, - "key": "d3b5d2d3333d609d6f658b4da89dfb23a350485cc7236c5ea2bb2663", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 0, - "index": 4 - } - }, - { - "isUsed": false, - "key": "9d406592154a0da67d212bb2906a7d483c8ca630064dcba4daacf9f8", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 0, - "index": 5 - } - }, - { - "isUsed": false, - "key": "e54a0b394bf2b13cb34e40d48d0551441b3e042f9560fd56396575a4", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 0, - "index": 6 - } - }, - { - "isUsed": false, - "key": "b1daf2bc7fceef012be00d34c1dc60da06ec7a312919c56d06c6006e", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 0, - "index": 7 - } - }, - { - "isUsed": false, - "key": "2369e5a3f009487c48234a910405553691d19e6185153e0f03cd58c6", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 0, - "index": 8 - } - }, - { - "isUsed": false, - "key": "31597a70796fa7cfc9c34694cab7577e221a67671dbf68caaf4baa5a", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 0, - "index": 9 - } - }, - { - "isUsed": false, - "key": "4fa26ec37d7a18edba88eb6b1f7a4f39f2b6202a3436c0cbaeb8c79c", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 0, - "index": 10 - } - }, - { - "isUsed": false, - "key": "7240c3863f8aeee1818e60867e6db2884fa0e3cd2fad326e6c36e553", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 0, - "index": 11 - } - }, - { - "isUsed": false, - "key": "f2d1682de2e7b624a031a04a2b7a14a2ec46298932d0273738abd3aa", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 0, - "index": 12 - } - }, - { - "isUsed": false, - "key": "73313c1c6a992b370a1c98f8c744eaa764ccd81254357d9e65b5bf17", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 0, - "index": 13 - } - }, - { - "isUsed": false, - "key": "80a51bd0717447e7f5f8f5a69b0d566a2601612d61cf00b13d531756", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 0, - "index": 14 - } - }, - { - "isUsed": false, - "key": "7992b348e54d38c0fff20a02149f9108fdd9ca449e78bce316f406a6", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 0, - "index": 15 - } - }, - { - "isUsed": false, - "key": "260e54b7bc44785ff936594dfd1b739677b35532f44907c63f972536", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 0, - "index": 16 - } - }, - { - "isUsed": false, - "key": "3c32a4f7eb9bab8a4348b3315ed5c1f97aeb40b047e19cc45a007df9", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 0, - "index": 17 - } - }, - { - "isUsed": false, - "key": "13ec256633ee21f43c7a18a4088a5b5cf249831f53baa12189f2afc8", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 0, - "index": 18 - } - }, - { - "isUsed": false, - "key": "608868feaa924ad4155b527bd576e3d9918aee916bc055f14b238396", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 0, - "index": 19 - } - }, - { - "isUsed": false, - "key": "4ade045e2a3a195b8089f506c1d7b3dc35e48380f4f267d6510f9964", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 0, - "index": 20 - } - } - ], - "delegation": { - "status": false, - "rewards": "0" - }, - "utxos": [ - { - "hash": "1c26109639901883bb9cd4b3aff3f3f7479dca4985ff9ea29fb0fc399e086278", - "index": 0, - "address": "01aab6783a05603deb0fb013180544097accf09ba45f43fbe9c4a1d7f51445f6696db2ae49f078eee0d48defc858120a959adadb6e81c01114", - "amount": "1000000", - "tokens": [], - "paymentCredential": { - "key": "aab6783a05603deb0fb013180544097accf09ba45f43fbe9c4a1d7f5", - "path": { - "purpose": 1852, - "coin": 1815, - "account": 1, - "chain": 0, - "index": 0 - } - } - } - ], - "protocolParams": { - "minFeeA": "44", - "minFeeB": "155381", - "stakeKeyDeposit": "2000000", - "lovelacePerUtxoWord": "34482", - "collateralPercent": "150", - "priceSteps": "0.0000721", - "priceMem": "0.0577", - "languageView": { - "PlutusScriptV1": { - "sha2_256-memory-arguments": 4, - "equalsString-cpu-arguments-constant": 1000, - "cekDelayCost-exBudgetMemory": 100, - "lessThanEqualsByteString-cpu-arguments-intercept": 103599, - "divideInteger-memory-arguments-minimum": 1, - "appendByteString-cpu-arguments-slope": 621, - "blake2b-cpu-arguments-slope": 29175, - "iData-cpu-arguments": 150000, - "encodeUtf8-cpu-arguments-slope": 1000, - "unBData-cpu-arguments": 150000, - "multiplyInteger-cpu-arguments-intercept": 61516, - "cekConstCost-exBudgetMemory": 100, - "nullList-cpu-arguments": 150000, - "equalsString-cpu-arguments-intercept": 150000, - "trace-cpu-arguments": 150000, - "mkNilData-memory-arguments": 32, - "lengthOfByteString-cpu-arguments": 150000, - "cekBuiltinCost-exBudgetCPU": 29773, - "bData-cpu-arguments": 150000, - "subtractInteger-cpu-arguments-slope": 0, - "unIData-cpu-arguments": 150000, - "consByteString-memory-arguments-intercept": 0, - "divideInteger-memory-arguments-slope": 1, - "divideInteger-cpu-arguments-model-arguments-slope": 118, - "listData-cpu-arguments": 150000, - "headList-cpu-arguments": 150000, - "chooseData-memory-arguments": 32, - "equalsInteger-cpu-arguments-intercept": 136542, - "sha3_256-cpu-arguments-slope": 82363, - "sliceByteString-cpu-arguments-slope": 5000, - "unMapData-cpu-arguments": 150000, - "lessThanInteger-cpu-arguments-intercept": 179690, - "mkCons-cpu-arguments": 150000, - "appendString-memory-arguments-intercept": 0, - "modInteger-cpu-arguments-model-arguments-slope": 118, - "ifThenElse-cpu-arguments": 1, - "mkNilPairData-cpu-arguments": 150000, - "lessThanEqualsInteger-cpu-arguments-intercept": 145276, - "addInteger-memory-arguments-slope": 1, - "chooseList-memory-arguments": 32, - "constrData-memory-arguments": 32, - "decodeUtf8-cpu-arguments-intercept": 150000, - "equalsData-memory-arguments": 1, - "subtractInteger-memory-arguments-slope": 1, - "appendByteString-memory-arguments-intercept": 0, - "lengthOfByteString-memory-arguments": 4, - "headList-memory-arguments": 32, - "listData-memory-arguments": 32, - "consByteString-cpu-arguments-intercept": 150000, - "unIData-memory-arguments": 32, - "remainderInteger-memory-arguments-minimum": 1, - "bData-memory-arguments": 32, - "lessThanByteString-cpu-arguments-slope": 248, - "encodeUtf8-memory-arguments-intercept": 0, - "cekStartupCost-exBudgetCPU": 100, - "multiplyInteger-memory-arguments-intercept": 0, - "unListData-memory-arguments": 32, - "remainderInteger-cpu-arguments-model-arguments-slope": 118, - "cekVarCost-exBudgetCPU": 29773, - "remainderInteger-memory-arguments-slope": 1, - "cekForceCost-exBudgetCPU": 29773, - "sha2_256-cpu-arguments-slope": 29175, - "equalsInteger-memory-arguments": 1, - "indexByteString-memory-arguments": 1, - "addInteger-memory-arguments-intercept": 1, - "chooseUnit-cpu-arguments": 150000, - "sndPair-cpu-arguments": 150000, - "cekLamCost-exBudgetCPU": 29773, - "fstPair-cpu-arguments": 150000, - "quotientInteger-memory-arguments-minimum": 1, - "decodeUtf8-cpu-arguments-slope": 1000, - "lessThanInteger-memory-arguments": 1, - "lessThanEqualsInteger-cpu-arguments-slope": 1366, - "fstPair-memory-arguments": 32, - "modInteger-memory-arguments-intercept": 0, - "unConstrData-cpu-arguments": 150000, - "lessThanEqualsInteger-memory-arguments": 1, - "chooseUnit-memory-arguments": 32, - "sndPair-memory-arguments": 32, - "addInteger-cpu-arguments-intercept": 197209, - "decodeUtf8-memory-arguments-slope": 8, - "equalsData-cpu-arguments-intercept": 150000, - "mapData-cpu-arguments": 150000, - "mkPairData-cpu-arguments": 150000, - "quotientInteger-cpu-arguments-constant": 148000, - "consByteString-memory-arguments-slope": 1, - "cekVarCost-exBudgetMemory": 100, - "indexByteString-cpu-arguments": 150000, - "unListData-cpu-arguments": 150000, - "equalsInteger-cpu-arguments-slope": 1326, - "cekStartupCost-exBudgetMemory": 100, - "subtractInteger-cpu-arguments-intercept": 197209, - "divideInteger-cpu-arguments-model-arguments-intercept": 425507, - "divideInteger-memory-arguments-intercept": 0, - "cekForceCost-exBudgetMemory": 100, - "blake2b-cpu-arguments-intercept": 2477736, - "remainderInteger-cpu-arguments-constant": 148000, - "tailList-cpu-arguments": 150000, - "encodeUtf8-cpu-arguments-intercept": 150000, - "equalsString-cpu-arguments-slope": 1000, - "lessThanByteString-memory-arguments": 1, - "multiplyInteger-cpu-arguments-slope": 11218, - "appendByteString-cpu-arguments-intercept": 396231, - "lessThanEqualsByteString-cpu-arguments-slope": 248, - "modInteger-memory-arguments-slope": 1, - "addInteger-cpu-arguments-slope": 0, - "equalsData-cpu-arguments-slope": 10000, - "decodeUtf8-memory-arguments-intercept": 0, - "chooseList-cpu-arguments": 150000, - "constrData-cpu-arguments": 150000, - "equalsByteString-memory-arguments": 1, - "cekApplyCost-exBudgetCPU": 29773, - "quotientInteger-memory-arguments-slope": 1, - "verifySignature-cpu-arguments-intercept": 3345831, - "unMapData-memory-arguments": 32, - "mkCons-memory-arguments": 32, - "sliceByteString-memory-arguments-slope": 1, - "sha3_256-memory-arguments": 4, - "ifThenElse-memory-arguments": 1, - "mkNilPairData-memory-arguments": 32, - "equalsByteString-cpu-arguments-slope": 247, - "appendString-cpu-arguments-intercept": 150000, - "quotientInteger-cpu-arguments-model-arguments-slope": 118, - "cekApplyCost-exBudgetMemory": 100, - "equalsString-memory-arguments": 1, - "multiplyInteger-memory-arguments-slope": 1, - "cekBuiltinCost-exBudgetMemory": 100, - "remainderInteger-memory-arguments-intercept": 0, - "sha2_256-cpu-arguments-intercept": 2477736, - "remainderInteger-cpu-arguments-model-arguments-intercept": 425507, - "lessThanEqualsByteString-memory-arguments": 1, - "tailList-memory-arguments": 32, - "mkNilData-cpu-arguments": 150000, - "chooseData-cpu-arguments": 150000, - "unBData-memory-arguments": 32, - "blake2b-memory-arguments": 4, - "iData-memory-arguments": 32, - "nullList-memory-arguments": 32, - "cekDelayCost-exBudgetCPU": 29773, - "subtractInteger-memory-arguments-intercept": 1, - "lessThanByteString-cpu-arguments-intercept": 103599, - "consByteString-cpu-arguments-slope": 1000, - "appendByteString-memory-arguments-slope": 1, - "trace-memory-arguments": 32, - "divideInteger-cpu-arguments-constant": 148000, - "cekConstCost-exBudgetCPU": 29773, - "encodeUtf8-memory-arguments-slope": 8, - "quotientInteger-cpu-arguments-model-arguments-intercept": 425507, - "mapData-memory-arguments": 32, - "appendString-cpu-arguments-slope": 1000, - "modInteger-cpu-arguments-constant": 148000, - "verifySignature-cpu-arguments-slope": 1, - "unConstrData-memory-arguments": 32, - "quotientInteger-memory-arguments-intercept": 0, - "equalsByteString-cpu-arguments-constant": 150000, - "sliceByteString-memory-arguments-intercept": 0, - "mkPairData-memory-arguments": 32, - "equalsByteString-cpu-arguments-intercept": 112536, - "appendString-memory-arguments-slope": 1, - "lessThanInteger-cpu-arguments-slope": 497, - "modInteger-cpu-arguments-model-arguments-intercept": 425507, - "modInteger-memory-arguments-minimum": 1, - "sha3_256-cpu-arguments-intercept": 0, - "verifySignature-memory-arguments": 1, - "cekLamCost-exBudgetMemory": 100, - "sliceByteString-cpu-arguments-intercept": 150000 - } - } - } - }, - "swapHistory": [] - }, - "version": 1 - }, - { - "data": { - "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "seedIdentifier": "047e89e2c6153732ee8f54bca17a4a74d3e1d9bddcb6149ed113394f79f585987d90e550639bf0fb76466141684bc43fbc90a24cd9f287fa4662f8ea2b889da1e7", - "name": "Ethereum 1", - "starred": false, - "used": true, - "derivationMode": "", - "index": 0, - "freshAddress": "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6", - "freshAddressPath": "44'/60'/0'/0/0", - "freshAddresses": [ - { - "address": "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6", - "derivationPath": "44'/60'/0'/0/0" - } - ], - "blockHeight": 19876166, - "syncHash": "0x391e2b5", - "creationDate": "2024-04-10T12:19:59.000Z", - "operationsCount": 3, - "operations": [ - { - "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x48831ea0324ee5921c0dca9dfad014be64867734ad76144822d35c853c87bf54-OUT", - "hash": "0x48831ea0324ee5921c0dca9dfad014be64867734ad76144822d35c853c87bf54", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0xda6807e9b25b1b8f5f4119429868eca096543e2146f2410421fd9d5bb2b6011c", - "blockHeight": 19666996, - "extra": {}, - "date": "2024-04-16T08:56:59.000Z", - "value": "242324232847000", - "fee": "232324232847000", - "transactionSequenceNumber": 0, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x6c8578a49bb09b1d1006f1d6bbf93292703665cabfd9e04238a6f244b4b5afec-NONE", - "hash": "0x6c8578a49bb09b1d1006f1d6bbf93292703665cabfd9e04238a6f244b4b5afec", - "type": "NONE", - "senders": [ - "0x84c9A36721eB21da9244Fe50177180D8f4a7cAF7" - ], - "recipients": [ - "0xdAC17F958D2ee523a2206206994597C13D831ec7" - ], - "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x16bdbd15adbb60b78f5e98abf9ae9ef4fd3a8db5654b50cf79c83d5fdd49cb58", - "blockHeight": 19659636, - "extra": {}, - "date": "2024-04-15T08:10:35.000Z", - "value": "0", - "fee": "716341757180607", - "transactionSequenceNumber": 287, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xa4849c653dcaa518bff5afae4ca1fc7ebeaabde79a18eabadbe6e5a823926057-IN", - "hash": "0xa4849c653dcaa518bff5afae4ca1fc7ebeaabde79a18eabadbe6e5a823926057", - "type": "IN", - "senders": [ - "0x4F008D1A92295d09294B778188Be9a74659515D3" - ], - "recipients": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x7701a0ad05d3522d610269400bcaa3090b0f0929222f3ea4ec6be15e699bd7c3", - "blockHeight": 19625186, - "extra": {}, - "date": "2024-04-10T12:19:59.000Z", - "value": "616385555132247", - "fee": "382291376376000", - "transactionSequenceNumber": 0, - "hasFailed": false, - "internalOperations": [] - } - ], - "pendingOperations": [], - "currencyId": "ethereum", - "unitMagnitude": 18, - "lastSyncDate": "2024-05-15T15:06:18.059Z", - "balance": "374061322285247", - "spendableBalance": "374061322285247", - "nfts": [], - "balanceHistoryCache": { - "HOUR": { - "balances": [ - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247 - ], - "latestDate": 1715785200000 - }, - "DAY": { - "balances": [ - 0, - 616385555132247, - 616385555132247, - 616385555132247, - 616385555132247, - 616385555132247, - 616385555132247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247 - ], - "latestDate": 1715724000000 - }, - "WEEK": { - "balances": [ - 0, - 616385555132247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247 - ], - "latestDate": 1715464800000 - } - }, - "subAccounts": [ - { - "type": "TokenAccountRaw", - "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", - "parentId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "starred": false, - "tokenId": "ethereum/erc20/usd_tether__erc20_", - "balance": "5000000", - "spendableBalance": "5000000", - "balanceHistoryCache": { - "HOUR": { - "balances": [ - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000 - ], - "latestDate": 1715785200000 - }, - "DAY": { - "balances": [ - 0, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000 - ], - "latestDate": 1715724000000 - }, - "WEEK": { - "balances": [ - 0, - 5000000, - 5000000, - 5000000, - 5000000 - ], - "latestDate": 1715464800000 - } - }, - "creationDate": "2024-04-29T07:38:00.717Z", - "operationsCount": 1, - "operations": [ - { - "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~-0x6c8578a49bb09b1d1006f1d6bbf93292703665cabfd9e04238a6f244b4b5afec-IN-i0", - "hash": "0x6c8578a49bb09b1d1006f1d6bbf93292703665cabfd9e04238a6f244b4b5afec", - "type": "IN", - "senders": [ - "0x84c9A36721eB21da9244Fe50177180D8f4a7cAF7" - ], - "recipients": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", - "blockHash": "0x16bdbd15adbb60b78f5e98abf9ae9ef4fd3a8db5654b50cf79c83d5fdd49cb58", - "blockHeight": 19659636, - "extra": {}, - "date": "2024-04-15T08:10:35.000Z", - "value": "5000000", - "fee": "716341757180607", - "contract": "0xdAC17F958D2ee523a2206206994597C13D831ec7", - "transactionSequenceNumber": 287 - } - ], - "pendingOperations": [], - "swapHistory": [] - } - ], - "swapHistory": [] - }, - "version": 1 - }, - { - "data": { - "id": "js:2:ethereum:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "seedIdentifier": "047e89e2c6153732ee8f54bca17a4a74d3e1d9bddcb6149ed113394f79f585987d90e550639bf0fb76466141684bc43fbc90a24cd9f287fa4662f8ea2b889da1e7", - "name": "Ethereum 2", - "starred": false, - "used": true, - "derivationMode": "", - "index": 1, - "freshAddress": "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad", - "freshAddressPath": "44'/60'/1'/0/0", - "freshAddresses": [ - { - "address": "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad", - "derivationPath": "44'/60'/1'/0/0" - } - ], - "blockHeight": 19876167, - "syncHash": "0x391e2b5", - "creationDate": "2024-04-16T08:56:59.000Z", - "operationsCount": 1, - "operations": [ - { - "id": "js:2:ethereum:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x48831ea0324ee5921c0dca9dfad014be64867734ad76144822d35c853c87bf54-IN", - "hash": "0x48831ea0324ee5921c0dca9dfad014be64867734ad76144822d35c853c87bf54", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0xda6807e9b25b1b8f5f4119429868eca096543e2146f2410421fd9d5bb2b6011c", - "blockHeight": 19666996, - "extra": {}, - "date": "2024-04-16T08:56:59.000Z", - "value": "10000000000000", - "fee": "232324232847000", - "transactionSequenceNumber": 0, - "hasFailed": false, - "internalOperations": [] - } - ], - "pendingOperations": [], - "currencyId": "ethereum", - "unitMagnitude": 18, - "lastSyncDate": "2024-05-15T15:06:17.297Z", - "balance": "10000000000000", - "spendableBalance": "10000000000000", - "nfts": [], - "balanceHistoryCache": { - "HOUR": { - "balances": [ - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000 - ], - "latestDate": 1715785200000 - }, - "DAY": { - "balances": [ - 0, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000 - ], - "latestDate": 1715724000000 - }, - "WEEK": { - "balances": [ - 0, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000 - ], - "latestDate": 1715464800000 - } - }, - "subAccounts": [], - "swapHistory": [] - }, - "version": 1 - }, - { - "data": { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "seedIdentifier": "047e89e2c6153732ee8f54bca17a4a74d3e1d9bddcb6149ed113394f79f585987d90e550639bf0fb76466141684bc43fbc90a24cd9f287fa4662f8ea2b889da1e7", - "name": "Ethereum Holesky 1", - "starred": false, - "used": true, - "derivationMode": "", - "index": 0, - "freshAddress": "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6", - "freshAddressPath": "44'/60'/0'/0/0", - "freshAddresses": [ - { - "address": "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6", - "derivationPath": "44'/60'/0'/0/0" - } - ], - "blockHeight": 1549701, - "syncHash": "0x1efd2c0a", - "creationDate": "2024-04-10T12:26:48.000Z", - "operationsCount": 68, - "operations": [ - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xe24edd9096b37c9624993d9884863825c5f9f03bbedd68da22fb4af959e72252-OUT", - "hash": "0xe24edd9096b37c9624993d9884863825c5f9f03bbedd68da22fb4af959e72252", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x41ac3aaa263d4bf4309e84e2c973b51a439774770f4de0cc7766439daa15af50", - "blockHeight": 1548235, - "extra": {}, - "date": "2024-05-15T09:41:24.000Z", - "value": "138423365182000", - "fee": "128423365182000", - "transactionSequenceNumber": 64, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x96aeb461e32a8875f3723e2ff72d10edf562cd8788f827edffb92bb7b00012b9-OUT", - "hash": "0x96aeb461e32a8875f3723e2ff72d10edf562cd8788f827edffb92bb7b00012b9", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x175ecf6a1cf55dca8e63eab6919aac6522eec66421bf394ae4efd12802057ab6", - "blockHeight": 1548210, - "extra": {}, - "date": "2024-05-15T09:36:24.000Z", - "value": "115169646274000", - "fee": "105169646274000", - "transactionSequenceNumber": 63, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xde9e6b215600e421a8ee80fcfd2c18fc004df9742ce982856ea9f519d4ecd969-OUT", - "hash": "0xde9e6b215600e421a8ee80fcfd2c18fc004df9742ce982856ea9f519d4ecd969", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x6146ba9b45a8a39063dfd971b9eae280a60135844022dcd22e0fafd1c16ce9ba", - "blockHeight": 1547997, - "extra": {}, - "date": "2024-05-15T08:49:36.000Z", - "value": "208025446003000", - "fee": "198025446003000", - "transactionSequenceNumber": 62, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x3f5199964daffa5368d56c5583b1a4f93ddc99a49b3ea50265bd78297c9c99fa-OUT", - "hash": "0x3f5199964daffa5368d56c5583b1a4f93ddc99a49b3ea50265bd78297c9c99fa", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x35a30ff5cbe68b39d6c6298b11d890034652b1457cf7022f7bb6b9f1884424d5", - "blockHeight": 1547977, - "extra": {}, - "date": "2024-05-15T08:45:12.000Z", - "value": "114734621383000", - "fee": "104734621383000", - "transactionSequenceNumber": 61, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x25bcb36b72a933dd60d5c6386f6022dbedc3dc891f792b74fe510ffbd1c54003-OUT", - "hash": "0x25bcb36b72a933dd60d5c6386f6022dbedc3dc891f792b74fe510ffbd1c54003", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x076fd41ee893232b17e682b858e78c4cdf0bc852cbc09812c688508f69f6fe6c", - "blockHeight": 1547968, - "extra": {}, - "date": "2024-05-15T08:43:12.000Z", - "value": "123068346076000", - "fee": "113068346076000", - "transactionSequenceNumber": 60, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x6444049af8714b1224c85b7c8b3236bf0fdc59aa876ceec4c8618a9d19eff539-OUT", - "hash": "0x6444049af8714b1224c85b7c8b3236bf0fdc59aa876ceec4c8618a9d19eff539", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x07723d2a4b136ae2f315f3daa4360687e8d2727288776a72d06e5376f80490f6", - "blockHeight": 1547957, - "extra": {}, - "date": "2024-05-15T08:39:48.000Z", - "value": "147043041814000", - "fee": "137043041814000", - "transactionSequenceNumber": 59, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x6c21e025c2d99fb17beee4123662d42e1487ea6a333b07e80db32478889d7f62-OUT", - "hash": "0x6c21e025c2d99fb17beee4123662d42e1487ea6a333b07e80db32478889d7f62", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x77a205e4d6a3bf01a14a9b01f11c08a500ad2469252c5dd6ecbcc63eaf97031e", - "blockHeight": 1547893, - "extra": {}, - "date": "2024-05-15T08:26:36.000Z", - "value": "142715634625000", - "fee": "132715634625000", - "transactionSequenceNumber": 58, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xb10696b47452f79fbfe0df44bbc7d5267809bd7ecee0435c1523f16e91c2165c-OUT", - "hash": "0xb10696b47452f79fbfe0df44bbc7d5267809bd7ecee0435c1523f16e91c2165c", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x9c6bdd0994112fe26d8568881e8f48c611a8068d198a72bcf9827e1e2217a907", - "blockHeight": 1547810, - "extra": {}, - "date": "2024-05-15T08:07:48.000Z", - "value": "213364569772000", - "fee": "203364569772000", - "transactionSequenceNumber": 57, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x048b58681131808e7f7180a745bb5476266a649de10fce94d9fc1af67796852f-OUT", - "hash": "0x048b58681131808e7f7180a745bb5476266a649de10fce94d9fc1af67796852f", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0xb24c49d7e8f324e57d8312b0072ea8268da5cd36099dcff5762764a81772fdc1", - "blockHeight": 1547795, - "extra": {}, - "date": "2024-05-15T08:04:24.000Z", - "value": "151991293696000", - "fee": "141991293696000", - "transactionSequenceNumber": 56, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x0c2173d88c4daa0c41c1a741ba634727e5a7efe6e1204c16f5354dc5d48b2041-OUT", - "hash": "0x0c2173d88c4daa0c41c1a741ba634727e5a7efe6e1204c16f5354dc5d48b2041", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x3178e8cb108a847232528aa7c9994f49fba788f790854729148f469b54e26af5", - "blockHeight": 1547780, - "extra": {}, - "date": "2024-05-15T08:01:12.000Z", - "value": "149390414947000", - "fee": "139390414947000", - "transactionSequenceNumber": 55, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x22b73aefe75d9514bca52680f09f1743533b4cd9028afc9cb4899dc61d63c896-OUT", - "hash": "0x22b73aefe75d9514bca52680f09f1743533b4cd9028afc9cb4899dc61d63c896", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x3a654ed1c31b2c44025f8d3a222298c5aba2bfd9d9c756dd5f957321cd807d2a", - "blockHeight": 1543145, - "extra": {}, - "date": "2024-05-14T14:43:00.000Z", - "value": "78261291217000", - "fee": "68261291217000", - "transactionSequenceNumber": 54, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xa33c02b924df1faf78a2bd5a5b22ebbbe06a117f4021657f07c60cb4130ba010-OUT", - "hash": "0xa33c02b924df1faf78a2bd5a5b22ebbbe06a117f4021657f07c60cb4130ba010", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0xf4123ff7d0798e150bdcb88720e4f5e5400c76692e03d1d930bb9de67859687e", - "blockHeight": 1543143, - "extra": {}, - "date": "2024-05-14T14:42:36.000Z", - "value": "74610191023000", - "fee": "64610191023000", - "transactionSequenceNumber": 53, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x3dfae3a0416574878970d867b5a555eca4aa4ef56ae74cc335789722fb60e7fb-OUT", - "hash": "0x3dfae3a0416574878970d867b5a555eca4aa4ef56ae74cc335789722fb60e7fb", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x689662513eb6bc84560c1a912b243abb07d00c09d4028ca57b09cf4295b6ca7f", - "blockHeight": 1536304, - "extra": {}, - "date": "2024-05-13T13:30:12.000Z", - "value": "101907983965000", - "fee": "91907983965000", - "transactionSequenceNumber": 52, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x12312e7823cbea90821db15b921f4ced2e8bc0e19d95e4210c8aab91fb35b445-OUT", - "hash": "0x12312e7823cbea90821db15b921f4ced2e8bc0e19d95e4210c8aab91fb35b445", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0xab36a70a37bdb2ac6bd92810e3cf3e9c232cc7ac6cffdb7e2215be5ef6035686", - "blockHeight": 1490307, - "extra": {}, - "date": "2024-05-06T15:39:36.000Z", - "value": "90480815569000", - "fee": "80480815569000", - "transactionSequenceNumber": 51, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x81c43f8d6dd8596072ae9321d151a5702a95d75a41de2292915266088744c333-OUT", - "hash": "0x81c43f8d6dd8596072ae9321d151a5702a95d75a41de2292915266088744c333", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x822d4fac967e51b69117970cfaa201b2304caf47f35eaa21c2685879681d851d", - "blockHeight": 1489820, - "extra": {}, - "date": "2024-05-06T13:57:00.000Z", - "value": "136755985069000", - "fee": "126755985069000", - "transactionSequenceNumber": 50, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x718da74cf57052a35bb67e31a230ccd34bc385c49f88f5ea63dd26c381d51952-OUT", - "hash": "0x718da74cf57052a35bb67e31a230ccd34bc385c49f88f5ea63dd26c381d51952", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x8493847deb100d9235c54873b0412426d9021cd7e7f649da59d9a294bf8f86d9", - "blockHeight": 1462236, - "extra": {}, - "date": "2024-05-02T10:07:48.000Z", - "value": "196760476777000", - "fee": "186760476777000", - "transactionSequenceNumber": 49, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x700ea3fdd6a7a8e5bad7320eec957fd3371345502fbe6a85f9f477b665317e89-OUT", - "hash": "0x700ea3fdd6a7a8e5bad7320eec957fd3371345502fbe6a85f9f477b665317e89", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x00a453fe1b6b72fea2c42611e9b4e008c769cc499905b2004868103f4a09fcd4", - "blockHeight": 1461612, - "extra": {}, - "date": "2024-05-02T07:51:36.000Z", - "value": "322333168546000", - "fee": "312333168546000", - "transactionSequenceNumber": 48, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xf2ca67ad3dea0789f4d7fb457da9595048e174d06e4d66d87158fe09d016ca77-OUT", - "hash": "0xf2ca67ad3dea0789f4d7fb457da9595048e174d06e4d66d87158fe09d016ca77", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x3c339365132ddd29ffb88bbce4b5b78d96fce5fa06b41c196fbe205df7f3d128", - "blockHeight": 1450563, - "extra": {}, - "date": "2024-04-30T16:22:12.000Z", - "value": "54312009742000", - "fee": "44312009742000", - "transactionSequenceNumber": 47, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x126080b034b5d171a0509e34042f7b57484e623c706f8a83874ac8f996a6ade8-OUT", - "hash": "0x126080b034b5d171a0509e34042f7b57484e623c706f8a83874ac8f996a6ade8", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x3c10ac72a2d317512890bd69777287248d7c02c34aa07e034a36d5ff39aaba1d", - "blockHeight": 1450562, - "extra": {}, - "date": "2024-04-30T16:22:00.000Z", - "value": "51532098895000", - "fee": "41532098895000", - "transactionSequenceNumber": 46, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xf8c5966e40856b9558cfb5d1eed7c976d281b706dc1b9682db5993cfa66190c4-OUT", - "hash": "0xf8c5966e40856b9558cfb5d1eed7c976d281b706dc1b9682db5993cfa66190c4", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x89ca50fda65dbf057b860806c8d810c30febcd443b6f3b9d245a98e62537f137", - "blockHeight": 1450129, - "extra": {}, - "date": "2024-04-30T14:46:48.000Z", - "value": "46219079029000", - "fee": "36219079029000", - "transactionSequenceNumber": 45, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xcc3dd59d804c96b514827c73eb167edc50c7f0c41c564fb2ae7316988f91c076-OUT", - "hash": "0xcc3dd59d804c96b514827c73eb167edc50c7f0c41c564fb2ae7316988f91c076", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x1eb65f11ce8b2bbb4fb569ea965c4b22bcab197089729ad6be563f592cdfd5e3", - "blockHeight": 1449930, - "extra": {}, - "date": "2024-04-30T14:03:12.000Z", - "value": "42903179533000", - "fee": "32903179533000", - "transactionSequenceNumber": 44, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xe679452d4c263cf809b2465ba627771d7ec17977b5c5b7c609291eee47a085b2-OUT", - "hash": "0xe679452d4c263cf809b2465ba627771d7ec17977b5c5b7c609291eee47a085b2", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x4313210ac8e1fb437a38753c6d89c878543e4ddea0acc86086850b61035d8f40", - "blockHeight": 1449915, - "extra": {}, - "date": "2024-04-30T13:59:36.000Z", - "value": "47560101187000", - "fee": "37560101187000", - "transactionSequenceNumber": 43, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x61de4775b995ab1e6b6e6e19c37af9d553e7f35158800935e4bd23cda7feaa93-OUT", - "hash": "0x61de4775b995ab1e6b6e6e19c37af9d553e7f35158800935e4bd23cda7feaa93", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x64ac6392516416b986138899ea6dbf385a1d741f93d077d5a94e52c4327cb32d", - "blockHeight": 1449738, - "extra": {}, - "date": "2024-04-30T13:21:12.000Z", - "value": "54467138506000", - "fee": "44467138506000", - "transactionSequenceNumber": 42, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xc97d9b73dcc01fc392ddf60d70c329e025da110d885e3449da07d2d8e7513bfb-OUT", - "hash": "0xc97d9b73dcc01fc392ddf60d70c329e025da110d885e3449da07d2d8e7513bfb", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0xc80ccf901d63cadafeac0c14a9af39f8a7dc1f1ef724570b6d2d923c85944dac", - "blockHeight": 1449597, - "extra": {}, - "date": "2024-04-30T12:51:24.000Z", - "value": "55536115786000", - "fee": "45536115786000", - "transactionSequenceNumber": 41, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x96d7f6c317bcd537793350f9faf4c188e39db5eefd0f71973755fd65db2574d8-OUT", - "hash": "0x96d7f6c317bcd537793350f9faf4c188e39db5eefd0f71973755fd65db2574d8", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x32f2b445c0079a7c28ed7c3dee666ae1f40bc6317c20aa68dc469c5d50cbe649", - "blockHeight": 1449589, - "extra": {}, - "date": "2024-04-30T12:49:24.000Z", - "value": "49360866538000", - "fee": "39360866538000", - "transactionSequenceNumber": 40, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x0f236bef396b0a1af958a59da209908186aeb62e4654f5ec6fd78b265b5e7b7b-OUT", - "hash": "0x0f236bef396b0a1af958a59da209908186aeb62e4654f5ec6fd78b265b5e7b7b", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0xd8601d2da9b4bf83d840e88e7d8d71f24373505778b904a1101647cd24965530", - "blockHeight": 1448212, - "extra": {}, - "date": "2024-04-30T07:52:48.000Z", - "value": "43338611278000", - "fee": "33338611278000", - "transactionSequenceNumber": 39, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x36d4c6d43dc6708be1ecd12693bd60a413201fd4b18e427d52339c3522d4c934-OUT", - "hash": "0x36d4c6d43dc6708be1ecd12693bd60a413201fd4b18e427d52339c3522d4c934", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x689b650b220cc13705a42f20d42f04d286f9ee009ac297451171292ad084bd4e", - "blockHeight": 1442121, - "extra": {}, - "date": "2024-04-29T09:51:12.000Z", - "value": "69986911579000", - "fee": "59986911579000", - "transactionSequenceNumber": 38, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xc1b059188c597f904bacfa7a4d8412b226971005b728a73b3e993567742a06c2-OUT", - "hash": "0xc1b059188c597f904bacfa7a4d8412b226971005b728a73b3e993567742a06c2", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x155d8dc76dc82932d453ed039a8748d5461800631c93ba079920c87435d12c98", - "blockHeight": 1442103, - "extra": {}, - "date": "2024-04-29T09:47:12.000Z", - "value": "75256671172000", - "fee": "65256671172000", - "transactionSequenceNumber": 37, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x3b4c7de82d97960473d5cabf7ff56621f5e30f73a9968c2b8e62066b2f82cd00-OUT", - "hash": "0x3b4c7de82d97960473d5cabf7ff56621f5e30f73a9968c2b8e62066b2f82cd00", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x727202242bf1709873ca97df1c9a5bf9d5a6029c45b9c16a68120bb4a12b8571", - "blockHeight": 1442096, - "extra": {}, - "date": "2024-04-29T09:45:48.000Z", - "value": "74676959221000", - "fee": "64676959221000", - "transactionSequenceNumber": 36, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x11752dd8229198ee238b12ea924bdc23a355c8da13d523ed36f06f13b4be5500-OUT", - "hash": "0x11752dd8229198ee238b12ea924bdc23a355c8da13d523ed36f06f13b4be5500", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x45cdbb8ad641fb8fe781d26fe122fbea51c08d562ff56c64f4b943de50b639d6", - "blockHeight": 1442091, - "extra": {}, - "date": "2024-04-29T09:44:48.000Z", - "value": "83695361509000", - "fee": "73695361509000", - "transactionSequenceNumber": 35, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x3196a528e7622b703b412fc6b5dc74524646638551adc3ca5cf040429a1a8a90-OUT", - "hash": "0x3196a528e7622b703b412fc6b5dc74524646638551adc3ca5cf040429a1a8a90", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x3dbb005c8102f3536b63ef2eca594162f79cc4f05affd98eb59e62637956088d", - "blockHeight": 1441872, - "extra": {}, - "date": "2024-04-29T08:56:48.000Z", - "value": "59705053909000", - "fee": "49705053909000", - "transactionSequenceNumber": 34, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x2da67ae076d80a245db660f3687b81380bf632d09967053aafdfd2ae86c1caef-OUT", - "hash": "0x2da67ae076d80a245db660f3687b81380bf632d09967053aafdfd2ae86c1caef", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x4dc38934ae07417026a9eed26520ac4b72382623064731e032b7467e5f955af8", - "blockHeight": 1423075, - "extra": {}, - "date": "2024-04-26T12:09:00.000Z", - "value": "73652230348000", - "fee": "63652230348000", - "transactionSequenceNumber": 33, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xe0601b2149dff79bf5ee6705939be159f0dc57b9296550c8b81c3309ca045c7b-OUT", - "hash": "0xe0601b2149dff79bf5ee6705939be159f0dc57b9296550c8b81c3309ca045c7b", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x12255f0115c0cdaac742e59dd5916cdea3096469c23ca60b55198e227622c86c", - "blockHeight": 1422955, - "extra": {}, - "date": "2024-04-26T11:43:48.000Z", - "value": "73560988435000", - "fee": "63560988435000", - "transactionSequenceNumber": 32, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x4d96bfa58c0ba19bcbab94ec965542f3fee1520fd8c2a5f0f223231b8aa8dbb4-OUT", - "hash": "0x4d96bfa58c0ba19bcbab94ec965542f3fee1520fd8c2a5f0f223231b8aa8dbb4", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0xa86307488a98d1546fcdefff7ccbe2e5c2b724fd09363653f141ec00debad1be", - "blockHeight": 1409289, - "extra": {}, - "date": "2024-04-24T09:55:36.000Z", - "value": "70743364948000", - "fee": "60743364948000", - "transactionSequenceNumber": 31, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xa389f6007fd10a13d141e1ef02c852f2e89a0fc72e914cc135dcfb188d4f301a-OUT", - "hash": "0xa389f6007fd10a13d141e1ef02c852f2e89a0fc72e914cc135dcfb188d4f301a", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x8052aa2a74378584f5c5790c787e9a576fb28ac959348a77ee7d07c33c20d4d9", - "blockHeight": 1409282, - "extra": {}, - "date": "2024-04-24T09:54:12.000Z", - "value": "69999667210000", - "fee": "59999667210000", - "transactionSequenceNumber": 30, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x55d9cde2c34595dda3aaa6742c1230eb80d0349904cefed2a5f89b14a8833502-OUT", - "hash": "0x55d9cde2c34595dda3aaa6742c1230eb80d0349904cefed2a5f89b14a8833502", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0xa4b5370fd4db21c2adc2e23b4ca255b4e2dce8823e8ae35ad404c0ed56ee2ce7", - "blockHeight": 1409273, - "extra": {}, - "date": "2024-04-24T09:52:24.000Z", - "value": "60599940601000", - "fee": "50599940601000", - "transactionSequenceNumber": 29, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x2e9e55a51187dfa1eb59a5da205ff1d9b3b366801641db6aabce5ebc063da47b-OUT", - "hash": "0x2e9e55a51187dfa1eb59a5da205ff1d9b3b366801641db6aabce5ebc063da47b", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x44a4214eba5c0f220295c47b7925a6b494d4592e0e014fbda8635404dcb73512", - "blockHeight": 1409163, - "extra": {}, - "date": "2024-04-24T09:27:36.000Z", - "value": "149278054735000", - "fee": "49278054735000", - "transactionSequenceNumber": 28, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x859fd5555a15ed7314b958c4c7b58c60bcfd0960cd358f387975e33d0096ac41-OUT", - "hash": "0x859fd5555a15ed7314b958c4c7b58c60bcfd0960cd358f387975e33d0096ac41", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0xf61fbf52512e5f8d3b0cf2e3bf461d43bb3a777c7a091d0cfaa43133727987ca", - "blockHeight": 1409112, - "extra": {}, - "date": "2024-04-24T09:16:12.000Z", - "value": "60392966092000", - "fee": "50392966092000", - "transactionSequenceNumber": 27, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x73bdf7f4c3eca74a75d851ff7810427a7006e608371af0dc495f87f91ea86f1d-OUT", - "hash": "0x73bdf7f4c3eca74a75d851ff7810427a7006e608371af0dc495f87f91ea86f1d", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x051c61b2086046d4b5bbeb7d7573bc1a3bf332504dff0c61f5465022c5aa6a7f", - "blockHeight": 1397247, - "extra": {}, - "date": "2024-04-22T13:29:12.000Z", - "value": "133373033938000", - "fee": "123373033938000", - "transactionSequenceNumber": 26, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xbc5e07605d9c5937cd94ee95663c4de986db769d89c7a50589d2e0606074e108-OUT", - "hash": "0xbc5e07605d9c5937cd94ee95663c4de986db769d89c7a50589d2e0606074e108", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x0bb4079d00e4077e91b8a0e794803c85cf8b142d1b62b838d3aeb562f3a70b74", - "blockHeight": 1365218, - "extra": {}, - "date": "2024-04-17T14:30:24.000Z", - "value": "97963076068000", - "fee": "87963076068000", - "transactionSequenceNumber": 25, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xa104c88f2607f7469b5f5508de62162f21f316715ba5494b22506d99045c5b9c-OUT", - "hash": "0xa104c88f2607f7469b5f5508de62162f21f316715ba5494b22506d99045c5b9c", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x76398f6f1f72c0348aaf1784b823d9fa203f32c9137108ec86ba43666d7fc485", - "blockHeight": 1365214, - "extra": {}, - "date": "2024-04-17T14:29:24.000Z", - "value": "88437375835000", - "fee": "78437375835000", - "transactionSequenceNumber": 24, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x32cf01deadb899014b9d2f76d0fddb58c725db16f1b457831a559bf91291ed18-OUT", - "hash": "0x32cf01deadb899014b9d2f76d0fddb58c725db16f1b457831a559bf91291ed18", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x86f460faf002a93077fb4110b56c40e7d6ca2d8577ed31d66e5b3fbd5d7a0d42", - "blockHeight": 1365195, - "extra": {}, - "date": "2024-04-17T14:24:48.000Z", - "value": "82072200697000", - "fee": "72072200697000", - "transactionSequenceNumber": 23, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x9f562f008aa8dfbae8b25641a723662d4b8dadd268f2978ab526c4b4429947d6-OUT", - "hash": "0x9f562f008aa8dfbae8b25641a723662d4b8dadd268f2978ab526c4b4429947d6", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x509aa13f3c94be4e2918c4b08bb6616ba188c14b643656a2872e3aceb6fdd3fb", - "blockHeight": 1365177, - "extra": {}, - "date": "2024-04-17T14:20:48.000Z", - "value": "93076429975000", - "fee": "83076429975000", - "transactionSequenceNumber": 22, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x59b36836e528f73d61874b2c607a30a3fbbe58e32de6011df2a8ce77f673f046-OUT", - "hash": "0x59b36836e528f73d61874b2c607a30a3fbbe58e32de6011df2a8ce77f673f046", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0xf91ca75ac65618d78c0b6696cf8e753a70fc0ffa64c4861d96c737bbf29a00b4", - "blockHeight": 1364835, - "extra": {}, - "date": "2024-04-17T13:02:00.000Z", - "value": "86871977287000", - "fee": "76871977287000", - "transactionSequenceNumber": 21, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x7dbc92bc7892bcb9fe9235b613df4c3176dfb47cfba908b538ea9b070ac7329b-OUT", - "hash": "0x7dbc92bc7892bcb9fe9235b613df4c3176dfb47cfba908b538ea9b070ac7329b", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x388ca8211c8a32b950c8ae3bde9d79e46a037e27af579f17f97cf702b1c1e6ef", - "blockHeight": 1364819, - "extra": {}, - "date": "2024-04-17T12:58:24.000Z", - "value": "79811451640000", - "fee": "69811451640000", - "transactionSequenceNumber": 20, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x58c5e3134e1e158c69362e5af6c003a4cc37b1b5b783d844489ee0befca32a53-OUT", - "hash": "0x58c5e3134e1e158c69362e5af6c003a4cc37b1b5b783d844489ee0befca32a53", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0xa5a7f900303d644cbf9a4049d1f0b01a828bb45c8b42cb7ef7192675b954b910", - "blockHeight": 1364661, - "extra": {}, - "date": "2024-04-17T12:24:24.000Z", - "value": "71499841648000", - "fee": "61499841648000", - "transactionSequenceNumber": 19, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x6f9e06cb749dc28e60127d9b58a2ff967bfa666cbd3e3be8cfc03b41823b20db-OUT", - "hash": "0x6f9e06cb749dc28e60127d9b58a2ff967bfa666cbd3e3be8cfc03b41823b20db", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x5f886fac5a1e68afde4c4258d22ca22c6cc2871b8c900174df51d57f4c809a27", - "blockHeight": 1363910, - "extra": {}, - "date": "2024-04-17T09:35:36.000Z", - "value": "83604519919000", - "fee": "73604519919000", - "transactionSequenceNumber": 18, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x1498a38e4564942997c6778b77208085343507f6898cedd2d5b054b5b4534739-OUT", - "hash": "0x1498a38e4564942997c6778b77208085343507f6898cedd2d5b054b5b4534739", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x558bdbe2bf09ae3e14f7bf7d4f850e586d50d89684455efed8d34eb64d080909", - "blockHeight": 1359060, - "extra": {}, - "date": "2024-04-16T15:42:00.000Z", - "value": "116546777890000", - "fee": "106546777890000", - "transactionSequenceNumber": 17, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x456b194be1fea8b9209e294f786e17f3980a30982b1aa0c7ce7177061b2eb7a1-OUT", - "hash": "0x456b194be1fea8b9209e294f786e17f3980a30982b1aa0c7ce7177061b2eb7a1", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0xb51e77e7169af6f83364ee1ac83244f2416345905e5fb3bdd45a4d4f4bca743e", - "blockHeight": 1358372, - "extra": {}, - "date": "2024-04-16T13:07:00.000Z", - "value": "92731513480000", - "fee": "82731513480000", - "transactionSequenceNumber": 16, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xe14c217b0ed858e948eeab1390bcfb7adc22c5ddcdacdf4c58a1e08f851e35c2-OUT", - "hash": "0xe14c217b0ed858e948eeab1390bcfb7adc22c5ddcdacdf4c58a1e08f851e35c2", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0xa3fa419c2d172f496e5df45530b296fe4e7980fc10e50d8d38915eafe1d3b15e", - "blockHeight": 1358368, - "extra": {}, - "date": "2024-04-16T13:06:12.000Z", - "value": "86315001217000", - "fee": "76315001217000", - "transactionSequenceNumber": 15, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xa05132198ac05c9bbaa93815d21f684b36c0114b3ec94d3898d0d537dc559bdd-OUT", - "hash": "0xa05132198ac05c9bbaa93815d21f684b36c0114b3ec94d3898d0d537dc559bdd", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x1e144a1e18e0ff3eca7b8435ea94307eb08a5f29e7a41a0ae809da870a34cb05", - "blockHeight": 1358203, - "extra": {}, - "date": "2024-04-16T12:30:12.000Z", - "value": "67042363966000", - "fee": "57042363966000", - "transactionSequenceNumber": 14, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x767b3f49b327f8973441b6d3da3e936caaf1ed75db7fd3b16640781a537c2ea2-OUT", - "hash": "0x767b3f49b327f8973441b6d3da3e936caaf1ed75db7fd3b16640781a537c2ea2", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x0278573c04d30488ee991565c449054251c42e763a00a277778f750caa167dc3", - "blockHeight": 1358198, - "extra": {}, - "date": "2024-04-16T12:29:00.000Z", - "value": "79990386235000", - "fee": "69990386235000", - "transactionSequenceNumber": 13, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xf9a360549970073fcb3d61e1937483ac8776274e5dc70e07031421b055eee86c-OUT", - "hash": "0xf9a360549970073fcb3d61e1937483ac8776274e5dc70e07031421b055eee86c", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x32bfc07b9d44845bffce6b0a54bba2cf19128c0bd1a3e58bd1274c1e5221c9e4", - "blockHeight": 1358122, - "extra": {}, - "date": "2024-04-16T12:11:48.000Z", - "value": "75808360576000", - "fee": "65808360576000", - "transactionSequenceNumber": 12, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x4f8b5ac603712dae2b1ea3c41947bcf1bf0be85e3a0e0cfe5145d03043d4d521-OUT", - "hash": "0x4f8b5ac603712dae2b1ea3c41947bcf1bf0be85e3a0e0cfe5145d03043d4d521", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x045fec036fa7345aa09b8af9cc982e5a868e22e49dace15e98a6852e685d4d9b", - "blockHeight": 1357346, - "extra": {}, - "date": "2024-04-16T09:18:48.000Z", - "value": "58050167242000", - "fee": "48050167242000", - "transactionSequenceNumber": 11, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x90cdd88c6252475183b4b2a44071978339119d9e4ea049f7a9dd65a87839ce84-OUT", - "hash": "0x90cdd88c6252475183b4b2a44071978339119d9e4ea049f7a9dd65a87839ce84", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0xacd629cdbea82216c33ba44b4e1c83c905a9a90dad705ab4f240a590077ccb9d", - "blockHeight": 1357270, - "extra": {}, - "date": "2024-04-16T09:02:24.000Z", - "value": "72944112952000", - "fee": "62944112952000", - "transactionSequenceNumber": 10, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xa891e881818af7570d73fccf52802a957dbfbde3d2b46dfac8aaf0b1238e347b-OUT", - "hash": "0xa891e881818af7570d73fccf52802a957dbfbde3d2b46dfac8aaf0b1238e347b", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x5ad8db1d474e9d6101f70c464bdbd8f842cb746c70872c6b63427450299c9b44", - "blockHeight": 1357267, - "extra": {}, - "date": "2024-04-16T09:01:36.000Z", - "value": "75755108125000", - "fee": "65755108125000", - "transactionSequenceNumber": 9, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x2815a9cb2900227812d5ddf5dac20dd5311eb720b723e600af68e111ba81676e-OUT", - "hash": "0x2815a9cb2900227812d5ddf5dac20dd5311eb720b723e600af68e111ba81676e", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0xb9e7d99d816f79188deb85e7c996ee68aef98d8d3671923c3a0bc1e9fc339f12", - "blockHeight": 1352544, - "extra": {}, - "date": "2024-04-15T15:42:24.000Z", - "value": "62580394069000", - "fee": "52580394069000", - "transactionSequenceNumber": 8, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x5c5622aaa4173bef68127a42565e9971577b33c18c4c6dea531711234fe7b6b4-OUT", - "hash": "0x5c5622aaa4173bef68127a42565e9971577b33c18c4c6dea531711234fe7b6b4", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0xef44280971673302b1a5b08e13472a215bb9c21a8c463c5601e901afcfee8158", - "blockHeight": 1326144, - "extra": {}, - "date": "2024-04-11T15:30:48.000Z", - "value": "119553213910000", - "fee": "109553213910000", - "transactionSequenceNumber": 7, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x46e8357ee53468894a66584d35a33f22c64924b46ca865db313ef8e39bf5962a-OUT", - "hash": "0x46e8357ee53468894a66584d35a33f22c64924b46ca865db313ef8e39bf5962a", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x57c1bc247f79444b85a391d4dbf90a52120e4a9847d8750b49100b1492c30374", - "blockHeight": 1326142, - "extra": {}, - "date": "2024-04-11T15:30:24.000Z", - "value": "104763796015000", - "fee": "94763796015000", - "transactionSequenceNumber": 6, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xc6d1e2b972393ac28961ec204a94688a294709c2b6e081e250b26731fb41accf-OUT", - "hash": "0xc6d1e2b972393ac28961ec204a94688a294709c2b6e081e250b26731fb41accf", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x009ff89ae7bb93ce0f8ba2509e99a351d4d2318600f12d68429262323792d953", - "blockHeight": 1326133, - "extra": {}, - "date": "2024-04-11T15:28:00.000Z", - "value": "130481372011000", - "fee": "120481372011000", - "transactionSequenceNumber": 5, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x3a32ced3d4ba961d3b7364008a2a0ef8f46d2abfcd8716613c6ee48f3179a603-IN", - "hash": "0x3a32ced3d4ba961d3b7364008a2a0ef8f46d2abfcd8716613c6ee48f3179a603", - "type": "IN", - "senders": [ - "0x6Cc9397c3B38739daCbfaA68EaD5F5D77Ba5F455" - ], - "recipients": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x90d93ecfb529dffb728d40fe2f43bdb1dd180bce64245b48f411cf5d78ddb942", - "blockHeight": 1326124, - "extra": {}, - "date": "2024-04-11T15:25:48.000Z", - "value": "2345850562500000000", - "fee": "208352591286000", - "transactionSequenceNumber": 824749, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x79badad6d55e2ae48356aa104d9a1b361832bf0388487a3605e489b921ddb082-OUT", - "hash": "0x79badad6d55e2ae48356aa104d9a1b361832bf0388487a3605e489b921ddb082", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x93d05599f74a42b0c1e172cd739fca66d2145c5613f2a93bcc24b7c59dd0e9ab", - "blockHeight": 1326063, - "extra": {}, - "date": "2024-04-11T15:12:24.000Z", - "value": "107025141367000", - "fee": "97025141367000", - "transactionSequenceNumber": 4, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x028614b4ba199549debde64a883b2ae5f9e3e66d1ec58e39d4aa9f9abf643c54-OUT", - "hash": "0x028614b4ba199549debde64a883b2ae5f9e3e66d1ec58e39d4aa9f9abf643c54", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x78a7da74953541d4eb15b0497e5b29ef7b829bc2f90b54362ca4476e3414cdac", - "blockHeight": 1326061, - "extra": {}, - "date": "2024-04-11T15:12:00.000Z", - "value": "95533493773000", - "fee": "85533493773000", - "transactionSequenceNumber": 3, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x0468dfe8e7ec1e231b1e53703b53935108023b9af8153fe67c7bb5cce0095f18-OUT", - "hash": "0x0468dfe8e7ec1e231b1e53703b53935108023b9af8153fe67c7bb5cce0095f18", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x898e95a0d06cd92c02461be406d7a823c6d5dfcc907a1d8a7b0a8eed7e23695c", - "blockHeight": 1326050, - "extra": {}, - "date": "2024-04-11T15:09:00.000Z", - "value": "208818148243000", - "fee": "108818148243000", - "transactionSequenceNumber": 2, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xef91af8c2a0822ecd4341c1a8294b5a6493dc603a23282e66688bfc34952ad58-OUT", - "hash": "0xef91af8c2a0822ecd4341c1a8294b5a6493dc603a23282e66688bfc34952ad58", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0xdf80f1c3211c95a2b3b1fa45a5f72011ac78c7105abdf050f9474bc88be31482", - "blockHeight": 1325836, - "extra": {}, - "date": "2024-04-11T14:23:48.000Z", - "value": "127857570502000", - "fee": "117857570502000", - "transactionSequenceNumber": 1, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x14139eac4a9d771c08e480cfa72fbb5a7c107c53041414374e72f13e630123aa-OUT", - "hash": "0x14139eac4a9d771c08e480cfa72fbb5a7c107c53041414374e72f13e630123aa", - "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x749e65827d4d4f6991cc7604b69732f08da7886a69ed3d889715528f32688bfa", - "blockHeight": 1318759, - "extra": {}, - "date": "2024-04-10T12:30:36.000Z", - "value": "1900022229305245000", - "fee": "22229305245000", - "transactionSequenceNumber": 0, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xd6f92ebe60c4887c51d9279df12dbbae4db310092862f1aaeecb665c062aa811-IN", - "hash": "0xd6f92ebe60c4887c51d9279df12dbbae4db310092862f1aaeecb665c062aa811", - "type": "IN", - "senders": [ - "0xB06D5f081aC6803A815D86385Eba86CE5cf657DB" - ], - "recipients": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0x289417dfdbbb5d3f8d3711b175a9bd65f47175a0707c17124ef29227e21325f4", - "blockHeight": 1318745, - "extra": {}, - "date": "2024-04-10T12:27:36.000Z", - "value": "1001978583988257000", - "fee": "21139153014000", - "transactionSequenceNumber": 0, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x97f039d3bbecf3c107ad1b4ec7f6eeee377ef5bc6d261983faef6d283ffaf8a8-IN", - "hash": "0x97f039d3bbecf3c107ad1b4ec7f6eeee377ef5bc6d261983faef6d283ffaf8a8", - "type": "IN", - "senders": [ - "0x4F008D1A92295d09294B778188Be9a74659515D3" - ], - "recipients": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0xf9a90dffc3712609cf4c402d944bdeb96a8f1ed405aaed0931e778e565467a23", - "blockHeight": 1318741, - "extra": {}, - "date": "2024-04-10T12:26:48.000Z", - "value": "10900698524074896000", - "fee": "20463264108000", - "transactionSequenceNumber": 3, - "hasFailed": false, - "internalOperations": [] - } - ], - "pendingOperations": [], - "currencyId": "ethereum_holesky", - "unitMagnitude": 18, - "lastSyncDate": "2024-05-15T15:06:19.534Z", - "balance": "12342135120767137000", - "spendableBalance": "12342135120767137000", - "nfts": [], - "balanceHistoryCache": { - "HOUR": { - "balances": [ - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343791918629149000, - 12343791918629149000, - 12343791918629149000, - 12343791918629149000, - 12343791918629149000, - 12343791918629149000, - 12343791918629149000, - 12343791918629149000, - 12343791918629149000, - 12343791918629149000, - 12343791918629149000, - 12343791918629149000, - 12343791918629149000, - 12343791918629149000, - 12343791918629149000, - 12343791918629149000, - 12343791918629149000, - 12343791918629149000, - 12343791918629149000, - 12343791918629149000, - 12343791918629149000, - 12343791918629149000, - 12343791918629149000, - 12343791918629149000, - 12343791918629149000, - 12343639047146910000, - 12343639047146910000, - 12343639047146910000, - 12343639047146910000, - 12343639047146910000, - 12343639047146910000, - 12343639047146910000, - 12343639047146910000, - 12343639047146910000, - 12343639047146910000, - 12343639047146910000, - 12343639047146910000, - 12343639047146910000, - 12343639047146910000, - 12343639047146910000, - 12343639047146910000, - 12343639047146910000, - 12343639047146910000, - 12342388713778594000, - 12342135120767138000, - 12342135120767138000, - 12342135120767138000, - 12342135120767138000, - 12342135120767138000, - 12342135120767138000 - ], - "latestDate": 1715785200000 - }, - "DAY": { - "balances": [ - 0, - 10002654878757908000, - 12347611408522086000, - 12347611408522086000, - 12347611408522086000, - 12347611408522086000, - 12347548828128018000, - 12346823644336335000, - 12346140307463266000, - 12346140307463266000, - 12346140307463266000, - 12346140307463266000, - 12346140307463266000, - 12346006934429327000, - 12346006934429327000, - 12345595920435743000, - 12345595920435743000, - 12345448707216960000, - 12345448707216960000, - 12345448707216960000, - 12345085386259569000, - 12344640157059074000, - 12344640157059074000, - 12344121063413752000, - 12344121063413752000, - 12344121063413752000, - 12344121063413752000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343791918629149000, - 12343639047146910000 - ], - "latestDate": 1715724000000 - }, - "WEEK": { - "balances": [ - 0, - 12347611408522086000, - 12346140307463266000, - 12345448707216960000, - 12344121063413752000, - 12343893826613115000 - ], - "latestDate": 1715464800000 - } - }, - "subAccounts": [], - "swapHistory": [] - }, - "version": 1 - }, - { - "data": { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "seedIdentifier": "047e89e2c6153732ee8f54bca17a4a74d3e1d9bddcb6149ed113394f79f585987d90e550639bf0fb76466141684bc43fbc90a24cd9f287fa4662f8ea2b889da1e7", - "name": "Ethereum Holesky 2", - "starred": false, - "used": true, - "derivationMode": "", - "index": 1, - "freshAddress": "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad", - "freshAddressPath": "44'/60'/1'/0/0", - "freshAddresses": [ - { - "address": "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad", - "derivationPath": "44'/60'/1'/0/0" - } - ], - "blockHeight": 1549701, - "syncHash": "0x1efd2c0a", - "creationDate": "2024-04-10T12:30:36.000Z", - "operationsCount": 65, - "operations": [ - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xe24edd9096b37c9624993d9884863825c5f9f03bbedd68da22fb4af959e72252-IN", - "hash": "0xe24edd9096b37c9624993d9884863825c5f9f03bbedd68da22fb4af959e72252", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x41ac3aaa263d4bf4309e84e2c973b51a439774770f4de0cc7766439daa15af50", - "blockHeight": 1548235, - "extra": {}, - "date": "2024-05-15T09:41:24.000Z", - "value": "10000000000000", - "fee": "128423365182000", - "transactionSequenceNumber": 64, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x96aeb461e32a8875f3723e2ff72d10edf562cd8788f827edffb92bb7b00012b9-IN", - "hash": "0x96aeb461e32a8875f3723e2ff72d10edf562cd8788f827edffb92bb7b00012b9", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x175ecf6a1cf55dca8e63eab6919aac6522eec66421bf394ae4efd12802057ab6", - "blockHeight": 1548210, - "extra": {}, - "date": "2024-05-15T09:36:24.000Z", - "value": "10000000000000", - "fee": "105169646274000", - "transactionSequenceNumber": 63, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xde9e6b215600e421a8ee80fcfd2c18fc004df9742ce982856ea9f519d4ecd969-IN", - "hash": "0xde9e6b215600e421a8ee80fcfd2c18fc004df9742ce982856ea9f519d4ecd969", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x6146ba9b45a8a39063dfd971b9eae280a60135844022dcd22e0fafd1c16ce9ba", - "blockHeight": 1547997, - "extra": {}, - "date": "2024-05-15T08:49:36.000Z", - "value": "10000000000000", - "fee": "198025446003000", - "transactionSequenceNumber": 62, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x3f5199964daffa5368d56c5583b1a4f93ddc99a49b3ea50265bd78297c9c99fa-IN", - "hash": "0x3f5199964daffa5368d56c5583b1a4f93ddc99a49b3ea50265bd78297c9c99fa", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x35a30ff5cbe68b39d6c6298b11d890034652b1457cf7022f7bb6b9f1884424d5", - "blockHeight": 1547977, - "extra": {}, - "date": "2024-05-15T08:45:12.000Z", - "value": "10000000000000", - "fee": "104734621383000", - "transactionSequenceNumber": 61, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x25bcb36b72a933dd60d5c6386f6022dbedc3dc891f792b74fe510ffbd1c54003-IN", - "hash": "0x25bcb36b72a933dd60d5c6386f6022dbedc3dc891f792b74fe510ffbd1c54003", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x076fd41ee893232b17e682b858e78c4cdf0bc852cbc09812c688508f69f6fe6c", - "blockHeight": 1547968, - "extra": {}, - "date": "2024-05-15T08:43:12.000Z", - "value": "10000000000000", - "fee": "113068346076000", - "transactionSequenceNumber": 60, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x6444049af8714b1224c85b7c8b3236bf0fdc59aa876ceec4c8618a9d19eff539-IN", - "hash": "0x6444049af8714b1224c85b7c8b3236bf0fdc59aa876ceec4c8618a9d19eff539", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x07723d2a4b136ae2f315f3daa4360687e8d2727288776a72d06e5376f80490f6", - "blockHeight": 1547957, - "extra": {}, - "date": "2024-05-15T08:39:48.000Z", - "value": "10000000000000", - "fee": "137043041814000", - "transactionSequenceNumber": 59, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x6c21e025c2d99fb17beee4123662d42e1487ea6a333b07e80db32478889d7f62-IN", - "hash": "0x6c21e025c2d99fb17beee4123662d42e1487ea6a333b07e80db32478889d7f62", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x77a205e4d6a3bf01a14a9b01f11c08a500ad2469252c5dd6ecbcc63eaf97031e", - "blockHeight": 1547893, - "extra": {}, - "date": "2024-05-15T08:26:36.000Z", - "value": "10000000000000", - "fee": "132715634625000", - "transactionSequenceNumber": 58, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xb10696b47452f79fbfe0df44bbc7d5267809bd7ecee0435c1523f16e91c2165c-IN", - "hash": "0xb10696b47452f79fbfe0df44bbc7d5267809bd7ecee0435c1523f16e91c2165c", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x9c6bdd0994112fe26d8568881e8f48c611a8068d198a72bcf9827e1e2217a907", - "blockHeight": 1547810, - "extra": {}, - "date": "2024-05-15T08:07:48.000Z", - "value": "10000000000000", - "fee": "203364569772000", - "transactionSequenceNumber": 57, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x048b58681131808e7f7180a745bb5476266a649de10fce94d9fc1af67796852f-IN", - "hash": "0x048b58681131808e7f7180a745bb5476266a649de10fce94d9fc1af67796852f", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0xb24c49d7e8f324e57d8312b0072ea8268da5cd36099dcff5762764a81772fdc1", - "blockHeight": 1547795, - "extra": {}, - "date": "2024-05-15T08:04:24.000Z", - "value": "10000000000000", - "fee": "141991293696000", - "transactionSequenceNumber": 56, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x0c2173d88c4daa0c41c1a741ba634727e5a7efe6e1204c16f5354dc5d48b2041-IN", - "hash": "0x0c2173d88c4daa0c41c1a741ba634727e5a7efe6e1204c16f5354dc5d48b2041", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x3178e8cb108a847232528aa7c9994f49fba788f790854729148f469b54e26af5", - "blockHeight": 1547780, - "extra": {}, - "date": "2024-05-15T08:01:12.000Z", - "value": "10000000000000", - "fee": "139390414947000", - "transactionSequenceNumber": 55, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x22b73aefe75d9514bca52680f09f1743533b4cd9028afc9cb4899dc61d63c896-IN", - "hash": "0x22b73aefe75d9514bca52680f09f1743533b4cd9028afc9cb4899dc61d63c896", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x3a654ed1c31b2c44025f8d3a222298c5aba2bfd9d9c756dd5f957321cd807d2a", - "blockHeight": 1543145, - "extra": {}, - "date": "2024-05-14T14:43:00.000Z", - "value": "10000000000000", - "fee": "68261291217000", - "transactionSequenceNumber": 54, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xa33c02b924df1faf78a2bd5a5b22ebbbe06a117f4021657f07c60cb4130ba010-IN", - "hash": "0xa33c02b924df1faf78a2bd5a5b22ebbbe06a117f4021657f07c60cb4130ba010", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0xf4123ff7d0798e150bdcb88720e4f5e5400c76692e03d1d930bb9de67859687e", - "blockHeight": 1543143, - "extra": {}, - "date": "2024-05-14T14:42:36.000Z", - "value": "10000000000000", - "fee": "64610191023000", - "transactionSequenceNumber": 53, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x3dfae3a0416574878970d867b5a555eca4aa4ef56ae74cc335789722fb60e7fb-IN", - "hash": "0x3dfae3a0416574878970d867b5a555eca4aa4ef56ae74cc335789722fb60e7fb", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x689662513eb6bc84560c1a912b243abb07d00c09d4028ca57b09cf4295b6ca7f", - "blockHeight": 1536304, - "extra": {}, - "date": "2024-05-13T13:30:12.000Z", - "value": "10000000000000", - "fee": "91907983965000", - "transactionSequenceNumber": 52, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x12312e7823cbea90821db15b921f4ced2e8bc0e19d95e4210c8aab91fb35b445-IN", - "hash": "0x12312e7823cbea90821db15b921f4ced2e8bc0e19d95e4210c8aab91fb35b445", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0xab36a70a37bdb2ac6bd92810e3cf3e9c232cc7ac6cffdb7e2215be5ef6035686", - "blockHeight": 1490307, - "extra": {}, - "date": "2024-05-06T15:39:36.000Z", - "value": "10000000000000", - "fee": "80480815569000", - "transactionSequenceNumber": 51, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x81c43f8d6dd8596072ae9321d151a5702a95d75a41de2292915266088744c333-IN", - "hash": "0x81c43f8d6dd8596072ae9321d151a5702a95d75a41de2292915266088744c333", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x822d4fac967e51b69117970cfaa201b2304caf47f35eaa21c2685879681d851d", - "blockHeight": 1489820, - "extra": {}, - "date": "2024-05-06T13:57:00.000Z", - "value": "10000000000000", - "fee": "126755985069000", - "transactionSequenceNumber": 50, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x718da74cf57052a35bb67e31a230ccd34bc385c49f88f5ea63dd26c381d51952-IN", - "hash": "0x718da74cf57052a35bb67e31a230ccd34bc385c49f88f5ea63dd26c381d51952", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x8493847deb100d9235c54873b0412426d9021cd7e7f649da59d9a294bf8f86d9", - "blockHeight": 1462236, - "extra": {}, - "date": "2024-05-02T10:07:48.000Z", - "value": "10000000000000", - "fee": "186760476777000", - "transactionSequenceNumber": 49, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x700ea3fdd6a7a8e5bad7320eec957fd3371345502fbe6a85f9f477b665317e89-IN", - "hash": "0x700ea3fdd6a7a8e5bad7320eec957fd3371345502fbe6a85f9f477b665317e89", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x00a453fe1b6b72fea2c42611e9b4e008c769cc499905b2004868103f4a09fcd4", - "blockHeight": 1461612, - "extra": {}, - "date": "2024-05-02T07:51:36.000Z", - "value": "10000000000000", - "fee": "312333168546000", - "transactionSequenceNumber": 48, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xf2ca67ad3dea0789f4d7fb457da9595048e174d06e4d66d87158fe09d016ca77-IN", - "hash": "0xf2ca67ad3dea0789f4d7fb457da9595048e174d06e4d66d87158fe09d016ca77", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x3c339365132ddd29ffb88bbce4b5b78d96fce5fa06b41c196fbe205df7f3d128", - "blockHeight": 1450563, - "extra": {}, - "date": "2024-04-30T16:22:12.000Z", - "value": "10000000000000", - "fee": "44312009742000", - "transactionSequenceNumber": 47, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x126080b034b5d171a0509e34042f7b57484e623c706f8a83874ac8f996a6ade8-IN", - "hash": "0x126080b034b5d171a0509e34042f7b57484e623c706f8a83874ac8f996a6ade8", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x3c10ac72a2d317512890bd69777287248d7c02c34aa07e034a36d5ff39aaba1d", - "blockHeight": 1450562, - "extra": {}, - "date": "2024-04-30T16:22:00.000Z", - "value": "10000000000000", - "fee": "41532098895000", - "transactionSequenceNumber": 46, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xf8c5966e40856b9558cfb5d1eed7c976d281b706dc1b9682db5993cfa66190c4-IN", - "hash": "0xf8c5966e40856b9558cfb5d1eed7c976d281b706dc1b9682db5993cfa66190c4", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x89ca50fda65dbf057b860806c8d810c30febcd443b6f3b9d245a98e62537f137", - "blockHeight": 1450129, - "extra": {}, - "date": "2024-04-30T14:46:48.000Z", - "value": "10000000000000", - "fee": "36219079029000", - "transactionSequenceNumber": 45, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xcc3dd59d804c96b514827c73eb167edc50c7f0c41c564fb2ae7316988f91c076-IN", - "hash": "0xcc3dd59d804c96b514827c73eb167edc50c7f0c41c564fb2ae7316988f91c076", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x1eb65f11ce8b2bbb4fb569ea965c4b22bcab197089729ad6be563f592cdfd5e3", - "blockHeight": 1449930, - "extra": {}, - "date": "2024-04-30T14:03:12.000Z", - "value": "10000000000000", - "fee": "32903179533000", - "transactionSequenceNumber": 44, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xe679452d4c263cf809b2465ba627771d7ec17977b5c5b7c609291eee47a085b2-IN", - "hash": "0xe679452d4c263cf809b2465ba627771d7ec17977b5c5b7c609291eee47a085b2", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x4313210ac8e1fb437a38753c6d89c878543e4ddea0acc86086850b61035d8f40", - "blockHeight": 1449915, - "extra": {}, - "date": "2024-04-30T13:59:36.000Z", - "value": "10000000000000", - "fee": "37560101187000", - "transactionSequenceNumber": 43, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x61de4775b995ab1e6b6e6e19c37af9d553e7f35158800935e4bd23cda7feaa93-IN", - "hash": "0x61de4775b995ab1e6b6e6e19c37af9d553e7f35158800935e4bd23cda7feaa93", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x64ac6392516416b986138899ea6dbf385a1d741f93d077d5a94e52c4327cb32d", - "blockHeight": 1449738, - "extra": {}, - "date": "2024-04-30T13:21:12.000Z", - "value": "10000000000000", - "fee": "44467138506000", - "transactionSequenceNumber": 42, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xc97d9b73dcc01fc392ddf60d70c329e025da110d885e3449da07d2d8e7513bfb-IN", - "hash": "0xc97d9b73dcc01fc392ddf60d70c329e025da110d885e3449da07d2d8e7513bfb", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0xc80ccf901d63cadafeac0c14a9af39f8a7dc1f1ef724570b6d2d923c85944dac", - "blockHeight": 1449597, - "extra": {}, - "date": "2024-04-30T12:51:24.000Z", - "value": "10000000000000", - "fee": "45536115786000", - "transactionSequenceNumber": 41, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x96d7f6c317bcd537793350f9faf4c188e39db5eefd0f71973755fd65db2574d8-IN", - "hash": "0x96d7f6c317bcd537793350f9faf4c188e39db5eefd0f71973755fd65db2574d8", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x32f2b445c0079a7c28ed7c3dee666ae1f40bc6317c20aa68dc469c5d50cbe649", - "blockHeight": 1449589, - "extra": {}, - "date": "2024-04-30T12:49:24.000Z", - "value": "10000000000000", - "fee": "39360866538000", - "transactionSequenceNumber": 40, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x0f236bef396b0a1af958a59da209908186aeb62e4654f5ec6fd78b265b5e7b7b-IN", - "hash": "0x0f236bef396b0a1af958a59da209908186aeb62e4654f5ec6fd78b265b5e7b7b", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0xd8601d2da9b4bf83d840e88e7d8d71f24373505778b904a1101647cd24965530", - "blockHeight": 1448212, - "extra": {}, - "date": "2024-04-30T07:52:48.000Z", - "value": "10000000000000", - "fee": "33338611278000", - "transactionSequenceNumber": 39, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x36d4c6d43dc6708be1ecd12693bd60a413201fd4b18e427d52339c3522d4c934-IN", - "hash": "0x36d4c6d43dc6708be1ecd12693bd60a413201fd4b18e427d52339c3522d4c934", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x689b650b220cc13705a42f20d42f04d286f9ee009ac297451171292ad084bd4e", - "blockHeight": 1442121, - "extra": {}, - "date": "2024-04-29T09:51:12.000Z", - "value": "10000000000000", - "fee": "59986911579000", - "transactionSequenceNumber": 38, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xc1b059188c597f904bacfa7a4d8412b226971005b728a73b3e993567742a06c2-IN", - "hash": "0xc1b059188c597f904bacfa7a4d8412b226971005b728a73b3e993567742a06c2", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x155d8dc76dc82932d453ed039a8748d5461800631c93ba079920c87435d12c98", - "blockHeight": 1442103, - "extra": {}, - "date": "2024-04-29T09:47:12.000Z", - "value": "10000000000000", - "fee": "65256671172000", - "transactionSequenceNumber": 37, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x3b4c7de82d97960473d5cabf7ff56621f5e30f73a9968c2b8e62066b2f82cd00-IN", - "hash": "0x3b4c7de82d97960473d5cabf7ff56621f5e30f73a9968c2b8e62066b2f82cd00", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x727202242bf1709873ca97df1c9a5bf9d5a6029c45b9c16a68120bb4a12b8571", - "blockHeight": 1442096, - "extra": {}, - "date": "2024-04-29T09:45:48.000Z", - "value": "10000000000000", - "fee": "64676959221000", - "transactionSequenceNumber": 36, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x11752dd8229198ee238b12ea924bdc23a355c8da13d523ed36f06f13b4be5500-IN", - "hash": "0x11752dd8229198ee238b12ea924bdc23a355c8da13d523ed36f06f13b4be5500", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x45cdbb8ad641fb8fe781d26fe122fbea51c08d562ff56c64f4b943de50b639d6", - "blockHeight": 1442091, - "extra": {}, - "date": "2024-04-29T09:44:48.000Z", - "value": "10000000000000", - "fee": "73695361509000", - "transactionSequenceNumber": 35, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x3196a528e7622b703b412fc6b5dc74524646638551adc3ca5cf040429a1a8a90-IN", - "hash": "0x3196a528e7622b703b412fc6b5dc74524646638551adc3ca5cf040429a1a8a90", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x3dbb005c8102f3536b63ef2eca594162f79cc4f05affd98eb59e62637956088d", - "blockHeight": 1441872, - "extra": {}, - "date": "2024-04-29T08:56:48.000Z", - "value": "10000000000000", - "fee": "49705053909000", - "transactionSequenceNumber": 34, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x2da67ae076d80a245db660f3687b81380bf632d09967053aafdfd2ae86c1caef-IN", - "hash": "0x2da67ae076d80a245db660f3687b81380bf632d09967053aafdfd2ae86c1caef", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x4dc38934ae07417026a9eed26520ac4b72382623064731e032b7467e5f955af8", - "blockHeight": 1423075, - "extra": {}, - "date": "2024-04-26T12:09:00.000Z", - "value": "10000000000000", - "fee": "63652230348000", - "transactionSequenceNumber": 33, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xe0601b2149dff79bf5ee6705939be159f0dc57b9296550c8b81c3309ca045c7b-IN", - "hash": "0xe0601b2149dff79bf5ee6705939be159f0dc57b9296550c8b81c3309ca045c7b", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x12255f0115c0cdaac742e59dd5916cdea3096469c23ca60b55198e227622c86c", - "blockHeight": 1422955, - "extra": {}, - "date": "2024-04-26T11:43:48.000Z", - "value": "10000000000000", - "fee": "63560988435000", - "transactionSequenceNumber": 32, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x4d96bfa58c0ba19bcbab94ec965542f3fee1520fd8c2a5f0f223231b8aa8dbb4-IN", - "hash": "0x4d96bfa58c0ba19bcbab94ec965542f3fee1520fd8c2a5f0f223231b8aa8dbb4", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0xa86307488a98d1546fcdefff7ccbe2e5c2b724fd09363653f141ec00debad1be", - "blockHeight": 1409289, - "extra": {}, - "date": "2024-04-24T09:55:36.000Z", - "value": "10000000000000", - "fee": "60743364948000", - "transactionSequenceNumber": 31, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xa389f6007fd10a13d141e1ef02c852f2e89a0fc72e914cc135dcfb188d4f301a-IN", - "hash": "0xa389f6007fd10a13d141e1ef02c852f2e89a0fc72e914cc135dcfb188d4f301a", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x8052aa2a74378584f5c5790c787e9a576fb28ac959348a77ee7d07c33c20d4d9", - "blockHeight": 1409282, - "extra": {}, - "date": "2024-04-24T09:54:12.000Z", - "value": "10000000000000", - "fee": "59999667210000", - "transactionSequenceNumber": 30, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x55d9cde2c34595dda3aaa6742c1230eb80d0349904cefed2a5f89b14a8833502-IN", - "hash": "0x55d9cde2c34595dda3aaa6742c1230eb80d0349904cefed2a5f89b14a8833502", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0xa4b5370fd4db21c2adc2e23b4ca255b4e2dce8823e8ae35ad404c0ed56ee2ce7", - "blockHeight": 1409273, - "extra": {}, - "date": "2024-04-24T09:52:24.000Z", - "value": "10000000000000", - "fee": "50599940601000", - "transactionSequenceNumber": 29, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x2e9e55a51187dfa1eb59a5da205ff1d9b3b366801641db6aabce5ebc063da47b-IN", - "hash": "0x2e9e55a51187dfa1eb59a5da205ff1d9b3b366801641db6aabce5ebc063da47b", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x44a4214eba5c0f220295c47b7925a6b494d4592e0e014fbda8635404dcb73512", - "blockHeight": 1409163, - "extra": {}, - "date": "2024-04-24T09:27:36.000Z", - "value": "100000000000000", - "fee": "49278054735000", - "transactionSequenceNumber": 28, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x859fd5555a15ed7314b958c4c7b58c60bcfd0960cd358f387975e33d0096ac41-IN", - "hash": "0x859fd5555a15ed7314b958c4c7b58c60bcfd0960cd358f387975e33d0096ac41", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0xf61fbf52512e5f8d3b0cf2e3bf461d43bb3a777c7a091d0cfaa43133727987ca", - "blockHeight": 1409112, - "extra": {}, - "date": "2024-04-24T09:16:12.000Z", - "value": "10000000000000", - "fee": "50392966092000", - "transactionSequenceNumber": 27, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x73bdf7f4c3eca74a75d851ff7810427a7006e608371af0dc495f87f91ea86f1d-IN", - "hash": "0x73bdf7f4c3eca74a75d851ff7810427a7006e608371af0dc495f87f91ea86f1d", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x051c61b2086046d4b5bbeb7d7573bc1a3bf332504dff0c61f5465022c5aa6a7f", - "blockHeight": 1397247, - "extra": {}, - "date": "2024-04-22T13:29:12.000Z", - "value": "10000000000000", - "fee": "123373033938000", - "transactionSequenceNumber": 26, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xbc5e07605d9c5937cd94ee95663c4de986db769d89c7a50589d2e0606074e108-IN", - "hash": "0xbc5e07605d9c5937cd94ee95663c4de986db769d89c7a50589d2e0606074e108", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x0bb4079d00e4077e91b8a0e794803c85cf8b142d1b62b838d3aeb562f3a70b74", - "blockHeight": 1365218, - "extra": {}, - "date": "2024-04-17T14:30:24.000Z", - "value": "10000000000000", - "fee": "87963076068000", - "transactionSequenceNumber": 25, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xa104c88f2607f7469b5f5508de62162f21f316715ba5494b22506d99045c5b9c-IN", - "hash": "0xa104c88f2607f7469b5f5508de62162f21f316715ba5494b22506d99045c5b9c", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x76398f6f1f72c0348aaf1784b823d9fa203f32c9137108ec86ba43666d7fc485", - "blockHeight": 1365214, - "extra": {}, - "date": "2024-04-17T14:29:24.000Z", - "value": "10000000000000", - "fee": "78437375835000", - "transactionSequenceNumber": 24, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x32cf01deadb899014b9d2f76d0fddb58c725db16f1b457831a559bf91291ed18-IN", - "hash": "0x32cf01deadb899014b9d2f76d0fddb58c725db16f1b457831a559bf91291ed18", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x86f460faf002a93077fb4110b56c40e7d6ca2d8577ed31d66e5b3fbd5d7a0d42", - "blockHeight": 1365195, - "extra": {}, - "date": "2024-04-17T14:24:48.000Z", - "value": "10000000000000", - "fee": "72072200697000", - "transactionSequenceNumber": 23, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x9f562f008aa8dfbae8b25641a723662d4b8dadd268f2978ab526c4b4429947d6-IN", - "hash": "0x9f562f008aa8dfbae8b25641a723662d4b8dadd268f2978ab526c4b4429947d6", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x509aa13f3c94be4e2918c4b08bb6616ba188c14b643656a2872e3aceb6fdd3fb", - "blockHeight": 1365177, - "extra": {}, - "date": "2024-04-17T14:20:48.000Z", - "value": "10000000000000", - "fee": "83076429975000", - "transactionSequenceNumber": 22, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x59b36836e528f73d61874b2c607a30a3fbbe58e32de6011df2a8ce77f673f046-IN", - "hash": "0x59b36836e528f73d61874b2c607a30a3fbbe58e32de6011df2a8ce77f673f046", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0xf91ca75ac65618d78c0b6696cf8e753a70fc0ffa64c4861d96c737bbf29a00b4", - "blockHeight": 1364835, - "extra": {}, - "date": "2024-04-17T13:02:00.000Z", - "value": "10000000000000", - "fee": "76871977287000", - "transactionSequenceNumber": 21, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x7dbc92bc7892bcb9fe9235b613df4c3176dfb47cfba908b538ea9b070ac7329b-IN", - "hash": "0x7dbc92bc7892bcb9fe9235b613df4c3176dfb47cfba908b538ea9b070ac7329b", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x388ca8211c8a32b950c8ae3bde9d79e46a037e27af579f17f97cf702b1c1e6ef", - "blockHeight": 1364819, - "extra": {}, - "date": "2024-04-17T12:58:24.000Z", - "value": "10000000000000", - "fee": "69811451640000", - "transactionSequenceNumber": 20, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x58c5e3134e1e158c69362e5af6c003a4cc37b1b5b783d844489ee0befca32a53-IN", - "hash": "0x58c5e3134e1e158c69362e5af6c003a4cc37b1b5b783d844489ee0befca32a53", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0xa5a7f900303d644cbf9a4049d1f0b01a828bb45c8b42cb7ef7192675b954b910", - "blockHeight": 1364661, - "extra": {}, - "date": "2024-04-17T12:24:24.000Z", - "value": "10000000000000", - "fee": "61499841648000", - "transactionSequenceNumber": 19, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x6f9e06cb749dc28e60127d9b58a2ff967bfa666cbd3e3be8cfc03b41823b20db-IN", - "hash": "0x6f9e06cb749dc28e60127d9b58a2ff967bfa666cbd3e3be8cfc03b41823b20db", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x5f886fac5a1e68afde4c4258d22ca22c6cc2871b8c900174df51d57f4c809a27", - "blockHeight": 1363910, - "extra": {}, - "date": "2024-04-17T09:35:36.000Z", - "value": "10000000000000", - "fee": "73604519919000", - "transactionSequenceNumber": 18, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x1498a38e4564942997c6778b77208085343507f6898cedd2d5b054b5b4534739-IN", - "hash": "0x1498a38e4564942997c6778b77208085343507f6898cedd2d5b054b5b4534739", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x558bdbe2bf09ae3e14f7bf7d4f850e586d50d89684455efed8d34eb64d080909", - "blockHeight": 1359060, - "extra": {}, - "date": "2024-04-16T15:42:00.000Z", - "value": "10000000000000", - "fee": "106546777890000", - "transactionSequenceNumber": 17, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x456b194be1fea8b9209e294f786e17f3980a30982b1aa0c7ce7177061b2eb7a1-IN", - "hash": "0x456b194be1fea8b9209e294f786e17f3980a30982b1aa0c7ce7177061b2eb7a1", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0xb51e77e7169af6f83364ee1ac83244f2416345905e5fb3bdd45a4d4f4bca743e", - "blockHeight": 1358372, - "extra": {}, - "date": "2024-04-16T13:07:00.000Z", - "value": "10000000000000", - "fee": "82731513480000", - "transactionSequenceNumber": 16, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xe14c217b0ed858e948eeab1390bcfb7adc22c5ddcdacdf4c58a1e08f851e35c2-IN", - "hash": "0xe14c217b0ed858e948eeab1390bcfb7adc22c5ddcdacdf4c58a1e08f851e35c2", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0xa3fa419c2d172f496e5df45530b296fe4e7980fc10e50d8d38915eafe1d3b15e", - "blockHeight": 1358368, - "extra": {}, - "date": "2024-04-16T13:06:12.000Z", - "value": "10000000000000", - "fee": "76315001217000", - "transactionSequenceNumber": 15, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xa05132198ac05c9bbaa93815d21f684b36c0114b3ec94d3898d0d537dc559bdd-IN", - "hash": "0xa05132198ac05c9bbaa93815d21f684b36c0114b3ec94d3898d0d537dc559bdd", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x1e144a1e18e0ff3eca7b8435ea94307eb08a5f29e7a41a0ae809da870a34cb05", - "blockHeight": 1358203, - "extra": {}, - "date": "2024-04-16T12:30:12.000Z", - "value": "10000000000000", - "fee": "57042363966000", - "transactionSequenceNumber": 14, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x767b3f49b327f8973441b6d3da3e936caaf1ed75db7fd3b16640781a537c2ea2-IN", - "hash": "0x767b3f49b327f8973441b6d3da3e936caaf1ed75db7fd3b16640781a537c2ea2", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x0278573c04d30488ee991565c449054251c42e763a00a277778f750caa167dc3", - "blockHeight": 1358198, - "extra": {}, - "date": "2024-04-16T12:29:00.000Z", - "value": "10000000000000", - "fee": "69990386235000", - "transactionSequenceNumber": 13, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xf9a360549970073fcb3d61e1937483ac8776274e5dc70e07031421b055eee86c-IN", - "hash": "0xf9a360549970073fcb3d61e1937483ac8776274e5dc70e07031421b055eee86c", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x32bfc07b9d44845bffce6b0a54bba2cf19128c0bd1a3e58bd1274c1e5221c9e4", - "blockHeight": 1358122, - "extra": {}, - "date": "2024-04-16T12:11:48.000Z", - "value": "10000000000000", - "fee": "65808360576000", - "transactionSequenceNumber": 12, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x4f8b5ac603712dae2b1ea3c41947bcf1bf0be85e3a0e0cfe5145d03043d4d521-IN", - "hash": "0x4f8b5ac603712dae2b1ea3c41947bcf1bf0be85e3a0e0cfe5145d03043d4d521", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x045fec036fa7345aa09b8af9cc982e5a868e22e49dace15e98a6852e685d4d9b", - "blockHeight": 1357346, - "extra": {}, - "date": "2024-04-16T09:18:48.000Z", - "value": "10000000000000", - "fee": "48050167242000", - "transactionSequenceNumber": 11, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x90cdd88c6252475183b4b2a44071978339119d9e4ea049f7a9dd65a87839ce84-IN", - "hash": "0x90cdd88c6252475183b4b2a44071978339119d9e4ea049f7a9dd65a87839ce84", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0xacd629cdbea82216c33ba44b4e1c83c905a9a90dad705ab4f240a590077ccb9d", - "blockHeight": 1357270, - "extra": {}, - "date": "2024-04-16T09:02:24.000Z", - "value": "10000000000000", - "fee": "62944112952000", - "transactionSequenceNumber": 10, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xa891e881818af7570d73fccf52802a957dbfbde3d2b46dfac8aaf0b1238e347b-IN", - "hash": "0xa891e881818af7570d73fccf52802a957dbfbde3d2b46dfac8aaf0b1238e347b", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x5ad8db1d474e9d6101f70c464bdbd8f842cb746c70872c6b63427450299c9b44", - "blockHeight": 1357267, - "extra": {}, - "date": "2024-04-16T09:01:36.000Z", - "value": "10000000000000", - "fee": "65755108125000", - "transactionSequenceNumber": 9, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x2815a9cb2900227812d5ddf5dac20dd5311eb720b723e600af68e111ba81676e-IN", - "hash": "0x2815a9cb2900227812d5ddf5dac20dd5311eb720b723e600af68e111ba81676e", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0xb9e7d99d816f79188deb85e7c996ee68aef98d8d3671923c3a0bc1e9fc339f12", - "blockHeight": 1352544, - "extra": {}, - "date": "2024-04-15T15:42:24.000Z", - "value": "10000000000000", - "fee": "52580394069000", - "transactionSequenceNumber": 8, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x5c5622aaa4173bef68127a42565e9971577b33c18c4c6dea531711234fe7b6b4-IN", - "hash": "0x5c5622aaa4173bef68127a42565e9971577b33c18c4c6dea531711234fe7b6b4", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0xef44280971673302b1a5b08e13472a215bb9c21a8c463c5601e901afcfee8158", - "blockHeight": 1326144, - "extra": {}, - "date": "2024-04-11T15:30:48.000Z", - "value": "10000000000000", - "fee": "109553213910000", - "transactionSequenceNumber": 7, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x46e8357ee53468894a66584d35a33f22c64924b46ca865db313ef8e39bf5962a-IN", - "hash": "0x46e8357ee53468894a66584d35a33f22c64924b46ca865db313ef8e39bf5962a", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x57c1bc247f79444b85a391d4dbf90a52120e4a9847d8750b49100b1492c30374", - "blockHeight": 1326142, - "extra": {}, - "date": "2024-04-11T15:30:24.000Z", - "value": "10000000000000", - "fee": "94763796015000", - "transactionSequenceNumber": 6, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xc6d1e2b972393ac28961ec204a94688a294709c2b6e081e250b26731fb41accf-IN", - "hash": "0xc6d1e2b972393ac28961ec204a94688a294709c2b6e081e250b26731fb41accf", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x009ff89ae7bb93ce0f8ba2509e99a351d4d2318600f12d68429262323792d953", - "blockHeight": 1326133, - "extra": {}, - "date": "2024-04-11T15:28:00.000Z", - "value": "10000000000000", - "fee": "120481372011000", - "transactionSequenceNumber": 5, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x79badad6d55e2ae48356aa104d9a1b361832bf0388487a3605e489b921ddb082-IN", - "hash": "0x79badad6d55e2ae48356aa104d9a1b361832bf0388487a3605e489b921ddb082", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x93d05599f74a42b0c1e172cd739fca66d2145c5613f2a93bcc24b7c59dd0e9ab", - "blockHeight": 1326063, - "extra": {}, - "date": "2024-04-11T15:12:24.000Z", - "value": "10000000000000", - "fee": "97025141367000", - "transactionSequenceNumber": 4, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x028614b4ba199549debde64a883b2ae5f9e3e66d1ec58e39d4aa9f9abf643c54-IN", - "hash": "0x028614b4ba199549debde64a883b2ae5f9e3e66d1ec58e39d4aa9f9abf643c54", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x78a7da74953541d4eb15b0497e5b29ef7b829bc2f90b54362ca4476e3414cdac", - "blockHeight": 1326061, - "extra": {}, - "date": "2024-04-11T15:12:00.000Z", - "value": "10000000000000", - "fee": "85533493773000", - "transactionSequenceNumber": 3, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x0468dfe8e7ec1e231b1e53703b53935108023b9af8153fe67c7bb5cce0095f18-IN", - "hash": "0x0468dfe8e7ec1e231b1e53703b53935108023b9af8153fe67c7bb5cce0095f18", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x898e95a0d06cd92c02461be406d7a823c6d5dfcc907a1d8a7b0a8eed7e23695c", - "blockHeight": 1326050, - "extra": {}, - "date": "2024-04-11T15:09:00.000Z", - "value": "100000000000000", - "fee": "108818148243000", - "transactionSequenceNumber": 2, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xef91af8c2a0822ecd4341c1a8294b5a6493dc603a23282e66688bfc34952ad58-IN", - "hash": "0xef91af8c2a0822ecd4341c1a8294b5a6493dc603a23282e66688bfc34952ad58", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0xdf80f1c3211c95a2b3b1fa45a5f72011ac78c7105abdf050f9474bc88be31482", - "blockHeight": 1325836, - "extra": {}, - "date": "2024-04-11T14:23:48.000Z", - "value": "10000000000000", - "fee": "117857570502000", - "transactionSequenceNumber": 1, - "hasFailed": false, - "internalOperations": [] - }, - { - "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x14139eac4a9d771c08e480cfa72fbb5a7c107c53041414374e72f13e630123aa-IN", - "hash": "0x14139eac4a9d771c08e480cfa72fbb5a7c107c53041414374e72f13e630123aa", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], - "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "blockHash": "0x749e65827d4d4f6991cc7604b69732f08da7886a69ed3d889715528f32688bfa", - "blockHeight": 1318759, - "extra": {}, - "date": "2024-04-10T12:30:36.000Z", - "value": "1900000000000000000", - "fee": "22229305245000", - "transactionSequenceNumber": 0, - "hasFailed": false, - "internalOperations": [] - } - ], - "pendingOperations": [], - "currencyId": "ethereum_holesky", - "unitMagnitude": 18, - "lastSyncDate": "2024-05-15T15:06:18.912Z", - "balance": "1900820000000000000", - "spendableBalance": "1900820000000000000", - "nfts": [], - "balanceHistoryCache": { - "HOUR": { - "balances": [ - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900700000000000000, - 1900700000000000000, - 1900700000000000000, - 1900700000000000000, - 1900700000000000000, - 1900700000000000000, - 1900700000000000000, - 1900700000000000000, - 1900700000000000000, - 1900700000000000000, - 1900700000000000000, - 1900700000000000000, - 1900700000000000000, - 1900700000000000000, - 1900700000000000000, - 1900700000000000000, - 1900700000000000000, - 1900700000000000000, - 1900700000000000000, - 1900700000000000000, - 1900700000000000000, - 1900700000000000000, - 1900700000000000000, - 1900700000000000000, - 1900700000000000000, - 1900720000000000000, - 1900720000000000000, - 1900720000000000000, - 1900720000000000000, - 1900720000000000000, - 1900720000000000000, - 1900720000000000000, - 1900720000000000000, - 1900720000000000000, - 1900720000000000000, - 1900720000000000000, - 1900720000000000000, - 1900720000000000000, - 1900720000000000000, - 1900720000000000000, - 1900720000000000000, - 1900720000000000000, - 1900720000000000000, - 1900800000000000000, - 1900820000000000000, - 1900820000000000000, - 1900820000000000000, - 1900820000000000000, - 1900820000000000000, - 1900820000000000000 - ], - "latestDate": 1715785200000 - }, - "DAY": { - "balances": [ - 0, - 1900000000000000000, - 1900160000000000000, - 1900160000000000000, - 1900160000000000000, - 1900160000000000000, - 1900170000000000000, - 1900260000000000000, - 1900340000000000000, - 1900340000000000000, - 1900340000000000000, - 1900340000000000000, - 1900340000000000000, - 1900350000000000000, - 1900350000000000000, - 1900490000000000000, - 1900490000000000000, - 1900510000000000000, - 1900510000000000000, - 1900510000000000000, - 1900560000000000000, - 1900650000000000000, - 1900650000000000000, - 1900670000000000000, - 1900670000000000000, - 1900670000000000000, - 1900670000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900700000000000000, - 1900720000000000000 - ], - "latestDate": 1715724000000 - }, - "WEEK": { - "balances": [ - 0, - 1900160000000000000, - 1900340000000000000, - 1900510000000000000, - 1900670000000000000, - 1900690000000000000 - ], - "latestDate": 1715464800000 - } - }, - "subAccounts": [], - "swapHistory": [] - }, - "version": 1 - }, - { - "data": { - "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "seedIdentifier": "047e89e2c6153732ee8f54bca17a4a74d3e1d9bddcb6149ed113394f79f585987d90e550639bf0fb76466141684bc43fbc90a24cd9f287fa4662f8ea2b889da1e7", - "name": "Ethereum Sepolia 1", - "starred": false, - "used": true, - "derivationMode": "", - "index": 0, - "freshAddress": "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6", - "freshAddressPath": "44'/60'/0'/0/0", - "freshAddresses": [ - { - "address": "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6", - "derivationPath": "44'/60'/0'/0/0" - } - ], - "blockHeight": 5908547, - "syncHash": "0x84f329d3", - "creationDate": "2024-05-15T14:55:12.000Z", - "operationsCount": 1, - "operations": [ - { - "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xecf48b0978e81aa12d565a24f0123916a11e103c22caf741a67accfda84f85cd-IN", - "hash": "0xecf48b0978e81aa12d565a24f0123916a11e103c22caf741a67accfda84f85cd", - "type": "IN", - "senders": [ - "0x4258A05DBA420A398bcdFB389E4250759b4223ea" - ], - "recipients": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", - "blockHash": "0xbbc8a1a441c4b626f477ba3cf760dcdd71b79715ff5488cdb2a7552cb0599292", - "blockHeight": 5908494, - "extra": {}, - "date": "2024-05-15T14:55:12.000Z", - "value": "145000000000000000", - "fee": "1711757207412000", - "transactionSequenceNumber": 0, - "hasFailed": false, - "internalOperations": [] - } - ], - "pendingOperations": [], - "currencyId": "ethereum_sepolia", - "unitMagnitude": 18, - "lastSyncDate": "2024-05-15T15:06:18.677Z", - "balance": "145000000000000000", - "spendableBalance": "145000000000000000", - "nfts": [], - "balanceHistoryCache": { - "HOUR": { - "balances": [ - 0, - 145000000000000000 - ], - "latestDate": 1715785200000 - }, - "DAY": { - "balances": [ - 0 - ], - "latestDate": 1715724000000 - }, - "WEEK": { - "balances": [ - 0 - ], - "latestDate": 1715464800000 - } - }, - "subAccounts": [], - "swapHistory": [] - }, - "version": 1 - }, - { - "data": { - "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", - "seedIdentifier": "047e89e2c6153732ee8f54bca17a4a74d3e1d9bddcb6149ed113394f79f585987d90e550639bf0fb76466141684bc43fbc90a24cd9f287fa4662f8ea2b889da1e7", - "name": "Ethereum Sepolia 2", - "starred": false, - "used": false, - "derivationMode": "", - "index": 1, - "freshAddress": "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad", - "freshAddressPath": "44'/60'/1'/0/0", - "freshAddresses": [ - { - "address": "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad", - "derivationPath": "44'/60'/1'/0/0" - } - ], - "blockHeight": 5908547, - "syncHash": "0x84f329d3", - "creationDate": "2024-05-15T15:06:17.668Z", - "operationsCount": 0, - "operations": [], - "pendingOperations": [], - "currencyId": "ethereum_sepolia", - "unitMagnitude": 18, - "lastSyncDate": "2024-05-15T15:06:17.667Z", - "balance": "0", - "spendableBalance": "0", - "nfts": [], - "balanceHistoryCache": { - "HOUR": { - "balances": [], - "latestDate": 1715785200000 - }, - "DAY": { - "balances": [], - "latestDate": 1715724000000 - }, - "WEEK": { - "balances": [], - "latestDate": 1715464800000 - } - }, - "subAccounts": [], - "swapHistory": [] - }, - "version": 1 - }, - { - "data": { - "id": "js:2:polkadot:15NKsw4AoSEgBJ5NpHDkAjUmqLRfeSuqZBzZXH9uRg6MWbo3:polkadotbip44", - "seedIdentifier": "b4907b59e3a66bd7cf5c6d69a34a378b268531a08035f95e7f1b388f351e9f40", - "name": "Polkadot 1", - "starred": false, - "used": true, - "derivationMode": "polkadotbip44", - "index": 0, - "freshAddress": "15NKsw4AoSEgBJ5NpHDkAjUmqLRfeSuqZBzZXH9uRg6MWbo3", - "freshAddressPath": "44'/354'/0'/0'/0'", - "freshAddresses": [ - { - "address": "15NKsw4AoSEgBJ5NpHDkAjUmqLRfeSuqZBzZXH9uRg6MWbo3", - "derivationPath": "44'/354'/0'/0'/0'" - } - ], - "blockHeight": 20785356, - "creationDate": "2024-04-18T14:10:42.000Z", - "operationsCount": 2, - "operations": [ - { - "id": "js:2:polkadot:15NKsw4AoSEgBJ5NpHDkAjUmqLRfeSuqZBzZXH9uRg6MWbo3:polkadotbip44-0x016ec2a62549620b15ef7be6f24b4cbcbe16d595358df5a745778e5417f19861-OUT", - "hash": "0x016ec2a62549620b15ef7be6f24b4cbcbe16d595358df5a745778e5417f19861", - "type": "OUT", - "senders": [ - "15NKsw4AoSEgBJ5NpHDkAjUmqLRfeSuqZBzZXH9uRg6MWbo3" - ], - "recipients": [ - "12fY9vqzD8j1uvqSRx9y3gXRA1S3bwr5xunBVZvx1eeZFaHY" - ], - "accountId": "js:2:polkadot:15NKsw4AoSEgBJ5NpHDkAjUmqLRfeSuqZBzZXH9uRg6MWbo3:polkadotbip44", - "blockHash": null, - "blockHeight": 20552561, - "extra": { - "palletMethod": "balances.transferKeepAlive", - "transferAmount": "10000000000" - }, - "date": "2024-04-29T09:04:42.000Z", - "value": "10157107779", - "fee": "157107779", - "transactionSequenceNumber": 0, - "hasFailed": false - }, - { - "id": "js:2:polkadot:15NKsw4AoSEgBJ5NpHDkAjUmqLRfeSuqZBzZXH9uRg6MWbo3:polkadotbip44-0x08efc6e41ab383890ebc762f1c970d39e395f2fb9f8298058e7c247f45995fa3-IN", - "hash": "0x08efc6e41ab383890ebc762f1c970d39e395f2fb9f8298058e7c247f45995fa3", - "type": "IN", - "senders": [ - "12NMUbX5aoHg4apc2XNoR4qe6bTWpuLg4e1zC2g7Lqe6GtFe" - ], - "recipients": [ - "15NKsw4AoSEgBJ5NpHDkAjUmqLRfeSuqZBzZXH9uRg6MWbo3" - ], - "accountId": "js:2:polkadot:15NKsw4AoSEgBJ5NpHDkAjUmqLRfeSuqZBzZXH9uRg6MWbo3:polkadotbip44", - "blockHash": null, - "blockHeight": 20397729, - "extra": { - "palletMethod": "balances.transferKeepAlive", - "transferAmount": "30000000000" - }, - "date": "2024-04-18T14:10:42.000Z", - "value": "30000000000", - "fee": "157099813", - "hasFailed": false - } - ], - "pendingOperations": [], - "currencyId": "polkadot", - "unitMagnitude": 10, - "lastSyncDate": "2024-05-15T15:06:18.447Z", - "balance": "19842892221", - "spendableBalance": "19842892221", - "balanceHistoryCache": { - "HOUR": { - "balances": [ - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221 - ], - "latestDate": 1715785200000 - }, - "DAY": { - "balances": [ - 0, - 30000000000, - 30000000000, - 30000000000, - 30000000000, - 30000000000, - 30000000000, - 30000000000, - 30000000000, - 30000000000, - 30000000000, - 30000000000, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221 - ], - "latestDate": 1715724000000 - }, - "WEEK": { - "balances": [ - 0, - 30000000000, - 30000000000, - 19842892221, - 19842892221 - ], - "latestDate": 1715464800000 - } - }, - "polkadotResources": { - "controller": null, - "stash": null, - "nonce": 1, - "lockedBalance": "0", - "unlockedBalance": "0", - "unlockingBalance": "0", - "unlockings": [], - "nominations": [] - }, - "swapHistory": [] - }, - "version": 1 - }, - { - "data": { - "id": "js:2:polkadot:12fY9vqzD8j1uvqSRx9y3gXRA1S3bwr5xunBVZvx1eeZFaHY:polkadotbip44", - "seedIdentifier": "b4907b59e3a66bd7cf5c6d69a34a378b268531a08035f95e7f1b388f351e9f40", - "name": "Polkadot 2", - "starred": false, - "used": true, - "derivationMode": "polkadotbip44", - "index": 1, - "freshAddress": "12fY9vqzD8j1uvqSRx9y3gXRA1S3bwr5xunBVZvx1eeZFaHY", - "freshAddressPath": "44'/354'/1'/0'/0'", - "freshAddresses": [ - { - "address": "12fY9vqzD8j1uvqSRx9y3gXRA1S3bwr5xunBVZvx1eeZFaHY", - "derivationPath": "44'/354'/1'/0'/0'" - } - ], - "blockHeight": 20785356, - "creationDate": "2024-04-29T09:04:42.000Z", - "operationsCount": 1, - "operations": [ - { - "id": "js:2:polkadot:12fY9vqzD8j1uvqSRx9y3gXRA1S3bwr5xunBVZvx1eeZFaHY:polkadotbip44-0x016ec2a62549620b15ef7be6f24b4cbcbe16d595358df5a745778e5417f19861-IN", - "hash": "0x016ec2a62549620b15ef7be6f24b4cbcbe16d595358df5a745778e5417f19861", - "type": "IN", - "senders": [ - "15NKsw4AoSEgBJ5NpHDkAjUmqLRfeSuqZBzZXH9uRg6MWbo3" - ], - "recipients": [ - "12fY9vqzD8j1uvqSRx9y3gXRA1S3bwr5xunBVZvx1eeZFaHY" - ], - "accountId": "js:2:polkadot:12fY9vqzD8j1uvqSRx9y3gXRA1S3bwr5xunBVZvx1eeZFaHY:polkadotbip44", - "blockHash": null, - "blockHeight": 20552561, - "extra": { - "palletMethod": "balances.transferKeepAlive", - "transferAmount": "10000000000" - }, - "date": "2024-04-29T09:04:42.000Z", - "value": "10000000000", - "fee": "157107779", - "hasFailed": false - } - ], - "pendingOperations": [], - "currencyId": "polkadot", - "unitMagnitude": 10, - "lastSyncDate": "2024-05-15T15:06:17.967Z", - "balance": "10000000000", - "spendableBalance": "10000000000", - "balanceHistoryCache": { - "HOUR": { - "balances": [ - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000 - ], - "latestDate": 1715785200000 - }, - "DAY": { - "balances": [ - 0, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000 - ], - "latestDate": 1715724000000 - }, - "WEEK": { - "balances": [ - 0, - 10000000000, - 10000000000 - ], - "latestDate": 1715464800000 - } - }, - "polkadotResources": { - "controller": null, - "stash": null, - "nonce": 0, - "lockedBalance": "0", - "unlockedBalance": "0", - "unlockingBalance": "0", - "unlockings": [], - "nominations": [] - }, - "swapHistory": [] - }, - "version": 1 - }, - { - "data": { - "id": "js:2:solana:HxoKQ5eu5MkqaAw7DaGVermrJqeNH8XkVnEKEpFuS9id:solanaSub", - "seedIdentifier": "FBT68jpHyemZY4QvcC7fKZUvbCRNcLQfBDME7Zqdza2R", - "name": "Solana 1", - "starred": false, - "used": true, - "derivationMode": "solanaSub", - "index": 0, - "freshAddress": "HxoKQ5eu5MkqaAw7DaGVermrJqeNH8XkVnEKEpFuS9id", - "freshAddressPath": "44'/501'/0'", - "freshAddresses": [ - { - "address": "HxoKQ5eu5MkqaAw7DaGVermrJqeNH8XkVnEKEpFuS9id", - "derivationPath": "44'/501'/0'" - } - ], - "blockHeight": 265947297, - "creationDate": "2024-04-18T13:21:57.000Z", - "operationsCount": 1, - "operations": [ - { - "id": "js:2:solana:HxoKQ5eu5MkqaAw7DaGVermrJqeNH8XkVnEKEpFuS9id:solanaSub-45wpnHxgDNqJ5o566oJmQjgizwPu5Vtyn1YTx3jadZFvR6DD1tGPCs35A1K7CwDbZmjayhzt7bToCMViVVtbrkBK-IN", - "hash": "45wpnHxgDNqJ5o566oJmQjgizwPu5Vtyn1YTx3jadZFvR6DD1tGPCs35A1K7CwDbZmjayhzt7bToCMViVVtbrkBK", - "type": "IN", - "senders": [ - "AH727xqoLjwUjj9xcUCmHfw2MDU6mvfc9mLCdX21pRq3" - ], - "recipients": [ - "HxoKQ5eu5MkqaAw7DaGVermrJqeNH8XkVnEKEpFuS9id" - ], - "accountId": "js:2:solana:HxoKQ5eu5MkqaAw7DaGVermrJqeNH8XkVnEKEpFuS9id:solanaSub", - "blockHash": "GwoMfGmDH4qA6zfi6vSocvZgRWe9G6PmdxaGAZkpVqcs", - "blockHeight": 260858101, - "extra": {}, - "date": "2024-04-18T13:21:57.000Z", - "value": "20000000", - "fee": "0", - "transactionSequenceNumber": 1, - "hasFailed": false - } - ], - "pendingOperations": [], - "currencyId": "solana", - "unitMagnitude": 9, - "lastSyncDate": "2024-05-15T15:06:21.792Z", - "balance": "20000000", - "spendableBalance": "19109120", - "balanceHistoryCache": { - "HOUR": { - "balances": [ - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000 - ], - "latestDate": 1715785200000 - }, - "DAY": { - "balances": [ - 0, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000 - ], - "latestDate": 1715724000000 - }, - "WEEK": { - "balances": [ - 0, - 20000000, - 20000000, - 20000000, - 20000000 - ], - "latestDate": 1715464800000 - } - }, - "solanaResources": { - "stakes": "[]", - "unstakeReserve": "0" - }, - "swapHistory": [] - }, - "version": 1 - }, - { - "data": { - "id": "js:2:solana:6vSQTFcBoPfUKAdo8BQNJqqxU6UcBmd87HQoNSbgTMzH:solanaSub", - "seedIdentifier": "FBT68jpHyemZY4QvcC7fKZUvbCRNcLQfBDME7Zqdza2R", - "name": "Solana 2", - "starred": false, - "used": false, - "derivationMode": "solanaSub", - "index": 1, - "freshAddress": "6vSQTFcBoPfUKAdo8BQNJqqxU6UcBmd87HQoNSbgTMzH", - "freshAddressPath": "44'/501'/1'", - "freshAddresses": [ - { - "address": "6vSQTFcBoPfUKAdo8BQNJqqxU6UcBmd87HQoNSbgTMzH", - "derivationPath": "44'/501'/1'" - } - ], - "blockHeight": 265947306, - "creationDate": "2024-05-15T15:06:22.987Z", - "operationsCount": 0, - "operations": [], - "pendingOperations": [], - "currencyId": "solana", - "unitMagnitude": 9, - "lastSyncDate": "2024-05-15T15:06:22.987Z", - "balance": "0", - "spendableBalance": "0", - "balanceHistoryCache": { - "HOUR": { - "balances": [], - "latestDate": 1715785200000 - }, - "DAY": { - "balances": [], - "latestDate": 1715724000000 - }, - "WEEK": { - "balances": [], - "latestDate": 1715464800000 - } - }, - "solanaResources": { - "stakes": "[]", - "unstakeReserve": "0" - }, - "swapHistory": [] - }, - "version": 1 - }, - { - "data": { - "id": "js:2:tron:TDUKFB9wj3P5f2iNvkRuaDDeWVkTdUVhs1:", - "seedIdentifier": "04c53a26b402bfc99b4d0560e874c2486d3f5d1a61a35f0ba44e9eabe11fe185ed718721b50ff43a1df0605f9d7c808ba59c10000276c8047b60627ae5bdbb652f", - "name": "Tron 1", - "starred": false, - "used": true, - "derivationMode": "", - "index": 0, - "freshAddress": "TDUKFB9wj3P5f2iNvkRuaDDeWVkTdUVhs1", - "freshAddressPath": "44'/195'/0'/0/0", - "freshAddresses": [ - { - "address": "TDUKFB9wj3P5f2iNvkRuaDDeWVkTdUVhs1", - "derivationPath": "44'/195'/0'/0/0" - } - ], - "blockHeight": 61714167, - "creationDate": "2024-04-18T14:14:45.000Z", - "operationsCount": 1, - "operations": [ - { - "id": "js:2:tron:TDUKFB9wj3P5f2iNvkRuaDDeWVkTdUVhs1:-5ace0bcd63b95b4e7d5e60981ddb5901e68673896b0ddbf264b4df7e0c9fbc14-IN", - "hash": "5ace0bcd63b95b4e7d5e60981ddb5901e68673896b0ddbf264b4df7e0c9fbc14", - "type": "IN", - "senders": [ - "TH4RZibHXTi4EjZEVbPYVhSmB6GCHAmRcn" - ], - "recipients": [ - "TDUKFB9wj3P5f2iNvkRuaDDeWVkTdUVhs1" - ], - "accountId": "js:2:tron:TDUKFB9wj3P5f2iNvkRuaDDeWVkTdUVhs1:", - "blockHash": null, - "blockHeight": 60935756, - "extra": {}, - "date": "2024-04-18T14:14:45.000Z", - "value": "2000000", - "fee": "1000000", - "hasFailed": false - } - ], - "pendingOperations": [], - "currencyId": "tron", - "unitMagnitude": 6, - "lastSyncDate": "2024-05-15T15:06:17.693Z", - "balance": "2000000", - "spendableBalance": "2000000", - "balanceHistoryCache": { - "HOUR": { - "balances": [ - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000 - ], - "latestDate": 1715785200000 - }, - "DAY": { - "balances": [ - 0, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000, - 2000000 - ], - "latestDate": 1715724000000 - }, - "WEEK": { - "balances": [ - 0, - 2000000, - 2000000, - 2000000, - 2000000 - ], - "latestDate": 1715464800000 - } - }, - "subAccounts": [], - "tronResources": { - "frozen": {}, - "delegatedFrozen": {}, - "unFrozen": { - "bandwidth": [], - "energy": [] - }, - "legacyFrozen": {}, - "votes": [], - "tronPower": 0, - "energy": "0", - "bandwidth": { - "freeUsed": "0", - "freeLimit": "600", - "gainedUsed": "0", - "gainedLimit": "0" - }, - "unwithdrawnReward": "0", - "cacheTransactionInfoById": {} - }, - "swapHistory": [] - }, - "version": 1 - }, - { - "data": { - "id": "js:2:tron:TMGGi8n7kDkB8ws9wgunKf2SGNP4PjEyLL:", - "seedIdentifier": "04c53a26b402bfc99b4d0560e874c2486d3f5d1a61a35f0ba44e9eabe11fe185ed718721b50ff43a1df0605f9d7c808ba59c10000276c8047b60627ae5bdbb652f", - "name": "Tron 2", - "starred": false, - "used": false, - "derivationMode": "", - "index": 1, - "freshAddress": "TMGGi8n7kDkB8ws9wgunKf2SGNP4PjEyLL", - "freshAddressPath": "44'/195'/1'/0/0", - "freshAddresses": [ - { - "address": "TMGGi8n7kDkB8ws9wgunKf2SGNP4PjEyLL", - "derivationPath": "44'/195'/1'/0/0" - } - ], - "blockHeight": 61714168, - "creationDate": "2024-05-15T15:06:20.605Z", - "operationsCount": 0, - "operations": [], - "pendingOperations": [], - "currencyId": "tron", - "unitMagnitude": 6, - "lastSyncDate": "2024-05-15T15:06:20.605Z", - "balance": "0", - "spendableBalance": "0", - "balanceHistoryCache": { - "HOUR": { - "balances": [], - "latestDate": 1715785200000 - }, - "DAY": { - "balances": [], - "latestDate": 1715724000000 - }, - "WEEK": { - "balances": [], - "latestDate": 1715464800000 - } - }, - "tronResources": { - "frozen": {}, - "delegatedFrozen": {}, - "unFrozen": {}, - "legacyFrozen": {}, - "votes": [], - "tronPower": 0, - "energy": "0", - "bandwidth": { - "freeUsed": "0", - "freeLimit": "0", - "gainedUsed": "0", - "gainedLimit": "0" - }, - "unwithdrawnReward": "0", - "cacheTransactionInfoById": {} - }, - "swapHistory": [] - }, - "version": 1 - }, - { - "data": { - "id": "js:2:ripple:rhQvt8XfAGn1hVVtMUmdGKBUdnKzi2oimV:", - "seedIdentifier": "020ad7121c0dcdc1a6b44c0beb2e02fdf0a4b94e9abff1665aa893fa5b5f41ba7b", - "name": "XRP 1", - "starred": false, - "used": true, - "derivationMode": "", - "index": 0, - "freshAddress": "rhQvt8XfAGn1hVVtMUmdGKBUdnKzi2oimV", - "freshAddressPath": "44'/144'/0'/0/0", - "freshAddresses": [ - { - "address": "rhQvt8XfAGn1hVVtMUmdGKBUdnKzi2oimV", - "derivationPath": "44'/144'/0'/0/0" - } - ], - "blockHeight": 88007320, - "creationDate": "2024-04-19T09:06:50.000Z", - "operationsCount": 3, - "operations": [ - { - "id": "js:2:ripple:rhQvt8XfAGn1hVVtMUmdGKBUdnKzi2oimV:-881D63CBFCE48958A61D34146B390FD2FF3F8A035EC319897873B8BCF0B178A3-IN", - "hash": "881D63CBFCE48958A61D34146B390FD2FF3F8A035EC319897873B8BCF0B178A3", - "type": "IN", - "senders": [ - "rfc4tdZbtrWWsgjYm3WSNbUXh2asz4fTE7" - ], - "recipients": [ - "rhQvt8XfAGn1hVVtMUmdGKBUdnKzi2oimV" - ], - "accountId": "js:2:ripple:rhQvt8XfAGn1hVVtMUmdGKBUdnKzi2oimV:", - "blockHash": null, - "blockHeight": 87959999, - "extra": {}, - "date": "2024-05-13T12:43:02.000Z", - "value": "11000000", - "fee": "10", - "transactionSequenceNumber": 69228515 - }, - { - "id": "js:2:ripple:rhQvt8XfAGn1hVVtMUmdGKBUdnKzi2oimV:-B09E847117920D2925F9E3BBD1CAB3F07CBB648B1EC2BAFB6D0387E8A8A5B5B5-IN", - "hash": "B09E847117920D2925F9E3BBD1CAB3F07CBB648B1EC2BAFB6D0387E8A8A5B5B5", - "type": "IN", - "senders": [ - "rp5h17hXqfqBWBbj1zqNdLSPjrEXHzooQ3" - ], - "recipients": [ - "rhQvt8XfAGn1hVVtMUmdGKBUdnKzi2oimV" - ], - "accountId": "js:2:ripple:rhQvt8XfAGn1hVVtMUmdGKBUdnKzi2oimV:", - "blockHash": null, - "blockHeight": 87413700, - "extra": {}, - "date": "2024-04-19T09:22:41.000Z", - "value": "1000000", - "fee": "10", - "transactionSequenceNumber": 68460016 - }, - { - "id": "js:2:ripple:rhQvt8XfAGn1hVVtMUmdGKBUdnKzi2oimV:-BB547E9593D1C2746069A0C780A8B1D6470C48B857814B0E789653E84E785F32-IN", - "hash": "BB547E9593D1C2746069A0C780A8B1D6470C48B857814B0E789653E84E785F32", - "type": "IN", - "senders": [ - "rLZ3yK1PEjBk241Kz1vwDCHECeHQW6iCca" - ], - "recipients": [ - "rhQvt8XfAGn1hVVtMUmdGKBUdnKzi2oimV" - ], - "accountId": "js:2:ripple:rhQvt8XfAGn1hVVtMUmdGKBUdnKzi2oimV:", - "blockHash": null, - "blockHeight": 87413452, - "extra": {}, - "date": "2024-04-19T09:06:50.000Z", - "value": "10000000", - "fee": "10", - "transactionSequenceNumber": 80013996 - } - ], - "pendingOperations": [], - "currencyId": "ripple", - "unitMagnitude": 6, - "lastSyncDate": "2024-05-15T15:06:20.873Z", - "balance": "22000000", - "spendableBalance": "22000000", - "balanceHistoryCache": { - "HOUR": { - "balances": [ - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000 - ], - "latestDate": 1715785200000 - }, - "DAY": { - "balances": [ - 0, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 22000000, - 22000000 - ], - "latestDate": 1715724000000 - }, - "WEEK": { - "balances": [ - 0, - 11000000, - 11000000, - 11000000, - 11000000 - ], - "latestDate": 1715464800000 - } - }, - "xpub": "rhQvt8XfAGn1hVVtMUmdGKBUdnKzi2oimV", - "swapHistory": [] - }, - "version": 1 - }, - { - "data": { - "id": "js:2:ripple:r36cgyrfC1xSQMvjuiSeFJEcBTq31imZS:", - "seedIdentifier": "020ad7121c0dcdc1a6b44c0beb2e02fdf0a4b94e9abff1665aa893fa5b5f41ba7b", - "name": "XRP 2", - "starred": false, - "used": false, - "derivationMode": "", - "index": 1, - "freshAddress": "r36cgyrfC1xSQMvjuiSeFJEcBTq31imZS", - "freshAddressPath": "44'/144'/1'/0/0", - "freshAddresses": [ - { - "address": "r36cgyrfC1xSQMvjuiSeFJEcBTq31imZS", - "derivationPath": "44'/144'/1'/0/0" - } - ], - "blockHeight": 0, - "creationDate": "2024-05-15T15:06:20.349Z", - "operationsCount": 0, - "operations": [], - "pendingOperations": [], - "currencyId": "ripple", - "unitMagnitude": 6, - "lastSyncDate": "2024-05-15T15:06:20.349Z", - "balance": "0", - "spendableBalance": "0", - "balanceHistoryCache": { - "HOUR": { - "balances": [], - "latestDate": 1715785200000 - }, - "DAY": { - "balances": [], - "latestDate": 1715724000000 - }, - "WEEK": { - "balances": [], - "latestDate": 1715464800000 - } - }, - "xpub": "r36cgyrfC1xSQMvjuiSeFJEcBTq31imZS", - "swapHistory": [] - }, - "version": 1 - } - ], - "postOnboarding": { - "deviceModelId": "stax", - "walletEntryPointDismissed": true, - "actionsToComplete": [ - "customImage", - "assetsTransfer", - "buyCrypto" - ], - "actionsCompleted": { - "customImage": false, - "assetsTransfer": true, - "buyCrypto": false - }, - "lastActionCompleted": "assetsTransfer", - "postOnboardingInProgress": true - }, - "countervalues": { - "USD bitcoin": { - "2023-07-27": 29378.704401853607, - "2023-07-10": 30257.429159126357, - "2023-08-20": 26122.52806509709, - "2024-02-23": 51053.27128889675, - "2024-04-05": 67621.46443867912, - "2023-12-19": 42757.46687496334, - "2023-08-06": 29036.471357048133, - "2023-12-02": 38791.97839203901, - "2023-10-12": 26749.392643962048, - "2023-10-31": 34393.93460083904, - "2023-08-29": 27378.20122744577, - "2023-06-20": 27002.024805069796, - "2023-09-09": 25865.94071436785, - "2023-06-26": 30274.012707823025, - "2023-04-13": 30253.2149300267, - "2023-07-30": 29305.560782834422, - "2023-05-03": 28531.609713220027, - "2023-10-23": 30781.825336393693, - "2023-10-01": 27137.104783461087, - "2024-03-07": 66893.84979436362, - "2023-07-05": 30490.290745915514, - "2023-07-29": 29321.09718213335, - "2024-01-08": 44947.317643188275, - "2023-05-29": 27897.949450875556, - "2023-10-07": 27942.750995253005, - "2023-09-26": 26232.49443323313, - "2023-08-24": 26355.478572590902, - "2023-12-05": 41914.90021736014, - "2023-05-10": 27695.968035497357, - "2024-02-19": 52134.55780719727, - "2024-01-07": 44074.04990289103, - "2023-10-18": 28372.68771434352, - "2023-04-25": 27408.981742837852, - "2023-07-31": 29359.156087290547, - "2023-05-23": 27279.27958228702, - "2023-08-25": 26038.442067537973, - "2024-03-09": 68391.59002189423, - "2023-04-11": 30127.074904605928, - "2023-07-12": 30613.20915000407, - "2023-09-05": 25726.363181568806, - "2023-06-07": 26719.357709812786, - "2023-09-16": 26545.885638277225, - "2023-08-12": 29401.014834242964, - "2023-05-09": 27612.57190825657, - "2023-09-01": 25925.21104605787, - "2023-09-08": 25895.832371067772, - "2024-03-22": 64220.37149073208, - "2023-08-10": 29488.202215459318, - "2023-12-07": 43384.491682521075, - "2023-11-18": 36474.90562167226, - "2023-07-13": 30821.187403136086, - "2023-04-30": 29317.0199192014, - "2023-06-06": 25961.056041735497, - "2023-09-13": 26134.920418880796, - "2023-06-17": 26500.52990442901, - "2023-07-17": 30193.35447532144, - "2023-07-07": 30177.391463919615, - "2023-09-07": 25777.898466533734, - "2024-02-12": 48609.552664655064, - "2024-02-22": 51571.208868434405, - "2023-04-09": 28024.076052133874, - "2023-12-30": 42113.345673303804, - "2023-09-17": 26526.93936893538, - "2023-04-20": 28750.247654279137, - "2024-03-26": 70299.7156532476, - "2023-04-27": 29063.601984202756, - "2023-10-26": 34287.065969003525, - "2024-01-03": 42916.148822446965, - "2023-06-01": 26888.769779350954, - "2024-01-22": 40704.05067531131, - "2023-06-12": 25855.23595596562, - "2023-10-03": 27475.091528455472, - "2023-06-19": 26457.330835314195, - "2023-07-09": 30283.462485277825, - "2023-12-24": 43649.4408049822, - "2023-09-24": 26573.233773454307, - "2024-01-16": 42917.71115417804, - "2023-10-17": 28420.695960381006, - "2024-03-18": 67696.9671715468, - "2024-02-17": 51675.38670501949, - "2023-12-27": 42951.77878682418, - "2023-07-23": 29919.198438297262, - "2023-09-03": 25908.952198084553, - "2024-02-24": 51089.37144062903, - "2024-01-06": 43874.52131251262, - "2024-03-20": 63277.919440546866, - "2023-11-21": 37068.57630064784, - "2023-12-25": 43356.46790446727, - "2023-09-22": 26613.536704928632, - "2023-10-02": 28062.606707944913, - "2024-03-27": 69839.48338845135, - "2023-04-28": 29332.896854900628, - "2023-08-04": 29158.24405820749, - "2023-08-30": 27367.71018105677, - "2023-04-24": 27444.199995808496, - "2023-10-06": 27688.82602014459, - "2023-10-13": 26801.280461457252, - "2023-06-28": 30285.573400603538, - "2024-02-05": 42698.45211218899, - "2024-03-01": 61962.39653565559, - "2023-07-15": 30317.254928499282, - "2023-06-25": 30632.069277989263, - "2023-12-10": 43818.69768490122, - "2023-11-23": 37318.27268869931, - "2024-01-13": 42837.540343485096, - "2024-03-28": 70638.50362383049, - "2023-08-05": 29030.6296796751, - "2024-02-09": 47111.58125511074, - "2023-10-09": 27595.273771467233, - "2023-05-24": 26672.648356369715, - "2024-01-09": 46703.36846050171, - "2023-12-08": 43633.58434610037, - "2023-05-27": 26727.0002473767, - "2023-08-18": 26299.452518458103, - "2023-11-05": 35086.96557792642, - "2023-10-22": 29917.88410513727, - "2023-11-01": 34506.0395947739, - "2023-05-07": 28923.91299301425, - "2024-03-12": 71754.90423572819, - "2023-09-11": 25472.992921372686, - "2024-03-03": 62179.73237678886, - "2024-02-04": 42886.33710952941, - "2024-01-28": 42311.67733240931, - "2023-04-18": 30154.701537369227, - "2023-07-06": 30471.909983445516, - "2023-07-01": 30493.981462430624, - "2023-05-18": 27226.783793529175, - "2023-11-07": 34904.62030372793, - "2023-11-25": 37755.508995461874, - "2023-06-04": 27200.515056594402, - "2024-02-25": 51639.07086157019, - "2023-12-01": 38395.574985864165, - "2023-07-14": 31200.886210790308, - "2024-01-26": 41204.427790969086, - "2023-08-03": 29164.66013657939, - "2024-02-28": 59997.06401626484, - "2023-09-15": 26499.28005935883, - "2023-07-18": 29911.604118003503, - "2023-04-21": 28043.486448321994, - "2023-12-21": 43706.23099733911, - "2023-07-20": 29987.211804090955, - "2024-03-06": 66399.33066806933, - "2023-09-30": 26961.818560451266, - "2023-12-12": 41586.01238903765, - "2024-02-13": 49704.84093123119, - "2023-05-19": 26869.8285297566, - "2023-09-20": 27120.7435379443, - "2023-07-08": 30226.010514892867, - "2023-09-19": 27146.86295067376, - "2023-09-29": 26948.982280086704, - "2023-09-12": 25963.752700490502, - "2023-06-13": 26025.39034397967, - "2023-10-04": 27526.91039390649, - "2024-03-02": 62008.17425809012, - "2023-10-08": 27924.983532778006, - "2023-11-20": 37279.00008865631, - "2023-12-20": 43392.16166833002, - "2023-12-31": 42488.89118216244, - "2023-11-06": 35008.11830783097, - "2023-08-22": 25999.92978610329, - "2023-06-27": 30609.980436754868, - "2023-04-14": 30697.787926885736, - "2023-06-09": 26497.935057278686, - "2024-03-17": 66886.14793788156, - "2023-09-18": 26821.395422398105, - "2024-04-01": 69583.7475072082, - "2024-01-19": 41247.39504614126, - "2023-11-11": 37091.32696862087, - "2023-05-14": 26870.710869318485, - "2023-05-13": 26826.991411986317, - "2023-05-06": 29140.480825826708, - "2023-04-16": 30324.069327007815, - "2023-11-19": 36601.69724779465, - "2023-04-15": 30399.978206046402, - "2023-05-16": 27055.26043975898, - "2023-09-23": 26572.519868666557, - "2023-07-02": 30537.422673009754, - "2023-08-15": 29339.22097911734, - "2024-01-25": 39930.050809294946, - "2024-03-13": 72896.37542950182, - "2024-01-21": 41663.9223563095, - "2024-02-01": 42267.34433314839, - "2023-06-15": 25015.27257868221, - "2024-03-16": 68131.31514419916, - "2023-11-27": 37093.65828871516, - "2024-01-10": 45801.65298604854, - "2024-03-15": 68161.58301065318, - "2023-06-21": 29072.074131042627, - "2024-01-02": 45255.22332174868, - "2023-04-26": 28684.153985695015, - "2023-07-11": 30517.103587918085, - "2023-10-25": 34337.32456645514, - "2024-01-01": 42700.5398037919, - "2024-02-14": 51502.672676975984, - "2023-09-04": 25894.118693814853, - "2023-09-06": 25720.464976050178, - "2024-04-03": 66034.40725763737, - "2024-03-08": 67749.22630306623, - "2023-11-28": 37375.73268557626, - "2023-12-03": 39520.625163089186, - "2023-08-02": 29450.500850638502, - "2023-08-27": 26058.663413855895, - "2023-06-22": 30111.194063668958, - "2023-10-20": 29533.209767104854, - "2023-05-25": 26269.650420987986, - "2023-10-10": 27511.154850639097, - "2024-01-14": 42778.87044946218, - "2023-12-15": 42581.59929783284, - "2023-10-19": 28500.83749022426, - "2024-02-08": 44816.34091317588, - "2023-11-08": 35363.7218831339, - "2023-11-12": 37107.18663525835, - "2023-12-22": 43752.39706899663, - "2023-05-20": 26912.27827427529, - "2023-05-31": 27115.14574089948, - "2024-03-23": 64555.889931922036, - "2024-04-10": 69096.12560421148, - "2023-09-27": 26257.847566151828, - "2024-03-04": 65313.795124590135, - "2023-09-10": 25815.105220123674, - "2024-02-29": 62276.593080278326, - "2023-07-22": 29884.26501943834, - "2023-07-21": 29853.392308288905, - "2023-06-30": 30522.490780876375, - "2023-12-29": 42444.169107620066, - "2023-12-04": 41563.25594544999, - "2023-09-21": 26679.834337773504, - "2023-06-02": 27086.65211800245, - "2023-10-11": 27074.74137856274, - "2023-07-19": 29987.981939845573, - "2023-05-05": 29256.962827611187, - "2024-03-21": 66837.9365881198, - "2024-04-08": 71728.2812803491, - "2023-04-29": 29318.54769247706, - "2023-06-14": 25934.14184104343, - "2023-10-05": 27667.579465544568, - "2023-10-16": 27972.031756633576, - "2024-02-10": 47324.395288713014, - "2024-04-07": 69390.3165591167, - "2023-05-21": 26926.95283545182, - "2024-02-20": 51846.390901927494, - "2023-11-17": 36381.87378737575, - "2023-12-11": 41967.18135219418, - "2023-11-26": 37511.65367901351, - "2023-11-16": 37012.18307091734, - "2023-06-29": 30492.007503060187, - "2023-04-12": 29997.223328996202, - "2023-06-11": 25802.146229435606, - "2024-02-02": 43050.57853384316, - "2023-09-14": 26503.206540452487, - "2024-01-27": 41796.26891616323, - "2024-03-30": 70004.84648173553, - "2023-05-04": 29028.40188141482, - "2023-09-28": 26555.505302761732, - "2023-10-27": 34009.71226304281, - "2023-05-01": 28491.849236147933, - "2023-05-15": 27381.585664395137, - "2023-11-22": 36547.41411491933, - "2023-06-03": 27164.010153281488, - "2024-01-18": 42416.82574691107, - "2023-08-26": 26030.027380573494, - "2024-02-15": 52108.61366296057, - "2023-10-28": 34102.4129271769, - "2024-03-24": 65337.251032640306, - "2023-04-22": 27345.627098359906, - "2023-04-10": 28427.49621672912, - "2023-12-06": 43847.5045607593, - "2023-11-10": 36969.58115941817, - "2024-01-30": 43420.51533681965, - "2023-08-09": 29743.647427189324, - "2023-05-02": 28135.796600405825, - "2023-11-14": 36344.037248575914, - "2024-01-23": 39242.85373031723, - "2024-01-31": 42875.09447702107, - "2024-01-11": 46498.01230966629, - "2024-02-18": 51750.49883420547, - "2023-06-16": 25584.725311337534, - "2023-10-30": 34468.667565174044, - "2023-12-17": 41904.364754619986, - "2024-02-26": 51764.665133310344, - "2023-07-16": 30301.854033672033, - "2024-01-05": 43779.41019823458, - "2023-08-23": 26075.775938281793, - "2024-03-11": 71748.82791819738, - "2023-08-01": 28927.820013391665, - "2024-03-14": 71952.38702676003, - "2024-02-21": 51276.01195699649, - "2023-08-28": 26017.716285775125, - "2023-07-04": 31007.354382616417, - "2023-12-13": 41364.26261908199, - "2023-08-13": 29376.80869339542, - "2024-03-31": 70429.6617799395, - "2023-12-09": 43992.70790626897, - "2024-04-02": 65958.96020867223, - "2024-02-06": 42927.24878703015, - "2024-04-09": 70363.9591413452, - "2023-05-30": 27784.468819648802, - "2023-11-04": 34764.354377745345, - "2024-01-15": 42615.86606149973, - "2023-07-03": 30759.852740610688, - "2023-12-28": 42909.68309203992, - "2023-04-23": 27577.14187908517, - "2023-04-17": 29561.594114175197, - "2023-05-08": 27922.751652166946, - "2024-02-27": 56662.01883579702, - "2024-02-07": 43100.87790594117, - "2023-09-25": 26169.625775758057, - "2024-03-19": 64082.91499301982, - "2024-03-10": 69448.99882057704, - "2023-09-02": 25814.93013709884, - "2024-01-12": 45410.57841885217, - "2023-11-29": 37919.98457431677, - "2023-10-15": 26901.355829523098, - "2023-11-30": 37739.976817852046, - "2024-01-24": 39924.55361406514, - "2023-08-11": 29382.487500773488, - "2024-02-11": 48187.519935661316, - "2023-06-08": 26448.269160894935, - "2023-08-16": 29118.01333946809, - "2023-11-15": 36193.11383898672, - "2023-12-16": 42270.78192326754, - "2024-03-29": 70019.29167923852, - "2024-04-04": 67184.5673880666, - "2023-06-10": 25694.511633842176, - "2023-07-28": 29259.955085149122, - "2024-01-20": 41579.12973986432, - "2023-10-21": 29810.09865421502, - "2023-05-12": 26405.23409747908, - "2023-11-03": 34536.08425474511, - "2023-08-31": 27112.75978344732, - "2024-01-29": 42284.24423284955, - "2024-01-04": 43352.461878232934, - "2023-05-22": 26848.21497933266, - "2023-07-26": 29278.375175671794, - "2023-11-13": 36877.92421271831, - "2024-03-25": 67566.8199917375, - "2023-08-07": 29043.08479820615, - "2023-10-29": 34378.4041967256, - "2023-07-25": 29178.961664328646, - "2023-05-17": 26978.51479673513, - "2023-10-24": 34099.79575344469, - "2023-06-05": 26682.639998467166, - "2023-11-02": 35230.290735305316, - "2023-12-18": 41219.15804181882, - "2023-11-24": 37703.33937748521, - "2023-08-21": 26054.978375589802, - "2023-08-14": 29373.783895793025, - "2023-05-26": 26513.614488349835, - "2024-03-05": 66686.69954258388, - "2024-04-06": 68007.88106720381, - "2023-12-23": 43704.94826934516, - "2024-02-03": 43069.41086615945, - "2024-02-16": 52006.44914605871, - "2023-05-28": 27221.777428143625, - "2023-12-14": 42853.34475191429, - "2023-06-24": 30634.7038200892, - "2023-08-17": 28346.560421545655, - "2023-12-26": 42636.676475887856, - "2023-11-09": 36614.044017970955, - "2023-05-11": 27367.945369235524, - "2023-08-19": 25994.301129043044, - "2023-06-23": 30243.83017865174, - "2023-06-18": 26517.23988087028, - "2023-08-08": 29472.79283737712, - "2023-07-24": 29222.36744238986, - "2023-10-14": 26877.61410379616, - "2024-01-17": 42680.96927512974, - "2023-04-19": 29294.337260689652, - "2024-04-06T23": 69252.39613177849, - "2024-04-07T13": 69407.52484052374, - "2024-04-05T00": 68368.05846110638, - "2024-04-04T13": 67294.29992465598, - "2024-04-03T19": 65872.40132867437, - "2024-04-04T14": 67674.5573841813, - "2024-04-09T08": 70145.71433684815, - "2024-04-04T15": 67641.5675761953, - "2024-04-04T02": 65803.97213741379, - "2024-04-05T21": 67726.4426355026, - "2024-04-03T17": 66066.92621750337, - "2024-04-04T03": 65683.67964969808, - "2024-04-04T16": 67907.95835163894, - "2024-04-07T20": 69312.42849081299, - "2024-04-06T17": 68211.6000205276, - "2024-04-07T15": 69679.46441340269, - "2024-04-07T09": 69386.1373144694, - "2024-04-06T20": 68304.25877649887, - "2024-04-07T22": 69210.98109630219, - "2024-04-05T10": 66904.41485477178, - "2024-04-05T18": 67594.41918399568, - "2024-04-07T03": 69396.83156718328, - "2024-04-04T12": 66568.50201345481, - "2024-04-03T13": 65856.63985465704, - "2024-04-05T12": 66511.29703695644, - "2024-04-10T06": 69372.01893023476, - "2024-04-03T16": 66287.45945067231, - "2024-04-10T10": 68789.49515891155, - "2024-04-03T21": 65782.4560063708, - "2024-04-05T01": 68134.85862182987, - "2024-04-07T04": 69294.69657483036, - "2024-04-04T18": 68923.63866810418, - "2024-04-05T11": 66800.79359377139, - "2024-04-08T13": 72031.90193406216, - "2024-04-03T20": 65715.31218740679, - "2024-04-09T05": 71109.06619466616, - "2024-04-08T10": 72049.85402524799, - "2024-04-04T10": 66325.54455258783, - "2024-04-05T17": 67763.70744033792, - "2024-04-08T20": 71658.64461810687, - "2024-04-07T19": 69312.49005424863, - "2024-04-04T05": 65496.86206710727, - "2024-04-08T23": 71804.24342313565, - "2024-04-08T01": 69627.02668373969, - "2024-04-07T10": 69368.77838866686, - "2024-04-05T20": 67610.13970042951, - "2024-04-05T08": 67269.43316483455, - "2024-04-06T15": 68126.2737550801, - "2024-04-05T16": 67976.38776667189, - "2024-04-05T06": 67034.75037369572, - "2024-04-09T15": 69083.50022865672, - "2024-04-06T21": 68408.79272912686, - "2024-04-09T09": 70606.60503380849, - "2024-04-08T22": 71693.6723544133, - "2024-04-08T16": 71829.84219716696, - "2024-04-07T07": 69395.85631249231, - "2024-04-04T09": 66262.20424913018, - "2024-04-10T05": 69297.767526266, - "2024-04-09T17": 68723.32458115244, - "2024-04-06T11": 67746.1560089888, - "2024-04-06T18": 68277.2294307214, - "2024-04-05T09": 66738.78204432788, - "2024-04-08T07": 70504.00206532763, - "2024-04-04T06": 65687.40547168835, - "2024-04-08T12": 72358.99057069581, - "2024-04-05T15": 67946.36998053952, - "2024-04-04T20": 67865.73570787298, - "2024-04-04T22": 67908.31372410087, - "2024-04-10T02": 69035.87727470738, - "2024-04-09T19": 68909.60565425767, - "2024-04-04T07": 66086.95605634281, - "2024-04-04T04": 65431.71575602511, - "2024-04-08T06": 69729.45897475428, - "2024-04-08T18": 71914.31097262658, - "2024-04-05T02": 67887.00757793641, - "2024-04-09T07": 70624.10802628241, - "2024-04-09T14": 69720.83185513178, - "2024-04-08T05": 69587.819776027, - "2024-04-03T15": 66049.17091079759, - "2024-04-08T14": 71638.84497683383, - "2024-04-09T10": 70466.46467609242, - "2024-04-06T01": 67894.78560203707, - "2024-04-06T16": 68047.64524530014, - "2024-04-09T03": 71405.61354842145, - "2024-04-09T11": 70793.20745474566, - "2024-04-07T01": 69452.9992191775, - "2024-04-03T22": 66019.44304201553, - "2024-04-07T21": 69273.08706492475, - "2024-04-10T04": 69084.7257059603, - "2024-04-08T15": 71815.12849664903, - "2024-04-04T21": 67854.93205815763, - "2024-04-07T17": 69839.40458334841, - "2024-04-07T11": 69355.54116716649, - "2024-04-08T03": 69291.2265620869, - "2024-04-10T00": 69136.16497084626, - "2024-04-08T04": 69375.45256140894, - "2024-04-03T18": 65832.92861851926, - "2024-04-06T22": 68681.82050678346, - "2024-04-06T08": 67983.812594713, - "2024-04-08T00": 69275.64045877205, - "2024-04-09T01": 71181.49470226986, - "2024-04-03T12": 65948.6624444168, - "2024-04-10T08": 68970.75512001038, - "2024-04-06T05": 68028.49141184788, - "2024-04-04T11": 66287.12193422862, - "2024-04-05T04": 67782.29702711171, - "2024-04-07T00": 69033.79335501905, - "2024-04-07T06": 69271.51363037959, - "2024-04-09T04": 71186.43576088354, - "2024-04-05T13": 67013.92703294079, - "2024-04-09T23": 69107.70823252498, - "2024-04-04T23": 68385.85754801016, - "2024-04-05T03": 67851.84664264285, - "2024-04-04T17": 68118.57475424012, - "2024-04-10T07": 69398.84606353282, - "2024-04-04T08": 66234.37578666951, - "2024-04-08T17": 71585.14029547172, - "2024-04-06T06": 68051.52188088602, - "2024-04-09T12": 70780.36731330804, - "2024-04-06T03": 67751.07222824224, - "2024-04-08T11": 72324.04770593831, - "2024-04-08T21": 71747.96093394184, - "2024-04-05T23": 67856.26221793744, - "2024-04-05T14": 67861.06602553806, - "2024-04-04T19": 68683.56382254024, - "2024-04-04T01": 66204.67821568338, - "2024-04-08T08": 71249.58669565246, - "2024-04-06T19": 68342.92794271567, - "2024-04-10T09": 69004.3734846302, - "2024-04-09T20": 69057.98702249365, - "2024-04-06T04": 67768.46760346538, - "2024-04-07T05": 69407.16919378233, - "2024-04-07T23": 69392.95356345848, - "2024-04-06T10": 67833.2672883389, - "2024-04-03T23": 66175.95102076068, - "2024-04-03T14": 66582.83724068104, - "2024-04-06T02": 67645.96073900549, - "2024-04-08T02": 69298.36517521978, - "2024-04-09T00": 71490.73379935855, - "2024-04-06T07": 68043.99187128765, - "2024-04-05T22": 67696.62949856752, - "2024-04-10T11": 69016.57987103453, - "2024-04-08T19": 71808.31574376946, - "2024-04-06T13": 67683.46870312346, - "2024-04-09T06": 71035.34761996908, - "2024-04-09T02": 71465.56102935469, - "2024-04-09T22": 69262.96385644481, - "2024-04-10T03": 68908.29941558908, - "2024-04-04T00": 66210.10556431778, - "2024-04-06T14": 67862.85029320313, - "2024-04-07T12": 69321.59078028242, - "2024-04-05T07": 66979.98920503957, - "2024-04-07T14": 69354.29027428862, - "2024-04-09T13": 70569.90655445162, - "2024-04-07T18": 69534.82636160591, - "2024-04-08T09": 72140.97376257158, - "2024-04-09T18": 68860.57900627168, - "2024-04-05T19": 67804.05962187762, - "2024-04-06T00": 67889.82677540742, - "2024-04-10T01": 68844.36660827928, - "2024-04-07T08": 69503.41825883361, - "2024-04-06T12": 67740.5230295045, - "2024-04-05T05": 66873.67506547194, - "2024-04-07T02": 69535.69051230796, - "2024-04-09T16": 68892.14263295471, - "2024-04-07T16": 70077.12242538655, - "2024-04-06T09": 67943.60514845984, - "2024-04-09T21": 69083.13943238159, - "latest": 64435, - "2024-04-10T12": 69025.44083903496, - "2024-04-10T13": 67685.09109904071, - "2024-04-10T14": 68586.18813165028, - "2024-04-10T15": 68543.06403329033, - "2024-04-11": 70673.25224056275, - "2024-04-10T17": 69361.1246918896, - "2024-04-11T07": 70744.13102854106, - "2024-04-10T20": 69878.80963512477, - "2024-04-10T19": 69558.31593537868, - "2024-04-11T05": 70568.83819298085, - "2024-04-11T02": 70823.00996941378, - "2024-04-11T06": 70728.6946651175, - "2024-04-11T03": 70875.75012918664, - "2024-04-11T00": 70389.63600542347, - "2024-04-10T22": 70695.26571497461, - "2024-04-10T16": 68951.57944905174, - "2024-04-10T23": 70595.67767285445, - "2024-04-11T04": 70544.33734613465, - "2024-04-11T01": 70610.3511033556, - "2024-04-10T21": 69773.28711402544, - "2024-04-10T18": 69261.65633761043, - "2024-04-11T08": 70744.72978168151, - "2024-04-11T09": 71037.59920830857, - "2024-04-11T10": 70630.61236877304, - "2024-04-11T11": 70511.36361751698, - "2024-04-11T12": 70587.90850450011, - "2024-04-11T13": 70631.87398048544, - "2024-04-11T14": 70260.47634231295, - "2024-04-11T15": 69841.97189323367, - "2024-04-12T09": 70661.99658134035, - "2024-04-12T00": 70274.7796756017, - "2024-04-12T12": 70734.16432861408, - "2024-04-12T03": 70849.52428791206, - "2024-04-12T02": 70678.19949241298, - "2024-04-12T10": 70703.36213622283, - "2024-04-12T11": 70825.63473558225, - "2024-04-12T07": 70746.45217018717, - "2024-04-12T06": 70884.41005321071, - "2024-04-12T05": 71000.08894466025, - "2024-04-12T01": 70233.69399965301, - "2024-04-12T08": 70770.5103861789, - "2024-04-12T04": 70942.72389430237, - "2024-04-12T13": 70100.32570991476, - "2024-04-12": 70000.4104991704, - "2024-04-13": 67080.9435652618, - "2024-04-12T20": 67257.60957820991, - "2024-04-12T16": 68887.92699506674, - "2024-04-13T02": 66436.74314685441, - "2024-04-12T17": 68162.13182754938, - "2024-04-12T21": 66875.33510158143, - "2024-04-13T01": 66381.88271865557, - "2024-04-12T19": 66865.90149857577, - "2024-04-12T14": 69665.2204678405, - "2024-04-12T22": 67054.80308664066, - "2024-04-12T23": 66999.02943575279, - "2024-04-13T00": 66979.423249291, - "2024-04-12T18": 66628.06745115005, - "2024-04-12T15": 69394.43263143132, - "2024-04-14": 64404.82548907413, - "2024-04-13T04": 67355.16449090054, - "2024-04-13T07": 67430.47363044406, - "2024-04-14T01": 63818.205662830274, - "2024-04-13T14": 67593.7473711594, - "2024-04-13T20": 62441.20200550539, - "2024-04-13T13": 67609.16772346792, - "2024-04-13T03": 66811.89098140117, - "2024-04-13T23": 64727.48105306579, - "2024-04-13T11": 67538.18453396385, - "2024-04-14T02": 63418.33109076114, - "2024-04-13T22": 63569.40018494902, - "2024-04-13T21": 62198.907251533885, - "2024-04-13T09": 67266.79375472778, - "2024-04-13T19": 66767.14917921255, - "2024-04-13T16": 67514.86910067132, - "2024-04-13T15": 67718.59198601654, - "2024-04-13T17": 66927.70271480325, - "2024-04-13T08": 67298.95917765672, - "2024-04-13T06": 67390.97555727008, - "2024-04-13T05": 67632.27438221138, - "2024-04-13T18": 66865.65462572945, - "2024-04-13T10": 67438.98785542155, - "2024-04-14T00": 63869.276631512934, - "2024-04-13T12": 67399.76708771284, - "2024-04-14T03": 62812.95426838955, - "2024-04-14T19": 64173.860060230545, - "2024-04-14T11": 64121.570306344736, - "2024-04-14T14": 63960.276729119854, - "2024-04-14T16": 64417.72204097677, - "2024-04-14T21": 63634.49188299735, - "2024-04-14T22": 65121.552179653874, - "2024-04-14T04": 63958.67182246171, - "2024-04-14T08": 64617.26696152153, - "2024-04-14T17": 63816.98131305592, - "2024-04-14T23": 65508.672560704734, - "2024-04-14T20": 64105.014421375585, - "2024-04-14T05": 64317.61401184929, - "2024-04-14T13": 64557.48550779974, - "2024-04-14T10": 64399.55848509291, - "2024-04-14T15": 64119.38690391697, - "2024-04-14T12": 64411.44704094772, - "2024-04-14T18": 64359.548420403895, - "2024-04-14T09": 64324.995201766076, - "2024-04-14T06": 64594.459584924945, - "2024-04-14T07": 64682.26913945216, - "2024-04-15T00": 65582.66634504039, - "2024-04-15T02": 65243.638894614334, - "2024-04-15T05": 65206.61470489877, - "2024-04-15T04": 64930.46346564182, - "2024-04-15T03": 65285.83757196982, - "2024-04-15T06": 66215.40969858423, - "2024-04-15T01": 65493.36867200319, - "2024-04-15T07": 66423.20691233067, - "2024-04-15T08": 66294.95032660617, - "2024-04-15T09": 66715.91868860446, - "2024-04-15T11": 66243.04344725054, - "2024-04-15T10": 66562.48171453198, - "2024-04-15T12": 66106.42956589408, - "2024-04-15T14": 65351.66798823514, - "2024-04-15T13": 66167.56040009928, - "2024-04-15": 65200.11336751955, - "2024-04-16": 62956.915351833406, - "2024-04-16T02": 63091.426782693634, - "2024-04-15T23": 63412.01465271786, - "2024-04-16T00": 63333.17033289672, - "2024-04-15T15": 64537.30166368658, - "2024-04-15T19": 63175.236243639956, - "2024-04-16T03": 63147.7565891771, - "2024-04-15T20": 63279.29971646516, - "2024-04-15T16": 64234.50577720879, - "2024-04-15T18": 63613.23786906062, - "2024-04-16T01": 63500.827960687195, - "2024-04-15T21": 63066.761385678954, - "2024-04-15T17": 63947.31787341355, - "2024-04-15T22": 63190.702811176816, - "2024-04-16T06": 62975.78394049591, - "2024-04-16T05": 62698.42447493841, - "2024-04-16T08": 63560.38164223305, - "2024-04-16T04": 62480.55243495884, - "2024-04-16T07": 63393.37229334292, - "2024-04-16T09": 63378.68325859197, - "2024-04-16T10": 62449.37201873838, - "2024-04-16T11": 62697.39327015095, - "2024-04-16T12": 63053.87911487075, - "2024-04-16T18": 62786.39309607548, - "2024-04-16T20": 62861.652011621874, - "2024-04-16T13": 62887.62194885705, - "2024-04-16T14": 62532.09919836435, - "2024-04-16T21": 63692.00061872721, - "2024-04-16T15": 62078.051358210345, - "2024-04-16T16": 61959.63817974863, - "2024-04-16T17": 62810.022222320455, - "2024-04-16T19": 62893.88078173982, - "2024-04-17": 63888.79031467681, - "2024-04-17T00": 63771.5403306793, - "2024-04-17T08": 63450.314013913805, - "2024-04-17T02": 63903.73972515958, - "2024-04-17T05": 64199.86567662601, - "2024-04-17T03": 63957.66319021611, - "2024-04-16T22": 63776.30218298729, - "2024-04-16T23": 63787.784839762535, - "2024-04-17T06": 63892.69451600344, - "2024-04-17T01": 63898.594668826874, - "2024-04-17T04": 63937.07606792339, - "2024-04-17T07": 63536.809412427094, - "2024-04-17T09": 63350.62513568913, - "2024-04-17T10": 63342.30473633799, - "2024-04-17T11": 62886.057735517745, - "2024-04-17T12": 62471.63668700931, - "2024-04-17T13": 62280.302210354625, - "2024-04-18T09": 61503.46270786515, - "2024-04-18T10": 61657.605531780224, - "2024-04-18T04": 61918.054920343, - "2024-04-18T00": 61187.46843741004, - "2024-04-18T08": 61254.86562815793, - "2024-04-18T07": 61205.76330211913, - "2024-04-18T01": 61532.31085115403, - "2024-04-18T02": 61614.83483219283, - "2024-04-18T03": 62024.57314575996, - "2024-04-18T05": 61587.947074010895, - "2024-04-18T12": 62221.754184232916, - "2024-04-18T06": 61103.8086868229, - "2024-04-18T11": 62695.68520676048, - "2024-04-18T13": 62365.79308970833, - "2024-04-18": 62404.163725832266, - "2024-04-19": 63517.289856392184, - "2024-04-18T19": 63321.47593489072, - "2024-04-19T03": 61759.83819305657, - "2024-04-18T18": 62897.63100649958, - "2024-04-19T04": 62365.92451644473, - "2024-04-19T05": 62125.134146380726, - "2024-04-19T00": 63069.237023418325, - "2024-04-18T20": 63467.297815498576, - "2024-04-19T01": 61836.45808417631, - "2024-04-18T17": 63316.11661785136, - "2024-04-19T02": 60259.849441710896, - "2024-04-18T21": 63574.49383442045, - "2024-04-18T14": 63668.55466595021, - "2024-04-18T16": 63555.1770046291, - "2024-04-18T15": 63705.8748655248, - "2024-04-18T23": 63506.22975339121, - "2024-04-18T22": 63497.70922493174, - "2024-04-19T06": 62845.15134685706, - "2024-04-19T07": 64576.76501078571, - "2024-04-19T08": 64587.66164663983, - "2024-04-19T09": 64732.155787219854, - "2024-04-19T10": 64777.89749398124, - "2024-04-19T11": 64804.47075903137, - "2024-04-19T12": 64945.696780329075, - "2024-04-19T13": 64804.994628894085, - "2024-04-19T14": 64947.98675845941, - "2024-04-19T15": 64529.124321299125, - "2024-04-20": 64004.45854319186, - "2024-04-19T22": 64308.60226971114, - "2024-04-19T23": 63582.460059318, - "2024-04-19T20": 64086.81856207502, - "2024-04-19T19": 64269.62975593916, - "2024-04-19T21": 64317.610593249265, - "2024-04-19T18": 64373.219304247104, - "2024-04-19T16": 64052.89816457239, - "2024-04-19T17": 64241.223186481504, - "2024-04-20T00": 63797.78822625218, - "2024-04-20T01": 63552.984189283656, - "2024-04-21": 64986.289204818495, - "2024-04-20T16": 64738.219488963754, - "2024-04-20T19": 64871.750049020855, - "2024-04-20T15": 64251.5765239832, - "2024-04-20T02": 63777.96871974614, - "2024-04-20T09": 63583.5175472619, - "2024-04-20T04": 63971.12695125565, - "2024-04-20T10": 63642.189640914636, - "2024-04-20T22": 64682.46172067197, - "2024-04-21T00": 64829.380162655274, - "2024-04-20T12": 63786.69056031188, - "2024-04-21T04": 65205.69247263208, - "2024-04-20T05": 64147.00896336274, - "2024-04-20T18": 65036.14432690529, - "2024-04-20T11": 63757.52426460635, - "2024-04-20T23": 64887.16377243893, - "2024-04-20T08": 63850.06368044417, - "2024-04-20T13": 63914.475645973274, - "2024-04-21T02": 65215.998114372866, - "2024-04-21T01": 64990.24039113798, - "2024-04-20T20": 64805.97342508214, - "2024-04-20T03": 63955.66507326279, - "2024-04-20T14": 63909.845640612395, - "2024-04-20T07": 64038.7919935101, - "2024-04-20T17": 65238.98900126074, - "2024-04-20T21": 64755.92612430803, - "2024-04-20T06": 64095.63726123164, - "2024-04-21T03": 65331.70317476972, - "2024-04-21T16": 65065.995315484346, - "2024-04-21T11": 65000.95013336604, - "2024-04-21T17": 64679.8388429762, - "2024-04-21T08": 65183.28487409905, - "2024-04-21T12": 65296.34612807932, - "2024-04-21T15": 64919.71712761995, - "2024-04-21T06": 65074.07506231428, - "2024-04-21T07": 65080.62413018502, - "2024-04-21T14": 64889.9275795219, - "2024-04-21T13": 65041.897239267266, - "2024-04-21T05": 65121.759602721424, - "2024-04-21T10": 64925.97423081164, - "2024-04-21T09": 64958.351065800445, - "2024-04-21T19": 64734.16584841056, - "2024-04-21T22": 64993.21621228581, - "2024-04-21T21": 64898.27230065608, - "2024-04-21T20": 64571.961687362695, - "2024-04-21T18": 64794.852747832185, - "2024-04-22": 66083.94931674018, - "2024-04-22T00": 64958.38586009449, - "2024-04-22T07": 66132.77868131308, - "2024-04-22T05": 65981.87306645693, - "2024-04-22T04": 65737.22436806442, - "2024-04-22T02": 64757.96130123992, - "2024-04-22T01": 64873.10590806183, - "2024-04-22T06": 66303.68208137238, - "2024-04-21T23": 64967.65462043476, - "2024-04-22T03": 65417.31510647433, - "2024-04-22T08": 66053.00008868682, - "2024-04-22T09": 65995.1504515962, - "2024-04-22T10": 65924.48739150951, - "2024-04-22T11": 66085.36893814267, - "2024-04-22T12": 65903.2313928471, - "2024-04-22T13": 66048.61211663991, - "2024-04-22T14": 66190.79415333882, - "2024-04-22T15": 66007.04786229541, - "2024-04-22T16": 66149.46752816698, - "2024-04-23": 66475.32619960954, - "2024-04-23T03": 66664.81854313315, - "2024-04-22T19": 66354.44134265133, - "2024-04-22T17": 66637.29590311472, - "2024-04-22T23": 67053.58837620924, - "2024-04-22T20": 66545.20329286582, - "2024-04-22T21": 66511.78339430627, - "2024-04-22T18": 66527.83262848243, - "2024-04-23T06": 66570.28466779926, - "2024-04-22T22": 66740.93232071967, - "2024-04-23T04": 66448.7732425343, - "2024-04-23T01": 67008.0386961633, - "2024-04-23T00": 66858.6027717122, - "2024-04-23T05": 66385.15400930692, - "2024-04-23T02": 66850.1332308379, - "2024-04-23T07": 66281.98506210299, - "2024-04-23T08": 66146.4227616896, - "2024-04-23T09": 66214.1055109378, - "2024-04-23T10": 66217.0897136657, - "2024-04-23T11": 66073.84676782407, - "2024-04-23T12": 66054.8068353797, - "2024-04-23T13": 66095.5295428948, - "2024-04-23T14": 66531.27565923118, - "2024-04-23T15": 66919.56349733032, - "2024-04-23T16": 66674.61889423254, - "2024-04-24": 66428.98997797654, - "2024-04-24T02": 66625.49284256273, - "2024-04-24T00": 66601.0666954767, - "2024-04-24T01": 66783.4063400493, - "2024-04-23T23": 66342.56359541832, - "2024-04-24T06": 66669.30821200732, - "2024-04-23T22": 66403.0011081212, - "2024-04-23T18": 66769.27990237196, - "2024-04-23T20": 66273.63168907203, - "2024-04-23T21": 66328.89967882281, - "2024-04-24T04": 66734.2121039617, - "2024-04-24T05": 66820.98878767354, - "2024-04-24T03": 66624.76884057949, - "2024-04-24T07": 66754.51866628118, - "2024-04-23T19": 66567.11169247446, - "2024-04-23T17": 66734.26928965758, - "2024-04-24T08": 66651.4970431892, - "2024-04-24T09": 66400.91603848567, - "2024-04-24T10": 66342.11333619761, - "2024-04-24T11": 66472.87405264126, - "2024-04-24T12": 66611.8691758279, - "2024-04-24T13": 66099.72346147931, - "2024-04-24T14": 65216.50338400397, - "2024-04-24T15": 64846.56006463103, - "2024-04-25": 64279.51812857524, - "2024-04-24T18": 64664.75874571256, - "2024-04-25T00": 64451.04232533306, - "2024-04-24T21": 64232.59413678203, - "2024-04-24T17": 64878.23289592557, - "2024-04-24T16": 64675.371141707146, - "2024-04-24T20": 63953.582111916076, - "2024-04-24T23": 64129.31198743744, - "2024-04-24T22": 64139.18952009393, - "2024-04-24T19": 64223.90606588486, - "2024-04-25T01": 64446.75053160693, - "2024-04-25T03": 64322.56726966935, - "2024-04-25T06": 64268.16050503554, - "2024-04-25T05": 64205.75821629284, - "2024-04-25T04": 64253.81878626031, - "2024-04-25T02": 64216.23962942709, - "2024-04-25T07": 64221.433130991696, - "2024-04-25T08": 63983.17829337444, - "2024-04-25T09": 63995.599119714825, - "2024-04-25T10": 63945.25451137906, - "2024-04-25T11": 63797.770026790844, - "2024-04-25T12": 63830.494117026225, - "2024-04-25T13": 63456.48539080986, - "2024-04-25T14": 63473.685613236914, - "2024-04-25T15": 63304.46084496703, - "2024-04-25T16": 63957.27716091806, - "2024-04-25T17": 64400.82358666736, - "2024-04-25T18": 64606.80217179338, - "2024-04-25T19": 64631.61482610881, - "2024-04-26": 64486.183359158975, - "2024-04-25T22": 64639.62640567817, - "2024-04-25T21": 64941.59506403488, - "2024-04-25T20": 64753.314739392525, - "2024-04-26T01": 64206.09101061129, - "2024-04-25T23": 64534.93078819923, - "2024-04-26T00": 64306.1653774911, - "2024-04-26T05": 64269.3921788652, - "2024-04-26T02": 64457.03099623197, - "2024-04-26T03": 64396.58633465143, - "2024-04-26T04": 64276.251495707176, - "2024-04-26T06": 64438.072244763156, - "2024-04-26T07": 64376.25682827643, - "2024-04-26T08": 64279.92044504777, - "2024-04-26T09": 64448.94624724678, - "2024-04-26T10": 64510.54027407139, - "2024-04-26T11": 64066.288797391164, - "2024-04-26T12": 64236.47310019924, - "2024-04-26T13": 64164.20911623725, - "2024-04-26T14": 64478.31870534363, - "2024-04-26T15": 63517.413579998705, - "2024-04-26T21": 63909.55528074182, - "2024-04-26T17": 63813.6208460205, - "2024-04-26T19": 63887.63521463758, - "2024-04-26T16": 63618.95607775599, - "2024-04-26T18": 64004.04355199219, - "2024-04-26T20": 63912.51532727684, - "2024-04-27": 63751.76615028954, - "2024-04-26T22": 64054.99844147635, - "2024-04-26T23": 63805.51801456799, - "2024-04-27T00": 63751.76615028954, - "2024-04-27T01": 62676.34099108231, - "2024-04-28": 63394.9930544734, - "2024-04-27T13": 63131.54411666958, - "2024-04-28T00": 63534.45724352019, - "2024-04-27T20": 63206.14885734793, - "2024-04-27T23": 63408.56213445849, - "2024-04-27T06": 62967.3421706288, - "2024-04-27T05": 62959.773082092324, - "2024-04-27T02": 62963.36214324257, - "2024-04-27T18": 63190.17788673991, - "2024-04-27T07": 63047.311938444276, - "2024-04-27T04": 63010.89043752962, - "2024-04-27T21": 63199.802749790826, - "2024-04-27T09": 62921.825127132055, - "2024-04-27T14": 63153.60229304629, - "2024-04-27T22": 63271.624980134235, - "2024-04-27T16": 62871.08915231987, - "2024-04-27T10": 62871.66614507461, - "2024-04-27T17": 62933.93256155027, - "2024-04-27T08": 62952.943365497296, - "2024-04-27T12": 63000.07092181327, - "2024-04-27T15": 62977.71779794346, - "2024-04-27T11": 62817.97929504092, - "2024-04-27T03": 63047.138675616676, - "2024-04-27T19": 63269.23097380865, - "2024-04-28T01": 63574.84407748873, - "2024-04-28T20": 63630.65993339637, - "2024-04-28T14": 63600.4256876809, - "2024-04-28T05": 63825.58501106807, - "2024-04-28T08": 63825.99772839622, - "2024-04-28T16": 63641.23995286529, - "2024-04-28T11": 63466.38302787632, - "2024-04-28T22": 63625.17116862718, - "2024-04-28T03": 64057.217097148794, - "2024-04-28T13": 63720.12844782101, - "2024-04-28T15": 63515.790576535175, - "2024-04-28T04": 63937.17882454994, - "2024-04-28T09": 63730.49552676498, - "2024-04-28T19": 63775.50647441983, - "2024-04-28T06": 63878.35308923093, - "2024-04-28T12": 63536.80038008519, - "2024-04-28T02": 63627.3844166286, - "2024-04-28T17": 63660.467853040456, - "2024-04-28T21": 63641.96665355145, - "2024-04-28T18": 63734.03149305133, - "2024-04-28T07": 63911.99285754955, - "2024-04-28T10": 63598.957286822864, - "2024-04-29": 62642.38620431776, - "2024-04-28T23": 63137.88072577567, - "2024-04-29T00": 63216.63350836984, - "2024-04-29T01": 63195.17257946919, - "2024-04-29T06": 62219.83928873355, - "2024-04-29T02": 62946.89373791893, - "2024-04-29T05": 62370.422619156016, - "2024-04-29T03": 62583.590976033505, - "2024-04-29T04": 62500.77745165994, - "2024-04-29T07": 62185.2441394792, - "2024-04-29T08": 62394.20698451431, - "2024-04-29T09": 62403.99060765479, - "2024-04-29T10": 62485.910055382665, - "2024-04-29T11": 62394.62149157186, - "2024-04-29T12": 62236.95319549425, - "2024-04-29T13": 62619.52475677046, - "2024-04-29T14": 61988.375823439164, - "2024-04-29T15": 62896.313858155736, - "2024-04-30": 63827.108114893235, - "2024-04-30T04": 63518.62179648667, - "2024-04-29T21": 62965.23886493297, - "2024-04-30T03": 63634.31653186532, - "2024-04-29T22": 63569.61856001181, - "2024-04-29T19": 62691.32024912426, - "2024-04-29T23": 63959.21287352645, - "2024-04-29T18": 62867.49264682592, - "2024-04-30T00": 63973.63230919587, - "2024-04-29T20": 62996.45427097852, - "2024-04-30T01": 64182.19855184723, - "2024-04-30T02": 63606.356041172185, - "2024-04-29T16": 62969.482868772786, - "2024-04-29T17": 62993.38805313989, - "2024-04-30T05": 63300.475306141685, - "2024-04-30T06": 63365.535120743014, - "2024-04-30T07": 63387.94067577044, - "2024-04-30T08": 63157.078601803245, - "2024-04-30T09": 61905.188337013606, - "2024-04-30T10": 61658.3650949231, - "2024-04-30T11": 61715.0192102861, - "2024-04-30T12": 61190.08933643445, - "2024-04-30T13": 61178.50152775359, - "2024-04-30T14": 60771.18438235919, - "2024-04-30T15": 61227.97534352162, - "2024-04-30T16": 60793.240622539866, - "2024-05-01": 57678.46708677875, - "2024-04-30T22": 60135.1650856609, - "2024-04-30T17": 60322.09918156734, - "2024-04-30T20": 59130.90288936685, - "2024-04-30T23": 60509.138218206084, - "2024-04-30T19": 60235.0767234763, - "2024-04-30T18": 60338.811211535605, - "2024-05-01T01": 60128.6609691792, - "2024-05-01T00": 60570.49956727372, - "2024-04-30T21": 59862.81401013311, - "2024-05-01T02": 59742.25700493221, - "2024-05-01T03": 60012.718845798925, - "2024-05-01T05": 60016.44922010738, - "2024-05-01T04": 60211.297475065396, - "2024-05-01T06": 59718.70108775039, - "2024-05-01T07": 57858.285684181086, - "2024-05-01T08": 56975.53855127993, - "2024-05-01T09": 57241.62371692311, - "2024-05-01T10": 57079.45266919757, - "2024-05-01T11": 57683.04579970379, - "2024-05-01T12": 57812.74612607129, - "2024-05-01T13": 57904.00993513547, - "2024-05-01T15": 57425.102178796966, - "2024-05-01T16": 56966.79447695935, - "2024-05-01T14": 57234.75505987105, - "2024-05-01T21": 57361.4276584326, - "2024-05-01T20": 57198.835137077825, - "2024-05-01T17": 57119.09786277997, - "2024-05-01T19": 57737.97416811023, - "2024-05-01T18": 58031.673257709896, - "2024-05-01T22": 57928.65668857121, - "2024-05-02": 58190.957487344676, - "2024-05-02T01": 57281.9565843493, - "2024-05-02T02": 57295.55588892048, - "2024-05-01T23": 58024.66083166122, - "2024-05-02T00": 58090.34355355957, - "2024-05-02T04": 57427.049384944985, - "2024-05-02T06": 57544.246048350935, - "2024-05-02T03": 57480.01498309979, - "2024-05-02T05": 57359.7776228275, - "2024-05-02T07": 57590.46643577258, - "2024-05-02T08": 57635.934438537755, - "2024-05-02T09": 57826.7318073255, - "2024-05-02T10": 57807.054371483224, - "2024-05-02T11": 57807.71365325178, - "2024-05-02T12": 58515.19944879183, - "2024-05-02T13": 58531.72475872059, - "2024-05-02T14": 58422.09286332141, - "2024-05-02T15": 59251.75375936103, - "2024-05-02T16": 59042.411617763915, - "2024-05-02T17": 59061.45700210241, - "2024-05-03T04": 59678.318549388074, - "2024-05-03T02": 59608.63660653811, - "2024-05-03T03": 59774.21022683278, - "2024-05-03T05": 59553.563151557835, - "2024-05-03T06": 59394.50541487669, - "2024-05-03T00": 59030.4974827972, - "2024-05-03T07": 59337.91976543282, - "2024-05-03T01": 59368.25721990413, - "2024-05-03T08": 59291.43963601324, - "2024-05-03T09": 59410.504371176845, - "2024-05-03T10": 59221.387869417405, - "2024-05-03T11": 59099.24568490107, - "2024-05-03T12": 60242.704504420835, - "2024-05-03T13": 61180.27840701572, - "2024-05-03T14": 61693.23146750591, - "2024-05-03T15": 61558.74299609955, - "2024-05-03": 60722.30359257101, - "2024-05-04": 63541.75797030084, - "2024-05-03T20": 62786.61068671211, - "2024-05-04T05": 63160.512585941695, - "2024-05-03T18": 61833.40931572168, - "2024-05-04T03": 62735.96431892613, - "2024-05-03T17": 61839.10410954481, - "2024-05-03T21": 62641.32131985835, - "2024-05-03T22": 62842.21798090446, - "2024-05-03T19": 61765.28151288333, - "2024-05-04T02": 62712.74896401466, - "2024-05-03T16": 61833.089198733745, - "2024-05-04T01": 63017.81314029635, - "2024-05-04T04": 62808.81554055743, - "2024-05-03T23": 62979.54133030805, - "2024-05-04T00": 62902.2489999993, - "2024-05-04T06": 63144.49884853754, - "2024-05-04T13": 63725.86041028188, - "2024-05-04T10": 63490.43746584842, - "2024-05-04T12": 63900.14017106351, - "2024-05-04T07": 62987.89115652427, - "2024-05-04T11": 64190.48320361767, - "2024-05-04T09": 63208.38636405908, - "2024-05-04T15": 63633.85321885701, - "2024-05-04T08": 63053.91037763019, - "2024-05-04T14": 63748.00991805696, - "2024-05-05": 63769.02395338465, - "2024-05-05T01": 63249.053931634844, - "2024-05-04T19": 63647.56087144962, - "2024-05-04T20": 64011.64582010469, - "2024-05-05T05": 63339.00848761885, - "2024-05-05T07": 63689.61049909705, - "2024-05-04T23": 63872.83077349047, - "2024-05-04T22": 63737.61322829947, - "2024-05-04T21": 63885.84390123266, - "2024-05-05T00": 63911.33252337207, - "2024-05-05T08": 63749.773411471775, - "2024-05-04T17": 63542.813917357154, - "2024-05-05T09": 63675.3158280892, - "2024-05-05T10": 63689.519523587216, - "2024-05-05T04": 63348.03234225199, - "2024-05-04T16": 63583.176632195966, - "2024-05-05T06": 63385.575215294775, - "2024-05-05T03": 63184.93358042782, - "2024-05-04T18": 63597.62826260953, - "2024-05-05T02": 63331.17083924649, - "2024-05-05T21": 63728.310181929184, - "2024-05-05T16": 64339.864489930624, - "2024-05-05T22": 63786.47422881504, - "2024-05-05T17": 64288.592047462174, - "2024-05-05T20": 63733.31968903028, - "2024-05-05T13": 64058.13343473781, - "2024-05-05T15": 64316.52823498879, - "2024-05-05T12": 63730.46665236506, - "2024-05-05T18": 64025.828019869245, - "2024-05-05T14": 63912.09075671993, - "2024-05-05T19": 63952.403262634805, - "2024-05-05T11": 63832.934851391365, - "2024-05-05T23": 64052.27386630458, - "2024-05-06T00": 64196.08440748894, - "2024-05-06T02": 64108.48390013938, - "2024-05-06T05": 64183.32196902798, - "2024-05-06T06": 64298.05637113164, - "2024-05-06T07": 64329.661304542875, - "2024-05-06T04": 63964.30067766932, - "2024-05-06T01": 64290.54123213346, - "2024-05-06T03": 63866.982125878516, - "2024-05-06T08": 65189.51956550038, - "2024-05-06T09": 65213.00307618012, - "2024-05-06T10": 64600.45882465142, - "2024-05-06T11": 64182.856283762165, - "2024-05-06T12": 63834.42828173539, - "2024-05-06T13": 63642.93880389735, - "2024-05-06T14": 63956.43688547396, - "2024-05-06T15": 63296.4274583461, - "2024-05-06T17": 63212.35936117068, - "2024-05-06T16": 63500.00943401455, - "2024-05-06T18": 63223.1059779934, - "2024-05-06": 63908.61691844713, - "2024-05-07": 63600.01620011247, - "2024-05-06T22": 63498.31557697369, - "2024-05-07T06": 63574.3000181499, - "2024-05-07T01": 63690.558481425745, - "2024-05-07T00": 63354.341804873206, - "2024-05-06T21": 63476.10441690921, - "2024-05-06T20": 63298.76018529631, - "2024-05-06T23": 63301.20165536333, - "2024-05-07T04": 63348.26598921291, - "2024-05-06T19": 63052.79718252264, - "2024-05-07T03": 63223.22206907659, - "2024-05-07T02": 63743.368039672656, - "2024-05-07T05": 63423.9823936435, - "2024-05-07T07": 63729.27788399427, - "2024-05-07T08": 64197.97092715867, - "2024-05-07T09": 64228.82401154, - "2024-05-07T10": 63983.0128279518, - "2024-05-07T11": 63975.00477240981, - "2024-05-07T12": 63604.89654050923, - "2024-05-07T13": 63658.54392500107, - "2024-05-07T14": 63355.31422416214, - "2024-05-07T15": 64120.0227912487, - "2024-05-08": 62313.234907089194, - "2024-05-09": 61561.75371469076, - "2024-05-10": 62751.21490918217, - "2024-05-09T13": 61248.70174066349, - "2024-05-10T00": 62863.03661670661, - "2024-05-08T08": 62234.01280531966, - "2024-05-09T14": 61333.54766127562, - "2024-05-08T10": 62410.00068167636, - "2024-05-09T04": 61543.632663388984, - "2024-05-10T01": 62816.470002266055, - "2024-05-08T03": 62763.222576469256, - "2024-05-09T07": 61447.87668599637, - "2024-05-09T11": 60953.19705644137, - "2024-05-09T00": 61295.293129946855, - "2024-05-09T01": 61462.296160660444, - "2024-05-10T06": 62886.782574526, - "2024-05-09T19": 62308.80851218709, - "2024-05-10T05": 62767.224425202214, - "2024-05-10T02": 62856.605683783724, - "2024-05-09T23": 63022.655110873675, - "2024-05-09T06": 61644.37748059864, - "2024-05-08T01": 62570.598162230664, - "2024-05-09T09": 61061.84341963673, - "2024-05-09T20": 62485.506981955295, - "2024-05-08T19": 62272.450898388655, - "2024-05-09T03": 61614.31406940343, - "2024-05-08T21": 61519.86227742974, - "2024-05-09T22": 62764.79171822873, - "2024-05-08T17": 62523.69238087062, - "2024-05-09T05": 61538.79554782354, - "2024-05-08T06": 62447.19550907694, - "2024-05-08T15": 62242.32322308136, - "2024-05-10T08": 62952.8115590948, - "2024-05-08T07": 62264.40574121558, - "2024-05-08T04": 62768.932219781345, - "2024-05-09T15": 61974.32444102199, - "2024-05-08T18": 62592.143571721856, - "2024-05-09T10": 61061.54554469901, - "2024-05-09T21": 62568.06818520269, - "2024-05-10T03": 62870.363061937795, - "2024-05-08T00": 62479.146844903946, - "2024-05-10T07": 63197.5296802511, - "2024-05-08T14": 62497.11595838402, - "2024-05-09T17": 61961.70680971268, - "2024-05-08T13": 62028.88856025008, - "2024-05-08T05": 62594.4985702235, - "2024-05-09T18": 62103.81817291471, - "2024-05-09T08": 61311.936350342396, - "2024-05-08T20": 61677.857919473674, - "2024-05-08T22": 61277.66542502341, - "2024-05-08T11": 62270.46559685434, - "2024-05-09T12": 61341.57394856342, - "2024-05-08T02": 62741.96934502195, - "2024-05-10T04": 62912.98612988297, - "2024-05-08T12": 62263.3876256878, - "2024-05-09T02": 61546.63472266114, - "2024-05-08T09": 62223.68634652902, - "2024-05-09T16": 62382.08692266822, - "2024-05-08T16": 62261.36599961404, - "2024-05-08T23": 61054.70188741217, - "2024-05-10T09": 62969.09508034645, - "2024-05-10T10": 63001.09511605731, - "2024-05-10T11": 63008.5452432874, - "2024-05-10T12": 63293.98021126339, - "2024-05-10T13": 62954.65149387931, - "2024-05-11": 60885.99774662029, - "2024-05-12": 61145.80307004248, - "2024-05-12T16": 61620.33981297193, - "2024-05-11T03": 60809.6131743, - "2024-05-10T17": 60481.57129700927, - "2024-05-11T16": 61192.796545951904, - "2024-05-10T15": 60984.39806818844, - "2024-05-11T04": 60768.318122900004, - "2024-05-11T12": 60724.082307564575, - "2024-05-12T15": 61335.40843150649, - "2024-05-11T11": 60622.772249695365, - "2024-05-12T11": 61131.283239, - "2024-05-11T22": 60928.492782, - "2024-05-11T21": 60900.91773371855, - "2024-05-10T21": 60549.065347287404, - "2024-05-10T23": 60909.028499526816, - "2024-05-12T00": 60970.353405, - "2024-05-12T03": 60890.933880000004, - "2024-05-12T12": 61102.458524199996, - "2024-05-11T08": 60854.92467407838, - "2024-05-11T17": 61091.86264626411, - "2024-05-12T19": 61314.20033331518, - "2024-05-11T23": 60878.1475652, - "2024-05-11T05": 60872.1800726, - "2024-05-12T02": 60871.28466886335, - "2024-05-11T02": 60825.66632337698, - "2024-05-10T16": 60879.8649585092, - "2024-05-12T14": 61182.62783327615, - "2024-05-11T09": 60764.981040000006, - "2024-05-10T18": 60443.0877410673, - "2024-05-10T19": 60658.641350588805, - "2024-05-11T06": 60946.14988, - "2024-05-12T08": 60922.0701564, - "2024-05-10T20": 60654.79322699031, - "2024-05-11T18": 61136.85921188755, - "2024-05-12T05": 61000.180164, - "2024-05-12T06": 60977.309316, - "2024-05-12T04": 60994.9818, - "2024-05-11T20": 60960.81669669956, - "2024-05-12T09": 60986.285367000004, - "2024-05-11T01": 60888.42119588113, - "2024-05-11T00": 60797.358361475905, - "2024-05-10T14": 62055.3908603263, - "2024-05-12T07": 60768.7235, - "2024-05-12T10": 61154.08036, - "2024-05-11T10": 60768.85815, - "2024-05-12T01": 60901.6296, - "2024-05-12T18": 61464.238567651984, - "2024-05-12T13": 61129.94896743779, - "2024-05-11T19": 61092.75485853055, - "2024-05-12T17": 61453.38309891558, - "2024-05-11T14": 60862.08176, - "2024-05-11T07": 60926.2254764, - "2024-05-11T15": 61091.8068537722, - "2024-05-11T13": 60828.00029049999, - "2024-05-10T22": 60765.3155677271, - "2024-05-13": 62737.46348778703, - "2024-05-12T21": 61194.61284875687, - "2024-05-13T06": 61212.518658344045, - "2024-05-13T00": 61547.9966967, - "2024-05-13T03": 60917.82643680399, - "2024-05-12T23": 61416.3507419, - "2024-05-13T04": 61029.24819775973, - "2024-05-13T01": 61351.659401000004, - "2024-05-13T05": 60921.30866895224, - "2024-05-13T02": 61135.72602327829, - "2024-05-12T22": 61318.76828089973, - "2024-05-12T20": 61341.18360816245, - "2024-05-13T08": 62750.82799511595, - "2024-05-13T10": 62663.79615406439, - "2024-05-13T09": 62998.79000942761, - "2024-05-13T07": 61663.41272530305, - "2024-05-13T11": 62696.38199274132, - "2024-05-13T12": 62741.153011199654, - "2024-05-13T13": 62793.79337153737, - "2024-05-13T14": 62888.010844595075, - "2024-05-13T15": 62747.48025164516, - "2024-05-13T16": 63160.67748265505, - "2024-05-14": 61771.8050654988, - "2024-05-13T17": 62794.57359744934, - "2024-05-14T01": 62844.984086346194, - "2024-05-14T02": 62577.309236171495, - "2024-05-14T06": 61901.91973534162, - "2024-05-13T19": 63021.64609453192, - "2024-05-13T22": 62814.400802148055, - "2024-05-14T04": 62492.589522798655, - "2024-05-13T21": 62992.987599218, - "2024-05-14T03": 62447.15584069964, - "2024-05-14T00": 63113.5917393, - "2024-05-14T07": 61912.26889496554, - "2024-05-13T20": 63113.79265001815, - "2024-05-14T05": 62634.65381868376, - "2024-05-13T23": 63106.0175781, - "2024-05-13T18": 62705.31020651962, - "2024-05-14T08": 61840.1756816992, - "2024-05-14T09": 61828.84304728497, - "2024-05-14T10": 61627.65844072508, - "2024-05-14T11": 61781.26892703486, - "2024-05-14T12": 61728.79731919798, - "2024-05-14T13": 61793.950238514524, - "2024-05-14T14": 61612.5852551311, - "2024-05-14T15": 61800.008282129835, - "2024-05-14T16": 61476.08791229867, - "2024-05-14T17": 61296.29504704242, - "2024-05-14T18": 61320.98109154548, - "2024-05-14T19": 61539.34967068162, - "2024-05-14T20": 61594.60727747228, - "2024-05-15": 61708.57127236335, - "2024-05-15T02": 61750.1793993, - "2024-05-15T01": 61645.13671983135, - "2024-05-14T21": 61598.700547915854, - "2024-05-15T05": 61908.038840500005, - "2024-05-15T00": 61578.34617, - "2024-05-15T06": 61882.690252500004, - "2024-05-15T03": 61883.61753799999, - "2024-05-15T07": 62030.185450869365, - "2024-05-14T23": 61565.165166130144, - "2024-05-15T04": 61880.37433500001, - "2024-05-14T22": 61660.61777167871, - "2024-05-15T08": 62111.6494179, - "2024-05-15T09": 62210.499425108115, - "2024-05-15T10": 62692.88940136513, - "2024-05-15T11": 62451.4435612978, - "2024-05-15T12": 63612.635117176585, - "2024-05-15T13": 63714.05045854203, - "2024-05-15T14": 64230.391369275094 - }, - "USD ethereum": { - "2023-07-27": 1872.088593089721, - "2023-07-10": 1866.0360578521072, - "2023-08-20": 1671.2576000814242, - "2024-02-23": 2941.9404144517216, - "2024-04-05": 3294.9210601271734, - "2023-12-19": 2217.8985157110114, - "2023-08-06": 1830.6881807210773, - "2023-12-02": 2103.732381694795, - "2023-10-12": 1546.311147980805, - "2023-10-31": 1802.2390433065395, - "2023-08-29": 1710.8912841814258, - "2023-06-20": 1737.9678616546266, - "2023-09-09": 1634.0453244747537, - "2023-06-26": 1878.6422027397552, - "2023-04-13": 1992.1019483365474, - "2023-07-30": 1875.2779543043034, - "2023-05-03": 1866.5114585538834, - "2023-10-23": 1686.499262221828, - "2023-10-01": 1680.4357216898898, - "2024-03-07": 3809.534653835918, - "2023-07-05": 1912.5025743439844, - "2023-07-29": 1873.9712988368888, - "2024-01-08": 2260.422334037217, - "2023-05-29": 1900.1871467554079, - "2023-10-07": 1640.1186588134608, - "2023-09-26": 1588.3146790811957, - "2023-08-24": 1662.8822118714863, - "2023-12-05": 2229.5982270850436, - "2023-05-10": 1847.733539444138, - "2024-02-19": 2912.9134569309467, - "2024-01-07": 2242.92882749182, - "2023-10-18": 1572.011544858536, - "2023-04-25": 1828.5895452328991, - "2023-07-31": 1863.9280431272898, - "2023-05-23": 1853.1858541693848, - "2023-08-25": 1651.9817571605513, - "2024-03-09": 3917.432948907231, - "2023-04-11": 1916.2783038957311, - "2023-07-12": 1885.527876153974, - "2023-09-05": 1630.3240293903898, - "2023-06-07": 1858.92046990718, - "2023-09-16": 1636.6611825109562, - "2023-08-12": 1848.5237874789213, - "2023-05-09": 1844.7979768479804, - "2023-09-01": 1638.457230622314, - "2023-09-08": 1634.8619729540403, - "2024-03-22": 3405.48183404067, - "2023-08-10": 1850.6871387211859, - "2023-12-07": 2264.1757762203033, - "2023-11-18": 1945.7789175206647, - "2023-07-13": 1939.0497113130407, - "2023-04-30": 1903.8886501686022, - "2023-06-06": 1832.060624047269, - "2023-09-13": 1598.9140487235034, - "2023-06-17": 1730.3925451723496, - "2023-07-17": 1912.4937750006243, - "2023-07-07": 1861.3614260856123, - "2023-09-07": 1634.3060051177995, - "2024-02-12": 2528.2241926247025, - "2024-02-22": 2977.4033833672484, - "2023-04-09": 1842.5708236301903, - "2023-12-30": 2299.27431411389, - "2023-09-17": 1628.4732780267682, - "2023-04-20": 1948.2921095195038, - "2024-03-26": 3610.887374058141, - "2023-04-27": 1901.9808215410308, - "2023-10-26": 1804.5536753415352, - "2024-01-03": 2230.118502923756, - "2023-06-01": 1862.9767057449844, - "2024-01-22": 2377.4657415809816, - "2023-06-12": 1739.7421274995495, - "2023-10-03": 1657.02789476554, - "2023-06-19": 1724.693450891206, - "2023-07-09": 1867.8047908388119, - "2023-12-24": 2292.603414419228, - "2023-09-24": 1592.171925952727, - "2024-01-16": 2537.8461865504237, - "2023-10-17": 1579.340490503536, - "2024-03-18": 3570.0680786728644, - "2024-02-17": 2779.7504824427433, - "2023-12-27": 2296.2182411536915, - "2023-07-23": 1875.5289098645308, - "2023-09-03": 1635.0030725620195, - "2024-02-24": 2958.3252100329546, - "2024-01-06": 2241.8182078650243, - "2024-03-20": 3260.4225543635093, - "2023-11-21": 1997.5299587398706, - "2023-12-25": 2278.2531401717224, - "2023-09-22": 1593.7319756987447, - "2023-10-02": 1720.8638221537046, - "2024-03-27": 3567.199641077595, - "2023-04-28": 1904.530095008067, - "2023-08-04": 1833.9082432928585, - "2023-08-30": 1715.9447351886356, - "2023-04-24": 1844.3487654889652, - "2023-10-06": 1634.2683083056747, - "2023-10-13": 1545.0007049052335, - "2023-06-28": 1858.6409198111653, - "2024-02-05": 2298.5858429272675, - "2024-03-01": 3411.4895791211425, - "2023-07-15": 1934.1176715323732, - "2023-06-25": 1902.5250129178116, - "2023-12-10": 2348.936937113697, - "2023-11-23": 2061.7212151047393, - "2024-01-13": 2548.5951539857506, - "2024-03-28": 3564.6484944572676, - "2023-08-05": 1830.3770021418813, - "2024-02-09": 2486.7991595720214, - "2023-10-09": 1591.7822453390916, - "2023-05-24": 1814.771033987277, - "2024-01-09": 2298.012239503609, - "2023-12-08": 2359.5635330524424, - "2023-05-27": 1828.223975276911, - "2023-08-18": 1676.305407110091, - "2023-11-05": 1885.1891781421405, - "2023-10-22": 1634.4144043699887, - "2023-11-01": 1809.9347293122614, - "2023-05-07": 1910.8585028061232, - "2024-03-12": 3999.3272099039905, - "2023-09-11": 1584.1528990458285, - "2024-03-03": 3428.7819410221714, - "2024-02-04": 2299.4265724684906, - "2024-01-28": 2277.9574300035815, - "2023-04-18": 2095.158015146061, - "2023-07-06": 1903.6558554546464, - "2023-07-01": 1921.9209818183406, - "2023-05-18": 1817.907227325931, - "2023-11-07": 1886.025271039351, - "2023-11-25": 2081.4506856208604, - "2023-06-04": 1902.3607300961073, - "2024-02-25": 3038.6117233554296, - "2023-12-01": 2090.8666623401623, - "2023-07-14": 1994.8464440572468, - "2024-01-26": 2247.718533416445, - "2023-08-03": 1837.840312549095, - "2024-02-28": 3314.8494159030956, - "2023-09-15": 1627.1087062566464, - "2023-07-18": 1899.000185837377, - "2023-04-21": 1910.147242056298, - "2023-12-21": 2227.436877288254, - "2023-07-20": 1896.098634329933, - "2024-03-06": 3809.6152546376575, - "2023-09-30": 1675.708053330938, - "2023-12-12": 2218.382456514459, - "2024-02-13": 2646.4629050667127, - "2023-05-19": 1809.928493258163, - "2023-09-20": 1629.9825637295735, - "2023-07-08": 1861.2134675211812, - "2023-09-19": 1643.491792260601, - "2023-09-29": 1666.908593366313, - "2023-09-12": 1592.5300911426323, - "2023-06-13": 1742.792806814403, - "2023-10-04": 1642.6956137954494, - "2024-03-02": 3422.5787366731174, - "2023-10-08": 1632.5610521456554, - "2023-11-20": 2023.6273713319138, - "2023-12-20": 2211.0648807022985, - "2023-12-31": 2295.466028963214, - "2023-11-06": 1894.531094921208, - "2023-08-22": 1654.2307705895992, - "2023-06-27": 1879.4335845840787, - "2023-04-14": 2106.1986089109555, - "2023-06-09": 1840.6077508569822, - "2024-03-17": 3567.0046423018125, - "2023-09-18": 1639.32625399374, - "2024-04-01": 3535.3872581903934, - "2024-01-19": 2468.694670431303, - "2023-11-11": 2059.691463780839, - "2023-05-14": 1803.443043041881, - "2023-05-13": 1802.630230291909, - "2023-05-06": 1929.698217357505, - "2023-04-16": 2097.5850165937322, - "2023-11-19": 1962.1984407552197, - "2023-04-15": 2097.262745146973, - "2023-05-16": 1818.4011117780262, - "2023-09-23": 1592.9439393752575, - "2023-07-02": 1917.694729562872, - "2023-08-15": 1839.4733469554126, - "2024-01-25": 2215.0656363265157, - "2024-03-13": 4008.4805236146312, - "2024-01-21": 2472.0160592695374, - "2024-02-01": 2273.1432864862945, - "2023-06-15": 1645.460278534929, - "2024-03-16": 3675.3969459884647, - "2023-11-27": 2024.7559427086544, - "2024-01-10": 2411.611547455281, - "2024-03-15": 3697.5756690784724, - "2023-06-21": 1829.7824262817874, - "2024-01-02": 2380.7222627716787, - "2023-04-26": 1877.193574314775, - "2023-07-11": 1875.0541049632097, - "2023-10-25": 1788.692674247013, - "2024-01-01": 2302.770349848175, - "2024-02-14": 2745.099291044224, - "2023-09-04": 1632.4443734796612, - "2023-09-06": 1630.553627874499, - "2024-04-03": 3314.2879535300726, - "2024-03-08": 3929.2306788103338, - "2023-11-28": 2031.415143354589, - "2023-12-03": 2162.037001064913, - "2023-08-02": 1853.7038878416924, - "2023-08-27": 1651.1841537694993, - "2023-06-22": 1898.438840818786, - "2023-10-20": 1606.5432848705484, - "2023-05-25": 1794.7177773689598, - "2023-10-10": 1578.5558058095608, - "2024-01-14": 2538.8736196547684, - "2023-12-15": 2263.882257171251, - "2023-10-19": 1556.514618700774, - "2024-02-08": 2426.4523429986957, - "2023-11-08": 1887.1852795037541, - "2023-11-12": 2051.289923748857, - "2023-12-22": 2308.306944466685, - "2023-05-20": 1814.9528329092082, - "2023-05-31": 1867.7931716143923, - "2024-03-23": 3362.48793481736, - "2024-04-10": 3510.3727506127843, - "2023-09-27": 1596.3807228815979, - "2024-03-04": 3522.624224920206, - "2023-09-10": 1622.8878733469708, - "2024-02-29": 3448.50143974521, - "2023-07-22": 1888.487057490296, - "2023-07-21": 1892.4827562223588, - "2023-06-30": 1888.4182029621636, - "2023-12-29": 2343.8291710796184, - "2023-12-04": 2228.718584367442, - "2023-09-21": 1593.3856646450424, - "2023-06-02": 1890.6337234381083, - "2023-10-11": 1562.8549057814826, - "2023-07-19": 1907.629970898301, - "2023-05-05": 1928.0523666098816, - "2024-03-21": 3516.237639992645, - "2024-04-08": 3629.472537231993, - "2023-04-29": 1901.9099264564393, - "2023-06-14": 1739.274381554306, - "2023-10-05": 1635.8071668018285, - "2023-10-16": 1583.0219938427456, - "2024-02-10": 2495.3644253912607, - "2024-04-07": 3391.934131364736, - "2023-05-21": 1813.1541191684007, - "2024-02-20": 2930.558692672859, - "2023-11-17": 1961.6382846915578, - "2023-12-11": 2233.4536016954585, - "2023-11-26": 2075.4218333783856, - "2023-11-16": 2040.4606507238966, - "2023-06-29": 1852.0863720787243, - "2023-04-12": 1894.9639777423665, - "2023-06-11": 1752.2352942997672, - "2024-02-02": 2305.1128776101946, - "2023-09-14": 1625.8528080021156, - "2024-01-27": 2268.124824707984, - "2024-03-30": 3512.9501512018664, - "2023-05-04": 1898.3802681455918, - "2023-09-28": 1627.8947971238524, - "2023-10-27": 1782.5209736384847, - "2023-05-01": 1843.2762122440988, - "2023-05-15": 1827.196029723383, - "2023-11-22": 2022.2359702805072, - "2023-06-03": 1901.7504842812689, - "2024-01-18": 2515.8051722859677, - "2023-08-26": 1649.285330192964, - "2024-02-15": 2805.2145033779693, - "2023-10-28": 1786.7779765000002, - "2024-03-24": 3374.3778903277753, - "2023-04-22": 1859.2739705968852, - "2023-04-10": 1862.0461039798975, - "2023-12-06": 2266.2584334605513, - "2023-11-10": 2098.007559052888, - "2024-01-30": 2316.354552355012, - "2023-08-09": 1855.9314628077407, - "2023-05-02": 1836.8974367795015, - "2023-11-14": 2041.7978598922618, - "2024-01-23": 2221.502060888, - "2024-01-31": 2324.8627731319557, - "2024-01-11": 2609.008959188797, - "2024-02-18": 2805.2015219288805, - "2023-06-16": 1670.5461735376664, - "2023-10-30": 1807.7457141222906, - "2023-12-17": 2215.3903323415457, - "2024-02-26": 3107.5455618426317, - "2023-07-16": 1931.32209668583, - "2024-01-05": 2245.422589130324, - "2023-08-23": 1647.0333552641366, - "2024-03-11": 4027.7623335224225, - "2023-08-01": 1833.2733667014345, - "2024-03-14": 3919.753888578037, - "2024-02-21": 2920.9307937642025, - "2023-08-28": 1648.499874372775, - "2023-07-04": 1954.2822557562383, - "2023-12-13": 2187.359727574453, - "2023-08-13": 1848.6781665903065, - "2024-03-31": 3619.860033867718, - "2023-12-09": 2358.1513105130784, - "2024-04-02": 3308.0816238498596, - "2024-02-06": 2333.8509773090886, - "2024-04-09": 3620.5532915283566, - "2023-05-30": 1903.7469322287618, - "2023-11-04": 1837.2556369608346, - "2024-01-15": 2516.7430294778214, - "2023-07-03": 1960.1290005025942, - "2023-12-28": 2383.326084047728, - "2023-04-23": 1863.2254241977303, - "2023-04-17": 2084.3581733240044, - "2023-05-08": 1857.9855529935062, - "2024-02-27": 3241.8718324083225, - "2024-02-07": 2375.5035757867963, - "2023-09-25": 1578.4425589096595, - "2024-03-19": 3300.3576156892395, - "2024-03-10": 3928.588844479554, - "2023-09-02": 1633.5154446535207, - "2024-01-12": 2604.1839946723853, - "2023-11-29": 2048.4794618957053, - "2023-10-15": 1555.6069132682233, - "2023-11-30": 2035.5856128150128, - "2024-01-24": 2229.5761271233982, - "2023-08-11": 1846.4334362617592, - "2024-02-11": 2514.2240204384098, - "2023-06-08": 1843.960422350612, - "2023-08-16": 1821.8319790596506, - "2023-11-15": 2010.6243510382453, - "2023-12-16": 2243.6231784401084, - "2024-03-29": 3540.054396186204, - "2024-04-04": 3331.9586108704134, - "2023-06-10": 1744.7677698595223, - "2023-07-28": 1868.5288494149404, - "2024-01-20": 2469.6469880842915, - "2023-10-21": 1611.0161735378147, - "2023-05-12": 1770.166984052352, - "2023-11-03": 1799.7320912800644, - "2023-08-31": 1699.0924346535755, - "2024-01-29": 2270.720413251889, - "2024-01-04": 2239.449004040109, - "2023-05-22": 1815.2221561164233, - "2023-07-26": 1858.7975824909481, - "2023-11-13": 2058.926291897119, - "2024-03-25": 3490.6157713892703, - "2023-08-07": 1827.7778931325702, - "2023-10-29": 1791.3292765096062, - "2023-07-25": 1855.4145533948076, - "2023-05-17": 1817.623210420559, - "2023-10-24": 1810.5978038432124, - "2023-06-05": 1864.780384936013, - "2023-11-02": 1832.9253555569676, - "2023-12-18": 2168.634993815699, - "2023-11-24": 2089.6268200219065, - "2023-08-21": 1671.7101325508556, - "2023-08-14": 1845.471727544141, - "2023-05-26": 1817.1770601337453, - "2024-03-05": 3682.621744949228, - "2024-04-06": 3337.250477175273, - "2023-12-23": 2292.445414040708, - "2024-02-03": 2307.63822350803, - "2024-02-16": 2819.8693147377617, - "2023-05-28": 1849.2120312376787, - "2023-12-14": 2282.347515370628, - "2023-06-24": 1887.9823898859822, - "2023-08-17": 1757.2955451414255, - "2023-12-26": 2235.6352659808026, - "2023-11-09": 1943.613431942541, - "2023-05-11": 1816.6016914091085, - "2023-08-19": 1663.2305554855504, - "2023-06-23": 1884.8746515841876, - "2023-06-18": 1730.4372666734064, - "2023-08-08": 1840.3356250275526, - "2023-07-24": 1850.5363635927517, - "2023-10-14": 1552.9106074786898, - "2024-01-17": 2544.651699826289, - "2023-04-19": 1984.2401486573895, - "2024-04-06T23": 3380.63522, - "2024-04-07T13": 3408.9557304, - "2024-04-05T00": 3319.343040693393, - "2024-04-04T13": 3367.8068531578892, - "2024-04-03T19": 3319.5039914990866, - "2024-04-04T14": 3378.6863274952516, - "2024-04-09T08": 3609.834649857687, - "2024-04-04T15": 3375.1651594449695, - "2024-04-04T02": 3285.0362407716093, - "2024-04-05T21": 3333.9193314000026, - "2024-04-03T17": 3329.8404135399765, - "2024-04-04T03": 3278.3379897417517, - "2024-04-04T16": 3378.2038391825486, - "2024-04-07T20": 3397.9010363425027, - "2024-04-06T17": 3341.769600421565, - "2024-04-07T15": 3400.8180408, - "2024-04-07T09": 3385.892793061438, - "2024-04-06T20": 3353.2381000000005, - "2024-04-07T22": 3416.3415999999997, - "2024-04-05T10": 3275.7525808976543, - "2024-04-05T18": 3325.077493495527, - "2024-04-07T03": 3387.6535900557847, - "2024-04-04T12": 3347.498698, - "2024-04-03T13": 3310.956468267972, - "2024-04-05T12": 3240.3562590995166, - "2024-04-10T06": 3543.7669767193715, - "2024-04-03T16": 3353.821671299148, - "2024-04-10T10": 3508.1726742738633, - "2024-04-03T21": 3302.357515868917, - "2024-04-05T01": 3304.0422718983277, - "2024-04-07T04": 3385.6610694476235, - "2024-04-04T18": 3413.8143666474584, - "2024-04-05T11": 3263.542346424276, - "2024-04-08T13": 3646.450236667597, - "2024-04-03T20": 3306.012584264958, - "2024-04-09T05": 3691.9715824507025, - "2024-04-08T10": 3620.200961439805, - "2024-04-04T10": 3344.036188934029, - "2024-04-05T17": 3321.202850259794, - "2024-04-08T20": 3688.1424600057276, - "2024-04-07T19": 3383.924009211917, - "2024-04-04T05": 3289.3800173535565, - "2024-04-08T23": 3709.224815748923, - "2024-04-08T01": 3429.884156129929, - "2024-04-07T10": 3390.1467391527744, - "2024-04-05T20": 3333.1792116503466, - "2024-04-05T08": 3290.390500559726, - "2024-04-06T15": 3342.5190494999997, - "2024-04-05T16": 3321.0530245422597, - "2024-04-05T06": 3282.8495452612374, - "2024-04-09T15": 3512.895746354589, - "2024-04-06T21": 3363.7407250000006, - "2024-04-09T09": 3635.49066916676, - "2024-04-08T22": 3694.340449818243, - "2024-04-08T16": 3648.132952607609, - "2024-04-07T07": 3388.9111601669624, - "2024-04-04T09": 3335.004417904065, - "2024-04-10T05": 3531.665618609728, - "2024-04-09T17": 3492.877506789021, - "2024-04-06T11": 3335.1935900000003, - "2024-04-06T18": 3343.8086279999998, - "2024-04-05T09": 3270.3598047732025, - "2024-04-08T07": 3463.0055107999997, - "2024-04-04T06": 3305.824873743476, - "2024-04-08T12": 3643.2347830654976, - "2024-04-05T15": 3314.2505146660737, - "2024-04-04T20": 3321.7312128967533, - "2024-04-04T22": 3320.571844710311, - "2024-04-10T02": 3506.0008858513565, - "2024-04-09T19": 3512.6253671967506, - "2024-04-04T07": 3325.75764345551, - "2024-04-04T04": 3269.008591548339, - "2024-04-08T06": 3426.605584, - "2024-04-08T18": 3686.4928339854473, - "2024-04-05T02": 3283.096236966724, - "2024-04-09T07": 3646.6861155409792, - "2024-04-09T14": 3556.5853660761477, - "2024-04-08T05": 3427.1328109, - "2024-04-03T15": 3333.791169741401, - "2024-04-08T14": 3633.919376361156, - "2024-04-09T10": 3624.8755548382323, - "2024-04-06T01": 3325.2121155, - "2024-04-06T16": 3336.1471374, - "2024-04-09T03": 3703.3203678728073, - "2024-04-09T11": 3635.329049563214, - "2024-04-07T01": 3386.606715746643, - "2024-04-03T22": 3317.531051066722, - "2024-04-07T21": 3404.84479984555, - "2024-04-10T04": 3515.3209004379005, - "2024-04-08T15": 3634.226045923604, - "2024-04-04T21": 3327.2660094948683, - "2024-04-07T17": 3384.5809227534664, - "2024-04-07T11": 3390.5607481, - "2024-04-08T03": 3418.3230536371934, - "2024-04-10T00": 3506.3419931, - "2024-04-08T04": 3419.923572, - "2024-04-03T18": 3308.3492645566084, - "2024-04-06T22": 3361.9466736, - "2024-04-06T08": 3333.6130998, - "2024-04-10T12": 3520.3655942767323, - "2024-04-08T00": 3438.008294731439, - "2024-04-09T01": 3681.768560535921, - "2024-04-03T12": 3314.048160804184, - "2024-04-10T08": 3515.016688522124, - "2024-04-06T05": 3342.23617, - "2024-04-04T11": 3341.132935, - "2024-04-05T04": 3301.709675938881, - "2024-04-07T00": 3356.7960903, - "2024-04-07T06": 3388.6972158, - "2024-04-09T04": 3691.4578697233196, - "2024-04-05T13": 3260.2490481264945, - "2024-04-09T23": 3500.1493800000003, - "2024-04-04T23": 3326.9901007322405, - "2024-04-05T03": 3294.742637562648, - "2024-04-04T17": 3384.9616481093763, - "2024-04-10T07": 3540.467015309268, - "2024-04-04T08": 3329.104730143731, - "2024-04-08T17": 3653.6489690255125, - "2024-04-06T06": 3341.0688000000005, - "2024-04-09T12": 3632.317473703862, - "2024-04-06T03": 3334.1475742748758, - "2024-04-08T11": 3625.09715757603, - "2024-04-08T21": 3688.8403606541656, - "2024-04-05T23": 3323.9178294858134, - "2024-04-05T14": 3306.1059781391164, - "2024-04-04T19": 3374.5714093818156, - "2024-04-04T01": 3324.7605684756954, - "2024-04-08T08": 3565.9147788072128, - "2024-04-06T19": 3351.360138, - "2024-04-10T09": 3518.1988954, - "2024-04-09T20": 3517.9840826181744, - "2024-04-06T04": 3330.0081969, - "2024-04-07T05": 3394.4278759294148, - "2024-04-07T23": 3439.3884700273616, - "2024-04-06T10": 3338.3244692, - "2024-04-03T23": 3319.064223763484, - "2024-04-03T14": 3353.3049974426767, - "2024-04-06T02": 3320.826037328706, - "2024-04-08T02": 3427.3180454467315, - "2024-04-09T00": 3699.742672535129, - "2024-04-06T07": 3334.0299090000003, - "2024-04-05T22": 3325.3908488, - "2024-04-10T11": 3519.3388270000005, - "2024-04-08T19": 3690.4005728534025, - "2024-04-06T13": 3322.866561, - "2024-04-09T06": 3674.512809595686, - "2024-04-09T02": 3707.763639331002, - "2024-04-09T22": 3512.5043920060057, - "2024-04-10T03": 3490.9017830021144, - "2024-04-04T00": 3322.827219728705, - "2024-04-06T14": 3330.4324, - "2024-04-07T12": 3393.5416719, - "2024-04-05T07": 3285.2283583408175, - "2024-04-07T14": 3403.4205479999996, - "2024-04-09T13": 3620.3693454281697, - "2024-04-07T18": 3379.684321841789, - "2024-04-08T09": 3608.288078246635, - "2024-04-09T18": 3503.3620665767958, - "2024-04-05T19": 3332.881424241751, - "2024-04-06T00": 3326.616304, - "2024-04-10T01": 3490.7160059667926, - "2024-04-07T08": 3392.0668080000005, - "2024-04-06T12": 3331.6894136, - "2024-04-05T05": 3271.0552512073264, - "2024-04-07T02": 3394.0951076737965, - "2024-04-09T16": 3512.557398468981, - "2024-04-07T16": 3403.2462646, - "2024-04-06T09": 3341.9920943, - "2024-04-09T21": 3504.4437996666466, - "latest": 2970.6, - "2024-04-10T13": 3432.416716190677, - "2024-04-10T14": 3474.9376250581436, - "2024-04-10T15": 3474.645223975965, - "2024-04-11": 3541.9342561194862, - "2024-04-10T17": 3521.38455466321, - "2024-04-11T07": 3590.1304845, - "2024-04-10T20": 3515.814666387211, - "2024-04-10T19": 3505.3138245502487, - "2024-04-11T05": 3562.4912483999997, - "2024-04-11T02": 3555.6375745187333, - "2024-04-11T06": 3574.3101842, - "2024-04-11T03": 3564.3187122, - "2024-04-11T00": 3533.081994, - "2024-04-11T08": 3600.1319846497286, - "2024-04-10T22": 3543.881363619299, - "2024-04-10T16": 3496.4962516304054, - "2024-04-10T23": 3540.5926958733653, - "2024-04-11T04": 3561.5345342670057, - "2024-04-11T01": 3535.5046446, - "2024-04-10T21": 3506.190493688677, - "2024-04-10T18": 3498.101638508466, - "2024-04-11T09": 3587.055816293848, - "2024-04-11T10": 3572.432672234366, - "2024-04-11T11": 3559.6337263900436, - "2024-04-11T12": 3553.048536130192, - "2024-04-11T13": 3541.7292665083987, - "2024-04-11T14": 3524.6209764333666, - "2024-04-11T15": 3503.4837706083554, - "2024-04-12T09": 3517.7215059, - "2024-04-12T00": 3518.3162649, - "2024-04-12T03": 3530.1129760000003, - "2024-04-12T02": 3523.9261875, - "2024-04-12T10": 3515.96898, - "2024-04-12T11": 3534.3010848, - "2024-04-12T07": 3522.0195582, - "2024-04-12T06": 3533.5373303, - "2024-04-12T05": 3544.55442, - "2024-04-12T01": 3513.6905420000003, - "2024-04-12T08": 3522.3674178, - "2024-04-12T04": 3542.7204938, - "2024-04-12T12": 3510.120354025287, - "2024-04-12": 3504.1159729100136, - "2024-04-13": 3242.6269305459964, - "2024-04-12T20": 3238.4732884710065, - "2024-04-12T16": 3428.778194733173, - "2024-04-13T02": 3195.3359347231526, - "2024-04-12T17": 3336.7811658659484, - "2024-04-12T21": 3217.3654487580075, - "2024-04-13T01": 3190.09955939679, - "2024-04-12T19": 3218.1070878942974, - "2024-04-12T14": 3459.6896838152984, - "2024-04-12T22": 3219.2486214359324, - "2024-04-12T13": 3476.6276058403714, - "2024-04-12T23": 3226.0404304444164, - "2024-04-13T00": 3228.5583904238506, - "2024-04-12T18": 3225.0782712928726, - "2024-04-12T15": 3444.1371154781536, - "2024-04-14": 3022.0057852476043, - "2024-04-13T04": 3235.692003713362, - "2024-04-13T07": 3259.0589236296387, - "2024-04-14T01": 2989.973981627525, - "2024-04-13T14": 3265.7999350750374, - "2024-04-13T20": 2933.85587507062, - "2024-04-13T13": 3279.2961657379624, - "2024-04-13T03": 3217.186375157146, - "2024-04-13T23": 3037.6375254026057, - "2024-04-13T11": 3282.6447365181657, - "2024-04-14T02": 2975.0390369993816, - "2024-04-13T22": 2980.9105113062037, - "2024-04-13T21": 2910.1969545015154, - "2024-04-13T09": 3260.0274593625204, - "2024-04-13T19": 3200.1515699509337, - "2024-04-13T16": 3258.8696743251057, - "2024-04-13T15": 3275.158120495292, - "2024-04-13T17": 3219.9167769401047, - "2024-04-13T08": 3256.349905013676, - "2024-04-13T06": 3256.7864205570017, - "2024-04-13T05": 3255.4042372579756, - "2024-04-13T18": 3218.8585529450834, - "2024-04-13T10": 3268.786326956192, - "2024-04-14T00": 2979.9658544395866, - "2024-04-13T12": 3270.592735477455, - "2024-04-14T03": 2942.8483599238793, - "2024-04-14T19": 3073.571813045457, - "2024-04-14T11": 3028.175034839653, - "2024-04-14T14": 3026.425444199124, - "2024-04-14T16": 3083.7896320416953, - "2024-04-14T21": 3061.949696389307, - "2024-04-14T22": 3152.5577280093958, - "2024-04-14T04": 3034.9103553919704, - "2024-04-14T08": 3085.6156148003406, - "2024-04-14T17": 3052.605180339108, - "2024-04-14T23": 3159.3442509950055, - "2024-04-14T20": 3074.6039035541016, - "2024-04-14T05": 3058.8721210581666, - "2024-04-14T13": 3048.464316664318, - "2024-04-14T10": 3049.990821535518, - "2024-04-14T15": 3050.8788957258803, - "2024-04-14T12": 3041.1610970016036, - "2024-04-14T18": 3078.9941466439577, - "2024-04-14T09": 3052.802707154077, - "2024-04-14T06": 3085.0326905257302, - "2024-04-14T07": 3087.2499268012325, - "2024-04-15T01": 3124.185374633762, - "2024-04-15T00": 3130.7693400469007, - "2024-04-15T02": 3135.9105248647584, - "2024-04-15T04": 3138.783573590409, - "2024-04-15T03": 3148.624455892143, - "2024-04-15T05": 3147.918320988386, - "2024-04-15T06": 3231.62499068559, - "2024-04-15T07": 3243.5325274896504, - "2024-04-15T09": 3254.625350550703, - "2024-04-15T08": 3254.6036027394794, - "2024-04-15T10": 3258.2589640982515, - "2024-04-15T12": 3238.779283446285, - "2024-04-15T14": 3185.0895018341666, - "2024-04-15T13": 3224.898029326271, - "2024-04-15T11": 3246.7672773711092, - "2024-04-15": 3145.5972353127, - "2024-04-16": 3070.375186030533, - "2024-04-16T02": 3077.495915540451, - "2024-04-15T23": 3103.3607585834643, - "2024-04-16T00": 3082.2747854376053, - "2024-04-15T15": 3145.895806536556, - "2024-04-15T19": 3086.616980751264, - "2024-04-16T03": 3079.6570807736516, - "2024-04-15T20": 3092.0056496922825, - "2024-04-15T16": 3152.783395666879, - "2024-04-15T18": 3085.5035607206178, - "2024-04-16T01": 3095.5814536760004, - "2024-04-15T21": 3090.977075901755, - "2024-04-15T17": 3116.5626719714082, - "2024-04-15T22": 3107.7237901947874, - "2024-04-16T06": 3070.7946002068165, - "2024-04-16T05": 3046.0755649979005, - "2024-04-16T08": 3109.4076732613566, - "2024-04-16T04": 3036.420349322651, - "2024-04-16T07": 3100.675701382575, - "2024-04-16T09": 3091.02655174296, - "2024-04-16T10": 3043.965990777886, - "2024-04-16T11": 3063.561147558005, - "2024-04-16T12": 3077.43521087558, - "2024-04-16T18": 3061.795406600364, - "2024-04-16T20": 3064.7295859923934, - "2024-04-16T13": 3071.3153506143954, - "2024-04-16T14": 3065.7548989872057, - "2024-04-16T21": 3095.67015579666, - "2024-04-16T15": 3033.0791614052896, - "2024-04-16T16": 3021.136519896327, - "2024-04-16T17": 3060.9992721509484, - "2024-04-16T19": 3064.8618379045365, - "2024-04-17": 3088.6461712560017, - "2024-04-17T00": 3084.857964867744, - "2024-04-17T09": 3081.5151666394136, - "2024-04-17T08": 3080.970723019382, - "2024-04-17T02": 3082.010234634351, - "2024-04-17T05": 3106.686123046836, - "2024-04-17T03": 3091.828242, - "2024-04-16T22": 3090.8289415093554, - "2024-04-16T23": 3090.741826789953, - "2024-04-17T06": 3091.6952514149007, - "2024-04-17T01": 3087.679291250254, - "2024-04-17T04": 3112.3184419811623, - "2024-04-17T07": 3082.5759771090993, - "2024-04-17T10": 3067.554648036743, - "2024-04-17T11": 3063.9552651659824, - "2024-04-17T12": 3033.5201342704095, - "2024-04-17T13": 3036.404192809336, - "2024-04-18T09": 2999.6128779379733, - "2024-04-18T10": 3004.8436526275837, - "2024-04-18T04": 3024.719903059339, - "2024-04-18T00": 2972.4456769616304, - "2024-04-18T08": 2979.821060442121, - "2024-04-18T07": 2977.6457111579193, - "2024-04-18T01": 2999.239922349119, - "2024-04-18T02": 3006.0509747938313, - "2024-04-18T03": 3025.3714164238527, - "2024-04-18T05": 3006.955145096449, - "2024-04-18T06": 2972.344765696124, - "2024-04-18T12": 3024.279400889927, - "2024-04-18T11": 3050.941938578798, - "2024-04-18": 3028.8294874968446, - "2024-04-19": 3066.621923599688, - "2024-04-18T19": 3060.5550488707104, - "2024-04-19T03": 2978.3812089622625, - "2024-04-18T18": 3041.6007011387674, - "2024-04-18T13": 3029.523309396145, - "2024-04-19T04": 3001.00307897246, - "2024-04-19T05": 2999.896620248858, - "2024-04-19T00": 3056.210916102992, - "2024-04-18T20": 3067.099745528416, - "2024-04-19T01": 2988.8232529460815, - "2024-04-18T17": 3055.4935339811173, - "2024-04-19T02": 2901.7652082859186, - "2024-04-18T21": 3070.2718299643134, - "2024-04-18T14": 3078.3345755139435, - "2024-04-18T16": 3066.993833577479, - "2024-04-18T15": 3067.5549527440044, - "2024-04-18T23": 3069.1254942532933, - "2024-04-18T22": 3067.533791260166, - "2024-04-19T06": 3032.571695801046, - "2024-04-19T07": 3103.8774058607482, - "2024-04-19T08": 3084.7279782528017, - "2024-04-19T09": 3111.722911422784, - "2024-04-19T10": 3103.065595904133, - "2024-04-19T11": 3100.989786353055, - "2024-04-19T12": 3104.0777218749568, - "2024-04-19T13": 3095.8753697066354, - "2024-04-19T14": 3101.5259570349376, - "2024-04-19T15": 3086.6963518126727, - "2024-04-20": 3064.139645567434, - "2024-04-19T22": 3091.4626636264015, - "2024-04-19T23": 3048.9264850580926, - "2024-04-19T20": 3089.945282562617, - "2024-04-19T19": 3086.762591170603, - "2024-04-19T21": 3095.095517386377, - "2024-04-19T18": 3077.56786508736, - "2024-04-19T16": 3067.0471027100816, - "2024-04-19T17": 3071.2834217052646, - "2024-04-20T00": 3050.8831549798447, - "2024-04-20T01": 3040.7129988345523, - "2024-04-21": 3160.0744500944834, - "2024-04-20T16": 3101.699232, - "2024-04-20T19": 3141.101641890516, - "2024-04-20T15": 3095.9738, - "2024-04-20T02": 3055.119017046303, - "2024-04-20T09": 3040.1213795999993, - "2024-04-20T04": 3059.346733294961, - "2024-04-20T10": 3040.7552170676286, - "2024-04-20T22": 3149.6909658758545, - "2024-04-21T00": 3142.3908536, - "2024-04-20T12": 3053.4410880000005, - "2024-04-21T04": 3166.7494764000003, - "2024-04-20T05": 3064.319739324578, - "2024-04-20T18": 3146.166239650285, - "2024-04-20T11": 3049.9913367, - "2024-04-20T23": 3154.9567048555873, - "2024-04-20T08": 3053.0071599999997, - "2024-04-20T13": 3063.4738160000006, - "2024-04-21T02": 3170.1925373999998, - "2024-04-21T01": 3150.6293646999998, - "2024-04-20T20": 3158.278528108286, - "2024-04-20T03": 3053.7426087441704, - "2024-04-20T14": 3062.894480995903, - "2024-04-20T07": 3064.04142, - "2024-04-20T17": 3138.4349965862953, - "2024-04-20T21": 3156.663848192541, - "2024-04-20T06": 3063.4336626, - "2024-04-21T03": 3181.2273397999998, - "2024-04-21T16": 3137.778304322016, - "2024-04-21T11": 3170.965763, - "2024-04-21T17": 3140.1945423466627, - "2024-04-21T08": 3178.6891170386884, - "2024-04-21T12": 3165.3629459999997, - "2024-04-21T15": 3158.9221898853407, - "2024-04-21T06": 3182.5343043000003, - "2024-04-21T07": 3178.4253339912834, - "2024-04-21T14": 3150.2929120000003, - "2024-04-21T13": 3152.7779975, - "2024-04-21T05": 3180.5452682000005, - "2024-04-21T10": 3163.883991512859, - "2024-04-21T09": 3170.4042048, - "2024-04-21T19": 3150.816046517901, - "2024-04-21T22": 3158.5789839999993, - "2024-04-21T23": 3147.9279927, - "2024-04-21T21": 3157.6210180000003, - "2024-04-21T20": 3142.984267, - "2024-04-21T18": 3145.3029350049956, - "2024-04-22": 3197.878397981945, - "2024-04-22T00": 3153.446841, - "2024-04-22T05": 3212.3284168551004, - "2024-04-22T04": 3194.483873156521, - "2024-04-22T02": 3141.292899345904, - "2024-04-22T01": 3151.7381631999997, - "2024-04-22T06": 3227.648447817229, - "2024-04-22T03": 3174.7287548545623, - "2024-04-22T07": 3212.5426825860404, - "2024-04-22T08": 3206.5031502883085, - "2024-04-22T09": 3213.3601400023654, - "2024-04-22T10": 3217.0586522430413, - "2024-04-22T11": 3202.1892985804184, - "2024-04-22T12": 3200.2796, - "2024-04-22T13": 3197.918398393232, - "2024-04-22T14": 3196.474834135143, - "2024-04-22T15": 3181.5536396047532, - "2024-04-22T16": 3184.5828046939014, - "2024-04-23": 3205.6089684957246, - "2024-04-23T03": 3189.6933670000003, - "2024-04-22T19": 3186.815168328555, - "2024-04-22T17": 3205.4142123876036, - "2024-04-22T23": 3214.674113, - "2024-04-22T20": 3193.6276180065047, - "2024-04-22T21": 3191.601573763501, - "2024-04-22T18": 3199.2510604214344, - "2024-04-23T06": 3186.4133927999997, - "2024-04-22T22": 3208.3045903913044, - "2024-04-23T04": 3187.3420745000003, - "2024-04-23T01": 3214.6032064999995, - "2024-04-23T07": 3162.0722925000005, - "2024-04-23T00": 3208.6308781999996, - "2024-04-23T05": 3182.7889729351587, - "2024-04-23T02": 3210.0621601000003, - "2024-04-23T08": 3163.0334566999995, - "2024-04-23T09": 3168.468576, - "2024-04-23T10": 3178.7862906, - "2024-04-23T11": 3175.891968, - "2024-04-23T12": 3184.2377321999998, - "2024-04-23T13": 3187.6291388255295, - "2024-04-23T14": 3242.301256560578, - "2024-04-23T15": 3232.6633389553353, - "2024-04-23T16": 3234.67450254824, - "2024-04-24": 3218.9672686428075, - "2024-04-24T02": 3231.6085080000003, - "2024-04-24T00": 3224.1634381999997, - "2024-04-24T01": 3236.063574, - "2024-04-23T23": 3214.31646540407, - "2024-04-24T06": 3252.753756835622, - "2024-04-23T22": 3216.576565553453, - "2024-04-23T18": 3232.518376639948, - "2024-04-23T20": 3205.4740731608044, - "2024-04-23T21": 3206.3703105000004, - "2024-04-24T04": 3257.46, - "2024-04-24T05": 3259.5381517, - "2024-04-24T03": 3239.4117448979773, - "2024-04-24T07": 3257.0074296000003, - "2024-04-23T19": 3220.041884304765, - "2024-04-23T17": 3235.8080906044524, - "2024-04-24T08": 3251.7623606999996, - "2024-04-24T09": 3248.2450338, - "2024-04-24T10": 3261.6738, - "2024-04-24T11": 3279.4972047000006, - "2024-04-24T12": 3279.838430835137, - "2024-04-24T13": 3255.677278882139, - "2024-04-24T14": 3212.019413882412, - "2024-04-24T15": 3193.2295723294756, - "2024-04-25": 3148.156683884522, - "2024-04-24T18": 3164.147731267938, - "2024-04-25T00": 3148.8708973685248, - "2024-04-24T21": 3139.017943446734, - "2024-04-24T17": 3180.3984580914976, - "2024-04-24T16": 3176.5176057796343, - "2024-04-24T20": 3128.921146761645, - "2024-04-24T23": 3127.61915927397, - "2024-04-24T22": 3138.796737618157, - "2024-04-24T19": 3138.4788048432774, - "2024-04-25T01": 3161.6681252538665, - "2024-04-25T03": 3149.181, - "2024-04-25T05": 3152.360920644021, - "2024-04-25T04": 3140.4580872575943, - "2024-04-25T02": 3151.6710687, - "2024-04-25T06": 3160.904448, - "2024-04-25T07": 3148.1057691, - "2024-04-25T08": 3133.6236931, - "2024-04-25T09": 3139.344303996189, - "2024-04-25T10": 3088.299713430731, - "2024-04-25T11": 3101.6424975520886, - "2024-04-25T12": 3122.1713913627727, - "2024-04-25T13": 3104.425338545648, - "2024-04-25T14": 3123.681196639091, - "2024-04-25T15": 3137.387796328476, - "2024-04-25T16": 3154.976903941551, - "2024-04-25T17": 3155.9845439536493, - "2024-04-25T18": 3158.2533041847496, - "2024-04-25T19": 3161.643046883264, - "2024-04-26": 3139.223724464589, - "2024-04-25T22": 3164.7302842777767, - "2024-04-25T21": 3180.360525855216, - "2024-04-25T20": 3168.6231710633565, - "2024-04-26T01": 3137.1541118, - "2024-04-25T23": 3159.094059, - "2024-04-26T00": 3145.5363602, - "2024-04-26T05": 3140.2760623, - "2024-04-26T07": 3136.89, - "2024-04-26T02": 3152.9738759999996, - "2024-04-26T03": 3147.1155837, - "2024-04-26T04": 3135.8250213, - "2024-04-26T06": 3149.3585061, - "2024-04-26T08": 3140.6528117999997, - "2024-04-26T09": 3147.705198, - "2024-04-26T10": 3136.023632, - "2024-04-26T11": 3128.56194, - "2024-04-26T12": 3136.5966879000002, - "2024-04-26T13": 3123.5127033213303, - "2024-04-26T14": 3146.3150049858386, - "2024-04-26T15": 3116.879279057611, - "2024-04-26T21": 3144.327670546702, - "2024-04-26T22": 3128.924493, - "2024-04-26T17": 3131.055335583587, - "2024-04-26T19": 3142.979971677196, - "2024-04-26T16": 3117.8040059858477, - "2024-04-26T18": 3149.2023321851084, - "2024-04-26T20": 3141.9818944623016, - "2024-04-27": 3132.8783168261302, - "2024-04-26T23": 3130.610318437313, - "2024-04-27T00": 3105.5422477129155, - "2024-04-27T01": 3089.596496, - "2024-04-28": 3251.477368240025, - "2024-04-27T13": 3143.1069200784054, - "2024-04-28T00": 3253.9757908, - "2024-04-27T20": 3231.9919725224145, - "2024-04-27T23": 3252.3681451998254, - "2024-04-27T06": 3120.6141202568206, - "2024-04-27T05": 3117.91207468436, - "2024-04-27T02": 3117.5858618754028, - "2024-04-27T18": 3253.895241607983, - "2024-04-27T07": 3124.8939379999997, - "2024-04-27T04": 3121.9433502732013, - "2024-04-27T21": 3239.2055899754982, - "2024-04-27T09": 3113.9657856000003, - "2024-04-27T14": 3154.4098848, - "2024-04-27T22": 3247.4219831648734, - "2024-04-27T16": 3153.0244844, - "2024-04-27T10": 3114.2820321, - "2024-04-27T17": 3187.3644600464904, - "2024-04-27T08": 3115.4783982, - "2024-04-27T12": 3134.2913854999997, - "2024-04-27T15": 3144.6391142, - "2024-04-27T11": 3120.1443104, - "2024-04-27T03": 3121.4764757170356, - "2024-04-27T19": 3236.895469395632, - "2024-04-28T01": 3262.47801, - "2024-04-28T20": 3311.6342418000004, - "2024-04-28T14": 3311.348737121975, - "2024-04-28T05": 3307.7310525, - "2024-04-28T08": 3314.364704639368, - "2024-04-28T16": 3319.8487691221962, - "2024-04-28T11": 3282.348978827574, - "2024-04-28T22": 3293.5420560000002, - "2024-04-28T03": 3311.563197943532, - "2024-04-28T13": 3309.5098516325256, - "2024-04-28T15": 3318.3526414960015, - "2024-04-28T04": 3304.0786792, - "2024-04-28T09": 3307.0352543999998, - "2024-04-28T19": 3322.768849165785, - "2024-04-28T06": 3312.3192582, - "2024-04-28T12": 3290.0758686, - "2024-04-28T02": 3292.7472041072997, - "2024-04-28T17": 3319.318736835717, - "2024-04-28T21": 3305.576484, - "2024-04-28T18": 3324.466135736052, - "2024-04-28T07": 3318.7652748050236, - "2024-04-28T10": 3296.3929856, - "2024-04-29": 3178.824872768968, - "2024-04-28T23": 3267.352418472865, - "2024-04-29T00": 3277.7058968904407, - "2024-04-29T01": 3277.4180902101793, - "2024-04-29T02": 3250.5480206561424, - "2024-04-29T03": 3201.858231475413, - "2024-04-29T04": 3193.8084122319146, - "2024-04-29T05": 3195.952583632627, - "2024-04-29T06": 3180.2898076676406, - "2024-04-29T07": 3178.4360485153425, - "2024-04-29T08": 3186.0106439731935, - "2024-04-29T09": 3171.786593585063, - "2024-04-29T10": 3178.248422158926, - "2024-04-29T11": 3163.312307444313, - "2024-04-29T12": 3164.128932697128, - "2024-04-29T13": 3171.8882384931267, - "2024-04-29T14": 3129.155562832744, - "2024-04-29T15": 3175.513506441234, - "2024-04-30": 3013.6947855206436, - "2024-04-29T21": 3171.3513737999997, - "2024-04-30T03": 3183.920374190819, - "2024-04-29T22": 3206.6258850000004, - "2024-04-29T19": 3168.997991036959, - "2024-04-29T23": 3225.2248364, - "2024-04-29T18": 3170.1645442054237, - "2024-04-30T00": 3218.101523363034, - "2024-04-29T20": 3181.211131041826, - "2024-04-30T01": 3213.3175710351325, - "2024-04-30T02": 3181.5860424119373, - "2024-04-29T16": 3172.469511211792, - "2024-04-29T17": 3169.8462431107414, - "2024-04-30T07": 3168.666796086977, - "2024-04-30T04": 3175.171660970407, - "2024-04-30T05": 3167.65609782604, - "2024-04-30T06": 3170.3886458088323, - "2024-04-30T08": 3156.7011387447965, - "2024-04-30T09": 3060.3197899972806, - "2024-04-30T10": 3046.3235095858804, - "2024-04-30T11": 3043.0567941339923, - "2024-04-30T12": 3008.4774924779426, - "2024-04-30T13": 3008.0989358622255, - "2024-04-30T14": 3001.9423800327436, - "2024-04-30T15": 3019.796395055493, - "2024-04-30T16": 2978.025408878612, - "2024-05-01": 3010.0077514604686, - "2024-04-30T22": 3005.283046646616, - "2024-04-30T17": 2983.4209407181143, - "2024-04-30T20": 2961.333848182412, - "2024-04-30T23": 3009.7108958997087, - "2024-04-30T19": 2946.223850116148, - "2024-04-30T18": 2973.725389982612, - "2024-05-01T01": 3001.1596595318997, - "2024-05-01T00": 3002.807251471691, - "2024-04-30T21": 2979.1152951582376, - "2024-05-01T02": 2981.1220681748673, - "2024-05-01T03": 2991.311054731628, - "2024-05-01T05": 2991.220105615406, - "2024-05-01T04": 3004.804763940006, - "2024-05-01T06": 2969.8425607342133, - "2024-05-01T07": 2888.0817674987225, - "2024-05-01T08": 2849.643666621829, - "2024-05-01T09": 2875.113348636059, - "2024-05-01T11": 2887.3645371721086, - "2024-05-01T14": 2892.947904237175, - "2024-05-01T10": 2878.910666267768, - "2024-05-01T12": 2917.105411690944, - "2024-05-01T13": 2895.986845051433, - "2024-05-01T15": 2882.099042462242, - "2024-05-01T21": 2939.702486833621, - "2024-05-01T20": 2932.639550099961, - "2024-05-01T16": 2886.656693634395, - "2024-05-01T17": 2893.0320420304365, - "2024-05-01T19": 2944.904906214195, - "2024-05-01T18": 2966.3515515315808, - "2024-05-01T22": 2968.185373404001, - "2024-05-02": 2976.0902075157046, - "2024-05-02T01": 2911.53893764994, - "2024-05-02T02": 2911.7805220420573, - "2024-05-01T23": 2968.646646112956, - "2024-05-02T00": 2961.014262923019, - "2024-05-02T04": 2929.7117289092516, - "2024-05-02T06": 2915.52684803916, - "2024-05-02T03": 2924.8030783454983, - "2024-05-02T07": 2925.38039024553, - "2024-05-02T05": 2910.9544582606813, - "2024-05-02T08": 2936.6681362, - "2024-05-02T09": 2941.49907, - "2024-05-02T10": 2950.0685478, - "2024-05-02T11": 2960.2456610627946, - "2024-05-02T12": 2993.831244813232, - "2024-05-02T13": 2982.357316575924, - "2024-05-02T14": 2963.818379110314, - "2024-05-02T15": 2995.0171445907777, - "2024-05-02T16": 2984.788132368774, - "2024-05-02T17": 2981.5150075598604, - "2024-05-03T04": 3007.6200759000003, - "2024-05-03T02": 3018.2658427955307, - "2024-05-03T03": 3016.792132, - "2024-05-03T05": 3000.5000203, - "2024-05-03T06": 2988.0285203999997, - "2024-05-03T00": 2985.26865, - "2024-05-03T01": 3005.7003842999998, - "2024-05-03T07": 2979.5763122191565, - "2024-05-03T08": 2975.8097578, - "2024-05-03T09": 2980.8378561000004, - "2024-05-03T10": 2971.23768, - "2024-05-03T11": 2972.9702700000003, - "2024-05-03T13": 3048.3224404598805, - "2024-05-03T12": 3023.582182784415, - "2024-05-03T14": 3055.7860590623054, - "2024-05-03": 3029.944346821867, - "2024-05-04": 3121.114418683782, - "2024-05-04T05": 3115.0737895654124, - "2024-05-03T18": 3074.3396543897097, - "2024-05-04T03": 3108.7837820000004, - "2024-05-03T17": 3075.182748544597, - "2024-05-03T21": 3106.5795953945667, - "2024-05-03T20": 3108.3896641472074, - "2024-05-04T06": 3113.1614412000004, - "2024-05-03T22": 3110.5669688999997, - "2024-05-03T19": 3068.8798011814065, - "2024-05-04T02": 3100.4905316646555, - "2024-05-03T15": 3061.058123329577, - "2024-05-03T16": 3080.8866822685527, - "2024-05-04T01": 3118.0786265, - "2024-05-04T04": 3113.721598, - "2024-05-03T23": 3108.4218118999997, - "2024-05-04T00": 3114.08955, - "2024-05-04T13": 3132.0896541804336, - "2024-05-04T10": 3136.312725, - "2024-05-04T12": 3141.064075, - "2024-05-04T07": 3103.2684878000005, - "2024-05-04T11": 3149.794948, - "2024-05-04T09": 3107.5271248, - "2024-05-04T15": 3125.0720976067128, - "2024-05-04T08": 3104.4997428999995, - "2024-05-04T14": 3127.6618895391803, - "2024-05-05": 3135.068517277608, - "2024-05-05T01": 3089.1915427, - "2024-05-04T19": 3126.1563000000006, - "2024-05-04T20": 3139.7155836, - "2024-05-05T05": 3090.2616818, - "2024-05-05T07": 3105.790548, - "2024-05-04T23": 3115.11148, - "2024-05-04T22": 3113.71134, - "2024-05-04T21": 3120.0724001999997, - "2024-05-05T00": 3105.545762, - "2024-05-05T08": 3145.9521475995534, - "2024-05-04T17": 3123.670775684073, - "2024-05-05T09": 3141.09778734941, - "2024-05-05T10": 3137.9006145000003, - "2024-05-05T04": 3091.0817884, - "2024-05-04T16": 3124.008307672937, - "2024-05-05T06": 3092.3092, - "2024-05-05T03": 3081.890682661155, - "2024-05-04T18": 3125.5375209999997, - "2024-05-05T02": 3090.701739, - "2024-05-05T21": 3132.2645112000005, - "2024-05-05T16": 3156.1846827, - "2024-05-05T22": 3130.566448774589, - "2024-05-05T17": 3152.783725, - "2024-05-05T20": 3137.8895821754013, - "2024-05-05T13": 3144.2188843904487, - "2024-05-05T15": 3156.5809452000003, - "2024-05-05T12": 3135.701632, - "2024-05-05T18": 3140.7852396, - "2024-05-05T14": 3134.867322895993, - "2024-05-05T19": 3142.7327567999996, - "2024-05-05T11": 3136.7518, - "2024-05-05T23": 3138.6624542, - "2024-05-06T00": 3148.674836, - "2024-05-06T04": 3134.4080532, - "2024-05-06T02": 3148.3733374611315, - "2024-05-06T05": 3164.7582300000004, - "2024-05-06T06": 3183.7236731999997, - "2024-05-06T01": 3152.755965208351, - "2024-05-06T03": 3134.5080592, - "2024-05-06T08": 3209.5546953363055, - "2024-05-06T07": 3175.1004946, - "2024-05-06T09": 3201.39049094347, - "2024-05-06T10": 3175.3375336312893, - "2024-05-06T11": 3151.9350675493183, - "2024-05-06T13": 3108.3898103431466, - "2024-05-06T12": 3120.2904159358945, - "2024-05-06T15": 3074.9554111475363, - "2024-05-06T14": 3105.800612702344, - "2024-05-06": 3130.2255273417018, - "2024-05-07": 3067.1789148589446, - "2024-05-06T22": 3082.892484, - "2024-05-07T07": 3077.846208, - "2024-05-06T16": 3084.6290452230423, - "2024-05-07T01": 3081.8791498748105, - "2024-05-07T00": 3069.9386, - "2024-05-06T21": 3084.437031942733, - "2024-05-06T20": 3073.4703997222127, - "2024-05-06T23": 3069.9792999000006, - "2024-05-07T04": 3058.1979651208158, - "2024-05-06T19": 3062.8461036689114, - "2024-05-07T03": 3047.3290521999998, - "2024-05-07T02": 3089.4537982, - "2024-05-07T05": 3066.038746828645, - "2024-05-06T17": 3074.864335210352, - "2024-05-06T18": 3072.701601370458, - "2024-05-07T08": 3113.1269843009577, - "2024-05-07T09": 3121.1162106272923, - "2024-05-07T10": 3099.806907484518, - "2024-05-07T11": 3093.874248585082, - "2024-05-07T12": 3072.087546509943, - "2024-05-07T13": 3071.911913540184, - "2024-05-07T14": 3064.501087958445, - "2024-05-07T15": 3094.8109758670494, - "2024-05-08": 3004.220940383108, - "2024-05-09": 2996.4332682297763, - "2024-05-10": 3008.4276688561504, - "2024-05-09T13": 2979.0322974372625, - "2024-05-10T00": 3026.6762059999996, - "2024-05-08T08": 2994.975777911403, - "2024-05-09T14": 2980.224759272435, - "2024-05-08T10": 3003.6781350950746, - "2024-05-09T04": 2996.2224932948675, - "2024-05-10T01": 3030.0969600000003, - "2024-05-08T03": 3028.8764911999997, - "2024-05-09T07": 2990.5440443, - "2024-05-09T11": 2968.802004, - "2024-05-09T00": 2979.2459319267555, - "2024-05-09T01": 2991.855470473011, - "2024-05-10T06": 3037.1951133000002, - "2024-05-09T19": 3017.72401868409, - "2024-05-10T05": 3027.8463288, - "2024-05-10T02": 3032.2170758999996, - "2024-05-09T23": 3035.6153187000004, - "2024-05-09T06": 3002.9976288000003, - "2024-05-08T01": 3023.957071300435, - "2024-05-09T09": 2973.882315, - "2024-05-09T20": 3020.0255954119816, - "2024-05-08T19": 2998.3603215731177, - "2024-05-09T03": 2996.0212495, - "2024-05-08T21": 2966.2694097976555, - "2024-05-09T22": 3041.334317921957, - "2024-05-08T17": 3011.813634794154, - "2024-05-09T05": 3004.806608, - "2024-05-08T06": 3012.0978563000003, - "2024-05-08T15": 3002.5064991261015, - "2024-05-10T08": 3034.835776, - "2024-05-08T07": 3000.9196745, - "2024-05-08T04": 3022.8371790917877, - "2024-05-09T15": 3002.3009415614497, - "2024-05-08T18": 3013.765399683753, - "2024-05-09T10": 2967.3770445, - "2024-05-09T21": 3020.525303544491, - "2024-05-10T03": 3027.3977888, - "2024-05-08T00": 3016.3481956798464, - "2024-05-10T07": 3046.3734480000003, - "2024-05-08T14": 3021.603374810295, - "2024-05-09T17": 3000.3410674616407, - "2024-05-08T13": 3006.5777938311608, - "2024-05-08T05": 3017.8468788, - "2024-05-09T18": 3010.52884512628, - "2024-05-09T08": 2983.047871215425, - "2024-05-08T20": 2952.3394669956137, - "2024-05-08T22": 2965.612361135187, - "2024-05-08T11": 2991.3515655056485, - "2024-05-09T12": 2984.586204, - "2024-05-08T02": 3029.7831186548706, - "2024-05-10T04": 3029.8857565999997, - "2024-05-08T12": 2996.289664939049, - "2024-05-09T02": 2996.902431700847, - "2024-05-08T09": 2989.6328532027055, - "2024-05-09T16": 3014.0604485973317, - "2024-05-08T16": 3006.2334553669293, - "2024-05-08T23": 2968.519775994237, - "2024-05-10T09": 3030.3663124, - "2024-05-10T10": 3029.5658013999996, - "2024-05-10T11": 3029.7557748, - "2024-05-10T12": 3033.7396623, - "2024-05-10T13": 3024.1578013, - "2024-05-10T14": 2978.750677560178, - "2024-05-11": 2916.2954645949453, - "2024-05-12": 2926.915946090738, - "2024-05-12T16": 2942.47254, - "2024-05-11T03": 2911.8970320000003, - "2024-05-10T17": 2895.58015698431, - "2024-05-11T16": 2924.2498320000004, - "2024-05-10T15": 2932.6943021470597, - "2024-05-11T04": 2910.6039247, - "2024-05-11T12": 2903.89266, - "2024-05-12T15": 2933.416164, - "2024-05-11T11": 2899.3437272, - "2024-05-12T04": 2926.2497455, - "2024-05-12T11": 2927.44763, - "2024-05-11T22": 2916.9481302000004, - "2024-05-11T21": 2918.7624483875065, - "2024-05-10T21": 2896.174892927755, - "2024-05-10T23": 2910.656045915094, - "2024-05-12T00": 2919.613853, - "2024-05-12T03": 2917.822404, - "2024-05-12T12": 2927.8074392, - "2024-05-11T08": 2913.0324146, - "2024-05-11T17": 2923.805568, - "2024-05-12T19": 2924.9680896, - "2024-05-11T23": 2912.842464, - "2024-05-11T05": 2917.8919564, - "2024-05-12T02": 2914.478957788871, - "2024-05-11T02": 2916.9530244000002, - "2024-05-10T16": 2915.7934289385144, - "2024-05-12T14": 2932.1799250000004, - "2024-05-11T09": 2903.8167036000004, - "2024-05-10T18": 2896.9572617830245, - "2024-05-10T19": 2903.301673626377, - "2024-05-11T06": 2920.4504853999997, - "2024-05-12T08": 2910.4818492, - "2024-05-10T20": 2894.5807032224984, - "2024-05-11T18": 2930.637276, - "2024-05-12T05": 2924.389776, - "2024-05-12T06": 2920.991136, - "2024-05-11T20": 2920.137594, - "2024-05-12T09": 2913.2250878, - "2024-05-11T01": 2922.7476134000003, - "2024-05-11T00": 2913.32978, - "2024-05-12T07": 2908.2117695, - "2024-05-12T10": 2929.8403028000002, - "2024-05-11T10": 2906.6396072999996, - "2024-05-12T01": 2915.223444, - "2024-05-12T18": 2934.0027395, - "2024-05-12T13": 2931.5815088, - "2024-05-11T19": 2927.818404, - "2024-05-12T17": 2932.833149, - "2024-05-11T14": 2905.6535879999997, - "2024-05-11T07": 2920.0113840000004, - "2024-05-11T15": 2925.6821332, - "2024-05-11T13": 2906.8377077, - "2024-05-10T22": 2903.3592621465973, - "2024-05-13": 2951.6633460598855, - "2024-05-12T21": 2921.0557334, - "2024-05-13T06": 2894.090246796701, - "2024-05-13T00": 2933.4196141864404, - "2024-05-13T03": 2877.016397019974, - "2024-05-12T23": 2931.3316263, - "2024-05-13T04": 2883.7383652213803, - "2024-05-13T01": 2917.098658, - "2024-05-13T05": 2884.586511997563, - "2024-05-13T02": 2886.1550145, - "2024-05-12T22": 2929.5497517, - "2024-05-12T20": 2925.5278768, - "2024-05-13T08": 2972.498735165097, - "2024-05-13T10": 2963.9829129057953, - "2024-05-13T09": 2980.791829835843, - "2024-05-13T07": 2927.546873125119, - "2024-05-13T11": 2962.4870770088423, - "2024-05-13T12": 2964.804708209148, - "2024-05-13T13": 2969.9691281257387, - "2024-05-13T14": 2963.9007119638736, - "2024-05-13T15": 2960.907592404866, - "2024-05-13T16": 2967.447412106135, - "2024-05-14": 2904.5335614794594, - "2024-05-13T17": 2946.5716341318603, - "2024-05-14T01": 2948.4801860000002, - "2024-05-14T02": 2946.9541075, - "2024-05-14T06": 2906.566562631089, - "2024-05-13T19": 2952.584116213309, - "2024-05-13T22": 2945.3464403569656, - "2024-05-14T04": 2937.5928427999997, - "2024-05-13T21": 2952.815555944663, - "2024-05-14T03": 2945.0477784, - "2024-05-14T00": 2953.13427556741, - "2024-05-14T07": 2915.2277111896515, - "2024-05-13T20": 2953.447637322194, - "2024-05-14T05": 2942.3654069958816, - "2024-05-13T23": 2948.4496881, - "2024-05-13T18": 2938.474984893804, - "2024-05-14T08": 2912.909155666869, - "2024-05-14T09": 2911.288878193672, - "2024-05-14T10": 2904.390241389892, - "2024-05-14T11": 2907.4903642633653, - "2024-05-14T12": 2903.6998715699515, - "2024-05-14T13": 2901.854271540674, - "2024-05-14T14": 2892.0265400349267, - "2024-05-14T15": 2900.295871904778, - "2024-05-14T16": 2888.98384934544, - "2024-05-14T17": 2877.205345395317, - "2024-05-14T18": 2881.901937229239, - "2024-05-14T19": 2892.604512261565, - "2024-05-14T20": 2894.311978664992, - "2024-05-15": 2886.8416901263013, - "2024-05-15T02": 2886.8579418, - "2024-05-15T01": 2881.0614798, - "2024-05-14T21": 2892.5879450439656, - "2024-05-15T05": 2903.9826195, - "2024-05-15T00": 2880.6524446, - "2024-05-15T06": 2904.992165, - "2024-05-15T03": 2895.66156, - "2024-05-15T07": 2910.9318612173765, - "2024-05-14T23": 2882.131304, - "2024-05-15T04": 2899.5395049999997, - "2024-05-14T22": 2891.3319406, - "2024-05-15T08": 2907.3784332, - "2024-05-15T09": 2912.7611395431036, - "2024-05-15T10": 2912.6131751191097, - "2024-05-15T11": 2897.7042646, - "2024-05-15T12": 2939.849211827698, - "2024-05-15T13": 2945.733112129407, - "2024-05-15T14": 2964.307371350004 - }, - "USD bitcoin_testnet": { - "latest": 0 - }, - "USD ethereum_holesky": { - "latest": 0 - }, - "USD ethereum/erc20/usd_tether__erc20_": { - "2023-07-30": 0.9999784522484314, - "2023-07-27": 0.9998435637497376, - "2023-07-10": 1.0000390205163314, - "2023-08-20": 0.9999000000000001, - "2024-02-23": 0.9997822639006595, - "2024-04-05": 1.0002996099023616, - "2023-12-19": 0.999562506954569, - "2023-08-06": 0.9987054969774685, - "2023-12-02": 1.0004272344212337, - "2023-10-12": 0.9997124088421077, - "2023-10-31": 1.0003494821564858, - "2023-08-29": 0.9998264620726621, - "2023-06-20": 0.9998501026666621, - "2023-09-09": 0.9997062003567082, - "2023-06-26": 1.0000997812278916, - "2023-05-03": 1.0003876671708625, - "2023-10-23": 1.0003199893069419, - "2023-10-01": 1.0000800787414637, - "2024-03-07": 1.0006167117248603, - "2023-07-05": 0.9999947879286002, - "2023-07-29": 0.9999802816351016, - "2024-01-08": 1.0007014131209098, - "2023-05-29": 1.0002645037520854, - "2023-10-07": 1.0005509691353505, - "2023-09-26": 0.9996834984284886, - "2023-08-24": 0.9995644520823458, - "2023-12-05": 1.0000637896331663, - "2023-05-10": 1.0005171916065696, - "2024-02-19": 1.000114093917885, - "2024-01-07": 1.0005189273496493, - "2023-10-18": 1.0003686722335488, - "2023-04-25": 1.0000258421715276, - "2023-07-31": 0.9998092336115991, - "2023-05-23": 1.0001085113902144, - "2023-08-25": 0.9995555979983999, - "2024-03-09": 1.0021329697948491, - "2023-07-12": 0.9999957472793326, - "2023-09-05": 0.9994099915069549, - "2023-06-07": 1.0002194624313132, - "2023-09-16": 1.0001030559915924, - "2023-08-12": 0.9993331305482194, - "2023-05-09": 1.000590581124775, - "2023-09-01": 0.9995996064737327, - "2023-09-08": 0.9996001196284937, - "2024-03-22": 1.00000281466932, - "2023-08-10": 0.9989900033300851, - "2023-12-07": 1.0001280857602834, - "2023-11-18": 1.0003908387017555, - "2023-07-13": 1.0001170882796155, - "2023-04-30": 1.000554769835146, - "2023-06-06": 1.0001901672061675, - "2023-09-13": 0.9999069624574598, - "2023-06-17": 0.9994300078918992, - "2023-07-17": 1.00015963424213, - "2023-07-07": 1.0000581541887703, - "2023-09-07": 0.9994094916208136, - "2024-02-12": 1.00025, - "2024-02-22": 0.9996985837301782, - "2023-12-30": 0.999994203573886, - "2023-09-17": 1.000220354366645, - "2023-04-20": 1.0002728564291397, - "2024-03-26": 1.0001671693360006, - "2023-04-27": 1.0002870760239453, - "2023-10-26": 1.0001756849917147, - "2024-01-03": 1.0005199108515548, - "2023-06-01": 1.0001300489892158, - "2024-01-22": 0.9990924339164344, - "2023-06-12": 1.0000408297628918, - "2023-10-03": 1.0000009951530573, - "2023-06-19": 0.9996923246341914, - "2023-07-09": 1.0001787895519283, - "2023-12-24": 1.0005049482639274, - "2023-09-24": 1.00006, - "2024-01-16": 0.9993196872979324, - "2023-10-17": 1.000408630739459, - "2024-03-18": 0.9995717375652462, - "2024-02-17": 1.000347284010517, - "2023-12-27": 1.0002345891805149, - "2023-07-23": 1.0000043971919532, - "2023-09-03": 0.99986527784314, - "2024-02-24": 0.9998569735144313, - "2024-01-06": 1.0006866517753394, - "2024-03-20": 0.9999152221538392, - "2023-11-21": 1.000346565391692, - "2023-12-25": 1.0001836580342194, - "2023-09-22": 0.9999223949030303, - "2023-10-02": 1.0002510975829573, - "2024-03-27": 0.9998195492325934, - "2023-04-28": 1.0003956232939557, - "2023-08-04": 0.999069967375368, - "2023-08-30": 0.9999242891043502, - "2023-04-24": 1.0000148237880713, - "2023-10-06": 1.0001966975629932, - "2023-10-13": 0.9996494309081019, - "2023-06-28": 0.999998097118588, - "2024-02-05": 0.9989895634609893, - "2024-03-01": 1.000320154767329, - "2023-07-15": 1.0003162755788946, - "2023-06-25": 1.0003179423138935, - "2023-12-10": 1.0000853744461198, - "2023-11-23": 1.0001910308425486, - "2024-01-13": 0.9997848537894541, - "2024-03-28": 0.9998047110538556, - "2023-08-05": 0.9987635514127302, - "2024-02-09": 1.0000197796711614, - "2023-10-09": 1.000198173283462, - "2023-05-24": 0.9999772008989098, - "2024-01-09": 1.000498976620399, - "2023-12-08": 1.0001783605551853, - "2023-05-27": 1.0003075498058407, - "2023-08-18": 0.9996004558071162, - "2023-11-05": 1.0007255456998707, - "2023-10-22": 1.0004466509786318, - "2023-11-01": 1.000202279394344, - "2023-05-07": 1.0014001555073113, - "2024-04-12": 0.9999989546209408, - "2024-03-12": 1.0000949536024875, - "2023-09-11": 0.9996064504037809, - "2024-03-03": 1.0004969487135829, - "2024-02-04": 0.9996199033620214, - "2024-01-28": 0.9999, - "2023-04-18": 1.0003876242595502, - "2023-07-06": 1.0000350661281536, - "2023-07-01": 0.9998810734653913, - "2023-05-18": 0.9999987085210993, - "2023-11-07": 1.0003187842764132, - "2023-11-25": 1.0005959158747728, - "2023-06-04": 1.0002963624342904, - "2024-02-25": 0.9999594819475537, - "2023-12-01": 1.0002122922113057, - "2023-07-14": 1.0003576479608332, - "2024-01-26": 0.999535736740688, - "2023-08-03": 0.9990577577979933, - "2024-02-28": 1.0005322867691895, - "2023-09-15": 1.0000184495906546, - "2023-07-18": 1.0000747847926508, - "2023-04-21": 1.0000364912372262, - "2023-12-21": 1.0000263434665637, - "2023-07-20": 0.9999868481181513, - "2024-03-06": 1.000544125265376, - "2023-09-30": 1.0000230727945119, - "2023-12-12": 0.9996177656902822, - "2024-02-13": 1.0002584413035445, - "2023-05-19": 1.0001231973370288, - "2023-09-20": 1.0000700247368512, - "2023-07-08": 1.0000879301523953, - "2023-09-19": 1.0001806510874856, - "2023-09-29": 0.9998900053738049, - "2023-09-12": 0.9997483687028741, - "2023-06-13": 0.9999003595046548, - "2023-10-04": 0.9999639166322751, - "2024-03-02": 1.000949757835641, - "2023-10-08": 1.0005863506517971, - "2023-11-20": 1.0005694662607607, - "2023-12-20": 0.9999368514137088, - "2023-12-31": 0.999706490105218, - "2023-11-06": 1.0005236061008729, - "2023-08-22": 0.9996312417930362, - "2023-06-27": 1.0000631234194826, - "2023-04-14": 1.0008469697570166, - "2023-06-09": 1.0000741939968731, - "2024-03-17": 0.999300125610499, - "2023-09-18": 1.000170535881867, - "2024-04-01": 1.0003067204988154, - "2024-01-19": 0.9989301008513192, - "2023-11-11": 1.0005239086294107, - "2023-05-14": 1.0004318788534152, - "2023-05-13": 1.0004796850000175, - "2023-05-06": 1.0015097587930053, - "2023-04-16": 1.0006918834312242, - "2023-11-19": 1.0005102321747177, - "2023-04-15": 1.0008223645596672, - "2023-05-16": 1.0001929042038777, - "2023-09-23": 0.9999999874901567, - "2023-07-02": 0.999998999472882, - "2023-08-15": 0.99872, - "2024-01-25": 0.9995261075782131, - "2024-03-13": 1.0005705970776617, - "2024-01-21": 0.9993984589774161, - "2024-02-01": 0.9994087706890287, - "2023-06-15": 0.9989166138852001, - "2024-03-16": 0.9997554256352759, - "2023-11-27": 1.0001689835048435, - "2024-01-10": 1.0003454462548549, - "2024-03-15": 0.9996551244231094, - "2023-06-21": 0.999963412069765, - "2024-01-02": 1.0006886283230676, - "2023-04-26": 1.000200198237982, - "2023-07-11": 1.0000311202649552, - "2023-10-25": 1.0001135692661165, - "2024-01-01": 1.0000219639617158, - "2024-02-14": 1.0004726470347727, - "2023-09-04": 0.9996344648872475, - "2023-09-06": 0.999418200324391, - "2024-04-03": 1.0003979402273147, - "2024-03-08": 1.001445390518557, - "2023-11-28": 1.0001860758160084, - "2023-12-03": 1.0003663938465919, - "2023-08-02": 0.9994292815960678, - "2023-08-27": 0.9995229656064774, - "2023-10-20": 1.00044, - "2023-05-25": 0.9999164538416403, - "2023-10-10": 1.000081795577596, - "2024-04-11": 0.9999872215855751, - "2023-06-22": 1.0000945781695192, - "2024-01-14": 0.9997349012266152, - "2023-12-15": 1.000039558003058, - "2023-10-19": 1.0003167420753751, - "2024-02-08": 0.9997691189606479, - "2023-11-08": 1.0002799441235242, - "2023-11-12": 1.00038778419629, - "2023-12-22": 1.0002782323122186, - "2023-05-20": 1.00029, - "2023-05-31": 1.0001782006602706, - "2024-03-23": 1.0000886878997068, - "2024-04-10": 0.9999288184704453, - "2023-09-27": 0.9993002947936063, - "2024-03-04": 1.0006640231259203, - "2023-09-10": 0.9997501097043565, - "2024-04-13": 1.0003107557442696, - "2024-02-29": 1.000193354208913, - "2023-07-22": 1.0001000000000002, - "2023-07-21": 0.9999496068246334, - "2023-06-30": 0.9997899039101359, - "2023-12-29": 1.000525710098593, - "2023-12-04": 1.0002446053123668, - "2023-09-21": 0.9999509527287986, - "2023-06-02": 1.0002202342223705, - "2023-10-11": 1.0000108429634742, - "2023-07-19": 1.0000097118910456, - "2023-05-05": 1.0006994369483793, - "2024-03-21": 1.0000198980519805, - "2024-04-08": 0.9999900007356841, - "2023-04-29": 1.0006997568534648, - "2023-06-14": 0.9997999778466133, - "2023-10-05": 1.0001243390933379, - "2023-10-16": 1.0001990826520295, - "2024-02-10": 1.0005373988217636, - "2024-04-07": 1.0002204870188927, - "2023-05-21": 1.0003707315003587, - "2024-02-20": 1.0000028201100928, - "2023-11-17": 1.0001626073947543, - "2023-12-11": 0.9998766783894801, - "2023-11-26": 1.0004422324934508, - "2023-11-16": 1.0002897113131952, - "2023-06-29": 0.9998880864108808, - "2023-06-11": 1.0004315624348548, - "2024-02-02": 0.9994894048480738, - "2023-09-14": 1.0000385671216983, - "2024-01-27": 0.999882535034336, - "2024-03-30": 1.0005796820684694, - "2023-05-04": 1.0003559995076023, - "2023-09-28": 0.9993006572338614, - "2023-10-27": 1.0000977238602806, - "2023-05-01": 1.0002639282169299, - "2023-05-15": 1.0003439124251954, - "2023-11-22": 1.0001771632930128, - "2023-06-03": 1.000323823033205, - "2024-01-18": 0.9989240600107379, - "2023-08-26": 0.9994625357882039, - "2024-02-15": 1.0007686002576943, - "2023-10-28": 1.00015, - "2024-03-24": 1.0001061447367188, - "2023-04-22": 1.0000907892753457, - "2023-12-06": 1.0000712811600452, - "2023-11-10": 1.0002138579250022, - "2024-01-30": 0.999934445991335, - "2023-08-09": 0.999460061040409, - "2023-05-02": 1.0002295024097838, - "2023-11-14": 1.0001997689640332, - "2024-01-23": 0.99900054991038, - "2024-01-31": 0.9996, - "2024-01-11": 1.000208503227804, - "2024-02-18": 1.0002079761063432, - "2023-06-16": 0.9989876867629772, - "2023-10-30": 1.0002892504373868, - "2023-12-17": 0.9990258896504751, - "2024-02-26": 1.0000796988102714, - "2023-07-16": 1.0003300265485886, - "2024-01-05": 1.0007621780380087, - "2023-08-23": 0.9995246886763218, - "2024-03-11": 1.0003812067213191, - "2023-08-01": 0.9995695638520323, - "2024-03-14": 1.0000657504546695, - "2024-02-21": 1, - "2023-08-28": 0.9994390460802476, - "2023-07-04": 1.0001401699581174, - "2023-12-13": 0.9995630361543678, - "2023-08-13": 0.9993232499473954, - "2024-03-31": 1.000128688372266, - "2023-12-09": 1.0003124251652395, - "2024-04-02": 1.000289437896888, - "2024-02-06": 0.9990553344680779, - "2024-04-09": 1.0000206113003818, - "2023-05-30": 1.0002704587173001, - "2023-11-04": 1.0004999999999997, - "2024-01-15": 0.9994948811088207, - "2023-07-03": 0.9999963964168201, - "2023-12-28": 1.0004253379900228, - "2023-04-23": 1.000214097551543, - "2023-04-17": 1.0005199459252856, - "2023-05-08": 1.0010902492826061, - "2024-02-27": 1.0004687004265274, - "2024-02-07": 0.9994441047691508, - "2023-09-25": 0.9997643898059492, - "2024-03-19": 0.9997099544733546, - "2024-03-10": 1.0017999999999998, - "2023-09-02": 0.999797078151559, - "2024-01-12": 0.9999535099197165, - "2023-11-29": 1.0004742188543934, - "2023-10-15": 1.0000031594002534, - "2023-11-30": 1.0001653962427388, - "2024-01-24": 0.999398329318694, - "2023-08-11": 0.998836094951441, - "2024-02-11": 1.000380014440065, - "2023-06-08": 1.0001, - "2023-08-16": 0.9988202030947102, - "2023-11-15": 1.0002747264878407, - "2023-12-16": 0.9994022430261683, - "2024-03-29": 1.0001514270490928, - "2024-04-04": 1.0002396988787647, - "2023-06-10": 1.0004577510878558, - "2023-07-28": 0.9997293542591548, - "2024-01-20": 0.99931, - "2023-10-21": 1.0003899658549544, - "2023-05-12": 1.000439267371866, - "2023-11-03": 1.0002470283002383, - "2023-08-31": 0.999900633161885, - "2024-01-29": 0.9998806569344532, - "2024-01-04": 1.0008945324368521, - "2023-05-22": 1.000105052051122, - "2023-07-26": 0.999875683667403, - "2023-11-13": 1.0003791038484469, - "2024-03-25": 1.0003184934042482, - "2023-08-07": 0.9984346107637662, - "2023-10-29": 1.0001904878703396, - "2023-07-25": 0.9998958832269429, - "2023-05-17": 1.0000499948275205, - "2023-10-24": 1.0000132087861118, - "2023-06-05": 1.0001871069346917, - "2023-11-02": 1.0004254228410634, - "2023-12-18": 0.9991994292517622, - "2023-11-24": 1.0003359023950296, - "2023-08-21": 0.9997560553893646, - "2023-08-14": 0.9988000005473627, - "2023-05-26": 1.000172788713654, - "2024-03-05": 1.0005865850844944, - "2024-04-06": 1.0002993652331509, - "2023-12-23": 1.0005636776544033, - "2024-02-03": 0.9995915421102922, - "2024-02-16": 1.0004889691637024, - "2023-05-28": 1.0002787862879898, - "2023-12-14": 1.0001572581963885, - "2023-06-24": 1.000471531006705, - "2023-12-26": 0.9999055338852005, - "2023-11-09": 1.0003355820269322, - "2023-05-11": 1.0005453060347644, - "2023-08-19": 0.9997233373729801, - "2023-06-23": 1.0002260661592144, - "2023-06-18": 0.9997416021277044, - "2023-08-08": 0.9991403715520106, - "2023-08-17": 0.9988201475771474, - "2024-04-14": 1.0005097193046661, - "2023-07-24": 0.999869791391712, - "2023-10-14": 0.9999245872478234, - "2024-01-17": 0.9993948422529548, - "2023-04-19": 1.000450509631999, - "2024-04-08T13": 0.99968, - "2024-04-10T23": 0.99996, - "2024-04-09T08": 1.00033, - "2024-04-11T04": 1.00004, - "2024-04-14T03": 1.00049, - "2024-04-11T16": 0.99978, - "2024-04-11T12": 0.99993, - "2024-04-13T04": 1.00014, - "2024-04-10T17": 1.00002, - "2024-04-12T19": 1, - "2024-04-15T06": 1.00071, - "2024-04-11T17": 0.99981, - "2024-04-14T19": 1.00023, - "2024-04-15T01": 1.00109, - "2024-04-11T07": 0.99995, - "2024-04-12T14": 0.99957, - "2024-04-11T10": 0.99984, - "2024-04-12T20": 1.00029, - "2024-04-10T20": 1, - "2024-04-14T23": 1.0005637853243825, - "2024-04-13T07": 1.00029, - "2024-04-14T20": 1.0003, - "2024-04-10T06": 0.99986, - "2024-04-10T10": 0.99999, - "2024-04-15T00": 1.00094, - "2024-04-14T01": 1.00101, - "2024-04-15T02": 1.0009, - "2024-04-09T05": 0.99999, - "2024-04-08T10": 0.99979, - "2024-04-14T05": 1.00042, - "2024-04-14T13": 1.00051, - "2024-04-14T10": 1.00047, - "2024-04-11T01": 0.99999, - "2024-04-13T14": 1.0002, - "2024-04-08T20": 0.99999, - "2024-04-10T21": 0.9999, - "2024-04-08T23": 0.99995, - "2024-04-14T15": 1.0003, - "2024-04-14T12": 1.00051, - "2024-04-11T23": 1.00009, - "2024-04-12T09": 0.99981, - "2024-04-14T18": 1.00031, - "2024-04-14T09": 1.0005, - "2024-04-12T22": 1.00034, - "2024-04-12T00": 1.00007, - "2024-04-13T20": 1.00163, - "2024-04-10T19": 0.99999, - "2024-04-09T15": 0.9998906649047646, - "2024-04-14T11": 1.00049, - "2024-04-11T20": 1.00001, - "2024-04-09T09": 1.0003, - "2024-04-13T13": 1.0002, - "2024-04-08T22": 0.99995, - "2024-04-12T16": 0.99947, - "2024-04-11T05": 1.00002, - "2024-04-11T22": 1.0001, - "2024-04-15T05": 1.00069, - "2024-04-08T16": 0.99994, - "2024-04-10T05": 0.9998, - "2024-04-09T17": 0.99968, - "2024-04-12T12": 0.99965, - "2024-04-13T03": 1.00021, - "2024-04-11T02": 0.99996, - "2024-04-08T12": 0.99966, - "2024-04-12T03": 1.0001, - "2024-04-10T02": 0.9998, - "2024-04-13T23": 1.00122, - "2024-04-14T14": 1.0004, - "2024-04-09T19": 0.99968, - "2024-04-11T06": 1.00007, - "2024-04-11T15": 0.99976, - "2024-04-10T14": 0.99967, - "2024-04-08T18": 1.00012, - "2024-04-11T13": 0.99999, - "2024-04-12T13": 0.99967, - "2024-04-11T03": 0.99998, - "2024-04-12T23": 1.00039, - "2024-04-09T07": 1.00033, - "2024-04-09T14": 1.00009, - "2024-04-11T21": 1.00007, - "2024-04-12T02": 1.00005, - "2024-04-08T14": 0.99976, - "2024-04-09T10": 1.00019, - "2024-04-11T19": 1, - "2024-04-09T11": 1.00011, - "2024-04-13T11": 1.0001, - "2024-04-12T01": 1.00004, - "2024-04-09T03": 0.99994, - "2024-04-12T05": 1.0001, - "2024-04-10T04": 0.99986, - "2024-04-08T15": 0.99989, - "2024-04-14T02": 1.0008, - "2024-04-11T00": 0.99991, - "2024-04-12T10": 0.99965, - "2024-04-12T11": 0.99961, - "2024-04-10T00": 0.99961, - "2024-04-13T00": 1.00044, - "2024-04-10T15": 0.99994, - "2024-04-10T18": 0.99997, - "2024-04-13T08": 1.00028, - "2024-04-13T06": 1.00029, - "2024-04-15T04": 1.00077, - "2024-04-10T12": 0.99988, - "2024-04-09T01": 1.00004, - "2024-04-13T02": 1.00025, - "2024-04-10T08": 0.99987, - "2024-04-13T05": 1.00029, - "2024-04-14T16": 1.00022, - "2024-04-11T08": 0.99995, - "2024-04-12T17": 0.99929, - "2024-04-09T04": 1.00006, - "2024-04-14T21": 1.0003, - "2024-04-15T07": 1.00089, - "2024-04-09T23": 0.9996, - "2024-04-13T22": 1.00082, - "2024-04-10T22": 0.99993, - "2024-04-11T11": 0.99987, - "2024-04-10T07": 0.99976, - "2024-04-14T22": 1.00027, - "2024-04-08T17": 1.0001, - "2024-04-08T11": 0.99979, - "2024-04-09T12": 0.99996, - "2024-04-08T21": 0.99994, - "2024-04-13T21": 1.00095, - "2024-04-12T07": 0.99998, - "2024-04-08T08": 1.00004, - "2024-04-12T18": 0.99959, - "2024-04-10T09": 0.99994, - "2024-04-14T04": 1.00041, - "2024-04-11T09": 0.9999029829207409, - "2024-04-09T20": 0.9996, - "2024-04-13T09": 1.00028, - "2024-04-14T08": 1.0005, - "2024-04-10T11": 0.99994, - "2024-04-11T14": 0.99995, - "2024-04-14T06": 1.00058, - "2024-04-14T07": 1.00067, - "2024-04-08T19": 1.0001, - "2024-04-09T06": 1.0002, - "2024-04-09T00": 0.99999, - "2024-04-13T19": 1.00045, - "2024-04-09T02": 1, - "2024-04-13T16": 1.0002, - "2024-04-09T22": 0.99957, - "2024-04-10T03": 0.99989, - "2024-04-12T06": 1.00007, - "2024-04-13T15": 1.0002, - "2024-04-12T15": 0.99947, - "2024-04-09T13": 1.00009, - "2024-04-11T18": 0.99999, - "2024-04-10T16": 0.99991, - "2024-04-12T08": 1.00011, - "2024-04-08T09": 0.99983, - "2024-04-12T04": 1.00013, - "2024-04-13T17": 1.0002, - "2024-04-13T18": 1.00033, - "2024-04-10T13": 0.99948, - "2024-04-10T01": 0.99969, - "2024-04-13T10": 1.00035, - "2024-04-12T21": 1.00034, - "2024-04-09T18": 0.99967, - "2024-04-15T03": 1.00098, - "2024-04-14T00": 1.0011, - "2024-04-09T21": 0.99955, - "2024-04-13T01": 1.00024, - "2024-04-09T16": 0.99977, - "2024-04-14T17": 1.00048, - "2024-04-13T12": 1.0001, - "latest": 1.00008, - "2024-04-15T08": 1.00093, - "2024-04-15T09": 1.0011, - "2024-04-15T10": 1.00098, - "2024-04-15T11": 1.00104, - "2024-04-15T12": 1.00097, - "2024-04-15T14": 1.00069, - "2024-04-15T13": 1.00087, - "2024-04-15": 1.000804779697821, - "2024-04-16": 1.0003799751044982, - "2024-04-16T02": 1.00036, - "2024-04-15T23": 1.00022, - "2024-04-16T00": 1.00028, - "2024-04-15T15": 1.00049, - "2024-04-15T19": 1.00042, - "2024-04-16T03": 1.0004, - "2024-04-15T20": 1.00042, - "2024-04-15T16": 1.0005, - "2024-04-15T18": 1.00052, - "2024-04-16T01": 1.00028, - "2024-04-15T21": 1.00032, - "2024-04-15T17": 1.00052, - "2024-04-15T22": 1.00021, - "2024-04-16T06": 1.00058, - "2024-04-16T05": 1.00059, - "2024-04-16T08": 1.00037, - "2024-04-16T04": 1.00054, - "2024-04-16T07": 1.00055, - "2024-04-16T09": 1.00031, - "2024-04-16T10": 1.00042, - "2024-04-16T11": 1.00035, - "2024-04-16T12": 1.0002, - "2024-04-16T18": 1.00026, - "2024-04-16T20": 1.00035, - "2024-04-16T14": 1.0003, - "2024-04-16T21": 1.0002, - "2024-04-16T15": 1.00057, - "2024-04-16T16": 1.0005, - "2024-04-16T17": 1.00026, - "2024-04-16T19": 1.00026, - "2024-04-16T13": 1.00037, - "2024-04-16T22": 1.00033, - "2024-04-17": 1.0003139365523708, - "2024-04-17T00": 1.00033, - "2024-04-17T09": 1.00045, - "2024-04-17T08": 1.0003, - "2024-04-17T02": 1.00027, - "2024-04-17T05": 1.0002, - "2024-04-17T03": 1.0002, - "2024-04-16T23": 1.00035, - "2024-04-17T06": 1.0003, - "2024-04-17T01": 1.00034, - "2024-04-17T04": 1.00014, - "2024-04-17T07": 1.00025, - "2024-04-17T10": 1.0005, - "2024-04-17T11": 1.00062, - "2024-04-17T12": 1.00049, - "2024-04-17T13": 1.0005, - "2024-04-18T09": 1.00021, - "2024-04-18T10": 1.0002, - "2024-04-18T04": 0.99993, - "2024-04-18T00": 0.99994, - "2024-04-18T08": 1.0002, - "2024-04-18T07": 1.0002, - "2024-04-18T01": 0.99988, - "2024-04-18T02": 0.99993, - "2024-04-18T03": 0.99996, - "2024-04-18T05": 1.00002, - "2024-04-18T06": 1.00014, - "2024-04-18T11": 1.0003, - "2024-04-18T12": 1.00033, - "2024-04-18T13": 1.00032, - "2024-04-18": 1.000384938724127, - "2024-04-19": 1.0004411323024698, - "2024-04-18T19": 1.0005, - "2024-04-19T03": 1.00006, - "2024-04-19T06": 1.00028, - "2024-04-18T18": 1.00047, - "2024-04-19T04": 1.00024, - "2024-04-19T05": 1.00027, - "2024-04-19T00": 1.00046, - "2024-04-18T20": 1.00056, - "2024-04-19T01": 1.00028, - "2024-04-18T17": 1.00057, - "2024-04-19T02": 1.00009, - "2024-04-18T21": 1.00035, - "2024-04-18T14": 1.0005, - "2024-04-18T16": 1.0005, - "2024-04-18T15": 1.00055, - "2024-04-18T23": 1.00039, - "2024-04-18T22": 1.0003, - "2024-04-19T07": 1.00025, - "2024-04-19T08": 1.00043, - "2024-04-19T09": 1.00039, - "2024-04-19T10": 1.00064, - "2024-04-19T11": 1.0008942667000136, - "2024-04-19T12": 1.00065, - "2024-04-19T13": 1.00071, - "2024-04-19T14": 1.00044, - "2024-04-19T15": 1.0001981867673027, - "2024-04-20": 1.0003399015476544, - "2024-04-19T22": 1.0008248956896273, - "2024-04-19T23": 1.0004018415799563, - "2024-04-19T20": 1.001082908076592, - "2024-04-19T19": 1.0004513040814857, - "2024-04-19T21": 1.0008667036918135, - "2024-04-19T16": 1.0000649200338023, - "2024-04-19T17": 0.9992736891959801, - "2024-04-20T00": 1.00039, - "2024-04-19T18": 1.00083271341762, - "2024-04-20T01": 1.00034, - "2024-04-21": 1.0002829102150117, - "2024-04-20T16": 1.00029, - "2024-04-20T19": 1.0003, - "2024-04-20T15": 1.00025, - "2024-04-20T02": 1.00035, - "2024-04-20T09": 1.00029, - "2024-04-20T04": 1.00036, - "2024-04-20T10": 1.00029, - "2024-04-20T22": 1.00034, - "2024-04-21T00": 1.00036, - "2024-04-20T12": 1.00021, - "2024-04-21T04": 1.00042, - "2024-04-20T05": 1.00037, - "2024-04-20T18": 1.00035, - "2024-04-20T11": 1.00023, - "2024-04-20T23": 1.00031, - "2024-04-20T08": 1.00033, - "2024-04-20T13": 1.00022, - "2024-04-21T02": 1.00037, - "2024-04-21T01": 1.00033, - "2024-04-20T20": 1.0003, - "2024-04-20T03": 1.00035, - "2024-04-20T14": 1.00024, - "2024-04-20T07": 1.00034, - "2024-04-20T17": 1.00035, - "2024-04-20T21": 1.0003, - "2024-04-20T06": 1.00038, - "2024-04-21T03": 1.00043, - "2024-04-21T16": 1.00025, - "2024-04-21T11": 1.00021, - "2024-04-21T17": 1.00022, - "2024-04-21T08": 1.0003049802549726, - "2024-04-21T12": 1.0002, - "2024-04-21T15": 1.00014, - "2024-04-21T06": 1.00041, - "2024-04-21T07": 1.00031, - "2024-04-21T14": 1.00022, - "2024-04-21T13": 1.00025, - "2024-04-21T05": 1.00042, - "2024-04-21T10": 1.0002, - "2024-04-21T09": 1.00032, - "2024-04-21T19": 1.00003, - "2024-04-21T22": 1.00012, - "2024-04-21T23": 1.00019, - "2024-04-21T21": 1.00007, - "2024-04-21T20": 1.0001, - "2024-04-21T18": 1.0002, - "2024-04-22": 1.0003998873307551, - "2024-04-22T00": 1.00011, - "2024-04-22T07": 1.00057, - "2024-04-22T05": 1.00043, - "2024-04-22T04": 1.00027, - "2024-04-22T02": 1.00014, - "2024-04-22T01": 1.00012, - "2024-04-22T06": 1.0005, - "2024-04-22T03": 1.00009, - "2024-04-22T08": 1.00048, - "2024-04-22T09": 1.00039, - "2024-04-22T10": 1.00042, - "2024-04-22T11": 1.00049, - "2024-04-22T12": 1.0004, - "2024-04-22T13": 1.00033, - "2024-04-22T14": 1.0004, - "2024-04-22T15": 1.00051, - "2024-04-22T16": 1.00049, - "2024-04-23": 1.0003896352550115, - "2024-04-23T03": 1.00055, - "2024-04-22T19": 1.00038, - "2024-04-22T17": 1.00039, - "2024-04-22T23": 1.0003, - "2024-04-22T20": 1.00029, - "2024-04-22T21": 1.0003, - "2024-04-22T18": 1.00042, - "2024-04-23T06": 1.00056, - "2024-04-22T22": 1.0003, - "2024-04-23T04": 1.00055, - "2024-04-23T01": 1.00039, - "2024-04-23T07": 1.00044, - "2024-04-23T00": 1.00039, - "2024-04-23T05": 1.0006, - "2024-04-23T02": 1.00049, - "2024-04-23T08": 1.00033, - "2024-04-23T09": 1.00035, - "2024-04-23T10": 1.00043, - "2024-04-23T11": 1.00047, - "2024-04-23T12": 1.00037, - "2024-04-23T13": 1.00041, - "2024-04-23T14": 1.00046, - "2024-04-23T15": 1.0003, - "2024-04-23T16": 1.00017, - "2024-04-24": 0.9999212837549867, - "2024-04-24T02": 1.0000748772984274, - "2024-04-24T00": 1.00006, - "2024-04-24T01": 1.0001, - "2024-04-23T23": 1.00007, - "2024-04-24T06": 1.00004, - "2024-04-23T22": 1.0000206949623824, - "2024-04-23T18": 1.00023, - "2024-04-23T20": 1.0001, - "2024-04-23T21": 1.00005, - "2024-04-24T04": 1, - "2024-04-24T05": 1.00007, - "2024-04-24T03": 1.0000005386468453, - "2024-04-24T07": 0.99999, - "2024-04-23T19": 1.0002, - "2024-04-23T17": 1.00025, - "2024-04-24T08": 0.99993, - "2024-04-24T09": 0.99998, - "2024-04-24T10": 0.9999, - "2024-04-24T11": 0.99999, - "2024-04-24T12": 0.99999, - "2024-04-24T13": 0.99991, - "2024-04-24T14": 0.99981, - "2024-04-24T15": 0.99948, - "2024-04-25": 0.9997294699957102, - "2024-04-24T18": 0.99954, - "2024-04-25T00": 0.9995, - "2024-04-24T21": 0.99909, - "2024-04-24T17": 0.9995116425336928, - "2024-04-24T16": 0.99944, - "2024-04-24T20": 0.99912, - "2024-04-24T23": 0.99945, - "2024-04-24T22": 0.9992, - "2024-04-24T19": 0.99928, - "2024-04-25T01": 0.99981, - "2024-04-25T03": 0.99974, - "2024-04-25T05": 0.99972, - "2024-04-25T04": 0.99975, - "2024-04-25T02": 0.99981, - "2024-04-25T06": 0.99978, - "2024-04-25T07": 0.99977, - "2024-04-25T08": 0.99973, - "2024-04-25T09": 0.9998, - "2024-04-25T10": 0.99981, - "2024-04-25T11": 0.99975, - "2024-04-25T12": 0.9996, - "2024-04-25T13": 0.99939, - "2024-04-25T14": 0.99941, - "2024-04-25T15": 0.99945, - "2024-04-25T16": 0.99939, - "2024-04-25T17": 0.99957, - "2024-04-25T18": 0.99964, - "2024-04-25T19": 0.99958, - "2024-04-26": 0.9998623012181294, - "2024-04-25T22": 0.99996, - "2024-04-25T21": 1, - "2024-04-25T20": 0.99958, - "2024-04-26T01": 1.00003, - "2024-04-25T23": 0.9999, - "2024-04-26T00": 0.99977, - "2024-04-26T05": 0.99983, - "2024-04-26T07": 1, - "2024-04-26T02": 0.99996, - "2024-04-26T03": 0.99997, - "2024-04-26T04": 0.99989, - "2024-04-26T06": 1, - "2024-04-26T08": 1.00002, - "2024-04-26T09": 0.9999, - "2024-04-26T10": 0.99988, - "2024-04-26T11": 0.99986, - "2024-04-26T12": 0.99983, - "2024-04-26T13": 0.9998, - "2024-04-26T14": 0.99979, - "2024-04-26T15": 0.99972, - "2024-04-26T21": 0.99964, - "2024-04-26T22": 0.99965, - "2024-04-26T17": 0.99963, - "2024-04-26T19": 0.99969, - "2024-04-26T16": 0.99968, - "2024-04-26T18": 0.99971, - "2024-04-26T20": 0.99969, - "2024-04-27": 0.9994102517758563, - "2024-04-26T23": 0.99962, - "2024-04-27T00": 0.99969, - "2024-04-27T01": 0.99974, - "2024-04-28": 0.9996294507668242, - "2024-04-27T13": 0.99935, - "2024-04-28T00": 0.99932, - "2024-04-27T20": 0.99932, - "2024-04-27T23": 0.99932, - "2024-04-27T06": 0.99942, - "2024-04-27T05": 0.99958, - "2024-04-27T02": 0.99973, - "2024-04-27T18": 0.99931, - "2024-04-27T07": 0.9994, - "2024-04-27T04": 0.99943, - "2024-04-27T21": 0.99933, - "2024-04-27T09": 0.99936, - "2024-04-27T14": 0.99936, - "2024-04-27T22": 0.99932, - "2024-04-27T16": 0.99932, - "2024-04-27T10": 0.99933, - "2024-04-27T17": 0.99933, - "2024-04-27T08": 0.99939, - "2024-04-27T12": 0.99935, - "2024-04-27T15": 0.99938, - "2024-04-27T11": 0.99938, - "2024-04-27T03": 0.99974, - "2024-04-27T19": 0.9993, - "2024-04-28T01": 0.99935, - "2024-04-28T20": 0.99963, - "2024-04-28T14": 0.99952, - "2024-04-28T05": 0.99939, - "2024-04-28T08": 0.99933, - "2024-04-28T16": 0.99961, - "2024-04-28T11": 0.99943, - "2024-04-28T22": 0.9996, - "2024-04-28T03": 0.9994, - "2024-04-28T13": 0.99954, - "2024-04-28T15": 0.99957, - "2024-04-28T04": 0.99944, - "2024-04-28T09": 0.99937, - "2024-04-28T19": 0.99962, - "2024-04-28T06": 0.99933, - "2024-04-28T12": 0.99954, - "2024-04-28T02": 0.99923, - "2024-04-28T17": 0.9996, - "2024-04-28T21": 0.99963, - "2024-04-28T18": 0.99962, - "2024-04-28T07": 0.99937, - "2024-04-28T10": 0.99944, - "2024-04-29": 0.9998777764176565, - "2024-04-28T23": 0.99959, - "2024-04-29T00": 0.99971, - "2024-04-29T01": 0.99968, - "2024-04-29T02": 0.99974, - "2024-04-29T05": 0.99984, - "2024-04-29T03": 0.99981, - "2024-04-29T04": 0.99979, - "2024-04-29T06": 0.99992, - "2024-04-29T07": 0.99992, - "2024-04-29T08": 0.99992, - "2024-04-29T09": 0.99995, - "2024-04-29T10": 0.99994, - "2024-04-29T11": 0.9998, - "2024-04-29T12": 0.99978, - "2024-04-29T13": 0.99976, - "2024-04-29T14": 0.99983, - "2024-04-29T15": 1, - "2024-04-30": 0.999653461005082, - "2024-04-30T04": 0.9997, - "2024-04-29T21": 0.99966, - "2024-04-30T03": 0.99962, - "2024-04-29T22": 0.9995, - "2024-04-29T19": 0.99959, - "2024-04-29T23": 0.99958, - "2024-04-29T18": 0.99979, - "2024-04-30T00": 0.99974, - "2024-04-29T20": 0.99954, - "2024-04-30T01": 0.99966, - "2024-04-30T02": 0.99964, - "2024-04-29T16": 0.99994, - "2024-04-29T17": 0.99987, - "2024-04-30T05": 0.99977, - "2024-04-30T06": 0.99982, - "2024-04-30T07": 0.99983, - "2024-04-30T08": 0.99983, - "2024-04-30T09": 0.99968, - "2024-04-30T10": 0.99981, - "2024-04-30T11": 0.9998, - "2024-04-30T12": 0.99964, - "2024-04-30T13": 0.99971, - "2024-04-30T14": 0.99954, - "2024-04-30T15": 0.99928, - "2024-04-30T16": 0.99932, - "2024-05-01": 0.9988653959969918, - "2024-04-30T22": 0.99872, - "2024-04-30T17": 0.99922, - "2024-04-30T20": 0.99858, - "2024-04-30T23": 0.999, - "2024-04-30T19": 0.99898, - "2024-04-30T18": 0.99912, - "2024-05-01T01": 0.99894, - "2024-05-01T00": 0.99896, - "2024-04-30T21": 0.99868, - "2024-05-01T02": 0.99882, - "2024-05-01T03": 0.9988, - "2024-05-01T05": 0.9989357088182996, - "2024-05-01T04": 0.99886, - "2024-05-01T06": 0.9987143623289142, - "2024-05-01T07": 0.99899, - "2024-05-01T08": 0.99873, - "2024-05-01T11": 0.99884, - "2024-05-01T09": 0.99844, - "2024-05-01T10": 0.99883, - "2024-05-01T12": 0.99886, - "2024-05-01T13": 0.99913, - "2024-05-01T15": 0.99881, - "2024-05-01T16": 0.99869, - "2024-05-01T14": 0.99888, - "2024-05-01T21": 0.99855, - "2024-05-01T20": 0.99872, - "2024-05-01T17": 0.99877, - "2024-05-01T19": 0.99894, - "2024-05-01T18": 0.9988, - "2024-05-01T22": 0.99854, - "2024-05-02": 0.9986565734957235, - "2024-05-02T03": 0.999, - "2024-05-02T01": 0.9989, - "2024-05-02T02": 0.99905, - "2024-05-01T23": 0.99856, - "2024-05-02T00": 0.99881, - "2024-05-02T04": 0.99889, - "2024-05-02T06": 0.99928, - "2024-05-02T07": 0.9993, - "2024-05-02T05": 0.99905, - "2024-05-02T08": 0.99938, - "2024-05-02T09": 0.99949, - "2024-05-02T10": 0.9996, - "2024-05-02T11": 0.99964, - "2024-05-02T12": 0.99971, - "2024-05-02T13": 0.99986, - "2024-05-02T14": 0.99986, - "2024-05-02T15": 0.99997, - "2024-05-02T16": 1.00001, - "2024-05-02T17": 1.00002, - "2024-05-03T04": 1.00001, - "2024-05-03T02": 1.00014, - "2024-05-03T03": 1.00013, - "2024-05-03T05": 1.00007, - "2024-05-03T06": 1.00012, - "2024-05-03T00": 1.00009, - "2024-05-03T01": 1.00007, - "2024-05-03T07": 1.0001, - "2024-05-03T08": 1.00001, - "2024-05-03T09": 1.00011, - "2024-05-03T10": 1.00008, - "2024-05-03T11": 0.99999, - "2024-05-03T13": 1, - "2024-05-03T12": 0.99994, - "2024-05-03T14": 1.00015, - "2024-05-03": 1.0002075746353025, - "2024-05-04": 1.0001901566937887, - "2024-05-04T05": 1.00029, - "2024-05-03T18": 1.00021, - "2024-05-04T03": 1.00022, - "2024-05-03T17": 1.00031, - "2024-05-03T21": 1.00051, - "2024-05-03T20": 1.0004511140664007, - "2024-05-04T06": 1.00028, - "2024-05-03T22": 1.00043, - "2024-05-03T19": 1.0003, - "2024-05-04T02": 1.00022, - "2024-05-03T15": 1.00021, - "2024-05-03T16": 1.00026, - "2024-05-04T01": 1.00033, - "2024-05-04T04": 1.00028, - "2024-05-03T23": 1.00039, - "2024-05-04T00": 1.00035, - "2024-05-04T13": 1.00016, - "2024-05-04T10": 1.00002, - "2024-05-04T12": 1.0001, - "2024-05-04T07": 1.00018, - "2024-05-04T11": 1.0001, - "2024-05-04T09": 1.00016, - "2024-05-04T15": 1.0002, - "2024-05-04T08": 1.00019, - "2024-05-04T14": 1.0002, - "2024-05-05": 1.000146059072717, - "2024-05-05T01": 1.00013, - "2024-05-04T19": 1.00005, - "2024-05-04T20": 1.00004, - "2024-05-05T05": 1.00013, - "2024-05-05T07": 1.0001, - "2024-05-04T23": 1.0001, - "2024-05-04T22": 1.0001, - "2024-05-04T21": 1.00002, - "2024-05-05T00": 1.00015, - "2024-05-05T08": 1.00011, - "2024-05-04T17": 1.00006, - "2024-05-05T09": 1.00012, - "2024-05-05T10": 1.00015, - "2024-05-05T04": 1.00013, - "2024-05-04T16": 1.00015, - "2024-05-05T06": 1.0001, - "2024-05-05T03": 1.00013, - "2024-05-04T18": 1.00006, - "2024-05-05T02": 1.00013, - "2024-05-05T21": 1.00011, - "2024-05-05T16": 1.00003, - "2024-05-05T22": 1.00012, - "2024-05-05T17": 1.00009, - "2024-05-05T20": 1.00011, - "2024-05-05T13": 1.0001447751381711, - "2024-05-05T15": 1.00007, - "2024-05-05T12": 1.00016, - "2024-05-05T18": 1.00018, - "2024-05-05T14": 1.00019, - "2024-05-05T19": 1.00016, - "2024-05-05T11": 1.00016, - "2024-05-05T23": 1.00009, - "2024-05-06T00": 1.0001, - "2024-05-06T04": 1.00006, - "2024-05-06T02": 1.00009, - "2024-05-06T05": 1.00005, - "2024-05-06T06": 1.00002, - "2024-05-06T01": 1.00017, - "2024-05-06T03": 1.00006, - "2024-05-06T07": 1.00006, - "2024-05-06T08": 1, - "2024-05-06T09": 1, - "2024-05-06T10": 1, - "2024-05-06T11": 1.00008, - "2024-05-06T13": 1.00007, - "2024-05-06T12": 1.0001, - "2024-05-06T15": 1.00006, - "2024-05-06T17": 1.0001, - "2024-05-06T14": 1.0001, - "2024-05-06T16": 0.99999, - "2024-05-06": 1.00005, - "2024-05-07": 0.9999190551282029, - "2024-05-06T22": 1.00003, - "2024-05-07T07": 1.00008, - "2024-05-07T06": 1.00003, - "2024-05-07T01": 0.99988, - "2024-05-07T00": 0.99998, - "2024-05-06T21": 0.99992, - "2024-05-06T20": 0.99987, - "2024-05-06T23": 0.99999, - "2024-05-07T04": 0.99996, - "2024-05-06T19": 0.99996, - "2024-05-07T03": 0.99998, - "2024-05-07T02": 0.99982, - "2024-05-07T05": 0.99996, - "2024-05-06T18": 1, - "2024-05-07T08": 1.00002, - "2024-05-07T09": 1, - "2024-05-07T10": 1.00004, - "2024-05-07T11": 1.00005, - "2024-05-07T12": 1.00001, - "2024-05-07T13": 1.0001, - "2024-05-07T14": 0.99999, - "2024-05-07T15": 0.99988, - "2024-05-08": 0.9997189484054559, - "2024-05-09": 0.9998330232580985, - "2024-05-10": 0.9991547088582933, - "2024-05-09T13": 0.99961, - "2024-05-10T00": 0.99986, - "2024-05-08T08": 0.9999, - "2024-05-09T14": 0.99948, - "2024-05-08T10": 0.99988, - "2024-05-09T04": 0.99949, - "2024-05-10T01": 0.9999, - "2024-05-08T03": 0.99988, - "2024-05-09T07": 0.99949, - "2024-05-09T11": 0.9996, - "2024-05-09T00": 0.99958, - "2024-05-09T01": 0.99956, - "2024-05-10T06": 0.99987, - "2024-05-09T19": 0.99988, - "2024-05-10T05": 0.99987, - "2024-05-10T02": 0.99991, - "2024-05-09T23": 0.99987, - "2024-05-09T06": 0.99948, - "2024-05-08T01": 0.9999, - "2024-05-09T09": 0.9995, - "2024-05-09T20": 0.99993, - "2024-05-08T19": 0.99974, - "2024-05-09T03": 0.99949, - "2024-05-08T21": 0.99973, - "2024-05-09T22": 0.99982, - "2024-05-08T17": 0.99979, - "2024-05-09T05": 0.99947, - "2024-05-08T06": 0.99983, - "2024-05-08T15": 0.99979, - "2024-05-10T08": 0.99988, - "2024-05-08T07": 0.99979, - "2024-05-08T04": 0.99988, - "2024-05-09T15": 0.99953, - "2024-05-08T18": 0.99977, - "2024-05-09T10": 0.99945, - "2024-05-09T21": 0.99983, - "2024-05-10T03": 0.99992, - "2024-05-08T00": 0.99999, - "2024-05-10T07": 0.99986, - "2024-05-08T14": 0.99969, - "2024-05-09T17": 0.99971, - "2024-05-08T13": 0.99976, - "2024-05-08T05": 0.99983, - "2024-05-09T18": 0.9997, - "2024-05-09T08": 0.99949, - "2024-05-08T20": 0.99984, - "2024-05-08T22": 0.99969, - "2024-05-08T11": 0.99992, - "2024-05-09T12": 0.99956, - "2024-05-08T02": 0.99987, - "2024-05-10T04": 0.99986, - "2024-05-08T12": 0.99989, - "2024-05-09T02": 0.99948, - "2024-05-08T09": 0.99989, - "2024-05-09T16": 0.99965, - "2024-05-08T16": 0.99972, - "2024-05-08T23": 0.99959, - "2024-05-10T09": 0.99988, - "2024-05-10T10": 0.99986, - "2024-05-10T11": 0.99986, - "2024-05-10T12": 0.99999, - "2024-05-10T13": 0.99991, - "2024-05-10T14": 0.99983, - "2024-05-11": 0.9998341390120163, - "2024-05-12": 0.999623804295247, - "2024-05-12T16": 0.9996, - "2024-05-11T03": 0.99969, - "2024-05-10T17": 0.9997, - "2024-05-11T16": 0.9996, - "2024-05-10T15": 0.99982, - "2024-05-11T04": 0.99973, - "2024-05-11T12": 0.99955, - "2024-05-12T15": 0.9996, - "2024-05-11T11": 0.99956, - "2024-05-12T04": 0.99959, - "2024-05-12T11": 0.99947, - "2024-05-11T22": 0.99978, - "2024-05-11T21": 0.99978, - "2024-05-10T21": 0.9997, - "2024-05-10T23": 0.99976, - "2024-05-12T00": 0.9997, - "2024-05-12T03": 0.9996, - "2024-05-12T12": 0.99947, - "2024-05-11T08": 0.99974, - "2024-05-11T17": 0.99966, - "2024-05-12T19": 0.99962, - "2024-05-11T23": 0.99974, - "2024-05-11T05": 0.99973, - "2024-05-12T02": 0.9996, - "2024-05-11T02": 0.99972, - "2024-05-10T16": 0.99968, - "2024-05-12T14": 0.99955, - "2024-05-11T09": 0.99972, - "2024-05-10T18": 0.9997, - "2024-05-10T19": 0.99952, - "2024-05-11T06": 0.99974, - "2024-05-12T08": 0.99964, - "2024-05-10T20": 0.99965, - "2024-05-11T18": 0.9996, - "2024-05-12T05": 0.9996, - "2024-05-12T06": 0.9996, - "2024-05-11T20": 0.99965, - "2024-05-12T09": 0.99959, - "2024-05-11T01": 0.99977, - "2024-05-11T00": 0.99977, - "2024-05-12T07": 0.99965, - "2024-05-12T10": 0.99956, - "2024-05-11T10": 0.99957, - "2024-05-12T01": 0.9996, - "2024-05-12T18": 0.99965, - "2024-05-12T13": 0.99953, - "2024-05-11T19": 0.9996, - "2024-05-12T17": 0.99965, - "2024-05-11T14": 0.99964, - "2024-05-11T07": 0.99973, - "2024-05-11T15": 0.99956, - "2024-05-11T13": 0.99959, - "2024-05-10T22": 0.99975, - "2024-05-13": 0.9997498222825758, - "2024-05-12T21": 0.99967, - "2024-05-13T00": 0.99951, - "2024-05-13T03": 0.99972, - "2024-05-12T23": 0.99953, - "2024-05-13T04": 0.99973, - "2024-05-13T01": 0.99965, - "2024-05-13T05": 0.99972, - "2024-05-13T02": 0.99969, - "2024-05-13T07": 0.99969, - "2024-05-13T06": 0.99972, - "2024-05-12T22": 0.99957, - "2024-05-12T20": 0.99962, - "2024-05-13T08": 0.99958, - "2024-05-13T09": 0.99957, - "2024-05-13T10": 0.9996, - "2024-05-13T11": 0.99966, - "2024-05-13T12": 0.99962, - "2024-05-13T13": 0.99963, - "2024-05-13T14": 0.99972, - "2024-05-13T15": 0.99976, - "2024-05-13T16": 0.9998, - "2024-05-14": 0.9994897418492008, - "2024-05-13T17": 0.99981, - "2024-05-14T01": 0.9998, - "2024-05-14T02": 0.99973, - "2024-05-14T06": 0.99948, - "2024-05-13T19": 0.99999, - "2024-05-13T22": 0.9999, - "2024-05-14T04": 0.99946, - "2024-05-13T21": 0.99993, - "2024-05-14T03": 0.99948, - "2024-05-14T00": 0.99981, - "2024-05-14T07": 0.99947, - "2024-05-13T20": 0.99995, - "2024-05-14T05": 0.99944, - "2024-05-13T23": 0.99981, - "2024-05-13T18": 0.99981, - "2024-05-14T08": 0.99949, - "2024-05-14T09": 0.99952, - "2024-05-14T10": 0.99953, - "2024-05-14T11": 0.99948, - "2024-05-14T12": 0.99938, - "2024-05-14T13": 0.99938, - "2024-05-14T14": 0.99937, - "2024-05-14T15": 0.9994, - "2024-05-14T16": 0.99945, - "2024-05-14T17": 0.9994, - "2024-05-14T18": 0.99928, - "2024-05-14T19": 0.9994, - "2024-05-14T20": 0.99952, - "2024-05-15": 0.9995191909707233, - "2024-05-15T02": 0.99939, - "2024-05-15T01": 0.99939, - "2024-05-14T21": 0.99968, - "2024-05-15T05": 0.99955, - "2024-05-15T00": 0.99947, - "2024-05-15T06": 0.99955, - "2024-05-15T03": 0.9994, - "2024-05-15T07": 0.9996846888463955, - "2024-05-14T23": 0.99956, - "2024-05-15T04": 0.9995, - "2024-05-14T22": 0.99961, - "2024-05-15T08": 0.99969, - "2024-05-15T09": 0.99984, - "2024-05-15T10": 0.99989, - "2024-05-15T11": 0.99986, - "2024-05-15T12": 0.9997323286899782, - "2024-05-15T13": 0.99996, - "2024-05-15T14": 0.99998 - }, - "USD solana": { - "2023-07-30": 24.939777224102205, - "2023-07-27": 25.17096699135234, - "2023-07-10": 21.053364086674033, - "2023-08-20": 21.79758690965463, - "2024-02-23": 101.64291215841217, - "2024-04-05": 175.10670138642723, - "2023-12-19": 74.66528740821448, - "2023-08-06": 23.043493175517945, - "2023-12-02": 62.04968334980835, - "2023-10-12": 21.344947328564643, - "2023-10-31": 36.191599455594286, - "2023-08-29": 21.02498231297602, - "2023-06-20": 16.091308254886826, - "2023-09-09": 19.51021747724396, - "2023-06-26": 16.75268620884689, - "2023-05-03": 21.690161778387225, - "2023-10-23": 29.879746070869103, - "2023-10-01": 22.860671009273467, - "2024-03-07": 141.33784892504994, - "2023-07-05": 18.816133986972666, - "2023-07-29": 25.11648462959647, - "2024-01-08": 93.33527592861115, - "2023-05-29": 20.69494449158465, - "2023-10-07": 23.510894175103203, - "2023-09-26": 19.29701171414979, - "2023-08-24": 21.604191607444967, - "2023-12-05": 60.50526731741026, - "2023-05-10": 20.809815712240166, - "2024-02-19": 112.35571494683266, - "2024-01-07": 94.35175997156664, - "2023-10-18": 23.853457015489678, - "2023-04-25": 21.03858476450056, - "2023-07-31": 24.37260788107788, - "2023-05-23": 19.942163717120877, - "2023-08-25": 20.59031680517284, - "2024-03-09": 146.3573355413762, - "2023-07-12": 22.10365261537651, - "2023-09-05": 19.694866648985506, - "2023-06-07": 19.569809653152568, - "2023-09-16": 19.121949081621818, - "2023-08-12": 24.60146987802049, - "2023-05-09": 20.643563417476308, - "2023-09-01": 19.751995931639776, - "2023-09-08": 19.611206138518828, - "2024-03-22": 173.3654393897946, - "2023-08-10": 24.443685135688636, - "2023-12-07": 64.14257656645725, - "2023-11-18": 57.27602991211688, - "2023-07-13": 24.165623520098077, - "2023-04-30": 23.413258004899987, - "2023-06-06": 19.998256025174747, - "2023-09-13": 18.128130370458003, - "2023-06-17": 15.724233411625457, - "2023-07-17": 27.109969638787366, - "2023-07-07": 20.590160856425864, - "2023-09-07": 19.626348311731164, - "2024-02-22": 104.24655809127876, - "2024-04-15": 147.8964607217989, - "2023-12-30": 103.42521695978837, - "2023-09-17": 18.96417791879159, - "2023-04-20": 22.597894925051282, - "2024-03-26": 191.5807609942654, - "2023-04-27": 21.849187913491868, - "2024-04-17": 135.3651338277658, - "2024-02-12": 107.67846444810004, - "2023-10-26": 32.193720938185116, - "2024-01-03": 99.70418917022963, - "2023-06-01": 20.69357298642284, - "2024-01-22": 87.4577433516582, - "2023-06-12": 15.21478345079017, - "2023-10-03": 23.9158921090279, - "2023-06-19": 15.555166727582332, - "2023-07-09": 21.62881809235485, - "2023-12-24": 113.07106375552202, - "2023-09-24": 19.544107250935156, - "2024-01-16": 96.75096638862036, - "2023-10-17": 24.05407140194171, - "2024-03-18": 202.04070897169518, - "2024-02-17": 109.12793965884981, - "2023-12-27": 110.01315953902689, - "2023-07-23": 24.708458733777643, - "2023-09-03": 19.469687235373467, - "2024-02-24": 102.19768460420161, - "2024-01-06": 95.04627553722617, - "2024-03-20": 173.3117326502187, - "2023-11-21": 55.399842692967944, - "2023-12-25": 114.85471604633909, - "2023-09-22": 19.553575681117334, - "2023-10-02": 24.004338627884735, - "2024-03-27": 186.1622281829703, - "2023-04-28": 22.595138532119574, - "2023-08-04": 22.91095713613768, - "2023-08-30": 21.44493460280265, - "2023-04-24": 21.429535287908905, - "2023-10-06": 23.249706885184462, - "2023-10-13": 21.451705156087097, - "2023-06-28": 16.192156082617796, - "2024-02-05": 96.08055472163565, - "2024-03-01": 132.93486909650517, - "2023-07-15": 27.804658388960718, - "2023-06-25": 17.052534959570448, - "2023-12-10": 73.02323317766664, - "2023-11-23": 57.69103216313879, - "2024-01-13": 92.46092427164828, - "2024-03-28": 186.30287425956496, - "2023-08-05": 22.652746406868065, - "2024-02-09": 105.28685790136916, - "2023-10-09": 22.28313377961463, - "2023-05-24": 19.386901847015544, - "2024-01-09": 100.16206103602677, - "2023-12-08": 72.15666058821625, - "2023-05-27": 19.581014016024962, - "2023-08-18": 21.734279858848662, - "2023-11-05": 41.504583619908445, - "2024-04-18": 135.23740057906338, - "2023-10-22": 28.844261192688, - "2023-11-01": 40.43238666735443, - "2023-05-07": 22.184621822309012, - "2024-04-12": 167.11081408997327, - "2024-03-12": 149.98286906459515, - "2023-09-11": 17.740643047622676, - "2024-03-03": 129.70275948815356, - "2024-02-04": 97.26311096156947, - "2024-01-28": 96.32130538580829, - "2023-04-18": 24.848041636684048, - "2023-07-06": 19.755996132468958, - "2023-07-01": 18.38141967187222, - "2023-05-18": 20.667549069487457, - "2023-11-07": 41.61537420877233, - "2023-11-25": 58.661057898398305, - "2023-06-04": 21.93617241645276, - "2024-02-25": 103.13007441842072, - "2023-12-01": 60.52224227892606, - "2023-07-14": 28.011369165314264, - "2024-01-26": 91.28356545142186, - "2023-08-03": 22.833082031371443, - "2024-02-28": 111.7522089297422, - "2023-09-15": 19.01999003123102, - "2023-07-18": 25.53245844639245, - "2023-04-21": 22.011375964985334, - "2023-12-21": 87.09492088597884, - "2023-07-20": 26.511091091075414, - "2024-03-06": 129.7066175246686, - "2023-09-30": 21.03021983555983, - "2023-12-12": 70.51305148492436, - "2024-02-13": 113.35546825173567, - "2023-05-19": 20.404294743615743, - "2023-09-20": 20.10077842978679, - "2023-09-19": 19.968625658389293, - "2023-09-29": 20.176757065059366, - "2023-09-12": 17.994793723603426, - "2023-06-13": 15.23858606616197, - "2023-10-04": 23.120581312175634, - "2023-07-08": 21.794820947185414, - "2024-04-16": 133.90028127132922, - "2024-03-02": 129.08215112095445, - "2023-06-27": 16.606058192144346, - "2023-10-08": 23.370671887556053, - "2023-11-20": 59.65768097299825, - "2023-12-20": 78.66522414223984, - "2023-12-31": 103.29102292711484, - "2023-11-06": 40.35418703097928, - "2023-08-22": 20.862268284832382, - "2023-06-09": 18.631382234161745, - "2024-03-17": 190.61269323338047, - "2023-09-18": 19.626879688098207, - "2024-04-01": 195.96267041406907, - "2024-01-19": 93.27167199127055, - "2023-11-11": 57.0584535835252, - "2023-05-14": 20.992626644423268, - "2023-05-13": 20.97783382875003, - "2023-05-06": 22.536921851193203, - "2023-11-19": 60.14543140632104, - "2023-05-16": 20.79727812099967, - "2023-09-23": 19.444068031649337, - "2023-07-02": 19.152500183577324, - "2023-08-15": 24.829147499061737, - "2024-01-25": 87.43460196075365, - "2024-03-13": 153.4463046866378, - "2024-01-21": 92.42527793392941, - "2024-02-01": 95.65619579147595, - "2023-06-15": 14.674935858756163, - "2024-03-16": 188.6273981520976, - "2023-11-27": 54.99012000597197, - "2024-01-10": 97.26137604941523, - "2024-03-15": 178.69436264950824, - "2023-06-21": 16.859518365553186, - "2024-01-02": 111.43844743507174, - "2023-04-26": 22.033593993876686, - "2023-07-11": 21.991120534191158, - "2023-10-25": 32.19116241272951, - "2024-01-01": 104.59202871931976, - "2024-02-14": 115.74909988189972, - "2023-09-04": 19.580651469929965, - "2023-09-06": 19.735554209271164, - "2024-04-03": 187.80425339102408, - "2024-03-08": 146.15650225572418, - "2023-11-28": 55.90537160653003, - "2023-12-03": 63.49660841632766, - "2023-08-02": 23.522714426691962, - "2023-08-27": 20.629019260359943, - "2023-10-20": 26.777469075013293, - "2023-05-25": 19.30366125296635, - "2023-10-10": 22.111794725058058, - "2024-04-11": 173.06654549568822, - "2023-06-22": 17.061613503571998, - "2024-01-14": 97.15921213158008, - "2023-12-15": 75.90867949953598, - "2023-10-19": 24.234388058515396, - "2024-02-08": 102.11248942325243, - "2023-11-08": 43.19703003075047, - "2023-11-12": 57.7654073331353, - "2023-12-22": 95.39887310560604, - "2023-05-20": 20.23986910109263, - "2023-05-31": 20.688236528869854, - "2024-03-23": 175.20408872017333, - "2024-04-10": 170.8716778479497, - "2023-09-27": 18.977883293960446, - "2024-03-04": 130.51607547421546, - "2023-09-10": 18.36412904090336, - "2024-04-13": 147.4797586151578, - "2024-02-29": 128.4924401564808, - "2023-07-22": 25.638482118434993, - "2023-07-21": 25.396285883745353, - "2023-06-30": 18.78428175237739, - "2023-12-29": 105.85404965400224, - "2023-12-04": 61.73127849851598, - "2023-09-21": 19.64087276356584, - "2023-06-02": 21.114649144434242, - "2023-10-11": 22.07988132293472, - "2023-07-19": 26.338284223135997, - "2023-05-05": 22.18847141880337, - "2024-03-21": 188.5600477182979, - "2024-04-08": 180.57840269301718, - "2023-04-29": 23.306297337117194, - "2023-06-14": 15.116700849323333, - "2023-10-05": 23.068663546163158, - "2023-10-16": 23.238960219558315, - "2024-02-10": 108.95041440799562, - "2024-04-07": 180.19460788856702, - "2023-05-21": 20.118145766479476, - "2024-02-20": 109.06083578195695, - "2023-11-17": 58.19678226606033, - "2023-12-11": 69.44522478933557, - "2023-11-26": 57.85210464968245, - "2023-11-16": 63.72953931867354, - "2023-06-29": 17.576204595699604, - "2023-06-11": 15.551197765669901, - "2024-02-02": 99.67150661020587, - "2023-09-14": 18.90391235225513, - "2024-01-27": 92.61619043418467, - "2024-03-30": 196.12666725990917, - "2023-05-04": 22.16178201083318, - "2023-09-28": 19.308599663197196, - "2023-10-27": 32.35797351834887, - "2023-05-01": 22.129888713955484, - "2023-05-15": 21.285010211959577, - "2023-11-22": 54.88258076759454, - "2023-06-03": 21.147036007476803, - "2024-01-18": 98.58333062140058, - "2023-08-26": 20.291603695472013, - "2024-02-15": 115.67262610089068, - "2023-10-28": 31.948485999607296, - "2024-03-24": 175.6230715715617, - "2023-04-22": 21.437189269436427, - "2023-12-06": 63.38637961928273, - "2023-11-10": 50.39108169580409, - "2024-01-30": 104.0050954283894, - "2023-08-09": 24.47607685979207, - "2023-05-02": 22.018074910661795, - "2023-11-14": 54.586918599957535, - "2024-01-23": 81.75608990737472, - "2024-01-31": 100.15143609458943, - "2024-01-11": 100.5826545611854, - "2024-02-18": 111.64498630264424, - "2023-06-16": 14.84933179561553, - "2023-10-30": 34.77974186900726, - "2023-12-17": 72.97598433590638, - "2024-02-26": 103.92813361677793, - "2023-07-16": 27.728932655648574, - "2024-01-05": 100.44762338613585, - "2023-08-23": 20.787535837484647, - "2024-03-11": 147.24559769792734, - "2023-08-01": 23.442271119253682, - "2024-03-14": 168.25921374823025, - "2024-02-21": 103.73159129587592, - "2023-08-28": 20.481464211920798, - "2023-07-04": 19.39565976978925, - "2023-12-13": 66.86205405957634, - "2023-08-13": 24.662645594782212, - "2024-03-31": 196.5401384602085, - "2023-12-09": 74.7174374863229, - "2024-04-02": 182.926950596747, - "2024-02-06": 95.59244586605303, - "2024-04-09": 175.3814815392858, - "2023-05-30": 21.10778178126456, - "2023-11-04": 41.55767739226187, - "2024-01-15": 95.33053306341411, - "2023-07-03": 19.309074029339065, - "2023-12-28": 102.95197040087557, - "2023-04-23": 21.66377131391824, - "2023-04-17": 25.14671730002368, - "2023-05-08": 21.213604985663245, - "2024-02-27": 110.14029709298899, - "2024-02-07": 96.46907459433297, - "2023-09-25": 19.479818323467278, - "2024-03-19": 181.7487540376293, - "2024-03-10": 145.419909938474, - "2023-09-02": 19.487446005356695, - "2024-01-12": 97.89325490923196, - "2023-11-29": 59.605265610888836, - "2023-10-15": 21.906462342927494, - "2023-11-30": 59.806140999570644, - "2024-01-24": 86.30839070865274, - "2023-08-11": 24.539282501731975, - "2024-02-11": 109.04899282374669, - "2023-06-08": 18.744659831211745, - "2023-08-16": 23.3628058095393, - "2023-11-15": 61.86351311195825, - "2023-12-16": 74.13210691327559, - "2024-03-29": 186.93780817814135, - "2024-04-04": 185.51657977107382, - "2023-06-10": 14.822224136912906, - "2023-07-28": 24.936587298853983, - "2024-01-20": 92.150272810291, - "2023-10-21": 28.960732576229248, - "2023-05-12": 20.307391161030704, - "2023-11-03": 39.058818282317546, - "2023-08-31": 20.630497995247165, - "2024-01-29": 97.4693771608052, - "2024-01-04": 100.94630688632397, - "2023-05-22": 19.68671716447969, - "2023-07-26": 24.40689635967524, - "2023-11-13": 56.945125465768804, - "2024-03-25": 189.0928265254814, - "2023-08-07": 23.002416555065253, - "2023-10-29": 32.356608449674006, - "2023-07-25": 23.24339580157441, - "2023-05-17": 20.734392752316847, - "2023-10-24": 31.4229730324428, - "2023-06-05": 21.3762584493613, - "2023-11-02": 41.95110867376813, - "2023-12-18": 70.04218593964492, - "2023-11-24": 57.439843083978104, - "2023-08-21": 21.2711536667226, - "2023-08-14": 24.49060962560692, - "2023-05-26": 19.320997944120435, - "2024-03-05": 131.29712171383602, - "2024-04-06": 177.04839565029062, - "2023-12-23": 96.41124815222368, - "2024-02-03": 98.53895405300015, - "2024-02-16": 111.56875107753797, - "2023-05-28": 20.560762875288617, - "2023-12-14": 72.30186225823043, - "2023-06-24": 17.169870180203457, - "2023-12-26": 113.4258813308874, - "2023-11-09": 44.93858230098137, - "2023-05-11": 20.280271793016155, - "2023-08-19": 21.73401367860809, - "2023-06-23": 16.77667893792167, - "2023-06-18": 15.615650039744349, - "2023-08-08": 23.404968204173436, - "2023-08-17": 23.073923375896914, - "2024-04-14": 140.46759975784246, - "2023-07-24": 23.57156003688254, - "2023-10-14": 22.001340693213855, - "2024-01-17": 100.05061396256342, - "2023-04-19": 23.145765653437667, - "2024-04-14T03": 134.58932317049175, - "2024-04-11T16": 173.22347384878447, - "2024-04-16T02": 137.66188131294697, - "2024-04-13T04": 151.7589566066441, - "2024-04-18T09": 130.19972390159143, - "2024-04-12T19": 152.23624450908878, - "2024-04-15T06": 151.97850222891833, - "2024-04-14T19": 142.54026517848595, - "2024-04-15T01": 148.22210012204587, - "2024-04-17T20": 134.8813514367866, - "2024-04-11T17": 173.9401402746358, - "2024-04-18T10": 130.93570758001297, - "2024-04-12T14": 167.63336310424663, - "2024-04-12T20": 149.43647538598347, - "2024-04-15T12": 151.07133507551993, - "2024-04-14T23": 150.53958485787084, - "2024-04-13T07": 153.2478748311863, - "2024-04-14T20": 141.78365146851624, - "2024-04-17T00": 136.44757180047839, - "2024-04-15T00": 151.0193946798208, - "2024-04-14T01": 138.1884003726609, - "2024-04-17T22": 135.21601041358753, - "2024-04-17T09": 138.65759210381745, - "2024-04-15T14": 149.6081609238199, - "2024-04-15T20": 138.11632693890894, - "2024-04-16T10": 136.0101489305033, - "2024-04-16T18": 132.1805438509462, - "2024-04-18T04": 135.73878058319147, - "2024-04-15T02": 148.52998658382862, - "2024-04-15T16": 143.24168200397727, - "2024-04-14T05": 140.8221492792811, - "2024-04-17T08": 140.044336899458, - "2024-04-14T13": 141.0279992670299, - "2024-04-14T10": 141.3242685588691, - "2024-04-13T14": 151.0536263839404, - "2024-04-17T10": 138.8597261389424, - "2024-04-14T15": 137.43384021980413, - "2024-04-14T12": 139.0017085024745, - "2024-04-16T09": 136.7790456342198, - "2024-04-17T02": 137.06948799770842, - "2024-04-11T23": 172.89882836522997, - "2024-04-12T09": 173.04791171339522, - "2024-04-14T18": 138.0355844783891, - "2024-04-14T09": 143.32383287442167, - "2024-04-16T20": 132.2462110610778, - "2024-04-18T00": 131.87337938458708, - "2024-04-15T23": 139.8512721195295, - "2024-04-12T22": 151.79376842607348, - "2024-04-12T00": 172.37755935332888, - "2024-04-15T13": 151.10370001026905, - "2024-04-18T08": 129.69883501268347, - "2024-04-13T20": 133.36711260127066, - "2024-04-17T05": 141.8851391237088, - "2024-04-15T18": 139.33825034213402, - "2024-04-16T01": 137.49354067648, - "2024-04-14T11": 142.90779404498414, - "2024-04-11T20": 174.577492002952, - "2024-04-13T13": 151.8010379742546, - "2024-04-12T16": 167.43667367903882, - "2024-04-17T03": 136.81856716535484, - "2024-04-16T06": 133.7644871294039, - "2024-04-17T12": 134.5163025620782, - "2024-04-11T22": 172.5952177938301, - "2024-04-15T05": 148.3414043651904, - "2024-04-12T12": 172.71044264538457, - "2024-04-17T14": 133.51614440559854, - "2024-04-13T03": 149.45308314885557, - "2024-04-18T07": 130.97531066659926, - "2024-04-16T00": 138.32836670396182, - "2024-04-12T03": 173.37681617298205, - "2024-04-17T23": 134.45178692698678, - "2024-04-13T23": 142.41346978102789, - "2024-04-14T14": 137.85709183438266, - "2024-04-11T15": 173.6530496457055, - "2024-04-16T13": 133.85813177368127, - "2024-04-17T16": 128.83674820132347, - "2024-04-16T22": 137.26577775283522, - "2024-04-11T13": 172.20375227546856, - "2024-04-15T15": 144.51478031277085, - "2024-04-16T12": 135.96148826576993, - "2024-04-18T13": 133.1930349718407, - "2024-04-16T05": 132.42752909010093, - "2024-04-17T17": 128.2368630131026, - "2024-04-12T13": 169.75024805743672, - "2024-04-12T23": 151.33840637468404, - "2024-04-17T15": 131.27759436175916, - "2024-04-15T19": 135.76594331814007, - "2024-04-18T01": 132.01294494176472, - "2024-04-11T21": 174.41286008185506, - "2024-04-12T02": 172.59689670049667, - "2024-04-16T14": 131.3336409942397, - "2024-04-11T19": 174.94728811087847, - "2024-04-16T08": 137.96494384000349, - "2024-04-18T02": 133.20611245817418, - "2024-04-12T05": 174.45079355489398, - "2024-04-13T11": 152.15061097354658, - "2024-04-16T23": 137.53008746354115, - "2024-04-12T01": 173.35003146873206, - "2024-04-16T21": 134.0583082343189, - "2024-04-14T02": 139.009768351056, - "2024-04-12T10": 172.2990990494054, - "2024-04-16T15": 131.42569319131198, - "2024-04-12T11": 171.9705174669939, - "2024-04-17T06": 139.55339069506377, - "2024-04-13T00": 153.34368780962043, - "2024-04-18T03": 133.89316841510404, - "2024-04-13T08": 151.08509690318965, - "2024-04-13T06": 152.8065041564634, - "2024-04-15T04": 148.17606946950397, - "2024-04-16T04": 134.54388731814663, - "2024-04-14T16": 138.03621641412187, - "2024-04-16T07": 135.99254457185572, - "2024-04-18T05": 134.31256662109286, - "2024-04-13T02": 145.72038896021266, - "2024-04-15T09": 153.65905189450652, - "2024-04-13T05": 153.52964587553828, - "2024-04-15T17": 140.28640519188818, - "2024-04-16T16": 128.24920487830758, - "2024-04-15T21": 136.37557142587755, - "2024-04-12T17": 166.26928784093838, - "2024-04-17T01": 137.22107181639677, - "2024-04-14T21": 141.43363215920212, - "2024-04-15T07": 155.9032723714161, - "2024-04-18T12": 136.02436824055022, - "2024-04-15T22": 138.54446103767646, - "2024-04-13T22": 132.05944119954782, - "2024-04-15T08": 154.49552102143622, - "2024-04-14T22": 141.6049303458635, - "2024-04-17T19": 135.52404554642743, - "2024-04-12T07": 174.33676693720804, - "2024-04-12T18": 163.43142689653538, - "2024-04-14T04": 135.1348866425936, - "2024-04-16T17": 131.48718701146385, - "2024-04-17T11": 136.63632479818773, - "2024-04-13T21": 124.69330568394349, - "2024-04-13T09": 150.17978520671798, - "2024-04-14T08": 144.09348787116838, - "2024-04-15T11": 153.73786720672192, - "2024-04-11T14": 173.49047718061942, - "2024-04-17T13": 131.85289447822535, - "2024-04-14T06": 142.6551537397449, - "2024-04-13T19": 143.50538109202515, - "2024-04-14T07": 143.250223173763, - "2024-04-13T16": 149.5029637970883, - "2024-04-15T10": 154.1663911448486, - "2024-04-12T06": 175.0491449972492, - "2024-04-13T15": 149.82961236782586, - "2024-04-12T15": 167.14159569829437, - "2024-04-11T18": 174.81020428129932, - "2024-04-17T18": 132.81865550913986, - "2024-04-12T08": 173.29817664499808, - "2024-04-18T06": 133.40642363997367, - "2024-04-17T04": 137.13786526297426, - "2024-04-12T04": 173.96668406530864, - "2024-04-13T17": 145.6957715825486, - "2024-04-16T19": 134.08330737133173, - "2024-04-15T03": 147.2747794254526, - "2024-04-17T21": 133.58777296101144, - "2024-04-13T18": 139.42498355286895, - "2024-04-13T10": 151.18006347426785, - "2024-04-16T11": 133.00901627656364, - "2024-04-12T21": 152.0434807464438, - "2024-04-14T00": 138.80438479055738, - "2024-04-18T11": 133.355153811441, - "2024-04-17T07": 140.3946097484995, - "2024-04-13T01": 151.72508611782882, - "2024-04-14T17": 139.38216446077493, - "2024-04-16T03": 137.8944324255432, - "2024-04-13T12": 151.18955864075272, - "latest": 152.57, - "2024-04-18T14": 134.36893942498975, - "2024-04-18T15": 139.40893112844367, - "2024-04-19": 142.19919075583712, - "2024-04-18T20": 140.372280911384, - "2024-04-18T19": 140.02512580767853, - "2024-04-19T01": 134.5485652556119, - "2024-04-19T03": 134.8261222470014, - "2024-04-18T21": 140.55100620550627, - "2024-04-19T06": 139.9137550076384, - "2024-04-18T18": 137.38011412591052, - "2024-04-18T16": 139.4241202470528, - "2024-04-18T23": 142.62852957338524, - "2024-04-19T04": 138.49837352536358, - "2024-04-19T05": 138.80631196472575, - "2024-04-19T00": 139.55384584585843, - "2024-04-18T22": 142.37803917463074, - "2024-04-18T17": 138.91562949582004, - "2024-04-19T02": 130.45736903750603, - "2024-04-19T07": 145.3837580471055, - "2024-04-19T08": 143.36717174782368, - "2024-04-19T09": 143.85062955171247, - "2024-04-19T10": 144.07601388548656, - "2024-04-19T11": 145.00732027525132, - "2024-04-19T12": 144.6718461482431, - "2024-04-19T13": 143.71417035614493, - "2024-04-19T14": 144.513135138682, - "2024-04-19T15": 146.37397090633416, - "2024-04-20": 143.42101733324964, - "2024-04-19T22": 144.47632379999996, - "2024-04-19T23": 141.8881503, - "2024-04-19T20": 143.9784302254079, - "2024-04-19T19": 145.04656472378548, - "2024-04-19T21": 144.18684188155487, - "2024-04-19T16": 145.54090291580013, - "2024-04-19T17": 145.9060377768705, - "2024-04-20T00": 141.51989156373315, - "2024-04-19T18": 145.64370884009378, - "2024-04-20T01": 141.1520503077654, - "2024-04-21": 150.0584485735712, - "2024-04-20T16": 147.51961292827897, - "2024-04-20T19": 150.71469311360374, - "2024-04-20T15": 145.44635250000002, - "2024-04-20T02": 142.3669548102424, - "2024-04-20T09": 141.45100889999998, - "2024-04-20T04": 143.174134759059, - "2024-04-20T10": 140.8808436, - "2024-04-20T22": 150.270258105893, - "2024-04-21T00": 149.4837948, - "2024-04-20T12": 141.8697864, - "2024-04-21T04": 150.613231, - "2024-04-20T05": 143.8186104708729, - "2024-04-20T18": 150.64076587232233, - "2024-04-20T11": 141.66257489999998, - "2024-04-20T23": 150.43662089999998, - "2024-04-20T08": 142.5870382, - "2024-04-20T13": 142.71138960000002, - "2024-04-21T02": 151.03586259999997, - "2024-04-21T01": 149.8594373, - "2024-04-20T20": 151.25890682613132, - "2024-04-20T03": 142.45186879782338, - "2024-04-20T14": 142.78426, - "2024-04-20T07": 143.78887160000002, - "2024-04-20T17": 149.7838366393397, - "2024-04-20T21": 151.07728989540635, - "2024-04-20T06": 143.69157520552315, - "2024-04-21T03": 152.06536, - "2024-04-21T16": 148.35708, - "2024-04-21T11": 151.6218339, - "2024-04-21T17": 147.94254020000002, - "2024-04-21T08": 151.72625940507425, - "2024-04-21T12": 150.590112, - "2024-04-21T15": 150.0510042, - "2024-04-21T06": 151.11193050000003, - "2024-04-21T07": 151.0868224, - "2024-04-21T14": 149.34284820000002, - "2024-04-21T13": 149.59739000000002, - "2024-04-21T05": 150.99339060000003, - "2024-04-21T10": 150.33006, - "2024-04-21T09": 151.54848, - "2024-04-21T19": 148.7144613, - "2024-04-21T22": 149.79797359999998, - "2024-04-21T23": 148.6182321, - "2024-04-21T21": 149.9904986, - "2024-04-21T20": 148.494848, - "2024-04-21T18": 148.719738, - "2024-04-22": 153.86800880553358, - "2024-04-22T00": 149.12640210000004, - "2024-04-22T07": 154.19656445880418, - "2024-04-22T05": 151.88528259999998, - "2024-04-22T04": 151.02076459999998, - "2024-04-22T02": 147.32062200000001, - "2024-04-22T01": 149.16789799999998, - "2024-04-22T06": 155.06943111131497, - "2024-04-22T03": 149.9434937, - "2024-04-22T08": 153.74975374717224, - "2024-04-22T09": 153.42667549423962, - "2024-04-22T10": 154.075807760952, - "2024-04-22T11": 153.19502880000002, - "2024-04-22T12": 153.931548, - "2024-04-22T13": 154.15085299999998, - "2024-04-22T14": 154.21166, - "2024-04-22T15": 152.5077393, - "2024-04-22T16": 153.64524930000002, - "2024-04-23": 156.36685483544818, - "2024-04-23T03": 156.10581100000002, - "2024-04-22T19": 154.108539, - "2024-04-22T17": 154.34082745030474, - "2024-04-22T23": 157.737307, - "2024-04-22T20": 154.7248572, - "2024-04-22T21": 154.916461, - "2024-04-22T18": 154.73966803389857, - "2024-04-23T06": 155.59708559999999, - "2024-04-22T22": 157.17713899999998, - "2024-04-23T04": 155.845668, - "2024-04-23T01": 158.10663754999996, - "2024-04-23T07": 153.8476632, - "2024-04-23T00": 158.25169409999998, - "2024-04-23T05": 155.553276, - "2024-04-23T02": 158.10743470000003, - "2024-04-23T08": 153.9007705, - "2024-04-23T09": 154.0038825, - "2024-04-23T10": 154.96660699999998, - "2024-04-23T11": 154.3224975, - "2024-04-23T12": 154.3370836, - "2024-04-23T13": 154.7734311, - "2024-04-23T14": 157.48240859999999, - "2024-04-23T15": 158.4265604187084, - "2024-04-23T16": 158.3243435397141, - "2024-04-24": 154.72230429141575, - "2024-04-24T02": 156.28250160000002, - "2024-04-24T00": 155.5293312, - "2024-04-24T01": 158.185817, - "2024-04-23T23": 154.94084510000002, - "2024-04-24T06": 157.9895586142468, - "2024-04-23T22": 156.29361018272942, - "2024-04-23T18": 158.96794211709172, - "2024-04-23T20": 156.3660897162466, - "2024-04-23T21": 156.49782450000004, - "2024-04-24T04": 158.03, - "2024-04-24T05": 158.7211097, - "2024-04-24T03": 156.68008439518775, - "2024-04-24T07": 158.24841750000002, - "2024-04-23T19": 158.14559200963646, - "2024-04-23T17": 158.66067071638753, - "2024-04-24T08": 157.35898410000001, - "2024-04-24T09": 156.88586222, - "2024-04-24T10": 157.644234, - "2024-04-24T11": 158.7884121, - "2024-04-24T12": 159.198408, - "2024-04-24T13": 158.73686716167128, - "2024-04-24T14": 156.54874064342837, - "2024-04-24T15": 153.17391743820843, - "2024-04-24T18": 150.91682965468007, - "2024-04-25T00": 148.28676892788997, - "2024-04-24T21": 149.35760209299582, - "2024-04-24T17": 152.4178008764059, - "2024-04-24T16": 151.87026951940123, - "2024-04-24T20": 149.43435432846016, - "2024-04-24T23": 147.07699717413223, - "2024-04-24T22": 147.85508442422397, - "2024-04-24T19": 149.9187139129472, - "2024-04-25T01": 148.25579144668825, - "2024-04-25T03": 146.22416429522875, - "2024-04-25T07": 146.99917882621943, - "2024-04-25T06": 147.89944641979272, - "2024-04-25T05": 147.23574057668105, - "2024-04-25T04": 146.10077210232967, - "2024-04-25T02": 146.21722413363185, - "2024-04-25T08": 146.26499277230434, - "2024-04-25T09": 146.600674, - "2024-04-25T10": 144.19332207387467, - "2024-04-25T11": 144.73854009320974, - "2024-04-25T12": 144.71269435486266, - "2024-04-25T13": 143.65633158690764, - "2024-04-25T14": 145.4917400650229, - "2024-04-25T15": 146.13103481516777, - "2024-04-25T18": 147.82332856125547, - "2024-04-25T17": 148.31683854019164, - "2024-04-25T16": 147.6019593142336, - "2024-04-25": 147.6854592586746, - "2024-04-26": 144.88938593039995, - "2024-04-25T19": 147.11016138107027, - "2024-04-26T01": 142.601112913238, - "2024-04-25T23": 145.195479, - "2024-04-26T00": 143.1470686, - "2024-04-25T22": 146.2141512, - "2024-04-25T21": 147.8, - "2024-04-25T20": 146.62916403520921, - "2024-04-26T05": 143.6055829, - "2024-04-26T07": 143.62, - "2024-04-26T02": 144.1574620944374, - "2024-04-26T03": 143.82568510000002, - "2024-04-26T04": 143.1942469, - "2024-04-26T06": 144.15, - "2024-04-26T08": 144.01288019999998, - "2024-04-26T09": 144.18558, - "2024-04-26T10": 143.2128124, - "2024-04-26T11": 142.8200024, - "2024-04-26T12": 143.6555744, - "2024-04-26T13": 142.531488, - "2024-04-26T14": 144.56963399999998, - "2024-04-26T15": 142.7400216, - "2024-04-26T21": 142.33074248, - "2024-04-26T22": 139.951, - "2024-04-26T17": 142.9008369896652, - "2024-04-26T19": 143.4855057, - "2024-04-26T16": 142.41730919544645, - "2024-04-26T18": 143.72497164643093, - "2024-04-26T20": 143.0856297, - "2024-04-27": 139.1644839553058, - "2024-04-26T23": 139.347028, - "2024-04-27T00": 137.6773068, - "2024-04-27T01": 135.07758255307132, - "2024-04-28": 141.15334607085813, - "2024-04-27T13": 138.290053, - "2024-04-28T00": 141.40378, - "2024-04-27T20": 141.2438888, - "2024-04-27T23": 141.40378, - "2024-04-27T06": 136.2628389957678, - "2024-04-27T05": 136.26636976667862, - "2024-04-27T02": 135.82726893975726, - "2024-04-27T18": 140.9127031, - "2024-04-27T07": 136.478064, - "2024-04-27T04": 136.75430925761748, - "2024-04-27T21": 140.3858784, - "2024-04-27T09": 136.112832, - "2024-04-27T14": 138.77028411147592, - "2024-04-27T22": 140.504392, - "2024-04-27T16": 138.11601720000002, - "2024-04-27T10": 135.8489202, - "2024-04-27T17": 140.6756841, - "2024-04-27T08": 136.1668875, - "2024-04-27T12": 137.0008915, - "2024-04-27T15": 137.83448959999998, - "2024-04-27T11": 135.7502804472341, - "2024-04-27T03": 136.16396232904063, - "2024-04-27T19": 141.560838, - "2024-04-28T01": 142.247479, - "2024-04-28T20": 141.5975895, - "2024-04-28T14": 142.0917632, - "2024-04-28T05": 143.812221, - "2024-04-28T08": 143.2439622, - "2024-04-28T16": 142.32247257999998, - "2024-04-28T11": 141.3993564, - "2024-04-28T22": 139.64412, - "2024-04-28T03": 144.103486, - "2024-04-28T13": 142.4044638, - "2024-04-28T15": 142.0189056, - "2024-04-28T04": 143.319696, - "2024-04-28T09": 142.5301494, - "2024-04-28T19": 142.9656524, - "2024-04-28T06": 143.3738751, - "2024-04-28T12": 141.51303997797402, - "2024-04-28T02": 143.3295512, - "2024-04-28T17": 142.602936, - "2024-04-28T21": 141.54161022, - "2024-04-28T18": 143.0256296, - "2024-04-28T07": 143.7893556, - "2024-04-28T10": 141.8904968, - "2024-04-29": 135.57480502984293, - "2024-04-28T23": 137.94894, - "2024-04-29T00": 138.259893, - "2024-04-29T01": 138.28373504, - "2024-04-29T06": 134.9892, - "2024-04-29T02": 136.614471, - "2024-04-29T05": 135.92824799999997, - "2024-04-29T03": 136.0041543, - "2024-04-29T04": 135.98143789999997, - "2024-04-29T07": 134.9892, - "2024-04-29T08": 134.3992472, - "2024-04-29T09": 135.19324, - "2024-04-29T10": 135.70185740000002, - "2024-04-29T11": 134.92301, - "2024-04-29T12": 135.1402626, - "2024-04-29T13": 135.617444, - "2024-04-29T14": 136.5567814, - "2024-04-29T15": 136.39, - "2024-04-30": 128.8707173345529, - "2024-04-30T04": 135.719272, - "2024-04-29T21": 134.554236, - "2024-04-30T03": 136.8779666, - "2024-04-29T22": 137.23135000000002, - "2024-04-29T19": 134.3249042, - "2024-04-29T23": 138.0020148, - "2024-04-29T18": 134.471755, - "2024-04-30T00": 138.3240264, - "2024-04-29T20": 135.13780799999998, - "2024-04-30T01": 138.21299159999998, - "2024-04-30T02": 136.3109104, - "2024-04-29T16": 135.1718892, - "2024-04-29T17": 134.75247990000003, - "2024-04-30T05": 135.2388879, - "2024-04-30T06": 135.7855542, - "2024-04-30T07": 135.7469191, - "2024-04-30T08": 132.5474631, - "2024-04-30T09": 130.7781376, - "2024-04-30T10": 130.04131884998094, - "2024-04-30T11": 129.98367367609137, - "2024-04-30T12": 128.72749921671306, - "2024-04-30T13": 128.9749799111363, - "2024-04-30T14": 127.77563087904443, - "2024-04-30T15": 128.96714372738705, - "2024-04-30T16": 125.40730355145075, - "2024-05-01": 124.8858309259435, - "2024-04-30T22": 127.22434332862895, - "2024-04-30T17": 125.1732214360968, - "2024-04-30T20": 124.59326344082446, - "2024-04-30T23": 126.80758769290347, - "2024-04-30T19": 122.59932147731749, - "2024-04-30T18": 124.01138412670505, - "2024-05-01T01": 126.35147703741215, - "2024-05-01T00": 125.40682980376648, - "2024-04-30T21": 125.45442277220633, - "2024-05-01T02": 125.041092511785, - "2024-05-01T03": 125.08285234362903, - "2024-05-01T05": 125.00365325096972, - "2024-05-01T04": 126.07322361071785, - "2024-05-01T06": 123.77748044420082, - "2024-05-01T07": 120.63515491892925, - "2024-05-01T08": 120.00080714555753, - "2024-05-01T09": 121.28281525544453, - "2024-05-01T10": 120.95118364052044, - "2024-05-01T11": 121.58258736608525, - "2024-05-01T12": 123.88334602594603, - "2024-05-01T13": 123.23998090958438, - "2024-05-01T15": 122.62714458703572, - "2024-05-01T16": 124.02142165268953, - "2024-05-01T14": 122.89850988721258, - "2024-05-01T20": 129.28756894070108, - "2024-05-01T17": 125.76005682479125, - "2024-05-01T19": 130.98991147098494, - "2024-05-01T18": 129.54382535192858, - "2024-05-01T21": 131.84948050850863, - "2024-05-01T22": 133.66773922662895, - "2024-05-02": 131.19091358070472, - "2024-05-02T03": 130.1712577555591, - "2024-05-02T01": 130.3571239958085, - "2024-05-02T02": 129.58903653891167, - "2024-05-01T23": 134.15294815282596, - "2024-05-02T00": 132.13326398883532, - "2024-05-02T04": 130.17824642982725, - "2024-05-02T06": 129.80541846140565, - "2024-05-02T07": 131.73835302741153, - "2024-05-02T05": 129.25540977534507, - "2024-05-02T08": 132.9375276, - "2024-05-02T09": 133.19203739999998, - "2024-05-02T10": 133.94907999999998, - "2024-05-02T11": 134.6680753363753, - "2024-05-02T12": 138.69182300602088, - "2024-05-02T13": 136.61693491793358, - "2024-05-02T14": 136.08637960418883, - "2024-05-02T15": 139.4056610101205, - "2024-05-02T16": 138.33559516166233, - "2024-05-02T17": 137.9520262533573, - "2024-05-03T04": 140.7625081613565, - "2024-05-03T02": 140.09961120000003, - "2024-05-03T03": 140.8783118, - "2024-05-03T05": 140.0098, - "2024-05-03T06": 138.65673393250907, - "2024-05-03T00": 137.5423777, - "2024-05-03T07": 137.583757, - "2024-05-03T01": 139.79578502, - "2024-05-03T08": 137.7613776, - "2024-05-03T09": 138.35521740000002, - "2024-05-03T10": 137.19097440000002, - "2024-05-03T11": 136.49868623405789, - "2024-05-03T12": 140.4315736, - "2024-05-03T13": 142.6339373696746, - "2024-05-03T14": 142.60705406618854, - "2024-05-03T15": 141.72458286708402, - "2024-05-03": 141.07056310367605, - "2024-05-04": 145.990026773785, - "2024-05-04T05": 145.1520819, - "2024-05-03T18": 142.04928880569378, - "2024-05-04T03": 144.28109674012302, - "2024-05-03T17": 142.04252147386472, - "2024-05-03T21": 143.373083, - "2024-05-03T20": 144.0649604255617, - "2024-05-04T06": 144.9605776, - "2024-05-03T22": 143.44165339999998, - "2024-05-03T19": 141.6204322766341, - "2024-05-04T02": 143.33152600000003, - "2024-05-03T16": 142.45041208481473, - "2024-05-04T01": 143.8874672, - "2024-05-04T04": 145.31067560000002, - "2024-05-03T23": 143.87494672416375, - "2024-05-04T00": 144.4005225, - "2024-05-04T13": 146.723472, - "2024-05-04T10": 147.4929498, - "2024-05-04T12": 147.354734, - "2024-05-04T07": 144.0659272, - "2024-05-04T11": 147.894788, - "2024-05-04T09": 144.9331856, - "2024-05-04T15": 146.06920799999997, - "2024-05-04T08": 144.72749299999998, - "2024-05-04T14": 146.57931000000002, - "2024-05-05": 145.855533780424, - "2024-05-05T01": 144.4087707, - "2024-05-04T19": 147.12774567135844, - "2024-05-04T20": 147.33589320000002, - "2024-05-05T05": 145.2388786, - "2024-05-05T07": 145.53455200000002, - "2024-05-04T23": 146.204619, - "2024-05-04T22": 146.12461100000002, - "2024-05-04T21": 146.8629372, - "2024-05-05T00": 145.31479395000002, - "2024-05-05T08": 146.01606, - "2024-05-04T17": 146.25877499999999, - "2024-05-05T09": 145.45745279999997, - "2024-05-05T10": 145.6118385, - "2024-05-05T04": 144.6388006, - "2024-05-04T16": 146.19692625000002, - "2024-05-05T06": 144.884487, - "2024-05-05T03": 144.1687395, - "2024-05-04T18": 146.6287972, - "2024-05-05T02": 144.8288253, - "2024-05-05T21": 145.2459753, - "2024-05-05T16": 146.98440939999998, - "2024-05-05T22": 145.0974096, - "2024-05-05T17": 147.18324529999998, - "2024-05-05T20": 145.37598960000003, - "2024-05-05T13": 146.82130792931198, - "2024-05-05T15": 147.310311, - "2024-05-05T12": 146.1433792, - "2024-05-05T18": 146.2563214, - "2024-05-05T14": 146.46782359999997, - "2024-05-05T19": 146.0833696, - "2024-05-05T11": 146.3534128, - "2024-05-05T23": 145.68311029999998, - "2024-05-06T00": 146.664665, - "2024-05-06T02": 146.9532246, - "2024-05-06T05": 148.4574225, - "2024-05-06T06": 148.85297699999998, - "2024-05-06T07": 148.4489064, - "2024-05-06T04": 147.16882959999998, - "2024-05-06T01": 147.2450274, - "2024-05-06T03": 146.11876660000001, - "2024-05-06T08": 153.72, - "2024-05-06T09": 155.38043961569332, - "2024-05-06T10": 154.3499392472458, - "2024-05-06T11": 153.94384275046238, - "2024-05-06T12": 152.60009646600724, - "2024-05-06T13": 151.86594381618693, - "2024-05-06T14": 154.5078615827482, - "2024-05-06T15": 152.98942775831432, - "2024-05-06T17": 151.99044456805046, - "2024-05-06T16": 152.9104059825725, - "2024-05-06T18": 152.10290647405654, - "2024-05-06": 152.81883506269745, - "2024-05-07": 154.60212649126154, - "2024-05-06T22": 154.9646488, - "2024-05-07T06": 154.1746251, - "2024-05-07T01": 156.381232, - "2024-05-07T00": 153.3669326, - "2024-05-06T21": 155.25908588133754, - "2024-05-06T20": 154.44497767523916, - "2024-05-06T23": 153.4184658, - "2024-05-07T04": 154.893804, - "2024-05-06T19": 152.29650057465562, - "2024-05-07T03": 153.9269214, - "2024-05-07T02": 157.02173100000002, - "2024-05-07T05": 155.0137992, - "2024-05-07T07": 155.1824136, - "2024-05-07T08": 157.09681391768487, - "2024-05-07T09": 158.2488021640458, - "2024-05-07T10": 156.81842971029485, - "2024-05-07T11": 156.1244482464975, - "2024-05-07T12": 155.18640054935116, - "2024-05-07T13": 154.8212206599371, - "2024-05-07T14": 153.3925545795536, - "2024-05-07T15": 153.46881921009268, - "2024-05-08": 146.37329067663728, - "2024-05-09": 144.36239279351378, - "2024-05-10": 152.3503801574188, - "2024-05-09T13": 143.39405449999998, - "2024-05-10T00": 152.0987032, - "2024-05-08T08": 146.155383, - "2024-05-09T14": 143.9051304, - "2024-05-08T10": 146.2724452, - "2024-05-09T04": 143.9965243, - "2024-05-10T01": 153.58464, - "2024-05-08T03": 148.98212, - "2024-05-09T07": 143.7766365, - "2024-05-09T11": 142.103136, - "2024-05-09T00": 142.7321095321691, - "2024-05-09T01": 143.886662, - "2024-05-10T06": 154.0199748, - "2024-05-09T19": 148.85634088700564, - "2024-05-10T05": 152.75013990000002, - "2024-05-10T02": 153.30420138, - "2024-05-09T23": 152.08522635, - "2024-05-09T06": 145.10450640000002, - "2024-05-08T01": 148.735125, - "2024-05-09T09": 142.53869500000002, - "2024-05-09T20": 149.97356186103295, - "2024-05-08T19": 145.85126499369872, - "2024-05-09T03": 143.7566467, - "2024-05-08T21": 140.8872809056185, - "2024-05-09T22": 152.0126328, - "2024-05-08T17": 146.3992497, - "2024-05-09T05": 144.2435104, - "2024-05-08T06": 147.4049369, - "2024-05-08T15": 145.75938409999998, - "2024-05-10T08": 153.98152, - "2024-05-08T07": 146.91914049999997, - "2024-05-08T04": 147.5922868, - "2024-05-09T15": 146.44180887598182, - "2024-05-08T18": 147.7060198, - "2024-05-09T10": 141.5121255, - "2024-05-09T21": 150.38640006320477, - "2024-05-10T03": 153.5577144, - "2024-05-08T00": 148.9085109, - "2024-05-10T07": 155.00829579999998, - "2024-05-08T14": 147.9441231, - "2024-05-09T17": 146.86623735677907, - "2024-05-08T13": 146.0349432, - "2024-05-08T05": 147.0849913, - "2024-05-09T18": 147.13549229775526, - "2024-05-09T08": 143.526764, - "2024-05-08T20": 142.38423267814431, - "2024-05-08T22": 141.56451113734272, - "2024-05-08T11": 145.50835840000002, - "2024-05-09T12": 143.57679839999997, - "2024-05-08T02": 149.180604, - "2024-05-10T04": 154.04843019999998, - "2024-05-08T12": 145.32801216, - "2024-05-09T02": 144.1849848, - "2024-05-08T09": 145.4439994, - "2024-05-09T16": 147.63852879468075, - "2024-05-08T16": 145.54923480000002, - "2024-05-08T23": 141.84536829604517, - "2024-05-10T09": 153.881532, - "2024-05-10T10": 153.6584848, - "2024-05-10T11": 153.66848339999999, - "2024-05-10T12": 154.1284587, - "2024-05-10T13": 152.98023054, - "2024-05-10T14": 149.20463089999998, - "2024-05-11": 145.29885530319825, - "2024-05-12": 145.1313337929807, - "2024-05-12T16": 145.68170400000002, - "2024-05-11T03": 143.9853507, - "2024-05-10T17": 146.63800028736873, - "2024-05-11T16": 145.99158000000003, - "2024-05-10T15": 146.98804013865433, - "2024-05-11T04": 144.0910849, - "2024-05-11T12": 144.51493900000003, - "2024-05-12T15": 144.942, - "2024-05-11T11": 143.7267324, - "2024-05-12T04": 146.67983660000002, - "2024-05-12T11": 145.2329857, - "2024-05-11T22": 145.5879636, - "2024-05-11T21": 145.60795919999998, - "2024-05-10T21": 146.19583638685958, - "2024-05-10T23": 146.3948568, - "2024-05-12T00": 145.866227, - "2024-05-12T03": 146.46139200000002, - "2024-05-12T12": 145.1730175, - "2024-05-11T08": 144.712365, - "2024-05-11T17": 145.27059119999998, - "2024-05-12T19": 144.97488859999999, - "2024-05-11T23": 145.612131, - "2024-05-11T05": 145.2807636, - "2024-05-12T02": 146.16151200000002, - "2024-05-11T02": 144.16962120000002, - "2024-05-10T16": 147.193296948077, - "2024-05-12T14": 144.5649165, - "2024-05-11T09": 144.609498, - "2024-05-10T18": 147.04135833168021, - "2024-05-10T19": 147.37518998381586, - "2024-05-11T06": 145.7420972, - "2024-05-12T08": 144.7178828, - "2024-05-10T20": 146.23779096030052, - "2024-05-11T18": 146.261472, - "2024-05-12T05": 147.05115600000002, - "2024-05-12T06": 146.89122, - "2024-05-11T20": 145.7989525, - "2024-05-12T09": 144.83059509999998, - "2024-05-11T01": 146.6062728, - "2024-05-11T00": 146.14637860000002, - "2024-05-12T07": 144.44942500000002, - "2024-05-12T10": 145.23606800000002, - "2024-05-11T10": 144.2479467, - "2024-05-12T01": 145.79166, - "2024-05-12T18": 145.269138, - "2024-05-12T13": 145.0018171, - "2024-05-11T19": 146.171508, - "2024-05-12T17": 145.049215, - "2024-05-11T14": 144.9278072, - "2024-05-11T07": 145.4307231, - "2024-05-11T15": 145.57591839999998, - "2024-05-11T13": 144.7806156, - "2024-05-10T22": 145.5336075, - "2024-05-13": 145.5923584232473, - "2024-05-12T21": 143.452645, - "2024-05-13T00": 145.1188569, - "2024-05-13T03": 139.1510268, - "2024-05-12T23": 143.52251270000002, - "2024-05-13T04": 138.6825456, - "2024-05-13T01": 143.15987650000002, - "2024-05-13T05": 138.54119760000003, - "2024-05-13T02": 141.2262063, - "2024-05-13T07": 141.6939777892729, - "2024-05-13T06": 139.7708532, - "2024-05-12T22": 143.32834229999997, - "2024-05-12T20": 144.6550102, - "2024-05-13T08": 144.79692560033848, - "2024-05-13T09": 146.0920300580657, - "2024-05-13T10": 145.1930064659345, - "2024-05-13T11": 145.21168072940944, - "2024-05-13T12": 145.79280101125877, - "2024-05-13T13": 145.79787874869055, - "2024-05-13T14": 146.18362555244883, - "2024-05-13T15": 147.014708, - "2024-05-13T16": 149.37012000000001, - "2024-05-14": 145.9676628896916, - "2024-05-13T17": 147.84190470000001, - "2024-05-14T01": 147.230548, - "2024-05-14T02": 146.6903829, - "2024-05-14T06": 145.3143972, - "2024-05-13T19": 148.52851470000002, - "2024-05-13T22": 147.375261, - "2024-05-14T04": 147.1405012, - "2024-05-13T21": 148.33961549999998, - "2024-05-14T03": 146.1139812, - "2024-05-14T00": 147.45197879999998, - "2024-05-14T07": 146.18248219999998, - "2024-05-13T20": 148.712564, - "2024-05-14T05": 148.5767504, - "2024-05-13T23": 147.2820111, - "2024-05-13T18": 146.6121384, - "2024-05-14T08": 145.96464391037816, - "2024-05-14T09": 146.4896512, - "2024-05-14T10": 146.0613189, - "2024-05-14T11": 146.4038304, - "2024-05-14T12": 146.61903980000002, - "2024-05-14T13": 145.5796846, - "2024-05-14T14": 143.643918691462, - "2024-05-14T15": 143.30501858086453, - "2024-05-14T16": 142.65906225783502, - "2024-05-14T17": 142.85516250232544, - "2024-05-14T18": 142.77964190894517, - "2024-05-14T19": 144.18634880850203, - "2024-05-14T20": 143.5210768, - "2024-05-15": 142.88968611471128, - "2024-05-15T02": 142.81283100000002, - "2024-05-15T01": 142.83281879999998, - "2024-05-14T21": 142.9842304, - "2024-05-15T05": 143.7252945, - "2024-05-15T00": 142.21458629999998, - "2024-05-15T06": 143.9352, - "2024-05-15T03": 143.81366, - "2024-05-15T07": 143.92460465321557, - "2024-05-14T23": 142.1574232, - "2024-05-15T04": 143.66955546575178, - "2024-05-14T22": 142.8742573, - "2024-05-15T08": 144.08531969999999, - "2024-05-15T09": 144.78783024, - "2024-05-15T10": 144.98405, - "2024-05-15T11": 143.8198624, - "2024-05-15T12": 148.33368149999998, - "2024-05-15T13": 148.71038736377878, - "2024-05-15T14": 152.21488412169285 - }, - "USD cardano": { - "2023-07-30": 0.3141988419569688, - "2023-07-27": 0.3090507201046808, - "2023-07-10": 0.28581176958438226, - "2023-08-20": 0.2684760668613904, - "2024-02-23": 0.5842768398332727, - "2024-04-05": 0.5734201451386821, - "2023-12-19": 0.5957072751077839, - "2023-08-06": 0.2934906310485278, - "2023-12-02": 0.38887532643125206, - "2023-10-12": 0.24527432067980526, - "2023-10-31": 0.2965889051086655, - "2023-08-29": 0.2681225525067014, - "2023-06-20": 0.2603937811989407, - "2023-09-09": 0.2544059573853426, - "2023-06-26": 0.28739471326381477, - "2023-05-03": 0.3848716134349149, - "2023-10-23": 0.2660683996899307, - "2023-10-01": 0.25974405966343256, - "2024-03-07": 0.7401928498904562, - "2023-07-05": 0.28579057898131627, - "2023-07-29": 0.3111609484121935, - "2024-01-08": 0.5041788565258988, - "2023-05-29": 0.37917128816057477, - "2023-10-07": 0.2590902026779098, - "2023-09-26": 0.24556195439012307, - "2023-08-24": 0.2663549006792332, - "2023-12-05": 0.4055416392604694, - "2023-05-10": 0.3652887665798769, - "2024-02-19": 0.6260443846445308, - "2024-01-07": 0.5200902752054456, - "2023-10-18": 0.2458369422265148, - "2023-04-25": 0.38157989270321624, - "2023-07-31": 0.3128051710769308, - "2023-05-23": 0.3704238082806979, - "2023-08-25": 0.26201346544975435, - "2024-03-09": 0.7353833881198265, - "2023-07-12": 0.29257308672514204, - "2023-09-05": 0.25663131359386787, - "2023-06-07": 0.3350402831387455, - "2023-09-16": 0.2505298266805284, - "2023-08-12": 0.2930344038772758, - "2023-05-09": 0.36398970379209705, - "2023-09-01": 0.25619506926156477, - "2023-09-08": 0.2544466481451861, - "2024-03-22": 0.6188304931151465, - "2023-08-10": 0.2976953315578388, - "2023-12-07": 0.4464465387738138, - "2023-11-18": 0.36243566083622775, - "2023-07-13": 0.32716301801574055, - "2023-04-30": 0.400684526167864, - "2023-06-06": 0.3516984612341608, - "2023-09-13": 0.24771186192409592, - "2023-06-17": 0.2676188108240799, - "2023-07-17": 0.31309776708208753, - "2023-07-07": 0.2823001154744857, - "2023-09-07": 0.2559158637665916, - "2024-02-22": 0.5944049648585322, - "2024-04-15": 0.46558216216349535, - "2023-12-30": 0.6053284111956564, - "2023-09-17": 0.24872597378174527, - "2023-04-20": 0.41416532506528414, - "2024-03-26": 0.6658321083138723, - "2023-04-27": 0.40978419101832547, - "2024-04-17": 0.4484380061501645, - "2024-02-12": 0.545263130605731, - "2023-10-26": 0.28839648591685973, - "2024-01-03": 0.560933138403848, - "2023-06-01": 0.3648106288208373, - "2024-01-22": 0.4925351449481578, - "2023-06-12": 0.27646618892050856, - "2023-10-03": 0.2617324549939244, - "2023-06-19": 0.26065290972543953, - "2023-07-09": 0.2866512410855827, - "2023-12-24": 0.6149963371021346, - "2023-09-24": 0.2451580320537279, - "2024-01-16": 0.5371479478870315, - "2023-10-17": 0.24977092444709773, - "2024-03-18": 0.6690210542007345, - "2024-02-17": 0.5880045875863105, - "2023-12-27": 0.6154007117901685, - "2023-07-23": 0.3153766729071497, - "2023-09-03": 0.25506608704035444, - "2024-02-24": 0.5877006717006423, - "2024-01-06": 0.5230146663035572, - "2024-03-20": 0.6045067720074843, - "2023-11-21": 0.37568874340966546, - "2023-12-25": 0.6124419933396336, - "2023-09-22": 0.24486369254349075, - "2023-10-02": 0.26476646553020877, - "2024-03-27": 0.6499011877947024, - "2023-04-28": 0.4053956159361782, - "2023-08-04": 0.2934521511962457, - "2023-08-30": 0.26519675149749783, - "2023-04-24": 0.3866217351650018, - "2023-10-06": 0.26365283553122987, - "2023-10-13": 0.24615149280398588, - "2023-06-28": 0.27435831518325243, - "2024-02-05": 0.4958097176694148, - "2024-03-01": 0.6835213644189256, - "2023-07-15": 0.33010637475319043, - "2023-06-25": 0.29511446986393963, - "2023-12-10": 0.5928040327419525, - "2023-11-23": 0.3816920373922085, - "2024-01-13": 0.5475398960265391, - "2024-03-28": 0.6499101116214637, - "2023-08-05": 0.2915959064460198, - "2024-02-09": 0.5395290908780244, - "2023-10-09": 0.2520656048129856, - "2023-05-24": 0.36453307677920294, - "2024-01-09": 0.5163115024135249, - "2023-12-08": 0.5218784499767547, - "2023-05-27": 0.3637976356504604, - "2023-08-18": 0.2632599125690142, - "2023-11-05": 0.3397474457100954, - "2024-04-18": 0.4493073961322269, - "2023-10-22": 0.25946504368412066, - "2023-11-01": 0.2907625436065197, - "2023-05-07": 0.3806049509703127, - "2024-04-12": 0.5433248275347675, - "2024-03-12": 0.7458695403947274, - "2023-09-11": 0.24310400362787749, - "2024-03-03": 0.7276726600490885, - "2024-02-04": 0.5047514873874139, - "2024-01-28": 0.4927804135494632, - "2023-04-18": 0.4418204805261688, - "2023-07-06": 0.28419216099630823, - "2023-07-01": 0.2878925100546048, - "2023-05-18": 0.37542613142342074, - "2023-11-07": 0.3511000922905267, - "2023-11-25": 0.3908937795538429, - "2023-06-04": 0.380399505196337, - "2024-02-25": 0.5898127957155246, - "2023-12-01": 0.3807879536872008, - "2023-07-14": 0.3491600217169459, - "2024-01-26": 0.4821964570543134, - "2023-08-03": 0.29543521056199, - "2024-02-28": 0.6294411582985125, - "2023-09-15": 0.25000465744244316, - "2023-07-18": 0.30603157817297183, - "2023-04-21": 0.4002143595197684, - "2023-12-21": 0.6038917261575555, - "2023-07-20": 0.3246868839072055, - "2024-03-06": 0.7205728311548713, - "2023-09-30": 0.2509955192192306, - "2023-12-12": 0.5759512701095963, - "2024-02-13": 0.5516874971753868, - "2023-05-19": 0.36948154680257206, - "2023-09-20": 0.2531939732736687, - "2023-09-19": 0.2552579144098508, - "2023-09-29": 0.2508547671065824, - "2023-09-12": 0.24709106504328465, - "2023-06-13": 0.27714879814260596, - "2023-10-04": 0.2564743207354627, - "2023-07-08": 0.2864261212180159, - "2024-04-16": 0.4578572282266228, - "2024-03-02": 0.741174167669798, - "2023-06-27": 0.2830666945711336, - "2023-10-08": 0.25699437749528325, - "2023-11-20": 0.38699185339011166, - "2023-12-20": 0.5901698539567019, - "2023-12-31": 0.6021003457303576, - "2023-11-06": 0.35320651557209226, - "2023-08-22": 0.2579615085789149, - "2023-06-09": 0.31406050201819274, - "2024-03-17": 0.6730156532474666, - "2023-09-18": 0.25200407845965644, - "2024-04-01": 0.6258316874823673, - "2024-01-19": 0.49609380055861596, - "2023-11-11": 0.3833173022153913, - "2023-05-14": 0.36835918891430086, - "2023-05-13": 0.3652973173752183, - "2023-05-06": 0.38421734085429426, - "2023-11-19": 0.3758545069018965, - "2023-05-16": 0.3664850583943072, - "2023-09-23": 0.24549999692883348, - "2023-07-02": 0.28954900335407024, - "2023-08-15": 0.28862879620511755, - "2024-01-25": 0.47067535648927733, - "2024-03-13": 0.7533546386660621, - "2024-01-21": 0.5150588316883734, - "2024-02-01": 0.492487677821092, - "2023-06-15": 0.2592823293027031, - "2024-03-16": 0.7026872485290449, - "2023-11-27": 0.38003139919850487, - "2024-01-10": 0.5132422967178549, - "2024-03-15": 0.7144467840155343, - "2023-06-21": 0.27967858729546086, - "2024-01-02": 0.6252864277605777, - "2023-04-26": 0.4016881143980071, - "2023-07-11": 0.29063659640408296, - "2023-10-25": 0.2810417944846842, - "2024-01-01": 0.6028681278482786, - "2024-02-14": 0.5723827625018705, - "2023-09-04": 0.25624369730566837, - "2023-09-06": 0.2562620153625326, - "2024-04-03": 0.5828251091671685, - "2024-03-08": 0.7324437997836839, - "2023-11-28": 0.37879585868615556, - "2023-12-03": 0.39398341437509415, - "2023-08-02": 0.3052267681627416, - "2023-08-27": 0.26287928867605775, - "2023-10-20": 0.2503701761330141, - "2023-05-25": 0.3580059286208497, - "2023-10-10": 0.24982634620744693, - "2024-04-11": 0.5857551650259266, - "2023-06-22": 0.29502790056000816, - "2024-01-14": 0.544294289997984, - "2023-12-15": 0.6312039364792698, - "2023-10-19": 0.24309835614421937, - "2024-02-08": 0.5265804462934813, - "2023-11-08": 0.355673686851524, - "2023-11-12": 0.38307974603948247, - "2023-12-22": 0.6201725040335755, - "2023-05-20": 0.3653408711173422, - "2023-05-31": 0.37470590230017736, - "2024-03-23": 0.6293473703150472, - "2024-04-10": 0.5800455278305626, - "2023-09-27": 0.2448280426932152, - "2024-03-04": 0.7764474522831065, - "2023-09-10": 0.24913736137612552, - "2024-04-13": 0.4913646422313038, - "2024-02-29": 0.6808504096926514, - "2023-07-22": 0.31235747293830285, - "2023-07-21": 0.3141008230731667, - "2023-06-30": 0.28513945782345984, - "2023-12-29": 0.6120388970579527, - "2023-12-04": 0.4038236694974691, - "2023-09-21": 0.24822077871785841, - "2023-06-02": 0.3743415049334683, - "2023-10-11": 0.24706364229852523, - "2023-07-19": 0.3167380364844531, - "2023-05-05": 0.3915056970789808, - "2024-03-21": 0.6338280252783159, - "2024-04-08": 0.6074463258444652, - "2023-04-29": 0.4039825263556203, - "2023-06-14": 0.27323956202400645, - "2023-10-05": 0.2601495760487384, - "2023-10-16": 0.2517017327586948, - "2024-02-10": 0.5393031062536059, - "2024-04-07": 0.5900572584453879, - "2023-05-21": 0.3618500669068233, - "2024-02-20": 0.6260690025878002, - "2023-11-17": 0.3682801640993082, - "2023-12-11": 0.5511469022377182, - "2023-11-26": 0.38930677911163597, - "2023-11-16": 0.3830065002204742, - "2023-06-29": 0.27408102727393474, - "2023-06-11": 0.2678714346437385, - "2024-02-02": 0.511339103321989, - "2023-09-14": 0.24999611384497739, - "2024-01-27": 0.48476595134285233, - "2024-03-30": 0.65306491420731, - "2023-05-04": 0.39164132558358966, - "2023-09-28": 0.24651610915006159, - "2023-10-27": 0.2861819947923627, - "2023-05-01": 0.38900843764673887, - "2023-05-15": 0.37108605738412187, - "2023-11-22": 0.3701245124159353, - "2023-06-03": 0.3762639268017054, - "2024-01-18": 0.514906101064503, - "2023-08-26": 0.2600464781240323, - "2024-02-15": 0.5941543211379574, - "2023-10-28": 0.29247178769671855, - "2024-03-24": 0.6357503075156583, - "2023-04-22": 0.39196201585098683, - "2023-12-06": 0.43583221489525226, - "2023-11-10": 0.37356293198552487, - "2024-01-30": 0.5258861339378091, - "2023-08-09": 0.2984863613239283, - "2023-05-02": 0.3871569220128718, - "2023-11-14": 0.35930480905217255, - "2024-01-23": 0.46624022834003687, - "2024-01-31": 0.507404738460803, - "2024-01-11": 0.5810968070941663, - "2024-02-18": 0.622823386375357, - "2023-06-16": 0.26199322937358505, - "2023-10-30": 0.2992012854600035, - "2023-12-17": 0.5977447191758405, - "2024-02-26": 0.5907698982614155, - "2023-07-16": 0.32055228798286434, - "2024-01-05": 0.5427137926761588, - "2023-08-23": 0.2605524277373033, - "2024-03-11": 0.7404778173095032, - "2023-08-01": 0.3048965485962561, - "2024-03-14": 0.7589119613308408, - "2024-02-21": 0.5910107090875711, - "2023-08-28": 0.26269493320343645, - "2023-07-04": 0.29542301348844985, - "2023-12-13": 0.6090802954170893, - "2023-08-13": 0.29080306573469206, - "2024-03-31": 0.6474774100239337, - "2023-12-09": 0.5939477830967879, - "2024-04-02": 0.5870792993626898, - "2024-02-06": 0.4952146309550798, - "2024-04-09": 0.6052302836985572, - "2023-05-30": 0.3794941415241438, - "2023-11-04": 0.32563873766678103, - "2024-01-15": 0.5336514627877381, - "2023-07-03": 0.29439893910511183, - "2023-12-28": 0.6453469691863442, - "2023-04-23": 0.38997067179676015, - "2023-04-17": 0.44080039183513936, - "2023-05-08": 0.36901283908782456, - "2024-02-27": 0.6229435490140981, - "2024-02-07": 0.4859507135848553, - "2023-09-25": 0.24462463499667284, - "2024-03-19": 0.6178366268484268, - "2024-03-10": 0.7294621457450855, - "2023-09-02": 0.25535149422448367, - "2024-01-12": 0.5755733392418758, - "2023-11-29": 0.38415155657927363, - "2023-10-15": 0.24703675164215527, - "2023-11-30": 0.3755858930238825, - "2024-01-24": 0.4716209291607712, - "2023-08-11": 0.29553000286565506, - "2024-02-11": 0.5542556271891289, - "2023-06-08": 0.324721536192125, - "2023-08-16": 0.2750719505674845, - "2023-11-15": 0.36815892711613685, - "2023-12-16": 0.6122336170977589, - "2024-03-29": 0.6503017224044435, - "2024-04-04": 0.5801706726179205, - "2023-06-10": 0.25168648357754614, - "2023-07-28": 0.3104933197088297, - "2024-01-20": 0.51133992961257, - "2023-10-21": 0.2574861753903994, - "2023-05-12": 0.36121309298550164, - "2023-11-03": 0.31975364687462227, - "2023-08-31": 0.2628436168412417, - "2024-01-29": 0.49734025754280475, - "2024-01-04": 0.56309542883816, - "2023-05-22": 0.36766713123801903, - "2023-07-26": 0.3032782619395266, - "2023-11-13": 0.3707150745936377, - "2024-03-25": 0.6527818420278267, - "2023-08-07": 0.29160954248363996, - "2023-10-29": 0.29533113973383307, - "2023-07-25": 0.3040514292793591, - "2023-05-17": 0.37003715438251106, - "2023-10-24": 0.28142671711362144, - "2023-06-05": 0.3672252010596677, - "2023-11-02": 0.3101941792771411, - "2023-12-18": 0.571125335364459, - "2023-11-24": 0.3896801085518198, - "2023-08-21": 0.2664261466194673, - "2023-08-14": 0.29018796300136385, - "2023-05-26": 0.3581197254541547, - "2024-03-05": 0.7589598237441312, - "2024-04-06": 0.5813891527944391, - "2023-12-23": 0.605114465169946, - "2024-02-03": 0.5179543386115295, - "2024-02-16": 0.5993695938315802, - "2023-05-28": 0.3759516776268221, - "2023-12-14": 0.6481563981477774, - "2023-06-24": 0.2935207989851523, - "2023-12-26": 0.6068510027966253, - "2023-11-09": 0.3669336608569343, - "2023-05-11": 0.35882824081504955, - "2023-08-19": 0.2651036047398007, - "2023-06-23": 0.29413793719792963, - "2023-06-18": 0.2667073687852909, - "2023-08-08": 0.2938079934451703, - "2023-08-17": 0.27277450556227323, - "2024-04-14": 0.4567429288883973, - "2023-07-24": 0.3064286773042597, - "2023-10-14": 0.24652651353290733, - "2024-01-17": 0.5299888751010909, - "2023-04-19": 0.41985201746014134, - "2024-04-14T03": 0.44431760900000006, - "2024-04-11T16": 0.5778728399999999, - "2024-04-16T02": 0.45856502399999993, - "2024-04-13T04": 0.505470756, - "2024-04-18T09": 0.44339309300000007, - "2024-04-12T19": 0.48084339256976333, - "2024-04-15T06": 0.484243569, - "2024-04-14T19": 0.452704098, - "2024-04-15T01": 0.462303362, - "2024-04-17T20": 0.44697318, - "2024-04-11T17": 0.5816894579999999, - "2024-04-18T10": 0.44538905999999995, - "2024-04-12T14": 0.564057351, - "2024-04-12T20": 0.4914651704795902, - "2024-04-15T12": 0.486771711, - "2024-04-14T23": 0.47146565564484905, - "2024-04-13T07": 0.5064468269999999, - "2024-04-14T20": 0.44953482, - "2024-04-17T00": 0.45675067799999997, - "2024-04-15T00": 0.46513681799999995, - "2024-04-14T01": 0.4423238208737017, - "2024-04-17T22": 0.447091058, - "2024-04-17T09": 0.45770587500000004, - "2024-04-15T14": 0.474627267, - "2024-04-15T20": 0.45469089000000007, - "2024-04-16T10": 0.456891814, - "2024-04-16T18": 0.45221754599999997, - "2024-04-18T04": 0.45066845099999997, - "2024-04-15T02": 0.4608143599999999, - "2024-04-15T16": 0.46253114999999995, - "2024-04-14T05": 0.461893914, - "2024-04-17T08": 0.45723713, - "2024-04-14T13": 0.461535263, - "2024-04-14T10": 0.469120383, - "2024-04-13T14": 0.50480094, - "2024-04-17T10": 0.45452714999999994, - "2024-04-14T15": 0.45533656, - "2024-04-14T12": 0.46043470200000003, - "2024-04-16T09": 0.470545824, - "2024-04-17T02": 0.45552295800000003, - "2024-04-11T23": 0.58605274, - "2024-04-12T09": 0.58688847, - "2024-04-14T18": 0.456541484, - "2024-04-14T09": 0.46853415, - "2024-04-16T20": 0.451858095, - "2024-04-18T00": 0.44177349200000005, - "2024-04-15T23": 0.46040126600000003, - "2024-04-12T22": 0.49835499034557185, - "2024-04-12T00": 0.5874411180000001, - "2024-04-15T13": 0.486222646, - "2024-04-18T08": 0.4393229628563177, - "2024-04-13T20": 0.42129964404560627, - "2024-04-17T05": 0.46149228, - "2024-04-15T18": 0.449433584, - "2024-04-16T01": 0.46172924800000004, - "2024-04-14T11": 0.46022540000000006, - "2024-04-11T20": 0.58700587, - "2024-04-13T13": 0.50870172, - "2024-04-12T16": 0.5596032529999999, - "2024-04-17T03": 0.4580042715249705, - "2024-04-16T06": 0.460967206, - "2024-04-17T12": 0.4447178050000001, - "2024-04-11T22": 0.58575857, - "2024-04-15T05": 0.47002409300000003, - "2024-04-18T14": 0.4556277, - "2024-04-12T12": 0.57799763, - "2024-04-17T14": 0.439071171, - "2024-04-13T03": 0.5000049790000001, - "2024-04-18T07": 0.44088816000000003, - "2024-04-16T00": 0.45872840800000003, - "2024-04-12T03": 0.58865886, - "2024-04-17T23": 0.444277785, - "2024-04-13T23": 0.4485818235799263, - "2024-04-14T14": 0.45288108, - "2024-04-11T15": 0.580960536, - "2024-04-16T13": 0.455668535, - "2024-04-17T16": 0.433595664, - "2024-04-16T22": 0.45935153599999995, - "2024-04-15T15": 0.46642843800000006, - "2024-04-16T12": 0.46139226, - "2024-04-18T13": 0.445942656, - "2024-04-16T05": 0.45626904000000007, - "2024-04-17T17": 0.438591228, - "2024-04-12T13": 0.566612956, - "2024-04-12T23": 0.5030701428956595, - "2024-04-17T15": 0.434417376, - "2024-04-15T19": 0.448488286, - "2024-04-18T01": 0.446846372, - "2024-04-11T21": 0.5872411040000001, - "2024-04-12T02": 0.58962948, - "2024-04-16T14": 0.45383610999999996, - "2024-04-11T19": 0.5823, - "2024-04-16T08": 0.47057404799999997, - "2024-04-18T02": 0.447768654, - "2024-04-12T05": 0.58895889, - "2024-04-13T11": 0.51315131, - "2024-04-16T23": 0.45956079, - "2024-04-12T01": 0.5875235000000001, - "2024-04-16T21": 0.45939186, - "2024-04-14T02": 0.44342167507655367, - "2024-04-12T10": 0.584695285, - "2024-04-16T15": 0.44625422, - "2024-04-12T11": 0.586271265, - "2024-04-17T06": 0.45683701, - "2024-04-13T00": 0.501551606743813, - "2024-04-18T03": 0.450681972, - "2024-04-13T08": 0.5047412880000001, - "2024-04-13T06": 0.5082473489999999, - "2024-04-15T04": 0.46165520099999996, - "2024-04-16T04": 0.452544242, - "2024-04-14T16": 0.45960109000000005, - "2024-04-16T07": 0.4722596, - "2024-04-18T05": 0.450109002, - "2024-04-13T02": 0.491622875, - "2024-04-15T09": 0.48946813496622565, - "2024-04-13T05": 0.5106480449999999, - "2024-04-15T17": 0.45673738, - "2024-04-16T16": 0.44182079999999996, - "2024-04-15T21": 0.45314496000000004, - "2024-04-12T17": 0.5292239839999999, - "2024-04-17T01": 0.45655517599999995, - "2024-04-14T21": 0.4451335, - "2024-04-15T07": 0.48943521, - "2024-04-18T12": 0.446547312, - "2024-04-15T22": 0.45729601200000003, - "2024-04-13T22": 0.44123901249222386, - "2024-04-15T08": 0.49315821100000007, - "2024-04-14T22": 0.4638314896385406, - "2024-04-17T19": 0.446373216, - "2024-04-12T07": 0.581688366, - "2024-04-12T18": 0.4696437266540544, - "2024-04-14T04": 0.45508650900000003, - "2024-04-16T17": 0.45291772799999996, - "2024-04-17T11": 0.450479124, - "2024-04-13T21": 0.4193498336428233, - "2024-04-13T09": 0.504841316, - "2024-04-14T08": 0.47423699999999996, - "2024-04-15T11": 0.487806792, - "2024-04-11T14": 0.579271035, - "2024-04-17T13": 0.44772375, - "2024-04-14T06": 0.46627028000000004, - "2024-04-13T19": 0.45780592000000003, - "2024-04-14T07": 0.469414297, - "2024-04-13T16": 0.49819961999999995, - "2024-04-15T10": 0.491781474, - "2024-04-12T06": 0.5822407540000001, - "2024-04-13T15": 0.50640126, - "2024-04-12T15": 0.563501186, - "2024-04-11T18": 0.580594194, - "2024-04-17T18": 0.451277435, - "2024-04-12T08": 0.5856644160000001, - "2024-04-18T06": 0.44306202, - "2024-04-17T04": 0.46216469400000004, - "2024-04-12T04": 0.590576765, - "2024-04-13T17": 0.47869572, - "2024-04-16T19": 0.44961687, - "2024-04-15T03": 0.46295325000000004, - "2024-04-17T21": 0.448764096, - "2024-04-13T18": 0.476757278, - "2024-04-13T10": 0.51257934, - "2024-04-16T11": 0.46236177000000006, - "2024-04-12T21": 0.4971101896116568, - "2024-04-14T00": 0.4421697547153752, - "2024-04-18T11": 0.45203557, - "2024-04-17T07": 0.456214025, - "2024-04-13T01": 0.493518416, - "2024-04-14T17": 0.44961571200000006, - "2024-04-16T03": 0.4581832, - "2024-04-13T12": 0.50995099, - "latest": 0.445283, - "2024-04-18T15": 0.45745146000000003, - "2024-04-19": 0.4582502704551432, - "2024-04-18T20": 0.4545544079999999, - "2024-04-18T19": 0.45292635, - "2024-04-19T01": 0.437722528, - "2024-04-19T03": 0.441126466, - "2024-04-18T21": 0.45695988000000004, - "2024-04-19T06": 0.45162642000000003, - "2024-04-18T18": 0.448710795, - "2024-04-18T16": 0.45452714999999994, - "2024-04-18T23": 0.45787850299999994, - "2024-04-19T04": 0.446507136, - "2024-04-19T05": 0.443319664, - "2024-04-19T00": 0.45590962199999996, - "2024-04-18T22": 0.45813740000000003, - "2024-04-18T17": 0.450756785, - "2024-04-19T02": 0.42833854699999996, - "2024-04-19T07": 0.45671415000000004, - "2024-04-19T08": 0.460397886, - "2024-04-19T09": 0.462303324, - "2024-04-19T10": 0.46379664000000004, - "2024-04-19T11": 0.46647839995120716, - "2024-04-19T12": 0.46900465500000005, - "2024-04-19T13": 0.472125542, - "2024-04-19T14": 0.470907108, - "2024-04-19T15": 0.47183108400000007, - "2024-04-20": 0.4879958387344453, - "2024-04-19T22": 0.47328450899999996, - "2024-04-19T23": 0.467091429, - "2024-04-19T20": 0.46965493499999994, - "2024-04-19T19": 0.471498994, - "2024-04-19T21": 0.471855661, - "2024-04-19T16": 0.468406008, - "2024-04-19T17": 0.47001610799999993, - "2024-04-20T00": 0.47048341699999996, - "2024-04-19T18": 0.469873789, - "2024-04-20T01": 0.475961772, - "2024-04-21": 0.5015831708741738, - "2024-04-20T16": 0.49014209999999997, - "2024-04-20T19": 0.5015504199999999, - "2024-04-20T15": 0.48712175, - "2024-04-20T02": 0.47936772000000005, - "2024-04-20T09": 0.486941172, - "2024-04-20T04": 0.48167333999999995, - "2024-04-20T10": 0.4835401859999999, - "2024-04-20T22": 0.503971292, - "2024-04-21T00": 0.5021807199999999, - "2024-04-20T12": 0.479000569, - "2024-04-21T04": 0.505112058, - "2024-04-20T05": 0.48728022699999995, - "2024-04-20T18": 0.5049275278610201, - "2024-04-20T11": 0.47810993999999996, - "2024-04-20T23": 0.50515655, - "2024-04-20T08": 0.49256249199999996, - "2024-04-20T13": 0.48070573200000005, - "2024-04-21T02": 0.5086881449999999, - "2024-04-21T01": 0.5056668149999999, - "2024-04-20T20": 0.5042512299999999, - "2024-04-20T03": 0.47756709, - "2024-04-20T14": 0.481315488, - "2024-04-20T07": 0.496568776, - "2024-04-20T17": 0.49987489500000004, - "2024-04-20T21": 0.50575168, - "2024-04-20T06": 0.49478794800000003, - "2024-04-21T03": 0.507918311, - "2024-04-21T16": 0.4933233000000001, - "2024-04-21T11": 0.504405903, - "2024-04-21T17": 0.4938086140000001, - "2024-04-21T08": 0.5040536795504807, - "2024-04-21T12": 0.5015002799999999, - "2024-04-21T15": 0.49786969200000003, - "2024-04-21T06": 0.507608034, - "2024-04-21T07": 0.50515655, - "2024-04-21T14": 0.49710934000000007, - "2024-04-21T13": 0.49892470000000005, - "2024-04-21T05": 0.5072129400000001, - "2024-04-21T10": 0.5005000799999999, - "2024-04-21T09": 0.50166048, - "2024-04-21T19": 0.49801493999999996, - "2024-04-21T22": 0.501160132, - "2024-04-21T23": 0.49929484799999996, - "2024-04-21T21": 0.502735189, - "2024-04-21T20": 0.49994999, - "2024-04-21T18": 0.49569912, - "2024-04-22": 0.511877941434516, - "2024-04-22T00": 0.500055, - "2024-04-22T07": 0.5087898449999999, - "2024-04-22T05": 0.511419816, - "2024-04-22T04": 0.509437511, - "2024-04-22T02": 0.49686955200000005, - "2024-04-22T01": 0.49915989199999994, - "2024-04-22T06": 0.5128562999999999, - "2024-04-22T03": 0.505745513, - "2024-04-22T08": 0.5077436, - "2024-04-22T09": 0.50819812, - "2024-04-22T10": 0.5112146200000001, - "2024-04-22T11": 0.510049802, - "2024-04-22T12": 0.51260496, - "2024-04-22T13": 0.5137694879999999, - "2024-04-22T14": 0.51400552, - "2024-04-22T15": 0.512061018, - "2024-04-22T16": 0.514552007, - "2024-04-23": 0.5103678755888312, - "2024-04-23T03": 0.511180995, - "2024-04-22T19": 0.516796308, - "2024-04-22T17": 0.517101591, - "2024-04-22T23": 0.51925573, - "2024-04-22T20": 0.5193505679999999, - "2024-04-22T21": 0.51925573, - "2024-04-22T18": 0.517617308, - "2024-04-23T06": 0.5146880639999999, - "2024-04-22T22": 0.52065615, - "2024-04-23T04": 0.50968017, - "2024-04-23T01": 0.517601786, - "2024-04-23T07": 0.5079284650000001, - "2024-04-23T00": 0.517401708, - "2024-04-23T05": 0.5118069, - "2024-04-23T02": 0.5153523990000001, - "2024-04-23T08": 0.5162703129999999, - "2024-04-23T09": 0.516680775, - "2024-04-23T10": 0.518322783, - "2024-04-23T11": 0.515742285, - "2024-04-23T12": 0.513289847, - "2024-04-23T13": 0.50720787, - "2024-04-23T14": 0.5116352439999999, - "2024-04-23T15": 0.50985291, - "2024-04-23T16": 0.506886156, - "2024-04-24": 0.500207879629093, - "2024-04-24T02": 0.5007374910633227, - "2024-04-24T00": 0.501830108, - "2024-04-24T01": 0.50455045, - "2024-04-23T23": 0.49973497899999997, - "2024-04-24T06": 0.506420256, - "2024-04-23T22": 0.5011103702456499, - "2024-04-23T18": 0.504015897, - "2024-04-23T20": 0.5041504099999999, - "2024-04-23T21": 0.502725135, - "2024-04-24T04": 0.5037, - "2024-04-24T05": 0.508135567, - "2024-04-24T03": 0.5011002699159341, - "2024-04-24T07": 0.5057949420000001, - "2024-04-23T19": 0.50320062, - "2024-04-23T17": 0.50632655, - "2024-04-24T08": 0.500864937, - "2024-04-24T09": 0.49699006, - "2024-04-24T10": 0.49625037000000005, - "2024-04-24T11": 0.497095029, - "2024-04-24T12": 0.49779502200000003, - "2024-04-24T13": 0.49305562099999994, - "2024-04-24T14": 0.481708458, - "2024-04-24T15": 0.47915071200000003, - "2024-04-25": 0.47504412962417236, - "2024-04-24T18": 0.477580212, - "2024-04-25T00": 0.4767615, - "2024-04-24T21": 0.47756502, - "2024-04-24T17": 0.478266320952372, - "2024-04-24T16": 0.475133776, - "2024-04-24T20": 0.47767927200000004, - "2024-04-24T23": 0.47253996, - "2024-04-24T22": 0.47471992, - "2024-04-24T19": 0.478755048, - "2024-04-25T01": 0.47720931299999997, - "2024-04-25T03": 0.47387675999999995, - "2024-04-25T06": 0.47709501600000004, - "2024-04-25T05": 0.47476702800000004, - "2024-04-25T04": 0.471382125, - "2024-04-25T02": 0.47490974999999996, - "2024-04-25T07": 0.473691026, - "2024-04-25T08": 0.470372965, - "2024-04-25T09": 0.4704059, - "2024-04-25T10": 0.46491165, - "2024-04-25T11": 0.46788300000000005, - "2024-04-25T12": 0.46891236000000003, - "2024-04-25T13": 0.465116106, - "2024-04-25T14": 0.469522818, - "2024-04-25T15": 0.4697414999999999, - "2024-04-25T16": 0.472311714, - "2024-04-25T17": 0.47209691099999995, - "2024-04-25T18": 0.47282971999999995, - "2024-04-25T19": 0.47350104600000004, - "2024-04-26": 0.47057883062344014, - "2024-04-25T22": 0.474081036, - "2024-04-25T21": 0.4773, - "2024-04-25T20": 0.47450062600000004, - "2024-04-26T01": 0.464813944, - "2024-04-25T23": 0.47065293, - "2024-04-26T00": 0.46789236000000006, - "2024-04-26T05": 0.476618961, - "2024-04-26T07": 0.4702, - "2024-04-26T02": 0.471381144, - "2024-04-26T03": 0.473385798, - "2024-04-26T04": 0.47474777199999996, - "2024-04-26T06": 0.4755, - "2024-04-26T08": 0.46970939399999995, - "2024-04-26T09": 0.46775322, - "2024-04-26T10": 0.467043948, - "2024-04-26T11": 0.468034466, - "2024-04-26T12": 0.47002008300000003, - "2024-04-26T13": 0.46790640000000006, - "2024-04-26T14": 0.47130100599999997, - "2024-04-26T15": 0.465069744, - "2024-04-26T21": 0.466531988, - "2024-04-26T22": 0.46235324460560395, - "2024-04-26T17": 0.46582758, - "2024-04-26T19": 0.466155447, - "2024-04-26T16": 0.46585088, - "2024-04-26T18": 0.46666462799999997, - "2024-04-26T20": 0.467455044, - "2024-04-27": 0.4636418447472156, - "2024-04-26T23": 0.462724098, - "2024-04-27T00": 0.45965746199999996, - "2024-04-27T01": 0.45098810454195093, - "2024-04-28": 0.4665700690399208, - "2024-04-27T13": 0.458801585, - "2024-04-28T00": 0.468281352, - "2024-04-27T20": 0.46418414, - "2024-04-27T23": 0.46668244000000003, - "2024-04-27T06": 0.457334592, - "2024-04-27T05": 0.459506926, - "2024-04-27T02": 0.455976853, - "2024-04-27T18": 0.46467915000000004, - "2024-04-27T07": 0.45602622, - "2024-04-27T04": 0.459837743, - "2024-04-27T21": 0.463988919, - "2024-04-27T09": 0.454508928, - "2024-04-27T14": 0.46010534399999997, - "2024-04-27T22": 0.464384004, - "2024-04-27T16": 0.4571889, - "2024-04-27T10": 0.45369582, - "2024-04-27T17": 0.46368912000000007, - "2024-04-27T08": 0.45422275500000003, - "2024-04-27T12": 0.455803535, - "2024-04-27T15": 0.45771604000000005, - "2024-04-27T11": 0.452519264, - "2024-04-27T03": 0.45958047799999996, - "2024-04-27T19": 0.46447464, - "2024-04-28T01": 0.47009423999999994, - "2024-04-28T20": 0.469026396, - "2024-04-28T14": 0.46917468799999995, - "2024-04-28T05": 0.47171208, - "2024-04-28T08": 0.47388228600000004, - "2024-04-28T16": 0.467917441, - "2024-04-28T11": 0.46823295500000006, - "2024-04-28T22": 0.46401432000000004, - "2024-04-28T03": 0.4757144, - "2024-04-28T13": 0.47078333999999994, - "2024-04-28T15": 0.467898717, - "2024-04-28T04": 0.472335344, - "2024-04-28T09": 0.47250213599999996, - "2024-04-28T19": 0.47002132399999996, - "2024-04-28T06": 0.474282018, - "2024-04-28T12": 0.468184536, - "2024-04-28T02": 0.471736483, - "2024-04-28T17": 0.4693122, - "2024-04-28T21": 0.46932628499999995, - "2024-04-28T18": 0.470221248, - "2024-04-28T07": 0.474900624, - "2024-04-28T10": 0.470536352, - "2024-04-29": 0.4542600056651164, - "2024-04-28T23": 0.460429578, - "2024-04-29T00": 0.46086631, - "2024-04-29T01": 0.46185216, - "2024-04-29T06": 0.44946404, - "2024-04-29T02": 0.458180842, - "2024-04-29T05": 0.454627248, - "2024-04-29T03": 0.45481356900000003, - "2024-04-29T04": 0.45490445, - "2024-04-29T07": 0.44996400000000003, - "2024-04-29T08": 0.449764016, - "2024-04-29T09": 0.451877405, - "2024-04-29T10": 0.454072754, - "2024-04-29T11": 0.45380922, - "2024-04-29T12": 0.45370016399999996, - "2024-04-29T13": 0.451591592, - "2024-04-29T14": 0.45692231, - "2024-04-29T15": 0.4571, - "2024-04-30": 0.4571728684042193, - "2024-04-30T04": 0.45606314000000003, - "2024-04-29T21": 0.451946286, - "2024-04-30T03": 0.457226188, - "2024-04-29T22": 0.45707135, - "2024-04-29T19": 0.451414844, - "2024-04-29T23": 0.457707682, - "2024-04-29T18": 0.45350474399999996, - "2024-04-30T00": 0.45938053, - "2024-04-29T20": 0.453391344, - "2024-04-30T01": 0.458943906, - "2024-04-30T02": 0.455435984, - "2024-04-29T16": 0.45497270000000006, - "2024-04-29T17": 0.454540902, - "2024-04-30T05": 0.454095534, - "2024-04-30T06": 0.45441819000000006, - "2024-04-30T07": 0.453522888, - "2024-04-30T08": 0.44422446899999996, - "2024-04-30T09": 0.441758592, - "2024-04-30T10": 0.438516666, - "2024-04-30T11": 0.43301338, - "2024-04-30T12": 0.430145092, - "2024-04-30T13": 0.42957109000000004, - "2024-04-30T14": 0.430901694, - "2024-04-30T15": 0.43418715999999996, - "2024-04-30T16": 0.433604948, - "2024-05-01": 0.4401433073876692, - "2024-04-30T22": 0.44133436800000003, - "2024-04-30T17": 0.435060388, - "2024-04-30T20": 0.437178324, - "2024-04-30T23": 0.4404591, - "2024-04-30T19": 0.432858034, - "2024-04-30T18": 0.433717992, - "2024-05-01T01": 0.439134024, - "2024-05-01T00": 0.440241672, - "2024-04-30T21": 0.439519068, - "2024-05-01T02": 0.438182334, - "2024-05-01T03": 0.43977164, - "2024-05-01T05": 0.44123449600000003, - "2024-05-01T04": 0.442295208, - "2024-05-01T06": 0.439836288, - "2024-05-01T07": 0.428067215, - "2024-05-01T08": 0.42126431400000003, - "2024-05-01T09": 0.429528888, - "2024-05-01T10": 0.430695496, - "2024-05-01T11": 0.432397836, - "2024-05-01T12": 0.438899084, - "2024-05-01T13": 0.43861806999999997, - "2024-05-01T15": 0.43478199300000003, - "2024-05-01T16": 0.433331591, - "2024-05-01T14": 0.43770921599999996, - "2024-05-01T21": 0.44894808, - "2024-05-01T20": 0.44283244800000005, - "2024-05-01T17": 0.432667164, - "2024-05-01T19": 0.444328512, - "2024-05-01T18": 0.44636372, - "2024-05-01T22": 0.44874387600000004, - "2024-05-02": 0.44955088395760584, - "2024-05-02T03": 0.4452543, - "2024-05-02T01": 0.44221303, - "2024-05-02T02": 0.44487696499999996, - "2024-05-01T23": 0.44935200000000003, - "2024-05-02T00": 0.44576890299999994, - "2024-05-02T04": 0.445305162, - "2024-05-02T06": 0.44367588, - "2024-05-02T07": 0.44438870999999996, - "2024-05-02T05": 0.443478295, - "2024-05-02T08": 0.445823418, - "2024-05-02T09": 0.448571112, - "2024-05-02T10": 0.45012888599999995, - "2024-05-02T11": 0.453936524, - "2024-05-02T12": 0.45526793400000004, - "2024-05-02T13": 0.45343651, - "2024-05-02T14": 0.454836314, - "2024-05-02T15": 0.458186254, - "2024-05-02T16": 0.45600456000000006, - "2024-05-02T17": 0.455909118, - "2024-05-03T04": 0.458404584, - "2024-05-03T02": 0.461164554, - "2024-05-03T03": 0.46105993, - "2024-05-03T05": 0.45353174500000004, - "2024-05-03T06": 0.452454288, - "2024-05-03T00": 0.45804121999999997, - "2024-05-03T07": 0.45244524, - "2024-05-03T01": 0.4600322, - "2024-05-03T08": 0.451804518, - "2024-05-03T09": 0.450749577, - "2024-05-03T10": 0.447835824, - "2024-05-03T11": 0.447695523, - "2024-05-03T12": 0.45547267, - "2024-05-03T13": 0.4613, - "2024-05-03T14": 0.46416961500000004, - "2024-05-03T15": 0.464997629, - "2024-05-03": 0.46090048093532954, - "2024-05-04": 0.4678158861499538, - "2024-05-04T05": 0.4675355459999999, - "2024-05-03T18": 0.465797797, - "2024-05-04T03": 0.4666026300000001, - "2024-05-03T17": 0.466944708, - "2024-05-03T21": 0.468438782, - "2024-05-03T20": 0.46951170783136187, - "2024-05-04T06": 0.466730648, - "2024-05-03T22": 0.467901111, - "2024-05-03T19": 0.46423923, - "2024-05-04T02": 0.46630256400000003, - "2024-05-03T16": 0.46762155, - "2024-05-04T01": 0.46845453899999995, - "2024-05-04T04": 0.467430844, - "2024-05-03T23": 0.468282559, - "2024-05-04T00": 0.46866397500000007, - "2024-05-04T13": 0.46867497599999997, - "2024-05-04T10": 0.47060941199999995, - "2024-05-04T12": 0.47014701000000003, - "2024-05-04T07": 0.46608388000000006, - "2024-05-04T11": 0.47164716, - "2024-05-04T09": 0.46807487999999997, - "2024-05-04T15": 0.46739346, - "2024-05-04T08": 0.46698871099999995, - "2024-05-04T14": 0.46729344, - "2024-05-05": 0.45839737794470636, - "2024-05-05T01": 0.454659098, - "2024-05-04T19": 0.4691234550000001, - "2024-05-04T20": 0.46901876, - "2024-05-05T05": 0.455859254, - "2024-05-05T07": 0.45834582999999995, - "2024-05-04T23": 0.46314631, - "2024-05-04T22": 0.46534653, - "2024-05-04T21": 0.466109322, - "2024-05-05T00": 0.46006900000000006, - "2024-05-05T08": 0.459850578, - "2024-05-04T17": 0.46842810399999996, - "2024-05-05T09": 0.45885505599999993, - "2024-05-05T10": 0.45736859500000004, - "2024-05-05T04": 0.45565922799999997, - "2024-05-04T16": 0.46787017000000003, - "2024-05-05T06": 0.45594559, - "2024-05-05T03": 0.454259046, - "2024-05-04T18": 0.469228152, - "2024-05-05T02": 0.455259176, - "2024-05-05T21": 0.459850578, - "2024-05-05T16": 0.464413932, - "2024-05-05T22": 0.45775492399999995, - "2024-05-05T17": 0.46174155299999997, - "2024-05-05T20": 0.4604514343194365, - "2024-05-05T13": 0.4576662491032271, - "2024-05-05T15": 0.46253237500000005, - "2024-05-05T12": 0.45667305599999997, - "2024-05-05T18": 0.458982602, - "2024-05-05T14": 0.45818703899999996, - "2024-05-05T19": 0.46037364799999997, - "2024-05-05T11": 0.45807327999999997, - "2024-05-05T23": 0.45834124699999995, - "2024-05-06T00": 0.460046, - "2024-05-06T02": 0.45774119299999994, - "2024-05-06T05": 0.46102305000000005, - "2024-05-06T06": 0.46340926799999993, - "2024-05-06T07": 0.46552793, - "2024-05-06T04": 0.45672740199999995, - "2024-05-06T01": 0.458877996, - "2024-05-06T03": 0.45632737799999995, - "2024-05-06T08": 0.4722, - "2024-05-06T09": 0.4722, - "2024-05-06T10": 0.4679, - "2024-05-06T11": 0.46543723200000003, - "2024-05-06T12": 0.45864586, - "2024-05-06T13": 0.459132137, - "2024-05-06T14": 0.45954595000000004, - "2024-05-06T15": 0.45422725199999997, - "2024-05-06T17": 0.459495405, - "2024-05-06T16": 0.45954595000000004, - "2024-05-06T18": 0.45954595000000004, - "2024-05-06": 0.4608695452063259, - "2024-05-07": 0.45367415706416425, - "2024-05-06T22": 0.456613698, - "2024-05-07T07": 0.449835984, - "2024-05-07T06": 0.447613428, - "2024-05-07T01": 0.45394552, - "2024-05-07T00": 0.453690926, - "2024-05-06T21": 0.458663304, - "2024-05-06T20": 0.460740096, - "2024-05-06T23": 0.45449545500000005, - "2024-05-07T04": 0.449982, - "2024-05-06T19": 0.45898164, - "2024-05-07T03": 0.44903256137473424, - "2024-05-07T02": 0.45491810000000005, - "2024-05-07T05": 0.4493329326383519, - "2024-05-07T08": 0.45370907399999993, - "2024-05-07T09": 0.4542, - "2024-05-07T10": 0.451218048, - "2024-05-07T11": 0.45022251, - "2024-05-07T12": 0.450304503, - "2024-05-07T13": 0.45104510000000003, - "2024-05-07T14": 0.45099549000000005, - "2024-05-07T15": 0.45444091500000006, - "2024-05-08": 0.4517813968190752, - "2024-05-09": 0.45664162475547687, - "2024-05-10": 0.46215071578913913, - "2024-05-09T13": 0.45082411, - "2024-05-10T00": 0.461635362, - "2024-05-08T08": 0.44145585, - "2024-05-09T14": 0.45176496000000005, - "2024-05-08T10": 0.4424469, - "2024-05-09T04": 0.460964788, - "2024-05-10T01": 0.4639536, - "2024-05-08T03": 0.444046708, - "2024-05-09T07": 0.455567542, - "2024-05-09T11": 0.44922024000000005, - "2024-05-09T00": 0.459107094, - "2024-05-09T01": 0.461896676, - "2024-05-10T06": 0.464839563, - "2024-05-09T19": 0.460244764, - "2024-05-10T05": 0.46443961500000003, - "2024-05-10T02": 0.46435820399999994, - "2024-05-09T23": 0.462739836, - "2024-05-09T06": 0.458961216, - "2024-05-08T01": 0.44235576000000004, - "2024-05-09T09": 0.45377300000000004, - "2024-05-09T20": 0.459667821, - "2024-05-08T19": 0.46407930799999997, - "2024-05-09T03": 0.461664431, - "2024-05-08T21": 0.456076826, - "2024-05-09T22": 0.460517092, - "2024-05-08T17": 0.46050327399999996, - "2024-05-09T05": 0.45955630599999997, - "2024-05-08T06": 0.440325132, - "2024-05-08T15": 0.46090319, - "2024-05-10T08": 0.464344272, - "2024-05-08T07": 0.439407705, - "2024-05-08T04": 0.442146936, - "2024-05-09T15": 0.454986056, - "2024-05-08T18": 0.46299348700000004, - "2024-05-09T10": 0.450652005, - "2024-05-09T21": 0.45832207199999997, - "2024-05-10T03": 0.465562752, - "2024-05-08T00": 0.44099559000000005, - "2024-05-10T07": 0.466534676, - "2024-05-08T14": 0.451659942, - "2024-05-09T17": 0.45626764399999997, - "2024-05-08T13": 0.440494256, - "2024-05-08T05": 0.44192486, - "2024-05-09T18": 0.45746272000000004, - "2024-05-09T08": 0.45396835799999996, - "2024-05-08T20": 0.45812668799999995, - "2024-05-08T22": 0.454059198, - "2024-05-08T11": 0.440264776, - "2024-05-09T12": 0.453000592, - "2024-05-08T02": 0.443742306, - "2024-05-10T04": 0.466134732, - "2024-05-08T12": 0.438151798, - "2024-05-09T02": 0.461659812, - "2024-05-08T09": 0.440851501, - "2024-05-09T16": 0.45664012, - "2024-05-08T16": 0.46347019200000006, - "2024-05-08T23": 0.45281427, - "2024-05-10T09": 0.463144416, - "2024-05-10T10": 0.46273520799999995, - "2024-05-10T11": 0.463235138, - "2024-05-10T12": 0.46473307663128016, - "2024-05-10T13": 0.46285833899999995, - "2024-05-10T14": 0.45432275200000005, - "2024-05-11": 0.4435563031648539, - "2024-05-12": 0.43986602760605054, - "2024-05-12T16": 0.44196812111454264, - "2024-05-11T03": 0.446361585, - "2024-05-10T17": 0.4448665, - "2024-05-11T16": 0.44342256, - "2024-05-10T15": 0.449319108, - "2024-05-11T04": 0.446179499, - "2024-05-11T12": 0.44320047, - "2024-05-12T15": 0.44152332, - "2024-05-11T11": 0.44210538800000004, - "2024-05-12T04": 0.441019108, - "2024-05-12T11": 0.440366482, - "2024-05-11T22": 0.43890342, - "2024-05-11T21": 0.438803442, - "2024-05-10T21": 0.44736575, - "2024-05-10T23": 0.448292384, - "2024-05-12T00": 0.43926818, - "2024-05-12T03": 0.44032380000000004, - "2024-05-12T12": 0.440266535, - "2024-05-11T08": 0.44668383199999995, - "2024-05-11T17": 0.442449516, - "2024-05-12T19": 0.437733598, - "2024-05-11T23": 0.439485704, - "2024-05-11T05": 0.446079526, - "2024-05-12T02": 0.4397353789381203, - "2024-05-11T02": 0.446974812, - "2024-05-10T16": 0.44685696, - "2024-05-12T14": 0.441701145, - "2024-05-11T09": 0.44477542800000003, - "2024-05-10T18": 0.44656599, - "2024-05-10T19": 0.44858457599999996, - "2024-05-11T06": 0.447283676, - "2024-05-12T08": 0.43814221200000003, - "2024-05-10T20": 0.446143795, - "2024-05-11T18": 0.44052372, - "2024-05-12T05": 0.44082360000000004, - "2024-05-12T06": 0.44012388, - "2024-05-11T20": 0.43964607000000006, - "2024-05-12T09": 0.43782042, - "2024-05-11T01": 0.449096684, - "2024-05-11T00": 0.44779698300000004, - "2024-05-12T07": 0.437946665, - "2024-05-12T10": 0.44070600400000004, - "2024-05-11T10": 0.442909467, - "2024-05-12T01": 0.43942416, - "2024-05-12T18": 0.43904628, - "2024-05-12T13": 0.441692307, - "2024-05-11T19": 0.44072364, - "2024-05-12T17": 0.4399470218309881, - "2024-05-11T14": 0.44314041200000004, - "2024-05-11T07": 0.448378905, - "2024-05-11T15": 0.44360472799999995, - "2024-05-11T13": 0.44381796, - "2024-05-10T22": 0.44628840000000003, - "2024-05-13": 0.4420066648159244, - "2024-05-12T21": 0.435656186, - "2024-05-13T00": 0.43888484099999997, - "2024-05-13T03": 0.42788016, - "2024-05-12T23": 0.437594234, - "2024-05-13T04": 0.427384575, - "2024-05-13T01": 0.43444789, - "2024-05-13T05": 0.42658052400000007, - "2024-05-13T02": 0.429366855, - "2024-05-13T07": 0.441463104, - "2024-05-13T06": 0.43937694000000005, - "2024-05-12T22": 0.43631230499999996, - "2024-05-12T20": 0.437433712, - "2024-05-13T08": 0.446712302, - "2024-05-13T10": 0.44842056, - "2024-05-13T09": 0.45140581199999996, - "2024-05-13T11": 0.44704795199999997, - "2024-05-13T12": 0.44383128, - "2024-05-13T13": 0.445735017, - "2024-05-13T14": 0.445175316, - "2024-05-13T15": 0.445093152, - "2024-05-13T16": 0.4469106, - "2024-05-14": 0.4338032488122894, - "2024-05-13T17": 0.442815849, - "2024-05-14T01": 0.43611276, - "2024-05-14T02": 0.434282712, - "2024-05-14T06": 0.431475516, - "2024-05-13T19": 0.44173621950319836, - "2024-05-13T22": 0.43705629, - "2024-05-14T04": 0.435664614, - "2024-05-13T21": 0.43987360600000003, - "2024-05-14T03": 0.4347738, - "2024-05-14T00": 0.435517236, - "2024-05-14T07": 0.43576892, - "2024-05-13T20": 0.44077796, - "2024-05-14T05": 0.437155056, - "2024-05-13T23": 0.440316324, - "2024-05-13T18": 0.440816229, - "2024-05-14T08": 0.43677713, - "2024-05-14T09": 0.436090576, - "2024-05-14T10": 0.434395738, - "2024-05-14T11": 0.43377432, - "2024-05-14T12": 0.432431726, - "2024-05-14T13": 0.432631602, - "2024-05-14T14": 0.431228155, - "2024-05-14T15": 0.43453912, - "2024-05-14T16": 0.43396118999999994, - "2024-05-14T17": 0.43064146, - "2024-05-14T18": 0.43128924799999996, - "2024-05-14T19": 0.43144098, - "2024-05-14T20": 0.430593216, - "2024-05-15": 0.4291480407010996, - "2024-05-15T02": 0.429637761, - "2024-05-15T01": 0.42873831, - "2024-05-14T21": 0.42916262400000005, - "2024-05-15T05": 0.42820722, - "2024-05-15T00": 0.427873107, - "2024-05-15T06": 0.42800731000000003, - "2024-05-15T03": 0.4298420561960901, - "2024-05-15T07": 0.42986441620395005, - "2024-05-14T23": 0.42731189999999997, - "2024-05-15T04": 0.4294943688950563, - "2024-05-14T22": 0.426933431, - "2024-05-15T08": 0.43166614200000003, - "2024-05-15T09": 0.43313068799999993, - "2024-05-15T10": 0.43395226, - "2024-05-15T11": 0.43043972999999996, - "2024-05-15T12": 0.43835177599999997, - "2024-05-15T13": 0.44368225199999994, - "2024-05-15T14": 0.444291114 - }, - "USD polkadot": { - "2023-07-30": 5.229465877446029, - "2023-07-27": 5.261180849807813, - "2023-07-10": 5.083184955055046, - "2023-08-20": 4.498952168168503, - "2024-02-23": 7.418564137332878, - "2024-04-05": 8.33301093110789, - "2023-12-19": 6.86088188581599, - "2023-08-06": 4.995152583291947, - "2023-12-02": 5.484138109487257, - "2023-10-12": 3.670459353870996, - "2023-10-31": 4.455191719073222, - "2023-08-29": 4.643954631682212, - "2023-06-20": 4.494511854904371, - "2023-09-09": 4.255017825596273, - "2023-06-26": 5.158740680114167, - "2023-05-03": 5.676199623527474, - "2023-10-23": 4.034302006849029, - "2023-10-01": 4.184268243683246, - "2024-03-07": 10.437873454452836, - "2023-07-05": 5.223148577871981, - "2023-07-29": 5.23843603753826, - "2024-01-08": 7.023000137999833, - "2023-05-29": 5.473930085999214, - "2023-10-07": 4.081247403103095, - "2023-09-26": 4.024720869800001, - "2023-08-24": 4.455698894170214, - "2023-12-05": 5.645703746937638, - "2023-05-10": 5.379319796791941, - "2024-02-19": 7.797384828035982, - "2024-01-07": 7.185726940529622, - "2023-10-18": 3.6743481702954126, - "2023-04-25": 5.863583427918485, - "2023-07-31": 5.1620163803294625, - "2023-05-23": 5.3820854567536465, - "2023-08-25": 4.446999843939209, - "2024-03-09": 10.690261420495181, - "2023-07-12": 5.242429597715052, - "2023-09-05": 4.2544883338451065, - "2023-06-07": 5.105126980198794, - "2023-09-16": 4.171490920864587, - "2023-08-12": 5.0213273164326235, - "2023-05-09": 5.341172805318899, - "2023-09-01": 4.252913332835013, - "2023-09-08": 4.242268691023254, - "2024-03-22": 9.019402982493972, - "2023-08-10": 5.008119929957948, - "2023-12-07": 6.109327781456544, - "2023-11-18": 5.173433614005934, - "2023-07-13": 5.355632726154713, - "2023-04-30": 6.010956014273088, - "2023-06-06": 5.080618453875546, - "2023-09-13": 4.0055016737767115, - "2023-06-17": 4.519368386277425, - "2023-07-17": 5.292839020440426, - "2023-07-07": 5.105928066997065, - "2023-09-07": 4.262134900757646, - "2024-02-22": 7.530341690464259, - "2024-04-15": 6.811355400075343, - "2023-12-30": 8.332498601531572, - "2023-09-17": 4.125088441008973, - "2023-04-20": 6.347666638730071, - "2024-03-26": 9.845853257164107, - "2023-04-27": 5.936249301103719, - "2024-04-17": 6.619996899152916, - "2024-02-12": 7.148665187581995, - "2023-10-26": 4.30290713045278, - "2024-01-03": 7.7229880588123745, - "2023-06-01": 5.2302048282965945, - "2024-01-22": 6.5590277268336, - "2023-06-12": 4.510954243267917, - "2023-10-03": 4.118039389359552, - "2023-06-19": 4.522608076645082, - "2023-07-09": 5.10751954095337, - "2023-12-24": 8.823648765507157, - "2023-09-24": 4.02494091063072, - "2024-01-16": 7.525630324460214, - "2023-10-17": 3.7206756093971065, - "2024-03-18": 9.977309315904822, - "2024-02-17": 7.564828363932483, - "2023-12-27": 8.802374463806972, - "2023-07-23": 5.411141003943085, - "2023-09-03": 4.271000177524187, - "2024-02-24": 7.765425252961439, - "2024-01-06": 7.194275536548072, - "2024-03-20": 9.062041607805483, - "2023-11-21": 5.151585313659906, - "2023-12-25": 9.149507156208006, - "2023-09-22": 4.0174323993151315, - "2023-10-02": 4.240604838018363, - "2024-03-27": 9.530620275925159, - "2023-04-28": 5.918340507407042, - "2023-08-04": 4.989695865814147, - "2023-08-30": 4.5803978755026575, - "2023-04-24": 5.926552294944643, - "2023-10-06": 4.048897467923469, - "2023-10-13": 3.6871838843237428, - "2023-06-28": 4.993059683073883, - "2024-02-05": 6.813128792038786, - "2024-03-01": 8.41312640343226, - "2023-07-15": 5.470207541513792, - "2023-06-25": 5.1558525668820145, - "2023-12-10": 7.2155772210398, - "2023-11-23": 5.153706900680404, - "2024-01-13": 7.643389378312459, - "2024-03-28": 9.513141825677437, - "2023-08-05": 4.953626193923668, - "2024-02-09": 7.149676025690591, - "2023-10-09": 3.859030985164931, - "2023-05-24": 5.282933693265714, - "2024-01-09": 7.237066649357808, - "2023-12-08": 6.590747836803958, - "2023-05-27": 5.2945822218005905, - "2023-08-18": 4.498709434822933, - "2023-11-05": 4.783467748541888, - "2024-04-18": 6.668463501424911, - "2023-10-22": 3.8740762797054193, - "2023-11-01": 4.421399736744191, - "2023-05-07": 5.667886916505366, - "2024-04-12": 8.0271127536223, - "2024-03-12": 10.671765688631567, - "2023-09-11": 4.014575442193571, - "2024-03-03": 9.326542147906453, - "2024-02-04": 6.769230252862828, - "2024-01-28": 6.703173365813255, - "2023-04-18": 6.879391800560817, - "2023-07-06": 5.181682510604131, - "2023-07-01": 5.282100145045606, - "2023-05-18": 5.404279607914082, - "2023-11-07": 4.916577126290277, - "2023-11-25": 5.302652912005635, - "2023-06-04": 5.344390268913719, - "2024-02-25": 7.76668529628665, - "2023-12-01": 5.441154869629504, - "2023-07-14": 5.602720873468339, - "2024-01-26": 6.571900191511484, - "2023-08-03": 5.017874421410448, - "2024-02-28": 8.373272990211419, - "2023-09-15": 4.090203381032591, - "2023-07-18": 5.2218149185149905, - "2023-04-21": 6.046059988385656, - "2023-12-21": 7.592118547569272, - "2023-07-20": 5.309930163507383, - "2024-03-06": 10.015215053841649, - "2023-09-30": 4.0881474306937715, - "2023-12-12": 7.070862636326095, - "2024-02-13": 7.342651152906663, - "2023-05-19": 5.356659844937126, - "2023-09-20": 4.118923988804985, - "2023-09-19": 4.122685410050698, - "2023-09-29": 4.079388401217121, - "2023-09-12": 4.004034882445894, - "2023-06-13": 4.607214989831707, - "2023-10-04": 4.031154537119691, - "2023-07-08": 5.149452752354684, - "2024-04-16": 6.622049592348546, - "2024-03-02": 9.010551744585914, - "2023-06-27": 5.0952860814835965, - "2023-10-08": 4.026539116057179, - "2023-11-20": 5.433917727053283, - "2023-12-20": 6.95660516013996, - "2023-12-31": 8.459009927802107, - "2023-11-06": 4.854963211083779, - "2023-08-22": 4.3979242326923424, - "2023-06-09": 5.0074092210743, - "2024-03-17": 9.833929840523194, - "2023-09-18": 4.128763461592389, - "2024-04-01": 9.23983325655996, - "2024-01-19": 6.891909608149467, - "2023-11-11": 5.340549091076539, - "2023-05-14": 5.366839888951122, - "2023-05-13": 5.358525654414578, - "2023-05-06": 5.737894413126571, - "2023-11-19": 5.2886213868104806, - "2023-05-16": 5.280601479713382, - "2023-09-23": 4.014401970617516, - "2023-07-02": 5.315150185111913, - "2023-08-15": 4.953364541940718, - "2024-01-25": 6.449650924591802, - "2024-03-13": 10.97011272287488, - "2024-01-21": 6.893850570026216, - "2024-02-01": 6.674339453749706, - "2023-06-15": 4.373263375800788, - "2024-03-16": 10.277233612949106, - "2023-11-27": 5.158126219320341, - "2024-01-10": 7.1668696701603665, - "2024-03-15": 10.58214461391164, - "2023-06-21": 4.721892825312076, - "2024-01-02": 8.653647503141281, - "2023-04-26": 6.041197904853099, - "2023-07-11": 5.140464635876311, - "2023-10-25": 4.245897032134862, - "2024-01-01": 8.269085741760685, - "2024-02-14": 7.612919533186069, - "2023-09-04": 4.259942273274167, - "2023-09-06": 4.237533169375419, - "2024-04-03": 8.624407554726387, - "2024-03-08": 10.451087726401235, - "2023-11-28": 5.187443701456288, - "2023-12-03": 5.485206424471288, - "2023-08-02": 5.137114766920277, - "2023-08-27": 4.5107123895244685, - "2023-10-20": 3.7227185059968337, - "2023-05-25": 5.25114753818822, - "2023-10-10": 3.823925358446621, - "2024-04-11": 8.349820958299631, - "2023-06-22": 4.868460406529219, - "2024-01-14": 7.577227856093514, - "2023-12-15": 7.226676839275065, - "2023-10-19": 3.629353574272913, - "2024-02-08": 6.966890486168345, - "2023-11-08": 4.9669961214556935, - "2023-11-12": 5.713741251888236, - "2023-12-22": 8.05223977011336, - "2023-05-20": 5.402567354811635, - "2023-05-31": 5.317153308753068, - "2024-03-23": 9.082950215365134, - "2024-04-10": 8.410504505754734, - "2023-09-27": 4.002105500748494, - "2024-03-04": 9.915134326970813, - "2023-09-10": 4.161841200716067, - "2024-04-13": 6.978564515105198, - "2024-02-29": 8.590396534222995, - "2023-07-22": 5.371537416380274, - "2023-07-21": 5.496782194180252, - "2023-06-30": 5.104281128363649, - "2023-12-29": 8.404418431213792, - "2023-12-04": 5.601053918696098, - "2023-09-21": 4.048295718181587, - "2023-06-02": 5.260242766843713, - "2023-10-11": 3.7509178162410177, - "2023-07-19": 5.201815576604147, - "2023-05-05": 5.776547824377795, - "2024-03-21": 9.362065316298034, - "2024-04-08": 8.973088656233942, - "2023-04-29": 5.994118823039421, - "2023-06-14": 4.6442968847563435, - "2023-10-05": 4.0366968890536326, - "2023-10-16": 3.7837115187201915, - "2024-02-10": 7.1985822620287925, - "2024-04-07": 8.631902802973045, - "2023-05-21": 5.334977111091413, - "2024-02-20": 7.7843326775472415, - "2023-11-17": 5.308632523731871, - "2023-12-11": 6.699670575120531, - "2023-11-26": 5.323354623814405, - "2023-11-16": 5.564611664035305, - "2023-06-29": 4.975383264956682, - "2023-06-11": 4.486152223173957, - "2024-02-02": 6.89326520545004, - "2023-09-14": 4.035223437573182, - "2024-01-27": 6.667599266186798, - "2024-03-30": 9.545530250313845, - "2023-05-04": 5.739867216635301, - "2023-09-28": 4.0421408096439375, - "2023-10-27": 4.150650321730372, - "2023-05-01": 5.785397170040613, - "2023-05-15": 5.385321780645864, - "2023-11-22": 5.08913893529261, - "2023-06-03": 5.281709785615323, - "2024-01-18": 7.174636737384223, - "2023-08-26": 4.495412656298002, - "2024-02-15": 7.742747302683844, - "2023-10-28": 4.179391562850591, - "2024-03-24": 9.186258283925916, - "2023-04-22": 5.911442349288414, - "2023-12-06": 5.985462378229024, - "2023-11-10": 5.130006536784694, - "2024-01-30": 7.002354129882651, - "2023-08-09": 5.0447498559618165, - "2023-05-02": 5.685306225843434, - "2023-11-14": 5.325070797731877, - "2024-01-23": 6.2145642245852635, - "2024-01-31": 6.778636816612441, - "2024-01-11": 8.206064229717917, - "2024-02-18": 7.77788078761179, - "2023-06-16": 4.371570117274789, - "2023-10-30": 4.334196774501188, - "2023-12-17": 6.966419611156287, - "2024-02-26": 7.851105876594913, - "2023-07-16": 5.377295104302859, - "2024-01-05": 7.513882001813149, - "2023-08-23": 4.422665131923296, - "2024-03-11": 10.791707613475035, - "2023-08-01": 5.08741849673627, - "2024-03-14": 11.302102192833626, - "2024-02-21": 7.386575793379833, - "2023-08-28": 4.480485243577749, - "2023-07-04": 5.443762945082033, - "2023-12-13": 6.967621242770004, - "2023-08-13": 5.027595270485346, - "2024-03-31": 9.56145476179737, - "2023-12-09": 7.404075277521885, - "2024-04-02": 8.608313243001646, - "2024-02-06": 6.736919547325696, - "2024-04-09": 8.89810342324335, - "2023-05-30": 5.464054108054988, - "2023-11-04": 4.656330474048418, - "2024-01-15": 7.57150582344394, - "2023-07-03": 5.474061883378475, - "2023-12-28": 8.543774048612548, - "2023-04-23": 5.905764138993085, - "2023-04-17": 6.706987797436194, - "2023-05-08": 5.422418257470877, - "2024-02-27": 8.130652781723887, - "2024-02-07": 6.796621590380047, - "2023-09-25": 4.038179357258926, - "2024-03-19": 9.133879189340336, - "2024-03-10": 10.403786103975884, - "2023-09-02": 4.239723141516748, - "2024-01-12": 8.02938506946606, - "2023-11-29": 5.2431428754958755, - "2023-10-15": 3.7473114327921864, - "2023-11-30": 5.211948084083127, - "2024-01-24": 6.390470509118657, - "2023-08-11": 4.99393863777179, - "2024-02-11": 7.209327686104042, - "2023-06-08": 5.020734577179987, - "2023-08-16": 4.741531444093875, - "2023-11-15": 5.4115417288787375, - "2023-12-16": 7.123739188290528, - "2024-03-29": 9.51882208981598, - "2024-04-04": 8.489977319525522, - "2023-06-10": 4.4450580485422355, - "2023-07-28": 5.216679914646218, - "2024-01-20": 6.847724164528837, - "2023-10-21": 3.816302464965459, - "2023-05-12": 5.237911543514087, - "2023-11-03": 4.550909804045139, - "2023-08-31": 4.440870479296971, - "2024-01-29": 6.887089045127258, - "2024-01-04": 7.707340308594444, - "2023-05-22": 5.306177826597353, - "2023-07-26": 5.20049569065863, - "2023-11-13": 5.594095459347543, - "2024-03-25": 9.5110282926903, - "2023-08-07": 4.983187142321958, - "2023-10-29": 4.219317338790286, - "2023-07-25": 5.182695224237276, - "2023-05-17": 5.314540317923296, - "2023-10-24": 4.28191451349379, - "2023-06-05": 5.245326172609994, - "2023-11-02": 4.662765621837874, - "2023-12-18": 6.671951479077062, - "2023-11-24": 5.208688544541096, - "2023-08-21": 4.4765316220169336, - "2023-08-14": 4.992707339359295, - "2023-05-26": 5.234573703874257, - "2024-03-05": 9.975844990074421, - "2024-04-06": 8.430901572659053, - "2023-12-23": 7.86043044015469, - "2024-02-03": 6.893275590967998, - "2024-02-16": 7.755411327172226, - "2023-05-28": 5.386501264160825, - "2023-12-14": 7.3952247364044945, - "2023-06-24": 5.045631625003616, - "2023-12-26": 9.036949430239972, - "2023-11-09": 5.095962943486104, - "2023-05-11": 5.340975336505662, - "2023-08-19": 4.494624131999665, - "2023-06-23": 4.933658946477332, - "2023-06-18": 4.578887771453305, - "2023-08-08": 5.007309280284466, - "2023-08-17": 4.698959548383292, - "2024-04-14": 6.6045834631629745, - "2023-07-24": 5.218677131768503, - "2023-10-14": 3.7373913744757603, - "2024-01-17": 7.395270778871426, - "2023-04-19": 6.464181135414925, - "2024-04-14T03": 6.347108560000001, - "2024-04-11T16": 8.2331883, - "2024-04-16T02": 6.62338356, - "2024-04-13T04": 7.20000786, - "2024-04-18T09": 6.60538684, - "2024-04-12T19": 6.8991720654168, - "2024-04-15T06": 7.0500019499999995, - "2024-04-14T19": 6.614520989999999, - "2024-04-15T01": 6.74334224, - "2024-04-17T20": 6.61260322, - "2024-04-11T17": 8.28645745657574, - "2024-04-18T10": 6.6133224, - "2024-04-12T14": 8.17948131, - "2024-04-12T20": 7.064129126897425, - "2024-04-15T12": 7.1028831199999996, - "2024-04-14T23": 6.893884480884995, - "2024-04-13T07": 7.276109459999999, - "2024-04-14T20": 6.5769725, - "2024-04-17T00": 6.68320473, - "2024-04-15T00": 6.79938542, - "2024-04-14T01": 6.303298711974815, - "2024-04-17T22": 6.623867519999999, - "2024-04-17T09": 6.6710006, - "2024-04-15T14": 6.96180033, - "2024-04-15T20": 6.66679888, - "2024-04-16T10": 6.57375982, - "2024-04-16T18": 6.620720939999999, - "2024-04-18T04": 6.67353282, - "2024-04-15T02": 6.723984904603185, - "2024-04-15T16": 6.7943955, - "2024-04-14T05": 6.606773680000001, - "2024-04-17T08": 6.6569965, - "2024-04-14T13": 6.62937926, - "2024-04-14T10": 6.77418237, - "2024-04-13T14": 7.125424799999999, - "2024-04-17T10": 6.625311, - "2024-04-14T15": 6.5579668, - "2024-04-14T12": 6.6433864, - "2024-04-16T09": 6.75409312, - "2024-04-17T02": 6.66479901, - "2024-04-11T23": 8.36175249, - "2024-04-12T09": 8.38340685, - "2024-04-14T18": 6.6420584, - "2024-04-14T09": 6.7543755, - "2024-04-16T20": 6.63132015, - "2024-04-18T00": 6.52260862, - "2024-04-15T23": 6.7064751000000005, - "2024-04-12T22": 7.184114083567105, - "2024-04-12T00": 8.412588840000002, - "2024-04-15T13": 7.11918831, - "2024-04-18T08": 6.526305, - "2024-04-13T20": 5.9888960670109554, - "2024-04-17T05": 6.707341199999999, - "2024-04-15T18": 6.59542784, - "2024-04-16T01": 6.676869, - "2024-04-14T11": 6.63625017, - "2024-04-11T20": 8.323083230000002, - "2024-04-13T13": 7.1994396, - "2024-04-12T16": 8.079715479999999, - "2024-04-17T03": 6.697339199999999, - "2024-04-16T06": 6.65387325346275, - "2024-04-17T12": 6.523194800000001, - "2024-04-11T22": 8.3488348, - "2024-04-15T05": 6.831801256582159, - "2024-04-18T14": 6.7443705, - "2024-04-12T12": 8.38206525, - "2024-04-17T14": 6.449864021728511, - "2024-04-13T03": 7.11749436, - "2024-04-18T07": 6.526305, - "2024-04-16T00": 6.6418592, - "2024-04-12T03": 8.444844400000001, - "2024-04-17T23": 6.5876706, - "2024-04-13T23": 6.441914583371652, - "2024-04-14T14": 6.507601999999999, - "2024-04-11T15": 8.26901496, - "2024-04-16T13": 6.54842202, - "2024-04-17T16": 6.4229357700000005, - "2024-04-16T22": 6.71621562, - "2024-04-15T15": 6.841350620000001, - "2024-04-16T12": 6.6373272, - "2024-04-18T13": 6.624119040000001, - "2024-04-16T05": 6.578879250000001, - "2024-04-17T17": 6.4798704, - "2024-04-12T13": 8.20629103, - "2024-04-12T23": 7.2286508141230055, - "2024-04-17T15": 6.40925636, - "2024-04-15T19": 6.623780820000001, - "2024-04-18T01": 6.6092068, - "2024-04-11T21": 8.281579670000001, - "2024-04-12T02": 8.45942295, - "2024-04-16T14": 6.530958699999999, - "2024-04-11T19": 8.282, - "2024-04-16T08": 6.74749565, - "2024-04-18T02": 6.63253569, - "2024-04-12T05": 8.4558455, - "2024-04-13T11": 7.2857285, - "2024-04-16T23": 6.720351300000001, - "2024-04-12T01": 8.43933756, - "2024-04-16T21": 6.721343999999999, - "2024-04-14T02": 6.346456460928129, - "2024-04-12T10": 8.41005545, - "2024-04-16T15": 6.43466567, - "2024-04-12T11": 8.43970723, - "2024-04-17T06": 6.6549959, - "2024-04-13T00": 7.250839985844124, - "2024-04-18T03": 6.69673212, - "2024-04-13T08": 7.21101852, - "2024-04-13T06": 7.286112359999999, - "2024-04-15T04": 6.71616747, - "2024-04-16T04": 6.5125148600000005, - "2024-04-14T16": 6.66846674, - "2024-04-16T07": 6.76071635, - "2024-04-18T05": 6.665133299999999, - "2024-04-13T02": 7.050762250000001, - "2024-04-15T09": 7.122826500000001, - "2024-04-13T05": 7.289113229999999, - "2024-04-15T17": 6.694579372000001, - "2024-04-16T16": 6.4482225, - "2024-04-15T21": 6.661130880000001, - "2024-04-12T17": 7.7105216400000005, - "2024-04-17T01": 6.66626576, - "2024-04-14T21": 6.5229563, - "2024-04-15T07": 7.13134125, - "2024-04-18T12": 6.63919021, - "2024-04-15T22": 6.6864038500000005, - "2024-04-13T22": 6.302583948779848, - "2024-04-15T08": 7.14163555, - "2024-04-14T22": 6.7958343800000005, - "2024-04-17T19": 6.61360316, - "2024-04-12T07": 8.39883202, - "2024-04-12T18": 6.8429309426512805, - "2024-04-14T04": 6.49366131, - "2024-04-16T17": 6.6006647325906735, - "2024-04-17T11": 6.5790765, - "2024-04-13T21": 6.011564336160795, - "2024-04-13T09": 7.205016840000001, - "2024-04-14T08": 6.785391, - "2024-04-15T11": 7.13040792, - "2024-04-11T14": 8.237589939025536, - "2024-04-17T13": 6.575794983248736, - "2024-04-14T06": 6.67987208, - "2024-04-13T19": 6.781141727592673, - "2024-04-14T07": 6.72350173, - "2024-04-13T16": 7.0074012, - "2024-04-15T10": 7.170740395065732, - "2024-04-12T06": 8.421589469999999, - "2024-04-13T15": 7.1604318, - "2024-04-12T15": 8.138684210000001, - "2024-04-11T18": 8.28491715, - "2024-04-17T18": 6.6886655500000005, - "2024-04-12T08": 8.360919599999999, - "2024-04-18T06": 6.533914620000001, - "2024-04-17T04": 6.75294528, - "2024-04-12T04": 8.461099800000001, - "2024-04-13T17": 6.761352, - "2024-04-16T19": 6.5997154799999995, - "2024-04-15T03": 6.74860716, - "2024-04-17T21": 6.64246856, - "2024-04-13T18": 6.779236409999999, - "2024-04-13T10": 7.224527700000001, - "2024-04-16T11": 6.671334150000001, - "2024-04-12T21": 7.1578567566495925, - "2024-04-14T00": 6.340959506133128, - "2024-04-18T11": 6.7240166, - "2024-04-17T07": 6.6396595000000005, - "2024-04-13T01": 7.137170769502196, - "2024-04-14T17": 6.53713632, - "2024-04-16T03": 6.6066416, - "2024-04-13T12": 7.2087208, - "latest": 6.91, - "2024-04-18T15": 6.76271745, - "2024-04-19": 6.786897838653705, - "2024-04-18T20": 6.753814461239075, - "2024-04-18T19": 6.737367, - "2024-04-19T01": 6.50882196, - "2024-04-19T03": 6.488389279999999, - "2024-04-18T21": 6.7913761500000005, - "2024-04-19T06": 6.69887516, - "2024-04-18T18": 6.67813725, - "2024-04-18T16": 6.7543755, - "2024-04-18T23": 6.7886465399999985, - "2024-04-19T04": 6.574577520000001, - "2024-04-19T05": 6.53576418, - "2024-04-19T00": 6.744100859999999, - "2024-04-18T22": 6.794037599999999, - "2024-04-18T17": 6.699816719999999, - "2024-04-19T02": 6.3615724899999995, - "2024-04-19T07": 6.764690750000001, - "2024-04-19T08": 6.74689992, - "2024-04-19T09": 6.8049928799999995, - "2024-04-19T10": 6.8084226, - "2024-04-19T11": 6.836069365312588, - "2024-04-19T12": 6.810141125774694, - "2024-04-19T13": 6.7716692300000005, - "2024-04-19T14": 6.770777832, - "2024-04-19T15": 6.80633347, - "2024-04-20": 6.80484775138866, - "2024-04-19T22": 6.762636399999999, - "2024-04-19T23": 6.652726500000001, - "2024-04-19T20": 6.7322209, - "2024-04-19T19": 6.773051264721043, - "2024-04-19T21": 6.76023014, - "2024-04-19T16": 6.7669761600000005, - "2024-04-19T17": 6.7831188, - "2024-04-20T00": 6.683605589999999, - "2024-04-19T18": 6.76350157, - "2024-04-20T01": 6.697328084001157, - "2024-04-21": 7.163077855736811, - "2024-04-20T16": 7.01303319, - "2024-04-20T19": 7.2011597, - "2024-04-20T15": 6.8817200000000005, - "2024-04-20T02": 6.7393579500000005, - "2024-04-20T09": 6.764961269999999, - "2024-04-20T04": 6.772150020214022, - "2024-04-20T10": 6.740954309999999, - "2024-04-20T22": 7.21045072, - "2024-04-21T00": 7.200591279999999, - "2024-04-20T12": 6.76442023, - "2024-04-21T04": 7.1960210600000005, - "2024-04-20T05": 6.767503049999999, - "2024-04-20T18": 7.197518250000001, - "2024-04-20T11": 6.7535529599999995, - "2024-04-20T23": 7.21323541, - "2024-04-20T08": 6.794241359999999, - "2024-04-20T13": 6.7834920400000005, - "2024-04-21T02": 7.240702123417731, - "2024-04-21T01": 7.20637732, - "2024-04-20T20": 7.2471735, - "2024-04-20T03": 6.722352, - "2024-04-20T14": 6.795266294650373, - "2024-04-20T07": 6.8183174399999995, - "2024-04-20T17": 7.153502850000001, - "2024-04-20T21": 7.24907407, - "2024-04-20T06": 6.78957906, - "2024-04-21T03": 7.2561187899999995, - "2024-04-21T16": 7.037759, - "2024-04-21T11": 7.19251011, - "2024-04-21T17": 7.044549460000001, - "2024-04-21T08": 7.189191893092488, - "2024-04-21T12": 7.156431, - "2024-04-21T15": 7.102994280000001, - "2024-04-21T06": 7.19694954, - "2024-04-21T07": 7.18522673, - "2024-04-21T14": 7.095560680000001, - "2024-04-21T13": 7.1117775000000005, - "2024-04-21T05": 7.209026520000001, - "2024-04-21T10": 7.1509298999999995, - "2024-04-21T09": 7.175295360000001, - "2024-04-21T19": 7.09921297, - "2024-04-21T22": 7.149857879999999, - "2024-04-21T23": 7.131354699999999, - "2024-04-21T21": 7.174743607122724, - "2024-04-21T20": 7.1157115, - "2024-04-21T18": 7.067460238500641, - "2024-04-22": 7.445049801772979, - "2024-04-22T00": 7.16178771, - "2024-04-22T07": 7.465327380000001, - "2024-04-22T05": 7.403182, - "2024-04-22T04": 7.3029712700000005, - "2024-04-22T02": 7.13399862, - "2024-04-22T01": 7.13685632, - "2024-04-22T06": 7.487742, - "2024-04-22T03": 7.252213960876382, - "2024-04-22T08": 7.4595788800000005, - "2024-04-22T09": 7.46390979, - "2024-04-22T10": 7.523384, - "2024-04-22T11": 7.464655890000001, - "2024-04-22T12": 7.4289704, - "2024-04-22T13": 7.421448269999999, - "2024-04-22T14": 7.4349728, - "2024-04-22T15": 7.40277349, - "2024-04-22T16": 7.4236358000000005, - "2024-04-23": 7.400339799352148, - "2024-04-23T03": 7.39906725, - "2024-04-22T19": 7.45383138, - "2024-04-22T17": 7.435898869999999, - "2024-04-22T23": 7.5052565910863835, - "2024-04-22T20": 7.50317529, - "2024-04-22T21": 7.5192551000000005, - "2024-04-22T18": 7.46013194, - "2024-04-23T06": 7.463177039999999, - "2024-04-22T22": 7.5212557, - "2024-04-23T04": 7.40306945, - "2024-04-23T01": 7.488919539999999, - "2024-04-23T07": 7.3613111, - "2024-04-23T00": 7.497657399399738, - "2024-04-23T05": 7.4364592, - "2024-04-23T02": 7.464516885969029, - "2024-04-23T08": 7.399441009999999, - "2024-04-23T09": 7.4085921, - "2024-04-23T10": 7.4291931799999995, - "2024-04-23T11": 7.36445967, - "2024-04-23T12": 7.3757280100000004, - "2024-04-23T13": 7.37502252, - "2024-04-23T14": 7.484441259999999, - "2024-04-23T15": 7.4582368, - "2024-04-23T16": 7.41025953, - "2024-04-24": 7.244982081333065, - "2024-04-24T02": 7.2695442830822685, - "2024-04-24T00": 7.258222789950624, - "2024-04-24T01": 7.2977297, - "2024-04-23T23": 7.235852095822656, - "2024-04-24T06": 7.38829552, - "2024-04-23T22": 7.262167746797499, - "2024-04-23T18": 7.3716951, - "2024-04-23T20": 7.3437342999999995, - "2024-04-23T21": 7.289364450000001, - "2024-04-24T04": 7.371, - "2024-04-24T05": 7.4035182100000005, - "2024-04-24T03": 7.2830039229649755, - "2024-04-24T07": 7.4309256900000005, - "2024-04-23T19": 7.371474, - "2024-04-23T17": 7.401850000000001, - "2024-04-24T08": 7.456677996, - "2024-04-24T09": 7.45692543, - "2024-04-24T10": 7.447255200000001, - "2024-04-24T11": 7.44192558, - "2024-04-24T12": 7.40792592, - "2024-04-24T13": 7.2823445300000005, - "2024-04-24T14": 7.09472272, - "2024-04-24T15": 7.08031632, - "2024-04-25": 6.9273801290111185, - "2024-04-24T18": 7.040759759999999, - "2024-04-25T00": 6.964516000000001, - "2024-04-24T21": 6.994629090000001, - "2024-04-24T17": 7.086537545563882, - "2024-04-24T16": 7.02306488, - "2024-04-24T20": 7.005829439999999, - "2024-04-24T23": 6.9042006, - "2024-04-24T22": 6.9424416, - "2024-04-24T19": 7.04392472, - "2024-04-25T01": 6.964488766338414, - "2024-04-25T03": 6.931197419999999, - "2024-04-25T06": 6.946471440000001, - "2024-04-25T05": 6.9400562400000005, - "2024-04-25T04": 6.9122715, - "2024-04-25T02": 6.93668178, - "2024-04-25T07": 6.898413000000001, - "2024-04-25T08": 6.8581478, - "2024-04-25T09": 6.8596278, - "2024-04-25T10": 6.768713699999999, - "2024-04-25T11": 6.80929725, - "2024-04-25T12": 6.817272000000001, - "2024-04-25T13": 6.7358886, - "2024-04-25T14": 6.820973250000001, - "2024-04-25T15": 6.88521105, - "2024-04-25T16": 6.906126849218327, - "2024-04-25T17": 6.93401709, - "2024-04-25T18": 6.93950088, - "2024-04-25T19": 6.92808898, - "2024-04-26": 6.861522896020573, - "2024-04-25T22": 6.88272468, - "2024-04-25T21": 6.955, - "2024-04-25T20": 6.945225740363014, - "2024-04-26T01": 6.775203250000001, - "2024-04-25T23": 6.849315, - "2024-04-26T00": 6.81245574787828, - "2024-04-26T05": 6.884926991190689, - "2024-04-26T07": 6.853, - "2024-04-26T02": 6.8597256, - "2024-04-26T03": 6.84779456, - "2024-04-26T04": 6.84524694, - "2024-04-26T06": 6.905, - "2024-04-26T08": 6.8651373, - "2024-04-26T09": 6.8683131, - "2024-04-26T10": 6.87017548, - "2024-04-26T11": 6.89303484, - "2024-04-26T12": 6.90282632, - "2024-04-26T13": 6.8266344000000005, - "2024-04-26T14": 6.83356465, - "2024-04-26T15": 6.7651052400000005, - "2024-04-26T21": 6.82454228, - "2024-04-26T22": 6.74663785, - "2024-04-26T17": 6.81047919, - "2024-04-26T19": 6.856886422071275, - "2024-04-26T16": 6.80682112, - "2024-04-26T18": 6.8450143699999995, - "2024-04-26T20": 6.86886999, - "2024-04-27": 6.770546908089791, - "2024-04-26T23": 6.757058081510369, - "2024-04-27T00": 6.70292145, - "2024-04-27T01": 6.58628712, - "2024-04-28": 6.798679956019708, - "2024-04-27T13": 6.66666385, - "2024-04-28T00": 6.835348799999999, - "2024-04-27T20": 6.776429114962389, - "2024-04-27T23": 6.789409590799359, - "2024-04-27T06": 6.699138738993338, - "2024-04-27T05": 6.7261738200000005, - "2024-04-27T02": 6.67419748, - "2024-04-27T18": 6.76333008, - "2024-04-27T07": 6.6939812000000005, - "2024-04-27T04": 6.742154780000001, - "2024-04-27T21": 6.74247951, - "2024-04-27T09": 6.661733760000001, - "2024-04-27T14": 6.6857184, - "2024-04-27T22": 6.74441068, - "2024-04-27T16": 6.64447868, - "2024-04-27T10": 6.62855589, - "2024-04-27T17": 6.76146678, - "2024-04-27T08": 6.64494411, - "2024-04-27T12": 6.6456775, - "2024-04-27T15": 6.64887514, - "2024-04-27T11": 6.60490242, - "2024-04-27T03": 6.7082554, - "2024-04-27T19": 6.7672596, - "2024-04-28T01": 6.853542299999999, - "2024-04-28T20": 6.85846143, - "2024-04-28T14": 6.8547081599999995, - "2024-04-28T05": 6.890794049999999, - "2024-04-28T08": 6.90137298, - "2024-04-28T16": 6.8711192180000005, - "2024-04-28T11": 6.81811146, - "2024-04-28T22": 6.7872840000000005, - "2024-04-28T03": 6.925841999999999, - "2024-04-28T13": 6.86084256, - "2024-04-28T15": 6.85405149, - "2024-04-28T04": 6.8921382399999995, - "2024-04-28T09": 6.8886574099999995, - "2024-04-28T19": 6.887381799999999, - "2024-04-28T06": 6.903471573000001, - "2024-04-28T12": 6.814863719999999, - "2024-04-28T02": 6.89069008, - "2024-04-28T17": 6.867252000000001, - "2024-04-28T21": 6.8674581, - "2024-04-28T18": 6.880384459999999, - "2024-04-28T07": 6.9206372499999995, - "2024-04-28T10": 6.862155039999999, - "2024-04-29": 6.574278774779519, - "2024-04-28T23": 6.7275099, - "2024-04-29T00": 6.75204134, - "2024-04-29T01": 6.79382528, - "2024-04-29T06": 6.56847448, - "2024-04-29T02": 6.748245, - "2024-04-29T07": 6.57347408, - "2024-04-29T05": 6.68493024, - "2024-04-29T03": 6.69272814, - "2024-04-29T04": 6.71458964, - "2024-04-29T08": 6.531477440000001, - "2024-04-29T09": 6.52667365, - "2024-04-29T10": 6.513609160000001, - "2024-04-29T11": 6.5130895314168935, - "2024-04-29T12": 6.5235645, - "2024-04-29T13": 6.526586390915045, - "2024-04-29T14": 6.59087936, - "2024-04-29T15": 6.616, - "2024-04-30": 6.586828277249851, - "2024-04-30T04": 6.558878886762853, - "2024-04-29T21": 6.519782520000001, - "2024-04-30T03": 6.579498839999999, - "2024-04-29T22": 6.618689, - "2024-04-29T19": 6.53232065, - "2024-04-29T23": 6.6357298149359165, - "2024-04-29T18": 6.553623449999999, - "2024-04-30T00": 6.6082814, - "2024-04-29T20": 6.569002264230653, - "2024-04-30T01": 6.5877593999999995, - "2024-04-30T02": 6.52165136, - "2024-04-29T16": 6.580605139999999, - "2024-04-29T17": 6.59414265, - "2024-04-30T05": 6.5604907400000005, - "2024-04-30T06": 6.584814520000001, - "2024-04-30T07": 6.581417098178216, - "2024-04-30T08": 6.43190639, - "2024-04-30T09": 6.4039500799999995, - "2024-04-30T10": 6.37178913, - "2024-04-30T11": 6.298786363679892, - "2024-04-30T12": 6.220759719999999, - "2024-04-30T13": 6.215197069999999, - "2024-04-30T14": 6.22313604, - "2024-04-30T15": 6.157563359999999, - "2024-04-30T16": 6.095852, - "2024-05-01": 6.410132261271056, - "2024-04-30T22": 6.395802880000001, - "2024-04-30T17": 6.13221314, - "2024-04-30T20": 6.16822866, - "2024-04-30T23": 6.379614, - "2024-04-30T19": 6.1107606599999995, - "2024-04-30T18": 6.123606479999999, - "2024-05-01T01": 6.39721176, - "2024-05-01T00": 6.41632008, - "2024-04-30T21": 6.2018028, - "2024-05-01T02": 6.41442204, - "2024-05-01T03": 6.4342696, - "2024-05-01T05": 6.50965696, - "2024-05-01T04": 6.5075728999999995, - "2024-05-01T06": 6.47476659, - "2024-05-01T07": 6.34158852, - "2024-05-01T08": 6.19512219, - "2024-05-01T09": 6.365055, - "2024-05-01T10": 6.4624301, - "2024-05-01T11": 6.46449248, - "2024-05-01T12": 6.559613506, - "2024-05-01T13": 6.60325017, - "2024-05-01T15": 6.52023168, - "2024-05-01T16": 6.4665177499999995, - "2024-05-01T14": 6.55065504, - "2024-05-01T21": 6.79313565, - "2024-05-01T20": 6.773534897348997, - "2024-05-01T17": 6.51497671, - "2024-05-01T19": 6.745841820000001, - "2024-05-01T18": 6.726918, - "2024-05-01T22": 6.88693038, - "2024-05-02": 6.855796299781072, - "2024-05-02T03": 6.842151, - "2024-05-02T01": 6.770544200000001, - "2024-05-02T02": 6.81452005, - "2024-05-01T23": 6.849899750089205, - "2024-05-02T00": 6.854902434446587, - "2024-05-02T04": 6.87436098, - "2024-05-02T06": 6.88596957, - "2024-05-02T07": 6.858195899999999, - "2024-05-02T05": 6.85248395, - "2024-05-02T08": 6.898720140000001, - "2024-05-02T09": 6.95445142, - "2024-05-02T10": 6.98934304, - "2024-05-02T11": 7.0574584, - "2024-05-02T12": 7.010003520157933, - "2024-05-02T13": 6.94802714, - "2024-05-02T14": 6.97202378, - "2024-05-02T15": 7.031289055, - "2024-05-02T16": 7.0100701, - "2024-05-02T17": 7.0101401999999995, - "2024-05-03T04": 7.20107201, - "2024-05-03T02": 7.26901752, - "2024-05-03T03": 7.220938599999999, - "2024-05-03T05": 7.22650582, - "2024-05-03T06": 7.183861959999999, - "2024-05-03T00": 7.26738181956537, - "2024-05-03T08": 7.045070450000001, - "2024-05-03T07": 7.1167115999999995, - "2024-05-03T01": 7.26450848, - "2024-05-03T09": 7.04477484, - "2024-05-03T10": 7.049563920000001, - "2024-05-03T11": 7.04592954, - "2024-05-03T12": 7.157570520000001, - "2024-05-03T13": 7.204, - "2024-05-03T14": 7.204080450000001, - "2024-05-03T15": 7.238598934120032, - "2024-05-03": 7.220233119928438, - "2024-05-04": 7.174342186885822, - "2024-05-04T05": 7.187083649999999, - "2024-05-03T18": 7.26552544, - "2024-05-04T03": 7.167576520000001, - "2024-05-03T17": 7.29426052, - "2024-05-03T21": 7.29972096, - "2024-05-03T20": 7.327437416986832, - "2024-05-04T06": 7.172007600000001, - "2024-05-03T22": 7.28012911, - "2024-05-03T19": 7.2481738, - "2024-05-04T02": 7.189581360000001, - "2024-05-03T16": 7.272890459999999, - "2024-05-04T01": 7.20637732, - "2024-05-04T04": 7.172007600000001, - "2024-05-03T23": 7.265863124138805, - "2024-05-04T00": 7.210522800000001, - "2024-05-04T13": 7.16414608, - "2024-05-04T10": 7.189143779999999, - "2024-05-04T12": 7.2027202, - "2024-05-04T07": 7.151287000000001, - "2024-05-04T11": 7.1827182, - "2024-05-04T09": 7.1651462399999994, - "2024-05-04T15": 7.1954388, - "2024-05-04T08": 7.165361159999999, - "2024-05-04T14": 7.175434800000001, - "2024-05-05": 7.100954997923754, - "2024-05-05T01": 7.0919218299999995, - "2024-05-04T19": 7.167358350000001, - "2024-05-04T20": 7.19328772, - "2024-05-05T05": 7.0589175399999995, - "2024-05-05T07": 7.0757075, - "2024-05-04T23": 7.1417141, - "2024-05-04T22": 7.1337133, - "2024-05-04T21": 7.155143099999999, - "2024-05-05T00": 7.11006635, - "2024-05-05T08": 7.099780890000001, - "2024-05-04T17": 7.16642996, - "2024-05-05T09": 7.100851999999999, - "2024-05-05T10": 7.068060050000001, - "2024-05-05T04": 7.082520607999999, - "2024-05-04T16": 7.17807655, - "2024-05-05T06": 7.0517051, - "2024-05-05T03": 7.0939220899999995, - "2024-05-04T18": 7.175430499999999, - "2024-05-05T02": 7.103923389999999, - "2024-05-05T21": 7.35980949, - "2024-05-05T16": 7.28721861, - "2024-05-05T22": 7.329879479999999, - "2024-05-05T17": 7.252652679999999, - "2024-05-05T20": 7.306803660000001, - "2024-05-05T13": 7.062022257250626, - "2024-05-05T15": 7.2205053999999995, - "2024-05-05T12": 7.054128479999999, - "2024-05-05T18": 7.241303200000001, - "2024-05-05T14": 7.101348999999999, - "2024-05-05T19": 7.277164159999999, - "2024-05-05T11": 7.0711312, - "2024-05-05T23": 7.312658079999999, - "2024-05-06T00": 7.2797279, - "2024-05-06T08": 7.41, - "2024-05-06T02": 7.271654389999999, - "2024-05-06T05": 7.3113655500000005, - "2024-05-06T06": 7.3701474, - "2024-05-06T07": 7.37144226, - "2024-05-06T04": 7.255471715571856, - "2024-05-06T01": 7.2912393, - "2024-05-06T03": 7.2504349999999995, - "2024-05-06T09": 7.42, - "2024-05-06T10": 7.309024995863981, - "2024-05-06T11": 7.29758376, - "2024-05-06T13": 7.20550435, - "2024-05-06T12": 7.2217221, - "2024-05-06T14": 7.1717171, - "2024-05-06T15": 7.1104266, - "2024-05-06T17": 7.17792822, - "2024-05-06T16": 7.1657165, - "2024-05-06T19": 7.176712919999999, - "2024-05-06T18": 7.211, - "2024-05-06": 7.258702966184163, - "2024-05-07": 7.134273245878795, - "2024-05-06T22": 7.17121513, - "2024-05-07T07": 7.16257296, - "2024-05-07T01": 7.149142, - "2024-05-07T00": 7.1248575, - "2024-05-06T21": 7.20642344, - "2024-05-06T20": 7.21106244, - "2024-05-06T23": 7.143928560000001, - "2024-05-07T04": 7.11371544, - "2024-05-07T03": 7.07785844, - "2024-05-07T02": 7.17270868, - "2024-05-07T05": 7.11671532, - "2024-05-07T08": 7.238144759999999, - "2024-05-07T09": 7.275, - "2024-05-07T10": 7.2152886, - "2024-05-07T11": 7.180359, - "2024-05-07T12": 7.168071680000001, - "2024-05-07T13": 7.1867186, - "2024-05-07T14": 7.18492815, - "2024-05-07T15": 7.24913, - "2024-05-08": 7.031337944333356, - "2024-05-09": 6.979259947747994, - "2024-05-10": 7.018267506933471, - "2024-05-09T13": 6.88831251, - "2024-05-10T00": 7.0240165, - "2024-05-08T08": 7.0712928, - "2024-05-09T14": 6.90240888, - "2024-05-08T10": 7.0291564, - "2024-05-09T04": 7.04340603, - "2024-05-10T01": 7.064293500000001, - "2024-05-08T03": 7.085149680000001, - "2024-05-09T07": 6.95145295, - "2024-05-09T11": 6.8162724, - "2024-05-09T00": 7.0380427800000005, - "2024-05-09T01": 7.0259072399999996, - "2024-05-10T06": 7.07807973, - "2024-05-09T19": 7.012158439999999, - "2024-05-10T05": 7.0690809, - "2024-05-10T02": 7.07136352, - "2024-05-09T23": 7.0430842799999995, - "2024-05-09T06": 7.00935324, - "2024-05-08T01": 7.0052994, - "2024-05-09T09": 6.8635665, - "2024-05-09T20": 7.02450825, - "2024-05-08T19": 7.059167760890231, - "2024-05-09T03": 7.003426429999999, - "2024-05-08T21": 6.96911783, - "2024-05-09T22": 7.0427320799999995, - "2024-05-08T17": 7.11950459, - "2024-05-09T05": 7.025274629999999, - "2024-05-08T06": 7.04580201, - "2024-05-08T15": 7.12650312, - "2024-05-10T08": 7.09214884, - "2024-05-08T07": 7.016526219999999, - "2024-05-08T04": 7.04515448, - "2024-05-09T15": 6.94473444, - "2024-05-08T18": 7.10636516, - "2024-05-09T10": 6.818247899999999, - "2024-05-09T21": 7.011966509367403, - "2024-05-10T03": 7.093932440000001, - "2024-05-08T00": 6.979930200000001, - "2024-05-10T07": 7.10100572, - "2024-05-08T14": 7.089738408039099, - "2024-05-09T17": 6.97497667, - "2024-05-08T13": 6.981324079999999, - "2024-05-08T05": 7.0298047299999995, - "2024-05-09T18": 6.9729075, - "2024-05-09T08": 6.893182683, - "2024-05-08T20": 6.97088448, - "2024-05-08T22": 6.988832789999999, - "2024-05-08T11": 6.96744256, - "2024-05-09T12": 6.871975, - "2024-05-08T02": 7.05808233, - "2024-05-10T04": 7.11800334, - "2024-05-08T12": 6.93423715, - "2024-05-09T02": 7.006001322435758, - "2024-05-08T09": 7.02422725, - "2024-05-09T16": 6.9915521, - "2024-05-08T16": 7.113007800000001, - "2024-05-08T23": 6.9931316400000005, - "2024-05-10T09": 7.08115016, - "2024-05-10T10": 7.08700768, - "2024-05-10T11": 7.0889074139999995, - "2024-05-10T12": 7.10092899, - "2024-05-10T13": 7.0693637, - "2024-05-10T14": 6.92182309, - "2024-05-11": 6.722495889887673, - "2024-05-12": 6.697479488778155, - "2024-05-12T16": 6.762294, - "2024-05-11T03": 6.73091277, - "2024-05-10T17": 6.7969603, - "2024-05-11T16": 6.724437954218113, - "2024-05-10T15": 6.86476412, - "2024-05-11T04": 6.7291826299999995, - "2024-05-11T12": 6.7009832000000005, - "2024-05-12T15": 6.7426202412196945, - "2024-05-11T11": 6.66306696, - "2024-05-12T04": 6.70624931, - "2024-05-12T11": 6.72343469, - "2024-05-11T22": 6.68252952, - "2024-05-11T21": 6.6955266600000005, - "2024-05-10T21": 6.7869633, - "2024-05-10T23": 6.763176448, - "2024-05-12T00": 6.6919918, - "2024-05-12T03": 6.6903228, - "2024-05-12T12": 6.735828118, - "2024-05-11T08": 6.72929205406073, - "2024-05-11T17": 6.71571588, - "2024-05-12T19": 6.676262056, - "2024-05-11T23": 6.66426684, - "2024-05-11T05": 6.75117669, - "2024-05-12T02": 6.6813264000000006, - "2024-05-11T02": 6.7431114, - "2024-05-10T16": 6.8128192, - "2024-05-12T14": 6.73596745, - "2024-05-11T09": 6.70212288, - "2024-05-10T18": 6.8019588, - "2024-05-10T19": 6.81372784, - "2024-05-11T06": 6.77023928, - "2024-05-12T08": 6.6665991600000005, - "2024-05-10T20": 6.78197298135448, - "2024-05-11T18": 6.72231, - "2024-05-12T05": 6.7053168, - "2024-05-12T06": 6.69732, - "2024-05-11T20": 6.7096508, - "2024-05-12T09": 6.67426243, - "2024-05-11T01": 6.76944267, - "2024-05-11T00": 6.74644796, - "2024-05-12T07": 6.660667950000001, - "2024-05-12T10": 6.72304056, - "2024-05-11T10": 6.667131899999999, - "2024-05-12T01": 6.6963204, - "2024-05-12T18": 6.69665535, - "2024-05-12T13": 6.7338336100000005, - "2024-05-11T19": 6.7203108, - "2024-05-12T17": 6.7196473, - "2024-05-11T14": 6.717625613193778, - "2024-05-11T07": 6.768172099999999, - "2024-05-11T15": 6.7420322, - "2024-05-11T13": 6.71324644, - "2024-05-10T22": 6.7323165000000005, - "2024-05-13": 6.690401773822745, - "2024-05-12T21": 6.6288117699999995, - "2024-05-13T00": 6.6527385599999995, - "2024-05-13T03": 6.47918532, - "2024-05-12T23": 6.62088672, - "2024-05-13T04": 6.475251210000001, - "2024-05-13T01": 6.5866938500000005, - "2024-05-13T05": 6.47618616, - "2024-05-13T02": 6.512980349999999, - "2024-05-13T07": 6.644952683279851, - "2024-05-13T06": 6.55916292, - "2024-05-12T22": 6.629148239999999, - "2024-05-12T20": 6.67346312, - "2024-05-13T08": 6.74116752, - "2024-05-13T10": 6.732306, - "2024-05-13T09": 6.7650897599999995, - "2024-05-13T11": 6.71471622, - "2024-05-13T12": 6.7056262076448565, - "2024-05-13T13": 6.716260040799156, - "2024-05-13T14": 6.74211168, - "2024-05-13T15": 6.74638048, - "2024-05-13T16": 6.794640800000001, - "2024-05-14": 6.6092648870198305, - "2024-05-13T17": 6.700050028296729, - "2024-05-14T01": 6.6606676, - "2024-05-14T02": 6.63320855, - "2024-05-14T06": 6.55458984, - "2024-05-13T19": 6.70693293, - "2024-05-13T22": 6.6633336, - "2024-05-14T04": 6.65040684, - "2024-05-13T21": 6.67359956, - "2024-05-14T03": 6.64354356, - "2024-05-14T00": 6.66073422, - "2024-05-14T07": 6.60149935, - "2024-05-13T20": 6.69466525, - "2024-05-14T05": 6.650388291625451, - "2024-05-13T23": 6.67353282, - "2024-05-13T18": 6.66773289, - "2024-05-14T08": 6.60564956772043, - "2024-05-14T09": 6.6018296, - "2024-05-14T10": 6.59789753, - "2024-05-14T11": 6.638546160000001, - "2024-05-14T12": 6.6408800999999995, - "2024-05-14T13": 6.64187948, - "2024-05-14T14": 6.60283759, - "2024-05-14T15": 6.6450106, - "2024-05-14T16": 6.6203568, - "2024-05-14T17": 6.55996166, - "2024-05-14T18": 6.55927392, - "2024-05-14T19": 6.5580628, - "2024-05-14T20": 6.55285312, - "2024-05-15": 6.51740303359209, - "2024-05-15T02": 6.51902097, - "2024-05-15T01": 6.51502341, - "2024-05-14T21": 6.53190912, - "2024-05-15T05": 6.49007815, - "2024-05-15T00": 6.496555, - "2024-05-15T06": 6.488120982767656, - "2024-05-15T03": 6.5220844, - "2024-05-15T07": 6.505552299318589, - "2024-05-14T23": 6.477984820807942, - "2024-05-15T04": 6.5067450000000004, - "2024-05-14T22": 6.497465, - "2024-05-15T08": 6.58895679, - "2024-05-15T09": 6.617940959999999, - "2024-05-15T10": 6.64726872, - "2024-05-15T11": 6.53708468, - "2024-05-15T12": 6.69626333, - "2024-05-15T13": 6.8497259999999995, - "2024-05-15T14": 6.865862679999999, - "2024-05-15T15": 6.87586248 - }, - "USD tron": { - "2023-07-30": 0.08335304153060019, - "2023-07-27": 0.08241805864690703, - "2023-07-10": 0.0774556504823514, - "2023-08-20": 0.07409392556220697, - "2024-02-23": 0.13905785237765805, - "2024-04-05": 0.1191802966137585, - "2023-12-19": 0.10083031758823104, - "2023-08-06": 0.07745158085191299, - "2023-12-02": 0.10318843723240881, - "2023-10-12": 0.08599260767038396, - "2023-10-31": 0.09560803605785642, - "2023-08-29": 0.07632111571481572, - "2023-06-20": 0.07018039259138857, - "2023-09-09": 0.07917325631656483, - "2023-06-26": 0.07317033476034196, - "2023-05-03": 0.06933020978184286, - "2023-10-23": 0.09046719247743572, - "2023-10-01": 0.08859752761626977, - "2024-03-07": 0.13770963138002507, - "2023-07-05": 0.07706116448449873, - "2023-07-29": 0.08519727829215551, - "2024-01-08": 0.10284984312512704, - "2023-05-29": 0.0774915009100919, - "2023-10-07": 0.08726708320454553, - "2023-09-26": 0.08465473914087057, - "2023-08-24": 0.07765947532097317, - "2023-12-05": 0.10379328193351972, - "2023-05-10": 0.06908338284401262, - "2024-02-19": 0.1351627841712278, - "2024-01-07": 0.10393858128063685, - "2023-10-18": 0.08859464082208804, - "2023-04-25": 0.06618447008218822, - "2023-07-31": 0.08008529543969552, - "2023-05-23": 0.07820039977938453, - "2023-08-25": 0.0765294731403425, - "2024-03-09": 0.1369946481944032, - "2023-07-12": 0.07733867708377302, - "2023-09-05": 0.07746144192051972, - "2023-06-07": 0.0782838420602655, - "2023-09-16": 0.08403279892823283, - "2023-08-12": 0.0771292689211512, - "2023-05-09": 0.06838084699928347, - "2023-09-01": 0.07667473589030928, - "2023-09-08": 0.07902387131676249, - "2024-03-22": 0.12112897070363206, - "2023-08-10": 0.0767276037602476, - "2023-12-07": 0.10475573310569285, - "2023-11-18": 0.10361356208223706, - "2023-07-13": 0.07790589297060665, - "2023-04-30": 0.06801005748550148, - "2023-06-06": 0.07838578501490799, - "2023-09-13": 0.08077382545807202, - "2023-06-17": 0.0705400501613137, - "2023-07-17": 0.07980552585576103, - "2023-07-07": 0.07727470178223907, - "2023-09-07": 0.07888242542468885, - "2024-02-22": 0.13991224706470956, - "2024-04-15": 0.11256614813573292, - "2023-12-30": 0.10585855963311074, - "2023-09-17": 0.08347918744420833, - "2023-04-20": 0.06586470291439277, - "2024-03-26": 0.12034021719235061, - "2023-04-27": 0.06520861237902999, - "2024-04-17": 0.11190749105019897, - "2024-02-12": 0.12429689824208151, - "2023-10-26": 0.09347630675262271, - "2024-01-03": 0.10826915565933709, - "2023-06-01": 0.07533391309690335, - "2024-01-22": 0.10887638233939832, - "2023-06-12": 0.07022219721996639, - "2023-10-03": 0.08758930871543516, - "2023-06-19": 0.07018382860931731, - "2023-07-09": 0.08005393790002556, - "2023-12-24": 0.10680403031076299, - "2023-09-24": 0.08360339914636672, - "2024-01-16": 0.10880173138517835, - "2023-10-17": 0.08894232568492802, - "2024-03-18": 0.1259950131038099, - "2024-02-17": 0.1328779948544962, - "2023-12-27": 0.10304717957124315, - "2023-07-23": 0.08369591639611575, - "2023-09-03": 0.07698901442081685, - "2024-02-24": 0.13803104053171447, - "2024-01-06": 0.10441187469142159, - "2024-03-20": 0.11265695416141719, - "2023-11-21": 0.10092799115441119, - "2023-12-25": 0.10622761283726725, - "2023-09-22": 0.0830503876584663, - "2023-10-02": 0.09015186188366497, - "2024-03-27": 0.12072241300313605, - "2023-04-28": 0.06587501374154577, - "2023-08-04": 0.07719584144724578, - "2023-08-30": 0.07734393115692609, - "2023-04-24": 0.06677089655324801, - "2023-10-06": 0.08826435461225611, - "2023-10-13": 0.08483080735798303, - "2023-06-28": 0.07433880456989636, - "2024-02-05": 0.11834042189415553, - "2024-03-01": 0.14037594217212887, - "2023-07-15": 0.07978805320143387, - "2023-06-25": 0.07218811016342418, - "2023-12-10": 0.10671183602618534, - "2023-11-23": 0.10120920982016213, - "2024-01-13": 0.1067722791540202, - "2024-03-28": 0.119376402059192, - "2023-08-05": 0.07672877063520818, - "2024-02-09": 0.12185926447301473, - "2023-10-09": 0.08803002052409638, - "2023-05-24": 0.07855795973767657, - "2024-01-09": 0.10431667546687105, - "2023-12-08": 0.1041475083166051, - "2023-05-27": 0.0754726619613156, - "2023-08-18": 0.0724471604422715, - "2023-11-05": 0.09771703785985167, - "2024-04-18": 0.10917613667350833, - "2023-10-22": 0.09157991442303488, - "2023-11-01": 0.09722524527632509, - "2023-05-07": 0.07044145564895381, - "2024-04-12": 0.12024253402495604, - "2024-03-12": 0.1336687143938387, - "2023-09-11": 0.07831731658259272, - "2024-03-03": 0.14129771714382258, - "2024-02-04": 0.11722974915540736, - "2024-01-28": 0.11246446263724409, - "2023-04-18": 0.06587672707939388, - "2023-07-06": 0.07702158089291028, - "2023-07-01": 0.07614705043899082, - "2023-05-18": 0.07094254173293467, - "2023-11-07": 0.09770370088039071, - "2023-11-25": 0.10466010803767789, - "2023-06-04": 0.08193029988947277, - "2024-02-25": 0.13740668983683751, - "2023-12-01": 0.10344635891806371, - "2023-07-14": 0.08163390821193223, - "2024-01-26": 0.11213249953719338, - "2023-08-03": 0.0764545069712791, - "2024-02-28": 0.14296420301519636, - "2023-09-15": 0.08366422206710869, - "2023-07-18": 0.07994692077801062, - "2023-04-21": 0.06550174725095531, - "2023-12-21": 0.1028468416604582, - "2023-07-20": 0.08031233498403667, - "2024-03-06": 0.13635969985825802, - "2023-09-30": 0.08906066929016349, - "2023-12-12": 0.10386208795836177, - "2024-02-13": 0.12493598706222737, - "2023-05-19": 0.07035171424189966, - "2023-09-20": 0.08454877568665307, - "2023-09-19": 0.08400016039254654, - "2023-09-29": 0.08672903243869512, - "2023-09-12": 0.07750575463475655, - "2023-06-13": 0.07108633682060583, - "2023-10-04": 0.09078937855423796, - "2023-07-08": 0.07881316456312555, - "2024-04-16": 0.11145681883381504, - "2024-03-02": 0.14152236260708792, - "2023-06-27": 0.07379878515194331, - "2023-10-08": 0.08815053611249724, - "2023-11-20": 0.10338141544304102, - "2023-12-20": 0.1004617936253941, - "2023-12-31": 0.10593079141167505, - "2023-11-06": 0.0981731218970861, - "2023-08-22": 0.07517491825145736, - "2023-06-09": 0.07754630779809299, - "2024-03-17": 0.12501086823487356, - "2023-09-18": 0.08333118378440521, - "2024-04-01": 0.12303843275951662, - "2024-01-19": 0.10795311214833152, - "2023-11-11": 0.10626666560698517, - "2023-05-14": 0.06963515701817892, - "2023-05-13": 0.06929072430724433, - "2023-05-06": 0.0710838662273649, - "2023-11-19": 0.10296530143307973, - "2023-05-16": 0.0704806891522655, - "2023-09-23": 0.08337591894162029, - "2023-07-02": 0.07721818882289651, - "2023-08-15": 0.07740802006057806, - "2024-01-25": 0.10862825287246727, - "2024-03-13": 0.1313706394941621, - "2024-01-21": 0.10993872989099907, - "2024-02-01": 0.11219090744784926, - "2023-06-15": 0.07103752249450905, - "2024-03-16": 0.12622246294076198, - "2023-11-27": 0.10783562146950955, - "2024-01-10": 0.10278389334979518, - "2024-03-15": 0.12895023264278363, - "2023-06-21": 0.07049376995030697, - "2024-01-02": 0.10784550426646505, - "2023-04-26": 0.06598188199054679, - "2023-07-11": 0.07760628201214209, - "2023-10-25": 0.09237740703250112, - "2024-01-01": 0.10768490698667472, - "2024-02-14": 0.12706555704669423, - "2023-09-04": 0.07699795069433096, - "2023-09-06": 0.07740543824722244, - "2024-04-03": 0.1167969852119948, - "2024-03-08": 0.13717861648564847, - "2023-11-28": 0.10196173855524839, - "2023-12-03": 0.10321218767735023, - "2023-08-02": 0.07859051122612058, - "2023-08-27": 0.07743039133855409, - "2023-10-20": 0.09003740258457754, - "2023-05-25": 0.07693615261832451, - "2023-10-10": 0.08612976143185551, - "2024-04-11": 0.11913780044201852, - "2023-06-22": 0.07243107897930218, - "2024-01-14": 0.11416074559187059, - "2023-12-15": 0.10607529948803203, - "2023-10-19": 0.08917171553703657, - "2024-02-08": 0.12354853694141299, - "2023-11-08": 0.09662361656198235, - "2023-11-12": 0.10808310218560152, - "2023-12-22": 0.10452625053227457, - "2023-05-20": 0.07072900837744191, - "2023-05-31": 0.07646024151491981, - "2024-03-23": 0.1173061207688702, - "2024-04-10": 0.12104656143653088, - "2023-09-27": 0.08470876642692735, - "2024-03-04": 0.1407159377549307, - "2023-09-10": 0.07913403922810484, - "2024-04-13": 0.11468181173430196, - "2024-02-29": 0.14230207818143578, - "2023-07-22": 0.08045497207942869, - "2023-07-21": 0.08064506144773717, - "2023-06-30": 0.07448079456631812, - "2023-12-29": 0.1054903469479781, - "2023-12-04": 0.10313365672085424, - "2023-09-21": 0.08443043476367311, - "2023-06-02": 0.07482588393359672, - "2023-10-11": 0.08626581658101327, - "2023-07-19": 0.07979470553839346, - "2023-05-05": 0.06952719978821953, - "2024-03-21": 0.12083122765821343, - "2024-04-08": 0.1203763285107211, - "2023-04-29": 0.06675066032788897, - "2023-06-14": 0.07194792306851296, - "2023-10-05": 0.08898918666291401, - "2023-10-16": 0.08667092665214385, - "2024-02-10": 0.12379921790636249, - "2024-04-07": 0.11951395271992245, - "2023-05-21": 0.07272188707657402, - "2024-02-20": 0.1364546361049645, - "2023-11-17": 0.1024174622968552, - "2023-12-11": 0.10778918880998713, - "2023-11-26": 0.10885251761567694, - "2023-11-16": 0.10412633190560022, - "2023-06-29": 0.07375223420183159, - "2023-06-11": 0.06977180139657527, - "2024-02-02": 0.11556147422914786, - "2023-09-14": 0.08117488047723984, - "2024-01-27": 0.11451802764347202, - "2024-03-30": 0.11989764457635814, - "2023-05-04": 0.06925521527680521, - "2023-09-28": 0.08546427187922905, - "2023-10-27": 0.09286382636352276, - "2023-05-01": 0.06749479430973589, - "2023-05-15": 0.06947239666905088, - "2023-11-22": 0.09630979720243424, - "2023-06-03": 0.08272489168894318, - "2024-01-18": 0.10834290331321127, - "2023-08-26": 0.07718178312899829, - "2024-02-15": 0.12967245172435604, - "2023-10-28": 0.09357740384876963, - "2024-03-24": 0.11836059016250286, - "2023-04-22": 0.06497222382602523, - "2023-12-06": 0.10358683983897371, - "2023-11-10": 0.09898774792998433, - "2024-01-30": 0.11310070458393248, - "2023-08-09": 0.07681097493638314, - "2023-05-02": 0.06857628342906447, - "2023-11-14": 0.10698284387982353, - "2024-01-23": 0.10921728311993198, - "2024-01-31": 0.1121744390605971, - "2024-01-11": 0.10536832264266614, - "2024-02-18": 0.13585481473273833, - "2023-06-16": 0.07095858029880024, - "2023-10-30": 0.09488903072247729, - "2023-12-17": 0.10277232115755047, - "2024-02-26": 0.13755876159343805, - "2023-07-16": 0.08085989080550224, - "2024-01-05": 0.10708868377688043, - "2023-08-23": 0.0755355994857292, - "2024-03-11": 0.13398372479815143, - "2023-08-01": 0.0779807771391641, - "2024-03-14": 0.13196615591436067, - "2024-02-21": 0.13927465693768784, - "2023-08-28": 0.0775053084436327, - "2023-07-04": 0.07728972669631617, - "2023-12-13": 0.10361658409075868, - "2023-08-13": 0.07744168362430294, - "2024-03-31": 0.12244462572181093, - "2023-12-09": 0.10667880515103761, - "2024-04-02": 0.12045799029614603, - "2024-02-06": 0.118876357825891, - "2024-04-09": 0.12301374631996286, - "2023-05-30": 0.07614778854263828, - "2023-11-04": 0.09725569737972636, - "2024-01-15": 0.1113281646818296, - "2023-07-03": 0.07592573352832385, - "2023-12-28": 0.10543784391620314, - "2023-04-23": 0.06623560121978281, - "2023-04-17": 0.06657815977670571, - "2023-05-08": 0.06953895511834424, - "2024-02-27": 0.13982733087135324, - "2024-02-07": 0.12084998560730532, - "2023-09-25": 0.08353619320295048, - "2024-03-19": 0.12390750244038275, - "2024-03-10": 0.13608131361072281, - "2023-09-02": 0.07604410468661232, - "2024-01-12": 0.1060877683266292, - "2023-11-29": 0.10290122553300592, - "2023-10-15": 0.08506254820013552, - "2023-11-30": 0.1034336032301142, - "2024-01-24": 0.1071858231971934, - "2023-08-11": 0.07726537727670321, - "2024-02-11": 0.12434541914687634, - "2023-06-08": 0.07675534020690716, - "2023-08-16": 0.0762472614805025, - "2023-11-15": 0.10212583476314552, - "2023-12-16": 0.10138467850161978, - "2024-03-29": 0.12047770658013206, - "2024-04-04": 0.1169417292591971, - "2023-06-10": 0.07203536276226741, - "2023-07-28": 0.08255831183700714, - "2024-01-20": 0.11052728412737174, - "2023-10-21": 0.09070007072139309, - "2023-05-12": 0.06810038148057464, - "2023-11-03": 0.0992802991209704, - "2023-08-31": 0.07560637651671182, - "2024-01-29": 0.11219895166691252, - "2024-01-04": 0.1067953209696345, - "2023-05-22": 0.07531794702593828, - "2023-07-26": 0.08189213991256214, - "2023-11-13": 0.10847108360036954, - "2024-03-25": 0.12008614877138717, - "2023-08-07": 0.07681721087618426, - "2023-10-29": 0.09432591104427739, - "2023-07-25": 0.08154661935736747, - "2023-05-17": 0.07059709265029573, - "2023-10-24": 0.09221713971841423, - "2023-06-05": 0.0816867262271103, - "2023-11-02": 0.10023834461609088, - "2023-12-18": 0.1021174963129233, - "2023-11-24": 0.10212192500634439, - "2023-08-21": 0.07580241719426799, - "2023-08-14": 0.07709780264874198, - "2023-05-26": 0.07686832171352112, - "2024-03-05": 0.1405685378578941, - "2024-04-06": 0.11790553333892774, - "2023-12-23": 0.10513695898229534, - "2024-02-03": 0.11626365236992477, - "2024-02-16": 0.1311523179060346, - "2023-05-28": 0.07722022381187035, - "2023-12-14": 0.10436216228317274, - "2023-06-24": 0.0731201868989998, - "2023-12-26": 0.10593823554042119, - "2023-11-09": 0.09841085410742503, - "2023-05-11": 0.06955626065572577, - "2023-08-19": 0.07299470336012635, - "2023-06-23": 0.07182067455499348, - "2023-06-18": 0.07160175068458766, - "2023-08-08": 0.07675149770980479, - "2023-08-17": 0.07473598319490088, - "2024-04-14": 0.10997365003467226, - "2023-07-24": 0.08332613284225981, - "2023-10-14": 0.08542903802229197, - "2024-01-17": 0.10815407880297552, - "2023-04-19": 0.06677862240085775, - "2024-04-14T03": 0.10925350800000001, - "2024-04-11T16": 0.11933374079999999, - "2024-04-16T02": 0.11105996719999998, - "2024-04-13T04": 0.114316002, - "2024-04-18T09": 0.10948298660000001, - "2024-04-12T19": 0.11408, - "2024-04-15T06": 0.1145512737, - "2024-04-14T19": 0.1110155277, - "2024-04-15T01": 0.1120419928, - "2024-04-17T20": 0.1101533904, - "2024-04-11T17": 0.1195372836, - "2024-04-18T10": 0.109461888, - "2024-04-12T14": 0.12048816779999999, - "2024-04-12T20": 0.1142831325, - "2024-04-15T12": 0.11423069639999998, - "2024-04-14T23": 0.11252340329758007, - "2024-04-13T07": 0.1143531528, - "2024-04-14T20": 0.110913264, - "2024-04-17T00": 0.11205696659999999, - "2024-04-15T00": 0.1124255808, - "2024-04-14T01": 0.10962060509999999, - "2024-04-17T22": 0.110097798, - "2024-04-17T09": 0.11276071950000001, - "2024-04-15T14": 0.11321806660000001, - "2024-04-15T20": 0.11128672080000002, - "2024-04-16T10": 0.11032631760000002, - "2024-04-16T18": 0.1104987222, - "2024-04-18T04": 0.10979231399999999, - "2024-04-15T02": 0.112341016, - "2024-04-15T16": 0.11213603999999999, - "2024-04-14T05": 0.11071648140000001, - "2024-04-17T08": 0.112613774, - "2024-04-14T13": 0.1110866253, - "2024-04-14T10": 0.1116124332, - "2024-04-13T14": 0.11411281799999999, - "2024-04-17T10": 0.112646295, - "2024-04-14T15": 0.11083323999999999, - "2024-04-14T12": 0.1107864723, - "2024-04-16T09": 0.11156457430000001, - "2024-04-17T02": 0.1122002859, - "2024-04-11T23": 0.12036083149999999, - "2024-04-12T09": 0.12160689029999999, - "2024-04-14T18": 0.1111544472, - "2024-04-14T09": 0.11160784520970786, - "2024-04-16T20": 0.11095882200000001, - "2024-04-18T00": 0.10898346060000001, - "2024-04-15T23": 0.11146451680000001, - "2024-04-12T22": 0.11467897760000001, - "2024-04-12T00": 0.12158851059999999, - "2024-04-15T13": 0.1143193714, - "2024-04-18T08": 0.109281852, - "2024-04-13T20": 0.109778648, - "2024-04-17T05": 0.112712538, - "2024-04-15T18": 0.11087762640000001, - "2024-04-16T01": 0.11131115840000001, - "2024-04-14T11": 0.11081427240000001, - "2024-04-11T20": 0.11980119800000001, - "2024-04-13T13": 0.11447316830069468, - "2024-04-12T16": 0.1200963152, - "2024-04-17T03": 0.11242247999999999, - "2024-04-16T06": 0.1110843916, - "2024-04-17T12": 0.11197484080000002, - "2024-04-11T22": 0.120012, - "2024-04-15T05": 0.11337817700000001, - "2024-04-12T12": 0.121697391, - "2024-04-17T14": 0.11015294289999998, - "2024-04-13T03": 0.11391391690000001, - "2024-04-18T07": 0.109341864, - "2024-04-16T00": 0.11121113040000001, - "2024-04-12T03": 0.121362135, - "2024-04-17T23": 0.10982525135306669, - "2024-04-13T23": 0.1101542244, - "2024-04-14T14": 0.110514188, - "2024-04-11T15": 0.1192413752, - "2024-04-16T13": 0.11021076290000001, - "2024-04-17T16": 0.10957890420000001, - "2024-04-16T22": 0.11175686759999999, - "2024-04-15T15": 0.112254978, - "2024-04-16T12": 0.110752146, - "2024-04-18T13": 0.10801455360000002, - "2024-04-16T05": 0.11030504160000001, - "2024-04-17T17": 0.11005779880000001, - "2024-04-12T13": 0.120760136, - "2024-04-12T23": 0.11465469789999999, - "2024-04-17T15": 0.1095343812, - "2024-04-15T19": 0.1107364898, - "2024-04-18T01": 0.10941686839999999, - "2024-04-11T21": 0.1197883846, - "2024-04-12T02": 0.12182609100000001, - "2024-04-16T14": 0.11011302399999999, - "2024-04-11T19": 0.11964, - "2024-04-16T08": 0.1115212476, - "2024-04-18T02": 0.10968232169999999, - "2024-04-12T05": 0.12162216099999999, - "2024-04-13T11": 0.114381437, - "2024-04-16T23": 0.1119491685, - "2024-04-12T01": 0.1220648824, - "2024-04-16T21": 0.111442284, - "2024-04-14T02": 0.10963763999999998, - "2024-04-12T10": 0.1216873945, - "2024-04-16T15": 0.109562415, - "2024-04-12T11": 0.1218324668, - "2024-04-17T06": 0.112693798, - "2024-04-13T00": 0.1150906176, - "2024-04-18T03": 0.11001559920000001, - "2024-04-13T08": 0.11406192840000001, - "2024-04-13T06": 0.11430313829999998, - "2024-04-15T04": 0.11259663269999999, - "2024-04-16T04": 0.1104396052, - "2024-04-14T16": 0.11140450360000002, - "2024-04-16T07": 0.11145126450000001, - "2024-04-18T05": 0.10980219599999999, - "2024-04-13T02": 0.113768435, - "2024-04-15T09": 0.11507644500000001, - "2024-04-13T05": 0.1146032253, - "2024-04-15T17": 0.11142791240000001, - "2024-04-16T16": 0.10929462, - "2024-04-15T21": 0.11095549440000002, - "2024-04-12T17": 0.1179861703, - "2024-04-17T01": 0.112188131, - "2024-04-14T21": 0.11073321, - "2024-04-15T07": 0.1151624034, - "2024-04-18T12": 0.1084757852, - "2024-04-15T22": 0.11146340240000001, - "2024-04-13T22": 0.1090093144, - "2024-04-15T08": 0.1151970337, - "2024-04-14T22": 0.111630132, - "2024-04-17T19": 0.1103233802, - "2024-04-12T07": 0.12157756839999999, - "2024-04-12T18": 0.11530270649999999, - "2024-04-14T04": 0.10998526258251214, - "2024-04-16T17": 0.1102686624, - "2024-04-17T11": 0.11242966320000002, - "2024-04-13T21": 0.10829278049999999, - "2024-04-13T09": 0.11403192000000001, - "2024-04-14T08": 0.11197596, - "2024-04-15T11": 0.11428873679999998, - "2024-04-11T14": 0.1192040395, - "2024-04-17T13": 0.11198596499999999, - "2024-04-14T06": 0.111364554, - "2024-04-13T19": 0.11158018850000001, - "2024-04-14T07": 0.11165475859999999, - "2024-04-13T16": 0.11287257, - "2024-04-15T10": 0.11522280780000001, - "2024-04-12T06": 0.121508505, - "2024-04-13T15": 0.11374274399999999, - "2024-04-12T15": 0.1204061509, - "2024-04-11T18": 0.1195688043, - "2024-04-17T18": 0.110734463, - "2024-04-12T08": 0.1215333672, - "2024-04-18T06": 0.10921528800000001, - "2024-04-17T04": 0.112715778, - "2024-04-12T04": 0.12137577679999999, - "2024-04-13T17": 0.111932382, - "2024-04-16T19": 0.11070877679999999, - "2024-04-15T03": 0.1126302696, - "2024-04-17T21": 0.11019118400000001, - "2024-04-13T18": 0.11173686099999999, - "2024-04-13T10": 0.11408991750000001, - "2024-04-16T11": 0.11077875900000002, - "2024-04-12T21": 0.1145089198, - "2024-04-14T00": 0.109770615, - "2024-04-18T11": 0.109672892, - "2024-04-17T07": 0.11241809750000001, - "2024-04-13T01": 0.11427742, - "2024-04-14T17": 0.11079315520000001, - "2024-04-16T03": 0.111124432, - "2024-04-13T12": 0.114371436, - "latest": 0.125847, - "2024-04-18T14": 0.10893444, - "2024-04-18T15": 0.10926006, - "2024-04-19": 0.10935239319594797, - "2024-04-18T20": 0.1089709896, - "2024-04-18T19": 0.10892443499999999, - "2024-04-19T01": 0.10755010560000001, - "2024-04-19T03": 0.107306438, - "2024-04-18T21": 0.1091081745, - "2024-04-19T06": 0.10784018680000002, - "2024-04-18T18": 0.10849096679999999, - "2024-04-18T16": 0.10902448499999999, - "2024-04-18T23": 0.10932261919999998, - "2024-04-19T04": 0.10762582400000001, - "2024-04-19T05": 0.1071589251, - "2024-04-19T00": 0.10899011239999999, - "2024-04-18T22": 0.109182745, - "2024-04-18T17": 0.1089120445, - "2024-04-19T02": 0.1060295418, - "2024-04-19T07": 0.10836708500000002, - "2024-04-19T08": 0.1087578324, - "2024-04-19T09": 0.108997938, - "2024-04-19T10": 0.1089007395, - "2024-04-19T11": 0.10907685212817467, - "2024-04-19T12": 0.1092609735, - "2024-04-19T13": 0.1095055067, - "2024-04-19T14": 0.1097382636, - "2024-04-19T15": 0.11015394900000001, - "2024-04-20": 0.10994204076052658, - "2024-04-19T22": 0.11052308719999998, - "2024-04-19T23": 0.1097249688, - "2024-04-19T20": 0.11040642209999998, - "2024-04-19T19": 0.11042318400000001, - "2024-04-19T21": 0.11046644189999999, - "2024-04-19T16": 0.1101684528, - "2024-04-19T17": 0.110400761, - "2024-04-20T00": 0.11000288439999999, - "2024-04-19T18": 0.1103608184, - "2024-04-20T01": 0.110137434, - "2024-04-21": 0.11101869826084311, - "2024-04-20T16": 0.11026196669999998, - "2024-04-20T19": 0.110673192, - "2024-04-20T15": 0.10980744500000002, - "2024-04-20T02": 0.11032860150000001, - "2024-04-20T09": 0.10934169989999999, - "2024-04-20T04": 0.10973861066169921, - "2024-04-20T10": 0.10926167669999998, - "2024-04-20T22": 0.11088768900000001, - "2024-04-21T00": 0.11092992039999999, - "2024-04-20T12": 0.10961301390000001, - "2024-04-21T04": 0.11104662000000001, - "2024-04-20T05": 0.1098706371, - "2024-04-20T18": 0.1108087695, - "2024-04-20T11": 0.10950518039999999, - "2024-04-20T23": 0.1110444131, - "2024-04-20T08": 0.1094160954, - "2024-04-20T13": 0.10968412520000001, - "2024-04-21T02": 0.1112811588, - "2024-04-21T01": 0.1111066531, - "2024-04-20T20": 0.11092326699999999, - "2024-04-20T03": 0.109758402, - "2024-04-20T14": 0.1096363064, - "2024-04-20T07": 0.1094071858, - "2024-04-20T17": 0.11081877300000001, - "2024-04-20T21": 0.11093327, - "2024-04-20T06": 0.1098517278, - "2024-04-21T03": 0.11124781599999999, - "2024-04-21T16": 0.1104976175, - "2024-04-21T11": 0.1110033058, - "2024-04-21T17": 0.11062433200000002, - "2024-04-21T08": 0.1110438558581045, - "2024-04-21T12": 0.111132222, - "2024-04-21T15": 0.1107855078, - "2024-04-21T06": 0.11099548949999999, - "2024-04-21T07": 0.1109443821, - "2024-04-21T14": 0.11079436940000001, - "2024-04-21T13": 0.11088771500000001, - "2024-04-21T05": 0.11111664940000002, - "2024-04-21T10": 0.11092218, - "2024-04-21T09": 0.11099550720000001, - "2024-04-21T19": 0.11111333329999999, - "2024-04-21T22": 0.11140336679999999, - "2024-04-21T23": 0.1113411508, - "2024-04-21T21": 0.11136779520000001, - "2024-04-21T20": 0.111241123, - "2024-04-21T18": 0.110942184, - "2024-04-22": 0.1114170679284613, - "2024-04-22T00": 0.11140225290000001, - "2024-04-22T07": 0.1117336519, - "2024-04-22T05": 0.1116079708, - "2024-04-22T04": 0.11137006179999999, - "2024-04-22T02": 0.11061548400000001, - "2024-04-22T01": 0.11096331399999998, - "2024-04-22T06": 0.11181587999999999, - "2024-04-22T03": 0.1110499936, - "2024-04-22T08": 0.1108231696, - "2024-04-22T09": 0.11091323929999998, - "2024-04-22T10": 0.11112665360000001, - "2024-04-22T11": 0.11096434590000001, - "2024-04-22T12": 0.111234476, - "2024-04-22T13": 0.1112767092, - "2024-04-22T14": 0.11144456, - "2024-04-22T15": 0.111256712, - "2024-04-22T16": 0.11165468400000002, - "2024-04-23": 0.11234602447781501, - "2024-04-23T03": 0.11144125900000001, - "2024-04-22T19": 0.11198253720000001, - "2024-04-22T17": 0.11186360979999999, - "2024-04-22T23": 0.112423717, - "2024-04-22T20": 0.11201247419999999, - "2024-04-22T21": 0.11213363, - "2024-04-22T18": 0.11200702320000001, - "2024-04-23T06": 0.11231285999999999, - "2024-04-22T22": 0.11224366300000001, - "2024-04-23T04": 0.111581336, - "2024-04-23T01": 0.11175356689999999, - "2024-04-23T07": 0.11197036400000002, - "2024-04-23T00": 0.11238381259999998, - "2024-04-23T05": 0.11199138879090587, - "2024-04-23T02": 0.1116746938, - "2024-04-23T08": 0.11221701939999999, - "2024-04-23T09": 0.112159242, - "2024-04-23T10": 0.1122282374, - "2024-04-23T11": 0.1122427293, - "2024-04-23T12": 0.1122615214, - "2024-04-23T13": 0.1124260758, - "2024-04-23T14": 0.11280186499999999, - "2024-04-23T15": 0.112823837, - "2024-04-23T16": 0.11282917769999999, - "2024-04-24": 0.11334043522133501, - "2024-04-24T02": 0.11278844466171664, - "2024-04-24T00": 0.1133267992, - "2024-04-24T01": 0.112731272, - "2024-04-23T23": 0.11325792750000001, - "2024-04-24T06": 0.11357454280000001, - "2024-04-23T22": 0.11346262084159243, - "2024-04-23T18": 0.1133160567, - "2024-04-23T20": 0.113561355, - "2024-04-23T21": 0.11358567900000001, - "2024-04-24T04": 0.11349, - "2024-04-24T05": 0.11345794149999999, - "2024-04-24T03": 0.11299006086170704, - "2024-04-24T07": 0.11359886400000001, - "2024-04-23T19": 0.11343268199999999, - "2024-04-23T17": 0.11317828750000002, - "2024-04-24T08": 0.1134520578, - "2024-04-24T09": 0.11345886540000001, - "2024-04-24T10": 0.113478651, - "2024-04-24T11": 0.11376203609999999, - "2024-04-24T12": 0.11391901297119579, - "2024-04-24T13": 0.1137197643, - "2024-04-24T14": 0.1134495754, - "2024-04-24T15": 0.11316112560000001, - "2024-04-25": 0.11524362513375892, - "2024-04-24T18": 0.11379762900000001, - "2024-04-25T00": 0.113593175, - "2024-04-24T21": 0.1136165148, - "2024-04-24T17": 0.11369444933820756, - "2024-04-24T16": 0.113236552, - "2024-04-24T20": 0.11367987360000001, - "2024-04-24T23": 0.1131477345, - "2024-04-24T22": 0.113369232, - "2024-04-24T19": 0.11381217602998808, - "2024-04-25T01": 0.1140083343, - "2024-04-25T03": 0.1142102976, - "2024-04-25T05": 0.1139780772, - "2024-04-25T04": 0.1139715, - "2024-04-25T02": 0.1138183704, - "2024-04-25T06": 0.1139949156, - "2024-04-25T07": 0.11397378000000001, - "2024-04-25T08": 0.1141291768, - "2024-04-25T09": 0.11452709, - "2024-04-25T10": 0.1144882431, - "2024-04-25T11": 0.1150612275, - "2024-04-25T12": 0.115573752, - "2024-04-25T13": 0.11541955109999999, - "2024-04-25T14": 0.11599152459999999, - "2024-04-25T15": 0.116455914, - "2024-04-25T16": 0.11663880689999999, - "2024-04-25T17": 0.11675977169999999, - "2024-04-25T18": 0.1169902098, - "2024-04-25T19": 0.117100797, - "2024-04-26": 0.1185326261569889, - "2024-04-25T22": 0.11705531759999999, - "2024-04-25T21": 0.11733, - "2024-04-25T20": 0.11725073400000001, - "2024-04-26T01": 0.1168335049, - "2024-04-25T23": 0.11718828, - "2024-04-26T00": 0.1171630463, - "2024-04-26T05": 0.1173400488, - "2024-04-26T07": 0.11675883240000001, - "2024-04-26T02": 0.117345306, - "2024-04-26T03": 0.1176264711, - "2024-04-26T04": 0.11707712009999999, - "2024-04-26T06": 0.117, - "2024-04-26T08": 0.11709234179999999, - "2024-04-26T09": 0.11788821000000001, - "2024-04-26T10": 0.1180558316, - "2024-04-26T11": 0.11839342259999999, - "2024-04-26T12": 0.1186398278, - "2024-04-26T13": 0.118906214, - "2024-04-26T14": 0.1190849869, - "2024-04-26T15": 0.11915662680000001, - "2024-04-26T21": 0.120306674, - "2024-04-26T22": 0.11993800700000001, - "2024-04-26T17": 0.1196657073, - "2024-04-26T19": 0.1202926977, - "2024-04-26T16": 0.11946176, - "2024-04-26T18": 0.1199152145, - "2024-04-26T20": 0.12003277829999999, - "2024-04-27": 0.12014758338148518, - "2024-04-26T23": 0.120054362, - "2024-04-27T00": 0.1197228744, - "2024-04-27T01": 0.1191890028, - "2024-04-28": 0.11965813178829786, - "2024-04-27T13": 0.1203117465, - "2024-04-28T00": 0.1198784272, - "2024-04-27T20": 0.1200383184, - "2024-04-27T23": 0.11984844759999999, - "2024-04-27T06": 0.11947066679999999, - "2024-04-27T05": 0.11912994439999999, - "2024-04-27T02": 0.1188878916, - "2024-04-27T18": 0.11985724140000001, - "2024-04-27T07": 0.12034774799999999, - "2024-04-27T04": 0.1189621529, - "2024-04-27T21": 0.11999954640000002, - "2024-04-27T09": 0.12015305280000001, - "2024-04-27T14": 0.1203529248, - "2024-04-27T22": 0.119868434, - "2024-04-27T16": 0.1202881484, - "2024-04-27T10": 0.1198896201, - "2024-04-27T17": 0.12042925830000001, - "2024-04-27T08": 0.1197569037, - "2024-04-27T12": 0.120041922, - "2024-04-27T15": 0.12033534580000001, - "2024-04-27T11": 0.1199855628, - "2024-04-27T03": 0.1187791094, - "2024-04-27T19": 0.119955972, - "2024-04-28T01": 0.120061909, - "2024-04-28T20": 0.1205053965, - "2024-04-28T14": 0.12053211679999999, - "2024-04-28T05": 0.1204764645, - "2024-04-28T08": 0.1207090707, - "2024-04-28T16": 0.1204230167, - "2024-04-28T11": 0.12127083620000001, - "2024-04-28T22": 0.121311456, - "2024-04-28T03": 0.120367736, - "2024-04-28T13": 0.12063448260000001, - "2024-04-28T15": 0.1204581807, - "2024-04-28T04": 0.1203125872, - "2024-04-28T09": 0.1206839212, - "2024-04-28T19": 0.120404229, - "2024-04-28T06": 0.12082899030000001, - "2024-04-28T12": 0.12124420200000001, - "2024-04-28T02": 0.1201574075, - "2024-04-28T17": 0.1204518, - "2024-04-28T21": 0.12107518560000001, - "2024-04-28T18": 0.1203642442, - "2024-04-28T07": 0.12083382670000001, - "2024-04-28T10": 0.12106657840634857, - "2024-04-29": 0.11896553439559318, - "2024-04-28T23": 0.1213450857, - "2024-04-29T00": 0.121164852, - "2024-04-29T01": 0.12073135360000001, - "2024-04-29T02": 0.12084857119999999, - "2024-04-29T05": 0.12011077919999999, - "2024-04-29T03": 0.12037712399999999, - "2024-04-29T04": 0.12019475379999998, - "2024-04-29T06": 0.11983041280000001, - "2024-04-29T07": 0.1188804888, - "2024-04-29T08": 0.11858051280000001, - "2024-04-29T09": 0.1187240635, - "2024-04-29T10": 0.1189728612, - "2024-04-29T11": 0.118996196, - "2024-04-29T12": 0.1186739704975412, - "2024-04-29T13": 0.118121644, - "2024-04-29T14": 0.1180999196, - "2024-04-29T15": 0.11812, - "2024-04-30": 0.11898361896656658, - "2024-04-30T04": 0.119684084, - "2024-04-29T21": 0.11885957400000001, - "2024-04-30T03": 0.11965451399999999, - "2024-04-29T22": 0.11903045500000001, - "2024-04-29T19": 0.1190111854, - "2024-04-29T23": 0.1190899612, - "2024-04-29T18": 0.11890502469999999, - "2024-04-30T00": 0.11916900799999999, - "2024-04-29T20": 0.119245122, - "2024-04-30T01": 0.1196393088, - "2024-04-30T02": 0.11909710959999999, - "2024-04-29T16": 0.118192908, - "2024-04-29T17": 0.11853458850000001, - "2024-04-30T05": 0.119872423, - "2024-04-30T06": 0.12030834060000001, - "2024-04-30T07": 0.1205894963, - "2024-04-30T08": 0.1197596374, - "2024-04-30T09": 0.1194817536, - "2024-04-30T10": 0.12001719239999999, - "2024-04-30T11": 0.11927614, - "2024-04-30T12": 0.11827740479999999, - "2024-04-30T13": 0.11815572490000001, - "2024-04-30T14": 0.11905520939999999, - "2024-04-30T15": 0.11859455039999998, - "2024-04-30T16": 0.118269522, - "2024-05-01": 0.11971213710815505, - "2024-04-30T22": 0.1190574112, - "2024-04-30T17": 0.1187473048, - "2024-04-30T20": 0.1183916448, - "2024-04-30T23": 0.11937051, - "2024-04-30T19": 0.1179995176, - "2024-04-30T18": 0.1181859048, - "2024-05-01T01": 0.1196830014, - "2024-05-01T00": 0.11966541839999999, - "2024-04-30T21": 0.11894326735723655, - "2024-05-01T02": 0.1200381876, - "2024-05-01T03": 0.1201057, - "2024-05-01T05": 0.1201360288, - "2024-05-01T04": 0.119963086, - "2024-05-01T06": 0.1201971555, - "2024-05-01T07": 0.1191695171, - "2024-05-01T08": 0.117550521, - "2024-05-01T11": 0.1186522036, - "2024-05-01T09": 0.11846490600000001, - "2024-05-01T10": 0.1185511327, - "2024-05-01T12": 0.11925389539999999, - "2024-05-01T13": 0.119695774, - "2024-05-01T15": 0.11960749749999999, - "2024-05-01T16": 0.119643062, - "2024-05-01T14": 0.1196957904, - "2024-05-01T21": 0.11977607250000001, - "2024-05-01T20": 0.1198364128, - "2024-05-01T17": 0.1198224369, - "2024-05-01T19": 0.1200925668, - "2024-05-01T18": 0.120385364, - "2024-05-01T22": 0.1199446248, - "2024-05-02": 0.12051367224202765, - "2024-05-02T03": 0.12040947, - "2024-05-02T01": 0.120297527, - "2024-05-02T02": 0.12024565799999999, - "2024-05-01T23": 0.12027655200000001, - "2024-05-02T00": 0.1205463789, - "2024-05-02T04": 0.1213951017, - "2024-05-02T06": 0.1224305604, - "2024-05-02T07": 0.12245422199999999, - "2024-05-02T05": 0.12160436599999999, - "2024-05-02T08": 0.1217544654, - "2024-05-02T09": 0.12209769840000001, - "2024-05-02T10": 0.1222235374, - "2024-05-02T11": 0.1225358712, - "2024-05-02T12": 0.1227144025, - "2024-05-02T13": 0.12285788160000001, - "2024-05-02T14": 0.1231527562, - "2024-05-02T15": 0.123196304, - "2024-05-02T16": 0.12317123170000001, - "2024-05-02T17": 0.12317246339999999, - "2024-05-03T04": 0.1225315312126232, - "2024-05-03T02": 0.12260716260000001, - "2024-05-03T03": 0.1227459549, - "2024-05-03T05": 0.1223685652, - "2024-05-03T06": 0.12228467239999999, - "2024-05-03T00": 0.1225010241, - "2024-05-03T01": 0.1225685792, - "2024-05-03T07": 0.12205228794152385, - "2024-05-03T08": 0.12216122160000001, - "2024-05-03T09": 0.1222334442, - "2024-05-03T10": 0.12206976480000001, - "2024-05-03T11": 0.12204877950000001, - "2024-05-03T13": 0.12289, - "2024-05-03T12": 0.12247265120000002, - "2024-05-03T14": 0.1231284665, - "2024-05-03": 0.12271311347366085, - "2024-05-04": 0.1227238286853319, - "2024-05-04T05": 0.122735583, - "2024-05-03T18": 0.1233659014, - "2024-05-04T03": 0.12261696980000002, - "2024-05-03T17": 0.1234782664, - "2024-05-03T21": 0.1237330717, - "2024-05-03T20": 0.12375580281001378, - "2024-05-04T06": 0.1227543616, - "2024-05-03T22": 0.12348307489999999, - "2024-05-03T19": 0.123507041, - "2024-05-04T02": 0.12256695880000001, - "2024-05-03T15": 0.12323249964339626, - "2024-05-03T16": 0.12340207619999999, - "2024-05-04T01": 0.122640458, - "2024-05-04T04": 0.12257431120000001, - "2024-05-03T23": 0.123348087, - "2024-05-04T00": 0.1226929275, - "2024-05-04T13": 0.12297967359999999, - "2024-05-04T10": 0.12333246659999998, - "2024-05-04T12": 0.123152314, - "2024-05-04T07": 0.1228021004, - "2024-05-04T11": 0.12341234, - "2024-05-04T09": 0.12311969599999999, - "2024-05-04T15": 0.12272454000000001, - "2024-05-04T08": 0.1230833814, - "2024-05-04T14": 0.12286502517797582, - "2024-05-05": 0.12124928146273238, - "2024-05-05T01": 0.12154579889999999, - "2024-05-04T19": 0.12264613200000002, - "2024-05-04T20": 0.122604904, - "2024-05-05T05": 0.1211957534, - "2024-05-05T07": 0.12131213, - "2024-05-04T23": 0.122342233, - "2024-05-04T22": 0.122372236, - "2024-05-04T21": 0.12250244999999998, - "2024-05-05T00": 0.12186827750000001, - "2024-05-05T08": 0.12149336280000002, - "2024-05-04T17": 0.1226373578, - "2024-05-05T09": 0.1213545608, - "2024-05-05T10": 0.12125818600000002, - "2024-05-05T04": 0.1211457469, - "2024-05-04T16": 0.12268840050000002, - "2024-05-05T06": 0.121222121, - "2024-05-05T03": 0.1210757378, - "2024-05-04T18": 0.12268736079999999, - "2024-05-05T02": 0.121215756, - "2024-05-05T21": 0.12086329350000001, - "2024-05-05T16": 0.1213136393, - "2024-05-05T22": 0.12080449479999998, - "2024-05-05T17": 0.12121090799999999, - "2024-05-05T20": 0.12086329350000001, - "2024-05-05T13": 0.1211875424034922, - "2024-05-05T15": 0.121308491, - "2024-05-05T12": 0.12111937599999999, - "2024-05-05T18": 0.12114180160000002, - "2024-05-05T14": 0.12116301659999999, - "2024-05-05T19": 0.12101935999999999, - "2024-05-05T11": 0.1212794016, - "2024-05-05T23": 0.12104089269999999, - "2024-05-06T00": 0.121222121, - "2024-05-06T04": 0.1208172486, - "2024-05-06T02": 0.12109089719999998, - "2024-05-06T05": 0.12127606350000002, - "2024-05-06T06": 0.12146242919999999, - "2024-05-06T01": 0.1211805972, - "2024-05-06T03": 0.1208772522, - "2024-05-06T08": 0.12187, - "2024-05-06T07": 0.1216672996, - "2024-05-06T09": 0.12177, - "2024-05-06T10": 0.12103, - "2024-05-06T11": 0.12023961840000001, - "2024-05-06T13": 0.1191283384, - "2024-05-06T12": 0.119101909, - "2024-05-06T15": 0.11892713519999999, - "2024-05-06T17": 0.1189588104, - "2024-05-06T14": 0.118931892, - "2024-05-06T16": 0.11901189999999999, - "2024-05-06": 0.1193843870066327, - "2024-05-07": 0.11877693309999998, - "2024-05-06T22": 0.1188435652, - "2024-05-07T01": 0.11879574279999999, - "2024-05-07T00": 0.1185876282, - "2024-05-06T21": 0.11902047760000001, - "2024-05-06T20": 0.11889454170000001, - "2024-05-06T23": 0.11868881310000001, - "2024-05-07T04": 0.1185652572, - "2024-05-06T19": 0.11891524319999999, - "2024-05-07T03": 0.11845763079999999, - "2024-05-07T02": 0.1189685818, - "2024-05-07T05": 0.1186252548, - "2024-05-06T18": 0.11904, - "2024-05-07T06": 0.118603558, - "2024-05-07T07": 0.11947955760000002, - "2024-05-07T08": 0.11982239639999999, - "2024-05-07T09": 0.12002, - "2024-05-07T10": 0.1199247968, - "2024-05-07T11": 0.12010600500000002, - "2024-05-07T12": 0.11974119740000001, - "2024-05-07T13": 0.12030202899999999, - "2024-05-07T14": 0.1202187978, - "2024-05-07T15": 0.1205455328, - "2024-05-08": 0.12246471985375842, - "2024-05-09": 0.1255078960768683, - "2024-05-10": 0.12619815139898857, - "2024-05-09T13": 0.1260308288, - "2024-05-10T00": 0.1261223404, - "2024-05-08T08": 0.121737825, - "2024-05-09T14": 0.1265141784, - "2024-05-08T10": 0.1224053096, - "2024-05-09T04": 0.1238867855, - "2024-05-10T01": 0.125997399, - "2024-05-08T03": 0.1211554596, - "2024-05-09T07": 0.1239967294, - "2024-05-09T11": 0.12523988400000002, - "2024-05-09T00": 0.1233081888, - "2024-05-09T01": 0.1233057216, - "2024-05-10T06": 0.12670498213778827, - "2024-05-09T19": 0.1264248272, - "2024-05-10T05": 0.1265135511, - "2024-05-10T02": 0.126088651, - "2024-05-09T23": 0.1261535979, - "2024-05-09T06": 0.12424535880000001, - "2024-05-08T01": 0.121447854, - "2024-05-09T09": 0.12445774000000001, - "2024-05-09T20": 0.1260811737, - "2024-05-08T19": 0.1232779394, - "2024-05-09T03": 0.1236868875, - "2024-05-08T21": 0.1227868386, - "2024-05-09T22": 0.1261872822, - "2024-05-08T17": 0.1233240965, - "2024-05-09T05": 0.1241141846, - "2024-05-08T06": 0.1212193892, - "2024-05-08T15": 0.1225842519, - "2024-05-10T08": 0.1249650024, - "2024-05-08T07": 0.12126452909999999, - "2024-05-08T04": 0.1214054296, - "2024-05-09T15": 0.1266504463, - "2024-05-08T18": 0.1235215835, - "2024-05-09T10": 0.12473135999999999, - "2024-05-09T21": 0.12609855960000002, - "2024-05-10T03": 0.12652987680000002, - "2024-05-08T00": 0.1210787892, - "2024-05-10T07": 0.1265922746, - "2024-05-08T14": 0.1226119785, - "2024-05-09T17": 0.126563286, - "2024-05-08T13": 0.1225905712, - "2024-05-08T05": 0.1214393518, - "2024-05-09T18": 0.126622002, - "2024-05-09T08": 0.12438653050000001, - "2024-05-08T20": 0.1228403424, - "2024-05-08T22": 0.1227719289, - "2024-05-08T11": 0.1225301968, - "2024-05-09T12": 0.12570466560000002, - "2024-05-08T02": 0.12059455471466511, - "2024-05-10T04": 0.12660739589375214, - "2024-05-08T12": 0.122786492, - "2024-05-09T02": 0.1236256812, - "2024-05-08T09": 0.121686613, - "2024-05-09T16": 0.1263057775, - "2024-05-08T16": 0.12317550120000001, - "2024-05-08T23": 0.12279963149999999, - "2024-05-10T09": 0.1248950108, - "2024-05-10T10": 0.12487285237778346, - "2024-05-10T11": 0.12489251259999999, - "2024-05-10T12": 0.124798752, - "2024-05-10T13": 0.12533871849999997, - "2024-05-10T14": 0.1256886293, - "2024-05-11": 0.12672616410147106, - "2024-05-12": 0.1268212751891834, - "2024-05-12T16": 0.12687922799999998, - "2024-05-11T03": 0.1267307013, - "2024-05-10T17": 0.126871927, - "2024-05-11T16": 0.12603956400000002, - "2024-05-10T15": 0.1257673578, - "2024-05-11T04": 0.1266857856, - "2024-05-11T12": 0.1265130435, - "2024-05-12T15": 0.126669312, - "2024-05-11T11": 0.1268841464, - "2024-05-12T04": 0.1269079464, - "2024-05-12T11": 0.1264129656, - "2024-05-11T22": 0.12673271869581013, - "2024-05-11T21": 0.126672126, - "2024-05-10T21": 0.12667297064532512, - "2024-05-10T23": 0.12712948159999998, - "2024-05-12T00": 0.12663199900000002, - "2024-05-12T03": 0.12679926, - "2024-05-12T12": 0.12659287019999999, - "2024-05-11T08": 0.1267970242, - "2024-05-11T17": 0.12618708180000002, - "2024-05-12T19": 0.1269217514, - "2024-05-11T23": 0.12645711259999998, - "2024-05-11T05": 0.1266857856, - "2024-05-12T02": 0.126919212, - "2024-05-11T02": 0.126814482, - "2024-05-10T16": 0.12608963839999998, - "2024-05-12T14": 0.12663298950000001, - "2024-05-11T09": 0.12689445959999998, - "2024-05-10T18": 0.127101858, - "2024-05-10T19": 0.127038992, - "2024-05-11T06": 0.12689699819999997, - "2024-05-12T08": 0.12686431239999998, - "2024-05-10T20": 0.12685558500000002, - "2024-05-11T18": 0.126329448, - "2024-05-12T05": 0.126739284, - "2024-05-12T06": 0.126869232, - "2024-05-11T20": 0.1268455885, - "2024-05-12T09": 0.1265281022, - "2024-05-11T01": 0.1270107808, - "2024-05-11T00": 0.127470675, - "2024-05-12T07": 0.1268855745, - "2024-05-12T10": 0.1266342564, - "2024-05-11T10": 0.1268054502, - "2024-05-12T01": 0.12679926, - "2024-05-12T18": 0.1270055325, - "2024-05-12T13": 0.1265804792, - "2024-05-11T19": 0.126619332, - "2024-05-12T17": 0.1270055325, - "2024-05-11T14": 0.12640447800000001, - "2024-05-11T07": 0.12706568299999998, - "2024-05-11T15": 0.126144472, - "2024-05-11T13": 0.1264683346392447, - "2024-05-10T22": 0.126668325, - "2024-05-13": 0.12617679653222352, - "2024-05-12T21": 0.1268781164, - "2024-05-13T00": 0.1273575642, - "2024-05-13T03": 0.1265945436, - "2024-05-12T23": 0.12723017369999998, - "2024-05-13T04": 0.1264458504, - "2024-05-13T01": 0.12701552900000002, - "2024-05-13T05": 0.1261546668, - "2024-05-13T02": 0.1266307323, - "2024-05-13T07": 0.126660723, - "2024-05-13T06": 0.126314622, - "2024-05-12T22": 0.1270853298, - "2024-05-12T20": 0.12693220484439324, - "2024-05-13T08": 0.126896681, - "2024-05-13T10": 0.12639942, - "2024-05-13T09": 0.12699536849999998, - "2024-05-13T11": 0.12608711579999998, - "2024-05-13T12": 0.126152044, - "2024-05-13T13": 0.12605334299999998, - "2024-05-13T14": 0.12597471720000003, - "2024-05-13T15": 0.126069736, - "2024-05-13T16": 0.12612477000000002, - "2024-05-14": 0.1251432520685889, - "2024-05-13T17": 0.12590607329999998, - "2024-05-14T01": 0.125484898, - "2024-05-14T02": 0.1254061312, - "2024-05-14T06": 0.1250449428, - "2024-05-13T19": 0.12610873890000002, - "2024-05-13T22": 0.12588741, - "2024-05-14T04": 0.1255621598, - "2024-05-13T21": 0.126092434, - "2024-05-14T03": 0.12543474000000002, - "2024-05-14T00": 0.12560613029999998, - "2024-05-14T07": 0.1250137076, - "2024-05-13T20": 0.12614369250000002, - "2024-05-14T05": 0.12564959679999999, - "2024-05-13T23": 0.125691201, - "2024-05-13T18": 0.1259160714, - "2024-05-14T08": 0.1250461939, - "2024-05-14T09": 0.12485004319999998, - "2024-05-14T10": 0.12486128760000001, - "2024-05-14T11": 0.12497497920000002, - "2024-05-14T12": 0.1250424256, - "2024-05-14T13": 0.1250824008, - "2024-05-14T14": 0.1248812752, - "2024-05-14T15": 0.12505492199999999, - "2024-05-14T16": 0.12517111799999997, - "2024-05-14T17": 0.12499495799999998, - "2024-05-14T18": 0.1251897984, - "2024-05-14T19": 0.12528478399999998, - "2024-05-14T20": 0.1253597984, - "2024-05-15": 0.12546928711757493, - "2024-05-15T02": 0.1253934633, - "2024-05-15T01": 0.1254534267, - "2024-05-14T21": 0.1254898304, - "2024-05-15T05": 0.125303588, - "2024-05-15T00": 0.12550344789999998, - "2024-05-15T06": 0.125303588, - "2024-05-15T03": 0.125444688, - "2024-05-15T07": 0.12538045367511494, - "2024-05-14T23": 0.125294846, - "2024-05-15T04": 0.125347295, - "2024-05-14T22": 0.1254910394, - "2024-05-15T08": 0.12552107640000001, - "2024-05-15T09": 0.1256698896, - "2024-05-15T10": 0.1256361785, - "2024-05-15T11": 0.1253724454, - "2024-05-15T12": 0.1257161697, - "2024-05-15T13": 0.1259049636, - "2024-05-15T14": 0.1258774824 - }, - "USD ripple": { - "2023-07-30": 0.7119138787475057, - "2023-07-27": 0.7151907665821414, - "2023-07-10": 0.47107192799679604, - "2023-08-20": 0.5386739904589001, - "2024-02-23": 0.5360836098757141, - "2024-04-05": 0.5826599753069248, - "2023-12-19": 0.6086556203861139, - "2023-08-06": 0.6300174627164999, - "2023-12-02": 0.613860748828646, - "2023-10-12": 0.4812712557864653, - "2023-10-31": 0.5959201489838595, - "2023-08-29": 0.5223866757750875, - "2023-06-20": 0.486685574984226, - "2023-09-09": 0.5033240984467872, - "2023-06-26": 0.48301260050731637, - "2023-05-03": 0.4574804817916988, - "2023-10-23": 0.5300450139495917, - "2023-10-01": 0.5179940538223412, - "2024-03-07": 0.6232573181862266, - "2023-07-05": 0.4780131615130516, - "2023-07-29": 0.7112332119711848, - "2024-01-08": 0.5649625600549449, - "2023-05-29": 0.4817002778725695, - "2023-10-07": 0.5226944330595431, - "2023-09-26": 0.5016176653522085, - "2023-08-24": 0.523311652826322, - "2023-12-05": 0.6159381240647693, - "2023-05-10": 0.4294489701941067, - "2024-02-19": 0.5599936593369889, - "2024-01-07": 0.5672147371457784, - "2023-10-18": 0.48956327659596577, - "2023-04-25": 0.4582575669135096, - "2023-07-31": 0.7038512751976902, - "2023-05-23": 0.461582881108612, - "2023-08-25": 0.5168536169277435, - "2024-03-09": 0.6239090175065756, - "2023-07-12": 0.4732185736865301, - "2023-09-05": 0.5033080084273504, - "2023-06-07": 0.5265816531737217, - "2023-09-16": 0.5003079768910675, - "2023-08-12": 0.6295179372251352, - "2023-05-09": 0.42490959639556825, - "2023-09-01": 0.5044358780354955, - "2023-09-08": 0.5033329505393392, - "2024-03-22": 0.6202767917447577, - "2023-08-10": 0.6323259761760792, - "2023-12-07": 0.6363787074515419, - "2023-11-18": 0.6063414834032266, - "2023-07-13": 0.6901122470601545, - "2023-04-30": 0.47586840377825856, - "2023-06-06": 0.50992969997237, - "2023-09-13": 0.48061716211755345, - "2023-06-17": 0.4796345825464759, - "2023-07-17": 0.740396835368482, - "2023-07-07": 0.46667379063032066, - "2023-09-07": 0.5003956580194687, - "2024-02-22": 0.5438089552154346, - "2024-04-15": 0.49892065689864407, - "2023-12-30": 0.6231017358008017, - "2023-09-17": 0.49671338245428304, - "2023-04-20": 0.4905636637380553, - "2024-03-26": 0.6423033544594439, - "2023-04-27": 0.4622205777862645, - "2024-04-17": 0.49513835977425136, - "2024-02-12": 0.5245073759756504, - "2023-10-26": 0.5542474939353886, - "2024-01-03": 0.5817851044495774, - "2023-06-01": 0.5065487039897766, - "2024-01-22": 0.5311522763852767, - "2023-06-12": 0.5179590191222802, - "2023-10-03": 0.5109750942557013, - "2023-06-19": 0.49051835201487626, - "2023-07-09": 0.469599729224073, - "2023-12-24": 0.6197689373492972, - "2023-09-24": 0.508547549393652, - "2024-01-16": 0.5750767907052247, - "2023-10-17": 0.4914638276604435, - "2024-03-18": 0.6115351670880099, - "2024-02-17": 0.5527084946099224, - "2023-12-27": 0.6287855019162999, - "2023-07-23": 0.7393237365504124, - "2023-09-03": 0.5032068212073162, - "2024-02-24": 0.5440430543005237, - "2024-01-06": 0.568100519431602, - "2024-03-20": 0.5928489223269618, - "2023-11-21": 0.6077765004491317, - "2023-12-25": 0.6365332247000748, - "2023-09-22": 0.5109603437954485, - "2023-10-02": 0.5218256659760975, - "2024-03-27": 0.6195742932603288, - "2023-04-28": 0.4726964670921817, - "2023-08-04": 0.6608770230963643, - "2023-08-30": 0.5297393576595327, - "2023-04-24": 0.46303085456974175, - "2023-10-06": 0.5229759753328108, - "2023-10-13": 0.4823262602430139, - "2023-06-28": 0.4738719091682448, - "2024-02-05": 0.504887865134874, - "2024-03-01": 0.5927586430974036, - "2023-07-15": 0.7200715054465789, - "2023-06-25": 0.49033703185313765, - "2023-12-10": 0.6613313766253665, - "2023-11-23": 0.6135839379519356, - "2024-01-13": 0.5737128841044961, - "2024-03-28": 0.6217604041595591, - "2023-08-05": 0.6250706314210613, - "2024-02-09": 0.521566204415892, - "2023-10-09": 0.5022821648900945, - "2023-05-24": 0.45464493298699193, - "2024-01-09": 0.5694415942192175, - "2023-12-08": 0.6494986218774896, - "2023-05-27": 0.4715038094070001, - "2023-08-18": 0.5040505623134511, - "2023-11-05": 0.6417474233984382, - "2024-04-18": 0.49530695238061556, - "2023-10-22": 0.5199157164076664, - "2023-11-01": 0.6007845649216997, - "2023-05-07": 0.4577578327624478, - "2024-04-12": 0.5938708230448095, - "2024-03-12": 0.6944540817340468, - "2023-09-11": 0.4739372392694539, - "2024-03-03": 0.6266720233237513, - "2024-02-04": 0.5116111574363491, - "2024-01-28": 0.53000857245379, - "2023-04-18": 0.5185007015738914, - "2023-07-06": 0.47405080686835493, - "2023-07-01": 0.4705392265025971, - "2023-05-18": 0.45946295179617436, - "2023-11-07": 0.6854103720576444, - "2023-11-25": 0.6201399371989148, - "2023-06-04": 0.5300885103019943, - "2024-02-25": 0.5447936591287651, - "2023-12-01": 0.6096287093788446, - "2023-07-14": 0.7715476017493906, - "2024-01-26": 0.519330064898466, - "2023-08-03": 0.6703676105074731, - "2024-02-28": 0.5825109716159041, - "2023-09-15": 0.4961091528419238, - "2023-07-18": 0.7530622191709195, - "2023-04-21": 0.4672483700092439, - "2023-12-21": 0.6161521912594309, - "2023-07-20": 0.8101243278975369, - "2024-03-06": 0.6052039617796691, - "2023-09-30": 0.5169266608905306, - "2023-12-12": 0.6202475609911281, - "2024-02-13": 0.5279689882822943, - "2023-05-19": 0.4646248095060847, - "2023-09-20": 0.5158937532048048, - "2023-09-19": 0.5093771748103038, - "2023-09-29": 0.5266253687950656, - "2023-09-12": 0.47927936795615783, - "2023-06-13": 0.5265628538624829, - "2023-10-04": 0.5321982575871042, - "2023-07-08": 0.4679350252328413, - "2024-04-16": 0.49159474238160666, - "2024-03-02": 0.6320336655838593, - "2023-06-27": 0.48074446976457336, - "2023-10-08": 0.5204669406999907, - "2023-11-20": 0.6207075547237657, - "2023-12-20": 0.6130502058550981, - "2023-12-31": 0.6218776605118093, - "2023-11-06": 0.7035348630754624, - "2023-08-22": 0.5169501486153757, - "2023-06-09": 0.5311499460882573, - "2024-03-17": 0.6139837045773321, - "2023-09-18": 0.5006182753350324, - "2024-04-01": 0.6118909707271797, - "2024-01-19": 0.5466206528591269, - "2023-11-11": 0.6679646776343245, - "2023-05-14": 0.42612187710311417, - "2023-05-13": 0.42620496394420504, - "2023-05-06": 0.4606084344166876, - "2023-11-19": 0.6171066224692737, - "2023-05-16": 0.4235879319337525, - "2023-09-23": 0.5112931744597917, - "2023-07-02": 0.48330610844397526, - "2023-08-15": 0.6258847077186727, - "2024-01-25": 0.5120499525846439, - "2024-03-13": 0.6888948855319152, - "2024-01-21": 0.5518540354657302, - "2024-02-01": 0.4967602554573377, - "2023-06-15": 0.477668532645945, - "2024-03-16": 0.6243112721245444, - "2023-11-27": 0.6037906118999709, - "2024-01-10": 0.568578848976876, - "2024-03-15": 0.629101034599423, - "2023-06-21": 0.49646927111951294, - "2024-01-02": 0.6313708539921639, - "2023-04-26": 0.4700404890319659, - "2023-07-11": 0.47485005213699055, - "2023-10-25": 0.5539518812859966, - "2024-01-01": 0.6189869080496528, - "2024-02-14": 0.5320293390977986, - "2023-09-04": 0.505755436265849, - "2023-09-06": 0.5011504193206046, - "2024-04-03": 0.583324239094088, - "2024-03-08": 0.6247344718109464, - "2023-11-28": 0.6049249840316393, - "2023-12-03": 0.6204390227197991, - "2023-08-02": 0.6935482443970987, - "2023-08-27": 0.5257327930024306, - "2023-10-20": 0.5180418882165975, - "2023-05-25": 0.4503743255696833, - "2023-10-10": 0.4979721505820415, - "2024-04-11": 0.6139176583161652, - "2023-06-22": 0.5008938069965961, - "2024-01-14": 0.5772858074885806, - "2023-12-15": 0.6292886361113205, - "2023-10-19": 0.48457921459224246, - "2024-02-08": 0.5139358786623104, - "2023-11-08": 0.6870560131710763, - "2023-11-12": 0.6628117949871758, - "2023-12-22": 0.6203475813278918, - "2023-05-20": 0.4662815137463171, - "2023-05-31": 0.513089140275543, - "2024-03-23": 0.6196137213825006, - "2024-04-10": 0.610982061370458, - "2023-09-27": 0.5011573142859427, - "2024-03-04": 0.6479413426489642, - "2023-09-10": 0.4992253428737822, - "2024-04-13": 0.5358717656230115, - "2024-02-29": 0.5966963712345492, - "2023-07-22": 0.7688952252426356, - "2023-07-21": 0.7792371162608247, - "2023-06-30": 0.47490291592228784, - "2023-12-29": 0.6293056546445539, - "2023-12-04": 0.623004153520626, - "2023-09-21": 0.5085685482977536, - "2023-06-02": 0.5159625348477731, - "2023-10-11": 0.4868031094489517, - "2023-07-19": 0.7993297004980795, - "2023-05-05": 0.46322838446645204, - "2024-03-21": 0.620066546144654, - "2024-04-08": 0.6082847244816842, - "2023-04-29": 0.47910462322281816, - "2023-06-14": 0.5043093618817923, - "2023-10-05": 0.5239499238566213, - "2023-10-16": 0.49383405735900743, - "2024-02-10": 0.5239461072076274, - "2024-04-07": 0.5958327495625325, - "2023-05-21": 0.4655775399473678, - "2024-02-20": 0.5638574768802147, - "2023-11-17": 0.6122569513904897, - "2023-12-11": 0.6210738067493061, - "2023-11-26": 0.6205398086459536, - "2023-11-16": 0.6385771880405966, - "2023-06-29": 0.4698738842202444, - "2023-06-11": 0.5080812783630902, - "2024-02-02": 0.5046427918739744, - "2023-09-14": 0.48455956125188954, - "2024-01-27": 0.5301373260037051, - "2024-03-30": 0.626917228468726, - "2023-05-04": 0.4603638427137163, - "2023-09-28": 0.500749559339888, - "2023-10-27": 0.550118375415513, - "2023-05-01": 0.4636049891292151, - "2023-05-15": 0.42696169555039154, - "2023-11-22": 0.594690976025873, - "2023-06-03": 0.5219186282127951, - "2024-01-18": 0.5616894584813569, - "2023-08-26": 0.5234799090822889, - "2024-02-15": 0.5507093358439508, - "2023-10-28": 0.5457370294481348, - "2024-03-24": 0.6296313057286489, - "2023-04-22": 0.45809824483363365, - "2023-12-06": 0.6240241301343278, - "2023-11-10": 0.6588577901553031, - "2024-01-30": 0.5264224733053403, - "2023-08-09": 0.6443186541231725, - "2023-05-02": 0.46298658805632226, - "2023-11-14": 0.6548860202510128, - "2024-01-23": 0.5100235664626317, - "2024-01-31": 0.5078869846261936, - "2024-01-11": 0.6018676770440073, - "2024-02-18": 0.5568519619172279, - "2023-06-16": 0.47229613103268686, - "2023-10-30": 0.5662950761815182, - "2023-12-17": 0.6176766041830895, - "2024-02-26": 0.5403575956936831, - "2023-07-16": 0.7468599871142778, - "2024-01-05": 0.5726413558526439, - "2023-08-23": 0.5209905422588303, - "2024-03-11": 0.6294669474948582, - "2023-08-01": 0.6909509420376279, - "2024-03-14": 0.6786867830691182, - "2024-02-21": 0.5428857245029131, - "2023-08-28": 0.5193720367904906, - "2023-07-04": 0.4880438048670825, - "2023-12-13": 0.608340549005338, - "2023-04-23": 0.4657101017912807, - "2023-08-13": 0.6280264351835038, - "2024-03-31": 0.6266238223483388, - "2023-12-09": 0.6779306489692595, - "2024-04-02": 0.5916317253371768, - "2024-02-06": 0.5039959664346048, - "2024-04-09": 0.6170839655541908, - "2023-05-30": 0.5018444573454368, - "2023-11-04": 0.612956318163612, - "2024-01-15": 0.5787205792410414, - "2023-07-03": 0.48335622850694043, - "2023-12-28": 0.6378917232799676, - "2023-05-08": 0.4348931289085713, - "2024-02-27": 0.5609676951353904, - "2024-02-07": 0.50352080391994, - "2023-09-25": 0.4993784077118236, - "2024-03-19": 0.5991159919653761, - "2024-03-10": 0.619548173243094, - "2023-09-02": 0.4971066847749898, - "2024-01-12": 0.5944561233360893, - "2023-11-29": 0.6097113338975108, - "2023-10-15": 0.48693601343945736, - "2023-11-30": 0.6034469619907713, - "2024-01-24": 0.5148606065449606, - "2023-08-11": 0.6313210252552184, - "2024-02-11": 0.528149464928612, - "2023-06-08": 0.5208371662997514, - "2023-08-16": 0.5980602426737947, - "2023-11-15": 0.6357421294895255, - "2023-12-16": 0.6204592098665742, - "2024-03-29": 0.625421910819619, - "2024-04-04": 0.5781457279861918, - "2023-06-10": 0.49609905654628483, - "2023-07-28": 0.7119368575352628, - "2024-01-20": 0.5473942064378133, - "2023-10-21": 0.5178756822299275, - "2023-05-12": 0.42682242433995976, - "2023-11-03": 0.6041914154369892, - "2023-08-31": 0.5237120377546961, - "2024-01-29": 0.5269413260860141, - "2024-01-04": 0.581810433348412, - "2023-05-22": 0.4598856747666677, - "2023-07-26": 0.7050399299638458, - "2023-11-13": 0.6544304216194001, - "2024-03-25": 0.6367926797864369, - "2023-08-07": 0.6168066033283617, - "2023-10-29": 0.554849132442602, - "2023-07-25": 0.6968884294110078, - "2023-05-17": 0.4468023366890397, - "2023-10-24": 0.5530837018849658, - "2023-06-05": 0.5308005334452501, - "2023-11-02": 0.6081137416221696, - "2023-12-18": 0.6010561030240346, - "2023-11-24": 0.6207187058467981, - "2023-08-21": 0.5235439708714853, - "2023-08-14": 0.6282450750708103, - "2023-05-26": 0.4639811783950144, - "2024-03-05": 0.6417088969751393, - "2024-04-06": 0.5901851513892287, - "2023-12-23": 0.6172527425888783, - "2024-02-03": 0.5191161630791694, - "2024-02-16": 0.5659911864825394, - "2023-05-28": 0.4729982396048332, - "2023-12-14": 0.6268725990776044, - "2023-06-24": 0.4910069969938311, - "2023-12-26": 0.6227746548308916, - "2023-11-09": 0.6870324915660039, - "2023-05-11": 0.4226274587798652, - "2023-08-19": 0.5066430819017617, - "2023-06-23": 0.495611112660618, - "2023-06-18": 0.4875448150029073, - "2023-08-08": 0.6243479480587641, - "2023-08-17": 0.5815188687185101, - "2024-04-14": 0.4874174286249101, - "2023-07-24": 0.7032818860942122, - "2023-10-14": 0.485671104335164, - "2024-01-17": 0.5704159093640725, - "2023-04-19": 0.4966820493666172, - "2024-04-14T03": 0.4693983605352873, - "2024-04-16T02": 0.490376472, - "2024-04-13T04": 0.545676384, - "2024-04-18T09": 0.4900428874, - "2024-04-12T19": 0.5307531043026839, - "2024-04-18T20": 0.502081008, - "2024-04-15T06": 0.5135643719999999, - "2024-04-17T20": 0.495670258, - "2024-04-14T19": 0.489812631, - "2024-04-15T01": 0.49874303799999997, - "2024-04-18T10": 0.48939786, - "2024-04-12T14": 0.594344322, - "2024-04-12T20": 0.5430566303106014, - "2024-04-15T12": 0.512196349, - "2024-04-14T23": 0.5045824079999999, - "2024-04-13T07": 0.5433575279999999, - "2024-04-14T20": 0.48884661, - "2024-04-17T00": 0.49576354799999994, - "2024-04-15T00": 0.50097047, - "2024-04-14T01": 0.4748783254643345, - "2024-04-18T19": 0.5018508, - "2024-04-17T22": 0.49549009, - "2024-04-17T09": 0.498724325, - "2024-04-15T14": 0.500845345, - "2024-04-15T20": 0.49570811000000004, - "2024-04-16T10": 0.485003616, - "2024-04-16T18": 0.49312817999999997, - "2024-04-18T04": 0.497165196, - "2024-04-19T01": 0.482535072, - "2024-04-15T02": 0.49794774999999997, - "2024-04-15T16": 0.49394685, - "2024-04-19T03": 0.48452906999999995, - "2024-04-14T05": 0.4882637127815632, - "2024-04-17T08": 0.49994994, - "2024-04-14T13": 0.487548523, - "2024-04-14T10": 0.490630488, - "2024-04-18T17": 0.499784715, - "2024-04-13T14": 0.54390876, - "2024-04-17T10": 0.49374674999999996, - "2024-04-19T02": 0.47234250699999997, - "2024-04-14T15": 0.48554561999999996, - "2024-04-14T12": 0.485647554, - "2024-04-16T09": 0.4965007599948008, - "2024-04-17T02": 0.495233677, - "2024-04-12T09": 0.609684138, - "2024-04-14T18": 0.49035196200000003, - "2024-04-14T09": 0.49124549999999995, - "2024-04-16T20": 0.49317255000000004, - "2024-04-18T00": 0.4916742875538145, - "2024-04-15T23": 0.497309384, - "2024-04-12T22": 0.5442487248555088, - "2024-04-18T21": 0.502275735, - "2024-04-15T13": 0.51144457, - "2024-04-18T08": 0.48899778, - "2024-04-13T20": 0.44936824044012114, - "2024-04-17T05": 0.49944987, - "2024-04-15T18": 0.49255599600000005, - "2024-04-19T06": 0.49253787200000004, - "2024-04-16T01": 0.494238348, - "2024-04-14T11": 0.48413711100000006, - "2024-04-13T13": 0.54540906, - "2024-04-12T16": 0.591986081, - "2024-04-16T06": 0.492185302, - "2024-04-17T12": 0.4870385320000001, - "2024-04-15T05": 0.5025565249000001, - "2024-04-17T03": 0.49699938, - "2024-04-18T18": 0.498134013, - "2024-04-18T14": 0.50035005, - "2024-04-12T12": 0.60418846, - "2024-04-17T14": 0.48508911099999996, - "2024-04-13T03": 0.5408835617, - "2024-04-18T07": 0.49049808, - "2024-04-16T00": 0.492737928, - "2024-04-17T23": 0.494875255, - "2024-04-13T23": 0.47948629893126155, - "2024-04-14T14": 0.48259295999999996, - "2024-04-16T13": 0.4858033449128958, - "2024-04-17T16": 0.481595184, - "2024-04-16T22": 0.4965493002012777, - "2024-04-15T15": 0.49514250100000007, - "2024-04-16T12": 0.48949788, - "2024-04-18T13": 0.4935285335719282, - "2024-04-16T05": 0.48728733, - "2024-04-17T17": 0.48859022799999996, - "2024-04-12T13": 0.597102891, - "2024-04-12T23": 0.5466323238193052, - "2024-04-17T15": 0.47831913200000004, - "2024-04-15T19": 0.49080605200000005, - "2024-04-18T01": 0.49444066, - "2024-04-16T14": 0.48644589, - "2024-04-16T08": 0.49738396399999996, - "2024-04-18T02": 0.49466537099999996, - "2024-04-13T11": 0.54445444, - "2024-04-16T23": 0.49717395000000003, - "2024-04-18T16": 0.50075025, - "2024-04-16T21": 0.49679934, - "2024-04-14T02": 0.4732088791356836, - "2024-04-12T10": 0.6083869900000001, - "2024-04-16T15": 0.487077476, - "2024-04-12T11": 0.608362646, - "2024-04-17T06": 0.49794934, - "2024-04-18T15": 0.501975935, - "2024-04-13T00": 0.5460851395756723, - "2024-04-18T03": 0.49798008, - "2024-04-13T08": 0.541551592, - "2024-04-13T06": 0.545058021, - "2024-04-15T04": 0.497182536, - "2024-04-16T04": 0.4830621183156292, - "2024-04-14T16": 0.4918081740000001, - "2024-04-16T07": 0.49787368, - "2024-04-18T05": 0.4962099239999999, - "2024-04-13T02": 0.5380344750000001, - "2024-04-15T09": 0.5152661700000001, - "2024-04-13T05": 0.5466584849999999, - "2024-04-15T17": 0.4924559440000001, - "2024-04-16T16": 0.49104539999999997, - "2024-04-15T21": 0.49315776000000006, - "2024-04-17T01": 0.494568096, - "2024-04-14T21": 0.48644589, - "2024-04-15T07": 0.515758617, - "2024-04-18T12": 0.49156216199999997, - "2024-04-15T22": 0.49460384500000004, - "2024-04-13T22": 0.47088807864623683, - "2024-04-12T17": 0.5755910399999999, - "2024-04-18T23": 0.5025959359999999, - "2024-04-19T04": 0.48911736, - "2024-04-15T08": 0.5151786710000001, - "2024-04-14T22": 0.499734892, - "2024-04-17T19": 0.498070114, - "2024-04-19T07": 0.49712425000000005, - "2024-04-12T18": 0.5300587073109828, - "2024-04-14T04": 0.4794994414846272, - "2024-04-16T17": 0.4951287, - "2024-04-17T11": 0.49070404800000006, - "2024-04-13T21": 0.4486301816880222, - "2024-04-13T09": 0.5404512840000001, - "2024-04-14T08": 0.49684829999999996, - "2024-04-15T11": 0.5151351839999999, - "2024-04-19T05": 0.48773165199999996, - "2024-04-17T13": 0.49034504999999995, - "2024-04-14T06": 0.49478681, - "2024-04-13T19": 0.5215683618375501, - "2024-04-14T07": 0.495231583, - "2024-04-19T00": 0.49882935599999995, - "2024-04-13T16": 0.53770752, - "2024-04-15T10": 0.517406562, - "2024-04-19T09": 0.499419648, - "2024-04-13T15": 0.54440886, - "2024-04-12T15": 0.5939850210000001, - "2024-04-17T18": 0.499475025, - "2024-04-13T17": 0.52330464, - "2024-04-18T06": 0.490668684, - "2024-04-17T04": 0.49836976200000005, - "2024-04-19T08": 0.49891444099999993, - "2024-04-16T19": 0.49202789399999997, - "2024-04-15T03": 0.49828784400000004, - "2024-04-17T21": 0.495060392, - "2024-04-13T18": 0.5235727219999999, - "2024-04-13T10": 0.5420896650000001, - "2024-04-16T11": 0.48887104500000006, - "2024-04-12T21": 0.5464418999261689, - "2024-04-18T11": 0.49654892, - "2024-04-17T07": 0.5028256750000001, - "2024-04-13T01": 0.537929072, - "2024-04-14T17": 0.48443241600000003, - "2024-04-18T22": 0.5026507499999999, - "2024-04-14T00": 0.47656461765831626, - "2024-04-16T03": 0.49059616, - "2024-04-13T12": 0.5448544799999999, - "latest": 0.511211, - "2024-04-19T11": 0.50152578, - "2024-04-19T10": 0.49901916799999996, - "2024-04-19T12": 0.50152578, - "2024-04-19T13": 0.49964451700000007, - "2024-04-19T14": 0.498119076, - "2024-04-19": 0.5029051623826236, - "2024-04-20": 0.5173690140803148, - "2024-04-19T23": 0.501325495, - "2024-04-19T20": 0.5046664849999999, - "2024-04-19T19": 0.5060062390000001, - "2024-04-19T21": 0.506267013, - "2024-04-19T22": 0.508298159, - "2024-04-19T16": 0.501120396, - "2024-04-19T17": 0.502531058, - "2024-04-19T18": 0.5042865169999999, - "2024-04-19T15": 0.49984480400000003, - "2024-04-20T00": 0.502395858, - "2024-04-20T01": 0.502770884, - "2024-04-21": 0.5269979697943893, - "2024-04-20T16": 0.5216512349999999, - "2024-04-20T19": 0.52555762, - "2024-04-20T15": 0.5191297500000001, - "2024-04-20T02": 0.50597703, - "2024-04-20T09": 0.520050771, - "2024-04-20T04": 0.512084284, - "2024-04-20T10": 0.5182502489999999, - "2024-04-20T22": 0.5277793839999999, - "2024-04-21T00": 0.524988928, - "2024-04-20T12": 0.51810878, - "2024-04-21T04": 0.526821172, - "2024-04-20T05": 0.512089403, - "2024-04-20T18": 0.527084415, - "2024-04-20T11": 0.520819761, - "2024-04-20T23": 0.528763866, - "2024-04-20T08": 0.51416962, - "2024-04-20T13": 0.5169136960000001, - "2024-04-21T02": 0.527695175, - "2024-04-21T01": 0.5255733819999999, - "2024-04-20T20": 0.5279583400000001, - "2024-04-20T03": 0.5114789550000001, - "2024-04-20T14": 0.51662396, - "2024-04-20T07": 0.514874998, - "2024-04-20T17": 0.52698438, - "2024-04-20T21": 0.5291587, - "2024-04-20T06": 0.513895206, - "2024-04-21T03": 0.528026954, - "2024-04-21T16": 0.52273065, - "2024-04-21T11": 0.531511594, - "2024-04-21T17": 0.5224149060000001, - "2024-04-21T08": 0.5337627332967801, - "2024-04-21T12": 0.52850568, - "2024-04-21T15": 0.526673724, - "2024-04-21T06": 0.531717915, - "2024-04-21T07": 0.533065199, - "2024-04-21T14": 0.5254155660000001, - "2024-04-21T13": 0.5263315500000001, - "2024-04-21T05": 0.52872197, - "2024-04-21T10": 0.52920582, - "2024-04-21T09": 0.531770112, - "2024-04-21T19": 0.5244157319999999, - "2024-04-21T22": 0.5264631679999999, - "2024-04-21T23": 0.524899712, - "2024-04-21T21": 0.527636932, - "2024-04-21T20": 0.52525252, - "2024-04-21T18": 0.52350468, - "2024-04-22": 0.5363289976538964, - "2024-04-22T00": 0.5248577280000001, - "2024-04-22T07": 0.5352048930000001, - "2024-04-22T05": 0.5364305659999999, - "2024-04-22T04": 0.5365278907716373, - "2024-04-22T02": 0.524873472, - "2024-04-22T01": 0.5253630359999999, - "2024-04-22T06": 0.5366681999999999, - "2024-04-22T03": 0.532747943, - "2024-04-22T08": 0.5334559360000001, - "2024-04-22T09": 0.532407558, - "2024-04-22T10": 0.5335239860000001, - "2024-04-22T11": 0.532660876, - "2024-04-22T12": 0.5337134, - "2024-04-22T13": 0.534576352, - "2024-04-22T14": 0.53541408, - "2024-04-22T15": 0.5392748900000001, - "2024-04-22T16": 0.5434361533000001, - "2024-04-23": 0.5490112716474673, - "2024-04-23T03": 0.5498243178296874, - "2024-04-22T19": 0.550108962, - "2024-04-22T17": 0.5470132519999998, - "2024-04-22T23": 0.557637241, - "2024-04-22T20": 0.5633533250999999, - "2024-04-22T21": 0.5599679399999999, - "2024-04-22T18": 0.5453389462, - "2024-04-23T06": 0.5497076639999999, - "2024-04-22T22": 0.5595678199999999, - "2024-04-23T04": 0.549001785, - "2024-04-23T01": 0.555616606, - "2024-04-23T07": 0.5497402022202422, - "2024-04-23T00": 0.5562168399999999, - "2024-04-23T05": 0.54902922, - "2024-04-23T02": 0.5535711170000001, - "2024-04-23T08": 0.5479807739999999, - "2024-04-23T09": 0.54639117, - "2024-04-23T10": 0.545334393, - "2024-04-23T11": 0.544655868, - "2024-04-23T12": 0.5438011319999999, - "2024-04-23T13": 0.544723245, - "2024-04-23T14": 0.547551758, - "2024-04-23T15": 0.54826443, - "2024-04-23T16": 0.548493228, - "2024-04-24": 0.5452542670648143, - "2024-04-24T02": 0.5444407632012639, - "2024-04-24T00": 0.543332598, - "2024-04-24T01": 0.54515451, - "2024-04-23T23": 0.54503815, - "2024-04-24T06": 0.54802192, - "2024-04-23T22": 0.5485113511868668, - "2024-04-23T18": 0.551226753, - "2024-04-23T20": 0.55265526, - "2024-04-23T21": 0.550927545, - "2024-04-24T04": 0.5486, - "2024-04-24T05": 0.5499384930000001, - "2024-04-24T03": 0.5467002944782303, - "2024-04-24T07": 0.549094509, - "2024-04-23T19": 0.5521104, - "2024-04-23T17": 0.5523524059113578, - "2024-04-24T08": 0.5499615, - "2024-04-24T09": 0.54548909, - "2024-04-24T10": 0.54474552, - "2024-04-24T11": 0.545756336, - "2024-04-24T12": 0.544094559, - "2024-04-24T13": 0.5396514269999999, - "2024-04-24T14": 0.5299046000000001, - "2024-04-24T15": 0.5275255440000001, - "2024-04-25": 0.527180116232759, - "2024-04-24T18": 0.5335544520000001, - "2024-04-25T00": 0.5289354000000001, - "2024-04-24T21": 0.531016335, - "2024-04-24T17": 0.5334989567904348, - "2024-04-24T16": 0.52820404, - "2024-04-24T20": 0.5324410392, - "2024-04-24T23": 0.5249111399999999, - "2024-04-24T22": 0.52827704, - "2024-04-24T19": 0.534814656, - "2024-04-25T01": 0.528999471, - "2024-04-25T03": 0.5265630579999999, - "2024-04-25T06": 0.527084016, - "2024-04-25T05": 0.5268524400000001, - "2024-04-25T04": 0.523869, - "2024-04-25T02": 0.524500326, - "2024-04-25T07": 0.524179411, - "2024-04-25T08": 0.523958493, - "2024-04-25T09": 0.52419514, - "2024-04-25T10": 0.517501656, - "2024-04-25T11": 0.5187702750000001, - "2024-04-25T12": 0.51819264, - "2024-04-25T13": 0.515585301, - "2024-04-25T14": 0.520492728, - "2024-04-25T15": 0.521807624, - "2024-04-25T16": 0.52567914, - "2024-04-25T17": 0.527573046, - "2024-04-25T18": 0.5291094519999999, - "2024-04-25T19": 0.529877358, - "2024-04-26": 0.5253049613831209, - "2024-04-25T22": 0.5279828937715851, - "2024-04-25T21": 0.530901551772085, - "2024-04-25T20": 0.530477106, - "2024-04-26T01": 0.520415612, - "2024-04-25T23": 0.5254474499999999, - "2024-04-26T00": 0.522679756, - "2024-04-26T05": 0.531409645, - "2024-04-26T07": 0.52937, - "2024-04-26T02": 0.5256789719999999, - "2024-04-26T03": 0.5280853618455472, - "2024-04-26T04": 0.52894181, - "2024-04-26T06": 0.5327, - "2024-04-26T08": 0.5255105099999999, - "2024-04-26T09": 0.5250474900000001, - "2024-04-26T10": 0.52343718, - "2024-04-26T11": 0.522126892, - "2024-04-26T12": 0.523710954, - "2024-04-26T13": 0.5204958799999999, - "2024-04-26T14": 0.5228001889, - "2024-04-26T15": 0.5177549880000001, - "2024-04-26T21": 0.5280198443999999, - "2024-04-26T22": 0.52461632, - "2024-04-26T17": 0.523006416, - "2024-04-26T19": 0.52683663, - "2024-04-26T16": 0.52133312, - "2024-04-26T18": 0.524347895, - "2024-04-26T20": 0.52783632, - "2024-04-27": 0.5259364466531022, - "2024-04-26T23": 0.525000424, - "2024-04-27T00": 0.521138397, - "2024-04-27T01": 0.512166802, - "2024-04-28": 0.5174770275855083, - "2024-04-27T13": 0.51586447, - "2024-04-28T00": 0.518547148, - "2024-04-27T20": 0.51864708, - "2024-04-27T23": 0.5181474199999999, - "2024-04-27T06": 0.516999966, - "2024-04-27T05": 0.517182692, - "2024-04-27T02": 0.5172604235682297, - "2024-04-27T18": 0.5197411310000001, - "2024-04-27T07": 0.515880286, - "2024-04-27T04": 0.519003999, - "2024-04-27T21": 0.518052672, - "2024-04-27T09": 0.514270656, - "2024-04-27T14": 0.516968928, - "2024-04-27T22": 0.517347964, - "2024-04-27T16": 0.5159489159999999, - "2024-04-27T10": 0.514055352, - "2024-04-27T17": 0.5203511310000001, - "2024-04-27T08": 0.5143860330000001, - "2024-04-27T12": 0.5152648599999999, - "2024-04-27T15": 0.515580142, - "2024-04-27T11": 0.5124820640000001, - "2024-04-27T03": 0.5191649819999999, - "2024-04-27T19": 0.51943614, - "2024-04-28T01": 0.520561415, - "2024-04-28T20": 0.518907933, - "2024-04-28T14": 0.5189507839999999, - "2024-04-28T05": 0.5224411164, - "2024-04-28T08": 0.522049992, - "2024-04-28T16": 0.519997122, - "2024-04-28T11": 0.5174049110000001, - "2024-04-28T22": 0.51389436, - "2024-04-28T03": 0.5229465323016785, - "2024-04-28T13": 0.5196608460000001, - "2024-04-28T15": 0.519676443, - "2024-04-28T04": 0.521907568, - "2024-04-28T09": 0.520871644, - "2024-04-28T19": 0.519902362, - "2024-04-28T06": 0.5233491210000001, - "2024-04-28T12": 0.518061582, - "2024-04-28T02": 0.521198368, - "2024-04-28T17": 0.5192922, - "2024-04-28T21": 0.517908303, - "2024-04-28T18": 0.519402552, - "2024-04-28T07": 0.523769817, - "2024-04-28T10": 0.519808744, - "2024-04-29": 0.5078982239570896, - "2024-04-28T23": 0.510011226, - "2024-04-29T00": 0.51185152, - "2024-04-29T01": 0.5130357759999999, - "2024-04-29T06": 0.5016498300000001, - "2024-04-29T02": 0.5098674, - "2024-04-29T07": 0.502159824, - "2024-04-29T05": 0.507318816, - "2024-04-29T03": 0.506603727, - "2024-04-29T04": 0.5065935930000001, - "2024-04-29T08": 0.50195984, - "2024-04-29T09": 0.505074745, - "2024-04-29T10": 0.507069574, - "2024-04-29T11": 0.5068986, - "2024-04-29T12": 0.5063885699999999, - "2024-04-29T13": 0.5063800717825176, - "2024-04-29T14": 0.511113096, - "2024-04-29T15": 0.5123, - "2024-04-30": 0.5147823518232816, - "2024-04-30T04": 0.51574523, - "2024-04-29T21": 0.5132254439999999, - "2024-04-30T03": 0.5142045279999999, - "2024-04-29T22": 0.51524225, - "2024-04-29T19": 0.515988358, - "2024-04-29T23": 0.516183112, - "2024-04-29T18": 0.5143919549999999, - "2024-04-30T00": 0.516165762, - "2024-04-29T20": 0.515062962, - "2024-04-30T01": 0.5156246280000001, - "2024-04-30T02": 0.512115572, - "2024-04-29T16": 0.51396916, - "2024-04-29T17": 0.515332998, - "2024-04-30T05": 0.5155813890000001, - "2024-04-30T06": 0.512607714, - "2024-04-30T07": 0.512112926, - "2024-04-30T08": 0.5036143710000001, - "2024-04-30T09": 0.5025991168, - "2024-04-30T10": 0.502004601, - "2024-04-30T11": 0.49770044, - "2024-04-30T12": 0.494222016, - "2024-04-30T13": 0.496555957, - "2024-04-30T14": 0.496371564, - "2024-04-30T15": 0.49584273599999995, - "2024-04-30T16": 0.492265032, - "2024-05-01": 0.4995393758879096, - "2024-04-30T22": 0.498760768, - "2024-04-30T17": 0.49661234, - "2024-04-30T20": 0.499489716, - "2024-04-30T23": 0.4992003, - "2024-04-30T19": 0.49519560519475586, - "2024-04-30T18": 0.496262904, - "2024-05-01T01": 0.499669788, - "2024-05-01T00": 0.49898052, - "2024-04-30T21": 0.49953973599999996, - "2024-05-01T02": 0.499809528, - "2024-05-01T03": 0.50149748, - "2024-05-01T05": 0.502655776, - "2024-05-01T04": 0.503325554, - "2024-05-01T06": 0.499564746, - "2024-05-01T07": 0.49050409, - "2024-05-01T08": 0.482286717, - "2024-05-01T09": 0.48833700399999996, - "2024-05-01T10": 0.49242319, - "2024-05-01T11": 0.49302742399999994, - "2024-05-01T12": 0.4944357, - "2024-05-01T13": 0.49526874099999996, - "2024-05-01T15": 0.496208808, - "2024-05-01T16": 0.49994421400000005, - "2024-05-01T14": 0.49564425599999995, - "2024-05-01T21": 0.514552815, - "2024-05-01T20": 0.5109451520000001, - "2024-05-01T17": 0.50737516, - "2024-05-01T19": 0.515053464, - "2024-05-01T18": 0.5121846400000001, - "2024-05-01T22": 0.5141881876, - "2024-05-02": 0.5156307024125296, - "2024-05-02T03": 0.5103891, - "2024-05-02T01": 0.5139340499999999, - "2024-05-02T02": 0.509615405, - "2024-05-01T23": 0.515955952, - "2024-05-02T00": 0.5160851270000001, - "2024-05-02T04": 0.5108334312870583, - "2024-05-02T06": 0.508528503, - "2024-05-02T07": 0.51254097, - "2024-05-02T05": 0.511014075, - "2024-05-02T08": 0.5122821879999999, - "2024-05-02T09": 0.5133380639999999, - "2024-05-02T10": 0.5140046039999999, - "2024-05-02T11": 0.51681388, - "2024-05-02T12": 0.5174498959999999, - "2024-05-02T13": 0.514969347901741, - "2024-05-02T14": 0.517727508, - "2024-05-02T15": 0.5204843849999999, - "2024-05-02T16": 0.519605196, - "2024-05-02T17": 0.5195103899999999, - "2024-05-03T04": 0.5211052110000001, - "2024-05-03T02": 0.5211729540000001, - "2024-05-03T03": 0.5217678210000001, - "2024-05-03T05": 0.521236484, - "2024-05-03T06": 0.5196623519999999, - "2024-05-03T00": 0.5172465479999999, - "2024-05-03T07": 0.5190519, - "2024-05-03T01": 0.520436428, - "2024-05-03T08": 0.523305233, - "2024-05-03T09": 0.520257222, - "2024-05-03T10": 0.518341464, - "2024-05-03T11": 0.515494845, - "2024-05-03T12": 0.52146871, - "2024-05-03T13": 0.524, - "2024-05-03T14": 0.5241786150000001, - "2024-05-03T15": 0.5249102080000001, - "2024-05-03": 0.5222156368709214, - "2024-05-04": 0.532131040866549, - "2024-05-04T05": 0.529253439, - "2024-05-03T18": 0.527310712, - "2024-05-04T03": 0.5295164680000001, - "2024-05-03T17": 0.527263401, - "2024-05-03T21": 0.5327715749999999, - "2024-05-03T20": 0.5337406693544248, - "2024-05-04T06": 0.5296120269534317, - "2024-05-03T22": 0.532328803, - "2024-05-03T19": 0.5291587, - "2024-05-04T02": 0.528716292, - "2024-05-03T16": 0.5262767964, - "2024-05-04T01": 0.530875131, - "2024-05-04T04": 0.5298483159999999, - "2024-05-03T23": 0.53220748, - "2024-05-04T00": 0.5310858150000001, - "2024-05-04T13": 0.537285952, - "2024-05-04T10": 0.533810676, - "2024-05-04T12": 0.5360536, - "2024-05-04T07": 0.5288951840000001, - "2024-05-04T11": 0.53565356, - "2024-05-04T09": 0.530384848, - "2024-05-04T15": 0.53570712, - "2024-05-04T08": 0.528900472, - "2024-05-04T14": 0.53620722, - "2024-05-05": 0.5290203365128416, - "2024-05-05T01": 0.5267684709999999, - "2024-05-04T19": 0.5328266400000001, - "2024-05-04T20": 0.5343213720000001, - "2024-05-05T05": 0.527368549, - "2024-05-05T07": 0.52895289, - "2024-05-04T23": 0.5304530399999999, - "2024-05-04T22": 0.53015301, - "2024-05-04T21": 0.531810636, - "2024-05-05T00": 0.52947941, - "2024-05-05T08": 0.530158311, - "2024-05-04T17": 0.53303198, - "2024-05-05T09": 0.529463528, - "2024-05-05T10": 0.5288793200000002, - "2024-05-05T04": 0.5274685619999999, - "2024-05-04T16": 0.53508025, - "2024-05-05T06": 0.52755275, - "2024-05-05T03": 0.52706851, - "2024-05-04T18": 0.5332319919999999, - "2024-05-05T02": 0.527368549, - "2024-05-05T21": 0.5288581680000001, - "2024-05-05T16": 0.5320159600000001, - "2024-05-05T22": 0.528863456, - "2024-05-05T17": 0.531447826, - "2024-05-05T20": 0.5296030754759162, - "2024-05-05T13": 0.5283764847054958, - "2024-05-05T15": 0.5311371770000001, - "2024-05-05T12": 0.5277844319999999, - "2024-05-05T18": 0.529895364, - "2024-05-05T14": 0.5286004149999999, - "2024-05-05T19": 0.530284832, - "2024-05-05T11": 0.5293846879999999, - "2024-05-05T23": 0.529647664, - "2024-05-06T00": 0.53095309, - "2024-05-06T02": 0.531847862, - "2024-05-06T05": 0.5342267100000001, - "2024-05-06T06": 0.5347106939999999, - "2024-05-06T07": 0.53603216, - "2024-05-06T04": 0.533632016, - "2024-05-06T01": 0.5316903719999999, - "2024-05-06T03": 0.5305318299999999, - "2024-05-06T08": 0.5444, - "2024-05-06T09": 0.5426, - "2024-05-06T11": 0.5358428640000001, - "2024-05-06T10": 0.5354, - "2024-05-06T12": 0.5310531000000001, - "2024-05-06T13": 0.530137107, - "2024-05-06T14": 0.5324532399999999, - "2024-05-06T15": 0.543132586, - "2024-05-06T17": 0.56225622, - "2024-05-06T16": 0.551794482, - "2024-05-06T18": 0.5477, - "2024-05-06": 0.5294291282507735, - "2024-05-07": 0.5404023687654772, - "2024-05-06T22": 0.542416272, - "2024-05-07T07": 0.537543, - "2024-05-07T06": 0.533916017, - "2024-05-07T01": 0.541235044, - "2024-05-07T00": 0.539589208, - "2024-05-06T21": 0.545356368, - "2024-05-06T20": 0.546528942, - "2024-05-06T23": 0.540594594, - "2024-05-07T04": 0.538578456, - "2024-05-06T19": 0.546078156, - "2024-05-07T03": 0.5372892539999999, - "2024-05-07T02": 0.5424332814397105, - "2024-05-07T05": 0.53697852, - "2024-05-07T08": 0.5407108139999999, - "2024-05-07T09": 0.5422, - "2024-05-07T10": 0.5395215800000001, - "2024-05-07T11": 0.5380269000000001, - "2024-05-07T12": 0.535705357, - "2024-05-07T13": 0.5366536599999999, - "2024-05-07T14": 0.537594624, - "2024-05-07T15": 0.540329748, - "2024-05-08": 0.5224045486358709, - "2024-05-09": 0.5180514776842283, - "2024-05-10": 0.5137643141973631, - "2024-05-09T13": 0.51180032, - "2024-05-10T00": 0.518627382, - "2024-05-08T08": 0.5219478000000001, - "2024-05-09T14": 0.5123334479999999, - "2024-05-08T10": 0.522037348, - "2024-05-09T04": 0.521633831, - "2024-05-10T01": 0.51764823, - "2024-05-08T03": 0.5251669724, - "2024-05-09T07": 0.5186353610000001, - "2024-05-09T11": 0.5124949200000001, - "2024-05-09T00": 0.518881978, - "2024-05-09T01": 0.5197712, - "2024-05-10T06": 0.5167328160000001, - "2024-05-09T19": 0.51893772, - "2024-05-10T05": 0.5174327249999999, - "2024-05-10T02": 0.517853389, - "2024-05-09T23": 0.5203723428, - "2024-05-09T06": 0.521128872, - "2024-05-08T01": 0.5235483702129667, - "2024-05-09T09": 0.51464255, - "2024-05-09T20": 0.519163656, - "2024-05-08T19": 0.524963474, - "2024-05-09T03": 0.5214339330000001, - "2024-05-08T21": 0.519459708, - "2024-05-09T22": 0.520106364, - "2024-05-08T17": 0.527189267, - "2024-05-09T05": 0.521923234, - "2024-05-08T06": 0.520011583, - "2024-05-08T15": 0.525689582, - "2024-05-10T08": 0.516637996, - "2024-05-08T07": 0.519990779, - "2024-05-08T04": 0.523137216, - "2024-05-09T15": 0.5153576679999999, - "2024-05-08T18": 0.527278698, - "2024-05-09T10": 0.512218125, - "2024-05-09T21": 0.518711804, - "2024-05-10T03": 0.517258616, - "2024-05-08T00": 0.52299477, - "2024-05-10T07": 0.51742755, - "2024-05-08T14": 0.5274364439999999, - "2024-05-09T17": 0.5161502729999999, - "2024-05-08T13": 0.522674528, - "2024-05-08T05": 0.521111396, - "2024-05-09T18": 0.51774463, - "2024-05-09T08": 0.517835769, - "2024-05-08T20": 0.5199168, - "2024-05-08T22": 0.516639792, - "2024-05-08T11": 0.520558352, - "2024-05-09T12": 0.513374016, - "2024-05-08T02": 0.5247717708, - "2024-05-10T04": 0.518127452, - "2024-05-08T12": 0.5199428, - "2024-05-09T02": 0.520429236, - "2024-05-08T09": 0.520642723, - "2024-05-09T16": 0.5177187350000001, - "2024-05-08T16": 0.527452272, - "2024-05-08T23": 0.5164881530000001, - "2024-05-10T09": 0.516038068, - "2024-05-10T10": 0.5145279559999999, - "2024-05-10T11": 0.514128012, - "2024-05-10T12": 0.513794862, - "2024-05-10T13": 0.5129538299999999, - "2024-05-10T14": 0.503714354, - "2024-05-11": 0.5046975811017742, - "2024-05-12": 0.5043010917610703, - "2024-05-12T16": 0.50509788, - "2024-05-11T03": 0.503343915, - "2024-05-10T17": 0.50214931, - "2024-05-11T16": 0.50659728, - "2024-05-10T15": 0.5007098560000001, - "2024-05-11T04": 0.5033640549999999, - "2024-05-11T12": 0.503073515, - "2024-05-12T15": 0.50419824, - "2024-05-11T11": 0.501579208, - "2024-05-12T04": 0.50779172, - "2024-05-12T11": 0.504432509, - "2024-05-11T22": 0.50588868, - "2024-05-11T21": 0.506588526, - "2024-05-10T21": 0.50214931, - "2024-05-10T23": 0.5021794479999999, - "2024-05-12T00": 0.50604814, - "2024-05-12T03": 0.50719704, - "2024-05-12T12": 0.5041326679999999, - "2024-05-11T08": 0.5042688559999999, - "2024-05-11T17": 0.506227824, - "2024-05-12T19": 0.501009544, - "2024-05-11T23": 0.505768466, - "2024-05-11T05": 0.504663704, - "2024-05-12T02": 0.50639736, - "2024-05-11T02": 0.503159076, - "2024-05-10T16": 0.500539776, - "2024-05-12T14": 0.503673245, - "2024-05-11T09": 0.502159356, - "2024-05-10T18": 0.50394877, - "2024-05-10T19": 0.5048575519999999, - "2024-05-11T06": 0.5051686219999999, - "2024-05-12T08": 0.5041184519999999, - "2024-05-10T20": 0.5024240900000001, - "2024-05-11T18": 0.50609748, - "2024-05-12T05": 0.507297, - "2024-05-12T06": 0.50639736, - "2024-05-11T20": 0.505922865, - "2024-05-12T09": 0.5039932779999999, - "2024-05-11T01": 0.5042610831638, - "2024-05-11T00": 0.50288431, - "2024-05-12T07": 0.504523355, - "2024-05-12T10": 0.505877316, - "2024-05-11T10": 0.5023838820000001, - "2024-05-12T01": 0.50619744, - "2024-05-12T18": 0.501924265, - "2024-05-12T13": 0.504062979, - "2024-05-11T19": 0.50639736, - "2024-05-12T17": 0.50282395, - "2024-05-11T14": 0.5047187538736555, - "2024-05-11T07": 0.505363515, - "2024-05-11T15": 0.506477052, - "2024-05-11T13": 0.504692991, - "2024-05-10T22": 0.500974725, - "2024-05-13": 0.504035684039081, - "2024-05-12T21": 0.4987192116530459, - "2024-05-13T00": 0.5013542160000001, - "2024-05-13T03": 0.48976282800000004, - "2024-05-12T23": 0.49956509400000004, - "2024-05-13T04": 0.491467268, - "2024-05-13T01": 0.498325525, - "2024-05-13T05": 0.49206218400000007, - "2024-05-13T02": 0.492547263, - "2024-05-13T07": 0.49954509299999994, - "2024-05-13T06": 0.49426156800000004, - "2024-05-12T22": 0.499685043, - "2024-05-12T20": 0.500409772, - "2024-05-13T08": 0.503688362, - "2024-05-13T10": 0.5027988, - "2024-05-13T09": 0.504582936, - "2024-05-13T11": 0.5067176574, - "2024-05-13T12": 0.50630753, - "2024-05-13T13": 0.50581278, - "2024-05-13T14": 0.507157956, - "2024-05-13T15": 0.5082779839999999, - "2024-05-13T16": 0.51009796, - "2024-05-14": 0.5050735604287921, - "2024-05-13T17": 0.50790348, - "2024-05-14T01": 0.50619874, - "2024-05-14T02": 0.505263542, - "2024-05-14T06": 0.501539064, - "2024-05-13T19": 0.507394926, - "2024-05-13T22": 0.50414958, - "2024-05-14T04": 0.507026058, - "2024-05-13T21": 0.507364482, - "2024-05-14T03": 0.506036724, - "2024-05-14T00": 0.5057645940000001, - "2024-05-14T07": 0.5047323499999999, - "2024-05-13T20": 0.5073846295000001, - "2024-05-14T05": 0.507015912, - "2024-05-13T23": 0.5049040499999999, - "2024-05-13T18": 0.5054039549999999, - "2024-05-14T08": 0.5051422459999999, - "2024-05-14T09": 0.506356832, - "2024-05-14T10": 0.5055622740000001, - "2024-05-14T11": 0.507036204, - "2024-05-14T12": 0.504986714, - "2024-05-14T13": 0.504487024, - "2024-05-14T14": 0.5021834249999999, - "2024-05-14T15": 0.5081948999999999, - "2024-05-14T16": 0.5061214799999999, - "2024-05-14T17": 0.5040973599999999, - "2024-05-14T18": 0.5039369039999999, - "2024-05-14T19": 0.5051966999999999, - "2024-05-14T20": 0.5047576, - "2024-05-15": 0.5003487333728595, - "2024-05-15T02": 0.5004945120000001, - "2024-05-15T01": 0.499794939, - "2024-05-14T21": 0.5017893760000001, - "2024-05-15T05": 0.501274325, - "2024-05-15T00": 0.49883547699999997, - "2024-05-15T06": 0.499775, - "2024-05-15T03": 0.5011990999999999, - "2024-05-15T07": 0.49974237595431314, - "2024-05-14T23": 0.49978, - "2024-05-15T04": 0.5013492, - "2024-05-14T22": 0.500104883, - "2024-05-15T08": 0.5000449379999999, - "2024-05-15T09": 0.500519904, - "2024-05-15T10": 0.501744802, - "2024-05-15T11": 0.5004299299999999, - "2024-05-15T12": 0.504544494, - "2024-05-15T13": 0.5081796719999999, - "2024-05-15T14": 0.509389812 - }, - "USD ethereum_sepolia": { - "latest": 0 - }, - "status": { - "USD bitcoin": { - "timestamp": 1715785546003, - "oldestDateRequested": "2023-04-09T22:00:00.000Z" - }, - "USD ethereum": { - "timestamp": 1715785546004, - "oldestDateRequested": "2023-04-09T22:00:00.000Z" - }, - "USD bitcoin_testnet": { - "timestamp": 1714802871375, - "failures": 30 - }, - "USD ethereum_holesky": { - "timestamp": 1714802871374, - "failures": 30 - }, - "USD ethereum/erc20/usd_tether__erc20_": { - "timestamp": 1715785546004, - "oldestDateRequested": "2023-04-14T22:00:00.000Z" - }, - "USD solana": { - "timestamp": 1715785546004, - "oldestDateRequested": "2023-04-17T22:00:00.000Z" - }, - "USD cardano": { - "timestamp": 1715785546003, - "oldestDateRequested": "2023-04-17T22:00:00.000Z" - }, - "USD polkadot": { - "timestamp": 1715785203100, - "oldestDateRequested": "2023-04-17T22:00:00.000Z" - }, - "USD tron": { - "timestamp": 1715785546005, - "oldestDateRequested": "2023-04-17T22:00:00.000Z" - }, - "USD ripple": { - "timestamp": 1715785546004, - "oldestDateRequested": "2023-04-18T22:00:00.000Z" - }, - "USD ethereum_sepolia": { - "timestamp": 1715785546944, - "failures": 12 - } - } - } - } -} \ No newline at end of file diff --git a/apps/ledger-live-desktop/tests/utils/speculos.ts b/apps/ledger-live-desktop/tests/utils/speculos.ts index ba80900415ac..707f4a820241 100644 --- a/apps/ledger-live-desktop/tests/utils/speculos.ts +++ b/apps/ledger-live-desktop/tests/utils/speculos.ts @@ -128,6 +128,51 @@ export const specs: Specs = { }, dependency: "", }, + Stellar: { + currency: getCryptoCurrencyById("stellar"), + appQuery: { + model: DeviceModelId.nanoSP, + appName: "Stellar", + appVersion: "5.0.3", + }, + dependency: "", + }, + Bitcoin_Cash: { + currency: getCryptoCurrencyById("bitcoin_cash"), + appQuery: { + model: DeviceModelId.nanoSP, + appName: "Bitcoin Cash", + appVersion: "2.4.1", + }, + dependency: "", + }, + Algorand: { + currency: getCryptoCurrencyById("algorand"), + appQuery: { + model: DeviceModelId.nanoSP, + appName: "Algorand", + appVersion: "2.1.11", + }, + dependency: "", + }, + Cosmos: { + currency: getCryptoCurrencyById("cosmos"), + appQuery: { + model: DeviceModelId.nanoSP, + appName: "Cosmos", + appVersion: "2.35.22", + }, + dependency: "", + }, + Tezos: { + currency: getCryptoCurrencyById("tezos"), + appQuery: { + model: DeviceModelId.nanoSP, + appName: "TezosWallet", + appVersion: "2.4.5", + }, + dependency: "", + }, }; export async function startSpeculos(