diff --git a/package.json b/package.json index 20a1346..bfdc89e 100644 --- a/package.json +++ b/package.json @@ -44,6 +44,7 @@ "react-cookie": "^4.1.1", "react-device-detect": "^2.2.3", "react-dom": "^17.0.0 || ^18.0.0", + "react-error-boundary": "^4.0.13", "react-helmet": "^6.1.0", "react-hook-form": "^7.50.0", "react-icons": "^4.10.1", diff --git a/src/assets/themes/components/forms/switchButton.jsx b/src/assets/themes/components/forms/switchButton.jsx index 9a8b9cd..2c4266a 100644 --- a/src/assets/themes/components/forms/switchButton.jsx +++ b/src/assets/themes/components/forms/switchButton.jsx @@ -16,6 +16,7 @@ const { grey, gradients, transparent, + chartTheme, } = colors; const { borderWidth } = borders; const { md } = boxShadows; @@ -26,7 +27,7 @@ export default { }, styleOverrides: { switchBase: { - color: gradients.success.state, + color: chartTheme.greenAccent.default, '&:hover': { backgroundColor: transparent.main, @@ -41,7 +42,7 @@ export default { '& .MuiSwitch-thumb': { borderColor: `${gradients.success.state} !important`, - backgroundColor: `${gradients.success.main} !important`, + backgroundColor: `${chartTheme.greenAccent.light} !important`, }, '& + .MuiSwitch-track': { @@ -63,7 +64,7 @@ export default { }, }, thumb: { - backgroundColor: success.main, + backgroundColor: chartTheme.greenAccent.dark, boxShadow: md, border: `${borderWidth[1]} solid ${grey.light}`, }, diff --git a/src/components/cards/CardDetailsContainer.jsx b/src/components/cards/CardDetailsContainer.jsx index 3ba8946..7293b53 100644 --- a/src/components/cards/CardDetailsContainer.jsx +++ b/src/components/cards/CardDetailsContainer.jsx @@ -68,6 +68,14 @@ const inventoryDetails = [ { title: 'Collection', key: 'collection' }, { title: 'Cart', key: 'cart' }, ]; +const CardDetailChip = styled(Chip)(({ theme }) => ({ + borderWidth: '2px', + fontWeight: 700, + margin: theme.spacing(0.5), + [theme.breakpoints.down('sm')]: { + fontSize: theme.typography.pxToRem(12), // Smaller font size on small devices + }, +})); const CardDetailTitle = ({ title }) => ( {title}: @@ -84,9 +92,12 @@ const CardDetailPrice = ({ value }) => ( ); const CardDetailRarity = ({ values, onRarityClick }) => { + const { theme } = useMode(); + return values?.map((rarity, index) => ( - onRarityClick(rarity.name)} @@ -100,9 +111,12 @@ const CardDetailRarity = ({ values, onRarityClick }) => { )); }; const CardDetailSet = ({ values }) => { + const { theme } = useMode(); + return values?.map((set, index) => ( - console.log(set.toString())} sx={{ @@ -136,8 +150,10 @@ const RenderDetailsSection = ({ details, card, className, handleAction }) => { {details?.map((detail, index) => ( - - + + {detail.title}: + {detail.key === 'title' && } + {detail.key === 'desc' && ( diff --git a/src/components/forms/Factory/RCDynamicForm.jsx b/src/components/forms/Factory/RCDynamicForm.jsx index a6ac06a..158c9ca 100644 --- a/src/components/forms/Factory/RCDynamicForm.jsx +++ b/src/components/forms/Factory/RCDynamicForm.jsx @@ -5,7 +5,6 @@ import { RCFieldError } from './RCFieldError'; import RCInput from './RCInput'; import { Controller } from 'react-hook-form'; import useRCFormHook from '../hooks/useRCFormHook'; -import ReusableLoadingButton from '../../buttons/other/ReusableLoadingButton'; import { FormBox, FormFieldBox, @@ -24,6 +23,7 @@ import { import { useFormSubmission } from '../hooks/useFormSubmission'; import React, { useCallback, useEffect, useMemo, useState } from 'react'; import useBreakpoint from '../../../context/hooks/useBreakPoint'; +import ReusableLoadingButton from '../../../layout/REUSABLE_COMPONENTS/ReusableLoadingButton'; const RCDynamicForm = ({ formKey, @@ -178,7 +178,7 @@ const RCDynamicForm = ({ // color={button.color} variant="warning" fullWidth - sx={{ mt: 2, background: theme.palette.error.main }} + sx={{ mt: 2.2, background: theme.palette.error.main }} /> )} diff --git a/src/components/forms/hooks/useRCFormHook.jsx b/src/components/forms/hooks/useRCFormHook.jsx index 0124aa5..baa958a 100644 --- a/src/components/forms/hooks/useRCFormHook.jsx +++ b/src/components/forms/hooks/useRCFormHook.jsx @@ -4,7 +4,7 @@ import { useEffect } from 'react'; import { formFields, zodSchemas } from '../formsConfig'; const useRCFormHook = (schemaKey, initialData) => { - console.log('SCHEMA KEY', schemaKey); + // console.log('SCHEMA KEY', schemaKey); const schema = zodSchemas[schemaKey]; const defaultValues = Object.keys(schema.shape).reduce((acc, key) => { const fieldDefinition = schema.shape[key]; diff --git a/src/context/MAIN_CONTEXT/AuthContext/useAuthManager.jsx b/src/context/MAIN_CONTEXT/AuthContext/useAuthManager.jsx index 2bcbade..2392f87 100644 --- a/src/context/MAIN_CONTEXT/AuthContext/useAuthManager.jsx +++ b/src/context/MAIN_CONTEXT/AuthContext/useAuthManager.jsx @@ -1,6 +1,6 @@ import { useCallback, useEffect } from 'react'; import { useNavigate } from 'react-router-dom'; -import jwt_decode from 'jwt-decode'; +import jwtDecode from 'jwt-decode'; import useFetchWrapper from '../../hooks/useFetchWrapper'; import useManageCookies from '../../hooks/useManageCookies'; import useUserData from '../UserContext/useUserData'; @@ -8,10 +8,11 @@ import useUserData from '../UserContext/useUserData'; function useAuthManager() { const navigate = useNavigate(); const { addCookies, getCookie, deleteCookies } = useManageCookies(); - const { authUser, isLoggedIn, accessToken } = getCookie([ + const { authUser, isLoggedIn, accessToken, refreshToken } = getCookie([ 'authUser', 'isLoggedIn', 'accessToken', + 'refreshToken', ]); const { handleSetUser } = useUserData(); const { fetchWrapper } = useFetchWrapper(); @@ -19,7 +20,7 @@ function useAuthManager() { const setAuthCookies = useCallback( (data) => { const { accessToken, refreshToken } = data; - const authData = jwt_decode(accessToken); + const authData = jwtDecode(accessToken); addCookies( ['accessToken', 'refreshToken', 'isLoggedIn', 'authUser', 'userId'], [accessToken, refreshToken, true, authData, authData.userId], @@ -39,27 +40,30 @@ function useAuthManager() { 'authUser', 'isLoggedIn', ]); + localStorage.clear(); // Clear all local storage data + navigate('/login'); - }, []); + }, [navigate, deleteCookies]); const decodeAndSetUser = useCallback( (accessToken) => { - const decoded = jwt_decode(accessToken); + const decoded = jwtDecode(accessToken); handleSetUser(decoded); // Adjust according to your implementation }, [handleSetUser] ); const executeAuthAction = useCallback( - async (actionType, url, requestData) => { + async (endpoint, requestData) => { try { const responseData = await fetchWrapper( - `${process.env.REACT_APP_SERVER}/api/users/${url}`, + `${process.env.REACT_APP_SERVER}/api/users/${endpoint}`, 'POST', requestData, - `${url}` + `${endpoint}` ); if (!responseData?.data) throw new Error('Invalid response structure'); + console.log(responseData); setAuthCookies(responseData.data); } catch (error) { console.error('Auth action error:', error); @@ -71,7 +75,7 @@ function useAuthManager() { const login = useCallback( async (formData) => { const { username, password } = formData; - await executeAuthAction('login', 'signin', { + await executeAuthAction('signin', { userSecurityData: { username, password }, }); }, @@ -81,14 +85,19 @@ function useAuthManager() { const signup = useCallback( async (formData) => { const { username, password, firstName, lastName, email } = formData; - await executeAuthAction('signup', 'signup', { + await executeAuthAction('signup', { userSecurityData: { firstName, lastName, username, password, email }, }); }, [executeAuthAction] ); - const logout = useCallback(() => { + const logout = useCallback(async () => { + await executeAuthAction('signout', { + userId: authUser.userId, + accessToken: accessToken, + refreshToken: refreshToken, + }); clearAuthCookies(); }, []); diff --git a/src/context/MAIN_CONTEXT/CartContext/useCartManager.jsx b/src/context/MAIN_CONTEXT/CartContext/useCartManager.jsx index 18da21e..0d3107f 100644 --- a/src/context/MAIN_CONTEXT/CartContext/useCartManager.jsx +++ b/src/context/MAIN_CONTEXT/CartContext/useCartManager.jsx @@ -108,7 +108,7 @@ export const useCartManager = () => { cartUpdates: updatedCards, method: 'PUT', type: 'increment', - }.cartUpdates, + }, 'addCardsToCart' ); updateCartLocally(response?.data); @@ -176,9 +176,9 @@ export const useCartManager = () => { // useEffect(() => { // updateCartLocally(defaultCart); // }, []); - useEffect(() => { - fetchUserCart(); - }, []); + // useEffect(() => { + // fetchUserCart(); + // }, []); // Calculate totals, quantities using useMemo for performance const totalCost = useMemo( diff --git a/src/context/MAIN_CONTEXT/CollectionContext/useCollectionManager.jsx b/src/context/MAIN_CONTEXT/CollectionContext/useCollectionManager.jsx index 0b4f456..232a47b 100644 --- a/src/context/MAIN_CONTEXT/CollectionContext/useCollectionManager.jsx +++ b/src/context/MAIN_CONTEXT/CollectionContext/useCollectionManager.jsx @@ -114,7 +114,7 @@ const useCollectionManager = () => { actionName !== 'deleteCardFromCollection' && actionName !== 'deleteCollection' ) { - await fetchCollections(); // Refresh collections after any action + await fetchCollections(actionName, response?.data?._id); // Refresh collections after any action console.log('RESPONSE: ', response); // refreshCollections(response?.data); } else if (actionName === 'deleteCollection') { @@ -128,7 +128,7 @@ const useCollectionManager = () => { response?.data?.collectionId, response?.data?.newQuantity ); - await fetchCollections(); // Refresh collections after any action + await fetchCollections(actionName, response?.data?.collectionId); // Refresh collections after any action } } catch (error) { handleError(error, actionName); diff --git a/src/context/MAIN_CONTEXT/DeckContext/useDeckManager.jsx b/src/context/MAIN_CONTEXT/DeckContext/useDeckManager.jsx index 59ed702..9330aa1 100644 --- a/src/context/MAIN_CONTEXT/DeckContext/useDeckManager.jsx +++ b/src/context/MAIN_CONTEXT/DeckContext/useDeckManager.jsx @@ -82,7 +82,6 @@ const useDeckManager = () => { performFetchAndUpdate('allDecks', 'GET', null, 'fetchDecks'); setHasFetchedDecks(true); }, [performFetchAndUpdate]); - const createNewDeck = (deckData) => performFetchAndUpdate('create', 'POST', deckData, 'createNewDeck'); @@ -98,7 +97,6 @@ const useDeckManager = () => { // removeDeck(deckId); // Optimistically remove the deck first for instant UI feedback performFetchAndUpdate(`${deckId}/delete`, 'DELETE', {}, 'deleteDeck'); }; - const addCardsToDeck = (newCards, deckId) => { // INCREASE QTY OF CARDS IN DECK BY 1 // newCards.quantity = newCards.quantity + 1; @@ -132,6 +130,7 @@ const useDeckManager = () => { handleError, addCardsToDeck, removeCardsFromDeck, + loading: status === 'loading' ? true : false, addOneToDeck: (cards, deck) => addCardsToDeck(cards, deck), removeOneFromDeck: (cards, deck) => removeCardsFromDeck(cards, deck), updateDeckDetails, diff --git a/src/context/hooks/useEventHandlers.jsx b/src/context/hooks/useEventHandlers.jsx index 3e0ccc7..8141264 100644 --- a/src/context/hooks/useEventHandlers.jsx +++ b/src/context/hooks/useEventHandlers.jsx @@ -10,7 +10,7 @@ export const useEventHandlers = () => { const handleMouseMove = useCallback( (point) => { debouncedSetHoveredData( - point ? { x: point?.data?.x, y: point?.data?.y } : null + point ? { x: point?.x, y: point?.y, id: point?.id } : null ); }, [debouncedSetHoveredData] diff --git a/src/context/hooks/useFetchWrapper.jsx b/src/context/hooks/useFetchWrapper.jsx index b4247e8..ede625f 100644 --- a/src/context/hooks/useFetchWrapper.jsx +++ b/src/context/hooks/useFetchWrapper.jsx @@ -1,31 +1,49 @@ -import { useState, useCallback } from 'react'; +import { useState, useCallback, useEffect } from 'react'; import useLogger from './useLogger'; import useLocalStorage from './useLocalStorage'; import { useLoading } from './useLoading'; import { useSnackbar } from 'notistack'; +const FETCH_STATUSES = { + IDLE: 'idle', + LOADING: 'loading', + SUCCESS: 'success', + ERROR: 'error', +}; const useFetchWrapper = () => { - const [status, setStatus] = useState('idle'); + const [status, setStatus] = useState(FETCH_STATUSES.IDLE); const [data, setData] = useState(null); const [responseCache, setResponseCache] = useLocalStorage('apiResponses', {}); const [error, setError] = useState(null); - const { logEvent } = useLogger('useFetchWrapper'); + // const { logEvent } = useLogger('useFetchWrapper'); const { startLoading, stopLoading, isLoading } = useLoading(); const { enqueueSnackbar } = useSnackbar(); - const showNotification = (message, variant) => { - enqueueSnackbar(message, { - variant: variant, - anchorOrigin: { - vertical: 'top', - horizontal: 'right', - }, - }); - }; + const showNotification = useCallback( + (message, variant) => { + // const showNotification = useCallback(message, variant) => { + enqueueSnackbar(message, { + variant: variant, + anchorOrigin: { + vertical: 'top', + horizontal: 'right', + }, + }); + }, + [enqueueSnackbar] + ); + + // useEffect to log status changes + // useEffect(() => { + // console.log('Status Change', { status }); + // }, [status]); const fetchWrapper = useCallback( async (url, method = 'GET', body = null, loadingID) => { - setStatus('loading'); - startLoading(loadingID); - showNotification(`Loading ${loadingID}...`, 'info'); + // setStatus('loading'); + // startLoading(loadingID); + // showNotification(`Loading ${loadingID}...`, 'info'); try { + setStatus(FETCH_STATUSES.LOADING); + startLoading(loadingID); + showNotification(`Loading ${loadingID}...`, 'info'); const headers = { 'Content-Type': 'application/json' }; const options = { method, @@ -45,7 +63,7 @@ const useFetchWrapper = () => { throw new Error(`An error occurred: ${response.statusText}`); } - setStatus('success'); + setStatus(FETCH_STATUSES.SUCCESS); setData(responseData); setResponseCache((prevCache) => ({ ...prevCache, @@ -57,19 +75,29 @@ const useFetchWrapper = () => { ); return responseData; - } catch (error) { - setError(error.toString()); - setStatus('error'); - logEvent('fetch error', { url, error: error.toString() }); + } catch (err) { + const errorMessage = err.message || 'An unknown error occurred'; + setError(errorMessage); + setStatus(FETCH_STATUSES.ERROR); + console.error(`Error fetching ${loadingID}:`, errorMessage); showNotification( `Error fetching ${loadingID}: ${error.toString()}`, 'error' ); + return Promise.reject(err); } finally { stopLoading(loadingID); } }, - [startLoading, stopLoading, logEvent, setResponseCache] + [ + setStatus, + // setData, + setResponseCache, + setError, + showNotification, + startLoading, + stopLoading, + ] ); return { diff --git a/src/context/hooks/useLoading.jsx b/src/context/hooks/useLoading.jsx index 97473e5..14b52ed 100644 --- a/src/context/hooks/useLoading.jsx +++ b/src/context/hooks/useLoading.jsx @@ -1,55 +1,212 @@ import { useCallback, useState } from 'react'; -const GENERAL_LOADING_STATES = { +const PAGE_LOADING_IDS = { + CartPage: 'isCollectionLoading', + CollectionPage: 'isDeckLoading', + DeckBuilderPage: 'isCardLoading', + HomePage: 'HomePageLoading', + ProfilerPage: 'isProfilerLoading', + StorePage: 'isStoreLoading', +}; +const FORM_LOADING_IDS = { + loginForm: 'loginForm', + signupForm: 'signupForm', + addDeckForm: 'addDeckForm', + updateDeckForm: 'updateDeckForm', + addCollectionForm: 'addCollectionForm', + updateCollectionForm: 'updateCollectionForm', + updateUserDataForm: 'updateUserDataForm', + searchForm: 'searchForm', + collectionSearchForm: 'collectionSearchForm', + timeRangeForm: 'timeRangeForm', + themRangeForm: 'themeRangeForm', + statRangeForm: 'statRangeForm', + searchSettingsForm: 'searchSettingsSelector', + rememberMeForm: 'rememberMeForm', + authSwitchForm: 'authSwitch', +}; +const AUTH_LOADING_IDS = { + login: 'signin', + signup: 'signup', + logout: 'signout', +}; +const DECK_LOADING_IDS = { + fetchingDecks: 'fetchDecks', + addingDeck: 'createNewDeck', + updatingDeck: 'updateDeckDetails', + deletingDeck: 'deleteDeck', + addingCardsToDeck: 'addCardsToDeck', + removingCardsFromDeck: 'removeCardsFromDeck', +}; +const COLLECTION_LOADING_IDS = { + fetchingCollections: 'fetchCollections', + addingCollection: 'createNewCollection', + updatingCollection: 'updateCollection', + deletingCollection: 'deleteCollection', + addingCardsToCollection: 'addCardsToCollection', + removingCardsFromCollection: 'removeCardsFromCollection', +}; +const CART_LOADING_IDS = { + fetchingCart: 'fetchUserCart', + addingCart: 'createUserCart', + addingCardsToCart: 'addCardsToCart', + removingCardsFromCart: 'removeCardsFromCart', +}; +const GENERAL_LOADING_IDS = { isLoading: 'isLoading', isDataLoading: 'isDataLoading', isFormDataLoading: 'isFormDataLoading', isPageLoading: 'isPageLoading', ifIsSearchLoading: 'isSearchLoading', }; +const LOADING_IDS = { + general: { + isLoading: 'isLoading', + isDataLoading: 'isDataLoading', + isFormDataLoading: 'isFormDataLoading', + isPageLoading: 'isPageLoading', + ifIsSearchLoading: 'isSearchLoading', + }, + pages: { + CartPage: 'isCollectionLoading', + CollectionPage: 'isDeckLoading', + DeckBuilderPage: 'isCardLoading', + HomePage: 'HomePageLoading', + ProfilerPage: 'isProfilerLoading', + StorePage: 'isStoreLoading', + }, + forms: { + loginForm: 'loginForm', + signupForm: 'signupForm', + addDeckForm: 'addDeckForm', + updateDeckForm: 'updateDeckForm', + addCollectionForm: 'addCollectionForm', + updateCollectionForm: 'updateCollectionForm', + updateUserDataForm: 'updateUserDataForm', + searchForm: 'searchForm', + collectionSearchForm: 'collectionSearchForm', + timeRangeForm: 'timeRangeForm', + themRangeForm: 'themeRangeForm', + statRangeForm: 'statRangeForm', + searchSettingsForm: 'searchSettingsSelector', + rememberMeForm: 'rememberMeForm', + authSwitchForm: 'authSwitch', + }, + auth: { + login: 'signin', + signup: 'signup', + logout: 'signout', + }, + decks: { + fetchingDecks: 'fetchDecks', + addingDeck: 'createNewDeck', + updatingDeck: 'updateDeckDetails', + deletingDeck: 'deleteDeck', + addingCardsToDeck: 'addCardsToDeck', + removingCardsFromDeck: 'removeCardsFromDeck', + }, + collections: { + fetchingCollections: 'fetchCollections', + addingCollection: 'createNewCollection', + updatingCollection: 'updateCollection', + deletingCollection: 'deleteCollection', + addingCardsToCollection: 'addCardsToCollection', + removingCardsFromCollection: 'removeCardsFromCollection', + }, + cart: { + fetchingCart: 'fetchUserCart', + addingCart: 'createUserCart', + addingCardsToCart: 'addCardsToCart', + removingCardsFromCart: 'removeCardsFromCart', + }, +}; +const allLoadingIds = Object.values(LOADING_IDS).reduce( + (acc, category) => ({ ...acc, ...category }), + {} +); -/** - * A hook to manage loading states within components. - * It supports tracking multiple loading processes at once. - */ +const LOADING_IDS_KEYS = Object.keys(LOADING_IDS); +const LOADING_STATES_VALUES = { + general: { + [LOADING_IDS.general.isLoading]: true, + [LOADING_IDS.general.isDataLoading]: true, + [LOADING_IDS.general.isFormDataLoading]: true, + [LOADING_IDS.general.isPageLoading]: true, + [LOADING_IDS.general.ifIsSearchLoading]: true, + }, + pages: { + [LOADING_IDS.pages.CartPage]: true, + [LOADING_IDS.pages.CollectionPage]: true, + [LOADING_IDS.pages.DeckBuilderPage]: true, + [LOADING_IDS.pages.HomePage]: true, + [LOADING_IDS.pages.ProfilerPage]: true, + [LOADING_IDS.pages.StorePage]: true, + }, + forms: { + [LOADING_IDS.forms.loginForm]: true, + [LOADING_IDS.forms.signupForm]: true, + [LOADING_IDS.forms.addDeckForm]: true, + [LOADING_IDS.forms.updateDeckForm]: true, + [LOADING_IDS.forms.addCollectionForm]: true, + [LOADING_IDS.forms.updateCollectionForm]: true, + [LOADING_IDS.forms.updateUserDataForm]: true, + [LOADING_IDS.forms.searchForm]: true, + [LOADING_IDS.forms.collectionSearchForm]: true, + [LOADING_IDS.forms.timeRangeForm]: true, + [LOADING_IDS.forms.themRangeForm]: true, + [LOADING_IDS.forms.statRangeForm]: true, + [LOADING_IDS.forms.searchSettingsForm]: true, + [LOADING_IDS.forms.rememberMeForm]: true, + [LOADING_IDS.forms.authSwitchForm]: true, + }, + auth: { + [LOADING_IDS.auth.login]: true, + [LOADING_IDS.auth.signup]: true, + [LOADING_IDS.auth.logout]: true, + }, + decks: { + [LOADING_IDS.decks.fetchingDecks]: true, + [LOADING_IDS.decks.addingDeck]: true, + [LOADING_IDS.decks.updatingDeck]: true, + [LOADING_IDS.decks.deletingDeck]: true, + [LOADING_IDS.decks.addingCardsToDeck]: true, + [LOADING_IDS.decks.removingCardsFromDeck]: true, + }, + collections: { + [LOADING_IDS.collections.fetchingCollections]: true, + [LOADING_IDS.collections.addingCollection]: true, + [LOADING_IDS.collections.updatingCollection]: true, + [LOADING_IDS.collections.deletingCollection]: true, + [LOADING_IDS.collections.addingCardsToCollection]: true, + [LOADING_IDS.collections.removingCardsFromCollection]: true, + }, + cart: { + [LOADING_IDS.cart.fetchingCart]: true, + [LOADING_IDS.cart.addingCart]: true, + [LOADING_IDS.cart.addingCardsToCart]: true, + [LOADING_IDS.cart.removingCardsFromCart]: true, + }, +}; export const useLoading = () => { - const [loadingStates, setLoadingStates] = useState({ - isLoading: false, - isDataLoading: false, - isFormDataLoading: false, - isPageLoading: false, - isSearchLoading: false, - error: null, - loadingTimeoutExpired: false, - loadingType: '', - }); + const [loadingStates, setLoadingStates] = useState({}); + const [loadingQueue, setLoadingQueue] = useState([]); const [apiLoadingStates, setApiLoadingStates] = useState({ login: false, }); - const [loadingQueue, setLoadingQueue] = useState([]); const [error, setError] = useState(null); - /** - * Starts a loading process. - * @param {string} id - A unique identifier for the loading process. - */ - const startLoading = useCallback((id) => { - if (Object.keys(GENERAL_LOADING_STATES).includes(id)) { - // Corrected check for object keys - setLoadingStates((prevStates) => ({ ...prevStates, [id]: true })); - } else { - setApiLoadingStates((prevStates) => ({ ...prevStates, [id]: true })); - } - setLoadingQueue((prevQueue) => [...prevQueue, id]); - }, []); - - /** - * Stops a loading process. - * @param {string} id - A unique identifier for the loading process. - */ + const startLoading = useCallback( + (id) => { + if (allLoadingIds[id]) { + setLoadingStates((prev) => ({ ...prev, [id]: true })); + setLoadingQueue((prev) => [...prev, id]); + } + }, + [allLoadingIds, setLoadingStates, setLoadingQueue] + ); const stopLoading = useCallback( (id) => { - if (Object.keys(GENERAL_LOADING_STATES).includes(id)) { - // Corrected check for object keys - setLoadingStates((prevStates) => ({ ...prevStates, [id]: false })); + if (loadingStates[id]) { + setLoadingStates((prev) => ({ ...prev, [id]: false })); + setLoadingQueue((prev) => prev.filter((item) => item !== id)); } else if (apiLoadingStates[id] !== undefined) { setApiLoadingStates((prevStates) => ({ ...prevStates, [id]: false })); } @@ -57,69 +214,28 @@ export const useLoading = () => { }, [apiLoadingStates] ); - - /** - * Checks if a specific loading process is active. - * @param {string} id - A unique identifier for the loading process. - * @returns {boolean} - The loading state of the specified process. - */ - const isLoading = useCallback( - (id) => { - return loadingStates[id] || apiLoadingStates[id]; - }, - [loadingStates, apiLoadingStates] + const isAnyLoading = useCallback( + () => Object.values(loadingStates).some((state) => state), + [loadingStates] ); - /** - * Checks if any loading process is active. - * @returns {boolean} - True if any loading process is active, false otherwise. - */ - const isAnyLoading = useCallback(() => { - return ( - Object.values(loadingStates).some((state) => state) || - Object.values(apiLoadingStates).some((state) => state) - ); - }, [loadingStates, apiLoadingStates]); - - /** - * Uses isAnythingLoading to determine if any loading processes are active, and if they are, returns a queue of loading identifiers. - * @returns {string[]} - A queue of loading identifiers. - */ - const getLoadingQueue = useCallback(() => { - return loadingQueue; - }, [loadingQueue]); - - /** - * Clears the loading queue. - */ + const isLoading = useCallback((id) => !!loadingStates[id], [loadingStates]); const clearLoading = useCallback(() => { - setLoadingStates({ - isLoading: false, - isDataLoading: false, - isFormDataLoading: false, - isPageLoading: false, - loadingTimeoutExpired: false, - error: null, - loadingType: '', - }); - setApiLoadingStates({}); + setLoadingStates({}); setLoadingQueue([]); - setError(null); }, []); return { - isDataLoading: loadingStates.isDataLoading, - isFormDataLoading: loadingStates.isFormDataLoading, - isPageLoading: loadingStates.isPageLoading, - isSearchLoading: loadingStates.isSearchLoading, - loadingTimeoutExpired: loadingStates.loadingTimeoutExpired, - loadingQueue: getLoadingQueue(), - startLoading, - stopLoading, + // isPageLoading: + // isSearchLoading: loadingStates.isSearchLoading, + loadingQueue, isLoading, isAnyLoading, - getLoadingQueue, - setError, + stopLoading, clearLoading, + error, + setError, + apiLoadingStates, + startLoading, }; }; diff --git a/src/data/allCollections_sample.json b/src/data/allCollections_sample.json new file mode 100644 index 0000000..040453b --- /dev/null +++ b/src/data/allCollections_sample.json @@ -0,0 +1,16854 @@ +{ + "_id": { "$oid": "6604b48da258220bd70e57cc" }, + "userId": { "$oid": "65b8e155b4885b451a5071c8" }, + "totalPrice": { "$numberDouble": "55.65000000000001" }, + "totalQuantity": { "$numberInt": "30" }, + "quantity": { "$numberInt": "0" }, + "name": "asdfdsafsdf", + "description": "asdfsafd", + "cards": [ + { "$oid": "6604b48ea258220bd70e57cd" }, + { "$oid": "6604b4e5a258220bd70ecc1f" }, + { "$oid": "6604b4f9a258220bd70ef578" }, + { "$oid": "6604c04ea258220bd710fd83" }, + { "$oid": "6604c05aa258220bd71126e1" }, + { "$oid": "6604c068a258220bd711503a" }, + { "$oid": "6605226a0c5e7680240649b0" }, + { "$oid": "660526363b021cb52589e5c6" }, + { "$oid": "660ba22186b44bec86ca173d" }, + { "$oid": "660f9e570b3ea41ae67ce0b1" }, + { "$oid": "6615b77440f164e1a46254f9" }, + { "$oid": "66178ca2ee980cad85fe6fbe" } + ], + "dailyCollectionPriceHistory": [], + "collectionPriceHistory": [ + { + "num": { "$numberDouble": "0.1" }, + "timestamp": { "$date": { "$numberLong": "1711584398915" } } + }, + { + "num": { "$numberDouble": "0.1" }, + "timestamp": { "$date": { "$numberLong": "1711584398915" } } + }, + { + "num": { "$numberDouble": "0.1" }, + "timestamp": { "$date": { "$numberLong": "1711584398915" } } + }, + { + "num": { "$numberDouble": "0.1" }, + "timestamp": { "$date": { "$numberLong": "1711584398915" } } + }, + { + "num": { "$numberDouble": "0.1" }, + "timestamp": { "$date": { "$numberLong": "1711584398915" } } + }, + { + "num": { "$numberDouble": "0.1" }, + "timestamp": { "$date": { "$numberLong": "1711584398915" } } + }, + { + "num": { "$numberDouble": "0.1" }, + "timestamp": { "$date": { "$numberLong": "1711584398915" } } + }, + { + "num": { "$numberDouble": "0.1" }, + "timestamp": { "$date": { "$numberLong": "1711584398915" } } + }, + { + "num": { "$numberDouble": "0.45" }, + "timestamp": { "$date": { "$numberLong": "1711584486360" } } + }, + { + "num": { "$numberDouble": "0.07" }, + "timestamp": { "$date": { "$numberLong": "1711584505806" } } + }, + { + "num": { "$numberDouble": "0.07" }, + "timestamp": { "$date": { "$numberLong": "1711584505806" } } + }, + { + "num": { "$numberDouble": "0.07" }, + "timestamp": { "$date": { "$numberLong": "1711584505806" } } + }, + { + "num": { "$numberDouble": "0.07" }, + "timestamp": { "$date": { "$numberLong": "1711584505806" } } + }, + { + "num": { "$numberDouble": "15.88" }, + "timestamp": { "$date": { "$numberLong": "1711587407011" } } + }, + { + "num": { "$numberDouble": "15.88" }, + "timestamp": { "$date": { "$numberLong": "1711587407011" } } + }, + { + "num": { "$numberDouble": "15.88" }, + "timestamp": { "$date": { "$numberLong": "1711587407011" } } + }, + { + "num": { "$numberDouble": "0.17" }, + "timestamp": { "$date": { "$numberLong": "1711587418793" } } + }, + { + "num": { "$numberDouble": "0.71" }, + "timestamp": { "$date": { "$numberLong": "1711587432729" } } + }, + { + "num": { "$numberDouble": "0.71" }, + "timestamp": { "$date": { "$numberLong": "1711587432729" } } + }, + { + "num": { "$numberDouble": "0.06" }, + "timestamp": { "$date": { "$numberLong": "1711612523074" } } + }, + { + "num": { "$numberDouble": "0.33" }, + "timestamp": { "$date": { "$numberLong": "1711613494519" } } + }, + { + "num": { "$numberDouble": "0.33" }, + "timestamp": { "$date": { "$numberLong": "1711613494519" } } + }, + { + "num": { "$numberDouble": "0.33" }, + "timestamp": { "$date": { "$numberLong": "1711613494519" } } + }, + { + "num": { "$numberDouble": "0.1" }, + "timestamp": { "$date": { "$numberLong": "1712038434890" } } + }, + { + "num": { "$numberDouble": "0.19" }, + "timestamp": { "$date": { "$numberLong": "1712299607975" } } + }, + { + "num": { "$numberDouble": "0.19" }, + "timestamp": { "$date": { "$numberLong": "1712299607975" } } + }, + { + "num": { "$numberDouble": "0.19" }, + "timestamp": { "$date": { "$numberLong": "1712299607975" } } + }, + { + "num": { "$numberDouble": "0.25" }, + "timestamp": { "$date": { "$numberLong": "1712699253163" } } + }, + { + "num": { "$numberDouble": "1.46" }, + "timestamp": { "$date": { "$numberLong": "1712819362861" } } + }, + { + "num": { "$numberDouble": "1.46" }, + "timestamp": { "$date": { "$numberLong": "1712819362861" } } + } + ], + "collectionValueHistory": [ + { + "num": { "$numberDouble": "0.1" }, + "timestamp": { "$date": { "$numberLong": "1711584398915" } } + }, + { + "num": { "$numberDouble": "0.2" }, + "timestamp": { "$date": { "$numberLong": "1711584398915" } } + }, + { + "num": { "$numberDouble": "0.30000000000000004" }, + "timestamp": { "$date": { "$numberLong": "1711584398915" } } + }, + { + "num": { "$numberDouble": "0.4" }, + "timestamp": { "$date": { "$numberLong": "1711584398915" } } + }, + { + "num": { "$numberDouble": "0.5" }, + "timestamp": { "$date": { "$numberLong": "1711584398915" } } + }, + { + "num": { "$numberDouble": "0.6" }, + "timestamp": { "$date": { "$numberLong": "1711584398915" } } + }, + { + "num": { "$numberDouble": "0.7" }, + "timestamp": { "$date": { "$numberLong": "1711584398915" } } + }, + { + "num": { "$numberDouble": "0.7999999999999999" }, + "timestamp": { "$date": { "$numberLong": "1711584398915" } } + }, + { + "num": { "$numberDouble": "1.25" }, + "timestamp": { "$date": { "$numberLong": "1711584486360" } } + }, + { + "num": { "$numberDouble": "1.32" }, + "timestamp": { "$date": { "$numberLong": "1711584505806" } } + }, + { + "num": { "$numberDouble": "1.3900000000000001" }, + "timestamp": { "$date": { "$numberLong": "1711584505806" } } + }, + { + "num": { "$numberDouble": "1.4600000000000002" }, + "timestamp": { "$date": { "$numberLong": "1711584505806" } } + }, + { + "num": { "$numberDouble": "1.5300000000000002" }, + "timestamp": { "$date": { "$numberLong": "1711584505806" } } + }, + { + "num": { "$numberDouble": "17.41" }, + "timestamp": { "$date": { "$numberLong": "1711587407011" } } + }, + { + "num": { "$numberDouble": "33.29" }, + "timestamp": { "$date": { "$numberLong": "1711587407011" } } + }, + { + "num": { "$numberDouble": "49.17" }, + "timestamp": { "$date": { "$numberLong": "1711587407011" } } + }, + { + "num": { "$numberDouble": "49.34" }, + "timestamp": { "$date": { "$numberLong": "1711587418793" } } + }, + { + "num": { "$numberDouble": "50.050000000000004" }, + "timestamp": { "$date": { "$numberLong": "1711587432729" } } + }, + { + "num": { "$numberDouble": "50.760000000000005" }, + "timestamp": { "$date": { "$numberLong": "1711587432729" } } + }, + { + "num": { "$numberDouble": "50.82000000000001" }, + "timestamp": { "$date": { "$numberLong": "1711612523074" } } + }, + { + "num": { "$numberDouble": "51.150000000000006" }, + "timestamp": { "$date": { "$numberLong": "1711613494519" } } + }, + { + "num": { "$numberDouble": "51.480000000000004" }, + "timestamp": { "$date": { "$numberLong": "1711613494519" } } + }, + { + "num": { "$numberDouble": "51.81" }, + "timestamp": { "$date": { "$numberLong": "1711613494519" } } + }, + { + "num": { "$numberDouble": "51.910000000000004" }, + "timestamp": { "$date": { "$numberLong": "1712038434890" } } + }, + { + "num": { "$numberDouble": "52.1" }, + "timestamp": { "$date": { "$numberLong": "1712299607975" } } + }, + { + "num": { "$numberDouble": "52.29" }, + "timestamp": { "$date": { "$numberLong": "1712299607975" } } + }, + { + "num": { "$numberDouble": "52.48" }, + "timestamp": { "$date": { "$numberLong": "1712299607975" } } + }, + { + "num": { "$numberDouble": "52.73" }, + "timestamp": { "$date": { "$numberLong": "1712699253163" } } + }, + { + "num": { "$numberDouble": "54.19" }, + "timestamp": { "$date": { "$numberLong": "1712819362861" } } + }, + { + "num": { "$numberDouble": "55.65" }, + "timestamp": { "$date": { "$numberLong": "1712819362861" } } + } + ], + "newNivoChartData": [ + { + "id": "30d", + "color": "#2e7c67", + "data": [ + { + "x": { "$date": { "$numberLong": "1711584398915" } }, + "y": { "$numberDouble": "0.1" }, + "_id": { "$oid": "66189c868bcc89e3792dd267" } + }, + { + "x": { "$date": { "$numberLong": "1711584398915" } }, + "y": { "$numberDouble": "0.2" }, + "_id": { "$oid": "66189c868bcc89e3792dd268" } + }, + { + "x": { "$date": { "$numberLong": "1711584398915" } }, + "y": { "$numberDouble": "0.3" }, + "_id": { "$oid": "66189c868bcc89e3792dd269" } + }, + { + "x": { "$date": { "$numberLong": "1711584398915" } }, + "y": { "$numberDouble": "0.4" }, + "_id": { "$oid": "66189c868bcc89e3792dd26a" } + }, + { + "x": { "$date": { "$numberLong": "1711584398915" } }, + "y": { "$numberDouble": "0.5" }, + "_id": { "$oid": "66189c868bcc89e3792dd26b" } + }, + { + "x": { "$date": { "$numberLong": "1711584398915" } }, + "y": { "$numberDouble": "0.6" }, + "_id": { "$oid": "66189c868bcc89e3792dd26c" } + }, + { + "x": { "$date": { "$numberLong": "1711584398915" } }, + "y": { "$numberDouble": "0.7" }, + "_id": { "$oid": "66189c868bcc89e3792dd26d" } + }, + { + "x": { "$date": { "$numberLong": "1711584398915" } }, + "y": { "$numberDouble": "0.8" }, + "_id": { "$oid": "66189c868bcc89e3792dd26e" } + }, + { + "x": { "$date": { "$numberLong": "1711584486360" } }, + "y": { "$numberDouble": "1.25" }, + "_id": { "$oid": "66189c868bcc89e3792dd26f" } + }, + { + "x": { "$date": { "$numberLong": "1711584505806" } }, + "y": { "$numberDouble": "1.32" }, + "_id": { "$oid": "66189c868bcc89e3792dd270" } + }, + { + "x": { "$date": { "$numberLong": "1711584505806" } }, + "y": { "$numberDouble": "1.39" }, + "_id": { "$oid": "66189c868bcc89e3792dd271" } + }, + { + "x": { "$date": { "$numberLong": "1711584505806" } }, + "y": { "$numberDouble": "1.46" }, + "_id": { "$oid": "66189c868bcc89e3792dd272" } + }, + { + "x": { "$date": { "$numberLong": "1711584505806" } }, + "y": { "$numberDouble": "1.53" }, + "_id": { "$oid": "66189c868bcc89e3792dd273" } + }, + { + "x": { "$date": { "$numberLong": "1711587407011" } }, + "y": { "$numberDouble": "17.41" }, + "_id": { "$oid": "66189c868bcc89e3792dd274" } + }, + { + "x": { "$date": { "$numberLong": "1711587407011" } }, + "y": { "$numberDouble": "33.29" }, + "_id": { "$oid": "66189c868bcc89e3792dd275" } + }, + { + "x": { "$date": { "$numberLong": "1711587407011" } }, + "y": { "$numberDouble": "49.17" }, + "_id": { "$oid": "66189c868bcc89e3792dd276" } + }, + { + "x": { "$date": { "$numberLong": "1711587418793" } }, + "y": { "$numberDouble": "49.34" }, + "_id": { "$oid": "66189c868bcc89e3792dd277" } + }, + { + "x": { "$date": { "$numberLong": "1711587432729" } }, + "y": { "$numberDouble": "50.05" }, + "_id": { "$oid": "66189c868bcc89e3792dd278" } + }, + { + "x": { "$date": { "$numberLong": "1711587432729" } }, + "y": { "$numberDouble": "50.76" }, + "_id": { "$oid": "66189c868bcc89e3792dd279" } + }, + { + "x": { "$date": { "$numberLong": "1711612523074" } }, + "y": { "$numberDouble": "50.82" }, + "_id": { "$oid": "66189c868bcc89e3792dd27a" } + }, + { + "x": { "$date": { "$numberLong": "1711613494519" } }, + "y": { "$numberDouble": "51.15" }, + "_id": { "$oid": "66189c868bcc89e3792dd27b" } + }, + { + "x": { "$date": { "$numberLong": "1711613494519" } }, + "y": { "$numberDouble": "51.48" }, + "_id": { "$oid": "66189c868bcc89e3792dd27c" } + }, + { + "x": { "$date": { "$numberLong": "1711613494519" } }, + "y": { "$numberDouble": "51.81" }, + "_id": { "$oid": "66189c868bcc89e3792dd27d" } + }, + { + "x": { "$date": { "$numberLong": "1712038434890" } }, + "y": { "$numberDouble": "51.91" }, + "_id": { "$oid": "66189c868bcc89e3792dd27e" } + }, + { + "x": { "$date": { "$numberLong": "1712299607975" } }, + "y": { "$numberDouble": "52.1" }, + "_id": { "$oid": "66189c868bcc89e3792dd27f" } + }, + { + "x": { "$date": { "$numberLong": "1712299607975" } }, + "y": { "$numberDouble": "52.29" }, + "_id": { "$oid": "66189c868bcc89e3792dd280" } + }, + { + "x": { "$date": { "$numberLong": "1712299607975" } }, + "y": { "$numberDouble": "52.48" }, + "_id": { "$oid": "66189c868bcc89e3792dd281" } + }, + { + "x": { "$date": { "$numberLong": "1712699253163" } }, + "y": { "$numberDouble": "52.73" }, + "_id": { "$oid": "66189c868bcc89e3792dd282" } + }, + { + "x": { "$date": { "$numberLong": "1712819362861" } }, + "y": { "$numberDouble": "54.19" }, + "_id": { "$oid": "66189c868bcc89e3792dd283" } + }, + { + "x": { "$date": { "$numberLong": "1712819362861" } }, + "y": { "$numberDouble": "55.65" }, + "_id": { "$oid": "66189c868bcc89e3792dd284" } + } + ], + "_id": { "$oid": "66189c868bcc89e3792dd266" } + }, + { + "id": "90d", + "color": "#2e7c67", + "data": [ + { + "x": { "$date": { "$numberLong": "1711584398915" } }, + "y": { "$numberInt": "0" }, + "_id": { "$oid": "66189c868bcc89e3792dd286" } + }, + { + "x": { "$date": { "$numberLong": "1711702149071" } }, + "y": { "$numberDouble": "3.2" }, + "_id": { "$oid": "66189c868bcc89e3792dd287" } + }, + { + "x": { "$date": { "$numberLong": "1711819899228" } }, + "y": { "$numberDouble": "6.4" }, + "_id": { "$oid": "66189c868bcc89e3792dd288" } + }, + { + "x": { "$date": { "$numberLong": "1711937649385" } }, + "y": { "$numberDouble": "9.6" }, + "_id": { "$oid": "66189c868bcc89e3792dd289" } + }, + { + "x": { "$date": { "$numberLong": "1712055399541" } }, + "y": { "$numberDouble": "12.8" }, + "_id": { "$oid": "66189c868bcc89e3792dd28a" } + }, + { + "x": { "$date": { "$numberLong": "1712173149698" } }, + "y": { "$numberInt": "16" }, + "_id": { "$oid": "66189c868bcc89e3792dd28b" } + }, + { + "x": { "$date": { "$numberLong": "1712290899855" } }, + "y": { "$numberDouble": "19.2" }, + "_id": { "$oid": "66189c868bcc89e3792dd28c" } + }, + { + "x": { "$date": { "$numberLong": "1712408650011" } }, + "y": { "$numberDouble": "22.4" }, + "_id": { "$oid": "66189c868bcc89e3792dd28d" } + }, + { + "x": { "$date": { "$numberLong": "1712526400168" } }, + "y": { "$numberDouble": "25.6" }, + "_id": { "$oid": "66189c868bcc89e3792dd28e" } + }, + { + "x": { "$date": { "$numberLong": "1712644150325" } }, + "y": { "$numberDouble": "28.8" }, + "_id": { "$oid": "66189c868bcc89e3792dd28f" } + }, + { + "x": { "$date": { "$numberLong": "1712761900481" } }, + "y": { "$numberInt": "32" }, + "_id": { "$oid": "66189c868bcc89e3792dd290" } + }, + { + "x": { "$date": { "$numberLong": "1712879650638" } }, + "y": { "$numberDouble": "35.2" }, + "_id": { "$oid": "66189c868bcc89e3792dd291" } + }, + { + "x": { "$date": { "$numberLong": "1712997400795" } }, + "y": { "$numberDouble": "38.4" }, + "_id": { "$oid": "66189c868bcc89e3792dd292" } + }, + { + "x": { "$date": { "$numberLong": "1713115150952" } }, + "y": { "$numberDouble": "41.6" }, + "_id": { "$oid": "66189c868bcc89e3792dd293" } + }, + { + "x": { "$date": { "$numberLong": "1713232901108" } }, + "y": { "$numberDouble": "44.8" }, + "_id": { "$oid": "66189c868bcc89e3792dd294" } + }, + { + "x": { "$date": { "$numberLong": "1713350651265" } }, + "y": { "$numberInt": "48" }, + "_id": { "$oid": "66189c868bcc89e3792dd295" } + }, + { + "x": { "$date": { "$numberLong": "1713468401422" } }, + "y": { "$numberDouble": "51.2" }, + "_id": { "$oid": "66189c868bcc89e3792dd296" } + }, + { + "x": { "$date": { "$numberLong": "1713586151578" } }, + "y": { "$numberDouble": "54.4" }, + "_id": { "$oid": "66189c868bcc89e3792dd297" } + }, + { + "x": { "$date": { "$numberLong": "1713703901735" } }, + "y": { "$numberDouble": "57.6" }, + "_id": { "$oid": "66189c868bcc89e3792dd298" } + }, + { + "x": { "$date": { "$numberLong": "1713821651892" } }, + "y": { "$numberDouble": "60.8" }, + "_id": { "$oid": "66189c868bcc89e3792dd299" } + }, + { + "x": { "$date": { "$numberLong": "1713939402048" } }, + "y": { "$numberInt": "64" }, + "_id": { "$oid": "66189c868bcc89e3792dd29a" } + }, + { + "x": { "$date": { "$numberLong": "1714057152205" } }, + "y": { "$numberDouble": "67.2" }, + "_id": { "$oid": "66189c868bcc89e3792dd29b" } + }, + { + "x": { "$date": { "$numberLong": "1714174902362" } }, + "y": { "$numberDouble": "70.4" }, + "_id": { "$oid": "66189c868bcc89e3792dd29c" } + }, + { + "x": { "$date": { "$numberLong": "1714292652519" } }, + "y": { "$numberDouble": "73.6" }, + "_id": { "$oid": "66189c868bcc89e3792dd29d" } + }, + { + "x": { "$date": { "$numberLong": "1714410402675" } }, + "y": { "$numberDouble": "76.8" }, + "_id": { "$oid": "66189c868bcc89e3792dd29e" } + }, + { + "x": { "$date": { "$numberLong": "1714528152832" } }, + "y": { "$numberInt": "80" }, + "_id": { "$oid": "66189c868bcc89e3792dd29f" } + }, + { + "x": { "$date": { "$numberLong": "1714645902989" } }, + "y": { "$numberDouble": "83.2" }, + "_id": { "$oid": "66189c868bcc89e3792dd2a0" } + }, + { + "x": { "$date": { "$numberLong": "1714763653145" } }, + "y": { "$numberDouble": "86.4" }, + "_id": { "$oid": "66189c868bcc89e3792dd2a1" } + }, + { + "x": { "$date": { "$numberLong": "1714881403302" } }, + "y": { "$numberDouble": "89.6" }, + "_id": { "$oid": "66189c868bcc89e3792dd2a2" } + }, + { + "x": { "$date": { "$numberLong": "1714999153459" } }, + "y": { "$numberDouble": "92.8" }, + "_id": { "$oid": "66189c868bcc89e3792dd2a3" } + }, + { + "x": { "$date": { "$numberLong": "1715116903615" } }, + "y": { "$numberInt": "96" }, + "_id": { "$oid": "66189c868bcc89e3792dd2a4" } + }, + { + "x": { "$date": { "$numberLong": "1715234653772" } }, + "y": { "$numberDouble": "99.2" }, + "_id": { "$oid": "66189c868bcc89e3792dd2a5" } + }, + { + "x": { "$date": { "$numberLong": "1715352403929" } }, + "y": { "$numberDouble": "102.4" }, + "_id": { "$oid": "66189c868bcc89e3792dd2a6" } + }, + { + "x": { "$date": { "$numberLong": "1715470154085" } }, + "y": { "$numberDouble": "105.6" }, + "_id": { "$oid": "66189c868bcc89e3792dd2a7" } + }, + { + "x": { "$date": { "$numberLong": "1715587904242" } }, + "y": { "$numberDouble": "108.8" }, + "_id": { "$oid": "66189c868bcc89e3792dd2a8" } + }, + { + "x": { "$date": { "$numberLong": "1715705654399" } }, + "y": { "$numberInt": "112" }, + "_id": { "$oid": "66189c868bcc89e3792dd2a9" } + }, + { + "x": { "$date": { "$numberLong": "1715823404556" } }, + "y": { "$numberDouble": "115.2" }, + "_id": { "$oid": "66189c868bcc89e3792dd2aa" } + }, + { + "x": { "$date": { "$numberLong": "1715941154712" } }, + "y": { "$numberDouble": "118.4" }, + "_id": { "$oid": "66189c868bcc89e3792dd2ab" } + }, + { + "x": { "$date": { "$numberLong": "1716058904869" } }, + "y": { "$numberDouble": "121.6" }, + "_id": { "$oid": "66189c868bcc89e3792dd2ac" } + }, + { + "x": { "$date": { "$numberLong": "1716176655026" } }, + "y": { "$numberDouble": "124.8" }, + "_id": { "$oid": "66189c868bcc89e3792dd2ad" } + }, + { + "x": { "$date": { "$numberLong": "1716294405182" } }, + "y": { "$numberInt": "128" }, + "_id": { "$oid": "66189c868bcc89e3792dd2ae" } + }, + { + "x": { "$date": { "$numberLong": "1716412155339" } }, + "y": { "$numberDouble": "131.2" }, + "_id": { "$oid": "66189c868bcc89e3792dd2af" } + }, + { + "x": { "$date": { "$numberLong": "1716529905496" } }, + "y": { "$numberDouble": "134.4" }, + "_id": { "$oid": "66189c868bcc89e3792dd2b0" } + }, + { + "x": { "$date": { "$numberLong": "1716647655652" } }, + "y": { "$numberDouble": "137.6" }, + "_id": { "$oid": "66189c868bcc89e3792dd2b1" } + }, + { + "x": { "$date": { "$numberLong": "1716765405809" } }, + "y": { "$numberDouble": "140.8" }, + "_id": { "$oid": "66189c868bcc89e3792dd2b2" } + }, + { + "x": { "$date": { "$numberLong": "1716883155966" } }, + "y": { "$numberInt": "144" }, + "_id": { "$oid": "66189c868bcc89e3792dd2b3" } + }, + { + "x": { "$date": { "$numberLong": "1717000906123" } }, + "y": { "$numberDouble": "147.2" }, + "_id": { "$oid": "66189c868bcc89e3792dd2b4" } + }, + { + "x": { "$date": { "$numberLong": "1717118656279" } }, + "y": { "$numberDouble": "150.4" }, + "_id": { "$oid": "66189c868bcc89e3792dd2b5" } + }, + { + "x": { "$date": { "$numberLong": "1717236406436" } }, + "y": { "$numberDouble": "153.6" }, + "_id": { "$oid": "66189c868bcc89e3792dd2b6" } + }, + { + "x": { "$date": { "$numberLong": "1717354156593" } }, + "y": { "$numberDouble": "156.8" }, + "_id": { "$oid": "66189c868bcc89e3792dd2b7" } + }, + { + "x": { "$date": { "$numberLong": "1717471906749" } }, + "y": { "$numberInt": "160" }, + "_id": { "$oid": "66189c868bcc89e3792dd2b8" } + }, + { + "x": { "$date": { "$numberLong": "1717589656906" } }, + "y": { "$numberDouble": "163.2" }, + "_id": { "$oid": "66189c868bcc89e3792dd2b9" } + }, + { + "x": { "$date": { "$numberLong": "1717707407063" } }, + "y": { "$numberDouble": "166.4" }, + "_id": { "$oid": "66189c868bcc89e3792dd2ba" } + }, + { + "x": { "$date": { "$numberLong": "1717825157219" } }, + "y": { "$numberDouble": "169.6" }, + "_id": { "$oid": "66189c868bcc89e3792dd2bb" } + }, + { + "x": { "$date": { "$numberLong": "1717942907376" } }, + "y": { "$numberDouble": "172.8" }, + "_id": { "$oid": "66189c868bcc89e3792dd2bc" } + }, + { + "x": { "$date": { "$numberLong": "1718060657533" } }, + "y": { "$numberInt": "176" }, + "_id": { "$oid": "66189c868bcc89e3792dd2bd" } + }, + { + "x": { "$date": { "$numberLong": "1718178407690" } }, + "y": { "$numberDouble": "179.2" }, + "_id": { "$oid": "66189c868bcc89e3792dd2be" } + }, + { + "x": { "$date": { "$numberLong": "1718296157846" } }, + "y": { "$numberDouble": "182.4" }, + "_id": { "$oid": "66189c868bcc89e3792dd2bf" } + }, + { + "x": { "$date": { "$numberLong": "1718413908003" } }, + "y": { "$numberDouble": "185.6" }, + "_id": { "$oid": "66189c868bcc89e3792dd2c0" } + }, + { + "x": { "$date": { "$numberLong": "1718531658160" } }, + "y": { "$numberDouble": "188.8" }, + "_id": { "$oid": "66189c868bcc89e3792dd2c1" } + }, + { + "x": { "$date": { "$numberLong": "1718649408316" } }, + "y": { "$numberInt": "192" }, + "_id": { "$oid": "66189c868bcc89e3792dd2c2" } + }, + { + "x": { "$date": { "$numberLong": "1718767158473" } }, + "y": { "$numberDouble": "195.2" }, + "_id": { "$oid": "66189c868bcc89e3792dd2c3" } + }, + { + "x": { "$date": { "$numberLong": "1718884908630" } }, + "y": { "$numberDouble": "198.4" }, + "_id": { "$oid": "66189c868bcc89e3792dd2c4" } + }, + { + "x": { "$date": { "$numberLong": "1719002658786" } }, + "y": { "$numberDouble": "201.6" }, + "_id": { "$oid": "66189c868bcc89e3792dd2c5" } + }, + { + "x": { "$date": { "$numberLong": "1719120408943" } }, + "y": { "$numberDouble": "204.8" }, + "_id": { "$oid": "66189c868bcc89e3792dd2c6" } + }, + { + "x": { "$date": { "$numberLong": "1719238159100" } }, + "y": { "$numberInt": "208" }, + "_id": { "$oid": "66189c868bcc89e3792dd2c7" } + }, + { + "x": { "$date": { "$numberLong": "1719355909256" } }, + "y": { "$numberDouble": "211.2" }, + "_id": { "$oid": "66189c868bcc89e3792dd2c8" } + }, + { + "x": { "$date": { "$numberLong": "1719473659413" } }, + "y": { "$numberDouble": "214.4" }, + "_id": { "$oid": "66189c868bcc89e3792dd2c9" } + }, + { + "x": { "$date": { "$numberLong": "1719591409570" } }, + "y": { "$numberDouble": "217.6" }, + "_id": { "$oid": "66189c868bcc89e3792dd2ca" } + }, + { + "x": { "$date": { "$numberLong": "1719709159727" } }, + "y": { "$numberDouble": "220.8" }, + "_id": { "$oid": "66189c868bcc89e3792dd2cb" } + }, + { + "x": { "$date": { "$numberLong": "1719826909883" } }, + "y": { "$numberInt": "224" }, + "_id": { "$oid": "66189c868bcc89e3792dd2cc" } + }, + { + "x": { "$date": { "$numberLong": "1719944660040" } }, + "y": { "$numberDouble": "227.2" }, + "_id": { "$oid": "66189c868bcc89e3792dd2cd" } + }, + { + "x": { "$date": { "$numberLong": "1720062410197" } }, + "y": { "$numberDouble": "230.4" }, + "_id": { "$oid": "66189c868bcc89e3792dd2ce" } + }, + { + "x": { "$date": { "$numberLong": "1720180160353" } }, + "y": { "$numberDouble": "233.6" }, + "_id": { "$oid": "66189c868bcc89e3792dd2cf" } + }, + { + "x": { "$date": { "$numberLong": "1720297910510" } }, + "y": { "$numberDouble": "236.8" }, + "_id": { "$oid": "66189c868bcc89e3792dd2d0" } + }, + { + "x": { "$date": { "$numberLong": "1720415660667" } }, + "y": { "$numberInt": "240" }, + "_id": { "$oid": "66189c868bcc89e3792dd2d1" } + }, + { + "x": { "$date": { "$numberLong": "1720533410823" } }, + "y": { "$numberDouble": "243.2" }, + "_id": { "$oid": "66189c868bcc89e3792dd2d2" } + }, + { + "x": { "$date": { "$numberLong": "1720651160980" } }, + "y": { "$numberDouble": "246.4" }, + "_id": { "$oid": "66189c868bcc89e3792dd2d3" } + }, + { + "x": { "$date": { "$numberLong": "1720768911137" } }, + "y": { "$numberDouble": "249.6" }, + "_id": { "$oid": "66189c868bcc89e3792dd2d4" } + }, + { + "x": { "$date": { "$numberLong": "1720886661294" } }, + "y": { "$numberDouble": "252.8" }, + "_id": { "$oid": "66189c868bcc89e3792dd2d5" } + }, + { + "x": { "$date": { "$numberLong": "1721004411450" } }, + "y": { "$numberInt": "256" }, + "_id": { "$oid": "66189c868bcc89e3792dd2d6" } + }, + { + "x": { "$date": { "$numberLong": "1721122161607" } }, + "y": { "$numberDouble": "259.2" }, + "_id": { "$oid": "66189c868bcc89e3792dd2d7" } + }, + { + "x": { "$date": { "$numberLong": "1721239911764" } }, + "y": { "$numberDouble": "262.4" }, + "_id": { "$oid": "66189c868bcc89e3792dd2d8" } + }, + { + "x": { "$date": { "$numberLong": "1721357661920" } }, + "y": { "$numberDouble": "265.6" }, + "_id": { "$oid": "66189c868bcc89e3792dd2d9" } + }, + { + "x": { "$date": { "$numberLong": "1721475412077" } }, + "y": { "$numberDouble": "268.8" }, + "_id": { "$oid": "66189c868bcc89e3792dd2da" } + }, + { + "x": { "$date": { "$numberLong": "1721593162234" } }, + "y": { "$numberInt": "272" }, + "_id": { "$oid": "66189c868bcc89e3792dd2db" } + }, + { + "x": { "$date": { "$numberLong": "1721710912390" } }, + "y": { "$numberDouble": "275.2" }, + "_id": { "$oid": "66189c868bcc89e3792dd2dc" } + }, + { + "x": { "$date": { "$numberLong": "1721828662547" } }, + "y": { "$numberDouble": "278.4" }, + "_id": { "$oid": "66189c868bcc89e3792dd2dd" } + }, + { + "x": { "$date": { "$numberLong": "1721946412704" } }, + "y": { "$numberDouble": "281.6" }, + "_id": { "$oid": "66189c868bcc89e3792dd2de" } + }, + { + "x": { "$date": { "$numberLong": "1722064162861" } }, + "y": { "$numberDouble": "284.8" }, + "_id": { "$oid": "66189c868bcc89e3792dd2df" } + } + ], + "_id": { "$oid": "66189c868bcc89e3792dd285" } + }, + { + "id": "180d", + "color": "#2e7c67", + "data": [ + { + "x": { "$date": { "$numberLong": "1711584398915" } }, + "y": { "$numberInt": "0" }, + "_id": { "$oid": "66189c868bcc89e3792dd2e1" } + }, + { + "x": { "$date": { "$numberLong": "1711686386423" } }, + "y": { "$numberDouble": "2.51" }, + "_id": { "$oid": "66189c868bcc89e3792dd2e2" } + }, + { + "x": { "$date": { "$numberLong": "1711788373931" } }, + "y": { "$numberDouble": "5.02" }, + "_id": { "$oid": "66189c868bcc89e3792dd2e3" } + }, + { + "x": { "$date": { "$numberLong": "1711890361439" } }, + "y": { "$numberDouble": "7.54" }, + "_id": { "$oid": "66189c868bcc89e3792dd2e4" } + }, + { + "x": { "$date": { "$numberLong": "1711992348947" } }, + "y": { "$numberDouble": "10.05" }, + "_id": { "$oid": "66189c868bcc89e3792dd2e5" } + }, + { + "x": { "$date": { "$numberLong": "1712094336455" } }, + "y": { "$numberDouble": "12.56" }, + "_id": { "$oid": "66189c868bcc89e3792dd2e6" } + }, + { + "x": { "$date": { "$numberLong": "1712196323963" } }, + "y": { "$numberDouble": "15.07" }, + "_id": { "$oid": "66189c868bcc89e3792dd2e7" } + }, + { + "x": { "$date": { "$numberLong": "1712298311471" } }, + "y": { "$numberDouble": "17.59" }, + "_id": { "$oid": "66189c868bcc89e3792dd2e8" } + }, + { + "x": { "$date": { "$numberLong": "1712400298979" } }, + "y": { "$numberDouble": "20.1" }, + "_id": { "$oid": "66189c868bcc89e3792dd2e9" } + }, + { + "x": { "$date": { "$numberLong": "1712502286487" } }, + "y": { "$numberDouble": "22.61" }, + "_id": { "$oid": "66189c868bcc89e3792dd2ea" } + }, + { + "x": { "$date": { "$numberLong": "1712604273995" } }, + "y": { "$numberDouble": "25.12" }, + "_id": { "$oid": "66189c868bcc89e3792dd2eb" } + }, + { + "x": { "$date": { "$numberLong": "1712706261503" } }, + "y": { "$numberDouble": "27.64" }, + "_id": { "$oid": "66189c868bcc89e3792dd2ec" } + }, + { + "x": { "$date": { "$numberLong": "1712808249011" } }, + "y": { "$numberDouble": "30.15" }, + "_id": { "$oid": "66189c868bcc89e3792dd2ed" } + }, + { + "x": { "$date": { "$numberLong": "1712910236520" } }, + "y": { "$numberDouble": "32.66" }, + "_id": { "$oid": "66189c868bcc89e3792dd2ee" } + }, + { + "x": { "$date": { "$numberLong": "1713012224028" } }, + "y": { "$numberDouble": "35.17" }, + "_id": { "$oid": "66189c868bcc89e3792dd2ef" } + }, + { + "x": { "$date": { "$numberLong": "1713114211536" } }, + "y": { "$numberDouble": "37.68" }, + "_id": { "$oid": "66189c868bcc89e3792dd2f0" } + }, + { + "x": { "$date": { "$numberLong": "1713216199044" } }, + "y": { "$numberDouble": "40.2" }, + "_id": { "$oid": "66189c868bcc89e3792dd2f1" } + }, + { + "x": { "$date": { "$numberLong": "1713318186552" } }, + "y": { "$numberDouble": "42.71" }, + "_id": { "$oid": "66189c868bcc89e3792dd2f2" } + }, + { + "x": { "$date": { "$numberLong": "1713420174060" } }, + "y": { "$numberDouble": "45.22" }, + "_id": { "$oid": "66189c868bcc89e3792dd2f3" } + }, + { + "x": { "$date": { "$numberLong": "1713522161568" } }, + "y": { "$numberDouble": "47.73" }, + "_id": { "$oid": "66189c868bcc89e3792dd2f4" } + }, + { + "x": { "$date": { "$numberLong": "1713624149076" } }, + "y": { "$numberDouble": "50.25" }, + "_id": { "$oid": "66189c868bcc89e3792dd2f5" } + }, + { + "x": { "$date": { "$numberLong": "1713726136584" } }, + "y": { "$numberDouble": "52.76" }, + "_id": { "$oid": "66189c868bcc89e3792dd2f6" } + }, + { + "x": { "$date": { "$numberLong": "1713828124092" } }, + "y": { "$numberDouble": "55.27" }, + "_id": { "$oid": "66189c868bcc89e3792dd2f7" } + }, + { + "x": { "$date": { "$numberLong": "1713930111600" } }, + "y": { "$numberDouble": "57.78" }, + "_id": { "$oid": "66189c868bcc89e3792dd2f8" } + }, + { + "x": { "$date": { "$numberLong": "1714032099108" } }, + "y": { "$numberDouble": "60.29" }, + "_id": { "$oid": "66189c868bcc89e3792dd2f9" } + }, + { + "x": { "$date": { "$numberLong": "1714134086616" } }, + "y": { "$numberDouble": "62.81" }, + "_id": { "$oid": "66189c868bcc89e3792dd2fa" } + }, + { + "x": { "$date": { "$numberLong": "1714236074125" } }, + "y": { "$numberDouble": "65.32" }, + "_id": { "$oid": "66189c868bcc89e3792dd2fb" } + }, + { + "x": { "$date": { "$numberLong": "1714338061633" } }, + "y": { "$numberDouble": "67.83" }, + "_id": { "$oid": "66189c868bcc89e3792dd2fc" } + }, + { + "x": { "$date": { "$numberLong": "1714440049141" } }, + "y": { "$numberDouble": "70.34" }, + "_id": { "$oid": "66189c868bcc89e3792dd2fd" } + }, + { + "x": { "$date": { "$numberLong": "1714542036649" } }, + "y": { "$numberDouble": "72.86" }, + "_id": { "$oid": "66189c868bcc89e3792dd2fe" } + }, + { + "x": { "$date": { "$numberLong": "1714644024157" } }, + "y": { "$numberDouble": "75.37" }, + "_id": { "$oid": "66189c868bcc89e3792dd2ff" } + }, + { + "x": { "$date": { "$numberLong": "1714746011665" } }, + "y": { "$numberDouble": "77.88" }, + "_id": { "$oid": "66189c868bcc89e3792dd300" } + }, + { + "x": { "$date": { "$numberLong": "1714847999173" } }, + "y": { "$numberDouble": "80.39" }, + "_id": { "$oid": "66189c868bcc89e3792dd301" } + }, + { + "x": { "$date": { "$numberLong": "1714949986681" } }, + "y": { "$numberDouble": "82.91" }, + "_id": { "$oid": "66189c868bcc89e3792dd302" } + }, + { + "x": { "$date": { "$numberLong": "1715051974189" } }, + "y": { "$numberDouble": "85.42" }, + "_id": { "$oid": "66189c868bcc89e3792dd303" } + }, + { + "x": { "$date": { "$numberLong": "1715153961697" } }, + "y": { "$numberDouble": "87.93" }, + "_id": { "$oid": "66189c868bcc89e3792dd304" } + }, + { + "x": { "$date": { "$numberLong": "1715255949205" } }, + "y": { "$numberDouble": "90.44" }, + "_id": { "$oid": "66189c868bcc89e3792dd305" } + }, + { + "x": { "$date": { "$numberLong": "1715357936713" } }, + "y": { "$numberDouble": "92.95" }, + "_id": { "$oid": "66189c868bcc89e3792dd306" } + }, + { + "x": { "$date": { "$numberLong": "1715459924221" } }, + "y": { "$numberDouble": "95.47" }, + "_id": { "$oid": "66189c868bcc89e3792dd307" } + }, + { + "x": { "$date": { "$numberLong": "1715561911730" } }, + "y": { "$numberDouble": "97.98" }, + "_id": { "$oid": "66189c868bcc89e3792dd308" } + }, + { + "x": { "$date": { "$numberLong": "1715663899238" } }, + "y": { "$numberDouble": "100.49" }, + "_id": { "$oid": "66189c868bcc89e3792dd309" } + }, + { + "x": { "$date": { "$numberLong": "1715765886746" } }, + "y": { "$numberInt": "103" }, + "_id": { "$oid": "66189c868bcc89e3792dd30a" } + }, + { + "x": { "$date": { "$numberLong": "1715867874254" } }, + "y": { "$numberDouble": "105.52" }, + "_id": { "$oid": "66189c868bcc89e3792dd30b" } + }, + { + "x": { "$date": { "$numberLong": "1715969861762" } }, + "y": { "$numberDouble": "108.03" }, + "_id": { "$oid": "66189c868bcc89e3792dd30c" } + }, + { + "x": { "$date": { "$numberLong": "1716071849270" } }, + "y": { "$numberDouble": "110.54" }, + "_id": { "$oid": "66189c868bcc89e3792dd30d" } + }, + { + "x": { "$date": { "$numberLong": "1716173836778" } }, + "y": { "$numberDouble": "113.05" }, + "_id": { "$oid": "66189c868bcc89e3792dd30e" } + }, + { + "x": { "$date": { "$numberLong": "1716275824286" } }, + "y": { "$numberDouble": "115.57" }, + "_id": { "$oid": "66189c868bcc89e3792dd30f" } + }, + { + "x": { "$date": { "$numberLong": "1716377811794" } }, + "y": { "$numberDouble": "118.08" }, + "_id": { "$oid": "66189c868bcc89e3792dd310" } + }, + { + "x": { "$date": { "$numberLong": "1716479799302" } }, + "y": { "$numberDouble": "120.59" }, + "_id": { "$oid": "66189c868bcc89e3792dd311" } + }, + { + "x": { "$date": { "$numberLong": "1716581786810" } }, + "y": { "$numberDouble": "123.1" }, + "_id": { "$oid": "66189c868bcc89e3792dd312" } + }, + { + "x": { "$date": { "$numberLong": "1716683774318" } }, + "y": { "$numberDouble": "125.61" }, + "_id": { "$oid": "66189c868bcc89e3792dd313" } + }, + { + "x": { "$date": { "$numberLong": "1716785761826" } }, + "y": { "$numberDouble": "128.13" }, + "_id": { "$oid": "66189c868bcc89e3792dd314" } + }, + { + "x": { "$date": { "$numberLong": "1716887749335" } }, + "y": { "$numberDouble": "130.64" }, + "_id": { "$oid": "66189c868bcc89e3792dd315" } + }, + { + "x": { "$date": { "$numberLong": "1716989736843" } }, + "y": { "$numberDouble": "133.15" }, + "_id": { "$oid": "66189c868bcc89e3792dd316" } + }, + { + "x": { "$date": { "$numberLong": "1717091724351" } }, + "y": { "$numberDouble": "135.66" }, + "_id": { "$oid": "66189c868bcc89e3792dd317" } + }, + { + "x": { "$date": { "$numberLong": "1717193711859" } }, + "y": { "$numberDouble": "138.18" }, + "_id": { "$oid": "66189c868bcc89e3792dd318" } + }, + { + "x": { "$date": { "$numberLong": "1717295699367" } }, + "y": { "$numberDouble": "140.69" }, + "_id": { "$oid": "66189c868bcc89e3792dd319" } + }, + { + "x": { "$date": { "$numberLong": "1717397686875" } }, + "y": { "$numberDouble": "143.2" }, + "_id": { "$oid": "66189c868bcc89e3792dd31a" } + }, + { + "x": { "$date": { "$numberLong": "1717499674383" } }, + "y": { "$numberDouble": "145.71" }, + "_id": { "$oid": "66189c868bcc89e3792dd31b" } + }, + { + "x": { "$date": { "$numberLong": "1717601661891" } }, + "y": { "$numberDouble": "148.23" }, + "_id": { "$oid": "66189c868bcc89e3792dd31c" } + }, + { + "x": { "$date": { "$numberLong": "1717703649399" } }, + "y": { "$numberDouble": "150.74" }, + "_id": { "$oid": "66189c868bcc89e3792dd31d" } + }, + { + "x": { "$date": { "$numberLong": "1717805636907" } }, + "y": { "$numberDouble": "153.25" }, + "_id": { "$oid": "66189c868bcc89e3792dd31e" } + }, + { + "x": { "$date": { "$numberLong": "1717907624415" } }, + "y": { "$numberDouble": "155.76" }, + "_id": { "$oid": "66189c868bcc89e3792dd31f" } + }, + { + "x": { "$date": { "$numberLong": "1718009611923" } }, + "y": { "$numberDouble": "158.27" }, + "_id": { "$oid": "66189c868bcc89e3792dd320" } + }, + { + "x": { "$date": { "$numberLong": "1718111599432" } }, + "y": { "$numberDouble": "160.79" }, + "_id": { "$oid": "66189c868bcc89e3792dd321" } + }, + { + "x": { "$date": { "$numberLong": "1718213586940" } }, + "y": { "$numberDouble": "163.3" }, + "_id": { "$oid": "66189c868bcc89e3792dd322" } + }, + { + "x": { "$date": { "$numberLong": "1718315574448" } }, + "y": { "$numberDouble": "165.81" }, + "_id": { "$oid": "66189c868bcc89e3792dd323" } + }, + { + "x": { "$date": { "$numberLong": "1718417561956" } }, + "y": { "$numberDouble": "168.32" }, + "_id": { "$oid": "66189c868bcc89e3792dd324" } + }, + { + "x": { "$date": { "$numberLong": "1718519549464" } }, + "y": { "$numberDouble": "170.84" }, + "_id": { "$oid": "66189c868bcc89e3792dd325" } + }, + { + "x": { "$date": { "$numberLong": "1718621536972" } }, + "y": { "$numberDouble": "173.35" }, + "_id": { "$oid": "66189c868bcc89e3792dd326" } + }, + { + "x": { "$date": { "$numberLong": "1718723524480" } }, + "y": { "$numberDouble": "175.86" }, + "_id": { "$oid": "66189c868bcc89e3792dd327" } + }, + { + "x": { "$date": { "$numberLong": "1718825511988" } }, + "y": { "$numberDouble": "178.37" }, + "_id": { "$oid": "66189c868bcc89e3792dd328" } + }, + { + "x": { "$date": { "$numberLong": "1718927499496" } }, + "y": { "$numberDouble": "180.88" }, + "_id": { "$oid": "66189c868bcc89e3792dd329" } + }, + { + "x": { "$date": { "$numberLong": "1719029487004" } }, + "y": { "$numberDouble": "183.4" }, + "_id": { "$oid": "66189c868bcc89e3792dd32a" } + }, + { + "x": { "$date": { "$numberLong": "1719131474512" } }, + "y": { "$numberDouble": "185.91" }, + "_id": { "$oid": "66189c868bcc89e3792dd32b" } + }, + { + "x": { "$date": { "$numberLong": "1719233462020" } }, + "y": { "$numberDouble": "188.42" }, + "_id": { "$oid": "66189c868bcc89e3792dd32c" } + }, + { + "x": { "$date": { "$numberLong": "1719335449528" } }, + "y": { "$numberDouble": "190.93" }, + "_id": { "$oid": "66189c868bcc89e3792dd32d" } + }, + { + "x": { "$date": { "$numberLong": "1719437437037" } }, + "y": { "$numberDouble": "193.45" }, + "_id": { "$oid": "66189c868bcc89e3792dd32e" } + }, + { + "x": { "$date": { "$numberLong": "1719539424545" } }, + "y": { "$numberDouble": "195.96" }, + "_id": { "$oid": "66189c868bcc89e3792dd32f" } + }, + { + "x": { "$date": { "$numberLong": "1719641412053" } }, + "y": { "$numberDouble": "198.47" }, + "_id": { "$oid": "66189c868bcc89e3792dd330" } + }, + { + "x": { "$date": { "$numberLong": "1719743399561" } }, + "y": { "$numberDouble": "200.98" }, + "_id": { "$oid": "66189c868bcc89e3792dd331" } + }, + { + "x": { "$date": { "$numberLong": "1719845387069" } }, + "y": { "$numberDouble": "203.5" }, + "_id": { "$oid": "66189c868bcc89e3792dd332" } + }, + { + "x": { "$date": { "$numberLong": "1719947374577" } }, + "y": { "$numberDouble": "206.01" }, + "_id": { "$oid": "66189c868bcc89e3792dd333" } + }, + { + "x": { "$date": { "$numberLong": "1720049362085" } }, + "y": { "$numberDouble": "208.52" }, + "_id": { "$oid": "66189c868bcc89e3792dd334" } + }, + { + "x": { "$date": { "$numberLong": "1720151349593" } }, + "y": { "$numberDouble": "211.03" }, + "_id": { "$oid": "66189c868bcc89e3792dd335" } + }, + { + "x": { "$date": { "$numberLong": "1720253337101" } }, + "y": { "$numberDouble": "213.54" }, + "_id": { "$oid": "66189c868bcc89e3792dd336" } + }, + { + "x": { "$date": { "$numberLong": "1720355324609" } }, + "y": { "$numberDouble": "216.06" }, + "_id": { "$oid": "66189c868bcc89e3792dd337" } + }, + { + "x": { "$date": { "$numberLong": "1720457312117" } }, + "y": { "$numberDouble": "218.57" }, + "_id": { "$oid": "66189c868bcc89e3792dd338" } + }, + { + "x": { "$date": { "$numberLong": "1720559299625" } }, + "y": { "$numberDouble": "221.08" }, + "_id": { "$oid": "66189c868bcc89e3792dd339" } + }, + { + "x": { "$date": { "$numberLong": "1720661287133" } }, + "y": { "$numberDouble": "223.59" }, + "_id": { "$oid": "66189c868bcc89e3792dd33a" } + }, + { + "x": { "$date": { "$numberLong": "1720763274642" } }, + "y": { "$numberDouble": "226.11" }, + "_id": { "$oid": "66189c868bcc89e3792dd33b" } + }, + { + "x": { "$date": { "$numberLong": "1720865262150" } }, + "y": { "$numberDouble": "228.62" }, + "_id": { "$oid": "66189c868bcc89e3792dd33c" } + }, + { + "x": { "$date": { "$numberLong": "1720967249658" } }, + "y": { "$numberDouble": "231.13" }, + "_id": { "$oid": "66189c868bcc89e3792dd33d" } + }, + { + "x": { "$date": { "$numberLong": "1721069237166" } }, + "y": { "$numberDouble": "233.64" }, + "_id": { "$oid": "66189c868bcc89e3792dd33e" } + }, + { + "x": { "$date": { "$numberLong": "1721171224674" } }, + "y": { "$numberDouble": "236.16" }, + "_id": { "$oid": "66189c868bcc89e3792dd33f" } + }, + { + "x": { "$date": { "$numberLong": "1721273212182" } }, + "y": { "$numberDouble": "238.67" }, + "_id": { "$oid": "66189c868bcc89e3792dd340" } + }, + { + "x": { "$date": { "$numberLong": "1721375199690" } }, + "y": { "$numberDouble": "241.18" }, + "_id": { "$oid": "66189c868bcc89e3792dd341" } + }, + { + "x": { "$date": { "$numberLong": "1721477187198" } }, + "y": { "$numberDouble": "243.69" }, + "_id": { "$oid": "66189c868bcc89e3792dd342" } + }, + { + "x": { "$date": { "$numberLong": "1721579174706" } }, + "y": { "$numberDouble": "246.2" }, + "_id": { "$oid": "66189c868bcc89e3792dd343" } + }, + { + "x": { "$date": { "$numberLong": "1721681162214" } }, + "y": { "$numberDouble": "248.72" }, + "_id": { "$oid": "66189c868bcc89e3792dd344" } + }, + { + "x": { "$date": { "$numberLong": "1721783149722" } }, + "y": { "$numberDouble": "251.23" }, + "_id": { "$oid": "66189c868bcc89e3792dd345" } + }, + { + "x": { "$date": { "$numberLong": "1721885137230" } }, + "y": { "$numberDouble": "253.74" }, + "_id": { "$oid": "66189c868bcc89e3792dd346" } + }, + { + "x": { "$date": { "$numberLong": "1721987124738" } }, + "y": { "$numberDouble": "256.25" }, + "_id": { "$oid": "66189c868bcc89e3792dd347" } + }, + { + "x": { "$date": { "$numberLong": "1722089112247" } }, + "y": { "$numberDouble": "258.77" }, + "_id": { "$oid": "66189c868bcc89e3792dd348" } + }, + { + "x": { "$date": { "$numberLong": "1722191099755" } }, + "y": { "$numberDouble": "261.28" }, + "_id": { "$oid": "66189c868bcc89e3792dd349" } + }, + { + "x": { "$date": { "$numberLong": "1722293087263" } }, + "y": { "$numberDouble": "263.79" }, + "_id": { "$oid": "66189c868bcc89e3792dd34a" } + }, + { + "x": { "$date": { "$numberLong": "1722395074771" } }, + "y": { "$numberDouble": "266.3" }, + "_id": { "$oid": "66189c868bcc89e3792dd34b" } + }, + { + "x": { "$date": { "$numberLong": "1722497062279" } }, + "y": { "$numberDouble": "268.82" }, + "_id": { "$oid": "66189c868bcc89e3792dd34c" } + }, + { + "x": { "$date": { "$numberLong": "1722599049787" } }, + "y": { "$numberDouble": "271.33" }, + "_id": { "$oid": "66189c868bcc89e3792dd34d" } + }, + { + "x": { "$date": { "$numberLong": "1722701037295" } }, + "y": { "$numberDouble": "273.84" }, + "_id": { "$oid": "66189c868bcc89e3792dd34e" } + }, + { + "x": { "$date": { "$numberLong": "1722803024803" } }, + "y": { "$numberDouble": "276.35" }, + "_id": { "$oid": "66189c868bcc89e3792dd34f" } + }, + { + "x": { "$date": { "$numberLong": "1722905012311" } }, + "y": { "$numberDouble": "278.86" }, + "_id": { "$oid": "66189c868bcc89e3792dd350" } + }, + { + "x": { "$date": { "$numberLong": "1723006999819" } }, + "y": { "$numberDouble": "281.38" }, + "_id": { "$oid": "66189c868bcc89e3792dd351" } + }, + { + "x": { "$date": { "$numberLong": "1723108987327" } }, + "y": { "$numberDouble": "283.89" }, + "_id": { "$oid": "66189c868bcc89e3792dd352" } + }, + { + "x": { "$date": { "$numberLong": "1723210974835" } }, + "y": { "$numberDouble": "286.4" }, + "_id": { "$oid": "66189c868bcc89e3792dd353" } + }, + { + "x": { "$date": { "$numberLong": "1723312962343" } }, + "y": { "$numberDouble": "288.91" }, + "_id": { "$oid": "66189c868bcc89e3792dd354" } + }, + { + "x": { "$date": { "$numberLong": "1723414949852" } }, + "y": { "$numberDouble": "291.43" }, + "_id": { "$oid": "66189c868bcc89e3792dd355" } + }, + { + "x": { "$date": { "$numberLong": "1723516937360" } }, + "y": { "$numberDouble": "293.94" }, + "_id": { "$oid": "66189c868bcc89e3792dd356" } + }, + { + "x": { "$date": { "$numberLong": "1723618924868" } }, + "y": { "$numberDouble": "296.45" }, + "_id": { "$oid": "66189c868bcc89e3792dd357" } + }, + { + "x": { "$date": { "$numberLong": "1723720912376" } }, + "y": { "$numberDouble": "298.96" }, + "_id": { "$oid": "66189c868bcc89e3792dd358" } + }, + { + "x": { "$date": { "$numberLong": "1723822899884" } }, + "y": { "$numberDouble": "301.47" }, + "_id": { "$oid": "66189c868bcc89e3792dd359" } + }, + { + "x": { "$date": { "$numberLong": "1723924887392" } }, + "y": { "$numberDouble": "303.99" }, + "_id": { "$oid": "66189c868bcc89e3792dd35a" } + }, + { + "x": { "$date": { "$numberLong": "1724026874900" } }, + "y": { "$numberDouble": "306.5" }, + "_id": { "$oid": "66189c868bcc89e3792dd35b" } + }, + { + "x": { "$date": { "$numberLong": "1724128862408" } }, + "y": { "$numberDouble": "309.01" }, + "_id": { "$oid": "66189c868bcc89e3792dd35c" } + }, + { + "x": { "$date": { "$numberLong": "1724230849916" } }, + "y": { "$numberDouble": "311.52" }, + "_id": { "$oid": "66189c868bcc89e3792dd35d" } + }, + { + "x": { "$date": { "$numberLong": "1724332837424" } }, + "y": { "$numberDouble": "314.04" }, + "_id": { "$oid": "66189c868bcc89e3792dd35e" } + }, + { + "x": { "$date": { "$numberLong": "1724434824932" } }, + "y": { "$numberDouble": "316.55" }, + "_id": { "$oid": "66189c868bcc89e3792dd35f" } + }, + { + "x": { "$date": { "$numberLong": "1724536812440" } }, + "y": { "$numberDouble": "319.06" }, + "_id": { "$oid": "66189c868bcc89e3792dd360" } + }, + { + "x": { "$date": { "$numberLong": "1724638799949" } }, + "y": { "$numberDouble": "321.57" }, + "_id": { "$oid": "66189c868bcc89e3792dd361" } + }, + { + "x": { "$date": { "$numberLong": "1724740787457" } }, + "y": { "$numberDouble": "324.09" }, + "_id": { "$oid": "66189c868bcc89e3792dd362" } + }, + { + "x": { "$date": { "$numberLong": "1724842774965" } }, + "y": { "$numberDouble": "326.6" }, + "_id": { "$oid": "66189c868bcc89e3792dd363" } + }, + { + "x": { "$date": { "$numberLong": "1724944762473" } }, + "y": { "$numberDouble": "329.11" }, + "_id": { "$oid": "66189c868bcc89e3792dd364" } + }, + { + "x": { "$date": { "$numberLong": "1725046749981" } }, + "y": { "$numberDouble": "331.62" }, + "_id": { "$oid": "66189c868bcc89e3792dd365" } + }, + { + "x": { "$date": { "$numberLong": "1725148737489" } }, + "y": { "$numberDouble": "334.13" }, + "_id": { "$oid": "66189c868bcc89e3792dd366" } + }, + { + "x": { "$date": { "$numberLong": "1725250724997" } }, + "y": { "$numberDouble": "336.65" }, + "_id": { "$oid": "66189c868bcc89e3792dd367" } + }, + { + "x": { "$date": { "$numberLong": "1725352712505" } }, + "y": { "$numberDouble": "339.16" }, + "_id": { "$oid": "66189c868bcc89e3792dd368" } + }, + { + "x": { "$date": { "$numberLong": "1725454700013" } }, + "y": { "$numberDouble": "341.67" }, + "_id": { "$oid": "66189c868bcc89e3792dd369" } + }, + { + "x": { "$date": { "$numberLong": "1725556687521" } }, + "y": { "$numberDouble": "344.18" }, + "_id": { "$oid": "66189c868bcc89e3792dd36a" } + }, + { + "x": { "$date": { "$numberLong": "1725658675029" } }, + "y": { "$numberDouble": "346.7" }, + "_id": { "$oid": "66189c868bcc89e3792dd36b" } + }, + { + "x": { "$date": { "$numberLong": "1725760662537" } }, + "y": { "$numberDouble": "349.21" }, + "_id": { "$oid": "66189c868bcc89e3792dd36c" } + }, + { + "x": { "$date": { "$numberLong": "1725862650045" } }, + "y": { "$numberDouble": "351.72" }, + "_id": { "$oid": "66189c868bcc89e3792dd36d" } + }, + { + "x": { "$date": { "$numberLong": "1725964637554" } }, + "y": { "$numberDouble": "354.23" }, + "_id": { "$oid": "66189c868bcc89e3792dd36e" } + }, + { + "x": { "$date": { "$numberLong": "1726066625062" } }, + "y": { "$numberDouble": "356.75" }, + "_id": { "$oid": "66189c868bcc89e3792dd36f" } + }, + { + "x": { "$date": { "$numberLong": "1726168612570" } }, + "y": { "$numberDouble": "359.26" }, + "_id": { "$oid": "66189c868bcc89e3792dd370" } + }, + { + "x": { "$date": { "$numberLong": "1726270600078" } }, + "y": { "$numberDouble": "361.77" }, + "_id": { "$oid": "66189c868bcc89e3792dd371" } + }, + { + "x": { "$date": { "$numberLong": "1726372587586" } }, + "y": { "$numberDouble": "364.28" }, + "_id": { "$oid": "66189c868bcc89e3792dd372" } + }, + { + "x": { "$date": { "$numberLong": "1726474575094" } }, + "y": { "$numberDouble": "366.79" }, + "_id": { "$oid": "66189c868bcc89e3792dd373" } + }, + { + "x": { "$date": { "$numberLong": "1726576562602" } }, + "y": { "$numberDouble": "369.31" }, + "_id": { "$oid": "66189c868bcc89e3792dd374" } + }, + { + "x": { "$date": { "$numberLong": "1726678550110" } }, + "y": { "$numberDouble": "371.82" }, + "_id": { "$oid": "66189c868bcc89e3792dd375" } + }, + { + "x": { "$date": { "$numberLong": "1726780537618" } }, + "y": { "$numberDouble": "374.33" }, + "_id": { "$oid": "66189c868bcc89e3792dd376" } + }, + { + "x": { "$date": { "$numberLong": "1726882525126" } }, + "y": { "$numberDouble": "376.84" }, + "_id": { "$oid": "66189c868bcc89e3792dd377" } + }, + { + "x": { "$date": { "$numberLong": "1726984512634" } }, + "y": { "$numberDouble": "379.36" }, + "_id": { "$oid": "66189c868bcc89e3792dd378" } + }, + { + "x": { "$date": { "$numberLong": "1727086500142" } }, + "y": { "$numberDouble": "381.87" }, + "_id": { "$oid": "66189c868bcc89e3792dd379" } + }, + { + "x": { "$date": { "$numberLong": "1727188487650" } }, + "y": { "$numberDouble": "384.38" }, + "_id": { "$oid": "66189c868bcc89e3792dd37a" } + }, + { + "x": { "$date": { "$numberLong": "1727290475159" } }, + "y": { "$numberDouble": "386.89" }, + "_id": { "$oid": "66189c868bcc89e3792dd37b" } + }, + { + "x": { "$date": { "$numberLong": "1727392462667" } }, + "y": { "$numberDouble": "389.41" }, + "_id": { "$oid": "66189c868bcc89e3792dd37c" } + }, + { + "x": { "$date": { "$numberLong": "1727494450175" } }, + "y": { "$numberDouble": "391.92" }, + "_id": { "$oid": "66189c868bcc89e3792dd37d" } + }, + { + "x": { "$date": { "$numberLong": "1727596437683" } }, + "y": { "$numberDouble": "394.43" }, + "_id": { "$oid": "66189c868bcc89e3792dd37e" } + }, + { + "x": { "$date": { "$numberLong": "1727698425191" } }, + "y": { "$numberDouble": "396.94" }, + "_id": { "$oid": "66189c868bcc89e3792dd37f" } + }, + { + "x": { "$date": { "$numberLong": "1727800412699" } }, + "y": { "$numberDouble": "399.45" }, + "_id": { "$oid": "66189c868bcc89e3792dd380" } + }, + { + "x": { "$date": { "$numberLong": "1727902400207" } }, + "y": { "$numberDouble": "401.97" }, + "_id": { "$oid": "66189c868bcc89e3792dd381" } + }, + { + "x": { "$date": { "$numberLong": "1728004387715" } }, + "y": { "$numberDouble": "404.48" }, + "_id": { "$oid": "66189c868bcc89e3792dd382" } + }, + { + "x": { "$date": { "$numberLong": "1728106375223" } }, + "y": { "$numberDouble": "406.99" }, + "_id": { "$oid": "66189c868bcc89e3792dd383" } + }, + { + "x": { "$date": { "$numberLong": "1728208362731" } }, + "y": { "$numberDouble": "409.5" }, + "_id": { "$oid": "66189c868bcc89e3792dd384" } + }, + { + "x": { "$date": { "$numberLong": "1728310350239" } }, + "y": { "$numberDouble": "412.02" }, + "_id": { "$oid": "66189c868bcc89e3792dd385" } + }, + { + "x": { "$date": { "$numberLong": "1728412337747" } }, + "y": { "$numberDouble": "414.53" }, + "_id": { "$oid": "66189c868bcc89e3792dd386" } + }, + { + "x": { "$date": { "$numberLong": "1728514325255" } }, + "y": { "$numberDouble": "417.04" }, + "_id": { "$oid": "66189c868bcc89e3792dd387" } + }, + { + "x": { "$date": { "$numberLong": "1728616312764" } }, + "y": { "$numberDouble": "419.55" }, + "_id": { "$oid": "66189c868bcc89e3792dd388" } + }, + { + "x": { "$date": { "$numberLong": "1728718300272" } }, + "y": { "$numberDouble": "422.06" }, + "_id": { "$oid": "66189c868bcc89e3792dd389" } + }, + { + "x": { "$date": { "$numberLong": "1728820287780" } }, + "y": { "$numberDouble": "424.58" }, + "_id": { "$oid": "66189c868bcc89e3792dd38a" } + }, + { + "x": { "$date": { "$numberLong": "1728922275288" } }, + "y": { "$numberDouble": "427.09" }, + "_id": { "$oid": "66189c868bcc89e3792dd38b" } + }, + { + "x": { "$date": { "$numberLong": "1729024262796" } }, + "y": { "$numberDouble": "429.6" }, + "_id": { "$oid": "66189c868bcc89e3792dd38c" } + }, + { + "x": { "$date": { "$numberLong": "1729126250304" } }, + "y": { "$numberDouble": "432.11" }, + "_id": { "$oid": "66189c868bcc89e3792dd38d" } + }, + { + "x": { "$date": { "$numberLong": "1729228237812" } }, + "y": { "$numberDouble": "434.63" }, + "_id": { "$oid": "66189c868bcc89e3792dd38e" } + }, + { + "x": { "$date": { "$numberLong": "1729330225320" } }, + "y": { "$numberDouble": "437.14" }, + "_id": { "$oid": "66189c868bcc89e3792dd38f" } + }, + { + "x": { "$date": { "$numberLong": "1729432212828" } }, + "y": { "$numberDouble": "439.65" }, + "_id": { "$oid": "66189c868bcc89e3792dd390" } + }, + { + "x": { "$date": { "$numberLong": "1729534200336" } }, + "y": { "$numberDouble": "442.16" }, + "_id": { "$oid": "66189c868bcc89e3792dd391" } + }, + { + "x": { "$date": { "$numberLong": "1729636187844" } }, + "y": { "$numberDouble": "444.68" }, + "_id": { "$oid": "66189c868bcc89e3792dd392" } + }, + { + "x": { "$date": { "$numberLong": "1729738175352" } }, + "y": { "$numberDouble": "447.19" }, + "_id": { "$oid": "66189c868bcc89e3792dd393" } + }, + { + "x": { "$date": { "$numberLong": "1729840162861" } }, + "y": { "$numberDouble": "449.7" }, + "_id": { "$oid": "66189c868bcc89e3792dd394" } + } + ], + "_id": { "$oid": "66189c868bcc89e3792dd2e0" } + }, + { + "id": "270d", + "color": "#2e7c67", + "data": [ + { + "x": { "$date": { "$numberLong": "1711584398915" } }, + "y": { "$numberInt": "0" }, + "_id": { "$oid": "66189c868bcc89e3792dd396" } + }, + { + "x": { "$date": { "$numberLong": "1711681171271" } }, + "y": { "$numberDouble": "2.66" }, + "_id": { "$oid": "66189c868bcc89e3792dd397" } + }, + { + "x": { "$date": { "$numberLong": "1711777943628" } }, + "y": { "$numberDouble": "5.31" }, + "_id": { "$oid": "66189c868bcc89e3792dd398" } + }, + { + "x": { "$date": { "$numberLong": "1711874715985" } }, + "y": { "$numberDouble": "7.97" }, + "_id": { "$oid": "66189c868bcc89e3792dd399" } + }, + { + "x": { "$date": { "$numberLong": "1711971488341" } }, + "y": { "$numberDouble": "10.63" }, + "_id": { "$oid": "66189c868bcc89e3792dd39a" } + }, + { + "x": { "$date": { "$numberLong": "1712068260698" } }, + "y": { "$numberDouble": "13.28" }, + "_id": { "$oid": "66189c868bcc89e3792dd39b" } + }, + { + "x": { "$date": { "$numberLong": "1712165033055" } }, + "y": { "$numberDouble": "15.94" }, + "_id": { "$oid": "66189c868bcc89e3792dd39c" } + }, + { + "x": { "$date": { "$numberLong": "1712261805411" } }, + "y": { "$numberDouble": "18.6" }, + "_id": { "$oid": "66189c868bcc89e3792dd39d" } + }, + { + "x": { "$date": { "$numberLong": "1712358577768" } }, + "y": { "$numberDouble": "21.25" }, + "_id": { "$oid": "66189c868bcc89e3792dd39e" } + }, + { + "x": { "$date": { "$numberLong": "1712455350125" } }, + "y": { "$numberDouble": "23.91" }, + "_id": { "$oid": "66189c868bcc89e3792dd39f" } + }, + { + "x": { "$date": { "$numberLong": "1712552122481" } }, + "y": { "$numberDouble": "26.57" }, + "_id": { "$oid": "66189c868bcc89e3792dd3a0" } + }, + { + "x": { "$date": { "$numberLong": "1712648894838" } }, + "y": { "$numberDouble": "29.22" }, + "_id": { "$oid": "66189c868bcc89e3792dd3a1" } + }, + { + "x": { "$date": { "$numberLong": "1712745667195" } }, + "y": { "$numberDouble": "31.88" }, + "_id": { "$oid": "66189c868bcc89e3792dd3a2" } + }, + { + "x": { "$date": { "$numberLong": "1712842439551" } }, + "y": { "$numberDouble": "34.53" }, + "_id": { "$oid": "66189c868bcc89e3792dd3a3" } + }, + { + "x": { "$date": { "$numberLong": "1712939211908" } }, + "y": { "$numberDouble": "37.19" }, + "_id": { "$oid": "66189c868bcc89e3792dd3a4" } + }, + { + "x": { "$date": { "$numberLong": "1713035984265" } }, + "y": { "$numberDouble": "39.85" }, + "_id": { "$oid": "66189c868bcc89e3792dd3a5" } + }, + { + "x": { "$date": { "$numberLong": "1713132756621" } }, + "y": { "$numberDouble": "42.5" }, + "_id": { "$oid": "66189c868bcc89e3792dd3a6" } + }, + { + "x": { "$date": { "$numberLong": "1713229528978" } }, + "y": { "$numberDouble": "45.16" }, + "_id": { "$oid": "66189c868bcc89e3792dd3a7" } + }, + { + "x": { "$date": { "$numberLong": "1713326301335" } }, + "y": { "$numberDouble": "47.82" }, + "_id": { "$oid": "66189c868bcc89e3792dd3a8" } + }, + { + "x": { "$date": { "$numberLong": "1713423073691" } }, + "y": { "$numberDouble": "50.47" }, + "_id": { "$oid": "66189c868bcc89e3792dd3a9" } + }, + { + "x": { "$date": { "$numberLong": "1713519846048" } }, + "y": { "$numberDouble": "53.13" }, + "_id": { "$oid": "66189c868bcc89e3792dd3aa" } + }, + { + "x": { "$date": { "$numberLong": "1713616618405" } }, + "y": { "$numberDouble": "55.79" }, + "_id": { "$oid": "66189c868bcc89e3792dd3ab" } + }, + { + "x": { "$date": { "$numberLong": "1713713390761" } }, + "y": { "$numberDouble": "58.44" }, + "_id": { "$oid": "66189c868bcc89e3792dd3ac" } + }, + { + "x": { "$date": { "$numberLong": "1713810163118" } }, + "y": { "$numberDouble": "61.1" }, + "_id": { "$oid": "66189c868bcc89e3792dd3ad" } + }, + { + "x": { "$date": { "$numberLong": "1713906935475" } }, + "y": { "$numberDouble": "63.76" }, + "_id": { "$oid": "66189c868bcc89e3792dd3ae" } + }, + { + "x": { "$date": { "$numberLong": "1714003707831" } }, + "y": { "$numberDouble": "66.41" }, + "_id": { "$oid": "66189c868bcc89e3792dd3af" } + }, + { + "x": { "$date": { "$numberLong": "1714100480188" } }, + "y": { "$numberDouble": "69.07" }, + "_id": { "$oid": "66189c868bcc89e3792dd3b0" } + }, + { + "x": { "$date": { "$numberLong": "1714197252545" } }, + "y": { "$numberDouble": "71.73" }, + "_id": { "$oid": "66189c868bcc89e3792dd3b1" } + }, + { + "x": { "$date": { "$numberLong": "1714294024901" } }, + "y": { "$numberDouble": "74.38" }, + "_id": { "$oid": "66189c868bcc89e3792dd3b2" } + }, + { + "x": { "$date": { "$numberLong": "1714390797258" } }, + "y": { "$numberDouble": "77.04" }, + "_id": { "$oid": "66189c868bcc89e3792dd3b3" } + }, + { + "x": { "$date": { "$numberLong": "1714487569615" } }, + "y": { "$numberDouble": "79.7" }, + "_id": { "$oid": "66189c868bcc89e3792dd3b4" } + }, + { + "x": { "$date": { "$numberLong": "1714584341971" } }, + "y": { "$numberDouble": "82.35" }, + "_id": { "$oid": "66189c868bcc89e3792dd3b5" } + }, + { + "x": { "$date": { "$numberLong": "1714681114328" } }, + "y": { "$numberDouble": "85.01" }, + "_id": { "$oid": "66189c868bcc89e3792dd3b6" } + }, + { + "x": { "$date": { "$numberLong": "1714777886685" } }, + "y": { "$numberDouble": "87.66" }, + "_id": { "$oid": "66189c868bcc89e3792dd3b7" } + }, + { + "x": { "$date": { "$numberLong": "1714874659042" } }, + "y": { "$numberDouble": "90.32" }, + "_id": { "$oid": "66189c868bcc89e3792dd3b8" } + }, + { + "x": { "$date": { "$numberLong": "1714971431398" } }, + "y": { "$numberDouble": "92.98" }, + "_id": { "$oid": "66189c868bcc89e3792dd3b9" } + }, + { + "x": { "$date": { "$numberLong": "1715068203755" } }, + "y": { "$numberDouble": "95.63" }, + "_id": { "$oid": "66189c868bcc89e3792dd3ba" } + }, + { + "x": { "$date": { "$numberLong": "1715164976112" } }, + "y": { "$numberDouble": "98.29" }, + "_id": { "$oid": "66189c868bcc89e3792dd3bb" } + }, + { + "x": { "$date": { "$numberLong": "1715261748468" } }, + "y": { "$numberDouble": "100.95" }, + "_id": { "$oid": "66189c868bcc89e3792dd3bc" } + }, + { + "x": { "$date": { "$numberLong": "1715358520825" } }, + "y": { "$numberDouble": "103.6" }, + "_id": { "$oid": "66189c868bcc89e3792dd3bd" } + }, + { + "x": { "$date": { "$numberLong": "1715455293182" } }, + "y": { "$numberDouble": "106.26" }, + "_id": { "$oid": "66189c868bcc89e3792dd3be" } + }, + { + "x": { "$date": { "$numberLong": "1715552065538" } }, + "y": { "$numberDouble": "108.92" }, + "_id": { "$oid": "66189c868bcc89e3792dd3bf" } + }, + { + "x": { "$date": { "$numberLong": "1715648837895" } }, + "y": { "$numberDouble": "111.57" }, + "_id": { "$oid": "66189c868bcc89e3792dd3c0" } + }, + { + "x": { "$date": { "$numberLong": "1715745610252" } }, + "y": { "$numberDouble": "114.23" }, + "_id": { "$oid": "66189c868bcc89e3792dd3c1" } + }, + { + "x": { "$date": { "$numberLong": "1715842382608" } }, + "y": { "$numberDouble": "116.89" }, + "_id": { "$oid": "66189c868bcc89e3792dd3c2" } + }, + { + "x": { "$date": { "$numberLong": "1715939154965" } }, + "y": { "$numberDouble": "119.54" }, + "_id": { "$oid": "66189c868bcc89e3792dd3c3" } + }, + { + "x": { "$date": { "$numberLong": "1716035927322" } }, + "y": { "$numberDouble": "122.2" }, + "_id": { "$oid": "66189c868bcc89e3792dd3c4" } + }, + { + "x": { "$date": { "$numberLong": "1716132699678" } }, + "y": { "$numberDouble": "124.86" }, + "_id": { "$oid": "66189c868bcc89e3792dd3c5" } + }, + { + "x": { "$date": { "$numberLong": "1716229472035" } }, + "y": { "$numberDouble": "127.51" }, + "_id": { "$oid": "66189c868bcc89e3792dd3c6" } + }, + { + "x": { "$date": { "$numberLong": "1716326244392" } }, + "y": { "$numberDouble": "130.17" }, + "_id": { "$oid": "66189c868bcc89e3792dd3c7" } + }, + { + "x": { "$date": { "$numberLong": "1716423016748" } }, + "y": { "$numberDouble": "132.83" }, + "_id": { "$oid": "66189c868bcc89e3792dd3c8" } + }, + { + "x": { "$date": { "$numberLong": "1716519789105" } }, + "y": { "$numberDouble": "135.48" }, + "_id": { "$oid": "66189c868bcc89e3792dd3c9" } + }, + { + "x": { "$date": { "$numberLong": "1716616561462" } }, + "y": { "$numberDouble": "138.14" }, + "_id": { "$oid": "66189c868bcc89e3792dd3ca" } + }, + { + "x": { "$date": { "$numberLong": "1716713333818" } }, + "y": { "$numberDouble": "140.79" }, + "_id": { "$oid": "66189c868bcc89e3792dd3cb" } + }, + { + "x": { "$date": { "$numberLong": "1716810106175" } }, + "y": { "$numberDouble": "143.45" }, + "_id": { "$oid": "66189c868bcc89e3792dd3cc" } + }, + { + "x": { "$date": { "$numberLong": "1716906878532" } }, + "y": { "$numberDouble": "146.11" }, + "_id": { "$oid": "66189c868bcc89e3792dd3cd" } + }, + { + "x": { "$date": { "$numberLong": "1717003650888" } }, + "y": { "$numberDouble": "148.76" }, + "_id": { "$oid": "66189c868bcc89e3792dd3ce" } + }, + { + "x": { "$date": { "$numberLong": "1717100423245" } }, + "y": { "$numberDouble": "151.42" }, + "_id": { "$oid": "66189c868bcc89e3792dd3cf" } + }, + { + "x": { "$date": { "$numberLong": "1717197195602" } }, + "y": { "$numberDouble": "154.08" }, + "_id": { "$oid": "66189c868bcc89e3792dd3d0" } + }, + { + "x": { "$date": { "$numberLong": "1717293967958" } }, + "y": { "$numberDouble": "156.73" }, + "_id": { "$oid": "66189c868bcc89e3792dd3d1" } + }, + { + "x": { "$date": { "$numberLong": "1717390740315" } }, + "y": { "$numberDouble": "159.39" }, + "_id": { "$oid": "66189c868bcc89e3792dd3d2" } + }, + { + "x": { "$date": { "$numberLong": "1717487512672" } }, + "y": { "$numberDouble": "162.05" }, + "_id": { "$oid": "66189c868bcc89e3792dd3d3" } + }, + { + "x": { "$date": { "$numberLong": "1717584285028" } }, + "y": { "$numberDouble": "164.7" }, + "_id": { "$oid": "66189c868bcc89e3792dd3d4" } + }, + { + "x": { "$date": { "$numberLong": "1717681057385" } }, + "y": { "$numberDouble": "167.36" }, + "_id": { "$oid": "66189c868bcc89e3792dd3d5" } + }, + { + "x": { "$date": { "$numberLong": "1717777829742" } }, + "y": { "$numberDouble": "170.02" }, + "_id": { "$oid": "66189c868bcc89e3792dd3d6" } + }, + { + "x": { "$date": { "$numberLong": "1717874602098" } }, + "y": { "$numberDouble": "172.67" }, + "_id": { "$oid": "66189c868bcc89e3792dd3d7" } + }, + { + "x": { "$date": { "$numberLong": "1717971374455" } }, + "y": { "$numberDouble": "175.33" }, + "_id": { "$oid": "66189c868bcc89e3792dd3d8" } + }, + { + "x": { "$date": { "$numberLong": "1718068146812" } }, + "y": { "$numberDouble": "177.99" }, + "_id": { "$oid": "66189c868bcc89e3792dd3d9" } + }, + { + "x": { "$date": { "$numberLong": "1718164919169" } }, + "y": { "$numberDouble": "180.64" }, + "_id": { "$oid": "66189c868bcc89e3792dd3da" } + }, + { + "x": { "$date": { "$numberLong": "1718261691525" } }, + "y": { "$numberDouble": "183.3" }, + "_id": { "$oid": "66189c868bcc89e3792dd3db" } + }, + { + "x": { "$date": { "$numberLong": "1718358463882" } }, + "y": { "$numberDouble": "185.96" }, + "_id": { "$oid": "66189c868bcc89e3792dd3dc" } + }, + { + "x": { "$date": { "$numberLong": "1718455236239" } }, + "y": { "$numberDouble": "188.61" }, + "_id": { "$oid": "66189c868bcc89e3792dd3dd" } + }, + { + "x": { "$date": { "$numberLong": "1718552008595" } }, + "y": { "$numberDouble": "191.27" }, + "_id": { "$oid": "66189c868bcc89e3792dd3de" } + }, + { + "x": { "$date": { "$numberLong": "1718648780952" } }, + "y": { "$numberDouble": "193.92" }, + "_id": { "$oid": "66189c868bcc89e3792dd3df" } + }, + { + "x": { "$date": { "$numberLong": "1718745553309" } }, + "y": { "$numberDouble": "196.58" }, + "_id": { "$oid": "66189c868bcc89e3792dd3e0" } + }, + { + "x": { "$date": { "$numberLong": "1718842325665" } }, + "y": { "$numberDouble": "199.24" }, + "_id": { "$oid": "66189c868bcc89e3792dd3e1" } + }, + { + "x": { "$date": { "$numberLong": "1718939098022" } }, + "y": { "$numberDouble": "201.89" }, + "_id": { "$oid": "66189c868bcc89e3792dd3e2" } + }, + { + "x": { "$date": { "$numberLong": "1719035870379" } }, + "y": { "$numberDouble": "204.55" }, + "_id": { "$oid": "66189c868bcc89e3792dd3e3" } + }, + { + "x": { "$date": { "$numberLong": "1719132642735" } }, + "y": { "$numberDouble": "207.21" }, + "_id": { "$oid": "66189c868bcc89e3792dd3e4" } + }, + { + "x": { "$date": { "$numberLong": "1719229415092" } }, + "y": { "$numberDouble": "209.86" }, + "_id": { "$oid": "66189c868bcc89e3792dd3e5" } + }, + { + "x": { "$date": { "$numberLong": "1719326187449" } }, + "y": { "$numberDouble": "212.52" }, + "_id": { "$oid": "66189c868bcc89e3792dd3e6" } + }, + { + "x": { "$date": { "$numberLong": "1719422959805" } }, + "y": { "$numberDouble": "215.18" }, + "_id": { "$oid": "66189c868bcc89e3792dd3e7" } + }, + { + "x": { "$date": { "$numberLong": "1719519732162" } }, + "y": { "$numberDouble": "217.83" }, + "_id": { "$oid": "66189c868bcc89e3792dd3e8" } + }, + { + "x": { "$date": { "$numberLong": "1719616504519" } }, + "y": { "$numberDouble": "220.49" }, + "_id": { "$oid": "66189c868bcc89e3792dd3e9" } + }, + { + "x": { "$date": { "$numberLong": "1719713276875" } }, + "y": { "$numberDouble": "223.15" }, + "_id": { "$oid": "66189c868bcc89e3792dd3ea" } + }, + { + "x": { "$date": { "$numberLong": "1719810049232" } }, + "y": { "$numberDouble": "225.8" }, + "_id": { "$oid": "66189c868bcc89e3792dd3eb" } + }, + { + "x": { "$date": { "$numberLong": "1719906821589" } }, + "y": { "$numberDouble": "228.46" }, + "_id": { "$oid": "66189c868bcc89e3792dd3ec" } + }, + { + "x": { "$date": { "$numberLong": "1720003593945" } }, + "y": { "$numberDouble": "231.12" }, + "_id": { "$oid": "66189c868bcc89e3792dd3ed" } + }, + { + "x": { "$date": { "$numberLong": "1720100366302" } }, + "y": { "$numberDouble": "233.77" }, + "_id": { "$oid": "66189c868bcc89e3792dd3ee" } + }, + { + "x": { "$date": { "$numberLong": "1720197138659" } }, + "y": { "$numberDouble": "236.43" }, + "_id": { "$oid": "66189c868bcc89e3792dd3ef" } + }, + { + "x": { "$date": { "$numberLong": "1720293911015" } }, + "y": { "$numberDouble": "239.09" }, + "_id": { "$oid": "66189c868bcc89e3792dd3f0" } + }, + { + "x": { "$date": { "$numberLong": "1720390683372" } }, + "y": { "$numberDouble": "241.74" }, + "_id": { "$oid": "66189c868bcc89e3792dd3f1" } + }, + { + "x": { "$date": { "$numberLong": "1720487455729" } }, + "y": { "$numberDouble": "244.4" }, + "_id": { "$oid": "66189c868bcc89e3792dd3f2" } + }, + { + "x": { "$date": { "$numberLong": "1720584228085" } }, + "y": { "$numberDouble": "247.06" }, + "_id": { "$oid": "66189c868bcc89e3792dd3f3" } + }, + { + "x": { "$date": { "$numberLong": "1720681000442" } }, + "y": { "$numberDouble": "249.71" }, + "_id": { "$oid": "66189c868bcc89e3792dd3f4" } + }, + { + "x": { "$date": { "$numberLong": "1720777772799" } }, + "y": { "$numberDouble": "252.37" }, + "_id": { "$oid": "66189c868bcc89e3792dd3f5" } + }, + { + "x": { "$date": { "$numberLong": "1720874545155" } }, + "y": { "$numberDouble": "255.02" }, + "_id": { "$oid": "66189c868bcc89e3792dd3f6" } + }, + { + "x": { "$date": { "$numberLong": "1720971317512" } }, + "y": { "$numberDouble": "257.68" }, + "_id": { "$oid": "66189c868bcc89e3792dd3f7" } + }, + { + "x": { "$date": { "$numberLong": "1721068089869" } }, + "y": { "$numberDouble": "260.34" }, + "_id": { "$oid": "66189c868bcc89e3792dd3f8" } + }, + { + "x": { "$date": { "$numberLong": "1721164862225" } }, + "y": { "$numberDouble": "262.99" }, + "_id": { "$oid": "66189c868bcc89e3792dd3f9" } + }, + { + "x": { "$date": { "$numberLong": "1721261634582" } }, + "y": { "$numberDouble": "265.65" }, + "_id": { "$oid": "66189c868bcc89e3792dd3fa" } + }, + { + "x": { "$date": { "$numberLong": "1721358406939" } }, + "y": { "$numberDouble": "268.31" }, + "_id": { "$oid": "66189c868bcc89e3792dd3fb" } + }, + { + "x": { "$date": { "$numberLong": "1721455179296" } }, + "y": { "$numberDouble": "270.96" }, + "_id": { "$oid": "66189c868bcc89e3792dd3fc" } + }, + { + "x": { "$date": { "$numberLong": "1721551951652" } }, + "y": { "$numberDouble": "273.62" }, + "_id": { "$oid": "66189c868bcc89e3792dd3fd" } + }, + { + "x": { "$date": { "$numberLong": "1721648724009" } }, + "y": { "$numberDouble": "276.28" }, + "_id": { "$oid": "66189c868bcc89e3792dd3fe" } + }, + { + "x": { "$date": { "$numberLong": "1721745496366" } }, + "y": { "$numberDouble": "278.93" }, + "_id": { "$oid": "66189c868bcc89e3792dd3ff" } + }, + { + "x": { "$date": { "$numberLong": "1721842268722" } }, + "y": { "$numberDouble": "281.59" }, + "_id": { "$oid": "66189c868bcc89e3792dd400" } + }, + { + "x": { "$date": { "$numberLong": "1721939041079" } }, + "y": { "$numberDouble": "284.25" }, + "_id": { "$oid": "66189c868bcc89e3792dd401" } + }, + { + "x": { "$date": { "$numberLong": "1722035813436" } }, + "y": { "$numberDouble": "286.9" }, + "_id": { "$oid": "66189c868bcc89e3792dd402" } + }, + { + "x": { "$date": { "$numberLong": "1722132585792" } }, + "y": { "$numberDouble": "289.56" }, + "_id": { "$oid": "66189c868bcc89e3792dd403" } + }, + { + "x": { "$date": { "$numberLong": "1722229358149" } }, + "y": { "$numberDouble": "292.22" }, + "_id": { "$oid": "66189c868bcc89e3792dd404" } + }, + { + "x": { "$date": { "$numberLong": "1722326130506" } }, + "y": { "$numberDouble": "294.87" }, + "_id": { "$oid": "66189c868bcc89e3792dd405" } + }, + { + "x": { "$date": { "$numberLong": "1722422902862" } }, + "y": { "$numberDouble": "297.53" }, + "_id": { "$oid": "66189c868bcc89e3792dd406" } + }, + { + "x": { "$date": { "$numberLong": "1722519675219" } }, + "y": { "$numberDouble": "300.19" }, + "_id": { "$oid": "66189c868bcc89e3792dd407" } + }, + { + "x": { "$date": { "$numberLong": "1722616447576" } }, + "y": { "$numberDouble": "302.84" }, + "_id": { "$oid": "66189c868bcc89e3792dd408" } + }, + { + "x": { "$date": { "$numberLong": "1722713219932" } }, + "y": { "$numberDouble": "305.5" }, + "_id": { "$oid": "66189c868bcc89e3792dd409" } + }, + { + "x": { "$date": { "$numberLong": "1722809992289" } }, + "y": { "$numberDouble": "308.15" }, + "_id": { "$oid": "66189c868bcc89e3792dd40a" } + }, + { + "x": { "$date": { "$numberLong": "1722906764646" } }, + "y": { "$numberDouble": "310.81" }, + "_id": { "$oid": "66189c868bcc89e3792dd40b" } + }, + { + "x": { "$date": { "$numberLong": "1723003537002" } }, + "y": { "$numberDouble": "313.47" }, + "_id": { "$oid": "66189c868bcc89e3792dd40c" } + }, + { + "x": { "$date": { "$numberLong": "1723100309359" } }, + "y": { "$numberDouble": "316.12" }, + "_id": { "$oid": "66189c868bcc89e3792dd40d" } + }, + { + "x": { "$date": { "$numberLong": "1723197081716" } }, + "y": { "$numberDouble": "318.78" }, + "_id": { "$oid": "66189c868bcc89e3792dd40e" } + }, + { + "x": { "$date": { "$numberLong": "1723293854072" } }, + "y": { "$numberDouble": "321.44" }, + "_id": { "$oid": "66189c868bcc89e3792dd40f" } + }, + { + "x": { "$date": { "$numberLong": "1723390626429" } }, + "y": { "$numberDouble": "324.09" }, + "_id": { "$oid": "66189c868bcc89e3792dd410" } + }, + { + "x": { "$date": { "$numberLong": "1723487398786" } }, + "y": { "$numberDouble": "326.75" }, + "_id": { "$oid": "66189c868bcc89e3792dd411" } + }, + { + "x": { "$date": { "$numberLong": "1723584171142" } }, + "y": { "$numberDouble": "329.41" }, + "_id": { "$oid": "66189c868bcc89e3792dd412" } + }, + { + "x": { "$date": { "$numberLong": "1723680943499" } }, + "y": { "$numberDouble": "332.06" }, + "_id": { "$oid": "66189c868bcc89e3792dd413" } + }, + { + "x": { "$date": { "$numberLong": "1723777715856" } }, + "y": { "$numberDouble": "334.72" }, + "_id": { "$oid": "66189c868bcc89e3792dd414" } + }, + { + "x": { "$date": { "$numberLong": "1723874488212" } }, + "y": { "$numberDouble": "337.38" }, + "_id": { "$oid": "66189c868bcc89e3792dd415" } + }, + { + "x": { "$date": { "$numberLong": "1723971260569" } }, + "y": { "$numberDouble": "340.03" }, + "_id": { "$oid": "66189c868bcc89e3792dd416" } + }, + { + "x": { "$date": { "$numberLong": "1724068032926" } }, + "y": { "$numberDouble": "342.69" }, + "_id": { "$oid": "66189c868bcc89e3792dd417" } + }, + { + "x": { "$date": { "$numberLong": "1724164805282" } }, + "y": { "$numberDouble": "345.35" }, + "_id": { "$oid": "66189c868bcc89e3792dd418" } + }, + { + "x": { "$date": { "$numberLong": "1724261577639" } }, + "y": { "$numberInt": "348" }, + "_id": { "$oid": "66189c868bcc89e3792dd419" } + }, + { + "x": { "$date": { "$numberLong": "1724358349996" } }, + "y": { "$numberDouble": "350.66" }, + "_id": { "$oid": "66189c868bcc89e3792dd41a" } + }, + { + "x": { "$date": { "$numberLong": "1724455122352" } }, + "y": { "$numberDouble": "353.32" }, + "_id": { "$oid": "66189c868bcc89e3792dd41b" } + }, + { + "x": { "$date": { "$numberLong": "1724551894709" } }, + "y": { "$numberDouble": "355.97" }, + "_id": { "$oid": "66189c868bcc89e3792dd41c" } + }, + { + "x": { "$date": { "$numberLong": "1724648667066" } }, + "y": { "$numberDouble": "358.63" }, + "_id": { "$oid": "66189c868bcc89e3792dd41d" } + }, + { + "x": { "$date": { "$numberLong": "1724745439423" } }, + "y": { "$numberDouble": "361.28" }, + "_id": { "$oid": "66189c868bcc89e3792dd41e" } + }, + { + "x": { "$date": { "$numberLong": "1724842211779" } }, + "y": { "$numberDouble": "363.94" }, + "_id": { "$oid": "66189c868bcc89e3792dd41f" } + }, + { + "x": { "$date": { "$numberLong": "1724938984136" } }, + "y": { "$numberDouble": "366.6" }, + "_id": { "$oid": "66189c868bcc89e3792dd420" } + }, + { + "x": { "$date": { "$numberLong": "1725035756493" } }, + "y": { "$numberDouble": "369.25" }, + "_id": { "$oid": "66189c868bcc89e3792dd421" } + }, + { + "x": { "$date": { "$numberLong": "1725132528849" } }, + "y": { "$numberDouble": "371.91" }, + "_id": { "$oid": "66189c868bcc89e3792dd422" } + }, + { + "x": { "$date": { "$numberLong": "1725229301206" } }, + "y": { "$numberDouble": "374.57" }, + "_id": { "$oid": "66189c868bcc89e3792dd423" } + }, + { + "x": { "$date": { "$numberLong": "1725326073563" } }, + "y": { "$numberDouble": "377.22" }, + "_id": { "$oid": "66189c868bcc89e3792dd424" } + }, + { + "x": { "$date": { "$numberLong": "1725422845919" } }, + "y": { "$numberDouble": "379.88" }, + "_id": { "$oid": "66189c868bcc89e3792dd425" } + }, + { + "x": { "$date": { "$numberLong": "1725519618276" } }, + "y": { "$numberDouble": "382.54" }, + "_id": { "$oid": "66189c868bcc89e3792dd426" } + }, + { + "x": { "$date": { "$numberLong": "1725616390633" } }, + "y": { "$numberDouble": "385.19" }, + "_id": { "$oid": "66189c868bcc89e3792dd427" } + }, + { + "x": { "$date": { "$numberLong": "1725713162989" } }, + "y": { "$numberDouble": "387.85" }, + "_id": { "$oid": "66189c868bcc89e3792dd428" } + }, + { + "x": { "$date": { "$numberLong": "1725809935346" } }, + "y": { "$numberDouble": "390.51" }, + "_id": { "$oid": "66189c868bcc89e3792dd429" } + }, + { + "x": { "$date": { "$numberLong": "1725906707703" } }, + "y": { "$numberDouble": "393.16" }, + "_id": { "$oid": "66189c868bcc89e3792dd42a" } + }, + { + "x": { "$date": { "$numberLong": "1726003480059" } }, + "y": { "$numberDouble": "395.82" }, + "_id": { "$oid": "66189c868bcc89e3792dd42b" } + }, + { + "x": { "$date": { "$numberLong": "1726100252416" } }, + "y": { "$numberDouble": "398.48" }, + "_id": { "$oid": "66189c868bcc89e3792dd42c" } + }, + { + "x": { "$date": { "$numberLong": "1726197024773" } }, + "y": { "$numberDouble": "401.13" }, + "_id": { "$oid": "66189c868bcc89e3792dd42d" } + }, + { + "x": { "$date": { "$numberLong": "1726293797129" } }, + "y": { "$numberDouble": "403.79" }, + "_id": { "$oid": "66189c868bcc89e3792dd42e" } + }, + { + "x": { "$date": { "$numberLong": "1726390569486" } }, + "y": { "$numberDouble": "406.45" }, + "_id": { "$oid": "66189c868bcc89e3792dd42f" } + }, + { + "x": { "$date": { "$numberLong": "1726487341843" } }, + "y": { "$numberDouble": "409.1" }, + "_id": { "$oid": "66189c868bcc89e3792dd430" } + }, + { + "x": { "$date": { "$numberLong": "1726584114199" } }, + "y": { "$numberDouble": "411.76" }, + "_id": { "$oid": "66189c868bcc89e3792dd431" } + }, + { + "x": { "$date": { "$numberLong": "1726680886556" } }, + "y": { "$numberDouble": "414.41" }, + "_id": { "$oid": "66189c868bcc89e3792dd432" } + }, + { + "x": { "$date": { "$numberLong": "1726777658913" } }, + "y": { "$numberDouble": "417.07" }, + "_id": { "$oid": "66189c868bcc89e3792dd433" } + }, + { + "x": { "$date": { "$numberLong": "1726874431269" } }, + "y": { "$numberDouble": "419.73" }, + "_id": { "$oid": "66189c868bcc89e3792dd434" } + }, + { + "x": { "$date": { "$numberLong": "1726971203626" } }, + "y": { "$numberDouble": "422.38" }, + "_id": { "$oid": "66189c868bcc89e3792dd435" } + }, + { + "x": { "$date": { "$numberLong": "1727067975983" } }, + "y": { "$numberDouble": "425.04" }, + "_id": { "$oid": "66189c868bcc89e3792dd436" } + }, + { + "x": { "$date": { "$numberLong": "1727164748339" } }, + "y": { "$numberDouble": "427.7" }, + "_id": { "$oid": "66189c868bcc89e3792dd437" } + }, + { + "x": { "$date": { "$numberLong": "1727261520696" } }, + "y": { "$numberDouble": "430.35" }, + "_id": { "$oid": "66189c868bcc89e3792dd438" } + }, + { + "x": { "$date": { "$numberLong": "1727358293053" } }, + "y": { "$numberDouble": "433.01" }, + "_id": { "$oid": "66189c868bcc89e3792dd439" } + }, + { + "x": { "$date": { "$numberLong": "1727455065409" } }, + "y": { "$numberDouble": "435.67" }, + "_id": { "$oid": "66189c868bcc89e3792dd43a" } + }, + { + "x": { "$date": { "$numberLong": "1727551837766" } }, + "y": { "$numberDouble": "438.32" }, + "_id": { "$oid": "66189c868bcc89e3792dd43b" } + }, + { + "x": { "$date": { "$numberLong": "1727648610123" } }, + "y": { "$numberDouble": "440.98" }, + "_id": { "$oid": "66189c868bcc89e3792dd43c" } + }, + { + "x": { "$date": { "$numberLong": "1727745382479" } }, + "y": { "$numberDouble": "443.64" }, + "_id": { "$oid": "66189c868bcc89e3792dd43d" } + }, + { + "x": { "$date": { "$numberLong": "1727842154836" } }, + "y": { "$numberDouble": "446.29" }, + "_id": { "$oid": "66189c868bcc89e3792dd43e" } + }, + { + "x": { "$date": { "$numberLong": "1727938927193" } }, + "y": { "$numberDouble": "448.95" }, + "_id": { "$oid": "66189c868bcc89e3792dd43f" } + }, + { + "x": { "$date": { "$numberLong": "1728035699550" } }, + "y": { "$numberDouble": "451.61" }, + "_id": { "$oid": "66189c868bcc89e3792dd440" } + }, + { + "x": { "$date": { "$numberLong": "1728132471906" } }, + "y": { "$numberDouble": "454.26" }, + "_id": { "$oid": "66189c868bcc89e3792dd441" } + }, + { + "x": { "$date": { "$numberLong": "1728229244263" } }, + "y": { "$numberDouble": "456.92" }, + "_id": { "$oid": "66189c868bcc89e3792dd442" } + }, + { + "x": { "$date": { "$numberLong": "1728326016620" } }, + "y": { "$numberDouble": "459.58" }, + "_id": { "$oid": "66189c868bcc89e3792dd443" } + }, + { + "x": { "$date": { "$numberLong": "1728422788976" } }, + "y": { "$numberDouble": "462.23" }, + "_id": { "$oid": "66189c868bcc89e3792dd444" } + }, + { + "x": { "$date": { "$numberLong": "1728519561333" } }, + "y": { "$numberDouble": "464.89" }, + "_id": { "$oid": "66189c868bcc89e3792dd445" } + }, + { + "x": { "$date": { "$numberLong": "1728616333690" } }, + "y": { "$numberDouble": "467.54" }, + "_id": { "$oid": "66189c868bcc89e3792dd446" } + }, + { + "x": { "$date": { "$numberLong": "1728713106046" } }, + "y": { "$numberDouble": "470.2" }, + "_id": { "$oid": "66189c868bcc89e3792dd447" } + }, + { + "x": { "$date": { "$numberLong": "1728809878403" } }, + "y": { "$numberDouble": "472.86" }, + "_id": { "$oid": "66189c868bcc89e3792dd448" } + }, + { + "x": { "$date": { "$numberLong": "1728906650760" } }, + "y": { "$numberDouble": "475.51" }, + "_id": { "$oid": "66189c868bcc89e3792dd449" } + }, + { + "x": { "$date": { "$numberLong": "1729003423116" } }, + "y": { "$numberDouble": "478.17" }, + "_id": { "$oid": "66189c868bcc89e3792dd44a" } + }, + { + "x": { "$date": { "$numberLong": "1729100195473" } }, + "y": { "$numberDouble": "480.83" }, + "_id": { "$oid": "66189c868bcc89e3792dd44b" } + }, + { + "x": { "$date": { "$numberLong": "1729196967830" } }, + "y": { "$numberDouble": "483.48" }, + "_id": { "$oid": "66189c868bcc89e3792dd44c" } + }, + { + "x": { "$date": { "$numberLong": "1729293740186" } }, + "y": { "$numberDouble": "486.14" }, + "_id": { "$oid": "66189c868bcc89e3792dd44d" } + }, + { + "x": { "$date": { "$numberLong": "1729390512543" } }, + "y": { "$numberDouble": "488.8" }, + "_id": { "$oid": "66189c868bcc89e3792dd44e" } + }, + { + "x": { "$date": { "$numberLong": "1729487284900" } }, + "y": { "$numberDouble": "491.45" }, + "_id": { "$oid": "66189c868bcc89e3792dd44f" } + }, + { + "x": { "$date": { "$numberLong": "1729584057256" } }, + "y": { "$numberDouble": "494.11" }, + "_id": { "$oid": "66189c868bcc89e3792dd450" } + }, + { + "x": { "$date": { "$numberLong": "1729680829613" } }, + "y": { "$numberDouble": "496.77" }, + "_id": { "$oid": "66189c868bcc89e3792dd451" } + }, + { + "x": { "$date": { "$numberLong": "1729777601970" } }, + "y": { "$numberDouble": "499.42" }, + "_id": { "$oid": "66189c868bcc89e3792dd452" } + }, + { + "x": { "$date": { "$numberLong": "1729874374326" } }, + "y": { "$numberDouble": "502.08" }, + "_id": { "$oid": "66189c868bcc89e3792dd453" } + }, + { + "x": { "$date": { "$numberLong": "1729971146683" } }, + "y": { "$numberDouble": "504.74" }, + "_id": { "$oid": "66189c868bcc89e3792dd454" } + }, + { + "x": { "$date": { "$numberLong": "1730067919040" } }, + "y": { "$numberDouble": "507.39" }, + "_id": { "$oid": "66189c868bcc89e3792dd455" } + }, + { + "x": { "$date": { "$numberLong": "1730164691396" } }, + "y": { "$numberDouble": "510.05" }, + "_id": { "$oid": "66189c868bcc89e3792dd456" } + }, + { + "x": { "$date": { "$numberLong": "1730261463753" } }, + "y": { "$numberDouble": "512.71" }, + "_id": { "$oid": "66189c868bcc89e3792dd457" } + }, + { + "x": { "$date": { "$numberLong": "1730358236110" } }, + "y": { "$numberDouble": "515.36" }, + "_id": { "$oid": "66189c868bcc89e3792dd458" } + }, + { + "x": { "$date": { "$numberLong": "1730455008466" } }, + "y": { "$numberDouble": "518.02" }, + "_id": { "$oid": "66189c868bcc89e3792dd459" } + }, + { + "x": { "$date": { "$numberLong": "1730551780823" } }, + "y": { "$numberDouble": "520.68" }, + "_id": { "$oid": "66189c868bcc89e3792dd45a" } + }, + { + "x": { "$date": { "$numberLong": "1730648553180" } }, + "y": { "$numberDouble": "523.33" }, + "_id": { "$oid": "66189c868bcc89e3792dd45b" } + }, + { + "x": { "$date": { "$numberLong": "1730745325536" } }, + "y": { "$numberDouble": "525.99" }, + "_id": { "$oid": "66189c868bcc89e3792dd45c" } + }, + { + "x": { "$date": { "$numberLong": "1730842097893" } }, + "y": { "$numberDouble": "528.64" }, + "_id": { "$oid": "66189c868bcc89e3792dd45d" } + }, + { + "x": { "$date": { "$numberLong": "1730938870250" } }, + "y": { "$numberDouble": "531.3" }, + "_id": { "$oid": "66189c868bcc89e3792dd45e" } + }, + { + "x": { "$date": { "$numberLong": "1731035642606" } }, + "y": { "$numberDouble": "533.96" }, + "_id": { "$oid": "66189c868bcc89e3792dd45f" } + }, + { + "x": { "$date": { "$numberLong": "1731132414963" } }, + "y": { "$numberDouble": "536.61" }, + "_id": { "$oid": "66189c868bcc89e3792dd460" } + }, + { + "x": { "$date": { "$numberLong": "1731229187320" } }, + "y": { "$numberDouble": "539.27" }, + "_id": { "$oid": "66189c868bcc89e3792dd461" } + }, + { + "x": { "$date": { "$numberLong": "1731325959677" } }, + "y": { "$numberDouble": "541.93" }, + "_id": { "$oid": "66189c868bcc89e3792dd462" } + }, + { + "x": { "$date": { "$numberLong": "1731422732033" } }, + "y": { "$numberDouble": "544.58" }, + "_id": { "$oid": "66189c868bcc89e3792dd463" } + }, + { + "x": { "$date": { "$numberLong": "1731519504390" } }, + "y": { "$numberDouble": "547.24" }, + "_id": { "$oid": "66189c868bcc89e3792dd464" } + }, + { + "x": { "$date": { "$numberLong": "1731616276747" } }, + "y": { "$numberDouble": "549.9" }, + "_id": { "$oid": "66189c868bcc89e3792dd465" } + }, + { + "x": { "$date": { "$numberLong": "1731713049103" } }, + "y": { "$numberDouble": "552.55" }, + "_id": { "$oid": "66189c868bcc89e3792dd466" } + }, + { + "x": { "$date": { "$numberLong": "1731809821460" } }, + "y": { "$numberDouble": "555.21" }, + "_id": { "$oid": "66189c868bcc89e3792dd467" } + }, + { + "x": { "$date": { "$numberLong": "1731906593817" } }, + "y": { "$numberDouble": "557.87" }, + "_id": { "$oid": "66189c868bcc89e3792dd468" } + }, + { + "x": { "$date": { "$numberLong": "1732003366173" } }, + "y": { "$numberDouble": "560.52" }, + "_id": { "$oid": "66189c868bcc89e3792dd469" } + }, + { + "x": { "$date": { "$numberLong": "1732100138530" } }, + "y": { "$numberDouble": "563.18" }, + "_id": { "$oid": "66189c868bcc89e3792dd46a" } + }, + { + "x": { "$date": { "$numberLong": "1732196910887" } }, + "y": { "$numberDouble": "565.84" }, + "_id": { "$oid": "66189c868bcc89e3792dd46b" } + }, + { + "x": { "$date": { "$numberLong": "1732293683243" } }, + "y": { "$numberDouble": "568.49" }, + "_id": { "$oid": "66189c868bcc89e3792dd46c" } + }, + { + "x": { "$date": { "$numberLong": "1732390455600" } }, + "y": { "$numberDouble": "571.15" }, + "_id": { "$oid": "66189c868bcc89e3792dd46d" } + }, + { + "x": { "$date": { "$numberLong": "1732487227957" } }, + "y": { "$numberDouble": "573.81" }, + "_id": { "$oid": "66189c868bcc89e3792dd46e" } + }, + { + "x": { "$date": { "$numberLong": "1732584000313" } }, + "y": { "$numberDouble": "576.46" }, + "_id": { "$oid": "66189c868bcc89e3792dd46f" } + }, + { + "x": { "$date": { "$numberLong": "1732680772670" } }, + "y": { "$numberDouble": "579.12" }, + "_id": { "$oid": "66189c868bcc89e3792dd470" } + }, + { + "x": { "$date": { "$numberLong": "1732777545027" } }, + "y": { "$numberDouble": "581.77" }, + "_id": { "$oid": "66189c868bcc89e3792dd471" } + }, + { + "x": { "$date": { "$numberLong": "1732874317383" } }, + "y": { "$numberDouble": "584.43" }, + "_id": { "$oid": "66189c868bcc89e3792dd472" } + }, + { + "x": { "$date": { "$numberLong": "1732971089740" } }, + "y": { "$numberDouble": "587.09" }, + "_id": { "$oid": "66189c868bcc89e3792dd473" } + }, + { + "x": { "$date": { "$numberLong": "1733067862097" } }, + "y": { "$numberDouble": "589.74" }, + "_id": { "$oid": "66189c868bcc89e3792dd474" } + }, + { + "x": { "$date": { "$numberLong": "1733164634453" } }, + "y": { "$numberDouble": "592.4" }, + "_id": { "$oid": "66189c868bcc89e3792dd475" } + }, + { + "x": { "$date": { "$numberLong": "1733261406810" } }, + "y": { "$numberDouble": "595.06" }, + "_id": { "$oid": "66189c868bcc89e3792dd476" } + }, + { + "x": { "$date": { "$numberLong": "1733358179167" } }, + "y": { "$numberDouble": "597.71" }, + "_id": { "$oid": "66189c868bcc89e3792dd477" } + }, + { + "x": { "$date": { "$numberLong": "1733454951523" } }, + "y": { "$numberDouble": "600.37" }, + "_id": { "$oid": "66189c868bcc89e3792dd478" } + }, + { + "x": { "$date": { "$numberLong": "1733551723880" } }, + "y": { "$numberDouble": "603.03" }, + "_id": { "$oid": "66189c868bcc89e3792dd479" } + }, + { + "x": { "$date": { "$numberLong": "1733648496237" } }, + "y": { "$numberDouble": "605.68" }, + "_id": { "$oid": "66189c868bcc89e3792dd47a" } + }, + { + "x": { "$date": { "$numberLong": "1733745268593" } }, + "y": { "$numberDouble": "608.34" }, + "_id": { "$oid": "66189c868bcc89e3792dd47b" } + }, + { + "x": { "$date": { "$numberLong": "1733842040950" } }, + "y": { "$numberInt": "611" }, + "_id": { "$oid": "66189c868bcc89e3792dd47c" } + }, + { + "x": { "$date": { "$numberLong": "1733938813307" } }, + "y": { "$numberDouble": "613.65" }, + "_id": { "$oid": "66189c868bcc89e3792dd47d" } + }, + { + "x": { "$date": { "$numberLong": "1734035585663" } }, + "y": { "$numberDouble": "616.31" }, + "_id": { "$oid": "66189c868bcc89e3792dd47e" } + }, + { + "x": { "$date": { "$numberLong": "1734132358020" } }, + "y": { "$numberDouble": "618.97" }, + "_id": { "$oid": "66189c868bcc89e3792dd47f" } + }, + { + "x": { "$date": { "$numberLong": "1734229130377" } }, + "y": { "$numberDouble": "621.62" }, + "_id": { "$oid": "66189c868bcc89e3792dd480" } + }, + { + "x": { "$date": { "$numberLong": "1734325902733" } }, + "y": { "$numberDouble": "624.28" }, + "_id": { "$oid": "66189c868bcc89e3792dd481" } + }, + { + "x": { "$date": { "$numberLong": "1734422675090" } }, + "y": { "$numberDouble": "626.94" }, + "_id": { "$oid": "66189c868bcc89e3792dd482" } + }, + { + "x": { "$date": { "$numberLong": "1734519447447" } }, + "y": { "$numberDouble": "629.59" }, + "_id": { "$oid": "66189c868bcc89e3792dd483" } + }, + { + "x": { "$date": { "$numberLong": "1734616219804" } }, + "y": { "$numberDouble": "632.25" }, + "_id": { "$oid": "66189c868bcc89e3792dd484" } + }, + { + "x": { "$date": { "$numberLong": "1734712992160" } }, + "y": { "$numberDouble": "634.9" }, + "_id": { "$oid": "66189c868bcc89e3792dd485" } + }, + { + "x": { "$date": { "$numberLong": "1734809764517" } }, + "y": { "$numberDouble": "637.56" }, + "_id": { "$oid": "66189c868bcc89e3792dd486" } + }, + { + "x": { "$date": { "$numberLong": "1734906536874" } }, + "y": { "$numberDouble": "640.22" }, + "_id": { "$oid": "66189c868bcc89e3792dd487" } + }, + { + "x": { "$date": { "$numberLong": "1735003309230" } }, + "y": { "$numberDouble": "642.87" }, + "_id": { "$oid": "66189c868bcc89e3792dd488" } + }, + { + "x": { "$date": { "$numberLong": "1735100081587" } }, + "y": { "$numberDouble": "645.53" }, + "_id": { "$oid": "66189c868bcc89e3792dd489" } + }, + { + "x": { "$date": { "$numberLong": "1735196853944" } }, + "y": { "$numberDouble": "648.19" }, + "_id": { "$oid": "66189c868bcc89e3792dd48a" } + }, + { + "x": { "$date": { "$numberLong": "1735293626300" } }, + "y": { "$numberDouble": "650.84" }, + "_id": { "$oid": "66189c868bcc89e3792dd48b" } + }, + { + "x": { "$date": { "$numberLong": "1735390398657" } }, + "y": { "$numberDouble": "653.5" }, + "_id": { "$oid": "66189c868bcc89e3792dd48c" } + }, + { + "x": { "$date": { "$numberLong": "1735487171014" } }, + "y": { "$numberDouble": "656.16" }, + "_id": { "$oid": "66189c868bcc89e3792dd48d" } + }, + { + "x": { "$date": { "$numberLong": "1735583943370" } }, + "y": { "$numberDouble": "658.81" }, + "_id": { "$oid": "66189c868bcc89e3792dd48e" } + }, + { + "x": { "$date": { "$numberLong": "1735680715727" } }, + "y": { "$numberDouble": "661.47" }, + "_id": { "$oid": "66189c868bcc89e3792dd48f" } + }, + { + "x": { "$date": { "$numberLong": "1735777488084" } }, + "y": { "$numberDouble": "664.13" }, + "_id": { "$oid": "66189c868bcc89e3792dd490" } + }, + { + "x": { "$date": { "$numberLong": "1735874260440" } }, + "y": { "$numberDouble": "666.78" }, + "_id": { "$oid": "66189c868bcc89e3792dd491" } + }, + { + "x": { "$date": { "$numberLong": "1735971032797" } }, + "y": { "$numberDouble": "669.44" }, + "_id": { "$oid": "66189c868bcc89e3792dd492" } + }, + { + "x": { "$date": { "$numberLong": "1736067805154" } }, + "y": { "$numberDouble": "672.1" }, + "_id": { "$oid": "66189c868bcc89e3792dd493" } + }, + { + "x": { "$date": { "$numberLong": "1736164577510" } }, + "y": { "$numberDouble": "674.75" }, + "_id": { "$oid": "66189c868bcc89e3792dd494" } + }, + { + "x": { "$date": { "$numberLong": "1736261349867" } }, + "y": { "$numberDouble": "677.41" }, + "_id": { "$oid": "66189c868bcc89e3792dd495" } + }, + { + "x": { "$date": { "$numberLong": "1736358122224" } }, + "y": { "$numberDouble": "680.07" }, + "_id": { "$oid": "66189c868bcc89e3792dd496" } + }, + { + "x": { "$date": { "$numberLong": "1736454894580" } }, + "y": { "$numberDouble": "682.72" }, + "_id": { "$oid": "66189c868bcc89e3792dd497" } + }, + { + "x": { "$date": { "$numberLong": "1736551666937" } }, + "y": { "$numberDouble": "685.38" }, + "_id": { "$oid": "66189c868bcc89e3792dd498" } + }, + { + "x": { "$date": { "$numberLong": "1736648439294" } }, + "y": { "$numberDouble": "688.03" }, + "_id": { "$oid": "66189c868bcc89e3792dd499" } + }, + { + "x": { "$date": { "$numberLong": "1736745211650" } }, + "y": { "$numberDouble": "690.69" }, + "_id": { "$oid": "66189c868bcc89e3792dd49a" } + }, + { + "x": { "$date": { "$numberLong": "1736841984007" } }, + "y": { "$numberDouble": "693.35" }, + "_id": { "$oid": "66189c868bcc89e3792dd49b" } + }, + { + "x": { "$date": { "$numberLong": "1736938756364" } }, + "y": { "$numberInt": "696" }, + "_id": { "$oid": "66189c868bcc89e3792dd49c" } + }, + { + "x": { "$date": { "$numberLong": "1737035528720" } }, + "y": { "$numberDouble": "698.66" }, + "_id": { "$oid": "66189c868bcc89e3792dd49d" } + }, + { + "x": { "$date": { "$numberLong": "1737132301077" } }, + "y": { "$numberDouble": "701.32" }, + "_id": { "$oid": "66189c868bcc89e3792dd49e" } + }, + { + "x": { "$date": { "$numberLong": "1737229073434" } }, + "y": { "$numberDouble": "703.97" }, + "_id": { "$oid": "66189c868bcc89e3792dd49f" } + }, + { + "x": { "$date": { "$numberLong": "1737325845790" } }, + "y": { "$numberDouble": "706.63" }, + "_id": { "$oid": "66189c868bcc89e3792dd4a0" } + }, + { + "x": { "$date": { "$numberLong": "1737422618147" } }, + "y": { "$numberDouble": "709.29" }, + "_id": { "$oid": "66189c868bcc89e3792dd4a1" } + }, + { + "x": { "$date": { "$numberLong": "1737519390504" } }, + "y": { "$numberDouble": "711.94" }, + "_id": { "$oid": "66189c868bcc89e3792dd4a2" } + }, + { + "x": { "$date": { "$numberLong": "1737616162861" } }, + "y": { "$numberDouble": "714.6" }, + "_id": { "$oid": "66189c868bcc89e3792dd4a3" } + } + ], + "_id": { "$oid": "66189c868bcc89e3792dd395" } + }, + { + "id": "365d", + "color": "#2e7c67", + "data": [ + { + "x": { "$date": { "$numberLong": "1711584398915" } }, + "y": { "$numberInt": "0" }, + "_id": { "$oid": "66189c868bcc89e3792dd4a5" } + }, + { + "x": { "$date": { "$numberLong": "1711678464200" } }, + "y": { "$numberDouble": "2.69" }, + "_id": { "$oid": "66189c868bcc89e3792dd4a6" } + }, + { + "x": { "$date": { "$numberLong": "1711772529486" } }, + "y": { "$numberDouble": "5.38" }, + "_id": { "$oid": "66189c868bcc89e3792dd4a7" } + }, + { + "x": { "$date": { "$numberLong": "1711866594771" } }, + "y": { "$numberDouble": "8.07" }, + "_id": { "$oid": "66189c868bcc89e3792dd4a8" } + }, + { + "x": { "$date": { "$numberLong": "1711960660057" } }, + "y": { "$numberDouble": "10.76" }, + "_id": { "$oid": "66189c868bcc89e3792dd4a9" } + }, + { + "x": { "$date": { "$numberLong": "1712054725342" } }, + "y": { "$numberDouble": "13.45" }, + "_id": { "$oid": "66189c868bcc89e3792dd4aa" } + }, + { + "x": { "$date": { "$numberLong": "1712148790628" } }, + "y": { "$numberDouble": "16.15" }, + "_id": { "$oid": "66189c868bcc89e3792dd4ab" } + }, + { + "x": { "$date": { "$numberLong": "1712242855913" } }, + "y": { "$numberDouble": "18.84" }, + "_id": { "$oid": "66189c868bcc89e3792dd4ac" } + }, + { + "x": { "$date": { "$numberLong": "1712336921199" } }, + "y": { "$numberDouble": "21.53" }, + "_id": { "$oid": "66189c868bcc89e3792dd4ad" } + }, + { + "x": { "$date": { "$numberLong": "1712430986485" } }, + "y": { "$numberDouble": "24.22" }, + "_id": { "$oid": "66189c868bcc89e3792dd4ae" } + }, + { + "x": { "$date": { "$numberLong": "1712525051770" } }, + "y": { "$numberDouble": "26.91" }, + "_id": { "$oid": "66189c868bcc89e3792dd4af" } + }, + { + "x": { "$date": { "$numberLong": "1712619117056" } }, + "y": { "$numberDouble": "29.6" }, + "_id": { "$oid": "66189c868bcc89e3792dd4b0" } + }, + { + "x": { "$date": { "$numberLong": "1712713182341" } }, + "y": { "$numberDouble": "32.29" }, + "_id": { "$oid": "66189c868bcc89e3792dd4b1" } + }, + { + "x": { "$date": { "$numberLong": "1712807247627" } }, + "y": { "$numberDouble": "34.98" }, + "_id": { "$oid": "66189c868bcc89e3792dd4b2" } + }, + { + "x": { "$date": { "$numberLong": "1712901312912" } }, + "y": { "$numberDouble": "37.67" }, + "_id": { "$oid": "66189c868bcc89e3792dd4b3" } + }, + { + "x": { "$date": { "$numberLong": "1712995378198" } }, + "y": { "$numberDouble": "40.36" }, + "_id": { "$oid": "66189c868bcc89e3792dd4b4" } + }, + { + "x": { "$date": { "$numberLong": "1713089443484" } }, + "y": { "$numberDouble": "43.05" }, + "_id": { "$oid": "66189c868bcc89e3792dd4b5" } + }, + { + "x": { "$date": { "$numberLong": "1713183508769" } }, + "y": { "$numberDouble": "45.75" }, + "_id": { "$oid": "66189c868bcc89e3792dd4b6" } + }, + { + "x": { "$date": { "$numberLong": "1713277574055" } }, + "y": { "$numberDouble": "48.44" }, + "_id": { "$oid": "66189c868bcc89e3792dd4b7" } + }, + { + "x": { "$date": { "$numberLong": "1713371639340" } }, + "y": { "$numberDouble": "51.13" }, + "_id": { "$oid": "66189c868bcc89e3792dd4b8" } + }, + { + "x": { "$date": { "$numberLong": "1713465704626" } }, + "y": { "$numberDouble": "53.82" }, + "_id": { "$oid": "66189c868bcc89e3792dd4b9" } + }, + { + "x": { "$date": { "$numberLong": "1713559769911" } }, + "y": { "$numberDouble": "56.51" }, + "_id": { "$oid": "66189c868bcc89e3792dd4ba" } + }, + { + "x": { "$date": { "$numberLong": "1713653835197" } }, + "y": { "$numberDouble": "59.2" }, + "_id": { "$oid": "66189c868bcc89e3792dd4bb" } + }, + { + "x": { "$date": { "$numberLong": "1713747900483" } }, + "y": { "$numberDouble": "61.89" }, + "_id": { "$oid": "66189c868bcc89e3792dd4bc" } + }, + { + "x": { "$date": { "$numberLong": "1713841965768" } }, + "y": { "$numberDouble": "64.58" }, + "_id": { "$oid": "66189c868bcc89e3792dd4bd" } + }, + { + "x": { "$date": { "$numberLong": "1713936031054" } }, + "y": { "$numberDouble": "67.27" }, + "_id": { "$oid": "66189c868bcc89e3792dd4be" } + }, + { + "x": { "$date": { "$numberLong": "1714030096339" } }, + "y": { "$numberDouble": "69.96" }, + "_id": { "$oid": "66189c868bcc89e3792dd4bf" } + }, + { + "x": { "$date": { "$numberLong": "1714124161625" } }, + "y": { "$numberDouble": "72.66" }, + "_id": { "$oid": "66189c868bcc89e3792dd4c0" } + }, + { + "x": { "$date": { "$numberLong": "1714218226910" } }, + "y": { "$numberDouble": "75.35" }, + "_id": { "$oid": "66189c868bcc89e3792dd4c1" } + }, + { + "x": { "$date": { "$numberLong": "1714312292196" } }, + "y": { "$numberDouble": "78.04" }, + "_id": { "$oid": "66189c868bcc89e3792dd4c2" } + }, + { + "x": { "$date": { "$numberLong": "1714406357481" } }, + "y": { "$numberDouble": "80.73" }, + "_id": { "$oid": "66189c868bcc89e3792dd4c3" } + }, + { + "x": { "$date": { "$numberLong": "1714500422767" } }, + "y": { "$numberDouble": "83.42" }, + "_id": { "$oid": "66189c868bcc89e3792dd4c4" } + }, + { + "x": { "$date": { "$numberLong": "1714594488053" } }, + "y": { "$numberDouble": "86.11" }, + "_id": { "$oid": "66189c868bcc89e3792dd4c5" } + }, + { + "x": { "$date": { "$numberLong": "1714688553338" } }, + "y": { "$numberDouble": "88.8" }, + "_id": { "$oid": "66189c868bcc89e3792dd4c6" } + }, + { + "x": { "$date": { "$numberLong": "1714782618624" } }, + "y": { "$numberDouble": "91.49" }, + "_id": { "$oid": "66189c868bcc89e3792dd4c7" } + }, + { + "x": { "$date": { "$numberLong": "1714876683909" } }, + "y": { "$numberDouble": "94.18" }, + "_id": { "$oid": "66189c868bcc89e3792dd4c8" } + }, + { + "x": { "$date": { "$numberLong": "1714970749195" } }, + "y": { "$numberDouble": "96.87" }, + "_id": { "$oid": "66189c868bcc89e3792dd4c9" } + }, + { + "x": { "$date": { "$numberLong": "1715064814480" } }, + "y": { "$numberDouble": "99.56" }, + "_id": { "$oid": "66189c868bcc89e3792dd4ca" } + }, + { + "x": { "$date": { "$numberLong": "1715158879766" } }, + "y": { "$numberDouble": "102.26" }, + "_id": { "$oid": "66189c868bcc89e3792dd4cb" } + }, + { + "x": { "$date": { "$numberLong": "1715252945052" } }, + "y": { "$numberDouble": "104.95" }, + "_id": { "$oid": "66189c868bcc89e3792dd4cc" } + }, + { + "x": { "$date": { "$numberLong": "1715347010337" } }, + "y": { "$numberDouble": "107.64" }, + "_id": { "$oid": "66189c868bcc89e3792dd4cd" } + }, + { + "x": { "$date": { "$numberLong": "1715441075623" } }, + "y": { "$numberDouble": "110.33" }, + "_id": { "$oid": "66189c868bcc89e3792dd4ce" } + }, + { + "x": { "$date": { "$numberLong": "1715535140908" } }, + "y": { "$numberDouble": "113.02" }, + "_id": { "$oid": "66189c868bcc89e3792dd4cf" } + }, + { + "x": { "$date": { "$numberLong": "1715629206194" } }, + "y": { "$numberDouble": "115.71" }, + "_id": { "$oid": "66189c868bcc89e3792dd4d0" } + }, + { + "x": { "$date": { "$numberLong": "1715723271479" } }, + "y": { "$numberDouble": "118.4" }, + "_id": { "$oid": "66189c868bcc89e3792dd4d1" } + }, + { + "x": { "$date": { "$numberLong": "1715817336765" } }, + "y": { "$numberDouble": "121.09" }, + "_id": { "$oid": "66189c868bcc89e3792dd4d2" } + }, + { + "x": { "$date": { "$numberLong": "1715911402051" } }, + "y": { "$numberDouble": "123.78" }, + "_id": { "$oid": "66189c868bcc89e3792dd4d3" } + }, + { + "x": { "$date": { "$numberLong": "1716005467336" } }, + "y": { "$numberDouble": "126.47" }, + "_id": { "$oid": "66189c868bcc89e3792dd4d4" } + }, + { + "x": { "$date": { "$numberLong": "1716099532622" } }, + "y": { "$numberDouble": "129.16" }, + "_id": { "$oid": "66189c868bcc89e3792dd4d5" } + }, + { + "x": { "$date": { "$numberLong": "1716193597907" } }, + "y": { "$numberDouble": "131.86" }, + "_id": { "$oid": "66189c868bcc89e3792dd4d6" } + }, + { + "x": { "$date": { "$numberLong": "1716287663193" } }, + "y": { "$numberDouble": "134.55" }, + "_id": { "$oid": "66189c868bcc89e3792dd4d7" } + }, + { + "x": { "$date": { "$numberLong": "1716381728478" } }, + "y": { "$numberDouble": "137.24" }, + "_id": { "$oid": "66189c868bcc89e3792dd4d8" } + }, + { + "x": { "$date": { "$numberLong": "1716475793764" } }, + "y": { "$numberDouble": "139.93" }, + "_id": { "$oid": "66189c868bcc89e3792dd4d9" } + }, + { + "x": { "$date": { "$numberLong": "1716569859049" } }, + "y": { "$numberDouble": "142.62" }, + "_id": { "$oid": "66189c868bcc89e3792dd4da" } + }, + { + "x": { "$date": { "$numberLong": "1716663924335" } }, + "y": { "$numberDouble": "145.31" }, + "_id": { "$oid": "66189c868bcc89e3792dd4db" } + }, + { + "x": { "$date": { "$numberLong": "1716757989621" } }, + "y": { "$numberInt": "148" }, + "_id": { "$oid": "66189c868bcc89e3792dd4dc" } + }, + { + "x": { "$date": { "$numberLong": "1716852054906" } }, + "y": { "$numberDouble": "150.69" }, + "_id": { "$oid": "66189c868bcc89e3792dd4dd" } + }, + { + "x": { "$date": { "$numberLong": "1716946120192" } }, + "y": { "$numberDouble": "153.38" }, + "_id": { "$oid": "66189c868bcc89e3792dd4de" } + }, + { + "x": { "$date": { "$numberLong": "1717040185477" } }, + "y": { "$numberDouble": "156.07" }, + "_id": { "$oid": "66189c868bcc89e3792dd4df" } + }, + { + "x": { "$date": { "$numberLong": "1717134250763" } }, + "y": { "$numberDouble": "158.77" }, + "_id": { "$oid": "66189c868bcc89e3792dd4e0" } + }, + { + "x": { "$date": { "$numberLong": "1717228316048" } }, + "y": { "$numberDouble": "161.46" }, + "_id": { "$oid": "66189c868bcc89e3792dd4e1" } + }, + { + "x": { "$date": { "$numberLong": "1717322381334" } }, + "y": { "$numberDouble": "164.15" }, + "_id": { "$oid": "66189c868bcc89e3792dd4e2" } + }, + { + "x": { "$date": { "$numberLong": "1717416446620" } }, + "y": { "$numberDouble": "166.84" }, + "_id": { "$oid": "66189c868bcc89e3792dd4e3" } + }, + { + "x": { "$date": { "$numberLong": "1717510511905" } }, + "y": { "$numberDouble": "169.53" }, + "_id": { "$oid": "66189c868bcc89e3792dd4e4" } + }, + { + "x": { "$date": { "$numberLong": "1717604577191" } }, + "y": { "$numberDouble": "172.22" }, + "_id": { "$oid": "66189c868bcc89e3792dd4e5" } + }, + { + "x": { "$date": { "$numberLong": "1717698642476" } }, + "y": { "$numberDouble": "174.91" }, + "_id": { "$oid": "66189c868bcc89e3792dd4e6" } + }, + { + "x": { "$date": { "$numberLong": "1717792707762" } }, + "y": { "$numberDouble": "177.6" }, + "_id": { "$oid": "66189c868bcc89e3792dd4e7" } + }, + { + "x": { "$date": { "$numberLong": "1717886773047" } }, + "y": { "$numberDouble": "180.29" }, + "_id": { "$oid": "66189c868bcc89e3792dd4e8" } + }, + { + "x": { "$date": { "$numberLong": "1717980838333" } }, + "y": { "$numberDouble": "182.98" }, + "_id": { "$oid": "66189c868bcc89e3792dd4e9" } + }, + { + "x": { "$date": { "$numberLong": "1718074903619" } }, + "y": { "$numberDouble": "185.67" }, + "_id": { "$oid": "66189c868bcc89e3792dd4ea" } + }, + { + "x": { "$date": { "$numberLong": "1718168968904" } }, + "y": { "$numberDouble": "188.37" }, + "_id": { "$oid": "66189c868bcc89e3792dd4eb" } + }, + { + "x": { "$date": { "$numberLong": "1718263034190" } }, + "y": { "$numberDouble": "191.06" }, + "_id": { "$oid": "66189c868bcc89e3792dd4ec" } + }, + { + "x": { "$date": { "$numberLong": "1718357099475" } }, + "y": { "$numberDouble": "193.75" }, + "_id": { "$oid": "66189c868bcc89e3792dd4ed" } + }, + { + "x": { "$date": { "$numberLong": "1718451164761" } }, + "y": { "$numberDouble": "196.44" }, + "_id": { "$oid": "66189c868bcc89e3792dd4ee" } + }, + { + "x": { "$date": { "$numberLong": "1718545230046" } }, + "y": { "$numberDouble": "199.13" }, + "_id": { "$oid": "66189c868bcc89e3792dd4ef" } + }, + { + "x": { "$date": { "$numberLong": "1718639295332" } }, + "y": { "$numberDouble": "201.82" }, + "_id": { "$oid": "66189c868bcc89e3792dd4f0" } + }, + { + "x": { "$date": { "$numberLong": "1718733360618" } }, + "y": { "$numberDouble": "204.51" }, + "_id": { "$oid": "66189c868bcc89e3792dd4f1" } + }, + { + "x": { "$date": { "$numberLong": "1718827425903" } }, + "y": { "$numberDouble": "207.2" }, + "_id": { "$oid": "66189c868bcc89e3792dd4f2" } + }, + { + "x": { "$date": { "$numberLong": "1718921491189" } }, + "y": { "$numberDouble": "209.89" }, + "_id": { "$oid": "66189c868bcc89e3792dd4f3" } + }, + { + "x": { "$date": { "$numberLong": "1719015556474" } }, + "y": { "$numberDouble": "212.58" }, + "_id": { "$oid": "66189c868bcc89e3792dd4f4" } + }, + { + "x": { "$date": { "$numberLong": "1719109621760" } }, + "y": { "$numberDouble": "215.27" }, + "_id": { "$oid": "66189c868bcc89e3792dd4f5" } + }, + { + "x": { "$date": { "$numberLong": "1719203687045" } }, + "y": { "$numberDouble": "217.97" }, + "_id": { "$oid": "66189c868bcc89e3792dd4f6" } + }, + { + "x": { "$date": { "$numberLong": "1719297752331" } }, + "y": { "$numberDouble": "220.66" }, + "_id": { "$oid": "66189c868bcc89e3792dd4f7" } + }, + { + "x": { "$date": { "$numberLong": "1719391817616" } }, + "y": { "$numberDouble": "223.35" }, + "_id": { "$oid": "66189c868bcc89e3792dd4f8" } + }, + { + "x": { "$date": { "$numberLong": "1719485882902" } }, + "y": { "$numberDouble": "226.04" }, + "_id": { "$oid": "66189c868bcc89e3792dd4f9" } + }, + { + "x": { "$date": { "$numberLong": "1719579948188" } }, + "y": { "$numberDouble": "228.73" }, + "_id": { "$oid": "66189c868bcc89e3792dd4fa" } + }, + { + "x": { "$date": { "$numberLong": "1719674013473" } }, + "y": { "$numberDouble": "231.42" }, + "_id": { "$oid": "66189c868bcc89e3792dd4fb" } + }, + { + "x": { "$date": { "$numberLong": "1719768078759" } }, + "y": { "$numberDouble": "234.11" }, + "_id": { "$oid": "66189c868bcc89e3792dd4fc" } + }, + { + "x": { "$date": { "$numberLong": "1719862144044" } }, + "y": { "$numberDouble": "236.8" }, + "_id": { "$oid": "66189c868bcc89e3792dd4fd" } + }, + { + "x": { "$date": { "$numberLong": "1719956209330" } }, + "y": { "$numberDouble": "239.49" }, + "_id": { "$oid": "66189c868bcc89e3792dd4fe" } + }, + { + "x": { "$date": { "$numberLong": "1720050274615" } }, + "y": { "$numberDouble": "242.18" }, + "_id": { "$oid": "66189c868bcc89e3792dd4ff" } + }, + { + "x": { "$date": { "$numberLong": "1720144339901" } }, + "y": { "$numberDouble": "244.88" }, + "_id": { "$oid": "66189c868bcc89e3792dd500" } + }, + { + "x": { "$date": { "$numberLong": "1720238405187" } }, + "y": { "$numberDouble": "247.57" }, + "_id": { "$oid": "66189c868bcc89e3792dd501" } + }, + { + "x": { "$date": { "$numberLong": "1720332470472" } }, + "y": { "$numberDouble": "250.26" }, + "_id": { "$oid": "66189c868bcc89e3792dd502" } + }, + { + "x": { "$date": { "$numberLong": "1720426535758" } }, + "y": { "$numberDouble": "252.95" }, + "_id": { "$oid": "66189c868bcc89e3792dd503" } + }, + { + "x": { "$date": { "$numberLong": "1720520601043" } }, + "y": { "$numberDouble": "255.64" }, + "_id": { "$oid": "66189c868bcc89e3792dd504" } + }, + { + "x": { "$date": { "$numberLong": "1720614666329" } }, + "y": { "$numberDouble": "258.33" }, + "_id": { "$oid": "66189c868bcc89e3792dd505" } + }, + { + "x": { "$date": { "$numberLong": "1720708731614" } }, + "y": { "$numberDouble": "261.02" }, + "_id": { "$oid": "66189c868bcc89e3792dd506" } + }, + { + "x": { "$date": { "$numberLong": "1720802796900" } }, + "y": { "$numberDouble": "263.71" }, + "_id": { "$oid": "66189c868bcc89e3792dd507" } + }, + { + "x": { "$date": { "$numberLong": "1720896862186" } }, + "y": { "$numberDouble": "266.4" }, + "_id": { "$oid": "66189c868bcc89e3792dd508" } + }, + { + "x": { "$date": { "$numberLong": "1720990927471" } }, + "y": { "$numberDouble": "269.09" }, + "_id": { "$oid": "66189c868bcc89e3792dd509" } + }, + { + "x": { "$date": { "$numberLong": "1721084992757" } }, + "y": { "$numberDouble": "271.78" }, + "_id": { "$oid": "66189c868bcc89e3792dd50a" } + }, + { + "x": { "$date": { "$numberLong": "1721179058042" } }, + "y": { "$numberDouble": "274.48" }, + "_id": { "$oid": "66189c868bcc89e3792dd50b" } + }, + { + "x": { "$date": { "$numberLong": "1721273123328" } }, + "y": { "$numberDouble": "277.17" }, + "_id": { "$oid": "66189c868bcc89e3792dd50c" } + }, + { + "x": { "$date": { "$numberLong": "1721367188613" } }, + "y": { "$numberDouble": "279.86" }, + "_id": { "$oid": "66189c868bcc89e3792dd50d" } + }, + { + "x": { "$date": { "$numberLong": "1721461253899" } }, + "y": { "$numberDouble": "282.55" }, + "_id": { "$oid": "66189c868bcc89e3792dd50e" } + }, + { + "x": { "$date": { "$numberLong": "1721555319184" } }, + "y": { "$numberDouble": "285.24" }, + "_id": { "$oid": "66189c868bcc89e3792dd50f" } + }, + { + "x": { "$date": { "$numberLong": "1721649384470" } }, + "y": { "$numberDouble": "287.93" }, + "_id": { "$oid": "66189c868bcc89e3792dd510" } + }, + { + "x": { "$date": { "$numberLong": "1721743449756" } }, + "y": { "$numberDouble": "290.62" }, + "_id": { "$oid": "66189c868bcc89e3792dd511" } + }, + { + "x": { "$date": { "$numberLong": "1721837515041" } }, + "y": { "$numberDouble": "293.31" }, + "_id": { "$oid": "66189c868bcc89e3792dd512" } + }, + { + "x": { "$date": { "$numberLong": "1721931580327" } }, + "y": { "$numberInt": "296" }, + "_id": { "$oid": "66189c868bcc89e3792dd513" } + }, + { + "x": { "$date": { "$numberLong": "1722025645612" } }, + "y": { "$numberDouble": "298.69" }, + "_id": { "$oid": "66189c868bcc89e3792dd514" } + }, + { + "x": { "$date": { "$numberLong": "1722119710898" } }, + "y": { "$numberDouble": "301.38" }, + "_id": { "$oid": "66189c868bcc89e3792dd515" } + }, + { + "x": { "$date": { "$numberLong": "1722213776183" } }, + "y": { "$numberDouble": "304.08" }, + "_id": { "$oid": "66189c868bcc89e3792dd516" } + }, + { + "x": { "$date": { "$numberLong": "1722307841469" } }, + "y": { "$numberDouble": "306.77" }, + "_id": { "$oid": "66189c868bcc89e3792dd517" } + }, + { + "x": { "$date": { "$numberLong": "1722401906755" } }, + "y": { "$numberDouble": "309.46" }, + "_id": { "$oid": "66189c868bcc89e3792dd518" } + }, + { + "x": { "$date": { "$numberLong": "1722495972040" } }, + "y": { "$numberDouble": "312.15" }, + "_id": { "$oid": "66189c868bcc89e3792dd519" } + }, + { + "x": { "$date": { "$numberLong": "1722590037326" } }, + "y": { "$numberDouble": "314.84" }, + "_id": { "$oid": "66189c868bcc89e3792dd51a" } + }, + { + "x": { "$date": { "$numberLong": "1722684102611" } }, + "y": { "$numberDouble": "317.53" }, + "_id": { "$oid": "66189c868bcc89e3792dd51b" } + }, + { + "x": { "$date": { "$numberLong": "1722778167897" } }, + "y": { "$numberDouble": "320.22" }, + "_id": { "$oid": "66189c868bcc89e3792dd51c" } + }, + { + "x": { "$date": { "$numberLong": "1722872233182" } }, + "y": { "$numberDouble": "322.91" }, + "_id": { "$oid": "66189c868bcc89e3792dd51d" } + }, + { + "x": { "$date": { "$numberLong": "1722966298468" } }, + "y": { "$numberDouble": "325.6" }, + "_id": { "$oid": "66189c868bcc89e3792dd51e" } + }, + { + "x": { "$date": { "$numberLong": "1723060363754" } }, + "y": { "$numberDouble": "328.29" }, + "_id": { "$oid": "66189c868bcc89e3792dd51f" } + }, + { + "x": { "$date": { "$numberLong": "1723154429039" } }, + "y": { "$numberDouble": "330.98" }, + "_id": { "$oid": "66189c868bcc89e3792dd520" } + }, + { + "x": { "$date": { "$numberLong": "1723248494325" } }, + "y": { "$numberDouble": "333.68" }, + "_id": { "$oid": "66189c868bcc89e3792dd521" } + }, + { + "x": { "$date": { "$numberLong": "1723342559610" } }, + "y": { "$numberDouble": "336.37" }, + "_id": { "$oid": "66189c868bcc89e3792dd522" } + }, + { + "x": { "$date": { "$numberLong": "1723436624896" } }, + "y": { "$numberDouble": "339.06" }, + "_id": { "$oid": "66189c868bcc89e3792dd523" } + }, + { + "x": { "$date": { "$numberLong": "1723530690181" } }, + "y": { "$numberDouble": "341.75" }, + "_id": { "$oid": "66189c868bcc89e3792dd524" } + }, + { + "x": { "$date": { "$numberLong": "1723624755467" } }, + "y": { "$numberDouble": "344.44" }, + "_id": { "$oid": "66189c868bcc89e3792dd525" } + }, + { + "x": { "$date": { "$numberLong": "1723718820753" } }, + "y": { "$numberDouble": "347.13" }, + "_id": { "$oid": "66189c868bcc89e3792dd526" } + }, + { + "x": { "$date": { "$numberLong": "1723812886038" } }, + "y": { "$numberDouble": "349.82" }, + "_id": { "$oid": "66189c868bcc89e3792dd527" } + }, + { + "x": { "$date": { "$numberLong": "1723906951324" } }, + "y": { "$numberDouble": "352.51" }, + "_id": { "$oid": "66189c868bcc89e3792dd528" } + }, + { + "x": { "$date": { "$numberLong": "1724001016609" } }, + "y": { "$numberDouble": "355.2" }, + "_id": { "$oid": "66189c868bcc89e3792dd529" } + }, + { + "x": { "$date": { "$numberLong": "1724095081895" } }, + "y": { "$numberDouble": "357.89" }, + "_id": { "$oid": "66189c868bcc89e3792dd52a" } + }, + { + "x": { "$date": { "$numberLong": "1724189147180" } }, + "y": { "$numberDouble": "360.59" }, + "_id": { "$oid": "66189c868bcc89e3792dd52b" } + }, + { + "x": { "$date": { "$numberLong": "1724283212466" } }, + "y": { "$numberDouble": "363.28" }, + "_id": { "$oid": "66189c868bcc89e3792dd52c" } + }, + { + "x": { "$date": { "$numberLong": "1724377277751" } }, + "y": { "$numberDouble": "365.97" }, + "_id": { "$oid": "66189c868bcc89e3792dd52d" } + }, + { + "x": { "$date": { "$numberLong": "1724471343037" } }, + "y": { "$numberDouble": "368.66" }, + "_id": { "$oid": "66189c868bcc89e3792dd52e" } + }, + { + "x": { "$date": { "$numberLong": "1724565408323" } }, + "y": { "$numberDouble": "371.35" }, + "_id": { "$oid": "66189c868bcc89e3792dd52f" } + }, + { + "x": { "$date": { "$numberLong": "1724659473608" } }, + "y": { "$numberDouble": "374.04" }, + "_id": { "$oid": "66189c868bcc89e3792dd530" } + }, + { + "x": { "$date": { "$numberLong": "1724753538894" } }, + "y": { "$numberDouble": "376.73" }, + "_id": { "$oid": "66189c868bcc89e3792dd531" } + }, + { + "x": { "$date": { "$numberLong": "1724847604179" } }, + "y": { "$numberDouble": "379.42" }, + "_id": { "$oid": "66189c868bcc89e3792dd532" } + }, + { + "x": { "$date": { "$numberLong": "1724941669465" } }, + "y": { "$numberDouble": "382.11" }, + "_id": { "$oid": "66189c868bcc89e3792dd533" } + }, + { + "x": { "$date": { "$numberLong": "1725035734750" } }, + "y": { "$numberDouble": "384.8" }, + "_id": { "$oid": "66189c868bcc89e3792dd534" } + }, + { + "x": { "$date": { "$numberLong": "1725129800036" } }, + "y": { "$numberDouble": "387.49" }, + "_id": { "$oid": "66189c868bcc89e3792dd535" } + }, + { + "x": { "$date": { "$numberLong": "1725223865322" } }, + "y": { "$numberDouble": "390.19" }, + "_id": { "$oid": "66189c868bcc89e3792dd536" } + }, + { + "x": { "$date": { "$numberLong": "1725317930607" } }, + "y": { "$numberDouble": "392.88" }, + "_id": { "$oid": "66189c868bcc89e3792dd537" } + }, + { + "x": { "$date": { "$numberLong": "1725411995893" } }, + "y": { "$numberDouble": "395.57" }, + "_id": { "$oid": "66189c868bcc89e3792dd538" } + }, + { + "x": { "$date": { "$numberLong": "1725506061178" } }, + "y": { "$numberDouble": "398.26" }, + "_id": { "$oid": "66189c868bcc89e3792dd539" } + }, + { + "x": { "$date": { "$numberLong": "1725600126464" } }, + "y": { "$numberDouble": "400.95" }, + "_id": { "$oid": "66189c868bcc89e3792dd53a" } + }, + { + "x": { "$date": { "$numberLong": "1725694191749" } }, + "y": { "$numberDouble": "403.64" }, + "_id": { "$oid": "66189c868bcc89e3792dd53b" } + }, + { + "x": { "$date": { "$numberLong": "1725788257035" } }, + "y": { "$numberDouble": "406.33" }, + "_id": { "$oid": "66189c868bcc89e3792dd53c" } + }, + { + "x": { "$date": { "$numberLong": "1725882322321" } }, + "y": { "$numberDouble": "409.02" }, + "_id": { "$oid": "66189c868bcc89e3792dd53d" } + }, + { + "x": { "$date": { "$numberLong": "1725976387606" } }, + "y": { "$numberDouble": "411.71" }, + "_id": { "$oid": "66189c868bcc89e3792dd53e" } + }, + { + "x": { "$date": { "$numberLong": "1726070452892" } }, + "y": { "$numberDouble": "414.4" }, + "_id": { "$oid": "66189c868bcc89e3792dd53f" } + }, + { + "x": { "$date": { "$numberLong": "1726164518177" } }, + "y": { "$numberDouble": "417.09" }, + "_id": { "$oid": "66189c868bcc89e3792dd540" } + }, + { + "x": { "$date": { "$numberLong": "1726258583463" } }, + "y": { "$numberDouble": "419.79" }, + "_id": { "$oid": "66189c868bcc89e3792dd541" } + }, + { + "x": { "$date": { "$numberLong": "1726352648748" } }, + "y": { "$numberDouble": "422.48" }, + "_id": { "$oid": "66189c868bcc89e3792dd542" } + }, + { + "x": { "$date": { "$numberLong": "1726446714034" } }, + "y": { "$numberDouble": "425.17" }, + "_id": { "$oid": "66189c868bcc89e3792dd543" } + }, + { + "x": { "$date": { "$numberLong": "1726540779319" } }, + "y": { "$numberDouble": "427.86" }, + "_id": { "$oid": "66189c868bcc89e3792dd544" } + }, + { + "x": { "$date": { "$numberLong": "1726634844605" } }, + "y": { "$numberDouble": "430.55" }, + "_id": { "$oid": "66189c868bcc89e3792dd545" } + }, + { + "x": { "$date": { "$numberLong": "1726728909891" } }, + "y": { "$numberDouble": "433.24" }, + "_id": { "$oid": "66189c868bcc89e3792dd546" } + }, + { + "x": { "$date": { "$numberLong": "1726822975176" } }, + "y": { "$numberDouble": "435.93" }, + "_id": { "$oid": "66189c868bcc89e3792dd547" } + }, + { + "x": { "$date": { "$numberLong": "1726917040462" } }, + "y": { "$numberDouble": "438.62" }, + "_id": { "$oid": "66189c868bcc89e3792dd548" } + }, + { + "x": { "$date": { "$numberLong": "1727011105747" } }, + "y": { "$numberDouble": "441.31" }, + "_id": { "$oid": "66189c868bcc89e3792dd549" } + }, + { + "x": { "$date": { "$numberLong": "1727105171033" } }, + "y": { "$numberInt": "444" }, + "_id": { "$oid": "66189c868bcc89e3792dd54a" } + }, + { + "x": { "$date": { "$numberLong": "1727199236318" } }, + "y": { "$numberDouble": "446.7" }, + "_id": { "$oid": "66189c868bcc89e3792dd54b" } + }, + { + "x": { "$date": { "$numberLong": "1727293301604" } }, + "y": { "$numberDouble": "449.39" }, + "_id": { "$oid": "66189c868bcc89e3792dd54c" } + }, + { + "x": { "$date": { "$numberLong": "1727387366890" } }, + "y": { "$numberDouble": "452.08" }, + "_id": { "$oid": "66189c868bcc89e3792dd54d" } + }, + { + "x": { "$date": { "$numberLong": "1727481432175" } }, + "y": { "$numberDouble": "454.77" }, + "_id": { "$oid": "66189c868bcc89e3792dd54e" } + }, + { + "x": { "$date": { "$numberLong": "1727575497461" } }, + "y": { "$numberDouble": "457.46" }, + "_id": { "$oid": "66189c868bcc89e3792dd54f" } + }, + { + "x": { "$date": { "$numberLong": "1727669562746" } }, + "y": { "$numberDouble": "460.15" }, + "_id": { "$oid": "66189c868bcc89e3792dd550" } + }, + { + "x": { "$date": { "$numberLong": "1727763628032" } }, + "y": { "$numberDouble": "462.84" }, + "_id": { "$oid": "66189c868bcc89e3792dd551" } + }, + { + "x": { "$date": { "$numberLong": "1727857693317" } }, + "y": { "$numberDouble": "465.53" }, + "_id": { "$oid": "66189c868bcc89e3792dd552" } + }, + { + "x": { "$date": { "$numberLong": "1727951758603" } }, + "y": { "$numberDouble": "468.22" }, + "_id": { "$oid": "66189c868bcc89e3792dd553" } + }, + { + "x": { "$date": { "$numberLong": "1728045823889" } }, + "y": { "$numberDouble": "470.91" }, + "_id": { "$oid": "66189c868bcc89e3792dd554" } + }, + { + "x": { "$date": { "$numberLong": "1728139889174" } }, + "y": { "$numberDouble": "473.6" }, + "_id": { "$oid": "66189c868bcc89e3792dd555" } + }, + { + "x": { "$date": { "$numberLong": "1728233954460" } }, + "y": { "$numberDouble": "476.3" }, + "_id": { "$oid": "66189c868bcc89e3792dd556" } + }, + { + "x": { "$date": { "$numberLong": "1728328019745" } }, + "y": { "$numberDouble": "478.99" }, + "_id": { "$oid": "66189c868bcc89e3792dd557" } + }, + { + "x": { "$date": { "$numberLong": "1728422085031" } }, + "y": { "$numberDouble": "481.68" }, + "_id": { "$oid": "66189c868bcc89e3792dd558" } + }, + { + "x": { "$date": { "$numberLong": "1728516150316" } }, + "y": { "$numberDouble": "484.37" }, + "_id": { "$oid": "66189c868bcc89e3792dd559" } + }, + { + "x": { "$date": { "$numberLong": "1728610215602" } }, + "y": { "$numberDouble": "487.06" }, + "_id": { "$oid": "66189c868bcc89e3792dd55a" } + }, + { + "x": { "$date": { "$numberLong": "1728704280888" } }, + "y": { "$numberDouble": "489.75" }, + "_id": { "$oid": "66189c868bcc89e3792dd55b" } + }, + { + "x": { "$date": { "$numberLong": "1728798346173" } }, + "y": { "$numberDouble": "492.44" }, + "_id": { "$oid": "66189c868bcc89e3792dd55c" } + }, + { + "x": { "$date": { "$numberLong": "1728892411459" } }, + "y": { "$numberDouble": "495.13" }, + "_id": { "$oid": "66189c868bcc89e3792dd55d" } + }, + { + "x": { "$date": { "$numberLong": "1728986476744" } }, + "y": { "$numberDouble": "497.82" }, + "_id": { "$oid": "66189c868bcc89e3792dd55e" } + }, + { + "x": { "$date": { "$numberLong": "1729080542030" } }, + "y": { "$numberDouble": "500.51" }, + "_id": { "$oid": "66189c868bcc89e3792dd55f" } + }, + { + "x": { "$date": { "$numberLong": "1729174607315" } }, + "y": { "$numberDouble": "503.2" }, + "_id": { "$oid": "66189c868bcc89e3792dd560" } + }, + { + "x": { "$date": { "$numberLong": "1729268672601" } }, + "y": { "$numberDouble": "505.9" }, + "_id": { "$oid": "66189c868bcc89e3792dd561" } + }, + { + "x": { "$date": { "$numberLong": "1729362737886" } }, + "y": { "$numberDouble": "508.59" }, + "_id": { "$oid": "66189c868bcc89e3792dd562" } + }, + { + "x": { "$date": { "$numberLong": "1729456803172" } }, + "y": { "$numberDouble": "511.28" }, + "_id": { "$oid": "66189c868bcc89e3792dd563" } + }, + { + "x": { "$date": { "$numberLong": "1729550868458" } }, + "y": { "$numberDouble": "513.97" }, + "_id": { "$oid": "66189c868bcc89e3792dd564" } + }, + { + "x": { "$date": { "$numberLong": "1729644933743" } }, + "y": { "$numberDouble": "516.66" }, + "_id": { "$oid": "66189c868bcc89e3792dd565" } + }, + { + "x": { "$date": { "$numberLong": "1729738999029" } }, + "y": { "$numberDouble": "519.35" }, + "_id": { "$oid": "66189c868bcc89e3792dd566" } + }, + { + "x": { "$date": { "$numberLong": "1729833064314" } }, + "y": { "$numberDouble": "522.04" }, + "_id": { "$oid": "66189c868bcc89e3792dd567" } + }, + { + "x": { "$date": { "$numberLong": "1729927129600" } }, + "y": { "$numberDouble": "524.73" }, + "_id": { "$oid": "66189c868bcc89e3792dd568" } + }, + { + "x": { "$date": { "$numberLong": "1730021194885" } }, + "y": { "$numberDouble": "527.42" }, + "_id": { "$oid": "66189c868bcc89e3792dd569" } + }, + { + "x": { "$date": { "$numberLong": "1730115260171" } }, + "y": { "$numberDouble": "530.11" }, + "_id": { "$oid": "66189c868bcc89e3792dd56a" } + }, + { + "x": { "$date": { "$numberLong": "1730209325457" } }, + "y": { "$numberDouble": "532.8" }, + "_id": { "$oid": "66189c868bcc89e3792dd56b" } + }, + { + "x": { "$date": { "$numberLong": "1730303390742" } }, + "y": { "$numberDouble": "535.5" }, + "_id": { "$oid": "66189c868bcc89e3792dd56c" } + }, + { + "x": { "$date": { "$numberLong": "1730397456028" } }, + "y": { "$numberDouble": "538.19" }, + "_id": { "$oid": "66189c868bcc89e3792dd56d" } + }, + { + "x": { "$date": { "$numberLong": "1730491521313" } }, + "y": { "$numberDouble": "540.88" }, + "_id": { "$oid": "66189c868bcc89e3792dd56e" } + }, + { + "x": { "$date": { "$numberLong": "1730585586599" } }, + "y": { "$numberDouble": "543.57" }, + "_id": { "$oid": "66189c868bcc89e3792dd56f" } + }, + { + "x": { "$date": { "$numberLong": "1730679651884" } }, + "y": { "$numberDouble": "546.26" }, + "_id": { "$oid": "66189c868bcc89e3792dd570" } + }, + { + "x": { "$date": { "$numberLong": "1730773717170" } }, + "y": { "$numberDouble": "548.95" }, + "_id": { "$oid": "66189c868bcc89e3792dd571" } + }, + { + "x": { "$date": { "$numberLong": "1730867782456" } }, + "y": { "$numberDouble": "551.64" }, + "_id": { "$oid": "66189c868bcc89e3792dd572" } + }, + { + "x": { "$date": { "$numberLong": "1730961847741" } }, + "y": { "$numberDouble": "554.33" }, + "_id": { "$oid": "66189c868bcc89e3792dd573" } + }, + { + "x": { "$date": { "$numberLong": "1731055913027" } }, + "y": { "$numberDouble": "557.02" }, + "_id": { "$oid": "66189c868bcc89e3792dd574" } + }, + { + "x": { "$date": { "$numberLong": "1731149978312" } }, + "y": { "$numberDouble": "559.71" }, + "_id": { "$oid": "66189c868bcc89e3792dd575" } + }, + { + "x": { "$date": { "$numberLong": "1731244043598" } }, + "y": { "$numberDouble": "562.41" }, + "_id": { "$oid": "66189c868bcc89e3792dd576" } + }, + { + "x": { "$date": { "$numberLong": "1731338108883" } }, + "y": { "$numberDouble": "565.1" }, + "_id": { "$oid": "66189c868bcc89e3792dd577" } + }, + { + "x": { "$date": { "$numberLong": "1731432174169" } }, + "y": { "$numberDouble": "567.79" }, + "_id": { "$oid": "66189c868bcc89e3792dd578" } + }, + { + "x": { "$date": { "$numberLong": "1731526239454" } }, + "y": { "$numberDouble": "570.48" }, + "_id": { "$oid": "66189c868bcc89e3792dd579" } + }, + { + "x": { "$date": { "$numberLong": "1731620304740" } }, + "y": { "$numberDouble": "573.17" }, + "_id": { "$oid": "66189c868bcc89e3792dd57a" } + }, + { + "x": { "$date": { "$numberLong": "1731714370026" } }, + "y": { "$numberDouble": "575.86" }, + "_id": { "$oid": "66189c868bcc89e3792dd57b" } + }, + { + "x": { "$date": { "$numberLong": "1731808435311" } }, + "y": { "$numberDouble": "578.55" }, + "_id": { "$oid": "66189c868bcc89e3792dd57c" } + }, + { + "x": { "$date": { "$numberLong": "1731902500597" } }, + "y": { "$numberDouble": "581.24" }, + "_id": { "$oid": "66189c868bcc89e3792dd57d" } + }, + { + "x": { "$date": { "$numberLong": "1731996565882" } }, + "y": { "$numberDouble": "583.93" }, + "_id": { "$oid": "66189c868bcc89e3792dd57e" } + }, + { + "x": { "$date": { "$numberLong": "1732090631168" } }, + "y": { "$numberDouble": "586.62" }, + "_id": { "$oid": "66189c868bcc89e3792dd57f" } + }, + { + "x": { "$date": { "$numberLong": "1732184696453" } }, + "y": { "$numberDouble": "589.31" }, + "_id": { "$oid": "66189c868bcc89e3792dd580" } + }, + { + "x": { "$date": { "$numberLong": "1732278761739" } }, + "y": { "$numberDouble": "592.01" }, + "_id": { "$oid": "66189c868bcc89e3792dd581" } + }, + { + "x": { "$date": { "$numberLong": "1732372827025" } }, + "y": { "$numberDouble": "594.7" }, + "_id": { "$oid": "66189c868bcc89e3792dd582" } + }, + { + "x": { "$date": { "$numberLong": "1732466892310" } }, + "y": { "$numberDouble": "597.39" }, + "_id": { "$oid": "66189c868bcc89e3792dd583" } + }, + { + "x": { "$date": { "$numberLong": "1732560957596" } }, + "y": { "$numberDouble": "600.08" }, + "_id": { "$oid": "66189c868bcc89e3792dd584" } + }, + { + "x": { "$date": { "$numberLong": "1732655022881" } }, + "y": { "$numberDouble": "602.77" }, + "_id": { "$oid": "66189c868bcc89e3792dd585" } + }, + { + "x": { "$date": { "$numberLong": "1732749088167" } }, + "y": { "$numberDouble": "605.46" }, + "_id": { "$oid": "66189c868bcc89e3792dd586" } + }, + { + "x": { "$date": { "$numberLong": "1732843153452" } }, + "y": { "$numberDouble": "608.15" }, + "_id": { "$oid": "66189c868bcc89e3792dd587" } + }, + { + "x": { "$date": { "$numberLong": "1732937218738" } }, + "y": { "$numberDouble": "610.84" }, + "_id": { "$oid": "66189c868bcc89e3792dd588" } + }, + { + "x": { "$date": { "$numberLong": "1733031284024" } }, + "y": { "$numberDouble": "613.53" }, + "_id": { "$oid": "66189c868bcc89e3792dd589" } + }, + { + "x": { "$date": { "$numberLong": "1733125349309" } }, + "y": { "$numberDouble": "616.22" }, + "_id": { "$oid": "66189c868bcc89e3792dd58a" } + }, + { + "x": { "$date": { "$numberLong": "1733219414595" } }, + "y": { "$numberDouble": "618.91" }, + "_id": { "$oid": "66189c868bcc89e3792dd58b" } + }, + { + "x": { "$date": { "$numberLong": "1733313479880" } }, + "y": { "$numberDouble": "621.61" }, + "_id": { "$oid": "66189c868bcc89e3792dd58c" } + }, + { + "x": { "$date": { "$numberLong": "1733407545166" } }, + "y": { "$numberDouble": "624.3" }, + "_id": { "$oid": "66189c868bcc89e3792dd58d" } + }, + { + "x": { "$date": { "$numberLong": "1733501610451" } }, + "y": { "$numberDouble": "626.99" }, + "_id": { "$oid": "66189c868bcc89e3792dd58e" } + }, + { + "x": { "$date": { "$numberLong": "1733595675737" } }, + "y": { "$numberDouble": "629.68" }, + "_id": { "$oid": "66189c868bcc89e3792dd58f" } + }, + { + "x": { "$date": { "$numberLong": "1733689741022" } }, + "y": { "$numberDouble": "632.37" }, + "_id": { "$oid": "66189c868bcc89e3792dd590" } + }, + { + "x": { "$date": { "$numberLong": "1733783806308" } }, + "y": { "$numberDouble": "635.06" }, + "_id": { "$oid": "66189c868bcc89e3792dd591" } + }, + { + "x": { "$date": { "$numberLong": "1733877871594" } }, + "y": { "$numberDouble": "637.75" }, + "_id": { "$oid": "66189c868bcc89e3792dd592" } + }, + { + "x": { "$date": { "$numberLong": "1733971936879" } }, + "y": { "$numberDouble": "640.44" }, + "_id": { "$oid": "66189c868bcc89e3792dd593" } + }, + { + "x": { "$date": { "$numberLong": "1734066002165" } }, + "y": { "$numberDouble": "643.13" }, + "_id": { "$oid": "66189c868bcc89e3792dd594" } + }, + { + "x": { "$date": { "$numberLong": "1734160067450" } }, + "y": { "$numberDouble": "645.82" }, + "_id": { "$oid": "66189c868bcc89e3792dd595" } + }, + { + "x": { "$date": { "$numberLong": "1734254132736" } }, + "y": { "$numberDouble": "648.52" }, + "_id": { "$oid": "66189c868bcc89e3792dd596" } + }, + { + "x": { "$date": { "$numberLong": "1734348198021" } }, + "y": { "$numberDouble": "651.21" }, + "_id": { "$oid": "66189c868bcc89e3792dd597" } + }, + { + "x": { "$date": { "$numberLong": "1734442263307" } }, + "y": { "$numberDouble": "653.9" }, + "_id": { "$oid": "66189c868bcc89e3792dd598" } + }, + { + "x": { "$date": { "$numberLong": "1734536328593" } }, + "y": { "$numberDouble": "656.59" }, + "_id": { "$oid": "66189c868bcc89e3792dd599" } + }, + { + "x": { "$date": { "$numberLong": "1734630393878" } }, + "y": { "$numberDouble": "659.28" }, + "_id": { "$oid": "66189c868bcc89e3792dd59a" } + }, + { + "x": { "$date": { "$numberLong": "1734724459164" } }, + "y": { "$numberDouble": "661.97" }, + "_id": { "$oid": "66189c868bcc89e3792dd59b" } + }, + { + "x": { "$date": { "$numberLong": "1734818524449" } }, + "y": { "$numberDouble": "664.66" }, + "_id": { "$oid": "66189c868bcc89e3792dd59c" } + }, + { + "x": { "$date": { "$numberLong": "1734912589735" } }, + "y": { "$numberDouble": "667.35" }, + "_id": { "$oid": "66189c868bcc89e3792dd59d" } + }, + { + "x": { "$date": { "$numberLong": "1735006655020" } }, + "y": { "$numberDouble": "670.04" }, + "_id": { "$oid": "66189c868bcc89e3792dd59e" } + }, + { + "x": { "$date": { "$numberLong": "1735100720306" } }, + "y": { "$numberDouble": "672.73" }, + "_id": { "$oid": "66189c868bcc89e3792dd59f" } + }, + { + "x": { "$date": { "$numberLong": "1735194785592" } }, + "y": { "$numberDouble": "675.42" }, + "_id": { "$oid": "66189c868bcc89e3792dd5a0" } + }, + { + "x": { "$date": { "$numberLong": "1735288850877" } }, + "y": { "$numberDouble": "678.12" }, + "_id": { "$oid": "66189c868bcc89e3792dd5a1" } + }, + { + "x": { "$date": { "$numberLong": "1735382916163" } }, + "y": { "$numberDouble": "680.81" }, + "_id": { "$oid": "66189c868bcc89e3792dd5a2" } + }, + { + "x": { "$date": { "$numberLong": "1735476981448" } }, + "y": { "$numberDouble": "683.5" }, + "_id": { "$oid": "66189c868bcc89e3792dd5a3" } + }, + { + "x": { "$date": { "$numberLong": "1735571046734" } }, + "y": { "$numberDouble": "686.19" }, + "_id": { "$oid": "66189c868bcc89e3792dd5a4" } + }, + { + "x": { "$date": { "$numberLong": "1735665112019" } }, + "y": { "$numberDouble": "688.88" }, + "_id": { "$oid": "66189c868bcc89e3792dd5a5" } + }, + { + "x": { "$date": { "$numberLong": "1735759177305" } }, + "y": { "$numberDouble": "691.57" }, + "_id": { "$oid": "66189c868bcc89e3792dd5a6" } + }, + { + "x": { "$date": { "$numberLong": "1735853242591" } }, + "y": { "$numberDouble": "694.26" }, + "_id": { "$oid": "66189c868bcc89e3792dd5a7" } + }, + { + "x": { "$date": { "$numberLong": "1735947307876" } }, + "y": { "$numberDouble": "696.95" }, + "_id": { "$oid": "66189c868bcc89e3792dd5a8" } + }, + { + "x": { "$date": { "$numberLong": "1736041373162" } }, + "y": { "$numberDouble": "699.64" }, + "_id": { "$oid": "66189c868bcc89e3792dd5a9" } + }, + { + "x": { "$date": { "$numberLong": "1736135438447" } }, + "y": { "$numberDouble": "702.33" }, + "_id": { "$oid": "66189c868bcc89e3792dd5aa" } + }, + { + "x": { "$date": { "$numberLong": "1736229503733" } }, + "y": { "$numberDouble": "705.02" }, + "_id": { "$oid": "66189c868bcc89e3792dd5ab" } + }, + { + "x": { "$date": { "$numberLong": "1736323569018" } }, + "y": { "$numberDouble": "707.72" }, + "_id": { "$oid": "66189c868bcc89e3792dd5ac" } + }, + { + "x": { "$date": { "$numberLong": "1736417634304" } }, + "y": { "$numberDouble": "710.41" }, + "_id": { "$oid": "66189c868bcc89e3792dd5ad" } + }, + { + "x": { "$date": { "$numberLong": "1736511699589" } }, + "y": { "$numberDouble": "713.1" }, + "_id": { "$oid": "66189c868bcc89e3792dd5ae" } + }, + { + "x": { "$date": { "$numberLong": "1736605764875" } }, + "y": { "$numberDouble": "715.79" }, + "_id": { "$oid": "66189c868bcc89e3792dd5af" } + }, + { + "x": { "$date": { "$numberLong": "1736699830161" } }, + "y": { "$numberDouble": "718.48" }, + "_id": { "$oid": "66189c868bcc89e3792dd5b0" } + }, + { + "x": { "$date": { "$numberLong": "1736793895446" } }, + "y": { "$numberDouble": "721.17" }, + "_id": { "$oid": "66189c868bcc89e3792dd5b1" } + }, + { + "x": { "$date": { "$numberLong": "1736887960732" } }, + "y": { "$numberDouble": "723.86" }, + "_id": { "$oid": "66189c868bcc89e3792dd5b2" } + }, + { + "x": { "$date": { "$numberLong": "1736982026017" } }, + "y": { "$numberDouble": "726.55" }, + "_id": { "$oid": "66189c868bcc89e3792dd5b3" } + }, + { + "x": { "$date": { "$numberLong": "1737076091303" } }, + "y": { "$numberDouble": "729.24" }, + "_id": { "$oid": "66189c868bcc89e3792dd5b4" } + }, + { + "x": { "$date": { "$numberLong": "1737170156588" } }, + "y": { "$numberDouble": "731.93" }, + "_id": { "$oid": "66189c868bcc89e3792dd5b5" } + }, + { + "x": { "$date": { "$numberLong": "1737264221874" } }, + "y": { "$numberDouble": "734.63" }, + "_id": { "$oid": "66189c868bcc89e3792dd5b6" } + }, + { + "x": { "$date": { "$numberLong": "1737358287160" } }, + "y": { "$numberDouble": "737.32" }, + "_id": { "$oid": "66189c868bcc89e3792dd5b7" } + }, + { + "x": { "$date": { "$numberLong": "1737452352445" } }, + "y": { "$numberDouble": "740.01" }, + "_id": { "$oid": "66189c868bcc89e3792dd5b8" } + }, + { + "x": { "$date": { "$numberLong": "1737546417731" } }, + "y": { "$numberDouble": "742.7" }, + "_id": { "$oid": "66189c868bcc89e3792dd5b9" } + }, + { + "x": { "$date": { "$numberLong": "1737640483016" } }, + "y": { "$numberDouble": "745.39" }, + "_id": { "$oid": "66189c868bcc89e3792dd5ba" } + }, + { + "x": { "$date": { "$numberLong": "1737734548302" } }, + "y": { "$numberDouble": "748.08" }, + "_id": { "$oid": "66189c868bcc89e3792dd5bb" } + }, + { + "x": { "$date": { "$numberLong": "1737828613587" } }, + "y": { "$numberDouble": "750.77" }, + "_id": { "$oid": "66189c868bcc89e3792dd5bc" } + }, + { + "x": { "$date": { "$numberLong": "1737922678873" } }, + "y": { "$numberDouble": "753.46" }, + "_id": { "$oid": "66189c868bcc89e3792dd5bd" } + }, + { + "x": { "$date": { "$numberLong": "1738016744159" } }, + "y": { "$numberDouble": "756.15" }, + "_id": { "$oid": "66189c868bcc89e3792dd5be" } + }, + { + "x": { "$date": { "$numberLong": "1738110809444" } }, + "y": { "$numberDouble": "758.84" }, + "_id": { "$oid": "66189c868bcc89e3792dd5bf" } + }, + { + "x": { "$date": { "$numberLong": "1738204874730" } }, + "y": { "$numberDouble": "761.53" }, + "_id": { "$oid": "66189c868bcc89e3792dd5c0" } + }, + { + "x": { "$date": { "$numberLong": "1738298940015" } }, + "y": { "$numberDouble": "764.23" }, + "_id": { "$oid": "66189c868bcc89e3792dd5c1" } + }, + { + "x": { "$date": { "$numberLong": "1738393005301" } }, + "y": { "$numberDouble": "766.92" }, + "_id": { "$oid": "66189c868bcc89e3792dd5c2" } + }, + { + "x": { "$date": { "$numberLong": "1738487070586" } }, + "y": { "$numberDouble": "769.61" }, + "_id": { "$oid": "66189c868bcc89e3792dd5c3" } + }, + { + "x": { "$date": { "$numberLong": "1738581135872" } }, + "y": { "$numberDouble": "772.3" }, + "_id": { "$oid": "66189c868bcc89e3792dd5c4" } + }, + { + "x": { "$date": { "$numberLong": "1738675201157" } }, + "y": { "$numberDouble": "774.99" }, + "_id": { "$oid": "66189c868bcc89e3792dd5c5" } + }, + { + "x": { "$date": { "$numberLong": "1738769266443" } }, + "y": { "$numberDouble": "777.68" }, + "_id": { "$oid": "66189c868bcc89e3792dd5c6" } + }, + { + "x": { "$date": { "$numberLong": "1738863331729" } }, + "y": { "$numberDouble": "780.37" }, + "_id": { "$oid": "66189c868bcc89e3792dd5c7" } + }, + { + "x": { "$date": { "$numberLong": "1738957397014" } }, + "y": { "$numberDouble": "783.06" }, + "_id": { "$oid": "66189c868bcc89e3792dd5c8" } + }, + { + "x": { "$date": { "$numberLong": "1739051462300" } }, + "y": { "$numberDouble": "785.75" }, + "_id": { "$oid": "66189c868bcc89e3792dd5c9" } + }, + { + "x": { "$date": { "$numberLong": "1739145527585" } }, + "y": { "$numberDouble": "788.44" }, + "_id": { "$oid": "66189c868bcc89e3792dd5ca" } + }, + { + "x": { "$date": { "$numberLong": "1739239592871" } }, + "y": { "$numberDouble": "791.13" }, + "_id": { "$oid": "66189c868bcc89e3792dd5cb" } + }, + { + "x": { "$date": { "$numberLong": "1739333658156" } }, + "y": { "$numberDouble": "793.83" }, + "_id": { "$oid": "66189c868bcc89e3792dd5cc" } + }, + { + "x": { "$date": { "$numberLong": "1739427723442" } }, + "y": { "$numberDouble": "796.52" }, + "_id": { "$oid": "66189c868bcc89e3792dd5cd" } + }, + { + "x": { "$date": { "$numberLong": "1739521788728" } }, + "y": { "$numberDouble": "799.21" }, + "_id": { "$oid": "66189c868bcc89e3792dd5ce" } + }, + { + "x": { "$date": { "$numberLong": "1739615854013" } }, + "y": { "$numberDouble": "801.9" }, + "_id": { "$oid": "66189c868bcc89e3792dd5cf" } + }, + { + "x": { "$date": { "$numberLong": "1739709919299" } }, + "y": { "$numberDouble": "804.59" }, + "_id": { "$oid": "66189c868bcc89e3792dd5d0" } + }, + { + "x": { "$date": { "$numberLong": "1739803984584" } }, + "y": { "$numberDouble": "807.28" }, + "_id": { "$oid": "66189c868bcc89e3792dd5d1" } + }, + { + "x": { "$date": { "$numberLong": "1739898049870" } }, + "y": { "$numberDouble": "809.97" }, + "_id": { "$oid": "66189c868bcc89e3792dd5d2" } + }, + { + "x": { "$date": { "$numberLong": "1739992115155" } }, + "y": { "$numberDouble": "812.66" }, + "_id": { "$oid": "66189c868bcc89e3792dd5d3" } + }, + { + "x": { "$date": { "$numberLong": "1740086180441" } }, + "y": { "$numberDouble": "815.35" }, + "_id": { "$oid": "66189c868bcc89e3792dd5d4" } + }, + { + "x": { "$date": { "$numberLong": "1740180245727" } }, + "y": { "$numberDouble": "818.04" }, + "_id": { "$oid": "66189c868bcc89e3792dd5d5" } + }, + { + "x": { "$date": { "$numberLong": "1740274311012" } }, + "y": { "$numberDouble": "820.73" }, + "_id": { "$oid": "66189c868bcc89e3792dd5d6" } + }, + { + "x": { "$date": { "$numberLong": "1740368376298" } }, + "y": { "$numberDouble": "823.43" }, + "_id": { "$oid": "66189c868bcc89e3792dd5d7" } + }, + { + "x": { "$date": { "$numberLong": "1740462441583" } }, + "y": { "$numberDouble": "826.12" }, + "_id": { "$oid": "66189c868bcc89e3792dd5d8" } + }, + { + "x": { "$date": { "$numberLong": "1740556506869" } }, + "y": { "$numberDouble": "828.81" }, + "_id": { "$oid": "66189c868bcc89e3792dd5d9" } + }, + { + "x": { "$date": { "$numberLong": "1740650572154" } }, + "y": { "$numberDouble": "831.5" }, + "_id": { "$oid": "66189c868bcc89e3792dd5da" } + }, + { + "x": { "$date": { "$numberLong": "1740744637440" } }, + "y": { "$numberDouble": "834.19" }, + "_id": { "$oid": "66189c868bcc89e3792dd5db" } + }, + { + "x": { "$date": { "$numberLong": "1740838702726" } }, + "y": { "$numberDouble": "836.88" }, + "_id": { "$oid": "66189c868bcc89e3792dd5dc" } + }, + { + "x": { "$date": { "$numberLong": "1740932768011" } }, + "y": { "$numberDouble": "839.57" }, + "_id": { "$oid": "66189c868bcc89e3792dd5dd" } + }, + { + "x": { "$date": { "$numberLong": "1741026833297" } }, + "y": { "$numberDouble": "842.26" }, + "_id": { "$oid": "66189c868bcc89e3792dd5de" } + }, + { + "x": { "$date": { "$numberLong": "1741120898582" } }, + "y": { "$numberDouble": "844.95" }, + "_id": { "$oid": "66189c868bcc89e3792dd5df" } + }, + { + "x": { "$date": { "$numberLong": "1741214963868" } }, + "y": { "$numberDouble": "847.64" }, + "_id": { "$oid": "66189c868bcc89e3792dd5e0" } + }, + { + "x": { "$date": { "$numberLong": "1741309029153" } }, + "y": { "$numberDouble": "850.34" }, + "_id": { "$oid": "66189c868bcc89e3792dd5e1" } + }, + { + "x": { "$date": { "$numberLong": "1741403094439" } }, + "y": { "$numberDouble": "853.03" }, + "_id": { "$oid": "66189c868bcc89e3792dd5e2" } + }, + { + "x": { "$date": { "$numberLong": "1741497159724" } }, + "y": { "$numberDouble": "855.72" }, + "_id": { "$oid": "66189c868bcc89e3792dd5e3" } + }, + { + "x": { "$date": { "$numberLong": "1741591225010" } }, + "y": { "$numberDouble": "858.41" }, + "_id": { "$oid": "66189c868bcc89e3792dd5e4" } + }, + { + "x": { "$date": { "$numberLong": "1741685290296" } }, + "y": { "$numberDouble": "861.1" }, + "_id": { "$oid": "66189c868bcc89e3792dd5e5" } + }, + { + "x": { "$date": { "$numberLong": "1741779355581" } }, + "y": { "$numberDouble": "863.79" }, + "_id": { "$oid": "66189c868bcc89e3792dd5e6" } + }, + { + "x": { "$date": { "$numberLong": "1741873420867" } }, + "y": { "$numberDouble": "866.48" }, + "_id": { "$oid": "66189c868bcc89e3792dd5e7" } + }, + { + "x": { "$date": { "$numberLong": "1741967486152" } }, + "y": { "$numberDouble": "869.17" }, + "_id": { "$oid": "66189c868bcc89e3792dd5e8" } + }, + { + "x": { "$date": { "$numberLong": "1742061551438" } }, + "y": { "$numberDouble": "871.86" }, + "_id": { "$oid": "66189c868bcc89e3792dd5e9" } + }, + { + "x": { "$date": { "$numberLong": "1742155616723" } }, + "y": { "$numberDouble": "874.55" }, + "_id": { "$oid": "66189c868bcc89e3792dd5ea" } + }, + { + "x": { "$date": { "$numberLong": "1742249682009" } }, + "y": { "$numberDouble": "877.24" }, + "_id": { "$oid": "66189c868bcc89e3792dd5eb" } + }, + { + "x": { "$date": { "$numberLong": "1742343747295" } }, + "y": { "$numberDouble": "879.94" }, + "_id": { "$oid": "66189c868bcc89e3792dd5ec" } + }, + { + "x": { "$date": { "$numberLong": "1742437812580" } }, + "y": { "$numberDouble": "882.63" }, + "_id": { "$oid": "66189c868bcc89e3792dd5ed" } + }, + { + "x": { "$date": { "$numberLong": "1742531877866" } }, + "y": { "$numberDouble": "885.32" }, + "_id": { "$oid": "66189c868bcc89e3792dd5ee" } + }, + { + "x": { "$date": { "$numberLong": "1742625943151" } }, + "y": { "$numberDouble": "888.01" }, + "_id": { "$oid": "66189c868bcc89e3792dd5ef" } + }, + { + "x": { "$date": { "$numberLong": "1742720008437" } }, + "y": { "$numberDouble": "890.7" }, + "_id": { "$oid": "66189c868bcc89e3792dd5f0" } + }, + { + "x": { "$date": { "$numberLong": "1742814073722" } }, + "y": { "$numberDouble": "893.39" }, + "_id": { "$oid": "66189c868bcc89e3792dd5f1" } + }, + { + "x": { "$date": { "$numberLong": "1742908139008" } }, + "y": { "$numberDouble": "896.08" }, + "_id": { "$oid": "66189c868bcc89e3792dd5f2" } + }, + { + "x": { "$date": { "$numberLong": "1743002204294" } }, + "y": { "$numberDouble": "898.77" }, + "_id": { "$oid": "66189c868bcc89e3792dd5f3" } + }, + { + "x": { "$date": { "$numberLong": "1743096269579" } }, + "y": { "$numberDouble": "901.46" }, + "_id": { "$oid": "66189c868bcc89e3792dd5f4" } + }, + { + "x": { "$date": { "$numberLong": "1743190334865" } }, + "y": { "$numberDouble": "904.15" }, + "_id": { "$oid": "66189c868bcc89e3792dd5f5" } + }, + { + "x": { "$date": { "$numberLong": "1743284400150" } }, + "y": { "$numberDouble": "906.84" }, + "_id": { "$oid": "66189c868bcc89e3792dd5f6" } + }, + { + "x": { "$date": { "$numberLong": "1743378465436" } }, + "y": { "$numberDouble": "909.54" }, + "_id": { "$oid": "66189c868bcc89e3792dd5f7" } + }, + { + "x": { "$date": { "$numberLong": "1743472530721" } }, + "y": { "$numberDouble": "912.23" }, + "_id": { "$oid": "66189c868bcc89e3792dd5f8" } + }, + { + "x": { "$date": { "$numberLong": "1743566596007" } }, + "y": { "$numberDouble": "914.92" }, + "_id": { "$oid": "66189c868bcc89e3792dd5f9" } + }, + { + "x": { "$date": { "$numberLong": "1743660661292" } }, + "y": { "$numberDouble": "917.61" }, + "_id": { "$oid": "66189c868bcc89e3792dd5fa" } + }, + { + "x": { "$date": { "$numberLong": "1743754726578" } }, + "y": { "$numberDouble": "920.3" }, + "_id": { "$oid": "66189c868bcc89e3792dd5fb" } + }, + { + "x": { "$date": { "$numberLong": "1743848791864" } }, + "y": { "$numberDouble": "922.99" }, + "_id": { "$oid": "66189c868bcc89e3792dd5fc" } + }, + { + "x": { "$date": { "$numberLong": "1743942857149" } }, + "y": { "$numberDouble": "925.68" }, + "_id": { "$oid": "66189c868bcc89e3792dd5fd" } + }, + { + "x": { "$date": { "$numberLong": "1744036922435" } }, + "y": { "$numberDouble": "928.37" }, + "_id": { "$oid": "66189c868bcc89e3792dd5fe" } + }, + { + "x": { "$date": { "$numberLong": "1744130987720" } }, + "y": { "$numberDouble": "931.06" }, + "_id": { "$oid": "66189c868bcc89e3792dd5ff" } + }, + { + "x": { "$date": { "$numberLong": "1744225053006" } }, + "y": { "$numberDouble": "933.75" }, + "_id": { "$oid": "66189c868bcc89e3792dd600" } + }, + { + "x": { "$date": { "$numberLong": "1744319118291" } }, + "y": { "$numberDouble": "936.45" }, + "_id": { "$oid": "66189c868bcc89e3792dd601" } + }, + { + "x": { "$date": { "$numberLong": "1744413183577" } }, + "y": { "$numberDouble": "939.14" }, + "_id": { "$oid": "66189c868bcc89e3792dd602" } + }, + { + "x": { "$date": { "$numberLong": "1744507248863" } }, + "y": { "$numberDouble": "941.83" }, + "_id": { "$oid": "66189c868bcc89e3792dd603" } + }, + { + "x": { "$date": { "$numberLong": "1744601314148" } }, + "y": { "$numberDouble": "944.52" }, + "_id": { "$oid": "66189c868bcc89e3792dd604" } + }, + { + "x": { "$date": { "$numberLong": "1744695379434" } }, + "y": { "$numberDouble": "947.21" }, + "_id": { "$oid": "66189c868bcc89e3792dd605" } + }, + { + "x": { "$date": { "$numberLong": "1744789444719" } }, + "y": { "$numberDouble": "949.9" }, + "_id": { "$oid": "66189c868bcc89e3792dd606" } + }, + { + "x": { "$date": { "$numberLong": "1744883510005" } }, + "y": { "$numberDouble": "952.59" }, + "_id": { "$oid": "66189c868bcc89e3792dd607" } + }, + { + "x": { "$date": { "$numberLong": "1744977575290" } }, + "y": { "$numberDouble": "955.28" }, + "_id": { "$oid": "66189c868bcc89e3792dd608" } + }, + { + "x": { "$date": { "$numberLong": "1745071640576" } }, + "y": { "$numberDouble": "957.97" }, + "_id": { "$oid": "66189c868bcc89e3792dd609" } + }, + { + "x": { "$date": { "$numberLong": "1745165705862" } }, + "y": { "$numberDouble": "960.66" }, + "_id": { "$oid": "66189c868bcc89e3792dd60a" } + }, + { + "x": { "$date": { "$numberLong": "1745259771147" } }, + "y": { "$numberDouble": "963.35" }, + "_id": { "$oid": "66189c868bcc89e3792dd60b" } + }, + { + "x": { "$date": { "$numberLong": "1745353836433" } }, + "y": { "$numberDouble": "966.05" }, + "_id": { "$oid": "66189c868bcc89e3792dd60c" } + }, + { + "x": { "$date": { "$numberLong": "1745447901718" } }, + "y": { "$numberDouble": "968.74" }, + "_id": { "$oid": "66189c868bcc89e3792dd60d" } + }, + { + "x": { "$date": { "$numberLong": "1745541967004" } }, + "y": { "$numberDouble": "971.43" }, + "_id": { "$oid": "66189c868bcc89e3792dd60e" } + }, + { + "x": { "$date": { "$numberLong": "1745636032289" } }, + "y": { "$numberDouble": "974.12" }, + "_id": { "$oid": "66189c868bcc89e3792dd60f" } + }, + { + "x": { "$date": { "$numberLong": "1745730097575" } }, + "y": { "$numberDouble": "976.81" }, + "_id": { "$oid": "66189c868bcc89e3792dd610" } + }, + { + "x": { "$date": { "$numberLong": "1745824162861" } }, + "y": { "$numberDouble": "979.5" }, + "_id": { "$oid": "66189c868bcc89e3792dd611" } + } + ], + "_id": { "$oid": "66189c868bcc89e3792dd4a4" } + }, + { + "id": "7d", + "color": "#2e7c67", + "data": [ + { + "x": { "$date": { "$numberLong": "1712299607975" } }, + "y": { "$numberInt": "0" }, + "_id": { "$oid": "66189c868bcc89e3792dd613" } + }, + { + "x": { "$date": { "$numberLong": "1712400633789" } }, + "y": { "$numberDouble": "10.85" }, + "_id": { "$oid": "66189c868bcc89e3792dd614" } + }, + { + "x": { "$date": { "$numberLong": "1712501659603" } }, + "y": { "$numberDouble": "21.7" }, + "_id": { "$oid": "66189c868bcc89e3792dd615" } + }, + { + "x": { "$date": { "$numberLong": "1712602685418" } }, + "y": { "$numberDouble": "32.55" }, + "_id": { "$oid": "66189c868bcc89e3792dd616" } + }, + { + "x": { "$date": { "$numberLong": "1712703711232" } }, + "y": { "$numberDouble": "43.4" }, + "_id": { "$oid": "66189c868bcc89e3792dd617" } + }, + { + "x": { "$date": { "$numberLong": "1712804737046" } }, + "y": { "$numberDouble": "54.25" }, + "_id": { "$oid": "66189c868bcc89e3792dd618" } + }, + { + "x": { "$date": { "$numberLong": "1712905762861" } }, + "y": { "$numberDouble": "65.1" }, + "_id": { "$oid": "66189c868bcc89e3792dd619" } + } + ], + "_id": { "$oid": "66189c868bcc89e3792dd612" } + }, + { + "id": "24hr", + "color": "#2e7c67", + "data": [ + { + "x": { "$date": { "$numberLong": "1712819362861" } }, + "y": { "$numberInt": "0" }, + "_id": { "$oid": "66189c868bcc89e3792dd61b" } + }, + { + "x": { "$date": { "$numberLong": "1712823119382" } }, + "y": { "$numberDouble": "1.36" }, + "_id": { "$oid": "66189c868bcc89e3792dd61c" } + }, + { + "x": { "$date": { "$numberLong": "1712826875904" } }, + "y": { "$numberDouble": "2.71" }, + "_id": { "$oid": "66189c868bcc89e3792dd61d" } + }, + { + "x": { "$date": { "$numberLong": "1712830632426" } }, + "y": { "$numberDouble": "4.07" }, + "_id": { "$oid": "66189c868bcc89e3792dd61e" } + }, + { + "x": { "$date": { "$numberLong": "1712834388947" } }, + "y": { "$numberDouble": "5.43" }, + "_id": { "$oid": "66189c868bcc89e3792dd61f" } + }, + { + "x": { "$date": { "$numberLong": "1712838145469" } }, + "y": { "$numberDouble": "6.78" }, + "_id": { "$oid": "66189c868bcc89e3792dd620" } + }, + { + "x": { "$date": { "$numberLong": "1712841901991" } }, + "y": { "$numberDouble": "8.14" }, + "_id": { "$oid": "66189c868bcc89e3792dd621" } + }, + { + "x": { "$date": { "$numberLong": "1712845658513" } }, + "y": { "$numberDouble": "9.5" }, + "_id": { "$oid": "66189c868bcc89e3792dd622" } + }, + { + "x": { "$date": { "$numberLong": "1712849415034" } }, + "y": { "$numberDouble": "10.85" }, + "_id": { "$oid": "66189c868bcc89e3792dd623" } + }, + { + "x": { "$date": { "$numberLong": "1712853171556" } }, + "y": { "$numberDouble": "12.21" }, + "_id": { "$oid": "66189c868bcc89e3792dd624" } + }, + { + "x": { "$date": { "$numberLong": "1712856928078" } }, + "y": { "$numberDouble": "13.57" }, + "_id": { "$oid": "66189c868bcc89e3792dd625" } + }, + { + "x": { "$date": { "$numberLong": "1712860684600" } }, + "y": { "$numberDouble": "14.92" }, + "_id": { "$oid": "66189c868bcc89e3792dd626" } + }, + { + "x": { "$date": { "$numberLong": "1712864441121" } }, + "y": { "$numberDouble": "16.28" }, + "_id": { "$oid": "66189c868bcc89e3792dd627" } + }, + { + "x": { "$date": { "$numberLong": "1712868197643" } }, + "y": { "$numberDouble": "17.63" }, + "_id": { "$oid": "66189c868bcc89e3792dd628" } + }, + { + "x": { "$date": { "$numberLong": "1712871954165" } }, + "y": { "$numberDouble": "18.99" }, + "_id": { "$oid": "66189c868bcc89e3792dd629" } + }, + { + "x": { "$date": { "$numberLong": "1712875710687" } }, + "y": { "$numberDouble": "20.35" }, + "_id": { "$oid": "66189c868bcc89e3792dd62a" } + }, + { + "x": { "$date": { "$numberLong": "1712879467208" } }, + "y": { "$numberDouble": "21.7" }, + "_id": { "$oid": "66189c868bcc89e3792dd62b" } + }, + { + "x": { "$date": { "$numberLong": "1712883223730" } }, + "y": { "$numberDouble": "23.06" }, + "_id": { "$oid": "66189c868bcc89e3792dd62c" } + }, + { + "x": { "$date": { "$numberLong": "1712886980252" } }, + "y": { "$numberDouble": "24.42" }, + "_id": { "$oid": "66189c868bcc89e3792dd62d" } + }, + { + "x": { "$date": { "$numberLong": "1712890736774" } }, + "y": { "$numberDouble": "25.77" }, + "_id": { "$oid": "66189c868bcc89e3792dd62e" } + }, + { + "x": { "$date": { "$numberLong": "1712894493295" } }, + "y": { "$numberDouble": "27.13" }, + "_id": { "$oid": "66189c868bcc89e3792dd62f" } + }, + { + "x": { "$date": { "$numberLong": "1712898249817" } }, + "y": { "$numberDouble": "28.49" }, + "_id": { "$oid": "66189c868bcc89e3792dd630" } + }, + { + "x": { "$date": { "$numberLong": "1712902006339" } }, + "y": { "$numberDouble": "29.84" }, + "_id": { "$oid": "66189c868bcc89e3792dd631" } + }, + { + "x": { "$date": { "$numberLong": "1712905762861" } }, + "y": { "$numberDouble": "31.2" }, + "_id": { "$oid": "66189c868bcc89e3792dd632" } + } + ], + "_id": { "$oid": "66189c868bcc89e3792dd61a" } + } + ], + "createdAt": { "$date": { "$numberLong": "1711584399098" } }, + "updatedAt": { "$date": { "$numberLong": "1711634652291" } }, + "nivoChartData": { + "30d": { + "id": "30d", + "name": "Last 30D", + "color": "#2e7c67", + "data": [ + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711584398915" } }, + "y": { "$numberDouble": "0.1" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711584398915" } }, + "y": { "$numberDouble": "0.2" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711584398915" } }, + "y": { "$numberDouble": "0.3" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711584398915" } }, + "y": { "$numberDouble": "0.4" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711584398915" } }, + "y": { "$numberDouble": "0.5" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711584398915" } }, + "y": { "$numberDouble": "0.6" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711584398915" } }, + "y": { "$numberDouble": "0.7" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711584398915" } }, + "y": { "$numberDouble": "0.8" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711584486360" } }, + "y": { "$numberDouble": "1.25" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711584505806" } }, + "y": { "$numberDouble": "1.32" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711584505806" } }, + "y": { "$numberDouble": "1.39" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711584505806" } }, + "y": { "$numberDouble": "1.46" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711584505806" } }, + "y": { "$numberDouble": "1.53" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711587407011" } }, + "y": { "$numberDouble": "17.41" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711587407011" } }, + "y": { "$numberDouble": "33.29" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711587407011" } }, + "y": { "$numberDouble": "49.17" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711587418793" } }, + "y": { "$numberDouble": "49.34" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711587432729" } }, + "y": { "$numberDouble": "50.05" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711587432729" } }, + "y": { "$numberDouble": "50.76" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711612523074" } }, + "y": { "$numberDouble": "50.82" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711613494519" } }, + "y": { "$numberDouble": "51.15" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711613494519" } }, + "y": { "$numberDouble": "51.48" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711613494519" } }, + "y": { "$numberDouble": "51.81" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1712038434890" } }, + "y": { "$numberDouble": "51.91" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1712299607975" } }, + "y": { "$numberDouble": "52.1" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1712299607975" } }, + "y": { "$numberDouble": "52.29" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1712299607975" } }, + "y": { "$numberDouble": "52.48" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1712699253163" } }, + "y": { "$numberDouble": "52.73" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1712819362861" } }, + "y": { "$numberDouble": "54.19" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1712819362861" } }, + "y": { "$numberDouble": "55.65" } + } + ], + "_id": { "$oid": "66189c858bcc89e3792dd251" } + }, + "90d": { + "id": "90d", + "name": "Last 90D", + "color": "#2e7c67", + "data": [ + { + "label": "Label", + "id": "2024-03-28T00:06:38Z", + "x": { "$date": { "$numberLong": "1711584398915" } }, + "y": { "$numberInt": "0" } + }, + { + "label": "Label", + "id": "2024-03-29T08:49:09Z", + "x": { "$date": { "$numberLong": "1711702149071" } }, + "y": { "$numberDouble": "3.2" } + }, + { + "label": "Label", + "id": "2024-03-30T17:31:39Z", + "x": { "$date": { "$numberLong": "1711819899228" } }, + "y": { "$numberDouble": "6.4" } + }, + { + "label": "Label", + "id": "2024-04-01T02:14:09Z", + "x": { "$date": { "$numberLong": "1711937649385" } }, + "y": { "$numberDouble": "9.6" } + }, + { + "label": "Label", + "id": "2024-04-02T10:56:39Z", + "x": { "$date": { "$numberLong": "1712055399541" } }, + "y": { "$numberDouble": "12.8" } + }, + { + "label": "Label", + "id": "2024-04-03T19:39:09Z", + "x": { "$date": { "$numberLong": "1712173149698" } }, + "y": { "$numberInt": "16" } + }, + { + "label": "Label", + "id": "2024-04-05T04:21:39Z", + "x": { "$date": { "$numberLong": "1712290899855" } }, + "y": { "$numberDouble": "19.2" } + }, + { + "label": "Label", + "id": "2024-04-06T13:04:10Z", + "x": { "$date": { "$numberLong": "1712408650011" } }, + "y": { "$numberDouble": "22.4" } + }, + { + "label": "Label", + "id": "2024-04-07T21:46:40Z", + "x": { "$date": { "$numberLong": "1712526400168" } }, + "y": { "$numberDouble": "25.6" } + }, + { + "label": "Label", + "id": "2024-04-09T06:29:10Z", + "x": { "$date": { "$numberLong": "1712644150325" } }, + "y": { "$numberDouble": "28.8" } + }, + { + "label": "Label", + "id": "2024-04-10T15:11:40Z", + "x": { "$date": { "$numberLong": "1712761900481" } }, + "y": { "$numberInt": "32" } + }, + { + "label": "Label", + "id": "2024-04-11T23:54:10Z", + "x": { "$date": { "$numberLong": "1712879650638" } }, + "y": { "$numberDouble": "35.2" } + }, + { + "label": "Label", + "id": "2024-04-13T08:36:40Z", + "x": { "$date": { "$numberLong": "1712997400795" } }, + "y": { "$numberDouble": "38.4" } + }, + { + "label": "Label", + "id": "2024-04-14T17:19:10Z", + "x": { "$date": { "$numberLong": "1713115150952" } }, + "y": { "$numberDouble": "41.6" } + }, + { + "label": "Label", + "id": "2024-04-16T02:01:41Z", + "x": { "$date": { "$numberLong": "1713232901108" } }, + "y": { "$numberDouble": "44.8" } + }, + { + "label": "Label", + "id": "2024-04-17T10:44:11Z", + "x": { "$date": { "$numberLong": "1713350651265" } }, + "y": { "$numberInt": "48" } + }, + { + "label": "Label", + "id": "2024-04-18T19:26:41Z", + "x": { "$date": { "$numberLong": "1713468401422" } }, + "y": { "$numberDouble": "51.2" } + }, + { + "label": "Label", + "id": "2024-04-20T04:09:11Z", + "x": { "$date": { "$numberLong": "1713586151578" } }, + "y": { "$numberDouble": "54.4" } + }, + { + "label": "Label", + "id": "2024-04-21T12:51:41Z", + "x": { "$date": { "$numberLong": "1713703901735" } }, + "y": { "$numberDouble": "57.6" } + }, + { + "label": "Label", + "id": "2024-04-22T21:34:11Z", + "x": { "$date": { "$numberLong": "1713821651892" } }, + "y": { "$numberDouble": "60.8" } + }, + { + "label": "Label", + "id": "2024-04-24T06:16:42Z", + "x": { "$date": { "$numberLong": "1713939402048" } }, + "y": { "$numberInt": "64" } + }, + { + "label": "Label", + "id": "2024-04-25T14:59:12Z", + "x": { "$date": { "$numberLong": "1714057152205" } }, + "y": { "$numberDouble": "67.2" } + }, + { + "label": "Label", + "id": "2024-04-26T23:41:42Z", + "x": { "$date": { "$numberLong": "1714174902362" } }, + "y": { "$numberDouble": "70.4" } + }, + { + "label": "Label", + "id": "2024-04-28T08:24:12Z", + "x": { "$date": { "$numberLong": "1714292652519" } }, + "y": { "$numberDouble": "73.6" } + }, + { + "label": "Label", + "id": "2024-04-29T17:06:42Z", + "x": { "$date": { "$numberLong": "1714410402675" } }, + "y": { "$numberDouble": "76.8" } + }, + { + "label": "Label", + "id": "2024-05-01T01:49:12Z", + "x": { "$date": { "$numberLong": "1714528152832" } }, + "y": { "$numberInt": "80" } + }, + { + "label": "Label", + "id": "2024-05-02T10:31:42Z", + "x": { "$date": { "$numberLong": "1714645902989" } }, + "y": { "$numberDouble": "83.2" } + }, + { + "label": "Label", + "id": "2024-05-03T19:14:13Z", + "x": { "$date": { "$numberLong": "1714763653145" } }, + "y": { "$numberDouble": "86.4" } + }, + { + "label": "Label", + "id": "2024-05-05T03:56:43Z", + "x": { "$date": { "$numberLong": "1714881403302" } }, + "y": { "$numberDouble": "89.6" } + }, + { + "label": "Label", + "id": "2024-05-06T12:39:13Z", + "x": { "$date": { "$numberLong": "1714999153459" } }, + "y": { "$numberDouble": "92.8" } + }, + { + "label": "Label", + "id": "2024-05-07T21:21:43Z", + "x": { "$date": { "$numberLong": "1715116903615" } }, + "y": { "$numberInt": "96" } + }, + { + "label": "Label", + "id": "2024-05-09T06:04:13Z", + "x": { "$date": { "$numberLong": "1715234653772" } }, + "y": { "$numberDouble": "99.2" } + }, + { + "label": "Label", + "id": "2024-05-10T14:46:43Z", + "x": { "$date": { "$numberLong": "1715352403929" } }, + "y": { "$numberDouble": "102.4" } + }, + { + "label": "Label", + "id": "2024-05-11T23:29:14Z", + "x": { "$date": { "$numberLong": "1715470154085" } }, + "y": { "$numberDouble": "105.6" } + }, + { + "label": "Label", + "id": "2024-05-13T08:11:44Z", + "x": { "$date": { "$numberLong": "1715587904242" } }, + "y": { "$numberDouble": "108.8" } + }, + { + "label": "Label", + "id": "2024-05-14T16:54:14Z", + "x": { "$date": { "$numberLong": "1715705654399" } }, + "y": { "$numberInt": "112" } + }, + { + "label": "Label", + "id": "2024-05-16T01:36:44Z", + "x": { "$date": { "$numberLong": "1715823404556" } }, + "y": { "$numberDouble": "115.2" } + }, + { + "label": "Label", + "id": "2024-05-17T10:19:14Z", + "x": { "$date": { "$numberLong": "1715941154712" } }, + "y": { "$numberDouble": "118.4" } + }, + { + "label": "Label", + "id": "2024-05-18T19:01:44Z", + "x": { "$date": { "$numberLong": "1716058904869" } }, + "y": { "$numberDouble": "121.6" } + }, + { + "label": "Label", + "id": "2024-05-20T03:44:15Z", + "x": { "$date": { "$numberLong": "1716176655026" } }, + "y": { "$numberDouble": "124.8" } + }, + { + "label": "Label", + "id": "2024-05-21T12:26:45Z", + "x": { "$date": { "$numberLong": "1716294405182" } }, + "y": { "$numberInt": "128" } + }, + { + "label": "Label", + "id": "2024-05-22T21:09:15Z", + "x": { "$date": { "$numberLong": "1716412155339" } }, + "y": { "$numberDouble": "131.2" } + }, + { + "label": "Label", + "id": "2024-05-24T05:51:45Z", + "x": { "$date": { "$numberLong": "1716529905496" } }, + "y": { "$numberDouble": "134.4" } + }, + { + "label": "Label", + "id": "2024-05-25T14:34:15Z", + "x": { "$date": { "$numberLong": "1716647655652" } }, + "y": { "$numberDouble": "137.6" } + }, + { + "label": "Label", + "id": "2024-05-26T23:16:45Z", + "x": { "$date": { "$numberLong": "1716765405809" } }, + "y": { "$numberDouble": "140.8" } + }, + { + "label": "Label", + "id": "2024-05-28T07:59:15Z", + "x": { "$date": { "$numberLong": "1716883155966" } }, + "y": { "$numberInt": "144" } + }, + { + "label": "Label", + "id": "2024-05-29T16:41:46Z", + "x": { "$date": { "$numberLong": "1717000906123" } }, + "y": { "$numberDouble": "147.2" } + }, + { + "label": "Label", + "id": "2024-05-31T01:24:16Z", + "x": { "$date": { "$numberLong": "1717118656279" } }, + "y": { "$numberDouble": "150.4" } + }, + { + "label": "Label", + "id": "2024-06-01T10:06:46Z", + "x": { "$date": { "$numberLong": "1717236406436" } }, + "y": { "$numberDouble": "153.6" } + }, + { + "label": "Label", + "id": "2024-06-02T18:49:16Z", + "x": { "$date": { "$numberLong": "1717354156593" } }, + "y": { "$numberDouble": "156.8" } + }, + { + "label": "Label", + "id": "2024-06-04T03:31:46Z", + "x": { "$date": { "$numberLong": "1717471906749" } }, + "y": { "$numberInt": "160" } + }, + { + "label": "Label", + "id": "2024-06-05T12:14:16Z", + "x": { "$date": { "$numberLong": "1717589656906" } }, + "y": { "$numberDouble": "163.2" } + }, + { + "label": "Label", + "id": "2024-06-06T20:56:47Z", + "x": { "$date": { "$numberLong": "1717707407063" } }, + "y": { "$numberDouble": "166.4" } + }, + { + "label": "Label", + "id": "2024-06-08T05:39:17Z", + "x": { "$date": { "$numberLong": "1717825157219" } }, + "y": { "$numberDouble": "169.6" } + }, + { + "label": "Label", + "id": "2024-06-09T14:21:47Z", + "x": { "$date": { "$numberLong": "1717942907376" } }, + "y": { "$numberDouble": "172.8" } + }, + { + "label": "Label", + "id": "2024-06-10T23:04:17Z", + "x": { "$date": { "$numberLong": "1718060657533" } }, + "y": { "$numberInt": "176" } + }, + { + "label": "Label", + "id": "2024-06-12T07:46:47Z", + "x": { "$date": { "$numberLong": "1718178407690" } }, + "y": { "$numberDouble": "179.2" } + }, + { + "label": "Label", + "id": "2024-06-13T16:29:17Z", + "x": { "$date": { "$numberLong": "1718296157846" } }, + "y": { "$numberDouble": "182.4" } + }, + { + "label": "Label", + "id": "2024-06-15T01:11:48Z", + "x": { "$date": { "$numberLong": "1718413908003" } }, + "y": { "$numberDouble": "185.6" } + }, + { + "label": "Label", + "id": "2024-06-16T09:54:18Z", + "x": { "$date": { "$numberLong": "1718531658160" } }, + "y": { "$numberDouble": "188.8" } + }, + { + "label": "Label", + "id": "2024-06-17T18:36:48Z", + "x": { "$date": { "$numberLong": "1718649408316" } }, + "y": { "$numberInt": "192" } + }, + { + "label": "Label", + "id": "2024-06-19T03:19:18Z", + "x": { "$date": { "$numberLong": "1718767158473" } }, + "y": { "$numberDouble": "195.2" } + }, + { + "label": "Label", + "id": "2024-06-20T12:01:48Z", + "x": { "$date": { "$numberLong": "1718884908630" } }, + "y": { "$numberDouble": "198.4" } + }, + { + "label": "Label", + "id": "2024-06-21T20:44:18Z", + "x": { "$date": { "$numberLong": "1719002658786" } }, + "y": { "$numberDouble": "201.6" } + }, + { + "label": "Label", + "id": "2024-06-23T05:26:48Z", + "x": { "$date": { "$numberLong": "1719120408943" } }, + "y": { "$numberDouble": "204.8" } + }, + { + "label": "Label", + "id": "2024-06-24T14:09:19Z", + "x": { "$date": { "$numberLong": "1719238159100" } }, + "y": { "$numberInt": "208" } + }, + { + "label": "Label", + "id": "2024-06-25T22:51:49Z", + "x": { "$date": { "$numberLong": "1719355909256" } }, + "y": { "$numberDouble": "211.2" } + }, + { + "label": "Label", + "id": "2024-06-27T07:34:19Z", + "x": { "$date": { "$numberLong": "1719473659413" } }, + "y": { "$numberDouble": "214.4" } + }, + { + "label": "Label", + "id": "2024-06-28T16:16:49Z", + "x": { "$date": { "$numberLong": "1719591409570" } }, + "y": { "$numberDouble": "217.6" } + }, + { + "label": "Label", + "id": "2024-06-30T00:59:19Z", + "x": { "$date": { "$numberLong": "1719709159727" } }, + "y": { "$numberDouble": "220.8" } + }, + { + "label": "Label", + "id": "2024-07-01T09:41:49Z", + "x": { "$date": { "$numberLong": "1719826909883" } }, + "y": { "$numberInt": "224" } + }, + { + "label": "Label", + "id": "2024-07-02T18:24:20Z", + "x": { "$date": { "$numberLong": "1719944660040" } }, + "y": { "$numberDouble": "227.2" } + }, + { + "label": "Label", + "id": "2024-07-04T03:06:50Z", + "x": { "$date": { "$numberLong": "1720062410197" } }, + "y": { "$numberDouble": "230.4" } + }, + { + "label": "Label", + "id": "2024-07-05T11:49:20Z", + "x": { "$date": { "$numberLong": "1720180160353" } }, + "y": { "$numberDouble": "233.6" } + }, + { + "label": "Label", + "id": "2024-07-06T20:31:50Z", + "x": { "$date": { "$numberLong": "1720297910510" } }, + "y": { "$numberDouble": "236.8" } + }, + { + "label": "Label", + "id": "2024-07-08T05:14:20Z", + "x": { "$date": { "$numberLong": "1720415660667" } }, + "y": { "$numberInt": "240" } + }, + { + "label": "Label", + "id": "2024-07-09T13:56:50Z", + "x": { "$date": { "$numberLong": "1720533410823" } }, + "y": { "$numberDouble": "243.2" } + }, + { + "label": "Label", + "id": "2024-07-10T22:39:20Z", + "x": { "$date": { "$numberLong": "1720651160980" } }, + "y": { "$numberDouble": "246.4" } + }, + { + "label": "Label", + "id": "2024-07-12T07:21:51Z", + "x": { "$date": { "$numberLong": "1720768911137" } }, + "y": { "$numberDouble": "249.6" } + }, + { + "label": "Label", + "id": "2024-07-13T16:04:21Z", + "x": { "$date": { "$numberLong": "1720886661294" } }, + "y": { "$numberDouble": "252.8" } + }, + { + "label": "Label", + "id": "2024-07-15T00:46:51Z", + "x": { "$date": { "$numberLong": "1721004411450" } }, + "y": { "$numberInt": "256" } + }, + { + "label": "Label", + "id": "2024-07-16T09:29:21Z", + "x": { "$date": { "$numberLong": "1721122161607" } }, + "y": { "$numberDouble": "259.2" } + }, + { + "label": "Label", + "id": "2024-07-17T18:11:51Z", + "x": { "$date": { "$numberLong": "1721239911764" } }, + "y": { "$numberDouble": "262.4" } + }, + { + "label": "Label", + "id": "2024-07-19T02:54:21Z", + "x": { "$date": { "$numberLong": "1721357661920" } }, + "y": { "$numberDouble": "265.6" } + }, + { + "label": "Label", + "id": "2024-07-20T11:36:52Z", + "x": { "$date": { "$numberLong": "1721475412077" } }, + "y": { "$numberDouble": "268.8" } + }, + { + "label": "Label", + "id": "2024-07-21T20:19:22Z", + "x": { "$date": { "$numberLong": "1721593162234" } }, + "y": { "$numberInt": "272" } + }, + { + "label": "Label", + "id": "2024-07-23T05:01:52Z", + "x": { "$date": { "$numberLong": "1721710912390" } }, + "y": { "$numberDouble": "275.2" } + }, + { + "label": "Label", + "id": "2024-07-24T13:44:22Z", + "x": { "$date": { "$numberLong": "1721828662547" } }, + "y": { "$numberDouble": "278.4" } + }, + { + "label": "Label", + "id": "2024-07-25T22:26:52Z", + "x": { "$date": { "$numberLong": "1721946412704" } }, + "y": { "$numberDouble": "281.6" } + }, + { + "label": "Label", + "id": "2024-07-27T07:09:22Z", + "x": { "$date": { "$numberLong": "1722064162861" } }, + "y": { "$numberDouble": "284.8" } + } + ], + "_id": { "$oid": "66189c858bcc89e3792dd252" } + }, + "180d": { + "id": "180d", + "name": "Last 180D", + "color": "#2e7c67", + "data": [ + { + "label": "Label", + "id": "2024-03-28T00:06:38Z", + "x": { "$date": { "$numberLong": "1711584398915" } }, + "y": { "$numberInt": "0" } + }, + { + "label": "Label", + "id": "2024-03-29T04:26:26Z", + "x": { "$date": { "$numberLong": "1711686386423" } }, + "y": { "$numberDouble": "2.51" } + }, + { + "label": "Label", + "id": "2024-03-30T08:46:13Z", + "x": { "$date": { "$numberLong": "1711788373931" } }, + "y": { "$numberDouble": "5.02" } + }, + { + "label": "Label", + "id": "2024-03-31T13:06:01Z", + "x": { "$date": { "$numberLong": "1711890361439" } }, + "y": { "$numberDouble": "7.54" } + }, + { + "label": "Label", + "id": "2024-04-01T17:25:48Z", + "x": { "$date": { "$numberLong": "1711992348947" } }, + "y": { "$numberDouble": "10.05" } + }, + { + "label": "Label", + "id": "2024-04-02T21:45:36Z", + "x": { "$date": { "$numberLong": "1712094336455" } }, + "y": { "$numberDouble": "12.56" } + }, + { + "label": "Label", + "id": "2024-04-04T02:05:23Z", + "x": { "$date": { "$numberLong": "1712196323963" } }, + "y": { "$numberDouble": "15.07" } + }, + { + "label": "Label", + "id": "2024-04-05T06:25:11Z", + "x": { "$date": { "$numberLong": "1712298311471" } }, + "y": { "$numberDouble": "17.59" } + }, + { + "label": "Label", + "id": "2024-04-06T10:44:58Z", + "x": { "$date": { "$numberLong": "1712400298979" } }, + "y": { "$numberDouble": "20.1" } + }, + { + "label": "Label", + "id": "2024-04-07T15:04:46Z", + "x": { "$date": { "$numberLong": "1712502286487" } }, + "y": { "$numberDouble": "22.61" } + }, + { + "label": "Label", + "id": "2024-04-08T19:24:33Z", + "x": { "$date": { "$numberLong": "1712604273995" } }, + "y": { "$numberDouble": "25.12" } + }, + { + "label": "Label", + "id": "2024-04-09T23:44:21Z", + "x": { "$date": { "$numberLong": "1712706261503" } }, + "y": { "$numberDouble": "27.64" } + }, + { + "label": "Label", + "id": "2024-04-11T04:04:09Z", + "x": { "$date": { "$numberLong": "1712808249011" } }, + "y": { "$numberDouble": "30.15" } + }, + { + "label": "Label", + "id": "2024-04-12T08:23:56Z", + "x": { "$date": { "$numberLong": "1712910236520" } }, + "y": { "$numberDouble": "32.66" } + }, + { + "label": "Label", + "id": "2024-04-13T12:43:44Z", + "x": { "$date": { "$numberLong": "1713012224028" } }, + "y": { "$numberDouble": "35.17" } + }, + { + "label": "Label", + "id": "2024-04-14T17:03:31Z", + "x": { "$date": { "$numberLong": "1713114211536" } }, + "y": { "$numberDouble": "37.68" } + }, + { + "label": "Label", + "id": "2024-04-15T21:23:19Z", + "x": { "$date": { "$numberLong": "1713216199044" } }, + "y": { "$numberDouble": "40.2" } + }, + { + "label": "Label", + "id": "2024-04-17T01:43:06Z", + "x": { "$date": { "$numberLong": "1713318186552" } }, + "y": { "$numberDouble": "42.71" } + }, + { + "label": "Label", + "id": "2024-04-18T06:02:54Z", + "x": { "$date": { "$numberLong": "1713420174060" } }, + "y": { "$numberDouble": "45.22" } + }, + { + "label": "Label", + "id": "2024-04-19T10:22:41Z", + "x": { "$date": { "$numberLong": "1713522161568" } }, + "y": { "$numberDouble": "47.73" } + }, + { + "label": "Label", + "id": "2024-04-20T14:42:29Z", + "x": { "$date": { "$numberLong": "1713624149076" } }, + "y": { "$numberDouble": "50.25" } + }, + { + "label": "Label", + "id": "2024-04-21T19:02:16Z", + "x": { "$date": { "$numberLong": "1713726136584" } }, + "y": { "$numberDouble": "52.76" } + }, + { + "label": "Label", + "id": "2024-04-22T23:22:04Z", + "x": { "$date": { "$numberLong": "1713828124092" } }, + "y": { "$numberDouble": "55.27" } + }, + { + "label": "Label", + "id": "2024-04-24T03:41:51Z", + "x": { "$date": { "$numberLong": "1713930111600" } }, + "y": { "$numberDouble": "57.78" } + }, + { + "label": "Label", + "id": "2024-04-25T08:01:39Z", + "x": { "$date": { "$numberLong": "1714032099108" } }, + "y": { "$numberDouble": "60.29" } + }, + { + "label": "Label", + "id": "2024-04-26T12:21:26Z", + "x": { "$date": { "$numberLong": "1714134086616" } }, + "y": { "$numberDouble": "62.81" } + }, + { + "label": "Label", + "id": "2024-04-27T16:41:14Z", + "x": { "$date": { "$numberLong": "1714236074125" } }, + "y": { "$numberDouble": "65.32" } + }, + { + "label": "Label", + "id": "2024-04-28T21:01:01Z", + "x": { "$date": { "$numberLong": "1714338061633" } }, + "y": { "$numberDouble": "67.83" } + }, + { + "label": "Label", + "id": "2024-04-30T01:20:49Z", + "x": { "$date": { "$numberLong": "1714440049141" } }, + "y": { "$numberDouble": "70.34" } + }, + { + "label": "Label", + "id": "2024-05-01T05:40:36Z", + "x": { "$date": { "$numberLong": "1714542036649" } }, + "y": { "$numberDouble": "72.86" } + }, + { + "label": "Label", + "id": "2024-05-02T10:00:24Z", + "x": { "$date": { "$numberLong": "1714644024157" } }, + "y": { "$numberDouble": "75.37" } + }, + { + "label": "Label", + "id": "2024-05-03T14:20:11Z", + "x": { "$date": { "$numberLong": "1714746011665" } }, + "y": { "$numberDouble": "77.88" } + }, + { + "label": "Label", + "id": "2024-05-04T18:39:59Z", + "x": { "$date": { "$numberLong": "1714847999173" } }, + "y": { "$numberDouble": "80.39" } + }, + { + "label": "Label", + "id": "2024-05-05T22:59:46Z", + "x": { "$date": { "$numberLong": "1714949986681" } }, + "y": { "$numberDouble": "82.91" } + }, + { + "label": "Label", + "id": "2024-05-07T03:19:34Z", + "x": { "$date": { "$numberLong": "1715051974189" } }, + "y": { "$numberDouble": "85.42" } + }, + { + "label": "Label", + "id": "2024-05-08T07:39:21Z", + "x": { "$date": { "$numberLong": "1715153961697" } }, + "y": { "$numberDouble": "87.93" } + }, + { + "label": "Label", + "id": "2024-05-09T11:59:09Z", + "x": { "$date": { "$numberLong": "1715255949205" } }, + "y": { "$numberDouble": "90.44" } + }, + { + "label": "Label", + "id": "2024-05-10T16:18:56Z", + "x": { "$date": { "$numberLong": "1715357936713" } }, + "y": { "$numberDouble": "92.95" } + }, + { + "label": "Label", + "id": "2024-05-11T20:38:44Z", + "x": { "$date": { "$numberLong": "1715459924221" } }, + "y": { "$numberDouble": "95.47" } + }, + { + "label": "Label", + "id": "2024-05-13T00:58:31Z", + "x": { "$date": { "$numberLong": "1715561911730" } }, + "y": { "$numberDouble": "97.98" } + }, + { + "label": "Label", + "id": "2024-05-14T05:18:19Z", + "x": { "$date": { "$numberLong": "1715663899238" } }, + "y": { "$numberDouble": "100.49" } + }, + { + "label": "Label", + "id": "2024-05-15T09:38:06Z", + "x": { "$date": { "$numberLong": "1715765886746" } }, + "y": { "$numberInt": "103" } + }, + { + "label": "Label", + "id": "2024-05-16T13:57:54Z", + "x": { "$date": { "$numberLong": "1715867874254" } }, + "y": { "$numberDouble": "105.52" } + }, + { + "label": "Label", + "id": "2024-05-17T18:17:41Z", + "x": { "$date": { "$numberLong": "1715969861762" } }, + "y": { "$numberDouble": "108.03" } + }, + { + "label": "Label", + "id": "2024-05-18T22:37:29Z", + "x": { "$date": { "$numberLong": "1716071849270" } }, + "y": { "$numberDouble": "110.54" } + }, + { + "label": "Label", + "id": "2024-05-20T02:57:16Z", + "x": { "$date": { "$numberLong": "1716173836778" } }, + "y": { "$numberDouble": "113.05" } + }, + { + "label": "Label", + "id": "2024-05-21T07:17:04Z", + "x": { "$date": { "$numberLong": "1716275824286" } }, + "y": { "$numberDouble": "115.57" } + }, + { + "label": "Label", + "id": "2024-05-22T11:36:51Z", + "x": { "$date": { "$numberLong": "1716377811794" } }, + "y": { "$numberDouble": "118.08" } + }, + { + "label": "Label", + "id": "2024-05-23T15:56:39Z", + "x": { "$date": { "$numberLong": "1716479799302" } }, + "y": { "$numberDouble": "120.59" } + }, + { + "label": "Label", + "id": "2024-05-24T20:16:26Z", + "x": { "$date": { "$numberLong": "1716581786810" } }, + "y": { "$numberDouble": "123.1" } + }, + { + "label": "Label", + "id": "2024-05-26T00:36:14Z", + "x": { "$date": { "$numberLong": "1716683774318" } }, + "y": { "$numberDouble": "125.61" } + }, + { + "label": "Label", + "id": "2024-05-27T04:56:01Z", + "x": { "$date": { "$numberLong": "1716785761826" } }, + "y": { "$numberDouble": "128.13" } + }, + { + "label": "Label", + "id": "2024-05-28T09:15:49Z", + "x": { "$date": { "$numberLong": "1716887749335" } }, + "y": { "$numberDouble": "130.64" } + }, + { + "label": "Label", + "id": "2024-05-29T13:35:36Z", + "x": { "$date": { "$numberLong": "1716989736843" } }, + "y": { "$numberDouble": "133.15" } + }, + { + "label": "Label", + "id": "2024-05-30T17:55:24Z", + "x": { "$date": { "$numberLong": "1717091724351" } }, + "y": { "$numberDouble": "135.66" } + }, + { + "label": "Label", + "id": "2024-05-31T22:15:11Z", + "x": { "$date": { "$numberLong": "1717193711859" } }, + "y": { "$numberDouble": "138.18" } + }, + { + "label": "Label", + "id": "2024-06-02T02:34:59Z", + "x": { "$date": { "$numberLong": "1717295699367" } }, + "y": { "$numberDouble": "140.69" } + }, + { + "label": "Label", + "id": "2024-06-03T06:54:46Z", + "x": { "$date": { "$numberLong": "1717397686875" } }, + "y": { "$numberDouble": "143.2" } + }, + { + "label": "Label", + "id": "2024-06-04T11:14:34Z", + "x": { "$date": { "$numberLong": "1717499674383" } }, + "y": { "$numberDouble": "145.71" } + }, + { + "label": "Label", + "id": "2024-06-05T15:34:21Z", + "x": { "$date": { "$numberLong": "1717601661891" } }, + "y": { "$numberDouble": "148.23" } + }, + { + "label": "Label", + "id": "2024-06-06T19:54:09Z", + "x": { "$date": { "$numberLong": "1717703649399" } }, + "y": { "$numberDouble": "150.74" } + }, + { + "label": "Label", + "id": "2024-06-08T00:13:56Z", + "x": { "$date": { "$numberLong": "1717805636907" } }, + "y": { "$numberDouble": "153.25" } + }, + { + "label": "Label", + "id": "2024-06-09T04:33:44Z", + "x": { "$date": { "$numberLong": "1717907624415" } }, + "y": { "$numberDouble": "155.76" } + }, + { + "label": "Label", + "id": "2024-06-10T08:53:31Z", + "x": { "$date": { "$numberLong": "1718009611923" } }, + "y": { "$numberDouble": "158.27" } + }, + { + "label": "Label", + "id": "2024-06-11T13:13:19Z", + "x": { "$date": { "$numberLong": "1718111599432" } }, + "y": { "$numberDouble": "160.79" } + }, + { + "label": "Label", + "id": "2024-06-12T17:33:06Z", + "x": { "$date": { "$numberLong": "1718213586940" } }, + "y": { "$numberDouble": "163.3" } + }, + { + "label": "Label", + "id": "2024-06-13T21:52:54Z", + "x": { "$date": { "$numberLong": "1718315574448" } }, + "y": { "$numberDouble": "165.81" } + }, + { + "label": "Label", + "id": "2024-06-15T02:12:41Z", + "x": { "$date": { "$numberLong": "1718417561956" } }, + "y": { "$numberDouble": "168.32" } + }, + { + "label": "Label", + "id": "2024-06-16T06:32:29Z", + "x": { "$date": { "$numberLong": "1718519549464" } }, + "y": { "$numberDouble": "170.84" } + }, + { + "label": "Label", + "id": "2024-06-17T10:52:16Z", + "x": { "$date": { "$numberLong": "1718621536972" } }, + "y": { "$numberDouble": "173.35" } + }, + { + "label": "Label", + "id": "2024-06-18T15:12:04Z", + "x": { "$date": { "$numberLong": "1718723524480" } }, + "y": { "$numberDouble": "175.86" } + }, + { + "label": "Label", + "id": "2024-06-19T19:31:51Z", + "x": { "$date": { "$numberLong": "1718825511988" } }, + "y": { "$numberDouble": "178.37" } + }, + { + "label": "Label", + "id": "2024-06-20T23:51:39Z", + "x": { "$date": { "$numberLong": "1718927499496" } }, + "y": { "$numberDouble": "180.88" } + }, + { + "label": "Label", + "id": "2024-06-22T04:11:27Z", + "x": { "$date": { "$numberLong": "1719029487004" } }, + "y": { "$numberDouble": "183.4" } + }, + { + "label": "Label", + "id": "2024-06-23T08:31:14Z", + "x": { "$date": { "$numberLong": "1719131474512" } }, + "y": { "$numberDouble": "185.91" } + }, + { + "label": "Label", + "id": "2024-06-24T12:51:02Z", + "x": { "$date": { "$numberLong": "1719233462020" } }, + "y": { "$numberDouble": "188.42" } + }, + { + "label": "Label", + "id": "2024-06-25T17:10:49Z", + "x": { "$date": { "$numberLong": "1719335449528" } }, + "y": { "$numberDouble": "190.93" } + }, + { + "label": "Label", + "id": "2024-06-26T21:30:37Z", + "x": { "$date": { "$numberLong": "1719437437037" } }, + "y": { "$numberDouble": "193.45" } + }, + { + "label": "Label", + "id": "2024-06-28T01:50:24Z", + "x": { "$date": { "$numberLong": "1719539424545" } }, + "y": { "$numberDouble": "195.96" } + }, + { + "label": "Label", + "id": "2024-06-29T06:10:12Z", + "x": { "$date": { "$numberLong": "1719641412053" } }, + "y": { "$numberDouble": "198.47" } + }, + { + "label": "Label", + "id": "2024-06-30T10:29:59Z", + "x": { "$date": { "$numberLong": "1719743399561" } }, + "y": { "$numberDouble": "200.98" } + }, + { + "label": "Label", + "id": "2024-07-01T14:49:47Z", + "x": { "$date": { "$numberLong": "1719845387069" } }, + "y": { "$numberDouble": "203.5" } + }, + { + "label": "Label", + "id": "2024-07-02T19:09:34Z", + "x": { "$date": { "$numberLong": "1719947374577" } }, + "y": { "$numberDouble": "206.01" } + }, + { + "label": "Label", + "id": "2024-07-03T23:29:22Z", + "x": { "$date": { "$numberLong": "1720049362085" } }, + "y": { "$numberDouble": "208.52" } + }, + { + "label": "Label", + "id": "2024-07-05T03:49:09Z", + "x": { "$date": { "$numberLong": "1720151349593" } }, + "y": { "$numberDouble": "211.03" } + }, + { + "label": "Label", + "id": "2024-07-06T08:08:57Z", + "x": { "$date": { "$numberLong": "1720253337101" } }, + "y": { "$numberDouble": "213.54" } + }, + { + "label": "Label", + "id": "2024-07-07T12:28:44Z", + "x": { "$date": { "$numberLong": "1720355324609" } }, + "y": { "$numberDouble": "216.06" } + }, + { + "label": "Label", + "id": "2024-07-08T16:48:32Z", + "x": { "$date": { "$numberLong": "1720457312117" } }, + "y": { "$numberDouble": "218.57" } + }, + { + "label": "Label", + "id": "2024-07-09T21:08:19Z", + "x": { "$date": { "$numberLong": "1720559299625" } }, + "y": { "$numberDouble": "221.08" } + }, + { + "label": "Label", + "id": "2024-07-11T01:28:07Z", + "x": { "$date": { "$numberLong": "1720661287133" } }, + "y": { "$numberDouble": "223.59" } + }, + { + "label": "Label", + "id": "2024-07-12T05:47:54Z", + "x": { "$date": { "$numberLong": "1720763274642" } }, + "y": { "$numberDouble": "226.11" } + }, + { + "label": "Label", + "id": "2024-07-13T10:07:42Z", + "x": { "$date": { "$numberLong": "1720865262150" } }, + "y": { "$numberDouble": "228.62" } + }, + { + "label": "Label", + "id": "2024-07-14T14:27:29Z", + "x": { "$date": { "$numberLong": "1720967249658" } }, + "y": { "$numberDouble": "231.13" } + }, + { + "label": "Label", + "id": "2024-07-15T18:47:17Z", + "x": { "$date": { "$numberLong": "1721069237166" } }, + "y": { "$numberDouble": "233.64" } + }, + { + "label": "Label", + "id": "2024-07-16T23:07:04Z", + "x": { "$date": { "$numberLong": "1721171224674" } }, + "y": { "$numberDouble": "236.16" } + }, + { + "label": "Label", + "id": "2024-07-18T03:26:52Z", + "x": { "$date": { "$numberLong": "1721273212182" } }, + "y": { "$numberDouble": "238.67" } + }, + { + "label": "Label", + "id": "2024-07-19T07:46:39Z", + "x": { "$date": { "$numberLong": "1721375199690" } }, + "y": { "$numberDouble": "241.18" } + }, + { + "label": "Label", + "id": "2024-07-20T12:06:27Z", + "x": { "$date": { "$numberLong": "1721477187198" } }, + "y": { "$numberDouble": "243.69" } + }, + { + "label": "Label", + "id": "2024-07-21T16:26:14Z", + "x": { "$date": { "$numberLong": "1721579174706" } }, + "y": { "$numberDouble": "246.2" } + }, + { + "label": "Label", + "id": "2024-07-22T20:46:02Z", + "x": { "$date": { "$numberLong": "1721681162214" } }, + "y": { "$numberDouble": "248.72" } + }, + { + "label": "Label", + "id": "2024-07-24T01:05:49Z", + "x": { "$date": { "$numberLong": "1721783149722" } }, + "y": { "$numberDouble": "251.23" } + }, + { + "label": "Label", + "id": "2024-07-25T05:25:37Z", + "x": { "$date": { "$numberLong": "1721885137230" } }, + "y": { "$numberDouble": "253.74" } + }, + { + "label": "Label", + "id": "2024-07-26T09:45:24Z", + "x": { "$date": { "$numberLong": "1721987124738" } }, + "y": { "$numberDouble": "256.25" } + }, + { + "label": "Label", + "id": "2024-07-27T14:05:12Z", + "x": { "$date": { "$numberLong": "1722089112247" } }, + "y": { "$numberDouble": "258.77" } + }, + { + "label": "Label", + "id": "2024-07-28T18:24:59Z", + "x": { "$date": { "$numberLong": "1722191099755" } }, + "y": { "$numberDouble": "261.28" } + }, + { + "label": "Label", + "id": "2024-07-29T22:44:47Z", + "x": { "$date": { "$numberLong": "1722293087263" } }, + "y": { "$numberDouble": "263.79" } + }, + { + "label": "Label", + "id": "2024-07-31T03:04:34Z", + "x": { "$date": { "$numberLong": "1722395074771" } }, + "y": { "$numberDouble": "266.3" } + }, + { + "label": "Label", + "id": "2024-08-01T07:24:22Z", + "x": { "$date": { "$numberLong": "1722497062279" } }, + "y": { "$numberDouble": "268.82" } + }, + { + "label": "Label", + "id": "2024-08-02T11:44:09Z", + "x": { "$date": { "$numberLong": "1722599049787" } }, + "y": { "$numberDouble": "271.33" } + }, + { + "label": "Label", + "id": "2024-08-03T16:03:57Z", + "x": { "$date": { "$numberLong": "1722701037295" } }, + "y": { "$numberDouble": "273.84" } + }, + { + "label": "Label", + "id": "2024-08-04T20:23:44Z", + "x": { "$date": { "$numberLong": "1722803024803" } }, + "y": { "$numberDouble": "276.35" } + }, + { + "label": "Label", + "id": "2024-08-06T00:43:32Z", + "x": { "$date": { "$numberLong": "1722905012311" } }, + "y": { "$numberDouble": "278.86" } + }, + { + "label": "Label", + "id": "2024-08-07T05:03:19Z", + "x": { "$date": { "$numberLong": "1723006999819" } }, + "y": { "$numberDouble": "281.38" } + }, + { + "label": "Label", + "id": "2024-08-08T09:23:07Z", + "x": { "$date": { "$numberLong": "1723108987327" } }, + "y": { "$numberDouble": "283.89" } + }, + { + "label": "Label", + "id": "2024-08-09T13:42:54Z", + "x": { "$date": { "$numberLong": "1723210974835" } }, + "y": { "$numberDouble": "286.4" } + }, + { + "label": "Label", + "id": "2024-08-10T18:02:42Z", + "x": { "$date": { "$numberLong": "1723312962343" } }, + "y": { "$numberDouble": "288.91" } + }, + { + "label": "Label", + "id": "2024-08-11T22:22:29Z", + "x": { "$date": { "$numberLong": "1723414949852" } }, + "y": { "$numberDouble": "291.43" } + }, + { + "label": "Label", + "id": "2024-08-13T02:42:17Z", + "x": { "$date": { "$numberLong": "1723516937360" } }, + "y": { "$numberDouble": "293.94" } + }, + { + "label": "Label", + "id": "2024-08-14T07:02:04Z", + "x": { "$date": { "$numberLong": "1723618924868" } }, + "y": { "$numberDouble": "296.45" } + }, + { + "label": "Label", + "id": "2024-08-15T11:21:52Z", + "x": { "$date": { "$numberLong": "1723720912376" } }, + "y": { "$numberDouble": "298.96" } + }, + { + "label": "Label", + "id": "2024-08-16T15:41:39Z", + "x": { "$date": { "$numberLong": "1723822899884" } }, + "y": { "$numberDouble": "301.47" } + }, + { + "label": "Label", + "id": "2024-08-17T20:01:27Z", + "x": { "$date": { "$numberLong": "1723924887392" } }, + "y": { "$numberDouble": "303.99" } + }, + { + "label": "Label", + "id": "2024-08-19T00:21:14Z", + "x": { "$date": { "$numberLong": "1724026874900" } }, + "y": { "$numberDouble": "306.5" } + }, + { + "label": "Label", + "id": "2024-08-20T04:41:02Z", + "x": { "$date": { "$numberLong": "1724128862408" } }, + "y": { "$numberDouble": "309.01" } + }, + { + "label": "Label", + "id": "2024-08-21T09:00:49Z", + "x": { "$date": { "$numberLong": "1724230849916" } }, + "y": { "$numberDouble": "311.52" } + }, + { + "label": "Label", + "id": "2024-08-22T13:20:37Z", + "x": { "$date": { "$numberLong": "1724332837424" } }, + "y": { "$numberDouble": "314.04" } + }, + { + "label": "Label", + "id": "2024-08-23T17:40:24Z", + "x": { "$date": { "$numberLong": "1724434824932" } }, + "y": { "$numberDouble": "316.55" } + }, + { + "label": "Label", + "id": "2024-08-24T22:00:12Z", + "x": { "$date": { "$numberLong": "1724536812440" } }, + "y": { "$numberDouble": "319.06" } + }, + { + "label": "Label", + "id": "2024-08-26T02:19:59Z", + "x": { "$date": { "$numberLong": "1724638799949" } }, + "y": { "$numberDouble": "321.57" } + }, + { + "label": "Label", + "id": "2024-08-27T06:39:47Z", + "x": { "$date": { "$numberLong": "1724740787457" } }, + "y": { "$numberDouble": "324.09" } + }, + { + "label": "Label", + "id": "2024-08-28T10:59:34Z", + "x": { "$date": { "$numberLong": "1724842774965" } }, + "y": { "$numberDouble": "326.6" } + }, + { + "label": "Label", + "id": "2024-08-29T15:19:22Z", + "x": { "$date": { "$numberLong": "1724944762473" } }, + "y": { "$numberDouble": "329.11" } + }, + { + "label": "Label", + "id": "2024-08-30T19:39:09Z", + "x": { "$date": { "$numberLong": "1725046749981" } }, + "y": { "$numberDouble": "331.62" } + }, + { + "label": "Label", + "id": "2024-08-31T23:58:57Z", + "x": { "$date": { "$numberLong": "1725148737489" } }, + "y": { "$numberDouble": "334.13" } + }, + { + "label": "Label", + "id": "2024-09-02T04:18:44Z", + "x": { "$date": { "$numberLong": "1725250724997" } }, + "y": { "$numberDouble": "336.65" } + }, + { + "label": "Label", + "id": "2024-09-03T08:38:32Z", + "x": { "$date": { "$numberLong": "1725352712505" } }, + "y": { "$numberDouble": "339.16" } + }, + { + "label": "Label", + "id": "2024-09-04T12:58:20Z", + "x": { "$date": { "$numberLong": "1725454700013" } }, + "y": { "$numberDouble": "341.67" } + }, + { + "label": "Label", + "id": "2024-09-05T17:18:07Z", + "x": { "$date": { "$numberLong": "1725556687521" } }, + "y": { "$numberDouble": "344.18" } + }, + { + "label": "Label", + "id": "2024-09-06T21:37:55Z", + "x": { "$date": { "$numberLong": "1725658675029" } }, + "y": { "$numberDouble": "346.7" } + }, + { + "label": "Label", + "id": "2024-09-08T01:57:42Z", + "x": { "$date": { "$numberLong": "1725760662537" } }, + "y": { "$numberDouble": "349.21" } + }, + { + "label": "Label", + "id": "2024-09-09T06:17:30Z", + "x": { "$date": { "$numberLong": "1725862650045" } }, + "y": { "$numberDouble": "351.72" } + }, + { + "label": "Label", + "id": "2024-09-10T10:37:17Z", + "x": { "$date": { "$numberLong": "1725964637554" } }, + "y": { "$numberDouble": "354.23" } + }, + { + "label": "Label", + "id": "2024-09-11T14:57:05Z", + "x": { "$date": { "$numberLong": "1726066625062" } }, + "y": { "$numberDouble": "356.75" } + }, + { + "label": "Label", + "id": "2024-09-12T19:16:52Z", + "x": { "$date": { "$numberLong": "1726168612570" } }, + "y": { "$numberDouble": "359.26" } + }, + { + "label": "Label", + "id": "2024-09-13T23:36:40Z", + "x": { "$date": { "$numberLong": "1726270600078" } }, + "y": { "$numberDouble": "361.77" } + }, + { + "label": "Label", + "id": "2024-09-15T03:56:27Z", + "x": { "$date": { "$numberLong": "1726372587586" } }, + "y": { "$numberDouble": "364.28" } + }, + { + "label": "Label", + "id": "2024-09-16T08:16:15Z", + "x": { "$date": { "$numberLong": "1726474575094" } }, + "y": { "$numberDouble": "366.79" } + }, + { + "label": "Label", + "id": "2024-09-17T12:36:02Z", + "x": { "$date": { "$numberLong": "1726576562602" } }, + "y": { "$numberDouble": "369.31" } + }, + { + "label": "Label", + "id": "2024-09-18T16:55:50Z", + "x": { "$date": { "$numberLong": "1726678550110" } }, + "y": { "$numberDouble": "371.82" } + }, + { + "label": "Label", + "id": "2024-09-19T21:15:37Z", + "x": { "$date": { "$numberLong": "1726780537618" } }, + "y": { "$numberDouble": "374.33" } + }, + { + "label": "Label", + "id": "2024-09-21T01:35:25Z", + "x": { "$date": { "$numberLong": "1726882525126" } }, + "y": { "$numberDouble": "376.84" } + }, + { + "label": "Label", + "id": "2024-09-22T05:55:12Z", + "x": { "$date": { "$numberLong": "1726984512634" } }, + "y": { "$numberDouble": "379.36" } + }, + { + "label": "Label", + "id": "2024-09-23T10:15:00Z", + "x": { "$date": { "$numberLong": "1727086500142" } }, + "y": { "$numberDouble": "381.87" } + }, + { + "label": "Label", + "id": "2024-09-24T14:34:47Z", + "x": { "$date": { "$numberLong": "1727188487650" } }, + "y": { "$numberDouble": "384.38" } + }, + { + "label": "Label", + "id": "2024-09-25T18:54:35Z", + "x": { "$date": { "$numberLong": "1727290475159" } }, + "y": { "$numberDouble": "386.89" } + }, + { + "label": "Label", + "id": "2024-09-26T23:14:22Z", + "x": { "$date": { "$numberLong": "1727392462667" } }, + "y": { "$numberDouble": "389.41" } + }, + { + "label": "Label", + "id": "2024-09-28T03:34:10Z", + "x": { "$date": { "$numberLong": "1727494450175" } }, + "y": { "$numberDouble": "391.92" } + }, + { + "label": "Label", + "id": "2024-09-29T07:53:57Z", + "x": { "$date": { "$numberLong": "1727596437683" } }, + "y": { "$numberDouble": "394.43" } + }, + { + "label": "Label", + "id": "2024-09-30T12:13:45Z", + "x": { "$date": { "$numberLong": "1727698425191" } }, + "y": { "$numberDouble": "396.94" } + }, + { + "label": "Label", + "id": "2024-10-01T16:33:32Z", + "x": { "$date": { "$numberLong": "1727800412699" } }, + "y": { "$numberDouble": "399.45" } + }, + { + "label": "Label", + "id": "2024-10-02T20:53:20Z", + "x": { "$date": { "$numberLong": "1727902400207" } }, + "y": { "$numberDouble": "401.97" } + }, + { + "label": "Label", + "id": "2024-10-04T01:13:07Z", + "x": { "$date": { "$numberLong": "1728004387715" } }, + "y": { "$numberDouble": "404.48" } + }, + { + "label": "Label", + "id": "2024-10-05T05:32:55Z", + "x": { "$date": { "$numberLong": "1728106375223" } }, + "y": { "$numberDouble": "406.99" } + }, + { + "label": "Label", + "id": "2024-10-06T09:52:42Z", + "x": { "$date": { "$numberLong": "1728208362731" } }, + "y": { "$numberDouble": "409.5" } + }, + { + "label": "Label", + "id": "2024-10-07T14:12:30Z", + "x": { "$date": { "$numberLong": "1728310350239" } }, + "y": { "$numberDouble": "412.02" } + }, + { + "label": "Label", + "id": "2024-10-08T18:32:17Z", + "x": { "$date": { "$numberLong": "1728412337747" } }, + "y": { "$numberDouble": "414.53" } + }, + { + "label": "Label", + "id": "2024-10-09T22:52:05Z", + "x": { "$date": { "$numberLong": "1728514325255" } }, + "y": { "$numberDouble": "417.04" } + }, + { + "label": "Label", + "id": "2024-10-11T03:11:52Z", + "x": { "$date": { "$numberLong": "1728616312764" } }, + "y": { "$numberDouble": "419.55" } + }, + { + "label": "Label", + "id": "2024-10-12T07:31:40Z", + "x": { "$date": { "$numberLong": "1728718300272" } }, + "y": { "$numberDouble": "422.06" } + }, + { + "label": "Label", + "id": "2024-10-13T11:51:27Z", + "x": { "$date": { "$numberLong": "1728820287780" } }, + "y": { "$numberDouble": "424.58" } + }, + { + "label": "Label", + "id": "2024-10-14T16:11:15Z", + "x": { "$date": { "$numberLong": "1728922275288" } }, + "y": { "$numberDouble": "427.09" } + }, + { + "label": "Label", + "id": "2024-10-15T20:31:02Z", + "x": { "$date": { "$numberLong": "1729024262796" } }, + "y": { "$numberDouble": "429.6" } + }, + { + "label": "Label", + "id": "2024-10-17T00:50:50Z", + "x": { "$date": { "$numberLong": "1729126250304" } }, + "y": { "$numberDouble": "432.11" } + }, + { + "label": "Label", + "id": "2024-10-18T05:10:37Z", + "x": { "$date": { "$numberLong": "1729228237812" } }, + "y": { "$numberDouble": "434.63" } + }, + { + "label": "Label", + "id": "2024-10-19T09:30:25Z", + "x": { "$date": { "$numberLong": "1729330225320" } }, + "y": { "$numberDouble": "437.14" } + }, + { + "label": "Label", + "id": "2024-10-20T13:50:12Z", + "x": { "$date": { "$numberLong": "1729432212828" } }, + "y": { "$numberDouble": "439.65" } + }, + { + "label": "Label", + "id": "2024-10-21T18:10:00Z", + "x": { "$date": { "$numberLong": "1729534200336" } }, + "y": { "$numberDouble": "442.16" } + }, + { + "label": "Label", + "id": "2024-10-22T22:29:47Z", + "x": { "$date": { "$numberLong": "1729636187844" } }, + "y": { "$numberDouble": "444.68" } + }, + { + "label": "Label", + "id": "2024-10-24T02:49:35Z", + "x": { "$date": { "$numberLong": "1729738175352" } }, + "y": { "$numberDouble": "447.19" } + }, + { + "label": "Label", + "id": "2024-10-25T07:09:22Z", + "x": { "$date": { "$numberLong": "1729840162861" } }, + "y": { "$numberDouble": "449.7" } + } + ], + "_id": { "$oid": "66189c858bcc89e3792dd253" } + }, + "270d": { + "id": "270d", + "name": "Last 270D", + "color": "#2e7c67", + "data": [ + { + "label": "Label", + "id": "2024-03-28T00:06:38Z", + "x": { "$date": { "$numberLong": "1711584398915" } }, + "y": { "$numberInt": "0" } + }, + { + "label": "Label", + "id": "2024-03-29T02:59:31Z", + "x": { "$date": { "$numberLong": "1711681171271" } }, + "y": { "$numberDouble": "2.66" } + }, + { + "label": "Label", + "id": "2024-03-30T05:52:23Z", + "x": { "$date": { "$numberLong": "1711777943628" } }, + "y": { "$numberDouble": "5.31" } + }, + { + "label": "Label", + "id": "2024-03-31T08:45:15Z", + "x": { "$date": { "$numberLong": "1711874715985" } }, + "y": { "$numberDouble": "7.97" } + }, + { + "label": "Label", + "id": "2024-04-01T11:38:08Z", + "x": { "$date": { "$numberLong": "1711971488341" } }, + "y": { "$numberDouble": "10.63" } + }, + { + "label": "Label", + "id": "2024-04-02T14:31:00Z", + "x": { "$date": { "$numberLong": "1712068260698" } }, + "y": { "$numberDouble": "13.28" } + }, + { + "label": "Label", + "id": "2024-04-03T17:23:53Z", + "x": { "$date": { "$numberLong": "1712165033055" } }, + "y": { "$numberDouble": "15.94" } + }, + { + "label": "Label", + "id": "2024-04-04T20:16:45Z", + "x": { "$date": { "$numberLong": "1712261805411" } }, + "y": { "$numberDouble": "18.6" } + }, + { + "label": "Label", + "id": "2024-04-05T23:09:37Z", + "x": { "$date": { "$numberLong": "1712358577768" } }, + "y": { "$numberDouble": "21.25" } + }, + { + "label": "Label", + "id": "2024-04-07T02:02:30Z", + "x": { "$date": { "$numberLong": "1712455350125" } }, + "y": { "$numberDouble": "23.91" } + }, + { + "label": "Label", + "id": "2024-04-08T04:55:22Z", + "x": { "$date": { "$numberLong": "1712552122481" } }, + "y": { "$numberDouble": "26.57" } + }, + { + "label": "Label", + "id": "2024-04-09T07:48:14Z", + "x": { "$date": { "$numberLong": "1712648894838" } }, + "y": { "$numberDouble": "29.22" } + }, + { + "label": "Label", + "id": "2024-04-10T10:41:07Z", + "x": { "$date": { "$numberLong": "1712745667195" } }, + "y": { "$numberDouble": "31.88" } + }, + { + "label": "Label", + "id": "2024-04-11T13:33:59Z", + "x": { "$date": { "$numberLong": "1712842439551" } }, + "y": { "$numberDouble": "34.53" } + }, + { + "label": "Label", + "id": "2024-04-12T16:26:51Z", + "x": { "$date": { "$numberLong": "1712939211908" } }, + "y": { "$numberDouble": "37.19" } + }, + { + "label": "Label", + "id": "2024-04-13T19:19:44Z", + "x": { "$date": { "$numberLong": "1713035984265" } }, + "y": { "$numberDouble": "39.85" } + }, + { + "label": "Label", + "id": "2024-04-14T22:12:36Z", + "x": { "$date": { "$numberLong": "1713132756621" } }, + "y": { "$numberDouble": "42.5" } + }, + { + "label": "Label", + "id": "2024-04-16T01:05:28Z", + "x": { "$date": { "$numberLong": "1713229528978" } }, + "y": { "$numberDouble": "45.16" } + }, + { + "label": "Label", + "id": "2024-04-17T03:58:21Z", + "x": { "$date": { "$numberLong": "1713326301335" } }, + "y": { "$numberDouble": "47.82" } + }, + { + "label": "Label", + "id": "2024-04-18T06:51:13Z", + "x": { "$date": { "$numberLong": "1713423073691" } }, + "y": { "$numberDouble": "50.47" } + }, + { + "label": "Label", + "id": "2024-04-19T09:44:06Z", + "x": { "$date": { "$numberLong": "1713519846048" } }, + "y": { "$numberDouble": "53.13" } + }, + { + "label": "Label", + "id": "2024-04-20T12:36:58Z", + "x": { "$date": { "$numberLong": "1713616618405" } }, + "y": { "$numberDouble": "55.79" } + }, + { + "label": "Label", + "id": "2024-04-21T15:29:50Z", + "x": { "$date": { "$numberLong": "1713713390761" } }, + "y": { "$numberDouble": "58.44" } + }, + { + "label": "Label", + "id": "2024-04-22T18:22:43Z", + "x": { "$date": { "$numberLong": "1713810163118" } }, + "y": { "$numberDouble": "61.1" } + }, + { + "label": "Label", + "id": "2024-04-23T21:15:35Z", + "x": { "$date": { "$numberLong": "1713906935475" } }, + "y": { "$numberDouble": "63.76" } + }, + { + "label": "Label", + "id": "2024-04-25T00:08:27Z", + "x": { "$date": { "$numberLong": "1714003707831" } }, + "y": { "$numberDouble": "66.41" } + }, + { + "label": "Label", + "id": "2024-04-26T03:01:20Z", + "x": { "$date": { "$numberLong": "1714100480188" } }, + "y": { "$numberDouble": "69.07" } + }, + { + "label": "Label", + "id": "2024-04-27T05:54:12Z", + "x": { "$date": { "$numberLong": "1714197252545" } }, + "y": { "$numberDouble": "71.73" } + }, + { + "label": "Label", + "id": "2024-04-28T08:47:04Z", + "x": { "$date": { "$numberLong": "1714294024901" } }, + "y": { "$numberDouble": "74.38" } + }, + { + "label": "Label", + "id": "2024-04-29T11:39:57Z", + "x": { "$date": { "$numberLong": "1714390797258" } }, + "y": { "$numberDouble": "77.04" } + }, + { + "label": "Label", + "id": "2024-04-30T14:32:49Z", + "x": { "$date": { "$numberLong": "1714487569615" } }, + "y": { "$numberDouble": "79.7" } + }, + { + "label": "Label", + "id": "2024-05-01T17:25:41Z", + "x": { "$date": { "$numberLong": "1714584341971" } }, + "y": { "$numberDouble": "82.35" } + }, + { + "label": "Label", + "id": "2024-05-02T20:18:34Z", + "x": { "$date": { "$numberLong": "1714681114328" } }, + "y": { "$numberDouble": "85.01" } + }, + { + "label": "Label", + "id": "2024-05-03T23:11:26Z", + "x": { "$date": { "$numberLong": "1714777886685" } }, + "y": { "$numberDouble": "87.66" } + }, + { + "label": "Label", + "id": "2024-05-05T02:04:19Z", + "x": { "$date": { "$numberLong": "1714874659042" } }, + "y": { "$numberDouble": "90.32" } + }, + { + "label": "Label", + "id": "2024-05-06T04:57:11Z", + "x": { "$date": { "$numberLong": "1714971431398" } }, + "y": { "$numberDouble": "92.98" } + }, + { + "label": "Label", + "id": "2024-05-07T07:50:03Z", + "x": { "$date": { "$numberLong": "1715068203755" } }, + "y": { "$numberDouble": "95.63" } + }, + { + "label": "Label", + "id": "2024-05-08T10:42:56Z", + "x": { "$date": { "$numberLong": "1715164976112" } }, + "y": { "$numberDouble": "98.29" } + }, + { + "label": "Label", + "id": "2024-05-09T13:35:48Z", + "x": { "$date": { "$numberLong": "1715261748468" } }, + "y": { "$numberDouble": "100.95" } + }, + { + "label": "Label", + "id": "2024-05-10T16:28:40Z", + "x": { "$date": { "$numberLong": "1715358520825" } }, + "y": { "$numberDouble": "103.6" } + }, + { + "label": "Label", + "id": "2024-05-11T19:21:33Z", + "x": { "$date": { "$numberLong": "1715455293182" } }, + "y": { "$numberDouble": "106.26" } + }, + { + "label": "Label", + "id": "2024-05-12T22:14:25Z", + "x": { "$date": { "$numberLong": "1715552065538" } }, + "y": { "$numberDouble": "108.92" } + }, + { + "label": "Label", + "id": "2024-05-14T01:07:17Z", + "x": { "$date": { "$numberLong": "1715648837895" } }, + "y": { "$numberDouble": "111.57" } + }, + { + "label": "Label", + "id": "2024-05-15T04:00:10Z", + "x": { "$date": { "$numberLong": "1715745610252" } }, + "y": { "$numberDouble": "114.23" } + }, + { + "label": "Label", + "id": "2024-05-16T06:53:02Z", + "x": { "$date": { "$numberLong": "1715842382608" } }, + "y": { "$numberDouble": "116.89" } + }, + { + "label": "Label", + "id": "2024-05-17T09:45:54Z", + "x": { "$date": { "$numberLong": "1715939154965" } }, + "y": { "$numberDouble": "119.54" } + }, + { + "label": "Label", + "id": "2024-05-18T12:38:47Z", + "x": { "$date": { "$numberLong": "1716035927322" } }, + "y": { "$numberDouble": "122.2" } + }, + { + "label": "Label", + "id": "2024-05-19T15:31:39Z", + "x": { "$date": { "$numberLong": "1716132699678" } }, + "y": { "$numberDouble": "124.86" } + }, + { + "label": "Label", + "id": "2024-05-20T18:24:32Z", + "x": { "$date": { "$numberLong": "1716229472035" } }, + "y": { "$numberDouble": "127.51" } + }, + { + "label": "Label", + "id": "2024-05-21T21:17:24Z", + "x": { "$date": { "$numberLong": "1716326244392" } }, + "y": { "$numberDouble": "130.17" } + }, + { + "label": "Label", + "id": "2024-05-23T00:10:16Z", + "x": { "$date": { "$numberLong": "1716423016748" } }, + "y": { "$numberDouble": "132.83" } + }, + { + "label": "Label", + "id": "2024-05-24T03:03:09Z", + "x": { "$date": { "$numberLong": "1716519789105" } }, + "y": { "$numberDouble": "135.48" } + }, + { + "label": "Label", + "id": "2024-05-25T05:56:01Z", + "x": { "$date": { "$numberLong": "1716616561462" } }, + "y": { "$numberDouble": "138.14" } + }, + { + "label": "Label", + "id": "2024-05-26T08:48:53Z", + "x": { "$date": { "$numberLong": "1716713333818" } }, + "y": { "$numberDouble": "140.79" } + }, + { + "label": "Label", + "id": "2024-05-27T11:41:46Z", + "x": { "$date": { "$numberLong": "1716810106175" } }, + "y": { "$numberDouble": "143.45" } + }, + { + "label": "Label", + "id": "2024-05-28T14:34:38Z", + "x": { "$date": { "$numberLong": "1716906878532" } }, + "y": { "$numberDouble": "146.11" } + }, + { + "label": "Label", + "id": "2024-05-29T17:27:30Z", + "x": { "$date": { "$numberLong": "1717003650888" } }, + "y": { "$numberDouble": "148.76" } + }, + { + "label": "Label", + "id": "2024-05-30T20:20:23Z", + "x": { "$date": { "$numberLong": "1717100423245" } }, + "y": { "$numberDouble": "151.42" } + }, + { + "label": "Label", + "id": "2024-05-31T23:13:15Z", + "x": { "$date": { "$numberLong": "1717197195602" } }, + "y": { "$numberDouble": "154.08" } + }, + { + "label": "Label", + "id": "2024-06-02T02:06:07Z", + "x": { "$date": { "$numberLong": "1717293967958" } }, + "y": { "$numberDouble": "156.73" } + }, + { + "label": "Label", + "id": "2024-06-03T04:59:00Z", + "x": { "$date": { "$numberLong": "1717390740315" } }, + "y": { "$numberDouble": "159.39" } + }, + { + "label": "Label", + "id": "2024-06-04T07:51:52Z", + "x": { "$date": { "$numberLong": "1717487512672" } }, + "y": { "$numberDouble": "162.05" } + }, + { + "label": "Label", + "id": "2024-06-05T10:44:45Z", + "x": { "$date": { "$numberLong": "1717584285028" } }, + "y": { "$numberDouble": "164.7" } + }, + { + "label": "Label", + "id": "2024-06-06T13:37:37Z", + "x": { "$date": { "$numberLong": "1717681057385" } }, + "y": { "$numberDouble": "167.36" } + }, + { + "label": "Label", + "id": "2024-06-07T16:30:29Z", + "x": { "$date": { "$numberLong": "1717777829742" } }, + "y": { "$numberDouble": "170.02" } + }, + { + "label": "Label", + "id": "2024-06-08T19:23:22Z", + "x": { "$date": { "$numberLong": "1717874602098" } }, + "y": { "$numberDouble": "172.67" } + }, + { + "label": "Label", + "id": "2024-06-09T22:16:14Z", + "x": { "$date": { "$numberLong": "1717971374455" } }, + "y": { "$numberDouble": "175.33" } + }, + { + "label": "Label", + "id": "2024-06-11T01:09:06Z", + "x": { "$date": { "$numberLong": "1718068146812" } }, + "y": { "$numberDouble": "177.99" } + }, + { + "label": "Label", + "id": "2024-06-12T04:01:59Z", + "x": { "$date": { "$numberLong": "1718164919169" } }, + "y": { "$numberDouble": "180.64" } + }, + { + "label": "Label", + "id": "2024-06-13T06:54:51Z", + "x": { "$date": { "$numberLong": "1718261691525" } }, + "y": { "$numberDouble": "183.3" } + }, + { + "label": "Label", + "id": "2024-06-14T09:47:43Z", + "x": { "$date": { "$numberLong": "1718358463882" } }, + "y": { "$numberDouble": "185.96" } + }, + { + "label": "Label", + "id": "2024-06-15T12:40:36Z", + "x": { "$date": { "$numberLong": "1718455236239" } }, + "y": { "$numberDouble": "188.61" } + }, + { + "label": "Label", + "id": "2024-06-16T15:33:28Z", + "x": { "$date": { "$numberLong": "1718552008595" } }, + "y": { "$numberDouble": "191.27" } + }, + { + "label": "Label", + "id": "2024-06-17T18:26:20Z", + "x": { "$date": { "$numberLong": "1718648780952" } }, + "y": { "$numberDouble": "193.92" } + }, + { + "label": "Label", + "id": "2024-06-18T21:19:13Z", + "x": { "$date": { "$numberLong": "1718745553309" } }, + "y": { "$numberDouble": "196.58" } + }, + { + "label": "Label", + "id": "2024-06-20T00:12:05Z", + "x": { "$date": { "$numberLong": "1718842325665" } }, + "y": { "$numberDouble": "199.24" } + }, + { + "label": "Label", + "id": "2024-06-21T03:04:58Z", + "x": { "$date": { "$numberLong": "1718939098022" } }, + "y": { "$numberDouble": "201.89" } + }, + { + "label": "Label", + "id": "2024-06-22T05:57:50Z", + "x": { "$date": { "$numberLong": "1719035870379" } }, + "y": { "$numberDouble": "204.55" } + }, + { + "label": "Label", + "id": "2024-06-23T08:50:42Z", + "x": { "$date": { "$numberLong": "1719132642735" } }, + "y": { "$numberDouble": "207.21" } + }, + { + "label": "Label", + "id": "2024-06-24T11:43:35Z", + "x": { "$date": { "$numberLong": "1719229415092" } }, + "y": { "$numberDouble": "209.86" } + }, + { + "label": "Label", + "id": "2024-06-25T14:36:27Z", + "x": { "$date": { "$numberLong": "1719326187449" } }, + "y": { "$numberDouble": "212.52" } + }, + { + "label": "Label", + "id": "2024-06-26T17:29:19Z", + "x": { "$date": { "$numberLong": "1719422959805" } }, + "y": { "$numberDouble": "215.18" } + }, + { + "label": "Label", + "id": "2024-06-27T20:22:12Z", + "x": { "$date": { "$numberLong": "1719519732162" } }, + "y": { "$numberDouble": "217.83" } + }, + { + "label": "Label", + "id": "2024-06-28T23:15:04Z", + "x": { "$date": { "$numberLong": "1719616504519" } }, + "y": { "$numberDouble": "220.49" } + }, + { + "label": "Label", + "id": "2024-06-30T02:07:56Z", + "x": { "$date": { "$numberLong": "1719713276875" } }, + "y": { "$numberDouble": "223.15" } + }, + { + "label": "Label", + "id": "2024-07-01T05:00:49Z", + "x": { "$date": { "$numberLong": "1719810049232" } }, + "y": { "$numberDouble": "225.8" } + }, + { + "label": "Label", + "id": "2024-07-02T07:53:41Z", + "x": { "$date": { "$numberLong": "1719906821589" } }, + "y": { "$numberDouble": "228.46" } + }, + { + "label": "Label", + "id": "2024-07-03T10:46:33Z", + "x": { "$date": { "$numberLong": "1720003593945" } }, + "y": { "$numberDouble": "231.12" } + }, + { + "label": "Label", + "id": "2024-07-04T13:39:26Z", + "x": { "$date": { "$numberLong": "1720100366302" } }, + "y": { "$numberDouble": "233.77" } + }, + { + "label": "Label", + "id": "2024-07-05T16:32:18Z", + "x": { "$date": { "$numberLong": "1720197138659" } }, + "y": { "$numberDouble": "236.43" } + }, + { + "label": "Label", + "id": "2024-07-06T19:25:11Z", + "x": { "$date": { "$numberLong": "1720293911015" } }, + "y": { "$numberDouble": "239.09" } + }, + { + "label": "Label", + "id": "2024-07-07T22:18:03Z", + "x": { "$date": { "$numberLong": "1720390683372" } }, + "y": { "$numberDouble": "241.74" } + }, + { + "label": "Label", + "id": "2024-07-09T01:10:55Z", + "x": { "$date": { "$numberLong": "1720487455729" } }, + "y": { "$numberDouble": "244.4" } + }, + { + "label": "Label", + "id": "2024-07-10T04:03:48Z", + "x": { "$date": { "$numberLong": "1720584228085" } }, + "y": { "$numberDouble": "247.06" } + }, + { + "label": "Label", + "id": "2024-07-11T06:56:40Z", + "x": { "$date": { "$numberLong": "1720681000442" } }, + "y": { "$numberDouble": "249.71" } + }, + { + "label": "Label", + "id": "2024-07-12T09:49:32Z", + "x": { "$date": { "$numberLong": "1720777772799" } }, + "y": { "$numberDouble": "252.37" } + }, + { + "label": "Label", + "id": "2024-07-13T12:42:25Z", + "x": { "$date": { "$numberLong": "1720874545155" } }, + "y": { "$numberDouble": "255.02" } + }, + { + "label": "Label", + "id": "2024-07-14T15:35:17Z", + "x": { "$date": { "$numberLong": "1720971317512" } }, + "y": { "$numberDouble": "257.68" } + }, + { + "label": "Label", + "id": "2024-07-15T18:28:09Z", + "x": { "$date": { "$numberLong": "1721068089869" } }, + "y": { "$numberDouble": "260.34" } + }, + { + "label": "Label", + "id": "2024-07-16T21:21:02Z", + "x": { "$date": { "$numberLong": "1721164862225" } }, + "y": { "$numberDouble": "262.99" } + }, + { + "label": "Label", + "id": "2024-07-18T00:13:54Z", + "x": { "$date": { "$numberLong": "1721261634582" } }, + "y": { "$numberDouble": "265.65" } + }, + { + "label": "Label", + "id": "2024-07-19T03:06:46Z", + "x": { "$date": { "$numberLong": "1721358406939" } }, + "y": { "$numberDouble": "268.31" } + }, + { + "label": "Label", + "id": "2024-07-20T05:59:39Z", + "x": { "$date": { "$numberLong": "1721455179296" } }, + "y": { "$numberDouble": "270.96" } + }, + { + "label": "Label", + "id": "2024-07-21T08:52:31Z", + "x": { "$date": { "$numberLong": "1721551951652" } }, + "y": { "$numberDouble": "273.62" } + }, + { + "label": "Label", + "id": "2024-07-22T11:45:24Z", + "x": { "$date": { "$numberLong": "1721648724009" } }, + "y": { "$numberDouble": "276.28" } + }, + { + "label": "Label", + "id": "2024-07-23T14:38:16Z", + "x": { "$date": { "$numberLong": "1721745496366" } }, + "y": { "$numberDouble": "278.93" } + }, + { + "label": "Label", + "id": "2024-07-24T17:31:08Z", + "x": { "$date": { "$numberLong": "1721842268722" } }, + "y": { "$numberDouble": "281.59" } + }, + { + "label": "Label", + "id": "2024-07-25T20:24:01Z", + "x": { "$date": { "$numberLong": "1721939041079" } }, + "y": { "$numberDouble": "284.25" } + }, + { + "label": "Label", + "id": "2024-07-26T23:16:53Z", + "x": { "$date": { "$numberLong": "1722035813436" } }, + "y": { "$numberDouble": "286.9" } + }, + { + "label": "Label", + "id": "2024-07-28T02:09:45Z", + "x": { "$date": { "$numberLong": "1722132585792" } }, + "y": { "$numberDouble": "289.56" } + }, + { + "label": "Label", + "id": "2024-07-29T05:02:38Z", + "x": { "$date": { "$numberLong": "1722229358149" } }, + "y": { "$numberDouble": "292.22" } + }, + { + "label": "Label", + "id": "2024-07-30T07:55:30Z", + "x": { "$date": { "$numberLong": "1722326130506" } }, + "y": { "$numberDouble": "294.87" } + }, + { + "label": "Label", + "id": "2024-07-31T10:48:22Z", + "x": { "$date": { "$numberLong": "1722422902862" } }, + "y": { "$numberDouble": "297.53" } + }, + { + "label": "Label", + "id": "2024-08-01T13:41:15Z", + "x": { "$date": { "$numberLong": "1722519675219" } }, + "y": { "$numberDouble": "300.19" } + }, + { + "label": "Label", + "id": "2024-08-02T16:34:07Z", + "x": { "$date": { "$numberLong": "1722616447576" } }, + "y": { "$numberDouble": "302.84" } + }, + { + "label": "Label", + "id": "2024-08-03T19:26:59Z", + "x": { "$date": { "$numberLong": "1722713219932" } }, + "y": { "$numberDouble": "305.5" } + }, + { + "label": "Label", + "id": "2024-08-04T22:19:52Z", + "x": { "$date": { "$numberLong": "1722809992289" } }, + "y": { "$numberDouble": "308.15" } + }, + { + "label": "Label", + "id": "2024-08-06T01:12:44Z", + "x": { "$date": { "$numberLong": "1722906764646" } }, + "y": { "$numberDouble": "310.81" } + }, + { + "label": "Label", + "id": "2024-08-07T04:05:37Z", + "x": { "$date": { "$numberLong": "1723003537002" } }, + "y": { "$numberDouble": "313.47" } + }, + { + "label": "Label", + "id": "2024-08-08T06:58:29Z", + "x": { "$date": { "$numberLong": "1723100309359" } }, + "y": { "$numberDouble": "316.12" } + }, + { + "label": "Label", + "id": "2024-08-09T09:51:21Z", + "x": { "$date": { "$numberLong": "1723197081716" } }, + "y": { "$numberDouble": "318.78" } + }, + { + "label": "Label", + "id": "2024-08-10T12:44:14Z", + "x": { "$date": { "$numberLong": "1723293854072" } }, + "y": { "$numberDouble": "321.44" } + }, + { + "label": "Label", + "id": "2024-08-11T15:37:06Z", + "x": { "$date": { "$numberLong": "1723390626429" } }, + "y": { "$numberDouble": "324.09" } + }, + { + "label": "Label", + "id": "2024-08-12T18:29:58Z", + "x": { "$date": { "$numberLong": "1723487398786" } }, + "y": { "$numberDouble": "326.75" } + }, + { + "label": "Label", + "id": "2024-08-13T21:22:51Z", + "x": { "$date": { "$numberLong": "1723584171142" } }, + "y": { "$numberDouble": "329.41" } + }, + { + "label": "Label", + "id": "2024-08-15T00:15:43Z", + "x": { "$date": { "$numberLong": "1723680943499" } }, + "y": { "$numberDouble": "332.06" } + }, + { + "label": "Label", + "id": "2024-08-16T03:08:35Z", + "x": { "$date": { "$numberLong": "1723777715856" } }, + "y": { "$numberDouble": "334.72" } + }, + { + "label": "Label", + "id": "2024-08-17T06:01:28Z", + "x": { "$date": { "$numberLong": "1723874488212" } }, + "y": { "$numberDouble": "337.38" } + }, + { + "label": "Label", + "id": "2024-08-18T08:54:20Z", + "x": { "$date": { "$numberLong": "1723971260569" } }, + "y": { "$numberDouble": "340.03" } + }, + { + "label": "Label", + "id": "2024-08-19T11:47:12Z", + "x": { "$date": { "$numberLong": "1724068032926" } }, + "y": { "$numberDouble": "342.69" } + }, + { + "label": "Label", + "id": "2024-08-20T14:40:05Z", + "x": { "$date": { "$numberLong": "1724164805282" } }, + "y": { "$numberDouble": "345.35" } + }, + { + "label": "Label", + "id": "2024-08-21T17:32:57Z", + "x": { "$date": { "$numberLong": "1724261577639" } }, + "y": { "$numberInt": "348" } + }, + { + "label": "Label", + "id": "2024-08-22T20:25:49Z", + "x": { "$date": { "$numberLong": "1724358349996" } }, + "y": { "$numberDouble": "350.66" } + }, + { + "label": "Label", + "id": "2024-08-23T23:18:42Z", + "x": { "$date": { "$numberLong": "1724455122352" } }, + "y": { "$numberDouble": "353.32" } + }, + { + "label": "Label", + "id": "2024-08-25T02:11:34Z", + "x": { "$date": { "$numberLong": "1724551894709" } }, + "y": { "$numberDouble": "355.97" } + }, + { + "label": "Label", + "id": "2024-08-26T05:04:27Z", + "x": { "$date": { "$numberLong": "1724648667066" } }, + "y": { "$numberDouble": "358.63" } + }, + { + "label": "Label", + "id": "2024-08-27T07:57:19Z", + "x": { "$date": { "$numberLong": "1724745439423" } }, + "y": { "$numberDouble": "361.28" } + }, + { + "label": "Label", + "id": "2024-08-28T10:50:11Z", + "x": { "$date": { "$numberLong": "1724842211779" } }, + "y": { "$numberDouble": "363.94" } + }, + { + "label": "Label", + "id": "2024-08-29T13:43:04Z", + "x": { "$date": { "$numberLong": "1724938984136" } }, + "y": { "$numberDouble": "366.6" } + }, + { + "label": "Label", + "id": "2024-08-30T16:35:56Z", + "x": { "$date": { "$numberLong": "1725035756493" } }, + "y": { "$numberDouble": "369.25" } + }, + { + "label": "Label", + "id": "2024-08-31T19:28:48Z", + "x": { "$date": { "$numberLong": "1725132528849" } }, + "y": { "$numberDouble": "371.91" } + }, + { + "label": "Label", + "id": "2024-09-01T22:21:41Z", + "x": { "$date": { "$numberLong": "1725229301206" } }, + "y": { "$numberDouble": "374.57" } + }, + { + "label": "Label", + "id": "2024-09-03T01:14:33Z", + "x": { "$date": { "$numberLong": "1725326073563" } }, + "y": { "$numberDouble": "377.22" } + }, + { + "label": "Label", + "id": "2024-09-04T04:07:25Z", + "x": { "$date": { "$numberLong": "1725422845919" } }, + "y": { "$numberDouble": "379.88" } + }, + { + "label": "Label", + "id": "2024-09-05T07:00:18Z", + "x": { "$date": { "$numberLong": "1725519618276" } }, + "y": { "$numberDouble": "382.54" } + }, + { + "label": "Label", + "id": "2024-09-06T09:53:10Z", + "x": { "$date": { "$numberLong": "1725616390633" } }, + "y": { "$numberDouble": "385.19" } + }, + { + "label": "Label", + "id": "2024-09-07T12:46:02Z", + "x": { "$date": { "$numberLong": "1725713162989" } }, + "y": { "$numberDouble": "387.85" } + }, + { + "label": "Label", + "id": "2024-09-08T15:38:55Z", + "x": { "$date": { "$numberLong": "1725809935346" } }, + "y": { "$numberDouble": "390.51" } + }, + { + "label": "Label", + "id": "2024-09-09T18:31:47Z", + "x": { "$date": { "$numberLong": "1725906707703" } }, + "y": { "$numberDouble": "393.16" } + }, + { + "label": "Label", + "id": "2024-09-10T21:24:40Z", + "x": { "$date": { "$numberLong": "1726003480059" } }, + "y": { "$numberDouble": "395.82" } + }, + { + "label": "Label", + "id": "2024-09-12T00:17:32Z", + "x": { "$date": { "$numberLong": "1726100252416" } }, + "y": { "$numberDouble": "398.48" } + }, + { + "label": "Label", + "id": "2024-09-13T03:10:24Z", + "x": { "$date": { "$numberLong": "1726197024773" } }, + "y": { "$numberDouble": "401.13" } + }, + { + "label": "Label", + "id": "2024-09-14T06:03:17Z", + "x": { "$date": { "$numberLong": "1726293797129" } }, + "y": { "$numberDouble": "403.79" } + }, + { + "label": "Label", + "id": "2024-09-15T08:56:09Z", + "x": { "$date": { "$numberLong": "1726390569486" } }, + "y": { "$numberDouble": "406.45" } + }, + { + "label": "Label", + "id": "2024-09-16T11:49:01Z", + "x": { "$date": { "$numberLong": "1726487341843" } }, + "y": { "$numberDouble": "409.1" } + }, + { + "label": "Label", + "id": "2024-09-17T14:41:54Z", + "x": { "$date": { "$numberLong": "1726584114199" } }, + "y": { "$numberDouble": "411.76" } + }, + { + "label": "Label", + "id": "2024-09-18T17:34:46Z", + "x": { "$date": { "$numberLong": "1726680886556" } }, + "y": { "$numberDouble": "414.41" } + }, + { + "label": "Label", + "id": "2024-09-19T20:27:38Z", + "x": { "$date": { "$numberLong": "1726777658913" } }, + "y": { "$numberDouble": "417.07" } + }, + { + "label": "Label", + "id": "2024-09-20T23:20:31Z", + "x": { "$date": { "$numberLong": "1726874431269" } }, + "y": { "$numberDouble": "419.73" } + }, + { + "label": "Label", + "id": "2024-09-22T02:13:23Z", + "x": { "$date": { "$numberLong": "1726971203626" } }, + "y": { "$numberDouble": "422.38" } + }, + { + "label": "Label", + "id": "2024-09-23T05:06:15Z", + "x": { "$date": { "$numberLong": "1727067975983" } }, + "y": { "$numberDouble": "425.04" } + }, + { + "label": "Label", + "id": "2024-09-24T07:59:08Z", + "x": { "$date": { "$numberLong": "1727164748339" } }, + "y": { "$numberDouble": "427.7" } + }, + { + "label": "Label", + "id": "2024-09-25T10:52:00Z", + "x": { "$date": { "$numberLong": "1727261520696" } }, + "y": { "$numberDouble": "430.35" } + }, + { + "label": "Label", + "id": "2024-09-26T13:44:53Z", + "x": { "$date": { "$numberLong": "1727358293053" } }, + "y": { "$numberDouble": "433.01" } + }, + { + "label": "Label", + "id": "2024-09-27T16:37:45Z", + "x": { "$date": { "$numberLong": "1727455065409" } }, + "y": { "$numberDouble": "435.67" } + }, + { + "label": "Label", + "id": "2024-09-28T19:30:37Z", + "x": { "$date": { "$numberLong": "1727551837766" } }, + "y": { "$numberDouble": "438.32" } + }, + { + "label": "Label", + "id": "2024-09-29T22:23:30Z", + "x": { "$date": { "$numberLong": "1727648610123" } }, + "y": { "$numberDouble": "440.98" } + }, + { + "label": "Label", + "id": "2024-10-01T01:16:22Z", + "x": { "$date": { "$numberLong": "1727745382479" } }, + "y": { "$numberDouble": "443.64" } + }, + { + "label": "Label", + "id": "2024-10-02T04:09:14Z", + "x": { "$date": { "$numberLong": "1727842154836" } }, + "y": { "$numberDouble": "446.29" } + }, + { + "label": "Label", + "id": "2024-10-03T07:02:07Z", + "x": { "$date": { "$numberLong": "1727938927193" } }, + "y": { "$numberDouble": "448.95" } + }, + { + "label": "Label", + "id": "2024-10-04T09:54:59Z", + "x": { "$date": { "$numberLong": "1728035699550" } }, + "y": { "$numberDouble": "451.61" } + }, + { + "label": "Label", + "id": "2024-10-05T12:47:51Z", + "x": { "$date": { "$numberLong": "1728132471906" } }, + "y": { "$numberDouble": "454.26" } + }, + { + "label": "Label", + "id": "2024-10-06T15:40:44Z", + "x": { "$date": { "$numberLong": "1728229244263" } }, + "y": { "$numberDouble": "456.92" } + }, + { + "label": "Label", + "id": "2024-10-07T18:33:36Z", + "x": { "$date": { "$numberLong": "1728326016620" } }, + "y": { "$numberDouble": "459.58" } + }, + { + "label": "Label", + "id": "2024-10-08T21:26:28Z", + "x": { "$date": { "$numberLong": "1728422788976" } }, + "y": { "$numberDouble": "462.23" } + }, + { + "label": "Label", + "id": "2024-10-10T00:19:21Z", + "x": { "$date": { "$numberLong": "1728519561333" } }, + "y": { "$numberDouble": "464.89" } + }, + { + "label": "Label", + "id": "2024-10-11T03:12:13Z", + "x": { "$date": { "$numberLong": "1728616333690" } }, + "y": { "$numberDouble": "467.54" } + }, + { + "label": "Label", + "id": "2024-10-12T06:05:06Z", + "x": { "$date": { "$numberLong": "1728713106046" } }, + "y": { "$numberDouble": "470.2" } + }, + { + "label": "Label", + "id": "2024-10-13T08:57:58Z", + "x": { "$date": { "$numberLong": "1728809878403" } }, + "y": { "$numberDouble": "472.86" } + }, + { + "label": "Label", + "id": "2024-10-14T11:50:50Z", + "x": { "$date": { "$numberLong": "1728906650760" } }, + "y": { "$numberDouble": "475.51" } + }, + { + "label": "Label", + "id": "2024-10-15T14:43:43Z", + "x": { "$date": { "$numberLong": "1729003423116" } }, + "y": { "$numberDouble": "478.17" } + }, + { + "label": "Label", + "id": "2024-10-16T17:36:35Z", + "x": { "$date": { "$numberLong": "1729100195473" } }, + "y": { "$numberDouble": "480.83" } + }, + { + "label": "Label", + "id": "2024-10-17T20:29:27Z", + "x": { "$date": { "$numberLong": "1729196967830" } }, + "y": { "$numberDouble": "483.48" } + }, + { + "label": "Label", + "id": "2024-10-18T23:22:20Z", + "x": { "$date": { "$numberLong": "1729293740186" } }, + "y": { "$numberDouble": "486.14" } + }, + { + "label": "Label", + "id": "2024-10-20T02:15:12Z", + "x": { "$date": { "$numberLong": "1729390512543" } }, + "y": { "$numberDouble": "488.8" } + }, + { + "label": "Label", + "id": "2024-10-21T05:08:04Z", + "x": { "$date": { "$numberLong": "1729487284900" } }, + "y": { "$numberDouble": "491.45" } + }, + { + "label": "Label", + "id": "2024-10-22T08:00:57Z", + "x": { "$date": { "$numberLong": "1729584057256" } }, + "y": { "$numberDouble": "494.11" } + }, + { + "label": "Label", + "id": "2024-10-23T10:53:49Z", + "x": { "$date": { "$numberLong": "1729680829613" } }, + "y": { "$numberDouble": "496.77" } + }, + { + "label": "Label", + "id": "2024-10-24T13:46:41Z", + "x": { "$date": { "$numberLong": "1729777601970" } }, + "y": { "$numberDouble": "499.42" } + }, + { + "label": "Label", + "id": "2024-10-25T16:39:34Z", + "x": { "$date": { "$numberLong": "1729874374326" } }, + "y": { "$numberDouble": "502.08" } + }, + { + "label": "Label", + "id": "2024-10-26T19:32:26Z", + "x": { "$date": { "$numberLong": "1729971146683" } }, + "y": { "$numberDouble": "504.74" } + }, + { + "label": "Label", + "id": "2024-10-27T22:25:19Z", + "x": { "$date": { "$numberLong": "1730067919040" } }, + "y": { "$numberDouble": "507.39" } + }, + { + "label": "Label", + "id": "2024-10-29T01:18:11Z", + "x": { "$date": { "$numberLong": "1730164691396" } }, + "y": { "$numberDouble": "510.05" } + }, + { + "label": "Label", + "id": "2024-10-30T04:11:03Z", + "x": { "$date": { "$numberLong": "1730261463753" } }, + "y": { "$numberDouble": "512.71" } + }, + { + "label": "Label", + "id": "2024-10-31T07:03:56Z", + "x": { "$date": { "$numberLong": "1730358236110" } }, + "y": { "$numberDouble": "515.36" } + }, + { + "label": "Label", + "id": "2024-11-01T09:56:48Z", + "x": { "$date": { "$numberLong": "1730455008466" } }, + "y": { "$numberDouble": "518.02" } + }, + { + "label": "Label", + "id": "2024-11-02T12:49:40Z", + "x": { "$date": { "$numberLong": "1730551780823" } }, + "y": { "$numberDouble": "520.68" } + }, + { + "label": "Label", + "id": "2024-11-03T15:42:33Z", + "x": { "$date": { "$numberLong": "1730648553180" } }, + "y": { "$numberDouble": "523.33" } + }, + { + "label": "Label", + "id": "2024-11-04T18:35:25Z", + "x": { "$date": { "$numberLong": "1730745325536" } }, + "y": { "$numberDouble": "525.99" } + }, + { + "label": "Label", + "id": "2024-11-05T21:28:17Z", + "x": { "$date": { "$numberLong": "1730842097893" } }, + "y": { "$numberDouble": "528.64" } + }, + { + "label": "Label", + "id": "2024-11-07T00:21:10Z", + "x": { "$date": { "$numberLong": "1730938870250" } }, + "y": { "$numberDouble": "531.3" } + }, + { + "label": "Label", + "id": "2024-11-08T03:14:02Z", + "x": { "$date": { "$numberLong": "1731035642606" } }, + "y": { "$numberDouble": "533.96" } + }, + { + "label": "Label", + "id": "2024-11-09T06:06:54Z", + "x": { "$date": { "$numberLong": "1731132414963" } }, + "y": { "$numberDouble": "536.61" } + }, + { + "label": "Label", + "id": "2024-11-10T08:59:47Z", + "x": { "$date": { "$numberLong": "1731229187320" } }, + "y": { "$numberDouble": "539.27" } + }, + { + "label": "Label", + "id": "2024-11-11T11:52:39Z", + "x": { "$date": { "$numberLong": "1731325959677" } }, + "y": { "$numberDouble": "541.93" } + }, + { + "label": "Label", + "id": "2024-11-12T14:45:32Z", + "x": { "$date": { "$numberLong": "1731422732033" } }, + "y": { "$numberDouble": "544.58" } + }, + { + "label": "Label", + "id": "2024-11-13T17:38:24Z", + "x": { "$date": { "$numberLong": "1731519504390" } }, + "y": { "$numberDouble": "547.24" } + }, + { + "label": "Label", + "id": "2024-11-14T20:31:16Z", + "x": { "$date": { "$numberLong": "1731616276747" } }, + "y": { "$numberDouble": "549.9" } + }, + { + "label": "Label", + "id": "2024-11-15T23:24:09Z", + "x": { "$date": { "$numberLong": "1731713049103" } }, + "y": { "$numberDouble": "552.55" } + }, + { + "label": "Label", + "id": "2024-11-17T02:17:01Z", + "x": { "$date": { "$numberLong": "1731809821460" } }, + "y": { "$numberDouble": "555.21" } + }, + { + "label": "Label", + "id": "2024-11-18T05:09:53Z", + "x": { "$date": { "$numberLong": "1731906593817" } }, + "y": { "$numberDouble": "557.87" } + }, + { + "label": "Label", + "id": "2024-11-19T08:02:46Z", + "x": { "$date": { "$numberLong": "1732003366173" } }, + "y": { "$numberDouble": "560.52" } + }, + { + "label": "Label", + "id": "2024-11-20T10:55:38Z", + "x": { "$date": { "$numberLong": "1732100138530" } }, + "y": { "$numberDouble": "563.18" } + }, + { + "label": "Label", + "id": "2024-11-21T13:48:30Z", + "x": { "$date": { "$numberLong": "1732196910887" } }, + "y": { "$numberDouble": "565.84" } + }, + { + "label": "Label", + "id": "2024-11-22T16:41:23Z", + "x": { "$date": { "$numberLong": "1732293683243" } }, + "y": { "$numberDouble": "568.49" } + }, + { + "label": "Label", + "id": "2024-11-23T19:34:15Z", + "x": { "$date": { "$numberLong": "1732390455600" } }, + "y": { "$numberDouble": "571.15" } + }, + { + "label": "Label", + "id": "2024-11-24T22:27:07Z", + "x": { "$date": { "$numberLong": "1732487227957" } }, + "y": { "$numberDouble": "573.81" } + }, + { + "label": "Label", + "id": "2024-11-26T01:20:00Z", + "x": { "$date": { "$numberLong": "1732584000313" } }, + "y": { "$numberDouble": "576.46" } + }, + { + "label": "Label", + "id": "2024-11-27T04:12:52Z", + "x": { "$date": { "$numberLong": "1732680772670" } }, + "y": { "$numberDouble": "579.12" } + }, + { + "label": "Label", + "id": "2024-11-28T07:05:45Z", + "x": { "$date": { "$numberLong": "1732777545027" } }, + "y": { "$numberDouble": "581.77" } + }, + { + "label": "Label", + "id": "2024-11-29T09:58:37Z", + "x": { "$date": { "$numberLong": "1732874317383" } }, + "y": { "$numberDouble": "584.43" } + }, + { + "label": "Label", + "id": "2024-11-30T12:51:29Z", + "x": { "$date": { "$numberLong": "1732971089740" } }, + "y": { "$numberDouble": "587.09" } + }, + { + "label": "Label", + "id": "2024-12-01T15:44:22Z", + "x": { "$date": { "$numberLong": "1733067862097" } }, + "y": { "$numberDouble": "589.74" } + }, + { + "label": "Label", + "id": "2024-12-02T18:37:14Z", + "x": { "$date": { "$numberLong": "1733164634453" } }, + "y": { "$numberDouble": "592.4" } + }, + { + "label": "Label", + "id": "2024-12-03T21:30:06Z", + "x": { "$date": { "$numberLong": "1733261406810" } }, + "y": { "$numberDouble": "595.06" } + }, + { + "label": "Label", + "id": "2024-12-05T00:22:59Z", + "x": { "$date": { "$numberLong": "1733358179167" } }, + "y": { "$numberDouble": "597.71" } + }, + { + "label": "Label", + "id": "2024-12-06T03:15:51Z", + "x": { "$date": { "$numberLong": "1733454951523" } }, + "y": { "$numberDouble": "600.37" } + }, + { + "label": "Label", + "id": "2024-12-07T06:08:43Z", + "x": { "$date": { "$numberLong": "1733551723880" } }, + "y": { "$numberDouble": "603.03" } + }, + { + "label": "Label", + "id": "2024-12-08T09:01:36Z", + "x": { "$date": { "$numberLong": "1733648496237" } }, + "y": { "$numberDouble": "605.68" } + }, + { + "label": "Label", + "id": "2024-12-09T11:54:28Z", + "x": { "$date": { "$numberLong": "1733745268593" } }, + "y": { "$numberDouble": "608.34" } + }, + { + "label": "Label", + "id": "2024-12-10T14:47:20Z", + "x": { "$date": { "$numberLong": "1733842040950" } }, + "y": { "$numberInt": "611" } + }, + { + "label": "Label", + "id": "2024-12-11T17:40:13Z", + "x": { "$date": { "$numberLong": "1733938813307" } }, + "y": { "$numberDouble": "613.65" } + }, + { + "label": "Label", + "id": "2024-12-12T20:33:05Z", + "x": { "$date": { "$numberLong": "1734035585663" } }, + "y": { "$numberDouble": "616.31" } + }, + { + "label": "Label", + "id": "2024-12-13T23:25:58Z", + "x": { "$date": { "$numberLong": "1734132358020" } }, + "y": { "$numberDouble": "618.97" } + }, + { + "label": "Label", + "id": "2024-12-15T02:18:50Z", + "x": { "$date": { "$numberLong": "1734229130377" } }, + "y": { "$numberDouble": "621.62" } + }, + { + "label": "Label", + "id": "2024-12-16T05:11:42Z", + "x": { "$date": { "$numberLong": "1734325902733" } }, + "y": { "$numberDouble": "624.28" } + }, + { + "label": "Label", + "id": "2024-12-17T08:04:35Z", + "x": { "$date": { "$numberLong": "1734422675090" } }, + "y": { "$numberDouble": "626.94" } + }, + { + "label": "Label", + "id": "2024-12-18T10:57:27Z", + "x": { "$date": { "$numberLong": "1734519447447" } }, + "y": { "$numberDouble": "629.59" } + }, + { + "label": "Label", + "id": "2024-12-19T13:50:19Z", + "x": { "$date": { "$numberLong": "1734616219804" } }, + "y": { "$numberDouble": "632.25" } + }, + { + "label": "Label", + "id": "2024-12-20T16:43:12Z", + "x": { "$date": { "$numberLong": "1734712992160" } }, + "y": { "$numberDouble": "634.9" } + }, + { + "label": "Label", + "id": "2024-12-21T19:36:04Z", + "x": { "$date": { "$numberLong": "1734809764517" } }, + "y": { "$numberDouble": "637.56" } + }, + { + "label": "Label", + "id": "2024-12-22T22:28:56Z", + "x": { "$date": { "$numberLong": "1734906536874" } }, + "y": { "$numberDouble": "640.22" } + }, + { + "label": "Label", + "id": "2024-12-24T01:21:49Z", + "x": { "$date": { "$numberLong": "1735003309230" } }, + "y": { "$numberDouble": "642.87" } + }, + { + "label": "Label", + "id": "2024-12-25T04:14:41Z", + "x": { "$date": { "$numberLong": "1735100081587" } }, + "y": { "$numberDouble": "645.53" } + }, + { + "label": "Label", + "id": "2024-12-26T07:07:33Z", + "x": { "$date": { "$numberLong": "1735196853944" } }, + "y": { "$numberDouble": "648.19" } + }, + { + "label": "Label", + "id": "2024-12-27T10:00:26Z", + "x": { "$date": { "$numberLong": "1735293626300" } }, + "y": { "$numberDouble": "650.84" } + }, + { + "label": "Label", + "id": "2024-12-28T12:53:18Z", + "x": { "$date": { "$numberLong": "1735390398657" } }, + "y": { "$numberDouble": "653.5" } + }, + { + "label": "Label", + "id": "2024-12-29T15:46:11Z", + "x": { "$date": { "$numberLong": "1735487171014" } }, + "y": { "$numberDouble": "656.16" } + }, + { + "label": "Label", + "id": "2024-12-30T18:39:03Z", + "x": { "$date": { "$numberLong": "1735583943370" } }, + "y": { "$numberDouble": "658.81" } + }, + { + "label": "Label", + "id": "2024-12-31T21:31:55Z", + "x": { "$date": { "$numberLong": "1735680715727" } }, + "y": { "$numberDouble": "661.47" } + }, + { + "label": "Label", + "id": "2025-01-02T00:24:48Z", + "x": { "$date": { "$numberLong": "1735777488084" } }, + "y": { "$numberDouble": "664.13" } + }, + { + "label": "Label", + "id": "2025-01-03T03:17:40Z", + "x": { "$date": { "$numberLong": "1735874260440" } }, + "y": { "$numberDouble": "666.78" } + }, + { + "label": "Label", + "id": "2025-01-04T06:10:32Z", + "x": { "$date": { "$numberLong": "1735971032797" } }, + "y": { "$numberDouble": "669.44" } + }, + { + "label": "Label", + "id": "2025-01-05T09:03:25Z", + "x": { "$date": { "$numberLong": "1736067805154" } }, + "y": { "$numberDouble": "672.1" } + }, + { + "label": "Label", + "id": "2025-01-06T11:56:17Z", + "x": { "$date": { "$numberLong": "1736164577510" } }, + "y": { "$numberDouble": "674.75" } + }, + { + "label": "Label", + "id": "2025-01-07T14:49:09Z", + "x": { "$date": { "$numberLong": "1736261349867" } }, + "y": { "$numberDouble": "677.41" } + }, + { + "label": "Label", + "id": "2025-01-08T17:42:02Z", + "x": { "$date": { "$numberLong": "1736358122224" } }, + "y": { "$numberDouble": "680.07" } + }, + { + "label": "Label", + "id": "2025-01-09T20:34:54Z", + "x": { "$date": { "$numberLong": "1736454894580" } }, + "y": { "$numberDouble": "682.72" } + }, + { + "label": "Label", + "id": "2025-01-10T23:27:46Z", + "x": { "$date": { "$numberLong": "1736551666937" } }, + "y": { "$numberDouble": "685.38" } + }, + { + "label": "Label", + "id": "2025-01-12T02:20:39Z", + "x": { "$date": { "$numberLong": "1736648439294" } }, + "y": { "$numberDouble": "688.03" } + }, + { + "label": "Label", + "id": "2025-01-13T05:13:31Z", + "x": { "$date": { "$numberLong": "1736745211650" } }, + "y": { "$numberDouble": "690.69" } + }, + { + "label": "Label", + "id": "2025-01-14T08:06:24Z", + "x": { "$date": { "$numberLong": "1736841984007" } }, + "y": { "$numberDouble": "693.35" } + }, + { + "label": "Label", + "id": "2025-01-15T10:59:16Z", + "x": { "$date": { "$numberLong": "1736938756364" } }, + "y": { "$numberInt": "696" } + }, + { + "label": "Label", + "id": "2025-01-16T13:52:08Z", + "x": { "$date": { "$numberLong": "1737035528720" } }, + "y": { "$numberDouble": "698.66" } + }, + { + "label": "Label", + "id": "2025-01-17T16:45:01Z", + "x": { "$date": { "$numberLong": "1737132301077" } }, + "y": { "$numberDouble": "701.32" } + }, + { + "label": "Label", + "id": "2025-01-18T19:37:53Z", + "x": { "$date": { "$numberLong": "1737229073434" } }, + "y": { "$numberDouble": "703.97" } + }, + { + "label": "Label", + "id": "2025-01-19T22:30:45Z", + "x": { "$date": { "$numberLong": "1737325845790" } }, + "y": { "$numberDouble": "706.63" } + }, + { + "label": "Label", + "id": "2025-01-21T01:23:38Z", + "x": { "$date": { "$numberLong": "1737422618147" } }, + "y": { "$numberDouble": "709.29" } + }, + { + "label": "Label", + "id": "2025-01-22T04:16:30Z", + "x": { "$date": { "$numberLong": "1737519390504" } }, + "y": { "$numberDouble": "711.94" } + }, + { + "label": "Label", + "id": "2025-01-23T07:09:22Z", + "x": { "$date": { "$numberLong": "1737616162861" } }, + "y": { "$numberDouble": "714.6" } + } + ], + "_id": { "$oid": "66189c858bcc89e3792dd254" } + }, + "365d": { + "id": "365d", + "name": "Last 365D", + "color": "#2e7c67", + "data": [ + { + "label": "Label", + "id": "2024-03-28T00:06:38Z", + "x": { "$date": { "$numberLong": "1711584398915" } }, + "y": { "$numberInt": "0" } + }, + { + "label": "Label", + "id": "2024-03-29T02:14:24Z", + "x": { "$date": { "$numberLong": "1711678464200" } }, + "y": { "$numberDouble": "2.69" } + }, + { + "label": "Label", + "id": "2024-03-30T04:22:09Z", + "x": { "$date": { "$numberLong": "1711772529486" } }, + "y": { "$numberDouble": "5.38" } + }, + { + "label": "Label", + "id": "2024-03-31T06:29:54Z", + "x": { "$date": { "$numberLong": "1711866594771" } }, + "y": { "$numberDouble": "8.07" } + }, + { + "label": "Label", + "id": "2024-04-01T08:37:40Z", + "x": { "$date": { "$numberLong": "1711960660057" } }, + "y": { "$numberDouble": "10.76" } + }, + { + "label": "Label", + "id": "2024-04-02T10:45:25Z", + "x": { "$date": { "$numberLong": "1712054725342" } }, + "y": { "$numberDouble": "13.45" } + }, + { + "label": "Label", + "id": "2024-04-03T12:53:10Z", + "x": { "$date": { "$numberLong": "1712148790628" } }, + "y": { "$numberDouble": "16.15" } + }, + { + "label": "Label", + "id": "2024-04-04T15:00:55Z", + "x": { "$date": { "$numberLong": "1712242855913" } }, + "y": { "$numberDouble": "18.84" } + }, + { + "label": "Label", + "id": "2024-04-05T17:08:41Z", + "x": { "$date": { "$numberLong": "1712336921199" } }, + "y": { "$numberDouble": "21.53" } + }, + { + "label": "Label", + "id": "2024-04-06T19:16:26Z", + "x": { "$date": { "$numberLong": "1712430986485" } }, + "y": { "$numberDouble": "24.22" } + }, + { + "label": "Label", + "id": "2024-04-07T21:24:11Z", + "x": { "$date": { "$numberLong": "1712525051770" } }, + "y": { "$numberDouble": "26.91" } + }, + { + "label": "Label", + "id": "2024-04-08T23:31:57Z", + "x": { "$date": { "$numberLong": "1712619117056" } }, + "y": { "$numberDouble": "29.6" } + }, + { + "label": "Label", + "id": "2024-04-10T01:39:42Z", + "x": { "$date": { "$numberLong": "1712713182341" } }, + "y": { "$numberDouble": "32.29" } + }, + { + "label": "Label", + "id": "2024-04-11T03:47:27Z", + "x": { "$date": { "$numberLong": "1712807247627" } }, + "y": { "$numberDouble": "34.98" } + }, + { + "label": "Label", + "id": "2024-04-12T05:55:12Z", + "x": { "$date": { "$numberLong": "1712901312912" } }, + "y": { "$numberDouble": "37.67" } + }, + { + "label": "Label", + "id": "2024-04-13T08:02:58Z", + "x": { "$date": { "$numberLong": "1712995378198" } }, + "y": { "$numberDouble": "40.36" } + }, + { + "label": "Label", + "id": "2024-04-14T10:10:43Z", + "x": { "$date": { "$numberLong": "1713089443484" } }, + "y": { "$numberDouble": "43.05" } + }, + { + "label": "Label", + "id": "2024-04-15T12:18:28Z", + "x": { "$date": { "$numberLong": "1713183508769" } }, + "y": { "$numberDouble": "45.75" } + }, + { + "label": "Label", + "id": "2024-04-16T14:26:14Z", + "x": { "$date": { "$numberLong": "1713277574055" } }, + "y": { "$numberDouble": "48.44" } + }, + { + "label": "Label", + "id": "2024-04-17T16:33:59Z", + "x": { "$date": { "$numberLong": "1713371639340" } }, + "y": { "$numberDouble": "51.13" } + }, + { + "label": "Label", + "id": "2024-04-18T18:41:44Z", + "x": { "$date": { "$numberLong": "1713465704626" } }, + "y": { "$numberDouble": "53.82" } + }, + { + "label": "Label", + "id": "2024-04-19T20:49:29Z", + "x": { "$date": { "$numberLong": "1713559769911" } }, + "y": { "$numberDouble": "56.51" } + }, + { + "label": "Label", + "id": "2024-04-20T22:57:15Z", + "x": { "$date": { "$numberLong": "1713653835197" } }, + "y": { "$numberDouble": "59.2" } + }, + { + "label": "Label", + "id": "2024-04-22T01:05:00Z", + "x": { "$date": { "$numberLong": "1713747900483" } }, + "y": { "$numberDouble": "61.89" } + }, + { + "label": "Label", + "id": "2024-04-23T03:12:45Z", + "x": { "$date": { "$numberLong": "1713841965768" } }, + "y": { "$numberDouble": "64.58" } + }, + { + "label": "Label", + "id": "2024-04-24T05:20:31Z", + "x": { "$date": { "$numberLong": "1713936031054" } }, + "y": { "$numberDouble": "67.27" } + }, + { + "label": "Label", + "id": "2024-04-25T07:28:16Z", + "x": { "$date": { "$numberLong": "1714030096339" } }, + "y": { "$numberDouble": "69.96" } + }, + { + "label": "Label", + "id": "2024-04-26T09:36:01Z", + "x": { "$date": { "$numberLong": "1714124161625" } }, + "y": { "$numberDouble": "72.66" } + }, + { + "label": "Label", + "id": "2024-04-27T11:43:46Z", + "x": { "$date": { "$numberLong": "1714218226910" } }, + "y": { "$numberDouble": "75.35" } + }, + { + "label": "Label", + "id": "2024-04-28T13:51:32Z", + "x": { "$date": { "$numberLong": "1714312292196" } }, + "y": { "$numberDouble": "78.04" } + }, + { + "label": "Label", + "id": "2024-04-29T15:59:17Z", + "x": { "$date": { "$numberLong": "1714406357481" } }, + "y": { "$numberDouble": "80.73" } + }, + { + "label": "Label", + "id": "2024-04-30T18:07:02Z", + "x": { "$date": { "$numberLong": "1714500422767" } }, + "y": { "$numberDouble": "83.42" } + }, + { + "label": "Label", + "id": "2024-05-01T20:14:48Z", + "x": { "$date": { "$numberLong": "1714594488053" } }, + "y": { "$numberDouble": "86.11" } + }, + { + "label": "Label", + "id": "2024-05-02T22:22:33Z", + "x": { "$date": { "$numberLong": "1714688553338" } }, + "y": { "$numberDouble": "88.8" } + }, + { + "label": "Label", + "id": "2024-05-04T00:30:18Z", + "x": { "$date": { "$numberLong": "1714782618624" } }, + "y": { "$numberDouble": "91.49" } + }, + { + "label": "Label", + "id": "2024-05-05T02:38:03Z", + "x": { "$date": { "$numberLong": "1714876683909" } }, + "y": { "$numberDouble": "94.18" } + }, + { + "label": "Label", + "id": "2024-05-06T04:45:49Z", + "x": { "$date": { "$numberLong": "1714970749195" } }, + "y": { "$numberDouble": "96.87" } + }, + { + "label": "Label", + "id": "2024-05-07T06:53:34Z", + "x": { "$date": { "$numberLong": "1715064814480" } }, + "y": { "$numberDouble": "99.56" } + }, + { + "label": "Label", + "id": "2024-05-08T09:01:19Z", + "x": { "$date": { "$numberLong": "1715158879766" } }, + "y": { "$numberDouble": "102.26" } + }, + { + "label": "Label", + "id": "2024-05-09T11:09:05Z", + "x": { "$date": { "$numberLong": "1715252945052" } }, + "y": { "$numberDouble": "104.95" } + }, + { + "label": "Label", + "id": "2024-05-10T13:16:50Z", + "x": { "$date": { "$numberLong": "1715347010337" } }, + "y": { "$numberDouble": "107.64" } + }, + { + "label": "Label", + "id": "2024-05-11T15:24:35Z", + "x": { "$date": { "$numberLong": "1715441075623" } }, + "y": { "$numberDouble": "110.33" } + }, + { + "label": "Label", + "id": "2024-05-12T17:32:20Z", + "x": { "$date": { "$numberLong": "1715535140908" } }, + "y": { "$numberDouble": "113.02" } + }, + { + "label": "Label", + "id": "2024-05-13T19:40:06Z", + "x": { "$date": { "$numberLong": "1715629206194" } }, + "y": { "$numberDouble": "115.71" } + }, + { + "label": "Label", + "id": "2024-05-14T21:47:51Z", + "x": { "$date": { "$numberLong": "1715723271479" } }, + "y": { "$numberDouble": "118.4" } + }, + { + "label": "Label", + "id": "2024-05-15T23:55:36Z", + "x": { "$date": { "$numberLong": "1715817336765" } }, + "y": { "$numberDouble": "121.09" } + }, + { + "label": "Label", + "id": "2024-05-17T02:03:22Z", + "x": { "$date": { "$numberLong": "1715911402051" } }, + "y": { "$numberDouble": "123.78" } + }, + { + "label": "Label", + "id": "2024-05-18T04:11:07Z", + "x": { "$date": { "$numberLong": "1716005467336" } }, + "y": { "$numberDouble": "126.47" } + }, + { + "label": "Label", + "id": "2024-05-19T06:18:52Z", + "x": { "$date": { "$numberLong": "1716099532622" } }, + "y": { "$numberDouble": "129.16" } + }, + { + "label": "Label", + "id": "2024-05-20T08:26:37Z", + "x": { "$date": { "$numberLong": "1716193597907" } }, + "y": { "$numberDouble": "131.86" } + }, + { + "label": "Label", + "id": "2024-05-21T10:34:23Z", + "x": { "$date": { "$numberLong": "1716287663193" } }, + "y": { "$numberDouble": "134.55" } + }, + { + "label": "Label", + "id": "2024-05-22T12:42:08Z", + "x": { "$date": { "$numberLong": "1716381728478" } }, + "y": { "$numberDouble": "137.24" } + }, + { + "label": "Label", + "id": "2024-05-23T14:49:53Z", + "x": { "$date": { "$numberLong": "1716475793764" } }, + "y": { "$numberDouble": "139.93" } + }, + { + "label": "Label", + "id": "2024-05-24T16:57:39Z", + "x": { "$date": { "$numberLong": "1716569859049" } }, + "y": { "$numberDouble": "142.62" } + }, + { + "label": "Label", + "id": "2024-05-25T19:05:24Z", + "x": { "$date": { "$numberLong": "1716663924335" } }, + "y": { "$numberDouble": "145.31" } + }, + { + "label": "Label", + "id": "2024-05-26T21:13:09Z", + "x": { "$date": { "$numberLong": "1716757989621" } }, + "y": { "$numberInt": "148" } + }, + { + "label": "Label", + "id": "2024-05-27T23:20:54Z", + "x": { "$date": { "$numberLong": "1716852054906" } }, + "y": { "$numberDouble": "150.69" } + }, + { + "label": "Label", + "id": "2024-05-29T01:28:40Z", + "x": { "$date": { "$numberLong": "1716946120192" } }, + "y": { "$numberDouble": "153.38" } + }, + { + "label": "Label", + "id": "2024-05-30T03:36:25Z", + "x": { "$date": { "$numberLong": "1717040185477" } }, + "y": { "$numberDouble": "156.07" } + }, + { + "label": "Label", + "id": "2024-05-31T05:44:10Z", + "x": { "$date": { "$numberLong": "1717134250763" } }, + "y": { "$numberDouble": "158.77" } + }, + { + "label": "Label", + "id": "2024-06-01T07:51:56Z", + "x": { "$date": { "$numberLong": "1717228316048" } }, + "y": { "$numberDouble": "161.46" } + }, + { + "label": "Label", + "id": "2024-06-02T09:59:41Z", + "x": { "$date": { "$numberLong": "1717322381334" } }, + "y": { "$numberDouble": "164.15" } + }, + { + "label": "Label", + "id": "2024-06-03T12:07:26Z", + "x": { "$date": { "$numberLong": "1717416446620" } }, + "y": { "$numberDouble": "166.84" } + }, + { + "label": "Label", + "id": "2024-06-04T14:15:11Z", + "x": { "$date": { "$numberLong": "1717510511905" } }, + "y": { "$numberDouble": "169.53" } + }, + { + "label": "Label", + "id": "2024-06-05T16:22:57Z", + "x": { "$date": { "$numberLong": "1717604577191" } }, + "y": { "$numberDouble": "172.22" } + }, + { + "label": "Label", + "id": "2024-06-06T18:30:42Z", + "x": { "$date": { "$numberLong": "1717698642476" } }, + "y": { "$numberDouble": "174.91" } + }, + { + "label": "Label", + "id": "2024-06-07T20:38:27Z", + "x": { "$date": { "$numberLong": "1717792707762" } }, + "y": { "$numberDouble": "177.6" } + }, + { + "label": "Label", + "id": "2024-06-08T22:46:13Z", + "x": { "$date": { "$numberLong": "1717886773047" } }, + "y": { "$numberDouble": "180.29" } + }, + { + "label": "Label", + "id": "2024-06-10T00:53:58Z", + "x": { "$date": { "$numberLong": "1717980838333" } }, + "y": { "$numberDouble": "182.98" } + }, + { + "label": "Label", + "id": "2024-06-11T03:01:43Z", + "x": { "$date": { "$numberLong": "1718074903619" } }, + "y": { "$numberDouble": "185.67" } + }, + { + "label": "Label", + "id": "2024-06-12T05:09:28Z", + "x": { "$date": { "$numberLong": "1718168968904" } }, + "y": { "$numberDouble": "188.37" } + }, + { + "label": "Label", + "id": "2024-06-13T07:17:14Z", + "x": { "$date": { "$numberLong": "1718263034190" } }, + "y": { "$numberDouble": "191.06" } + }, + { + "label": "Label", + "id": "2024-06-14T09:24:59Z", + "x": { "$date": { "$numberLong": "1718357099475" } }, + "y": { "$numberDouble": "193.75" } + }, + { + "label": "Label", + "id": "2024-06-15T11:32:44Z", + "x": { "$date": { "$numberLong": "1718451164761" } }, + "y": { "$numberDouble": "196.44" } + }, + { + "label": "Label", + "id": "2024-06-16T13:40:30Z", + "x": { "$date": { "$numberLong": "1718545230046" } }, + "y": { "$numberDouble": "199.13" } + }, + { + "label": "Label", + "id": "2024-06-17T15:48:15Z", + "x": { "$date": { "$numberLong": "1718639295332" } }, + "y": { "$numberDouble": "201.82" } + }, + { + "label": "Label", + "id": "2024-06-18T17:56:00Z", + "x": { "$date": { "$numberLong": "1718733360618" } }, + "y": { "$numberDouble": "204.51" } + }, + { + "label": "Label", + "id": "2024-06-19T20:03:45Z", + "x": { "$date": { "$numberLong": "1718827425903" } }, + "y": { "$numberDouble": "207.2" } + }, + { + "label": "Label", + "id": "2024-06-20T22:11:31Z", + "x": { "$date": { "$numberLong": "1718921491189" } }, + "y": { "$numberDouble": "209.89" } + }, + { + "label": "Label", + "id": "2024-06-22T00:19:16Z", + "x": { "$date": { "$numberLong": "1719015556474" } }, + "y": { "$numberDouble": "212.58" } + }, + { + "label": "Label", + "id": "2024-06-23T02:27:01Z", + "x": { "$date": { "$numberLong": "1719109621760" } }, + "y": { "$numberDouble": "215.27" } + }, + { + "label": "Label", + "id": "2024-06-24T04:34:47Z", + "x": { "$date": { "$numberLong": "1719203687045" } }, + "y": { "$numberDouble": "217.97" } + }, + { + "label": "Label", + "id": "2024-06-25T06:42:32Z", + "x": { "$date": { "$numberLong": "1719297752331" } }, + "y": { "$numberDouble": "220.66" } + }, + { + "label": "Label", + "id": "2024-06-26T08:50:17Z", + "x": { "$date": { "$numberLong": "1719391817616" } }, + "y": { "$numberDouble": "223.35" } + }, + { + "label": "Label", + "id": "2024-06-27T10:58:02Z", + "x": { "$date": { "$numberLong": "1719485882902" } }, + "y": { "$numberDouble": "226.04" } + }, + { + "label": "Label", + "id": "2024-06-28T13:05:48Z", + "x": { "$date": { "$numberLong": "1719579948188" } }, + "y": { "$numberDouble": "228.73" } + }, + { + "label": "Label", + "id": "2024-06-29T15:13:33Z", + "x": { "$date": { "$numberLong": "1719674013473" } }, + "y": { "$numberDouble": "231.42" } + }, + { + "label": "Label", + "id": "2024-06-30T17:21:18Z", + "x": { "$date": { "$numberLong": "1719768078759" } }, + "y": { "$numberDouble": "234.11" } + }, + { + "label": "Label", + "id": "2024-07-01T19:29:04Z", + "x": { "$date": { "$numberLong": "1719862144044" } }, + "y": { "$numberDouble": "236.8" } + }, + { + "label": "Label", + "id": "2024-07-02T21:36:49Z", + "x": { "$date": { "$numberLong": "1719956209330" } }, + "y": { "$numberDouble": "239.49" } + }, + { + "label": "Label", + "id": "2024-07-03T23:44:34Z", + "x": { "$date": { "$numberLong": "1720050274615" } }, + "y": { "$numberDouble": "242.18" } + }, + { + "label": "Label", + "id": "2024-07-05T01:52:19Z", + "x": { "$date": { "$numberLong": "1720144339901" } }, + "y": { "$numberDouble": "244.88" } + }, + { + "label": "Label", + "id": "2024-07-06T04:00:05Z", + "x": { "$date": { "$numberLong": "1720238405187" } }, + "y": { "$numberDouble": "247.57" } + }, + { + "label": "Label", + "id": "2024-07-07T06:07:50Z", + "x": { "$date": { "$numberLong": "1720332470472" } }, + "y": { "$numberDouble": "250.26" } + }, + { + "label": "Label", + "id": "2024-07-08T08:15:35Z", + "x": { "$date": { "$numberLong": "1720426535758" } }, + "y": { "$numberDouble": "252.95" } + }, + { + "label": "Label", + "id": "2024-07-09T10:23:21Z", + "x": { "$date": { "$numberLong": "1720520601043" } }, + "y": { "$numberDouble": "255.64" } + }, + { + "label": "Label", + "id": "2024-07-10T12:31:06Z", + "x": { "$date": { "$numberLong": "1720614666329" } }, + "y": { "$numberDouble": "258.33" } + }, + { + "label": "Label", + "id": "2024-07-11T14:38:51Z", + "x": { "$date": { "$numberLong": "1720708731614" } }, + "y": { "$numberDouble": "261.02" } + }, + { + "label": "Label", + "id": "2024-07-12T16:46:36Z", + "x": { "$date": { "$numberLong": "1720802796900" } }, + "y": { "$numberDouble": "263.71" } + }, + { + "label": "Label", + "id": "2024-07-13T18:54:22Z", + "x": { "$date": { "$numberLong": "1720896862186" } }, + "y": { "$numberDouble": "266.4" } + }, + { + "label": "Label", + "id": "2024-07-14T21:02:07Z", + "x": { "$date": { "$numberLong": "1720990927471" } }, + "y": { "$numberDouble": "269.09" } + }, + { + "label": "Label", + "id": "2024-07-15T23:09:52Z", + "x": { "$date": { "$numberLong": "1721084992757" } }, + "y": { "$numberDouble": "271.78" } + }, + { + "label": "Label", + "id": "2024-07-17T01:17:38Z", + "x": { "$date": { "$numberLong": "1721179058042" } }, + "y": { "$numberDouble": "274.48" } + }, + { + "label": "Label", + "id": "2024-07-18T03:25:23Z", + "x": { "$date": { "$numberLong": "1721273123328" } }, + "y": { "$numberDouble": "277.17" } + }, + { + "label": "Label", + "id": "2024-07-19T05:33:08Z", + "x": { "$date": { "$numberLong": "1721367188613" } }, + "y": { "$numberDouble": "279.86" } + }, + { + "label": "Label", + "id": "2024-07-20T07:40:53Z", + "x": { "$date": { "$numberLong": "1721461253899" } }, + "y": { "$numberDouble": "282.55" } + }, + { + "label": "Label", + "id": "2024-07-21T09:48:39Z", + "x": { "$date": { "$numberLong": "1721555319184" } }, + "y": { "$numberDouble": "285.24" } + }, + { + "label": "Label", + "id": "2024-07-22T11:56:24Z", + "x": { "$date": { "$numberLong": "1721649384470" } }, + "y": { "$numberDouble": "287.93" } + }, + { + "label": "Label", + "id": "2024-07-23T14:04:09Z", + "x": { "$date": { "$numberLong": "1721743449756" } }, + "y": { "$numberDouble": "290.62" } + }, + { + "label": "Label", + "id": "2024-07-24T16:11:55Z", + "x": { "$date": { "$numberLong": "1721837515041" } }, + "y": { "$numberDouble": "293.31" } + }, + { + "label": "Label", + "id": "2024-07-25T18:19:40Z", + "x": { "$date": { "$numberLong": "1721931580327" } }, + "y": { "$numberInt": "296" } + }, + { + "label": "Label", + "id": "2024-07-26T20:27:25Z", + "x": { "$date": { "$numberLong": "1722025645612" } }, + "y": { "$numberDouble": "298.69" } + }, + { + "label": "Label", + "id": "2024-07-27T22:35:10Z", + "x": { "$date": { "$numberLong": "1722119710898" } }, + "y": { "$numberDouble": "301.38" } + }, + { + "label": "Label", + "id": "2024-07-29T00:42:56Z", + "x": { "$date": { "$numberLong": "1722213776183" } }, + "y": { "$numberDouble": "304.08" } + }, + { + "label": "Label", + "id": "2024-07-30T02:50:41Z", + "x": { "$date": { "$numberLong": "1722307841469" } }, + "y": { "$numberDouble": "306.77" } + }, + { + "label": "Label", + "id": "2024-07-31T04:58:26Z", + "x": { "$date": { "$numberLong": "1722401906755" } }, + "y": { "$numberDouble": "309.46" } + }, + { + "label": "Label", + "id": "2024-08-01T07:06:12Z", + "x": { "$date": { "$numberLong": "1722495972040" } }, + "y": { "$numberDouble": "312.15" } + }, + { + "label": "Label", + "id": "2024-08-02T09:13:57Z", + "x": { "$date": { "$numberLong": "1722590037326" } }, + "y": { "$numberDouble": "314.84" } + }, + { + "label": "Label", + "id": "2024-08-03T11:21:42Z", + "x": { "$date": { "$numberLong": "1722684102611" } }, + "y": { "$numberDouble": "317.53" } + }, + { + "label": "Label", + "id": "2024-08-04T13:29:27Z", + "x": { "$date": { "$numberLong": "1722778167897" } }, + "y": { "$numberDouble": "320.22" } + }, + { + "label": "Label", + "id": "2024-08-05T15:37:13Z", + "x": { "$date": { "$numberLong": "1722872233182" } }, + "y": { "$numberDouble": "322.91" } + }, + { + "label": "Label", + "id": "2024-08-06T17:44:58Z", + "x": { "$date": { "$numberLong": "1722966298468" } }, + "y": { "$numberDouble": "325.6" } + }, + { + "label": "Label", + "id": "2024-08-07T19:52:43Z", + "x": { "$date": { "$numberLong": "1723060363754" } }, + "y": { "$numberDouble": "328.29" } + }, + { + "label": "Label", + "id": "2024-08-08T22:00:29Z", + "x": { "$date": { "$numberLong": "1723154429039" } }, + "y": { "$numberDouble": "330.98" } + }, + { + "label": "Label", + "id": "2024-08-10T00:08:14Z", + "x": { "$date": { "$numberLong": "1723248494325" } }, + "y": { "$numberDouble": "333.68" } + }, + { + "label": "Label", + "id": "2024-08-11T02:15:59Z", + "x": { "$date": { "$numberLong": "1723342559610" } }, + "y": { "$numberDouble": "336.37" } + }, + { + "label": "Label", + "id": "2024-08-12T04:23:44Z", + "x": { "$date": { "$numberLong": "1723436624896" } }, + "y": { "$numberDouble": "339.06" } + }, + { + "label": "Label", + "id": "2024-08-13T06:31:30Z", + "x": { "$date": { "$numberLong": "1723530690181" } }, + "y": { "$numberDouble": "341.75" } + }, + { + "label": "Label", + "id": "2024-08-14T08:39:15Z", + "x": { "$date": { "$numberLong": "1723624755467" } }, + "y": { "$numberDouble": "344.44" } + }, + { + "label": "Label", + "id": "2024-08-15T10:47:00Z", + "x": { "$date": { "$numberLong": "1723718820753" } }, + "y": { "$numberDouble": "347.13" } + }, + { + "label": "Label", + "id": "2024-08-16T12:54:46Z", + "x": { "$date": { "$numberLong": "1723812886038" } }, + "y": { "$numberDouble": "349.82" } + }, + { + "label": "Label", + "id": "2024-08-17T15:02:31Z", + "x": { "$date": { "$numberLong": "1723906951324" } }, + "y": { "$numberDouble": "352.51" } + }, + { + "label": "Label", + "id": "2024-08-18T17:10:16Z", + "x": { "$date": { "$numberLong": "1724001016609" } }, + "y": { "$numberDouble": "355.2" } + }, + { + "label": "Label", + "id": "2024-08-19T19:18:01Z", + "x": { "$date": { "$numberLong": "1724095081895" } }, + "y": { "$numberDouble": "357.89" } + }, + { + "label": "Label", + "id": "2024-08-20T21:25:47Z", + "x": { "$date": { "$numberLong": "1724189147180" } }, + "y": { "$numberDouble": "360.59" } + }, + { + "label": "Label", + "id": "2024-08-21T23:33:32Z", + "x": { "$date": { "$numberLong": "1724283212466" } }, + "y": { "$numberDouble": "363.28" } + }, + { + "label": "Label", + "id": "2024-08-23T01:41:17Z", + "x": { "$date": { "$numberLong": "1724377277751" } }, + "y": { "$numberDouble": "365.97" } + }, + { + "label": "Label", + "id": "2024-08-24T03:49:03Z", + "x": { "$date": { "$numberLong": "1724471343037" } }, + "y": { "$numberDouble": "368.66" } + }, + { + "label": "Label", + "id": "2024-08-25T05:56:48Z", + "x": { "$date": { "$numberLong": "1724565408323" } }, + "y": { "$numberDouble": "371.35" } + }, + { + "label": "Label", + "id": "2024-08-26T08:04:33Z", + "x": { "$date": { "$numberLong": "1724659473608" } }, + "y": { "$numberDouble": "374.04" } + }, + { + "label": "Label", + "id": "2024-08-27T10:12:18Z", + "x": { "$date": { "$numberLong": "1724753538894" } }, + "y": { "$numberDouble": "376.73" } + }, + { + "label": "Label", + "id": "2024-08-28T12:20:04Z", + "x": { "$date": { "$numberLong": "1724847604179" } }, + "y": { "$numberDouble": "379.42" } + }, + { + "label": "Label", + "id": "2024-08-29T14:27:49Z", + "x": { "$date": { "$numberLong": "1724941669465" } }, + "y": { "$numberDouble": "382.11" } + }, + { + "label": "Label", + "id": "2024-08-30T16:35:34Z", + "x": { "$date": { "$numberLong": "1725035734750" } }, + "y": { "$numberDouble": "384.8" } + }, + { + "label": "Label", + "id": "2024-08-31T18:43:20Z", + "x": { "$date": { "$numberLong": "1725129800036" } }, + "y": { "$numberDouble": "387.49" } + }, + { + "label": "Label", + "id": "2024-09-01T20:51:05Z", + "x": { "$date": { "$numberLong": "1725223865322" } }, + "y": { "$numberDouble": "390.19" } + }, + { + "label": "Label", + "id": "2024-09-02T22:58:50Z", + "x": { "$date": { "$numberLong": "1725317930607" } }, + "y": { "$numberDouble": "392.88" } + }, + { + "label": "Label", + "id": "2024-09-04T01:06:35Z", + "x": { "$date": { "$numberLong": "1725411995893" } }, + "y": { "$numberDouble": "395.57" } + }, + { + "label": "Label", + "id": "2024-09-05T03:14:21Z", + "x": { "$date": { "$numberLong": "1725506061178" } }, + "y": { "$numberDouble": "398.26" } + }, + { + "label": "Label", + "id": "2024-09-06T05:22:06Z", + "x": { "$date": { "$numberLong": "1725600126464" } }, + "y": { "$numberDouble": "400.95" } + }, + { + "label": "Label", + "id": "2024-09-07T07:29:51Z", + "x": { "$date": { "$numberLong": "1725694191749" } }, + "y": { "$numberDouble": "403.64" } + }, + { + "label": "Label", + "id": "2024-09-08T09:37:37Z", + "x": { "$date": { "$numberLong": "1725788257035" } }, + "y": { "$numberDouble": "406.33" } + }, + { + "label": "Label", + "id": "2024-09-09T11:45:22Z", + "x": { "$date": { "$numberLong": "1725882322321" } }, + "y": { "$numberDouble": "409.02" } + }, + { + "label": "Label", + "id": "2024-09-10T13:53:07Z", + "x": { "$date": { "$numberLong": "1725976387606" } }, + "y": { "$numberDouble": "411.71" } + }, + { + "label": "Label", + "id": "2024-09-11T16:00:52Z", + "x": { "$date": { "$numberLong": "1726070452892" } }, + "y": { "$numberDouble": "414.4" } + }, + { + "label": "Label", + "id": "2024-09-12T18:08:38Z", + "x": { "$date": { "$numberLong": "1726164518177" } }, + "y": { "$numberDouble": "417.09" } + }, + { + "label": "Label", + "id": "2024-09-13T20:16:23Z", + "x": { "$date": { "$numberLong": "1726258583463" } }, + "y": { "$numberDouble": "419.79" } + }, + { + "label": "Label", + "id": "2024-09-14T22:24:08Z", + "x": { "$date": { "$numberLong": "1726352648748" } }, + "y": { "$numberDouble": "422.48" } + }, + { + "label": "Label", + "id": "2024-09-16T00:31:54Z", + "x": { "$date": { "$numberLong": "1726446714034" } }, + "y": { "$numberDouble": "425.17" } + }, + { + "label": "Label", + "id": "2024-09-17T02:39:39Z", + "x": { "$date": { "$numberLong": "1726540779319" } }, + "y": { "$numberDouble": "427.86" } + }, + { + "label": "Label", + "id": "2024-09-18T04:47:24Z", + "x": { "$date": { "$numberLong": "1726634844605" } }, + "y": { "$numberDouble": "430.55" } + }, + { + "label": "Label", + "id": "2024-09-19T06:55:09Z", + "x": { "$date": { "$numberLong": "1726728909891" } }, + "y": { "$numberDouble": "433.24" } + }, + { + "label": "Label", + "id": "2024-09-20T09:02:55Z", + "x": { "$date": { "$numberLong": "1726822975176" } }, + "y": { "$numberDouble": "435.93" } + }, + { + "label": "Label", + "id": "2024-09-21T11:10:40Z", + "x": { "$date": { "$numberLong": "1726917040462" } }, + "y": { "$numberDouble": "438.62" } + }, + { + "label": "Label", + "id": "2024-09-22T13:18:25Z", + "x": { "$date": { "$numberLong": "1727011105747" } }, + "y": { "$numberDouble": "441.31" } + }, + { + "label": "Label", + "id": "2024-09-23T15:26:11Z", + "x": { "$date": { "$numberLong": "1727105171033" } }, + "y": { "$numberInt": "444" } + }, + { + "label": "Label", + "id": "2024-09-24T17:33:56Z", + "x": { "$date": { "$numberLong": "1727199236318" } }, + "y": { "$numberDouble": "446.7" } + }, + { + "label": "Label", + "id": "2024-09-25T19:41:41Z", + "x": { "$date": { "$numberLong": "1727293301604" } }, + "y": { "$numberDouble": "449.39" } + }, + { + "label": "Label", + "id": "2024-09-26T21:49:26Z", + "x": { "$date": { "$numberLong": "1727387366890" } }, + "y": { "$numberDouble": "452.08" } + }, + { + "label": "Label", + "id": "2024-09-27T23:57:12Z", + "x": { "$date": { "$numberLong": "1727481432175" } }, + "y": { "$numberDouble": "454.77" } + }, + { + "label": "Label", + "id": "2024-09-29T02:04:57Z", + "x": { "$date": { "$numberLong": "1727575497461" } }, + "y": { "$numberDouble": "457.46" } + }, + { + "label": "Label", + "id": "2024-09-30T04:12:42Z", + "x": { "$date": { "$numberLong": "1727669562746" } }, + "y": { "$numberDouble": "460.15" } + }, + { + "label": "Label", + "id": "2024-10-01T06:20:28Z", + "x": { "$date": { "$numberLong": "1727763628032" } }, + "y": { "$numberDouble": "462.84" } + }, + { + "label": "Label", + "id": "2024-10-02T08:28:13Z", + "x": { "$date": { "$numberLong": "1727857693317" } }, + "y": { "$numberDouble": "465.53" } + }, + { + "label": "Label", + "id": "2024-10-03T10:35:58Z", + "x": { "$date": { "$numberLong": "1727951758603" } }, + "y": { "$numberDouble": "468.22" } + }, + { + "label": "Label", + "id": "2024-10-04T12:43:43Z", + "x": { "$date": { "$numberLong": "1728045823889" } }, + "y": { "$numberDouble": "470.91" } + }, + { + "label": "Label", + "id": "2024-10-05T14:51:29Z", + "x": { "$date": { "$numberLong": "1728139889174" } }, + "y": { "$numberDouble": "473.6" } + }, + { + "label": "Label", + "id": "2024-10-06T16:59:14Z", + "x": { "$date": { "$numberLong": "1728233954460" } }, + "y": { "$numberDouble": "476.3" } + }, + { + "label": "Label", + "id": "2024-10-07T19:06:59Z", + "x": { "$date": { "$numberLong": "1728328019745" } }, + "y": { "$numberDouble": "478.99" } + }, + { + "label": "Label", + "id": "2024-10-08T21:14:45Z", + "x": { "$date": { "$numberLong": "1728422085031" } }, + "y": { "$numberDouble": "481.68" } + }, + { + "label": "Label", + "id": "2024-10-09T23:22:30Z", + "x": { "$date": { "$numberLong": "1728516150316" } }, + "y": { "$numberDouble": "484.37" } + }, + { + "label": "Label", + "id": "2024-10-11T01:30:15Z", + "x": { "$date": { "$numberLong": "1728610215602" } }, + "y": { "$numberDouble": "487.06" } + }, + { + "label": "Label", + "id": "2024-10-12T03:38:00Z", + "x": { "$date": { "$numberLong": "1728704280888" } }, + "y": { "$numberDouble": "489.75" } + }, + { + "label": "Label", + "id": "2024-10-13T05:45:46Z", + "x": { "$date": { "$numberLong": "1728798346173" } }, + "y": { "$numberDouble": "492.44" } + }, + { + "label": "Label", + "id": "2024-10-14T07:53:31Z", + "x": { "$date": { "$numberLong": "1728892411459" } }, + "y": { "$numberDouble": "495.13" } + }, + { + "label": "Label", + "id": "2024-10-15T10:01:16Z", + "x": { "$date": { "$numberLong": "1728986476744" } }, + "y": { "$numberDouble": "497.82" } + }, + { + "label": "Label", + "id": "2024-10-16T12:09:02Z", + "x": { "$date": { "$numberLong": "1729080542030" } }, + "y": { "$numberDouble": "500.51" } + }, + { + "label": "Label", + "id": "2024-10-17T14:16:47Z", + "x": { "$date": { "$numberLong": "1729174607315" } }, + "y": { "$numberDouble": "503.2" } + }, + { + "label": "Label", + "id": "2024-10-18T16:24:32Z", + "x": { "$date": { "$numberLong": "1729268672601" } }, + "y": { "$numberDouble": "505.9" } + }, + { + "label": "Label", + "id": "2024-10-19T18:32:17Z", + "x": { "$date": { "$numberLong": "1729362737886" } }, + "y": { "$numberDouble": "508.59" } + }, + { + "label": "Label", + "id": "2024-10-20T20:40:03Z", + "x": { "$date": { "$numberLong": "1729456803172" } }, + "y": { "$numberDouble": "511.28" } + }, + { + "label": "Label", + "id": "2024-10-21T22:47:48Z", + "x": { "$date": { "$numberLong": "1729550868458" } }, + "y": { "$numberDouble": "513.97" } + }, + { + "label": "Label", + "id": "2024-10-23T00:55:33Z", + "x": { "$date": { "$numberLong": "1729644933743" } }, + "y": { "$numberDouble": "516.66" } + }, + { + "label": "Label", + "id": "2024-10-24T03:03:19Z", + "x": { "$date": { "$numberLong": "1729738999029" } }, + "y": { "$numberDouble": "519.35" } + }, + { + "label": "Label", + "id": "2024-10-25T05:11:04Z", + "x": { "$date": { "$numberLong": "1729833064314" } }, + "y": { "$numberDouble": "522.04" } + }, + { + "label": "Label", + "id": "2024-10-26T07:18:49Z", + "x": { "$date": { "$numberLong": "1729927129600" } }, + "y": { "$numberDouble": "524.73" } + }, + { + "label": "Label", + "id": "2024-10-27T09:26:34Z", + "x": { "$date": { "$numberLong": "1730021194885" } }, + "y": { "$numberDouble": "527.42" } + }, + { + "label": "Label", + "id": "2024-10-28T11:34:20Z", + "x": { "$date": { "$numberLong": "1730115260171" } }, + "y": { "$numberDouble": "530.11" } + }, + { + "label": "Label", + "id": "2024-10-29T13:42:05Z", + "x": { "$date": { "$numberLong": "1730209325457" } }, + "y": { "$numberDouble": "532.8" } + }, + { + "label": "Label", + "id": "2024-10-30T15:49:50Z", + "x": { "$date": { "$numberLong": "1730303390742" } }, + "y": { "$numberDouble": "535.5" } + }, + { + "label": "Label", + "id": "2024-10-31T17:57:36Z", + "x": { "$date": { "$numberLong": "1730397456028" } }, + "y": { "$numberDouble": "538.19" } + }, + { + "label": "Label", + "id": "2024-11-01T20:05:21Z", + "x": { "$date": { "$numberLong": "1730491521313" } }, + "y": { "$numberDouble": "540.88" } + }, + { + "label": "Label", + "id": "2024-11-02T22:13:06Z", + "x": { "$date": { "$numberLong": "1730585586599" } }, + "y": { "$numberDouble": "543.57" } + }, + { + "label": "Label", + "id": "2024-11-04T00:20:51Z", + "x": { "$date": { "$numberLong": "1730679651884" } }, + "y": { "$numberDouble": "546.26" } + }, + { + "label": "Label", + "id": "2024-11-05T02:28:37Z", + "x": { "$date": { "$numberLong": "1730773717170" } }, + "y": { "$numberDouble": "548.95" } + }, + { + "label": "Label", + "id": "2024-11-06T04:36:22Z", + "x": { "$date": { "$numberLong": "1730867782456" } }, + "y": { "$numberDouble": "551.64" } + }, + { + "label": "Label", + "id": "2024-11-07T06:44:07Z", + "x": { "$date": { "$numberLong": "1730961847741" } }, + "y": { "$numberDouble": "554.33" } + }, + { + "label": "Label", + "id": "2024-11-08T08:51:53Z", + "x": { "$date": { "$numberLong": "1731055913027" } }, + "y": { "$numberDouble": "557.02" } + }, + { + "label": "Label", + "id": "2024-11-09T10:59:38Z", + "x": { "$date": { "$numberLong": "1731149978312" } }, + "y": { "$numberDouble": "559.71" } + }, + { + "label": "Label", + "id": "2024-11-10T13:07:23Z", + "x": { "$date": { "$numberLong": "1731244043598" } }, + "y": { "$numberDouble": "562.41" } + }, + { + "label": "Label", + "id": "2024-11-11T15:15:08Z", + "x": { "$date": { "$numberLong": "1731338108883" } }, + "y": { "$numberDouble": "565.1" } + }, + { + "label": "Label", + "id": "2024-11-12T17:22:54Z", + "x": { "$date": { "$numberLong": "1731432174169" } }, + "y": { "$numberDouble": "567.79" } + }, + { + "label": "Label", + "id": "2024-11-13T19:30:39Z", + "x": { "$date": { "$numberLong": "1731526239454" } }, + "y": { "$numberDouble": "570.48" } + }, + { + "label": "Label", + "id": "2024-11-14T21:38:24Z", + "x": { "$date": { "$numberLong": "1731620304740" } }, + "y": { "$numberDouble": "573.17" } + }, + { + "label": "Label", + "id": "2024-11-15T23:46:10Z", + "x": { "$date": { "$numberLong": "1731714370026" } }, + "y": { "$numberDouble": "575.86" } + }, + { + "label": "Label", + "id": "2024-11-17T01:53:55Z", + "x": { "$date": { "$numberLong": "1731808435311" } }, + "y": { "$numberDouble": "578.55" } + }, + { + "label": "Label", + "id": "2024-11-18T04:01:40Z", + "x": { "$date": { "$numberLong": "1731902500597" } }, + "y": { "$numberDouble": "581.24" } + }, + { + "label": "Label", + "id": "2024-11-19T06:09:25Z", + "x": { "$date": { "$numberLong": "1731996565882" } }, + "y": { "$numberDouble": "583.93" } + }, + { + "label": "Label", + "id": "2024-11-20T08:17:11Z", + "x": { "$date": { "$numberLong": "1732090631168" } }, + "y": { "$numberDouble": "586.62" } + }, + { + "label": "Label", + "id": "2024-11-21T10:24:56Z", + "x": { "$date": { "$numberLong": "1732184696453" } }, + "y": { "$numberDouble": "589.31" } + }, + { + "label": "Label", + "id": "2024-11-22T12:32:41Z", + "x": { "$date": { "$numberLong": "1732278761739" } }, + "y": { "$numberDouble": "592.01" } + }, + { + "label": "Label", + "id": "2024-11-23T14:40:27Z", + "x": { "$date": { "$numberLong": "1732372827025" } }, + "y": { "$numberDouble": "594.7" } + }, + { + "label": "Label", + "id": "2024-11-24T16:48:12Z", + "x": { "$date": { "$numberLong": "1732466892310" } }, + "y": { "$numberDouble": "597.39" } + }, + { + "label": "Label", + "id": "2024-11-25T18:55:57Z", + "x": { "$date": { "$numberLong": "1732560957596" } }, + "y": { "$numberDouble": "600.08" } + }, + { + "label": "Label", + "id": "2024-11-26T21:03:42Z", + "x": { "$date": { "$numberLong": "1732655022881" } }, + "y": { "$numberDouble": "602.77" } + }, + { + "label": "Label", + "id": "2024-11-27T23:11:28Z", + "x": { "$date": { "$numberLong": "1732749088167" } }, + "y": { "$numberDouble": "605.46" } + }, + { + "label": "Label", + "id": "2024-11-29T01:19:13Z", + "x": { "$date": { "$numberLong": "1732843153452" } }, + "y": { "$numberDouble": "608.15" } + }, + { + "label": "Label", + "id": "2024-11-30T03:26:58Z", + "x": { "$date": { "$numberLong": "1732937218738" } }, + "y": { "$numberDouble": "610.84" } + }, + { + "label": "Label", + "id": "2024-12-01T05:34:44Z", + "x": { "$date": { "$numberLong": "1733031284024" } }, + "y": { "$numberDouble": "613.53" } + }, + { + "label": "Label", + "id": "2024-12-02T07:42:29Z", + "x": { "$date": { "$numberLong": "1733125349309" } }, + "y": { "$numberDouble": "616.22" } + }, + { + "label": "Label", + "id": "2024-12-03T09:50:14Z", + "x": { "$date": { "$numberLong": "1733219414595" } }, + "y": { "$numberDouble": "618.91" } + }, + { + "label": "Label", + "id": "2024-12-04T11:57:59Z", + "x": { "$date": { "$numberLong": "1733313479880" } }, + "y": { "$numberDouble": "621.61" } + }, + { + "label": "Label", + "id": "2024-12-05T14:05:45Z", + "x": { "$date": { "$numberLong": "1733407545166" } }, + "y": { "$numberDouble": "624.3" } + }, + { + "label": "Label", + "id": "2024-12-06T16:13:30Z", + "x": { "$date": { "$numberLong": "1733501610451" } }, + "y": { "$numberDouble": "626.99" } + }, + { + "label": "Label", + "id": "2024-12-07T18:21:15Z", + "x": { "$date": { "$numberLong": "1733595675737" } }, + "y": { "$numberDouble": "629.68" } + }, + { + "label": "Label", + "id": "2024-12-08T20:29:01Z", + "x": { "$date": { "$numberLong": "1733689741022" } }, + "y": { "$numberDouble": "632.37" } + }, + { + "label": "Label", + "id": "2024-12-09T22:36:46Z", + "x": { "$date": { "$numberLong": "1733783806308" } }, + "y": { "$numberDouble": "635.06" } + }, + { + "label": "Label", + "id": "2024-12-11T00:44:31Z", + "x": { "$date": { "$numberLong": "1733877871594" } }, + "y": { "$numberDouble": "637.75" } + }, + { + "label": "Label", + "id": "2024-12-12T02:52:16Z", + "x": { "$date": { "$numberLong": "1733971936879" } }, + "y": { "$numberDouble": "640.44" } + }, + { + "label": "Label", + "id": "2024-12-13T05:00:02Z", + "x": { "$date": { "$numberLong": "1734066002165" } }, + "y": { "$numberDouble": "643.13" } + }, + { + "label": "Label", + "id": "2024-12-14T07:07:47Z", + "x": { "$date": { "$numberLong": "1734160067450" } }, + "y": { "$numberDouble": "645.82" } + }, + { + "label": "Label", + "id": "2024-12-15T09:15:32Z", + "x": { "$date": { "$numberLong": "1734254132736" } }, + "y": { "$numberDouble": "648.52" } + }, + { + "label": "Label", + "id": "2024-12-16T11:23:18Z", + "x": { "$date": { "$numberLong": "1734348198021" } }, + "y": { "$numberDouble": "651.21" } + }, + { + "label": "Label", + "id": "2024-12-17T13:31:03Z", + "x": { "$date": { "$numberLong": "1734442263307" } }, + "y": { "$numberDouble": "653.9" } + }, + { + "label": "Label", + "id": "2024-12-18T15:38:48Z", + "x": { "$date": { "$numberLong": "1734536328593" } }, + "y": { "$numberDouble": "656.59" } + }, + { + "label": "Label", + "id": "2024-12-19T17:46:33Z", + "x": { "$date": { "$numberLong": "1734630393878" } }, + "y": { "$numberDouble": "659.28" } + }, + { + "label": "Label", + "id": "2024-12-20T19:54:19Z", + "x": { "$date": { "$numberLong": "1734724459164" } }, + "y": { "$numberDouble": "661.97" } + }, + { + "label": "Label", + "id": "2024-12-21T22:02:04Z", + "x": { "$date": { "$numberLong": "1734818524449" } }, + "y": { "$numberDouble": "664.66" } + }, + { + "label": "Label", + "id": "2024-12-23T00:09:49Z", + "x": { "$date": { "$numberLong": "1734912589735" } }, + "y": { "$numberDouble": "667.35" } + }, + { + "label": "Label", + "id": "2024-12-24T02:17:35Z", + "x": { "$date": { "$numberLong": "1735006655020" } }, + "y": { "$numberDouble": "670.04" } + }, + { + "label": "Label", + "id": "2024-12-25T04:25:20Z", + "x": { "$date": { "$numberLong": "1735100720306" } }, + "y": { "$numberDouble": "672.73" } + }, + { + "label": "Label", + "id": "2024-12-26T06:33:05Z", + "x": { "$date": { "$numberLong": "1735194785592" } }, + "y": { "$numberDouble": "675.42" } + }, + { + "label": "Label", + "id": "2024-12-27T08:40:50Z", + "x": { "$date": { "$numberLong": "1735288850877" } }, + "y": { "$numberDouble": "678.12" } + }, + { + "label": "Label", + "id": "2024-12-28T10:48:36Z", + "x": { "$date": { "$numberLong": "1735382916163" } }, + "y": { "$numberDouble": "680.81" } + }, + { + "label": "Label", + "id": "2024-12-29T12:56:21Z", + "x": { "$date": { "$numberLong": "1735476981448" } }, + "y": { "$numberDouble": "683.5" } + }, + { + "label": "Label", + "id": "2024-12-30T15:04:06Z", + "x": { "$date": { "$numberLong": "1735571046734" } }, + "y": { "$numberDouble": "686.19" } + }, + { + "label": "Label", + "id": "2024-12-31T17:11:52Z", + "x": { "$date": { "$numberLong": "1735665112019" } }, + "y": { "$numberDouble": "688.88" } + }, + { + "label": "Label", + "id": "2025-01-01T19:19:37Z", + "x": { "$date": { "$numberLong": "1735759177305" } }, + "y": { "$numberDouble": "691.57" } + }, + { + "label": "Label", + "id": "2025-01-02T21:27:22Z", + "x": { "$date": { "$numberLong": "1735853242591" } }, + "y": { "$numberDouble": "694.26" } + }, + { + "label": "Label", + "id": "2025-01-03T23:35:07Z", + "x": { "$date": { "$numberLong": "1735947307876" } }, + "y": { "$numberDouble": "696.95" } + }, + { + "label": "Label", + "id": "2025-01-05T01:42:53Z", + "x": { "$date": { "$numberLong": "1736041373162" } }, + "y": { "$numberDouble": "699.64" } + }, + { + "label": "Label", + "id": "2025-01-06T03:50:38Z", + "x": { "$date": { "$numberLong": "1736135438447" } }, + "y": { "$numberDouble": "702.33" } + }, + { + "label": "Label", + "id": "2025-01-07T05:58:23Z", + "x": { "$date": { "$numberLong": "1736229503733" } }, + "y": { "$numberDouble": "705.02" } + }, + { + "label": "Label", + "id": "2025-01-08T08:06:09Z", + "x": { "$date": { "$numberLong": "1736323569018" } }, + "y": { "$numberDouble": "707.72" } + }, + { + "label": "Label", + "id": "2025-01-09T10:13:54Z", + "x": { "$date": { "$numberLong": "1736417634304" } }, + "y": { "$numberDouble": "710.41" } + }, + { + "label": "Label", + "id": "2025-01-10T12:21:39Z", + "x": { "$date": { "$numberLong": "1736511699589" } }, + "y": { "$numberDouble": "713.1" } + }, + { + "label": "Label", + "id": "2025-01-11T14:29:24Z", + "x": { "$date": { "$numberLong": "1736605764875" } }, + "y": { "$numberDouble": "715.79" } + }, + { + "label": "Label", + "id": "2025-01-12T16:37:10Z", + "x": { "$date": { "$numberLong": "1736699830161" } }, + "y": { "$numberDouble": "718.48" } + }, + { + "label": "Label", + "id": "2025-01-13T18:44:55Z", + "x": { "$date": { "$numberLong": "1736793895446" } }, + "y": { "$numberDouble": "721.17" } + }, + { + "label": "Label", + "id": "2025-01-14T20:52:40Z", + "x": { "$date": { "$numberLong": "1736887960732" } }, + "y": { "$numberDouble": "723.86" } + }, + { + "label": "Label", + "id": "2025-01-15T23:00:26Z", + "x": { "$date": { "$numberLong": "1736982026017" } }, + "y": { "$numberDouble": "726.55" } + }, + { + "label": "Label", + "id": "2025-01-17T01:08:11Z", + "x": { "$date": { "$numberLong": "1737076091303" } }, + "y": { "$numberDouble": "729.24" } + }, + { + "label": "Label", + "id": "2025-01-18T03:15:56Z", + "x": { "$date": { "$numberLong": "1737170156588" } }, + "y": { "$numberDouble": "731.93" } + }, + { + "label": "Label", + "id": "2025-01-19T05:23:41Z", + "x": { "$date": { "$numberLong": "1737264221874" } }, + "y": { "$numberDouble": "734.63" } + }, + { + "label": "Label", + "id": "2025-01-20T07:31:27Z", + "x": { "$date": { "$numberLong": "1737358287160" } }, + "y": { "$numberDouble": "737.32" } + }, + { + "label": "Label", + "id": "2025-01-21T09:39:12Z", + "x": { "$date": { "$numberLong": "1737452352445" } }, + "y": { "$numberDouble": "740.01" } + }, + { + "label": "Label", + "id": "2025-01-22T11:46:57Z", + "x": { "$date": { "$numberLong": "1737546417731" } }, + "y": { "$numberDouble": "742.7" } + }, + { + "label": "Label", + "id": "2025-01-23T13:54:43Z", + "x": { "$date": { "$numberLong": "1737640483016" } }, + "y": { "$numberDouble": "745.39" } + }, + { + "label": "Label", + "id": "2025-01-24T16:02:28Z", + "x": { "$date": { "$numberLong": "1737734548302" } }, + "y": { "$numberDouble": "748.08" } + }, + { + "label": "Label", + "id": "2025-01-25T18:10:13Z", + "x": { "$date": { "$numberLong": "1737828613587" } }, + "y": { "$numberDouble": "750.77" } + }, + { + "label": "Label", + "id": "2025-01-26T20:17:58Z", + "x": { "$date": { "$numberLong": "1737922678873" } }, + "y": { "$numberDouble": "753.46" } + }, + { + "label": "Label", + "id": "2025-01-27T22:25:44Z", + "x": { "$date": { "$numberLong": "1738016744159" } }, + "y": { "$numberDouble": "756.15" } + }, + { + "label": "Label", + "id": "2025-01-29T00:33:29Z", + "x": { "$date": { "$numberLong": "1738110809444" } }, + "y": { "$numberDouble": "758.84" } + }, + { + "label": "Label", + "id": "2025-01-30T02:41:14Z", + "x": { "$date": { "$numberLong": "1738204874730" } }, + "y": { "$numberDouble": "761.53" } + }, + { + "label": "Label", + "id": "2025-01-31T04:49:00Z", + "x": { "$date": { "$numberLong": "1738298940015" } }, + "y": { "$numberDouble": "764.23" } + }, + { + "label": "Label", + "id": "2025-02-01T06:56:45Z", + "x": { "$date": { "$numberLong": "1738393005301" } }, + "y": { "$numberDouble": "766.92" } + }, + { + "label": "Label", + "id": "2025-02-02T09:04:30Z", + "x": { "$date": { "$numberLong": "1738487070586" } }, + "y": { "$numberDouble": "769.61" } + }, + { + "label": "Label", + "id": "2025-02-03T11:12:15Z", + "x": { "$date": { "$numberLong": "1738581135872" } }, + "y": { "$numberDouble": "772.3" } + }, + { + "label": "Label", + "id": "2025-02-04T13:20:01Z", + "x": { "$date": { "$numberLong": "1738675201157" } }, + "y": { "$numberDouble": "774.99" } + }, + { + "label": "Label", + "id": "2025-02-05T15:27:46Z", + "x": { "$date": { "$numberLong": "1738769266443" } }, + "y": { "$numberDouble": "777.68" } + }, + { + "label": "Label", + "id": "2025-02-06T17:35:31Z", + "x": { "$date": { "$numberLong": "1738863331729" } }, + "y": { "$numberDouble": "780.37" } + }, + { + "label": "Label", + "id": "2025-02-07T19:43:17Z", + "x": { "$date": { "$numberLong": "1738957397014" } }, + "y": { "$numberDouble": "783.06" } + }, + { + "label": "Label", + "id": "2025-02-08T21:51:02Z", + "x": { "$date": { "$numberLong": "1739051462300" } }, + "y": { "$numberDouble": "785.75" } + }, + { + "label": "Label", + "id": "2025-02-09T23:58:47Z", + "x": { "$date": { "$numberLong": "1739145527585" } }, + "y": { "$numberDouble": "788.44" } + }, + { + "label": "Label", + "id": "2025-02-11T02:06:32Z", + "x": { "$date": { "$numberLong": "1739239592871" } }, + "y": { "$numberDouble": "791.13" } + }, + { + "label": "Label", + "id": "2025-02-12T04:14:18Z", + "x": { "$date": { "$numberLong": "1739333658156" } }, + "y": { "$numberDouble": "793.83" } + }, + { + "label": "Label", + "id": "2025-02-13T06:22:03Z", + "x": { "$date": { "$numberLong": "1739427723442" } }, + "y": { "$numberDouble": "796.52" } + }, + { + "label": "Label", + "id": "2025-02-14T08:29:48Z", + "x": { "$date": { "$numberLong": "1739521788728" } }, + "y": { "$numberDouble": "799.21" } + }, + { + "label": "Label", + "id": "2025-02-15T10:37:34Z", + "x": { "$date": { "$numberLong": "1739615854013" } }, + "y": { "$numberDouble": "801.9" } + }, + { + "label": "Label", + "id": "2025-02-16T12:45:19Z", + "x": { "$date": { "$numberLong": "1739709919299" } }, + "y": { "$numberDouble": "804.59" } + }, + { + "label": "Label", + "id": "2025-02-17T14:53:04Z", + "x": { "$date": { "$numberLong": "1739803984584" } }, + "y": { "$numberDouble": "807.28" } + }, + { + "label": "Label", + "id": "2025-02-18T17:00:49Z", + "x": { "$date": { "$numberLong": "1739898049870" } }, + "y": { "$numberDouble": "809.97" } + }, + { + "label": "Label", + "id": "2025-02-19T19:08:35Z", + "x": { "$date": { "$numberLong": "1739992115155" } }, + "y": { "$numberDouble": "812.66" } + }, + { + "label": "Label", + "id": "2025-02-20T21:16:20Z", + "x": { "$date": { "$numberLong": "1740086180441" } }, + "y": { "$numberDouble": "815.35" } + }, + { + "label": "Label", + "id": "2025-02-21T23:24:05Z", + "x": { "$date": { "$numberLong": "1740180245727" } }, + "y": { "$numberDouble": "818.04" } + }, + { + "label": "Label", + "id": "2025-02-23T01:31:51Z", + "x": { "$date": { "$numberLong": "1740274311012" } }, + "y": { "$numberDouble": "820.73" } + }, + { + "label": "Label", + "id": "2025-02-24T03:39:36Z", + "x": { "$date": { "$numberLong": "1740368376298" } }, + "y": { "$numberDouble": "823.43" } + }, + { + "label": "Label", + "id": "2025-02-25T05:47:21Z", + "x": { "$date": { "$numberLong": "1740462441583" } }, + "y": { "$numberDouble": "826.12" } + }, + { + "label": "Label", + "id": "2025-02-26T07:55:06Z", + "x": { "$date": { "$numberLong": "1740556506869" } }, + "y": { "$numberDouble": "828.81" } + }, + { + "label": "Label", + "id": "2025-02-27T10:02:52Z", + "x": { "$date": { "$numberLong": "1740650572154" } }, + "y": { "$numberDouble": "831.5" } + }, + { + "label": "Label", + "id": "2025-02-28T12:10:37Z", + "x": { "$date": { "$numberLong": "1740744637440" } }, + "y": { "$numberDouble": "834.19" } + }, + { + "label": "Label", + "id": "2025-03-01T14:18:22Z", + "x": { "$date": { "$numberLong": "1740838702726" } }, + "y": { "$numberDouble": "836.88" } + }, + { + "label": "Label", + "id": "2025-03-02T16:26:08Z", + "x": { "$date": { "$numberLong": "1740932768011" } }, + "y": { "$numberDouble": "839.57" } + }, + { + "label": "Label", + "id": "2025-03-03T18:33:53Z", + "x": { "$date": { "$numberLong": "1741026833297" } }, + "y": { "$numberDouble": "842.26" } + }, + { + "label": "Label", + "id": "2025-03-04T20:41:38Z", + "x": { "$date": { "$numberLong": "1741120898582" } }, + "y": { "$numberDouble": "844.95" } + }, + { + "label": "Label", + "id": "2025-03-05T22:49:23Z", + "x": { "$date": { "$numberLong": "1741214963868" } }, + "y": { "$numberDouble": "847.64" } + }, + { + "label": "Label", + "id": "2025-03-07T00:57:09Z", + "x": { "$date": { "$numberLong": "1741309029153" } }, + "y": { "$numberDouble": "850.34" } + }, + { + "label": "Label", + "id": "2025-03-08T03:04:54Z", + "x": { "$date": { "$numberLong": "1741403094439" } }, + "y": { "$numberDouble": "853.03" } + }, + { + "label": "Label", + "id": "2025-03-09T05:12:39Z", + "x": { "$date": { "$numberLong": "1741497159724" } }, + "y": { "$numberDouble": "855.72" } + }, + { + "label": "Label", + "id": "2025-03-10T07:20:25Z", + "x": { "$date": { "$numberLong": "1741591225010" } }, + "y": { "$numberDouble": "858.41" } + }, + { + "label": "Label", + "id": "2025-03-11T09:28:10Z", + "x": { "$date": { "$numberLong": "1741685290296" } }, + "y": { "$numberDouble": "861.1" } + }, + { + "label": "Label", + "id": "2025-03-12T11:35:55Z", + "x": { "$date": { "$numberLong": "1741779355581" } }, + "y": { "$numberDouble": "863.79" } + }, + { + "label": "Label", + "id": "2025-03-13T13:43:40Z", + "x": { "$date": { "$numberLong": "1741873420867" } }, + "y": { "$numberDouble": "866.48" } + }, + { + "label": "Label", + "id": "2025-03-14T15:51:26Z", + "x": { "$date": { "$numberLong": "1741967486152" } }, + "y": { "$numberDouble": "869.17" } + }, + { + "label": "Label", + "id": "2025-03-15T17:59:11Z", + "x": { "$date": { "$numberLong": "1742061551438" } }, + "y": { "$numberDouble": "871.86" } + }, + { + "label": "Label", + "id": "2025-03-16T20:06:56Z", + "x": { "$date": { "$numberLong": "1742155616723" } }, + "y": { "$numberDouble": "874.55" } + }, + { + "label": "Label", + "id": "2025-03-17T22:14:42Z", + "x": { "$date": { "$numberLong": "1742249682009" } }, + "y": { "$numberDouble": "877.24" } + }, + { + "label": "Label", + "id": "2025-03-19T00:22:27Z", + "x": { "$date": { "$numberLong": "1742343747295" } }, + "y": { "$numberDouble": "879.94" } + }, + { + "label": "Label", + "id": "2025-03-20T02:30:12Z", + "x": { "$date": { "$numberLong": "1742437812580" } }, + "y": { "$numberDouble": "882.63" } + }, + { + "label": "Label", + "id": "2025-03-21T04:37:57Z", + "x": { "$date": { "$numberLong": "1742531877866" } }, + "y": { "$numberDouble": "885.32" } + }, + { + "label": "Label", + "id": "2025-03-22T06:45:43Z", + "x": { "$date": { "$numberLong": "1742625943151" } }, + "y": { "$numberDouble": "888.01" } + }, + { + "label": "Label", + "id": "2025-03-23T08:53:28Z", + "x": { "$date": { "$numberLong": "1742720008437" } }, + "y": { "$numberDouble": "890.7" } + }, + { + "label": "Label", + "id": "2025-03-24T11:01:13Z", + "x": { "$date": { "$numberLong": "1742814073722" } }, + "y": { "$numberDouble": "893.39" } + }, + { + "label": "Label", + "id": "2025-03-25T13:08:59Z", + "x": { "$date": { "$numberLong": "1742908139008" } }, + "y": { "$numberDouble": "896.08" } + }, + { + "label": "Label", + "id": "2025-03-26T15:16:44Z", + "x": { "$date": { "$numberLong": "1743002204294" } }, + "y": { "$numberDouble": "898.77" } + }, + { + "label": "Label", + "id": "2025-03-27T17:24:29Z", + "x": { "$date": { "$numberLong": "1743096269579" } }, + "y": { "$numberDouble": "901.46" } + }, + { + "label": "Label", + "id": "2025-03-28T19:32:14Z", + "x": { "$date": { "$numberLong": "1743190334865" } }, + "y": { "$numberDouble": "904.15" } + }, + { + "label": "Label", + "id": "2025-03-29T21:40:00Z", + "x": { "$date": { "$numberLong": "1743284400150" } }, + "y": { "$numberDouble": "906.84" } + }, + { + "label": "Label", + "id": "2025-03-30T23:47:45Z", + "x": { "$date": { "$numberLong": "1743378465436" } }, + "y": { "$numberDouble": "909.54" } + }, + { + "label": "Label", + "id": "2025-04-01T01:55:30Z", + "x": { "$date": { "$numberLong": "1743472530721" } }, + "y": { "$numberDouble": "912.23" } + }, + { + "label": "Label", + "id": "2025-04-02T04:03:16Z", + "x": { "$date": { "$numberLong": "1743566596007" } }, + "y": { "$numberDouble": "914.92" } + }, + { + "label": "Label", + "id": "2025-04-03T06:11:01Z", + "x": { "$date": { "$numberLong": "1743660661292" } }, + "y": { "$numberDouble": "917.61" } + }, + { + "label": "Label", + "id": "2025-04-04T08:18:46Z", + "x": { "$date": { "$numberLong": "1743754726578" } }, + "y": { "$numberDouble": "920.3" } + }, + { + "label": "Label", + "id": "2025-04-05T10:26:31Z", + "x": { "$date": { "$numberLong": "1743848791864" } }, + "y": { "$numberDouble": "922.99" } + }, + { + "label": "Label", + "id": "2025-04-06T12:34:17Z", + "x": { "$date": { "$numberLong": "1743942857149" } }, + "y": { "$numberDouble": "925.68" } + }, + { + "label": "Label", + "id": "2025-04-07T14:42:02Z", + "x": { "$date": { "$numberLong": "1744036922435" } }, + "y": { "$numberDouble": "928.37" } + }, + { + "label": "Label", + "id": "2025-04-08T16:49:47Z", + "x": { "$date": { "$numberLong": "1744130987720" } }, + "y": { "$numberDouble": "931.06" } + }, + { + "label": "Label", + "id": "2025-04-09T18:57:33Z", + "x": { "$date": { "$numberLong": "1744225053006" } }, + "y": { "$numberDouble": "933.75" } + }, + { + "label": "Label", + "id": "2025-04-10T21:05:18Z", + "x": { "$date": { "$numberLong": "1744319118291" } }, + "y": { "$numberDouble": "936.45" } + }, + { + "label": "Label", + "id": "2025-04-11T23:13:03Z", + "x": { "$date": { "$numberLong": "1744413183577" } }, + "y": { "$numberDouble": "939.14" } + }, + { + "label": "Label", + "id": "2025-04-13T01:20:48Z", + "x": { "$date": { "$numberLong": "1744507248863" } }, + "y": { "$numberDouble": "941.83" } + }, + { + "label": "Label", + "id": "2025-04-14T03:28:34Z", + "x": { "$date": { "$numberLong": "1744601314148" } }, + "y": { "$numberDouble": "944.52" } + }, + { + "label": "Label", + "id": "2025-04-15T05:36:19Z", + "x": { "$date": { "$numberLong": "1744695379434" } }, + "y": { "$numberDouble": "947.21" } + }, + { + "label": "Label", + "id": "2025-04-16T07:44:04Z", + "x": { "$date": { "$numberLong": "1744789444719" } }, + "y": { "$numberDouble": "949.9" } + }, + { + "label": "Label", + "id": "2025-04-17T09:51:50Z", + "x": { "$date": { "$numberLong": "1744883510005" } }, + "y": { "$numberDouble": "952.59" } + }, + { + "label": "Label", + "id": "2025-04-18T11:59:35Z", + "x": { "$date": { "$numberLong": "1744977575290" } }, + "y": { "$numberDouble": "955.28" } + }, + { + "label": "Label", + "id": "2025-04-19T14:07:20Z", + "x": { "$date": { "$numberLong": "1745071640576" } }, + "y": { "$numberDouble": "957.97" } + }, + { + "label": "Label", + "id": "2025-04-20T16:15:05Z", + "x": { "$date": { "$numberLong": "1745165705862" } }, + "y": { "$numberDouble": "960.66" } + }, + { + "label": "Label", + "id": "2025-04-21T18:22:51Z", + "x": { "$date": { "$numberLong": "1745259771147" } }, + "y": { "$numberDouble": "963.35" } + }, + { + "label": "Label", + "id": "2025-04-22T20:30:36Z", + "x": { "$date": { "$numberLong": "1745353836433" } }, + "y": { "$numberDouble": "966.05" } + }, + { + "label": "Label", + "id": "2025-04-23T22:38:21Z", + "x": { "$date": { "$numberLong": "1745447901718" } }, + "y": { "$numberDouble": "968.74" } + }, + { + "label": "Label", + "id": "2025-04-25T00:46:07Z", + "x": { "$date": { "$numberLong": "1745541967004" } }, + "y": { "$numberDouble": "971.43" } + }, + { + "label": "Label", + "id": "2025-04-26T02:53:52Z", + "x": { "$date": { "$numberLong": "1745636032289" } }, + "y": { "$numberDouble": "974.12" } + }, + { + "label": "Label", + "id": "2025-04-27T05:01:37Z", + "x": { "$date": { "$numberLong": "1745730097575" } }, + "y": { "$numberDouble": "976.81" } + }, + { + "label": "Label", + "id": "2025-04-28T07:09:22Z", + "x": { "$date": { "$numberLong": "1745824162861" } }, + "y": { "$numberDouble": "979.5" } + } + ], + "_id": { "$oid": "66189c858bcc89e3792dd255" } + }, + "7d": { + "id": "7d", + "name": "Last 7D", + "color": "#2e7c67", + "data": [ + { + "label": "Label", + "id": "2024-04-05T06:46:47Z", + "x": { "$date": { "$numberLong": "1712299607975" } }, + "y": { "$numberInt": "0" } + }, + { + "label": "Label", + "id": "2024-04-06T10:50:33Z", + "x": { "$date": { "$numberLong": "1712400633789" } }, + "y": { "$numberDouble": "10.85" } + }, + { + "label": "Label", + "id": "2024-04-07T14:54:19Z", + "x": { "$date": { "$numberLong": "1712501659603" } }, + "y": { "$numberDouble": "21.7" } + }, + { + "label": "Label", + "id": "2024-04-08T18:58:05Z", + "x": { "$date": { "$numberLong": "1712602685418" } }, + "y": { "$numberDouble": "32.55" } + }, + { + "label": "Label", + "id": "2024-04-09T23:01:51Z", + "x": { "$date": { "$numberLong": "1712703711232" } }, + "y": { "$numberDouble": "43.4" } + }, + { + "label": "Label", + "id": "2024-04-11T03:05:37Z", + "x": { "$date": { "$numberLong": "1712804737046" } }, + "y": { "$numberDouble": "54.25" } + }, + { + "label": "Label", + "id": "2024-04-12T07:09:22Z", + "x": { "$date": { "$numberLong": "1712905762861" } }, + "y": { "$numberDouble": "65.1" } + } + ], + "_id": { "$oid": "66189c858bcc89e3792dd256" } + }, + "24hr": { + "id": "24hr", + "name": "Last 24HR", + "color": "#2e7c67", + "data": [ + { + "label": "Label", + "id": "2024-04-11T07:09:22Z", + "x": { "$date": { "$numberLong": "1712819362861" } }, + "y": { "$numberInt": "0" } + }, + { + "label": "Label", + "id": "2024-04-11T08:11:59Z", + "x": { "$date": { "$numberLong": "1712823119382" } }, + "y": { "$numberDouble": "1.36" } + }, + { + "label": "Label", + "id": "2024-04-11T09:14:35Z", + "x": { "$date": { "$numberLong": "1712826875904" } }, + "y": { "$numberDouble": "2.71" } + }, + { + "label": "Label", + "id": "2024-04-11T10:17:12Z", + "x": { "$date": { "$numberLong": "1712830632426" } }, + "y": { "$numberDouble": "4.07" } + }, + { + "label": "Label", + "id": "2024-04-11T11:19:48Z", + "x": { "$date": { "$numberLong": "1712834388947" } }, + "y": { "$numberDouble": "5.43" } + }, + { + "label": "Label", + "id": "2024-04-11T12:22:25Z", + "x": { "$date": { "$numberLong": "1712838145469" } }, + "y": { "$numberDouble": "6.78" } + }, + { + "label": "Label", + "id": "2024-04-11T13:25:01Z", + "x": { "$date": { "$numberLong": "1712841901991" } }, + "y": { "$numberDouble": "8.14" } + }, + { + "label": "Label", + "id": "2024-04-11T14:27:38Z", + "x": { "$date": { "$numberLong": "1712845658513" } }, + "y": { "$numberDouble": "9.5" } + }, + { + "label": "Label", + "id": "2024-04-11T15:30:15Z", + "x": { "$date": { "$numberLong": "1712849415034" } }, + "y": { "$numberDouble": "10.85" } + }, + { + "label": "Label", + "id": "2024-04-11T16:32:51Z", + "x": { "$date": { "$numberLong": "1712853171556" } }, + "y": { "$numberDouble": "12.21" } + }, + { + "label": "Label", + "id": "2024-04-11T17:35:28Z", + "x": { "$date": { "$numberLong": "1712856928078" } }, + "y": { "$numberDouble": "13.57" } + }, + { + "label": "Label", + "id": "2024-04-11T18:38:04Z", + "x": { "$date": { "$numberLong": "1712860684600" } }, + "y": { "$numberDouble": "14.92" } + }, + { + "label": "Label", + "id": "2024-04-11T19:40:41Z", + "x": { "$date": { "$numberLong": "1712864441121" } }, + "y": { "$numberDouble": "16.28" } + }, + { + "label": "Label", + "id": "2024-04-11T20:43:17Z", + "x": { "$date": { "$numberLong": "1712868197643" } }, + "y": { "$numberDouble": "17.63" } + }, + { + "label": "Label", + "id": "2024-04-11T21:45:54Z", + "x": { "$date": { "$numberLong": "1712871954165" } }, + "y": { "$numberDouble": "18.99" } + }, + { + "label": "Label", + "id": "2024-04-11T22:48:30Z", + "x": { "$date": { "$numberLong": "1712875710687" } }, + "y": { "$numberDouble": "20.35" } + }, + { + "label": "Label", + "id": "2024-04-11T23:51:07Z", + "x": { "$date": { "$numberLong": "1712879467208" } }, + "y": { "$numberDouble": "21.7" } + }, + { + "label": "Label", + "id": "2024-04-12T00:53:43Z", + "x": { "$date": { "$numberLong": "1712883223730" } }, + "y": { "$numberDouble": "23.06" } + }, + { + "label": "Label", + "id": "2024-04-12T01:56:20Z", + "x": { "$date": { "$numberLong": "1712886980252" } }, + "y": { "$numberDouble": "24.42" } + }, + { + "label": "Label", + "id": "2024-04-12T02:58:56Z", + "x": { "$date": { "$numberLong": "1712890736774" } }, + "y": { "$numberDouble": "25.77" } + }, + { + "label": "Label", + "id": "2024-04-12T04:01:33Z", + "x": { "$date": { "$numberLong": "1712894493295" } }, + "y": { "$numberDouble": "27.13" } + }, + { + "label": "Label", + "id": "2024-04-12T05:04:09Z", + "x": { "$date": { "$numberLong": "1712898249817" } }, + "y": { "$numberDouble": "28.49" } + }, + { + "label": "Label", + "id": "2024-04-12T06:06:46Z", + "x": { "$date": { "$numberLong": "1712902006339" } }, + "y": { "$numberDouble": "29.84" } + }, + { + "label": "Label", + "id": "2024-04-12T07:09:22Z", + "x": { "$date": { "$numberLong": "1712905762861" } }, + "y": { "$numberDouble": "31.2" } + } + ], + "_id": { "$oid": "66189c858bcc89e3792dd257" } + } + }, + "averagedChartData": { + "30d": { + "id": "30d", + "name": "Last 30D", + "color": "#2e7c67", + "data": [ + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711584398915" } }, + "y": { "$numberDouble": "0.1" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711584398915" } }, + "y": { "$numberDouble": "0.2" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711584398915" } }, + "y": { "$numberDouble": "0.3" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711584398915" } }, + "y": { "$numberDouble": "0.4" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711584398915" } }, + "y": { "$numberDouble": "0.5" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711584398915" } }, + "y": { "$numberDouble": "0.6" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711584398915" } }, + "y": { "$numberDouble": "0.7" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711584398915" } }, + "y": { "$numberDouble": "0.8" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711584486360" } }, + "y": { "$numberDouble": "1.25" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711584505806" } }, + "y": { "$numberDouble": "1.32" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711584505806" } }, + "y": { "$numberDouble": "1.39" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711584505806" } }, + "y": { "$numberDouble": "1.46" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711584505806" } }, + "y": { "$numberDouble": "1.53" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711587407011" } }, + "y": { "$numberDouble": "17.41" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711587407011" } }, + "y": { "$numberDouble": "33.29" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711587407011" } }, + "y": { "$numberDouble": "49.17" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711587418793" } }, + "y": { "$numberDouble": "49.34" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711587432729" } }, + "y": { "$numberDouble": "50.05" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711587432729" } }, + "y": { "$numberDouble": "50.76" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711612523074" } }, + "y": { "$numberDouble": "50.82" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711613494519" } }, + "y": { "$numberDouble": "51.15" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711613494519" } }, + "y": { "$numberDouble": "51.48" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1711613494519" } }, + "y": { "$numberDouble": "51.81" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1712038434890" } }, + "y": { "$numberDouble": "51.91" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1712299607975" } }, + "y": { "$numberDouble": "52.1" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1712299607975" } }, + "y": { "$numberDouble": "52.29" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1712299607975" } }, + "y": { "$numberDouble": "52.48" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1712699253163" } }, + "y": { "$numberDouble": "52.73" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1712819362861" } }, + "y": { "$numberDouble": "54.19" } + }, + { + "label": "Label", + "x": { "$date": { "$numberLong": "1712819362861" } }, + "y": { "$numberDouble": "55.65" } + } + ], + "_id": { "$oid": "66189c868bcc89e3792dd25f" } + }, + "90d": { + "id": "90d", + "name": "Last 90D", + "color": "#2e7c67", + "data": [ + { + "label": "Label", + "id": "2024-03-28T00:06:38Z", + "x": { "$date": { "$numberLong": "1711584398915" } }, + "y": { "$numberInt": "0" } + }, + { + "label": "Label", + "id": "2024-03-29T08:49:09Z", + "x": { "$date": { "$numberLong": "1711702149071" } }, + "y": { "$numberDouble": "3.2" } + }, + { + "label": "Label", + "id": "2024-03-30T17:31:39Z", + "x": { "$date": { "$numberLong": "1711819899228" } }, + "y": { "$numberDouble": "6.4" } + }, + { + "label": "Label", + "id": "2024-04-01T02:14:09Z", + "x": { "$date": { "$numberLong": "1711937649385" } }, + "y": { "$numberDouble": "9.6" } + }, + { + "label": "Label", + "id": "2024-04-02T10:56:39Z", + "x": { "$date": { "$numberLong": "1712055399541" } }, + "y": { "$numberDouble": "12.8" } + }, + { + "label": "Label", + "id": "2024-04-03T19:39:09Z", + "x": { "$date": { "$numberLong": "1712173149698" } }, + "y": { "$numberInt": "16" } + }, + { + "label": "Label", + "id": "2024-04-05T04:21:39Z", + "x": { "$date": { "$numberLong": "1712290899855" } }, + "y": { "$numberDouble": "19.2" } + }, + { + "label": "Label", + "id": "2024-04-06T13:04:10Z", + "x": { "$date": { "$numberLong": "1712408650011" } }, + "y": { "$numberDouble": "22.4" } + }, + { + "label": "Label", + "id": "2024-04-07T21:46:40Z", + "x": { "$date": { "$numberLong": "1712526400168" } }, + "y": { "$numberDouble": "25.6" } + }, + { + "label": "Label", + "id": "2024-04-09T06:29:10Z", + "x": { "$date": { "$numberLong": "1712644150325" } }, + "y": { "$numberDouble": "28.8" } + }, + { + "label": "Label", + "id": "2024-04-10T15:11:40Z", + "x": { "$date": { "$numberLong": "1712761900481" } }, + "y": { "$numberInt": "32" } + }, + { + "label": "Label", + "id": "2024-04-11T23:54:10Z", + "x": { "$date": { "$numberLong": "1712879650638" } }, + "y": { "$numberDouble": "35.2" } + }, + { + "label": "Label", + "id": "2024-04-13T08:36:40Z", + "x": { "$date": { "$numberLong": "1712997400795" } }, + "y": { "$numberDouble": "38.4" } + }, + { + "label": "Label", + "id": "2024-04-14T17:19:10Z", + "x": { "$date": { "$numberLong": "1713115150952" } }, + "y": { "$numberDouble": "41.6" } + }, + { + "label": "Label", + "id": "2024-04-16T02:01:41Z", + "x": { "$date": { "$numberLong": "1713232901108" } }, + "y": { "$numberDouble": "44.8" } + }, + { + "label": "Label", + "id": "2024-04-17T10:44:11Z", + "x": { "$date": { "$numberLong": "1713350651265" } }, + "y": { "$numberInt": "48" } + }, + { + "label": "Label", + "id": "2024-04-18T19:26:41Z", + "x": { "$date": { "$numberLong": "1713468401422" } }, + "y": { "$numberDouble": "51.2" } + }, + { + "label": "Label", + "id": "2024-04-20T04:09:11Z", + "x": { "$date": { "$numberLong": "1713586151578" } }, + "y": { "$numberDouble": "54.4" } + }, + { + "label": "Label", + "id": "2024-04-21T12:51:41Z", + "x": { "$date": { "$numberLong": "1713703901735" } }, + "y": { "$numberDouble": "57.6" } + }, + { + "label": "Label", + "id": "2024-04-22T21:34:11Z", + "x": { "$date": { "$numberLong": "1713821651892" } }, + "y": { "$numberDouble": "60.8" } + }, + { + "label": "Label", + "id": "2024-04-24T06:16:42Z", + "x": { "$date": { "$numberLong": "1713939402048" } }, + "y": { "$numberInt": "64" } + }, + { + "label": "Label", + "id": "2024-04-25T14:59:12Z", + "x": { "$date": { "$numberLong": "1714057152205" } }, + "y": { "$numberDouble": "67.2" } + }, + { + "label": "Label", + "id": "2024-04-26T23:41:42Z", + "x": { "$date": { "$numberLong": "1714174902362" } }, + "y": { "$numberDouble": "70.4" } + }, + { + "label": "Label", + "id": "2024-04-28T08:24:12Z", + "x": { "$date": { "$numberLong": "1714292652519" } }, + "y": { "$numberDouble": "73.6" } + }, + { + "label": "Label", + "id": "2024-04-29T17:06:42Z", + "x": { "$date": { "$numberLong": "1714410402675" } }, + "y": { "$numberDouble": "76.8" } + }, + { + "label": "Label", + "id": "2024-05-01T01:49:12Z", + "x": { "$date": { "$numberLong": "1714528152832" } }, + "y": { "$numberInt": "80" } + }, + { + "label": "Label", + "id": "2024-05-02T10:31:42Z", + "x": { "$date": { "$numberLong": "1714645902989" } }, + "y": { "$numberDouble": "83.2" } + }, + { + "label": "Label", + "id": "2024-05-03T19:14:13Z", + "x": { "$date": { "$numberLong": "1714763653145" } }, + "y": { "$numberDouble": "86.4" } + }, + { + "label": "Label", + "id": "2024-05-05T03:56:43Z", + "x": { "$date": { "$numberLong": "1714881403302" } }, + "y": { "$numberDouble": "89.6" } + }, + { + "label": "Label", + "id": "2024-05-06T12:39:13Z", + "x": { "$date": { "$numberLong": "1714999153459" } }, + "y": { "$numberDouble": "92.8" } + }, + { + "label": "Label", + "id": "2024-05-07T21:21:43Z", + "x": { "$date": { "$numberLong": "1715116903615" } }, + "y": { "$numberInt": "96" } + }, + { + "label": "Label", + "id": "2024-05-09T06:04:13Z", + "x": { "$date": { "$numberLong": "1715234653772" } }, + "y": { "$numberDouble": "99.2" } + }, + { + "label": "Label", + "id": "2024-05-10T14:46:43Z", + "x": { "$date": { "$numberLong": "1715352403929" } }, + "y": { "$numberDouble": "102.4" } + }, + { + "label": "Label", + "id": "2024-05-11T23:29:14Z", + "x": { "$date": { "$numberLong": "1715470154085" } }, + "y": { "$numberDouble": "105.6" } + }, + { + "label": "Label", + "id": "2024-05-13T08:11:44Z", + "x": { "$date": { "$numberLong": "1715587904242" } }, + "y": { "$numberDouble": "108.8" } + }, + { + "label": "Label", + "id": "2024-05-14T16:54:14Z", + "x": { "$date": { "$numberLong": "1715705654399" } }, + "y": { "$numberInt": "112" } + }, + { + "label": "Label", + "id": "2024-05-16T01:36:44Z", + "x": { "$date": { "$numberLong": "1715823404556" } }, + "y": { "$numberDouble": "115.2" } + }, + { + "label": "Label", + "id": "2024-05-17T10:19:14Z", + "x": { "$date": { "$numberLong": "1715941154712" } }, + "y": { "$numberDouble": "118.4" } + }, + { + "label": "Label", + "id": "2024-05-18T19:01:44Z", + "x": { "$date": { "$numberLong": "1716058904869" } }, + "y": { "$numberDouble": "121.6" } + }, + { + "label": "Label", + "id": "2024-05-20T03:44:15Z", + "x": { "$date": { "$numberLong": "1716176655026" } }, + "y": { "$numberDouble": "124.8" } + }, + { + "label": "Label", + "id": "2024-05-21T12:26:45Z", + "x": { "$date": { "$numberLong": "1716294405182" } }, + "y": { "$numberInt": "128" } + }, + { + "label": "Label", + "id": "2024-05-22T21:09:15Z", + "x": { "$date": { "$numberLong": "1716412155339" } }, + "y": { "$numberDouble": "131.2" } + }, + { + "label": "Label", + "id": "2024-05-24T05:51:45Z", + "x": { "$date": { "$numberLong": "1716529905496" } }, + "y": { "$numberDouble": "134.4" } + }, + { + "label": "Label", + "id": "2024-05-25T14:34:15Z", + "x": { "$date": { "$numberLong": "1716647655652" } }, + "y": { "$numberDouble": "137.6" } + }, + { + "label": "Label", + "id": "2024-05-26T23:16:45Z", + "x": { "$date": { "$numberLong": "1716765405809" } }, + "y": { "$numberDouble": "140.8" } + }, + { + "label": "Label", + "id": "2024-05-28T07:59:15Z", + "x": { "$date": { "$numberLong": "1716883155966" } }, + "y": { "$numberInt": "144" } + }, + { + "label": "Label", + "id": "2024-05-29T16:41:46Z", + "x": { "$date": { "$numberLong": "1717000906123" } }, + "y": { "$numberDouble": "147.2" } + }, + { + "label": "Label", + "id": "2024-05-31T01:24:16Z", + "x": { "$date": { "$numberLong": "1717118656279" } }, + "y": { "$numberDouble": "150.4" } + }, + { + "label": "Label", + "id": "2024-06-01T10:06:46Z", + "x": { "$date": { "$numberLong": "1717236406436" } }, + "y": { "$numberDouble": "153.6" } + }, + { + "label": "Label", + "id": "2024-06-02T18:49:16Z", + "x": { "$date": { "$numberLong": "1717354156593" } }, + "y": { "$numberDouble": "156.8" } + }, + { + "label": "Label", + "id": "2024-06-04T03:31:46Z", + "x": { "$date": { "$numberLong": "1717471906749" } }, + "y": { "$numberInt": "160" } + }, + { + "label": "Label", + "id": "2024-06-05T12:14:16Z", + "x": { "$date": { "$numberLong": "1717589656906" } }, + "y": { "$numberDouble": "163.2" } + }, + { + "label": "Label", + "id": "2024-06-06T20:56:47Z", + "x": { "$date": { "$numberLong": "1717707407063" } }, + "y": { "$numberDouble": "166.4" } + }, + { + "label": "Label", + "id": "2024-06-08T05:39:17Z", + "x": { "$date": { "$numberLong": "1717825157219" } }, + "y": { "$numberDouble": "169.6" } + }, + { + "label": "Label", + "id": "2024-06-09T14:21:47Z", + "x": { "$date": { "$numberLong": "1717942907376" } }, + "y": { "$numberDouble": "172.8" } + }, + { + "label": "Label", + "id": "2024-06-10T23:04:17Z", + "x": { "$date": { "$numberLong": "1718060657533" } }, + "y": { "$numberInt": "176" } + }, + { + "label": "Label", + "id": "2024-06-12T07:46:47Z", + "x": { "$date": { "$numberLong": "1718178407690" } }, + "y": { "$numberDouble": "179.2" } + }, + { + "label": "Label", + "id": "2024-06-13T16:29:17Z", + "x": { "$date": { "$numberLong": "1718296157846" } }, + "y": { "$numberDouble": "182.4" } + }, + { + "label": "Label", + "id": "2024-06-15T01:11:48Z", + "x": { "$date": { "$numberLong": "1718413908003" } }, + "y": { "$numberDouble": "185.6" } + }, + { + "label": "Label", + "id": "2024-06-16T09:54:18Z", + "x": { "$date": { "$numberLong": "1718531658160" } }, + "y": { "$numberDouble": "188.8" } + }, + { + "label": "Label", + "id": "2024-06-17T18:36:48Z", + "x": { "$date": { "$numberLong": "1718649408316" } }, + "y": { "$numberInt": "192" } + }, + { + "label": "Label", + "id": "2024-06-19T03:19:18Z", + "x": { "$date": { "$numberLong": "1718767158473" } }, + "y": { "$numberDouble": "195.2" } + }, + { + "label": "Label", + "id": "2024-06-20T12:01:48Z", + "x": { "$date": { "$numberLong": "1718884908630" } }, + "y": { "$numberDouble": "198.4" } + }, + { + "label": "Label", + "id": "2024-06-21T20:44:18Z", + "x": { "$date": { "$numberLong": "1719002658786" } }, + "y": { "$numberDouble": "201.6" } + }, + { + "label": "Label", + "id": "2024-06-23T05:26:48Z", + "x": { "$date": { "$numberLong": "1719120408943" } }, + "y": { "$numberDouble": "204.8" } + }, + { + "label": "Label", + "id": "2024-06-24T14:09:19Z", + "x": { "$date": { "$numberLong": "1719238159100" } }, + "y": { "$numberInt": "208" } + }, + { + "label": "Label", + "id": "2024-06-25T22:51:49Z", + "x": { "$date": { "$numberLong": "1719355909256" } }, + "y": { "$numberDouble": "211.2" } + }, + { + "label": "Label", + "id": "2024-06-27T07:34:19Z", + "x": { "$date": { "$numberLong": "1719473659413" } }, + "y": { "$numberDouble": "214.4" } + }, + { + "label": "Label", + "id": "2024-06-28T16:16:49Z", + "x": { "$date": { "$numberLong": "1719591409570" } }, + "y": { "$numberDouble": "217.6" } + }, + { + "label": "Label", + "id": "2024-06-30T00:59:19Z", + "x": { "$date": { "$numberLong": "1719709159727" } }, + "y": { "$numberDouble": "220.8" } + }, + { + "label": "Label", + "id": "2024-07-01T09:41:49Z", + "x": { "$date": { "$numberLong": "1719826909883" } }, + "y": { "$numberInt": "224" } + }, + { + "label": "Label", + "id": "2024-07-02T18:24:20Z", + "x": { "$date": { "$numberLong": "1719944660040" } }, + "y": { "$numberDouble": "227.2" } + }, + { + "label": "Label", + "id": "2024-07-04T03:06:50Z", + "x": { "$date": { "$numberLong": "1720062410197" } }, + "y": { "$numberDouble": "230.4" } + }, + { + "label": "Label", + "id": "2024-07-05T11:49:20Z", + "x": { "$date": { "$numberLong": "1720180160353" } }, + "y": { "$numberDouble": "233.6" } + }, + { + "label": "Label", + "id": "2024-07-06T20:31:50Z", + "x": { "$date": { "$numberLong": "1720297910510" } }, + "y": { "$numberDouble": "236.8" } + }, + { + "label": "Label", + "id": "2024-07-08T05:14:20Z", + "x": { "$date": { "$numberLong": "1720415660667" } }, + "y": { "$numberInt": "240" } + }, + { + "label": "Label", + "id": "2024-07-09T13:56:50Z", + "x": { "$date": { "$numberLong": "1720533410823" } }, + "y": { "$numberDouble": "243.2" } + }, + { + "label": "Label", + "id": "2024-07-10T22:39:20Z", + "x": { "$date": { "$numberLong": "1720651160980" } }, + "y": { "$numberDouble": "246.4" } + }, + { + "label": "Label", + "id": "2024-07-12T07:21:51Z", + "x": { "$date": { "$numberLong": "1720768911137" } }, + "y": { "$numberDouble": "249.6" } + }, + { + "label": "Label", + "id": "2024-07-13T16:04:21Z", + "x": { "$date": { "$numberLong": "1720886661294" } }, + "y": { "$numberDouble": "252.8" } + }, + { + "label": "Label", + "id": "2024-07-15T00:46:51Z", + "x": { "$date": { "$numberLong": "1721004411450" } }, + "y": { "$numberInt": "256" } + }, + { + "label": "Label", + "id": "2024-07-16T09:29:21Z", + "x": { "$date": { "$numberLong": "1721122161607" } }, + "y": { "$numberDouble": "259.2" } + }, + { + "label": "Label", + "id": "2024-07-17T18:11:51Z", + "x": { "$date": { "$numberLong": "1721239911764" } }, + "y": { "$numberDouble": "262.4" } + }, + { + "label": "Label", + "id": "2024-07-19T02:54:21Z", + "x": { "$date": { "$numberLong": "1721357661920" } }, + "y": { "$numberDouble": "265.6" } + }, + { + "label": "Label", + "id": "2024-07-20T11:36:52Z", + "x": { "$date": { "$numberLong": "1721475412077" } }, + "y": { "$numberDouble": "268.8" } + }, + { + "label": "Label", + "id": "2024-07-21T20:19:22Z", + "x": { "$date": { "$numberLong": "1721593162234" } }, + "y": { "$numberInt": "272" } + }, + { + "label": "Label", + "id": "2024-07-23T05:01:52Z", + "x": { "$date": { "$numberLong": "1721710912390" } }, + "y": { "$numberDouble": "275.2" } + }, + { + "label": "Label", + "id": "2024-07-24T13:44:22Z", + "x": { "$date": { "$numberLong": "1721828662547" } }, + "y": { "$numberDouble": "278.4" } + }, + { + "label": "Label", + "id": "2024-07-25T22:26:52Z", + "x": { "$date": { "$numberLong": "1721946412704" } }, + "y": { "$numberDouble": "281.6" } + }, + { + "label": "Label", + "id": "2024-07-27T07:09:22Z", + "x": { "$date": { "$numberLong": "1722064162861" } }, + "y": { "$numberDouble": "284.8" } + } + ], + "_id": { "$oid": "66189c868bcc89e3792dd260" } + }, + "180d": { + "id": "180d", + "name": "Last 180D", + "color": "#2e7c67", + "data": [ + { + "label": "Label", + "id": "2024-03-28T00:06:38Z", + "x": { "$date": { "$numberLong": "1711584398915" } }, + "y": { "$numberInt": "0" } + }, + { + "label": "Label", + "id": "2024-03-29T04:26:26Z", + "x": { "$date": { "$numberLong": "1711686386423" } }, + "y": { "$numberDouble": "2.51" } + }, + { + "label": "Label", + "id": "2024-03-30T08:46:13Z", + "x": { "$date": { "$numberLong": "1711788373931" } }, + "y": { "$numberDouble": "5.02" } + }, + { + "label": "Label", + "id": "2024-03-31T13:06:01Z", + "x": { "$date": { "$numberLong": "1711890361439" } }, + "y": { "$numberDouble": "7.54" } + }, + { + "label": "Label", + "id": "2024-04-01T17:25:48Z", + "x": { "$date": { "$numberLong": "1711992348947" } }, + "y": { "$numberDouble": "10.05" } + }, + { + "label": "Label", + "id": "2024-04-02T21:45:36Z", + "x": { "$date": { "$numberLong": "1712094336455" } }, + "y": { "$numberDouble": "12.56" } + }, + { + "label": "Label", + "id": "2024-04-04T02:05:23Z", + "x": { "$date": { "$numberLong": "1712196323963" } }, + "y": { "$numberDouble": "15.07" } + }, + { + "label": "Label", + "id": "2024-04-05T06:25:11Z", + "x": { "$date": { "$numberLong": "1712298311471" } }, + "y": { "$numberDouble": "17.59" } + }, + { + "label": "Label", + "id": "2024-04-06T10:44:58Z", + "x": { "$date": { "$numberLong": "1712400298979" } }, + "y": { "$numberDouble": "20.1" } + }, + { + "label": "Label", + "id": "2024-04-07T15:04:46Z", + "x": { "$date": { "$numberLong": "1712502286487" } }, + "y": { "$numberDouble": "22.61" } + }, + { + "label": "Label", + "id": "2024-04-08T19:24:33Z", + "x": { "$date": { "$numberLong": "1712604273995" } }, + "y": { "$numberDouble": "25.12" } + }, + { + "label": "Label", + "id": "2024-04-09T23:44:21Z", + "x": { "$date": { "$numberLong": "1712706261503" } }, + "y": { "$numberDouble": "27.64" } + }, + { + "label": "Label", + "id": "2024-04-11T04:04:09Z", + "x": { "$date": { "$numberLong": "1712808249011" } }, + "y": { "$numberDouble": "30.15" } + }, + { + "label": "Label", + "id": "2024-04-12T08:23:56Z", + "x": { "$date": { "$numberLong": "1712910236520" } }, + "y": { "$numberDouble": "32.66" } + }, + { + "label": "Label", + "id": "2024-04-13T12:43:44Z", + "x": { "$date": { "$numberLong": "1713012224028" } }, + "y": { "$numberDouble": "35.17" } + }, + { + "label": "Label", + "id": "2024-04-14T17:03:31Z", + "x": { "$date": { "$numberLong": "1713114211536" } }, + "y": { "$numberDouble": "37.68" } + }, + { + "label": "Label", + "id": "2024-04-15T21:23:19Z", + "x": { "$date": { "$numberLong": "1713216199044" } }, + "y": { "$numberDouble": "40.2" } + }, + { + "label": "Label", + "id": "2024-04-17T01:43:06Z", + "x": { "$date": { "$numberLong": "1713318186552" } }, + "y": { "$numberDouble": "42.71" } + }, + { + "label": "Label", + "id": "2024-04-18T06:02:54Z", + "x": { "$date": { "$numberLong": "1713420174060" } }, + "y": { "$numberDouble": "45.22" } + }, + { + "label": "Label", + "id": "2024-04-19T10:22:41Z", + "x": { "$date": { "$numberLong": "1713522161568" } }, + "y": { "$numberDouble": "47.73" } + }, + { + "label": "Label", + "id": "2024-04-20T14:42:29Z", + "x": { "$date": { "$numberLong": "1713624149076" } }, + "y": { "$numberDouble": "50.25" } + }, + { + "label": "Label", + "id": "2024-04-21T19:02:16Z", + "x": { "$date": { "$numberLong": "1713726136584" } }, + "y": { "$numberDouble": "52.76" } + }, + { + "label": "Label", + "id": "2024-04-22T23:22:04Z", + "x": { "$date": { "$numberLong": "1713828124092" } }, + "y": { "$numberDouble": "55.27" } + }, + { + "label": "Label", + "id": "2024-04-24T03:41:51Z", + "x": { "$date": { "$numberLong": "1713930111600" } }, + "y": { "$numberDouble": "57.78" } + }, + { + "label": "Label", + "id": "2024-04-25T08:01:39Z", + "x": { "$date": { "$numberLong": "1714032099108" } }, + "y": { "$numberDouble": "60.29" } + }, + { + "label": "Label", + "id": "2024-04-26T12:21:26Z", + "x": { "$date": { "$numberLong": "1714134086616" } }, + "y": { "$numberDouble": "62.81" } + }, + { + "label": "Label", + "id": "2024-04-27T16:41:14Z", + "x": { "$date": { "$numberLong": "1714236074125" } }, + "y": { "$numberDouble": "65.32" } + }, + { + "label": "Label", + "id": "2024-04-28T21:01:01Z", + "x": { "$date": { "$numberLong": "1714338061633" } }, + "y": { "$numberDouble": "67.83" } + }, + { + "label": "Label", + "id": "2024-04-30T01:20:49Z", + "x": { "$date": { "$numberLong": "1714440049141" } }, + "y": { "$numberDouble": "70.34" } + }, + { + "label": "Label", + "id": "2024-05-01T05:40:36Z", + "x": { "$date": { "$numberLong": "1714542036649" } }, + "y": { "$numberDouble": "72.86" } + }, + { + "label": "Label", + "id": "2024-05-02T10:00:24Z", + "x": { "$date": { "$numberLong": "1714644024157" } }, + "y": { "$numberDouble": "75.37" } + }, + { + "label": "Label", + "id": "2024-05-03T14:20:11Z", + "x": { "$date": { "$numberLong": "1714746011665" } }, + "y": { "$numberDouble": "77.88" } + }, + { + "label": "Label", + "id": "2024-05-04T18:39:59Z", + "x": { "$date": { "$numberLong": "1714847999173" } }, + "y": { "$numberDouble": "80.39" } + }, + { + "label": "Label", + "id": "2024-05-05T22:59:46Z", + "x": { "$date": { "$numberLong": "1714949986681" } }, + "y": { "$numberDouble": "82.91" } + }, + { + "label": "Label", + "id": "2024-05-07T03:19:34Z", + "x": { "$date": { "$numberLong": "1715051974189" } }, + "y": { "$numberDouble": "85.42" } + }, + { + "label": "Label", + "id": "2024-05-08T07:39:21Z", + "x": { "$date": { "$numberLong": "1715153961697" } }, + "y": { "$numberDouble": "87.93" } + }, + { + "label": "Label", + "id": "2024-05-09T11:59:09Z", + "x": { "$date": { "$numberLong": "1715255949205" } }, + "y": { "$numberDouble": "90.44" } + }, + { + "label": "Label", + "id": "2024-05-10T16:18:56Z", + "x": { "$date": { "$numberLong": "1715357936713" } }, + "y": { "$numberDouble": "92.95" } + }, + { + "label": "Label", + "id": "2024-05-11T20:38:44Z", + "x": { "$date": { "$numberLong": "1715459924221" } }, + "y": { "$numberDouble": "95.47" } + }, + { + "label": "Label", + "id": "2024-05-13T00:58:31Z", + "x": { "$date": { "$numberLong": "1715561911730" } }, + "y": { "$numberDouble": "97.98" } + }, + { + "label": "Label", + "id": "2024-05-14T05:18:19Z", + "x": { "$date": { "$numberLong": "1715663899238" } }, + "y": { "$numberDouble": "100.49" } + }, + { + "label": "Label", + "id": "2024-05-15T09:38:06Z", + "x": { "$date": { "$numberLong": "1715765886746" } }, + "y": { "$numberInt": "103" } + }, + { + "label": "Label", + "id": "2024-05-16T13:57:54Z", + "x": { "$date": { "$numberLong": "1715867874254" } }, + "y": { "$numberDouble": "105.52" } + }, + { + "label": "Label", + "id": "2024-05-17T18:17:41Z", + "x": { "$date": { "$numberLong": "1715969861762" } }, + "y": { "$numberDouble": "108.03" } + }, + { + "label": "Label", + "id": "2024-05-18T22:37:29Z", + "x": { "$date": { "$numberLong": "1716071849270" } }, + "y": { "$numberDouble": "110.54" } + }, + { + "label": "Label", + "id": "2024-05-20T02:57:16Z", + "x": { "$date": { "$numberLong": "1716173836778" } }, + "y": { "$numberDouble": "113.05" } + }, + { + "label": "Label", + "id": "2024-05-21T07:17:04Z", + "x": { "$date": { "$numberLong": "1716275824286" } }, + "y": { "$numberDouble": "115.57" } + }, + { + "label": "Label", + "id": "2024-05-22T11:36:51Z", + "x": { "$date": { "$numberLong": "1716377811794" } }, + "y": { "$numberDouble": "118.08" } + }, + { + "label": "Label", + "id": "2024-05-23T15:56:39Z", + "x": { "$date": { "$numberLong": "1716479799302" } }, + "y": { "$numberDouble": "120.59" } + }, + { + "label": "Label", + "id": "2024-05-24T20:16:26Z", + "x": { "$date": { "$numberLong": "1716581786810" } }, + "y": { "$numberDouble": "123.1" } + }, + { + "label": "Label", + "id": "2024-05-26T00:36:14Z", + "x": { "$date": { "$numberLong": "1716683774318" } }, + "y": { "$numberDouble": "125.61" } + }, + { + "label": "Label", + "id": "2024-05-27T04:56:01Z", + "x": { "$date": { "$numberLong": "1716785761826" } }, + "y": { "$numberDouble": "128.13" } + }, + { + "label": "Label", + "id": "2024-05-28T09:15:49Z", + "x": { "$date": { "$numberLong": "1716887749335" } }, + "y": { "$numberDouble": "130.64" } + }, + { + "label": "Label", + "id": "2024-05-29T13:35:36Z", + "x": { "$date": { "$numberLong": "1716989736843" } }, + "y": { "$numberDouble": "133.15" } + }, + { + "label": "Label", + "id": "2024-05-30T17:55:24Z", + "x": { "$date": { "$numberLong": "1717091724351" } }, + "y": { "$numberDouble": "135.66" } + }, + { + "label": "Label", + "id": "2024-05-31T22:15:11Z", + "x": { "$date": { "$numberLong": "1717193711859" } }, + "y": { "$numberDouble": "138.18" } + }, + { + "label": "Label", + "id": "2024-06-02T02:34:59Z", + "x": { "$date": { "$numberLong": "1717295699367" } }, + "y": { "$numberDouble": "140.69" } + }, + { + "label": "Label", + "id": "2024-06-03T06:54:46Z", + "x": { "$date": { "$numberLong": "1717397686875" } }, + "y": { "$numberDouble": "143.2" } + }, + { + "label": "Label", + "id": "2024-06-04T11:14:34Z", + "x": { "$date": { "$numberLong": "1717499674383" } }, + "y": { "$numberDouble": "145.71" } + }, + { + "label": "Label", + "id": "2024-06-05T15:34:21Z", + "x": { "$date": { "$numberLong": "1717601661891" } }, + "y": { "$numberDouble": "148.23" } + }, + { + "label": "Label", + "id": "2024-06-06T19:54:09Z", + "x": { "$date": { "$numberLong": "1717703649399" } }, + "y": { "$numberDouble": "150.74" } + }, + { + "label": "Label", + "id": "2024-06-08T00:13:56Z", + "x": { "$date": { "$numberLong": "1717805636907" } }, + "y": { "$numberDouble": "153.25" } + }, + { + "label": "Label", + "id": "2024-06-09T04:33:44Z", + "x": { "$date": { "$numberLong": "1717907624415" } }, + "y": { "$numberDouble": "155.76" } + }, + { + "label": "Label", + "id": "2024-06-10T08:53:31Z", + "x": { "$date": { "$numberLong": "1718009611923" } }, + "y": { "$numberDouble": "158.27" } + }, + { + "label": "Label", + "id": "2024-06-11T13:13:19Z", + "x": { "$date": { "$numberLong": "1718111599432" } }, + "y": { "$numberDouble": "160.79" } + }, + { + "label": "Label", + "id": "2024-06-12T17:33:06Z", + "x": { "$date": { "$numberLong": "1718213586940" } }, + "y": { "$numberDouble": "163.3" } + }, + { + "label": "Label", + "id": "2024-06-13T21:52:54Z", + "x": { "$date": { "$numberLong": "1718315574448" } }, + "y": { "$numberDouble": "165.81" } + }, + { + "label": "Label", + "id": "2024-06-15T02:12:41Z", + "x": { "$date": { "$numberLong": "1718417561956" } }, + "y": { "$numberDouble": "168.32" } + }, + { + "label": "Label", + "id": "2024-06-16T06:32:29Z", + "x": { "$date": { "$numberLong": "1718519549464" } }, + "y": { "$numberDouble": "170.84" } + }, + { + "label": "Label", + "id": "2024-06-17T10:52:16Z", + "x": { "$date": { "$numberLong": "1718621536972" } }, + "y": { "$numberDouble": "173.35" } + }, + { + "label": "Label", + "id": "2024-06-18T15:12:04Z", + "x": { "$date": { "$numberLong": "1718723524480" } }, + "y": { "$numberDouble": "175.86" } + }, + { + "label": "Label", + "id": "2024-06-19T19:31:51Z", + "x": { "$date": { "$numberLong": "1718825511988" } }, + "y": { "$numberDouble": "178.37" } + }, + { + "label": "Label", + "id": "2024-06-20T23:51:39Z", + "x": { "$date": { "$numberLong": "1718927499496" } }, + "y": { "$numberDouble": "180.88" } + }, + { + "label": "Label", + "id": "2024-06-22T04:11:27Z", + "x": { "$date": { "$numberLong": "1719029487004" } }, + "y": { "$numberDouble": "183.4" } + }, + { + "label": "Label", + "id": "2024-06-23T08:31:14Z", + "x": { "$date": { "$numberLong": "1719131474512" } }, + "y": { "$numberDouble": "185.91" } + }, + { + "label": "Label", + "id": "2024-06-24T12:51:02Z", + "x": { "$date": { "$numberLong": "1719233462020" } }, + "y": { "$numberDouble": "188.42" } + }, + { + "label": "Label", + "id": "2024-06-25T17:10:49Z", + "x": { "$date": { "$numberLong": "1719335449528" } }, + "y": { "$numberDouble": "190.93" } + }, + { + "label": "Label", + "id": "2024-06-26T21:30:37Z", + "x": { "$date": { "$numberLong": "1719437437037" } }, + "y": { "$numberDouble": "193.45" } + }, + { + "label": "Label", + "id": "2024-06-28T01:50:24Z", + "x": { "$date": { "$numberLong": "1719539424545" } }, + "y": { "$numberDouble": "195.96" } + }, + { + "label": "Label", + "id": "2024-06-29T06:10:12Z", + "x": { "$date": { "$numberLong": "1719641412053" } }, + "y": { "$numberDouble": "198.47" } + }, + { + "label": "Label", + "id": "2024-06-30T10:29:59Z", + "x": { "$date": { "$numberLong": "1719743399561" } }, + "y": { "$numberDouble": "200.98" } + }, + { + "label": "Label", + "id": "2024-07-01T14:49:47Z", + "x": { "$date": { "$numberLong": "1719845387069" } }, + "y": { "$numberDouble": "203.5" } + }, + { + "label": "Label", + "id": "2024-07-02T19:09:34Z", + "x": { "$date": { "$numberLong": "1719947374577" } }, + "y": { "$numberDouble": "206.01" } + }, + { + "label": "Label", + "id": "2024-07-03T23:29:22Z", + "x": { "$date": { "$numberLong": "1720049362085" } }, + "y": { "$numberDouble": "208.52" } + }, + { + "label": "Label", + "id": "2024-07-05T03:49:09Z", + "x": { "$date": { "$numberLong": "1720151349593" } }, + "y": { "$numberDouble": "211.03" } + }, + { + "label": "Label", + "id": "2024-07-06T08:08:57Z", + "x": { "$date": { "$numberLong": "1720253337101" } }, + "y": { "$numberDouble": "213.54" } + }, + { + "label": "Label", + "id": "2024-07-07T12:28:44Z", + "x": { "$date": { "$numberLong": "1720355324609" } }, + "y": { "$numberDouble": "216.06" } + }, + { + "label": "Label", + "id": "2024-07-08T16:48:32Z", + "x": { "$date": { "$numberLong": "1720457312117" } }, + "y": { "$numberDouble": "218.57" } + }, + { + "label": "Label", + "id": "2024-07-09T21:08:19Z", + "x": { "$date": { "$numberLong": "1720559299625" } }, + "y": { "$numberDouble": "221.08" } + }, + { + "label": "Label", + "id": "2024-07-11T01:28:07Z", + "x": { "$date": { "$numberLong": "1720661287133" } }, + "y": { "$numberDouble": "223.59" } + }, + { + "label": "Label", + "id": "2024-07-12T05:47:54Z", + "x": { "$date": { "$numberLong": "1720763274642" } }, + "y": { "$numberDouble": "226.11" } + }, + { + "label": "Label", + "id": "2024-07-13T10:07:42Z", + "x": { "$date": { "$numberLong": "1720865262150" } }, + "y": { "$numberDouble": "228.62" } + }, + { + "label": "Label", + "id": "2024-07-14T14:27:29Z", + "x": { "$date": { "$numberLong": "1720967249658" } }, + "y": { "$numberDouble": "231.13" } + }, + { + "label": "Label", + "id": "2024-07-15T18:47:17Z", + "x": { "$date": { "$numberLong": "1721069237166" } }, + "y": { "$numberDouble": "233.64" } + }, + { + "label": "Label", + "id": "2024-07-16T23:07:04Z", + "x": { "$date": { "$numberLong": "1721171224674" } }, + "y": { "$numberDouble": "236.16" } + }, + { + "label": "Label", + "id": "2024-07-18T03:26:52Z", + "x": { "$date": { "$numberLong": "1721273212182" } }, + "y": { "$numberDouble": "238.67" } + }, + { + "label": "Label", + "id": "2024-07-19T07:46:39Z", + "x": { "$date": { "$numberLong": "1721375199690" } }, + "y": { "$numberDouble": "241.18" } + }, + { + "label": "Label", + "id": "2024-07-20T12:06:27Z", + "x": { "$date": { "$numberLong": "1721477187198" } }, + "y": { "$numberDouble": "243.69" } + }, + { + "label": "Label", + "id": "2024-07-21T16:26:14Z", + "x": { "$date": { "$numberLong": "1721579174706" } }, + "y": { "$numberDouble": "246.2" } + }, + { + "label": "Label", + "id": "2024-07-22T20:46:02Z", + "x": { "$date": { "$numberLong": "1721681162214" } }, + "y": { "$numberDouble": "248.72" } + }, + { + "label": "Label", + "id": "2024-07-24T01:05:49Z", + "x": { "$date": { "$numberLong": "1721783149722" } }, + "y": { "$numberDouble": "251.23" } + }, + { + "label": "Label", + "id": "2024-07-25T05:25:37Z", + "x": { "$date": { "$numberLong": "1721885137230" } }, + "y": { "$numberDouble": "253.74" } + }, + { + "label": "Label", + "id": "2024-07-26T09:45:24Z", + "x": { "$date": { "$numberLong": "1721987124738" } }, + "y": { "$numberDouble": "256.25" } + }, + { + "label": "Label", + "id": "2024-07-27T14:05:12Z", + "x": { "$date": { "$numberLong": "1722089112247" } }, + "y": { "$numberDouble": "258.77" } + }, + { + "label": "Label", + "id": "2024-07-28T18:24:59Z", + "x": { "$date": { "$numberLong": "1722191099755" } }, + "y": { "$numberDouble": "261.28" } + }, + { + "label": "Label", + "id": "2024-07-29T22:44:47Z", + "x": { "$date": { "$numberLong": "1722293087263" } }, + "y": { "$numberDouble": "263.79" } + }, + { + "label": "Label", + "id": "2024-07-31T03:04:34Z", + "x": { "$date": { "$numberLong": "1722395074771" } }, + "y": { "$numberDouble": "266.3" } + }, + { + "label": "Label", + "id": "2024-08-01T07:24:22Z", + "x": { "$date": { "$numberLong": "1722497062279" } }, + "y": { "$numberDouble": "268.82" } + }, + { + "label": "Label", + "id": "2024-08-02T11:44:09Z", + "x": { "$date": { "$numberLong": "1722599049787" } }, + "y": { "$numberDouble": "271.33" } + }, + { + "label": "Label", + "id": "2024-08-03T16:03:57Z", + "x": { "$date": { "$numberLong": "1722701037295" } }, + "y": { "$numberDouble": "273.84" } + }, + { + "label": "Label", + "id": "2024-08-04T20:23:44Z", + "x": { "$date": { "$numberLong": "1722803024803" } }, + "y": { "$numberDouble": "276.35" } + }, + { + "label": "Label", + "id": "2024-08-06T00:43:32Z", + "x": { "$date": { "$numberLong": "1722905012311" } }, + "y": { "$numberDouble": "278.86" } + }, + { + "label": "Label", + "id": "2024-08-07T05:03:19Z", + "x": { "$date": { "$numberLong": "1723006999819" } }, + "y": { "$numberDouble": "281.38" } + }, + { + "label": "Label", + "id": "2024-08-08T09:23:07Z", + "x": { "$date": { "$numberLong": "1723108987327" } }, + "y": { "$numberDouble": "283.89" } + }, + { + "label": "Label", + "id": "2024-08-09T13:42:54Z", + "x": { "$date": { "$numberLong": "1723210974835" } }, + "y": { "$numberDouble": "286.4" } + }, + { + "label": "Label", + "id": "2024-08-10T18:02:42Z", + "x": { "$date": { "$numberLong": "1723312962343" } }, + "y": { "$numberDouble": "288.91" } + }, + { + "label": "Label", + "id": "2024-08-11T22:22:29Z", + "x": { "$date": { "$numberLong": "1723414949852" } }, + "y": { "$numberDouble": "291.43" } + }, + { + "label": "Label", + "id": "2024-08-13T02:42:17Z", + "x": { "$date": { "$numberLong": "1723516937360" } }, + "y": { "$numberDouble": "293.94" } + }, + { + "label": "Label", + "id": "2024-08-14T07:02:04Z", + "x": { "$date": { "$numberLong": "1723618924868" } }, + "y": { "$numberDouble": "296.45" } + }, + { + "label": "Label", + "id": "2024-08-15T11:21:52Z", + "x": { "$date": { "$numberLong": "1723720912376" } }, + "y": { "$numberDouble": "298.96" } + }, + { + "label": "Label", + "id": "2024-08-16T15:41:39Z", + "x": { "$date": { "$numberLong": "1723822899884" } }, + "y": { "$numberDouble": "301.47" } + }, + { + "label": "Label", + "id": "2024-08-17T20:01:27Z", + "x": { "$date": { "$numberLong": "1723924887392" } }, + "y": { "$numberDouble": "303.99" } + }, + { + "label": "Label", + "id": "2024-08-19T00:21:14Z", + "x": { "$date": { "$numberLong": "1724026874900" } }, + "y": { "$numberDouble": "306.5" } + }, + { + "label": "Label", + "id": "2024-08-20T04:41:02Z", + "x": { "$date": { "$numberLong": "1724128862408" } }, + "y": { "$numberDouble": "309.01" } + }, + { + "label": "Label", + "id": "2024-08-21T09:00:49Z", + "x": { "$date": { "$numberLong": "1724230849916" } }, + "y": { "$numberDouble": "311.52" } + }, + { + "label": "Label", + "id": "2024-08-22T13:20:37Z", + "x": { "$date": { "$numberLong": "1724332837424" } }, + "y": { "$numberDouble": "314.04" } + }, + { + "label": "Label", + "id": "2024-08-23T17:40:24Z", + "x": { "$date": { "$numberLong": "1724434824932" } }, + "y": { "$numberDouble": "316.55" } + }, + { + "label": "Label", + "id": "2024-08-24T22:00:12Z", + "x": { "$date": { "$numberLong": "1724536812440" } }, + "y": { "$numberDouble": "319.06" } + }, + { + "label": "Label", + "id": "2024-08-26T02:19:59Z", + "x": { "$date": { "$numberLong": "1724638799949" } }, + "y": { "$numberDouble": "321.57" } + }, + { + "label": "Label", + "id": "2024-08-27T06:39:47Z", + "x": { "$date": { "$numberLong": "1724740787457" } }, + "y": { "$numberDouble": "324.09" } + }, + { + "label": "Label", + "id": "2024-08-28T10:59:34Z", + "x": { "$date": { "$numberLong": "1724842774965" } }, + "y": { "$numberDouble": "326.6" } + }, + { + "label": "Label", + "id": "2024-08-29T15:19:22Z", + "x": { "$date": { "$numberLong": "1724944762473" } }, + "y": { "$numberDouble": "329.11" } + }, + { + "label": "Label", + "id": "2024-08-30T19:39:09Z", + "x": { "$date": { "$numberLong": "1725046749981" } }, + "y": { "$numberDouble": "331.62" } + }, + { + "label": "Label", + "id": "2024-08-31T23:58:57Z", + "x": { "$date": { "$numberLong": "1725148737489" } }, + "y": { "$numberDouble": "334.13" } + }, + { + "label": "Label", + "id": "2024-09-02T04:18:44Z", + "x": { "$date": { "$numberLong": "1725250724997" } }, + "y": { "$numberDouble": "336.65" } + }, + { + "label": "Label", + "id": "2024-09-03T08:38:32Z", + "x": { "$date": { "$numberLong": "1725352712505" } }, + "y": { "$numberDouble": "339.16" } + }, + { + "label": "Label", + "id": "2024-09-04T12:58:20Z", + "x": { "$date": { "$numberLong": "1725454700013" } }, + "y": { "$numberDouble": "341.67" } + }, + { + "label": "Label", + "id": "2024-09-05T17:18:07Z", + "x": { "$date": { "$numberLong": "1725556687521" } }, + "y": { "$numberDouble": "344.18" } + }, + { + "label": "Label", + "id": "2024-09-06T21:37:55Z", + "x": { "$date": { "$numberLong": "1725658675029" } }, + "y": { "$numberDouble": "346.7" } + }, + { + "label": "Label", + "id": "2024-09-08T01:57:42Z", + "x": { "$date": { "$numberLong": "1725760662537" } }, + "y": { "$numberDouble": "349.21" } + }, + { + "label": "Label", + "id": "2024-09-09T06:17:30Z", + "x": { "$date": { "$numberLong": "1725862650045" } }, + "y": { "$numberDouble": "351.72" } + }, + { + "label": "Label", + "id": "2024-09-10T10:37:17Z", + "x": { "$date": { "$numberLong": "1725964637554" } }, + "y": { "$numberDouble": "354.23" } + }, + { + "label": "Label", + "id": "2024-09-11T14:57:05Z", + "x": { "$date": { "$numberLong": "1726066625062" } }, + "y": { "$numberDouble": "356.75" } + }, + { + "label": "Label", + "id": "2024-09-12T19:16:52Z", + "x": { "$date": { "$numberLong": "1726168612570" } }, + "y": { "$numberDouble": "359.26" } + }, + { + "label": "Label", + "id": "2024-09-13T23:36:40Z", + "x": { "$date": { "$numberLong": "1726270600078" } }, + "y": { "$numberDouble": "361.77" } + }, + { + "label": "Label", + "id": "2024-09-15T03:56:27Z", + "x": { "$date": { "$numberLong": "1726372587586" } }, + "y": { "$numberDouble": "364.28" } + }, + { + "label": "Label", + "id": "2024-09-16T08:16:15Z", + "x": { "$date": { "$numberLong": "1726474575094" } }, + "y": { "$numberDouble": "366.79" } + }, + { + "label": "Label", + "id": "2024-09-17T12:36:02Z", + "x": { "$date": { "$numberLong": "1726576562602" } }, + "y": { "$numberDouble": "369.31" } + }, + { + "label": "Label", + "id": "2024-09-18T16:55:50Z", + "x": { "$date": { "$numberLong": "1726678550110" } }, + "y": { "$numberDouble": "371.82" } + }, + { + "label": "Label", + "id": "2024-09-19T21:15:37Z", + "x": { "$date": { "$numberLong": "1726780537618" } }, + "y": { "$numberDouble": "374.33" } + }, + { + "label": "Label", + "id": "2024-09-21T01:35:25Z", + "x": { "$date": { "$numberLong": "1726882525126" } }, + "y": { "$numberDouble": "376.84" } + }, + { + "label": "Label", + "id": "2024-09-22T05:55:12Z", + "x": { "$date": { "$numberLong": "1726984512634" } }, + "y": { "$numberDouble": "379.36" } + }, + { + "label": "Label", + "id": "2024-09-23T10:15:00Z", + "x": { "$date": { "$numberLong": "1727086500142" } }, + "y": { "$numberDouble": "381.87" } + }, + { + "label": "Label", + "id": "2024-09-24T14:34:47Z", + "x": { "$date": { "$numberLong": "1727188487650" } }, + "y": { "$numberDouble": "384.38" } + }, + { + "label": "Label", + "id": "2024-09-25T18:54:35Z", + "x": { "$date": { "$numberLong": "1727290475159" } }, + "y": { "$numberDouble": "386.89" } + }, + { + "label": "Label", + "id": "2024-09-26T23:14:22Z", + "x": { "$date": { "$numberLong": "1727392462667" } }, + "y": { "$numberDouble": "389.41" } + }, + { + "label": "Label", + "id": "2024-09-28T03:34:10Z", + "x": { "$date": { "$numberLong": "1727494450175" } }, + "y": { "$numberDouble": "391.92" } + }, + { + "label": "Label", + "id": "2024-09-29T07:53:57Z", + "x": { "$date": { "$numberLong": "1727596437683" } }, + "y": { "$numberDouble": "394.43" } + }, + { + "label": "Label", + "id": "2024-09-30T12:13:45Z", + "x": { "$date": { "$numberLong": "1727698425191" } }, + "y": { "$numberDouble": "396.94" } + }, + { + "label": "Label", + "id": "2024-10-01T16:33:32Z", + "x": { "$date": { "$numberLong": "1727800412699" } }, + "y": { "$numberDouble": "399.45" } + }, + { + "label": "Label", + "id": "2024-10-02T20:53:20Z", + "x": { "$date": { "$numberLong": "1727902400207" } }, + "y": { "$numberDouble": "401.97" } + }, + { + "label": "Label", + "id": "2024-10-04T01:13:07Z", + "x": { "$date": { "$numberLong": "1728004387715" } }, + "y": { "$numberDouble": "404.48" } + }, + { + "label": "Label", + "id": "2024-10-05T05:32:55Z", + "x": { "$date": { "$numberLong": "1728106375223" } }, + "y": { "$numberDouble": "406.99" } + }, + { + "label": "Label", + "id": "2024-10-06T09:52:42Z", + "x": { "$date": { "$numberLong": "1728208362731" } }, + "y": { "$numberDouble": "409.5" } + }, + { + "label": "Label", + "id": "2024-10-07T14:12:30Z", + "x": { "$date": { "$numberLong": "1728310350239" } }, + "y": { "$numberDouble": "412.02" } + }, + { + "label": "Label", + "id": "2024-10-08T18:32:17Z", + "x": { "$date": { "$numberLong": "1728412337747" } }, + "y": { "$numberDouble": "414.53" } + }, + { + "label": "Label", + "id": "2024-10-09T22:52:05Z", + "x": { "$date": { "$numberLong": "1728514325255" } }, + "y": { "$numberDouble": "417.04" } + }, + { + "label": "Label", + "id": "2024-10-11T03:11:52Z", + "x": { "$date": { "$numberLong": "1728616312764" } }, + "y": { "$numberDouble": "419.55" } + }, + { + "label": "Label", + "id": "2024-10-12T07:31:40Z", + "x": { "$date": { "$numberLong": "1728718300272" } }, + "y": { "$numberDouble": "422.06" } + }, + { + "label": "Label", + "id": "2024-10-13T11:51:27Z", + "x": { "$date": { "$numberLong": "1728820287780" } }, + "y": { "$numberDouble": "424.58" } + }, + { + "label": "Label", + "id": "2024-10-14T16:11:15Z", + "x": { "$date": { "$numberLong": "1728922275288" } }, + "y": { "$numberDouble": "427.09" } + }, + { + "label": "Label", + "id": "2024-10-15T20:31:02Z", + "x": { "$date": { "$numberLong": "1729024262796" } }, + "y": { "$numberDouble": "429.6" } + }, + { + "label": "Label", + "id": "2024-10-17T00:50:50Z", + "x": { "$date": { "$numberLong": "1729126250304" } }, + "y": { "$numberDouble": "432.11" } + }, + { + "label": "Label", + "id": "2024-10-18T05:10:37Z", + "x": { "$date": { "$numberLong": "1729228237812" } }, + "y": { "$numberDouble": "434.63" } + }, + { + "label": "Label", + "id": "2024-10-19T09:30:25Z", + "x": { "$date": { "$numberLong": "1729330225320" } }, + "y": { "$numberDouble": "437.14" } + }, + { + "label": "Label", + "id": "2024-10-20T13:50:12Z", + "x": { "$date": { "$numberLong": "1729432212828" } }, + "y": { "$numberDouble": "439.65" } + }, + { + "label": "Label", + "id": "2024-10-21T18:10:00Z", + "x": { "$date": { "$numberLong": "1729534200336" } }, + "y": { "$numberDouble": "442.16" } + }, + { + "label": "Label", + "id": "2024-10-22T22:29:47Z", + "x": { "$date": { "$numberLong": "1729636187844" } }, + "y": { "$numberDouble": "444.68" } + }, + { + "label": "Label", + "id": "2024-10-24T02:49:35Z", + "x": { "$date": { "$numberLong": "1729738175352" } }, + "y": { "$numberDouble": "447.19" } + }, + { + "label": "Label", + "id": "2024-10-25T07:09:22Z", + "x": { "$date": { "$numberLong": "1729840162861" } }, + "y": { "$numberDouble": "449.7" } + } + ], + "_id": { "$oid": "66189c868bcc89e3792dd261" } + }, + "270d": { + "id": "270d", + "name": "Last 270D", + "color": "#2e7c67", + "data": [ + { + "label": "Label", + "id": "2024-03-28T00:06:38Z", + "x": { "$date": { "$numberLong": "1711584398915" } }, + "y": { "$numberInt": "0" } + }, + { + "label": "Label", + "id": "2024-03-29T02:59:31Z", + "x": { "$date": { "$numberLong": "1711681171271" } }, + "y": { "$numberDouble": "2.66" } + }, + { + "label": "Label", + "id": "2024-03-30T05:52:23Z", + "x": { "$date": { "$numberLong": "1711777943628" } }, + "y": { "$numberDouble": "5.31" } + }, + { + "label": "Label", + "id": "2024-03-31T08:45:15Z", + "x": { "$date": { "$numberLong": "1711874715985" } }, + "y": { "$numberDouble": "7.97" } + }, + { + "label": "Label", + "id": "2024-04-01T11:38:08Z", + "x": { "$date": { "$numberLong": "1711971488341" } }, + "y": { "$numberDouble": "10.63" } + }, + { + "label": "Label", + "id": "2024-04-02T14:31:00Z", + "x": { "$date": { "$numberLong": "1712068260698" } }, + "y": { "$numberDouble": "13.28" } + }, + { + "label": "Label", + "id": "2024-04-03T17:23:53Z", + "x": { "$date": { "$numberLong": "1712165033055" } }, + "y": { "$numberDouble": "15.94" } + }, + { + "label": "Label", + "id": "2024-04-04T20:16:45Z", + "x": { "$date": { "$numberLong": "1712261805411" } }, + "y": { "$numberDouble": "18.6" } + }, + { + "label": "Label", + "id": "2024-04-05T23:09:37Z", + "x": { "$date": { "$numberLong": "1712358577768" } }, + "y": { "$numberDouble": "21.25" } + }, + { + "label": "Label", + "id": "2024-04-07T02:02:30Z", + "x": { "$date": { "$numberLong": "1712455350125" } }, + "y": { "$numberDouble": "23.91" } + }, + { + "label": "Label", + "id": "2024-04-08T04:55:22Z", + "x": { "$date": { "$numberLong": "1712552122481" } }, + "y": { "$numberDouble": "26.57" } + }, + { + "label": "Label", + "id": "2024-04-09T07:48:14Z", + "x": { "$date": { "$numberLong": "1712648894838" } }, + "y": { "$numberDouble": "29.22" } + }, + { + "label": "Label", + "id": "2024-04-10T10:41:07Z", + "x": { "$date": { "$numberLong": "1712745667195" } }, + "y": { "$numberDouble": "31.88" } + }, + { + "label": "Label", + "id": "2024-04-11T13:33:59Z", + "x": { "$date": { "$numberLong": "1712842439551" } }, + "y": { "$numberDouble": "34.53" } + }, + { + "label": "Label", + "id": "2024-04-12T16:26:51Z", + "x": { "$date": { "$numberLong": "1712939211908" } }, + "y": { "$numberDouble": "37.19" } + }, + { + "label": "Label", + "id": "2024-04-13T19:19:44Z", + "x": { "$date": { "$numberLong": "1713035984265" } }, + "y": { "$numberDouble": "39.85" } + }, + { + "label": "Label", + "id": "2024-04-14T22:12:36Z", + "x": { "$date": { "$numberLong": "1713132756621" } }, + "y": { "$numberDouble": "42.5" } + }, + { + "label": "Label", + "id": "2024-04-16T01:05:28Z", + "x": { "$date": { "$numberLong": "1713229528978" } }, + "y": { "$numberDouble": "45.16" } + }, + { + "label": "Label", + "id": "2024-04-17T03:58:21Z", + "x": { "$date": { "$numberLong": "1713326301335" } }, + "y": { "$numberDouble": "47.82" } + }, + { + "label": "Label", + "id": "2024-04-18T06:51:13Z", + "x": { "$date": { "$numberLong": "1713423073691" } }, + "y": { "$numberDouble": "50.47" } + }, + { + "label": "Label", + "id": "2024-04-19T09:44:06Z", + "x": { "$date": { "$numberLong": "1713519846048" } }, + "y": { "$numberDouble": "53.13" } + }, + { + "label": "Label", + "id": "2024-04-20T12:36:58Z", + "x": { "$date": { "$numberLong": "1713616618405" } }, + "y": { "$numberDouble": "55.79" } + }, + { + "label": "Label", + "id": "2024-04-21T15:29:50Z", + "x": { "$date": { "$numberLong": "1713713390761" } }, + "y": { "$numberDouble": "58.44" } + }, + { + "label": "Label", + "id": "2024-04-22T18:22:43Z", + "x": { "$date": { "$numberLong": "1713810163118" } }, + "y": { "$numberDouble": "61.1" } + }, + { + "label": "Label", + "id": "2024-04-23T21:15:35Z", + "x": { "$date": { "$numberLong": "1713906935475" } }, + "y": { "$numberDouble": "63.76" } + }, + { + "label": "Label", + "id": "2024-04-25T00:08:27Z", + "x": { "$date": { "$numberLong": "1714003707831" } }, + "y": { "$numberDouble": "66.41" } + }, + { + "label": "Label", + "id": "2024-04-26T03:01:20Z", + "x": { "$date": { "$numberLong": "1714100480188" } }, + "y": { "$numberDouble": "69.07" } + }, + { + "label": "Label", + "id": "2024-04-27T05:54:12Z", + "x": { "$date": { "$numberLong": "1714197252545" } }, + "y": { "$numberDouble": "71.73" } + }, + { + "label": "Label", + "id": "2024-04-28T08:47:04Z", + "x": { "$date": { "$numberLong": "1714294024901" } }, + "y": { "$numberDouble": "74.38" } + }, + { + "label": "Label", + "id": "2024-04-29T11:39:57Z", + "x": { "$date": { "$numberLong": "1714390797258" } }, + "y": { "$numberDouble": "77.04" } + }, + { + "label": "Label", + "id": "2024-04-30T14:32:49Z", + "x": { "$date": { "$numberLong": "1714487569615" } }, + "y": { "$numberDouble": "79.7" } + }, + { + "label": "Label", + "id": "2024-05-01T17:25:41Z", + "x": { "$date": { "$numberLong": "1714584341971" } }, + "y": { "$numberDouble": "82.35" } + }, + { + "label": "Label", + "id": "2024-05-02T20:18:34Z", + "x": { "$date": { "$numberLong": "1714681114328" } }, + "y": { "$numberDouble": "85.01" } + }, + { + "label": "Label", + "id": "2024-05-03T23:11:26Z", + "x": { "$date": { "$numberLong": "1714777886685" } }, + "y": { "$numberDouble": "87.66" } + }, + { + "label": "Label", + "id": "2024-05-05T02:04:19Z", + "x": { "$date": { "$numberLong": "1714874659042" } }, + "y": { "$numberDouble": "90.32" } + }, + { + "label": "Label", + "id": "2024-05-06T04:57:11Z", + "x": { "$date": { "$numberLong": "1714971431398" } }, + "y": { "$numberDouble": "92.98" } + }, + { + "label": "Label", + "id": "2024-05-07T07:50:03Z", + "x": { "$date": { "$numberLong": "1715068203755" } }, + "y": { "$numberDouble": "95.63" } + }, + { + "label": "Label", + "id": "2024-05-08T10:42:56Z", + "x": { "$date": { "$numberLong": "1715164976112" } }, + "y": { "$numberDouble": "98.29" } + }, + { + "label": "Label", + "id": "2024-05-09T13:35:48Z", + "x": { "$date": { "$numberLong": "1715261748468" } }, + "y": { "$numberDouble": "100.95" } + }, + { + "label": "Label", + "id": "2024-05-10T16:28:40Z", + "x": { "$date": { "$numberLong": "1715358520825" } }, + "y": { "$numberDouble": "103.6" } + }, + { + "label": "Label", + "id": "2024-05-11T19:21:33Z", + "x": { "$date": { "$numberLong": "1715455293182" } }, + "y": { "$numberDouble": "106.26" } + }, + { + "label": "Label", + "id": "2024-05-12T22:14:25Z", + "x": { "$date": { "$numberLong": "1715552065538" } }, + "y": { "$numberDouble": "108.92" } + }, + { + "label": "Label", + "id": "2024-05-14T01:07:17Z", + "x": { "$date": { "$numberLong": "1715648837895" } }, + "y": { "$numberDouble": "111.57" } + }, + { + "label": "Label", + "id": "2024-05-15T04:00:10Z", + "x": { "$date": { "$numberLong": "1715745610252" } }, + "y": { "$numberDouble": "114.23" } + }, + { + "label": "Label", + "id": "2024-05-16T06:53:02Z", + "x": { "$date": { "$numberLong": "1715842382608" } }, + "y": { "$numberDouble": "116.89" } + }, + { + "label": "Label", + "id": "2024-05-17T09:45:54Z", + "x": { "$date": { "$numberLong": "1715939154965" } }, + "y": { "$numberDouble": "119.54" } + }, + { + "label": "Label", + "id": "2024-05-18T12:38:47Z", + "x": { "$date": { "$numberLong": "1716035927322" } }, + "y": { "$numberDouble": "122.2" } + }, + { + "label": "Label", + "id": "2024-05-19T15:31:39Z", + "x": { "$date": { "$numberLong": "1716132699678" } }, + "y": { "$numberDouble": "124.86" } + }, + { + "label": "Label", + "id": "2024-05-20T18:24:32Z", + "x": { "$date": { "$numberLong": "1716229472035" } }, + "y": { "$numberDouble": "127.51" } + }, + { + "label": "Label", + "id": "2024-05-21T21:17:24Z", + "x": { "$date": { "$numberLong": "1716326244392" } }, + "y": { "$numberDouble": "130.17" } + }, + { + "label": "Label", + "id": "2024-05-23T00:10:16Z", + "x": { "$date": { "$numberLong": "1716423016748" } }, + "y": { "$numberDouble": "132.83" } + }, + { + "label": "Label", + "id": "2024-05-24T03:03:09Z", + "x": { "$date": { "$numberLong": "1716519789105" } }, + "y": { "$numberDouble": "135.48" } + }, + { + "label": "Label", + "id": "2024-05-25T05:56:01Z", + "x": { "$date": { "$numberLong": "1716616561462" } }, + "y": { "$numberDouble": "138.14" } + }, + { + "label": "Label", + "id": "2024-05-26T08:48:53Z", + "x": { "$date": { "$numberLong": "1716713333818" } }, + "y": { "$numberDouble": "140.79" } + }, + { + "label": "Label", + "id": "2024-05-27T11:41:46Z", + "x": { "$date": { "$numberLong": "1716810106175" } }, + "y": { "$numberDouble": "143.45" } + }, + { + "label": "Label", + "id": "2024-05-28T14:34:38Z", + "x": { "$date": { "$numberLong": "1716906878532" } }, + "y": { "$numberDouble": "146.11" } + }, + { + "label": "Label", + "id": "2024-05-29T17:27:30Z", + "x": { "$date": { "$numberLong": "1717003650888" } }, + "y": { "$numberDouble": "148.76" } + }, + { + "label": "Label", + "id": "2024-05-30T20:20:23Z", + "x": { "$date": { "$numberLong": "1717100423245" } }, + "y": { "$numberDouble": "151.42" } + }, + { + "label": "Label", + "id": "2024-05-31T23:13:15Z", + "x": { "$date": { "$numberLong": "1717197195602" } }, + "y": { "$numberDouble": "154.08" } + }, + { + "label": "Label", + "id": "2024-06-02T02:06:07Z", + "x": { "$date": { "$numberLong": "1717293967958" } }, + "y": { "$numberDouble": "156.73" } + }, + { + "label": "Label", + "id": "2024-06-03T04:59:00Z", + "x": { "$date": { "$numberLong": "1717390740315" } }, + "y": { "$numberDouble": "159.39" } + }, + { + "label": "Label", + "id": "2024-06-04T07:51:52Z", + "x": { "$date": { "$numberLong": "1717487512672" } }, + "y": { "$numberDouble": "162.05" } + }, + { + "label": "Label", + "id": "2024-06-05T10:44:45Z", + "x": { "$date": { "$numberLong": "1717584285028" } }, + "y": { "$numberDouble": "164.7" } + }, + { + "label": "Label", + "id": "2024-06-06T13:37:37Z", + "x": { "$date": { "$numberLong": "1717681057385" } }, + "y": { "$numberDouble": "167.36" } + }, + { + "label": "Label", + "id": "2024-06-07T16:30:29Z", + "x": { "$date": { "$numberLong": "1717777829742" } }, + "y": { "$numberDouble": "170.02" } + }, + { + "label": "Label", + "id": "2024-06-08T19:23:22Z", + "x": { "$date": { "$numberLong": "1717874602098" } }, + "y": { "$numberDouble": "172.67" } + }, + { + "label": "Label", + "id": "2024-06-09T22:16:14Z", + "x": { "$date": { "$numberLong": "1717971374455" } }, + "y": { "$numberDouble": "175.33" } + }, + { + "label": "Label", + "id": "2024-06-11T01:09:06Z", + "x": { "$date": { "$numberLong": "1718068146812" } }, + "y": { "$numberDouble": "177.99" } + }, + { + "label": "Label", + "id": "2024-06-12T04:01:59Z", + "x": { "$date": { "$numberLong": "1718164919169" } }, + "y": { "$numberDouble": "180.64" } + }, + { + "label": "Label", + "id": "2024-06-13T06:54:51Z", + "x": { "$date": { "$numberLong": "1718261691525" } }, + "y": { "$numberDouble": "183.3" } + }, + { + "label": "Label", + "id": "2024-06-14T09:47:43Z", + "x": { "$date": { "$numberLong": "1718358463882" } }, + "y": { "$numberDouble": "185.96" } + }, + { + "label": "Label", + "id": "2024-06-15T12:40:36Z", + "x": { "$date": { "$numberLong": "1718455236239" } }, + "y": { "$numberDouble": "188.61" } + }, + { + "label": "Label", + "id": "2024-06-16T15:33:28Z", + "x": { "$date": { "$numberLong": "1718552008595" } }, + "y": { "$numberDouble": "191.27" } + }, + { + "label": "Label", + "id": "2024-06-17T18:26:20Z", + "x": { "$date": { "$numberLong": "1718648780952" } }, + "y": { "$numberDouble": "193.92" } + }, + { + "label": "Label", + "id": "2024-06-18T21:19:13Z", + "x": { "$date": { "$numberLong": "1718745553309" } }, + "y": { "$numberDouble": "196.58" } + }, + { + "label": "Label", + "id": "2024-06-20T00:12:05Z", + "x": { "$date": { "$numberLong": "1718842325665" } }, + "y": { "$numberDouble": "199.24" } + }, + { + "label": "Label", + "id": "2024-06-21T03:04:58Z", + "x": { "$date": { "$numberLong": "1718939098022" } }, + "y": { "$numberDouble": "201.89" } + }, + { + "label": "Label", + "id": "2024-06-22T05:57:50Z", + "x": { "$date": { "$numberLong": "1719035870379" } }, + "y": { "$numberDouble": "204.55" } + }, + { + "label": "Label", + "id": "2024-06-23T08:50:42Z", + "x": { "$date": { "$numberLong": "1719132642735" } }, + "y": { "$numberDouble": "207.21" } + }, + { + "label": "Label", + "id": "2024-06-24T11:43:35Z", + "x": { "$date": { "$numberLong": "1719229415092" } }, + "y": { "$numberDouble": "209.86" } + }, + { + "label": "Label", + "id": "2024-06-25T14:36:27Z", + "x": { "$date": { "$numberLong": "1719326187449" } }, + "y": { "$numberDouble": "212.52" } + }, + { + "label": "Label", + "id": "2024-06-26T17:29:19Z", + "x": { "$date": { "$numberLong": "1719422959805" } }, + "y": { "$numberDouble": "215.18" } + }, + { + "label": "Label", + "id": "2024-06-27T20:22:12Z", + "x": { "$date": { "$numberLong": "1719519732162" } }, + "y": { "$numberDouble": "217.83" } + }, + { + "label": "Label", + "id": "2024-06-28T23:15:04Z", + "x": { "$date": { "$numberLong": "1719616504519" } }, + "y": { "$numberDouble": "220.49" } + }, + { + "label": "Label", + "id": "2024-06-30T02:07:56Z", + "x": { "$date": { "$numberLong": "1719713276875" } }, + "y": { "$numberDouble": "223.15" } + }, + { + "label": "Label", + "id": "2024-07-01T05:00:49Z", + "x": { "$date": { "$numberLong": "1719810049232" } }, + "y": { "$numberDouble": "225.8" } + }, + { + "label": "Label", + "id": "2024-07-02T07:53:41Z", + "x": { "$date": { "$numberLong": "1719906821589" } }, + "y": { "$numberDouble": "228.46" } + }, + { + "label": "Label", + "id": "2024-07-03T10:46:33Z", + "x": { "$date": { "$numberLong": "1720003593945" } }, + "y": { "$numberDouble": "231.12" } + }, + { + "label": "Label", + "id": "2024-07-04T13:39:26Z", + "x": { "$date": { "$numberLong": "1720100366302" } }, + "y": { "$numberDouble": "233.77" } + }, + { + "label": "Label", + "id": "2024-07-05T16:32:18Z", + "x": { "$date": { "$numberLong": "1720197138659" } }, + "y": { "$numberDouble": "236.43" } + }, + { + "label": "Label", + "id": "2024-07-06T19:25:11Z", + "x": { "$date": { "$numberLong": "1720293911015" } }, + "y": { "$numberDouble": "239.09" } + }, + { + "label": "Label", + "id": "2024-07-07T22:18:03Z", + "x": { "$date": { "$numberLong": "1720390683372" } }, + "y": { "$numberDouble": "241.74" } + }, + { + "label": "Label", + "id": "2024-07-09T01:10:55Z", + "x": { "$date": { "$numberLong": "1720487455729" } }, + "y": { "$numberDouble": "244.4" } + }, + { + "label": "Label", + "id": "2024-07-10T04:03:48Z", + "x": { "$date": { "$numberLong": "1720584228085" } }, + "y": { "$numberDouble": "247.06" } + }, + { + "label": "Label", + "id": "2024-07-11T06:56:40Z", + "x": { "$date": { "$numberLong": "1720681000442" } }, + "y": { "$numberDouble": "249.71" } + }, + { + "label": "Label", + "id": "2024-07-12T09:49:32Z", + "x": { "$date": { "$numberLong": "1720777772799" } }, + "y": { "$numberDouble": "252.37" } + }, + { + "label": "Label", + "id": "2024-07-13T12:42:25Z", + "x": { "$date": { "$numberLong": "1720874545155" } }, + "y": { "$numberDouble": "255.02" } + }, + { + "label": "Label", + "id": "2024-07-14T15:35:17Z", + "x": { "$date": { "$numberLong": "1720971317512" } }, + "y": { "$numberDouble": "257.68" } + }, + { + "label": "Label", + "id": "2024-07-15T18:28:09Z", + "x": { "$date": { "$numberLong": "1721068089869" } }, + "y": { "$numberDouble": "260.34" } + }, + { + "label": "Label", + "id": "2024-07-16T21:21:02Z", + "x": { "$date": { "$numberLong": "1721164862225" } }, + "y": { "$numberDouble": "262.99" } + }, + { + "label": "Label", + "id": "2024-07-18T00:13:54Z", + "x": { "$date": { "$numberLong": "1721261634582" } }, + "y": { "$numberDouble": "265.65" } + }, + { + "label": "Label", + "id": "2024-07-19T03:06:46Z", + "x": { "$date": { "$numberLong": "1721358406939" } }, + "y": { "$numberDouble": "268.31" } + }, + { + "label": "Label", + "id": "2024-07-20T05:59:39Z", + "x": { "$date": { "$numberLong": "1721455179296" } }, + "y": { "$numberDouble": "270.96" } + }, + { + "label": "Label", + "id": "2024-07-21T08:52:31Z", + "x": { "$date": { "$numberLong": "1721551951652" } }, + "y": { "$numberDouble": "273.62" } + }, + { + "label": "Label", + "id": "2024-07-22T11:45:24Z", + "x": { "$date": { "$numberLong": "1721648724009" } }, + "y": { "$numberDouble": "276.28" } + }, + { + "label": "Label", + "id": "2024-07-23T14:38:16Z", + "x": { "$date": { "$numberLong": "1721745496366" } }, + "y": { "$numberDouble": "278.93" } + }, + { + "label": "Label", + "id": "2024-07-24T17:31:08Z", + "x": { "$date": { "$numberLong": "1721842268722" } }, + "y": { "$numberDouble": "281.59" } + }, + { + "label": "Label", + "id": "2024-07-25T20:24:01Z", + "x": { "$date": { "$numberLong": "1721939041079" } }, + "y": { "$numberDouble": "284.25" } + }, + { + "label": "Label", + "id": "2024-07-26T23:16:53Z", + "x": { "$date": { "$numberLong": "1722035813436" } }, + "y": { "$numberDouble": "286.9" } + }, + { + "label": "Label", + "id": "2024-07-28T02:09:45Z", + "x": { "$date": { "$numberLong": "1722132585792" } }, + "y": { "$numberDouble": "289.56" } + }, + { + "label": "Label", + "id": "2024-07-29T05:02:38Z", + "x": { "$date": { "$numberLong": "1722229358149" } }, + "y": { "$numberDouble": "292.22" } + }, + { + "label": "Label", + "id": "2024-07-30T07:55:30Z", + "x": { "$date": { "$numberLong": "1722326130506" } }, + "y": { "$numberDouble": "294.87" } + }, + { + "label": "Label", + "id": "2024-07-31T10:48:22Z", + "x": { "$date": { "$numberLong": "1722422902862" } }, + "y": { "$numberDouble": "297.53" } + }, + { + "label": "Label", + "id": "2024-08-01T13:41:15Z", + "x": { "$date": { "$numberLong": "1722519675219" } }, + "y": { "$numberDouble": "300.19" } + }, + { + "label": "Label", + "id": "2024-08-02T16:34:07Z", + "x": { "$date": { "$numberLong": "1722616447576" } }, + "y": { "$numberDouble": "302.84" } + }, + { + "label": "Label", + "id": "2024-08-03T19:26:59Z", + "x": { "$date": { "$numberLong": "1722713219932" } }, + "y": { "$numberDouble": "305.5" } + }, + { + "label": "Label", + "id": "2024-08-04T22:19:52Z", + "x": { "$date": { "$numberLong": "1722809992289" } }, + "y": { "$numberDouble": "308.15" } + }, + { + "label": "Label", + "id": "2024-08-06T01:12:44Z", + "x": { "$date": { "$numberLong": "1722906764646" } }, + "y": { "$numberDouble": "310.81" } + }, + { + "label": "Label", + "id": "2024-08-07T04:05:37Z", + "x": { "$date": { "$numberLong": "1723003537002" } }, + "y": { "$numberDouble": "313.47" } + }, + { + "label": "Label", + "id": "2024-08-08T06:58:29Z", + "x": { "$date": { "$numberLong": "1723100309359" } }, + "y": { "$numberDouble": "316.12" } + }, + { + "label": "Label", + "id": "2024-08-09T09:51:21Z", + "x": { "$date": { "$numberLong": "1723197081716" } }, + "y": { "$numberDouble": "318.78" } + }, + { + "label": "Label", + "id": "2024-08-10T12:44:14Z", + "x": { "$date": { "$numberLong": "1723293854072" } }, + "y": { "$numberDouble": "321.44" } + }, + { + "label": "Label", + "id": "2024-08-11T15:37:06Z", + "x": { "$date": { "$numberLong": "1723390626429" } }, + "y": { "$numberDouble": "324.09" } + }, + { + "label": "Label", + "id": "2024-08-12T18:29:58Z", + "x": { "$date": { "$numberLong": "1723487398786" } }, + "y": { "$numberDouble": "326.75" } + }, + { + "label": "Label", + "id": "2024-08-13T21:22:51Z", + "x": { "$date": { "$numberLong": "1723584171142" } }, + "y": { "$numberDouble": "329.41" } + }, + { + "label": "Label", + "id": "2024-08-15T00:15:43Z", + "x": { "$date": { "$numberLong": "1723680943499" } }, + "y": { "$numberDouble": "332.06" } + }, + { + "label": "Label", + "id": "2024-08-16T03:08:35Z", + "x": { "$date": { "$numberLong": "1723777715856" } }, + "y": { "$numberDouble": "334.72" } + }, + { + "label": "Label", + "id": "2024-08-17T06:01:28Z", + "x": { "$date": { "$numberLong": "1723874488212" } }, + "y": { "$numberDouble": "337.38" } + }, + { + "label": "Label", + "id": "2024-08-18T08:54:20Z", + "x": { "$date": { "$numberLong": "1723971260569" } }, + "y": { "$numberDouble": "340.03" } + }, + { + "label": "Label", + "id": "2024-08-19T11:47:12Z", + "x": { "$date": { "$numberLong": "1724068032926" } }, + "y": { "$numberDouble": "342.69" } + }, + { + "label": "Label", + "id": "2024-08-20T14:40:05Z", + "x": { "$date": { "$numberLong": "1724164805282" } }, + "y": { "$numberDouble": "345.35" } + }, + { + "label": "Label", + "id": "2024-08-21T17:32:57Z", + "x": { "$date": { "$numberLong": "1724261577639" } }, + "y": { "$numberInt": "348" } + }, + { + "label": "Label", + "id": "2024-08-22T20:25:49Z", + "x": { "$date": { "$numberLong": "1724358349996" } }, + "y": { "$numberDouble": "350.66" } + }, + { + "label": "Label", + "id": "2024-08-23T23:18:42Z", + "x": { "$date": { "$numberLong": "1724455122352" } }, + "y": { "$numberDouble": "353.32" } + }, + { + "label": "Label", + "id": "2024-08-25T02:11:34Z", + "x": { "$date": { "$numberLong": "1724551894709" } }, + "y": { "$numberDouble": "355.97" } + }, + { + "label": "Label", + "id": "2024-08-26T05:04:27Z", + "x": { "$date": { "$numberLong": "1724648667066" } }, + "y": { "$numberDouble": "358.63" } + }, + { + "label": "Label", + "id": "2024-08-27T07:57:19Z", + "x": { "$date": { "$numberLong": "1724745439423" } }, + "y": { "$numberDouble": "361.28" } + }, + { + "label": "Label", + "id": "2024-08-28T10:50:11Z", + "x": { "$date": { "$numberLong": "1724842211779" } }, + "y": { "$numberDouble": "363.94" } + }, + { + "label": "Label", + "id": "2024-08-29T13:43:04Z", + "x": { "$date": { "$numberLong": "1724938984136" } }, + "y": { "$numberDouble": "366.6" } + }, + { + "label": "Label", + "id": "2024-08-30T16:35:56Z", + "x": { "$date": { "$numberLong": "1725035756493" } }, + "y": { "$numberDouble": "369.25" } + }, + { + "label": "Label", + "id": "2024-08-31T19:28:48Z", + "x": { "$date": { "$numberLong": "1725132528849" } }, + "y": { "$numberDouble": "371.91" } + }, + { + "label": "Label", + "id": "2024-09-01T22:21:41Z", + "x": { "$date": { "$numberLong": "1725229301206" } }, + "y": { "$numberDouble": "374.57" } + }, + { + "label": "Label", + "id": "2024-09-03T01:14:33Z", + "x": { "$date": { "$numberLong": "1725326073563" } }, + "y": { "$numberDouble": "377.22" } + }, + { + "label": "Label", + "id": "2024-09-04T04:07:25Z", + "x": { "$date": { "$numberLong": "1725422845919" } }, + "y": { "$numberDouble": "379.88" } + }, + { + "label": "Label", + "id": "2024-09-05T07:00:18Z", + "x": { "$date": { "$numberLong": "1725519618276" } }, + "y": { "$numberDouble": "382.54" } + }, + { + "label": "Label", + "id": "2024-09-06T09:53:10Z", + "x": { "$date": { "$numberLong": "1725616390633" } }, + "y": { "$numberDouble": "385.19" } + }, + { + "label": "Label", + "id": "2024-09-07T12:46:02Z", + "x": { "$date": { "$numberLong": "1725713162989" } }, + "y": { "$numberDouble": "387.85" } + }, + { + "label": "Label", + "id": "2024-09-08T15:38:55Z", + "x": { "$date": { "$numberLong": "1725809935346" } }, + "y": { "$numberDouble": "390.51" } + }, + { + "label": "Label", + "id": "2024-09-09T18:31:47Z", + "x": { "$date": { "$numberLong": "1725906707703" } }, + "y": { "$numberDouble": "393.16" } + }, + { + "label": "Label", + "id": "2024-09-10T21:24:40Z", + "x": { "$date": { "$numberLong": "1726003480059" } }, + "y": { "$numberDouble": "395.82" } + }, + { + "label": "Label", + "id": "2024-09-12T00:17:32Z", + "x": { "$date": { "$numberLong": "1726100252416" } }, + "y": { "$numberDouble": "398.48" } + }, + { + "label": "Label", + "id": "2024-09-13T03:10:24Z", + "x": { "$date": { "$numberLong": "1726197024773" } }, + "y": { "$numberDouble": "401.13" } + }, + { + "label": "Label", + "id": "2024-09-14T06:03:17Z", + "x": { "$date": { "$numberLong": "1726293797129" } }, + "y": { "$numberDouble": "403.79" } + }, + { + "label": "Label", + "id": "2024-09-15T08:56:09Z", + "x": { "$date": { "$numberLong": "1726390569486" } }, + "y": { "$numberDouble": "406.45" } + }, + { + "label": "Label", + "id": "2024-09-16T11:49:01Z", + "x": { "$date": { "$numberLong": "1726487341843" } }, + "y": { "$numberDouble": "409.1" } + }, + { + "label": "Label", + "id": "2024-09-17T14:41:54Z", + "x": { "$date": { "$numberLong": "1726584114199" } }, + "y": { "$numberDouble": "411.76" } + }, + { + "label": "Label", + "id": "2024-09-18T17:34:46Z", + "x": { "$date": { "$numberLong": "1726680886556" } }, + "y": { "$numberDouble": "414.41" } + }, + { + "label": "Label", + "id": "2024-09-19T20:27:38Z", + "x": { "$date": { "$numberLong": "1726777658913" } }, + "y": { "$numberDouble": "417.07" } + }, + { + "label": "Label", + "id": "2024-09-20T23:20:31Z", + "x": { "$date": { "$numberLong": "1726874431269" } }, + "y": { "$numberDouble": "419.73" } + }, + { + "label": "Label", + "id": "2024-09-22T02:13:23Z", + "x": { "$date": { "$numberLong": "1726971203626" } }, + "y": { "$numberDouble": "422.38" } + }, + { + "label": "Label", + "id": "2024-09-23T05:06:15Z", + "x": { "$date": { "$numberLong": "1727067975983" } }, + "y": { "$numberDouble": "425.04" } + }, + { + "label": "Label", + "id": "2024-09-24T07:59:08Z", + "x": { "$date": { "$numberLong": "1727164748339" } }, + "y": { "$numberDouble": "427.7" } + }, + { + "label": "Label", + "id": "2024-09-25T10:52:00Z", + "x": { "$date": { "$numberLong": "1727261520696" } }, + "y": { "$numberDouble": "430.35" } + }, + { + "label": "Label", + "id": "2024-09-26T13:44:53Z", + "x": { "$date": { "$numberLong": "1727358293053" } }, + "y": { "$numberDouble": "433.01" } + }, + { + "label": "Label", + "id": "2024-09-27T16:37:45Z", + "x": { "$date": { "$numberLong": "1727455065409" } }, + "y": { "$numberDouble": "435.67" } + }, + { + "label": "Label", + "id": "2024-09-28T19:30:37Z", + "x": { "$date": { "$numberLong": "1727551837766" } }, + "y": { "$numberDouble": "438.32" } + }, + { + "label": "Label", + "id": "2024-09-29T22:23:30Z", + "x": { "$date": { "$numberLong": "1727648610123" } }, + "y": { "$numberDouble": "440.98" } + }, + { + "label": "Label", + "id": "2024-10-01T01:16:22Z", + "x": { "$date": { "$numberLong": "1727745382479" } }, + "y": { "$numberDouble": "443.64" } + }, + { + "label": "Label", + "id": "2024-10-02T04:09:14Z", + "x": { "$date": { "$numberLong": "1727842154836" } }, + "y": { "$numberDouble": "446.29" } + }, + { + "label": "Label", + "id": "2024-10-03T07:02:07Z", + "x": { "$date": { "$numberLong": "1727938927193" } }, + "y": { "$numberDouble": "448.95" } + }, + { + "label": "Label", + "id": "2024-10-04T09:54:59Z", + "x": { "$date": { "$numberLong": "1728035699550" } }, + "y": { "$numberDouble": "451.61" } + }, + { + "label": "Label", + "id": "2024-10-05T12:47:51Z", + "x": { "$date": { "$numberLong": "1728132471906" } }, + "y": { "$numberDouble": "454.26" } + }, + { + "label": "Label", + "id": "2024-10-06T15:40:44Z", + "x": { "$date": { "$numberLong": "1728229244263" } }, + "y": { "$numberDouble": "456.92" } + }, + { + "label": "Label", + "id": "2024-10-07T18:33:36Z", + "x": { "$date": { "$numberLong": "1728326016620" } }, + "y": { "$numberDouble": "459.58" } + }, + { + "label": "Label", + "id": "2024-10-08T21:26:28Z", + "x": { "$date": { "$numberLong": "1728422788976" } }, + "y": { "$numberDouble": "462.23" } + }, + { + "label": "Label", + "id": "2024-10-10T00:19:21Z", + "x": { "$date": { "$numberLong": "1728519561333" } }, + "y": { "$numberDouble": "464.89" } + }, + { + "label": "Label", + "id": "2024-10-11T03:12:13Z", + "x": { "$date": { "$numberLong": "1728616333690" } }, + "y": { "$numberDouble": "467.54" } + }, + { + "label": "Label", + "id": "2024-10-12T06:05:06Z", + "x": { "$date": { "$numberLong": "1728713106046" } }, + "y": { "$numberDouble": "470.2" } + }, + { + "label": "Label", + "id": "2024-10-13T08:57:58Z", + "x": { "$date": { "$numberLong": "1728809878403" } }, + "y": { "$numberDouble": "472.86" } + }, + { + "label": "Label", + "id": "2024-10-14T11:50:50Z", + "x": { "$date": { "$numberLong": "1728906650760" } }, + "y": { "$numberDouble": "475.51" } + }, + { + "label": "Label", + "id": "2024-10-15T14:43:43Z", + "x": { "$date": { "$numberLong": "1729003423116" } }, + "y": { "$numberDouble": "478.17" } + }, + { + "label": "Label", + "id": "2024-10-16T17:36:35Z", + "x": { "$date": { "$numberLong": "1729100195473" } }, + "y": { "$numberDouble": "480.83" } + }, + { + "label": "Label", + "id": "2024-10-17T20:29:27Z", + "x": { "$date": { "$numberLong": "1729196967830" } }, + "y": { "$numberDouble": "483.48" } + }, + { + "label": "Label", + "id": "2024-10-18T23:22:20Z", + "x": { "$date": { "$numberLong": "1729293740186" } }, + "y": { "$numberDouble": "486.14" } + }, + { + "label": "Label", + "id": "2024-10-20T02:15:12Z", + "x": { "$date": { "$numberLong": "1729390512543" } }, + "y": { "$numberDouble": "488.8" } + }, + { + "label": "Label", + "id": "2024-10-21T05:08:04Z", + "x": { "$date": { "$numberLong": "1729487284900" } }, + "y": { "$numberDouble": "491.45" } + }, + { + "label": "Label", + "id": "2024-10-22T08:00:57Z", + "x": { "$date": { "$numberLong": "1729584057256" } }, + "y": { "$numberDouble": "494.11" } + }, + { + "label": "Label", + "id": "2024-10-23T10:53:49Z", + "x": { "$date": { "$numberLong": "1729680829613" } }, + "y": { "$numberDouble": "496.77" } + }, + { + "label": "Label", + "id": "2024-10-24T13:46:41Z", + "x": { "$date": { "$numberLong": "1729777601970" } }, + "y": { "$numberDouble": "499.42" } + }, + { + "label": "Label", + "id": "2024-10-25T16:39:34Z", + "x": { "$date": { "$numberLong": "1729874374326" } }, + "y": { "$numberDouble": "502.08" } + }, + { + "label": "Label", + "id": "2024-10-26T19:32:26Z", + "x": { "$date": { "$numberLong": "1729971146683" } }, + "y": { "$numberDouble": "504.74" } + }, + { + "label": "Label", + "id": "2024-10-27T22:25:19Z", + "x": { "$date": { "$numberLong": "1730067919040" } }, + "y": { "$numberDouble": "507.39" } + }, + { + "label": "Label", + "id": "2024-10-29T01:18:11Z", + "x": { "$date": { "$numberLong": "1730164691396" } }, + "y": { "$numberDouble": "510.05" } + }, + { + "label": "Label", + "id": "2024-10-30T04:11:03Z", + "x": { "$date": { "$numberLong": "1730261463753" } }, + "y": { "$numberDouble": "512.71" } + }, + { + "label": "Label", + "id": "2024-10-31T07:03:56Z", + "x": { "$date": { "$numberLong": "1730358236110" } }, + "y": { "$numberDouble": "515.36" } + }, + { + "label": "Label", + "id": "2024-11-01T09:56:48Z", + "x": { "$date": { "$numberLong": "1730455008466" } }, + "y": { "$numberDouble": "518.02" } + }, + { + "label": "Label", + "id": "2024-11-02T12:49:40Z", + "x": { "$date": { "$numberLong": "1730551780823" } }, + "y": { "$numberDouble": "520.68" } + }, + { + "label": "Label", + "id": "2024-11-03T15:42:33Z", + "x": { "$date": { "$numberLong": "1730648553180" } }, + "y": { "$numberDouble": "523.33" } + }, + { + "label": "Label", + "id": "2024-11-04T18:35:25Z", + "x": { "$date": { "$numberLong": "1730745325536" } }, + "y": { "$numberDouble": "525.99" } + }, + { + "label": "Label", + "id": "2024-11-05T21:28:17Z", + "x": { "$date": { "$numberLong": "1730842097893" } }, + "y": { "$numberDouble": "528.64" } + }, + { + "label": "Label", + "id": "2024-11-07T00:21:10Z", + "x": { "$date": { "$numberLong": "1730938870250" } }, + "y": { "$numberDouble": "531.3" } + }, + { + "label": "Label", + "id": "2024-11-08T03:14:02Z", + "x": { "$date": { "$numberLong": "1731035642606" } }, + "y": { "$numberDouble": "533.96" } + }, + { + "label": "Label", + "id": "2024-11-09T06:06:54Z", + "x": { "$date": { "$numberLong": "1731132414963" } }, + "y": { "$numberDouble": "536.61" } + }, + { + "label": "Label", + "id": "2024-11-10T08:59:47Z", + "x": { "$date": { "$numberLong": "1731229187320" } }, + "y": { "$numberDouble": "539.27" } + }, + { + "label": "Label", + "id": "2024-11-11T11:52:39Z", + "x": { "$date": { "$numberLong": "1731325959677" } }, + "y": { "$numberDouble": "541.93" } + }, + { + "label": "Label", + "id": "2024-11-12T14:45:32Z", + "x": { "$date": { "$numberLong": "1731422732033" } }, + "y": { "$numberDouble": "544.58" } + }, + { + "label": "Label", + "id": "2024-11-13T17:38:24Z", + "x": { "$date": { "$numberLong": "1731519504390" } }, + "y": { "$numberDouble": "547.24" } + }, + { + "label": "Label", + "id": "2024-11-14T20:31:16Z", + "x": { "$date": { "$numberLong": "1731616276747" } }, + "y": { "$numberDouble": "549.9" } + }, + { + "label": "Label", + "id": "2024-11-15T23:24:09Z", + "x": { "$date": { "$numberLong": "1731713049103" } }, + "y": { "$numberDouble": "552.55" } + }, + { + "label": "Label", + "id": "2024-11-17T02:17:01Z", + "x": { "$date": { "$numberLong": "1731809821460" } }, + "y": { "$numberDouble": "555.21" } + }, + { + "label": "Label", + "id": "2024-11-18T05:09:53Z", + "x": { "$date": { "$numberLong": "1731906593817" } }, + "y": { "$numberDouble": "557.87" } + }, + { + "label": "Label", + "id": "2024-11-19T08:02:46Z", + "x": { "$date": { "$numberLong": "1732003366173" } }, + "y": { "$numberDouble": "560.52" } + }, + { + "label": "Label", + "id": "2024-11-20T10:55:38Z", + "x": { "$date": { "$numberLong": "1732100138530" } }, + "y": { "$numberDouble": "563.18" } + }, + { + "label": "Label", + "id": "2024-11-21T13:48:30Z", + "x": { "$date": { "$numberLong": "1732196910887" } }, + "y": { "$numberDouble": "565.84" } + }, + { + "label": "Label", + "id": "2024-11-22T16:41:23Z", + "x": { "$date": { "$numberLong": "1732293683243" } }, + "y": { "$numberDouble": "568.49" } + }, + { + "label": "Label", + "id": "2024-11-23T19:34:15Z", + "x": { "$date": { "$numberLong": "1732390455600" } }, + "y": { "$numberDouble": "571.15" } + }, + { + "label": "Label", + "id": "2024-11-24T22:27:07Z", + "x": { "$date": { "$numberLong": "1732487227957" } }, + "y": { "$numberDouble": "573.81" } + }, + { + "label": "Label", + "id": "2024-11-26T01:20:00Z", + "x": { "$date": { "$numberLong": "1732584000313" } }, + "y": { "$numberDouble": "576.46" } + }, + { + "label": "Label", + "id": "2024-11-27T04:12:52Z", + "x": { "$date": { "$numberLong": "1732680772670" } }, + "y": { "$numberDouble": "579.12" } + }, + { + "label": "Label", + "id": "2024-11-28T07:05:45Z", + "x": { "$date": { "$numberLong": "1732777545027" } }, + "y": { "$numberDouble": "581.77" } + }, + { + "label": "Label", + "id": "2024-11-29T09:58:37Z", + "x": { "$date": { "$numberLong": "1732874317383" } }, + "y": { "$numberDouble": "584.43" } + }, + { + "label": "Label", + "id": "2024-11-30T12:51:29Z", + "x": { "$date": { "$numberLong": "1732971089740" } }, + "y": { "$numberDouble": "587.09" } + }, + { + "label": "Label", + "id": "2024-12-01T15:44:22Z", + "x": { "$date": { "$numberLong": "1733067862097" } }, + "y": { "$numberDouble": "589.74" } + }, + { + "label": "Label", + "id": "2024-12-02T18:37:14Z", + "x": { "$date": { "$numberLong": "1733164634453" } }, + "y": { "$numberDouble": "592.4" } + }, + { + "label": "Label", + "id": "2024-12-03T21:30:06Z", + "x": { "$date": { "$numberLong": "1733261406810" } }, + "y": { "$numberDouble": "595.06" } + }, + { + "label": "Label", + "id": "2024-12-05T00:22:59Z", + "x": { "$date": { "$numberLong": "1733358179167" } }, + "y": { "$numberDouble": "597.71" } + }, + { + "label": "Label", + "id": "2024-12-06T03:15:51Z", + "x": { "$date": { "$numberLong": "1733454951523" } }, + "y": { "$numberDouble": "600.37" } + }, + { + "label": "Label", + "id": "2024-12-07T06:08:43Z", + "x": { "$date": { "$numberLong": "1733551723880" } }, + "y": { "$numberDouble": "603.03" } + }, + { + "label": "Label", + "id": "2024-12-08T09:01:36Z", + "x": { "$date": { "$numberLong": "1733648496237" } }, + "y": { "$numberDouble": "605.68" } + }, + { + "label": "Label", + "id": "2024-12-09T11:54:28Z", + "x": { "$date": { "$numberLong": "1733745268593" } }, + "y": { "$numberDouble": "608.34" } + }, + { + "label": "Label", + "id": "2024-12-10T14:47:20Z", + "x": { "$date": { "$numberLong": "1733842040950" } }, + "y": { "$numberInt": "611" } + }, + { + "label": "Label", + "id": "2024-12-11T17:40:13Z", + "x": { "$date": { "$numberLong": "1733938813307" } }, + "y": { "$numberDouble": "613.65" } + }, + { + "label": "Label", + "id": "2024-12-12T20:33:05Z", + "x": { "$date": { "$numberLong": "1734035585663" } }, + "y": { "$numberDouble": "616.31" } + }, + { + "label": "Label", + "id": "2024-12-13T23:25:58Z", + "x": { "$date": { "$numberLong": "1734132358020" } }, + "y": { "$numberDouble": "618.97" } + }, + { + "label": "Label", + "id": "2024-12-15T02:18:50Z", + "x": { "$date": { "$numberLong": "1734229130377" } }, + "y": { "$numberDouble": "621.62" } + }, + { + "label": "Label", + "id": "2024-12-16T05:11:42Z", + "x": { "$date": { "$numberLong": "1734325902733" } }, + "y": { "$numberDouble": "624.28" } + }, + { + "label": "Label", + "id": "2024-12-17T08:04:35Z", + "x": { "$date": { "$numberLong": "1734422675090" } }, + "y": { "$numberDouble": "626.94" } + }, + { + "label": "Label", + "id": "2024-12-18T10:57:27Z", + "x": { "$date": { "$numberLong": "1734519447447" } }, + "y": { "$numberDouble": "629.59" } + }, + { + "label": "Label", + "id": "2024-12-19T13:50:19Z", + "x": { "$date": { "$numberLong": "1734616219804" } }, + "y": { "$numberDouble": "632.25" } + }, + { + "label": "Label", + "id": "2024-12-20T16:43:12Z", + "x": { "$date": { "$numberLong": "1734712992160" } }, + "y": { "$numberDouble": "634.9" } + }, + { + "label": "Label", + "id": "2024-12-21T19:36:04Z", + "x": { "$date": { "$numberLong": "1734809764517" } }, + "y": { "$numberDouble": "637.56" } + }, + { + "label": "Label", + "id": "2024-12-22T22:28:56Z", + "x": { "$date": { "$numberLong": "1734906536874" } }, + "y": { "$numberDouble": "640.22" } + }, + { + "label": "Label", + "id": "2024-12-24T01:21:49Z", + "x": { "$date": { "$numberLong": "1735003309230" } }, + "y": { "$numberDouble": "642.87" } + }, + { + "label": "Label", + "id": "2024-12-25T04:14:41Z", + "x": { "$date": { "$numberLong": "1735100081587" } }, + "y": { "$numberDouble": "645.53" } + }, + { + "label": "Label", + "id": "2024-12-26T07:07:33Z", + "x": { "$date": { "$numberLong": "1735196853944" } }, + "y": { "$numberDouble": "648.19" } + }, + { + "label": "Label", + "id": "2024-12-27T10:00:26Z", + "x": { "$date": { "$numberLong": "1735293626300" } }, + "y": { "$numberDouble": "650.84" } + }, + { + "label": "Label", + "id": "2024-12-28T12:53:18Z", + "x": { "$date": { "$numberLong": "1735390398657" } }, + "y": { "$numberDouble": "653.5" } + }, + { + "label": "Label", + "id": "2024-12-29T15:46:11Z", + "x": { "$date": { "$numberLong": "1735487171014" } }, + "y": { "$numberDouble": "656.16" } + }, + { + "label": "Label", + "id": "2024-12-30T18:39:03Z", + "x": { "$date": { "$numberLong": "1735583943370" } }, + "y": { "$numberDouble": "658.81" } + }, + { + "label": "Label", + "id": "2024-12-31T21:31:55Z", + "x": { "$date": { "$numberLong": "1735680715727" } }, + "y": { "$numberDouble": "661.47" } + }, + { + "label": "Label", + "id": "2025-01-02T00:24:48Z", + "x": { "$date": { "$numberLong": "1735777488084" } }, + "y": { "$numberDouble": "664.13" } + }, + { + "label": "Label", + "id": "2025-01-03T03:17:40Z", + "x": { "$date": { "$numberLong": "1735874260440" } }, + "y": { "$numberDouble": "666.78" } + }, + { + "label": "Label", + "id": "2025-01-04T06:10:32Z", + "x": { "$date": { "$numberLong": "1735971032797" } }, + "y": { "$numberDouble": "669.44" } + }, + { + "label": "Label", + "id": "2025-01-05T09:03:25Z", + "x": { "$date": { "$numberLong": "1736067805154" } }, + "y": { "$numberDouble": "672.1" } + }, + { + "label": "Label", + "id": "2025-01-06T11:56:17Z", + "x": { "$date": { "$numberLong": "1736164577510" } }, + "y": { "$numberDouble": "674.75" } + }, + { + "label": "Label", + "id": "2025-01-07T14:49:09Z", + "x": { "$date": { "$numberLong": "1736261349867" } }, + "y": { "$numberDouble": "677.41" } + }, + { + "label": "Label", + "id": "2025-01-08T17:42:02Z", + "x": { "$date": { "$numberLong": "1736358122224" } }, + "y": { "$numberDouble": "680.07" } + }, + { + "label": "Label", + "id": "2025-01-09T20:34:54Z", + "x": { "$date": { "$numberLong": "1736454894580" } }, + "y": { "$numberDouble": "682.72" } + }, + { + "label": "Label", + "id": "2025-01-10T23:27:46Z", + "x": { "$date": { "$numberLong": "1736551666937" } }, + "y": { "$numberDouble": "685.38" } + }, + { + "label": "Label", + "id": "2025-01-12T02:20:39Z", + "x": { "$date": { "$numberLong": "1736648439294" } }, + "y": { "$numberDouble": "688.03" } + }, + { + "label": "Label", + "id": "2025-01-13T05:13:31Z", + "x": { "$date": { "$numberLong": "1736745211650" } }, + "y": { "$numberDouble": "690.69" } + }, + { + "label": "Label", + "id": "2025-01-14T08:06:24Z", + "x": { "$date": { "$numberLong": "1736841984007" } }, + "y": { "$numberDouble": "693.35" } + }, + { + "label": "Label", + "id": "2025-01-15T10:59:16Z", + "x": { "$date": { "$numberLong": "1736938756364" } }, + "y": { "$numberInt": "696" } + }, + { + "label": "Label", + "id": "2025-01-16T13:52:08Z", + "x": { "$date": { "$numberLong": "1737035528720" } }, + "y": { "$numberDouble": "698.66" } + }, + { + "label": "Label", + "id": "2025-01-17T16:45:01Z", + "x": { "$date": { "$numberLong": "1737132301077" } }, + "y": { "$numberDouble": "701.32" } + }, + { + "label": "Label", + "id": "2025-01-18T19:37:53Z", + "x": { "$date": { "$numberLong": "1737229073434" } }, + "y": { "$numberDouble": "703.97" } + }, + { + "label": "Label", + "id": "2025-01-19T22:30:45Z", + "x": { "$date": { "$numberLong": "1737325845790" } }, + "y": { "$numberDouble": "706.63" } + }, + { + "label": "Label", + "id": "2025-01-21T01:23:38Z", + "x": { "$date": { "$numberLong": "1737422618147" } }, + "y": { "$numberDouble": "709.29" } + }, + { + "label": "Label", + "id": "2025-01-22T04:16:30Z", + "x": { "$date": { "$numberLong": "1737519390504" } }, + "y": { "$numberDouble": "711.94" } + }, + { + "label": "Label", + "id": "2025-01-23T07:09:22Z", + "x": { "$date": { "$numberLong": "1737616162861" } }, + "y": { "$numberDouble": "714.6" } + } + ], + "_id": { "$oid": "66189c868bcc89e3792dd262" } + }, + "365d": { + "id": "365d", + "name": "Last 365D", + "color": "#2e7c67", + "data": [ + { + "label": "Label", + "id": "2024-03-28T00:06:38Z", + "x": { "$date": { "$numberLong": "1711584398915" } }, + "y": { "$numberInt": "0" } + }, + { + "label": "Label", + "id": "2024-03-29T02:14:24Z", + "x": { "$date": { "$numberLong": "1711678464200" } }, + "y": { "$numberDouble": "2.69" } + }, + { + "label": "Label", + "id": "2024-03-30T04:22:09Z", + "x": { "$date": { "$numberLong": "1711772529486" } }, + "y": { "$numberDouble": "5.38" } + }, + { + "label": "Label", + "id": "2024-03-31T06:29:54Z", + "x": { "$date": { "$numberLong": "1711866594771" } }, + "y": { "$numberDouble": "8.07" } + }, + { + "label": "Label", + "id": "2024-04-01T08:37:40Z", + "x": { "$date": { "$numberLong": "1711960660057" } }, + "y": { "$numberDouble": "10.76" } + }, + { + "label": "Label", + "id": "2024-04-02T10:45:25Z", + "x": { "$date": { "$numberLong": "1712054725342" } }, + "y": { "$numberDouble": "13.45" } + }, + { + "label": "Label", + "id": "2024-04-03T12:53:10Z", + "x": { "$date": { "$numberLong": "1712148790628" } }, + "y": { "$numberDouble": "16.15" } + }, + { + "label": "Label", + "id": "2024-04-04T15:00:55Z", + "x": { "$date": { "$numberLong": "1712242855913" } }, + "y": { "$numberDouble": "18.84" } + }, + { + "label": "Label", + "id": "2024-04-05T17:08:41Z", + "x": { "$date": { "$numberLong": "1712336921199" } }, + "y": { "$numberDouble": "21.53" } + }, + { + "label": "Label", + "id": "2024-04-06T19:16:26Z", + "x": { "$date": { "$numberLong": "1712430986485" } }, + "y": { "$numberDouble": "24.22" } + }, + { + "label": "Label", + "id": "2024-04-07T21:24:11Z", + "x": { "$date": { "$numberLong": "1712525051770" } }, + "y": { "$numberDouble": "26.91" } + }, + { + "label": "Label", + "id": "2024-04-08T23:31:57Z", + "x": { "$date": { "$numberLong": "1712619117056" } }, + "y": { "$numberDouble": "29.6" } + }, + { + "label": "Label", + "id": "2024-04-10T01:39:42Z", + "x": { "$date": { "$numberLong": "1712713182341" } }, + "y": { "$numberDouble": "32.29" } + }, + { + "label": "Label", + "id": "2024-04-11T03:47:27Z", + "x": { "$date": { "$numberLong": "1712807247627" } }, + "y": { "$numberDouble": "34.98" } + }, + { + "label": "Label", + "id": "2024-04-12T05:55:12Z", + "x": { "$date": { "$numberLong": "1712901312912" } }, + "y": { "$numberDouble": "37.67" } + }, + { + "label": "Label", + "id": "2024-04-13T08:02:58Z", + "x": { "$date": { "$numberLong": "1712995378198" } }, + "y": { "$numberDouble": "40.36" } + }, + { + "label": "Label", + "id": "2024-04-14T10:10:43Z", + "x": { "$date": { "$numberLong": "1713089443484" } }, + "y": { "$numberDouble": "43.05" } + }, + { + "label": "Label", + "id": "2024-04-15T12:18:28Z", + "x": { "$date": { "$numberLong": "1713183508769" } }, + "y": { "$numberDouble": "45.75" } + }, + { + "label": "Label", + "id": "2024-04-16T14:26:14Z", + "x": { "$date": { "$numberLong": "1713277574055" } }, + "y": { "$numberDouble": "48.44" } + }, + { + "label": "Label", + "id": "2024-04-17T16:33:59Z", + "x": { "$date": { "$numberLong": "1713371639340" } }, + "y": { "$numberDouble": "51.13" } + }, + { + "label": "Label", + "id": "2024-04-18T18:41:44Z", + "x": { "$date": { "$numberLong": "1713465704626" } }, + "y": { "$numberDouble": "53.82" } + }, + { + "label": "Label", + "id": "2024-04-19T20:49:29Z", + "x": { "$date": { "$numberLong": "1713559769911" } }, + "y": { "$numberDouble": "56.51" } + }, + { + "label": "Label", + "id": "2024-04-20T22:57:15Z", + "x": { "$date": { "$numberLong": "1713653835197" } }, + "y": { "$numberDouble": "59.2" } + }, + { + "label": "Label", + "id": "2024-04-22T01:05:00Z", + "x": { "$date": { "$numberLong": "1713747900483" } }, + "y": { "$numberDouble": "61.89" } + }, + { + "label": "Label", + "id": "2024-04-23T03:12:45Z", + "x": { "$date": { "$numberLong": "1713841965768" } }, + "y": { "$numberDouble": "64.58" } + }, + { + "label": "Label", + "id": "2024-04-24T05:20:31Z", + "x": { "$date": { "$numberLong": "1713936031054" } }, + "y": { "$numberDouble": "67.27" } + }, + { + "label": "Label", + "id": "2024-04-25T07:28:16Z", + "x": { "$date": { "$numberLong": "1714030096339" } }, + "y": { "$numberDouble": "69.96" } + }, + { + "label": "Label", + "id": "2024-04-26T09:36:01Z", + "x": { "$date": { "$numberLong": "1714124161625" } }, + "y": { "$numberDouble": "72.66" } + }, + { + "label": "Label", + "id": "2024-04-27T11:43:46Z", + "x": { "$date": { "$numberLong": "1714218226910" } }, + "y": { "$numberDouble": "75.35" } + }, + { + "label": "Label", + "id": "2024-04-28T13:51:32Z", + "x": { "$date": { "$numberLong": "1714312292196" } }, + "y": { "$numberDouble": "78.04" } + }, + { + "label": "Label", + "id": "2024-04-29T15:59:17Z", + "x": { "$date": { "$numberLong": "1714406357481" } }, + "y": { "$numberDouble": "80.73" } + }, + { + "label": "Label", + "id": "2024-04-30T18:07:02Z", + "x": { "$date": { "$numberLong": "1714500422767" } }, + "y": { "$numberDouble": "83.42" } + }, + { + "label": "Label", + "id": "2024-05-01T20:14:48Z", + "x": { "$date": { "$numberLong": "1714594488053" } }, + "y": { "$numberDouble": "86.11" } + }, + { + "label": "Label", + "id": "2024-05-02T22:22:33Z", + "x": { "$date": { "$numberLong": "1714688553338" } }, + "y": { "$numberDouble": "88.8" } + }, + { + "label": "Label", + "id": "2024-05-04T00:30:18Z", + "x": { "$date": { "$numberLong": "1714782618624" } }, + "y": { "$numberDouble": "91.49" } + }, + { + "label": "Label", + "id": "2024-05-05T02:38:03Z", + "x": { "$date": { "$numberLong": "1714876683909" } }, + "y": { "$numberDouble": "94.18" } + }, + { + "label": "Label", + "id": "2024-05-06T04:45:49Z", + "x": { "$date": { "$numberLong": "1714970749195" } }, + "y": { "$numberDouble": "96.87" } + }, + { + "label": "Label", + "id": "2024-05-07T06:53:34Z", + "x": { "$date": { "$numberLong": "1715064814480" } }, + "y": { "$numberDouble": "99.56" } + }, + { + "label": "Label", + "id": "2024-05-08T09:01:19Z", + "x": { "$date": { "$numberLong": "1715158879766" } }, + "y": { "$numberDouble": "102.26" } + }, + { + "label": "Label", + "id": "2024-05-09T11:09:05Z", + "x": { "$date": { "$numberLong": "1715252945052" } }, + "y": { "$numberDouble": "104.95" } + }, + { + "label": "Label", + "id": "2024-05-10T13:16:50Z", + "x": { "$date": { "$numberLong": "1715347010337" } }, + "y": { "$numberDouble": "107.64" } + }, + { + "label": "Label", + "id": "2024-05-11T15:24:35Z", + "x": { "$date": { "$numberLong": "1715441075623" } }, + "y": { "$numberDouble": "110.33" } + }, + { + "label": "Label", + "id": "2024-05-12T17:32:20Z", + "x": { "$date": { "$numberLong": "1715535140908" } }, + "y": { "$numberDouble": "113.02" } + }, + { + "label": "Label", + "id": "2024-05-13T19:40:06Z", + "x": { "$date": { "$numberLong": "1715629206194" } }, + "y": { "$numberDouble": "115.71" } + }, + { + "label": "Label", + "id": "2024-05-14T21:47:51Z", + "x": { "$date": { "$numberLong": "1715723271479" } }, + "y": { "$numberDouble": "118.4" } + }, + { + "label": "Label", + "id": "2024-05-15T23:55:36Z", + "x": { "$date": { "$numberLong": "1715817336765" } }, + "y": { "$numberDouble": "121.09" } + }, + { + "label": "Label", + "id": "2024-05-17T02:03:22Z", + "x": { "$date": { "$numberLong": "1715911402051" } }, + "y": { "$numberDouble": "123.78" } + }, + { + "label": "Label", + "id": "2024-05-18T04:11:07Z", + "x": { "$date": { "$numberLong": "1716005467336" } }, + "y": { "$numberDouble": "126.47" } + }, + { + "label": "Label", + "id": "2024-05-19T06:18:52Z", + "x": { "$date": { "$numberLong": "1716099532622" } }, + "y": { "$numberDouble": "129.16" } + }, + { + "label": "Label", + "id": "2024-05-20T08:26:37Z", + "x": { "$date": { "$numberLong": "1716193597907" } }, + "y": { "$numberDouble": "131.86" } + }, + { + "label": "Label", + "id": "2024-05-21T10:34:23Z", + "x": { "$date": { "$numberLong": "1716287663193" } }, + "y": { "$numberDouble": "134.55" } + }, + { + "label": "Label", + "id": "2024-05-22T12:42:08Z", + "x": { "$date": { "$numberLong": "1716381728478" } }, + "y": { "$numberDouble": "137.24" } + }, + { + "label": "Label", + "id": "2024-05-23T14:49:53Z", + "x": { "$date": { "$numberLong": "1716475793764" } }, + "y": { "$numberDouble": "139.93" } + }, + { + "label": "Label", + "id": "2024-05-24T16:57:39Z", + "x": { "$date": { "$numberLong": "1716569859049" } }, + "y": { "$numberDouble": "142.62" } + }, + { + "label": "Label", + "id": "2024-05-25T19:05:24Z", + "x": { "$date": { "$numberLong": "1716663924335" } }, + "y": { "$numberDouble": "145.31" } + }, + { + "label": "Label", + "id": "2024-05-26T21:13:09Z", + "x": { "$date": { "$numberLong": "1716757989621" } }, + "y": { "$numberInt": "148" } + }, + { + "label": "Label", + "id": "2024-05-27T23:20:54Z", + "x": { "$date": { "$numberLong": "1716852054906" } }, + "y": { "$numberDouble": "150.69" } + }, + { + "label": "Label", + "id": "2024-05-29T01:28:40Z", + "x": { "$date": { "$numberLong": "1716946120192" } }, + "y": { "$numberDouble": "153.38" } + }, + { + "label": "Label", + "id": "2024-05-30T03:36:25Z", + "x": { "$date": { "$numberLong": "1717040185477" } }, + "y": { "$numberDouble": "156.07" } + }, + { + "label": "Label", + "id": "2024-05-31T05:44:10Z", + "x": { "$date": { "$numberLong": "1717134250763" } }, + "y": { "$numberDouble": "158.77" } + }, + { + "label": "Label", + "id": "2024-06-01T07:51:56Z", + "x": { "$date": { "$numberLong": "1717228316048" } }, + "y": { "$numberDouble": "161.46" } + }, + { + "label": "Label", + "id": "2024-06-02T09:59:41Z", + "x": { "$date": { "$numberLong": "1717322381334" } }, + "y": { "$numberDouble": "164.15" } + }, + { + "label": "Label", + "id": "2024-06-03T12:07:26Z", + "x": { "$date": { "$numberLong": "1717416446620" } }, + "y": { "$numberDouble": "166.84" } + }, + { + "label": "Label", + "id": "2024-06-04T14:15:11Z", + "x": { "$date": { "$numberLong": "1717510511905" } }, + "y": { "$numberDouble": "169.53" } + }, + { + "label": "Label", + "id": "2024-06-05T16:22:57Z", + "x": { "$date": { "$numberLong": "1717604577191" } }, + "y": { "$numberDouble": "172.22" } + }, + { + "label": "Label", + "id": "2024-06-06T18:30:42Z", + "x": { "$date": { "$numberLong": "1717698642476" } }, + "y": { "$numberDouble": "174.91" } + }, + { + "label": "Label", + "id": "2024-06-07T20:38:27Z", + "x": { "$date": { "$numberLong": "1717792707762" } }, + "y": { "$numberDouble": "177.6" } + }, + { + "label": "Label", + "id": "2024-06-08T22:46:13Z", + "x": { "$date": { "$numberLong": "1717886773047" } }, + "y": { "$numberDouble": "180.29" } + }, + { + "label": "Label", + "id": "2024-06-10T00:53:58Z", + "x": { "$date": { "$numberLong": "1717980838333" } }, + "y": { "$numberDouble": "182.98" } + }, + { + "label": "Label", + "id": "2024-06-11T03:01:43Z", + "x": { "$date": { "$numberLong": "1718074903619" } }, + "y": { "$numberDouble": "185.67" } + }, + { + "label": "Label", + "id": "2024-06-12T05:09:28Z", + "x": { "$date": { "$numberLong": "1718168968904" } }, + "y": { "$numberDouble": "188.37" } + }, + { + "label": "Label", + "id": "2024-06-13T07:17:14Z", + "x": { "$date": { "$numberLong": "1718263034190" } }, + "y": { "$numberDouble": "191.06" } + }, + { + "label": "Label", + "id": "2024-06-14T09:24:59Z", + "x": { "$date": { "$numberLong": "1718357099475" } }, + "y": { "$numberDouble": "193.75" } + }, + { + "label": "Label", + "id": "2024-06-15T11:32:44Z", + "x": { "$date": { "$numberLong": "1718451164761" } }, + "y": { "$numberDouble": "196.44" } + }, + { + "label": "Label", + "id": "2024-06-16T13:40:30Z", + "x": { "$date": { "$numberLong": "1718545230046" } }, + "y": { "$numberDouble": "199.13" } + }, + { + "label": "Label", + "id": "2024-06-17T15:48:15Z", + "x": { "$date": { "$numberLong": "1718639295332" } }, + "y": { "$numberDouble": "201.82" } + }, + { + "label": "Label", + "id": "2024-06-18T17:56:00Z", + "x": { "$date": { "$numberLong": "1718733360618" } }, + "y": { "$numberDouble": "204.51" } + }, + { + "label": "Label", + "id": "2024-06-19T20:03:45Z", + "x": { "$date": { "$numberLong": "1718827425903" } }, + "y": { "$numberDouble": "207.2" } + }, + { + "label": "Label", + "id": "2024-06-20T22:11:31Z", + "x": { "$date": { "$numberLong": "1718921491189" } }, + "y": { "$numberDouble": "209.89" } + }, + { + "label": "Label", + "id": "2024-06-22T00:19:16Z", + "x": { "$date": { "$numberLong": "1719015556474" } }, + "y": { "$numberDouble": "212.58" } + }, + { + "label": "Label", + "id": "2024-06-23T02:27:01Z", + "x": { "$date": { "$numberLong": "1719109621760" } }, + "y": { "$numberDouble": "215.27" } + }, + { + "label": "Label", + "id": "2024-06-24T04:34:47Z", + "x": { "$date": { "$numberLong": "1719203687045" } }, + "y": { "$numberDouble": "217.97" } + }, + { + "label": "Label", + "id": "2024-06-25T06:42:32Z", + "x": { "$date": { "$numberLong": "1719297752331" } }, + "y": { "$numberDouble": "220.66" } + }, + { + "label": "Label", + "id": "2024-06-26T08:50:17Z", + "x": { "$date": { "$numberLong": "1719391817616" } }, + "y": { "$numberDouble": "223.35" } + }, + { + "label": "Label", + "id": "2024-06-27T10:58:02Z", + "x": { "$date": { "$numberLong": "1719485882902" } }, + "y": { "$numberDouble": "226.04" } + }, + { + "label": "Label", + "id": "2024-06-28T13:05:48Z", + "x": { "$date": { "$numberLong": "1719579948188" } }, + "y": { "$numberDouble": "228.73" } + }, + { + "label": "Label", + "id": "2024-06-29T15:13:33Z", + "x": { "$date": { "$numberLong": "1719674013473" } }, + "y": { "$numberDouble": "231.42" } + }, + { + "label": "Label", + "id": "2024-06-30T17:21:18Z", + "x": { "$date": { "$numberLong": "1719768078759" } }, + "y": { "$numberDouble": "234.11" } + }, + { + "label": "Label", + "id": "2024-07-01T19:29:04Z", + "x": { "$date": { "$numberLong": "1719862144044" } }, + "y": { "$numberDouble": "236.8" } + }, + { + "label": "Label", + "id": "2024-07-02T21:36:49Z", + "x": { "$date": { "$numberLong": "1719956209330" } }, + "y": { "$numberDouble": "239.49" } + }, + { + "label": "Label", + "id": "2024-07-03T23:44:34Z", + "x": { "$date": { "$numberLong": "1720050274615" } }, + "y": { "$numberDouble": "242.18" } + }, + { + "label": "Label", + "id": "2024-07-05T01:52:19Z", + "x": { "$date": { "$numberLong": "1720144339901" } }, + "y": { "$numberDouble": "244.88" } + }, + { + "label": "Label", + "id": "2024-07-06T04:00:05Z", + "x": { "$date": { "$numberLong": "1720238405187" } }, + "y": { "$numberDouble": "247.57" } + }, + { + "label": "Label", + "id": "2024-07-07T06:07:50Z", + "x": { "$date": { "$numberLong": "1720332470472" } }, + "y": { "$numberDouble": "250.26" } + }, + { + "label": "Label", + "id": "2024-07-08T08:15:35Z", + "x": { "$date": { "$numberLong": "1720426535758" } }, + "y": { "$numberDouble": "252.95" } + }, + { + "label": "Label", + "id": "2024-07-09T10:23:21Z", + "x": { "$date": { "$numberLong": "1720520601043" } }, + "y": { "$numberDouble": "255.64" } + }, + { + "label": "Label", + "id": "2024-07-10T12:31:06Z", + "x": { "$date": { "$numberLong": "1720614666329" } }, + "y": { "$numberDouble": "258.33" } + }, + { + "label": "Label", + "id": "2024-07-11T14:38:51Z", + "x": { "$date": { "$numberLong": "1720708731614" } }, + "y": { "$numberDouble": "261.02" } + }, + { + "label": "Label", + "id": "2024-07-12T16:46:36Z", + "x": { "$date": { "$numberLong": "1720802796900" } }, + "y": { "$numberDouble": "263.71" } + }, + { + "label": "Label", + "id": "2024-07-13T18:54:22Z", + "x": { "$date": { "$numberLong": "1720896862186" } }, + "y": { "$numberDouble": "266.4" } + }, + { + "label": "Label", + "id": "2024-07-14T21:02:07Z", + "x": { "$date": { "$numberLong": "1720990927471" } }, + "y": { "$numberDouble": "269.09" } + }, + { + "label": "Label", + "id": "2024-07-15T23:09:52Z", + "x": { "$date": { "$numberLong": "1721084992757" } }, + "y": { "$numberDouble": "271.78" } + }, + { + "label": "Label", + "id": "2024-07-17T01:17:38Z", + "x": { "$date": { "$numberLong": "1721179058042" } }, + "y": { "$numberDouble": "274.48" } + }, + { + "label": "Label", + "id": "2024-07-18T03:25:23Z", + "x": { "$date": { "$numberLong": "1721273123328" } }, + "y": { "$numberDouble": "277.17" } + }, + { + "label": "Label", + "id": "2024-07-19T05:33:08Z", + "x": { "$date": { "$numberLong": "1721367188613" } }, + "y": { "$numberDouble": "279.86" } + }, + { + "label": "Label", + "id": "2024-07-20T07:40:53Z", + "x": { "$date": { "$numberLong": "1721461253899" } }, + "y": { "$numberDouble": "282.55" } + }, + { + "label": "Label", + "id": "2024-07-21T09:48:39Z", + "x": { "$date": { "$numberLong": "1721555319184" } }, + "y": { "$numberDouble": "285.24" } + }, + { + "label": "Label", + "id": "2024-07-22T11:56:24Z", + "x": { "$date": { "$numberLong": "1721649384470" } }, + "y": { "$numberDouble": "287.93" } + }, + { + "label": "Label", + "id": "2024-07-23T14:04:09Z", + "x": { "$date": { "$numberLong": "1721743449756" } }, + "y": { "$numberDouble": "290.62" } + }, + { + "label": "Label", + "id": "2024-07-24T16:11:55Z", + "x": { "$date": { "$numberLong": "1721837515041" } }, + "y": { "$numberDouble": "293.31" } + }, + { + "label": "Label", + "id": "2024-07-25T18:19:40Z", + "x": { "$date": { "$numberLong": "1721931580327" } }, + "y": { "$numberInt": "296" } + }, + { + "label": "Label", + "id": "2024-07-26T20:27:25Z", + "x": { "$date": { "$numberLong": "1722025645612" } }, + "y": { "$numberDouble": "298.69" } + }, + { + "label": "Label", + "id": "2024-07-27T22:35:10Z", + "x": { "$date": { "$numberLong": "1722119710898" } }, + "y": { "$numberDouble": "301.38" } + }, + { + "label": "Label", + "id": "2024-07-29T00:42:56Z", + "x": { "$date": { "$numberLong": "1722213776183" } }, + "y": { "$numberDouble": "304.08" } + }, + { + "label": "Label", + "id": "2024-07-30T02:50:41Z", + "x": { "$date": { "$numberLong": "1722307841469" } }, + "y": { "$numberDouble": "306.77" } + }, + { + "label": "Label", + "id": "2024-07-31T04:58:26Z", + "x": { "$date": { "$numberLong": "1722401906755" } }, + "y": { "$numberDouble": "309.46" } + }, + { + "label": "Label", + "id": "2024-08-01T07:06:12Z", + "x": { "$date": { "$numberLong": "1722495972040" } }, + "y": { "$numberDouble": "312.15" } + }, + { + "label": "Label", + "id": "2024-08-02T09:13:57Z", + "x": { "$date": { "$numberLong": "1722590037326" } }, + "y": { "$numberDouble": "314.84" } + }, + { + "label": "Label", + "id": "2024-08-03T11:21:42Z", + "x": { "$date": { "$numberLong": "1722684102611" } }, + "y": { "$numberDouble": "317.53" } + }, + { + "label": "Label", + "id": "2024-08-04T13:29:27Z", + "x": { "$date": { "$numberLong": "1722778167897" } }, + "y": { "$numberDouble": "320.22" } + }, + { + "label": "Label", + "id": "2024-08-05T15:37:13Z", + "x": { "$date": { "$numberLong": "1722872233182" } }, + "y": { "$numberDouble": "322.91" } + }, + { + "label": "Label", + "id": "2024-08-06T17:44:58Z", + "x": { "$date": { "$numberLong": "1722966298468" } }, + "y": { "$numberDouble": "325.6" } + }, + { + "label": "Label", + "id": "2024-08-07T19:52:43Z", + "x": { "$date": { "$numberLong": "1723060363754" } }, + "y": { "$numberDouble": "328.29" } + }, + { + "label": "Label", + "id": "2024-08-08T22:00:29Z", + "x": { "$date": { "$numberLong": "1723154429039" } }, + "y": { "$numberDouble": "330.98" } + }, + { + "label": "Label", + "id": "2024-08-10T00:08:14Z", + "x": { "$date": { "$numberLong": "1723248494325" } }, + "y": { "$numberDouble": "333.68" } + }, + { + "label": "Label", + "id": "2024-08-11T02:15:59Z", + "x": { "$date": { "$numberLong": "1723342559610" } }, + "y": { "$numberDouble": "336.37" } + }, + { + "label": "Label", + "id": "2024-08-12T04:23:44Z", + "x": { "$date": { "$numberLong": "1723436624896" } }, + "y": { "$numberDouble": "339.06" } + }, + { + "label": "Label", + "id": "2024-08-13T06:31:30Z", + "x": { "$date": { "$numberLong": "1723530690181" } }, + "y": { "$numberDouble": "341.75" } + }, + { + "label": "Label", + "id": "2024-08-14T08:39:15Z", + "x": { "$date": { "$numberLong": "1723624755467" } }, + "y": { "$numberDouble": "344.44" } + }, + { + "label": "Label", + "id": "2024-08-15T10:47:00Z", + "x": { "$date": { "$numberLong": "1723718820753" } }, + "y": { "$numberDouble": "347.13" } + }, + { + "label": "Label", + "id": "2024-08-16T12:54:46Z", + "x": { "$date": { "$numberLong": "1723812886038" } }, + "y": { "$numberDouble": "349.82" } + }, + { + "label": "Label", + "id": "2024-08-17T15:02:31Z", + "x": { "$date": { "$numberLong": "1723906951324" } }, + "y": { "$numberDouble": "352.51" } + }, + { + "label": "Label", + "id": "2024-08-18T17:10:16Z", + "x": { "$date": { "$numberLong": "1724001016609" } }, + "y": { "$numberDouble": "355.2" } + }, + { + "label": "Label", + "id": "2024-08-19T19:18:01Z", + "x": { "$date": { "$numberLong": "1724095081895" } }, + "y": { "$numberDouble": "357.89" } + }, + { + "label": "Label", + "id": "2024-08-20T21:25:47Z", + "x": { "$date": { "$numberLong": "1724189147180" } }, + "y": { "$numberDouble": "360.59" } + }, + { + "label": "Label", + "id": "2024-08-21T23:33:32Z", + "x": { "$date": { "$numberLong": "1724283212466" } }, + "y": { "$numberDouble": "363.28" } + }, + { + "label": "Label", + "id": "2024-08-23T01:41:17Z", + "x": { "$date": { "$numberLong": "1724377277751" } }, + "y": { "$numberDouble": "365.97" } + }, + { + "label": "Label", + "id": "2024-08-24T03:49:03Z", + "x": { "$date": { "$numberLong": "1724471343037" } }, + "y": { "$numberDouble": "368.66" } + }, + { + "label": "Label", + "id": "2024-08-25T05:56:48Z", + "x": { "$date": { "$numberLong": "1724565408323" } }, + "y": { "$numberDouble": "371.35" } + }, + { + "label": "Label", + "id": "2024-08-26T08:04:33Z", + "x": { "$date": { "$numberLong": "1724659473608" } }, + "y": { "$numberDouble": "374.04" } + }, + { + "label": "Label", + "id": "2024-08-27T10:12:18Z", + "x": { "$date": { "$numberLong": "1724753538894" } }, + "y": { "$numberDouble": "376.73" } + }, + { + "label": "Label", + "id": "2024-08-28T12:20:04Z", + "x": { "$date": { "$numberLong": "1724847604179" } }, + "y": { "$numberDouble": "379.42" } + }, + { + "label": "Label", + "id": "2024-08-29T14:27:49Z", + "x": { "$date": { "$numberLong": "1724941669465" } }, + "y": { "$numberDouble": "382.11" } + }, + { + "label": "Label", + "id": "2024-08-30T16:35:34Z", + "x": { "$date": { "$numberLong": "1725035734750" } }, + "y": { "$numberDouble": "384.8" } + }, + { + "label": "Label", + "id": "2024-08-31T18:43:20Z", + "x": { "$date": { "$numberLong": "1725129800036" } }, + "y": { "$numberDouble": "387.49" } + }, + { + "label": "Label", + "id": "2024-09-01T20:51:05Z", + "x": { "$date": { "$numberLong": "1725223865322" } }, + "y": { "$numberDouble": "390.19" } + }, + { + "label": "Label", + "id": "2024-09-02T22:58:50Z", + "x": { "$date": { "$numberLong": "1725317930607" } }, + "y": { "$numberDouble": "392.88" } + }, + { + "label": "Label", + "id": "2024-09-04T01:06:35Z", + "x": { "$date": { "$numberLong": "1725411995893" } }, + "y": { "$numberDouble": "395.57" } + }, + { + "label": "Label", + "id": "2024-09-05T03:14:21Z", + "x": { "$date": { "$numberLong": "1725506061178" } }, + "y": { "$numberDouble": "398.26" } + }, + { + "label": "Label", + "id": "2024-09-06T05:22:06Z", + "x": { "$date": { "$numberLong": "1725600126464" } }, + "y": { "$numberDouble": "400.95" } + }, + { + "label": "Label", + "id": "2024-09-07T07:29:51Z", + "x": { "$date": { "$numberLong": "1725694191749" } }, + "y": { "$numberDouble": "403.64" } + }, + { + "label": "Label", + "id": "2024-09-08T09:37:37Z", + "x": { "$date": { "$numberLong": "1725788257035" } }, + "y": { "$numberDouble": "406.33" } + }, + { + "label": "Label", + "id": "2024-09-09T11:45:22Z", + "x": { "$date": { "$numberLong": "1725882322321" } }, + "y": { "$numberDouble": "409.02" } + }, + { + "label": "Label", + "id": "2024-09-10T13:53:07Z", + "x": { "$date": { "$numberLong": "1725976387606" } }, + "y": { "$numberDouble": "411.71" } + }, + { + "label": "Label", + "id": "2024-09-11T16:00:52Z", + "x": { "$date": { "$numberLong": "1726070452892" } }, + "y": { "$numberDouble": "414.4" } + }, + { + "label": "Label", + "id": "2024-09-12T18:08:38Z", + "x": { "$date": { "$numberLong": "1726164518177" } }, + "y": { "$numberDouble": "417.09" } + }, + { + "label": "Label", + "id": "2024-09-13T20:16:23Z", + "x": { "$date": { "$numberLong": "1726258583463" } }, + "y": { "$numberDouble": "419.79" } + }, + { + "label": "Label", + "id": "2024-09-14T22:24:08Z", + "x": { "$date": { "$numberLong": "1726352648748" } }, + "y": { "$numberDouble": "422.48" } + }, + { + "label": "Label", + "id": "2024-09-16T00:31:54Z", + "x": { "$date": { "$numberLong": "1726446714034" } }, + "y": { "$numberDouble": "425.17" } + }, + { + "label": "Label", + "id": "2024-09-17T02:39:39Z", + "x": { "$date": { "$numberLong": "1726540779319" } }, + "y": { "$numberDouble": "427.86" } + }, + { + "label": "Label", + "id": "2024-09-18T04:47:24Z", + "x": { "$date": { "$numberLong": "1726634844605" } }, + "y": { "$numberDouble": "430.55" } + }, + { + "label": "Label", + "id": "2024-09-19T06:55:09Z", + "x": { "$date": { "$numberLong": "1726728909891" } }, + "y": { "$numberDouble": "433.24" } + }, + { + "label": "Label", + "id": "2024-09-20T09:02:55Z", + "x": { "$date": { "$numberLong": "1726822975176" } }, + "y": { "$numberDouble": "435.93" } + }, + { + "label": "Label", + "id": "2024-09-21T11:10:40Z", + "x": { "$date": { "$numberLong": "1726917040462" } }, + "y": { "$numberDouble": "438.62" } + }, + { + "label": "Label", + "id": "2024-09-22T13:18:25Z", + "x": { "$date": { "$numberLong": "1727011105747" } }, + "y": { "$numberDouble": "441.31" } + }, + { + "label": "Label", + "id": "2024-09-23T15:26:11Z", + "x": { "$date": { "$numberLong": "1727105171033" } }, + "y": { "$numberInt": "444" } + }, + { + "label": "Label", + "id": "2024-09-24T17:33:56Z", + "x": { "$date": { "$numberLong": "1727199236318" } }, + "y": { "$numberDouble": "446.7" } + }, + { + "label": "Label", + "id": "2024-09-25T19:41:41Z", + "x": { "$date": { "$numberLong": "1727293301604" } }, + "y": { "$numberDouble": "449.39" } + }, + { + "label": "Label", + "id": "2024-09-26T21:49:26Z", + "x": { "$date": { "$numberLong": "1727387366890" } }, + "y": { "$numberDouble": "452.08" } + }, + { + "label": "Label", + "id": "2024-09-27T23:57:12Z", + "x": { "$date": { "$numberLong": "1727481432175" } }, + "y": { "$numberDouble": "454.77" } + }, + { + "label": "Label", + "id": "2024-09-29T02:04:57Z", + "x": { "$date": { "$numberLong": "1727575497461" } }, + "y": { "$numberDouble": "457.46" } + }, + { + "label": "Label", + "id": "2024-09-30T04:12:42Z", + "x": { "$date": { "$numberLong": "1727669562746" } }, + "y": { "$numberDouble": "460.15" } + }, + { + "label": "Label", + "id": "2024-10-01T06:20:28Z", + "x": { "$date": { "$numberLong": "1727763628032" } }, + "y": { "$numberDouble": "462.84" } + }, + { + "label": "Label", + "id": "2024-10-02T08:28:13Z", + "x": { "$date": { "$numberLong": "1727857693317" } }, + "y": { "$numberDouble": "465.53" } + }, + { + "label": "Label", + "id": "2024-10-03T10:35:58Z", + "x": { "$date": { "$numberLong": "1727951758603" } }, + "y": { "$numberDouble": "468.22" } + }, + { + "label": "Label", + "id": "2024-10-04T12:43:43Z", + "x": { "$date": { "$numberLong": "1728045823889" } }, + "y": { "$numberDouble": "470.91" } + }, + { + "label": "Label", + "id": "2024-10-05T14:51:29Z", + "x": { "$date": { "$numberLong": "1728139889174" } }, + "y": { "$numberDouble": "473.6" } + }, + { + "label": "Label", + "id": "2024-10-06T16:59:14Z", + "x": { "$date": { "$numberLong": "1728233954460" } }, + "y": { "$numberDouble": "476.3" } + }, + { + "label": "Label", + "id": "2024-10-07T19:06:59Z", + "x": { "$date": { "$numberLong": "1728328019745" } }, + "y": { "$numberDouble": "478.99" } + }, + { + "label": "Label", + "id": "2024-10-08T21:14:45Z", + "x": { "$date": { "$numberLong": "1728422085031" } }, + "y": { "$numberDouble": "481.68" } + }, + { + "label": "Label", + "id": "2024-10-09T23:22:30Z", + "x": { "$date": { "$numberLong": "1728516150316" } }, + "y": { "$numberDouble": "484.37" } + }, + { + "label": "Label", + "id": "2024-10-11T01:30:15Z", + "x": { "$date": { "$numberLong": "1728610215602" } }, + "y": { "$numberDouble": "487.06" } + }, + { + "label": "Label", + "id": "2024-10-12T03:38:00Z", + "x": { "$date": { "$numberLong": "1728704280888" } }, + "y": { "$numberDouble": "489.75" } + }, + { + "label": "Label", + "id": "2024-10-13T05:45:46Z", + "x": { "$date": { "$numberLong": "1728798346173" } }, + "y": { "$numberDouble": "492.44" } + }, + { + "label": "Label", + "id": "2024-10-14T07:53:31Z", + "x": { "$date": { "$numberLong": "1728892411459" } }, + "y": { "$numberDouble": "495.13" } + }, + { + "label": "Label", + "id": "2024-10-15T10:01:16Z", + "x": { "$date": { "$numberLong": "1728986476744" } }, + "y": { "$numberDouble": "497.82" } + }, + { + "label": "Label", + "id": "2024-10-16T12:09:02Z", + "x": { "$date": { "$numberLong": "1729080542030" } }, + "y": { "$numberDouble": "500.51" } + }, + { + "label": "Label", + "id": "2024-10-17T14:16:47Z", + "x": { "$date": { "$numberLong": "1729174607315" } }, + "y": { "$numberDouble": "503.2" } + }, + { + "label": "Label", + "id": "2024-10-18T16:24:32Z", + "x": { "$date": { "$numberLong": "1729268672601" } }, + "y": { "$numberDouble": "505.9" } + }, + { + "label": "Label", + "id": "2024-10-19T18:32:17Z", + "x": { "$date": { "$numberLong": "1729362737886" } }, + "y": { "$numberDouble": "508.59" } + }, + { + "label": "Label", + "id": "2024-10-20T20:40:03Z", + "x": { "$date": { "$numberLong": "1729456803172" } }, + "y": { "$numberDouble": "511.28" } + }, + { + "label": "Label", + "id": "2024-10-21T22:47:48Z", + "x": { "$date": { "$numberLong": "1729550868458" } }, + "y": { "$numberDouble": "513.97" } + }, + { + "label": "Label", + "id": "2024-10-23T00:55:33Z", + "x": { "$date": { "$numberLong": "1729644933743" } }, + "y": { "$numberDouble": "516.66" } + }, + { + "label": "Label", + "id": "2024-10-24T03:03:19Z", + "x": { "$date": { "$numberLong": "1729738999029" } }, + "y": { "$numberDouble": "519.35" } + }, + { + "label": "Label", + "id": "2024-10-25T05:11:04Z", + "x": { "$date": { "$numberLong": "1729833064314" } }, + "y": { "$numberDouble": "522.04" } + }, + { + "label": "Label", + "id": "2024-10-26T07:18:49Z", + "x": { "$date": { "$numberLong": "1729927129600" } }, + "y": { "$numberDouble": "524.73" } + }, + { + "label": "Label", + "id": "2024-10-27T09:26:34Z", + "x": { "$date": { "$numberLong": "1730021194885" } }, + "y": { "$numberDouble": "527.42" } + }, + { + "label": "Label", + "id": "2024-10-28T11:34:20Z", + "x": { "$date": { "$numberLong": "1730115260171" } }, + "y": { "$numberDouble": "530.11" } + }, + { + "label": "Label", + "id": "2024-10-29T13:42:05Z", + "x": { "$date": { "$numberLong": "1730209325457" } }, + "y": { "$numberDouble": "532.8" } + }, + { + "label": "Label", + "id": "2024-10-30T15:49:50Z", + "x": { "$date": { "$numberLong": "1730303390742" } }, + "y": { "$numberDouble": "535.5" } + }, + { + "label": "Label", + "id": "2024-10-31T17:57:36Z", + "x": { "$date": { "$numberLong": "1730397456028" } }, + "y": { "$numberDouble": "538.19" } + }, + { + "label": "Label", + "id": "2024-11-01T20:05:21Z", + "x": { "$date": { "$numberLong": "1730491521313" } }, + "y": { "$numberDouble": "540.88" } + }, + { + "label": "Label", + "id": "2024-11-02T22:13:06Z", + "x": { "$date": { "$numberLong": "1730585586599" } }, + "y": { "$numberDouble": "543.57" } + }, + { + "label": "Label", + "id": "2024-11-04T00:20:51Z", + "x": { "$date": { "$numberLong": "1730679651884" } }, + "y": { "$numberDouble": "546.26" } + }, + { + "label": "Label", + "id": "2024-11-05T02:28:37Z", + "x": { "$date": { "$numberLong": "1730773717170" } }, + "y": { "$numberDouble": "548.95" } + }, + { + "label": "Label", + "id": "2024-11-06T04:36:22Z", + "x": { "$date": { "$numberLong": "1730867782456" } }, + "y": { "$numberDouble": "551.64" } + }, + { + "label": "Label", + "id": "2024-11-07T06:44:07Z", + "x": { "$date": { "$numberLong": "1730961847741" } }, + "y": { "$numberDouble": "554.33" } + }, + { + "label": "Label", + "id": "2024-11-08T08:51:53Z", + "x": { "$date": { "$numberLong": "1731055913027" } }, + "y": { "$numberDouble": "557.02" } + }, + { + "label": "Label", + "id": "2024-11-09T10:59:38Z", + "x": { "$date": { "$numberLong": "1731149978312" } }, + "y": { "$numberDouble": "559.71" } + }, + { + "label": "Label", + "id": "2024-11-10T13:07:23Z", + "x": { "$date": { "$numberLong": "1731244043598" } }, + "y": { "$numberDouble": "562.41" } + }, + { + "label": "Label", + "id": "2024-11-11T15:15:08Z", + "x": { "$date": { "$numberLong": "1731338108883" } }, + "y": { "$numberDouble": "565.1" } + }, + { + "label": "Label", + "id": "2024-11-12T17:22:54Z", + "x": { "$date": { "$numberLong": "1731432174169" } }, + "y": { "$numberDouble": "567.79" } + }, + { + "label": "Label", + "id": "2024-11-13T19:30:39Z", + "x": { "$date": { "$numberLong": "1731526239454" } }, + "y": { "$numberDouble": "570.48" } + }, + { + "label": "Label", + "id": "2024-11-14T21:38:24Z", + "x": { "$date": { "$numberLong": "1731620304740" } }, + "y": { "$numberDouble": "573.17" } + }, + { + "label": "Label", + "id": "2024-11-15T23:46:10Z", + "x": { "$date": { "$numberLong": "1731714370026" } }, + "y": { "$numberDouble": "575.86" } + }, + { + "label": "Label", + "id": "2024-11-17T01:53:55Z", + "x": { "$date": { "$numberLong": "1731808435311" } }, + "y": { "$numberDouble": "578.55" } + }, + { + "label": "Label", + "id": "2024-11-18T04:01:40Z", + "x": { "$date": { "$numberLong": "1731902500597" } }, + "y": { "$numberDouble": "581.24" } + }, + { + "label": "Label", + "id": "2024-11-19T06:09:25Z", + "x": { "$date": { "$numberLong": "1731996565882" } }, + "y": { "$numberDouble": "583.93" } + }, + { + "label": "Label", + "id": "2024-11-20T08:17:11Z", + "x": { "$date": { "$numberLong": "1732090631168" } }, + "y": { "$numberDouble": "586.62" } + }, + { + "label": "Label", + "id": "2024-11-21T10:24:56Z", + "x": { "$date": { "$numberLong": "1732184696453" } }, + "y": { "$numberDouble": "589.31" } + }, + { + "label": "Label", + "id": "2024-11-22T12:32:41Z", + "x": { "$date": { "$numberLong": "1732278761739" } }, + "y": { "$numberDouble": "592.01" } + }, + { + "label": "Label", + "id": "2024-11-23T14:40:27Z", + "x": { "$date": { "$numberLong": "1732372827025" } }, + "y": { "$numberDouble": "594.7" } + }, + { + "label": "Label", + "id": "2024-11-24T16:48:12Z", + "x": { "$date": { "$numberLong": "1732466892310" } }, + "y": { "$numberDouble": "597.39" } + }, + { + "label": "Label", + "id": "2024-11-25T18:55:57Z", + "x": { "$date": { "$numberLong": "1732560957596" } }, + "y": { "$numberDouble": "600.08" } + }, + { + "label": "Label", + "id": "2024-11-26T21:03:42Z", + "x": { "$date": { "$numberLong": "1732655022881" } }, + "y": { "$numberDouble": "602.77" } + }, + { + "label": "Label", + "id": "2024-11-27T23:11:28Z", + "x": { "$date": { "$numberLong": "1732749088167" } }, + "y": { "$numberDouble": "605.46" } + }, + { + "label": "Label", + "id": "2024-11-29T01:19:13Z", + "x": { "$date": { "$numberLong": "1732843153452" } }, + "y": { "$numberDouble": "608.15" } + }, + { + "label": "Label", + "id": "2024-11-30T03:26:58Z", + "x": { "$date": { "$numberLong": "1732937218738" } }, + "y": { "$numberDouble": "610.84" } + }, + { + "label": "Label", + "id": "2024-12-01T05:34:44Z", + "x": { "$date": { "$numberLong": "1733031284024" } }, + "y": { "$numberDouble": "613.53" } + }, + { + "label": "Label", + "id": "2024-12-02T07:42:29Z", + "x": { "$date": { "$numberLong": "1733125349309" } }, + "y": { "$numberDouble": "616.22" } + }, + { + "label": "Label", + "id": "2024-12-03T09:50:14Z", + "x": { "$date": { "$numberLong": "1733219414595" } }, + "y": { "$numberDouble": "618.91" } + }, + { + "label": "Label", + "id": "2024-12-04T11:57:59Z", + "x": { "$date": { "$numberLong": "1733313479880" } }, + "y": { "$numberDouble": "621.61" } + }, + { + "label": "Label", + "id": "2024-12-05T14:05:45Z", + "x": { "$date": { "$numberLong": "1733407545166" } }, + "y": { "$numberDouble": "624.3" } + }, + { + "label": "Label", + "id": "2024-12-06T16:13:30Z", + "x": { "$date": { "$numberLong": "1733501610451" } }, + "y": { "$numberDouble": "626.99" } + }, + { + "label": "Label", + "id": "2024-12-07T18:21:15Z", + "x": { "$date": { "$numberLong": "1733595675737" } }, + "y": { "$numberDouble": "629.68" } + }, + { + "label": "Label", + "id": "2024-12-08T20:29:01Z", + "x": { "$date": { "$numberLong": "1733689741022" } }, + "y": { "$numberDouble": "632.37" } + }, + { + "label": "Label", + "id": "2024-12-09T22:36:46Z", + "x": { "$date": { "$numberLong": "1733783806308" } }, + "y": { "$numberDouble": "635.06" } + }, + { + "label": "Label", + "id": "2024-12-11T00:44:31Z", + "x": { "$date": { "$numberLong": "1733877871594" } }, + "y": { "$numberDouble": "637.75" } + }, + { + "label": "Label", + "id": "2024-12-12T02:52:16Z", + "x": { "$date": { "$numberLong": "1733971936879" } }, + "y": { "$numberDouble": "640.44" } + }, + { + "label": "Label", + "id": "2024-12-13T05:00:02Z", + "x": { "$date": { "$numberLong": "1734066002165" } }, + "y": { "$numberDouble": "643.13" } + }, + { + "label": "Label", + "id": "2024-12-14T07:07:47Z", + "x": { "$date": { "$numberLong": "1734160067450" } }, + "y": { "$numberDouble": "645.82" } + }, + { + "label": "Label", + "id": "2024-12-15T09:15:32Z", + "x": { "$date": { "$numberLong": "1734254132736" } }, + "y": { "$numberDouble": "648.52" } + }, + { + "label": "Label", + "id": "2024-12-16T11:23:18Z", + "x": { "$date": { "$numberLong": "1734348198021" } }, + "y": { "$numberDouble": "651.21" } + }, + { + "label": "Label", + "id": "2024-12-17T13:31:03Z", + "x": { "$date": { "$numberLong": "1734442263307" } }, + "y": { "$numberDouble": "653.9" } + }, + { + "label": "Label", + "id": "2024-12-18T15:38:48Z", + "x": { "$date": { "$numberLong": "1734536328593" } }, + "y": { "$numberDouble": "656.59" } + }, + { + "label": "Label", + "id": "2024-12-19T17:46:33Z", + "x": { "$date": { "$numberLong": "1734630393878" } }, + "y": { "$numberDouble": "659.28" } + }, + { + "label": "Label", + "id": "2024-12-20T19:54:19Z", + "x": { "$date": { "$numberLong": "1734724459164" } }, + "y": { "$numberDouble": "661.97" } + }, + { + "label": "Label", + "id": "2024-12-21T22:02:04Z", + "x": { "$date": { "$numberLong": "1734818524449" } }, + "y": { "$numberDouble": "664.66" } + }, + { + "label": "Label", + "id": "2024-12-23T00:09:49Z", + "x": { "$date": { "$numberLong": "1734912589735" } }, + "y": { "$numberDouble": "667.35" } + }, + { + "label": "Label", + "id": "2024-12-24T02:17:35Z", + "x": { "$date": { "$numberLong": "1735006655020" } }, + "y": { "$numberDouble": "670.04" } + }, + { + "label": "Label", + "id": "2024-12-25T04:25:20Z", + "x": { "$date": { "$numberLong": "1735100720306" } }, + "y": { "$numberDouble": "672.73" } + }, + { + "label": "Label", + "id": "2024-12-26T06:33:05Z", + "x": { "$date": { "$numberLong": "1735194785592" } }, + "y": { "$numberDouble": "675.42" } + }, + { + "label": "Label", + "id": "2024-12-27T08:40:50Z", + "x": { "$date": { "$numberLong": "1735288850877" } }, + "y": { "$numberDouble": "678.12" } + }, + { + "label": "Label", + "id": "2024-12-28T10:48:36Z", + "x": { "$date": { "$numberLong": "1735382916163" } }, + "y": { "$numberDouble": "680.81" } + }, + { + "label": "Label", + "id": "2024-12-29T12:56:21Z", + "x": { "$date": { "$numberLong": "1735476981448" } }, + "y": { "$numberDouble": "683.5" } + }, + { + "label": "Label", + "id": "2024-12-30T15:04:06Z", + "x": { "$date": { "$numberLong": "1735571046734" } }, + "y": { "$numberDouble": "686.19" } + }, + { + "label": "Label", + "id": "2024-12-31T17:11:52Z", + "x": { "$date": { "$numberLong": "1735665112019" } }, + "y": { "$numberDouble": "688.88" } + }, + { + "label": "Label", + "id": "2025-01-01T19:19:37Z", + "x": { "$date": { "$numberLong": "1735759177305" } }, + "y": { "$numberDouble": "691.57" } + }, + { + "label": "Label", + "id": "2025-01-02T21:27:22Z", + "x": { "$date": { "$numberLong": "1735853242591" } }, + "y": { "$numberDouble": "694.26" } + }, + { + "label": "Label", + "id": "2025-01-03T23:35:07Z", + "x": { "$date": { "$numberLong": "1735947307876" } }, + "y": { "$numberDouble": "696.95" } + }, + { + "label": "Label", + "id": "2025-01-05T01:42:53Z", + "x": { "$date": { "$numberLong": "1736041373162" } }, + "y": { "$numberDouble": "699.64" } + }, + { + "label": "Label", + "id": "2025-01-06T03:50:38Z", + "x": { "$date": { "$numberLong": "1736135438447" } }, + "y": { "$numberDouble": "702.33" } + }, + { + "label": "Label", + "id": "2025-01-07T05:58:23Z", + "x": { "$date": { "$numberLong": "1736229503733" } }, + "y": { "$numberDouble": "705.02" } + }, + { + "label": "Label", + "id": "2025-01-08T08:06:09Z", + "x": { "$date": { "$numberLong": "1736323569018" } }, + "y": { "$numberDouble": "707.72" } + }, + { + "label": "Label", + "id": "2025-01-09T10:13:54Z", + "x": { "$date": { "$numberLong": "1736417634304" } }, + "y": { "$numberDouble": "710.41" } + }, + { + "label": "Label", + "id": "2025-01-10T12:21:39Z", + "x": { "$date": { "$numberLong": "1736511699589" } }, + "y": { "$numberDouble": "713.1" } + }, + { + "label": "Label", + "id": "2025-01-11T14:29:24Z", + "x": { "$date": { "$numberLong": "1736605764875" } }, + "y": { "$numberDouble": "715.79" } + }, + { + "label": "Label", + "id": "2025-01-12T16:37:10Z", + "x": { "$date": { "$numberLong": "1736699830161" } }, + "y": { "$numberDouble": "718.48" } + }, + { + "label": "Label", + "id": "2025-01-13T18:44:55Z", + "x": { "$date": { "$numberLong": "1736793895446" } }, + "y": { "$numberDouble": "721.17" } + }, + { + "label": "Label", + "id": "2025-01-14T20:52:40Z", + "x": { "$date": { "$numberLong": "1736887960732" } }, + "y": { "$numberDouble": "723.86" } + }, + { + "label": "Label", + "id": "2025-01-15T23:00:26Z", + "x": { "$date": { "$numberLong": "1736982026017" } }, + "y": { "$numberDouble": "726.55" } + }, + { + "label": "Label", + "id": "2025-01-17T01:08:11Z", + "x": { "$date": { "$numberLong": "1737076091303" } }, + "y": { "$numberDouble": "729.24" } + }, + { + "label": "Label", + "id": "2025-01-18T03:15:56Z", + "x": { "$date": { "$numberLong": "1737170156588" } }, + "y": { "$numberDouble": "731.93" } + }, + { + "label": "Label", + "id": "2025-01-19T05:23:41Z", + "x": { "$date": { "$numberLong": "1737264221874" } }, + "y": { "$numberDouble": "734.63" } + }, + { + "label": "Label", + "id": "2025-01-20T07:31:27Z", + "x": { "$date": { "$numberLong": "1737358287160" } }, + "y": { "$numberDouble": "737.32" } + }, + { + "label": "Label", + "id": "2025-01-21T09:39:12Z", + "x": { "$date": { "$numberLong": "1737452352445" } }, + "y": { "$numberDouble": "740.01" } + }, + { + "label": "Label", + "id": "2025-01-22T11:46:57Z", + "x": { "$date": { "$numberLong": "1737546417731" } }, + "y": { "$numberDouble": "742.7" } + }, + { + "label": "Label", + "id": "2025-01-23T13:54:43Z", + "x": { "$date": { "$numberLong": "1737640483016" } }, + "y": { "$numberDouble": "745.39" } + }, + { + "label": "Label", + "id": "2025-01-24T16:02:28Z", + "x": { "$date": { "$numberLong": "1737734548302" } }, + "y": { "$numberDouble": "748.08" } + }, + { + "label": "Label", + "id": "2025-01-25T18:10:13Z", + "x": { "$date": { "$numberLong": "1737828613587" } }, + "y": { "$numberDouble": "750.77" } + }, + { + "label": "Label", + "id": "2025-01-26T20:17:58Z", + "x": { "$date": { "$numberLong": "1737922678873" } }, + "y": { "$numberDouble": "753.46" } + }, + { + "label": "Label", + "id": "2025-01-27T22:25:44Z", + "x": { "$date": { "$numberLong": "1738016744159" } }, + "y": { "$numberDouble": "756.15" } + }, + { + "label": "Label", + "id": "2025-01-29T00:33:29Z", + "x": { "$date": { "$numberLong": "1738110809444" } }, + "y": { "$numberDouble": "758.84" } + }, + { + "label": "Label", + "id": "2025-01-30T02:41:14Z", + "x": { "$date": { "$numberLong": "1738204874730" } }, + "y": { "$numberDouble": "761.53" } + }, + { + "label": "Label", + "id": "2025-01-31T04:49:00Z", + "x": { "$date": { "$numberLong": "1738298940015" } }, + "y": { "$numberDouble": "764.23" } + }, + { + "label": "Label", + "id": "2025-02-01T06:56:45Z", + "x": { "$date": { "$numberLong": "1738393005301" } }, + "y": { "$numberDouble": "766.92" } + }, + { + "label": "Label", + "id": "2025-02-02T09:04:30Z", + "x": { "$date": { "$numberLong": "1738487070586" } }, + "y": { "$numberDouble": "769.61" } + }, + { + "label": "Label", + "id": "2025-02-03T11:12:15Z", + "x": { "$date": { "$numberLong": "1738581135872" } }, + "y": { "$numberDouble": "772.3" } + }, + { + "label": "Label", + "id": "2025-02-04T13:20:01Z", + "x": { "$date": { "$numberLong": "1738675201157" } }, + "y": { "$numberDouble": "774.99" } + }, + { + "label": "Label", + "id": "2025-02-05T15:27:46Z", + "x": { "$date": { "$numberLong": "1738769266443" } }, + "y": { "$numberDouble": "777.68" } + }, + { + "label": "Label", + "id": "2025-02-06T17:35:31Z", + "x": { "$date": { "$numberLong": "1738863331729" } }, + "y": { "$numberDouble": "780.37" } + }, + { + "label": "Label", + "id": "2025-02-07T19:43:17Z", + "x": { "$date": { "$numberLong": "1738957397014" } }, + "y": { "$numberDouble": "783.06" } + }, + { + "label": "Label", + "id": "2025-02-08T21:51:02Z", + "x": { "$date": { "$numberLong": "1739051462300" } }, + "y": { "$numberDouble": "785.75" } + }, + { + "label": "Label", + "id": "2025-02-09T23:58:47Z", + "x": { "$date": { "$numberLong": "1739145527585" } }, + "y": { "$numberDouble": "788.44" } + }, + { + "label": "Label", + "id": "2025-02-11T02:06:32Z", + "x": { "$date": { "$numberLong": "1739239592871" } }, + "y": { "$numberDouble": "791.13" } + }, + { + "label": "Label", + "id": "2025-02-12T04:14:18Z", + "x": { "$date": { "$numberLong": "1739333658156" } }, + "y": { "$numberDouble": "793.83" } + }, + { + "label": "Label", + "id": "2025-02-13T06:22:03Z", + "x": { "$date": { "$numberLong": "1739427723442" } }, + "y": { "$numberDouble": "796.52" } + }, + { + "label": "Label", + "id": "2025-02-14T08:29:48Z", + "x": { "$date": { "$numberLong": "1739521788728" } }, + "y": { "$numberDouble": "799.21" } + }, + { + "label": "Label", + "id": "2025-02-15T10:37:34Z", + "x": { "$date": { "$numberLong": "1739615854013" } }, + "y": { "$numberDouble": "801.9" } + }, + { + "label": "Label", + "id": "2025-02-16T12:45:19Z", + "x": { "$date": { "$numberLong": "1739709919299" } }, + "y": { "$numberDouble": "804.59" } + }, + { + "label": "Label", + "id": "2025-02-17T14:53:04Z", + "x": { "$date": { "$numberLong": "1739803984584" } }, + "y": { "$numberDouble": "807.28" } + }, + { + "label": "Label", + "id": "2025-02-18T17:00:49Z", + "x": { "$date": { "$numberLong": "1739898049870" } }, + "y": { "$numberDouble": "809.97" } + }, + { + "label": "Label", + "id": "2025-02-19T19:08:35Z", + "x": { "$date": { "$numberLong": "1739992115155" } }, + "y": { "$numberDouble": "812.66" } + }, + { + "label": "Label", + "id": "2025-02-20T21:16:20Z", + "x": { "$date": { "$numberLong": "1740086180441" } }, + "y": { "$numberDouble": "815.35" } + }, + { + "label": "Label", + "id": "2025-02-21T23:24:05Z", + "x": { "$date": { "$numberLong": "1740180245727" } }, + "y": { "$numberDouble": "818.04" } + }, + { + "label": "Label", + "id": "2025-02-23T01:31:51Z", + "x": { "$date": { "$numberLong": "1740274311012" } }, + "y": { "$numberDouble": "820.73" } + }, + { + "label": "Label", + "id": "2025-02-24T03:39:36Z", + "x": { "$date": { "$numberLong": "1740368376298" } }, + "y": { "$numberDouble": "823.43" } + }, + { + "label": "Label", + "id": "2025-02-25T05:47:21Z", + "x": { "$date": { "$numberLong": "1740462441583" } }, + "y": { "$numberDouble": "826.12" } + }, + { + "label": "Label", + "id": "2025-02-26T07:55:06Z", + "x": { "$date": { "$numberLong": "1740556506869" } }, + "y": { "$numberDouble": "828.81" } + }, + { + "label": "Label", + "id": "2025-02-27T10:02:52Z", + "x": { "$date": { "$numberLong": "1740650572154" } }, + "y": { "$numberDouble": "831.5" } + }, + { + "label": "Label", + "id": "2025-02-28T12:10:37Z", + "x": { "$date": { "$numberLong": "1740744637440" } }, + "y": { "$numberDouble": "834.19" } + }, + { + "label": "Label", + "id": "2025-03-01T14:18:22Z", + "x": { "$date": { "$numberLong": "1740838702726" } }, + "y": { "$numberDouble": "836.88" } + }, + { + "label": "Label", + "id": "2025-03-02T16:26:08Z", + "x": { "$date": { "$numberLong": "1740932768011" } }, + "y": { "$numberDouble": "839.57" } + }, + { + "label": "Label", + "id": "2025-03-03T18:33:53Z", + "x": { "$date": { "$numberLong": "1741026833297" } }, + "y": { "$numberDouble": "842.26" } + }, + { + "label": "Label", + "id": "2025-03-04T20:41:38Z", + "x": { "$date": { "$numberLong": "1741120898582" } }, + "y": { "$numberDouble": "844.95" } + }, + { + "label": "Label", + "id": "2025-03-05T22:49:23Z", + "x": { "$date": { "$numberLong": "1741214963868" } }, + "y": { "$numberDouble": "847.64" } + }, + { + "label": "Label", + "id": "2025-03-07T00:57:09Z", + "x": { "$date": { "$numberLong": "1741309029153" } }, + "y": { "$numberDouble": "850.34" } + }, + { + "label": "Label", + "id": "2025-03-08T03:04:54Z", + "x": { "$date": { "$numberLong": "1741403094439" } }, + "y": { "$numberDouble": "853.03" } + }, + { + "label": "Label", + "id": "2025-03-09T05:12:39Z", + "x": { "$date": { "$numberLong": "1741497159724" } }, + "y": { "$numberDouble": "855.72" } + }, + { + "label": "Label", + "id": "2025-03-10T07:20:25Z", + "x": { "$date": { "$numberLong": "1741591225010" } }, + "y": { "$numberDouble": "858.41" } + }, + { + "label": "Label", + "id": "2025-03-11T09:28:10Z", + "x": { "$date": { "$numberLong": "1741685290296" } }, + "y": { "$numberDouble": "861.1" } + }, + { + "label": "Label", + "id": "2025-03-12T11:35:55Z", + "x": { "$date": { "$numberLong": "1741779355581" } }, + "y": { "$numberDouble": "863.79" } + }, + { + "label": "Label", + "id": "2025-03-13T13:43:40Z", + "x": { "$date": { "$numberLong": "1741873420867" } }, + "y": { "$numberDouble": "866.48" } + }, + { + "label": "Label", + "id": "2025-03-14T15:51:26Z", + "x": { "$date": { "$numberLong": "1741967486152" } }, + "y": { "$numberDouble": "869.17" } + }, + { + "label": "Label", + "id": "2025-03-15T17:59:11Z", + "x": { "$date": { "$numberLong": "1742061551438" } }, + "y": { "$numberDouble": "871.86" } + }, + { + "label": "Label", + "id": "2025-03-16T20:06:56Z", + "x": { "$date": { "$numberLong": "1742155616723" } }, + "y": { "$numberDouble": "874.55" } + }, + { + "label": "Label", + "id": "2025-03-17T22:14:42Z", + "x": { "$date": { "$numberLong": "1742249682009" } }, + "y": { "$numberDouble": "877.24" } + }, + { + "label": "Label", + "id": "2025-03-19T00:22:27Z", + "x": { "$date": { "$numberLong": "1742343747295" } }, + "y": { "$numberDouble": "879.94" } + }, + { + "label": "Label", + "id": "2025-03-20T02:30:12Z", + "x": { "$date": { "$numberLong": "1742437812580" } }, + "y": { "$numberDouble": "882.63" } + }, + { + "label": "Label", + "id": "2025-03-21T04:37:57Z", + "x": { "$date": { "$numberLong": "1742531877866" } }, + "y": { "$numberDouble": "885.32" } + }, + { + "label": "Label", + "id": "2025-03-22T06:45:43Z", + "x": { "$date": { "$numberLong": "1742625943151" } }, + "y": { "$numberDouble": "888.01" } + }, + { + "label": "Label", + "id": "2025-03-23T08:53:28Z", + "x": { "$date": { "$numberLong": "1742720008437" } }, + "y": { "$numberDouble": "890.7" } + }, + { + "label": "Label", + "id": "2025-03-24T11:01:13Z", + "x": { "$date": { "$numberLong": "1742814073722" } }, + "y": { "$numberDouble": "893.39" } + }, + { + "label": "Label", + "id": "2025-03-25T13:08:59Z", + "x": { "$date": { "$numberLong": "1742908139008" } }, + "y": { "$numberDouble": "896.08" } + }, + { + "label": "Label", + "id": "2025-03-26T15:16:44Z", + "x": { "$date": { "$numberLong": "1743002204294" } }, + "y": { "$numberDouble": "898.77" } + }, + { + "label": "Label", + "id": "2025-03-27T17:24:29Z", + "x": { "$date": { "$numberLong": "1743096269579" } }, + "y": { "$numberDouble": "901.46" } + }, + { + "label": "Label", + "id": "2025-03-28T19:32:14Z", + "x": { "$date": { "$numberLong": "1743190334865" } }, + "y": { "$numberDouble": "904.15" } + }, + { + "label": "Label", + "id": "2025-03-29T21:40:00Z", + "x": { "$date": { "$numberLong": "1743284400150" } }, + "y": { "$numberDouble": "906.84" } + }, + { + "label": "Label", + "id": "2025-03-30T23:47:45Z", + "x": { "$date": { "$numberLong": "1743378465436" } }, + "y": { "$numberDouble": "909.54" } + }, + { + "label": "Label", + "id": "2025-04-01T01:55:30Z", + "x": { "$date": { "$numberLong": "1743472530721" } }, + "y": { "$numberDouble": "912.23" } + }, + { + "label": "Label", + "id": "2025-04-02T04:03:16Z", + "x": { "$date": { "$numberLong": "1743566596007" } }, + "y": { "$numberDouble": "914.92" } + }, + { + "label": "Label", + "id": "2025-04-03T06:11:01Z", + "x": { "$date": { "$numberLong": "1743660661292" } }, + "y": { "$numberDouble": "917.61" } + }, + { + "label": "Label", + "id": "2025-04-04T08:18:46Z", + "x": { "$date": { "$numberLong": "1743754726578" } }, + "y": { "$numberDouble": "920.3" } + }, + { + "label": "Label", + "id": "2025-04-05T10:26:31Z", + "x": { "$date": { "$numberLong": "1743848791864" } }, + "y": { "$numberDouble": "922.99" } + }, + { + "label": "Label", + "id": "2025-04-06T12:34:17Z", + "x": { "$date": { "$numberLong": "1743942857149" } }, + "y": { "$numberDouble": "925.68" } + }, + { + "label": "Label", + "id": "2025-04-07T14:42:02Z", + "x": { "$date": { "$numberLong": "1744036922435" } }, + "y": { "$numberDouble": "928.37" } + }, + { + "label": "Label", + "id": "2025-04-08T16:49:47Z", + "x": { "$date": { "$numberLong": "1744130987720" } }, + "y": { "$numberDouble": "931.06" } + }, + { + "label": "Label", + "id": "2025-04-09T18:57:33Z", + "x": { "$date": { "$numberLong": "1744225053006" } }, + "y": { "$numberDouble": "933.75" } + }, + { + "label": "Label", + "id": "2025-04-10T21:05:18Z", + "x": { "$date": { "$numberLong": "1744319118291" } }, + "y": { "$numberDouble": "936.45" } + }, + { + "label": "Label", + "id": "2025-04-11T23:13:03Z", + "x": { "$date": { "$numberLong": "1744413183577" } }, + "y": { "$numberDouble": "939.14" } + }, + { + "label": "Label", + "id": "2025-04-13T01:20:48Z", + "x": { "$date": { "$numberLong": "1744507248863" } }, + "y": { "$numberDouble": "941.83" } + }, + { + "label": "Label", + "id": "2025-04-14T03:28:34Z", + "x": { "$date": { "$numberLong": "1744601314148" } }, + "y": { "$numberDouble": "944.52" } + }, + { + "label": "Label", + "id": "2025-04-15T05:36:19Z", + "x": { "$date": { "$numberLong": "1744695379434" } }, + "y": { "$numberDouble": "947.21" } + }, + { + "label": "Label", + "id": "2025-04-16T07:44:04Z", + "x": { "$date": { "$numberLong": "1744789444719" } }, + "y": { "$numberDouble": "949.9" } + }, + { + "label": "Label", + "id": "2025-04-17T09:51:50Z", + "x": { "$date": { "$numberLong": "1744883510005" } }, + "y": { "$numberDouble": "952.59" } + }, + { + "label": "Label", + "id": "2025-04-18T11:59:35Z", + "x": { "$date": { "$numberLong": "1744977575290" } }, + "y": { "$numberDouble": "955.28" } + }, + { + "label": "Label", + "id": "2025-04-19T14:07:20Z", + "x": { "$date": { "$numberLong": "1745071640576" } }, + "y": { "$numberDouble": "957.97" } + }, + { + "label": "Label", + "id": "2025-04-20T16:15:05Z", + "x": { "$date": { "$numberLong": "1745165705862" } }, + "y": { "$numberDouble": "960.66" } + }, + { + "label": "Label", + "id": "2025-04-21T18:22:51Z", + "x": { "$date": { "$numberLong": "1745259771147" } }, + "y": { "$numberDouble": "963.35" } + }, + { + "label": "Label", + "id": "2025-04-22T20:30:36Z", + "x": { "$date": { "$numberLong": "1745353836433" } }, + "y": { "$numberDouble": "966.05" } + }, + { + "label": "Label", + "id": "2025-04-23T22:38:21Z", + "x": { "$date": { "$numberLong": "1745447901718" } }, + "y": { "$numberDouble": "968.74" } + }, + { + "label": "Label", + "id": "2025-04-25T00:46:07Z", + "x": { "$date": { "$numberLong": "1745541967004" } }, + "y": { "$numberDouble": "971.43" } + }, + { + "label": "Label", + "id": "2025-04-26T02:53:52Z", + "x": { "$date": { "$numberLong": "1745636032289" } }, + "y": { "$numberDouble": "974.12" } + }, + { + "label": "Label", + "id": "2025-04-27T05:01:37Z", + "x": { "$date": { "$numberLong": "1745730097575" } }, + "y": { "$numberDouble": "976.81" } + }, + { + "label": "Label", + "id": "2025-04-28T07:09:22Z", + "x": { "$date": { "$numberLong": "1745824162861" } }, + "y": { "$numberDouble": "979.5" } + } + ], + "_id": { "$oid": "66189c868bcc89e3792dd263" } + }, + "7d": { + "id": "7d", + "name": "Last 7D", + "color": "#2e7c67", + "data": [ + { + "label": "Label", + "id": "2024-04-05T06:46:47Z", + "x": { "$date": { "$numberLong": "1712299607975" } }, + "y": { "$numberInt": "0" } + }, + { + "label": "Label", + "id": "2024-04-06T10:50:33Z", + "x": { "$date": { "$numberLong": "1712400633789" } }, + "y": { "$numberDouble": "10.85" } + }, + { + "label": "Label", + "id": "2024-04-07T14:54:19Z", + "x": { "$date": { "$numberLong": "1712501659603" } }, + "y": { "$numberDouble": "21.7" } + }, + { + "label": "Label", + "id": "2024-04-08T18:58:05Z", + "x": { "$date": { "$numberLong": "1712602685418" } }, + "y": { "$numberDouble": "32.55" } + }, + { + "label": "Label", + "id": "2024-04-09T23:01:51Z", + "x": { "$date": { "$numberLong": "1712703711232" } }, + "y": { "$numberDouble": "43.4" } + }, + { + "label": "Label", + "id": "2024-04-11T03:05:37Z", + "x": { "$date": { "$numberLong": "1712804737046" } }, + "y": { "$numberDouble": "54.25" } + }, + { + "label": "Label", + "id": "2024-04-12T07:09:22Z", + "x": { "$date": { "$numberLong": "1712905762861" } }, + "y": { "$numberDouble": "65.1" } + } + ], + "_id": { "$oid": "66189c868bcc89e3792dd264" } + }, + "24hr": { + "id": "24hr", + "name": "Last 24HR", + "color": "#2e7c67", + "data": [ + { + "label": "Label", + "id": "2024-04-11T07:09:22Z", + "x": { "$date": { "$numberLong": "1712819362861" } }, + "y": { "$numberInt": "0" } + }, + { + "label": "Label", + "id": "2024-04-11T08:11:59Z", + "x": { "$date": { "$numberLong": "1712823119382" } }, + "y": { "$numberDouble": "1.36" } + }, + { + "label": "Label", + "id": "2024-04-11T09:14:35Z", + "x": { "$date": { "$numberLong": "1712826875904" } }, + "y": { "$numberDouble": "2.71" } + }, + { + "label": "Label", + "id": "2024-04-11T10:17:12Z", + "x": { "$date": { "$numberLong": "1712830632426" } }, + "y": { "$numberDouble": "4.07" } + }, + { + "label": "Label", + "id": "2024-04-11T11:19:48Z", + "x": { "$date": { "$numberLong": "1712834388947" } }, + "y": { "$numberDouble": "5.43" } + }, + { + "label": "Label", + "id": "2024-04-11T12:22:25Z", + "x": { "$date": { "$numberLong": "1712838145469" } }, + "y": { "$numberDouble": "6.78" } + }, + { + "label": "Label", + "id": "2024-04-11T13:25:01Z", + "x": { "$date": { "$numberLong": "1712841901991" } }, + "y": { "$numberDouble": "8.14" } + }, + { + "label": "Label", + "id": "2024-04-11T14:27:38Z", + "x": { "$date": { "$numberLong": "1712845658513" } }, + "y": { "$numberDouble": "9.5" } + }, + { + "label": "Label", + "id": "2024-04-11T15:30:15Z", + "x": { "$date": { "$numberLong": "1712849415034" } }, + "y": { "$numberDouble": "10.85" } + }, + { + "label": "Label", + "id": "2024-04-11T16:32:51Z", + "x": { "$date": { "$numberLong": "1712853171556" } }, + "y": { "$numberDouble": "12.21" } + }, + { + "label": "Label", + "id": "2024-04-11T17:35:28Z", + "x": { "$date": { "$numberLong": "1712856928078" } }, + "y": { "$numberDouble": "13.57" } + }, + { + "label": "Label", + "id": "2024-04-11T18:38:04Z", + "x": { "$date": { "$numberLong": "1712860684600" } }, + "y": { "$numberDouble": "14.92" } + }, + { + "label": "Label", + "id": "2024-04-11T19:40:41Z", + "x": { "$date": { "$numberLong": "1712864441121" } }, + "y": { "$numberDouble": "16.28" } + }, + { + "label": "Label", + "id": "2024-04-11T20:43:17Z", + "x": { "$date": { "$numberLong": "1712868197643" } }, + "y": { "$numberDouble": "17.63" } + }, + { + "label": "Label", + "id": "2024-04-11T21:45:54Z", + "x": { "$date": { "$numberLong": "1712871954165" } }, + "y": { "$numberDouble": "18.99" } + }, + { + "label": "Label", + "id": "2024-04-11T22:48:30Z", + "x": { "$date": { "$numberLong": "1712875710687" } }, + "y": { "$numberDouble": "20.35" } + }, + { + "label": "Label", + "id": "2024-04-11T23:51:07Z", + "x": { "$date": { "$numberLong": "1712879467208" } }, + "y": { "$numberDouble": "21.7" } + }, + { + "label": "Label", + "id": "2024-04-12T00:53:43Z", + "x": { "$date": { "$numberLong": "1712883223730" } }, + "y": { "$numberDouble": "23.06" } + }, + { + "label": "Label", + "id": "2024-04-12T01:56:20Z", + "x": { "$date": { "$numberLong": "1712886980252" } }, + "y": { "$numberDouble": "24.42" } + }, + { + "label": "Label", + "id": "2024-04-12T02:58:56Z", + "x": { "$date": { "$numberLong": "1712890736774" } }, + "y": { "$numberDouble": "25.77" } + }, + { + "label": "Label", + "id": "2024-04-12T04:01:33Z", + "x": { "$date": { "$numberLong": "1712894493295" } }, + "y": { "$numberDouble": "27.13" } + }, + { + "label": "Label", + "id": "2024-04-12T05:04:09Z", + "x": { "$date": { "$numberLong": "1712898249817" } }, + "y": { "$numberDouble": "28.49" } + }, + { + "label": "Label", + "id": "2024-04-12T06:06:46Z", + "x": { "$date": { "$numberLong": "1712902006339" } }, + "y": { "$numberDouble": "29.84" } + }, + { + "label": "Label", + "id": "2024-04-12T07:09:22Z", + "x": { "$date": { "$numberLong": "1712905762861" } }, + "y": { "$numberDouble": "31.2" } + } + ], + "_id": { "$oid": "66189c868bcc89e3792dd265" } + } + }, + "collectionStatistics": { + "lowPoint": { "$numberDouble": "55.58000000000001" }, + "percentageChange": { "$numberDouble": "0.125944584382872" }, + "priceChange": { "$numberDouble": "-0.14000000000000057" }, + "avgPrice": { "$numberDouble": "1.8550000000000004" }, + "_id": { "$oid": "66189c868bcc89e3792dd633" } + }, + "__v": { "$numberInt": "37" }, + "selectedChartDataKey": "24h", + "selectedColorDataKey": "blue", + "selectedStatDataKey": "highpoint", + "selectedChartData": { + "id": "30d", + "name": "Last 30D", + "color": "#2e7c67", + "data": [ + { "x": "2024-03-28T00:06:38.915Z", "y": { "$numberDouble": "0.1" } }, + { "x": "2024-03-28T00:06:38.915Z", "y": { "$numberDouble": "0.2" } }, + { "x": "2024-03-28T00:06:38.915Z", "y": { "$numberDouble": "0.3" } }, + { "x": "2024-03-28T00:06:38.915Z", "y": { "$numberDouble": "0.4" } }, + { "x": "2024-03-28T00:06:38.915Z", "y": { "$numberDouble": "0.5" } }, + { "x": "2024-03-28T00:06:38.915Z", "y": { "$numberDouble": "0.6" } }, + { "x": "2024-03-28T00:06:38.915Z", "y": { "$numberDouble": "0.7" } }, + { "x": "2024-03-28T00:06:38.915Z", "y": { "$numberDouble": "0.8" } }, + { "x": "2024-03-28T00:08:06.360Z", "y": { "$numberDouble": "1.25" } }, + { "x": "2024-03-28T00:08:25.806Z", "y": { "$numberDouble": "1.32" } }, + { "x": "2024-03-28T00:08:25.806Z", "y": { "$numberDouble": "1.39" } }, + { "x": "2024-03-28T00:08:25.806Z", "y": { "$numberDouble": "1.46" } }, + { "x": "2024-03-28T00:08:25.806Z", "y": { "$numberDouble": "1.53" } }, + { "x": "2024-03-28T00:56:47.011Z", "y": { "$numberDouble": "17.41" } }, + { "x": "2024-03-28T00:56:47.011Z", "y": { "$numberDouble": "33.29" } }, + { "x": "2024-03-28T00:56:47.011Z", "y": { "$numberDouble": "49.17" } }, + { "x": "2024-03-28T00:56:58.793Z", "y": { "$numberDouble": "49.34" } }, + { "x": "2024-03-28T00:57:12.729Z", "y": { "$numberDouble": "50.05" } }, + { "x": "2024-03-28T00:57:12.729Z", "y": { "$numberDouble": "50.76" } }, + { "x": "2024-03-28T07:55:23.074Z", "y": { "$numberDouble": "50.82" } }, + { "x": "2024-03-28T08:11:34.519Z", "y": { "$numberDouble": "51.15" } }, + { "x": "2024-03-28T08:11:34.519Z", "y": { "$numberDouble": "51.48" } }, + { "x": "2024-03-28T08:11:34.519Z", "y": { "$numberDouble": "51.81" } }, + { "x": "2024-04-02T06:13:54.890Z", "y": { "$numberDouble": "51.91" } }, + { "x": "2024-04-05T06:46:47.975Z", "y": { "$numberDouble": "52.1" } }, + { "x": "2024-04-05T06:46:47.975Z", "y": { "$numberDouble": "52.29" } }, + { "x": "2024-04-05T06:46:47.975Z", "y": { "$numberDouble": "52.48" } }, + { "x": "2024-04-09T21:47:33.163Z", "y": { "$numberDouble": "52.73" } }, + { "x": "2024-04-11T07:09:22.861Z", "y": { "$numberDouble": "54.19" } }, + { "x": "2024-04-11T07:09:22.861Z", "y": { "$numberDouble": "55.65" } } + ], + "points": { "$numberInt": "30" }, + "config": { + "defaultFirst": { "$numberInt": "0" }, + "defaultLast": { "$numberDouble": "129.9" }, + "defaultPrevious": { "$numberDouble": "65.1" }, + "threshold": { "$numberInt": "30" } + } + } +} diff --git a/src/data/allDecks_sample.json b/src/data/allDecks_sample.json new file mode 100644 index 0000000..0a093f7 --- /dev/null +++ b/src/data/allDecks_sample.json @@ -0,0 +1,45 @@ +{ + "_id": { "$oid": "65fbfc9eb890ca313db03ad2" }, + "userId": { "$oid": "65b8e155b4885b451a5071c8" }, + "totalPrice": { "$numberDouble": "21.550000000000004" }, + "totalQuantity": { "$numberInt": "48" }, + "quantity": { "$numberInt": "0" }, + "name": "NEW DECK", + "description": "NEW DESC", + "cards": [ + { "$oid": "65fe322596dcd90d357fb710" }, + { "$oid": "65fe6ffe96dcd90d358055b0" }, + { "$oid": "65fe8b5405743b464bdaccab" }, + { "$oid": "6604e6f6a258220bd7123f26" }, + { "$oid": "6604e70aa258220bd7123f49" }, + { "$oid": "6604e718a258220bd7123f6c" }, + { "$oid": "6604e72ca258220bd7123f8a" }, + { "$oid": "66087fe1a0a15310d0295d45" }, + { "$oid": "660cdbf58d1a00610db8c8cb" }, + { "$oid": "660cddcd8d1a00610db8c929" }, + { "$oid": "6615dab3921d1bbfba5ffc6c" }, + { "$oid": "6615dac0921d1bbfba5ffca3" }, + { "$oid": "6615e4df921d1bbfba6005e9" }, + { "$oid": "6615e8e98aa5e49f2e2f7750" }, + { "$oid": "6615e9128aa5e49f2e2f7785" }, + { "$oid": "6615f6e70641be03f8229967" }, + { "$oid": "66161f950ffce6b9575deaac" }, + { "$oid": "66163afc0ffce6b9575df584" }, + { "$oid": "66163c100ffce6b9575df5e3" }, + { "$oid": "66163cf00ffce6b9575df63d" }, + { "$oid": "66163d450ffce6b9575df664" }, + { "$oid": "66163d690ffce6b9575df682" }, + { "$oid": "66163dac0ffce6b9575df6ae" }, + { "$oid": "66164a010ffce6b9575dfbad" }, + { "$oid": "66164a690ffce6b9575dfbd5" }, + { "$oid": "66164b860ffce6b9575dfc0a" }, + { "$oid": "6616562c0ffce6b9575e010b" }, + { "$oid": "661656640ffce6b9575e0137" } + ], + "tags": [], + "color": "teal", + "createdAt": { "$date": { "$numberLong": "1711013022258" } }, + "updatedAt": { "$date": { "$numberLong": "1712739940759" } }, + "__v": { "$numberInt": "29" }, + "selectedTags": ["tags"] +} diff --git a/src/data/baseMenuItems.jsx b/src/data/baseMenuItems.jsx index 58a555b..725512a 100644 --- a/src/data/baseMenuItems.jsx +++ b/src/data/baseMenuItems.jsx @@ -46,14 +46,13 @@ export const baseMenuItems = ({ cartCardQuantity }) => [ color="primary" anchorOrigin={{ vertical: 'top', - horizontal: 'left', + horizontal: 'left', // Ensures badge is aligned to the left }} sx={{ '& .MuiBadge-badge': { - right: 3, - padding: '0.25rem', - marginLeft: 0.5, - marginTop: 0.25, + left: 0, // Positions badge on the left side + transform: 'scale(1) translate(-70%, -70%)', // Adjust position relative to the icon + marginLeft: '0', // Remove any default margin }, }} > @@ -63,10 +62,10 @@ export const baseMenuItems = ({ cartCardQuantity }) => [ to: '/cart', requiresLogin: true, }, - { - name: 'Profile', - icon: , - to: '/profile', - requiresLogin: false, - }, + // { + // name: 'Profile', + // icon: , + // to: '/profile', + // requiresLogin: false, + // }, ]; diff --git a/src/data/cardInCollection_sample.json b/src/data/cardInCollection_sample.json new file mode 100644 index 0000000..2e1a7e9 --- /dev/null +++ b/src/data/cardInCollection_sample.json @@ -0,0 +1,52 @@ +{ + "_id": { "$oid": "65fbeb54ccb316e420e6f44d" }, + "name": "Abyss-strom", + "id": "97697447", + "type": "Trap Card", + "desc": "Send 1 face-up \"Umi\" you control to the Graveyard; send all Spell and Trap Cards on the field to the Graveyard.", + "race": "Normal", + "archetype": [], + "card_sets": [{ "$oid": "65fbeb54ccb316e420e6f44e" }], + "card_images": [ + { + "image_url": "https://images.ygoprodeck.com/images/cards/97697447.jpg", + "image_url_small": "https://images.ygoprodeck.com/images/cards_small/97697447.jpg" + } + ], + "card_prices": [ + { + "cardmarket_price": { "$numberDecimal": "0.30" }, + "tcgplayer_price": { "$numberDecimal": "0.22" }, + "ebay_price": { "$numberDecimal": "0.99" }, + "amazon_price": { "$numberDecimal": "0.20" } + } + ], + "price": { "$numberDouble": "0.22" }, + "quantity": { "$numberInt": "1" }, + "image": "https://images.ygoprodeck.com/images/cards/97697447.jpg", + "totalPrice": { "$numberDouble": "0.22" }, + "tag": "default", + "watchList": false, + "latestPrice": { + "num": { "$numberDouble": "0.22" }, + "timestamp": { "$date": { "$numberLong": "1711008597390" } } + }, + "lastSavedPrice": { + "num": { "$numberDouble": "0.22" }, + "timestamp": { "$date": { "$numberLong": "1711008597390" } } + }, + "priceHistory": [ + { + "num": { "$numberDouble": "0.22" }, + "timestamp": { "$date": { "$numberLong": "1711008597391" } } + } + ], + "dailyPriceHistory": [], + "chart_datasets": [{}], + "nivoChartData": { "data": [] }, + "cardVariants": [{ "$oid": "65fbeb54ccb316e420e6f44e" }], + "variant": { "$oid": "65fbeb54ccb316e420e6f44e" }, + "addedAt": { "$date": { "$numberLong": "1711008597389" } }, + "updatedAt": { "$date": { "$numberLong": "1711008597389" } }, + "__v": { "$numberInt": "0" } +} diff --git a/src/data/cart_sample.json b/src/data/cart_sample.json new file mode 100644 index 0000000..67a821d --- /dev/null +++ b/src/data/cart_sample.json @@ -0,0 +1,31 @@ +{ + "_id": { "$oid": "65d1f50b62d6e0ac413a084f" }, + "userId": { "$oid": "65b8e155b4885b451a5071c8" }, + "totalPrice": { "$numberDouble": "4.0600000000000005" }, + "totalQuantity": { "$numberInt": "9" }, + "quantity": { "$numberInt": "0" }, + "cart": [ + { "$oid": "65f42fa6c6dff9f323ab9dbb" }, + { "$oid": "65fbfab4b890ca313db03a84" }, + { "$oid": "66039288678d1dd12689dc02" }, + { "$oid": "66039729678d1dd1268a10d8" }, + { "$oid": "6604c033a258220bd710d0a2" } + ], + "createdAt": { "$date": { "$numberLong": "1708258571618" } }, + "updatedAt": { "$date": { "$numberLong": "1712817578778" } }, + "__v": { "$numberInt": "14" }, + "color": "teal", + "tags": [], + "items": [ + { "$oid": "6608931951fc561ac7f91622" }, + { "$oid": "660894fc51fc561ac7f9167b" }, + { "$oid": "660895e551fc561ac7f91788" }, + { "$oid": "660898ef51fc561ac7f91c28" }, + { "$oid": "6615b92440f164e1a46255f9" }, + { "$oid": "6615b99340f164e1a4625610" }, + { "$oid": "661783f1ee980cad85fe68bf" }, + { "$oid": "66178426ee980cad85fe68e0" }, + { "$oid": "661785aaee980cad85fe68f7" } + ], + "selectedTags": ["tags"] +} diff --git a/src/data/user_sample.json b/src/data/user_sample.json new file mode 100644 index 0000000..318b96f --- /dev/null +++ b/src/data/user_sample.json @@ -0,0 +1,23 @@ +{ + "_id": { "$oid": "65b8e155b4885b451a5071c8" }, + "username": "Hinata_Hyuuga", + "userBasicData": { "$oid": "65b8e155b4885b451a5071c7" }, + "userSecurityData": { "$oid": "65b8e155b4885b451a5071c5" }, + "createdAt": { "$date": { "$numberLong": "1706615125820" } }, + "updatedAt": { "$date": { "$numberLong": "1712836344441" } }, + "__v": { "$numberInt": "87" }, + "cart": { "$oid": "65d1f50b62d6e0ac413a084f" }, + "allCollections": [ + { "$oid": "6604b48da258220bd70e57cc" }, + { "$oid": "6617436ef72352e45dab4f45" }, + { "$oid": "66179bf9ee980cad85fe724b" } + ], + "allDecks": [ + { "$oid": "65fe311143d3b9d2b1c7ed79" }, + { "$oid": "6604d76ca258220bd711e2e0" }, + { "$oid": "661682d2431c231805ec97f3" }, + { "$oid": "6616999c64c1aaaeaa90cb93" }, + { "$oid": "66169e9a5c29cfc29418de50" } + ], + "loginStatus": false +} diff --git a/src/data/variant_sample.json b/src/data/variant_sample.json new file mode 100644 index 0000000..04e6d59 --- /dev/null +++ b/src/data/variant_sample.json @@ -0,0 +1,14 @@ +{ + "_id": { "$oid": "65fbf1898277847cffb30ce0" }, + "set_name": "Metal Raiders", + "set_code": "MRD-EN082", + "price": { "$numberDecimal": "3.4" }, + "selected": false, + "alt_art_image_url": "", + "set": { "$oid": "65fbf1898277847cffb30ce0" }, + "cardModel": "CardInCollection", + "cardId": { "$oid": "65fbf1898277847cffb30cdd" }, + "createdAt": { "$date": { "$numberLong": "1711010185203" } }, + "updatedAt": { "$date": { "$numberLong": "1711010185203" } }, + "__v": { "$numberInt": "0" } +} diff --git a/src/index.js b/src/index.js index 8ea348f..20c9f14 100644 --- a/src/index.js +++ b/src/index.js @@ -8,11 +8,12 @@ import * as serviceWorker from './serviceWorker'; // ==============================|| REACT DOM RENDER ||============================== // -import { AuthProvider, ColorModeProvider, ErrorBoundary } from './context'; +import { AuthProvider, ColorModeProvider } from './context'; import { loadStripe } from '@stripe/stripe-js'; import { Elements } from '@stripe/react-stripe-js'; import { Helmet } from 'react-helmet'; import { SnackbarProvider } from 'notistack'; +import { ErrorBoundary } from 'react-error-boundary'; const domNode = document.getElementById('root'); @@ -38,7 +39,19 @@ const AppWrapper = () => { ); return ( - + { + console.error(error); + resetErrorBoundary(); + return null; + }} + onError={(error) => { + console.error(error); + }} + onReset={(details) => { + console.log(details); + }} + > diff --git a/src/layout/REUSABLE_COMPONENTS/BoxHeader.jsx b/src/layout/REUSABLE_COMPONENTS/BoxHeader.jsx index 325a96d..792ab6a 100644 --- a/src/layout/REUSABLE_COMPONENTS/BoxHeader.jsx +++ b/src/layout/REUSABLE_COMPONENTS/BoxHeader.jsx @@ -25,12 +25,18 @@ const BoxHeader = ({ > {icon} - + {subtitle !== 'none' && ( - + {subtitle} )} diff --git a/src/layout/REUSABLE_COMPONENTS/PageLayout.jsx b/src/layout/REUSABLE_COMPONENTS/PageLayout.jsx index 0204889..fd80c50 100644 --- a/src/layout/REUSABLE_COMPONENTS/PageLayout.jsx +++ b/src/layout/REUSABLE_COMPONENTS/PageLayout.jsx @@ -9,7 +9,7 @@ function PageLayout({ background, backCol, children }) { const { theme } = useMode(); return ( diff --git a/src/layout/REUSABLE_COMPONENTS/system-utils/FallbackContainer.jsx b/src/layout/REUSABLE_COMPONENTS/system-utils/FallbackContainer.jsx new file mode 100644 index 0000000..5bded9e --- /dev/null +++ b/src/layout/REUSABLE_COMPONENTS/system-utils/FallbackContainer.jsx @@ -0,0 +1,46 @@ +import React from 'react'; +import { styled } from '@mui/system'; + +// Create a styled section for the fallback +const StyledFallback = styled('section')(({ theme }) => ({ + display: 'block', + border: '1px solid red', + padding: '1rem', + color: 'red', + borderRadius: '5px', + backgroundColor: 'white', +})); + +// Create a styled header within the fallback +const FallbackHeader = styled('header')({ + padding: '0', + margin: '0 0 1rem 0', // Added bottom margin for spacing +}); + +// Create a styled title within the fallback header +const FallbackTitle = styled('h3')({ + fontSize: '1.25rem', // Specify a font size for the title +}); + +// Create a styled div for the body of the fallback +const FallbackBody = styled('div')({ + fontSize: '1rem', // Adjust the font size for the body content +}); + +const FallbackContainer = ({ componentStack, error }) => ( + + + Oops! An error occured! + + +

+ Error: {error.toString()} +

+

+ Stacktrace: {componentStack} +

+
+
+); + +export default FallbackContainer; diff --git a/src/layout/collection/ChartConfigs.jsx b/src/layout/collection/ChartConfigs.jsx index ee403d2..2c9485a 100644 --- a/src/layout/collection/ChartConfigs.jsx +++ b/src/layout/collection/ChartConfigs.jsx @@ -41,7 +41,10 @@ export const ChartConfiguration = () => { const memoChartData = useMemo(() => { const { selectedChartData, averagedChartData, selectedChartDataKey } = selectedCollection; - return averagedChartData[selectedChartDataKey]; + // if selectedChartData is an empty object, return the averagedChartData, else return selectedChartData + return !selectedChartData.data.length + ? averagedChartData[selectedChartDataKey] + : selectedChartData; }, [selectedCollection]); const validMarkers = useMemo(() => { diff --git a/src/layout/collection/ChartGridLayout.jsx b/src/layout/collection/ChartGridLayout.jsx index 60bbcc1..5442a88 100644 --- a/src/layout/collection/ChartGridLayout.jsx +++ b/src/layout/collection/ChartGridLayout.jsx @@ -64,6 +64,7 @@ const ChartGridLayout = () => { { const [checked, setChecked] = useState(false); @@ -60,12 +63,19 @@ const DeckListItem = ({ handleSelectAndShowDeck, isEditPanelOpen, handleDelete, + handleDeckLoaded, }) => { const { genData, infoItems } = prepareDeckData(deck); const { theme } = useMode(); const { isMobile } = useBreakpoint(); const isSelected = selectedDeckId === deck._id; + // useEffect(() => { + // if (isEditPanelOpen) { + // handleDeckLoaded(deck?._id); + // } + // }, [isEditPanelOpen]); + return ( diff --git a/src/layout/deck/index.jsx b/src/layout/deck/index.jsx index 21bd12a..de10400 100644 --- a/src/layout/deck/index.jsx +++ b/src/layout/deck/index.jsx @@ -1,5 +1,12 @@ -import React, { useCallback, useEffect, useState } from 'react'; -import { Card, Collapse, Grid, Tab, Tabs } from '@mui/material'; +import React, { useCallback, useEffect, useRef, useState } from 'react'; +import { + Card, + Collapse, + Grid, + Tab, + Tabs, + CircularProgress, +} from '@mui/material'; import { useMode } from '../../context'; import MDBox from '../REUSABLE_COMPONENTS/MDBOX'; import DashboardLayout from '../REUSABLE_COMPONENTS/DashBoardLayout'; @@ -14,10 +21,12 @@ import useUserData from '../../context/MAIN_CONTEXT/UserContext/useUserData'; import { useFormManagement } from '../../components/forms/hooks/useFormManagement'; import useDeckManager from '../../context/MAIN_CONTEXT/DeckContext/useDeckManager'; import prepareDeckData from './deckData'; +import { useLoading } from '../../context/hooks/useLoading'; const DeckBuilder = () => { const { theme } = useMode(); const { hasFetchedDecks, fetchDecks, deleteDeck } = useDeckManager(); + const { user } = useUserData(); const { selectedDeckId, selectedDeck, @@ -25,9 +34,11 @@ const DeckBuilder = () => { allDecks, deckUpdated, decks, + loading, handleSelectDeck, refreshDecks, } = useSelectedDeck(); + const { isLoading } = useLoading(); // const { allDecks } = prepareDeckData(selectedDeckId); const { setActiveFormSchema } = useFormManagement(); const { dialogState, openDialog, closeDialog } = useDialogState(); @@ -36,43 +47,76 @@ const DeckBuilder = () => { openDialog('isAddDeckDialogOpen'); }, [openDialog, setActiveFormSchema]); const [activeTab, setActiveTab] = useState(0); + const [allDecksLoading, setAllDecksLoading] = useState(false); + const [loadingState, setLoadingState] = useState({}); const [safeDeckList, setSafeDeckList] = useState([]); + const prevSelectedDeckId = useRef(null); // Store the previous deck ID + const handleDeckLoaded = useCallback((deckId) => { + setLoadingState((prev) => ({ ...prev, [deckId]: false })); + }, []); useEffect(() => { if (!hasFetchedDecks) { fetchDecks(); + setActiveTab(0); } - }, [hasFetchedDecks]); + }, []); useEffect(() => { const handleStorageChange = () => { const newData = JSON.parse(localStorage.getItem('decks') || '{}'); - if (newData !== decks && newData.lastUpdated !== decks.lastUpdated) { const newAllDecks = Object.values(newData.byId); - // if (newAllDecks !== allDecks) { setSafeDeckList(newAllDecks); - // } refreshDecks(); } }; - window.addEventListener('storage', handleStorageChange); return () => window.removeEventListener('storage', handleStorageChange); }, []); useEffect(() => { setActiveTab((prevActiveTab) => { - // Ensure that the activeTab value does not exceed the length of the safeDeckList array const newIndex = Math.min(prevActiveTab, safeDeckList.length - 1); return newIndex >= 0 ? newIndex : 0; // Ensure that the index is always non-negative }); }, [safeDeckList.length]); // Update activeTab when the length of safeDeckList changes - + useEffect(() => { + if (prevSelectedDeckId.current !== selectedDeckId) { + prevSelectedDeckId.current = selectedDeckId; + } + }, [selectedDeckId]); + // useEffect(() => { + // if (isLoading('fetchDecks')) { + // setAllDecksLoading(true); + // } + // if (!isLoading('fetchDecks')) { + // setAllDecksLoading(false); + // } + // }, [isLoading('fetchDecks')]); const handleChangeTab = useCallback( (event, newValue) => { setActiveTab(newValue); - handleSelectDeck(safeDeckList[newValue]); + const newDeck = safeDeckList[newValue]; + handleSelectDeck(newDeck); + + if (!loadingState[newDeck._id]) { + setLoadingState((prev) => ({ ...prev, [newDeck._id]: true })); // Set loading for the new tab + } }, - [safeDeckList, handleSelectDeck] + [safeDeckList, handleSelectDeck, loadingState] ); + + // const handleChangeTab = useCallback( + // (event, newValue) => { + // setActiveTab(newValue); + // handleSelectDeck(safeDeckList[newValue]); + // // setLoadingState((prev) => ({ + // // ...prev, + // // [safeDeckList[newValue]._id]: true, + // // })); + // // setLoadingState((prev) => ({ ...prev, [newValue]: true })); // Set loading to true for the new tab + // }, + // [safeDeckList, handleSelectDeck] + // ); + const handleDelete = useCallback( async (deck) => { if (!deck) return; @@ -87,8 +131,15 @@ const DeckBuilder = () => { }, [deleteDeck] ); - - const { user } = useUserData(); + const deckTabs = safeDeckList?.map((deck, index) => ( + : deck.name + } + value={index} + key={deck._id || `deck-tab-${index}`} + /> + )); const deckList = safeDeckList?.map((deck, index) => ( { isEditPanelOpen={selectedDeckId === deck._id} activeItem={activeTab === index} handleSelectAndShowDeck={() => handleSelectDeck(deck)} + handleDeckLoaded={() => handleDeckLoaded(deck?._id)} + loadingState={loadingState[deck?._id]} /> )); + // useEffect(() => { + // // Simulate deck loading process + // if (selectedDeckId && loadingState[selectedDeckId]) { + // setLoadingState((prev) => ({ + // ...prev, + // [selectedDeckId]: true, + // })); + // setTimeout(() => handleDeckLoaded(selectedDeckId), 2000); // Simulate fetching time + // } + // }, [selectedDeckId, loadingState, handleDeckLoaded]); + + // useEffect(() => { + // if (selectedDeckId) { + // setLoadingState((prev) => ({ ...prev, [selectedDeckId]: true })); + // // setLoadingState((prev) => ({ ...prev, [newValue]: true })); // Set loading to true for the new tab + // console.log(`LOADING DECK ${selectedDeckId}`); + // // setLoadingState((prev) => ({ ...prev, [selectedDeckId]: true })); + // } + + // // if (prevSelectedDeckId.current !== selectedDeckId) { + // // setLoadingState((prev) => ({ ...prev, [selectedDeckId]: true })); + // // // setLoadingState((prev) => ({ ...prev, [newValue]: true })); // Set loading to true for the new tab + // // console.log(`LOADING DECK ${selectedDeckId}`); + // // // setLoadingState((prev) => ({ ...prev, [selectedDeckId]: true })); + // // } + // }, [selectedDeckId]); return ( @@ -140,15 +219,31 @@ const DeckBuilder = () => { aria-label="deck-tabs" variant="scrollable" scrollButtons="auto" + > + {deckTabs} + + {/* {safeDeckList?.map((deck, index) => ( + ) : ( + deck.name + ) + } value={index} key={deck._id || `deck-tab-${index}`} /> ))} - + */}
diff --git a/src/layout/home/HeroChartSection.jsx b/src/layout/home/HeroChartSection.jsx index e737c02..29fe2a9 100644 --- a/src/layout/home/HeroChartSection.jsx +++ b/src/layout/home/HeroChartSection.jsx @@ -16,11 +16,34 @@ import DashboardBox from '../REUSABLE_COMPONENTS/DashboardBox'; import BoxHeader from '../REUSABLE_COMPONENTS/BoxHeader'; import { useMode } from '../../context'; import { useMemo } from 'react'; -const HeroChartSection = ({ randomCards, activeCardIndex, shouldShow }) => { +import { + FaDragon, + FaLevelUpAlt, + FaRegLightbulb, + FaShieldAlt, + FaVenusMars, +} from 'react-icons/fa'; +import RCWrappedIcon from '../REUSABLE_COMPONENTS/RCWRAPPEDICON/RCWrappedIcon'; +const HeroChartSection = ({ + card, + randomCards, + activeCardIndex, + shouldShow, +}) => { const { theme } = useMode(); const chartData = useMemo(() => { return randomCards[activeCardIndex]?.averagedChartData?.['30d']?.data || []; }, [randomCards, activeCardIndex]); + const yDomain = useMemo(() => { + if (!chartData.length) return [0, 0]; // Default domain if no data + const values = chartData.map((item) => item.y); + const minY = Math.min(...values); + const maxY = Math.max(...values); + return [minY, maxY]; + }, [chartData]); + const cardData = useMemo(() => { + return randomCards[activeCardIndex]; + }, [randomCards, activeCardIndex]); return ( { { padding: theme.spacing(2), // Adjust padding for even spacing }} > - - - + + + - - - {' '} + + + + + + {' '} + + + } + // useSX={true} + // paddingVariant={'1rem'} + // sx={{ + // root: { + // padding: theme.spacing(1), + // marginBottom: theme.spacing(2), + // }, + // title: { + // fontWeight: 'bold', + // fontSize: '1.5rem', + // color: theme.palette.text.primary, + // }, + // subtitle: { + // color: theme.palette.text.secondary, + // fontSize: '1rem', + // }, + // sideText: { + // color: theme.palette.primary.main, + // fontWeight: 'bold', + // fontSize: '1rem', + // }, + // }} + /> + { top: 20, right: 0, left: -10, - bottom: 55, + bottom: 10, }} > { tickLine={false} axisLine={false} style={{ fontSize: '10px' }} + domain={yDomain} /> { margin: '0 0 10px 0', }} /> - + diff --git a/src/layout/home/HeroSection.jsx b/src/layout/home/HeroSection.jsx index 7b14589..cdefe28 100644 --- a/src/layout/home/HeroSection.jsx +++ b/src/layout/home/HeroSection.jsx @@ -25,6 +25,7 @@ const HeroSection = () => { image: placeHolder, })); const cards = [...randomCards, ...defaultCards]; + const [cardAtActive, setCardActive] = useState(cards[activeCardIndex]); useEffect(() => setShouldShow(true), []); useEffect(() => fetchRandomCardsAndSet(), []); const handleSlideChange = (swiper) => setActiveCardIndex(swiper.realIndex); @@ -37,25 +38,41 @@ const HeroSection = () => {
{ justifyContent: isMd ? null : 'space-around', alignItems: 'center', backgroundColor: 'transparent', - flexGrow: 1, + // flexGrow: 1, height: isMd ? '100%' : '100%', overflow: 'hidden', // Hide overflow to maintain the card's dimensions }} @@ -78,6 +95,7 @@ const HeroSection = () => { shouldShow={shouldShow} randomCards={randomCards} activeCardIndex={activeCardIndex} + card={cardAtActive} /> )} diff --git a/src/layout/navigation/Navigation.jsx b/src/layout/navigation/Navigation.jsx index f732230..9907270 100644 --- a/src/layout/navigation/Navigation.jsx +++ b/src/layout/navigation/Navigation.jsx @@ -31,7 +31,12 @@ import { baseMenuItems } from '../../data/baseMenuItems'; import rgba from '../../assets/themes/functions/rgba'; import useManageCookies from '../../context/hooks/useManageCookies'; import { useCartManager } from '../../context/MAIN_CONTEXT/CartContext/useCartManager'; -const Navigation = ({ isLoggedIn }) => { +import MDBox from '../REUSABLE_COMPONENTS/MDBOX'; +import DeleteIcon from '@mui/icons-material/Delete'; +import ReusableLoadingButton from '../REUSABLE_COMPONENTS/ReusableLoadingButton'; +import { Logout } from '@mui/icons-material'; +import useAuthManager from '../../context/MAIN_CONTEXT/AuthContext/useAuthManager'; +const Navigation = () => { const { theme } = useMode(); const navigate = useNavigate(); const { cartCardQuantity } = useCartManager(); @@ -41,16 +46,23 @@ const Navigation = ({ isLoggedIn }) => { const [isOpen, setIsOpen] = useState(false); // Manage open state locally const isMedView = useMediaQuery(theme.breakpoints.down('md')); const { getCookie } = useManageCookies(); - const { authUser } = getCookie(['authUser']); + const { authUser, isLoggedIn } = getCookie(['authUser', 'isLoggedIn']); const username = authUser?.username; + const { logout } = useAuthManager(); const menuItems = baseMenuItems({ cartCardQuantity: cartCardQuantity }); const toggleSidebar = useCallback(() => setIsOpen(!isOpen), [isOpen]); + const [logoutClicked, setLogoutClicked] = useState(false); const [springs] = useSprings(menuItems.length, (index) => ({ from: { opacity: 0, transform: 'translateY(-20px)' }, to: { opacity: 1, transform: 'translateY(0)' }, delay: index * 100, })); - + const handleLogout = useCallback(async () => { + setLogoutClicked(true); + await logout(); + navigate('/login'); + setLogoutClicked(false); + }, [logout, navigate]); const ContentContainer = ({ type, content, clickAction, itemIndex }) => { const handleClick = () => { if (clickAction === 'navigate' && itemIndex !== undefined) { @@ -162,13 +174,14 @@ const Navigation = ({ isLoggedIn }) => { navigate('/profile')} > { > - - - {username} - + {isLoggedIn && ( + <> + navigate('/profile')} + > + navigate('/profile')} + /> + {username} + + + {} + + } + // color={button.color} + variant="warning" + fullWidth + sx={{ + // my: theme.spacing(1), + // py: theme.spacing(1), + mt: '0 !important', + background: theme.palette.error.main, + }} + /> + + )} {renderMenuItems('side')} diff --git a/src/pages/DeckBuilderPage.js b/src/pages/DeckBuilderPage.js index 713133c..27199f0 100644 --- a/src/pages/DeckBuilderPage.js +++ b/src/pages/DeckBuilderPage.js @@ -17,11 +17,11 @@ const DeckBuilderPage = () => { // useEffect(() => { // fetchDecks(); // }, []); - useEffect(() => { - if (!hasFetchedDecks) { - fetchDecks(); - } - }, []); + // useEffect(() => { + // if (!hasFetchedDecks) { + // fetchDecks(); + // } + // }, []); return (