From 40c90d5efff92606b582a8487e30971e81d0f497 Mon Sep 17 00:00:00 2001 From: Dectrick McGee Date: Wed, 29 Jan 2025 07:44:28 +0000 Subject: [PATCH] Add initial implementation of Gemini AI integration and trading chart templates removed backtesting for now for refacting purposes --- Polygon.io_docs.md | 2863 ++++++++++ chart.py => __init__.py | 0 __pycache__/alpaca_broker.cpython-312.pyc | Bin 12027 -> 12027 bytes __pycache__/auth.cpython-312.pyc | Bin 7519 -> 7519 bytes __pycache__/broker_factory.cpython-312.pyc | Bin 6359 -> 6002 bytes __pycache__/main.cpython-312.pyc | Bin 0 -> 40695 bytes __pycache__/models.cpython-312.pyc | Bin 16959 -> 12736 bytes __pycache__/oanda_broker.cpython-312.pyc | Bin 7299 -> 7299 bytes __pycache__/tools.cpython-312.pyc | Bin 2311 -> 3137 bytes __pycache__/trading.cpython-312.pyc | Bin 8886 -> 4201 bytes __pycache__/user_config.cpython-312.pyc | Bin 5015 -> 5015 bytes __pycache__/utils.cpython-312.pyc | Bin 0 -> 2118 bytes __pycache__/words.cpython-312.pyc | Bin 24278 -> 23808 bytes .../__pycache__/charts_bp.cpython-312.pyc | Bin 0 -> 23730 bytes broker_factory.py | 31 +- data_server.py | 255 + indicators.py | 234 - indicators_directory/USD_JPY_ADX.csv | 5001 ----------------- indicators_directory/USD_JPY_ATR.csv | 5001 ----------------- .../USD_JPY_BollingerBands_middle.csv | 5001 ----------------- .../USD_JPY_BollingerBands_std.csv | 5001 ----------------- indicators_directory/USD_JPY_H1.csv | 5001 ----------------- indicators_directory/USD_JPY_Histogram.csv | 5001 ----------------- indicators_directory/USD_JPY_MACD.csv | 5001 ----------------- indicators_directory/USD_JPY_OBV.csv | 5001 ----------------- indicators_directory/USD_JPY_RSI.csv | 5001 ----------------- indicators_directory/USD_JPY_Signal_Line.csv | 5001 ----------------- instance/tradingpal.db | Bin 106496 -> 196608 bytes main.log | 0 main.py | 597 +- models.py | 42 +- polygon_feed.log | 90 + prompts/big_script_edits.md | 27 + static/js/account.js | 365 +- static/js/backtest.js | 469 -- static/js/charts_view.js | 556 ++ static/js/chat.js | 110 +- static/js/navigation.js | 72 +- static/js/user_config.js | 84 +- templates/backtest.html | 454 -- .../charts_components/charts_container.html | 134 + .../charts_components/charts_footer.html | 0 .../charts_components/charts_header.html | 0 templates/charts_components/charts_main.html | 0 templates/charts_components/charts_view.html | 36 + templates/main.html | 39 +- tools.py | 26 +- trading.md | 137 - trading.py | 85 +- utils.py | 46 + words.py | 8 - 51 files changed, 4566 insertions(+), 52204 deletions(-) create mode 100644 Polygon.io_docs.md rename chart.py => __init__.py (100%) create mode 100644 __pycache__/main.cpython-312.pyc create mode 100644 __pycache__/utils.cpython-312.pyc create mode 100644 blueprints/__pycache__/charts_bp.cpython-312.pyc create mode 100644 data_server.py delete mode 100644 indicators.py delete mode 100644 indicators_directory/USD_JPY_ADX.csv delete mode 100644 indicators_directory/USD_JPY_ATR.csv delete mode 100644 indicators_directory/USD_JPY_BollingerBands_middle.csv delete mode 100644 indicators_directory/USD_JPY_BollingerBands_std.csv delete mode 100644 indicators_directory/USD_JPY_H1.csv delete mode 100644 indicators_directory/USD_JPY_Histogram.csv delete mode 100644 indicators_directory/USD_JPY_MACD.csv delete mode 100644 indicators_directory/USD_JPY_OBV.csv delete mode 100644 indicators_directory/USD_JPY_RSI.csv delete mode 100644 indicators_directory/USD_JPY_Signal_Line.csv create mode 100644 main.log create mode 100644 polygon_feed.log create mode 100644 prompts/big_script_edits.md delete mode 100644 static/js/backtest.js create mode 100644 static/js/charts_view.js delete mode 100644 templates/backtest.html create mode 100644 templates/charts_components/charts_container.html create mode 100644 templates/charts_components/charts_footer.html create mode 100644 templates/charts_components/charts_header.html create mode 100644 templates/charts_components/charts_main.html create mode 100644 templates/charts_components/charts_view.html delete mode 100644 trading.md create mode 100644 utils.py diff --git a/Polygon.io_docs.md b/Polygon.io_docs.md new file mode 100644 index 0000000..aacdc96 --- /dev/null +++ b/Polygon.io_docs.md @@ -0,0 +1,2863 @@ +Forex API Documentation +The Polygon.io Forex API provides REST endpoints that let you query the latest market data for global currency pairs including forex trades and quotes, currency conversion rates, custom aggregate bars, and more. + +Documentation +Authentication +Pass your API key in the query string like followsthis is my api key so it should be set in the config +https://api.polygon.io/v2/aggs/ticker/C:EURUSD/range/1/day/2023-01-09/2023-01-09?apiKey=a8waWkOhp6Bz4nZA64jDVqgZN6zm_bh6 + +Copy +Alternatively, you can add an Authorization header to the request with your API Key as the token in the following form: + +Authorization: Bearer a8waWkOhp6Bz4nZA64jDVqgZN6zm_bh6 + +Copy +Usage +Many of Polygon.io's REST endpoints allow you to extend query parameters with inequalities like date.lt=2023-01-01 (less than) and date.gte=2023-01-01 (greater than or equal to) to search ranges of values. You can also use the field name without any extension to query for exact equality. Fields that support extensions will have an "Additional filter parameters" dropdown beneath them in the docs that detail the supported extensions for that parameter. + +Response Types +By default, all endpoints return a JSON response. Users with currencies Starter plan and above can request a CSV response by including 'Accept': 'text/csv' as a request parameter. + +Your Plan +Currencies Starter +Unlimited API Calls +Real-time Data +10+ Years Historical Data +Manage Subscription +Client Libraries +Python Logo +Python +client-python +Go Logo +Go +client-go +Javascript Logo +Javascript +client-js +PHP Logo +PHP +client-php +Kotlin Logo +Kotlin +client-jvm +Aggregates (Bars) +get +/v2/aggs/ticker/{forexTicker}/range/{multiplier}/{timespan}/{from}/{to} +Get aggregate bars for a forex pair over a given date range in custom time window sizes. + +For example, if timespan = ‘minute’ and multiplier = ‘5’ then 5-minute bars will be returned. + +Parameters +forexTicker +* +C:EURUSD +The ticker symbol of the currency pair. + +multiplier +* +1 +The size of the timespan multiplier. + +timespan +* + +day +The size of the time window. + +from +* +2023-01-09 +The start of the aggregate time window. Either a date with the format YYYY-MM-DD or a millisecond timestamp. + +to +* +2023-02-10 +The end of the aggregate time window. Either a date with the format YYYY-MM-DD or a millisecond timestamp. + +adjusted + +true +Whether or not the results are adjusted for splits. By default, results are adjusted. Set this to false to get results that are NOT adjusted for splits. + +sort + +asc +Sort the results by timestamp. asc will return results in ascending order (oldest at the top), desc will return results in descending order (newest at the top). + +limit +Limits the number of base aggregates queried to create the aggregate results. Max 50000 and Default 5000. Read more about how limit is used to calculate aggregate results in our article on Aggregate Data API Improvements. + +https://api.polygon.io/v2/aggs/ticker/C:EURUSD/range/1/day/2023-01-09/2023-02-10?adjusted=true&sort=asc&apiKey=a8waWkOhp6Bz4nZA64jDVqgZN6zm_bh6 + +Copy + +JSON + +Run Query +Response Attributes +ticker*string +The exchange symbol that this item is traded under. + +adjusted*boolean +Whether or not this response was adjusted for splits. + +queryCount*integer +The number of aggregates (minute or day) used to generate the response. + +request_id*string +A request id assigned by the server. + +resultsCount*integer +The total number of results for this request. + +status*string +The status of this request's response. + +resultsarray +c*number +The close price for the symbol in the given time period. + +h*number +The highest price for the symbol in the given time period. + +l*number +The lowest price for the symbol in the given time period. + +ninteger +The number of transactions in the aggregate window. + +o*number +The open price for the symbol in the given time period. + +t*integer +The Unix Msec timestamp for the start of the aggregate window. + +v*number +The trading volume of the symbol in the given time period. + +vwnumber +The volume weighted average price. + +Was this helpful? +Help us improve + +Yes + +No +Response Object +{ + "adjusted": true, + "queryCount": 1, + "request_id": "79c061995d8b627b736170bc9653f15d", + "results": [ + { + "c": 1.17721, + "h": 1.18305, + "l": 1.1756, + "n": 125329, + "o": 1.17921, + "t": 1626912000000, + "v": 125329, + "vw": 1.1789 + } + ], + "resultsCount": 1, + "status": "OK", + "ticker": "C:EURUSD" +} +Grouped Daily (Bars) +get +/v2/aggs/grouped/locale/global/market/fx/{date} +Get the daily open, high, low, and close (OHLC) for the entire forex markets. + +Parameters +date +* +2023-01-09 +The beginning date for the aggregate window. + +adjusted + +true +Whether or not the results are adjusted for splits. By default, results are adjusted. Set this to false to get results that are NOT adjusted for splits. + +https://api.polygon.io/v2/aggs/grouped/locale/global/market/fx/2023-01-09?adjusted=true&apiKey=a8waWkOhp6Bz4nZA64jDVqgZN6zm_bh6 + +Copy + +JSON + +Run Query +Response Attributes +adjusted*boolean +Whether or not this response was adjusted for splits. + +queryCount*integer +The number of aggregates (minute or day) used to generate the response. + +request_id*string +A request id assigned by the server. + +resultsCount*integer +The total number of results for this request. + +status*string +The status of this request's response. + +resultsarray +T*string +The exchange symbol that this item is traded under. + +c*number +The close price for the symbol in the given time period. + +h*number +The highest price for the symbol in the given time period. + +l*number +The lowest price for the symbol in the given time period. + +ninteger +The number of transactions in the aggregate window. + +o*number +The open price for the symbol in the given time period. + +t*integer +The Unix Msec timestamp for the start of the aggregate window. + +v*number +The trading volume of the symbol in the given time period. + +vwnumber +The volume weighted average price. + +Was this helpful? +Help us improve + +Yes + +No +Response Object +{ + "adjusted": true, + "queryCount": 3, + "results": [ + { + "T": "C:ILSCHF", + "c": 0.2704, + "h": 0.2706, + "l": 0.2693, + "n": 689, + "o": 0.2698, + "t": 1602719999999, + "v": 689, + "vw": 0.2702 + }, + { + "T": "C:GBPCAD", + "c": 1.71103, + "h": 1.71642, + "l": 1.69064, + "n": 407324, + "o": 1.69955, + "t": 1602719999999, + "v": 407324, + "vw": 1.7062 + }, + { + "T": "C:DKKAUD", + "c": 0.2214, + "h": 0.2214, + "l": 0.2195, + "n": 10639, + "o": 0.22, + "t": 1602719999999, + "v": 10639, + "vw": 0.2202 + } + ], + "resultsCount": 3, + "status": "OK" +} +Previous Close +get +/v2/aggs/ticker/{forexTicker}/prev +Get the previous day's open, high, low, and close (OHLC) for the specified forex pair. + +Parameters +forexTicker +* +C:EURUSD +The ticker symbol of the currency pair. + +adjusted + +true +Whether or not the results are adjusted for splits. By default, results are adjusted. Set this to false to get results that are NOT adjusted for splits. + +https://api.polygon.io/v2/aggs/ticker/C:EURUSD/prev?adjusted=true&apiKey=a8waWkOhp6Bz4nZA64jDVqgZN6zm_bh6 + +Copy + +JSON + +Run Query +Response Attributes +ticker*string +The exchange symbol that this item is traded under. + +adjusted*boolean +Whether or not this response was adjusted for splits. + +queryCount*integer +The number of aggregates (minute or day) used to generate the response. + +request_id*string +A request id assigned by the server. + +resultsCount*integer +The total number of results for this request. + +status*string +The status of this request's response. + +resultsarray +T*string +The exchange symbol that this item is traded under. + +c*number +The close price for the symbol in the given time period. + +h*number +The highest price for the symbol in the given time period. + +l*number +The lowest price for the symbol in the given time period. + +ninteger +The number of transactions in the aggregate window. + +o*number +The open price for the symbol in the given time period. + +t*integer +The Unix Msec timestamp for the start of the aggregate window. + +v*number +The trading volume of the symbol in the given time period. + +vwnumber +The volume weighted average price. + +Was this helpful? +Help us improve + +Yes + +No +Response Object +{ + "adjusted": true, + "queryCount": 1, + "request_id": "08ec061fb85115678d68452c0a609cb7", + "results": [ + { + "T": "C:EURUSD", + "c": 1.06206, + "h": 1.0631, + "l": 1.0505, + "n": 180300, + "o": 1.05252, + "t": 1651708799999, + "v": 180300, + "vw": 1.055 + } + ], + "resultsCount": 1, + "status": "OK", + "ticker": "C:EURUSD" +} +Quotes (BBO) +get +/v3/quotes/{fxTicker} +Get BBO quotes for a ticker symbol in a given time range. + +Parameters +fxTicker +* +C:EUR-USD +The ticker symbol to get quotes for. + +timestamp +Query by timestamp. Either a date with the format YYYY-MM-DD or a nanosecond timestamp. + + +Additional filter parameters +order + +Order results based on the sort field. + +limit +1000 +Limit the number of results returned, default is 1000 and max is 50000. + +sort + +Sort field used for ordering. + +https://api.polygon.io/v3/quotes/C:EUR-USD?limit=1000&apiKey=a8waWkOhp6Bz4nZA64jDVqgZN6zm_bh6 + +Copy + +JSON + +Run Query +Response Attributes +next_urlstring +If present, this value can be used to fetch the next page of data. + +resultsarray +ask_exchangeinteger +The ask exchange ID + +ask_pricenumber +The ask price. + +bid_exchangeinteger +The bid exchange ID + +bid_pricenumber +The bid price. + +participant_timestamp*integer +The nanosecond Exchange Unix Timestamp. This is the timestamp of when the quote was generated at the exchange. + +status*string +The status of this request's response. + +Was this helpful? +Help us improve + +Yes + +No +Response Object +{ + "next_url": "https://api.polygon.io/v3/quotes/C:EUR-USD?cursor=YWN0aXZlPXRydWUmZGF0ZT0yMDIxLTA0LTI1JmxpbWl0PTEmb3JkZXI9YXNjJnBhZ2VfbWFya2VyPUElN0M5YWRjMjY0ZTgyM2E1ZjBiOGUyNDc5YmZiOGE1YmYwNDVkYzU0YjgwMDcyMWE2YmI1ZjBjMjQwMjU4MjFmNGZiJnNvcnQ9dGlja2Vy", + "request_id": "a47d1beb8c11b6ae897ab76cdbbf35a3", + "results": [ + { + "ask_exchange": 48, + "ask_price": 1.18565, + "bid_exchange": 48, + "bid_price": 1.18558, + "participant_timestamp": 1625097600000000000 + }, + { + "ask_exchange": 48, + "ask_price": 1.18565, + "bid_exchange": 48, + "bid_price": 1.18559, + "participant_timestamp": 1625097600000000000 + } + ], + "status": "OK" +} +Last Quote for a Currency Pair +get +/v1/last_quote/currencies/{from}/{to} +Get the last quote tick for a forex currency pair. + +Parameters +from +* +AUD +The "from" symbol of the pair. + +to +* +USD +The "to" symbol of the pair. + +https://api.polygon.io/v1/last_quote/currencies/AUD/USD?apiKey=a8waWkOhp6Bz4nZA64jDVqgZN6zm_bh6 + +Copy + +JSON + +Run Query +Response Attributes +lastobject +ask*number +The ask price. + +bid*number +The bid price. + +exchange*integer +The exchange ID. See Exchanges for Polygon.io's mapping of exchange IDs. + +timestamp*integer +The Unix millisecond timestamp. + +request_id*string +A request id assigned by the server. + +status*string +The status of this request's response. + +symbol*string +The symbol pair that was evaluated from the request. + +Was this helpful? +Help us improve + +Yes + +No +Response Object +{ + "last": { + "ask": 0.73124, + "bid": 0.73122, + "exchange": 48, + "timestamp": 1605557756000 + }, + "request_id": "a73a29dbcab4613eeaf48583d3baacf0", + "status": "success", + "symbol": "AUD/USD" +} +Real-time Currency Conversion +get +/v1/conversion/{from}/{to} +Get currency conversions using the latest market conversion rates. Note than you can convert in both directions. For example USD to CAD or CAD to USD. + +Parameters +from +* +AUD +The "from" symbol of the pair. + +to +* +USD +The "to" symbol of the pair. + +amount +100 +The amount to convert, with a decimal. + +precision + +2 +The decimal precision of the conversion. Defaults to 2 which is 2 decimal places accuracy. + +https://api.polygon.io/v1/conversion/AUD/USD?amount=100&precision=2&apiKey=a8waWkOhp6Bz4nZA64jDVqgZN6zm_bh6 + +Copy + +JSON + +Run Query +Response Attributes +converted*number +The result of the conversion. + +from*string +The "from" currency symbol. + +initialAmount*number +The amount to convert. + +lastobject +ask*number +The ask price. + +bid*number +The bid price. + +exchange*integer +The exchange ID. See Exchanges for Polygon.io's mapping of exchange IDs. + +timestamp*integer +The Unix millisecond timestamp. + +request_id*string +A request id assigned by the server. + +status*string +The status of this request's response. + +symbol*string +The symbol pair that was evaluated from the request. + +to*string +The "to" currency symbol. + +Was this helpful? +Help us improve + +Yes + +No +Response Object +{ + "converted": 73.14, + "from": "AUD", + "initialAmount": 100, + "last": { + "ask": 1.3673344, + "bid": 1.3672596, + "exchange": 48, + "timestamp": 1605555313000 + }, + "request_id": "a73a29dbcab4613eeaf48583d3baacf0", + "status": "success", + "symbol": "AUD/USD", + "to": "USD" +} +All Tickers +get +/v2/snapshot/locale/global/markets/forex/tickers +Get the current minute, day, and previous day’s aggregate, as well as the last trade and quote for all traded forex symbols. + +Note: Snapshot data is cleared at 12am EST and gets populated as data is received from the exchanges. This can happen as early as 4am EST. + +Parameters +tickers +A case-sensitive comma separated list of tickers to get snapshots for. For example, C:EURUSD, C:GBPCAD, and C:AUDINR. Empty string defaults to querying all tickers. + +https://api.polygon.io/v2/snapshot/locale/global/markets/forex/tickers?apiKey=a8waWkOhp6Bz4nZA64jDVqgZN6zm_bh6 + +Copy + +JSON + +Run Query +Response Attributes +status*string +The status of this request's response. + +tickersarray +day*object +The most recent daily bar for this ticker. + +c*number +The close price for the symbol in the given time period. + +h*number +The highest price for the symbol in the given time period. + +l*number +The lowest price for the symbol in the given time period. + +o*number +The open price for the symbol in the given time period. + +v*number +The trading volume of the symbol in the given time period. + +fmvnumber +Fair market value is only available on Business plans. It is our proprietary algorithm to generate a real-time, accurate, fair market value of a tradable security. For more information, contact us. + +lastQuote*object +The most recent quote for this ticker. + +a*number +The ask price. + +b*number +The bid price. + +t*integer +The millisecond accuracy timestamp of the quote. + +x*integer +The exchange ID on which this quote happened. + +min*object +The most recent minute bar for this ticker. + +cnumber +The close price for the symbol in the given time period. + +hnumber +The highest price for the symbol in the given time period. + +lnumber +The lowest price for the symbol in the given time period. + +ninteger +The number of transactions in the aggregate window. + +onumber +The open price for the symbol in the given time period. + +tinteger +The Unix Msec timestamp for the start of the aggregate window. + +vnumber +The trading volume of the symbol in the given time period. + +prevDay*object +The previous day's bar for this ticker. + +c*number +The close price for the symbol in the given time period. + +h*number +The highest price for the symbol in the given time period. + +l*number +The lowest price for the symbol in the given time period. + +o*number +The open price for the symbol in the given time period. + +v*number +The trading volume of the symbol in the given time period. + +vw*number +The volume weighted average price. + +ticker*string +The exchange symbol that this item is traded under. + +todaysChange*number +The value of the change from the previous day. + +todaysChangePerc*number +The percentage change since the previous day. + +updated*integer +The last updated timestamp. + +Was this helpful? +Help us improve + +Yes + +No +Response Object +{ + "status": "OK", + "tickers": [ + { + "day": { + "c": 0.11778221, + "h": 0.11812263, + "l": 0.11766631, + "o": 0.11797149, + "v": 77794 + }, + "lastQuote": { + "a": 0.11780678, + "b": 0.11777952, + "t": 1605280919000, + "x": 48 + }, + "min": { + "c": 0.117769, + "h": 0.11779633, + "l": 0.11773698, + "n": 1, + "o": 0.11778, + "t": 1684422000000, + "v": 202 + }, + "prevDay": { + "c": 0.11797258, + "h": 0.11797258, + "l": 0.11797149, + "o": 0.11797149, + "v": 2, + "vw": 0 + }, + "ticker": "C:HKDCHF", + "todaysChange": -0.00019306, + "todaysChangePerc": -0.1636482, + "updated": 1605280919000 + } + ] +} +Gainers/Losers +get +/v2/snapshot/locale/global/markets/forex/{direction} +Get the current top 20 gainers or losers of the day in forex markets. + +Top gainers are those tickers whose price has increased by the highest percentage since the previous day's close. Top losers are those tickers whose price has decreased by the highest percentage since the previous day's close. + +Note: Snapshot data is cleared at 12am EST and gets populated as data is received from the exchanges. + +Parameters +direction +* + +gainers +The direction of the snapshot results to return. + +https://api.polygon.io/v2/snapshot/locale/global/markets/forex/gainers?apiKey=a8waWkOhp6Bz4nZA64jDVqgZN6zm_bh6 + +Copy + +JSON + +Run Query +Response Attributes +status*string +The status of this request's response. + +tickersarray +day*object +The most recent daily bar for this ticker. + +c*number +The close price for the symbol in the given time period. + +h*number +The highest price for the symbol in the given time period. + +l*number +The lowest price for the symbol in the given time period. + +o*number +The open price for the symbol in the given time period. + +v*number +The trading volume of the symbol in the given time period. + +fmvnumber +Fair market value is only available on Business plans. It is our proprietary algorithm to generate a real-time, accurate, fair market value of a tradable security. For more information, contact us. + +lastQuote*object +The most recent quote for this ticker. + +a*number +The ask price. + +b*number +The bid price. + +t*integer +The millisecond accuracy timestamp of the quote. + +x*integer +The exchange ID on which this quote happened. + +min*object +The most recent minute bar for this ticker. + +cnumber +The close price for the symbol in the given time period. + +hnumber +The highest price for the symbol in the given time period. + +lnumber +The lowest price for the symbol in the given time period. + +ninteger +The number of transactions in the aggregate window. + +onumber +The open price for the symbol in the given time period. + +tinteger +The Unix Msec timestamp for the start of the aggregate window. + +vnumber +The trading volume of the symbol in the given time period. + +prevDay*object +The previous day's bar for this ticker. + +c*number +The close price for the symbol in the given time period. + +h*number +The highest price for the symbol in the given time period. + +l*number +The lowest price for the symbol in the given time period. + +o*number +The open price for the symbol in the given time period. + +v*number +The trading volume of the symbol in the given time period. + +vw*number +The volume weighted average price. + +ticker*string +The exchange symbol that this item is traded under. + +todaysChange*number +The value of the change from the previous day. + +todaysChangePerc*number +The percentage change since the previous day. + +updated*integer +The last updated timestamp. + +Was this helpful? +Help us improve + +Yes + +No +Response Object +{ + "status": "OK", + "tickers": [ + { + "day": { + "c": 0.886156, + "h": 0.887111, + "l": 0.8825327, + "o": 0.8844732, + "v": 1041 + }, + "lastQuote": { + "a": 0.8879606, + "b": 0.886156, + "t": 1605283204000, + "x": 48 + }, + "min": { + "c": 0.886156, + "h": 0.886156, + "l": 0.886156, + "n": 1, + "o": 0.886156, + "t": 1684422000000, + "v": 1 + }, + "prevDay": { + "c": 0.8428527, + "h": 0.889773, + "l": 0.8428527, + "o": 0.8848539, + "v": 1078, + "vw": 0 + }, + "ticker": "C:PLNILS", + "todaysChange": 0.0433033, + "todaysChangePerc": 5.13770674, + "updated": 1605330008999 + } + ] +} +Ticker +get +/v2/snapshot/locale/global/markets/forex/tickers/{ticker} +Get the current minute, day, and previous day’s aggregate, as well as the last trade and quote for a single traded currency symbol. + +Note: Snapshot data is cleared at 12am EST and gets populated as data is received from the exchanges. + +Parameters +ticker +* +C:EURUSD +The forex ticker. + +https://api.polygon.io/v2/snapshot/locale/global/markets/forex/tickers/C:EURUSD?apiKey=a8waWkOhp6Bz4nZA64jDVqgZN6zm_bh6 + +Copy + +JSON + +Run Query +Response Attributes +status*string +The status of this request's response. + +request_id*string +A request id assigned by the server. + +tickerobject +day*object +The most recent daily bar for this ticker. + +c*number +The close price for the symbol in the given time period. + +h*number +The highest price for the symbol in the given time period. + +l*number +The lowest price for the symbol in the given time period. + +o*number +The open price for the symbol in the given time period. + +v*number +The trading volume of the symbol in the given time period. + +fmvnumber +Fair market value is only available on Business plans. It is our proprietary algorithm to generate a real-time, accurate, fair market value of a tradable security. For more information, contact us. + +lastQuote*object +The most recent quote for this ticker. + +a*number +The ask price. + +b*number +The bid price. + +t*integer +The millisecond accuracy timestamp of the quote. + +x*integer +The exchange ID on which this quote happened. + +min*object +The most recent minute bar for this ticker. + +cnumber +The close price for the symbol in the given time period. + +hnumber +The highest price for the symbol in the given time period. + +lnumber +The lowest price for the symbol in the given time period. + +ninteger +The number of transactions in the aggregate window. + +onumber +The open price for the symbol in the given time period. + +tinteger +The Unix Msec timestamp for the start of the aggregate window. + +vnumber +The trading volume of the symbol in the given time period. + +prevDay*object +The previous day's bar for this ticker. + +c*number +The close price for the symbol in the given time period. + +h*number +The highest price for the symbol in the given time period. + +l*number +The lowest price for the symbol in the given time period. + +o*number +The open price for the symbol in the given time period. + +v*number +The trading volume of the symbol in the given time period. + +vw*number +The volume weighted average price. + +ticker*string +The exchange symbol that this item is traded under. + +todaysChange*number +The value of the change from the previous day. + +todaysChangePerc*number +The percentage change since the previous day. + +updated*integer +The last updated timestamp. + +Was this helpful? +Help us improve + +Yes + +No +Response Object +{ + "request_id": "ad76e76ce183002c5937a7f02dfebde4", + "status": "OK", + "ticker": { + "day": { + "c": 1.18403, + "h": 1.1906, + "l": 1.18001, + "o": 1.18725, + "v": 83578 + }, + "lastQuote": { + "a": 1.18403, + "b": 1.18398, + "i": 0, + "t": 1606163759000, + "x": 48 + }, + "min": { + "c": 1.18396, + "h": 1.18423, + "l": 1.1838, + "n": 85, + "o": 1.18404, + "t": 1684422000000, + "v": 41 + }, + "prevDay": { + "c": 1.18724, + "h": 1.18727, + "l": 1.18725, + "o": 1.18725, + "v": 5, + "vw": 0 + }, + "ticker": "C:EURUSD", + "todaysChange": -0.00316, + "todaysChangePerc": -0.27458312, + "updated": 1606163759000 + } +} +Universal Snapshot +get +/v3/snapshot +Get snapshots for assets of all types + +Parameters +ticker.any_of +NCLH,O:SPY250321C00380000,C:EURUSD,X:BTCUSD,I:SPX +Comma separated list of tickers, up to a maximum of 250. If no tickers are passed then all results will be returned in a paginated manner. + +Warning: The maximum number of characters allowed in a URL are subject to your technology stack. + + +Additional filter parameters +type + +Query by the type of asset. + +order + +Order results based on the sort field. + +limit +10 +Limit the number of results returned, default is 10 and max is 250. + +sort + +Sort field used for ordering. + +https://api.polygon.io/v3/snapshot?ticker.any_of=NCLH,O:SPY250321C00380000,C:EURUSD,X:BTCUSD,I:SPX&limit=10&apiKey=a8waWkOhp6Bz4nZA64jDVqgZN6zm_bh6 + +Copy + +Run Query +Response Attributes +next_urlstring +If present, this value can be used to fetch the next page of data. + +request_id*string +resultsarray +break_even_pricenumber +The price of the underlying asset for the contract to break even. For a call, this value is (strike price + premium paid). For a put, this value is (strike price - premium paid). + +detailsobject +The details for this contract. + +contract_type*enum [put, call, other] +The type of contract. Can be "put", "call", or in some rare cases, "other". + +exercise_style*enum [american, european, bermudan] +The exercise style of this contract. See this link for more details on exercise styles. + +expiration_date*string +The contract's expiration date in YYYY-MM-DD format. + +shares_per_contract*number +The number of shares per contract for this contract. + +strike_price*number +The strike price of the option contract. + +errorstring +The error while looking for this ticker. + +fmvnumber +Fair market value is only available on Business plans. It's it our proprietary algorithm to generate a real-time, accurate, fair market value of a tradable security. For more information, contact us. + +greeksobject +The greeks for this contract. There are certain circumstances where greeks will not be returned, such as options contracts that are deep in the money. See this article for more information. + +delta*number +The change in the option's price per $0.01 increment in the price of the underlying asset. + +gamma*number +The change in delta per $0.01 change in the price of the underlying asset. + +theta*number +The change in the option's price per day. + +vega*number +The change in the option's price per 1% increment in volatility. + +implied_volatilitynumber +The market's forecast for the volatility of the underlying asset, based on this option's current price. + +last_quoteobject +The most recent quote for this contract. This is only returned if your current plan includes quotes. + +ask*number +The ask price. + +ask_exchangeinteger +The ask side exchange ID. See Exchanges for Polygon.io's mapping of exchange IDs. + +ask_sizenumber +The ask size. This represents the number of round lot orders at the given ask price. The normal round lot size is 100 shares. An ask size of 2 means there are 200 shares available to purchase at the given ask price. + +bid*number +The bid price. + +bid_exchangeinteger +The bid side exchange ID. See Exchanges for Polygon.io's mapping of exchange IDs. + +bid_sizenumber +The bid size. This represents the number of round lot orders at the given bid price. The normal round lot size is 100 shares. A bid size of 2 means there are 200 shares for purchase at the given bid price. + +last_updated*integer +The nanosecond timestamp of when this information was updated. + +midpointnumber +The average of the bid and ask price. + +timeframe*enum [DELAYED, REAL-TIME] +The time relevance of the data. + +last_tradeobject +The most recent quote for this contract. This is only returned if your current plan includes trades. + +conditionsarray [integer] +A list of condition codes. + +exchangeinteger +The exchange ID. See Exchanges for Polygon.io's mapping of exchange IDs. + +idstring +The Trade ID which uniquely identifies a trade. These are unique per combination of ticker, exchange, and TRF. For example: A trade for AAPL executed on NYSE and a trade for AAPL executed on NASDAQ could potentially have the same Trade ID. + +last_updatedinteger +The nanosecond timestamp of when this information was updated. + +participant_timestampinteger +The nanosecond Exchange Unix Timestamp. This is the timestamp of when the trade was generated at the exchange. + +price*number +The price of the trade. This is the actual dollar value per whole share of this trade. A trade of 100 shares with a price of $2.00 would be worth a total dollar value of $200.00. + +sip_timestampinteger +The nanosecond accuracy SIP Unix Timestamp. This is the timestamp of when the SIP received this trade from the exchange which produced it. + +size*integer +The size of a trade (also known as volume). + +timeframeenum [DELAYED, REAL-TIME] +The time relevance of the data. + +market_statusstring +The market status for the market that trades this ticker. Possible values for stocks, options, crypto, and forex snapshots are open, closed, early_trading, or late_trading. Possible values for indices snapshots are regular_trading, closed, early_trading, and late_trading. + +messagestring +The error message while looking for this ticker. + +namestring +The name of this contract. + +open_interestnumber +The quantity of this contract held at the end of the last trading day. + +sessionobject +change*number +The value of the price change for the asset from the previous trading day. + +change_percent*number +The percent of the price change for the asset from the previous trading day. + +close*number +The closing price of the asset for the day. + +early_trading_changenumber +Today's early trading change amount, difference between price and previous close if in early trading hours, otherwise difference between last price during early trading and previous close. + +early_trading_change_percentnumber +Today's early trading change as a percentage. + +high*number +The highest price of the asset for the day. + +late_trading_changenumber +Today's late trading change amount, difference between price and today's close if in late trading hours, otherwise difference between last price during late trading and today's close. + +late_trading_change_percentnumber +Today's late trading change as a percentage. + +low*number +The lowest price of the asset for the day. + +open*number +The open price of the asset for the day. + +previous_close*number +The closing price of the asset for the previous trading day. + +pricenumber +The price of the most recent trade or bid price for this asset. + +regular_trading_changenumber +Today's change in regular trading hours, difference between current price and previous trading day's close, otherwise difference between today's close and previous day's close. + +regular_trading_change_percentnumber +Today's regular trading change as a percentage. + +volumenumber +The trading volume for the asset for the day. + +ticker*string +The ticker symbol for the asset. + +typeenum [stocks, options, fx, crypto, indices] +The asset class for this ticker. + +underlying_assetobject +Information on the underlying stock for this options contract. The market data returned depends on your current stocks plan. + +change_to_break_even*number +The change in price for the contract to break even. + +last_updatedinteger +The nanosecond timestamp of when this information was updated. + +pricenumber +The price of the trade. This is the actual dollar value per whole share of this trade. A trade of 100 shares with a price of $2.00 would be worth a total dollar value of $200.00. + +ticker*string +The ticker symbol for the contract's underlying asset. + +timeframeenum [DELAYED, REAL-TIME] +The time relevance of the data. + +valuenumber +The value of the underlying index. + +valuenumber +Value of Index. + +status*string +The status of this request's response. + +Was this helpful? +Help us improve + +Yes + +No +Response Object +{ + "request_id": "abc123", + "results": [ + { + "break_even_price": 171.075, + "details": { + "contract_type": "call", + "exercise_style": "american", + "expiration_date": "2022-10-14", + "shares_per_contract": 100, + "strike_price": 5, + "underlying_ticker": "NCLH" + }, + "fmv": 0.05, + "greeks": { + "delta": 0.5520187372272933, + "gamma": 0.00706756515659829, + "theta": -0.018532772783847958, + "vega": 0.7274811132998142 + }, + "implied_volatility": 0.3048997097864957, + "last_quote": { + "ask": 21.25, + "ask_exchange": 12, + "ask_size": 110, + "bid": 20.9, + "bid_exchange": 10, + "bid_size": 172, + "last_updated": 1636573458756383500, + "midpoint": 21.075, + "timeframe": "REAL-TIME" + }, + "last_trade": { + "conditions": [ + 209 + ], + "exchange": 316, + "price": 0.05, + "sip_timestamp": 1675280958783136800, + "size": 2, + "timeframe": "REAL-TIME" + }, + "market_status": "closed", + "name": "NCLH $5 Call", + "open_interest": 8921, + "session": { + "change": -0.05, + "change_percent": -1.07, + "close": 6.65, + "early_trading_change": -0.01, + "early_trading_change_percent": -0.03, + "high": 7.01, + "late_trading_change": -0.4, + "late_trading_change_percent": -0.02, + "low": 5.42, + "open": 6.7, + "previous_close": 6.71, + "volume": 67 + }, + "ticker": "O:NCLH221014C00005000", + "type": "options", + "underlying_asset": { + "change_to_break_even": 23.123999999999995, + "last_updated": 1636573459862384600, + "price": 147.951, + "ticker": "AAPL", + "timeframe": "REAL-TIME" + } + }, + { + "fmv": 0.05, + "last_quote": { + "ask": 21.25, + "ask_exchange": 300, + "ask_size": 110, + "bid": 20.9, + "bid_exchange": 323, + "bid_size": 172, + "last_updated": 1636573458756383500, + "timeframe": "REAL-TIME" + }, + "last_trade": { + "conditions": [ + 209 + ], + "exchange": 316, + "id": "4064", + "last_updated": 1675280958783136800, + "price": 0.05, + "size": 2, + "timeframe": "REAL-TIME" + }, + "market_status": "closed", + "name": "Apple Inc.", + "session": { + "change": -1.05, + "change_percent": -4.67, + "close": 21.4, + "early_trading_change": -0.39, + "early_trading_change_percent": -0.07, + "high": 22.49, + "late_trading_change": 1.2, + "late_trading_change_percent": 3.92, + "low": 21.35, + "open": 22.49, + "previous_close": 22.45, + "volume": 37 + }, + "ticker": "AAPL", + "type": "stocks" + }, + { + "error": "NOT_FOUND", + "message": "Ticker not found.", + "ticker": "TSLAAPL" + } + ], + "status": "OK" +} +Simple Moving Average (SMA) +get +/v1/indicators/sma/{fxTicker} +Get the simple moving average (SMA) for a ticker symbol over a given time range. + +Parameters +fxTicker +* +C:EURUSD +The ticker symbol for which to get simple moving average (SMA) data. + +timestamp +Query by timestamp. Either a date with the format YYYY-MM-DD or a millisecond timestamp. + + +Additional filter parameters +timespan + +day +The size of the aggregate time window. + +adjusted + +true +Whether or not the aggregates used to calculate the simple moving average are adjusted for splits. By default, aggregates are adjusted. Set this to false to get results that are NOT adjusted for splits. + +window +50 +The window size used to calculate the simple moving average (SMA). i.e. a window size of 10 with daily aggregates would result in a 10 day moving average. + +series_type + +close +The price in the aggregate which will be used to calculate the simple moving average. i.e. 'close' will result in using close prices to calculate the simple moving average (SMA). + +expand_underlying + +Whether or not to include the aggregates used to calculate this indicator in the response. + +order + +desc +The order in which to return the results, ordered by timestamp. + +limit +10 +Limit the number of results returned, default is 10 and max is 5000 + +https://api.polygon.io/v1/indicators/sma/C:EURUSD?timespan=day&adjusted=true&window=50&series_type=close&order=desc&limit=10&apiKey=a8waWkOhp6Bz4nZA64jDVqgZN6zm_bh6 + +Copy + +JSON + +Run Query +Response Attributes +next_urlstring +If present, this value can be used to fetch the next page of data. + +request_idstring +A request id assigned by the server. + +resultsobject +underlyingobject +aggregatesarray +c*number +The close price for the symbol in the given time period. + +h*number +The highest price for the symbol in the given time period. + +l*number +The lowest price for the symbol in the given time period. + +n*integer +The number of transactions in the aggregate window. + +o*number +The open price for the symbol in the given time period. + +otcboolean +Whether or not this aggregate is for an OTC ticker. This field will be left off if false. + +t*number +The Unix Msec timestamp for the start of the aggregate window. + +v*number +The trading volume of the symbol in the given time period. + +vw*number +The volume weighted average price. + +urlstring +The URL which can be used to request the underlying aggregates used in this request. + +valuesarray +timestampinteger +The Unix Msec timestamp from the last aggregate used in this calculation. + +valuenumber +The indicator value for this period. + +statusstring +The status of this request's response. + +Was this helpful? +Help us improve + +Yes + +No +Response Object +{ + "next_url": "https://api.polygon.io/v1/indicators/sma/C:USDAUD?cursor=YWN0aXZlPXRydWUmZGF0ZT0yMDIxLTA0LTI1JmxpbWl0PTEmb3JkZXI9YXNjJnBhZ2VfbWFya2VyPUElN0M5YWRjMjY0ZTgyM2E1ZjBiOGUyNDc5YmZiOGE1YmYwNDVkYzU0YjgwMDcyMWE2YmI1ZjBjMjQwMjU4MjFmNGZiJnNvcnQ9dGlja2Vy", + "request_id": "a47d1beb8c11b6ae897ab76cdbbf35a3", + "results": { + "underlying": { + "aggregates": [ + { + "c": 75.0875, + "h": 75.15, + "l": 73.7975, + "n": 1, + "o": 74.06, + "t": 1577941200000, + "v": 135647456, + "vw": 74.6099 + }, + { + "c": 74.3575, + "h": 75.145, + "l": 74.125, + "n": 1, + "o": 74.2875, + "t": 1578027600000, + "v": 146535512, + "vw": 74.7026 + } + ], + "url": "https://api.polygon.io/v2/aggs/ticker/C:USDAUD/range/1/day/2003-01-01/2022-07-25" + }, + "values": [ + { + "timestamp": 1517562000016, + "value": 140.139 + } + ] + }, + "status": "OK" +} +Exponential Moving Average (EMA) +get +/v1/indicators/ema/{fxTicker} +Get the exponential moving average (EMA) for a ticker symbol over a given time range. + +Parameters +fxTicker +* +C:EURUSD +The ticker symbol for which to get exponential moving average (EMA) data. + +timestamp +Query by timestamp. Either a date with the format YYYY-MM-DD or a millisecond timestamp. + + +Additional filter parameters +timespan + +day +The size of the aggregate time window. + +adjusted + +true +Whether or not the aggregates used to calculate the exponential moving average are adjusted for splits. By default, aggregates are adjusted. Set this to false to get results that are NOT adjusted for splits. + +window +50 +The window size used to calculate the exponential moving average (EMA). i.e. a window size of 10 with daily aggregates would result in a 10 day moving average. + +series_type + +close +The price in the aggregate which will be used to calculate the exponential moving average. i.e. 'close' will result in using close prices to calculate the exponential moving average (EMA). + +expand_underlying + +Whether or not to include the aggregates used to calculate this indicator in the response. + +order + +desc +The order in which to return the results, ordered by timestamp. + +limit +10 +Limit the number of results returned, default is 10 and max is 5000 + +https://api.polygon.io/v1/indicators/ema/C:EURUSD?timespan=day&adjusted=true&window=50&series_type=close&order=desc&limit=10&apiKey=a8waWkOhp6Bz4nZA64jDVqgZN6zm_bh6 + +Copy + +JSON + +Run Query +Response Attributes +next_urlstring +If present, this value can be used to fetch the next page of data. + +request_idstring +A request id assigned by the server. + +resultsobject +underlyingobject +aggregatesarray +c*number +The close price for the symbol in the given time period. + +h*number +The highest price for the symbol in the given time period. + +l*number +The lowest price for the symbol in the given time period. + +n*integer +The number of transactions in the aggregate window. + +o*number +The open price for the symbol in the given time period. + +otcboolean +Whether or not this aggregate is for an OTC ticker. This field will be left off if false. + +t*number +The Unix Msec timestamp for the start of the aggregate window. + +v*number +The trading volume of the symbol in the given time period. + +vw*number +The volume weighted average price. + +urlstring +The URL which can be used to request the underlying aggregates used in this request. + +valuesarray +timestampinteger +The Unix Msec timestamp from the last aggregate used in this calculation. + +valuenumber +The indicator value for this period. + +statusstring +The status of this request's response. + +Was this helpful? +Help us improve + +Yes + +No +Response Object +{ + "next_url": "https://api.polygon.io/v1/indicators/ema/C:USDAUD?cursor=YWN0aXZlPXRydWUmZGF0ZT0yMDIxLTA0LTI1JmxpbWl0PTEmb3JkZXI9YXNjJnBhZ2VfbWFya2VyPUElN0M5YWRjMjY0ZTgyM2E1ZjBiOGUyNDc5YmZiOGE1YmYwNDVkYzU0YjgwMDcyMWE2YmI1ZjBjMjQwMjU4MjFmNGZiJnNvcnQ9dGlja2Vy", + "request_id": "a47d1beb8c11b6ae897ab76cdbbf35a3", + "results": { + "underlying": { + "url": "https://api.polygon.io/v2/aggs/ticker/C:USDAUD/range/1/day/2003-01-01/2022-07-25" + }, + "values": [ + { + "timestamp": 1517562000016, + "value": 140.139 + } + ] + }, + "status": "OK" +} +Moving Average Convergence/Divergence (MACD) +get +/v1/indicators/macd/{fxTicker} +Get moving average convergence/divergence (MACD) data for a ticker symbol over a given time range. + +Parameters +fxTicker +* +C:EURUSD +The ticker symbol for which to get MACD data. + +timestamp +Query by timestamp. Either a date with the format YYYY-MM-DD or a millisecond timestamp. + + +Additional filter parameters +timespan + +day +The size of the aggregate time window. + +adjusted + +true +Whether or not the aggregates used to calculate the MACD are adjusted for splits. By default, aggregates are adjusted. Set this to false to get results that are NOT adjusted for splits. + +short_window +12 +The short window size used to calculate MACD data. + +long_window +26 +The long window size used to calculate MACD data. + +signal_window +9 +The window size used to calculate the MACD signal line. + +series_type + +close +The price in the aggregate which will be used to calculate the MACD. i.e. 'close' will result in using close prices to calculate the MACD. + +expand_underlying + +Whether or not to include the aggregates used to calculate this indicator in the response. + +order + +desc +The order in which to return the results, ordered by timestamp. + +limit +10 +Limit the number of results returned, default is 10 and max is 5000 + +https://api.polygon.io/v1/indicators/macd/C:EURUSD?timespan=day&adjusted=true&short_window=12&long_window=26&signal_window=9&series_type=close&order=desc&limit=10&apiKey=a8waWkOhp6Bz4nZA64jDVqgZN6zm_bh6 + +Copy + +JSON + +Run Query +Response Attributes +next_urlstring +If present, this value can be used to fetch the next page of data. + +request_idstring +A request id assigned by the server. + +resultsobject +underlyingobject +aggregatesarray +c*number +The close price for the symbol in the given time period. + +h*number +The highest price for the symbol in the given time period. + +l*number +The lowest price for the symbol in the given time period. + +n*integer +The number of transactions in the aggregate window. + +o*number +The open price for the symbol in the given time period. + +otcboolean +Whether or not this aggregate is for an OTC ticker. This field will be left off if false. + +t*number +The Unix Msec timestamp for the start of the aggregate window. + +v*number +The trading volume of the symbol in the given time period. + +vw*number +The volume weighted average price. + +urlstring +The URL which can be used to request the underlying aggregates used in this request. + +valuesarray +histogramnumber +The indicator value for this period. + +signalnumber +The indicator value for this period. + +timestampinteger +The Unix Msec timestamp from the last aggregate used in this calculation. + +valuenumber +The indicator value for this period. + +statusstring +The status of this request's response. + +Was this helpful? +Help us improve + +Yes + +No +Response Object +{ + "next_url": "https://api.polygon.io/v1/indicators/macd/C:USDAUD?cursor=YWN0aXZlPXRydWUmZGF0ZT0yMDIxLTA0LTI1JmxpbWl0PTEmb3JkZXI9YXNjJnBhZ2VfbWFya2VyPUElN0M5YWRjMjY0ZTgyM2E1ZjBiOGUyNDc5YmZiOGE1YmYwNDVkYzU0YjgwMDcyMWE2YmI1ZjBjMjQwMjU4MjFmNGZiJnNvcnQ9dGlja2Vy", + "request_id": "a47d1beb8c11b6ae897ab76cdbbf35a3", + "results": { + "underlying": { + "url": "https://api.polygon.io/v2/aggs/ticker/C:USDAUD/range/1/day/2003-01-01/2022-07-25" + }, + "values": [ + { + "histogram": 38.3801666667, + "signal": 106.9811666667, + "timestamp": 1517562000016, + "value": 145.3613333333 + }, + { + "histogram": 41.098859136, + "signal": 102.7386283473, + "timestamp": 1517562001016, + "value": 143.8374874833 + } + ] + }, + "status": "OK" +} +Relative Strength Index (RSI) +get +/v1/indicators/rsi/{fxTicker} +Get the relative strength index (RSI) for a ticker symbol over a given time range. + +Parameters +fxTicker +* +C:EURUSD +The ticker symbol for which to get relative strength index (RSI) data. + +timestamp +Query by timestamp. Either a date with the format YYYY-MM-DD or a millisecond timestamp. + + +Additional filter parameters +timespan + +day +The size of the aggregate time window. + +adjusted + +true +Whether or not the aggregates used to calculate the relative strength index are adjusted for splits. By default, aggregates are adjusted. Set this to false to get results that are NOT adjusted for splits. + +window +14 +The window size used to calculate the relative strength index (RSI). + +series_type + +close +The price in the aggregate which will be used to calculate the relative strength index. i.e. 'close' will result in using close prices to calculate the relative strength index (RSI). + +expand_underlying + +Whether or not to include the aggregates used to calculate this indicator in the response. + +order + +desc +The order in which to return the results, ordered by timestamp. + +limit +10 +Limit the number of results returned, default is 10 and max is 5000 + +https://api.polygon.io/v1/indicators/rsi/C:EURUSD?timespan=day&adjusted=true&window=14&series_type=close&order=desc&limit=10&apiKey=a8waWkOhp6Bz4nZA64jDVqgZN6zm_bh6 + +Copy + +JSON + +Run Query +Response Attributes +next_urlstring +If present, this value can be used to fetch the next page of data. + +request_idstring +A request id assigned by the server. + +resultsobject +underlyingobject +aggregatesarray +c*number +The close price for the symbol in the given time period. + +h*number +The highest price for the symbol in the given time period. + +l*number +The lowest price for the symbol in the given time period. + +n*integer +The number of transactions in the aggregate window. + +o*number +The open price for the symbol in the given time period. + +otcboolean +Whether or not this aggregate is for an OTC ticker. This field will be left off if false. + +t*number +The Unix Msec timestamp for the start of the aggregate window. + +v*number +The trading volume of the symbol in the given time period. + +vw*number +The volume weighted average price. + +urlstring +The URL which can be used to request the underlying aggregates used in this request. + +valuesarray +timestampinteger +The Unix Msec timestamp from the last aggregate used in this calculation. + +valuenumber +The indicator value for this period. + +statusstring +The status of this request's response. + +Was this helpful? +Help us improve + +Yes + +No +Response Object +{ + "next_url": "https://api.polygon.io/v1/indicators/rsi/C:USDAUD?cursor=YWN0aXZlPXRydWUmZGF0ZT0yMDIxLTA0LTI1JmxpbWl0PTEmb3JkZXI9YXNjJnBhZ2VfbWFya2VyPUElN0M5YWRjMjY0ZTgyM2E1ZjBiOGUyNDc5YmZiOGE1YmYwNDVkYzU0YjgwMDcyMWE2YmI1ZjBjMjQwMjU4MjFmNGZiJnNvcnQ9dGlja2Vy", + "request_id": "a47d1beb8c11b6ae897ab76cdbbf35a3", + "results": { + "underlying": { + "url": "https://api.polygon.io/v2/aggs/ticker/C:USDAUD/range/1/day/2003-01-01/2022-07-25" + }, + "values": [ + { + "timestamp": 1517562000016, + "value": 82.19 + } + ] + }, + "status": "OK" +} +Tickers +get +/v3/reference/tickers +Query all ticker symbols which are supported by Polygon.io. This API currently includes Stocks/Equities, Indices, Forex, and Crypto. + +Parameters +ticker +Specify a ticker symbol. Defaults to empty string which queries all tickers. + + +Additional filter parameters +type + +Specify the type of the tickers. Find the types that we support via our Ticker Types API. Defaults to empty string which queries all types. + +market + +Filter by market type. By default all markets are included. + +exchange +Specify the primary exchange of the asset in the ISO code format. Find more information about the ISO codes at the ISO org website. Defaults to empty string which queries all exchanges. + +cusip +Specify the CUSIP code of the asset you want to search for. Find more information about CUSIP codes at their website. Defaults to empty string which queries all CUSIPs. + +Note: Although you can query by CUSIP, due to legal reasons we do not return the CUSIP in the response. + +cik +Specify the CIK of the asset you want to search for. Find more information about CIK codes at their website. Defaults to empty string which queries all CIKs. + +date + +Specify a point in time to retrieve tickers available on that date. Defaults to the most recent available date. + +search +Search for terms within the ticker and/or company name. + +active + +true +Specify if the tickers returned should be actively traded on the queried date. Default is true. + +order + +Order results based on the sort field. + +limit +100 +Limit the number of results returned, default is 100 and max is 1000. + +sort + +Sort field used for ordering. + +https://api.polygon.io/v3/reference/tickers?active=true&limit=100&apiKey=a8waWkOhp6Bz4nZA64jDVqgZN6zm_bh6 + +Copy + +JSON + +Run Query +Response Attributes +countinteger +The total number of results for this request. + +next_urlstring +If present, this value can be used to fetch the next page of data. + +request_idstring +A request id assigned by the server. + +resultsarray +An array of tickers that match your query. + +Note: Although you can query by CUSIP, due to legal reasons we do not return the CUSIP in the response. + +activeboolean +Whether or not the asset is actively traded. False means the asset has been delisted. + +cikstring +The CIK number for this ticker. Find more information here. + +composite_figistring +The composite OpenFIGI number for this ticker. Find more information here + +currency_namestring +The name of the currency that this asset is traded with. + +delisted_utcstring +The last date that the asset was traded. + +last_updated_utcstring +The information is accurate up to this time. + +locale*enum [us, global] +The locale of the asset. + +market*enum [stocks, crypto, fx, otc, indices] +The market type of the asset. + +name*string +The name of the asset. For stocks/equities this will be the companies registered name. For crypto/fx this will be the name of the currency or coin pair. + +primary_exchangestring +The ISO code of the primary listing exchange for this asset. + +share_class_figistring +The share Class OpenFIGI number for this ticker. Find more information here + +ticker*string +The exchange symbol that this item is traded under. + +typestring +The type of the asset. Find the types that we support via our Ticker Types API. + +statusstring +The status of this request's response. + +Was this helpful? +Help us improve + +Yes + +No +Response Object +{ + "count": 1, + "next_url": "https://api.polygon.io/v3/reference/tickers?cursor=YWN0aXZlPXRydWUmZGF0ZT0yMDIxLTA0LTI1JmxpbWl0PTEmb3JkZXI9YXNjJnBhZ2VfbWFya2VyPUElN0M5YWRjMjY0ZTgyM2E1ZjBiOGUyNDc5YmZiOGE1YmYwNDVkYzU0YjgwMDcyMWE2YmI1ZjBjMjQwMjU4MjFmNGZiJnNvcnQ9dGlja2Vy", + "request_id": "e70013d92930de90e089dc8fa098888e", + "results": [ + { + "active": true, + "cik": "0001090872", + "composite_figi": "BBG000BWQYZ5", + "currency_name": "usd", + "last_updated_utc": "2021-04-25T00:00:00Z", + "locale": "us", + "market": "stocks", + "name": "Agilent Technologies Inc.", + "primary_exchange": "XNYS", + "share_class_figi": "BBG001SCTQY4", + "ticker": "A", + "type": "CS" + } + ], + "status": "OK" +} +Market Holidays +get +/v1/marketstatus/upcoming +Get upcoming market holidays and their open/close times. + +https://api.polygon.io/v1/marketstatus/upcoming?apiKey=a8waWkOhp6Bz4nZA64jDVqgZN6zm_bh6 + +Copy + +Run Query +Response Attributes +responsearray +closestring +The market close time on the holiday (if it's not closed). + +datestring +The date of the holiday. + +exchangestring +Which market the record is for. + +namestring +The name of the holiday. + +openstring +The market open time on the holiday (if it's not closed). + +statusstring +The status of the market on the holiday. + +Was this helpful? +Help us improve + +Yes + +No +Response Object +[ + { + "date": "2020-11-26", + "exchange": "NYSE", + "name": "Thanksgiving", + "status": "closed" + }, + { + "date": "2020-11-26", + "exchange": "NASDAQ", + "name": "Thanksgiving", + "status": "closed" + }, + { + "date": "2020-11-26", + "exchange": "OTC", + "name": "Thanksgiving", + "status": "closed" + }, + { + "close": "2020-11-27T18:00:00.000Z", + "date": "2020-11-27", + "exchange": "NASDAQ", + "name": "Thanksgiving", + "open": "2020-11-27T14:30:00.000Z", + "status": "early-close" + }, + { + "close": "2020-11-27T18:00:00.000Z", + "date": "2020-11-27", + "exchange": "NYSE", + "name": "Thanksgiving", + "open": "2020-11-27T14:30:00.000Z", + "status": "early-close" + } +] +Market Status +get +/v1/marketstatus/now +Get the current trading status of the exchanges and overall financial markets. + +https://api.polygon.io/v1/marketstatus/now?apiKey=a8waWkOhp6Bz4nZA64jDVqgZN6zm_bh6 + +Copy + +Run Query +Response Attributes +afterHoursboolean +Whether or not the market is in post-market hours. + +currenciesobject +cryptostring +The status of the crypto market. + +fxstring +The status of the forex market. + +earlyHoursboolean +Whether or not the market is in pre-market hours. + +exchangesobject +nasdaqstring +The status of the Nasdaq market. + +nysestring +The status of the NYSE market. + +otcstring +The status of the OTC market. + +indicesGroupsobject +cccystring +The status of Cboe Streaming Market Indices Cryptocurrency ("CCCY") indices trading hours. + +cgistring +The status of Cboe Global Indices ("CGI") trading hours. + +dow_jonesstring +The status of Dow Jones indices trading hours + +ftse_russellstring +The status of Financial Times Stock Exchange Group ("FTSE") Russell indices trading hours. + +mscistring +The status of Morgan Stanley Capital International ("MSCI") indices trading hours. + +mstarstring +The status of Morningstar ("MSTAR") indices trading hours. + +mstarc +The status of Morningstar Customer ("MSTARC") indices trading hours. + +nasdaqstring +The status of National Association of Securities Dealers Automated Quotations ("Nasdaq") indices trading hours. + +s_and_pstring +The status of Standard & Poors's ("S&P") indices trading hours. + +societe_generalestring +The status of Societe Generale indices trading hours. + +marketstring +The status of the market as a whole. + +serverTimestring +The current time of the server, returned as a date-time in RFC3339 format. + +Was this helpful? +Help us improve + +Yes + +No +Response Object +{ + "afterHours": true, + "currencies": { + "crypto": "open", + "fx": "open" + }, + "earlyHours": false, + "exchanges": { + "nasdaq": "extended-hours", + "nyse": "extended-hours", + "otc": "closed" + }, + "market": "extended-hours", + "serverTime": "2020-11-10T17:37:37-05:00" +} +Conditions +get +/v3/reference/conditions +List all conditions that Polygon.io uses. + +Parameters +asset_class + +fx +Filter for conditions within a given asset class. + +data_type + +Filter by data type. + +id +Filter for conditions with a given ID. + +sip + +Filter by SIP. If the condition contains a mapping for that SIP, the condition will be returned. + +order + +Order results based on the sort field. + +limit +10 +Limit the number of results returned, default is 10 and max is 1000. + +sort + +Sort field used for ordering. + +https://api.polygon.io/v3/reference/conditions?asset_class=fx&limit=10&apiKey=a8waWkOhp6Bz4nZA64jDVqgZN6zm_bh6 + +Copy + +JSON + +Run Query +Response Attributes +count*integer +The total number of results for this request. + +next_urlstring +If present, this value can be used to fetch the next page of data. + +request_id*string +A request ID assigned by the server. + +results*array +An array of conditions that match your query. + +abbreviationstring +A commonly-used abbreviation for this condition. + +asset_class*enum [stocks, options, crypto, fx] +An identifier for a group of similar financial instruments. + +data_types*array [string] +Data types that this condition applies to. + +descriptionstring +A short description of the semantics of this condition. + +exchangeinteger +If present, mapping this condition from a Polygon.io code to a SIP symbol depends on this attribute. In other words, data with this condition attached comes exclusively from the given exchange. + +id*integer +An identifier used by Polygon.io for this condition. Unique per data type. + +legacyboolean +If true, this condition is from an old version of the SIPs' specs and no longer is used. Other conditions may or may not reuse the same symbol as this one. + +name*string +The name of this condition. + +sip_mapping*object +A mapping to a symbol for each SIP that has this condition. + +CTAstring +OPRAstring +UTPstring +type*enum [sale_condition, quote_condition, sip_generated_flag, financial_status_indicator, short_sale_restriction_indicator, settlement_condition, market_condition, trade_thru_exempt] +An identifier for a collection of related conditions. + +update_rulesobject +A list of aggregation rules. + +consolidated*object +Describes aggregation rules on a consolidated (all exchanges) basis. + +updates_high_low*boolean +Whether or not trades with this condition update the high/low. + +updates_open_close*boolean +Whether or not trades with this condition update the open/close. + +updates_volume*boolean +Whether or not trades with this condition update the volume. + +market_center*object +Describes aggregation rules on a per-market-center basis. + +updates_high_low*boolean +Whether or not trades with this condition update the high/low. + +updates_open_close*boolean +Whether or not trades with this condition update the open/close. + +updates_volume*boolean +Whether or not trades with this condition update the volume. + +status*string +The status of this request's response. + +Was this helpful? +Help us improve + +Yes + +No +Response Object +{ + "count": 1, + "request_id": "31d59dda-80e5-4721-8496-d0d32a654afe", + "results": [ + { + "asset_class": "stocks", + "data_types": [ + "trade" + ], + "id": 2, + "name": "Average Price Trade", + "sip_mapping": { + "CTA": "B", + "UTP": "W" + }, + "type": "condition", + "update_rules": { + "consolidated": { + "updates_high_low": false, + "updates_open_close": false, + "updates_volume": true + }, + "market_center": { + "updates_high_low": false, + "updates_open_close": false, + "updates_volume": true + } + } + } + ], + "status": "OK" +} +Exchanges +get +/v3/reference/exchanges +List all exchanges that Polygon.io knows about. + +Parameters +asset_class + +fx +Filter by asset class. + +locale + +Filter by locale. + +https://api.polygon.io/v3/reference/exchanges?asset_class=fx&apiKey=a8waWkOhp6Bz4nZA64jDVqgZN6zm_bh6 + +Copy + +JSON + +Run Query +Response Attributes +countinteger +The total number of results for this request. + +request_id*string +A request ID assigned by the server. + +resultsarray +acronymstring +A commonly used abbreviation for this exchange. + +asset_class*enum [stocks, options, crypto, fx] +An identifier for a group of similar financial instruments. + +id*integer +A unique identifier used by Polygon.io for this exchange. + +locale*enum [us, global] +An identifier for a geographical location. + +micstring +The Market Identifier Code of this exchange (see ISO 10383). + +name*string +Name of this exchange. + +operating_micstring +The MIC of the entity that operates this exchange. + +participant_idstring +The ID used by SIP's to represent this exchange. + +type*enum [exchange, TRF, SIP] +Represents the type of exchange. + +urlstring +A link to this exchange's website, if one exists. + +status*string +The status of this request's response. + +Was this helpful? +Help us improve + +Yes + +No +Response Object +{ + "count": 1, + "request_id": "31d59dda-80e5-4721-8496-d0d32a654afe", + "results": [ + { + "acronym": "AMEX", + "asset_class": "stocks", + "id": 1, + "locale": "us", + "mic": "XASE", + "name": "NYSE American, LLC", + "operating_mic": "XNYS", + "participant_id": "A", + "type": "exchange", + "url": "https://www.nyse.com/markets/nyse-american" + } + ], + "status": "OK" +} +Forex WebSocket Documentation +The Polygon.io Forex WebSocket API provides streaming access to the latest financial market data for global currency pairs. You can specify which channels you want to consume by sending instructions in the form of actions. Our WebSockets emit events to notify you when an event has occurred in a channel you've subscribed to. + +Our WebSocket APIs are based on entitlements that control which WebSocket Clusters you can connect to and which kinds of data you can access. Examples in these docs include your API key, which only you can see, and are personalized based on your entitlements. + +Step 1: Connect +Your current plan includes 1 connection to wss://socket.polygon.io/forex. If you attempt additional connections, the existing connection will be disconnected. If you need more simultaneous connections to this cluster, you can contact support. + +Connecting to a cluster: + +Real-time:wscat -c wss://socket.polygon.io/forex + +Copy +On connection you will receive the following message: + +[{ + "ev":"status", + "status":"connected", + "message": "Connected Successfully" +}] +Step 2: Authenticate +You must authenticate before you can make any other requests. + +{"action":"auth","params":"a8waWkOhp6Bz4nZA64jDVqgZN6zm_bh6"} + +Copy +On successful authentication you will receive the following message: + +[{ + "ev":"status", + "status":"auth_success", + "message": "authenticated" +}] +Step 3: Subscribe +Once authenticated, you can request a stream. You can request multiple streams in the same request. + +{"action":"subscribe","params":"C.C:EUR-USD"} + +Copy +You can also request multiple streams from the same cluster. + +{"action":"subscribe","params":"C.C:EUR-USD,C.C:JPY-USD"} + +Copy +Usage +Things happen very quickly in the world of finance, which means a Polygon.io WebSocket client must be able to handle many incoming messages per second. Due to the nature of the WebSocket protocol, if a client is slow to consume messages from the server, Polygon.io's server must buffer messages and send them only as fast as the client can consume them. To help prevent the message buffer from getting too long, Polygon.io may send more than one JSON object in a single WebSocket message. We accomplish this by wrapping all messages in a JSON array, and adding more objects to the array if the message buffer is getting longer. For example, consider a WebSocket message with a single trade event in it: + +[ + {"ev":"T","sym":"C.C:EUR-USD","i":"50578","x":4,"p":215.9721,"s":100,"t":1611082428813,"z":3} +] +If your client is consuming a bit slow, or 2+ events happened in very short succession, you may receive a single WebSocket message with more than one event inside it, like this: + +[ + {"ev":"T","sym":"C.C:EUR-USD","i":"50578","x":4,"p":215.9721,"s":100,"t":1611082428813,"z":3}, + {"ev":"T","sym":"C.C:JPY-USD","i":"12856","x":4,"p":215.989,"s":1,"c":[37],"t":1611082428814,"z":3} +] +Note that if a client is consuming messages too slowly for too long, Polygon.io's server-side buffer may get too large. If that happens, Polygon.io will terminate the WebSocket connection. You can check your account dashboard to see if a connection was terminated as a slow consumer. If this happens to you consistently, consider subscribing to fewer symbols or channels. + +Your Plan +Currencies Starter +Real-time Data +1 Forex Cluster Connection +Manage Subscription +Client Libraries +Python Logo +Python +client-python +Go Logo +Go +client-go +Javascript Logo +Javascript +client-js +PHP Logo +PHP +client-php +Kotlin Logo +Kotlin +client-jvm +Aggregates (Per Minute) +ws +Real-time:wss://socket.polygon.io/forex +Stream real-time per-minute forex aggregates for a given forex pair. + +Parameters +ticker +* +* +Specify a forex pair in the format {from}/{to} or use * to subscribe to all forex pairs. You can also use a comma separated list to subscribe to multiple forex pairs. You can retrieve active forex tickers from our Forex Tickers API. + +{"action":"subscribe", "params":"CA.*"} + +Copy +Response Attributes +evenum [CA] +The event type. + +pairstring +The currency pair. + +onumber +The open price for this aggregate window. + +cnumber +The close price for this aggregate window. + +hnumber +The high price for this aggregate window. + +lnumber +The low price for this aggregate window. + +vinteger +The volume of trades during this aggregate window. + +sinteger +The start timestamp of this aggregate window in Unix Milliseconds. + +einteger +The end timestamp of this aggregate window in Unix Milliseconds. + +Was this helpful? +Help us improve + +Yes + +No +Response Object +{ + "ev": "CA", + "pair": "USD/EUR", + "o": 0.8687, + "c": 0.86889, + "h": 0.86889, + "l": 0.8686, + "v": 20, + "s": 1539145740000 +} +Aggregates (Per Second) +ws +Real-time:wss://socket.polygon.io/forex +Stream real-time per-second forex aggregates for a given forex pair. + +Parameters +ticker +* +* +Specify a forex pair in the format {from}/{to} or use * to subscribe to all forex pairs. You can also use a comma separated list to subscribe to multiple forex pairs. You can retrieve active forex tickers from our Forex Tickers API. + +{"action":"subscribe", "params":"CAS.*"} + +Copy +Response Attributes +evenum [CAS] +The event type. + +pairstring +The currency pair. + +onumber +The open price for this aggregate window. + +cnumber +The close price for this aggregate window. + +hnumber +The high price for this aggregate window. + +lnumber +The low price for this aggregate window. + +vinteger +The volume of trades during this aggregate window. + +sinteger +The start timestamp of this aggregate window in Unix Milliseconds. + +einteger +The end timestamp of this aggregate window in Unix Milliseconds. + +Was this helpful? +Help us improve + +Yes + +No +Response Object +{ + "ev": "CAS", + "pair": "USD/EUR", + "o": 0.8687, + "c": 0.86889, + "h": 0.86889, + "l": 0.8686, + "v": 20, + "s": 1539145740000 +} +Quotes +ws +Real-time:wss://socket.polygon.io/forex +Stream real-time forex quotes for a given forex pair. + +Parameters +ticker +* +* +Specify a forex pair in the format {from}/{to} or use * to subscribe to all forex pairs. You can also use a comma separated list to subscribe to multiple forex pairs. You can retrieve active forex tickers from our Forex Tickers API. + +{"action":"subscribe", "params":"C.*"} + +Copy +Response Attributes +evenum [C] +The event type. + +pstring +The current pair. + +xinteger +The exchange ID. See Exchanges for Polygon.io's mapping of exchange IDs. + +anumber +The ask price. + +bnumber +The bid price. + +tinteger +The Timestamp in Unix MS. + +Was this helpful? +Help us improve + +Yes + +No +Response Object +{ + "ev": "C", + "p": "USD/CNH", + "x": "44", + "a": 6.83366, + "b": 6.83363, + "t": 1536036818784 +} +Fair Market Value +ws +Business:wss://business.polygon.io/forex +Real-time fair market value for a given forex ticker symbol. + +Requires a "Currencies Enterprise" subscription +Upgrade +Parameters +ticker +* +* +Specify a forex pair in the format {from}/{to} or use * to subscribe to all forex pairs. You can also use a comma separated list to subscribe to multiple forex pairs. You can retrieve active forex tickers from our Forex Tickers API. + +{"action":"subscribe", "params":"FMV.*"} + +Copy +Response Attributes +evenum [FMV] +The event type. + diff --git a/chart.py b/__init__.py similarity index 100% rename from chart.py rename to __init__.py diff --git a/__pycache__/alpaca_broker.cpython-312.pyc b/__pycache__/alpaca_broker.cpython-312.pyc index fbc1a971bbafd2ab50f477fe93ce93bffbf1a21f..fa44064408dbce98d23b21c6ad892798433e3015 100644 GIT binary patch delta 20 acmewz`#YBVG%qg~0}vcoJ!2#H2R#5%0|$rz delta 20 acmewz`#YBVG%qg~0}xp3n6{DogB}1*j|U3? diff --git a/__pycache__/auth.cpython-312.pyc b/__pycache__/auth.cpython-312.pyc index e6d1826ccc7678ff7cf2aa5e25b33a2cc874ef48..efc44a7c9015c2b71a57a1aad49b44813d3b778e 100644 GIT binary patch delta 20 acmca_b>E8nG%qg~0}v!mow1QSL>2%E8nG%qg~0}$MjnzoTUL>2%<>;>ci diff --git a/__pycache__/broker_factory.cpython-312.pyc b/__pycache__/broker_factory.cpython-312.pyc index 7343204c4d588500e1bbea8f641ffcc50fab32f5..884b76c96f9bfc2befa88c2ac13db066d1456ab4 100644 GIT binary patch delta 937 zcmX|s#JO-qESS+Nc)>N|CxFF zK4!1ypi6%m2s9x!7Jgot83`@xF|e0A+Rhho1_QE@EfwU9%w}9rioT4msAg18mkUir zf5ulr`ZqU|P?M*fQZ7HU@$EyvL}VHr5;j1kb)f{4 z^on@L|0_Z_Bmq^W*(U11F)B%a;=5He8>7|{g909bCv+6I!S9sd_v|K-w?L!=iY+%Y zcWyWRNjWR_ujJ?(<*yS$T0_6!9?pRflwhOu(lPWWdRWtYFg%)N_;6YdBZ1+&S-o)-=Z|+18cA(tB^C7O)CsYx+N}hY+3~ z(HUwo>qx#dLu9V7Oqo)2>}oFOcyH SwZ1}$chXk^my{r194UX3afHCKF;TiaU%qz&8eoG5EpV? z@h%7qUXxiqJg?u`j!H*d(LK9|~JbV@-W<~fC zfMvGGo-pHGW*5GKciANT6el?!yo%3qyCnB4zX?S=ZB%$W8BGh}PmGVkL2NSpvJb}0 z;0ha|JmezWGz+m|X47Sh1(?kM7aOiPgecQ5l7482Vwi%VI6x7iVDSk{86K*btr^Id zApmOtUvl-_rI~e_*)j!QAOUJCun5uKBE)BGZgv46kqZ2^&5V&CF(^{R^Fntg*h>X$ zxq5p^=f{C=Y>h&o3vGo3u zqSO!vz7+?`dLt061)>|u7wTtfE%0zBG1eHouSP!4c-21s8xQu#@3ZA6KA3rLrr{qi z)%@dif3z;&U+Typo9x;f{qkd5nY%8(ms@{kMO;*Fe)yq(;jW!q9n z3+q68l?)9(A_$d_BnI7V-xN0Yo5PlVOW4|P4d?Xd7$}T!%oeuy+nL`q<_J6cU9#WZ@5X!6 zn5W;ve!cx(_Ur5S;nzHt8_w&`3+MOehYR`(!iD{X;iCScaB+WexTL=%T-sk6F6%F2 zX<5d~!{zRJ*{p*N%WB*3xcaAlOTl!nVt^KX+-Zj=1Ztrhre)m{McvJtT z@aF!_?A|lBCA_tNEAxBDwuQI%Zx8S2-x1!~zmq-ljqM8W?%&P)xnq06d;9kqI3pKy zk4`C-t^K|yd;9kX_m94+Jy(2u-g^eg&(bgi1Im4WC(^VBJNf+E1@9S^FhTDqS~l|< zy_xxh}I zF|=O^-G7X)=|BF&aO?Q>w`<=sN%{AmK&h&N$8K*>a_H~HldWp0xA1lSCr7ycQ~VfT z|GJ_7G#}<0@Oy@De4Xp>!_y|*oyG4){GQ{RgXj5{;Duo`-}<__{~3gC!;|*l1->Kr zEZ&?Sw(*-@xAgb(n-Tva^4h58^<40|(SNJei{j(A@LPkYl@c4cCxqI@Zx5c~cknw$ zjPIGHxaj-4_}%;-elNf89drK+tOfpeC0*^8-yeM8_5rp2UPNE|P-ow|0t z^n}m{l^P9h=exA<>emkOhfo9j6JmGsher&zk0@nA8a-Lk2tFb9(Z^yR%MyF|39*m! zCo=Nx%@TVA^zS5S^X2}_Xp_#-drCcNzx*jJUjHb<{73Db;^R;2!i+tkL}${!hwszH z2|ppu*^D^nbaBR?5a)bGoC~@*6HkcqOnPnc&+6h#J|RxO(l_{vy3k*FLg?qxb3k8s zUW=vnCjqhlR;g9(mw!RcYe0+DAALgT7uC>%y3kiJzAs^XU*(6;XRq-*-0M#$Z7`z_ zhjr=PctV_!^f>s!%UUe;3uD0mA9|^Q;{>XyUu)l}_>_=aIY!S5M?Y8IXunDr&;}Fz zQ$`r;!@tqODZb!trAD3@V)K`V*qavOzbR>Jzx*iX&zH2a+%VlRt>-$ph~b*iz&(ra zF>v2Jeckjdcg@f^{ws>un3J+}j}1m%O63T_uUrX6qN$wG$i#SP_(sYr1jqTHFc1xf zC&vb(!IVu1@*yEOgfNj{Bodk!Pvu+@#s-EbghoTkeDLI%zTQTA%F{VG^imW_oe4&+ zj73wfPGRDupm1OLdG!zaZOH<%f4}NUtH?DCN;^!-GS7s#LqbG%+?78Xv)DUqbANKIULlNW0~)>u)D6 zT}4q`XD24c&ICt7D8!9MW6FmroSX=aM+YV^3xlY&ln2~#I*X76kt>sv z6GAjHFoa~0U}$hGl5+GNI(X*L*@0t+o=utf;MG`hEnUp2ag;&@$5iX;B25X(06Fy+?k&4RF&?{*)xHI#|BQE?CR<6IT$$GbF#PZ3on(i zRr;(+lzT{K9$AOC!X@_O;d5}_;-c&!IioWBs6L=)7X6*%k5UTkib6<`t|?9#V#*-u z%}Q0t>Mz7csCfP_YTMANFGVH?hk}u|vvOOX8XRj0 z4~E9u$Z4Itk+QQUrkKJuL<2eEBIR&qxKEw#H+J3J^~S!N``)Sjp=ti`4_pani)e0n zh}T@ohAvOF-k0(mK6Ij|w`V|pz#4TjMBOUoJ{jok3Mg-4{>#zmWCTq!I2mdgzCJ0S z(}aeCtrOJiT8AdWDW4qS;K7sUde08@bj92q?Hw)c_}jE~$L4KF+%`NoHg*Xk8-CZ| z5WX%l5XHD2PZfle;Tai_=mUCWT4PZ|vBvsKc;4csIAM>j!RSrKr8R_5uM3%_85K(W z9GZRFFm0SNjOJt{hFc|6pT47fd1~C3rPgSOZ95!{`cWSfSH`1$J{TPgjYa&!!bI2~ znG6nvhC@N#KOy)Buj0kvrLmy@5~GHV=9EYB4Gc?TIF%oY49Jhv&?yJHoBTADPkuS8 z0XZv-e5V{~d@vkLS*4qlVIV^F>i7GFt@stX6o*8a$g^-}xL@Yvef#B=;+^s0ol6^+ zi@R3~)~yt@#0y#y1#LI&v(`Donw4|qtvENtof{I)deL0}$i!8*tW<4}S8Y#J?Tp*X z5z3i#=IX-;+mZT^ei%}Vu=a1j7svt|4#DWkHe8h!L<<|UweXZd8M@P^DHFob zV9mI6Jtq?!!=Hxq0O<4hsG}tjt{XOgqhe63e2WR|Fux`vfPpUAlK30 z^(Z=&1=9&;Q>8zEy6`Et+&LoA!RQsxZKeB!_*l_JmR@jxMSI?V=**duXLk8%3O9@h z0hCxc2nRC>Wh)0unOQf>)w< zmHY2lf98DOnW#LTEUSHBx0E_&-D@7sS1H;mKL6BN@EK=B7B;u&tNUSOVe=2J&yR|p zj%C}Xq|N=CH49#T5h+1oUJEn?HgfN8w0Gv3-rrKv=`wxbvcR843yJEmvG9BFd<~=F zCO4{|*zlAtrN4iji&AKIjhYpo_N#>J;-0VMIE4yERT?$WLlmzt*1>mr74 zmQNXmz#H~)X6}Zu(G=_H3P!=;`LA6L4PEvt%!@yIIq0X!${&jO!PtO(@kb|!>R}e} zUjknP8aGa%LV`bxXPL7#eZpq^J?w<@`-Wp+L}?m$zKDo6i0o4;;HL2^_dgrnGJth0 zK_R*S#dOUebRd~`4Jpgm#5J%prj)U@J!O?Rtdxt*$8srTA~?hP&lmPRBf;??Ccu3$ zBGvfN0rXSwG_8BaCctP#_O+@ZUO*O+3OJwt7w+>J?w+S>v2OP28&fx@zVY&W#j>|0 z?&XrNr@%#;m{Q8;WkE~o(>q_P3c;)6q(eXtZlA-)#*ui zx|R+vd%8Yyb|v%6zkZTBXazdI%O??LeO;@B8PfM}L6{?DQMC(ZCBocol?*FgalA=K zcC!%WY15abIc2(SRQNF^)hR>78C3~31TgulUNh)YbEEDut|^t|M!dTC<|*TMINtJI zT{=^SDdVt_5q4t!*u@CDStI7WHJY!yn=&h9c#N>;Oq*Xe>j=9owu3PZlas;(C?#mC zLd(^m#0Hy8+5KSClu<=op4_z?jlwW8PdQkBpA>?_kyv#vMr8)45uq6ZlGhcm?_cC} zGVa44%cY?_J`tst;}{4*KIXruBkGXpm@EM?PB$|+ggVO72Tp~UbCL!imj!v}^s zDO92$BoNSul;iy1*p(oY(Ng(CmxDtuDV&Zpc?hSGtZ;^$J~&{wY0$8VLO4Xe5jZJB zFhbN5(}6N-in5nj7)P)n{6+p99GWAFLBPG`E8gaN-sVr&wXdw(9bdQm&T(y& zaaZ+h_nXHss>0fv7Hy(u=dx{A=ETxz>vVD-IPIMsrVk2AI-5-&G+W?LW3p&8u!*G$E@QIP zk*+aEZ2TB8=2QkK8?!Z~j)O?PHkI%O-Z*8#I5BCYgTfhdvl))4$xnP@A znF^(nFJ-ElHjm#z*qq-o>}v>XV_`kIve>3fy!{<@H1}aP;T#J7S#9iPBujuBjY_c23*0HlDH}tulQZ->`tq z_REntP~)a)J73O9SP@;XJfE^FseuxkryW{~ykW|r>$#P~#v$Xg)OYPK+gTsRuZ~Vv z#kvk%4-Q=ceI^EIP)Dyxf(FM!lo=$*AL#Kb>}wi3{ERO8Z%kYPqc2lz#_hL;evOgbn{pAcllk|EB+wBr426+ZDvrch7f`Svlnkmb zkmr|V?GZgC(hO?sCjaC_Bt+j3fi`SxA`(;|fMYp|WQAjJQn~7EA`|RLtjxg(u8 zuCRwOQM>#Z@8r1#L3q3?e>~m^iB-f)f7(l^H2hE=GQq?AT+|F4K(f#tJ8*??&$ z_LH;-X*Y6pVsgD2;?ZpWafm*`;Fy1GaD3znSW~U7zzdE+Bg6Pv=-XIx5ofFLyRB&n zcTWsmiO7tuKRgkM`a@w-jScD~f9er(s^}dz{9rOKkCPG)J|P@QPcUVT+=zfxjO}}N z;);Jz2>NA(ksk^pe@AP3GfE$sm?Tx8G|^H|lP6gJAXKoJKEb`dYfPDiiLqcRhp`M0 zz0AZE;4xITvV3Kxt{BVfh8hCgI=(R|ckM5XsNF~CVU2lg-jwF@G3o*|+p><9%7cVS zY9sK=ih5Ou&|6~ege&A+g_E*gnM6K8;S}8zvJR`TBT5HKnMuK%vhY{JlMzX$F%k@; z5x{RqWtF%A#t1m6!HGl9WC+ev1`e$>VE>_WnT)1v3g@444(gH&Q+PKUhyzLpnlW{K znaK#LV!2)h6owr`j>d`bCPKfAzX**+;wiRSwyjoeS$r;0)hR1NKJ`}WIe`4Kq_6na z_W9lOEn?dxv2ys7hRw}l| zE4C#ncHBIXbmxo3&G+2Rk3F7y`JQ{jYJS=L_#J1w{CFb&gy@ojx7>5Ltd?$EIG!L@ zhDF>Suh_oiNK_nTDb7vZb4&TO#4B176>ZYfSMIs%Sm^e6MSG%Rlbn0~J$HRZavkxC zj>V=##opNyzjT(|ca^TV{Bf5*S>3c+)3#C*h}Q(}Y)sVju5Q@8vY{uwp(nB7*n=GN zI?p4{?Dnp?3}t1>GXJfTHO{aOz74l3;j1rCme=2Eg|E@S>aYDn$M+ozd++2f`wxoM zU2B~AkiorXw-xzjyVr`ivUOtXc-%JuF@K>u?%TX(F_m~`k34d4<*f^s6J^_HkD+cB zoJ-Hg%a0}UkBhG3YaN`c^z%nsI9DObOxu!W%?sxjjx2WmD6-V?$5$6GizWMK-K*ZB zTRHQUVsTr-+rGG7^ltsgwv~zb+rEf2p#!|O^-wdn6yV^#zw=-Retz0)@2)oebZd2Y znd#394DkPXnFX%Ipj(9?=+AhX7J%3zuxZ@GTF^BTg`Xw@Peaed8)0WM^A_I9=kPXS zeR#(^){tS^fagx$#k+YA@8x~(Seb^5($2V)2_Bk)^|GeG1jfRIylI?gTzoFj8Zwi3 z6&56D3d~c`BoODo=kI}Q;KmJRjxU(vu5yB%x2kUo>Fv0SFJfRmp4 z-?WXd;DMaLUp4;xs8joteKZS`H)Z21mC{PBqNY?swV;WI{JN;hyp2Nbk$EBBdLSy~ zFHaXCrwn~uJ#vI1DrH50j4WJJc54D!4`5*`#tCp|m}Gh9UIL7pk= ziNKj-ht8&Q&h>Q-96bf=P4~%TshqAu-GOt*&!$Wr?d>shdu#jFlO zf+;6i-Fn8mCxoFOY-;A{jmeQ*sJd+R3Di4}FyzDfDrD&2Q%g?jV%5lWaR=lkUR zb8>z_&JW4?9-LU~MP>SwwV;xj;CcUHsH4alN+tropy!VS2Zf=_!e)A784)I~Ofu0~*n|g?Bu)BJ;U=6$2O~tnSqf{P91IDOf$-p@ z_A50W9Bz%ptmeu;E#qK-x@hv^?ZWT|RyL&ZJe_o#&*;sh%9uUw?m{yI?9ZL za0a3I31J<)Q=11y3$%O`A85bpwp&m8)6L!&oF=x6W1h7{{&2$B-k+N;(Bx!i^rT;A^SNfVGaC}#J9`OWQbT!FZ7EM(7Ja) zX|*^Ppf^O05Kvj_B$GlSW8jmBlypa{zZ*mfcGdC0u^X|VKQ!!z^_hhtaDzWI4*evE z6UpEZ+n{QUKt_-vgB-P}aug9Qe}e*wXk>+80lFBFh2l40ZfK)fp)qT~b2N{&(Tw14 zm|*6u!Lep#QYASGm4eClDhh)-jD%uAT`n~1`5|4W#f9c{qD4iVX!-(;wCYkgJNQx% z-#0NFifZ|*@7eckYW4RFXI4o#1nF>mL{}w&$V;kRtJtPdim@Ah)Fpc($H`jFTFo7j zWM-I%1|a~aH^g`l5D}jBm1~!8XmQR2!@=++uqdc6f1*xPh zepYAnp>pZQZYcG|gn0?)pnwnbRf4EcV+rU^iu!};%w%AMq~>RzLs}6bI2OE0YLhU) zG@+pgE0yq75JX{$oLAta?5ctz<~u{-f>-fb)G#10IuZ+eU$HdAEe#1v zlW5)uak#l~b$|Cyz9Js&U*3Q5+o#_;_vSgVd}E@pd8Kgoy~5q%;HX&e(i-O*GaN8H z@^b;hF~ic-8fQOlu&gy!7TRV`tQ{~wVqOTxeS1Xj-kBpG=aeUHzBjx#y<$o8vaKa) zc75&St0!-rUv$L__AZZ;>GTq|>l=G+ZU5fhxA%T$|2=0@ zGQari$H+!oLJXi}qh&g`FOGC$*k1O_eKd2xg7nHn1~UjWn?u275D5V&zh=K8iAAK5 z&ma@Awu21D;fFpncuiFzN`#ByNiygR!)-8`L3kJ6GcwGs|GNKI4Y&(&e$O`v>7b^q?L~Q~sIzpL9A)_<^Fd+WlI^u z7|~CeSuj&LGLlXrXxdQPFm{brL1qj}2vtTGiR)pM4`*P@(Gg?La@mX zC1dqX&nV4w8JE(62JTBzDCNue=2_3Ici706zi!vXqZxo*H@ymBn>O3oUxOB#UXxWA5bYH%HDhHaI z+9?})feNoeE!c!SBL|KAmW-ru%eRE^{)dL&GmLu?f+pdNODQRU0lJo$awz(jX=jw? zMt0rwPC3zQKT0Nsj7$AGx2_)Rqx+R$Q!b^2GDeohKQv6aGv29Roh_Xy zH{Y1;`Dj4NQ~Om)ca`ItG?)p$Q3hh_`pyQ3K^a;yK)>!$0X^(CsC+afeb)kKsX3)gcsm{HHWH*RVWFa z5+(@cio_Mw1mFs}&$RSGgeBNqi=^`c_!^wvAVAe}0nV`~l3=;ZfA(FIK)qE3XOrTgn5D7w;5@qs2Y=e@X1~h` zAp@*G!P+J9sGEE*z+rG;zkf!C8{77b4TdlAgZpB|tW)Sv#`24QiLMs$Bj)Eb+~WC_ ztw-Wpk0gC%_k4lns?CeX6IFqSCgV2GjKr?Ttdiy`mLn@(vi4GSJTS418M#u1sWj`e z895Rqez*^g3dSzPtndUdHm|baG8DTQP;3K1u_3`3_V$9Ev_vLh6+#_7hcr`$$q2EB z3UGe_{#Z$7B`9F*e?zrEVvK~euIXItn6LT6`tR2-tpCI2cul7Svwp3-(hw_Ax|amZ zqP|Msiy`TesKMl*Fc^+NK{SK(gjXqFuNp^M;1J7K9sq4K6r?pxyBsMe`mnOR4dOl< zFm}ScumHlRl-%oZ-Zl32G6|}&Ml!QeWlGwiP2{6~2VGMTT5TaB5Eq%Uun$k!heKn4 z#tdA#A)#oEAwFec15~J`U=HZ*WRMIST*BW{daRorB;SuI5CA=-<^qtVi=Mqt&VQvB zW-O763NNuRq-UaP!J@4z<7^bAiX%|*)7aN6I?;&%{*r{Xc|g$|l1_afczsARC0@kS zMxXGf^io+zBGD$M-^VJ@E6ilTsySt+905Ed<1bnP#$V})v@A(#7f4D}EJa}_Lz6ti zA?W!v_)nNJbV^tq)&dOJCXFy3-a&z{yAB+X#Mno8BalN__Q)K@^FKh2wUG_X(YkDI zTQd(CEWXv^s<)=zoLVWaj~CZ3*b~K@W?dh9%K;U+by(c6TP)v`$ltpZ5%W7mSLdg+ z=A(JxxrJWQvwPXL2U2la&G)L`mKTRUI}o^Z z!%9h0yrgNRWJ|nc%W8rDt&?w_OqSFoi^|q=xYDf;IdiGw*EY`SySd>T^=o#{Ui83) zbtkK?T(MyP9gn#Gq?mVV*>xJlOO|&mwu&7AF>paFeI{Ag1oaz%iA)7v$c?!LuwW9L z$mA|~-o|*|Mk+%=%}POIyr40;IdJEh zdz(+pO|KNU-79Vr`!3L<3->l3S09}@kHY0QKjbX=j@g_CSQ}H!%D8i>RovMl<{e#j z5!xnM-o98RwjU4=oDoa=o>oRkswhitQ#`k6VP7J5*Q^!QWiMK>RmE*pNmotMbv}ue zXRf-qtL{;b+3tAc(Y-E9x*Gn@XmooX|UMVE|stjhAd*DcKn>*}2r1DCxR$I$m;kw&%V#Z!Q$~Rwqkp zBx`Y^qjS%l6|?RGf~<3W;g8Dm34FWWNG=F z_0xR+N`7NJzj2{4k-ufO>tk>Js;>|R*~QXD=hD8rb$3g|qBG0BzK?eY=H2t=KXiZJ z9rtfvwBGY?zZ3o0^!w8vzB1=tt!ZDZSej1MoS5^h`sx>4i{p33mwo5Zdl!1|oQPMS zNfh^qzCNln|GaDA@{(uSc9@V$j`<^EaZAG6D%x5>_X z9@R4ZlMQ2`sCuQSDPGi+C~BT{Vu90~7Yj}UKd|1qE_xc4ZH;WrQ|@cw-)K8#MF5BEcVU=MzNTG`o*pSzC2qaEDc>cDo~{Jgl7+z#i_ z{idJqF_M3uf&BYT@c+VSKVdNa!Wr0je2?ibw;6ErmwPO5V+D$?1JoS23TbKE5VBP- z8+!+CeovoxV-s7qmqx*$_^e6bcx=Q%MIhw5oAXo4_xuPX#13$XSmkwkWl62FsiX|`QGjesT`gD#wzpkIn&mct>EX`ua2L$#adK;UQ$4_<^s2uwz3gMS(yhMMp409 zs4N%QFPhqgbL1Q)=NKHYL;7YPU_yerdWB8tYzpsfbPL+7JxP{6x1R!2t>NU#p z7m4X(SyNA7Qy;^(YA{vC2sGM+*XTXt1`knsUO7E5-Rvt>YdwjN1T z^~fkyOc&)fD`nf_W!n~`iLyPjUW9Gkl`O7YDQ<`tHzbSe9$8GSj<~H!w3XfJg>}bQ zoGfWdRy8Nf>sBi_u2k-gSMFVUDN%V8t0ig3TQKA~i{1G-$TWc~O(;k~@h!u*x@YZ- zh%_%eyKqeO>{zz#l<<|MV)4d=w|QYm^mcq?>-Y@;a5jArAwAM-fn9;U-1~d&ojXh) zSnE4Cn?7hUkbkoUZmdul;*yZkCYcriS37hzZJ?84kPY+~9v|rRJmXSC(`hKYy0|y6 zEHZ>e%+G@@C8jv4hR&*|R#oobGJdnn4E^@BAqoYmbY;^wld4N_O_{R8S4OyLbJVTG zhXT$xW!46pw*E{bB~bdy>R8^WALe8g8$xNW(E?>vL5Tss4unL_fj4R3L~YfHZa`y= z4_hf=pe4!}(Ck+?pe?c5!&n9(TX`oWw1&hg(y}vIs*7NiWXdB6yeb;pDz{&*v|bFM z0W1?<3W9(1$k0WFDJGtr4d6znGzz~)4^EL&N6siY`Dks42{&V@Cv@{ziz#SB752Vs z6pW41JPJFa#-dRep=OhYp2SwNaaU zodKmH^zsk$=THBjNGxthcpDcsi{93cY^}e+>~CrNBGQUad99?=!2Pqzz#j9T1kCWh zzsCai1B0DbmN|+$>rEfj7|365f!kBXveo2YdxmQbH%UzkH4cra0@~_bn>sA#xin>Kr<6H_t!VCI?gRm;gfGa{) zG3+o(a@^=#ky}WO87OT9k_i>V<=bBo%bJ$G z8&|8Fzw^pB1Iw<8Pn~(+?huRWmYwxKGOV;8h_@eDX+LtW{m5!%<4R>)ys~Yja%a49 z=W0nUar?=#DlGA=+68&4%JXY0=gqr0^o<~dGVkeQqhbl zIyr!^V2JdC*2+!E+MpLLMy--EO-@WgH)Dq|FKx=eUh9=Isp2T`I{d`7ak&+gjYx!Q zRCN_qb)iz#Ma44aWZ`V0aMP>3l3~%)#*_+J5Cm3xh&Q?R2r;-fKFiRs=s37+?pie$u9z$0=89Wq zm(AQ^RK^pqiz!U84Qs4WeyfIgYo{sLi}nyI4^JP#esU9jS=jJqon?&=ly`nY@j z{E>vaWu}|;xdV5K?$|^}&$1cXr>6ht9+?X)3@;g$TH`x<;;lV*&x;qH5uXjlFAU#1 zG5qyG(LFNL4Tr_0ZC1AZfUTWBD>}|Co6nTBQHK95Kd{~W zzQ+tVR;r2x^6qm=&rPRG)S|54QYGm7t=13q#(-?l2BkNr0SJs*-_6GF!w^n12bD)x zx)=?ks!EwOjvf*Os$05vOLp}@dOEuBR^*pMV<000fqU4cye9)ah2vEN^|Vo!jzcGF zsNfBZ5~sFP2F$TsHa3Y@4UNLhsLCj1TlzGbh0Q^^T=W>Qc)1p`K@-%LAZhB5uG}6- zRu$5h>fQ9(z}j{r7SNe>>(EW3etme!5752bZp;9mMae=bDPg9KfyI2Lw-nGIA`GtM%O?7C43=F_Lk8NkH1lBGK(SKsw->Jlr{Z3 zu(*%oOQ?kC6{YZ($$qTLS9&0z4RS9-m`eEB7r|desqxj{bwkah^>x3lK5BSuG>oN= zwNp9ti(Lb3(R!uyQ#K{!v|Sf}gRal&cLGrRFUEJHnnrfDn-zNq5S73Mn1EKcx+zCC zF(SQAG+06QQ9Fgy`Fg%VFQ-E~Z=rRVfVYCDl#J92HZCo9gf0OaLIUJE66?6A#8)Z3j%_21tMXpqkbw?R z9;HQrc@Blh1eSxt%M!XToy%hggq|+&gYDTuAIC`SF|qO|rH3krmHXul9*FllECET7~9E9 z4GxyX$PdRFvxV+a(qvc(hDpFjZ_E}{GtDae4G;}{P-Axv(w$c+(iw^QNEsa2ZPe8J zRU0*=bxpet;sMndIl;LU`lOr&@bgfbnwNvN}^@@%9 zJn=oGos?|U4gEhZSjt@rECd!dFI-y8T{PV;k2mzomg<5cLu_}ps!@B7w8;P|ys`b} zKQ-YPKK=tfOI@+|uSAC@)qnVJl%Z^43=W38tPTlnyWL zpaNMh1ggbW#i{{gP1!oY83}_#Gyyw#DBsO6$FYsdVm`?GSVI%U+U?Aimt#a*wPiAp zJs#`7Iy$J!g=hu1|B>irG+owMeUK}mtX0Xf)E_08g@_#KZ=Fgn90>8kCUm2eP5q2X zA~snGm%O)RtU6m^&nhU3T@I|Pp+qEyPzfvxVF&V&G{0p!&;^rkW+~83IH~+Ju^0dd zf;W)vNmxftJ*B}Q8pOfr)KkBvTcVRGGY!j>4;TivSu}RrF)h*gzFT;;L}VJe0Vc|}M7Qpf@OmF!EoY8Gnwx)6K|kv%I|A*OL7 zC|Ei^lg3FYFYzoD@B$mTjk@fCu<}$ITsc$Dqhqm8|$HB^~jSj>YKG zvH12QVo67$q-Uk%WW3~LqU7{!&&S>pW}H88r}Sr4?^lTjPKiaQmwjiF{@VFVw_|ARcU$tl1)_%Xdex-b4ynLhBymv`Rltb}flB{0; zy&G@ez(gVjPOk(m!~+)+foGQ+`V-at*o%~X_;K;Xpm_X}=ownJ@oQFNwfDX^f37#~ zT`ziSu~uwDZZfxUZY-X=Ui7hhZ!-OTL9(FaRymfYi}`ifex^P>zHvj|{k%Fcw|gz%C{~)^CuVo=%UzpUVP@oMA_i1R|U{(?+ey>dk;|BnwM3>>i4t(UAqkAo{3t7~bn%*dcnhEZerST-q1Q7u}*~ z-?DAL24m2n8LHQ#r5-q~WX`n0oarJ2gWF071}j4_AgeDTevF>?%}2N%3-=cm`_XNt zzwiVqk9L@TzR`f2pLbZ`#_|+Zgvwc^>&{dN!W>4}mqQS;Y0XsrU$s^;eOQMK;ZrrG zD6V`#7Ev{5$}`B7hHR#i>~afjb_`wGW?7e}=@L}QO0OG(MB`KPfkbl(UhY$kE)mY${@4EzQjPly1(NUC2g9TlDc@IvMr zZC>=V2{Bfwp=Q-$X-TQr25o*TMF-PLC3Ms6VRE!t>I`aAg8Q-QmgXzW^4M8RK5`)< zO;H~8!N3^shipQT;jYSNoSyXZ3rCUBH);O(8PWti!RoafF{~C=y*2RWz)E35ys#lr z*fi@{^Kn%TfA6)GIo3Q}ZW-(-#s0U(-W($w79d;6>V}o-E%E9t$*TI5s!j2#O%LrB zw`a|S2-wt_!w&#pzT&x;6W%(}RtJkH9)13(Kn5ZpOG5EA+|FM({a(=mHrS+{o7uDG z+t04F1mZ1$M9V?3xl8mMTDEmF1FBeaKr9Xdo($x!`@j-a>A({h-D4{?>ryAZPkumjO2)au&ETdz&)34k5OBk%EE#9#Wsq zu8Nda@VS-ft+a|yxQE~jfyy-X()6tc8K9FAgyX3Cd8&Gv?a3ric58paxe=?0CGCE( zLZOs(@A76sY2{PNR0=8mkC7=&sY7D9!mWf=i+i>Fys zm3T_hX2x~fp0-x1Kv!Z1TMq@rY_^i4lrJok1 zVFeZguW&LNjs5BfzOPq8gD~l(v{Tw3nbv18Rfl?tgYehL>8x-cZmduaC2ycC@2)KT zXS@^sPjdbXh02j_wkbPgMQM{|>{Xs4k2wv3601<5GK!TKXfFkfF3CNGlHt&d72Xj^ zieV(&MVUP!hgsU|$j4?OCe%h6wF7zB>(?I zPJkRTU9#e)a%4gw(SK?;CPOGwfH#Al2xk!UheU|}1w1qdv=hTtN%VcCs4iYq2bQs@ zeb)K0w@ij$9}vp}iF_iw`G-Z<;ZI9yvtp>%e<_9&x~7ZxtWH*6Klw7$hIg~~?4@Y0-Leg+k1gxK;2y)4vMX?!7uKD{-;CBkcu_sSEI9r}8wLWki`k0E!}d zg$r`PKN@nS$q2CBJUzB5S4g>$tCRt8QMb|sFtaI}Jd`d&OhG8msyu+a=n`yCz3wx^(PoF7w$;Tex*kMjMM5(#-A1ckc zG>q7sD`DgQ8x@3{|3oz7|9}V7j!-?Mr&}}9**L}PSL-*g)OX#h@A~%fw@&`klXq*9 z1<aB@4ClW>Vk4W_~>w1KBHqJL3Hyv+yZhGdXmTk4GHV56W*h+E6$g-`R ziB7$Dr~bn$fANagJ0N;qT(%7+z2%~<{PR^hEXPcT<;Zc$fjM8cRZ4OGG9vb!{l(S0 zmu3AP$z@xA6k6GKG`{UQ<=%eIs3_ycTcfpc|eH2rR8NoO7RL7lzJVfvsg zP}F5H{lsFyO&Zy@BP5$^K1cPX&oy8|8Kas$I)J-SsUeSTaHTMy3=kV+E4B_t!P~w| z%&eW>C?W96P!?=!2bqZlZo`Zq?8>_P2$eJA(#|OWje2@)XGT=qDq}y5zR{)(#2jW^ z=`}zb%YweC^o-Fr`i%KOYo3$=x2bitUJ zwu%>8$m{SErDFy)p#u-jg2!gGk(5PDErZ?8#zrP2bAwwk3`3ZQW!OP+2Uuk2Wg^h_ zhp^jVFt#mw(fb}Jmuh7&Qu%~<*~z356(q7Idwyx;(It^bQaflQP@okU!T>ppP%?4j zMY?4&ho*NjNh@gf(W@|$NH^BvL~>3b=hsB)NUV`aoooLc^PLys2hNK7&xwxn%jOGf z#yrpc*aV^YqGff)-kpgru>oD#uVIndct^p+2&V?oSrat-?{#?ufG4)J7G!fo%9yZ zdY?`fyMGe7+wtMmJD`dumu;sQsqFYsG;|hn9~9aT z?lgT+6(~Bm#q{A83vSZ*LZV8HD*iPpE|V&zk0w1mlzBUuXTz2vS$ITcOyYDVnP!2v zQ+dVTR)v$s+dVzDs?o(a$(K@wG};F=ST-XAlpdpV8BE1-?h+v@rIc*Q3v~NruWOOvmMF(yyjWO&_N^9tTGx zWW3Y(&zx*20oQKRRHwXMR%AM+aS#bCSL|2E`#57A*l-vteDqR-c8DXxsyzmygW&X7 zUF+~8nUWpG{)8Z%p~GNvXJh_@dQp-kmcIG{OH!Buk>tSGuB_QTK6)Sf4vbxY*0|c3 zb#!Cn4we<^hXlq~ybfP4mR&HZjfPoPY=)5yLkS=O<^lqiWLC+0yl#Xsbh&jjE`JXJ zRanH)W%IE$qm$|0=C_Dj&c}-{B)rdvwr8Y+-m)#X7kx+na`WA<{9@bP2GP^EY&$E> z{fiqHD@D)#W!nMh@vyVIW~A0>{IV~wFGrDn*Imwi$KGi${VXgrKOjysi(NWlogQ7OO;n{;bA)D<4k<)}Ob?|f`@YVTZA*ib%g>AUvD z?#H(DBIN+PKv(*(&Q`T#XWJN1r7KolSv)%aLB-Z)lt3$;HxreuYY!i`Xv@{;9-k-E zkbHS1FZAL2dNkICUCY_J5d#E)J}Lv8I>!qJBwfeA(N9}3qQ;ba$?Xn>QmBb zSCUe<2*-d4%%YOE&M@>QdYJILsIFK(;DM02(l+B_Mwh|Q!Ie3FD|8%f4KEw6sk~G! zb9{YD5eiNRZz)^@#m0#nQGyh>u=B3tnPyW&vyWf~*wS2z?L;M8bAXC{;?Eh~rc-J~Vv8f9eKsnuHBS zCd6<>(-EMwkO)uJPt~2l%NBDgb~|DqBlI3PqqFQz>R4-WBo!uDIo4*95BG6i5i=12%< zzqdL7Fl}l=KWE+NpbY(`$_P>gs7;}Of~BvGjEArXISwF*(w6%`e)}&0cES!YVAVcJ zXUx-v@{`z%R^O);0xu;K1YC7OXmtR>+SGIe;ZeDV=w!l(|1cpi*-}L+M$a&-E$T}3 z5v7w;XGOiz9`DrmPzo}Bq9BNdjjeE~9QK`7@x7OWW0QCx89|hd^HA$3-ymDGDt9Jo zuF&{Z*7K-kTOHe^P9mSQM>V5V3*eYkI?w^ss1U*~0oX_$r`}}_BbJUoaCHK`St=3b z!gi&{AVn%{@Q^|lB#IKbGLEAX(VHiOL!n{0Gs{B=wRs7L_<^)hZL~VJQ|SU~H&Q!{ zTreDKK}ew|9HgO!#wYtTI~VKQN?$~IwSxn-UMQiWTQYiJ14;&p&qENo>l96P#7=uxv;c{r?ax<(6 z$blU-sbrKjJb(Qk6@KE<)do3HoS$(e9MlpW!{UnpP$nJPszG~8MgZ-Nr1xu}y~^lt z5B1mplvrsK84QeGPFu_|G#651b=}l-=sJuT=!(n;C>J9okwzTkr zH{_ONG!m(_u9Gqkfbzh?q8yI$;)^d%vblwo8whtCUx^O_4Mw^+NQGz5hcOYOk17Z- z`It+!Dj409lE)4msy3j3A8yoe`|If_2?nEbbZRrQ3R zvRtNYtNK_{I@v4M9>B5%noj%^Lrj6qqg&&!QKG@h4yreZcFUx-6>?#woaWNm)R?eF zBDzpREaE2e5&B*d<(Ljx)f_WLGIZ*%;XTeS!+=vT@pmW&Nov9yy$3|wf%Mh)$-JVs8s2QU zwIh*NJ9F%p<O|HnDhn!ngIFD}A_*12pu2%re|f;%P_w<4 zcNTLW6x$DC-zI;+cCgj-VS@oTAGTWHrfdV)-zPLaFd(#|MzKYOnP?D>gAHD~GQ##* z6+S~Ujjv#DOl+?Il7PzRr1k8qN01^~I&6Vdwd}+N>|9A9VLZW(o3!l{PL-XQ7y-Yf za2Z#FgCROUS(07YodtLF5V{h;w?Na;X_(3&Wt@nx{XA1vw)=lXU>ZP%v~p9HOan;L zm%yyRx#S}?vOsbk(-hJ!olH9tNjccIz>_!5Z)z7vdz>oN9<-{Pb3_Ef7^M9AcQOV! z(yE){jK=?v|jFAFi3I&q<1;P;ugcG1MIB;l}KoG)|f}b9^ zST@S8N;UK-M<$`tQknG>G(b)*y>v>|i-nh11+#%3*O60C@60642@Nb58+THD3Ixwf zxu6k~-7J~TK;NN(b7zhV|Bh~vQ7Bc=)7#Z^FmU$d znZALpo->CI!uPB|dm~6#xL$-5cyh+cd6S$za=swvM{scH10kT_r~7|G&X39Y2XcM^ zC*?h?_OlaUU&n-HdTL?2(Xn$tgnv(A87+H6KHA4k+Q#Yxh4e`K^gs>I`ViasCY7&l z)`D8WXA*vbZPdcH|6p4)2((~_p{^PJmtpTxE=H0i30`2ZD1i`03^KrsX-v<|lv<3| z;nd{GN!llt0W@SSK5d0+M3vVPC; zwqt&m*tS1Wa^NE_kn|P3<#^L^YuEfM3Ey_4>};8_CEfXN^xy2i5G%*(xkaJX)eZYtp+1j&uB05lIE>RvoC4Mo!f)`Wni5^0PNXXm~`hR z-QHwrB^LJ-8c}2{0I*lhT2^e8aa(253y@9Y zzQMd=$d4QH9~eD`!v+dcu*SS=ek8SGD2W?N9vF>=&Gf2tjeP2diq7)+;rVAMlhy}D zi=l?Xw5^d3Rj3rYdZBKigu-m1Fy$0xGlePFg{fOCTC`D^oezxX*(ZrqSNw?1JgqO^8WTE&#sPL@{2>pkl0JrAw<=;=*`a9Yvl*BaEE>lf=5 zSv~Bcx@Jwho2uH!YMMHg=+wfn()H^5!|pXR-LJi9)UiN@9 zSW1$%!dc@R?wjs!dVh^g_Db%Xb5_h{adX+N?aSu%N%d~mvbj#X+qZ0P!rj*nzj}DC q;MUoh!ylQ~VK*^z*{_XA11tF~C0|5{>kupRPVYCx_gl``a{gbQf|$?% literal 0 HcmV?d00001 diff --git a/__pycache__/models.cpython-312.pyc b/__pycache__/models.cpython-312.pyc index d5bc140d96ae599d69452bfdd84c3c608e022500..8fafe4ea6ab0d2e0f6b4c0117054ff16ab01d27a 100644 GIT binary patch delta 1988 zcmZuxYiJx*6rMY~JNwFJv)N=Hd2DyHX*L_vhg4!?YaX>tl-eK~Tf0r!PIso;t+NmB zOxh+04K$z>p$(@Jiwc3(AJzxTf6pNv-&#sx*17Zj&zQ@y7m@Mvc+Y+v>IEUyc_?lm9WU@q9i zB)11y?|Rnnx6}>D`|9{6i*H2UU&jY5z6trjI^J!cv89_KF2>mejEK8fZXwVr{w%`M zjw~#tVvu@rU-h8PC3Yymc_9-~S`ed3D`J}xLTsN2rz3F9p|M#ANI{l{&C+%$iY4(j zI3l%I=cIlXOW-;!a*60Jf+T`2BE;jo2flNTvtBsnjKU+X&shR~arHNDA%)FS%%LRi zzS!K2D{k@D&SOY_?S27wwtC*^vqIST4$^F06Jktj({?28hr8|JtOJI;hy0X_>D*H; zYpPu0Tj84b0NVk7czcI^rLs{tQOLskk^ zXCn8QWZ7Y8N=2*Z+x~Ghbf938Q$zUyxDfA@o+EPtK8ojYMq3lfAobC-EAotff4KH1 z4&l*XP0V($PUI}@I!j82R+bgLzMZ38Cqoo?BHhOyIR>q@016~;TNx4NGaYejcdn^NDhflbJ-6^!N> zZzdsC{p$)&D-WVIk#61~&m*-wNlpzl?Z!++HJwFO*X6uwb$**=gSrNIea z!=L^p1O_|cW`6>{NKe($-DLG>pzljI5JSnsDKF9+CJ1UN2R2B#sXk?X1t$7q+v?LZ z-9`axFyvz8!84@5JO*#~U$5m9t6tpg7aI(u$GDH2i*SADc%VRL-QDaQPOv2y9*(W{ zz2)KL+RmNAZKhXI^&Br$Xwpslq|mlRny#fk!VN0R4g zuK5!PrsDu+qt!lyVPdT*vwCTr)e>>_(f@YsE|!&PO&#JNqnAF2`UQmFY>csGA+;RrdhJ4p|?d{HT925Yn4A(H|39M=Ujs! zfR@#XL5_cD^;L~T)Y7T3}^6MJWAeBib`l!<9(=F*NOlJh0si>hf zoY7`ws2NbpD%8eME1n>=r74@4{ z-Nq(+3u?=lHVf)kjAQN)^a#V5)p>wFH=YEmcGLI6Z2B_tJdSBy9ti6(qptw4veds# zgxgFnnom2>57n?gnT$z7g0#}S`55;+-D25x)T|VpmnB8DC6a0Rf*cjnax$TiFwWkL z;sq3KAns^LBer=Ire%Q*&l)rG%&u5mItQ zk)lLOlh;<8=shbY`x?m^&;c>b)R`0#B3MSF$)Q9#B8yL2{*76-n*#KRcVYM}8kUjQ z;fIJIREw0jER$p+E+x{-3IP?il#r501Sk~c!~kz#i;+GwjH2FETy~W?Ifu&gsPryv z=ZQJMFUau{3wL~z4&+NU3@NY>_}xN}SJcxtDmHIL|2fAs&LskY@*P_M?wV07inU6NQXYie^Nd3O!!iK(7XyAvCUT576HQg@&bsxQcUp7f0!1NkLSe zJmAjSK?8c&#fRy&3U9?4?nn}?FVTP0#<&CYc-;;zMYDCUaP9Pub-mnGT33JhYX@${HqGta`Yso$1I;>S7!98-LIN;)x_CFb z+P|@@I5nQHs!L~5l4^)ciXse1>_Al=kpz)!vWaNx?$HkT~)@-dq^!fxBdjK07}>~;0Y{c54L|feWgs}Z6s(~=)71bDJ-lvtd;e)g>?k1q2bmPtRqTga0Ya4AF z@0mE8J3Fb+Z`_tf+6tCk^uId-GTc~!TwrqN^zNzMx6|W+f@@c{bHVAJFy%~>b(l+U=d-bNuA~>5i$6 znf@Ec3hr?BDBat#>*U}4fr;VVa6a_Hd}Y4pRQ`N=e7N8r%ImxfcIQ}fG&wmqYo7P! zyQ3q?f?doWUU0a^hDV1dGqd6OUHKEz$Z)}N;o6a6&Be`PZg4-Q`}n_5bEuxymleam z6EbAEZL6w;vkt6N9)W||WV_Z`q!fK% zlzs@5zE5Z1(y)i^^s3EB2P&bW@I`tX!j+sK^PZI>B>QzB{?Fl1=;tuOQr`XwnoE@8 zCAgBeOO+QP*}a&4(<_j*N*nlUp#u(|LAcX%jXqZH#A=Fq9rl zvey+0;rC$HXQ38XXD<928p`+RFB+>)Kb6T+Q3+3lXZml&Z^mak3S0L)@Qs@a&TgnN zrC?pln`t>bZ_V{KIkZ;11`ZJ$I&p(0xA&ikV{`S382YL)0);b0B9U*qI}##3?vrHu zGWGyQD0pjRH4Col$=>O+Q)efS&U`cP;PXbFB|{hQ-SB2$OyPY%Fi{E1cxP0IMTcVS z{{t)jBn3LvoD#6yrzMEr)zu!%R*L;R&a&ot@&RHfKGNvG(R;`+{dC8VEbOs~3f@Pr zw}k2YEp@~A_9HKWQ1!>)-ia0epZF1F4>9)E31Sy3CMz*4FW3pPRn{#3*!W^RDGtS? zJ>>Ub!NFJg6NpD;9LGJ>gdS>YKh|_S)NKB%#`1~2%JJrFS?!{(itFP>+8_}IbAyW- z>@Du5QtOd(4sL)OA!AoYuPkb?y;xVywR3PEoynb9)L?tjiE^Z8?96Bh(Ie77HaH5C WVSCYT=ECFJ31iOqFAX%=8T}9chatWI diff --git a/__pycache__/oanda_broker.cpython-312.pyc b/__pycache__/oanda_broker.cpython-312.pyc index 49be3d2c10740941a19f54c392c0a29910f6d4ef..0b36bd1b8734c8f131d07140d55c5409c3f712db 100644 GIT binary patch delta 20 acmZp+Y_{Y+&CAQh00akC&)CRaAp-z9AqB<& delta 20 acmZp+Y_{Y+&CAQh00g(BrfuY|kO2TUX9Z0F diff --git a/__pycache__/tools.cpython-312.pyc b/__pycache__/tools.cpython-312.pyc index 0f084b6d720d86ccd5b6666d97421a34fabec2b6..816f68fc54527b95c5b9ab2452266871fb6b7157 100644 GIT binary patch literal 3137 zcma)8O>7&-6`t9hT`sAW6ibvML8-a6h`V9RYLxTOrx>-U~d8jC1MearbwE`Xj+O%X*njR zS&UI4kxRsqR*5BVOa6|SBIX#(Da|=Gr$z&RM}a8w*hDhndh&QC=dsI4$Mv-L7Tjbu zW2O@RFMQfoXZFTmP$D*oQH#VROS2?fwq*F2%`C-MY}J0jz!b?hFU-eQ|{^R;h|edF$4x?Z_-{qZlauix4@_K90Q zI$eCPa&)@dZ9Et)z4h>|O83adFMyQwk$>;WByxlP_?2i0st3nkmml@?jh~et zomF7WJ75FkF@!Uwa6ImX;_-CWT1??skH>EyWxXNN7OS9RG zWQAbdmXo5oCtQ5Ro&`MRxfjy4314V~5`lDSfv+6#%}YH6W7>&Q5o`|Tgdau1bom~P zpvLc;ND>Aq2h$3WSrtrTmb8DM&lh$kB`WI+Ib!clc@8&O3qZqpF`W8W$$C`2md^(|}*Z z831yZd_NG`U>oyajC~#78F;tI)UU2YyqYelfEXHxy0qq*o zsF;HZa+iG9*}ay(mtVVc@6Nil(|Mw-oe+Ax5LyT&LZ4o6UhLtiD&|8MO)WrP#?G{v?IlTFS_9?L#tY95J&|pO=$UxQ4 z0*w-uKpZ1GV*pqQPda&N$be@`He=^iOt%Y0 zz9TfT|6T#UH*}@`P%+-ehYHpk=YrwUP&DBCUxn(kX!}*gV{_SL##7CO1v_KyCnY>S zL`BhCui`Nb3{UkRKn~^~))GH0dKwWDZ{3nVj@N9W!l5#Vxz5KxAf#UIFY55(D82LW zo!#)sO8DeX`1CWP20Mxq)v=4aW0xO~U4C$_H1%+5-QA6hR3al!dPd7vJ}CaGs`u^c zk%}IvcJ-}?f8YN}|9V@E&_SbW4DK4|E5`Y9@DxsByb4z=dU$iHOP-ceKF zfLaH6DZG}ums@{jr}I=@{+O_P*Cf5+g)2bfVj4}-HSJVu3hwN>CgGkU&<+{;fpyTXrv%6kMlS`A0TBoP7j{y$qyPW_ delta 1093 zcmZuvT}Tx{6rS0g+1-2nx&EhRWqP@`qCP~vMQR4U#HCUK7fi0sYB%?)&0ekRgZdzt zL6~fyz4@pJ74*_$y#>9jNF+uEPT2>PQXGmFb!vw&q}BMY-eWGPH%imftLY+@5eZECAE z!eq!`+8njC95#)mFVC9|q2mz%h{Ov7tkZzFwll>4e)Bf)tj>#siK%-pNW3jj-7F7` z!Ia~q1{|AH2vG_l5HAC{1VBFmRS0gAS3%FU^!ayEo4o`3h|sps6s-PVS<=hUgh>wB z>w>*5>LSdrjUmD!bHs`WnG7i`D&(m5p0+bd5(hLpHs-h{<}pZ(1=NL{faFwVk9fUh z4~w4iTx)-SdNiHw?}rw+(2-fRojCu9Jc&wz$$#51qTOylVLz0x%39&Ziy;8Cq7D`> z@k;b~p;VrdQ9pYfdJQh~EWIyr1IlitjIbRmUz}Q) zTAW^(USV6Y2H$AlWv?$7Z5SuLr;&~p8BUu_ITN-k|1==?#?qsKmKqHCgCyf zXT;Rtr-DlFMzqrFjK&KqAlZDF%)1}0B1+^T_8v!@W>ynx6)$VnYt{;0wZFaisjGXl ztJ}ZQo-yT0in2U2MIVRj^V~#BtXXe1z@A*t^fc4 diff --git a/__pycache__/trading.cpython-312.pyc b/__pycache__/trading.cpython-312.pyc index 968eb002ba444997691e9361758ec9e03afbea5a..35b0b8beeaf2047191cfc48d6fcc48258f096395 100644 GIT binary patch delta 853 zcmY*WO-vI(6rO3jyX}^iQbfvM+?Eun2?@cAQ4}OrJs6@9IjkmS(;3Rbwp-tB6F39sa zX17*M?xb^(3A!^`Sfqpz7IoCRW@=#^bK>=cnFwRW(M=uuijy>Z@UJ?ldfH4=5+R&2 zjrZy( z{Z3E) zWjKdWN`n*z`m*J;cp1P2kV4R8HEK0&h{;qHFZB83KN-x6FM5$Kh~N4pBQL3E9M@u% zHQV!Du&b6+VU};f3brQO_meIaSH^}iLG)I639q5mxxeNzue~((oIW`<73s$e0UjX) z3YUKDpA>z@LmxrRf|>`HC1pi|B6*tcR+wG&gG70=%A3CJHsBsMN(%fx8!A%s5W$l| zLmn`?{%hQ?RILVcxaZr|jjn$iS$BkY?vRd%X=6}4H3q3Fc8!UJa6h_>0;{>TJTnb( zqy{}zx3Oy1nihB*0<|gI9z2k(zN8ta;Um(IUx!SHz5G1d OKFW`XSA~(79QFs7VZ;Fd literal 8886 zcmd5?Yit`wlJ1$|W60q{5=BuWMTyqKvTVt;B0Em}iX}^aC6*s@0$Z1aM{_8NGG8|{ zvQ2?<6mPI6Zwy$%9v}+qg&FJtryv1Vz}^r4+<3E#1MYAjmtK&WDA*j%fBa8=;E?nE zx#}6saKzB@Zh!->1@_c*SJ(7RSAA7ot$(#z%?QfVjU^y#AJn0d^+(Z-B1&_+cq zV-~pTqt=*h%qI02qV`zLSdBy*qqVWRvAT^hjxh&`!URi)>pz28;4J zREQ+dDAFO#Xrzv&@o3JP#+Gby%VU9J5vG4hjiMClHjjvePek3i=Y(G*0wU4-oY?sY zTO%h`PM{v)PxS~R#v}Y;y7i(S7A%q!_0!2@n8VtTj0QttXii2Wf=ETfaZm_dG8o}R ziVp*0GRO%$k4O7_zUN*3s|oHhpM){I|Gd1!fiuBqZ!8#z`#08nXEG%=@d7ABkYgh= z;Xr7b<6u=&0W6p61X&LF@k>z6p%P=iz3=9}j}H_XZ=UfMnARfGm1nwEsFiaCX4l+M z$=?11>GZqisS;yb==j4J&Okd`Fc1yM`b0Kpw zXYb0Ny2->eC+hp83%MIN?uJelj2d{^ zU`o{W;hOA=iDax#G{hqDX(239{kvi!6$4qMsE;PDf-+DOVFB(;*wDwhU@R{PAX~G{xHlbrcKB0k)%B=nXL zal3#`NGi}`!Y!;B*NWsS{me`HEidV}YWv}xb*$|UJ!?+WQy6P1O4_WcTo88{Q>AqGoz>-2^NK~198o>M$P)`1-sIhHY%ex zuPuvajn|D=iL2-ubrD@9y6qz~EhplVs{0fW^I;J4jVHKRP}t|2aV!0*9jJX^Ow0rq zj88{{TtrBT`cPszj!n!QQT?W90Duj~_?d>I!ALaB`hDJePCR{eLm3`k{zq4 z!w(P*R}xWhxL~>wRwNQ4F)0#JkqC9u+%b4P?l@GUE|Cn!0U9C`lK|<7tMKG#f)8^; zm}3yCZkvR{qWPU5L+wr~T6LG_si{L~ejD1rm!Lht( zkiURvkQ)Hm#(BKV;E&WIgHk=rj15dicpLcu7WNstQx?{@g{Cjchq(3*4S%1ptz zZ*Jr(rfJRAnDe}TZ~MLGT+`8l?O2XJ_OM~wil@-9XYTY@j9cp8vwC^;yb(H?V8qM5hZZZo4w`}V)ve(WXE7ducwl8ka zT+G*XJwc4Vb>8r8y*u;j;z+5XIddW3uyw7zDYG@}T<%?=^6s8Oeed@h9F3WVtbW;> z zXKrM++-|B2 zQ|AXA@?YumgYMw4G7{!R>e%pki1duHurQfmdAuxYu>ysm`YDF;B?JJfc1>ZoQ&Fmg za!Qyti!{It@OhgEkrOCHzIRRz?50#`E(--uj8(m&K&uKT%51>_LH zI1RWGfMKR!bRrQ5C0Ia+Fy0?LdIn3`ZRPM3MLldfxD+5uG|FMO%T3@4hf-VwS5vsU zjH@WFVo-^u;cKC=Gy(2B+(TSy)@T#KbMHf|5}C>XV1p1QP-fz$fnx-7{R*l%w63%0 z{cBF|())|=7oA;sXIH`5J#SvKH$VhZ-|}CzbYm+}_L_A&a?~$%EOwOYol8d-kCr^m zcMmQfEO}e*29^UQx94upa!<+CxRhECf4B{)yfx8I}Jz?}vHb=o+-3PX}CsM*2Q7 z0Da%6$F;>YxR<)`bPc{j-R~hV{fZvynYIdBOZgALPH*4FXGp=~9NHAgVojH9?aYt1 zHBFdBlywmF`v0+QDK1|M6aH`Qs8YMJI#;TA9JeK)+At9=3AAX&3Y_2qyLaubYA4ks zaahuZg)o{`7is0DiltaImXhLTK!jvXKL#?0~G-K;vuyrthja}ev#f^cz1N+by`%HtK)P2e|=%ent2~7L+P|wsXPdJyQ2DVl}j}@qj4$ay#j3gFw$1f3*gP5vJZgWyH4hmGXQWeMf7l$vH+jc zpKavwW(m!Hp^77#!tSx6l=m!zcDGS&v>Nx8MJR6uV{4UG)>PeHvF1DKu1PW;)p>yv zIt)%oHTr5!bV`l;mFJYRHJhH!yu^W7UgE&4BN~5#H%F2esW7{4gNCV!G0k{K<$xvS z3vpqHTv#7JEoG+0r=!sn#O@Hj@O*G0%w5Be&{{E$m_-`f6;7>5eviY6NDi;EXyjoW zcBWL2Wg(_b#9|RaW8>J0A<9lfqn9B6rr5JiieOV%%J;pUU7n)i@KW4Iz=vnV{~J`; zjO!$qQ?$3{?X3m-mU-Qp!&9ntE{rcWml~Vz(#v$#yGj-s`%4Y(%>H~sSIOOy`5^E1 zmt3CATX|PEq*^jfi>IGijrHbv`dJM!F}KY(%~E)I?E&puqs{ofNH^u_rU$eK1BB~U zK!v;em-j!`Q`p`qZ0{7dcUtm;Buq*f=E>8Z2ekJG{GuM%pYxLa4>k^Z(0z~TNC$Pl zW6zOR>UT{9(7$WdLoHHg-aaoHhKAo7K0mz4-{Am6GWvI+{&BJ8CV#hKvdCbCWHRr(W=S9n{5=0L92-Y3`XS$a8wf)SBpOt3A1FHtY);V4&b56 z)?I}=BA`agFOZ-I301cA8VM@Uy+DEiBs44UT)t`~*p${6NHBr~tW6a~BSBr87f7H% zg0EsY+-fAKJAs#I!C$_PCha=HKA=r`z68P4OPVx zW*HTNsq2u0hP?z_HG2rl2=`MEz|BIXK~gpx4Ob%R3t?C@ZaRrG37ZjEgShoF#NxP# zyNW9bfDQ8YQUYD>185cv^7FY5F^{zQxQ;0an#((o3TGe%RW~r76j|wHxR-$VC%9EY zWBfpzf{-^K_E<0uj-d?4KZ9-z$@~F`GB6xF0Qss!RS%iE+lOu*%3Sy()467`-9CBq zWYOZyTfCXc2bQi)Ee|ZMYYunjM6T;-&U38bIG(c{e`s&eAiRR>4J(bm_I~OuH13_J zZ&^#N?RT#&Ut6)RUMuc>Gr#xELhD=e^aHxN;xd5)pp%g7!vM$I?@UofW#gj}I&J`iQ7zqhndDo+_kjY)b z+>(J}YsUtuFjHsq(z}cA7M-1WXJ8ei76(q5?9Ij?_c-ICqDa{1n#f^}e?gy3d@ zTbfy%$#xf9Jq3Gjj_#FB;V;PuU|)4(P&a6VG=K?j{cBucHRi_geB5G3QHV^If@I4di{D4sJ$1MV=cuwICIE&(T6Qm#kZ$Vy=_ zhrw4`+E0;mek5V^bNT>$lj&&q5SN91Y=Zn@s3E0E5PwF!dDQ!7Tumk*LiRwYj>jtIkzp zj;JjVuRSKMg#Rgp$k*2~wces(d-b=@-^y&qRkjnv_xUv1NN}T5&ll3y^C`bfyy+^|edGFN;iSN*3(j@b}AyLv7{$KASHvj+t diff --git a/__pycache__/user_config.cpython-312.pyc b/__pycache__/user_config.cpython-312.pyc index 801fdb265154482ced4136d699bfaa8b881bef64..cc17a795f858c482f63a8b79ff920504b9ca72d0 100644 GIT binary patch delta 20 acmbQPK3$#rG%qg~0}x#3o3W9*M;HJ)as|i$ delta 20 acmbQPK3$#rG%qg~0}y<@JZ&R)k1zl|2?j6# diff --git a/__pycache__/utils.cpython-312.pyc b/__pycache__/utils.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f8807b3c5ad992880798aaee9448d78b16c1d19e GIT binary patch literal 2118 zcmah~-A@}w5a09N**F)r2UmR7Gu)inIy&fFu>|Lr|;J$+x+jv3>5| zIbh31G^$!7MM8Z_`t?vLQmK+ZAg}bbFGeK7+7Jn;PkE_mpi-2+boS1NA+6MXn4Q_3 znVp-N-`sDltq}z4clxdIod`P<{KYqzt^2^-MLN>C49ap-0nX$3DIU%O86hi735_#x zN(>+@re)trbH||voF`3%L5ELwH1B-wL4%o!;7Iy_f7;x2-uD6Tahj|PU!tj2T?E=z zA& z#f=;8`s4lQZ-8VX1)-!sTO6FtW1=|)f~n|Oc{T5C(=?XVW>u@;0Of6%U{I7UdxssGSg{{T!Vi+cff9qD34oD+*dZ{G#9P^q5* zjbJ-(=7#cF+aUc+FAl_JLsM}V=>e8@?rM2I z1%yqAgG_q?$UNEoxppAAba1J&w(r>E@W^^}jP*U-dX0a3w0E>0E%!@jC4PCh`>eqKDu}=*qwpz~ zWn}P(KZ+zD**NZ8&4#vp)i|$#Wd{3>|ukI-jA$ zQ`EL0^;8e6Nj)o4&%KkY(&72whBR31TayM?q(N7%qu|#qU$j)mAEWqY5XJV*x4sZ! QTzuVmuGyf)}0*1X{^G zMrvjc0$I% z(u;Bde<$T4cuFpTr{xXsth@=nEN_85G69~G%isl>1YeaByeKWOSFV74G6nX_RWL2z zRD7SyHMuS`dp;bGr?xCn3L4-^Sh+)B*cTwRZi}+#&4}*2ZSKxMQE^@WX@&V7JP;om@?1Q&!YQePw?> zowqry{z>ouO8A9vj9ipZ1C-68ZDpn1Mxvb%CR7qe)cvW5pq#d=9#0)>eMG}?S{fxx z0%fzXny@WSu2xY&+TNaY|$Q4 zALDy$QKNIO@uTX_T#P&F^SM*}hlAk!4lmut8~Cw8ufdq(=bSsnni=tZX4JYYQZF1o z&79NBY<5|wRXAt7ITD!>mjxPxGsry?hdJ&tUst!Ypv^K&3tnmyPEs2rGwWd*g|nkg zY23%mCa7lNO!&M&5~j{&Rmg2=)93fHhmrjaT}~XP-DTmZa2B*F!bB0LLpYn-3>*Kw zHR2t~SuvQvsj4EvNomtxGMRYGh z#o@L#D*>;d018S4^d6WRmx(&zY-=+RWTMeUKHOQ*+cOy~dC5#9yQbA*keR5_K#fb< ztia%`UTAH$V9<>K?qge<%N1Tb1ln<>!V5hGgM*nk*t9mcV9*W|?MP^|UcpM#4+H(k zXtjk+&uZM(ra$DRH*vB{Ausee46fS5RZnOW|KBWVvjWqG$VYJ>+T>wSkkKLzH$3C+ hhWwF6;Rd1H5O%s_l@$LIR_)9kG%Y>g#umQJe*mG)mYVBir z_pz0VRB0b7A)b(+>SL9MN=SXL#7m!`@@p?tYAbCPsTb(&KfAF>rPPYP%zWp}%sDeo z-oK;V`%>w>+t?Ts_+*~?Bz3ze#J4=De&puhA${JvtdvuN&fQe#^&9FfWmcpG`RKf* zfJ0y%4TC`%0Yh{F+(DyY6ODl_G!BMo0&J&AP|y_ENindSrojkZ1b5L47^OGBz4WG~ z;GBIli&^;q&EeNGG!Gu6OW+}T3p`Ah!6S49e4gUqF3TA~bPZ}`xjf@X6!m04dY-?v-|B@8{j{;|*OFSo39@x;`l@u+FU zDV4kJEyIrU!rDt{Cyc#TTJuZ^W8JXhJ zmhgX~iCh+y6%%H4@z!WhI-54r|Fg8SV8)GYmzA4q-PgKqs&-v7El;|wx#n7zHPyPM zyP6DdZR&~LZ05MzO-;9M>7pi^s?}FbpK57?FLYHpyxK2szT4$$eErm5Z@u#2dUE8k zUw(uyy>ZP-jnBzXd3f9UYCLl62Od5ED%wIWONB~9BA3bJ2zRI#jQeh2^33^Ip%O@E zDV>1)(dwLdPkzS>zqhVW+%G$vCH3WE+AJ9-75HJsIIz~JUrj8=vnf5wuU+xy(|NScL-LfZD$u$@ctw)o4 zB6oQ>#;F$=6P&LV7UPC)j9MqA4zwR(eU!DzJsYQZ{;E}&+Sl@|o18O9H;i9-pWm#{ zrbdSMbH>w*eT)N)M;w04_=)i|<4?w448bY?V6+y>8@RS;JYlADS)<+Rk99Y+ax~0n zv-H?8rQW(8JK7*wXpDe$FP4{n9;(*JbYE*ThWs>W7k?JK(Lw8j>9bw0aLO4DhKgA| zlV8e}GJ4iDhO7tp*Aubcz4($6wZ6DGsccxmnM2Ai>nCPPO1Xp;_z{IcRS4U!D2lBX zw6O0RwZ#$PHfj5LW*-(>w(tj^6DuPeKU zX*g`cQ}cB~LyanGyyTfA40?69_RIM_sEJ~4BiNy6;J z&bx6Rp2@?YAhkzsEW5^83;M$m>C{0vL1a2X^ythq@F8D|CVO#xVD65huHx(YFX44g AeE;o2}_7-a^SQR9GdlpSD4O#>zx>zNVrC^x{3S_Ukm)&VOiqepC` z_JN#qK6k(YaK;hmsB^$M>KbsR%ku{Epqw3Xk9r0?>9YKRd?=$w3I+oaa8Y ze89*s1C_j$w+$Kwyu6*yfpZl=Z)xavzzgQcqK3 zu29ABOPO_Yp3l!1U*)i02ckfM;0xcRlpY5*hV-F}ROsRi=uJ<6E>WRNGoYWEq-&_q z`dUh;9cX&OxIOUv&7mfx{oB+J4N9J-j>8HYXnLvX!mxZkL!Y6}GRLViw6E+_e8eL@ zqh#qEnFx&w;jyUX5JF>oNbpBPqvIoiXh<>-i;=PL$w|p9gkGHpiBTUT8M_1GkYpT+ zj*dtS9}M~o62}8@G&~xTESU14k!Zk2OQyadAr#;t$Bu+fhejk*a3~-|#hAH8&OnWI zLKyLn3!#(YvoUke^Ut+B-`gEC@9R7!XFB`3MwW8VxGL#G%{ZhdB7)`;a1)nxeEN8BJpeMRijb z>7XG@1r4vfNKxnLDLTqxb3BGk@;NijsO2)tX@T;WmNy4Jek66DBc9msm?iXhAWHmtmKMtEG*$UsKfV94&DM+>a0Xd zm2!ptKy9v4MqnLTS5EcH3Xm@K3VY2{t_CUI_RsJ=xRsJAYPep>YiD>T23T(lS#Qm- z-V9R)-L(ks6W1b7!CN-VZ&~-v>cH{#cMQ;KBeY`9(QpUK?@>k&U9aSZo0Ob(j>3rK zLs?_cwn!-(L<}mDR+h9tul_-*2W?y{s9$f__o9*y`)CBqp}vh6+kT+fUC zV;u*c>y-@SyktQlvsVZJc{cTigm6fdtfZkIh98jZUC$jq)^{}Bz$W)4S2@L@$ixWm z7eYXF$3j8EA<|htQ2D^5WE%~fh59Jz)`po$e=sru%*2ug4Dk{phN6;FoH!u{h46_G z?;j6@1yOPYCZa=raUvKDiQ>tL5y{GjPD~8?Ma!|28F$e0)sk-3SXk&}`U$0xrs`8G(4yKfq|;$H$2c%4e+6-*m1m>=d+ zWexw+W-7HVTPaV`vW3cVeXsg*)1{`R^2%$+uO5$YXkRSfwNzYst@vv3T=8P@=B1Ld zYrd<#xrW7(r#>?qy}1u4qucQrWz2D`FwhZn>v&j1l{G@QW&cp!mO;0RT+wnaRaJ+% z@>Hc4&t<97GE$?Siz{FNxl7)fAF*k`S{bmU5=WLQ*a|0Gs;VAKE2NSpEQN>n)?WMi z)vteUVGFFw9OW)sHd8qTOPkt$Rop)3xl%i8yt?jQar@F!yM9%&d#?7%mRZl$)_Wzp zKVzAq+|MW`C-(sZO`$XELpxPikt}FP6f}IuEfj1b_p7XuM^O%=xX+b*vC>7uTz#>U z3v=|vN+VUW>kFx5_ZJV$(22MS-qTD+`QA;&o9%GgX1vSg?qf}N3#@y0=HB&MF~82b zk8k61n+1lIuzl(fb?F1VO}Ec!P<>EUrMh?Z#SaeE8ZhMMnD}yXoCdE8J7AC z0;o}xWKLtDh~x5lg-$HA10g`9C0)iUbQX9<{Sjy(;!1y=`q<{Uxcl3?Q+DUYgXa$> z?d1u3dEC44df|0TyrT8KedjVm*-IY)ER`i1AxkB*w+N$n((KL9LXrObK`GAvs^b*& zCHyZ7z6%|(Nodh8A68ko)}6wbX)3BR@nMyLYj8ZRuql94nf9>Cur)}yx5}!sN>#>~ zRa&53DLLptWrRu@h0m(8K&=$Swe$)DhKch`4uCCJ^4ghapd8o2s)MIvQ1UjYuTZZu z+fc*)kky_apmb(^xN=puaH-8Mv{_qC38nfY(jNzT>-2>`Oq%7t8Y=2lIt8U`I|`?| z&uxmtba0@7p2`!kQ6eiR{ z0-TxjZX|jkD~^OhyI^t=Q}!CWkONj0qA8VIL%tO_&(-qsVd^ zn7F0qY%nyA4+wHaRFH~?0%QD02&4`oqCmMH+5ChMQs@>P%A#1VG^Af0Osr-t*;)hC z3nLM|gh79to0rV3S;(!KGbS5%BpP?jZ%OVvnAmynUgN=KLtf6Nl)Lcq_J6WH@ z9lCnxAqW6@Gsf?kmz|U=Kk2MWIIH5dyKfkidyXac9E~sX?~-M{u8c zjhQq9?!!3?_kH`xa$beYUPSNoA_aZG%SVEuWJG*_-yoR+L4ppZ@c;!5iTePoB)%m8o@7t>%ec~vB6>F&h zp+XTTp8DzL>#zP~+x5nH#m+^0TdKTzy8Ggh^G9&4T59CA`bG!a!BICkOUG{JrmME2 zmATo0q0{8C4z zm@;as^g_OonnbM7gHu-@4KT2NRigr|--dH6w8~M&tepYpRQY2{<;vOX7gns{9QztO zX^_tuE0&4Xq*tsW9qO&sSkYlwgYyzL%sFG|$p$U~ZO{ceFD%+gZr#6Vs2=3lv^Abg=r+BVpPC)f2=Np+#@WDRp4& zq2E!7Dj~|Y)prK6twNyfh-XfLDj?+PFH23Zg2l`Mw2?qp0Ceu!o=GpNeM_rf(+f*_ zLFMX6y{J~OC-pMPO>%%-s`w4awS_PT9npJOwK-|M@g~iVm&q`|4v1=82C@U%amXMh zIr*G{c9vNEF(HD66Cme&_;i?`2#k2iq8GhHCQMsIKnN;vU>u}GUO=iMF=LT4k|iugKr9;#L?s67 zE|N#VRQVQu83#8byj!V~El;mbM8LhE!l#W+QLw0lWCWMhPeLPPJWsP6@)%aqu^&xs zdORl#H;h%T#cyQ@r1iG|NR%K!6n9vjm2t8nVXsKq>k{_5rSiIKFJFE6?XM)uwNkmDA6pfFitj59k5PO1^~CH&=JxxiRG`y&~Ro zRnJC~4Lk2O>?E~~31{P6{(WZ))<*BSh!EL!udyw=EvUb~_PDF&(L)pEECwPY4>40& zR;97|@JH;8Gx3U}N&B&c{TLx2&jJCdg~xlNqpou!b+fS=(pxr?ZnSi5U~WCVuB(x` z-N-^di;f`E!{38nK>`XkJ*+Z1C`ccg`bsd_K(LBKh0w1;PnuP%tt2(7s+bK2xTp$i zO8=Rv9_dHM+iD_6sr^7p9pP?Rhw^-o?igqZD0@CG)|6&i@=65@39&DV-jhOPR1vhi zB3KK@q9c>S7&Ir6PoHEb;!fIVDcQ)CY*qwO$|OuEkV1Odt5#2cG~z!Q3h^Qln}lZp z5Ns`ISRuGc?jhpDt9o^n3egLo{4+&USTm_elFBM244eNG$-NZJjp5}{?0S)x;CwhoYqFH=F3RZ3_-FM6CjBYH6oXvu~RH>!uBQ9ITLT@IXy{hN_ENe7SL_L38cq_hIQCjRAoxTD%*jZrH?7I zA|EPeuqnZu%7>oqhqr2w7lOto*dT{hcazc=MSWd;20$hIq+QQ-0?e^YX+b1UaB1mT zb9h^{N`af=lo73wJniSW*SJYLPtF-EFeld9tGE=N}w_-m`{Jr9P2b$G=Jfw94m!~i7$y($tOlhGd*4n^c%A&9x>FzH2j)5JIkuxT!+iMbY; zQtUyHwD$%_DJlLMa=`^gM!=r}#dKI=PXwaDA<2c;#OU8Lh)`ddD-UCpv9!Ncq8!#t0YVSE}mksWmF8Y)Gy}v5&yJ4I)%x-zF?cKKP%=O-d zny2H{t@kQ+#>@L=tdJ}{^TMwx`ft?Ex@Y^|d->g$uh(1`7wUG#YuoNsw#O^_XKavw z_*_;$XG@fBp5c~?E3Ulyy>{g62;y*pQ z?0_zp^N7e^mvGi4olOa6)7>i>>)L6&S=3nu`PJr>-Pzzs?|li)v1>OJvKv~j?k`0FZm218d|B;Q|nQAY6!;yz1WX3 zEjcFHNt4eUYe5Cyfml%i-e`ewjU0h^`T*dCKZ6#pJ@t}yPhN#TE!k}Pd^HHB~L~&O{2nb=rFc^Ed@v`;M!~`Cf0uk4aAF( z03G1$Nv`M~S9GN#!Ij_Viasf>x>k0z?CpwV@uo!aCcxTMVQI3kAyL?nDyRVWWRZ2+ z4sx_5C&`s1xUwWyli+G*4=r+=z&Vt(l_qQ;ASWwZ5|u6YY%Qv%s4`)%jC+qS+6Rc# z(vYw>EZTjkS}+1F+N)CTqLjnERzg7$lVH!|H1_DNXg%dv6LmqY)x`tdR%oL^j9qnP zbGJXEzYNR?y)kN%&ak@v)dnE=^TrQZMeAaf7MgN#iD>{|1N;@B*jI^l>N=0bVe^dLf7m z5H%eX5UXo%Z&x$|G`)7Ieg^M;g13`ifQUK!B2mC!rK47F%w^q6!VR=C;T!O57#IgC zJ17=0hZS%2oN}wyBR;c?&PK#c8TkpepMZ9^Z#wkNKj(@o)BBNFx2U#2`Z~D-zU}99Y;lgupSgT-IR*faI z1~n7j8Uw|cw?T*%GpKqk!EnX!Ib=3eD{%TDv5gwGi%`gE;OuxJv{M-gLZzWyPlV3P zfOa8t#$4$8!FArmlmYvnVg?Po`$La1M|vDz3-Q%|r&9(T!(`E9(JJHKI%1dCd)Eb; zmZj;3;N33NG2|7UGrne=EaJ&ILyIYn)u&|*Vj1%i%a|+%5HlW$o*lO zVS?VfK4@zX4~{{{ASCdiv!DJBs7tJDm8~#i#I0W8RcLs`XBXbYUVNAk^`#zj4UkBd zK8V`_qXovmkpMX`DT*Xs&IFPLIISgP6ey3*|faEDe z?+je(DllpJg^brvW_Sre#pi%Eq4_W0(ocijaK(M8HR-NPxa($vbDJ03Ez{i~O3Xwr zfBn+e6OQ@}Ngv#=^QYt0dl#MimP*U7wOwsns;YUf?A@}t(DknOhv%b3V6R zu|3(?ooMWi_dLJQ_`(c#r4;m$RBh8-f1-A4vbHTz+ctlEp>`kC6oNZARkvYoC{edP zS+^@uw`=~)LLJr=f!pDe#&v&XdEb%({l|aFKiikcUpKcu?%A5Es(Z*XzP!&(l)La! z?M(Eob<1YZd@egKIcAObz)M_8IU625tWBF9VR|%|THDWiZ@7N;!uS zK52g;VSj;`9s5Dq!4>pIcW!qcbtli#!!mbDy*(6jmtrBGWolF@^PB&Wl=(mZKS-HX z+6pu~i!$@pHPqNfD5j1Th_`1@OdC=wm3HevKbdyxL9e0R8PqrrZnf%o5)D&7sWnNV^0)sPL3>UoUcQT3kWqX;K@0I8W(Ds zABm~;5|@M?ITrT7oiYe=Sq4Gw%4~}iS$G?P-@)XEnEU_|i5CA9N-VsK4Sobktb7&u zmAxkN5LNn{Bh%mY*eaX;3O~lOe-4SnKv=TyFYxj`Oy)4@$Aq}}--n#IinN}EvM;km zXL@k{2ev<~($*IVZ7sOeo^&@R+>LYYx!{8PsWfes^}&RrA%nW^x#78CidXMjbnbsL zbuF)+-8$!fw{@Ysd8wjmwr-Ajcir2O{|hA5xBjn+-!BG|n#`|D zb{w*Dprl700Z9*RfWhqvO5LjA!uZtT3g|M&(QbgVa2*nz5ki9}jS#BxaD*s|!w4~s z`94>+c6dgpC&T-Xkhx5Kc_@ftYSL2|lsb*rYJnp>4Ixkr@hl^wTy^MqxioL`la%dY zl@V#(fj4fI%0fb+)O${{K2xl=XAFd>V2GD(-dY$(rmtCYs3CQ7lwsN;CQQQJK)3^c zZOo;{{doyFONSugjAz)m2p!T4UC8T5Cu_owUVixXUNyllfhWb$B{V7wbJ@C!DOkf`l7lPbALfBv+CF^KyyEOODPIJhdp>oAP} z2{TNZRN)L)0nqEzCtOb4xgp-XJHBDh4d%vy8$08VXqPCJEnA<|OHh zA0KLJE#S@+?N=2>a0i;zUe%0(eLw*jpE1_b3o&d_{fJwLnG1Nu5JuQVL*A&evC#xA zAo8IPHc|>`+Y(-aL^AP#&?rXG!2}9X#q4T<9W8RhESoEuP-BH_Ej6Sqx>$%CA12RJ zGFzLh-jS%@vFLev+L9`*oVLKeixlU&=s54V&lRtwQ^>^0{53&8gcCr)>O+8;>P0_4 zLasWL83Jc3_C*doSziEg)>G5lDJ&1LbLZDW5G?)iF3Iga+|-6Qlfz03Z(pPI}edM?{D2 z1ACr1JVrczuq|spY|nz%q2MP(+J$E5&Y=VEFq#o-u zw``}JMHi>ePhB}M8(na~UZ0O0u8Utg|FtVy793u1DJC4Xsr=GZK`A)$>a7nb#%Tk6 z)t+~L+jn*>n;DB|?RrP2CRy(TWWCF#J`$T^2Z{letB*08J|#H^yBuMiF<-{B!EoI} zQ7;3HImezeO_}uYLZC0W;SM;iRmYSGIDMKvK`4Ov39X-k8r!O-aH&PoVekQB+J${! zmN)iNpf0IKc2Jk<&v9CKC$JERFyoC;RRPR$yQ}y^Q@FQz@0FQW*mI^uXJ7(N*WR2dBju#3@)T%VZLHN2^Y@uHhN7!i0emMg0@Kt_qDK4vDJ z;l=`sY(`p-;A|N7?1{ohkQeTe_J}XxU^*c5Z?GJt257V!t6^gz-d+w8BgkPxH1>;; z2_XpE3&CtYF%p%vxWB~)96U{iX$fB$iV@_Hw>oh!L>X^%_VFoooro|b}!oZ02+Vy0EvPwcr31i@xIYPckHBY z8Y?iZDa3TArE?u~%UIf3$K0x&EDjwy@6s)Gh#jPR!rqi@1Bd4}|OaBK7vAkt4sQy@O* z?lIGgAmVNM&zJ2rfxRGqWK>V6SI0DI*-l-!1;2j@zrTRrN%-}{uM&Q)8fp_oo)l#A z?~}ROPO+3opMkC5$6*!2r$QL{QyDt@)G@#MbW(LEyofkb|ta$LD%_ z`_K#eDatS)-#|$Hq)7Y@#NZXHABslDaicnHpU&K+e)_2vAfjRm>_9se5?W%G783l_ zvZ*D;)g9kZH@cyYkFDDs;D;x~Xozo*3KOAvF(O3U17fg#Bs?09wr}0IabrF7doVQF ze&kam_pz$9AC<&-=?oq;8d;Zw5U_Mm#j1#kRGCrh9q+u z!iX4*qDHY_$_0)I(bF&&WJ|on;Es1QY(*z`y@Jh9YLT5CIO;S%!jsIC+{kxUjY7`_ zq65~4oGJ;)@2E$}tnw^HOL--@zx=J{>8_Ng@EzY=-eO5p!qYU}1M*u%H3me_)y#_kS(^wW(!_dX4Td ze2%AQ44=s-C_HF*-tYjgUNFGbIl3QD{e}+aAw_jE&oXe;!90g2cP}&D^$G0TE^JB^ zHZ2r3e@>ZmYL_v&-jFJ-zP9t~&RKDxbp7X)2|~CqnLC>*tVF-fT+O}04d5Vo@0E97 z`H??ax#fzHaMiX%W!roo@YK)E0IoIsoPl0R|DTbY*s0?3YqqPlWRWjXuv3L_^`bwBo8aBPLGR0@ z-|VFJx~N-5y2os~#WI-Z3VPa@TNQMVg}YVBV7|JhC!f8|(mgirw#kF}5<8UNuBUr) zxZ4dz%&)gY+uPge9*61n4kPBafbK7hYdZv&V+o9G^w>CRIKe`lKwVD8d%kK1_H zfbe%s2!Gd1W8Ojo%v~D|ZSUrgyn~dxNZw8I`KF!*%iU7Cry}=mnHlpnW^A>N^t_es z*dckmhpM&!>)2wjMh#I}ywzPwNMAm+lDoW|re zOparMx|47Q6EvXaAPSZ4e%33AbFEo zG1Ri&l|wYcwyjw6*-b0Wxopjf*T#0yDwzBOjMTKlX zz4BBc`y!+UwrGVjuvIIZg{@pEU?8y?*^(8z2f&-0Y{7$C4_hP;1aBXNpL(EV29gf- zK!8<7WInY@EYPC7^%SVgh^k40X8P0%=I0rVd6SP!PInF^4wOAt9qDaCnIll+B{Wc8 z-RB0}+w@09i*edIcgh?Mn$Ur>tI>&|c&!JMNm{*wNE6j~k}(D@Lk&|6SJ}N1ZVtP| zVc(qvcZ+M>+-Hr|yZ|3_IXRgbn}p#+;7W%NWKDpb3OHA+A+6z)pr%uyN$*%B3Lk=) zfG{U8Y00qoF|EC^1AiJ*?`nmwbiqfuTHvEyr&qD^G}{(_3r`uVP2U+~rqbiWPsqTa zyxJ#U`qX`R3Rn~(1W2qUu~e?tSU>FjUiGwDPb%w+C~K1tD%ma!!BOP1Wuk0Fv1J%E zh06%4acP4<*zEw6W}4?D55#K*Px;5?T^JZz39~EwcK|zu{PP-Qka@b;{NFe#mh5>K z51l_0FYa8lcR@q}n3O$bm)kD2rE>chUmT4055?`_2aJK(KfspZN!ltCw#wPf_iXjp z7QTcLFWR+e-whkcKS}phx_zEY?l_d#aVWn1aJ=})qWviJ{AkJMfxWJ5{t}mqhL(6? z=bgBjhz~(;|Yha9Tly(}ZzwDqOy;)fe=`Dk$a~pHZR@J$Q zxwVOfe5_HMZ2VqL`U3=OOhh1VZPbP2C%`fq$zFiouqeWZML$4>mgz?=WHL>= zupd>$8~7SUIu9l}CRX|!NKUX38oqMimA@bdrUG&3L?j^av1+*l-q0xctU!2Ezru4m z96HmC->U=15H1if#o^uMZO{J&bNeyrgaqR0$tUXk*hTi&yq9+mS45U3}USLq1M=x4#Spa)sMuRGsu`4q?%2} zzI^-22kFtlrWKqaa%9=4)Lt{5j5}!{7Agzwj|2-9IcJf_N+de4UdCb11z4dXUJ!v5 zn-sn%Vlfpe;daDSO9;ke*MYIqfsrt;8F@dQftLlI7G>vrX0NT@Pai_<5fJgwodX;4 zg+ZCr2uSdyT!m_YmI0smli52VIjXq|zA`1iUXc@l;3>&MyfOaJ*&uimk~pvqOf(Gu zSFI-cJ5Z)iFE;W(kD(ezE4~XEAW9}1+p^>-y$stPlAhXxr*`(G>$MA>?ch7GdE#Zw z30w1$yX4Bgc-@Y8>C+4D*7>fudw1Nv`x8fb(oqi~PqSaUeqh0|YudQvD42H>oy~MeaTxo(Ug|9$ClPl&QyJw&MQ9-=0alzr6 z+Z=Z^-{+ct55`-zB~6x|>L{T8jTe%e1(wbx=4NGwp|gRxRYk+atp*m-*hYd|nvRo= zVJ&U=v94V$ZK`>3SC)MWm((}m_h1}mMzK%9#zdMR4wT6U?q$eWUPgjADjm{8#VPR9 zDTo7B7dFf81C}kprdh!>$1I>@<~>ar_cY@@!8YLqNdlJ>IY5%=hdpUuio!gn*{3oi zUot-hsv)f2H-<7$Fk^Ijy=IR$Z6t=sMq(s}vxb7i-e8HX%S0Fj4Yik7;X})Q4utwZ^R0f1b_{|LeNt996LuTTia?Z-xcl0!Xr$+ zfCRiN1PS+GK?f!pCL($xCZ?mUNoSbM!t{y%7BaFccE z(E9Vu^RNDF+dK#YU5i}zpMjHq5K*CdgYMi$znRzJroNB4%f*npPItJBf9-_aO&SYt z8geo3BzYH&dAFr=Gjp@7!`|7<+-juZ;+7A@3i?(vi}}qAHT}S4aR^5#8Uz) z5i&og-Ll)5>2ol zFHsKF7A5Q=j7-3$Kom#>B=hp}&6Zsrb8WK1x=XOZGK7Ch{0m6oa}qTDYs&d+D)+b4 zt_5n>Zz*qr^8SXZ`ZeYLE!7C=Z>X|gQw{=S`!xms0NDs8AKLS}IZ3$_l>17rqN??bvrS^5x-`n$NhGx0zup?*p>y~AXVslf*oMo1A7+$wQNUL(` zG`x=6eXKRpWl2kQ!ct9Irzq36Y~Qd=A6le}Q+Y*~*Iin7WgzZrUC7({y5nD&}oAnzf%&sE?6Y~MQcjYDx)*P^le zW7_(y%5PN8xEG+YfuUO;FqENS8FMfggAFU=u5}Ca`p*nGbPLutEn{xELapsupu0aa zQrea$LUv literal 0 HcmV?d00001 diff --git a/broker_factory.py b/broker_factory.py index 59dedfd..b0a8efd 100644 --- a/broker_factory.py +++ b/broker_factory.py @@ -1,3 +1,4 @@ +from flask import config from oanda_broker import OandaBroker from alpaca_broker import AlpacaBroker import configparser @@ -93,27 +94,15 @@ def add_broker(self, broker_type, api_key=None, api_secret=None, account_id=None return False def get_broker(self, broker_type=None): - """Get a specific broker or the current broker""" - try: - if not self.brokers: - raise ValueError("No brokers initialized. Please configure broker credentials.") - - if broker_type and broker_type in self.brokers: - return self.brokers[broker_type] - - if self.current_broker and self.current_broker in self.brokers: - return self.brokers[self.current_broker] - - # Default to first available broker - first_broker = next(iter(self.brokers.values())) - if first_broker: - return first_broker - - raise ValueError("No available brokers found") - - except Exception as e: - print(f"Error getting broker: {e}") - raise + """Get appropriate broker based on type or first available""" + # Use current_broker if no specific type requested + broker_type = broker_type or self.current_broker + + if broker_type and broker_type in self.brokers: + return self.brokers[broker_type] + elif self.brokers: + return next(iter(self.brokers.values())) + raise ValueError("No brokers initialized. Please configure broker credentials.") def test_broker_connection(self, broker_type, api_key, api_secret=None, account_id=None): """Test broker connection before saving credentials""" diff --git a/data_server.py b/data_server.py new file mode 100644 index 0000000..f11e952 --- /dev/null +++ b/data_server.py @@ -0,0 +1,255 @@ +import os +import logging +import websocket +import json +import time +from datetime import datetime +from flask import Flask, jsonify +import feedgenerator +import configparser +import requests +from pathlib import Path + +# Setup logging +logging.basicConfig( + level=logging.INFO, + format='%(asctime)s - %(name)s - %(levelname)s - %(message)s', + handlers=[ + logging.FileHandler('polygon_feed.log'), + logging.StreamHandler() + ] +) +logger = logging.getLogger('polygon_feed') + +# Load config +config = configparser.ConfigParser() +config.read('config.ini') +POLYGON_API_KEY = config.get('API_KEYS', 'POLYGON_API_KEY') + +# Initialize Flask app +app = Flask(__name__) + +# Create feeds directory if it doesn't exist +FEEDS_DIR = Path('feeds') +FEEDS_DIR.mkdir(exist_ok=True) + +class PolygonFeedHandler: + def __init__(self): + self.ws = None + self.pairs = { + 'forex': ['EUR-USD'], + 'crypto': ['BTC-USD'] + } + self.feeds = {} + self.retry_count = 0 + self.max_retries = 5 + self.retry_delay = 5 + self.initialize_feed_files() + + def initialize_feed_files(self): + """Initialize JSON files for each pair""" + try: + for market, pairs in self.pairs.items(): + market_dir = FEEDS_DIR / market + market_dir.mkdir(exist_ok=True) + + for pair in pairs: + feed_file = market_dir / f"{pair}.json" + if not feed_file.exists() or feed_file.stat().st_size == 0: + initial_data = [] + feed_file.write_text(json.dumps(initial_data)) + self.feeds[f"{market}_{pair}"] = [] + + # Load existing data + try: + with feed_file.open('r') as f: + self.feeds[f"{market}_{pair}"] = json.loads(f.read()) + except json.JSONDecodeError: + logger.warning(f"Invalid JSON in {feed_file}, initializing empty") + self.feeds[f"{market}_{pair}"] = [] + feed_file.write_text(json.dumps([])) + + except Exception as e: + logger.error(f"Error initializing feed files: {e}") + raise + + def save_feed_data(self, market, pair, data): + """Save feed data to JSON file with proper error handling""" + feed_key = f"{market}_{pair}" + feed_file = FEEDS_DIR / market / f"{pair}.json" + + try: + # Update memory cache + if feed_key not in self.feeds: + self.feeds[feed_key] = [] + + self.feeds[feed_key].append(data) + + # Trim to last 1000 points + if len(self.feeds[feed_key]) > 1000: + self.feeds[feed_key] = self.feeds[feed_key][-1000:] + + # Save to file + with feed_file.open('w') as f: + json.dump(self.feeds[feed_key], f, indent=2) + + logger.debug(f"Saved data for {feed_key}: {data}") + + except Exception as e: + logger.error(f"Error saving feed data for {feed_key}: {e}") + + def connect_websocket(self): + """Initialize WebSocket connection with retry logic""" + while self.retry_count < self.max_retries: + try: + ws_url = "wss://socket.polygon.io/forex" + + def on_message(ws, message): + try: + data = json.loads(message) + logger.debug(f"Received message: {data}") + + if isinstance(data, list): + for event in data: + self.process_event(event) + else: + self.process_event(data) + except json.JSONDecodeError as e: + logger.error(f"Invalid JSON message: {e}") + except Exception as e: + logger.error(f"Error processing message: {e}") + + def on_error(ws, error): + logger.error(f"WebSocket error: {error}") + self.retry_count += 1 + if self.retry_count >= self.max_retries: + logger.error("Max retries reached, stopping reconnection attempts") + else: + time.sleep(self.retry_delay) + + def on_close(ws, close_status_code, close_msg): + logger.info(f"WebSocket closed: {close_status_code} - {close_msg}") + if close_status_code == 1008: # Policy violation + logger.error("Authentication failed") + self.retry_count = self.max_retries # Stop retrying + elif self.retry_count < self.max_retries: + time.sleep(self.retry_delay) + self.connect_websocket() + + def on_open(ws): + logger.info("WebSocket connection established") + # Reset retry count on successful connection + self.retry_count = 0 + + # Authenticate + auth_data = { + "action": "auth", + "params": POLYGON_API_KEY + } + ws.send(json.dumps(auth_data)) + + # Subscribe after brief delay to ensure auth is processed + time.sleep(1) + + # Subscribe to feeds + for market, pairs in self.pairs.items(): + prefix = 'C' if market == 'forex' else 'XT' + for pair in pairs: + sub_data = { + "action": "subscribe", + "params": f"{prefix}.{pair}" + } + ws.send(json.dumps(sub_data)) + logger.info(f"Subscribed to {market} {pair}") + + self.ws = websocket.WebSocketApp( + ws_url, + on_message=on_message, + on_error=on_error, + on_close=on_close, + on_open=on_open + ) + + self.ws.run_forever() + + except Exception as e: + logger.error(f"Connection error: {e}") + self.retry_count += 1 + if self.retry_count < self.max_retries: + time.sleep(self.retry_delay) + else: + logger.error("Max retries reached, stopping connection attempts") + break + + def process_event(self, event): + """Process incoming WebSocket events""" + ev_type = event.get('ev') + if ev_type == 'C': # Forex quote + market = 'forex' + pair = event['p'].replace('/', '-') + elif ev_type == 'XT': # Crypto trade + market = 'crypto' + pair = event['pair'] + else: + return + + data = { + 'timestamp': datetime.fromtimestamp(event['t']/1000).isoformat(), + 'price': float(event['p']) if ev_type == 'XT' else (float(event['a']) + float(event['b']))/2, + 'volume': float(event.get('s', 1)) + } + + self.save_feed_data(market, pair, data) + logger.debug(f"Processed {market} {pair} event") + +feed_handler = PolygonFeedHandler() + +# Flask routes +@app.route('/api/feed//', methods=['GET']) +def get_market_feed(market, pair): + """Get market data feed for specific pair""" + try: + feed_key = f"{market}_{pair}" + if feed_key not in feed_handler.feeds: + return jsonify({"error": "Invalid market or pair"}), 404 + + return jsonify(feed_handler.feeds[feed_key]) + except Exception as e: + logger.error(f"Error serving feed: {e}") + return jsonify({"error": str(e)}), 500 + +@app.route('/rss//', methods=['GET']) +def get_rss_feed(market, pair): + """Get RSS feed for specific market pair""" + try: + feed_key = f"{market}_{pair}" + if feed_key not in feed_handler.feeds: + return "Invalid market or pair", 404 + + fg = feedgenerator.Rss201rev2Feed( + title=f'{market.upper()} - {pair} Feed', + link=f'http://localhost:4000/rss/{market}/{pair}', + description=f'Live {market} data feed for {pair}' + ) + + for item in feed_handler.feeds[feed_key][-100:]: + fg.add_item( + title=f'{pair}: {item["price"]}', + link=f'http://localhost:4000/rss/{market}/{pair}', + description=json.dumps(item), + pubdate=datetime.fromisoformat(item['timestamp']) + ) + + return fg.writeString('utf-8'), 200, {'Content-Type': 'application/rss+xml'} + except Exception as e: + logger.error(f"Error serving RSS: {e}") + return str(e), 500 + +if __name__ == '__main__': + # Start WebSocket connection in background + import threading + ws_thread = threading.Thread(target=feed_handler.connect_websocket) + ws_thread.daemon = True + ws_thread.start() + + app.run(debug=True, port=4000) diff --git a/indicators.py b/indicators.py deleted file mode 100644 index 14b3f54..0000000 --- a/indicators.py +++ /dev/null @@ -1,234 +0,0 @@ -import pandas as pd -import numpy as np -from models import db, Indicator -import traceback - -def calculate_rsi(series, window): - """ - Calculates the Relative Strength Index (RSI) for a given series. - - Args: - series (pd.Series): The input series. - window (int): The lookback period for the RSI calculation. - - Returns: - pd.Series: The calculated RSI values, or None if an error occurred. - """ - try: - delta = series.diff() - gain = delta.where(delta > 0, 0) - loss = -delta.where(delta < 0, 0) - avg_gain = gain.rolling(window=window).mean() - avg_loss = loss.rolling(window=window).mean() - rs = avg_gain / avg_loss - rsi = 100 - (100 / (1 + rs)) - return rsi - except Exception as e: - print(f"[calculate_rsi] ERROR: {e}") - print(f"[calculate_rsi] Traceback: {traceback.format_exc()}") - return None - -def calculate_macd(series, window_fast, window_slow, window_signal): - """ - Calculates the Moving Average Convergence Divergence (MACD) for a given series. - - Args: - series (pd.Series): The input series. - window_fast (int): The lookback period for the fast EMA. - window_slow (int): The lookback period for the slow EMA. - window_signal (int): The lookback period for the signal line. - - Returns: - tuple: A tuple containing the MACD line, signal line, and histogram, or (None, None, None) if an error occurred. - """ - try: - ema_fast = series.ewm(span=window_fast, adjust=False).mean() - ema_slow = series.ewm(span=window_slow, adjust=False).mean() - macd = ema_fast - ema_slow - signal_line = macd.ewm(span=window_signal, adjust=False).mean() - histogram = macd - signal_line - return macd, signal_line, histogram - except Exception as e: - print(f"[calculate_macd] ERROR: {e}") - print(f"[calculate_macd] Traceback: {traceback.format_exc()}") - return None, None, None - -def calculate_bollinger_bands(series, window): - """ - Calculates the Bollinger Bands for a given series. - - Args: - series (pd.Series): The input series. - window (int): The lookback period for the moving average and standard deviation. - - Returns: - tuple: A tuple containing the middle band and standard deviation, or (None, None) if an error occurred. - """ - try: - middle_band = series.rolling(window=window).mean() - std = series.rolling(window=window).std() - return middle_band, std - except Exception as e: - print(f"[calculate_bollinger_bands] ERROR: {e}") - print(f"[calculate_bollinger_bands] Traceback: {traceback.format_exc()}") - return None, None - -def calculate_atr(high, low, close, window): - """ - Calculates the Average True Range (ATR) for a given series. - - Args: - high (pd.Series): The high prices. - low (pd.Series): The low prices. - close (pd.Series): The closing prices. - window (int): The lookback period for the ATR calculation. - - Returns: - pd.Series: The calculated ATR values, or None if an error occurred. - """ - try: - tr = np.maximum(high - low, np.abs(high - close.shift()), np.abs(low - close.shift())) - atr = tr.rolling(window=window).mean() - return atr - except Exception as e: - print(f"[calculate_atr] ERROR: {e}") - print(f"[calculate_atr] Traceback: {traceback.format_exc()}") - return None - -def calculate_adx(high, low, close, window): - """ - Calculates the Average Directional Index (ADX) for a given series. - - Args: - high (pd.Series): The high prices. - low (pd.Series): The low prices. - close (pd.Series): The closing prices. - window (int): The lookback period for the ADX calculation. - - Returns: - pd.Series: The calculated ADX values, or None if an error occurred. - """ - try: - tr = np.maximum(high - low, np.abs(high - close.shift()), np.abs(low - close.shift())) - atr = calculate_atr(high, low, close, window) # Calculate ATR using the separate function - plus_dm = np.where((high - high.shift()) > (low.shift() - low), high - high.shift(), 0) - minus_dm = np.where((low.shift() - low) > (high - high.shift()), low.shift() - low, 0) - plus_di = 100 * (pd.Series(plus_dm).rolling(window=window).mean() / pd.Series(atr).rolling(window=window).mean()) - minus_di = 100 * (pd.Series(minus_dm).rolling(window=window).mean() / pd.Series(atr).rolling(window=window).mean()) - dx = 100 * np.abs(plus_di - minus_di) / (plus_di + minus_di) - adx = dx.rolling(window=window).mean() - return adx - except Exception as e: - print(f"[calculate_adx] ERROR: {e}") - print(f"[calculate_adx] Traceback: {traceback.format_exc()}") - return None - -def calculate_obv(close, volume): - """ - Calculates the On-Balance Volume (OBV) for a given series. - - Args: - close (pd.Series): The closing prices. - volume (pd.Series): The volume data. - - Returns: - pd.Series: The calculated OBV values, or None if an error occurred. - """ - try: - obv = np.where(close > close.shift(), volume, -volume).cumsum() - return obv - except Exception as e: - print(f"[calculate_obv] ERROR: {e}") - print(f"[calculate_obv] Traceback: {traceback.format_exc()}") - return None - -def load_all_indicators(): - """ - Load all indicators from the database and dynamically execute their calculation code. - - Returns: - list: A list of dictionaries, each containing the indicator's name, description, and calculated values. - Returns an empty list if no indicators are found or if an error occurs. - """ - try: - indicators = Indicator.query.all() - if not indicators: - print("[load_all_indicators] No indicators found in the database.") - return [] - - results = [] - for indicator in indicators: - try: - # Create a safe environment for executing the code - safe_globals = { - "__builtins__": __builtins__, - "pd": pd, - "np": np, - "calculate_rsi": calculate_rsi, - "calculate_macd": calculate_macd, - "calculate_bollinger_bands": calculate_bollinger_bands, - "calculate_atr": calculate_atr, - "calculate_adx": calculate_adx, - "calculate_obv": calculate_obv - } - # Execute the calculation code - exec(indicator.calculation_code, safe_globals) - - # Get the result - result = safe_globals.get('result', None) - - if result is not None: - results.append({ - "name": indicator.name, - "description": indicator.description, - "values": result - }) - else: - print(f"[load_all_indicators] Indicator '{indicator.name}' did not produce a result.") - - except Exception as e: - print(f"[load_all_indicators] ERROR executing code for indicator '{indicator.name}': {e}") - print(f"[load_all_indicators] Traceback: {traceback.format_exc()}") - - return results - - except Exception as e: - print(f"[load_all_indicators] ERROR: {e}") - print(f"[load_all_indicators] Traceback: {traceback.format_exc()}") - return [] - -def save_indicator_to_db(name, description, calculation_code, parameters): - """ - Save a new indicator to the database. - - Args: - name (str): The name of the indicator. - description (str): A description of the indicator. - calculation_code (str): The Python code for calculating the indicator. - parameters (dict): The parameters required for the indicator calculation. - - Returns: - Indicator: The newly created Indicator object, or None if an error occurred. - """ - try: - # Check for duplicate indicator name - existing_indicator = Indicator.query.filter_by(name=name).first() - if existing_indicator: - print(f"[save_indicator_to_db] ERROR: Indicator with name '{name}' already exists.") - return None - - indicator = Indicator( - name=name, - description=description, - calculation_code=calculation_code, - parameters=parameters - ) - db.session.add(indicator) - db.session.commit() - print(f"[save_indicator_to_db] Successfully saved indicator: {name}") - return indicator - except Exception as e: - db.session.rollback() - print(f"[save_indicator_to_db] ERROR: {e}") - print(f"[save_indicator_to_db] Traceback: {traceback.format_exc()}") - return None diff --git a/indicators_directory/USD_JPY_ADX.csv b/indicators_directory/USD_JPY_ADX.csv deleted file mode 100644 index 0a246b6..0000000 --- a/indicators_directory/USD_JPY_ADX.csv +++ /dev/null @@ -1,5001 +0,0 @@ -time,ADX -2024-04-05 03:00:00+00:00, -2024-04-05 04:00:00+00:00, -2024-04-05 05:00:00+00:00, -2024-04-05 06:00:00+00:00, -2024-04-05 07:00:00+00:00, -2024-04-05 08:00:00+00:00, -2024-04-05 09:00:00+00:00, -2024-04-05 10:00:00+00:00, -2024-04-05 11:00:00+00:00, -2024-04-05 12:00:00+00:00, -2024-04-05 13:00:00+00:00, -2024-04-05 14:00:00+00:00, -2024-04-05 15:00:00+00:00, -2024-04-05 16:00:00+00:00, -2024-04-05 17:00:00+00:00, -2024-04-05 18:00:00+00:00, -2024-04-05 19:00:00+00:00, -2024-04-05 20:00:00+00:00, -2024-04-07 21:00:00+00:00, -2024-04-07 22:00:00+00:00, -2024-04-07 23:00:00+00:00, -2024-04-08 00:00:00+00:00, -2024-04-08 01:00:00+00:00, -2024-04-08 02:00:00+00:00, -2024-04-08 03:00:00+00:00, -2024-04-08 04:00:00+00:00, -2024-04-08 05:00:00+00:00, -2024-04-08 06:00:00+00:00, -2024-04-08 07:00:00+00:00, -2024-04-08 08:00:00+00:00, -2024-04-08 09:00:00+00:00, -2024-04-08 10:00:00+00:00, -2024-04-08 11:00:00+00:00, -2024-04-08 12:00:00+00:00, -2024-04-08 13:00:00+00:00, -2024-04-08 14:00:00+00:00, -2024-04-08 15:00:00+00:00, -2024-04-08 16:00:00+00:00, -2024-04-08 17:00:00+00:00, -2024-04-08 18:00:00+00:00, -2024-04-08 19:00:00+00:00,52.92577368264078 -2024-04-08 20:00:00+00:00,46.37280284395631 -2024-04-08 21:00:00+00:00,41.051286402194016 -2024-04-08 22:00:00+00:00,36.52589007148594 -2024-04-08 23:00:00+00:00,31.31811224058575 -2024-04-09 00:00:00+00:00,25.743915536487652 -2024-04-09 01:00:00+00:00,19.980242008110004 -2024-04-09 02:00:00+00:00,15.334898241833471 -2024-04-09 03:00:00+00:00,13.48503239464409 -2024-04-09 04:00:00+00:00,12.475948159418918 -2024-04-09 05:00:00+00:00,12.004675699289779 -2024-04-09 06:00:00+00:00,12.172606119320678 -2024-04-09 07:00:00+00:00,13.353044002048064 -2024-04-09 08:00:00+00:00,14.098070292245206 -2024-04-09 09:00:00+00:00,15.458410591434452 -2024-04-09 10:00:00+00:00,16.789292594585152 -2024-04-09 11:00:00+00:00,16.168412362453672 -2024-04-09 12:00:00+00:00,14.548809820657263 -2024-04-09 13:00:00+00:00,15.19428274546271 -2024-04-09 14:00:00+00:00,20.526004231566066 -2024-04-09 15:00:00+00:00,26.148448484856633 -2024-04-09 16:00:00+00:00,30.30237159870261 -2024-04-09 17:00:00+00:00,35.913485056503376 -2024-04-09 18:00:00+00:00,41.33757673686669 -2024-04-09 19:00:00+00:00,45.4649617896241 -2024-04-09 20:00:00+00:00,49.75259949762832 -2024-04-09 21:00:00+00:00,53.17950321721691 -2024-04-09 22:00:00+00:00,56.452318802665914 -2024-04-09 23:00:00+00:00,58.66773922989561 -2024-04-10 00:00:00+00:00,61.85633774622751 -2024-04-10 01:00:00+00:00,65.9841698292793 -2024-04-10 02:00:00+00:00,69.86391888881504 -2024-04-10 03:00:00+00:00,71.58208676083223 -2024-04-10 04:00:00+00:00,66.45468942863614 -2024-04-10 05:00:00+00:00,61.618830777325684 -2024-04-10 06:00:00+00:00,56.788501874032285 -2024-04-10 07:00:00+00:00,52.97563403026474 -2024-04-10 08:00:00+00:00,49.856538576914495 -2024-04-10 09:00:00+00:00,47.29587251944604 -2024-04-10 10:00:00+00:00,43.20604390755564 -2024-04-10 11:00:00+00:00,38.88387615995985 -2024-04-10 12:00:00+00:00,39.42097795490415 -2024-04-10 13:00:00+00:00,41.58337270573024 -2024-04-10 14:00:00+00:00,43.572332677975204 -2024-04-10 15:00:00+00:00,45.349911116947446 -2024-04-10 16:00:00+00:00,47.409279284489806 -2024-04-10 17:00:00+00:00,47.800384675592746 -2024-04-10 18:00:00+00:00,51.98184249975136 -2024-04-10 19:00:00+00:00,54.85615305835501 -2024-04-10 20:00:00+00:00,58.63411259979848 -2024-04-10 21:00:00+00:00,61.784994859764616 -2024-04-10 22:00:00+00:00,64.09217520707872 -2024-04-10 23:00:00+00:00,66.4486020904397 -2024-04-11 00:00:00+00:00,70.00204929660343 -2024-04-11 01:00:00+00:00,73.01105200883445 -2024-04-11 02:00:00+00:00,69.52559687439937 -2024-04-11 03:00:00+00:00,65.39708589659654 -2024-04-11 04:00:00+00:00,60.11999832161482 -2024-04-11 05:00:00+00:00,53.669427616982205 -2024-04-11 06:00:00+00:00,48.34730275988056 -2024-04-11 07:00:00+00:00,48.000689913267465 -2024-04-11 08:00:00+00:00,47.96195857674211 -2024-04-11 09:00:00+00:00,47.999344459350304 -2024-04-11 10:00:00+00:00,44.967546218977205 -2024-04-11 11:00:00+00:00,41.68687459414779 -2024-04-11 12:00:00+00:00,37.1071432364987 -2024-04-11 13:00:00+00:00,34.19758830090964 -2024-04-11 14:00:00+00:00,31.842316618301616 -2024-04-11 15:00:00+00:00,30.388165537485797 -2024-04-11 16:00:00+00:00,30.21970631471618 -2024-04-11 17:00:00+00:00,29.700523222964726 -2024-04-11 18:00:00+00:00,28.716657625529074 -2024-04-11 19:00:00+00:00,28.928070641485203 -2024-04-11 20:00:00+00:00,28.374520304886435 -2024-04-11 21:00:00+00:00,25.279129779918613 -2024-04-11 22:00:00+00:00,23.244096522478824 -2024-04-11 23:00:00+00:00,20.80819157088542 -2024-04-12 00:00:00+00:00,21.63702519224171 -2024-04-12 01:00:00+00:00,22.588243128534824 -2024-04-12 02:00:00+00:00,22.886397921052993 -2024-04-12 03:00:00+00:00,22.20769511144002 -2024-04-12 04:00:00+00:00,21.307575001477225 -2024-04-12 05:00:00+00:00,20.60906115018864 -2024-04-12 06:00:00+00:00,19.51179267342844 -2024-04-12 07:00:00+00:00,18.552588896994934 -2024-04-12 08:00:00+00:00,18.88690783113197 -2024-04-12 09:00:00+00:00,19.444860088824928 -2024-04-12 10:00:00+00:00,19.199309813920014 -2024-04-12 11:00:00+00:00,18.220562009024793 -2024-04-12 12:00:00+00:00,17.954817679600072 -2024-04-12 13:00:00+00:00,18.948470272602012 -2024-04-12 14:00:00+00:00,19.276983572246138 -2024-04-12 15:00:00+00:00,18.555064270174082 -2024-04-12 16:00:00+00:00,20.889383439657973 -2024-04-12 17:00:00+00:00,23.620429372143526 -2024-04-12 18:00:00+00:00,25.435397535387384 -2024-04-12 19:00:00+00:00,26.00760730805357 -2024-04-12 20:00:00+00:00,27.076805868327888 -2024-04-14 21:00:00+00:00,30.46652743839118 -2024-04-14 22:00:00+00:00,32.47569343108859 -2024-04-14 23:00:00+00:00,34.31251978712665 -2024-04-15 00:00:00+00:00,35.43658732876961 -2024-04-15 01:00:00+00:00,35.39627655391132 -2024-04-15 02:00:00+00:00,35.13618135626209 -2024-04-15 03:00:00+00:00,35.808106415201905 -2024-04-15 04:00:00+00:00,37.020785822677155 -2024-04-15 05:00:00+00:00,39.110985770340434 -2024-04-15 06:00:00+00:00,40.57376050468103 -2024-04-15 07:00:00+00:00,41.77307208087677 -2024-04-15 08:00:00+00:00,41.60312440595464 -2024-04-15 09:00:00+00:00,41.572024128385614 -2024-04-15 10:00:00+00:00,41.698576908302904 -2024-04-15 11:00:00+00:00,42.43583946522392 -2024-04-15 12:00:00+00:00,44.82742265756134 -2024-04-15 13:00:00+00:00,47.05959232098392 -2024-04-15 14:00:00+00:00,47.85196299641921 -2024-04-15 15:00:00+00:00,49.02509415982255 -2024-04-15 16:00:00+00:00,48.13307961075127 -2024-04-15 17:00:00+00:00,44.81037772103984 -2024-04-15 18:00:00+00:00,40.533412367600526 -2024-04-15 19:00:00+00:00,36.5136303571315 -2024-04-15 20:00:00+00:00,32.41689115473866 -2024-04-15 21:00:00+00:00,28.84182470278788 -2024-04-15 22:00:00+00:00,26.46510175760853 -2024-04-15 23:00:00+00:00,25.01405264941229 -2024-04-16 00:00:00+00:00,24.203050606460472 -2024-04-16 01:00:00+00:00,21.24776102696713 -2024-04-16 02:00:00+00:00,19.586883910163333 -2024-04-16 03:00:00+00:00,17.916288956659763 -2024-04-16 04:00:00+00:00,16.558970708641095 -2024-04-16 05:00:00+00:00,15.946095929099124 -2024-04-16 06:00:00+00:00,17.82860494895871 -2024-04-16 07:00:00+00:00,21.580538268566638 -2024-04-16 08:00:00+00:00,25.03242111375484 -2024-04-16 09:00:00+00:00,28.7471436715461 -2024-04-16 10:00:00+00:00,32.38297107044299 -2024-04-16 11:00:00+00:00,36.20947399333073 -2024-04-16 12:00:00+00:00,41.23203854249495 -2024-04-16 13:00:00+00:00,41.61446692552619 -2024-04-16 14:00:00+00:00,42.85568472412144 -2024-04-16 15:00:00+00:00,43.90783880596463 -2024-04-16 16:00:00+00:00,43.10346300158885 -2024-04-16 17:00:00+00:00,41.21324683175328 -2024-04-16 18:00:00+00:00,41.047172970026075 -2024-04-16 19:00:00+00:00,41.81780755018551 -2024-04-16 20:00:00+00:00,42.58074170927216 -2024-04-16 21:00:00+00:00,41.009133372792654 -2024-04-16 22:00:00+00:00,40.31592760013232 -2024-04-16 23:00:00+00:00,39.62607928578213 -2024-04-17 00:00:00+00:00,39.57010663765613 -2024-04-17 01:00:00+00:00,40.10017438489849 -2024-04-17 02:00:00+00:00,39.85518205064776 -2024-04-17 03:00:00+00:00,48.06389214959564 -2024-04-17 04:00:00+00:00,53.955140191533864 -2024-04-17 05:00:00+00:00,56.049157102773414 -2024-04-17 06:00:00+00:00,53.513764567380136 -2024-04-17 07:00:00+00:00,57.3089648623482 -2024-04-17 08:00:00+00:00,60.806413005814434 -2024-04-17 09:00:00+00:00,61.58780664434992 -2024-04-17 10:00:00+00:00,59.959873917860584 -2024-04-17 11:00:00+00:00,59.04113040587412 -2024-04-17 12:00:00+00:00,57.21052665472562 -2024-04-17 13:00:00+00:00,56.47585370057662 -2024-04-17 14:00:00+00:00,53.35866455687745 -2024-04-17 15:00:00+00:00,49.68722231577775 -2024-04-17 16:00:00+00:00,48.622000479752025 -2024-04-17 17:00:00+00:00,43.33132473962373 -2024-04-17 18:00:00+00:00,39.02718229577029 -2024-04-17 19:00:00+00:00,38.187566900113794 -2024-04-17 20:00:00+00:00,41.02810328903802 -2024-04-17 21:00:00+00:00,38.44831949128542 -2024-04-17 22:00:00+00:00,37.07508524622669 -2024-04-17 23:00:00+00:00,38.49686142102221 -2024-04-18 00:00:00+00:00,40.078701621427605 -2024-04-18 01:00:00+00:00,42.568902418196885 -2024-04-18 02:00:00+00:00,46.81112937032719 -2024-04-18 03:00:00+00:00,48.87958279183255 -2024-04-18 04:00:00+00:00,53.39205183520125 -2024-04-18 05:00:00+00:00,56.36098331023102 -2024-04-18 06:00:00+00:00,56.39858282634221 -2024-04-18 07:00:00+00:00,55.75006312680974 -2024-04-18 08:00:00+00:00,54.50048514883131 -2024-04-18 09:00:00+00:00,53.549707531387305 -2024-04-18 10:00:00+00:00,52.77261771280338 -2024-04-18 11:00:00+00:00,52.569040568881256 -2024-04-18 12:00:00+00:00,51.50168255783834 -2024-04-18 13:00:00+00:00,48.687737945420686 -2024-04-18 14:00:00+00:00,45.83200689371127 -2024-04-18 15:00:00+00:00,41.82824157151064 -2024-04-18 16:00:00+00:00,38.36563809667744 -2024-04-18 17:00:00+00:00,35.47346337378517 -2024-04-18 18:00:00+00:00,31.37632766096839 -2024-04-18 19:00:00+00:00,27.256333072222844 -2024-04-18 20:00:00+00:00,27.122567157782587 -2024-04-18 21:00:00+00:00,27.21812377507765 -2024-04-18 22:00:00+00:00,26.23692004396627 -2024-04-18 23:00:00+00:00,24.5180153920349 -2024-04-19 00:00:00+00:00,22.89810404134895 -2024-04-19 01:00:00+00:00,23.935628779916467 -2024-04-19 02:00:00+00:00,26.356936285969677 -2024-04-19 03:00:00+00:00,29.743619807113078 -2024-04-19 04:00:00+00:00,32.7970357825048 -2024-04-19 05:00:00+00:00,36.6557748088415 -2024-04-19 06:00:00+00:00,39.11035400443899 -2024-04-19 07:00:00+00:00,41.629657931640814 -2024-04-19 08:00:00+00:00,44.62062012303405 -2024-04-19 09:00:00+00:00,47.8948073110936 -2024-04-19 10:00:00+00:00,47.46457911727115 -2024-04-19 11:00:00+00:00,47.06438830787345 -2024-04-19 12:00:00+00:00,48.243599786748355 -2024-04-19 13:00:00+00:00,50.12450738418734 -2024-04-19 14:00:00+00:00,52.80061471813817 -2024-04-19 15:00:00+00:00,50.306897570368655 -2024-04-19 16:00:00+00:00,48.086474567183174 -2024-04-19 17:00:00+00:00,45.18361926896379 -2024-04-19 18:00:00+00:00,41.466256072584365 -2024-04-19 19:00:00+00:00,38.74023786937185 -2024-04-19 20:00:00+00:00,37.36265476738244 -2024-04-21 21:00:00+00:00,34.464294236967326 -2024-04-21 22:00:00+00:00,30.864033259895553 -2024-04-21 23:00:00+00:00,27.893567981949438 -2024-04-22 00:00:00+00:00,25.33746863983215 -2024-04-22 01:00:00+00:00,22.205695523392563 -2024-04-22 02:00:00+00:00,19.776698425995587 -2024-04-22 03:00:00+00:00,17.425109365668796 -2024-04-22 04:00:00+00:00,16.38035419945221 -2024-04-22 05:00:00+00:00,17.545845667511376 -2024-04-22 06:00:00+00:00,17.585927825102594 -2024-04-22 07:00:00+00:00,17.093707815712857 -2024-04-22 08:00:00+00:00,18.318910236135682 -2024-04-22 09:00:00+00:00,18.746312276810695 -2024-04-22 10:00:00+00:00,17.500971382443932 -2024-04-22 11:00:00+00:00,21.605506195770925 -2024-04-22 12:00:00+00:00,24.449106108052522 -2024-04-22 13:00:00+00:00,25.876768968829936 -2024-04-22 14:00:00+00:00,25.738638227251034 -2024-04-22 15:00:00+00:00,27.433293248642318 -2024-04-22 16:00:00+00:00,29.35767944602569 -2024-04-22 17:00:00+00:00,31.51199219223784 -2024-04-22 18:00:00+00:00,31.945785992776592 -2024-04-22 19:00:00+00:00,32.397134953412866 -2024-04-22 20:00:00+00:00,32.363021715656274 -2024-04-22 21:00:00+00:00,35.9909244896664 -2024-04-22 22:00:00+00:00,36.843946874739984 -2024-04-22 23:00:00+00:00,36.782972598108756 -2024-04-23 00:00:00+00:00,35.96291574837924 -2024-04-23 01:00:00+00:00,32.39406223546499 -2024-04-23 02:00:00+00:00,30.635890267711023 -2024-04-23 03:00:00+00:00,29.83125814232446 -2024-04-23 04:00:00+00:00,30.739208628926527 -2024-04-23 05:00:00+00:00,30.104303793554344 -2024-04-23 06:00:00+00:00,31.258199858127078 -2024-04-23 07:00:00+00:00,29.778321711583125 -2024-04-23 08:00:00+00:00,28.727930720117822 -2024-04-23 09:00:00+00:00,27.974233422886503 -2024-04-23 10:00:00+00:00,27.997366261731276 -2024-04-23 11:00:00+00:00,26.05950120493507 -2024-04-23 12:00:00+00:00,25.378898385297003 -2024-04-23 13:00:00+00:00,27.648025524016447 -2024-04-23 14:00:00+00:00,30.389177797927907 -2024-04-23 15:00:00+00:00,31.00378940377004 -2024-04-23 16:00:00+00:00,31.41171481169597 -2024-04-23 17:00:00+00:00,33.9029437347771 -2024-04-23 18:00:00+00:00,36.256973716037486 -2024-04-23 19:00:00+00:00,39.42672632631521 -2024-04-23 20:00:00+00:00,39.641983857898815 -2024-04-23 21:00:00+00:00,44.006719651205536 -2024-04-23 22:00:00+00:00,48.04869162167328 -2024-04-23 23:00:00+00:00,51.83594123585204 -2024-04-24 00:00:00+00:00,54.39787874217162 -2024-04-24 01:00:00+00:00,56.690727711970005 -2024-04-24 02:00:00+00:00,60.41015362666432 -2024-04-24 03:00:00+00:00,59.88528620909894 -2024-04-24 04:00:00+00:00,59.19145881374208 -2024-04-24 05:00:00+00:00,60.579353920035366 -2024-04-24 06:00:00+00:00,61.074532500319265 -2024-04-24 07:00:00+00:00,57.769085374294264 -2024-04-24 08:00:00+00:00,54.84307451659405 -2024-04-24 09:00:00+00:00,51.73381558735634 -2024-04-24 10:00:00+00:00,49.14784562890255 -2024-04-24 11:00:00+00:00,43.7158437683287 -2024-04-24 12:00:00+00:00,41.187919018181624 -2024-04-24 13:00:00+00:00,41.47101623287038 -2024-04-24 14:00:00+00:00,42.63704168418758 -2024-04-24 15:00:00+00:00,43.976283848715056 -2024-04-24 16:00:00+00:00,44.88776201979231 -2024-04-24 17:00:00+00:00,47.901978269673336 -2024-04-24 18:00:00+00:00,51.521125385640005 -2024-04-24 19:00:00+00:00,53.96158570484375 -2024-04-24 20:00:00+00:00,57.74633772027994 -2024-04-24 21:00:00+00:00,64.17383153649884 -2024-04-24 22:00:00+00:00,69.25911580598562 -2024-04-24 23:00:00+00:00,74.26596703132452 -2024-04-25 00:00:00+00:00,79.21062703619407 -2024-04-25 01:00:00+00:00,85.29983944791302 -2024-04-25 02:00:00+00:00,88.16954516616822 -2024-04-25 03:00:00+00:00,87.0694827690095 -2024-04-25 04:00:00+00:00,85.88217473423312 -2024-04-25 05:00:00+00:00,84.8634110643816 -2024-04-25 06:00:00+00:00,84.04125269912001 -2024-04-25 07:00:00+00:00,81.55092499704257 -2024-04-25 08:00:00+00:00,79.31920275246198 -2024-04-25 09:00:00+00:00,77.82683616612277 -2024-04-25 10:00:00+00:00,74.24850749151618 -2024-04-25 11:00:00+00:00,70.45911698783974 -2024-04-25 12:00:00+00:00,65.56750051945293 -2024-04-25 13:00:00+00:00,60.85142884941039 -2024-04-25 14:00:00+00:00,54.70717402763349 -2024-04-25 15:00:00+00:00,48.65991473668584 -2024-04-25 16:00:00+00:00,42.63085422713097 -2024-04-25 17:00:00+00:00,38.74378980271889 -2024-04-25 18:00:00+00:00,36.07246005898959 -2024-04-25 19:00:00+00:00,36.17331810505356 -2024-04-25 20:00:00+00:00,35.62112441153003 -2024-04-25 21:00:00+00:00,36.46927077806667 -2024-04-25 22:00:00+00:00,37.33011487996959 -2024-04-25 23:00:00+00:00,37.343041783062745 -2024-04-26 00:00:00+00:00,38.35743220294182 -2024-04-26 01:00:00+00:00,38.752684181284984 -2024-04-26 02:00:00+00:00,37.617498443480926 -2024-04-26 03:00:00+00:00,40.72984457684059 -2024-04-26 04:00:00+00:00,45.35115601180441 -2024-04-26 05:00:00+00:00,49.96304904487946 -2024-04-26 06:00:00+00:00,55.327967272444575 -2024-04-26 07:00:00+00:00,60.28084270883232 -2024-04-26 08:00:00+00:00,58.60706190264962 -2024-04-26 09:00:00+00:00,53.974188358884305 -2024-04-26 10:00:00+00:00,49.424212351601795 -2024-04-26 11:00:00+00:00,45.551380304740285 -2024-04-26 12:00:00+00:00,41.20568668579905 -2024-04-26 13:00:00+00:00,37.47693003316824 -2024-04-26 14:00:00+00:00,33.99819426276481 -2024-04-26 15:00:00+00:00,31.20450861355903 -2024-04-26 16:00:00+00:00,31.95737268045654 -2024-04-26 17:00:00+00:00,27.450288527767885 -2024-04-26 18:00:00+00:00,22.89143652060851 -2024-04-26 19:00:00+00:00,17.962865092037124 -2024-04-26 20:00:00+00:00,13.111921614956225 -2024-04-28 21:00:00+00:00,7.188474270995981 -2024-04-28 22:00:00+00:00,11.448905683912585 -2024-04-28 23:00:00+00:00,15.612240622959296 -2024-04-29 00:00:00+00:00,19.305374997824572 -2024-04-29 01:00:00+00:00,24.783594206927123 -2024-04-29 02:00:00+00:00,30.366478962747635 -2024-04-29 03:00:00+00:00,35.86336593059591 -2024-04-29 04:00:00+00:00,37.50809947637124 -2024-04-29 05:00:00+00:00,39.16635647955159 -2024-04-29 06:00:00+00:00,40.348673943828416 -2024-04-29 07:00:00+00:00,43.543922292648304 -2024-04-29 08:00:00+00:00,46.28454700961941 -2024-04-29 09:00:00+00:00,49.408801719850736 -2024-04-29 10:00:00+00:00,52.685269083353624 -2024-04-29 11:00:00+00:00,55.77575912208031 -2024-04-29 12:00:00+00:00,54.475492838388284 -2024-04-29 13:00:00+00:00,52.83097409962414 -2024-04-29 14:00:00+00:00,51.745369594323236 -2024-04-29 15:00:00+00:00,51.304707659653296 -2024-04-29 16:00:00+00:00,50.05821996818145 -2024-04-29 17:00:00+00:00,49.62616063116868 -2024-04-29 18:00:00+00:00,52.733333996318834 -2024-04-29 19:00:00+00:00,55.157369017468866 -2024-04-29 20:00:00+00:00,57.91152422866621 -2024-04-29 21:00:00+00:00,56.99992709565796 -2024-04-29 22:00:00+00:00,57.65509848929552 -2024-04-29 23:00:00+00:00,57.884638421921515 -2024-04-30 00:00:00+00:00,55.851912210540625 -2024-04-30 01:00:00+00:00,55.247487181352064 -2024-04-30 02:00:00+00:00,55.10315678475103 -2024-04-30 03:00:00+00:00,56.37462663656915 -2024-04-30 04:00:00+00:00,58.82349356232536 -2024-04-30 05:00:00+00:00,58.13396752117005 -2024-04-30 06:00:00+00:00,53.26814099494091 -2024-04-30 07:00:00+00:00,49.08287101066736 -2024-04-30 08:00:00+00:00,47.341694773974986 -2024-04-30 09:00:00+00:00,45.624237415548464 -2024-04-30 10:00:00+00:00,42.228470908670495 -2024-04-30 11:00:00+00:00,41.563480806187634 -2024-04-30 12:00:00+00:00,42.41266906501453 -2024-04-30 13:00:00+00:00,43.49475665886958 -2024-04-30 14:00:00+00:00,44.366737777252204 -2024-04-30 15:00:00+00:00,44.14651115215101 -2024-04-30 16:00:00+00:00,43.496826879838316 -2024-04-30 17:00:00+00:00,41.919084701172565 -2024-04-30 18:00:00+00:00,39.5335435927748 -2024-04-30 19:00:00+00:00,37.507083730948864 -2024-04-30 20:00:00+00:00,40.67139887255668 -2024-04-30 21:00:00+00:00,44.05116817600601 -2024-04-30 22:00:00+00:00,46.203273434376726 -2024-04-30 23:00:00+00:00,48.7248443566008 -2024-05-01 00:00:00+00:00,53.52331360093984 -2024-05-01 01:00:00+00:00,58.042035830823636 -2024-05-01 02:00:00+00:00,59.11247945228668 -2024-05-01 03:00:00+00:00,60.22339524513016 -2024-05-01 04:00:00+00:00,63.70099591200212 -2024-05-01 05:00:00+00:00,67.36527588290139 -2024-05-01 06:00:00+00:00,70.66834250162239 -2024-05-01 07:00:00+00:00,73.79796288124204 -2024-05-01 08:00:00+00:00,76.62393384715789 -2024-05-01 09:00:00+00:00,79.01403322060432 -2024-05-01 10:00:00+00:00,79.79104450515152 -2024-05-01 11:00:00+00:00,80.76633732827055 -2024-05-01 12:00:00+00:00,77.76412592947966 -2024-05-01 13:00:00+00:00,74.04869460739928 -2024-05-01 14:00:00+00:00,72.13681099578086 -2024-05-01 15:00:00+00:00,69.80615790735304 -2024-05-01 16:00:00+00:00,68.80144833121543 -2024-05-01 17:00:00+00:00,68.67336951348172 -2024-05-01 18:00:00+00:00,68.72891196167517 -2024-05-01 19:00:00+00:00,68.752852511467 -2024-05-01 20:00:00+00:00,69.65053580201634 -2024-05-01 21:00:00+00:00,70.66628142003525 -2024-05-01 22:00:00+00:00,71.53993602542934 -2024-05-01 23:00:00+00:00,71.46509329946518 -2024-05-02 00:00:00+00:00,72.02999503156771 -2024-05-02 01:00:00+00:00,70.18897342440178 -2024-05-02 02:00:00+00:00,72.31370198546578 -2024-05-02 03:00:00+00:00,74.79224364136277 -2024-05-02 04:00:00+00:00,74.75692481060047 -2024-05-02 05:00:00+00:00,75.25687578278522 -2024-05-02 06:00:00+00:00,75.309984600575 -2024-05-02 07:00:00+00:00,74.4684900733761 -2024-05-02 08:00:00+00:00,72.58172464745105 -2024-05-02 09:00:00+00:00,70.88957584757452 -2024-05-02 10:00:00+00:00,76.21926296119395 -2024-05-02 11:00:00+00:00,70.50289428650491 -2024-05-02 12:00:00+00:00,66.08643458092953 -2024-05-02 13:00:00+00:00,64.19850573473883 -2024-05-02 14:00:00+00:00,65.28818694320282 -2024-05-02 15:00:00+00:00,68.1699060903717 -2024-05-02 16:00:00+00:00,70.98137819454602 -2024-05-02 17:00:00+00:00,73.60600707287972 -2024-05-02 18:00:00+00:00,76.26761402507374 -2024-05-02 19:00:00+00:00,78.81462618435398 -2024-05-02 20:00:00+00:00,78.469757568897 -2024-05-02 21:00:00+00:00,78.38345632547347 -2024-05-02 22:00:00+00:00,78.82857378154735 -2024-05-02 23:00:00+00:00,79.35296296628663 -2024-05-03 00:00:00+00:00,71.50665994485406 -2024-05-03 01:00:00+00:00,74.50116427042988 -2024-05-03 02:00:00+00:00,76.28220193101704 -2024-05-03 03:00:00+00:00,76.25487856605928 -2024-05-03 04:00:00+00:00,73.9580039693768 -2024-05-03 05:00:00+00:00,69.49695866120011 -2024-05-03 06:00:00+00:00,64.05404632818286 -2024-05-03 07:00:00+00:00,58.24331683995888 -2024-05-03 08:00:00+00:00,51.74454811582286 -2024-05-03 09:00:00+00:00,45.86297072705315 -2024-05-03 10:00:00+00:00,45.53074874078844 -2024-05-03 11:00:00+00:00,44.03417558207429 -2024-05-03 12:00:00+00:00,43.573926780852375 -2024-05-03 13:00:00+00:00,41.966321670706584 -2024-05-03 14:00:00+00:00,39.34414016438366 -2024-05-03 15:00:00+00:00,36.946016884259514 -2024-05-03 16:00:00+00:00,34.7973448708122 -2024-05-03 17:00:00+00:00,33.08622800585203 -2024-05-03 18:00:00+00:00,31.12573003206482 -2024-05-03 19:00:00+00:00,30.127143953606456 -2024-05-03 20:00:00+00:00,31.336309395364673 -2024-05-05 21:00:00+00:00,33.17168789823033 -2024-05-05 22:00:00+00:00,34.60164073307335 -2024-05-05 23:00:00+00:00,34.0949607539529 -2024-05-06 00:00:00+00:00,31.037050428064838 -2024-05-06 01:00:00+00:00,28.689637973195172 -2024-05-06 02:00:00+00:00,34.91696297650291 -2024-05-06 03:00:00+00:00,38.17269670636828 -2024-05-06 04:00:00+00:00,42.628758873875086 -2024-05-06 05:00:00+00:00,47.37807471272024 -2024-05-06 06:00:00+00:00,50.18782377868728 -2024-05-06 07:00:00+00:00,52.601717485886034 -2024-05-06 08:00:00+00:00,55.541217964334315 -2024-05-06 09:00:00+00:00,59.10320091082531 -2024-05-06 10:00:00+00:00,61.17018329667661 -2024-05-06 11:00:00+00:00,63.55763257296508 -2024-05-06 12:00:00+00:00,63.8060257447817 -2024-05-06 13:00:00+00:00,63.46131933420223 -2024-05-06 14:00:00+00:00,63.11661442669123 -2024-05-06 15:00:00+00:00,63.09624301511519 -2024-05-06 16:00:00+00:00,53.12838539733377 -2024-05-06 17:00:00+00:00,48.69382807362485 -2024-05-06 18:00:00+00:00,44.50648943890455 -2024-05-06 19:00:00+00:00,40.15949759881608 -2024-05-06 20:00:00+00:00,36.47177254717873 -2024-05-06 21:00:00+00:00,33.01700988631924 -2024-05-06 22:00:00+00:00,29.72856543593241 -2024-05-06 23:00:00+00:00,25.757707160438287 -2024-05-07 00:00:00+00:00,21.653925661361203 -2024-05-07 01:00:00+00:00,18.001078378948623 -2024-05-07 02:00:00+00:00,21.2468617619114 -2024-05-07 03:00:00+00:00,26.35369650943175 -2024-05-07 04:00:00+00:00,30.943092046512714 -2024-05-07 05:00:00+00:00,34.802302435724904 -2024-05-07 06:00:00+00:00,38.13132982496007 -2024-05-07 07:00:00+00:00,37.775305582460156 -2024-05-07 08:00:00+00:00,36.480938160541854 -2024-05-07 09:00:00+00:00,35.81546941611479 -2024-05-07 10:00:00+00:00,36.52267097549578 -2024-05-07 11:00:00+00:00,36.85887410957388 -2024-05-07 12:00:00+00:00,37.08055787510455 -2024-05-07 13:00:00+00:00,36.53607633710252 -2024-05-07 14:00:00+00:00,36.0886303645065 -2024-05-07 15:00:00+00:00,34.9538946369535 -2024-05-07 16:00:00+00:00,31.20897634126782 -2024-05-07 17:00:00+00:00,26.82254095922875 -2024-05-07 18:00:00+00:00,22.60669614204512 -2024-05-07 19:00:00+00:00,18.91457013044365 -2024-05-07 20:00:00+00:00,15.446467649424372 -2024-05-07 21:00:00+00:00,14.479401266768775 -2024-05-07 22:00:00+00:00,15.67849862775592 -2024-05-07 23:00:00+00:00,15.575355914116377 -2024-05-08 00:00:00+00:00,15.82232140513422 -2024-05-08 01:00:00+00:00,18.537627431934425 -2024-05-08 02:00:00+00:00,21.178794599908723 -2024-05-08 03:00:00+00:00,25.96931122506739 -2024-05-08 04:00:00+00:00,31.222260195162846 -2024-05-08 05:00:00+00:00,36.23677301380726 -2024-05-08 06:00:00+00:00,39.57655170201843 -2024-05-08 07:00:00+00:00,43.62692100813213 -2024-05-08 08:00:00+00:00,47.70616837542622 -2024-05-08 09:00:00+00:00,52.256760542117846 -2024-05-08 10:00:00+00:00,57.854410193514695 -2024-05-08 11:00:00+00:00,63.97202197655377 -2024-05-08 12:00:00+00:00,68.8256721445899 -2024-05-08 13:00:00+00:00,74.34515266407041 -2024-05-08 14:00:00+00:00,79.50462843651395 -2024-05-08 15:00:00+00:00,79.67778541860547 -2024-05-08 16:00:00+00:00,79.18324613255368 -2024-05-08 17:00:00+00:00,77.90295816091087 -2024-05-08 18:00:00+00:00,76.60242568147211 -2024-05-08 19:00:00+00:00,75.35871681581268 -2024-05-08 20:00:00+00:00,74.16107387903944 -2024-05-08 21:00:00+00:00,71.47329532548703 -2024-05-08 22:00:00+00:00,68.41471928366019 -2024-05-08 23:00:00+00:00,63.392407912855006 -2024-05-09 00:00:00+00:00,59.461733715501246 -2024-05-09 01:00:00+00:00,55.86373598920154 -2024-05-09 02:00:00+00:00,55.88868999237924 -2024-05-09 03:00:00+00:00,55.7592122193965 -2024-05-09 04:00:00+00:00,55.912547256452584 -2024-05-09 05:00:00+00:00,57.801993093266724 -2024-05-09 06:00:00+00:00,56.379717452240705 -2024-05-09 07:00:00+00:00,54.50244039071426 -2024-05-09 08:00:00+00:00,52.43721271103978 -2024-05-09 09:00:00+00:00,49.946794592572296 -2024-05-09 10:00:00+00:00,47.52805391296189 -2024-05-09 11:00:00+00:00,46.54062719476805 -2024-05-09 12:00:00+00:00,48.147387425230285 -2024-05-09 13:00:00+00:00,50.44728277658641 -2024-05-09 14:00:00+00:00,50.642430676951946 -2024-05-09 15:00:00+00:00,48.49552525602525 -2024-05-09 16:00:00+00:00,42.388811437564904 -2024-05-09 17:00:00+00:00,36.70929157834542 -2024-05-09 18:00:00+00:00,31.02565250825179 -2024-05-09 19:00:00+00:00,27.10281209670461 -2024-05-09 20:00:00+00:00,29.15141405593812 -2024-05-09 21:00:00+00:00,30.582484819364044 -2024-05-09 22:00:00+00:00,32.889647141016326 -2024-05-09 23:00:00+00:00,36.7321917362289 -2024-05-10 00:00:00+00:00,38.76854417538326 -2024-05-10 01:00:00+00:00,39.8944485170843 -2024-05-10 02:00:00+00:00,36.40905802564737 -2024-05-10 03:00:00+00:00,34.33891517302356 -2024-05-10 04:00:00+00:00,32.32020105785101 -2024-05-10 05:00:00+00:00,32.02106712743145 -2024-05-10 06:00:00+00:00,32.34241669956544 -2024-05-10 07:00:00+00:00,31.096740610426625 -2024-05-10 08:00:00+00:00,29.720208581261122 -2024-05-10 09:00:00+00:00,28.044124541424743 -2024-05-10 10:00:00+00:00,24.551239898912183 -2024-05-10 11:00:00+00:00,21.151847801648035 -2024-05-10 12:00:00+00:00,19.17561958337141 -2024-05-10 13:00:00+00:00,15.357553318817532 -2024-05-10 14:00:00+00:00,12.773327700211436 -2024-05-10 15:00:00+00:00,10.477845404728853 -2024-05-10 16:00:00+00:00,12.1104403527014 -2024-05-10 17:00:00+00:00,13.195435215222929 -2024-05-10 18:00:00+00:00,13.745719591267775 -2024-05-10 19:00:00+00:00,13.522668288255264 -2024-05-10 20:00:00+00:00,12.489452800796627 -2024-05-12 21:00:00+00:00,14.047758483395711 -2024-05-12 22:00:00+00:00,14.20463994624542 -2024-05-12 23:00:00+00:00,13.665998260062695 -2024-05-13 00:00:00+00:00,13.88512785991543 -2024-05-13 01:00:00+00:00,14.980454962718673 -2024-05-13 02:00:00+00:00,15.301068465331493 -2024-05-13 03:00:00+00:00,15.726644869210586 -2024-05-13 04:00:00+00:00,17.956472457889596 -2024-05-13 05:00:00+00:00,20.022851085583632 -2024-05-13 06:00:00+00:00,19.499410628454296 -2024-05-13 07:00:00+00:00,18.82194195890796 -2024-05-13 08:00:00+00:00,19.156189339491302 -2024-05-13 09:00:00+00:00,18.889159352570385 -2024-05-13 10:00:00+00:00,18.81237626660216 -2024-05-13 11:00:00+00:00,17.622837619436485 -2024-05-13 12:00:00+00:00,18.843524577795637 -2024-05-13 13:00:00+00:00,21.494018737724115 -2024-05-13 14:00:00+00:00,24.010335684307417 -2024-05-13 15:00:00+00:00,26.60209796271053 -2024-05-13 16:00:00+00:00,28.001351977162415 -2024-05-13 17:00:00+00:00,29.82682276815006 -2024-05-13 18:00:00+00:00,30.39266287752118 -2024-05-13 19:00:00+00:00,31.414522065054552 -2024-05-13 20:00:00+00:00,33.15996337718175 -2024-05-13 21:00:00+00:00,34.374666139415716 -2024-05-13 22:00:00+00:00,35.268062369268996 -2024-05-13 23:00:00+00:00,36.743615517338995 -2024-05-14 00:00:00+00:00,39.53369762017699 -2024-05-14 01:00:00+00:00,42.282198955251324 -2024-05-14 02:00:00+00:00,45.77133720299441 -2024-05-14 03:00:00+00:00,48.05171861910251 -2024-05-14 04:00:00+00:00,49.25311427975529 -2024-05-14 05:00:00+00:00,48.24165515065023 -2024-05-14 06:00:00+00:00,47.71047236065515 -2024-05-14 07:00:00+00:00,47.68449947455756 -2024-05-14 08:00:00+00:00,48.6931864657166 -2024-05-14 09:00:00+00:00,47.6500222209874 -2024-05-14 10:00:00+00:00,46.455859525591855 -2024-05-14 11:00:00+00:00,46.96895701411487 -2024-05-14 12:00:00+00:00,49.25837596640916 -2024-05-14 13:00:00+00:00,49.69391845260785 -2024-05-14 14:00:00+00:00,48.78274871549081 -2024-05-14 15:00:00+00:00,47.10518080429195 -2024-05-14 16:00:00+00:00,43.395509128485855 -2024-05-14 17:00:00+00:00,40.12668341394542 -2024-05-14 18:00:00+00:00,36.62809934729103 -2024-05-14 19:00:00+00:00,34.95341621436869 -2024-05-14 20:00:00+00:00,31.52085335126683 -2024-05-14 21:00:00+00:00,27.5683810824487 -2024-05-14 22:00:00+00:00,23.38990186237215 -2024-05-14 23:00:00+00:00,23.663272699870767 -2024-05-15 00:00:00+00:00,24.029873214614685 -2024-05-15 01:00:00+00:00,22.243058377329195 -2024-05-15 02:00:00+00:00,21.120609397736946 -2024-05-15 03:00:00+00:00,19.401743858533788 -2024-05-15 04:00:00+00:00,19.713181316952497 -2024-05-15 05:00:00+00:00,21.88356178859725 -2024-05-15 06:00:00+00:00,24.266051874064402 -2024-05-15 07:00:00+00:00,27.486344054443318 -2024-05-15 08:00:00+00:00,31.877184687401098 -2024-05-15 09:00:00+00:00,36.05599413452565 -2024-05-15 10:00:00+00:00,40.71596634234628 -2024-05-15 11:00:00+00:00,45.83027837680023 -2024-05-15 12:00:00+00:00,51.639180300524494 -2024-05-15 13:00:00+00:00,54.960795314971115 -2024-05-15 14:00:00+00:00,58.84208498208666 -2024-05-15 15:00:00+00:00,64.12631621415584 -2024-05-15 16:00:00+00:00,67.22647116975543 -2024-05-15 17:00:00+00:00,72.96668049226781 -2024-05-15 18:00:00+00:00,76.89942304036133 -2024-05-15 19:00:00+00:00,79.39163487836764 -2024-05-15 20:00:00+00:00,81.89346920223566 -2024-05-15 21:00:00+00:00,83.27363216236128 -2024-05-15 22:00:00+00:00,83.90367272619123 -2024-05-15 23:00:00+00:00,84.68007564495818 -2024-05-16 00:00:00+00:00,86.29204225975357 -2024-05-16 01:00:00+00:00,87.70964632991277 -2024-05-16 02:00:00+00:00,86.74428968727715 -2024-05-16 03:00:00+00:00,86.92154858344179 -2024-05-16 04:00:00+00:00,86.70164082046563 -2024-05-16 05:00:00+00:00,84.66523454772506 -2024-05-16 06:00:00+00:00,81.54667016649967 -2024-05-16 07:00:00+00:00,77.70009651070268 -2024-05-16 08:00:00+00:00,72.49238996704261 -2024-05-16 09:00:00+00:00,67.41011907241442 -2024-05-16 10:00:00+00:00,62.11875134122969 -2024-05-16 11:00:00+00:00,56.04413520758334 -2024-05-16 12:00:00+00:00,51.57920268996126 -2024-05-16 13:00:00+00:00,48.7851468975424 -2024-05-16 14:00:00+00:00,48.808721102324455 -2024-05-16 15:00:00+00:00,48.13543891281571 -2024-05-16 16:00:00+00:00,48.75878895314566 -2024-05-16 17:00:00+00:00,48.03139172666162 -2024-05-16 18:00:00+00:00,48.172769970406144 -2024-05-16 19:00:00+00:00,49.8673799681522 -2024-05-16 20:00:00+00:00,52.35855167423242 -2024-05-16 21:00:00+00:00,55.137395610982885 -2024-05-16 22:00:00+00:00,58.90178541100049 -2024-05-16 23:00:00+00:00,62.68386956426479 -2024-05-17 00:00:00+00:00,66.9671686869034 -2024-05-17 01:00:00+00:00,72.19887806469914 -2024-05-17 02:00:00+00:00,75.34052880599212 -2024-05-17 03:00:00+00:00,76.12304956105687 -2024-05-17 04:00:00+00:00,73.62403082018984 -2024-05-17 05:00:00+00:00,72.55760224876113 -2024-05-17 06:00:00+00:00,69.94067873103256 -2024-05-17 07:00:00+00:00,68.45885580424242 -2024-05-17 08:00:00+00:00,66.6490060828719 -2024-05-17 09:00:00+00:00,64.1377690883401 -2024-05-17 10:00:00+00:00,61.75475039762899 -2024-05-17 11:00:00+00:00,60.22251799759582 -2024-05-17 12:00:00+00:00,57.8271711226513 -2024-05-17 13:00:00+00:00,54.912862681777305 -2024-05-17 14:00:00+00:00,50.69080824837078 -2024-05-17 15:00:00+00:00,49.06074108182811 -2024-05-17 16:00:00+00:00,48.05845506942358 -2024-05-17 17:00:00+00:00,47.055901394970725 -2024-05-17 18:00:00+00:00,46.046291809510116 -2024-05-17 19:00:00+00:00,44.16922341458521 -2024-05-17 20:00:00+00:00,43.122021091816976 -2024-05-19 21:00:00+00:00,42.32644035829075 -2024-05-19 22:00:00+00:00,42.76909733779035 -2024-05-19 23:00:00+00:00,42.5337543875038 -2024-05-20 00:00:00+00:00,41.681750669828965 -2024-05-20 01:00:00+00:00,39.89724126532986 -2024-05-20 02:00:00+00:00,38.95948038143632 -2024-05-20 03:00:00+00:00,38.819384611788564 -2024-05-20 04:00:00+00:00,38.54404550230122 -2024-05-20 05:00:00+00:00,36.60636627454526 -2024-05-20 06:00:00+00:00,33.84089769046011 -2024-05-20 07:00:00+00:00,32.15615651570225 -2024-05-20 08:00:00+00:00,30.249576151004607 -2024-05-20 09:00:00+00:00,28.798347842633046 -2024-05-20 10:00:00+00:00,28.321522673159507 -2024-05-20 11:00:00+00:00,25.976315708662348 -2024-05-20 12:00:00+00:00,24.098680799231524 -2024-05-20 13:00:00+00:00,22.935580862419386 -2024-05-20 14:00:00+00:00,22.063690716246008 -2024-05-20 17:00:00+00:00,21.235034979996037 -2024-05-20 18:00:00+00:00,21.77394856238789 -2024-05-20 19:00:00+00:00,23.198932889014692 -2024-05-20 20:00:00+00:00,25.817359498051854 -2024-05-20 21:00:00+00:00,26.579144009836366 -2024-05-20 22:00:00+00:00,28.394460790611365 -2024-05-20 23:00:00+00:00,32.090279162702736 -2024-05-21 00:00:00+00:00,36.227215475922186 -2024-05-21 01:00:00+00:00,40.38798973893273 -2024-05-21 02:00:00+00:00,44.07304735392629 -2024-05-21 03:00:00+00:00,48.843145563936595 -2024-05-21 04:00:00+00:00,50.004149101727386 -2024-05-21 05:00:00+00:00,50.282609211708504 -2024-05-21 06:00:00+00:00,48.770339397588224 -2024-05-21 07:00:00+00:00,48.08813925689552 -2024-05-21 08:00:00+00:00,47.21095074719782 -2024-05-21 09:00:00+00:00,45.74402456578518 -2024-05-21 10:00:00+00:00,43.966432437315625 -2024-05-21 11:00:00+00:00,41.633742778940395 -2024-05-21 12:00:00+00:00,38.807764359426635 -2024-05-21 13:00:00+00:00,36.07926911583594 -2024-05-21 14:00:00+00:00,34.37057247062109 -2024-05-21 15:00:00+00:00,32.67833968617203 -2024-05-21 16:00:00+00:00,30.825048474992894 -2024-05-21 17:00:00+00:00,28.295574065239727 -2024-05-21 18:00:00+00:00,27.915371968021702 -2024-05-21 19:00:00+00:00,28.862872935658004 -2024-05-21 20:00:00+00:00,30.946245901514224 -2024-05-21 21:00:00+00:00,32.415334311591685 -2024-05-21 22:00:00+00:00,33.497251177278386 -2024-05-21 23:00:00+00:00,32.320360897437766 -2024-05-22 00:00:00+00:00,31.674076067716758 -2024-05-22 01:00:00+00:00,32.56876171015825 -2024-05-22 02:00:00+00:00,34.74932999652859 -2024-05-22 03:00:00+00:00,32.13750107049661 -2024-05-22 04:00:00+00:00,30.953823797518414 -2024-05-22 05:00:00+00:00,29.247466699461768 -2024-05-22 06:00:00+00:00,28.445650807857664 -2024-05-22 07:00:00+00:00,27.670712550365295 -2024-05-22 08:00:00+00:00,26.790084932661216 -2024-05-22 09:00:00+00:00,27.056970588350875 -2024-05-22 10:00:00+00:00,27.936439606581324 -2024-05-22 11:00:00+00:00,30.63754333513068 -2024-05-22 12:00:00+00:00,33.02768599506546 -2024-05-22 13:00:00+00:00,33.84335714359303 -2024-05-22 14:00:00+00:00,34.69827793725845 -2024-05-22 15:00:00+00:00,34.97036035385402 -2024-05-22 16:00:00+00:00,34.71338218989955 -2024-05-22 17:00:00+00:00,36.822074833816096 -2024-05-22 18:00:00+00:00,36.60862403328211 -2024-05-22 19:00:00+00:00,37.389022070360184 -2024-05-22 20:00:00+00:00,37.91767025765466 -2024-05-22 21:00:00+00:00,39.13781637008161 -2024-05-22 22:00:00+00:00,39.28361057037712 -2024-05-22 23:00:00+00:00,38.150832547429445 -2024-05-23 00:00:00+00:00,38.11368310325408 -2024-05-23 01:00:00+00:00,36.04088842683385 -2024-05-23 02:00:00+00:00,32.92551270789522 -2024-05-23 03:00:00+00:00,35.145650251586936 -2024-05-23 04:00:00+00:00,36.49650307171387 -2024-05-23 05:00:00+00:00,37.836244753408096 -2024-05-23 06:00:00+00:00,37.44105917048257 -2024-05-23 07:00:00+00:00,37.01478082082888 -2024-05-23 08:00:00+00:00,35.779145015458695 -2024-05-23 09:00:00+00:00,33.24938311069731 -2024-05-23 10:00:00+00:00,32.33028415963331 -2024-05-23 11:00:00+00:00,31.987730463484485 -2024-05-23 12:00:00+00:00,31.516793241418135 -2024-05-23 13:00:00+00:00,30.748653375665384 -2024-05-23 14:00:00+00:00,27.81696788946781 -2024-05-23 15:00:00+00:00,26.196657641256042 -2024-05-23 16:00:00+00:00,25.114038372725908 -2024-05-23 17:00:00+00:00,21.959135760215787 -2024-05-23 18:00:00+00:00,19.78141730153968 -2024-05-23 19:00:00+00:00,18.15675155322181 -2024-05-23 20:00:00+00:00,16.57845511285028 -2024-05-23 21:00:00+00:00,14.89145560716626 -2024-05-23 22:00:00+00:00,14.02282135344988 -2024-05-23 23:00:00+00:00,13.625496176526907 -2024-05-24 00:00:00+00:00,12.488139361055504 -2024-05-24 01:00:00+00:00,11.37105544998946 -2024-05-24 02:00:00+00:00,11.001012062288694 -2024-05-24 03:00:00+00:00,12.433967563946993 -2024-05-24 04:00:00+00:00,14.086380598458003 -2024-05-24 05:00:00+00:00,13.261561389563198 -2024-05-24 06:00:00+00:00,13.417983914406111 -2024-05-24 07:00:00+00:00,13.112130913059223 -2024-05-24 08:00:00+00:00,15.099671715952805 -2024-05-24 09:00:00+00:00,16.31783339923114 -2024-05-24 10:00:00+00:00,17.20302240795192 -2024-05-24 11:00:00+00:00,17.59277292606567 -2024-05-24 12:00:00+00:00,19.296025084134236 -2024-05-24 13:00:00+00:00,21.330255022961552 -2024-05-24 14:00:00+00:00,22.111052858918868 -2024-05-24 15:00:00+00:00,22.440495336518932 -2024-05-24 16:00:00+00:00,23.793619782426667 -2024-05-24 17:00:00+00:00,23.25513950471107 -2024-05-24 18:00:00+00:00,23.283014069171173 -2024-05-24 19:00:00+00:00,25.168308964960882 -2024-05-24 20:00:00+00:00,26.396774822248258 -2024-05-26 21:00:00+00:00,28.462549923647764 -2024-05-26 22:00:00+00:00,28.695211926065753 -2024-05-26 23:00:00+00:00,29.05930122375642 -2024-05-27 00:00:00+00:00,31.20363359527341 -2024-05-27 01:00:00+00:00,34.55624171646442 -2024-05-27 02:00:00+00:00,38.24985923214901 -2024-05-27 03:00:00+00:00,41.5554370812656 -2024-05-27 04:00:00+00:00,44.26311338419544 -2024-05-27 05:00:00+00:00,45.94478637865019 -2024-05-27 06:00:00+00:00,45.08236217406564 -2024-05-27 07:00:00+00:00,43.355201738890564 -2024-05-27 08:00:00+00:00,42.858705288591075 -2024-05-27 09:00:00+00:00,42.195600088352045 -2024-05-27 10:00:00+00:00,41.833668577775306 -2024-05-27 11:00:00+00:00,40.96643204752558 -2024-05-27 12:00:00+00:00,37.72345801885225 -2024-05-27 13:00:00+00:00,36.419250184476056 -2024-05-27 14:00:00+00:00,34.25156173374974 -2024-05-27 15:00:00+00:00,31.521372668157067 -2024-05-27 16:00:00+00:00,27.366309439348527 -2024-05-27 17:00:00+00:00,23.80427262366631 -2024-05-27 18:00:00+00:00,20.436857727829725 -2024-05-27 19:00:00+00:00,17.82696249317001 -2024-05-27 20:00:00+00:00,16.875998888357532 -2024-05-27 21:00:00+00:00,17.198174729962645 -2024-05-27 22:00:00+00:00,16.09754353385926 -2024-05-27 23:00:00+00:00,14.916987978303537 -2024-05-28 00:00:00+00:00,14.004021190794825 -2024-05-28 01:00:00+00:00,13.414145175307098 -2024-05-28 02:00:00+00:00,14.86282854475871 -2024-05-28 03:00:00+00:00,14.94329287493365 -2024-05-28 04:00:00+00:00,15.154334227571999 -2024-05-28 05:00:00+00:00,14.54964790860024 -2024-05-28 06:00:00+00:00,13.30330141393175 -2024-05-28 07:00:00+00:00,11.871364433883368 -2024-05-28 08:00:00+00:00,11.716126428475459 -2024-05-28 09:00:00+00:00,12.009207418438175 -2024-05-28 10:00:00+00:00,10.920905806674002 -2024-05-28 11:00:00+00:00,9.962601944131011 -2024-05-28 12:00:00+00:00,11.520168546122221 -2024-05-28 13:00:00+00:00,13.50151620840368 -2024-05-28 14:00:00+00:00,13.51360798986139 -2024-05-28 15:00:00+00:00,12.895054995312503 -2024-05-28 16:00:00+00:00,12.050848050691473 -2024-05-28 17:00:00+00:00,12.741039454287252 -2024-05-28 18:00:00+00:00,14.012854596970653 -2024-05-28 19:00:00+00:00,15.041533227548166 -2024-05-28 20:00:00+00:00,16.416752602767463 -2024-05-28 21:00:00+00:00,17.253219272733467 -2024-05-28 22:00:00+00:00,17.812471540850762 -2024-05-28 23:00:00+00:00,17.973452581891888 -2024-05-29 00:00:00+00:00,20.63583295667455 -2024-05-29 01:00:00+00:00,23.623397819679457 -2024-05-29 02:00:00+00:00,26.44427229076542 -2024-05-29 03:00:00+00:00,30.279988720888067 -2024-05-29 04:00:00+00:00,34.65338654947397 -2024-05-29 05:00:00+00:00,38.80790549991103 -2024-05-29 06:00:00+00:00,38.37627093909821 -2024-05-29 07:00:00+00:00,38.0723693220609 -2024-05-29 08:00:00+00:00,37.497203771970206 -2024-05-29 09:00:00+00:00,38.09669314219396 -2024-05-29 10:00:00+00:00,37.726988799887124 -2024-05-29 11:00:00+00:00,37.46344830371982 -2024-05-29 12:00:00+00:00,38.15928950070854 -2024-05-29 13:00:00+00:00,38.028594934083756 -2024-05-29 14:00:00+00:00,36.70175389779983 -2024-05-29 15:00:00+00:00,33.707611269816006 -2024-05-29 16:00:00+00:00,29.87588325070132 -2024-05-29 17:00:00+00:00,24.396565617119986 -2024-05-29 18:00:00+00:00,20.335125567597213 -2024-05-29 19:00:00+00:00,17.234003602223925 -2024-05-29 20:00:00+00:00,23.03245330750042 -2024-05-29 21:00:00+00:00,25.367170003169228 -2024-05-29 22:00:00+00:00,27.797680668973644 -2024-05-29 23:00:00+00:00,30.14417655754801 -2024-05-30 00:00:00+00:00,29.358352606132947 -2024-05-30 01:00:00+00:00,28.994866080321682 -2024-05-30 02:00:00+00:00,27.319921411813244 -2024-05-30 03:00:00+00:00,26.25758659847998 -2024-05-30 04:00:00+00:00,27.18496915484183 -2024-05-30 05:00:00+00:00,32.277407014655225 -2024-05-30 06:00:00+00:00,37.90173614537377 -2024-05-30 07:00:00+00:00,43.845540558266 -2024-05-30 08:00:00+00:00,48.37157261955115 -2024-05-30 09:00:00+00:00,52.73328654100557 -2024-05-30 10:00:00+00:00,51.41296478381633 -2024-05-30 11:00:00+00:00,52.06302803321313 -2024-05-30 12:00:00+00:00,53.12049971085094 -2024-05-30 13:00:00+00:00,54.239232518214706 -2024-05-30 14:00:00+00:00,58.43108199197011 -2024-05-30 15:00:00+00:00,62.286606025326705 -2024-05-30 16:00:00+00:00,65.86951149195279 -2024-05-30 17:00:00+00:00,69.52575934560618 -2024-05-30 18:00:00+00:00,70.27273613301384 -2024-05-30 19:00:00+00:00,67.60233228072626 -2024-05-30 20:00:00+00:00,62.803964040431275 -2024-05-30 21:00:00+00:00,57.176911527199685 -2024-05-30 22:00:00+00:00,53.185735876718866 -2024-05-30 23:00:00+00:00,47.67559903226038 -2024-05-31 00:00:00+00:00,44.740818088047035 -2024-05-31 01:00:00+00:00,39.906120308855364 -2024-05-31 02:00:00+00:00,34.94798580198282 -2024-05-31 03:00:00+00:00,32.448617154972304 -2024-05-31 04:00:00+00:00,29.53735892608862 -2024-05-31 05:00:00+00:00,25.83849982971815 -2024-05-31 06:00:00+00:00,23.166833467911 -2024-05-31 07:00:00+00:00,21.716006528010702 -2024-05-31 08:00:00+00:00,21.508064378569827 -2024-05-31 09:00:00+00:00,22.113359873224493 -2024-05-31 10:00:00+00:00,23.305478948611306 -2024-05-31 11:00:00+00:00,24.731632670780375 -2024-05-31 12:00:00+00:00,23.6952808086405 -2024-05-31 13:00:00+00:00,25.04701439858612 -2024-05-31 14:00:00+00:00,23.872604013649244 -2024-05-31 15:00:00+00:00,24.689381604005924 -2024-05-31 16:00:00+00:00,25.430703773899893 -2024-05-31 17:00:00+00:00,23.322676270961388 -2024-05-31 18:00:00+00:00,22.915179771481917 -2024-05-31 19:00:00+00:00,23.6626262019336 -2024-05-31 20:00:00+00:00,23.106296191613858 -2024-06-02 21:00:00+00:00,20.52533950279851 -2024-06-02 22:00:00+00:00,18.476815150091277 -2024-06-02 23:00:00+00:00,16.980044039956088 -2024-06-03 00:00:00+00:00,16.08874107250498 -2024-06-03 01:00:00+00:00,15.499694057464824 -2024-06-03 02:00:00+00:00,17.075457913625787 -2024-06-03 03:00:00+00:00,19.375260151000266 -2024-06-03 04:00:00+00:00,21.469081362468984 -2024-06-03 05:00:00+00:00,22.602533579405478 -2024-06-03 06:00:00+00:00,22.281567416855264 -2024-06-03 07:00:00+00:00,21.70904422956814 -2024-06-03 08:00:00+00:00,21.631750784312167 -2024-06-03 09:00:00+00:00,21.816796561166033 -2024-06-03 10:00:00+00:00,23.747302642233507 -2024-06-03 11:00:00+00:00,26.922809077552703 -2024-06-03 12:00:00+00:00,28.999516683672194 -2024-06-03 13:00:00+00:00,30.488495449456845 -2024-06-03 14:00:00+00:00,32.75043253490748 -2024-06-03 15:00:00+00:00,35.39040015547186 -2024-06-03 16:00:00+00:00,38.351927954938105 -2024-06-03 17:00:00+00:00,41.060821369737496 -2024-06-03 18:00:00+00:00,43.91397121773215 -2024-06-03 19:00:00+00:00,47.417288805954946 -2024-06-03 20:00:00+00:00,52.18235013079847 -2024-06-03 21:00:00+00:00,57.25638435803075 -2024-06-03 22:00:00+00:00,60.893390992531955 -2024-06-03 23:00:00+00:00,63.31432328074793 -2024-06-04 00:00:00+00:00,62.58137409724169 -2024-06-04 01:00:00+00:00,60.7360337587388 -2024-06-04 02:00:00+00:00,59.37028287573424 -2024-06-04 03:00:00+00:00,57.89104662111042 -2024-06-04 04:00:00+00:00,55.27734609418258 -2024-06-04 05:00:00+00:00,52.6682387660881 -2024-06-04 06:00:00+00:00,48.83458726782374 -2024-06-04 07:00:00+00:00,45.25493358816997 -2024-06-04 08:00:00+00:00,43.47527309723278 -2024-06-04 09:00:00+00:00,42.150157242958336 -2024-06-04 10:00:00+00:00,41.05160542620825 -2024-06-04 11:00:00+00:00,39.89729296029601 -2024-06-04 12:00:00+00:00,39.72641318125112 -2024-06-04 13:00:00+00:00,40.25474673231603 -2024-06-04 14:00:00+00:00,43.87721034436057 -2024-06-04 15:00:00+00:00,48.849107213265235 -2024-06-04 16:00:00+00:00,53.4894192459433 -2024-06-04 17:00:00+00:00,58.36611875975779 -2024-06-04 18:00:00+00:00,63.32937103730815 -2024-06-04 19:00:00+00:00,67.75360854900599 -2024-06-04 20:00:00+00:00,71.68436246120584 -2024-06-04 21:00:00+00:00,73.01268234891609 -2024-06-04 22:00:00+00:00,73.16207423502348 -2024-06-04 23:00:00+00:00,69.67558890633418 -2024-06-05 00:00:00+00:00,68.00057856017169 -2024-06-05 01:00:00+00:00,66.21825574510599 -2024-06-05 02:00:00+00:00,65.55214059156124 -2024-06-05 03:00:00+00:00,64.91812233710812 -2024-06-05 04:00:00+00:00,66.47827179221197 -2024-06-05 05:00:00+00:00,64.95431227628532 -2024-06-05 06:00:00+00:00,63.8688879877759 -2024-06-05 07:00:00+00:00,64.74148843508432 -2024-06-05 08:00:00+00:00,65.19844417809001 -2024-06-05 09:00:00+00:00,65.55309518319343 -2024-06-05 10:00:00+00:00,66.37974734063967 -2024-06-05 11:00:00+00:00,68.00519891779842 -2024-06-05 12:00:00+00:00,69.4752243760081 -2024-06-05 13:00:00+00:00,72.09629114853581 -2024-06-05 14:00:00+00:00,72.76925054163704 -2024-06-05 15:00:00+00:00,73.43565078005851 -2024-06-05 16:00:00+00:00,72.42415750052383 -2024-06-05 17:00:00+00:00,70.71245365877506 -2024-06-05 18:00:00+00:00,65.59581301067726 -2024-06-05 19:00:00+00:00,62.74405872767708 -2024-06-05 20:00:00+00:00,58.520418897350794 -2024-06-05 21:00:00+00:00,52.83993918369806 -2024-06-05 22:00:00+00:00,49.62920539302741 -2024-06-05 23:00:00+00:00,46.857053225072946 -2024-06-06 00:00:00+00:00,45.216776243640695 -2024-06-06 01:00:00+00:00,44.493742833303465 -2024-06-06 02:00:00+00:00,44.306092093661114 -2024-06-06 03:00:00+00:00,45.89814330620522 -2024-06-06 04:00:00+00:00,48.075938009860174 -2024-06-06 05:00:00+00:00,48.27908233806083 -2024-06-06 06:00:00+00:00,46.81660719137507 -2024-06-06 07:00:00+00:00,44.97122543448864 -2024-06-06 08:00:00+00:00,42.84969368315698 -2024-06-06 09:00:00+00:00,41.983316500376944 -2024-06-06 10:00:00+00:00,42.25467043396179 -2024-06-06 11:00:00+00:00,40.95060926476855 -2024-06-06 12:00:00+00:00,37.587582682247834 -2024-06-06 13:00:00+00:00,34.249832235878394 -2024-06-06 14:00:00+00:00,32.087046784797366 -2024-06-06 15:00:00+00:00,30.22659447289168 -2024-06-06 16:00:00+00:00,27.15077277031464 -2024-06-06 17:00:00+00:00,24.03583469557429 -2024-06-06 18:00:00+00:00,18.722326549604873 -2024-06-06 19:00:00+00:00,16.067867294697752 -2024-06-06 20:00:00+00:00,17.248531950148678 -2024-06-06 21:00:00+00:00,19.904328782155876 -2024-06-06 22:00:00+00:00,23.613402188821187 -2024-06-06 23:00:00+00:00,24.585190065815926 -2024-06-07 00:00:00+00:00,24.082262724509825 -2024-06-07 01:00:00+00:00,24.950756533861835 -2024-06-07 02:00:00+00:00,24.841146521491314 -2024-06-07 03:00:00+00:00,25.939377800614604 -2024-06-07 04:00:00+00:00,27.21977637673953 -2024-06-07 05:00:00+00:00,27.185861755787236 -2024-06-07 06:00:00+00:00,28.7772119859759 -2024-06-07 07:00:00+00:00,30.532080234591344 -2024-06-07 08:00:00+00:00,32.47637501714248 -2024-06-07 09:00:00+00:00,33.081820268247206 -2024-06-07 10:00:00+00:00,30.363792332507813 -2024-06-07 11:00:00+00:00,27.291900925342812 -2024-06-07 12:00:00+00:00,26.954388334704383 -2024-06-07 13:00:00+00:00,28.497734385351205 -2024-06-07 14:00:00+00:00,31.247232292515694 -2024-06-07 15:00:00+00:00,32.06772729902886 -2024-06-07 16:00:00+00:00,34.174148900995476 -2024-06-07 17:00:00+00:00,35.15943695561116 -2024-06-07 18:00:00+00:00,35.269164054593276 -2024-06-07 19:00:00+00:00,35.78791546789223 -2024-06-07 20:00:00+00:00,37.435185485187425 -2024-06-09 21:00:00+00:00,39.36878097511997 -2024-06-09 22:00:00+00:00,42.55600388399066 -2024-06-09 23:00:00+00:00,46.563862404018224 -2024-06-10 00:00:00+00:00,51.253911515033124 -2024-06-10 01:00:00+00:00,55.7410182154274 -2024-06-10 02:00:00+00:00,53.23367681877365 -2024-06-10 03:00:00+00:00,51.2920780154685 -2024-06-10 04:00:00+00:00,48.73375434058925 -2024-06-10 05:00:00+00:00,53.687003370262666 -2024-06-10 06:00:00+00:00,55.89396874942572 -2024-06-10 07:00:00+00:00,56.34731653561924 -2024-06-10 08:00:00+00:00,55.16896575415457 -2024-06-10 09:00:00+00:00,51.872161901954776 -2024-06-10 10:00:00+00:00,46.63958936405417 -2024-06-10 11:00:00+00:00,41.80462128264529 -2024-06-10 12:00:00+00:00,37.33287544173248 -2024-06-10 13:00:00+00:00,32.747870997129795 -2024-06-10 14:00:00+00:00,28.476455072309278 -2024-06-10 15:00:00+00:00,24.386764443018077 -2024-06-10 16:00:00+00:00,23.98215668126172 -2024-06-10 17:00:00+00:00,23.417685704029832 -2024-06-10 18:00:00+00:00,22.827239967122107 -2024-06-10 19:00:00+00:00,16.28577509334274 -2024-06-10 20:00:00+00:00,12.170397659734965 -2024-06-10 21:00:00+00:00,9.535079768719255 -2024-06-10 22:00:00+00:00,8.506651267270243 -2024-06-10 23:00:00+00:00,12.04403360794399 -2024-06-11 00:00:00+00:00,18.06546624163057 -2024-06-11 01:00:00+00:00,23.34343924458079 -2024-06-11 02:00:00+00:00,28.3350103646375 -2024-06-11 03:00:00+00:00,33.721859614596205 -2024-06-11 04:00:00+00:00,39.1701566113573 -2024-06-11 05:00:00+00:00,43.00745116070823 -2024-06-11 06:00:00+00:00,46.684014254851526 -2024-06-11 07:00:00+00:00,49.79298020154604 -2024-06-11 08:00:00+00:00,52.21620694309843 -2024-06-11 09:00:00+00:00,53.685910701519326 -2024-06-11 10:00:00+00:00,54.58086250306729 -2024-06-11 11:00:00+00:00,55.584116607382676 -2024-06-11 12:00:00+00:00,55.53617768931108 -2024-06-11 13:00:00+00:00,52.53865498080601 -2024-06-11 14:00:00+00:00,47.546415504629245 -2024-06-11 15:00:00+00:00,42.06551175742872 -2024-06-11 16:00:00+00:00,36.83700613397841 -2024-06-11 17:00:00+00:00,33.025064997329444 -2024-06-11 18:00:00+00:00,29.841232423288403 -2024-06-11 19:00:00+00:00,28.212865545150635 -2024-06-11 20:00:00+00:00,26.29935160156128 -2024-06-11 21:00:00+00:00,24.801424120596234 -2024-06-11 22:00:00+00:00,24.287370168511625 -2024-06-11 23:00:00+00:00,24.31279291514017 -2024-06-12 00:00:00+00:00,24.353848385053453 -2024-06-12 01:00:00+00:00,24.021174121289214 -2024-06-12 02:00:00+00:00,24.353103491977148 -2024-06-12 03:00:00+00:00,24.638403782886176 -2024-06-12 04:00:00+00:00,23.499931865193936 -2024-06-12 05:00:00+00:00,23.305377809146062 -2024-06-12 06:00:00+00:00,22.91832616638685 -2024-06-12 07:00:00+00:00,24.28422891557441 -2024-06-12 08:00:00+00:00,27.900998933940905 -2024-06-12 09:00:00+00:00,35.12974675939991 -2024-06-12 10:00:00+00:00,42.871045033095086 -2024-06-12 11:00:00+00:00,49.84575665687604 -2024-06-12 12:00:00+00:00,51.66611171863913 -2024-06-12 13:00:00+00:00,54.52731162207965 -2024-06-12 14:00:00+00:00,58.33640307162045 -2024-06-12 15:00:00+00:00,62.741456420865134 -2024-06-12 16:00:00+00:00,66.52918556119415 -2024-06-12 17:00:00+00:00,70.13794840468965 -2024-06-12 18:00:00+00:00,71.86774852925764 -2024-06-12 19:00:00+00:00,72.82396274462022 -2024-06-12 20:00:00+00:00,73.64194633413727 -2024-06-12 21:00:00+00:00,71.50518517965126 -2024-06-12 22:00:00+00:00,66.30502298766235 -2024-06-12 23:00:00+00:00,57.29953760398598 -2024-06-13 00:00:00+00:00,48.05213940833159 -2024-06-13 01:00:00+00:00,39.33750862848249 -2024-06-13 02:00:00+00:00,38.992727340457044 -2024-06-13 03:00:00+00:00,40.177042293485954 -2024-06-13 04:00:00+00:00,41.46843238487564 -2024-06-13 05:00:00+00:00,42.5175431873624 -2024-06-13 06:00:00+00:00,43.67387917308379 -2024-06-13 07:00:00+00:00,45.19519502472001 -2024-06-13 08:00:00+00:00,49.30288389985798 -2024-06-13 09:00:00+00:00,53.34993427332377 -2024-06-13 10:00:00+00:00,56.91312964166514 -2024-06-13 11:00:00+00:00,61.415546278202136 -2024-06-13 12:00:00+00:00,60.50500256540246 -2024-06-13 13:00:00+00:00,59.93630055068109 -2024-06-13 14:00:00+00:00,59.92670647574318 -2024-06-13 15:00:00+00:00,60.57087761773016 -2024-06-13 16:00:00+00:00,59.73646411513352 -2024-06-13 17:00:00+00:00,56.83116052341383 -2024-06-13 18:00:00+00:00,53.165913555061316 -2024-06-13 19:00:00+00:00,49.971099614422094 -2024-06-13 20:00:00+00:00,47.07614163122887 -2024-06-13 21:00:00+00:00,44.72125955863925 -2024-06-13 22:00:00+00:00,42.4172362755545 -2024-06-13 23:00:00+00:00,40.131187243335766 -2024-06-14 00:00:00+00:00,37.580520156837 -2024-06-14 01:00:00+00:00,33.5312496480193 -2024-06-14 02:00:00+00:00,34.68614337870161 -2024-06-14 03:00:00+00:00,38.105798741273524 -2024-06-14 04:00:00+00:00,41.269978350320756 -2024-06-14 05:00:00+00:00,45.49743567097603 -2024-06-14 06:00:00+00:00,47.125024923461005 -2024-06-14 07:00:00+00:00,48.803877221323155 -2024-06-14 08:00:00+00:00,48.38458543693647 -2024-06-14 09:00:00+00:00,45.84026705265378 -2024-06-14 10:00:00+00:00,42.75619683584639 -2024-06-14 11:00:00+00:00,39.62318910531923 -2024-06-14 12:00:00+00:00,37.167776869786344 -2024-06-14 13:00:00+00:00,34.96579022151503 -2024-06-14 14:00:00+00:00,33.63443702573974 -2024-06-14 15:00:00+00:00,32.11285563501969 -2024-06-14 16:00:00+00:00,31.028264168444682 -2024-06-14 17:00:00+00:00,30.228897446625048 -2024-06-14 18:00:00+00:00,28.99464080264682 -2024-06-14 19:00:00+00:00,27.960425677972346 -2024-06-14 20:00:00+00:00,26.531868928532315 -2024-06-16 21:00:00+00:00,24.981131334638174 -2024-06-16 22:00:00+00:00,22.73798762319165 -2024-06-16 23:00:00+00:00,27.270600144800294 -2024-06-17 00:00:00+00:00,29.435860524926493 -2024-06-17 01:00:00+00:00,29.637299834307083 -2024-06-17 02:00:00+00:00,28.97941442044506 -2024-06-17 03:00:00+00:00,29.132037391682445 -2024-06-17 04:00:00+00:00,31.08170984214616 -2024-06-17 05:00:00+00:00,31.096235308226085 -2024-06-17 06:00:00+00:00,32.02620472718637 -2024-06-17 07:00:00+00:00,29.29542223178452 -2024-06-17 08:00:00+00:00,26.882691454221796 -2024-06-17 09:00:00+00:00,22.61178711509013 -2024-06-17 10:00:00+00:00,19.822851735198167 -2024-06-17 11:00:00+00:00,17.242328328821852 -2024-06-17 12:00:00+00:00,17.593664500301184 -2024-06-17 13:00:00+00:00,12.621094316468515 -2024-06-17 14:00:00+00:00,11.477186383115313 -2024-06-17 15:00:00+00:00,11.680815506605425 -2024-06-17 16:00:00+00:00,12.076973969991352 -2024-06-17 17:00:00+00:00,12.838483300648452 -2024-06-17 18:00:00+00:00,11.290298906056544 -2024-06-17 19:00:00+00:00,11.419816451482754 -2024-06-17 20:00:00+00:00,13.268398783801644 -2024-06-17 21:00:00+00:00,15.046848699270901 -2024-06-17 22:00:00+00:00,15.287499660342466 -2024-06-17 23:00:00+00:00,14.953420504937622 -2024-06-18 00:00:00+00:00,15.135790722151148 -2024-06-18 01:00:00+00:00,18.173302523707505 -2024-06-18 02:00:00+00:00,23.395809262574943 -2024-06-18 03:00:00+00:00,29.16587488048048 -2024-06-18 04:00:00+00:00,31.874174589012494 -2024-06-18 05:00:00+00:00,31.25420632198475 -2024-06-18 06:00:00+00:00,32.37327383202912 -2024-06-18 07:00:00+00:00,33.745182967864956 -2024-06-18 08:00:00+00:00,36.8359388617963 -2024-06-18 09:00:00+00:00,39.49639042748686 -2024-06-18 10:00:00+00:00,39.609806400396586 -2024-06-18 11:00:00+00:00,40.52930710053499 -2024-06-18 12:00:00+00:00,40.12007174916712 -2024-06-18 13:00:00+00:00,39.90857800341 -2024-06-18 14:00:00+00:00,40.18399181265858 -2024-06-18 15:00:00+00:00,37.913902951276704 -2024-06-18 16:00:00+00:00,33.020674421684376 -2024-06-18 17:00:00+00:00,27.535395040770123 -2024-06-18 18:00:00+00:00,23.57146082288678 -2024-06-18 19:00:00+00:00,23.60957366934934 -2024-06-18 20:00:00+00:00,23.302751057263812 -2024-06-18 21:00:00+00:00,23.40926611045069 -2024-06-18 22:00:00+00:00,23.650860779501727 -2024-06-18 23:00:00+00:00,24.678296598961452 -2024-06-19 00:00:00+00:00,24.819524905478463 -2024-06-19 01:00:00+00:00,25.48828047587056 -2024-06-19 02:00:00+00:00,25.626919921401146 -2024-06-19 03:00:00+00:00,26.066875779951243 -2024-06-19 04:00:00+00:00,27.761111368923824 -2024-06-19 05:00:00+00:00,29.23589067095188 -2024-06-19 06:00:00+00:00,32.00930299070857 -2024-06-19 07:00:00+00:00,34.97590554914804 -2024-06-19 08:00:00+00:00,38.137114971391384 -2024-06-19 09:00:00+00:00,39.389806908380876 -2024-06-19 10:00:00+00:00,39.17993767571357 -2024-06-19 11:00:00+00:00,37.446916598430185 -2024-06-19 12:00:00+00:00,33.45968884468413 -2024-06-19 13:00:00+00:00,29.868064715194098 -2024-06-19 14:00:00+00:00,28.199803749423477 -2024-06-19 15:00:00+00:00,25.062185909288644 -2024-06-19 16:00:00+00:00,25.00330462580199 -2024-06-19 17:00:00+00:00,24.576495554592018 -2024-06-19 18:00:00+00:00,23.009531268877527 -2024-06-19 19:00:00+00:00,22.12445143642886 -2024-06-19 20:00:00+00:00,24.20414461506984 -2024-06-19 21:00:00+00:00,26.60247191135543 -2024-06-19 22:00:00+00:00,29.08884301151865 -2024-06-19 23:00:00+00:00,30.973125794398722 -2024-06-20 00:00:00+00:00,33.56139223960901 -2024-06-20 01:00:00+00:00,36.33537501359136 -2024-06-20 02:00:00+00:00,39.50653821571375 -2024-06-20 03:00:00+00:00,42.875531783237534 -2024-06-20 04:00:00+00:00,45.57971033389724 -2024-06-20 05:00:00+00:00,49.356342746484714 -2024-06-20 06:00:00+00:00,52.99099146678627 -2024-06-20 07:00:00+00:00,57.439915738719186 -2024-06-20 08:00:00+00:00,61.39343464628182 -2024-06-20 09:00:00+00:00,64.2622158489341 -2024-06-20 10:00:00+00:00,63.16353774132707 -2024-06-20 11:00:00+00:00,62.155146673687646 -2024-06-20 12:00:00+00:00,58.742674606822014 -2024-06-20 13:00:00+00:00,59.09803768228587 -2024-06-20 14:00:00+00:00,59.108926184029016 -2024-06-20 15:00:00+00:00,58.94949866611197 -2024-06-20 16:00:00+00:00,59.760250377606624 -2024-06-20 17:00:00+00:00,60.142328099526296 -2024-06-20 18:00:00+00:00,58.685826558050174 -2024-06-20 19:00:00+00:00,57.14759932686005 -2024-06-20 20:00:00+00:00,56.16333951414925 -2024-06-20 21:00:00+00:00,54.26856037176815 -2024-06-20 22:00:00+00:00,50.638751200663 -2024-06-20 23:00:00+00:00,46.37062344007268 -2024-06-21 00:00:00+00:00,43.653125883866174 -2024-06-21 01:00:00+00:00,40.8800106561469 -2024-06-21 02:00:00+00:00,41.066725775051864 -2024-06-21 03:00:00+00:00,38.086070042438756 -2024-06-21 04:00:00+00:00,35.10454006695346 -2024-06-21 05:00:00+00:00,32.309261919321536 -2024-06-21 06:00:00+00:00,27.95402953712429 -2024-06-21 07:00:00+00:00,25.482656712809888 -2024-06-21 08:00:00+00:00,23.5530947750455 -2024-06-21 09:00:00+00:00,21.28798634527701 -2024-06-21 10:00:00+00:00,18.457351779183682 -2024-06-21 11:00:00+00:00,16.054219112201746 -2024-06-21 12:00:00+00:00,14.904404186344452 -2024-06-21 13:00:00+00:00,16.213139601039238 -2024-06-21 14:00:00+00:00,17.177608306901323 -2024-06-21 15:00:00+00:00,17.96682625524277 -2024-06-21 16:00:00+00:00,19.067526894442725 -2024-06-21 17:00:00+00:00,21.85074063656028 -2024-06-21 18:00:00+00:00,24.86413279557112 -2024-06-21 19:00:00+00:00,27.53410556769187 -2024-06-21 20:00:00+00:00,31.712834010355145 -2024-06-23 21:00:00+00:00,37.27863989347703 -2024-06-23 22:00:00+00:00,43.7368025012129 -2024-06-23 23:00:00+00:00,50.59755515882119 -2024-06-24 00:00:00+00:00,57.783676593305266 -2024-06-24 01:00:00+00:00,63.41246991054113 -2024-06-24 02:00:00+00:00,69.57521868594672 -2024-06-24 03:00:00+00:00,73.54509234969854 -2024-06-24 04:00:00+00:00,75.8811686226371 -2024-06-24 05:00:00+00:00,78.23027866720732 -2024-06-24 06:00:00+00:00,78.70554674929754 -2024-06-24 07:00:00+00:00,78.05581548063212 -2024-06-24 08:00:00+00:00,77.60931785836145 -2024-06-24 09:00:00+00:00,76.16845507458211 -2024-06-24 10:00:00+00:00,76.15984684526555 -2024-06-24 11:00:00+00:00,73.77644414454646 -2024-06-24 12:00:00+00:00,71.51330449015686 -2024-06-24 13:00:00+00:00,70.46198735587178 -2024-06-24 14:00:00+00:00,67.4733956828274 -2024-06-24 15:00:00+00:00,65.6333245425304 -2024-06-24 16:00:00+00:00,63.26765299918743 -2024-06-24 17:00:00+00:00,61.52483409176448 -2024-06-24 18:00:00+00:00,60.99251718865092 -2024-06-24 19:00:00+00:00,60.7723490694845 -2024-06-24 20:00:00+00:00,61.58140518365053 -2024-06-24 21:00:00+00:00,63.23595636780275 -2024-06-24 22:00:00+00:00,65.1604002753894 -2024-06-24 23:00:00+00:00,67.58409665069804 -2024-06-25 00:00:00+00:00,66.3561225423584 -2024-06-25 01:00:00+00:00,64.16794826116111 -2024-06-25 02:00:00+00:00,62.646308580038145 -2024-06-25 03:00:00+00:00,59.20971944070268 -2024-06-25 04:00:00+00:00,60.80147438481157 -2024-06-25 05:00:00+00:00,63.2940714832581 -2024-06-25 06:00:00+00:00,65.11909919200374 -2024-06-25 07:00:00+00:00,65.76444980808078 -2024-06-25 08:00:00+00:00,65.9929914676086 -2024-06-25 09:00:00+00:00,65.9777666120247 -2024-06-25 10:00:00+00:00,66.17940408890829 -2024-06-25 11:00:00+00:00,65.70829703590195 -2024-06-25 12:00:00+00:00,62.538864793886695 -2024-06-25 13:00:00+00:00,60.200170349929216 -2024-06-25 14:00:00+00:00,57.6344336204363 -2024-06-25 15:00:00+00:00,55.97530822100083 -2024-06-25 16:00:00+00:00,54.05886251482089 -2024-06-25 17:00:00+00:00,52.126253213790484 -2024-06-25 18:00:00+00:00,47.09630733149061 -2024-06-25 19:00:00+00:00,42.62447024968248 -2024-06-25 20:00:00+00:00,38.683457353877905 -2024-06-25 21:00:00+00:00,35.432787772563074 -2024-06-25 22:00:00+00:00,32.098857003506055 -2024-06-25 23:00:00+00:00,28.976780402505135 -2024-06-26 00:00:00+00:00,28.464517943564715 -2024-06-26 01:00:00+00:00,29.004403589833228 -2024-06-26 02:00:00+00:00,30.61442418840331 -2024-06-26 03:00:00+00:00,31.71293068857179 -2024-06-26 04:00:00+00:00,33.415523666557995 -2024-06-26 05:00:00+00:00,34.146657327799154 -2024-06-26 06:00:00+00:00,34.867673486405515 -2024-06-26 07:00:00+00:00,37.67963296256077 -2024-06-26 08:00:00+00:00,40.57545373812916 -2024-06-26 09:00:00+00:00,44.38441664426857 -2024-06-26 10:00:00+00:00,48.803160991672314 -2024-06-26 11:00:00+00:00,53.4252765872904 -2024-06-26 12:00:00+00:00,58.459380668235326 -2024-06-26 13:00:00+00:00,59.537562222071855 -2024-06-26 14:00:00+00:00,57.62937037390409 -2024-06-26 15:00:00+00:00,55.46866460287852 -2024-06-26 16:00:00+00:00,54.60118582842342 -2024-06-26 17:00:00+00:00,53.964802068054794 -2024-06-26 18:00:00+00:00,55.355795106640855 -2024-06-26 19:00:00+00:00,57.223372887648665 -2024-06-26 20:00:00+00:00,58.72041451948365 -2024-06-26 21:00:00+00:00,58.16655932041499 -2024-06-26 22:00:00+00:00,56.837039634856765 -2024-06-26 23:00:00+00:00,52.62129525419058 -2024-06-27 00:00:00+00:00,47.18604563947047 -2024-06-27 01:00:00+00:00,42.896532152304914 -2024-06-27 02:00:00+00:00,38.215390651873406 -2024-06-27 03:00:00+00:00,35.47774202025576 -2024-06-27 04:00:00+00:00,33.83232307499353 -2024-06-27 05:00:00+00:00,33.73018712586692 -2024-06-27 06:00:00+00:00,33.094132597059314 -2024-06-27 07:00:00+00:00,31.674279549334432 -2024-06-27 08:00:00+00:00,29.85352284703006 -2024-06-27 09:00:00+00:00,29.29283519681795 -2024-06-27 10:00:00+00:00,29.54019612410256 -2024-06-27 11:00:00+00:00,29.46166071703976 -2024-06-27 12:00:00+00:00,30.41534228359185 -2024-06-27 13:00:00+00:00,32.04741872843889 -2024-06-27 14:00:00+00:00,32.390490332589145 -2024-06-27 15:00:00+00:00,30.796642517674194 -2024-06-27 16:00:00+00:00,29.430347694513067 -2024-06-27 17:00:00+00:00,29.720776521665204 -2024-06-27 18:00:00+00:00,30.778537800354517 -2024-06-27 19:00:00+00:00,29.970691343435448 -2024-06-27 20:00:00+00:00,29.32946453296745 -2024-06-27 21:00:00+00:00,28.546979011249537 -2024-06-27 22:00:00+00:00,26.791707513351742 -2024-06-27 23:00:00+00:00,23.651101298781253 -2024-06-28 00:00:00+00:00,22.740816829876966 -2024-06-28 01:00:00+00:00,23.15857382831294 -2024-06-28 02:00:00+00:00,23.488467140035315 -2024-06-28 03:00:00+00:00,24.24495911542412 -2024-06-28 04:00:00+00:00,27.044196888350076 -2024-06-28 05:00:00+00:00,29.706567560927915 -2024-06-28 06:00:00+00:00,31.936152896682632 -2024-06-28 07:00:00+00:00,34.55461470072411 -2024-06-28 08:00:00+00:00,35.33117294866257 -2024-06-28 09:00:00+00:00,34.57702513569145 -2024-06-28 10:00:00+00:00,32.829789542480164 -2024-06-28 11:00:00+00:00,32.13605310795052 -2024-06-28 12:00:00+00:00,32.0622066329254 -2024-06-28 13:00:00+00:00,32.1859204600245 -2024-06-28 14:00:00+00:00,29.40537877390064 -2024-06-28 15:00:00+00:00,26.548941955260798 -2024-06-28 16:00:00+00:00,22.850300554877453 -2024-06-28 17:00:00+00:00,19.306534447265697 -2024-06-28 18:00:00+00:00,16.752060325344427 -2024-06-28 19:00:00+00:00,14.453368480986379 -2024-06-28 20:00:00+00:00,11.920535460348221 -2024-06-30 21:00:00+00:00,9.82669526341621 -2024-06-30 22:00:00+00:00,7.764837707052831 -2024-06-30 23:00:00+00:00,6.52798535021603 -2024-07-01 00:00:00+00:00,8.998704675501559 -2024-07-01 01:00:00+00:00,12.540015669537679 -2024-07-01 02:00:00+00:00,16.70587826681815 -2024-07-01 03:00:00+00:00,22.178201405356187 -2024-07-01 04:00:00+00:00,26.87052558428159 -2024-07-01 05:00:00+00:00,31.159449819488962 -2024-07-01 06:00:00+00:00,34.53753483504784 -2024-07-01 07:00:00+00:00,37.77563152663873 -2024-07-01 08:00:00+00:00,40.913181795081826 -2024-07-01 09:00:00+00:00,44.61229330551448 -2024-07-01 10:00:00+00:00,48.827311232091624 -2024-07-01 11:00:00+00:00,53.872975179108145 -2024-07-01 12:00:00+00:00,59.32838780373549 -2024-07-01 13:00:00+00:00,66.06508852832444 -2024-07-01 14:00:00+00:00,65.48453407245913 -2024-07-01 15:00:00+00:00,63.19112008668803 -2024-07-01 16:00:00+00:00,59.94093198178704 -2024-07-01 17:00:00+00:00,54.46482126895283 -2024-07-01 18:00:00+00:00,49.350492349765766 -2024-07-01 19:00:00+00:00,44.73642025257085 -2024-07-01 20:00:00+00:00,41.29214358388872 -2024-07-01 21:00:00+00:00,38.47820280895995 -2024-07-01 22:00:00+00:00,34.38693323334383 -2024-07-01 23:00:00+00:00,30.667475146172343 -2024-07-02 00:00:00+00:00,27.14031015723757 -2024-07-02 01:00:00+00:00,21.730260624529954 -2024-07-02 02:00:00+00:00,16.70313328959565 -2024-07-02 03:00:00+00:00,11.528338020006203 -2024-07-02 04:00:00+00:00,11.39618333985638 -2024-07-02 05:00:00+00:00,11.155809274597704 -2024-07-02 06:00:00+00:00,11.633667668392855 -2024-07-02 07:00:00+00:00,13.861443218001133 -2024-07-02 08:00:00+00:00,15.066624481832365 -2024-07-02 09:00:00+00:00,16.211666916168085 -2024-07-02 10:00:00+00:00,18.303198665226034 -2024-07-02 11:00:00+00:00,18.091372641284504 -2024-07-02 12:00:00+00:00,17.998335396872946 -2024-07-02 13:00:00+00:00,20.23386752595389 -2024-07-02 14:00:00+00:00,23.07288295458987 -2024-07-02 15:00:00+00:00,25.85359966387737 -2024-07-02 16:00:00+00:00,26.803387317315874 -2024-07-02 17:00:00+00:00,28.299062510468907 -2024-07-02 18:00:00+00:00,30.97173686995905 -2024-07-02 19:00:00+00:00,34.18308209965272 -2024-07-02 20:00:00+00:00,36.94805905817805 -2024-07-02 21:00:00+00:00,38.41583965310451 -2024-07-02 22:00:00+00:00,41.09432736548045 -2024-07-02 23:00:00+00:00,42.3636971615395 -2024-07-03 00:00:00+00:00,42.54973880859586 -2024-07-03 01:00:00+00:00,43.306810960311566 -2024-07-03 02:00:00+00:00,43.432990464371755 -2024-07-03 03:00:00+00:00,43.277046137430844 -2024-07-03 04:00:00+00:00,42.412314579631115 -2024-07-03 05:00:00+00:00,42.8747121370804 -2024-07-03 06:00:00+00:00,44.49092382088692 -2024-07-03 07:00:00+00:00,45.54109998891615 -2024-07-03 08:00:00+00:00,47.345413490100306 -2024-07-03 09:00:00+00:00,50.22957768924997 -2024-07-03 10:00:00+00:00,53.39250460255444 -2024-07-03 11:00:00+00:00,56.73698363710719 -2024-07-03 12:00:00+00:00,58.37372614905356 -2024-07-03 13:00:00+00:00,57.549713253130925 -2024-07-03 14:00:00+00:00,58.414081069223144 -2024-07-03 15:00:00+00:00,61.721874628272246 -2024-07-03 16:00:00+00:00,65.70268851071205 -2024-07-03 17:00:00+00:00,67.75457762978074 -2024-07-03 18:00:00+00:00,69.08749075308685 -2024-07-03 19:00:00+00:00,70.47829134390747 -2024-07-03 20:00:00+00:00,72.2369022635162 -2024-07-03 21:00:00+00:00,73.5471824731609 -2024-07-03 22:00:00+00:00,72.73310074304865 -2024-07-03 23:00:00+00:00,71.01680255929587 -2024-07-04 00:00:00+00:00,69.81424256951281 -2024-07-04 01:00:00+00:00,68.73606709097974 -2024-07-04 02:00:00+00:00,69.50598419677434 -2024-07-04 03:00:00+00:00,72.8222236986044 -2024-07-04 04:00:00+00:00,72.86443095371477 -2024-07-04 05:00:00+00:00,70.09558849947477 -2024-07-04 06:00:00+00:00,68.39658937979779 -2024-07-04 07:00:00+00:00,66.55434214756036 -2024-07-04 08:00:00+00:00,67.01735890041307 -2024-07-04 09:00:00+00:00,66.90689976391661 -2024-07-04 10:00:00+00:00,66.83028032221732 -2024-07-04 11:00:00+00:00,66.91513627313084 -2024-07-04 12:00:00+00:00,66.08806599293591 -2024-07-04 13:00:00+00:00,65.47060024872152 -2024-07-04 14:00:00+00:00,64.07224049365942 -2024-07-04 15:00:00+00:00,62.120349718698584 -2024-07-04 16:00:00+00:00,59.8510624178814 -2024-07-04 17:00:00+00:00,60.29282204223177 -2024-07-04 18:00:00+00:00,61.42153296054859 -2024-07-04 19:00:00+00:00,63.86727538345121 -2024-07-04 20:00:00+00:00,64.60054262248208 -2024-07-04 21:00:00+00:00,64.56581567500575 -2024-07-04 22:00:00+00:00,62.51846649277507 -2024-07-04 23:00:00+00:00,58.42611681379351 -2024-07-05 00:00:00+00:00,55.356519744196895 -2024-07-05 01:00:00+00:00,51.44967041985994 -2024-07-05 02:00:00+00:00,49.00283953423748 -2024-07-05 03:00:00+00:00,48.13902943129709 -2024-07-05 04:00:00+00:00,46.979827671497254 -2024-07-05 05:00:00+00:00,45.032761829214834 -2024-07-05 06:00:00+00:00,43.634479218327506 -2024-07-05 07:00:00+00:00,40.18205258732654 -2024-07-05 08:00:00+00:00,39.005454404106224 -2024-07-05 09:00:00+00:00,37.79708149454682 -2024-07-05 10:00:00+00:00,37.22604836537403 -2024-07-05 11:00:00+00:00,37.090857986005055 -2024-07-05 12:00:00+00:00,38.314872460560814 -2024-07-05 13:00:00+00:00,40.708812334862685 -2024-07-05 14:00:00+00:00,40.362273719416244 -2024-07-05 15:00:00+00:00,41.92706496830001 -2024-07-05 16:00:00+00:00,43.46723241318837 -2024-07-05 17:00:00+00:00,42.3771479569623 -2024-07-05 18:00:00+00:00,42.09590010789177 -2024-07-05 19:00:00+00:00,44.05840743068067 -2024-07-05 20:00:00+00:00,44.7774689241411 -2024-07-07 21:00:00+00:00,46.387365106769664 -2024-07-07 22:00:00+00:00,47.19497651849444 -2024-07-07 23:00:00+00:00,48.19462870111507 -2024-07-08 00:00:00+00:00,50.102423570283335 -2024-07-08 01:00:00+00:00,52.98795930686321 -2024-07-08 02:00:00+00:00,54.32041811856031 -2024-07-08 03:00:00+00:00,57.29511133525206 -2024-07-08 04:00:00+00:00,61.262935306946304 -2024-07-08 05:00:00+00:00,61.75753487424045 -2024-07-08 06:00:00+00:00,59.10013083434813 -2024-07-08 07:00:00+00:00,56.32756996424423 -2024-07-08 08:00:00+00:00,54.43862841760688 -2024-07-08 09:00:00+00:00,51.42152549167024 -2024-07-08 10:00:00+00:00,48.36619674786415 -2024-07-08 11:00:00+00:00,44.548710007244786 -2024-07-08 12:00:00+00:00,41.16754638378997 -2024-07-08 13:00:00+00:00,37.53158236828635 -2024-07-08 14:00:00+00:00,33.69558032229169 -2024-07-08 15:00:00+00:00,28.671558572125495 -2024-07-08 16:00:00+00:00,24.802473184162913 -2024-07-08 17:00:00+00:00,19.016511984868128 -2024-07-08 18:00:00+00:00,13.754275511330908 -2024-07-08 19:00:00+00:00,10.174395547112415 -2024-07-08 20:00:00+00:00,9.826461383626182 -2024-07-08 21:00:00+00:00,11.105809877198963 -2024-07-08 22:00:00+00:00,12.857336787138024 -2024-07-08 23:00:00+00:00,14.766923613885764 -2024-07-09 00:00:00+00:00,16.672536521609267 -2024-07-09 01:00:00+00:00,17.42933396751378 -2024-07-09 02:00:00+00:00,18.800796765477937 -2024-07-09 03:00:00+00:00,20.56405949745798 -2024-07-09 04:00:00+00:00,23.52658514860243 -2024-07-09 05:00:00+00:00,25.851701892323373 -2024-07-09 06:00:00+00:00,25.855316547701257 -2024-07-09 07:00:00+00:00,26.260798545378414 -2024-07-09 08:00:00+00:00,27.0611803456291 -2024-07-09 09:00:00+00:00,28.780710025685206 -2024-07-09 10:00:00+00:00,29.2992480103344 -2024-07-09 11:00:00+00:00,29.90748788034995 -2024-07-09 12:00:00+00:00,28.91233625290273 -2024-07-09 13:00:00+00:00,27.800429214043167 -2024-07-09 14:00:00+00:00,28.650850978534162 -2024-07-09 15:00:00+00:00,31.037616889047786 -2024-07-09 16:00:00+00:00,31.817256385138997 -2024-07-09 17:00:00+00:00,31.943982854125846 -2024-07-09 18:00:00+00:00,30.42852970512458 -2024-07-09 19:00:00+00:00,29.88482304068617 -2024-07-09 20:00:00+00:00,32.24356396803723 -2024-07-09 21:00:00+00:00,35.46879178620134 -2024-07-09 22:00:00+00:00,37.60223667220811 -2024-07-09 23:00:00+00:00,39.69338142694233 -2024-07-10 00:00:00+00:00,43.08409509179978 -2024-07-10 01:00:00+00:00,45.531180026569054 -2024-07-10 02:00:00+00:00,47.68060974449205 -2024-07-10 03:00:00+00:00,49.74740080136142 -2024-07-10 04:00:00+00:00,49.69851471126255 -2024-07-10 05:00:00+00:00,49.20606926901324 -2024-07-10 06:00:00+00:00,47.87672630633505 -2024-07-10 07:00:00+00:00,47.909839644979726 -2024-07-10 08:00:00+00:00,48.252064370081655 -2024-07-10 09:00:00+00:00,49.380466096412015 -2024-07-10 10:00:00+00:00,49.05370565833461 -2024-07-10 11:00:00+00:00,47.47655459143679 -2024-07-10 12:00:00+00:00,45.893409610738864 -2024-07-10 13:00:00+00:00,44.620153946588594 -2024-07-10 14:00:00+00:00,42.22317077854098 -2024-07-10 15:00:00+00:00,39.96673916350885 -2024-07-10 16:00:00+00:00,37.72929178237998 -2024-07-10 17:00:00+00:00,36.85643651004774 -2024-07-10 18:00:00+00:00,37.26818015487338 -2024-07-10 19:00:00+00:00,37.22471496021489 -2024-07-10 20:00:00+00:00,39.11378958196217 -2024-07-10 21:00:00+00:00,38.2334117379436 -2024-07-10 22:00:00+00:00,36.732354447557064 -2024-07-10 23:00:00+00:00,33.50882127559099 -2024-07-11 00:00:00+00:00,30.78783714976579 -2024-07-11 01:00:00+00:00,28.59147433182589 -2024-07-11 02:00:00+00:00,26.922665866681196 -2024-07-11 03:00:00+00:00,24.573756533674747 -2024-07-11 04:00:00+00:00,23.714675717959896 -2024-07-11 05:00:00+00:00,23.75132711321205 -2024-07-11 06:00:00+00:00,23.0853765224494 -2024-07-11 07:00:00+00:00,22.881550965458324 -2024-07-11 08:00:00+00:00,23.462474772784155 -2024-07-11 09:00:00+00:00,24.91095502041615 -2024-07-11 10:00:00+00:00,25.01799447777369 -2024-07-11 11:00:00+00:00,25.793264570844144 -2024-07-11 12:00:00+00:00,30.9694848170293 -2024-07-11 13:00:00+00:00,37.314686664623586 -2024-07-11 14:00:00+00:00,43.906844437588724 -2024-07-11 15:00:00+00:00,50.74930373785319 -2024-07-11 16:00:00+00:00,57.53630328471451 -2024-07-11 17:00:00+00:00,63.80444934318014 -2024-07-11 18:00:00+00:00,69.04610826614108 -2024-07-11 19:00:00+00:00,73.48773865790982 -2024-07-11 20:00:00+00:00,78.62512009919287 -2024-07-11 21:00:00+00:00,81.97355833996752 -2024-07-11 22:00:00+00:00,83.3708700031847 -2024-07-11 23:00:00+00:00,85.02013838607317 -2024-07-12 00:00:00+00:00,87.35764739238915 -2024-07-12 01:00:00+00:00,90.21570309108618 -2024-07-12 02:00:00+00:00,87.06156352430692 -2024-07-12 03:00:00+00:00,82.11471890747318 -2024-07-12 04:00:00+00:00,76.1812040561077 -2024-07-12 05:00:00+00:00,70.72140132870545 -2024-07-12 06:00:00+00:00,65.02553830742036 -2024-07-12 07:00:00+00:00,60.65614004152734 -2024-07-12 08:00:00+00:00,56.27244417634993 -2024-07-12 09:00:00+00:00,51.83034501626965 -2024-07-12 10:00:00+00:00,47.734966323388356 -2024-07-12 11:00:00+00:00,44.16494327284572 -2024-07-12 12:00:00+00:00,43.59225900873303 -2024-07-12 13:00:00+00:00,42.65497339839363 -2024-07-12 14:00:00+00:00,41.87983550992537 -2024-07-12 15:00:00+00:00,42.77945736721953 -2024-07-12 16:00:00+00:00,45.90998992823177 -2024-07-12 17:00:00+00:00,50.429606408038296 -2024-07-12 18:00:00+00:00,55.31686056963222 -2024-07-12 19:00:00+00:00,59.50769182645011 -2024-07-12 20:00:00+00:00,64.36216259127555 -2024-07-14 21:00:00+00:00,67.57445425864235 -2024-07-14 22:00:00+00:00,69.55090688641744 -2024-07-14 23:00:00+00:00,71.32609574106367 -2024-07-15 00:00:00+00:00,73.34585881304868 -2024-07-15 01:00:00+00:00,74.77129521537279 -2024-07-15 02:00:00+00:00,73.57501016344163 -2024-07-15 03:00:00+00:00,71.68348131338742 -2024-07-15 04:00:00+00:00,69.25770710181855 -2024-07-15 05:00:00+00:00,63.289555688249514 -2024-07-15 06:00:00+00:00,58.5692238258128 -2024-07-15 07:00:00+00:00,53.920750396561246 -2024-07-15 08:00:00+00:00,48.882569251639936 -2024-07-15 09:00:00+00:00,44.14472668484999 -2024-07-15 10:00:00+00:00,39.44314011443894 -2024-07-15 11:00:00+00:00,34.92955821410617 -2024-07-15 12:00:00+00:00,31.03731317798457 -2024-07-15 13:00:00+00:00,28.044366984757602 -2024-07-15 14:00:00+00:00,23.59589876946225 -2024-07-15 15:00:00+00:00,19.345927594551608 -2024-07-15 16:00:00+00:00,18.62123535260526 -2024-07-15 17:00:00+00:00,18.196111574188183 -2024-07-15 18:00:00+00:00,18.74387475867007 -2024-07-15 19:00:00+00:00,20.969979920037183 -2024-07-15 20:00:00+00:00,22.181223030236065 -2024-07-15 21:00:00+00:00,23.855434175760475 -2024-07-15 22:00:00+00:00,25.348777508516942 -2024-07-15 23:00:00+00:00,25.704094330240814 -2024-07-16 00:00:00+00:00,25.503051713881547 -2024-07-16 01:00:00+00:00,25.17810245707052 -2024-07-16 02:00:00+00:00,24.838583301206477 -2024-07-16 03:00:00+00:00,23.97264855862472 -2024-07-16 04:00:00+00:00,24.4043115756052 -2024-07-16 05:00:00+00:00,25.22914150757789 -2024-07-16 06:00:00+00:00,26.855386550952858 -2024-07-16 07:00:00+00:00,27.565417628495602 -2024-07-16 08:00:00+00:00,27.997894810759323 -2024-07-16 09:00:00+00:00,28.059097593164825 -2024-07-16 10:00:00+00:00,26.949053524179938 -2024-07-16 11:00:00+00:00,25.576720815383197 -2024-07-16 12:00:00+00:00,26.103289914406293 -2024-07-16 13:00:00+00:00,27.06176502064404 -2024-07-16 14:00:00+00:00,28.04383650631309 -2024-07-16 15:00:00+00:00,28.380334741971502 -2024-07-16 16:00:00+00:00,28.366392925817895 -2024-07-16 17:00:00+00:00,28.64503156640817 -2024-07-16 18:00:00+00:00,29.36313714642685 -2024-07-16 19:00:00+00:00,30.337741128406112 -2024-07-16 20:00:00+00:00,26.402002731017635 -2024-07-16 21:00:00+00:00,23.39263481269497 -2024-07-16 22:00:00+00:00,20.09089111194266 -2024-07-16 23:00:00+00:00,19.21902394402256 -2024-07-17 00:00:00+00:00,19.9728389835513 -2024-07-17 01:00:00+00:00,21.501154608765052 -2024-07-17 02:00:00+00:00,19.351089178511664 -2024-07-17 03:00:00+00:00,17.388137744096348 -2024-07-17 04:00:00+00:00,16.864994303562565 -2024-07-17 05:00:00+00:00,19.472059857056497 -2024-07-17 06:00:00+00:00,23.412536047532615 -2024-07-17 07:00:00+00:00,27.95324797007098 -2024-07-17 08:00:00+00:00,32.44330507053365 -2024-07-17 09:00:00+00:00,36.24294949759554 -2024-07-17 10:00:00+00:00,40.606273391746825 -2024-07-17 11:00:00+00:00,45.11915779507611 -2024-07-17 12:00:00+00:00,49.902731902346545 -2024-07-17 13:00:00+00:00,53.574496682161495 -2024-07-17 14:00:00+00:00,56.904193129689034 -2024-07-17 15:00:00+00:00,59.85811779096361 -2024-07-17 16:00:00+00:00,65.28310356936795 -2024-07-17 17:00:00+00:00,70.96913731739791 -2024-07-17 18:00:00+00:00,75.30225942565751 -2024-07-17 19:00:00+00:00,78.08644401850779 -2024-07-17 20:00:00+00:00,79.82728650935016 -2024-07-17 21:00:00+00:00,79.99249402976932 -2024-07-17 22:00:00+00:00,78.20579319363887 -2024-07-17 23:00:00+00:00,77.57160586177716 -2024-07-18 00:00:00+00:00,78.57621223179508 -2024-07-18 01:00:00+00:00,77.13497181562693 -2024-07-18 02:00:00+00:00,74.4573682149139 -2024-07-18 03:00:00+00:00,70.20460789488905 -2024-07-18 04:00:00+00:00,65.65681049570895 -2024-07-18 05:00:00+00:00,61.600361148194146 -2024-07-18 06:00:00+00:00,56.989906199822244 -2024-07-18 07:00:00+00:00,52.565044932366376 -2024-07-18 08:00:00+00:00,46.70007242945376 -2024-07-18 09:00:00+00:00,41.118401394985575 -2024-07-18 10:00:00+00:00,36.540450890206 -2024-07-18 11:00:00+00:00,32.248005993912386 -2024-07-18 12:00:00+00:00,29.417511972942282 -2024-07-18 13:00:00+00:00,26.024805393117113 -2024-07-18 14:00:00+00:00,21.461735898263118 -2024-07-18 15:00:00+00:00,18.74131973267871 -2024-07-18 16:00:00+00:00,17.08187096093098 -2024-07-18 17:00:00+00:00,16.532805347038085 -2024-07-18 18:00:00+00:00,16.57089804143626 -2024-07-18 19:00:00+00:00,18.469639979533845 -2024-07-18 20:00:00+00:00,20.9406923704174 -2024-07-18 21:00:00+00:00,23.814236704440834 -2024-07-18 22:00:00+00:00,26.498049495146244 -2024-07-18 23:00:00+00:00,28.09408408672719 -2024-07-19 00:00:00+00:00,29.76060227382434 -2024-07-19 01:00:00+00:00,31.888545900855544 -2024-07-19 02:00:00+00:00,35.38568376603941 -2024-07-19 03:00:00+00:00,37.92018255053859 -2024-07-19 04:00:00+00:00,40.533705602301396 -2024-07-19 05:00:00+00:00,44.41102800469815 -2024-07-19 06:00:00+00:00,45.18042527647826 -2024-07-19 07:00:00+00:00,44.989454934282115 -2024-07-19 08:00:00+00:00,44.49175489361938 -2024-07-19 09:00:00+00:00,41.768551476042354 -2024-07-19 10:00:00+00:00,38.1190883747305 -2024-07-19 11:00:00+00:00,34.001595415237894 -2024-07-19 12:00:00+00:00,31.219761639894596 -2024-07-19 13:00:00+00:00,30.034602842970457 -2024-07-19 14:00:00+00:00,27.563998203196757 -2024-07-19 15:00:00+00:00,25.4249666172909 -2024-07-19 16:00:00+00:00,21.78303369138834 -2024-07-19 17:00:00+00:00,18.516598664749093 -2024-07-19 18:00:00+00:00,15.17679648620884 -2024-07-19 19:00:00+00:00,14.346006504311989 -2024-07-19 20:00:00+00:00,14.793219670180687 -2024-07-21 21:00:00+00:00,14.769381259754368 -2024-07-21 22:00:00+00:00,14.51736128423771 -2024-07-21 23:00:00+00:00,14.174209677110271 -2024-07-22 00:00:00+00:00,15.483787905598803 -2024-07-22 01:00:00+00:00,15.731984703256567 -2024-07-22 02:00:00+00:00,17.417638803169286 -2024-07-22 03:00:00+00:00,18.767658023015116 -2024-07-22 04:00:00+00:00,20.365535743482223 -2024-07-22 05:00:00+00:00,23.288523626811287 -2024-07-22 06:00:00+00:00,27.401641570617763 -2024-07-22 07:00:00+00:00,31.39075047838148 -2024-07-22 08:00:00+00:00,35.241635359295586 -2024-07-22 09:00:00+00:00,36.448892455682675 -2024-07-22 10:00:00+00:00,38.705524486796534 -2024-07-22 11:00:00+00:00,42.977419749118724 -2024-07-22 12:00:00+00:00,45.32932494889513 -2024-07-22 13:00:00+00:00,47.291844723193506 -2024-07-22 14:00:00+00:00,48.604458549107065 -2024-07-22 15:00:00+00:00,50.20868131954801 -2024-07-22 16:00:00+00:00,51.03456299027418 -2024-07-22 17:00:00+00:00,51.231459202694275 -2024-07-22 18:00:00+00:00,51.7363926710015 -2024-07-22 19:00:00+00:00,49.036328394632676 -2024-07-22 20:00:00+00:00,49.04732059574409 -2024-07-22 21:00:00+00:00,46.26261234624695 -2024-07-22 22:00:00+00:00,43.701305764876246 -2024-07-22 23:00:00+00:00,40.814924768654855 -2024-07-23 00:00:00+00:00,37.23966213542111 -2024-07-23 01:00:00+00:00,33.28834134736543 -2024-07-23 02:00:00+00:00,32.66836355208114 -2024-07-23 03:00:00+00:00,32.86061369523442 -2024-07-23 04:00:00+00:00,33.15991359602558 -2024-07-23 05:00:00+00:00,35.33336288745038 -2024-07-23 06:00:00+00:00,35.43191569336571 -2024-07-23 07:00:00+00:00,36.676872179479595 -2024-07-23 08:00:00+00:00,38.51530759496227 -2024-07-23 09:00:00+00:00,41.66788098411799 -2024-07-23 10:00:00+00:00,40.25945432332815 -2024-07-23 11:00:00+00:00,41.26170844958953 -2024-07-23 12:00:00+00:00,43.23328694189321 -2024-07-23 13:00:00+00:00,45.021534328740806 -2024-07-23 14:00:00+00:00,47.533882119088005 -2024-07-23 15:00:00+00:00,49.973856230578015 -2024-07-23 16:00:00+00:00,51.131329487763686 -2024-07-23 17:00:00+00:00,50.809679758688944 -2024-07-23 18:00:00+00:00,50.09171379798952 -2024-07-23 19:00:00+00:00,48.84895155397567 -2024-07-23 20:00:00+00:00,51.27784368266942 -2024-07-23 21:00:00+00:00,52.24779531310253 -2024-07-23 22:00:00+00:00,51.65287953267222 -2024-07-23 23:00:00+00:00,48.7963574011494 -2024-07-24 00:00:00+00:00,45.81592364216584 -2024-07-24 01:00:00+00:00,46.052199893883014 -2024-07-24 02:00:00+00:00,45.00792097434371 -2024-07-24 03:00:00+00:00,44.81608333432499 -2024-07-24 04:00:00+00:00,46.08312288323572 -2024-07-24 05:00:00+00:00,47.665652320258474 -2024-07-24 06:00:00+00:00,48.352095790734744 -2024-07-24 07:00:00+00:00,48.39869960801964 -2024-07-24 08:00:00+00:00,48.36437345236898 -2024-07-24 09:00:00+00:00,48.07255969700456 -2024-07-24 10:00:00+00:00,46.20604006448183 -2024-07-24 11:00:00+00:00,45.44936541519741 -2024-07-24 12:00:00+00:00,46.42386597299127 -2024-07-24 13:00:00+00:00,50.631315892679915 -2024-07-24 14:00:00+00:00,56.380915703989885 -2024-07-24 15:00:00+00:00,59.76569480312715 -2024-07-24 16:00:00+00:00,63.12702669053437 -2024-07-24 17:00:00+00:00,64.49062356699945 -2024-07-24 18:00:00+00:00,63.48897830372904 -2024-07-24 19:00:00+00:00,61.88772636823914 -2024-07-24 20:00:00+00:00,60.62681675664446 -2024-07-24 21:00:00+00:00,62.04545306015045 -2024-07-24 22:00:00+00:00,63.96266976002948 -2024-07-24 23:00:00+00:00,64.32419468146684 -2024-07-25 00:00:00+00:00,64.83501328584008 -2024-07-25 01:00:00+00:00,64.55960465671839 -2024-07-25 02:00:00+00:00,63.58466643534818 -2024-07-25 03:00:00+00:00,61.43903437068678 -2024-07-25 04:00:00+00:00,58.06193623039423 -2024-07-25 05:00:00+00:00,52.840164182984985 -2024-07-25 06:00:00+00:00,48.40590677462204 -2024-07-25 07:00:00+00:00,47.0771394996532 -2024-07-25 08:00:00+00:00,48.235339198396574 -2024-07-25 09:00:00+00:00,49.91699170170428 -2024-07-25 10:00:00+00:00,51.750258767063556 -2024-07-25 11:00:00+00:00,50.394939046048 -2024-07-25 12:00:00+00:00,46.23496999963801 -2024-07-25 13:00:00+00:00,42.669818104081926 -2024-07-25 14:00:00+00:00,39.63999357405809 -2024-07-25 15:00:00+00:00,37.82192432708778 -2024-07-25 16:00:00+00:00,36.779821103168004 -2024-07-25 17:00:00+00:00,36.23576836062593 -2024-07-25 18:00:00+00:00,36.12218528163836 -2024-07-25 19:00:00+00:00,37.19052895054737 -2024-07-25 20:00:00+00:00,38.18341750785383 -2024-07-25 21:00:00+00:00,39.29054240049293 -2024-07-25 22:00:00+00:00,39.930180934764174 -2024-07-25 23:00:00+00:00,38.645959236455774 -2024-07-26 00:00:00+00:00,37.92277580026597 -2024-07-26 01:00:00+00:00,38.56999579020898 -2024-07-26 02:00:00+00:00,39.85973301215182 -2024-07-26 03:00:00+00:00,39.951190850088395 -2024-07-26 04:00:00+00:00,39.16784312094889 -2024-07-26 05:00:00+00:00,39.345546276058556 -2024-07-26 06:00:00+00:00,40.779119333872686 -2024-07-26 07:00:00+00:00,37.911024368896385 -2024-07-26 08:00:00+00:00,36.23423532221641 -2024-07-26 09:00:00+00:00,34.48911659090831 -2024-07-26 10:00:00+00:00,33.06136635246516 -2024-07-26 11:00:00+00:00,29.744143975639652 -2024-07-26 12:00:00+00:00,25.23062754210697 -2024-07-26 13:00:00+00:00,22.00175169250463 -2024-07-26 14:00:00+00:00,20.474145623066452 -2024-07-26 15:00:00+00:00,20.14361746855293 -2024-07-26 16:00:00+00:00,21.18643596500174 -2024-07-26 17:00:00+00:00,23.80309949878087 -2024-07-26 18:00:00+00:00,25.873905850432948 -2024-07-26 19:00:00+00:00,25.895766696327225 -2024-07-26 20:00:00+00:00,24.026631743319545 -2024-07-28 21:00:00+00:00,28.39932274287824 -2024-07-28 22:00:00+00:00,32.14059363743354 -2024-07-28 23:00:00+00:00,34.74230865294151 -2024-07-29 00:00:00+00:00,38.85088898782898 -2024-07-29 01:00:00+00:00,43.673350170338786 -2024-07-29 02:00:00+00:00,49.07282007824211 -2024-07-29 03:00:00+00:00,53.751013501961175 -2024-07-29 04:00:00+00:00,55.1017323572128 -2024-07-29 05:00:00+00:00,53.80099360875858 -2024-07-29 06:00:00+00:00,53.39351431616467 -2024-07-29 07:00:00+00:00,51.809669233663826 -2024-07-29 08:00:00+00:00,49.98544625144255 -2024-07-29 09:00:00+00:00,48.181208866684244 -2024-07-29 10:00:00+00:00,46.17814328036071 -2024-07-29 11:00:00+00:00,41.8190794471409 -2024-07-29 12:00:00+00:00,36.97226316563501 -2024-07-29 13:00:00+00:00,33.619316623033185 -2024-07-29 14:00:00+00:00,29.917084953222904 -2024-07-29 15:00:00+00:00,26.369910443553334 -2024-07-29 16:00:00+00:00,24.537436916536898 -2024-07-29 17:00:00+00:00,23.2673917001115 -2024-07-29 18:00:00+00:00,23.02159332865207 -2024-07-29 19:00:00+00:00,24.471431023768805 -2024-07-29 20:00:00+00:00,27.004714339382627 -2024-07-29 21:00:00+00:00,30.315449759768793 -2024-07-29 22:00:00+00:00,33.461487032680665 -2024-07-29 23:00:00+00:00,34.34598301948374 -2024-07-30 00:00:00+00:00,34.81158273150599 -2024-07-30 01:00:00+00:00,35.408107549820535 -2024-07-30 02:00:00+00:00,35.38078562385452 -2024-07-30 03:00:00+00:00,36.51362634635062 -2024-07-30 04:00:00+00:00,35.75278281337583 -2024-07-30 05:00:00+00:00,36.678369618522105 -2024-07-30 06:00:00+00:00,36.886427098422196 -2024-07-30 07:00:00+00:00,37.981673463145775 -2024-07-30 08:00:00+00:00,38.08585916103558 -2024-07-30 09:00:00+00:00,38.40914463468635 -2024-07-30 10:00:00+00:00,37.41811255733023 -2024-07-30 11:00:00+00:00,36.96145858165626 -2024-07-30 12:00:00+00:00,37.52305277861511 -2024-07-30 13:00:00+00:00,38.710674555003656 -2024-07-30 14:00:00+00:00,41.65794944228354 -2024-07-30 15:00:00+00:00,41.05166008278092 -2024-07-30 16:00:00+00:00,42.37795771419068 -2024-07-30 17:00:00+00:00,42.977261456575505 -2024-07-30 18:00:00+00:00,44.397609277533356 -2024-07-30 19:00:00+00:00,44.46449373257225 -2024-07-30 20:00:00+00:00,46.285800772769214 -2024-07-30 21:00:00+00:00,47.523224913803745 -2024-07-30 22:00:00+00:00,48.11133532721754 -2024-07-30 23:00:00+00:00,48.740159448447926 -2024-07-31 00:00:00+00:00,49.495587494489484 -2024-07-31 01:00:00+00:00,50.30396844560618 -2024-07-31 02:00:00+00:00,48.63638513269051 -2024-07-31 03:00:00+00:00,48.96426280836192 -2024-07-31 04:00:00+00:00,48.15598116065439 -2024-07-31 05:00:00+00:00,49.872117324323405 -2024-07-31 06:00:00+00:00,49.78016367923393 -2024-07-31 07:00:00+00:00,51.15256230200576 -2024-07-31 08:00:00+00:00,52.41816264158571 -2024-07-31 09:00:00+00:00,52.67252331446072 -2024-07-31 10:00:00+00:00,50.05483245212843 -2024-07-31 11:00:00+00:00,47.86958164953966 -2024-07-31 12:00:00+00:00,48.16579848727587 -2024-07-31 13:00:00+00:00,48.340194076271814 -2024-07-31 14:00:00+00:00,47.26151387322608 -2024-07-31 15:00:00+00:00,46.42711550997653 -2024-07-31 16:00:00+00:00,49.8560400461463 -2024-07-31 17:00:00+00:00,51.70016440406885 -2024-07-31 18:00:00+00:00,52.78194365444745 -2024-07-31 19:00:00+00:00,55.42696165829791 -2024-07-31 20:00:00+00:00,58.2333624355756 -2024-07-31 21:00:00+00:00,57.11012792853527 -2024-07-31 22:00:00+00:00,53.64919744775746 -2024-07-31 23:00:00+00:00,49.76914300105033 -2024-08-01 00:00:00+00:00,46.44079546598228 -2024-08-01 01:00:00+00:00,44.71135236909219 -2024-08-01 02:00:00+00:00,40.64982958874147 -2024-08-01 03:00:00+00:00,36.67503207360427 -2024-08-01 04:00:00+00:00,34.631867751045085 -2024-08-01 05:00:00+00:00,31.183432695060894 -2024-08-01 06:00:00+00:00,25.26073197356041 -2024-08-01 07:00:00+00:00,21.661160248988683 -2024-08-01 08:00:00+00:00,20.323365281329583 -2024-08-01 09:00:00+00:00,17.12805167232824 -2024-08-01 10:00:00+00:00,13.849271408246446 -2024-08-01 11:00:00+00:00,11.813596304676196 -2024-08-01 12:00:00+00:00,11.532128288208499 -2024-08-01 13:00:00+00:00,11.84316176848539 -2024-08-01 14:00:00+00:00,11.691296466405419 -2024-08-01 15:00:00+00:00,11.85273212719493 -2024-08-01 16:00:00+00:00,12.037557642294134 -2024-08-01 17:00:00+00:00,12.050966832935215 -2024-08-01 18:00:00+00:00,10.908751094903437 -2024-08-01 19:00:00+00:00,10.665758101178865 -2024-08-01 20:00:00+00:00,12.376167826141968 -2024-08-01 21:00:00+00:00,12.52577143039259 -2024-08-01 22:00:00+00:00,11.128531682729681 -2024-08-01 23:00:00+00:00,11.268703007541179 -2024-08-02 00:00:00+00:00,12.211963902349197 -2024-08-02 01:00:00+00:00,14.24613511857667 -2024-08-02 02:00:00+00:00,17.621705948700775 -2024-08-02 03:00:00+00:00,20.98453118521636 -2024-08-02 04:00:00+00:00,23.587862796078213 -2024-08-02 05:00:00+00:00,25.07351640346821 -2024-08-02 06:00:00+00:00,27.730738699244682 -2024-08-02 07:00:00+00:00,30.752471611811814 -2024-08-02 08:00:00+00:00,33.27785024859824 -2024-08-02 09:00:00+00:00,36.4257074248862 -2024-08-02 10:00:00+00:00,37.85639121865396 -2024-08-02 11:00:00+00:00,39.08480801785254 -2024-08-02 12:00:00+00:00,42.34690653685704 -2024-08-02 13:00:00+00:00,45.22352465833648 -2024-08-02 14:00:00+00:00,48.36433591907257 -2024-08-02 15:00:00+00:00,52.545073939204535 -2024-08-02 16:00:00+00:00,54.12951069481032 -2024-08-02 17:00:00+00:00,55.31852881509555 -2024-08-02 18:00:00+00:00,57.52144038649793 -2024-08-02 19:00:00+00:00,58.653934325663165 -2024-08-02 20:00:00+00:00,59.8777569837488 -2024-08-04 21:00:00+00:00,60.76836754285234 -2024-08-04 22:00:00+00:00,62.94892375122779 -2024-08-04 23:00:00+00:00,65.03540096266936 -2024-08-05 00:00:00+00:00,67.31429761624477 -2024-08-05 01:00:00+00:00,70.94648488651379 -2024-08-05 02:00:00+00:00,72.17891367571964 -2024-08-05 03:00:00+00:00,73.92069836032195 -2024-08-05 04:00:00+00:00,75.27041512165674 -2024-08-05 05:00:00+00:00,75.26441968139177 -2024-08-05 06:00:00+00:00,77.53380921858319 -2024-08-05 07:00:00+00:00,77.85524963848539 -2024-08-05 08:00:00+00:00,78.19394633123306 -2024-08-05 09:00:00+00:00,78.81979917602145 -2024-08-05 10:00:00+00:00,79.77084859283734 -2024-08-05 11:00:00+00:00,79.89838112298412 -2024-08-05 12:00:00+00:00,79.41158760953215 -2024-08-05 13:00:00+00:00,77.50360620913234 -2024-08-05 14:00:00+00:00,74.34903753569098 -2024-08-05 15:00:00+00:00,70.4839859823871 -2024-08-05 16:00:00+00:00,66.04804107011478 -2024-08-05 17:00:00+00:00,60.549859626221355 -2024-08-05 18:00:00+00:00,55.34254475374861 -2024-08-05 19:00:00+00:00,49.97700232883738 -2024-08-05 20:00:00+00:00,45.018812715746456 -2024-08-05 21:00:00+00:00,41.183675944109886 -2024-08-05 22:00:00+00:00,39.23490082172729 -2024-08-05 23:00:00+00:00,38.320989038836736 -2024-08-06 00:00:00+00:00,37.45692550667575 -2024-08-06 01:00:00+00:00,36.40123522317414 -2024-08-06 02:00:00+00:00,35.9729885207416 -2024-08-06 03:00:00+00:00,36.68515788862987 -2024-08-06 04:00:00+00:00,38.13213252709458 -2024-08-06 05:00:00+00:00,40.43645921269018 -2024-08-06 06:00:00+00:00,43.35713147103742 -2024-08-06 07:00:00+00:00,46.3670480331666 -2024-08-06 08:00:00+00:00,48.389291743142266 -2024-08-06 09:00:00+00:00,50.57373432749453 -2024-08-06 10:00:00+00:00,51.15456435760376 -2024-08-06 11:00:00+00:00,53.00003283363829 -2024-08-06 12:00:00+00:00,51.503423639954875 -2024-08-06 13:00:00+00:00,47.088373182928535 -2024-08-06 14:00:00+00:00,42.83939170201512 -2024-08-06 15:00:00+00:00,39.854871337242756 -2024-08-06 16:00:00+00:00,36.689030164910264 -2024-08-06 17:00:00+00:00,32.5149088208149 -2024-08-06 18:00:00+00:00,28.787261876762134 -2024-08-06 19:00:00+00:00,25.809428797836752 -2024-08-06 20:00:00+00:00,24.396420127993768 -2024-08-06 21:00:00+00:00,23.0780255530175 -2024-08-06 22:00:00+00:00,20.624226041110518 -2024-08-06 23:00:00+00:00,18.230389786983757 -2024-08-07 00:00:00+00:00,15.408288388991862 -2024-08-07 01:00:00+00:00,14.884534272411953 -2024-08-07 02:00:00+00:00,16.081640675266943 -2024-08-07 03:00:00+00:00,20.577233032857528 -2024-08-07 04:00:00+00:00,24.783774049214475 -2024-08-07 05:00:00+00:00,27.98934484914334 -2024-08-07 06:00:00+00:00,29.659645391603483 -2024-08-07 07:00:00+00:00,31.646368014426113 -2024-08-07 08:00:00+00:00,34.04909097789352 -2024-08-07 09:00:00+00:00,35.816502105156594 -2024-08-07 10:00:00+00:00,37.55944739356902 -2024-08-07 11:00:00+00:00,39.36955416933231 -2024-08-07 12:00:00+00:00,42.36521700887278 -2024-08-07 13:00:00+00:00,45.41588456565914 -2024-08-07 14:00:00+00:00,48.149159177353035 -2024-08-07 15:00:00+00:00,45.491111841837665 -2024-08-07 16:00:00+00:00,43.06391868735348 -2024-08-07 17:00:00+00:00,38.870852412571644 -2024-08-07 18:00:00+00:00,36.3905619596745 -2024-08-07 19:00:00+00:00,33.85823920571301 -2024-08-07 20:00:00+00:00,31.753928093513007 -2024-08-07 21:00:00+00:00,29.738062846688518 -2024-08-07 22:00:00+00:00,28.852423949545287 -2024-08-07 23:00:00+00:00,29.937144685022936 -2024-08-08 00:00:00+00:00,29.987450230327266 -2024-08-08 01:00:00+00:00,30.107227388384523 -2024-08-08 02:00:00+00:00,29.518319858210788 -2024-08-08 03:00:00+00:00,29.290206319445275 -2024-08-08 04:00:00+00:00,30.143239823519462 -2024-08-08 05:00:00+00:00,34.796038016158114 -2024-08-08 06:00:00+00:00,38.71465200729257 -2024-08-08 07:00:00+00:00,43.05212806007306 -2024-08-08 08:00:00+00:00,45.0419730771157 -2024-08-08 09:00:00+00:00,47.635368883367285 -2024-08-08 10:00:00+00:00,50.808464814566946 -2024-08-08 11:00:00+00:00,54.57954888857945 -2024-08-08 12:00:00+00:00,53.32780338124076 -2024-08-08 13:00:00+00:00,51.184538969272985 -2024-08-08 14:00:00+00:00,49.48986317272128 -2024-08-08 15:00:00+00:00,48.345751317400016 -2024-08-08 16:00:00+00:00,47.682518533762256 -2024-08-08 17:00:00+00:00,47.092874425083394 -2024-08-08 18:00:00+00:00,48.429793719937706 -2024-08-08 19:00:00+00:00,48.06925599598721 -2024-08-08 20:00:00+00:00,48.214311780839544 -2024-08-08 21:00:00+00:00,49.93256657475488 -2024-08-08 22:00:00+00:00,52.12718517564332 -2024-08-08 23:00:00+00:00,54.69940589365199 -2024-08-09 00:00:00+00:00,57.05525623483892 -2024-08-09 01:00:00+00:00,59.09570425017815 -2024-08-09 02:00:00+00:00,62.995699329579416 -2024-08-09 03:00:00+00:00,64.4199285957541 -2024-08-09 04:00:00+00:00,62.49646876596211 -2024-08-09 05:00:00+00:00,59.651534576943575 -2024-08-09 06:00:00+00:00,57.78575209347452 -2024-08-09 07:00:00+00:00,55.06870320647191 -2024-08-09 08:00:00+00:00,50.354901285122764 -2024-08-09 09:00:00+00:00,46.68540303829662 -2024-08-09 10:00:00+00:00,41.993207083945485 -2024-08-09 11:00:00+00:00,36.386996948463704 -2024-08-09 12:00:00+00:00,31.91161471421585 -2024-08-09 13:00:00+00:00,30.255521283433165 -2024-08-09 14:00:00+00:00,29.17426701932265 -2024-08-09 15:00:00+00:00,27.5405345752697 -2024-08-09 16:00:00+00:00,27.428777790293786 -2024-08-09 17:00:00+00:00,27.6340962813269 -2024-08-09 18:00:00+00:00,29.86124667426532 -2024-08-09 19:00:00+00:00,32.62282194799994 -2024-08-09 20:00:00+00:00,35.583260892145006 -2024-08-11 21:00:00+00:00,37.155879573028116 -2024-08-11 22:00:00+00:00,38.90069775260069 -2024-08-11 23:00:00+00:00,39.3484544158272 -2024-08-12 00:00:00+00:00,40.502551943720235 -2024-08-12 01:00:00+00:00,40.369088601818234 -2024-08-12 02:00:00+00:00,39.50626454425609 -2024-08-12 03:00:00+00:00,36.74423309970918 -2024-08-12 04:00:00+00:00,35.76678319141291 -2024-08-12 05:00:00+00:00,35.38375296075071 -2024-08-12 06:00:00+00:00,35.006981814335624 -2024-08-12 07:00:00+00:00,33.91384077218593 -2024-08-12 08:00:00+00:00,34.10943090402912 -2024-08-12 09:00:00+00:00,34.99625043097809 -2024-08-12 10:00:00+00:00,35.32105178198013 -2024-08-12 11:00:00+00:00,37.38211552489638 -2024-08-12 12:00:00+00:00,39.195013008224755 -2024-08-12 13:00:00+00:00,42.724078251386764 -2024-08-12 14:00:00+00:00,47.11245755674737 -2024-08-12 15:00:00+00:00,49.58032783493989 -2024-08-12 16:00:00+00:00,51.947850302842326 -2024-08-12 17:00:00+00:00,51.53530127901411 -2024-08-12 18:00:00+00:00,49.033331150041 -2024-08-12 19:00:00+00:00,46.592888630592036 -2024-08-12 20:00:00+00:00,43.941601095907416 -2024-08-12 21:00:00+00:00,42.64659659915427 -2024-08-12 22:00:00+00:00,40.13716753674504 -2024-08-12 23:00:00+00:00,36.655289880706775 -2024-08-13 00:00:00+00:00,32.99239089231922 -2024-08-13 01:00:00+00:00,29.434894249981596 -2024-08-13 02:00:00+00:00,26.3567459100016 -2024-08-13 03:00:00+00:00,24.814357474518932 -2024-08-13 04:00:00+00:00,20.393198131302494 -2024-08-13 05:00:00+00:00,18.556375561465195 -2024-08-13 06:00:00+00:00,16.701632440760886 -2024-08-13 07:00:00+00:00,18.07580688285075 -2024-08-13 08:00:00+00:00,18.79176167231163 -2024-08-13 09:00:00+00:00,20.053514147854237 -2024-08-13 10:00:00+00:00,20.607594601298878 -2024-08-13 11:00:00+00:00,19.51764912552497 -2024-08-13 12:00:00+00:00,19.151801092969322 -2024-08-13 13:00:00+00:00,19.363155983593067 -2024-08-13 14:00:00+00:00,19.854328548619527 -2024-08-13 15:00:00+00:00,21.12603538973442 -2024-08-13 16:00:00+00:00,22.596185804723547 -2024-08-13 17:00:00+00:00,22.38058772576073 -2024-08-13 18:00:00+00:00,26.477189959776215 -2024-08-13 19:00:00+00:00,30.729117317232884 -2024-08-13 20:00:00+00:00,35.52032906040127 -2024-08-13 21:00:00+00:00,38.82333080614161 -2024-08-13 22:00:00+00:00,42.774326714742635 -2024-08-13 23:00:00+00:00,45.36850418854347 -2024-08-14 00:00:00+00:00,47.51346397279342 -2024-08-14 01:00:00+00:00,50.75871987180998 -2024-08-14 02:00:00+00:00,54.9141948787791 -2024-08-14 03:00:00+00:00,58.55386469649758 -2024-08-14 04:00:00+00:00,60.99433863280404 -2024-08-14 05:00:00+00:00,62.52366701051026 -2024-08-14 06:00:00+00:00,61.5224373627776 -2024-08-14 07:00:00+00:00,59.389234330568684 -2024-08-14 08:00:00+00:00,54.337296014012644 -2024-08-14 09:00:00+00:00,49.031299173054485 -2024-08-14 10:00:00+00:00,43.707557655225585 -2024-08-14 11:00:00+00:00,38.31556360739123 -2024-08-14 12:00:00+00:00,32.98609646136276 -2024-08-14 13:00:00+00:00,27.95356567701995 -2024-08-14 14:00:00+00:00,25.24992802000989 -2024-08-14 15:00:00+00:00,22.085551097309324 -2024-08-14 16:00:00+00:00,20.065431306435503 -2024-08-14 17:00:00+00:00,19.140622855074906 -2024-08-14 18:00:00+00:00,18.897131947742345 -2024-08-14 19:00:00+00:00,18.880283743944204 -2024-08-14 20:00:00+00:00,20.34981002932839 -2024-08-14 21:00:00+00:00,21.599459322315532 -2024-08-14 22:00:00+00:00,22.785162151963778 -2024-08-14 23:00:00+00:00,24.56882322790676 -2024-08-15 00:00:00+00:00,26.22582812315207 -2024-08-15 01:00:00+00:00,28.649505581359836 -2024-08-15 02:00:00+00:00,29.111767107809133 -2024-08-15 03:00:00+00:00,30.3670732297721 -2024-08-15 04:00:00+00:00,32.508459527467984 -2024-08-15 05:00:00+00:00,33.52624461516944 -2024-08-15 06:00:00+00:00,32.07301026974286 -2024-08-15 07:00:00+00:00,29.506256292705626 -2024-08-15 08:00:00+00:00,26.835789381290663 -2024-08-15 09:00:00+00:00,23.962762152545032 -2024-08-15 10:00:00+00:00,22.512428262728754 -2024-08-15 11:00:00+00:00,21.48586255827712 -2024-08-15 12:00:00+00:00,24.414919054986918 -2024-08-15 13:00:00+00:00,26.736893724834918 -2024-08-15 14:00:00+00:00,28.317350809864497 -2024-08-15 15:00:00+00:00,29.296710909315454 -2024-08-15 16:00:00+00:00,32.275428175073564 -2024-08-15 17:00:00+00:00,35.63180470167848 -2024-08-15 18:00:00+00:00,37.88715502032501 -2024-08-15 19:00:00+00:00,42.70602870311368 -2024-08-15 20:00:00+00:00,48.04331693477383 -2024-08-15 21:00:00+00:00,53.86328541535225 -2024-08-15 22:00:00+00:00,58.90372062288834 -2024-08-15 23:00:00+00:00,63.88360159110492 -2024-08-16 00:00:00+00:00,67.28472094974776 -2024-08-16 01:00:00+00:00,70.7710233340231 -2024-08-16 02:00:00+00:00,66.99588824122527 -2024-08-16 03:00:00+00:00,64.68613748201913 -2024-08-16 04:00:00+00:00,61.52706669509049 -2024-08-16 05:00:00+00:00,58.378477246177745 -2024-08-16 06:00:00+00:00,55.049005984470114 -2024-08-16 07:00:00+00:00,52.69703571681805 -2024-08-16 08:00:00+00:00,50.74621807492188 -2024-08-16 09:00:00+00:00,48.07504228753369 -2024-08-16 10:00:00+00:00,49.2220986241881 -2024-08-16 11:00:00+00:00,49.76432200443428 -2024-08-16 12:00:00+00:00,51.553736232969314 -2024-08-16 13:00:00+00:00,53.03192843020822 -2024-08-16 14:00:00+00:00,52.47808729769922 -2024-08-16 15:00:00+00:00,51.95365105549019 -2024-08-16 16:00:00+00:00,55.121499276179 -2024-08-16 17:00:00+00:00,57.04696554375898 -2024-08-16 18:00:00+00:00,60.276640989599244 -2024-08-16 19:00:00+00:00,63.71215243399495 -2024-08-16 20:00:00+00:00,67.5720050983683 -2024-08-18 21:00:00+00:00,69.76497505698124 -2024-08-18 22:00:00+00:00,69.45987157573919 -2024-08-18 23:00:00+00:00,68.21679175193347 -2024-08-19 00:00:00+00:00,62.5951484460074 -2024-08-19 01:00:00+00:00,57.67155539622167 -2024-08-19 02:00:00+00:00,51.71495396872142 -2024-08-19 03:00:00+00:00,48.47160319281818 -2024-08-19 04:00:00+00:00,49.677869865674936 -2024-08-19 05:00:00+00:00,51.32423286227061 -2024-08-19 06:00:00+00:00,53.313659212011025 -2024-08-19 07:00:00+00:00,53.51060328641084 -2024-08-19 08:00:00+00:00,53.345917064020476 -2024-08-19 09:00:00+00:00,52.7121809439893 -2024-08-19 10:00:00+00:00,50.98109275539009 -2024-08-19 11:00:00+00:00,49.70989636942171 -2024-08-19 12:00:00+00:00,50.60394010507481 -2024-08-19 13:00:00+00:00,51.83815389847346 -2024-08-19 14:00:00+00:00,53.16801265344951 -2024-08-19 15:00:00+00:00,53.804970714956156 -2024-08-19 16:00:00+00:00,55.40579723276084 -2024-08-19 17:00:00+00:00,52.82391551024779 -2024-08-19 18:00:00+00:00,48.34173160043785 -2024-08-19 19:00:00+00:00,45.64612758754863 -2024-08-19 20:00:00+00:00,44.445240821421386 -2024-08-19 21:00:00+00:00,43.68700572663748 -2024-08-19 22:00:00+00:00,42.725812386657026 -2024-08-19 23:00:00+00:00,42.45420939402926 -2024-08-20 00:00:00+00:00,39.34460944305268 -2024-08-20 01:00:00+00:00,36.30064133592402 -2024-08-20 02:00:00+00:00,34.10543197272967 -2024-08-20 03:00:00+00:00,31.69611782784082 -2024-08-20 04:00:00+00:00,29.07047689635106 -2024-08-20 05:00:00+00:00,27.618283866785497 -2024-08-20 06:00:00+00:00,25.995659646066326 -2024-08-20 07:00:00+00:00,26.005669006418064 -2024-08-20 08:00:00+00:00,26.470077407513816 -2024-08-20 09:00:00+00:00,24.916105573289933 -2024-08-20 10:00:00+00:00,21.91987393782559 -2024-08-20 11:00:00+00:00,19.786353414714945 -2024-08-20 12:00:00+00:00,18.204255720080017 -2024-08-20 13:00:00+00:00,16.998983138905256 -2024-08-20 14:00:00+00:00,19.586749730341836 -2024-08-20 15:00:00+00:00,21.146387176753933 -2024-08-20 16:00:00+00:00,24.23138026405049 -2024-08-20 17:00:00+00:00,28.40251561455733 -2024-08-20 18:00:00+00:00,32.82479738005356 -2024-08-20 19:00:00+00:00,38.1718132984984 -2024-08-20 20:00:00+00:00,43.77937401042427 -2024-08-20 21:00:00+00:00,49.444333294786816 -2024-08-20 22:00:00+00:00,54.660295623128995 -2024-08-20 23:00:00+00:00,58.17831147369814 -2024-08-21 00:00:00+00:00,60.19321812248085 -2024-08-21 01:00:00+00:00,62.489003678192965 -2024-08-21 02:00:00+00:00,63.88976052099861 -2024-08-21 03:00:00+00:00,63.692025237700854 -2024-08-21 04:00:00+00:00,62.0833321485081 -2024-08-21 05:00:00+00:00,60.89286183002512 -2024-08-21 06:00:00+00:00,58.91649602041815 -2024-08-21 07:00:00+00:00,57.38978687027528 -2024-08-21 08:00:00+00:00,55.95979567828392 -2024-08-21 09:00:00+00:00,53.3574681072059 -2024-08-21 10:00:00+00:00,51.869339753720475 -2024-08-21 11:00:00+00:00,51.523264269207985 -2024-08-21 12:00:00+00:00,49.355111094556776 -2024-08-21 13:00:00+00:00,46.700048749961574 -2024-08-21 14:00:00+00:00,47.24262105172999 -2024-08-21 15:00:00+00:00,46.09687097353372 -2024-08-21 16:00:00+00:00,45.42441933296118 -2024-08-21 17:00:00+00:00,44.974642824373525 -2024-08-21 18:00:00+00:00,44.011442331111915 -2024-08-21 19:00:00+00:00,43.264171763272714 -2024-08-21 20:00:00+00:00,40.392126148543625 -2024-08-21 21:00:00+00:00,37.092109183429336 -2024-08-21 22:00:00+00:00,34.32841429886166 -2024-08-21 23:00:00+00:00,31.325094552061877 -2024-08-22 00:00:00+00:00,26.559459736666962 -2024-08-22 01:00:00+00:00,20.48773312155882 -2024-08-22 02:00:00+00:00,16.890202753121947 -2024-08-22 03:00:00+00:00,15.58848760009859 -2024-08-22 04:00:00+00:00,14.432565581500578 -2024-08-22 05:00:00+00:00,13.959740588481694 -2024-08-22 06:00:00+00:00,12.8780084924057 -2024-08-22 07:00:00+00:00,12.31563434503722 -2024-08-22 08:00:00+00:00,13.415806295722929 -2024-08-22 09:00:00+00:00,14.94968808470871 -2024-08-22 10:00:00+00:00,15.973455722758972 -2024-08-22 11:00:00+00:00,17.468021477296336 -2024-08-22 12:00:00+00:00,20.08676573815016 -2024-08-22 13:00:00+00:00,23.055087126566978 -2024-08-22 14:00:00+00:00,26.192742078687935 -2024-08-22 15:00:00+00:00,27.453046277513486 -2024-08-22 16:00:00+00:00,28.089730580864618 -2024-08-22 17:00:00+00:00,29.671923810764405 -2024-08-22 18:00:00+00:00,29.98782785572393 -2024-08-22 19:00:00+00:00,30.966344597182335 -2024-08-22 20:00:00+00:00,32.370141484089245 -2024-08-22 21:00:00+00:00,34.357852208390305 -2024-08-22 22:00:00+00:00,35.357364588949864 -2024-08-22 23:00:00+00:00,35.04399430401772 -2024-08-23 00:00:00+00:00,33.96378936929539 -2024-08-23 01:00:00+00:00,34.54538688818853 -2024-08-23 02:00:00+00:00,35.200025845460594 -2024-08-23 03:00:00+00:00,36.23681394221906 -2024-08-23 04:00:00+00:00,36.707918526082224 -2024-08-23 05:00:00+00:00,38.67932964322917 -2024-08-23 06:00:00+00:00,41.22744219439973 -2024-08-23 07:00:00+00:00,42.40491462922529 -2024-08-23 08:00:00+00:00,42.39789738082863 -2024-08-23 09:00:00+00:00,41.89135015646384 -2024-08-23 10:00:00+00:00,41.77977651336395 -2024-08-23 11:00:00+00:00,41.163137638754066 -2024-08-23 12:00:00+00:00,40.99597002628328 -2024-08-23 13:00:00+00:00,40.134304259058844 -2024-08-23 14:00:00+00:00,42.48343219676938 -2024-08-23 15:00:00+00:00,42.14306192036533 -2024-08-23 16:00:00+00:00,39.68919214599184 -2024-08-23 17:00:00+00:00,37.222479853771524 -2024-08-23 18:00:00+00:00,36.69192471686733 -2024-08-23 19:00:00+00:00,36.94414849693107 -2024-08-23 20:00:00+00:00,35.831606411825035 -2024-08-25 21:00:00+00:00,35.92116207249894 -2024-08-25 22:00:00+00:00,36.80954618841384 -2024-08-25 23:00:00+00:00,39.2016608126326 -2024-08-26 00:00:00+00:00,41.58518689353838 -2024-08-26 01:00:00+00:00,43.81403428672436 -2024-08-26 02:00:00+00:00,46.58897927050696 -2024-08-26 03:00:00+00:00,51.822236041116966 -2024-08-26 04:00:00+00:00,54.27424625799397 -2024-08-26 05:00:00+00:00,55.34822344887472 -2024-08-26 06:00:00+00:00,57.67633762968001 -2024-08-26 07:00:00+00:00,58.65178232381388 -2024-08-26 08:00:00+00:00,57.95636941919965 -2024-08-26 09:00:00+00:00,56.7533705793813 -2024-08-26 10:00:00+00:00,56.26347690974535 -2024-08-26 11:00:00+00:00,53.60809662949536 -2024-08-26 12:00:00+00:00,49.74865957325894 -2024-08-26 13:00:00+00:00,46.408082523756946 -2024-08-26 14:00:00+00:00,43.8124363448412 -2024-08-26 15:00:00+00:00,41.728939656006084 -2024-08-26 16:00:00+00:00,39.3963296443163 -2024-08-26 17:00:00+00:00,35.02595164777569 -2024-08-26 18:00:00+00:00,32.10191965091685 -2024-08-26 19:00:00+00:00,29.95787037249222 -2024-08-26 20:00:00+00:00,28.733639199880553 -2024-08-26 21:00:00+00:00,29.086954640078567 -2024-08-26 22:00:00+00:00,28.45539846085077 -2024-08-26 23:00:00+00:00,27.340660946814694 -2024-08-27 00:00:00+00:00,27.239720790698755 -2024-08-27 01:00:00+00:00,28.2968408988238 -2024-08-27 02:00:00+00:00,29.64866106111441 -2024-08-27 03:00:00+00:00,30.233349344035535 -2024-08-27 04:00:00+00:00,28.453910908436796 -2024-08-27 05:00:00+00:00,25.675227217432035 -2024-08-27 06:00:00+00:00,23.25251345148647 -2024-08-27 07:00:00+00:00,24.31014627828355 -2024-08-27 08:00:00+00:00,24.17748097296919 -2024-08-27 09:00:00+00:00,23.51680010208144 -2024-08-27 10:00:00+00:00,21.218852478728955 -2024-08-27 11:00:00+00:00,17.729322338314358 -2024-08-27 12:00:00+00:00,16.071327955199926 -2024-08-27 13:00:00+00:00,15.36407017919261 -2024-08-27 14:00:00+00:00,15.92588637222398 -2024-08-27 15:00:00+00:00,17.15321452024543 -2024-08-27 16:00:00+00:00,19.231360713258134 -2024-08-27 17:00:00+00:00,21.27160606032252 -2024-08-27 18:00:00+00:00,24.43289893180069 -2024-08-27 19:00:00+00:00,28.534372773493395 -2024-08-27 20:00:00+00:00,32.406723602618975 -2024-08-27 21:00:00+00:00,37.35108382460708 -2024-08-27 22:00:00+00:00,42.48785217959171 -2024-08-27 23:00:00+00:00,48.39541888587888 -2024-08-28 00:00:00+00:00,51.6494154481764 -2024-08-28 01:00:00+00:00,53.32325422282811 -2024-08-28 02:00:00+00:00,53.62883976647101 -2024-08-28 03:00:00+00:00,53.14926538084013 -2024-08-28 04:00:00+00:00,51.23091261047252 -2024-08-28 05:00:00+00:00,48.14287618991322 -2024-08-28 06:00:00+00:00,45.6691338035806 -2024-08-28 07:00:00+00:00,43.79892971119806 -2024-08-28 08:00:00+00:00,42.36630648306676 -2024-08-28 09:00:00+00:00,38.43360706164554 -2024-08-28 10:00:00+00:00,35.50758530980636 -2024-08-28 11:00:00+00:00,29.199891582070286 -2024-08-28 12:00:00+00:00,25.81255078296488 -2024-08-28 13:00:00+00:00,23.40889946485026 -2024-08-28 14:00:00+00:00,21.528264502475558 -2024-08-28 15:00:00+00:00,20.344783477645468 -2024-08-28 16:00:00+00:00,20.669920072387402 -2024-08-28 17:00:00+00:00,21.828292620929112 -2024-08-28 18:00:00+00:00,21.718836492446776 -2024-08-28 19:00:00+00:00,22.55130687261369 -2024-08-28 20:00:00+00:00,21.532299727421357 -2024-08-28 21:00:00+00:00,19.334836994401567 -2024-08-28 22:00:00+00:00,17.4738021039887 -2024-08-28 23:00:00+00:00,17.507066524950158 -2024-08-29 00:00:00+00:00,16.685700176052755 -2024-08-29 01:00:00+00:00,16.219418750023163 -2024-08-29 02:00:00+00:00,13.22906008224491 -2024-08-29 03:00:00+00:00,11.247657108128717 -2024-08-29 04:00:00+00:00,9.431187542315595 -2024-08-29 05:00:00+00:00,9.967610127103782 -2024-08-29 06:00:00+00:00,8.859529663414657 -2024-08-29 07:00:00+00:00,8.35399889674701 -2024-08-29 08:00:00+00:00,8.148583061653072 -2024-08-29 09:00:00+00:00,7.238546078848946 -2024-08-29 10:00:00+00:00,9.145659277624341 -2024-08-29 11:00:00+00:00,11.487329650107968 -2024-08-29 12:00:00+00:00,16.283880574559905 -2024-08-29 13:00:00+00:00,21.783931133248405 -2024-08-29 14:00:00+00:00,26.668777546759436 -2024-08-29 15:00:00+00:00,29.776840726218236 -2024-08-29 16:00:00+00:00,32.26609549483418 -2024-08-29 17:00:00+00:00,32.684339128165426 -2024-08-29 18:00:00+00:00,34.44206312459124 -2024-08-29 19:00:00+00:00,34.56222183990566 -2024-08-29 20:00:00+00:00,36.779239794628566 -2024-08-29 21:00:00+00:00,37.88430126589368 -2024-08-29 22:00:00+00:00,39.06188108312903 -2024-08-29 23:00:00+00:00,40.843181661319605 -2024-08-30 00:00:00+00:00,39.75200541818301 -2024-08-30 01:00:00+00:00,38.102491097802776 -2024-08-30 02:00:00+00:00,36.401174637672526 -2024-08-30 03:00:00+00:00,35.399344293181045 -2024-08-30 04:00:00+00:00,33.917798809154846 -2024-08-30 05:00:00+00:00,32.1691217420799 -2024-08-30 06:00:00+00:00,29.204772175789167 -2024-08-30 07:00:00+00:00,27.184027076756177 -2024-08-30 08:00:00+00:00,27.653142141826816 -2024-08-30 09:00:00+00:00,28.29884509077947 -2024-08-30 10:00:00+00:00,28.616903666669398 -2024-08-30 11:00:00+00:00,29.955133323318456 -2024-08-30 12:00:00+00:00,33.24266466181657 -2024-08-30 13:00:00+00:00,36.06713205511029 -2024-08-30 14:00:00+00:00,40.83617123085333 -2024-08-30 15:00:00+00:00,45.75963061637007 -2024-08-30 16:00:00+00:00,47.98744331954914 -2024-08-30 17:00:00+00:00,49.027373474922975 -2024-08-30 18:00:00+00:00,50.96942980301089 -2024-08-30 19:00:00+00:00,54.690477265066 -2024-08-30 20:00:00+00:00,60.12940159751851 -2024-09-01 21:00:00+00:00,65.52991048888889 -2024-09-01 22:00:00+00:00,69.24445266169663 -2024-09-01 23:00:00+00:00,73.16462939708435 -2024-09-02 00:00:00+00:00,75.11460270035863 -2024-09-02 01:00:00+00:00,75.46564425589008 -2024-09-02 02:00:00+00:00,72.20230851665879 -2024-09-02 03:00:00+00:00,68.91533964498642 -2024-09-02 04:00:00+00:00,64.98840106333782 -2024-09-02 05:00:00+00:00,61.20115139980562 -2024-09-02 06:00:00+00:00,56.53792265555624 -2024-09-02 07:00:00+00:00,52.544093135163415 -2024-09-02 08:00:00+00:00,49.94061191961202 -2024-09-02 09:00:00+00:00,46.916360225813705 -2024-09-02 10:00:00+00:00,43.938139701047284 -2024-09-02 11:00:00+00:00,41.07843184508365 -2024-09-02 12:00:00+00:00,37.5151237512498 -2024-09-02 13:00:00+00:00,33.95637551799445 -2024-09-02 14:00:00+00:00,33.800046701310144 -2024-09-02 15:00:00+00:00,35.56998661911591 -2024-09-02 16:00:00+00:00,39.57931069289595 -2024-09-02 17:00:00+00:00,44.66395488242301 -2024-09-02 18:00:00+00:00,49.99869736180931 -2024-09-02 19:00:00+00:00,55.3115261994583 -2024-09-02 20:00:00+00:00,61.36575104438149 -2024-09-02 21:00:00+00:00,66.75487461448792 -2024-09-02 22:00:00+00:00,71.07254100674014 -2024-09-02 23:00:00+00:00,72.98996005092069 -2024-09-03 00:00:00+00:00,75.41536112933987 -2024-09-03 01:00:00+00:00,75.70955455683482 -2024-09-03 02:00:00+00:00,76.28001453756372 -2024-09-03 03:00:00+00:00,74.08406161194371 -2024-09-03 04:00:00+00:00,70.59808319006045 -2024-09-03 05:00:00+00:00,68.08675239568905 -2024-09-03 06:00:00+00:00,65.28729784886784 -2024-09-03 07:00:00+00:00,62.02398215605923 -2024-09-03 08:00:00+00:00,59.007918018479245 -2024-09-03 09:00:00+00:00,56.240902039971544 -2024-09-03 10:00:00+00:00,53.048296084774854 -2024-09-03 11:00:00+00:00,48.715732794640715 -2024-09-03 12:00:00+00:00,44.26788876383123 -2024-09-03 13:00:00+00:00,43.53765562362498 -2024-09-03 14:00:00+00:00,43.79785370990934 -2024-09-03 15:00:00+00:00,44.38571149453177 -2024-09-03 16:00:00+00:00,45.237189034619355 -2024-09-03 17:00:00+00:00,48.66153174467563 -2024-09-03 18:00:00+00:00,51.48387715388002 -2024-09-03 19:00:00+00:00,52.31293350742673 -2024-09-03 20:00:00+00:00,52.891261410864175 -2024-09-03 21:00:00+00:00,52.91256535761749 -2024-09-03 22:00:00+00:00,51.86186452846425 -2024-09-03 23:00:00+00:00,50.71699286928644 -2024-09-04 00:00:00+00:00,50.79701329680273 -2024-09-04 01:00:00+00:00,53.11119346594338 -2024-09-04 02:00:00+00:00,56.052891821291254 -2024-09-04 03:00:00+00:00,56.977899076270795 -2024-09-04 04:00:00+00:00,56.14723432955376 -2024-09-04 05:00:00+00:00,59.54989582956745 -2024-09-04 06:00:00+00:00,63.02936675945551 -2024-09-04 07:00:00+00:00,66.42824114111326 -2024-09-04 08:00:00+00:00,68.27439316559605 -2024-09-04 09:00:00+00:00,69.62673545724631 -2024-09-04 10:00:00+00:00,71.07056505197038 -2024-09-04 11:00:00+00:00,72.7499289946495 -2024-09-04 12:00:00+00:00,73.42401148463321 -2024-09-04 13:00:00+00:00,73.80658354393003 -2024-09-04 14:00:00+00:00,74.36625245417727 -2024-09-04 15:00:00+00:00,73.64876302744958 -2024-09-04 16:00:00+00:00,72.22371802978377 -2024-09-04 17:00:00+00:00,72.25013274882899 -2024-09-04 18:00:00+00:00,72.51537012314 -2024-09-04 19:00:00+00:00,69.75521603348844 -2024-09-04 20:00:00+00:00,66.84518755661604 -2024-09-04 21:00:00+00:00,64.12619244765195 -2024-09-04 22:00:00+00:00,64.42261952218401 -2024-09-04 23:00:00+00:00,65.76812594408652 -2024-09-05 00:00:00+00:00,66.23008919258763 -2024-09-05 01:00:00+00:00,66.32570835612022 -2024-09-05 02:00:00+00:00,68.06386161408865 -2024-09-05 03:00:00+00:00,69.98217282707655 -2024-09-05 04:00:00+00:00,70.18390088411563 -2024-09-05 05:00:00+00:00,70.87691887723426 -2024-09-05 06:00:00+00:00,72.01118230657957 -2024-09-05 07:00:00+00:00,70.8167259400071 -2024-09-05 08:00:00+00:00,69.3406922095381 -2024-09-05 09:00:00+00:00,68.09415844416722 -2024-09-05 10:00:00+00:00,66.79641153307948 -2024-09-05 11:00:00+00:00,65.3575643055722 -2024-09-05 12:00:00+00:00,63.466734645016274 -2024-09-05 13:00:00+00:00,60.10569644145844 -2024-09-05 14:00:00+00:00,55.17368959341594 -2024-09-05 15:00:00+00:00,50.99993152057415 -2024-09-05 16:00:00+00:00,46.120581346617634 -2024-09-05 17:00:00+00:00,40.683260473424056 -2024-09-05 18:00:00+00:00,36.68251525331234 -2024-09-05 19:00:00+00:00,33.03540736588356 -2024-09-05 20:00:00+00:00,30.285680441736705 -2024-09-05 21:00:00+00:00,28.64059606036323 -2024-09-05 22:00:00+00:00,26.661531300877453 -2024-09-05 23:00:00+00:00,25.214034354230144 -2024-09-06 00:00:00+00:00,22.962022187011492 -2024-09-06 01:00:00+00:00,20.840788208485712 -2024-09-06 02:00:00+00:00,21.476198866138116 -2024-09-06 03:00:00+00:00,20.260104171782505 -2024-09-06 04:00:00+00:00,27.37222142869195 -2024-09-06 05:00:00+00:00,33.789868745823576 -2024-09-06 06:00:00+00:00,40.523975779522345 -2024-09-06 07:00:00+00:00,47.73929819093669 -2024-09-06 08:00:00+00:00,52.86953610909126 -2024-09-06 09:00:00+00:00,56.22052000013515 -2024-09-06 10:00:00+00:00,57.80913355054952 -2024-09-06 11:00:00+00:00,59.180146543380786 -2024-09-06 12:00:00+00:00,58.309151791198026 -2024-09-06 13:00:00+00:00,56.60359481697427 -2024-09-06 14:00:00+00:00,56.76925456684665 -2024-09-06 15:00:00+00:00,57.63378206093069 -2024-09-06 16:00:00+00:00,54.921870094749224 -2024-09-06 17:00:00+00:00,54.68464984225931 -2024-09-06 18:00:00+00:00,48.33800830924755 -2024-09-06 19:00:00+00:00,41.16996337244014 -2024-09-06 20:00:00+00:00,33.87904974910743 -2024-09-08 21:00:00+00:00,26.538532981550894 -2024-09-08 22:00:00+00:00,21.4623676593605 -2024-09-08 23:00:00+00:00,17.328038097694737 -2024-09-09 00:00:00+00:00,13.331351103415694 -2024-09-09 01:00:00+00:00,10.234925551636099 -2024-09-09 02:00:00+00:00,13.76046249135035 -2024-09-09 03:00:00+00:00,16.57139963391847 -2024-09-09 04:00:00+00:00,16.169232812058272 -2024-09-09 05:00:00+00:00,16.064079959399496 -2024-09-09 06:00:00+00:00,16.203089780194894 -2024-09-09 07:00:00+00:00,17.65152179532785 -2024-09-09 08:00:00+00:00,19.421162334366354 -2024-09-09 09:00:00+00:00,22.573730307036858 -2024-09-09 10:00:00+00:00,26.88117555253506 -2024-09-09 11:00:00+00:00,32.39852903058604 -2024-09-09 12:00:00+00:00,35.05617938325774 -2024-09-09 13:00:00+00:00,35.68781765859361 -2024-09-09 14:00:00+00:00,35.83842546532697 -2024-09-09 15:00:00+00:00,36.09813735268456 -2024-09-09 16:00:00+00:00,32.81607601606851 -2024-09-09 17:00:00+00:00,30.654165786525585 -2024-09-09 18:00:00+00:00,31.588840510675233 -2024-09-09 19:00:00+00:00,31.04345493406426 -2024-09-09 20:00:00+00:00,29.24387271790087 -2024-09-09 21:00:00+00:00,27.800035613084184 -2024-09-09 22:00:00+00:00,27.464539716388384 -2024-09-09 23:00:00+00:00,26.73724856161192 -2024-09-10 00:00:00+00:00,25.086032147875407 -2024-09-10 01:00:00+00:00,22.048740088170746 -2024-09-10 02:00:00+00:00,20.179693798916396 -2024-09-10 03:00:00+00:00,18.964425288019516 -2024-09-10 04:00:00+00:00,18.93126304233466 -2024-09-10 05:00:00+00:00,19.19034241532348 -2024-09-10 06:00:00+00:00,19.45282634513296 -2024-09-10 07:00:00+00:00,20.655205540612776 -2024-09-10 08:00:00+00:00,21.42482157263734 -2024-09-10 09:00:00+00:00,21.181166354041686 -2024-09-10 10:00:00+00:00,21.577893053650996 -2024-09-10 11:00:00+00:00,20.832277328710084 -2024-09-10 12:00:00+00:00,18.71880818124642 -2024-09-10 13:00:00+00:00,17.05386214338152 -2024-09-10 14:00:00+00:00,17.111552614489433 -2024-09-10 15:00:00+00:00,18.273493433007502 -2024-09-10 16:00:00+00:00,20.0742934517037 -2024-09-10 17:00:00+00:00,22.858317111492575 -2024-09-10 18:00:00+00:00,25.33230353867011 -2024-09-10 19:00:00+00:00,27.925112090662328 -2024-09-10 20:00:00+00:00,31.214727712240734 -2024-09-10 21:00:00+00:00,34.82483913200893 -2024-09-10 22:00:00+00:00,38.9849620853883 -2024-09-10 23:00:00+00:00,44.566948518784635 -2024-09-11 00:00:00+00:00,50.41848797286542 -2024-09-11 01:00:00+00:00,56.15623692922322 -2024-09-11 02:00:00+00:00,61.90439177439335 -2024-09-11 03:00:00+00:00,67.42152494065101 -2024-09-11 04:00:00+00:00,71.14695569645939 -2024-09-11 05:00:00+00:00,73.9670591027854 -2024-09-11 06:00:00+00:00,75.86001821114341 -2024-09-11 07:00:00+00:00,78.2955423683646 -2024-09-11 08:00:00+00:00,79.77030238329387 -2024-09-11 09:00:00+00:00,80.60022183957707 -2024-09-11 10:00:00+00:00,80.41470276874236 -2024-09-11 11:00:00+00:00,77.98288695526237 -2024-09-11 12:00:00+00:00,72.16436677864571 -2024-09-11 13:00:00+00:00,66.28296560475336 -2024-09-11 14:00:00+00:00,61.12275399875758 -2024-09-11 15:00:00+00:00,55.16775628702221 -2024-09-11 16:00:00+00:00,48.90588323270416 -2024-09-11 17:00:00+00:00,43.87259286785973 -2024-09-11 18:00:00+00:00,39.936202443419 -2024-09-11 19:00:00+00:00,37.10853786424547 -2024-09-11 20:00:00+00:00,35.20533888995167 -2024-09-11 21:00:00+00:00,32.73029738423832 -2024-09-11 22:00:00+00:00,31.225024693241302 -2024-09-11 23:00:00+00:00,30.58311394169956 -2024-09-12 00:00:00+00:00,30.233746789955468 -2024-09-12 01:00:00+00:00,29.141989805856916 -2024-09-12 02:00:00+00:00,28.502796700419598 -2024-09-12 03:00:00+00:00,28.210049337823442 -2024-09-12 04:00:00+00:00,30.463592866797836 -2024-09-12 05:00:00+00:00,33.8653037921821 -2024-09-12 06:00:00+00:00,36.45389727923226 -2024-09-12 07:00:00+00:00,37.434652458443615 -2024-09-12 08:00:00+00:00,37.3888069023004 -2024-09-12 09:00:00+00:00,35.754679048451415 -2024-09-12 10:00:00+00:00,34.357617864449885 -2024-09-12 11:00:00+00:00,32.86982798815105 -2024-09-12 12:00:00+00:00,30.59173144651396 -2024-09-12 13:00:00+00:00,28.742071320213615 -2024-09-12 14:00:00+00:00,26.868022789895125 -2024-09-12 15:00:00+00:00,25.897364711539563 -2024-09-12 16:00:00+00:00,26.10808885581623 -2024-09-12 17:00:00+00:00,26.013188782432213 -2024-09-12 18:00:00+00:00,24.994950665136788 -2024-09-12 19:00:00+00:00,24.385389919557944 -2024-09-12 20:00:00+00:00,24.74293123019539 -2024-09-12 21:00:00+00:00,27.24359415328292 -2024-09-12 22:00:00+00:00,29.815948223575123 -2024-09-12 23:00:00+00:00,33.191731758088785 -2024-09-13 00:00:00+00:00,37.16075168399791 -2024-09-13 01:00:00+00:00,41.75111425591643 -2024-09-13 02:00:00+00:00,47.04252807602676 -2024-09-13 03:00:00+00:00,51.29384515108119 -2024-09-13 04:00:00+00:00,57.336357923284616 -2024-09-13 05:00:00+00:00,61.91152413543248 -2024-09-13 06:00:00+00:00,68.10268809152646 -2024-09-13 07:00:00+00:00,72.7832166499265 -2024-09-13 08:00:00+00:00,75.21676733523437 -2024-09-13 09:00:00+00:00,76.73605659632517 -2024-09-13 10:00:00+00:00,78.50956746760677 -2024-09-13 11:00:00+00:00,76.64942656207123 -2024-09-13 12:00:00+00:00,74.20405450609333 -2024-09-13 13:00:00+00:00,71.74764222863284 -2024-09-13 14:00:00+00:00,67.91132206270365 -2024-09-13 15:00:00+00:00,63.5563437478611 -2024-09-13 16:00:00+00:00,57.861761512588025 -2024-09-13 17:00:00+00:00,52.16493522480404 -2024-09-13 18:00:00+00:00,45.299927623086546 -2024-09-13 19:00:00+00:00,39.82213870045776 -2024-09-13 20:00:00+00:00,33.466497519229044 -2024-09-15 21:00:00+00:00,30.268771321941276 -2024-09-15 22:00:00+00:00,26.313632409505573 -2024-09-15 23:00:00+00:00,21.689494592123364 -2024-09-16 00:00:00+00:00,18.130799384480763 -2024-09-16 01:00:00+00:00,17.63245536002472 -2024-09-16 02:00:00+00:00,17.9903447303593 -2024-09-16 03:00:00+00:00,18.090149944528005 -2024-09-16 04:00:00+00:00,19.464858708865478 -2024-09-16 05:00:00+00:00,21.59789949998892 -2024-09-16 06:00:00+00:00,27.658309999824553 -2024-09-16 07:00:00+00:00,34.023133767048385 -2024-09-16 08:00:00+00:00,39.811563996209706 -2024-09-16 09:00:00+00:00,43.883391499613154 -2024-09-16 10:00:00+00:00,48.20649830404882 -2024-09-16 11:00:00+00:00,51.01910384049501 -2024-09-16 12:00:00+00:00,52.6308790817184 -2024-09-16 13:00:00+00:00,55.43631563844591 -2024-09-16 14:00:00+00:00,55.446402301968476 -2024-09-16 15:00:00+00:00,53.385037591817756 -2024-09-16 16:00:00+00:00,50.99037012915861 -2024-09-16 17:00:00+00:00,48.97660794460152 -2024-09-16 18:00:00+00:00,46.990898914255546 -2024-09-16 19:00:00+00:00,45.27888196153018 -2024-09-16 20:00:00+00:00,42.470422661267364 -2024-09-16 21:00:00+00:00,40.838619976523105 -2024-09-16 22:00:00+00:00,39.23068150741399 -2024-09-16 23:00:00+00:00,40.12488441488062 -2024-09-17 00:00:00+00:00,39.104201865908166 -2024-09-17 01:00:00+00:00,38.1110633208473 -2024-09-17 02:00:00+00:00,38.238841043666795 -2024-09-17 03:00:00+00:00,38.07926712328121 -2024-09-17 04:00:00+00:00,39.28132724870789 -2024-09-17 05:00:00+00:00,40.05293922363929 -2024-09-17 06:00:00+00:00,41.00336643113792 -2024-09-17 07:00:00+00:00,40.651188214503726 -2024-09-17 08:00:00+00:00,39.639726622493846 -2024-09-17 09:00:00+00:00,37.717021517987746 -2024-09-17 10:00:00+00:00,35.219388536548394 -2024-09-17 11:00:00+00:00,30.60504638414498 -2024-09-17 12:00:00+00:00,26.489172972454867 -2024-09-17 13:00:00+00:00,22.836974979086964 -2024-09-17 14:00:00+00:00,23.10352159408809 -2024-09-17 15:00:00+00:00,24.564290395433268 -2024-09-17 16:00:00+00:00,27.135409752267066 -2024-09-17 17:00:00+00:00,29.522745962593067 -2024-09-17 18:00:00+00:00,32.18220917960394 -2024-09-17 19:00:00+00:00,36.80043923547089 -2024-09-17 20:00:00+00:00,41.17409555376106 -2024-09-17 21:00:00+00:00,47.620065300042086 -2024-09-17 22:00:00+00:00,51.93993396950136 -2024-09-17 23:00:00+00:00,55.86097319999533 -2024-09-18 00:00:00+00:00,57.53195323788946 -2024-09-18 01:00:00+00:00,59.896649096124804 -2024-09-18 02:00:00+00:00,60.30467472111558 -2024-09-18 03:00:00+00:00,59.43010451865065 -2024-09-18 04:00:00+00:00,57.13553508709537 -2024-09-18 05:00:00+00:00,53.8151393009489 -2024-09-18 06:00:00+00:00,50.26384292707185 -2024-09-18 07:00:00+00:00,45.77466306769287 -2024-09-18 08:00:00+00:00,41.060975302372526 -2024-09-18 09:00:00+00:00,37.17994826811762 -2024-09-18 10:00:00+00:00,34.30017057549113 -2024-09-18 11:00:00+00:00,28.746319463264403 -2024-09-18 12:00:00+00:00,24.123450992831156 -2024-09-18 13:00:00+00:00,20.249994771847298 -2024-09-18 14:00:00+00:00,20.033578336001597 -2024-09-18 15:00:00+00:00,20.402719040339854 -2024-09-18 16:00:00+00:00,22.47725248522051 -2024-09-18 17:00:00+00:00,26.19404634166735 -2024-09-18 18:00:00+00:00,26.575906450495392 -2024-09-18 19:00:00+00:00,25.17052868995616 -2024-09-18 20:00:00+00:00,24.115736006277817 -2024-09-18 21:00:00+00:00,24.880258001005313 -2024-09-18 22:00:00+00:00,26.64804677604061 -2024-09-18 23:00:00+00:00,25.190636643244055 -2024-09-19 00:00:00+00:00,23.103220231205817 -2024-09-19 01:00:00+00:00,22.72050135990448 -2024-09-19 02:00:00+00:00,22.96832444401539 -2024-09-19 03:00:00+00:00,23.156935652023403 -2024-09-19 04:00:00+00:00,20.878228975635214 -2024-09-19 05:00:00+00:00,18.482171315516997 -2024-09-19 06:00:00+00:00,16.07106136474031 -2024-09-19 07:00:00+00:00,12.964062838611762 -2024-09-19 08:00:00+00:00,12.473340174130172 -2024-09-19 09:00:00+00:00,12.483696512029917 -2024-09-19 10:00:00+00:00,12.709873029295375 -2024-09-19 11:00:00+00:00,12.409782762646405 -2024-09-19 12:00:00+00:00,12.59380014806674 -2024-09-19 13:00:00+00:00,13.692827472354386 -2024-09-19 14:00:00+00:00,13.568860967386803 -2024-09-19 15:00:00+00:00,14.248623879918052 -2024-09-19 16:00:00+00:00,14.731824430557415 -2024-09-19 17:00:00+00:00,14.938553602675691 -2024-09-19 18:00:00+00:00,16.080003216732432 -2024-09-19 19:00:00+00:00,15.605277744990149 -2024-09-19 20:00:00+00:00,15.629143805515655 -2024-09-19 21:00:00+00:00,15.661840130156707 -2024-09-19 22:00:00+00:00,14.512440699682424 -2024-09-19 23:00:00+00:00,14.850801250429154 -2024-09-20 00:00:00+00:00,14.802142362147606 -2024-09-20 01:00:00+00:00,15.450467693712486 -2024-09-20 02:00:00+00:00,15.801140830099914 -2024-09-20 03:00:00+00:00,17.471340480743645 -2024-09-20 04:00:00+00:00,18.697736399604306 -2024-09-20 05:00:00+00:00,18.397694652103144 -2024-09-20 06:00:00+00:00,17.713590748520417 -2024-09-20 07:00:00+00:00,18.843327136250927 -2024-09-20 08:00:00+00:00,20.858225683045763 -2024-09-20 09:00:00+00:00,23.99339668342291 -2024-09-20 10:00:00+00:00,26.624279078424298 -2024-09-20 11:00:00+00:00,29.22747526777864 -2024-09-20 12:00:00+00:00,31.485654210482306 -2024-09-20 13:00:00+00:00,32.717838499511124 -2024-09-20 14:00:00+00:00,34.64970066644599 -2024-09-20 15:00:00+00:00,35.81399915460433 -2024-09-20 16:00:00+00:00,35.28611331782796 -2024-09-20 17:00:00+00:00,35.296684172341465 -2024-09-20 18:00:00+00:00,36.31194259506124 -2024-09-20 19:00:00+00:00,37.554347152984164 -2024-09-20 20:00:00+00:00,39.29144619999367 -2024-09-22 21:00:00+00:00,38.27139814171121 -2024-09-22 22:00:00+00:00,35.227122340477486 -2024-09-22 23:00:00+00:00,32.28352250267995 -2024-09-23 00:00:00+00:00,29.314388040384355 -2024-09-23 01:00:00+00:00,26.02241578043647 -2024-09-23 02:00:00+00:00,25.28048635177626 -2024-09-23 03:00:00+00:00,25.456282058660324 -2024-09-23 04:00:00+00:00,22.88552458730365 -2024-09-23 05:00:00+00:00,20.661818898103053 -2024-09-23 06:00:00+00:00,19.075405460850284 -2024-09-23 07:00:00+00:00,17.79365283684979 -2024-09-23 08:00:00+00:00,17.278259023583427 -2024-09-23 09:00:00+00:00,16.809017734157635 -2024-09-23 10:00:00+00:00,18.4505652336447 -2024-09-23 11:00:00+00:00,21.54981772887174 -2024-09-23 12:00:00+00:00,23.52942335554866 -2024-09-23 13:00:00+00:00,24.226880363809606 -2024-09-23 14:00:00+00:00,24.5486010766347 -2024-09-23 15:00:00+00:00,26.233577322188097 -2024-09-23 16:00:00+00:00,27.40406575932594 -2024-09-23 17:00:00+00:00,28.28138360555555 -2024-09-23 18:00:00+00:00,30.614115600979343 -2024-09-23 19:00:00+00:00,31.90349940170227 -2024-09-23 20:00:00+00:00,32.304036247683264 -2024-09-23 21:00:00+00:00,30.52734385060429 -2024-09-23 22:00:00+00:00,29.10488886379289 -2024-09-23 23:00:00+00:00,28.16274789187353 -2024-09-24 00:00:00+00:00,26.482900809429616 -2024-09-24 01:00:00+00:00,25.778529697014783 -2024-09-24 02:00:00+00:00,25.252969924303557 -2024-09-24 03:00:00+00:00,25.297138295559883 -2024-09-24 04:00:00+00:00,25.017525608309665 -2024-09-24 05:00:00+00:00,25.191999786936776 -2024-09-24 06:00:00+00:00,27.172234094158853 -2024-09-24 07:00:00+00:00,29.82111314911192 -2024-09-24 08:00:00+00:00,32.55823250770989 -2024-09-24 09:00:00+00:00,35.669431361235986 -2024-09-24 10:00:00+00:00,37.57577881503938 -2024-09-24 11:00:00+00:00,39.690234283559846 -2024-09-24 12:00:00+00:00,40.454654234742875 -2024-09-24 13:00:00+00:00,41.00583656726725 -2024-09-24 14:00:00+00:00,39.4816069397835 -2024-09-24 15:00:00+00:00,36.93741546927036 -2024-09-24 16:00:00+00:00,35.60278860536123 -2024-09-24 17:00:00+00:00,34.61736894833935 -2024-09-24 18:00:00+00:00,34.76508094526169 -2024-09-24 19:00:00+00:00,34.64806304840707 -2024-09-24 20:00:00+00:00,34.24091667828716 -2024-09-24 21:00:00+00:00,34.940105595461816 -2024-09-24 22:00:00+00:00,35.98822647899766 -2024-09-24 23:00:00+00:00,37.1228299575068 -2024-09-25 00:00:00+00:00,38.80622609344651 -2024-09-25 01:00:00+00:00,39.58424932136935 -2024-09-25 02:00:00+00:00,40.603352346931594 -2024-09-25 03:00:00+00:00,42.131547331502375 -2024-09-25 04:00:00+00:00,43.46008814862729 -2024-09-25 05:00:00+00:00,45.73025869671761 -2024-09-25 06:00:00+00:00,45.99425327172564 -2024-09-25 07:00:00+00:00,47.13233920038842 -2024-09-25 08:00:00+00:00,48.864577580410696 -2024-09-25 09:00:00+00:00,50.04349366385461 -2024-09-25 10:00:00+00:00,50.02354435002051 -2024-09-25 11:00:00+00:00,48.42610114253604 -2024-09-25 12:00:00+00:00,47.907421784710614 -2024-09-25 13:00:00+00:00,45.15291037447862 -2024-09-25 14:00:00+00:00,44.21153382385881 -2024-09-25 15:00:00+00:00,44.73549184781711 -2024-09-25 16:00:00+00:00,45.85462707442107 -2024-09-25 17:00:00+00:00,46.5432725305087 -2024-09-25 18:00:00+00:00,49.167318193178836 -2024-09-25 19:00:00+00:00,51.11556769358895 -2024-09-25 20:00:00+00:00,54.87685036578372 -2024-09-25 21:00:00+00:00,57.26552568225399 -2024-09-25 22:00:00+00:00,57.075923420085665 -2024-09-25 23:00:00+00:00,55.68242700716167 -2024-09-26 00:00:00+00:00,52.38274827484561 -2024-09-26 01:00:00+00:00,49.12043007543196 -2024-09-26 02:00:00+00:00,45.26181924840518 -2024-09-26 03:00:00+00:00,45.89055224712058 -2024-09-26 04:00:00+00:00,44.693630179324266 -2024-09-26 05:00:00+00:00,42.625932206529576 -2024-09-26 06:00:00+00:00,39.57811383346974 -2024-09-26 07:00:00+00:00,36.937203579193714 -2024-09-26 08:00:00+00:00,33.85218133500161 -2024-09-26 09:00:00+00:00,30.39841970470883 -2024-09-26 10:00:00+00:00,26.887140846454635 -2024-09-26 11:00:00+00:00,24.573070527602834 -2024-09-26 12:00:00+00:00,22.400863868021386 -2024-09-26 13:00:00+00:00,20.282899650039553 -2024-09-26 14:00:00+00:00,21.457988106474776 -2024-09-26 15:00:00+00:00,22.072638459215373 -2024-09-26 16:00:00+00:00,21.923328942651192 -2024-09-26 17:00:00+00:00,18.594036751466483 -2024-09-26 18:00:00+00:00,17.959161699699546 -2024-09-26 19:00:00+00:00,17.78863812392789 -2024-09-26 20:00:00+00:00,18.964963947252027 -2024-09-26 21:00:00+00:00,18.424773593410972 -2024-09-26 22:00:00+00:00,18.730450232999043 -2024-09-26 23:00:00+00:00,19.4753505122141 -2024-09-27 00:00:00+00:00,23.453837380090583 -2024-09-27 01:00:00+00:00,28.43760259116947 -2024-09-27 02:00:00+00:00,31.89179428205745 -2024-09-27 03:00:00+00:00,35.792001687400514 -2024-09-27 04:00:00+00:00,37.54422753543839 -2024-09-27 05:00:00+00:00,40.19529142146898 -2024-09-27 06:00:00+00:00,39.70101216354538 -2024-09-27 07:00:00+00:00,40.38790974656302 -2024-09-27 08:00:00+00:00,39.7254423774188 -2024-09-27 09:00:00+00:00,39.200061658517996 -2024-09-27 10:00:00+00:00,38.38685740679363 -2024-09-27 11:00:00+00:00,38.62724751658359 -2024-09-27 12:00:00+00:00,38.93577542052042 -2024-09-27 13:00:00+00:00,39.126549506924974 -2024-09-27 14:00:00+00:00,37.17953993522734 -2024-09-27 15:00:00+00:00,34.004856113706865 -2024-09-27 16:00:00+00:00,33.167638745366865 -2024-09-27 17:00:00+00:00,32.29627517003501 -2024-09-27 18:00:00+00:00,32.59486820446332 -2024-09-27 19:00:00+00:00,34.03841547819021 -2024-09-27 20:00:00+00:00,37.09567595211414 -2024-09-29 21:00:00+00:00,38.99302284979643 -2024-09-29 22:00:00+00:00,40.773294380458815 -2024-09-29 23:00:00+00:00,41.79170614289286 -2024-09-30 00:00:00+00:00,42.44647882824012 -2024-09-30 01:00:00+00:00,43.52756202539513 -2024-09-30 02:00:00+00:00,42.51602817977914 -2024-09-30 03:00:00+00:00,41.35601220917612 -2024-09-30 04:00:00+00:00,40.04458657458293 -2024-09-30 05:00:00+00:00,39.70180155757623 -2024-09-30 06:00:00+00:00,39.17891491033028 -2024-09-30 07:00:00+00:00,36.78747601221078 -2024-09-30 08:00:00+00:00,33.002548348617275 -2024-09-30 09:00:00+00:00,27.55163252573836 -2024-09-30 10:00:00+00:00,24.24456855032522 -2024-09-30 11:00:00+00:00,21.328644649363515 -2024-09-30 12:00:00+00:00,18.960453514259036 -2024-09-30 13:00:00+00:00,17.254404842861977 -2024-09-30 14:00:00+00:00,16.05870954331316 -2024-09-30 15:00:00+00:00,15.196449537275143 -2024-09-30 16:00:00+00:00,16.092583766742624 -2024-09-30 17:00:00+00:00,16.419519432024057 -2024-09-30 18:00:00+00:00,18.549380523127343 -2024-09-30 19:00:00+00:00,21.400223210880856 -2024-09-30 20:00:00+00:00,24.41181223389326 -2024-09-30 21:00:00+00:00,28.770919154669553 -2024-09-30 22:00:00+00:00,33.196268573466 -2024-09-30 23:00:00+00:00,36.60115766116973 -2024-10-01 00:00:00+00:00,39.77232058888354 -2024-10-01 01:00:00+00:00,44.139415267107005 -2024-10-01 02:00:00+00:00,47.892342864269736 -2024-10-01 03:00:00+00:00,52.154152422698836 -2024-10-01 04:00:00+00:00,55.85625724202301 -2024-10-01 05:00:00+00:00,58.73736802857219 -2024-10-01 06:00:00+00:00,61.40132688345741 -2024-10-01 07:00:00+00:00,63.6349728671035 -2024-10-01 08:00:00+00:00,60.777567018166124 -2024-10-01 09:00:00+00:00,55.71168182499357 -2024-10-01 10:00:00+00:00,50.773646802372085 -2024-10-01 11:00:00+00:00,45.86259040523736 -2024-10-01 12:00:00+00:00,41.87398641663342 -2024-10-01 13:00:00+00:00,38.09189951900705 -2024-10-01 14:00:00+00:00,36.05951119121374 -2024-10-01 15:00:00+00:00,33.226363957867115 -2024-10-01 16:00:00+00:00,31.487452384642022 -2024-10-01 17:00:00+00:00,30.248810148538418 -2024-10-01 18:00:00+00:00,28.99397080415471 -2024-10-01 19:00:00+00:00,28.184048704864033 -2024-10-01 20:00:00+00:00,27.711132483859462 -2024-10-01 21:00:00+00:00,27.298033013497555 -2024-10-01 22:00:00+00:00,29.583235856341336 -2024-10-01 23:00:00+00:00,31.44611268606138 -2024-10-02 00:00:00+00:00,32.58292892928047 -2024-10-02 01:00:00+00:00,34.04141311880772 -2024-10-02 02:00:00+00:00,35.42603086477896 -2024-10-02 03:00:00+00:00,35.352012813033205 -2024-10-02 04:00:00+00:00,33.40356350445502 -2024-10-02 05:00:00+00:00,31.98355623357519 -2024-10-02 06:00:00+00:00,30.633923121178743 -2024-10-02 07:00:00+00:00,28.65946907582467 -2024-10-02 08:00:00+00:00,26.95197548054626 -2024-10-02 09:00:00+00:00,25.727343679099302 -2024-10-02 10:00:00+00:00,24.99326097161393 -2024-10-02 11:00:00+00:00,25.026306099155363 -2024-10-02 12:00:00+00:00,26.54847608724052 -2024-10-02 13:00:00+00:00,29.01521375415294 -2024-10-02 14:00:00+00:00,32.50683726339584 -2024-10-02 15:00:00+00:00,36.417046876679834 -2024-10-02 16:00:00+00:00,39.032543000609266 -2024-10-02 17:00:00+00:00,43.73093747133567 -2024-10-02 18:00:00+00:00,49.76140500073989 -2024-10-02 19:00:00+00:00,55.6679274244036 -2024-10-02 20:00:00+00:00,60.993320743200094 -2024-10-02 21:00:00+00:00,65.88118404129094 -2024-10-02 22:00:00+00:00,70.61821394787832 -2024-10-02 23:00:00+00:00,74.5819764726391 -2024-10-03 00:00:00+00:00,77.43639588674942 -2024-10-03 01:00:00+00:00,80.3948558664861 -2024-10-03 02:00:00+00:00,81.05922317518238 -2024-10-03 03:00:00+00:00,81.31076324284683 -2024-10-03 04:00:00+00:00,79.88564596650734 -2024-10-03 05:00:00+00:00,77.23096580978324 -2024-10-03 06:00:00+00:00,75.47394935934145 -2024-10-03 07:00:00+00:00,72.78995500039284 -2024-10-03 08:00:00+00:00,67.84848269505441 -2024-10-03 09:00:00+00:00,62.96763616672645 -2024-10-03 10:00:00+00:00,57.83830380506403 -2024-10-03 11:00:00+00:00,52.19044991058199 -2024-10-03 12:00:00+00:00,48.15675648016511 -2024-10-03 13:00:00+00:00,43.63963838757147 -2024-10-03 14:00:00+00:00,38.507510032808064 -2024-10-03 15:00:00+00:00,34.431010098884414 -2024-10-03 16:00:00+00:00,30.32236164934257 -2024-10-03 17:00:00+00:00,27.18018016460241 -2024-10-03 18:00:00+00:00,24.15542911705117 -2024-10-03 19:00:00+00:00,21.373580535972355 -2024-10-03 20:00:00+00:00,18.85207426667632 -2024-10-03 21:00:00+00:00,17.97371396287382 -2024-10-03 22:00:00+00:00,18.2162232962928 -2024-10-03 23:00:00+00:00,16.7360744961182 -2024-10-04 00:00:00+00:00,15.460973921311908 -2024-10-04 01:00:00+00:00,15.542446122202282 -2024-10-04 02:00:00+00:00,13.490580242899208 -2024-10-04 03:00:00+00:00,12.065539949500595 -2024-10-04 04:00:00+00:00,14.141483835974388 -2024-10-04 05:00:00+00:00,15.71001482920118 -2024-10-04 06:00:00+00:00,18.795438909061797 -2024-10-04 07:00:00+00:00,19.946244364470836 -2024-10-04 08:00:00+00:00,23.203777569579547 -2024-10-04 09:00:00+00:00,26.51420028030201 -2024-10-04 10:00:00+00:00,29.217513418397452 -2024-10-04 11:00:00+00:00,30.56155155797331 -2024-10-04 12:00:00+00:00,32.39281996098286 -2024-10-04 13:00:00+00:00,36.04333227846361 -2024-10-04 14:00:00+00:00,40.07593764486826 -2024-10-04 15:00:00+00:00,44.0992467532527 -2024-10-04 16:00:00+00:00,49.1567503794082 -2024-10-04 17:00:00+00:00,54.23543051955009 -2024-10-04 18:00:00+00:00,57.15598259999216 -2024-10-04 19:00:00+00:00,60.5278025718358 -2024-10-04 20:00:00+00:00,62.58457642172426 -2024-10-06 21:00:00+00:00,65.85111535272867 -2024-10-06 22:00:00+00:00,68.32191495955456 -2024-10-06 23:00:00+00:00,71.34814234426148 -2024-10-07 00:00:00+00:00,72.78613722059562 -2024-10-07 01:00:00+00:00,74.81866502498467 -2024-10-07 02:00:00+00:00,72.06317879434778 -2024-10-07 03:00:00+00:00,68.66516517043644 -2024-10-07 04:00:00+00:00,64.9077391881034 -2024-10-07 05:00:00+00:00,60.45538576682471 -2024-10-07 06:00:00+00:00,57.14178735825847 -2024-10-07 07:00:00+00:00,54.06506423052871 -2024-10-07 08:00:00+00:00,50.50261873150827 -2024-10-07 09:00:00+00:00,45.19455016089061 -2024-10-07 10:00:00+00:00,39.385038852382515 -2024-10-07 11:00:00+00:00,34.59829011611873 -2024-10-07 12:00:00+00:00,31.589131277713562 -2024-10-07 13:00:00+00:00,28.985204537459197 -2024-10-07 14:00:00+00:00,26.877152336328656 -2024-10-07 15:00:00+00:00,24.59388085300475 -2024-10-07 16:00:00+00:00,25.920201216314968 -2024-10-07 17:00:00+00:00,28.319723207642426 -2024-10-07 18:00:00+00:00,30.270747216597403 -2024-10-07 19:00:00+00:00,32.52607269049372 -2024-10-07 20:00:00+00:00,32.43724857187829 -2024-10-07 21:00:00+00:00,31.328807412469008 -2024-10-07 22:00:00+00:00,31.869965322246262 -2024-10-07 23:00:00+00:00,34.111106782461604 -2024-10-08 00:00:00+00:00,38.67383569998526 -2024-10-08 01:00:00+00:00,41.97881582861595 -2024-10-08 02:00:00+00:00,43.64849417020635 -2024-10-08 03:00:00+00:00,43.55747183041313 -2024-10-08 04:00:00+00:00,43.49776330730343 -2024-10-08 05:00:00+00:00,44.18068600881954 -2024-10-08 06:00:00+00:00,45.2134596087098 -2024-10-08 07:00:00+00:00,46.30279968297629 -2024-10-08 08:00:00+00:00,47.92108923909541 -2024-10-08 09:00:00+00:00,49.129435685414684 -2024-10-08 10:00:00+00:00,50.93957375681526 -2024-10-08 11:00:00+00:00,53.2311717341075 -2024-10-08 12:00:00+00:00,50.324702040044734 -2024-10-08 13:00:00+00:00,46.87298729983474 -2024-10-08 14:00:00+00:00,42.43514429173117 -2024-10-08 15:00:00+00:00,38.30279278048853 -2024-10-08 16:00:00+00:00,34.65090191661624 -2024-10-08 17:00:00+00:00,31.97861553905301 -2024-10-08 18:00:00+00:00,29.974584803746065 -2024-10-08 19:00:00+00:00,28.08709325120115 -2024-10-08 20:00:00+00:00,25.48213729316012 -2024-10-08 21:00:00+00:00,28.532077791632098 -2024-10-08 22:00:00+00:00,28.590407146997357 -2024-10-08 23:00:00+00:00,27.545163556928888 -2024-10-09 00:00:00+00:00,25.17159508192007 -2024-10-09 01:00:00+00:00,24.01699470370813 -2024-10-09 02:00:00+00:00,24.63886886987267 -2024-10-09 03:00:00+00:00,24.426104209533857 -2024-10-09 04:00:00+00:00,23.91448411926238 -2024-10-09 05:00:00+00:00,24.651917918817265 -2024-10-09 06:00:00+00:00,26.03263969905464 -2024-10-09 07:00:00+00:00,26.38529715183068 -2024-10-09 08:00:00+00:00,27.554791666353566 -2024-10-09 09:00:00+00:00,28.252468001904052 -2024-10-09 10:00:00+00:00,30.028233624862605 -2024-10-09 11:00:00+00:00,25.09049979109206 -2024-10-09 12:00:00+00:00,23.49162887958291 -2024-10-09 13:00:00+00:00,24.423478466505394 -2024-10-09 14:00:00+00:00,27.48965707023584 -2024-10-09 15:00:00+00:00,29.31707825155332 -2024-10-09 16:00:00+00:00,33.48363627083934 -2024-10-09 17:00:00+00:00,37.73827755740689 -2024-10-09 18:00:00+00:00,42.2669216814264 -2024-10-09 19:00:00+00:00,44.94683218022544 -2024-10-09 20:00:00+00:00,46.20539461564922 -2024-10-09 21:00:00+00:00,48.42108577069337 -2024-10-09 22:00:00+00:00,49.84240055958867 -2024-10-09 23:00:00+00:00,50.92933296729965 -2024-10-10 00:00:00+00:00,50.917165498686366 -2024-10-10 01:00:00+00:00,51.42408390717536 -2024-10-10 02:00:00+00:00,50.60402527709688 -2024-10-10 03:00:00+00:00,47.30420226824687 -2024-10-10 04:00:00+00:00,44.91806476848147 -2024-10-10 05:00:00+00:00,41.92861491502788 -2024-10-10 06:00:00+00:00,37.393302474241175 -2024-10-10 07:00:00+00:00,33.93923479198544 -2024-10-10 08:00:00+00:00,30.726219483594246 -2024-10-10 09:00:00+00:00,28.7536968350399 -2024-10-10 10:00:00+00:00,27.097179059287708 -2024-10-10 11:00:00+00:00,23.838356185926184 -2024-10-10 12:00:00+00:00,23.547847407568945 -2024-10-10 13:00:00+00:00,23.06726320190379 -2024-10-10 14:00:00+00:00,22.26192234253886 -2024-10-10 15:00:00+00:00,21.59544324293405 -2024-10-10 16:00:00+00:00,21.18171015908195 -2024-10-10 17:00:00+00:00,21.59178593478637 -2024-10-10 18:00:00+00:00,22.262044576330982 -2024-10-10 19:00:00+00:00,24.05115406719696 -2024-10-10 20:00:00+00:00,26.162800740389656 -2024-10-10 21:00:00+00:00,26.927562959157836 -2024-10-10 22:00:00+00:00,26.949401092735805 -2024-10-10 23:00:00+00:00,25.07603246583028 -2024-10-11 00:00:00+00:00,23.446486785345126 -2024-10-11 01:00:00+00:00,24.616331356245563 -2024-10-11 02:00:00+00:00,24.812592599523175 -2024-10-11 03:00:00+00:00,23.05134752025415 -2024-10-11 04:00:00+00:00,21.788356982019785 -2024-10-11 05:00:00+00:00,19.962708067107688 -2024-10-11 06:00:00+00:00,18.892738954896537 -2024-10-11 07:00:00+00:00,19.387570903047184 -2024-10-11 08:00:00+00:00,16.919547321760476 -2024-10-11 09:00:00+00:00,16.324683678754937 -2024-10-11 10:00:00+00:00,16.690134945593222 -2024-10-11 11:00:00+00:00,17.765356903258507 -2024-10-11 12:00:00+00:00,16.940589044457262 -2024-10-11 13:00:00+00:00,17.133072766793383 -2024-10-11 14:00:00+00:00,17.90901019985656 -2024-10-11 15:00:00+00:00,17.610129970641854 -2024-10-11 16:00:00+00:00,15.012210457264695 -2024-10-11 17:00:00+00:00,15.154045893773693 -2024-10-11 18:00:00+00:00,15.681335696005203 -2024-10-11 19:00:00+00:00,17.257047512681442 -2024-10-11 20:00:00+00:00,18.017877389562507 -2024-10-13 21:00:00+00:00,18.078906585930536 -2024-10-13 22:00:00+00:00,19.825659558039565 -2024-10-13 23:00:00+00:00,18.892402721167837 -2024-10-14 00:00:00+00:00,16.539351135133824 -2024-10-14 01:00:00+00:00,14.6642456304755 -2024-10-14 02:00:00+00:00,15.90465454317796 -2024-10-14 03:00:00+00:00,18.27574430461886 -2024-10-14 04:00:00+00:00,18.869534467503655 -2024-10-14 05:00:00+00:00,18.579862902272218 -2024-10-14 06:00:00+00:00,20.358221804519022 -2024-10-14 07:00:00+00:00,23.21789019530502 -2024-10-14 08:00:00+00:00,26.597179088807987 -2024-10-14 09:00:00+00:00,29.06585054951085 -2024-10-14 10:00:00+00:00,32.60787421538966 -2024-10-14 11:00:00+00:00,36.25721273867755 -2024-10-14 12:00:00+00:00,39.03890893943928 -2024-10-14 13:00:00+00:00,42.419861320391156 -2024-10-14 14:00:00+00:00,48.063572083282665 -2024-10-14 15:00:00+00:00,53.265841078654624 -2024-10-14 16:00:00+00:00,57.67693556494726 -2024-10-14 17:00:00+00:00,61.08447163855633 -2024-10-14 18:00:00+00:00,64.86783561203681 -2024-10-14 19:00:00+00:00,69.4448838226256 -2024-10-14 20:00:00+00:00,72.54462162090921 -2024-10-14 21:00:00+00:00,73.98234599233278 -2024-10-14 22:00:00+00:00,74.09995177353723 -2024-10-14 23:00:00+00:00,74.11704755763706 -2024-10-15 00:00:00+00:00,71.59585269512039 -2024-10-15 01:00:00+00:00,67.10663694749967 -2024-10-15 02:00:00+00:00,62.41540771104538 -2024-10-15 03:00:00+00:00,58.323117149705105 -2024-10-15 04:00:00+00:00,53.41169214315368 -2024-10-15 05:00:00+00:00,49.819396639094464 -2024-10-15 06:00:00+00:00,47.24892947419881 -2024-10-15 07:00:00+00:00,45.07569384777317 -2024-10-15 08:00:00+00:00,43.550348183801965 -2024-10-15 09:00:00+00:00,42.59759530446777 -2024-10-15 10:00:00+00:00,41.569113784527566 -2024-10-15 11:00:00+00:00,39.62841683904692 -2024-10-15 12:00:00+00:00,38.91411242385783 -2024-10-15 13:00:00+00:00,38.42511259498057 -2024-10-15 14:00:00+00:00,40.141216080714436 -2024-10-15 15:00:00+00:00,43.41496282286379 -2024-10-15 16:00:00+00:00,46.63779558184968 -2024-10-15 17:00:00+00:00,48.807059398245705 -2024-10-15 18:00:00+00:00,51.16596534349519 -2024-10-15 19:00:00+00:00,51.6472325316088 -2024-10-15 20:00:00+00:00,50.6345438489771 -2024-10-15 21:00:00+00:00,48.33730923341754 -2024-10-15 22:00:00+00:00,45.3017658724336 -2024-10-15 23:00:00+00:00,41.61683759234786 -2024-10-16 00:00:00+00:00,38.44562892488249 -2024-10-16 01:00:00+00:00,38.944145155538514 -2024-10-16 02:00:00+00:00,38.18820156199245 -2024-10-16 03:00:00+00:00,36.708145342316755 -2024-10-16 04:00:00+00:00,33.618228978498614 -2024-10-16 05:00:00+00:00,30.33382323732349 -2024-10-16 06:00:00+00:00,28.171967172876748 -2024-10-16 07:00:00+00:00,25.92226618010969 -2024-10-16 08:00:00+00:00,23.351989915402307 -2024-10-16 09:00:00+00:00,20.55723047072235 -2024-10-16 10:00:00+00:00,18.396744468041277 -2024-10-16 11:00:00+00:00,17.070424698950653 -2024-10-16 12:00:00+00:00,16.04543017262512 -2024-10-16 13:00:00+00:00,16.970909198353258 -2024-10-16 14:00:00+00:00,19.033705399150904 -2024-10-16 15:00:00+00:00,20.88633957009235 -2024-10-16 16:00:00+00:00,22.489619461419828 -2024-10-16 17:00:00+00:00,24.385415436713608 -2024-10-16 18:00:00+00:00,27.606374556527417 -2024-10-16 19:00:00+00:00,30.20172681041655 -2024-10-16 20:00:00+00:00,30.850548540065567 -2024-10-16 21:00:00+00:00,30.753968554687933 -2024-10-16 22:00:00+00:00,30.705984390212677 -2024-10-16 23:00:00+00:00,32.95634028112073 -2024-10-17 00:00:00+00:00,33.418033885109644 -2024-10-17 01:00:00+00:00,33.229091439159006 -2024-10-17 02:00:00+00:00,33.558095768163405 -2024-10-17 03:00:00+00:00,31.877534764824155 -2024-10-17 04:00:00+00:00,30.771271023225403 -2024-10-17 05:00:00+00:00,27.495205666086623 -2024-10-17 06:00:00+00:00,24.850278093037584 -2024-10-17 07:00:00+00:00,21.173614057257733 -2024-10-17 08:00:00+00:00,17.550326072281813 -2024-10-17 09:00:00+00:00,15.129418862642222 -2024-10-17 10:00:00+00:00,13.555755126635288 -2024-10-17 11:00:00+00:00,13.40589652547681 -2024-10-17 12:00:00+00:00,14.059097843940348 -2024-10-17 13:00:00+00:00,12.439931430585649 -2024-10-17 14:00:00+00:00,13.44473457446215 -2024-10-17 15:00:00+00:00,16.64121143011211 -2024-10-17 16:00:00+00:00,20.304506836770223 -2024-10-17 17:00:00+00:00,24.443308136944516 -2024-10-17 18:00:00+00:00,26.811684734726004 -2024-10-17 19:00:00+00:00,29.17650958979477 -2024-10-17 20:00:00+00:00,31.932222121486593 -2024-10-17 21:00:00+00:00,35.28827582213542 -2024-10-17 22:00:00+00:00,38.234463042452596 -2024-10-17 23:00:00+00:00,41.43298967922939 -2024-10-18 00:00:00+00:00,43.85200745229475 -2024-10-18 01:00:00+00:00,46.39114351220254 -2024-10-18 02:00:00+00:00,44.91514600286788 -2024-10-18 03:00:00+00:00,44.67047109425391 -2024-10-18 04:00:00+00:00,43.01397113163161 -2024-10-18 05:00:00+00:00,41.04251241228123 -2024-10-18 06:00:00+00:00,38.9446931960988 -2024-10-18 07:00:00+00:00,35.6952342185671 -2024-10-18 08:00:00+00:00,32.616540271254 -2024-10-18 09:00:00+00:00,30.159065617835445 -2024-10-18 10:00:00+00:00,29.094884289194876 -2024-10-18 11:00:00+00:00,27.564289104206743 -2024-10-18 12:00:00+00:00,27.052173010183083 -2024-10-18 13:00:00+00:00,26.01185612763178 -2024-10-18 14:00:00+00:00,25.85686828143753 -2024-10-18 15:00:00+00:00,25.550271470004667 -2024-10-18 16:00:00+00:00,28.71057288173618 -2024-10-18 17:00:00+00:00,30.91867311939259 -2024-10-18 18:00:00+00:00,33.744969387404055 -2024-10-18 19:00:00+00:00,35.10782720040608 -2024-10-18 20:00:00+00:00,36.65946812704704 -2024-10-20 21:00:00+00:00,40.25191585654948 -2024-10-20 22:00:00+00:00,42.90904496077936 -2024-10-20 23:00:00+00:00,44.82667040453974 -2024-10-21 00:00:00+00:00,45.50694251338356 -2024-10-21 01:00:00+00:00,49.071339057038344 -2024-10-21 02:00:00+00:00,52.06576207359116 -2024-10-21 03:00:00+00:00,54.7652630606991 -2024-10-21 04:00:00+00:00,55.820449240459915 -2024-10-21 05:00:00+00:00,56.095300753294524 -2024-10-21 06:00:00+00:00,53.64370758724797 -2024-10-21 07:00:00+00:00,52.58128667410045 -2024-10-21 08:00:00+00:00,51.38906563896914 -2024-10-21 09:00:00+00:00,51.01055795268436 -2024-10-21 10:00:00+00:00,49.74127074243785 -2024-10-21 11:00:00+00:00,47.25590455413546 -2024-10-21 12:00:00+00:00,44.37942056609904 -2024-10-21 13:00:00+00:00,42.2296792970539 -2024-10-21 14:00:00+00:00,42.1323906977742 -2024-10-21 15:00:00+00:00,41.98206011253131 -2024-10-21 16:00:00+00:00,42.06390144139199 -2024-10-21 17:00:00+00:00,42.59541161473368 -2024-10-21 18:00:00+00:00,44.976150394411526 -2024-10-21 19:00:00+00:00,47.93271019696273 -2024-10-21 20:00:00+00:00,52.735251466851096 -2024-10-21 21:00:00+00:00,55.29950039541955 -2024-10-21 22:00:00+00:00,57.31118148283906 -2024-10-21 23:00:00+00:00,58.08392801440477 -2024-10-22 00:00:00+00:00,58.75475962619616 -2024-10-22 01:00:00+00:00,59.40736740446702 -2024-10-22 02:00:00+00:00,62.29321745777014 -2024-10-22 03:00:00+00:00,64.51247193923001 -2024-10-22 04:00:00+00:00,64.7555331332619 -2024-10-22 05:00:00+00:00,62.103334304745495 -2024-10-22 06:00:00+00:00,58.12726001791558 -2024-10-22 07:00:00+00:00,53.62406637799977 -2024-10-22 08:00:00+00:00,48.80295782705209 -2024-10-22 09:00:00+00:00,43.90834267618767 -2024-10-22 10:00:00+00:00,38.50054840409735 -2024-10-22 11:00:00+00:00,35.13916850750143 -2024-10-22 12:00:00+00:00,32.36578216937477 -2024-10-22 13:00:00+00:00,29.404724745575443 -2024-10-22 14:00:00+00:00,27.321505460520903 -2024-10-22 15:00:00+00:00,26.695096628776376 -2024-10-22 16:00:00+00:00,24.293736084558464 -2024-10-22 17:00:00+00:00,20.313215760507266 -2024-10-22 18:00:00+00:00,17.22196789341804 -2024-10-22 19:00:00+00:00,14.453579143705861 -2024-10-22 20:00:00+00:00,13.784502340301389 -2024-10-22 21:00:00+00:00,13.410893619704874 -2024-10-22 22:00:00+00:00,13.116311501143285 -2024-10-22 23:00:00+00:00,12.213892371484864 -2024-10-23 00:00:00+00:00,14.366728836467487 -2024-10-23 01:00:00+00:00,16.588168320152892 -2024-10-23 02:00:00+00:00,18.778852376447464 -2024-10-23 03:00:00+00:00,23.36638361900444 -2024-10-23 04:00:00+00:00,27.466615040524772 -2024-10-23 05:00:00+00:00,30.622769315100253 -2024-10-23 06:00:00+00:00,34.25547394464645 -2024-10-23 07:00:00+00:00,40.32306805032003 -2024-10-23 08:00:00+00:00,45.954604814980605 -2024-10-23 09:00:00+00:00,52.49290219097869 -2024-10-23 10:00:00+00:00,58.250585922366874 -2024-10-23 11:00:00+00:00,64.3155001628405 -2024-10-23 12:00:00+00:00,70.7112727575928 -2024-10-23 13:00:00+00:00,77.30706021346855 -2024-10-23 14:00:00+00:00,81.48265279452313 -2024-10-23 15:00:00+00:00,83.20281013120072 -2024-10-23 16:00:00+00:00,85.29488242898171 -2024-10-23 17:00:00+00:00,85.47852396071168 -2024-10-23 18:00:00+00:00,82.73140153393571 -2024-10-23 19:00:00+00:00,79.19184935976378 -2024-10-23 20:00:00+00:00,75.41332022831016 -2024-10-23 21:00:00+00:00,69.55387001345547 -2024-10-23 22:00:00+00:00,63.96224379508674 -2024-10-23 23:00:00+00:00,57.83677315721182 -2024-10-24 00:00:00+00:00,53.079654975757386 -2024-10-24 01:00:00+00:00,49.72816093114775 -2024-10-24 02:00:00+00:00,48.30763024232449 -2024-10-24 03:00:00+00:00,47.256952392344324 -2024-10-24 04:00:00+00:00,46.85514872282618 -2024-10-24 05:00:00+00:00,47.901215118437065 -2024-10-24 06:00:00+00:00,48.66234348282658 -2024-10-24 07:00:00+00:00,49.8559016309627 -2024-10-24 08:00:00+00:00,53.53907659308771 -2024-10-24 09:00:00+00:00,57.12293596382295 -2024-10-24 10:00:00+00:00,61.66341435553053 -2024-10-24 11:00:00+00:00,65.88048666067996 -2024-10-24 12:00:00+00:00,68.28093738561044 -2024-10-24 13:00:00+00:00,70.91624285161456 -2024-10-24 14:00:00+00:00,72.17483392909709 -2024-10-24 15:00:00+00:00,72.04997270001643 -2024-10-24 16:00:00+00:00,69.55345269759535 -2024-10-24 17:00:00+00:00,67.51723805862116 -2024-10-24 18:00:00+00:00,63.56874679288942 -2024-10-24 19:00:00+00:00,59.19623240917643 -2024-10-24 20:00:00+00:00,53.96536651540585 -2024-10-24 21:00:00+00:00,48.61769812504212 -2024-10-24 22:00:00+00:00,43.55204205492134 -2024-10-24 23:00:00+00:00,39.34657844138296 -2024-10-25 00:00:00+00:00,33.879460783467195 -2024-10-25 01:00:00+00:00,29.264850648105156 -2024-10-25 02:00:00+00:00,27.917143748779786 -2024-10-25 03:00:00+00:00,26.75068272548115 -2024-10-25 04:00:00+00:00,26.060298950101583 -2024-10-25 05:00:00+00:00,25.334949443240124 -2024-10-25 06:00:00+00:00,22.821393703877963 -2024-10-25 07:00:00+00:00,19.28197724228595 -2024-10-25 08:00:00+00:00,17.30333530784051 -2024-10-25 09:00:00+00:00,15.835865728915582 -2024-10-25 10:00:00+00:00,15.242762473127303 -2024-10-25 11:00:00+00:00,15.525690592573568 -2024-10-25 12:00:00+00:00,14.595620725848155 -2024-10-25 13:00:00+00:00,14.449209598708597 -2024-10-25 14:00:00+00:00,14.682151655055675 -2024-10-25 15:00:00+00:00,15.103716789837415 -2024-10-25 16:00:00+00:00,13.370837676006007 -2024-10-25 17:00:00+00:00,11.994105048861387 -2024-10-25 18:00:00+00:00,11.600136882289453 -2024-10-25 19:00:00+00:00,12.826315788155634 -2024-10-25 20:00:00+00:00,14.495017456857369 -2024-10-27 21:00:00+00:00,19.235927991689163 -2024-10-27 22:00:00+00:00,23.175864291799005 -2024-10-27 23:00:00+00:00,27.652150080216725 -2024-10-28 00:00:00+00:00,32.748192724041715 -2024-10-28 01:00:00+00:00,38.32511803719819 -2024-10-28 02:00:00+00:00,44.961341016810216 -2024-10-28 03:00:00+00:00,50.49923206755109 -2024-10-28 04:00:00+00:00,55.42023623430725 -2024-10-28 05:00:00+00:00,60.83237695558247 -2024-10-28 06:00:00+00:00,64.79300841458574 -2024-10-28 07:00:00+00:00,68.0552676157278 -2024-10-28 08:00:00+00:00,69.89317020356093 -2024-10-28 09:00:00+00:00,68.50192888212948 -2024-10-28 10:00:00+00:00,67.57081218646594 -2024-10-28 11:00:00+00:00,63.68913838867989 -2024-10-28 12:00:00+00:00,60.317763592844734 -2024-10-28 13:00:00+00:00,56.48747819909589 -2024-10-28 14:00:00+00:00,52.417338962749604 -2024-10-28 15:00:00+00:00,48.21339384843348 -2024-10-28 16:00:00+00:00,43.69653522224562 -2024-10-28 17:00:00+00:00,39.23556416526624 -2024-10-28 18:00:00+00:00,34.8025779508805 -2024-10-28 19:00:00+00:00,30.88091025473944 -2024-10-28 20:00:00+00:00,27.324337282501638 -2024-10-28 21:00:00+00:00,23.826673096343963 -2024-10-28 22:00:00+00:00,20.06623193054125 -2024-10-28 23:00:00+00:00,17.838614540975573 -2024-10-29 00:00:00+00:00,18.24604350067497 -2024-10-29 01:00:00+00:00,18.91336115007636 -2024-10-29 02:00:00+00:00,19.973045840640992 -2024-10-29 03:00:00+00:00,21.19683278166283 -2024-10-29 04:00:00+00:00,19.70826496709947 -2024-10-29 05:00:00+00:00,19.19917070831886 -2024-10-29 06:00:00+00:00,18.407118730663804 -2024-10-29 07:00:00+00:00,16.547156127860937 -2024-10-29 08:00:00+00:00,15.563736843686696 -2024-10-29 09:00:00+00:00,14.183911568924838 -2024-10-29 10:00:00+00:00,13.961348605269952 -2024-10-29 11:00:00+00:00,14.891489194252118 -2024-10-29 12:00:00+00:00,16.549933666568297 -2024-10-29 13:00:00+00:00,18.43058233945181 -2024-10-29 14:00:00+00:00,16.934514804886618 -2024-10-29 15:00:00+00:00,16.162122315580614 -2024-10-29 16:00:00+00:00,15.04662884235877 -2024-10-29 17:00:00+00:00,13.090087796919892 -2024-10-29 18:00:00+00:00,13.419754086744472 -2024-10-29 19:00:00+00:00,12.180140237847969 -2024-10-29 20:00:00+00:00,10.938873116306784 -2024-10-29 21:00:00+00:00,11.450804429505798 -2024-10-29 22:00:00+00:00,13.45928546356827 -2024-10-29 23:00:00+00:00,15.394423789659243 -2024-10-30 00:00:00+00:00,17.853947719414823 -2024-10-30 01:00:00+00:00,20.930732573785463 -2024-10-30 02:00:00+00:00,24.088565774072475 -2024-10-30 03:00:00+00:00,27.164546062404806 -2024-10-30 04:00:00+00:00,30.713498702397146 -2024-10-30 05:00:00+00:00,35.74136718834348 -2024-10-30 06:00:00+00:00,38.603915450891506 -2024-10-30 07:00:00+00:00,41.21607601759725 -2024-10-30 08:00:00+00:00,45.242780192965085 -2024-10-30 09:00:00+00:00,48.66128275165762 -2024-10-30 10:00:00+00:00,52.60574969560719 -2024-10-30 11:00:00+00:00,56.29630884609666 -2024-10-30 12:00:00+00:00,53.90846514132103 -2024-10-30 13:00:00+00:00,51.86622151903365 -2024-10-30 14:00:00+00:00,49.086055498449504 -2024-10-30 15:00:00+00:00,45.16057666528449 -2024-10-30 16:00:00+00:00,41.09375098632073 -2024-10-30 17:00:00+00:00,36.11835854024965 -2024-10-30 18:00:00+00:00,32.21370752512501 -2024-10-30 19:00:00+00:00,27.228913166485096 -2024-10-30 20:00:00+00:00,23.975254257628784 -2024-10-30 21:00:00+00:00,21.166681723499128 -2024-10-30 22:00:00+00:00,19.906798146542304 -2024-10-30 23:00:00+00:00,18.058537937469932 -2024-10-31 00:00:00+00:00,17.152246969604533 -2024-10-31 01:00:00+00:00,16.4010690126477 -2024-10-31 02:00:00+00:00,16.75857667352619 -2024-10-31 03:00:00+00:00,17.359514861995258 -2024-10-31 04:00:00+00:00,18.90553832269324 -2024-10-31 05:00:00+00:00,20.586357588279924 -2024-10-31 06:00:00+00:00,23.506639862295582 -2024-10-31 07:00:00+00:00,27.184614522003553 -2024-10-31 08:00:00+00:00,31.57845794115703 -2024-10-31 09:00:00+00:00,35.38169940340021 -2024-10-31 10:00:00+00:00,39.70848732580021 -2024-10-31 11:00:00+00:00,42.86100327472679 -2024-10-31 12:00:00+00:00,42.26902944695269 -2024-10-31 13:00:00+00:00,42.25989743854272 -2024-10-31 14:00:00+00:00,42.58756459386723 -2024-10-31 15:00:00+00:00,42.98169095935351 -2024-10-31 16:00:00+00:00,46.13584576536131 -2024-10-31 17:00:00+00:00,48.342003731584825 -2024-10-31 18:00:00+00:00,50.09862261523276 -2024-10-31 19:00:00+00:00,51.622105008280144 -2024-10-31 20:00:00+00:00,49.62163391515036 -2024-10-31 21:00:00+00:00,47.55644166463379 -2024-10-31 22:00:00+00:00,44.24382666781768 -2024-10-31 23:00:00+00:00,42.41205367796591 -2024-11-01 00:00:00+00:00,39.688858604057444 -2024-11-01 01:00:00+00:00,39.56502289500564 -2024-11-01 02:00:00+00:00,40.654331913992586 -2024-11-01 03:00:00+00:00,41.35273978903583 -2024-11-01 04:00:00+00:00,39.753982802429974 -2024-11-01 05:00:00+00:00,36.52024848604135 -2024-11-01 06:00:00+00:00,33.57321709030946 -2024-11-01 07:00:00+00:00,31.185980282735557 -2024-11-01 08:00:00+00:00,29.331752877487677 -2024-11-01 09:00:00+00:00,28.01796015673593 -2024-11-01 10:00:00+00:00,28.5688031747747 -2024-11-01 11:00:00+00:00,28.491546950617558 -2024-11-01 12:00:00+00:00,28.926960014391764 -2024-11-01 13:00:00+00:00,26.334887558611182 -2024-11-01 14:00:00+00:00,25.448936927252515 -2024-11-01 15:00:00+00:00,23.4388654779656 -2024-11-01 16:00:00+00:00,20.583165990672168 -2024-11-01 17:00:00+00:00,18.073107533479813 -2024-11-01 18:00:00+00:00,16.25320398319443 -2024-11-01 19:00:00+00:00,15.463475681110536 -2024-11-01 20:00:00+00:00,15.460377634380633 -2024-11-03 22:00:00+00:00,15.673037396399875 -2024-11-03 23:00:00+00:00,15.784812038292879 -2024-11-04 00:00:00+00:00,16.133548958268754 -2024-11-04 01:00:00+00:00,16.98969080878147 -2024-11-04 02:00:00+00:00,18.04578006428482 -2024-11-04 03:00:00+00:00,18.2819397748193 -2024-11-04 04:00:00+00:00,20.089913718217908 -2024-11-04 05:00:00+00:00,22.967203698976057 -2024-11-04 06:00:00+00:00,25.391233919600705 -2024-11-04 07:00:00+00:00,27.29093903491268 -2024-11-04 08:00:00+00:00,29.712046197692214 -2024-11-04 09:00:00+00:00,32.85408237461323 -2024-11-04 10:00:00+00:00,36.54919716417334 -2024-11-04 11:00:00+00:00,40.332725606472074 -2024-11-04 12:00:00+00:00,42.58778736082544 -2024-11-04 13:00:00+00:00,42.400631119763936 -2024-11-04 14:00:00+00:00,41.0297031939401 -2024-11-04 15:00:00+00:00,38.109981529530494 -2024-11-04 16:00:00+00:00,35.30080669747876 -2024-11-04 17:00:00+00:00,34.48200150616925 -2024-11-04 18:00:00+00:00,33.55129691144802 -2024-11-04 19:00:00+00:00,30.14859187861681 -2024-11-04 20:00:00+00:00,27.034064279525097 -2024-11-04 21:00:00+00:00,25.378450378279087 -2024-11-04 22:00:00+00:00,22.822085319280884 -2024-11-04 23:00:00+00:00,21.032883946327154 -2024-11-05 00:00:00+00:00,19.739861702794013 -2024-11-05 01:00:00+00:00,20.19356184597759 -2024-11-05 02:00:00+00:00,20.992577014072886 -2024-11-05 03:00:00+00:00,23.063138406936485 -2024-11-05 04:00:00+00:00,26.960303012123298 -2024-11-05 05:00:00+00:00,31.64745508148057 -2024-11-05 06:00:00+00:00,35.00294526686249 -2024-11-05 07:00:00+00:00,37.06882599455258 -2024-11-05 08:00:00+00:00,38.66784198471305 -2024-11-05 09:00:00+00:00,40.030871731843355 -2024-11-05 10:00:00+00:00,41.70452204317758 -2024-11-05 11:00:00+00:00,42.65214325431526 -2024-11-05 12:00:00+00:00,44.72914068118477 -2024-11-05 13:00:00+00:00,43.845715959087556 -2024-11-05 14:00:00+00:00,42.83825461231104 -2024-11-05 15:00:00+00:00,38.867096771184265 -2024-11-05 16:00:00+00:00,34.9476439640088 -2024-11-05 17:00:00+00:00,33.73540860543194 -2024-11-05 18:00:00+00:00,32.35817570740307 -2024-11-05 19:00:00+00:00,31.67119819111723 -2024-11-05 20:00:00+00:00,32.08853270668516 -2024-11-05 21:00:00+00:00,31.8636812126633 -2024-11-05 22:00:00+00:00,32.01630969546978 -2024-11-05 23:00:00+00:00,30.785913837595892 -2024-11-06 00:00:00+00:00,31.422210968096124 -2024-11-06 01:00:00+00:00,32.47484084995116 -2024-11-06 02:00:00+00:00,34.04665070012248 -2024-11-06 03:00:00+00:00,38.10557578854972 -2024-11-06 04:00:00+00:00,41.568620216621994 -2024-11-06 05:00:00+00:00,44.494241875944276 -2024-11-06 06:00:00+00:00,48.28188694024805 -2024-11-06 07:00:00+00:00,50.67718548748324 -2024-11-06 08:00:00+00:00,52.38913753685938 -2024-11-06 09:00:00+00:00,53.684729953180515 -2024-11-06 10:00:00+00:00,55.20768561855289 -2024-11-06 11:00:00+00:00,57.985124025570876 -2024-11-06 12:00:00+00:00,60.784859478077216 -2024-11-06 13:00:00+00:00,65.45155989417586 -2024-11-06 14:00:00+00:00,67.56399901355222 -2024-11-06 15:00:00+00:00,68.28007294790984 -2024-11-06 16:00:00+00:00,66.87658724270177 -2024-11-06 17:00:00+00:00,64.46587357992921 -2024-11-06 18:00:00+00:00,62.06508728936477 -2024-11-06 19:00:00+00:00,62.62206594289517 -2024-11-06 20:00:00+00:00,61.48195181125434 -2024-11-06 21:00:00+00:00,59.48913182832039 -2024-11-06 22:00:00+00:00,56.41117970585206 -2024-11-06 23:00:00+00:00,51.53168092940569 -2024-11-07 00:00:00+00:00,46.83007625555457 -2024-11-07 01:00:00+00:00,41.69116149328852 -2024-11-07 02:00:00+00:00,36.96396077618214 -2024-11-07 03:00:00+00:00,32.492551164973456 -2024-11-07 04:00:00+00:00,30.08357412581071 -2024-11-07 05:00:00+00:00,27.730998844048848 -2024-11-07 06:00:00+00:00,28.98034309268565 -2024-11-07 07:00:00+00:00,31.460800127383784 -2024-11-07 08:00:00+00:00,33.01917806451715 -2024-11-07 09:00:00+00:00,32.29293388263393 -2024-11-07 10:00:00+00:00,33.16943585288593 -2024-11-07 11:00:00+00:00,34.23010363362102 -2024-11-07 12:00:00+00:00,36.04371081117673 -2024-11-07 13:00:00+00:00,39.58749519882345 -2024-11-07 14:00:00+00:00,44.688484158891434 -2024-11-07 15:00:00+00:00,50.13628813485094 -2024-11-07 16:00:00+00:00,55.452181258120994 -2024-11-07 17:00:00+00:00,60.960991083074084 -2024-11-07 18:00:00+00:00,64.87317218877071 -2024-11-07 19:00:00+00:00,66.99644698285411 -2024-11-07 20:00:00+00:00,66.72812839249416 -2024-11-07 21:00:00+00:00,64.9194060464799 -2024-11-07 22:00:00+00:00,64.3823591381646 -2024-11-07 23:00:00+00:00,63.24037038874103 -2024-11-08 00:00:00+00:00,61.68891629568338 -2024-11-08 01:00:00+00:00,59.56358804150976 -2024-11-08 02:00:00+00:00,56.59886312727207 -2024-11-08 03:00:00+00:00,53.46112014684791 -2024-11-08 04:00:00+00:00,48.05953106079069 -2024-11-08 05:00:00+00:00,43.025457613685056 -2024-11-08 06:00:00+00:00,37.62702693350793 -2024-11-08 07:00:00+00:00,31.923003788831988 -2024-11-08 08:00:00+00:00,25.788261765083394 -2024-11-08 09:00:00+00:00,24.892222408064306 -2024-11-08 10:00:00+00:00,23.577494911356386 -2024-11-08 11:00:00+00:00,23.022902532684135 -2024-11-08 12:00:00+00:00,21.255210638112143 -2024-11-08 13:00:00+00:00,20.426406195292508 -2024-11-08 14:00:00+00:00,19.935233945205372 -2024-11-08 15:00:00+00:00,20.876801775045344 -2024-11-08 16:00:00+00:00,21.944172587702386 -2024-11-08 17:00:00+00:00,21.895704340948093 -2024-11-08 18:00:00+00:00,21.820811514506158 -2024-11-08 19:00:00+00:00,22.07165982751489 -2024-11-08 20:00:00+00:00,22.844169707181045 -2024-11-08 21:00:00+00:00,23.784082524162958 -2024-11-10 22:00:00+00:00,24.2650919304287 -2024-11-10 23:00:00+00:00,23.476845490733346 -2024-11-11 00:00:00+00:00,24.373324339968217 -2024-11-11 01:00:00+00:00,25.31870662696204 -2024-11-11 02:00:00+00:00,27.2269042022938 -2024-11-11 03:00:00+00:00,28.560790441840545 -2024-11-11 04:00:00+00:00,30.264299834989657 -2024-11-11 05:00:00+00:00,32.15883337971395 -2024-11-11 06:00:00+00:00,33.506894522537905 -2024-11-11 07:00:00+00:00,35.30867341254597 -2024-11-11 08:00:00+00:00,38.48147326676192 -2024-11-11 09:00:00+00:00,41.00748449352631 -2024-11-11 10:00:00+00:00,43.916525827107705 -2024-11-11 11:00:00+00:00,47.319466374412094 -2024-11-11 12:00:00+00:00,51.641188090147764 -2024-11-11 13:00:00+00:00,54.683585791488504 -2024-11-11 14:00:00+00:00,55.141410131419484 -2024-11-11 15:00:00+00:00,55.39081143471795 -2024-11-11 16:00:00+00:00,54.27071652296478 -2024-11-11 17:00:00+00:00,53.70960224457366 -2024-11-11 18:00:00+00:00,51.30931305491295 -2024-11-11 19:00:00+00:00,47.175191629285045 -2024-11-11 20:00:00+00:00,43.69875610884761 -2024-11-11 21:00:00+00:00,41.88030829961708 -2024-11-11 22:00:00+00:00,39.026097850468894 -2024-11-11 23:00:00+00:00,38.00795189602831 -2024-11-12 00:00:00+00:00,35.35043136540354 -2024-11-12 01:00:00+00:00,30.901824502683098 -2024-11-12 02:00:00+00:00,26.379037644870493 -2024-11-12 03:00:00+00:00,23.84081992219429 -2024-11-12 04:00:00+00:00,22.520152790882207 -2024-11-12 05:00:00+00:00,22.001643061408746 -2024-11-12 06:00:00+00:00,20.67583690525219 -2024-11-12 07:00:00+00:00,19.074827592948406 -2024-11-12 08:00:00+00:00,18.41565378494524 -2024-11-12 09:00:00+00:00,18.732869902160303 -2024-11-12 10:00:00+00:00,19.610861147797387 -2024-11-12 11:00:00+00:00,19.409488991536815 -2024-11-12 12:00:00+00:00,19.74273799484369 -2024-11-12 13:00:00+00:00,20.50728713518197 -2024-11-12 14:00:00+00:00,22.16745464391345 -2024-11-12 15:00:00+00:00,24.82899063878275 -2024-11-12 16:00:00+00:00,27.978917852537702 -2024-11-12 17:00:00+00:00,30.748873313462266 -2024-11-12 18:00:00+00:00,34.31801644557599 -2024-11-12 19:00:00+00:00,37.433275439154094 -2024-11-12 20:00:00+00:00,41.04983396494931 -2024-11-12 21:00:00+00:00,44.61174635638364 -2024-11-12 22:00:00+00:00,48.47171365618656 -2024-11-12 23:00:00+00:00,50.808985907744216 -2024-11-13 00:00:00+00:00,53.70843467807795 -2024-11-13 01:00:00+00:00,56.77086344471826 -2024-11-13 02:00:00+00:00,59.0498570015324 -2024-11-13 03:00:00+00:00,58.766837243920826 -2024-11-13 04:00:00+00:00,57.94295524356808 -2024-11-13 05:00:00+00:00,57.333966426169596 -2024-11-13 06:00:00+00:00,56.406162761440974 -2024-11-13 07:00:00+00:00,53.5373848736745 -2024-11-13 08:00:00+00:00,50.252066001166604 -2024-11-13 09:00:00+00:00,45.71818894476754 -2024-11-13 10:00:00+00:00,43.330355951773804 -2024-11-13 11:00:00+00:00,41.04763677455803 -2024-11-13 12:00:00+00:00,38.564317865598795 -2024-11-13 13:00:00+00:00,35.62914057648389 -2024-11-13 14:00:00+00:00,33.82572417883125 -2024-11-13 15:00:00+00:00,30.173318631467843 -2024-11-13 16:00:00+00:00,27.441046372778413 -2024-11-13 17:00:00+00:00,25.23410832629066 -2024-11-13 18:00:00+00:00,24.1158073647619 -2024-11-13 19:00:00+00:00,22.930255025917198 -2024-11-13 20:00:00+00:00,20.74061883080706 -2024-11-13 21:00:00+00:00,18.573163704487445 -2024-11-13 22:00:00+00:00,16.7670052744267 -2024-11-13 23:00:00+00:00,15.317731385629175 -2024-11-14 00:00:00+00:00,14.254963997785609 -2024-11-14 01:00:00+00:00,14.348621535299817 -2024-11-14 02:00:00+00:00,15.45463764343984 -2024-11-14 03:00:00+00:00,19.98771933230331 -2024-11-14 04:00:00+00:00,23.194515567701423 -2024-11-14 05:00:00+00:00,28.04836450468446 -2024-11-14 06:00:00+00:00,31.050350141568625 -2024-11-14 07:00:00+00:00,32.58347829032553 -2024-11-14 08:00:00+00:00,32.61927015226795 -2024-11-14 09:00:00+00:00,33.53330185657347 -2024-11-14 10:00:00+00:00,35.866738515309216 -2024-11-14 11:00:00+00:00,38.03256607278323 -2024-11-14 12:00:00+00:00,39.47012963760546 -2024-11-14 13:00:00+00:00,42.24194065484523 -2024-11-14 14:00:00+00:00,41.466700361457754 -2024-11-14 15:00:00+00:00,39.429170373617005 -2024-11-14 16:00:00+00:00,37.47106856848988 -2024-11-14 17:00:00+00:00,33.60183980577315 -2024-11-14 18:00:00+00:00,29.76142870302689 -2024-11-14 19:00:00+00:00,25.817976322074195 -2024-11-14 20:00:00+00:00,23.713250632991855 -2024-11-14 21:00:00+00:00,23.441023541746553 -2024-11-14 22:00:00+00:00,23.901159579032818 -2024-11-14 23:00:00+00:00,23.767690082055648 -2024-11-15 00:00:00+00:00,23.57403107635904 -2024-11-15 01:00:00+00:00,24.296749620235264 -2024-11-15 02:00:00+00:00,25.115720714397856 -2024-11-15 03:00:00+00:00,24.409078596198263 -2024-11-15 04:00:00+00:00,28.478657965929354 -2024-11-15 05:00:00+00:00,33.17312061603344 -2024-11-15 06:00:00+00:00,34.649012185996426 -2024-11-15 07:00:00+00:00,34.63992756738719 -2024-11-15 08:00:00+00:00,33.6148030334056 -2024-11-15 09:00:00+00:00,33.59898275180475 -2024-11-15 10:00:00+00:00,35.50974114149984 -2024-11-15 11:00:00+00:00,36.28454272880106 -2024-11-15 12:00:00+00:00,36.484702114978695 -2024-11-15 13:00:00+00:00,38.2338213264239 -2024-11-15 14:00:00+00:00,40.59430327878453 -2024-11-15 15:00:00+00:00,42.80998352731859 -2024-11-15 16:00:00+00:00,45.09342233568379 -2024-11-15 17:00:00+00:00,48.44528379432664 -2024-11-15 18:00:00+00:00,49.78165623764636 -2024-11-15 19:00:00+00:00,50.77035753647982 -2024-11-15 20:00:00+00:00,53.72625420600823 -2024-11-15 21:00:00+00:00,57.559670779744074 -2024-11-17 22:00:00+00:00,60.64188280403018 -2024-11-17 23:00:00+00:00,62.121873962985305 -2024-11-18 00:00:00+00:00,62.19555812949487 -2024-11-18 01:00:00+00:00,61.38168450312144 -2024-11-18 02:00:00+00:00,62.32697426614282 -2024-11-18 03:00:00+00:00,61.368675443851494 -2024-11-18 04:00:00+00:00,59.97289749263659 -2024-11-18 05:00:00+00:00,57.68695551507236 -2024-11-18 06:00:00+00:00,54.76639911457182 -2024-11-18 07:00:00+00:00,50.24159133982126 -2024-11-18 08:00:00+00:00,44.9521036909796 -2024-11-18 09:00:00+00:00,39.76241337216148 -2024-11-18 10:00:00+00:00,35.10883436822429 -2024-11-18 11:00:00+00:00,31.02588053183437 -2024-11-18 12:00:00+00:00,28.106784768959354 -2024-11-18 13:00:00+00:00,25.706559129530397 -2024-11-18 14:00:00+00:00,22.86777611306684 -2024-11-18 15:00:00+00:00,22.077573948818507 -2024-11-18 16:00:00+00:00,18.890391167029936 -2024-11-18 17:00:00+00:00,16.360122074930473 -2024-11-18 18:00:00+00:00,12.967948339020325 -2024-11-18 19:00:00+00:00,10.334014730103755 -2024-11-18 20:00:00+00:00,8.111778995481972 -2024-11-18 21:00:00+00:00,7.592465403747555 -2024-11-18 22:00:00+00:00,9.010961793985443 -2024-11-18 23:00:00+00:00,11.44531717865141 -2024-11-19 00:00:00+00:00,14.911989853478875 -2024-11-19 01:00:00+00:00,19.420070008617877 -2024-11-19 02:00:00+00:00,25.240915484635796 -2024-11-19 03:00:00+00:00,31.496184263252474 -2024-11-19 04:00:00+00:00,34.354322497302434 -2024-11-19 05:00:00+00:00,36.838823712458336 -2024-11-19 06:00:00+00:00,40.18334276782834 -2024-11-19 07:00:00+00:00,41.92140208683325 -2024-11-19 08:00:00+00:00,46.37349474424924 -2024-11-19 09:00:00+00:00,50.6595510111569 -2024-11-19 10:00:00+00:00,54.698713641615036 -2024-11-19 11:00:00+00:00,56.7643015806561 -2024-11-19 12:00:00+00:00,57.12816688061412 -2024-11-19 13:00:00+00:00,57.12564651339834 -2024-11-19 14:00:00+00:00,55.45611902157994 -2024-11-19 15:00:00+00:00,51.87603413788558 -2024-11-19 16:00:00+00:00,45.92277250869033 -2024-11-19 17:00:00+00:00,39.33717654000651 -2024-11-19 18:00:00+00:00,36.26206408825392 -2024-11-19 19:00:00+00:00,33.163901725086056 -2024-11-19 20:00:00+00:00,30.572807683026685 -2024-11-19 21:00:00+00:00,29.350850930637836 -2024-11-19 22:00:00+00:00,27.681695009282322 -2024-11-19 23:00:00+00:00,25.940289547894746 -2024-11-20 00:00:00+00:00,24.34080182898686 -2024-11-20 01:00:00+00:00,23.68483426168113 -2024-11-20 02:00:00+00:00,23.298829125042783 -2024-11-20 03:00:00+00:00,26.63660555212962 -2024-11-20 04:00:00+00:00,30.620858921929862 -2024-11-20 05:00:00+00:00,35.388913026725426 -2024-11-20 06:00:00+00:00,41.07108378626104 -2024-11-20 07:00:00+00:00,47.414390731345534 -2024-11-20 08:00:00+00:00,53.26354241366403 -2024-11-20 09:00:00+00:00,59.169218135406076 -2024-11-20 10:00:00+00:00,64.97394336310944 -2024-11-20 11:00:00+00:00,70.67381500650006 -2024-11-20 12:00:00+00:00,74.8874696903746 -2024-11-20 13:00:00+00:00,78.65229041171752 -2024-11-20 14:00:00+00:00,79.86217485240812 -2024-11-20 15:00:00+00:00,79.36507775054024 -2024-11-20 16:00:00+00:00,78.63208387482858 -2024-11-20 17:00:00+00:00,73.05237622773545 -2024-11-20 18:00:00+00:00,66.77964960256142 -2024-11-20 19:00:00+00:00,60.4996213191398 -2024-11-20 20:00:00+00:00,54.7698165327315 -2024-11-20 21:00:00+00:00,50.547707150243795 -2024-11-20 22:00:00+00:00,47.04040825495594 -2024-11-20 23:00:00+00:00,44.80679992066007 -2024-11-21 00:00:00+00:00,43.238482833931826 -2024-11-21 01:00:00+00:00,41.780324581544185 -2024-11-21 02:00:00+00:00,39.82803078410165 -2024-11-21 03:00:00+00:00,38.38700227170333 -2024-11-21 04:00:00+00:00,38.23670911138777 -2024-11-21 05:00:00+00:00,37.285441691347856 -2024-11-21 06:00:00+00:00,38.83132460191346 -2024-11-21 07:00:00+00:00,40.57298483213268 -2024-11-21 08:00:00+00:00,43.65294693731123 -2024-11-21 09:00:00+00:00,47.55661904263896 -2024-11-21 10:00:00+00:00,51.95131745184759 -2024-11-21 11:00:00+00:00,53.99601369554489 -2024-11-21 12:00:00+00:00,54.50919945499858 -2024-11-21 13:00:00+00:00,53.715524876486064 -2024-11-21 14:00:00+00:00,51.94538669141053 -2024-11-21 15:00:00+00:00,49.947388933322166 -2024-11-21 16:00:00+00:00,46.445917471720044 -2024-11-21 17:00:00+00:00,42.98551792085239 -2024-11-21 18:00:00+00:00,41.11846422020917 -2024-11-21 19:00:00+00:00,43.1058560546984 -2024-11-21 20:00:00+00:00,41.35026520080523 -2024-11-21 21:00:00+00:00,40.156328774124056 -2024-11-21 22:00:00+00:00,37.49921727688095 -2024-11-21 23:00:00+00:00,34.26472729866857 -2024-11-22 00:00:00+00:00,30.534581727925737 -2024-11-22 01:00:00+00:00,28.465317847140152 -2024-11-22 02:00:00+00:00,27.733256512347342 -2024-11-22 03:00:00+00:00,26.684463699372305 -2024-11-22 04:00:00+00:00,25.654779637176393 -2024-11-22 05:00:00+00:00,22.428961233506183 -2024-11-22 06:00:00+00:00,21.241562272570803 -2024-11-22 07:00:00+00:00,20.412886740120626 -2024-11-22 08:00:00+00:00,20.455280078785346 -2024-11-22 09:00:00+00:00,20.496438501295195 -2024-11-22 10:00:00+00:00,21.85666322053095 -2024-11-22 11:00:00+00:00,22.921933948722945 -2024-11-22 12:00:00+00:00,24.23548193360458 -2024-11-22 13:00:00+00:00,24.38465494665713 -2024-11-22 14:00:00+00:00,24.79123417247376 -2024-11-22 15:00:00+00:00,23.949620266595424 -2024-11-22 16:00:00+00:00,22.395029425529042 -2024-11-22 17:00:00+00:00,21.65107403851861 -2024-11-22 18:00:00+00:00,21.267304612212758 -2024-11-22 19:00:00+00:00,21.4963297225083 -2024-11-22 20:00:00+00:00,21.67590976330391 -2024-11-22 21:00:00+00:00,21.386580268451972 -2024-11-24 22:00:00+00:00,21.390958767511353 -2024-11-24 23:00:00+00:00,20.762119171567406 -2024-11-25 00:00:00+00:00,21.00248115202979 -2024-11-25 01:00:00+00:00,21.81205627833307 -2024-11-25 02:00:00+00:00,23.853509101073023 -2024-11-25 03:00:00+00:00,25.73713647143241 -2024-11-25 04:00:00+00:00,28.375996489235312 -2024-11-25 05:00:00+00:00,29.426359415893838 -2024-11-25 06:00:00+00:00,30.304466569775737 -2024-11-25 07:00:00+00:00,30.05267394587088 -2024-11-25 08:00:00+00:00,29.024421800159462 -2024-11-25 09:00:00+00:00,29.786715576182246 -2024-11-25 10:00:00+00:00,30.38982614102847 -2024-11-25 11:00:00+00:00,31.258091533355866 -2024-11-25 12:00:00+00:00,29.594413687909263 -2024-11-25 13:00:00+00:00,28.67991584412016 -2024-11-25 14:00:00+00:00,26.660918223949505 -2024-11-25 15:00:00+00:00,24.488794007084287 -2024-11-25 16:00:00+00:00,22.338441311152557 -2024-11-25 17:00:00+00:00,20.690880708636406 -2024-11-25 18:00:00+00:00,16.375945984305506 -2024-11-25 19:00:00+00:00,15.239792001090276 -2024-11-25 20:00:00+00:00,14.912543501658975 -2024-11-25 21:00:00+00:00,14.981944328265424 -2024-11-25 22:00:00+00:00,16.825463001503206 -2024-11-25 23:00:00+00:00,16.937424487118086 -2024-11-26 00:00:00+00:00,16.550414723237868 -2024-11-26 01:00:00+00:00,16.30014885908587 -2024-11-26 02:00:00+00:00,16.022924661573782 -2024-11-26 03:00:00+00:00,15.842002971434928 -2024-11-26 04:00:00+00:00,16.364260095926102 -2024-11-26 05:00:00+00:00,16.531846803180695 -2024-11-26 06:00:00+00:00,15.448860850768057 -2024-11-26 07:00:00+00:00,14.692467716905677 -2024-11-26 08:00:00+00:00,14.794922193111622 -2024-11-26 09:00:00+00:00,14.246016159269686 -2024-11-26 10:00:00+00:00,12.655758363250671 -2024-11-26 11:00:00+00:00,11.471475126146288 -2024-11-26 12:00:00+00:00,10.96156434747697 -2024-11-26 13:00:00+00:00,13.184846902707887 -2024-11-26 14:00:00+00:00,14.8254977657342 -2024-11-26 15:00:00+00:00,15.871077411630242 -2024-11-26 16:00:00+00:00,18.427573449223928 -2024-11-26 17:00:00+00:00,20.117482343278386 -2024-11-26 18:00:00+00:00,21.27788984712244 -2024-11-26 19:00:00+00:00,22.5883899342309 -2024-11-26 20:00:00+00:00,25.675093471203322 -2024-11-26 21:00:00+00:00,30.025225269746613 -2024-11-26 22:00:00+00:00,34.478847047936746 -2024-11-26 23:00:00+00:00,38.10798937851974 -2024-11-27 00:00:00+00:00,42.319757202342196 -2024-11-27 01:00:00+00:00,46.58691945829956 -2024-11-27 02:00:00+00:00,47.711327412607716 -2024-11-27 03:00:00+00:00,47.82221483549548 -2024-11-27 04:00:00+00:00,50.90666544843781 -2024-11-27 05:00:00+00:00,54.853546098656224 -2024-11-27 06:00:00+00:00,58.555880910821976 -2024-11-27 07:00:00+00:00,62.33586908953155 -2024-11-27 08:00:00+00:00,66.44834791469518 -2024-11-27 09:00:00+00:00,70.39210414617156 -2024-11-27 10:00:00+00:00,73.13564492563232 -2024-11-27 11:00:00+00:00,74.0208878362409 -2024-11-27 12:00:00+00:00,74.89054379824317 -2024-11-27 13:00:00+00:00,76.55790752787854 -2024-11-27 14:00:00+00:00,78.2955509942954 -2024-11-27 15:00:00+00:00,77.53741679310492 -2024-11-27 16:00:00+00:00,78.80999286176359 -2024-11-27 17:00:00+00:00,79.62854348953361 -2024-11-27 18:00:00+00:00,78.01876456652262 -2024-11-27 19:00:00+00:00,75.09244388895385 -2024-11-27 20:00:00+00:00,71.18903083412917 -2024-11-27 21:00:00+00:00,66.71445908609365 -2024-11-27 22:00:00+00:00,61.37769862661166 -2024-11-27 23:00:00+00:00,54.963418004202644 -2024-11-28 00:00:00+00:00,49.85682495478007 -2024-11-28 01:00:00+00:00,45.40330241414428 -2024-11-28 02:00:00+00:00,41.06540856745237 -2024-11-28 03:00:00+00:00,36.42296210625837 -2024-11-28 04:00:00+00:00,32.82334581022617 -2024-11-28 05:00:00+00:00,30.101775595738168 -2024-11-28 06:00:00+00:00,29.085020569501943 -2024-11-28 07:00:00+00:00,28.061521621828234 -2024-11-28 08:00:00+00:00,27.586805419557884 -2024-11-28 09:00:00+00:00,27.58435294668766 -2024-11-28 10:00:00+00:00,28.04262809890242 -2024-11-28 11:00:00+00:00,28.436431335428484 -2024-11-28 12:00:00+00:00,29.806182174053266 -2024-11-28 13:00:00+00:00,30.79479628843041 -2024-11-28 14:00:00+00:00,31.07170600593083 -2024-11-28 15:00:00+00:00,32.29213750567826 -2024-11-28 16:00:00+00:00,33.19963220970324 -2024-11-28 17:00:00+00:00,35.05831579456804 -2024-11-28 18:00:00+00:00,35.01517034772904 -2024-11-28 19:00:00+00:00,35.970017188651795 -2024-11-28 20:00:00+00:00,33.97708067368056 -2024-11-28 21:00:00+00:00,33.43533163457473 -2024-11-28 22:00:00+00:00,35.22876519097856 -2024-11-28 23:00:00+00:00,38.66455767258834 -2024-11-29 00:00:00+00:00,42.65420625074429 -2024-11-29 01:00:00+00:00,47.3263753591811 -2024-11-29 02:00:00+00:00,51.672624168399864 -2024-11-29 03:00:00+00:00,57.66930087473749 -2024-11-29 04:00:00+00:00,63.052350733346785 -2024-11-29 05:00:00+00:00,66.75486785100927 -2024-11-29 06:00:00+00:00,70.79639786128635 -2024-11-29 07:00:00+00:00,73.92017729878125 -2024-11-29 08:00:00+00:00,76.58938507843469 -2024-11-29 09:00:00+00:00,79.48592776851301 -2024-11-29 10:00:00+00:00,82.73381764216548 -2024-11-29 11:00:00+00:00,85.00291368815203 -2024-11-29 12:00:00+00:00,83.90053347918422 -2024-11-29 13:00:00+00:00,80.9601202707479 -2024-11-29 14:00:00+00:00,77.21463702111494 -2024-11-29 15:00:00+00:00,70.64590123054845 -2024-11-29 16:00:00+00:00,63.77031926255591 -2024-11-29 17:00:00+00:00,58.226276811629425 -2024-11-29 18:00:00+00:00,52.2582912899115 -2024-11-29 19:00:00+00:00,47.726177981905 -2024-11-29 20:00:00+00:00,43.394561976706036 -2024-11-29 21:00:00+00:00,37.22059187975144 -2024-12-01 22:00:00+00:00,33.76656047237084 -2024-12-01 23:00:00+00:00,28.73853749729472 -2024-12-02 00:00:00+00:00,24.511852742000364 -2024-12-02 01:00:00+00:00,21.145326573522343 -2024-12-02 02:00:00+00:00,18.391201659966836 -2024-12-02 03:00:00+00:00,16.545230514933003 -2024-12-02 04:00:00+00:00,15.308521592531056 -2024-12-02 05:00:00+00:00,16.516610317825556 -2024-12-02 06:00:00+00:00,16.617371502244524 -2024-12-02 07:00:00+00:00,16.347009002838117 -2024-12-02 08:00:00+00:00,16.810518319608704 -2024-12-02 09:00:00+00:00,16.962991177982023 -2024-12-02 10:00:00+00:00,16.852037675884187 -2024-12-02 11:00:00+00:00,17.687938151915038 -2024-12-02 12:00:00+00:00,16.84098838062739 -2024-12-02 13:00:00+00:00,16.982151918264695 -2024-12-02 14:00:00+00:00,18.13017734057954 -2024-12-02 15:00:00+00:00,18.839213329896218 -2024-12-02 16:00:00+00:00,21.76172728156057 -2024-12-02 17:00:00+00:00,24.469965868345458 -2024-12-02 18:00:00+00:00,26.147882541772937 -2024-12-02 19:00:00+00:00,28.59016990974073 -2024-12-02 20:00:00+00:00,32.47664007263039 -2024-12-02 21:00:00+00:00,34.99454499463035 -2024-12-02 22:00:00+00:00,36.79150365815564 -2024-12-02 23:00:00+00:00,37.564738393922894 -2024-12-03 00:00:00+00:00,37.68042277501838 -2024-12-03 01:00:00+00:00,38.08869885493636 -2024-12-03 02:00:00+00:00,38.10304371924561 -2024-12-03 03:00:00+00:00,38.874973094967345 -2024-12-03 04:00:00+00:00,37.42336565804065 -2024-12-03 05:00:00+00:00,35.7534989632238 -2024-12-03 06:00:00+00:00,34.68996733259598 -2024-12-03 07:00:00+00:00,31.532869380571135 -2024-12-03 08:00:00+00:00,28.846999111194936 -2024-12-03 09:00:00+00:00,25.716073885232912 -2024-12-03 10:00:00+00:00,25.584211715931627 -2024-12-03 11:00:00+00:00,24.928588351717355 -2024-12-03 12:00:00+00:00,23.96783079613225 -2024-12-03 13:00:00+00:00,23.994770838374027 -2024-12-03 14:00:00+00:00,25.707523795145786 -2024-12-03 15:00:00+00:00,27.119164688193052 -2024-12-03 16:00:00+00:00,28.03567343137494 -2024-12-03 17:00:00+00:00,29.35463368499209 -2024-12-03 18:00:00+00:00,31.985726288372597 -2024-12-03 19:00:00+00:00,32.68732509598506 -2024-12-03 20:00:00+00:00,30.693661042058917 -2024-12-03 21:00:00+00:00,30.144511184585905 -2024-12-03 22:00:00+00:00,30.23300108046058 -2024-12-03 23:00:00+00:00,29.914387074811096 -2024-12-04 00:00:00+00:00,26.287556669630096 -2024-12-04 01:00:00+00:00,23.682549767417978 -2024-12-04 02:00:00+00:00,22.077784234610913 -2024-12-04 03:00:00+00:00,23.91509584091759 -2024-12-04 04:00:00+00:00,26.236279315329885 -2024-12-04 05:00:00+00:00,29.154783989003786 -2024-12-04 06:00:00+00:00,32.93507255958069 -2024-12-04 07:00:00+00:00,36.38275842674163 -2024-12-04 08:00:00+00:00,40.17310649284165 -2024-12-04 09:00:00+00:00,45.43785030748508 -2024-12-04 10:00:00+00:00,50.74336395759815 -2024-12-04 11:00:00+00:00,56.575904447663554 -2024-12-04 12:00:00+00:00,62.37324473638116 -2024-12-04 13:00:00+00:00,68.08155424448648 -2024-12-04 14:00:00+00:00,74.04853061109098 -2024-12-04 15:00:00+00:00,76.14923978702214 -2024-12-04 16:00:00+00:00,76.90967219276459 -2024-12-04 17:00:00+00:00,74.12724264793924 -2024-12-04 18:00:00+00:00,69.80699135125016 -2024-12-04 19:00:00+00:00,65.99206876531115 -2024-12-04 20:00:00+00:00,62.44030043530463 -2024-12-04 21:00:00+00:00,57.915926076991624 -2024-12-04 22:00:00+00:00,52.02194799986272 -2024-12-04 23:00:00+00:00,45.96973435420369 -2024-12-05 00:00:00+00:00,40.23502503541952 -2024-12-05 01:00:00+00:00,34.55388254389687 -2024-12-05 02:00:00+00:00,29.493004981863045 -2024-12-05 03:00:00+00:00,24.78193025065658 -2024-12-05 04:00:00+00:00,19.78206886089082 -2024-12-05 05:00:00+00:00,18.168527196988432 -2024-12-05 06:00:00+00:00,17.224816028244863 -2024-12-05 07:00:00+00:00,15.660517962717872 -2024-12-05 08:00:00+00:00,14.19640851452661 -2024-12-05 09:00:00+00:00,12.595275949802415 -2024-12-05 10:00:00+00:00,11.132054266971258 -2024-12-05 11:00:00+00:00,10.51853760486617 -2024-12-05 12:00:00+00:00,10.300038044657882 -2024-12-05 13:00:00+00:00,10.309254022209307 -2024-12-05 14:00:00+00:00,11.412448588843768 -2024-12-05 15:00:00+00:00,11.475800204721732 -2024-12-05 16:00:00+00:00,10.378178414888865 -2024-12-05 17:00:00+00:00,9.372086496399685 -2024-12-05 18:00:00+00:00,8.880945690177027 -2024-12-05 19:00:00+00:00,9.866007576236457 -2024-12-05 20:00:00+00:00,12.224526038024393 -2024-12-05 21:00:00+00:00,14.947452028447518 -2024-12-05 22:00:00+00:00,16.8571910110685 -2024-12-05 23:00:00+00:00,18.54283888619799 -2024-12-06 00:00:00+00:00,18.593652149716156 -2024-12-06 01:00:00+00:00,18.518007659115927 -2024-12-06 02:00:00+00:00,20.354979381602966 -2024-12-06 03:00:00+00:00,24.129583258575398 -2024-12-06 04:00:00+00:00,25.452449882944908 -2024-12-06 05:00:00+00:00,26.941704703403264 -2024-12-06 06:00:00+00:00,29.044129503369167 -2024-12-06 07:00:00+00:00,29.870120314393137 -2024-12-06 08:00:00+00:00,29.768982308576017 -2024-12-06 09:00:00+00:00,29.26128778529436 -2024-12-06 10:00:00+00:00,27.92073427780673 -2024-12-06 11:00:00+00:00,26.643974012220877 -2024-12-06 12:00:00+00:00,25.64956001195619 -2024-12-06 13:00:00+00:00,25.775671193300408 -2024-12-06 14:00:00+00:00,27.580784102753313 -2024-12-06 15:00:00+00:00,28.575578781758477 -2024-12-06 16:00:00+00:00,26.916250666950955 -2024-12-06 17:00:00+00:00,23.4016709461086 -2024-12-06 18:00:00+00:00,21.236035850030554 -2024-12-06 19:00:00+00:00,19.712957548836265 -2024-12-06 20:00:00+00:00,17.828478343900862 -2024-12-06 21:00:00+00:00,17.712365668022326 -2024-12-08 22:00:00+00:00,19.533090435657186 -2024-12-08 23:00:00+00:00,21.935641016143194 -2024-12-09 00:00:00+00:00,25.082798774571852 -2024-12-09 01:00:00+00:00,27.844299680045232 -2024-12-09 02:00:00+00:00,31.3349509346714 -2024-12-09 03:00:00+00:00,31.07203712831923 -2024-12-09 04:00:00+00:00,28.974745831777025 -2024-12-09 05:00:00+00:00,29.56647908574772 -2024-12-09 06:00:00+00:00,29.043881798814983 -2024-12-09 07:00:00+00:00,29.96005949341653 -2024-12-09 08:00:00+00:00,31.387755177074666 -2024-12-09 09:00:00+00:00,32.391443806103716 -2024-12-09 10:00:00+00:00,33.860679256952174 -2024-12-09 11:00:00+00:00,34.77641623418186 -2024-12-09 12:00:00+00:00,35.86218168112209 -2024-12-09 13:00:00+00:00,36.82176044307156 -2024-12-09 14:00:00+00:00,38.2227428738842 -2024-12-09 15:00:00+00:00,40.33919715618182 -2024-12-09 16:00:00+00:00,42.29346192579091 -2024-12-09 17:00:00+00:00,46.88952495569364 -2024-12-09 18:00:00+00:00,53.47243286877502 -2024-12-09 19:00:00+00:00,57.69731495773563 -2024-12-09 20:00:00+00:00,63.45161300401354 -2024-12-09 21:00:00+00:00,67.11880089167003 -2024-12-09 22:00:00+00:00,69.6991974799649 -2024-12-09 23:00:00+00:00,73.14131593254203 -2024-12-10 00:00:00+00:00,76.40058400047283 -2024-12-10 01:00:00+00:00,79.79471597860211 -2024-12-10 02:00:00+00:00,78.72469940399574 -2024-12-10 03:00:00+00:00,75.87318881697868 -2024-12-10 04:00:00+00:00,71.36040215597356 -2024-12-10 05:00:00+00:00,65.86528435700247 -2024-12-10 06:00:00+00:00,60.33441503252807 -2024-12-10 07:00:00+00:00,55.90505204070819 -2024-12-10 08:00:00+00:00,51.90381010971421 -2024-12-10 09:00:00+00:00,48.08700495770161 -2024-12-10 10:00:00+00:00,45.15096702522264 -2024-12-10 11:00:00+00:00,43.315684620152446 -2024-12-10 12:00:00+00:00,41.76084847885033 -2024-12-10 13:00:00+00:00,39.671846955426766 -2024-12-10 14:00:00+00:00,37.33871886234285 -2024-12-10 15:00:00+00:00,35.68290115899263 -2024-12-10 16:00:00+00:00,39.1686150118727 -2024-12-10 17:00:00+00:00,43.33457298831021 -2024-12-10 18:00:00+00:00,47.52733173970342 -2024-12-10 19:00:00+00:00,52.006902948143605 -2024-12-10 20:00:00+00:00,56.32756438694368 -2024-12-10 21:00:00+00:00,58.96911260658556 -2024-12-10 22:00:00+00:00,60.04948465067901 -2024-12-10 23:00:00+00:00,60.64608658248862 -2024-12-11 00:00:00+00:00,59.219435743979275 -2024-12-11 01:00:00+00:00,56.29301418092273 -2024-12-11 02:00:00+00:00,54.311414632479114 -2024-12-11 03:00:00+00:00,53.08000278761356 -2024-12-11 04:00:00+00:00,52.174932423651704 -2024-12-11 05:00:00+00:00,52.83861892191646 -2024-12-11 06:00:00+00:00,51.23647802845718 -2024-12-11 07:00:00+00:00,50.03476065879642 -2024-12-11 08:00:00+00:00,48.728778769784775 -2024-12-11 09:00:00+00:00,45.274078014584966 -2024-12-11 10:00:00+00:00,42.23275929878964 -2024-12-11 11:00:00+00:00,39.76248036092931 -2024-12-11 12:00:00+00:00,38.11788622705534 -2024-12-11 13:00:00+00:00,35.84963794792726 -2024-12-11 14:00:00+00:00,34.87558298729765 -2024-12-11 15:00:00+00:00,35.36998529456422 -2024-12-11 16:00:00+00:00,35.89906910477764 -2024-12-11 17:00:00+00:00,36.017054518865315 -2024-12-11 18:00:00+00:00,36.39018710903902 -2024-12-11 19:00:00+00:00,34.21853802045931 -2024-12-11 20:00:00+00:00,32.18285034593987 -2024-12-11 21:00:00+00:00,30.182300366563947 -2024-12-11 22:00:00+00:00,27.972624839843043 -2024-12-11 23:00:00+00:00,28.38533134629276 -2024-12-12 00:00:00+00:00,29.505523633300747 -2024-12-12 01:00:00+00:00,31.026093502062572 -2024-12-12 02:00:00+00:00,31.6816043629839 -2024-12-12 03:00:00+00:00,31.468873587971125 -2024-12-12 04:00:00+00:00,30.870045874404465 -2024-12-12 05:00:00+00:00,29.8731329512622 -2024-12-12 06:00:00+00:00,28.50715729824746 -2024-12-12 07:00:00+00:00,26.302046188670932 -2024-12-12 08:00:00+00:00,24.098747218777014 -2024-12-12 09:00:00+00:00,22.465512927649844 -2024-12-12 10:00:00+00:00,21.82861676027968 -2024-12-12 11:00:00+00:00,20.46493549318647 -2024-12-12 12:00:00+00:00,19.565715639892865 -2024-12-12 13:00:00+00:00,19.30900139344248 -2024-12-12 14:00:00+00:00,17.57898328329743 -2024-12-12 15:00:00+00:00,15.003583249193285 -2024-12-12 16:00:00+00:00,14.216699972612641 -2024-12-12 17:00:00+00:00,16.345733573835474 -2024-12-12 18:00:00+00:00,17.570418336945686 -2024-12-12 19:00:00+00:00,19.827949067730476 -2024-12-12 20:00:00+00:00,21.68950265993234 -2024-12-12 21:00:00+00:00,23.43856910700604 -2024-12-12 22:00:00+00:00,25.67825769194619 -2024-12-12 23:00:00+00:00,27.659852228125057 -2024-12-13 00:00:00+00:00,26.39763396590676 -2024-12-13 01:00:00+00:00,25.4584502289537 -2024-12-13 02:00:00+00:00,24.615457886690702 -2024-12-13 03:00:00+00:00,26.24862738586125 -2024-12-13 04:00:00+00:00,28.46829226131382 -2024-12-13 05:00:00+00:00,31.101327643911368 -2024-12-13 06:00:00+00:00,31.54389526273066 -2024-12-13 07:00:00+00:00,31.649576160702058 -2024-12-13 08:00:00+00:00,33.46214977640796 -2024-12-13 09:00:00+00:00,34.78765049867342 -2024-12-13 10:00:00+00:00,35.60116141671378 -2024-12-13 11:00:00+00:00,37.53271888882379 -2024-12-13 12:00:00+00:00,38.10067902269336 -2024-12-13 13:00:00+00:00,38.83146905229881 -2024-12-13 14:00:00+00:00,41.3595378826932 -2024-12-13 15:00:00+00:00,43.833675661708526 -2024-12-13 16:00:00+00:00,46.93648934516609 -2024-12-13 17:00:00+00:00,46.71847079688086 -2024-12-13 18:00:00+00:00,46.14539990395393 -2024-12-13 19:00:00+00:00,45.65625237952979 -2024-12-13 20:00:00+00:00,47.87385285396522 -2024-12-13 21:00:00+00:00,48.96095224974625 -2024-12-15 22:00:00+00:00,48.05333875954877 -2024-12-15 23:00:00+00:00,44.631175849720066 -2024-12-16 00:00:00+00:00,42.29209422909009 -2024-12-16 01:00:00+00:00,39.18706179505131 -2024-12-16 02:00:00+00:00,37.917840307079736 -2024-12-16 03:00:00+00:00,36.065073245452325 -2024-12-16 04:00:00+00:00,33.93297922676317 -2024-12-16 05:00:00+00:00,31.45516191363647 -2024-12-16 06:00:00+00:00,29.537332547133634 -2024-12-16 07:00:00+00:00,28.489306499107823 -2024-12-16 08:00:00+00:00,27.783854136741883 -2024-12-16 09:00:00+00:00,26.123725504233338 -2024-12-16 10:00:00+00:00,22.63995472652567 -2024-12-16 11:00:00+00:00,19.567794622295782 -2024-12-16 12:00:00+00:00,18.66369210656532 -2024-12-16 13:00:00+00:00,20.20242958856287 -2024-12-16 14:00:00+00:00,20.989363927516116 -2024-12-16 15:00:00+00:00,22.625712470213394 -2024-12-16 16:00:00+00:00,22.03130115111875 -2024-12-16 17:00:00+00:00,21.983307580961938 -2024-12-16 18:00:00+00:00,22.842546942838105 -2024-12-16 19:00:00+00:00,24.547053587706703 -2024-12-16 20:00:00+00:00,25.727014523734113 -2024-12-16 21:00:00+00:00,27.136817675058598 -2024-12-16 22:00:00+00:00,28.60517852923161 -2024-12-16 23:00:00+00:00,30.871755387236373 -2024-12-17 00:00:00+00:00,33.65880835742589 -2024-12-17 01:00:00+00:00,36.42777165845943 -2024-12-17 02:00:00+00:00,36.33526935605953 -2024-12-17 03:00:00+00:00,35.43525771926009 -2024-12-17 04:00:00+00:00,33.49161976684148 -2024-12-17 05:00:00+00:00,31.735897426692937 -2024-12-17 06:00:00+00:00,30.742041181877674 -2024-12-17 07:00:00+00:00,29.21172962835698 -2024-12-17 08:00:00+00:00,28.347188562988354 -2024-12-17 09:00:00+00:00,27.25524769522119 -2024-12-17 10:00:00+00:00,25.760940009977933 -2024-12-17 11:00:00+00:00,23.49630153245227 -2024-12-17 12:00:00+00:00,20.909675966168958 -2024-12-17 13:00:00+00:00,20.02611073267287 -2024-12-17 14:00:00+00:00,20.260835847406472 -2024-12-17 15:00:00+00:00,21.17465704924598 -2024-12-17 16:00:00+00:00,23.286470577641687 -2024-12-17 17:00:00+00:00,25.86533735070241 -2024-12-17 18:00:00+00:00,30.800554678234057 -2024-12-17 19:00:00+00:00,36.409048127540665 -2024-12-17 20:00:00+00:00,39.818473992609086 -2024-12-17 21:00:00+00:00,42.988196514425184 -2024-12-17 22:00:00+00:00,45.08881408425606 -2024-12-17 23:00:00+00:00,45.61632646539147 -2024-12-18 00:00:00+00:00,44.706871223041915 -2024-12-18 01:00:00+00:00,43.8903095136077 -2024-12-18 02:00:00+00:00,43.32798632548802 -2024-12-18 03:00:00+00:00,40.48657805999905 -2024-12-18 04:00:00+00:00,36.79130268619043 -2024-12-18 05:00:00+00:00,32.47306147687693 -2024-12-18 06:00:00+00:00,29.267031383967606 -2024-12-18 07:00:00+00:00,27.86128717782562 -2024-12-18 08:00:00+00:00,25.772131272100214 -2024-12-18 09:00:00+00:00,23.167755482757027 -2024-12-18 10:00:00+00:00,22.15033723835044 -2024-12-18 11:00:00+00:00,21.55953176722543 -2024-12-18 12:00:00+00:00,22.225192305735707 -2024-12-18 13:00:00+00:00,24.19593123311226 -2024-12-18 14:00:00+00:00,25.44136976078644 -2024-12-18 15:00:00+00:00,27.21567632958672 -2024-12-18 16:00:00+00:00,29.1325444852996 -2024-12-18 17:00:00+00:00,30.035659220396525 -2024-12-18 18:00:00+00:00,31.95604023929972 -2024-12-18 19:00:00+00:00,36.350186894394675 -2024-12-18 20:00:00+00:00,41.00098894297454 -2024-12-18 21:00:00+00:00,43.50055546935344 -2024-12-18 22:00:00+00:00,45.253308935604764 -2024-12-18 23:00:00+00:00,44.441401389869114 -2024-12-19 00:00:00+00:00,44.55549707448248 -2024-12-19 01:00:00+00:00,44.76266950187125 -2024-12-19 02:00:00+00:00,44.53555286990424 -2024-12-19 03:00:00+00:00,44.20141875498207 -2024-12-19 04:00:00+00:00,46.14095074283081 -2024-12-19 05:00:00+00:00,47.34453395601799 -2024-12-19 06:00:00+00:00,49.10680044065638 -2024-12-19 07:00:00+00:00,53.83229606753077 -2024-12-19 08:00:00+00:00,57.27414064161782 -2024-12-19 09:00:00+00:00,58.286332609839135 -2024-12-19 10:00:00+00:00,59.075742292508394 -2024-12-19 11:00:00+00:00,59.18186188919405 -2024-12-19 12:00:00+00:00,59.423306554994596 -2024-12-19 13:00:00+00:00,61.61605405666664 -2024-12-19 14:00:00+00:00,63.7677337346268 -2024-12-19 15:00:00+00:00,66.25498539552167 -2024-12-19 16:00:00+00:00,68.02403857185901 -2024-12-19 17:00:00+00:00,69.34148897324785 -2024-12-19 18:00:00+00:00,70.39870979350187 -2024-12-19 19:00:00+00:00,70.70376834319107 -2024-12-19 20:00:00+00:00,69.17484262968024 -2024-12-19 21:00:00+00:00,64.88014759332256 -2024-12-19 22:00:00+00:00,59.242583677911334 -2024-12-19 23:00:00+00:00,54.53957662787406 -2024-12-20 00:00:00+00:00,51.02548956215883 -2024-12-20 01:00:00+00:00,47.01167676073531 -2024-12-20 02:00:00+00:00,42.30137409411659 -2024-12-20 03:00:00+00:00,37.98614274560079 -2024-12-20 04:00:00+00:00,33.09802991845879 -2024-12-20 05:00:00+00:00,29.418076273524953 -2024-12-20 06:00:00+00:00,26.577218427454884 -2024-12-20 07:00:00+00:00,24.21962036992004 -2024-12-20 08:00:00+00:00,21.86414813285491 -2024-12-20 09:00:00+00:00,20.146608495530955 -2024-12-20 10:00:00+00:00,19.36181657625845 -2024-12-20 11:00:00+00:00,19.78364162097614 -2024-12-20 12:00:00+00:00,21.55631818196984 -2024-12-20 13:00:00+00:00,24.35964890747382 -2024-12-20 14:00:00+00:00,27.696782599718812 -2024-12-20 15:00:00+00:00,30.681339254238896 -2024-12-20 16:00:00+00:00,34.339352314510876 -2024-12-20 17:00:00+00:00,37.749684300776835 -2024-12-20 18:00:00+00:00,42.391230121144886 -2024-12-20 19:00:00+00:00,45.490190261295915 -2024-12-20 20:00:00+00:00,45.9531713915904 -2024-12-20 21:00:00+00:00,45.315874133977445 -2024-12-22 22:00:00+00:00,44.0722144374486 -2024-12-22 23:00:00+00:00,42.464414716150905 -2024-12-23 00:00:00+00:00,40.6415913074715 -2024-12-23 01:00:00+00:00,39.726558133263104 -2024-12-23 02:00:00+00:00,38.3385353133757 -2024-12-23 03:00:00+00:00,35.38309549495615 -2024-12-23 04:00:00+00:00,31.071724885258465 -2024-12-23 05:00:00+00:00,27.961978646670026 -2024-12-23 06:00:00+00:00,26.77627601687956 -2024-12-23 07:00:00+00:00,27.456687253203274 -2024-12-23 08:00:00+00:00,25.651993998442034 -2024-12-23 09:00:00+00:00,24.61473795741596 -2024-12-23 10:00:00+00:00,24.877741513582833 -2024-12-23 11:00:00+00:00,25.81048690680919 -2024-12-23 12:00:00+00:00,28.264797225197434 -2024-12-23 13:00:00+00:00,31.41639032669059 -2024-12-23 14:00:00+00:00,34.00943318553752 -2024-12-23 15:00:00+00:00,36.88236496146527 -2024-12-23 16:00:00+00:00,39.61132062450124 -2024-12-23 17:00:00+00:00,41.60810767341203 -2024-12-23 18:00:00+00:00,43.42200774006724 -2024-12-23 19:00:00+00:00,45.378092514069905 -2024-12-23 20:00:00+00:00,45.572062000808224 -2024-12-23 21:00:00+00:00,43.07864277795064 -2024-12-23 22:00:00+00:00,43.92773889065302 -2024-12-23 23:00:00+00:00,43.97210537077045 -2024-12-24 00:00:00+00:00,45.03555141691554 -2024-12-24 01:00:00+00:00,45.04367774061735 -2024-12-24 02:00:00+00:00,42.05302430428409 -2024-12-24 03:00:00+00:00,38.431711716009886 -2024-12-24 04:00:00+00:00,36.261972034444334 -2024-12-24 05:00:00+00:00,34.03388251003884 -2024-12-24 06:00:00+00:00,30.678141435128413 -2024-12-24 07:00:00+00:00,28.373421998466547 -2024-12-24 08:00:00+00:00,26.018744172279742 -2024-12-24 09:00:00+00:00,24.33418570939637 -2024-12-24 10:00:00+00:00,22.49159470664921 -2024-12-24 11:00:00+00:00,21.69379783484124 -2024-12-24 12:00:00+00:00,19.534198272100472 -2024-12-24 13:00:00+00:00,17.395800106651414 -2024-12-24 14:00:00+00:00,14.479760580442505 -2024-12-24 15:00:00+00:00,15.201013815363222 -2024-12-24 16:00:00+00:00,18.102764422390965 -2024-12-24 17:00:00+00:00,21.445254083114598 -2024-12-24 18:00:00+00:00,26.192143830004138 -2024-12-24 19:00:00+00:00,31.46294105009988 -2024-12-24 20:00:00+00:00,34.19014055465196 -2024-12-24 21:00:00+00:00,36.51938958444094 -2024-12-25 22:00:00+00:00,38.67122727342462 -2024-12-25 23:00:00+00:00,38.43694024283906 -2024-12-26 00:00:00+00:00,39.03330889476299 -2024-12-26 01:00:00+00:00,39.415961955987726 -2024-12-26 02:00:00+00:00,39.41636259701324 -2024-12-26 03:00:00+00:00,38.85128112675913 -2024-12-26 04:00:00+00:00,38.071462974809535 -2024-12-26 05:00:00+00:00,35.325759430233894 -2024-12-26 06:00:00+00:00,32.93660779976042 -2024-12-26 07:00:00+00:00,30.12870525065743 -2024-12-26 08:00:00+00:00,25.093145572240783 -2024-12-26 09:00:00+00:00,18.4661520622086 -2024-12-26 10:00:00+00:00,17.4898621265051 -2024-12-26 11:00:00+00:00,17.69391339438626 -2024-12-26 12:00:00+00:00,18.410573403883465 -2024-12-26 13:00:00+00:00,23.545646278993566 -2024-12-26 14:00:00+00:00,27.767309058004372 -2024-12-26 15:00:00+00:00,31.803767391337743 -2024-12-26 16:00:00+00:00,35.95020705653558 -2024-12-26 17:00:00+00:00,40.53393580871114 -2024-12-26 18:00:00+00:00,44.6347168406637 -2024-12-26 19:00:00+00:00,48.968390310051504 -2024-12-26 20:00:00+00:00,52.35569528335786 -2024-12-26 21:00:00+00:00,56.287324921283336 -2024-12-26 22:00:00+00:00,59.51336079017657 -2024-12-26 23:00:00+00:00,60.72929300594307 -2024-12-27 00:00:00+00:00,60.70153190150135 -2024-12-27 01:00:00+00:00,58.74503079346649 -2024-12-27 02:00:00+00:00,56.133674697013994 -2024-12-27 03:00:00+00:00,53.20338464112315 -2024-12-27 04:00:00+00:00,51.788396214862914 -2024-12-27 05:00:00+00:00,50.780900444390845 -2024-12-27 06:00:00+00:00,49.23459177610563 -2024-12-27 07:00:00+00:00,47.23407084019988 -2024-12-27 08:00:00+00:00,45.19239623133428 -2024-12-27 09:00:00+00:00,42.26415702867638 -2024-12-27 10:00:00+00:00,39.85493336977726 -2024-12-27 11:00:00+00:00,38.40476208453587 -2024-12-27 12:00:00+00:00,37.825123332483564 -2024-12-27 13:00:00+00:00,37.34581210776599 -2024-12-27 14:00:00+00:00,36.93676482548711 -2024-12-27 15:00:00+00:00,38.315101084350225 -2024-12-27 16:00:00+00:00,40.014911988095356 -2024-12-27 17:00:00+00:00,38.12029937845879 -2024-12-27 18:00:00+00:00,34.34378446416795 -2024-12-27 19:00:00+00:00,30.203509355984075 -2024-12-27 20:00:00+00:00,26.959302244583473 -2024-12-27 21:00:00+00:00,24.92977772227616 -2024-12-29 22:00:00+00:00,25.298695794621207 -2024-12-29 23:00:00+00:00,24.91927764060359 -2024-12-30 00:00:00+00:00,23.519347422716567 -2024-12-30 01:00:00+00:00,20.79352207231688 -2024-12-30 02:00:00+00:00,18.092397754615256 -2024-12-30 03:00:00+00:00,17.93469663842928 -2024-12-30 04:00:00+00:00,17.830401572152955 -2024-12-30 05:00:00+00:00,16.416991633396986 -2024-12-30 06:00:00+00:00,17.497024949989925 -2024-12-30 07:00:00+00:00,19.361729918477362 -2024-12-30 08:00:00+00:00,21.736222435984512 -2024-12-30 09:00:00+00:00,23.817876388898124 -2024-12-30 10:00:00+00:00,24.44242235928328 -2024-12-30 11:00:00+00:00,23.081219256257192 -2024-12-30 12:00:00+00:00,20.827385252720365 -2024-12-30 13:00:00+00:00,19.740167529318622 -2024-12-30 14:00:00+00:00,22.258691039079558 -2024-12-30 15:00:00+00:00,25.780356258181467 -2024-12-30 16:00:00+00:00,29.225581135032275 -2024-12-30 17:00:00+00:00,31.9811230069535 -2024-12-30 18:00:00+00:00,34.55592358129462 -2024-12-30 19:00:00+00:00,38.34405278291261 -2024-12-30 20:00:00+00:00,40.58351634627089 -2024-12-30 21:00:00+00:00,43.53760451162685 -2024-12-30 22:00:00+00:00,46.29016609010633 -2024-12-30 23:00:00+00:00,48.59991030166861 -2024-12-31 00:00:00+00:00,52.08293472087009 -2024-12-31 01:00:00+00:00,57.129132304381 -2024-12-31 02:00:00+00:00,61.802305921654 -2024-12-31 03:00:00+00:00,66.44029574376368 -2024-12-31 04:00:00+00:00,68.16203876266631 -2024-12-31 05:00:00+00:00,68.51896548658029 -2024-12-31 06:00:00+00:00,68.09174106253975 -2024-12-31 07:00:00+00:00,68.5438509084873 -2024-12-31 08:00:00+00:00,68.4479464480668 -2024-12-31 09:00:00+00:00,64.79986085309396 -2024-12-31 10:00:00+00:00,59.551653334064554 -2024-12-31 11:00:00+00:00,54.545872446774936 -2024-12-31 12:00:00+00:00,49.112558366838314 -2024-12-31 13:00:00+00:00,44.50782403574154 -2024-12-31 14:00:00+00:00,39.93137466054918 -2024-12-31 15:00:00+00:00,37.18332876191819 -2024-12-31 16:00:00+00:00,35.01712687743802 -2024-12-31 17:00:00+00:00,33.31454662540124 -2024-12-31 18:00:00+00:00,32.43343013996418 -2024-12-31 19:00:00+00:00,32.22085964812931 -2024-12-31 20:00:00+00:00,32.85120428708273 -2024-12-31 21:00:00+00:00,32.73659730132895 -2025-01-01 22:00:00+00:00,33.185276470516506 -2025-01-01 23:00:00+00:00,36.36097850001348 -2025-01-02 00:00:00+00:00,39.64760800812832 -2025-01-02 01:00:00+00:00,42.252593591047194 -2025-01-02 02:00:00+00:00,44.862904321971996 -2025-01-02 03:00:00+00:00,45.8713327958202 -2025-01-02 04:00:00+00:00,46.80616445412896 -2025-01-02 05:00:00+00:00,45.48938140113142 -2025-01-02 06:00:00+00:00,43.82096805568319 -2025-01-02 07:00:00+00:00,43.12682937171602 -2025-01-02 08:00:00+00:00,41.14530672002894 -2025-01-02 09:00:00+00:00,38.61968066462611 -2025-01-02 10:00:00+00:00,35.39236562807151 -2025-01-02 11:00:00+00:00,31.505639969950288 -2025-01-02 12:00:00+00:00,27.427443637220005 -2025-01-02 13:00:00+00:00,26.41798594519306 -2025-01-02 14:00:00+00:00,26.084231910022822 -2025-01-02 15:00:00+00:00,25.242621424775074 -2025-01-02 16:00:00+00:00,22.365051696434023 -2025-01-02 17:00:00+00:00,21.572311594083494 -2025-01-02 18:00:00+00:00,21.10732729699908 -2025-01-02 19:00:00+00:00,20.91449066151853 -2025-01-02 20:00:00+00:00,21.805510875895774 -2025-01-02 21:00:00+00:00,22.096556505585124 -2025-01-02 22:00:00+00:00,22.627421580999563 -2025-01-02 23:00:00+00:00,22.85658467055265 -2025-01-03 00:00:00+00:00,22.208753346348875 -2025-01-03 01:00:00+00:00,22.522840282021892 -2025-01-03 02:00:00+00:00,22.83066905128128 -2025-01-03 03:00:00+00:00,21.24024473574635 -2025-01-03 04:00:00+00:00,20.657211306115805 -2025-01-03 05:00:00+00:00,20.642380670826764 -2025-01-03 06:00:00+00:00,23.81226476767429 -2025-01-03 07:00:00+00:00,28.470332250976956 -2025-01-03 08:00:00+00:00,30.12817944804882 -2025-01-03 09:00:00+00:00,32.5930465046195 -2025-01-03 10:00:00+00:00,32.96804980110803 -2025-01-03 11:00:00+00:00,32.03943887077232 -2025-01-03 12:00:00+00:00,32.09530636084288 -2025-01-03 13:00:00+00:00,32.5896770818564 -2025-01-03 14:00:00+00:00,32.60281386234761 -2025-01-03 15:00:00+00:00,33.5622775509707 -2025-01-03 16:00:00+00:00,35.14160499236699 -2025-01-03 17:00:00+00:00,34.58832839273343 -2025-01-03 18:00:00+00:00,33.007328742170714 -2025-01-03 19:00:00+00:00,31.71787999628128 -2025-01-03 20:00:00+00:00,28.70421737845978 -2025-01-03 21:00:00+00:00,24.284827510481616 -2025-01-05 22:00:00+00:00,22.192682019641175 -2025-01-05 23:00:00+00:00,19.21450677393141 -2025-01-06 00:00:00+00:00,18.283971109712596 -2025-01-06 01:00:00+00:00,17.692684463979433 -2025-01-06 02:00:00+00:00,17.871550557870254 -2025-01-06 03:00:00+00:00,18.695142718614704 -2025-01-06 04:00:00+00:00,21.52368303343235 -2025-01-06 05:00:00+00:00,22.75368063836578 -2025-01-06 06:00:00+00:00,22.611091409277176 -2025-01-06 07:00:00+00:00,25.389365935265 -2025-01-06 08:00:00+00:00,28.157909706935566 -2025-01-06 09:00:00+00:00,30.647229037670513 -2025-01-06 10:00:00+00:00,34.26786785558358 -2025-01-06 11:00:00+00:00,33.54040621980262 -2025-01-06 12:00:00+00:00,34.39935641080174 -2025-01-06 13:00:00+00:00,36.806051727641595 -2025-01-06 14:00:00+00:00,36.84031490437096 -2025-01-06 15:00:00+00:00,36.227197604077865 -2025-01-06 16:00:00+00:00,34.76792242285479 -2025-01-06 17:00:00+00:00,33.07582092668755 -2025-01-06 18:00:00+00:00,31.35389365567527 -2025-01-06 19:00:00+00:00,30.183561339691657 -2025-01-06 20:00:00+00:00,29.431793692482156 -2025-01-06 21:00:00+00:00,26.304913322670465 -2025-01-06 22:00:00+00:00,23.38264345853324 -2025-01-06 23:00:00+00:00,20.23047619531956 -2025-01-07 00:00:00+00:00,16.562096262402587 -2025-01-07 01:00:00+00:00,18.442793076461832 -2025-01-07 02:00:00+00:00,22.024478622632834 -2025-01-07 03:00:00+00:00,26.577307500637556 -2025-01-07 04:00:00+00:00,31.53659856870265 -2025-01-07 05:00:00+00:00,34.352001243448306 -2025-01-07 06:00:00+00:00,35.9268736740284 -2025-01-07 07:00:00+00:00,35.95004122593134 -2025-01-07 08:00:00+00:00,35.60952687532496 -2025-01-07 09:00:00+00:00,35.30738895561607 -2025-01-07 10:00:00+00:00,35.4418575720256 -2025-01-07 11:00:00+00:00,36.03018103981335 -2025-01-07 12:00:00+00:00,36.53031711668476 -2025-01-07 13:00:00+00:00,36.476058433220636 -2025-01-07 14:00:00+00:00,37.74717851929678 -2025-01-07 15:00:00+00:00,36.332619577390325 -2025-01-07 16:00:00+00:00,31.651426031916426 -2025-01-07 17:00:00+00:00,24.319273040025507 -2025-01-07 18:00:00+00:00,18.017205479123806 -2025-01-07 19:00:00+00:00,15.535626291464329 -2025-01-07 20:00:00+00:00,14.351654941184007 -2025-01-07 21:00:00+00:00,16.89170253329015 -2025-01-07 22:00:00+00:00,20.350999617121705 -2025-01-07 23:00:00+00:00,23.889552584777512 -2025-01-08 00:00:00+00:00,26.023645033883692 -2025-01-08 01:00:00+00:00,28.034190221574622 -2025-01-08 02:00:00+00:00,29.817818392469288 -2025-01-08 03:00:00+00:00,33.71089200664886 -2025-01-08 04:00:00+00:00,36.69769636694708 -2025-01-08 05:00:00+00:00,37.58658440909436 -2025-01-08 06:00:00+00:00,39.233058135103654 -2025-01-08 07:00:00+00:00,40.34361875021033 -2025-01-08 08:00:00+00:00,41.74469699095107 -2025-01-08 09:00:00+00:00,42.079118953350886 -2025-01-08 10:00:00+00:00,42.52657012225414 -2025-01-08 11:00:00+00:00,40.67507535663206 -2025-01-08 12:00:00+00:00,38.62059995720892 -2025-01-08 13:00:00+00:00,34.12434115038559 -2025-01-08 14:00:00+00:00,31.55851833566108 -2025-01-08 15:00:00+00:00,28.427068589120292 -2025-01-08 16:00:00+00:00,25.442217490667975 -2025-01-08 17:00:00+00:00,21.369029623439236 -2025-01-08 18:00:00+00:00,17.28628797807335 -2025-01-08 19:00:00+00:00,16.039676252772882 -2025-01-08 20:00:00+00:00,15.052828453007026 -2025-01-08 21:00:00+00:00,15.570881028030469 -2025-01-08 22:00:00+00:00,14.237928274584243 -2025-01-08 23:00:00+00:00,13.224625467968414 -2025-01-09 00:00:00+00:00,13.3291342613332 -2025-01-09 01:00:00+00:00,17.10540859781649 -2025-01-09 02:00:00+00:00,20.802880190252107 -2025-01-09 03:00:00+00:00,26.5560716102625 -2025-01-09 04:00:00+00:00,31.824540127597007 -2025-01-09 05:00:00+00:00,34.44424100296023 -2025-01-09 06:00:00+00:00,36.63281375531344 -2025-01-09 07:00:00+00:00,39.43989427577633 -2025-01-09 08:00:00+00:00,41.19028924201233 -2025-01-09 09:00:00+00:00,43.41535627978864 -2025-01-09 10:00:00+00:00,45.06681629088636 -2025-01-09 11:00:00+00:00,46.552429169578375 -2025-01-09 12:00:00+00:00,49.58662120083282 -2025-01-09 13:00:00+00:00,52.49200763770399 -2025-01-09 14:00:00+00:00,53.21221302875792 -2025-01-09 15:00:00+00:00,49.31560769583742 -2025-01-09 16:00:00+00:00,44.59510863058639 -2025-01-09 17:00:00+00:00,39.00493024926072 -2025-01-09 18:00:00+00:00,33.79366715867689 -2025-01-09 19:00:00+00:00,31.17262126445622 -2025-01-09 20:00:00+00:00,29.207736364482447 -2025-01-09 21:00:00+00:00,26.603425986719365 -2025-01-09 22:00:00+00:00,25.42945585340985 -2025-01-09 23:00:00+00:00,24.144268438085486 -2025-01-10 00:00:00+00:00,21.713540049168877 -2025-01-10 01:00:00+00:00,19.153421631936826 -2025-01-10 02:00:00+00:00,19.030814449529398 -2025-01-10 03:00:00+00:00,20.004271541097747 -2025-01-10 04:00:00+00:00,21.795728960611335 -2025-01-10 05:00:00+00:00,24.287001515490545 -2025-01-10 06:00:00+00:00,26.517889910452876 -2025-01-10 07:00:00+00:00,28.527942250277015 -2025-01-10 08:00:00+00:00,29.830705617383238 -2025-01-10 09:00:00+00:00,32.22469918037108 -2025-01-10 10:00:00+00:00,33.01567572980529 -2025-01-10 11:00:00+00:00,33.81455327530715 -2025-01-10 12:00:00+00:00,34.87672174219894 -2025-01-10 13:00:00+00:00,35.38959933655498 -2025-01-10 14:00:00+00:00,36.188462802322455 -2025-01-10 15:00:00+00:00,35.94648660913174 -2025-01-10 16:00:00+00:00,34.26785707520455 -2025-01-10 17:00:00+00:00,31.34154910644318 -2025-01-10 18:00:00+00:00,27.962907705551906 -2025-01-10 19:00:00+00:00,24.862136584974422 -2025-01-10 20:00:00+00:00,22.65208935734699 -2025-01-10 21:00:00+00:00,21.922130490260283 -2025-01-12 22:00:00+00:00,19.782944781454834 -2025-01-12 23:00:00+00:00,17.949116645037794 -2025-01-13 00:00:00+00:00,16.815746844918145 -2025-01-13 01:00:00+00:00,17.011899241557792 -2025-01-13 02:00:00+00:00,15.965323721504122 -2025-01-13 03:00:00+00:00,20.98278027897762 -2025-01-13 04:00:00+00:00,26.64707254530182 -2025-01-13 05:00:00+00:00,32.637713795912795 -2025-01-13 06:00:00+00:00,32.61765282510762 -2025-01-13 07:00:00+00:00,33.37062901558423 -2025-01-13 08:00:00+00:00,34.579285331838356 -2025-01-13 09:00:00+00:00,37.27619917405981 -2025-01-13 10:00:00+00:00,40.16263124133716 -2025-01-13 11:00:00+00:00,42.16233440266935 -2025-01-13 12:00:00+00:00,46.58482577823946 -2025-01-13 13:00:00+00:00,50.97946101725211 -2025-01-13 14:00:00+00:00,54.40754365703585 -2025-01-13 15:00:00+00:00,53.75793871292568 -2025-01-13 16:00:00+00:00,53.204332903467844 -2025-01-13 17:00:00+00:00,47.357112667425746 -2025-01-13 18:00:00+00:00,41.590684061874505 -2025-01-13 19:00:00+00:00,35.85903275156143 -2025-01-13 20:00:00+00:00,34.68891003807404 -2025-01-13 21:00:00+00:00,32.475692587134795 -2025-01-13 22:00:00+00:00,30.898967871021664 -2025-01-13 23:00:00+00:00,27.04731237983389 -2025-01-14 00:00:00+00:00,23.05444870984554 -2025-01-14 01:00:00+00:00,20.93048826622203 -2025-01-14 02:00:00+00:00,20.49789598863246 -2025-01-14 03:00:00+00:00,19.393991221018897 -2025-01-14 04:00:00+00:00,18.995263276851485 -2025-01-14 05:00:00+00:00,21.413849523231313 -2025-01-14 06:00:00+00:00,23.76317723056127 -2025-01-14 07:00:00+00:00,25.50274777317282 -2025-01-14 08:00:00+00:00,27.772034319220854 -2025-01-14 09:00:00+00:00,30.292136642123047 -2025-01-14 10:00:00+00:00,32.91282911803584 -2025-01-14 11:00:00+00:00,36.96219879759924 -2025-01-14 12:00:00+00:00,42.585655902133894 -2025-01-14 13:00:00+00:00,46.09215233585943 -2025-01-14 14:00:00+00:00,49.39524032090045 -2025-01-14 15:00:00+00:00,50.94044504007552 -2025-01-14 16:00:00+00:00,47.9639409351035 -2025-01-14 17:00:00+00:00,45.2358646686245 -2025-01-14 18:00:00+00:00,43.39974730516054 -2025-01-14 19:00:00+00:00,40.70457262511879 -2025-01-14 20:00:00+00:00,38.51155375951463 -2025-01-14 21:00:00+00:00,37.38466725316369 -2025-01-14 22:00:00+00:00,35.09083039780119 -2025-01-14 23:00:00+00:00,33.0269120080691 -2025-01-15 00:00:00+00:00,30.781884000845956 -2025-01-15 01:00:00+00:00,27.879542972758006 -2025-01-15 02:00:00+00:00,23.728218272757537 -2025-01-15 03:00:00+00:00,21.09714430414297 -2025-01-15 04:00:00+00:00,19.11230977233296 -2025-01-15 05:00:00+00:00,22.328598045875946 -2025-01-15 06:00:00+00:00,26.30102245463206 -2025-01-15 07:00:00+00:00,31.84177686798322 -2025-01-15 08:00:00+00:00,36.726656260964845 -2025-01-15 09:00:00+00:00,42.488475875354865 -2025-01-15 10:00:00+00:00,48.30469259272023 -2025-01-15 11:00:00+00:00,52.09844544074959 -2025-01-15 12:00:00+00:00,56.950387361928314 -2025-01-15 13:00:00+00:00,61.97793095254673 -2025-01-15 14:00:00+00:00,67.41626116503097 -2025-01-15 15:00:00+00:00,72.03826473226208 -2025-01-15 16:00:00+00:00,74.22730500403246 -2025-01-15 17:00:00+00:00,78.47446388318417 -2025-01-15 18:00:00+00:00,82.20765421401465 -2025-01-15 19:00:00+00:00,80.94976685118023 -2025-01-15 20:00:00+00:00,81.0004366579342 -2025-01-15 21:00:00+00:00,78.08892947757386 -2025-01-15 22:00:00+00:00,75.6700732319151 -2025-01-15 23:00:00+00:00,73.5250661834903 -2025-01-16 00:00:00+00:00,70.67268707087534 -2025-01-16 01:00:00+00:00,70.57132578942603 -2025-01-16 02:00:00+00:00,70.18615452190177 -2025-01-16 03:00:00+00:00,68.34152762366007 -2025-01-16 04:00:00+00:00,65.15869686343395 -2025-01-16 05:00:00+00:00,61.96090873328764 -2025-01-16 06:00:00+00:00,59.93943983472961 -2025-01-16 07:00:00+00:00,56.6599065543586 -2025-01-16 08:00:00+00:00,53.74570725049472 -2025-01-16 09:00:00+00:00,51.67380006037798 -2025-01-16 10:00:00+00:00,49.36789990797392 -2025-01-16 11:00:00+00:00,47.832613452966605 -2025-01-16 12:00:00+00:00,44.96334824697076 -2025-01-16 13:00:00+00:00,41.04054317649942 -2025-01-16 14:00:00+00:00,38.098996506565705 -2025-01-16 15:00:00+00:00,32.88402072687447 -2025-01-16 16:00:00+00:00,27.527631270412844 -2025-01-16 17:00:00+00:00,23.635210560763806 -2025-01-16 18:00:00+00:00,21.424494646067046 -2025-01-16 19:00:00+00:00,20.31163052780844 -2025-01-16 20:00:00+00:00,20.105116584967096 -2025-01-16 21:00:00+00:00,20.68671227224998 -2025-01-16 22:00:00+00:00,20.566142490211494 -2025-01-16 23:00:00+00:00,18.187481366143345 -2025-01-17 00:00:00+00:00,16.729160790885835 -2025-01-17 01:00:00+00:00,16.76439840746031 -2025-01-17 02:00:00+00:00,19.911299516923293 -2025-01-17 03:00:00+00:00,25.582504467467324 -2025-01-17 04:00:00+00:00,30.710729446661073 -2025-01-17 05:00:00+00:00,32.721614682246404 -2025-01-17 06:00:00+00:00,33.59580873035478 -2025-01-17 07:00:00+00:00,34.70549667805815 -2025-01-17 08:00:00+00:00,34.30723553662445 -2025-01-17 09:00:00+00:00,34.14246724660483 -2025-01-17 10:00:00+00:00,32.58783988038595 -2025-01-17 11:00:00+00:00,31.70357343339953 -2025-01-17 12:00:00+00:00,30.801120126290012 -2025-01-17 13:00:00+00:00,30.58444517616075 -2025-01-17 14:00:00+00:00,33.687187705837296 -2025-01-17 15:00:00+00:00,35.714601961982076 -2025-01-17 16:00:00+00:00,36.30294139861474 -2025-01-17 17:00:00+00:00,35.12744972691838 -2025-01-17 18:00:00+00:00,33.26943861881871 -2025-01-17 19:00:00+00:00,34.491036899071396 -2025-01-17 20:00:00+00:00,36.38650742209172 -2025-01-17 21:00:00+00:00,37.975146346872585 -2025-01-19 22:00:00+00:00,41.86909906527102 -2025-01-19 23:00:00+00:00,45.1271673485928 -2025-01-20 00:00:00+00:00,46.67109269922882 -2025-01-20 01:00:00+00:00,46.596281182202056 -2025-01-20 02:00:00+00:00,47.41983043718602 -2025-01-20 03:00:00+00:00,48.55547159308126 -2025-01-20 04:00:00+00:00,44.611307900771884 -2025-01-20 05:00:00+00:00,40.0831888969542 -2025-01-20 06:00:00+00:00,35.76251080445415 -2025-01-20 07:00:00+00:00,31.110563818763328 -2025-01-20 08:00:00+00:00,27.955540797105098 -2025-01-20 09:00:00+00:00,26.09606828532938 -2025-01-20 10:00:00+00:00,24.990326747410222 -2025-01-20 11:00:00+00:00,23.265633400860597 -2025-01-20 12:00:00+00:00,19.923530083132253 -2025-01-20 13:00:00+00:00,17.56241386511879 -2025-01-20 14:00:00+00:00,17.373328966255453 -2025-01-20 15:00:00+00:00,17.546351428910505 -2025-01-20 16:00:00+00:00,17.16411954036436 -2025-01-20 17:00:00+00:00,16.20300088988134 -2025-01-20 18:00:00+00:00,16.19567015007183 -2025-01-20 19:00:00+00:00,16.290155346468847 -2025-01-20 20:00:00+00:00,16.8964347287367 -2025-01-20 21:00:00+00:00,17.928942351093436 -2025-01-20 22:00:00+00:00,18.218774417994773 -2025-01-20 23:00:00+00:00,19.883185043946394 -2025-01-21 00:00:00+00:00,18.924841165101345 -2025-01-21 01:00:00+00:00,18.597811270574713 -2025-01-21 02:00:00+00:00,19.661944063505466 -2025-01-21 03:00:00+00:00,18.693002231267904 -2025-01-21 04:00:00+00:00,17.004667685712402 -2025-01-21 05:00:00+00:00,15.295493967703234 -2025-01-21 06:00:00+00:00,13.733750868924602 -2025-01-21 07:00:00+00:00,13.504176118018416 -2025-01-21 08:00:00+00:00,13.354708429374663 -2025-01-21 09:00:00+00:00,13.759900275105633 -2025-01-21 10:00:00+00:00,13.61924882561683 -2025-01-21 11:00:00+00:00,13.37015223024898 -2025-01-21 12:00:00+00:00,12.711398711465046 -2025-01-21 13:00:00+00:00,10.364208061061168 -2025-01-21 14:00:00+00:00,11.320624617382748 -2025-01-21 15:00:00+00:00,11.9130279880326 -2025-01-21 16:00:00+00:00,10.065002563226903 -2025-01-21 17:00:00+00:00,10.003932469343113 -2025-01-21 18:00:00+00:00,10.874232281606934 -2025-01-21 19:00:00+00:00,11.581491264728113 -2025-01-21 20:00:00+00:00,11.648856485810038 -2025-01-21 21:00:00+00:00,13.671445173056862 -2025-01-21 22:00:00+00:00,15.981238507035645 -2025-01-21 23:00:00+00:00,16.924186536449902 -2025-01-22 00:00:00+00:00,18.389952852722452 -2025-01-22 01:00:00+00:00,20.803746387880615 -2025-01-22 02:00:00+00:00,22.73131677118516 -2025-01-22 03:00:00+00:00,23.323660973614913 -2025-01-22 04:00:00+00:00,24.15728555738602 -2025-01-22 05:00:00+00:00,26.334170421724867 -2025-01-22 06:00:00+00:00,27.81010165940714 -2025-01-22 07:00:00+00:00,28.839902228821337 -2025-01-22 08:00:00+00:00,27.463995419743533 -2025-01-22 09:00:00+00:00,27.448764939744763 -2025-01-22 10:00:00+00:00,27.911242849247447 -2025-01-22 11:00:00+00:00,27.407956462759746 -2025-01-22 12:00:00+00:00,27.3715804508827 -2025-01-22 13:00:00+00:00,26.531961250069504 -2025-01-22 14:00:00+00:00,26.925153034957606 -2025-01-22 15:00:00+00:00,27.29976152676093 -2025-01-22 16:00:00+00:00,29.202770874720496 -2025-01-22 17:00:00+00:00,31.730853513938488 -2025-01-22 18:00:00+00:00,32.64987625683717 -2025-01-22 19:00:00+00:00,31.949505271839346 -2025-01-22 20:00:00+00:00,33.91329905381526 -2025-01-22 21:00:00+00:00,35.17128316349006 -2025-01-22 22:00:00+00:00,39.98406540873741 -2025-01-22 23:00:00+00:00,43.1476264853426 -2025-01-23 00:00:00+00:00,45.91566673305231 -2025-01-23 01:00:00+00:00,47.701234196899854 -2025-01-23 02:00:00+00:00,48.33343949695268 -2025-01-23 03:00:00+00:00,51.67131116659498 -2025-01-23 04:00:00+00:00,52.2902048844226 -2025-01-23 05:00:00+00:00,51.67398163093482 -2025-01-23 06:00:00+00:00,48.30556062414291 -2025-01-23 07:00:00+00:00,44.5911742221277 -2025-01-23 08:00:00+00:00,41.38387678351347 -2025-01-23 09:00:00+00:00,39.018612804672344 -2025-01-23 10:00:00+00:00,36.913225456445446 -2025-01-23 11:00:00+00:00,33.98993265943865 -2025-01-23 12:00:00+00:00,29.250712092354092 -2025-01-23 13:00:00+00:00,26.595383294167647 -2025-01-23 14:00:00+00:00,24.194364718379223 -2025-01-23 15:00:00+00:00,22.03304339098096 -2025-01-23 16:00:00+00:00,21.713580494314222 -2025-01-23 17:00:00+00:00,20.671555925788248 -2025-01-23 18:00:00+00:00,20.561495889853372 -2025-01-23 19:00:00+00:00,22.317873929512096 -2025-01-23 20:00:00+00:00,26.21677468673233 -2025-01-23 21:00:00+00:00,29.564123899001725 -2025-01-23 22:00:00+00:00,32.648611332582696 -2025-01-23 23:00:00+00:00,33.910189182395975 -2025-01-24 00:00:00+00:00,32.974620396650536 -2025-01-24 01:00:00+00:00,33.50649968625082 -2025-01-24 02:00:00+00:00,35.766439567072794 -2025-01-24 03:00:00+00:00,37.44079741937596 -2025-01-24 04:00:00+00:00,40.194998881524825 -2025-01-24 05:00:00+00:00,43.43879103357916 -2025-01-24 06:00:00+00:00,42.99860321055707 -2025-01-24 07:00:00+00:00,43.13780450799508 -2025-01-24 08:00:00+00:00,43.408926322759484 -2025-01-24 09:00:00+00:00,41.056352251717286 -2025-01-24 10:00:00+00:00,37.59400246040976 -2025-01-24 11:00:00+00:00,35.16707753483414 -2025-01-24 12:00:00+00:00,31.89260645608021 -2025-01-24 13:00:00+00:00,29.848445730121217 diff --git a/indicators_directory/USD_JPY_ATR.csv b/indicators_directory/USD_JPY_ATR.csv deleted file mode 100644 index 4859712..0000000 --- a/indicators_directory/USD_JPY_ATR.csv +++ /dev/null @@ -1,5001 +0,0 @@ -time,ATR -2024-04-05 03:00:00+00:00, -2024-04-05 04:00:00+00:00, -2024-04-05 05:00:00+00:00, -2024-04-05 06:00:00+00:00, -2024-04-05 07:00:00+00:00, -2024-04-05 08:00:00+00:00, -2024-04-05 09:00:00+00:00, -2024-04-05 10:00:00+00:00, -2024-04-05 11:00:00+00:00, -2024-04-05 12:00:00+00:00, -2024-04-05 13:00:00+00:00, -2024-04-05 14:00:00+00:00, -2024-04-05 15:00:00+00:00, -2024-04-05 16:00:00+00:00, -2024-04-05 17:00:00+00:00,0.14964285714285705 -2024-04-05 18:00:00+00:00,0.14678571428571477 -2024-04-05 19:00:00+00:00,0.14828571428571383 -2024-04-05 20:00:00+00:00,0.13692857142857154 -2024-04-07 21:00:00+00:00,0.12657142857142795 -2024-04-07 22:00:00+00:00,0.12478571428571124 -2024-04-07 23:00:00+00:00,0.12321428571428328 -2024-04-08 00:00:00+00:00,0.12421428571428399 -2024-04-08 01:00:00+00:00,0.12885714285714098 -2024-04-08 02:00:00+00:00,0.1019285714285709 -2024-04-08 03:00:00+00:00,0.09350000000000185 -2024-04-08 04:00:00+00:00,0.08092857142857415 -2024-04-08 05:00:00+00:00,0.07450000000000248 -2024-04-08 06:00:00+00:00,0.07357142857143069 -2024-04-08 07:00:00+00:00,0.07728571428571586 -2024-04-08 08:00:00+00:00,0.07871428571428599 -2024-04-08 09:00:00+00:00,0.0749285714285719 -2024-04-08 10:00:00+00:00,0.07635714285714203 -2024-04-08 11:00:00+00:00,0.07871428571428599 -2024-04-08 12:00:00+00:00,0.07664285714285768 -2024-04-08 13:00:00+00:00,0.08442857142857056 -2024-04-08 14:00:00+00:00,0.084857142857142 -2024-04-08 15:00:00+00:00,0.08064285714285647 -2024-04-08 16:00:00+00:00,0.07814285714285672 -2024-04-08 17:00:00+00:00,0.08199999999999973 -2024-04-08 18:00:00+00:00,0.08542857142857128 -2024-04-08 19:00:00+00:00,0.08814285714285777 -2024-04-08 20:00:00+00:00,0.0845714285714284 -2024-04-08 21:00:00+00:00,0.07957142857142888 -2024-04-08 22:00:00+00:00,0.07728571428571789 -2024-04-08 23:00:00+00:00,0.07664285714286175 -2024-04-09 00:00:00+00:00,0.08142857142857654 -2024-04-09 01:00:00+00:00,0.08014285714286018 -2024-04-09 02:00:00+00:00,0.07942857142857511 -2024-04-09 03:00:00+00:00,0.07100000000000405 -2024-04-09 04:00:00+00:00,0.06614285714286032 -2024-04-09 05:00:00+00:00,0.06264285714285782 -2024-04-09 06:00:00+00:00,0.061499999999999284 -2024-04-09 07:00:00+00:00,0.05871428571428388 -2024-04-09 08:00:00+00:00,0.05671428571428245 -2024-04-09 09:00:00+00:00,0.062428571428567024 -2024-04-09 10:00:00+00:00,0.06592857142856749 -2024-04-09 11:00:00+00:00,0.06764285714285327 -2024-04-09 12:00:00+00:00,0.07214285714285243 -2024-04-09 13:00:00+00:00,0.07457142857142328 -2024-04-09 14:00:00+00:00,0.07942857142856699 -2024-04-09 15:00:00+00:00,0.08285714285714059 -2024-04-09 16:00:00+00:00,0.08364285714285456 -2024-04-09 17:00:00+00:00,0.08557142857142708 -2024-04-09 18:00:00+00:00,0.08614285714285634 -2024-04-09 19:00:00+00:00,0.08792857142857104 -2024-04-09 20:00:00+00:00,0.08799999999999995 -2024-04-09 21:00:00+00:00,0.0867857142857125 -2024-04-09 22:00:00+00:00,0.08678571428571454 -2024-04-09 23:00:00+00:00,0.07807142857142983 -2024-04-10 00:00:00+00:00,0.07985714285714453 -2024-04-10 01:00:00+00:00,0.07971428571428671 -2024-04-10 02:00:00+00:00,0.077142857142856 -2024-04-10 03:00:00+00:00,0.07378571428571336 -2024-04-10 04:00:00+00:00,0.06278571428571159 -2024-04-10 05:00:00+00:00,0.05835714285713932 -2024-04-10 06:00:00+00:00,0.05485714285714088 -2024-04-10 07:00:00+00:00,0.054499999999996315 -2024-04-10 08:00:00+00:00,0.054785714285709934 -2024-04-10 09:00:00+00:00,0.05357142857142451 -2024-04-10 10:00:00+00:00,0.054571428571425225 -2024-04-10 11:00:00+00:00,0.054571428571425225 -2024-04-10 12:00:00+00:00,0.10442857142856658 -2024-04-10 13:00:00+00:00,0.12442857142856667 -2024-04-10 14:00:00+00:00,0.1314285714285656 -2024-04-10 15:00:00+00:00,0.1404999999999928 -2024-04-10 16:00:00+00:00,0.14214285714285171 -2024-04-10 17:00:00+00:00,0.1639999999999954 -2024-04-10 18:00:00+00:00,0.17685714285713874 -2024-04-10 19:00:00+00:00,0.177428571428568 -2024-04-10 20:00:00+00:00,0.19528571428571087 -2024-04-10 21:00:00+00:00,0.205214285714283 -2024-04-10 22:00:00+00:00,0.21028571428571144 -2024-04-10 23:00:00+00:00,0.21892857142856922 -2024-04-11 00:00:00+00:00,0.2292857142857108 -2024-04-11 01:00:00+00:00,0.23685714285713896 -2024-04-11 02:00:00+00:00,0.18892857142857014 -2024-04-11 03:00:00+00:00,0.1752857142857128 -2024-04-11 04:00:00+00:00,0.1685714285714275 -2024-04-11 05:00:00+00:00,0.16071428571428573 -2024-04-11 06:00:00+00:00,0.17071428571428474 -2024-04-11 07:00:00+00:00,0.1551428571428549 -2024-04-11 08:00:00+00:00,0.1528571428571419 -2024-04-11 09:00:00+00:00,0.15828571428571284 -2024-04-11 10:00:00+00:00,0.14599999999999877 -2024-04-11 11:00:00+00:00,0.14357142857142793 -2024-04-11 12:00:00+00:00,0.16614285714285668 -2024-04-11 13:00:00+00:00,0.17671428571428496 -2024-04-11 14:00:00+00:00,0.17371428571428688 -2024-04-11 15:00:00+00:00,0.17257142857143037 -2024-04-11 16:00:00+00:00,0.17607142857142882 -2024-04-11 17:00:00+00:00,0.17321428571428651 -2024-04-11 18:00:00+00:00,0.1768571428571428 -2024-04-11 19:00:00+00:00,0.1770714285714275 -2024-04-11 20:00:00+00:00,0.16721428571428426 -2024-04-11 21:00:00+00:00,0.16228571428571367 -2024-04-11 22:00:00+00:00,0.15328571428571333 -2024-04-11 23:00:00+00:00,0.1503571428571401 -2024-04-12 00:00:00+00:00,0.16585714285713898 -2024-04-12 01:00:00+00:00,0.16328571428571031 -2024-04-12 02:00:00+00:00,0.14128571428571085 -2024-04-12 03:00:00+00:00,0.12457142857142653 -2024-04-12 04:00:00+00:00,0.11957142857142498 -2024-04-12 05:00:00+00:00,0.11835714285714159 -2024-04-12 06:00:00+00:00,0.11564285714285509 -2024-04-12 07:00:00+00:00,0.11978571428571172 -2024-04-12 08:00:00+00:00,0.11578571428571292 -2024-04-12 09:00:00+00:00,0.11571428571428603 -2024-04-12 10:00:00+00:00,0.1151428571428588 -2024-04-12 11:00:00+00:00,0.1210000000000012 -2024-04-12 12:00:00+00:00,0.14442857142857082 -2024-04-12 13:00:00+00:00,0.17400000000000052 -2024-04-12 14:00:00+00:00,0.1701428571428575 -2024-04-12 15:00:00+00:00,0.17907142857142894 -2024-04-12 16:00:00+00:00,0.17671428571428496 -2024-04-12 17:00:00+00:00,0.1779999999999993 -2024-04-12 18:00:00+00:00,0.1781428571428551 -2024-04-12 19:00:00+00:00,0.1747857142857104 -2024-04-12 20:00:00+00:00,0.17692857142856763 -2024-04-14 21:00:00+00:00,0.18157142857142464 -2024-04-14 22:00:00+00:00,0.18657142857142414 -2024-04-14 23:00:00+00:00,0.18671428571428197 -2024-04-15 00:00:00+00:00,0.1938571428571387 -2024-04-15 01:00:00+00:00,0.2008571428571376 -2024-04-15 02:00:00+00:00,0.18778571428571159 -2024-04-15 03:00:00+00:00,0.15785714285713937 -2024-04-15 04:00:00+00:00,0.15064285714285372 -2024-04-15 05:00:00+00:00,0.1377857142857124 -2024-04-15 06:00:00+00:00,0.13935714285714035 -2024-04-15 07:00:00+00:00,0.13978571428570977 -2024-04-15 08:00:00+00:00,0.1512857142857119 -2024-04-15 09:00:00+00:00,0.15642857142856922 -2024-04-15 10:00:00+00:00,0.15678571428571178 -2024-04-15 11:00:00+00:00,0.1466428571428549 -2024-04-15 12:00:00+00:00,0.17278571428571102 -2024-04-15 13:00:00+00:00,0.18842857142856775 -2024-04-15 14:00:00+00:00,0.21742857142856817 -2024-04-15 15:00:00+00:00,0.21114285714285433 -2024-04-15 16:00:00+00:00,0.2043571428571401 -2024-04-15 17:00:00+00:00,0.2117857142857125 -2024-04-15 18:00:00+00:00,0.2049285714285714 -2024-04-15 19:00:00+00:00,0.20364285714285707 -2024-04-15 20:00:00+00:00,0.19835714285714598 -2024-04-15 21:00:00+00:00,0.19600000000000403 -2024-04-15 22:00:00+00:00,0.18342857142857635 -2024-04-15 23:00:00+00:00,0.18057142857143407 -2024-04-16 00:00:00+00:00,0.18842857142857788 -2024-04-16 01:00:00+00:00,0.1923571428571498 -2024-04-16 02:00:00+00:00,0.16271428571429322 -2024-04-16 03:00:00+00:00,0.14478571428572146 -2024-04-16 04:00:00+00:00,0.11121428571429297 -2024-04-16 05:00:00+00:00,0.10771428571429453 -2024-04-16 06:00:00+00:00,0.12257142857143728 -2024-04-16 07:00:00+00:00,0.12035714285715114 -2024-04-16 08:00:00+00:00,0.12657142857143608 -2024-04-16 09:00:00+00:00,0.12907142857143583 -2024-04-16 10:00:00+00:00,0.13007142857143453 -2024-04-16 11:00:00+00:00,0.13414285714286223 -2024-04-16 12:00:00+00:00,0.13807142857143212 -2024-04-16 13:00:00+00:00,0.19328571428571756 -2024-04-16 14:00:00+00:00,0.19828571428571706 -2024-04-16 15:00:00+00:00,0.20114285714285934 -2024-04-16 16:00:00+00:00,0.20014285714286068 -2024-04-16 17:00:00+00:00,0.21078571428571788 -2024-04-16 18:00:00+00:00,0.21392857142857583 -2024-04-16 19:00:00+00:00,0.2122857142857169 -2024-04-16 20:00:00+00:00,0.19657142857142926 -2024-04-16 21:00:00+00:00,0.18964285714285722 -2024-04-16 22:00:00+00:00,0.18228571428571375 -2024-04-16 23:00:00+00:00,0.18057142857142594 -2024-04-17 00:00:00+00:00,0.1846428571428557 -2024-04-17 01:00:00+00:00,0.18335714285714136 -2024-04-17 02:00:00+00:00,0.1782857142857129 -2024-04-17 03:00:00+00:00,0.12207142857142676 -2024-04-17 04:00:00+00:00,0.10435714285714173 -2024-04-17 05:00:00+00:00,0.0972857142857139 -2024-04-17 06:00:00+00:00,0.10342857142856994 -2024-04-17 07:00:00+00:00,0.100285714285712 -2024-04-17 08:00:00+00:00,0.10121428571428177 -2024-04-17 09:00:00+00:00,0.10257142857142705 -2024-04-17 10:00:00+00:00,0.10171428571428619 -2024-04-17 11:00:00+00:00,0.10242857142857124 -2024-04-17 12:00:00+00:00,0.10428571428571486 -2024-04-17 13:00:00+00:00,0.1085714285714293 -2024-04-17 14:00:00+00:00,0.10435714285714377 -2024-04-17 15:00:00+00:00,0.1036428571428587 -2024-04-17 16:00:00+00:00,0.12521428571428878 -2024-04-17 17:00:00+00:00,0.13935714285714645 -2024-04-17 18:00:00+00:00,0.14914285714286077 -2024-04-17 19:00:00+00:00,0.150500000000002 -2024-04-17 20:00:00+00:00,0.14357142857142996 -2024-04-17 21:00:00+00:00,0.13507142857142998 -2024-04-17 22:00:00+00:00,0.1287142857142872 -2024-04-17 23:00:00+00:00,0.13585714285714395 -2024-04-18 00:00:00+00:00,0.14057142857142782 -2024-04-18 01:00:00+00:00,0.14585714285714296 -2024-04-18 02:00:00+00:00,0.15985714285714284 -2024-04-18 03:00:00+00:00,0.16542857142857162 -2024-04-18 04:00:00+00:00,0.16642857142856826 -2024-04-18 05:00:00+00:00,0.16671428571428187 -2024-04-18 06:00:00+00:00,0.15785714285713734 -2024-04-18 07:00:00+00:00,0.14714285714285325 -2024-04-18 08:00:00+00:00,0.14142857142856663 -2024-04-18 09:00:00+00:00,0.1408571428571394 -2024-04-18 10:00:00+00:00,0.1409999999999972 -2024-04-18 11:00:00+00:00,0.15171428571428333 -2024-04-18 12:00:00+00:00,0.15828571428571284 -2024-04-18 13:00:00+00:00,0.162785714285712 -2024-04-18 14:00:00+00:00,0.1644999999999978 -2024-04-18 15:00:00+00:00,0.16014285714285645 -2024-04-18 16:00:00+00:00,0.14492857142856913 -2024-04-18 17:00:00+00:00,0.1359285714285688 -2024-04-18 18:00:00+00:00,0.13807142857142804 -2024-04-18 19:00:00+00:00,0.13507142857142793 -2024-04-18 20:00:00+00:00,0.12257142857142712 -2024-04-18 21:00:00+00:00,0.1157857142857109 -2024-04-18 22:00:00+00:00,0.11607142857142654 -2024-04-18 23:00:00+00:00,0.1167857142857116 -2024-04-19 00:00:00+00:00,0.1185714285714263 -2024-04-19 01:00:00+00:00,0.1512857142857119 -2024-04-19 02:00:00+00:00,0.18542857142856764 -2024-04-19 03:00:00+00:00,0.2016428571428516 -2024-04-19 04:00:00+00:00,0.20064285714285088 -2024-04-19 05:00:00+00:00,0.2077142857142787 -2024-04-19 06:00:00+00:00,0.2202142857142795 -2024-04-19 07:00:00+00:00,0.226785714285709 -2024-04-19 08:00:00+00:00,0.22921428571427985 -2024-04-19 09:00:00+00:00,0.23321428571428068 -2024-04-19 10:00:00+00:00,0.23564285714285355 -2024-04-19 11:00:00+00:00,0.2388571428571404 -2024-04-19 12:00:00+00:00,0.23871428571428258 -2024-04-19 13:00:00+00:00,0.23835714285714005 -2024-04-19 14:00:00+00:00,0.24164285714285377 -2024-04-19 15:00:00+00:00,0.20478571428571155 -2024-04-19 16:00:00+00:00,0.16228571428571367 -2024-04-19 17:00:00+00:00,0.13221428571428565 -2024-04-19 18:00:00+00:00,0.1267142857142878 -2024-04-19 19:00:00+00:00,0.1189285714285729 -2024-04-19 20:00:00+00:00,0.10457142857143051 -2024-04-21 21:00:00+00:00,0.10400000000000123 -2024-04-21 22:00:00+00:00,0.10871428571428712 -2024-04-21 23:00:00+00:00,0.10842857142857147 -2024-04-22 00:00:00+00:00,0.10992857142857052 -2024-04-22 01:00:00+00:00,0.11221428571428353 -2024-04-22 02:00:00+00:00,0.11035714285713993 -2024-04-22 03:00:00+00:00,0.10764285714285547 -2024-04-22 04:00:00+00:00,0.09857142857142621 -2024-04-22 05:00:00+00:00,0.09314285714285322 -2024-04-22 06:00:00+00:00,0.09607142857142444 -2024-04-22 07:00:00+00:00,0.09821428571428166 -2024-04-22 08:00:00+00:00,0.09914285714285345 -2024-04-22 09:00:00+00:00,0.09899999999999766 -2024-04-22 10:00:00+00:00,0.0992142857142844 -2024-04-22 11:00:00+00:00,0.09107142857142694 -2024-04-22 12:00:00+00:00,0.08235714285714023 -2024-04-22 13:00:00+00:00,0.07907142857142853 -2024-04-22 14:00:00+00:00,0.07442857142857154 -2024-04-22 15:00:00+00:00,0.07157142857142926 -2024-04-22 16:00:00+00:00,0.07214285714285852 -2024-04-22 17:00:00+00:00,0.0720714285714296 -2024-04-22 18:00:00+00:00,0.07235714285714526 -2024-04-22 19:00:00+00:00,0.07135714285714657 -2024-04-22 20:00:00+00:00,0.06564285714285997 -2024-04-22 21:00:00+00:00,0.061000000000005015 -2024-04-22 22:00:00+00:00,0.05714285714286201 -2024-04-22 23:00:00+00:00,0.056785714285719484 -2024-04-23 00:00:00+00:00,0.061714285714290086 -2024-04-23 01:00:00+00:00,0.06771428571429235 -2024-04-23 02:00:00+00:00,0.0660000000000086 -2024-04-23 03:00:00+00:00,0.06521428571429258 -2024-04-23 04:00:00+00:00,0.06428571428572079 -2024-04-23 05:00:00+00:00,0.06314285714286225 -2024-04-23 06:00:00+00:00,0.061214285714289725 -2024-04-23 07:00:00+00:00,0.06500000000000179 -2024-04-23 08:00:00+00:00,0.06592857142857358 -2024-04-23 09:00:00+00:00,0.06564285714285997 -2024-04-23 10:00:00+00:00,0.0680000000000019 -2024-04-23 11:00:00+00:00,0.07042857142857274 -2024-04-23 12:00:00+00:00,0.07171428571428505 -2024-04-23 13:00:00+00:00,0.08857142857142719 -2024-04-23 14:00:00+00:00,0.0962857142857132 -2024-04-23 15:00:00+00:00,0.09164285714285418 -2024-04-23 16:00:00+00:00,0.09157142857142528 -2024-04-23 17:00:00+00:00,0.10792857142856908 -2024-04-23 18:00:00+00:00,0.11192857142856992 -2024-04-23 19:00:00+00:00,0.11378571428571352 -2024-04-23 20:00:00+00:00,0.11035714285714196 -2024-04-23 21:00:00+00:00,0.10678571428571461 -2024-04-23 22:00:00+00:00,0.10492857142857101 -2024-04-23 23:00:00+00:00,0.10578571428571186 -2024-04-24 00:00:00+00:00,0.10742857142857076 -2024-04-24 01:00:00+00:00,0.1068571428571415 -2024-04-24 02:00:00+00:00,0.10392857142857233 -2024-04-24 03:00:00+00:00,0.08635714285714512 -2024-04-24 04:00:00+00:00,0.07278571428571468 -2024-04-24 05:00:00+00:00,0.07114285714285577 -2024-04-24 06:00:00+00:00,0.07242857142857011 -2024-04-24 07:00:00+00:00,0.06699999999999916 -2024-04-24 08:00:00+00:00,0.06428571428571266 -2024-04-24 09:00:00+00:00,0.06307142857142724 -2024-04-24 10:00:00+00:00,0.06399999999999904 -2024-04-24 11:00:00+00:00,0.06307142857142724 -2024-04-24 12:00:00+00:00,0.08892857142856972 -2024-04-24 13:00:00+00:00,0.09764285714285645 -2024-04-24 14:00:00+00:00,0.10385714285714139 -2024-04-24 15:00:00+00:00,0.11157142857142739 -2024-04-24 16:00:00+00:00,0.11464285714285438 -2024-04-24 17:00:00+00:00,0.13164285714285232 -2024-04-24 18:00:00+00:00,0.13521428571428373 -2024-04-24 19:00:00+00:00,0.13792857142857023 -2024-04-24 20:00:00+00:00,0.13814285714285493 -2024-04-24 21:00:00+00:00,0.12842857142856953 -2024-04-24 22:00:00+00:00,0.12728571428571303 -2024-04-24 23:00:00+00:00,0.12735714285714192 -2024-04-25 00:00:00+00:00,0.13707142857142735 -2024-04-25 01:00:00+00:00,0.14114285714285504 -2024-04-25 02:00:00+00:00,0.1185714285714263 -2024-04-25 03:00:00+00:00,0.11321428571428425 -2024-04-25 04:00:00+00:00,0.11371428571428462 -2024-04-25 05:00:00+00:00,0.11299999999999752 -2024-04-25 06:00:00+00:00,0.11414285714285402 -2024-04-25 07:00:00+00:00,0.10264285714285393 -2024-04-25 08:00:00+00:00,0.10178571428570901 -2024-04-25 09:00:00+00:00,0.09992857142856744 -2024-04-25 10:00:00+00:00,0.10292857142856755 -2024-04-25 11:00:00+00:00,0.10399999999999514 -2024-04-25 12:00:00+00:00,0.1317142857142792 -2024-04-25 13:00:00+00:00,0.1508571428571364 -2024-04-25 14:00:00+00:00,0.15128571428570783 -2024-04-25 15:00:00+00:00,0.15057142857142278 -2024-04-25 16:00:00+00:00,0.15292857142856672 -2024-04-25 17:00:00+00:00,0.1555714285714243 -2024-04-25 18:00:00+00:00,0.15107142857142314 -2024-04-25 19:00:00+00:00,0.14571428571428108 -2024-04-25 20:00:00+00:00,0.14249999999999627 -2024-04-25 21:00:00+00:00,0.13707142857142532 -2024-04-25 22:00:00+00:00,0.13649999999999807 -2024-04-25 23:00:00+00:00,0.1387142857142842 -2024-04-26 00:00:00+00:00,0.13535714285714157 -2024-04-26 01:00:00+00:00,0.13671428571428482 -2024-04-26 02:00:00+00:00,0.11242857142857231 -2024-04-26 03:00:00+00:00,0.14021428571428732 -2024-04-26 04:00:00+00:00,0.14728571428571716 -2024-04-26 05:00:00+00:00,0.15000000000000163 -2024-04-26 06:00:00+00:00,0.18142857142857288 -2024-04-26 07:00:00+00:00,0.20335714285714346 -2024-04-26 08:00:00+00:00,0.31971428571428767 -2024-04-26 09:00:00+00:00,0.3307142857142874 -2024-04-26 10:00:00+00:00,0.3427857142857168 -2024-04-26 11:00:00+00:00,0.38092857142857334 -2024-04-26 12:00:00+00:00,0.398928571428574 -2024-04-26 13:00:00+00:00,0.40421428571428714 -2024-04-26 14:00:00+00:00,0.4325000000000025 -2024-04-26 15:00:00+00:00,0.4585000000000008 -2024-04-26 16:00:00+00:00,0.46607142857142897 -2024-04-26 17:00:00+00:00,0.42957142857142927 -2024-04-26 18:00:00+00:00,0.41550000000000054 -2024-04-26 19:00:00+00:00,0.4202142857142884 -2024-04-26 20:00:00+00:00,0.42235714285714365 -2024-04-28 21:00:00+00:00,0.41578571428571415 -2024-04-28 22:00:00+00:00,0.32764285714285635 -2024-04-28 23:00:00+00:00,0.32157142857142923 -2024-04-29 00:00:00+00:00,0.3247142857142872 -2024-04-29 01:00:00+00:00,0.4283571428571459 -2024-04-29 02:00:00+00:00,0.43292857142857194 -2024-04-29 03:00:00+00:00,0.4322142857142869 -2024-04-29 04:00:00+00:00,0.7126428571428575 -2024-04-29 05:00:00+00:00,0.8147142857142862 -2024-04-29 06:00:00+00:00,0.8410000000000021 -2024-04-29 07:00:00+00:00,1.01557142857143 -2024-04-29 08:00:00+00:00,1.0731428571428592 -2024-04-29 09:00:00+00:00,1.0954285714285743 -2024-04-29 10:00:00+00:00,1.0892142857142895 -2024-04-29 11:00:00+00:00,1.1031428571428603 -2024-04-29 12:00:00+00:00,1.0967142857142886 -2024-04-29 13:00:00+00:00,1.120285714285716 -2024-04-29 14:00:00+00:00,1.1191428571428577 -2024-04-29 15:00:00+00:00,0.9858571428571423 -2024-04-29 16:00:00+00:00,1.0758571428571437 -2024-04-29 17:00:00+00:00,1.0947857142857143 -2024-04-29 18:00:00+00:00,0.8173571428571437 -2024-04-29 19:00:00+00:00,0.7022142857142869 -2024-04-29 20:00:00+00:00,0.6866428571428571 -2024-04-29 21:00:00+00:00,0.5055714285714288 -2024-04-29 22:00:00+00:00,0.46007142857142674 -2024-04-29 23:00:00+00:00,0.43964285714285317 -2024-04-30 00:00:00+00:00,0.4522857142857118 -2024-04-30 01:00:00+00:00,0.4447142857142836 -2024-04-30 02:00:00+00:00,0.4298571428571409 -2024-04-30 03:00:00+00:00,0.40742857142857 -2024-04-30 04:00:00+00:00,0.3982857142857138 -2024-04-30 05:00:00+00:00,0.39485714285714224 -2024-04-30 06:00:00+00:00,0.2895714285714287 -2024-04-30 07:00:00+00:00,0.2930714285714292 -2024-04-30 08:00:00+00:00,0.2675714285714272 -2024-04-30 09:00:00+00:00,0.25321428571428684 -2024-04-30 10:00:00+00:00,0.2372142857142876 -2024-04-30 11:00:00+00:00,0.2327142857142864 -2024-04-30 12:00:00+00:00,0.26250000000000284 -2024-04-30 13:00:00+00:00,0.26435714285714645 -2024-04-30 14:00:00+00:00,0.2320714285714323 -2024-04-30 15:00:00+00:00,0.21921428571429097 -2024-04-30 16:00:00+00:00,0.2143571428571493 -2024-04-30 17:00:00+00:00,0.21714285714286266 -2024-04-30 18:00:00+00:00,0.22221428571429108 -2024-04-30 19:00:00+00:00,0.21971428571429133 -2024-04-30 20:00:00+00:00,0.21700000000000483 -2024-04-30 21:00:00+00:00,0.18921428571429186 -2024-04-30 22:00:00+00:00,0.18950000000000752 -2024-04-30 23:00:00+00:00,0.18842857142857788 -2024-05-01 00:00:00+00:00,0.1915000000000049 -2024-05-01 01:00:00+00:00,0.19550000000000572 -2024-05-01 02:00:00+00:00,0.15514285714286302 -2024-05-01 03:00:00+00:00,0.14407142857143437 -2024-05-01 04:00:00+00:00,0.135857142857148 -2024-05-01 05:00:00+00:00,0.12371428571428973 -2024-05-01 06:00:00+00:00,0.12264285714286009 -2024-05-01 07:00:00+00:00,0.1167857142857177 -2024-05-01 08:00:00+00:00,0.11185714285714507 -2024-05-01 09:00:00+00:00,0.11050000000000182 -2024-05-01 10:00:00+00:00,0.10550000000000027 -2024-05-01 11:00:00+00:00,0.1030714285714274 -2024-05-01 12:00:00+00:00,0.10278571428571175 -2024-05-01 13:00:00+00:00,0.1197142857142828 -2024-05-01 14:00:00+00:00,0.13142857142856762 -2024-05-01 15:00:00+00:00,0.13378571428570954 -2024-05-01 16:00:00+00:00,0.13121428571427884 -2024-05-01 17:00:00+00:00,0.13299999999999354 -2024-05-01 18:00:00+00:00,0.18007142857142355 -2024-05-01 19:00:00+00:00,0.2008571428571376 -2024-05-01 20:00:00+00:00,0.5195714285714226 -2024-05-01 21:00:00+00:00,0.589428571428566 -2024-05-01 22:00:00+00:00,0.6693571428571374 -2024-05-01 23:00:00+00:00,0.7040714285714225 -2024-05-02 00:00:00+00:00,0.7299285714285669 -2024-05-02 01:00:00+00:00,0.7524999999999977 -2024-05-02 02:00:00+00:00,0.7729999999999981 -2024-05-02 03:00:00+00:00,0.7739999999999968 -2024-05-02 04:00:00+00:00,0.776999999999999 -2024-05-02 05:00:00+00:00,0.787071428571429 -2024-05-02 06:00:00+00:00,0.8217142857142871 -2024-05-02 07:00:00+00:00,0.8367142857142856 -2024-05-02 08:00:00+00:00,0.8146428571428552 -2024-05-02 09:00:00+00:00,0.807857142857143 -2024-05-02 10:00:00+00:00,0.49928571428571694 -2024-05-02 11:00:00+00:00,0.45692857142857285 -2024-05-02 12:00:00+00:00,0.40214285714286085 -2024-05-02 13:00:00+00:00,0.3938571428571476 -2024-05-02 14:00:00+00:00,0.39885714285714713 -2024-05-02 15:00:00+00:00,0.42135714285714493 -2024-05-02 16:00:00+00:00,0.42028571428571737 -2024-05-02 17:00:00+00:00,0.4384285714285759 -2024-05-02 18:00:00+00:00,0.43728571428571933 -2024-05-02 19:00:00+00:00,0.4357142857142914 -2024-05-02 20:00:00+00:00,0.4422857142857209 -2024-05-02 21:00:00+00:00,0.43014285714286465 -2024-05-02 22:00:00+00:00,0.4351428571428662 -2024-05-02 23:00:00+00:00,0.44485714285714956 -2024-05-03 00:00:00+00:00,0.46250000000000363 -2024-05-03 01:00:00+00:00,0.4610714285714335 -2024-05-03 02:00:00+00:00,0.44992857142857395 -2024-05-03 03:00:00+00:00,0.4332142857142896 -2024-05-03 04:00:00+00:00,0.416714285714288 -2024-05-03 05:00:00+00:00,0.38385714285714456 -2024-05-03 06:00:00+00:00,0.3831428571428595 -2024-05-03 07:00:00+00:00,0.3532142857142893 -2024-05-03 08:00:00+00:00,0.34035714285714597 -2024-05-03 09:00:00+00:00,0.33892857142857175 -2024-05-03 10:00:00+00:00,0.29957142857142777 -2024-05-03 11:00:00+00:00,0.29885714285714265 -2024-05-03 12:00:00+00:00,0.3647857142857122 -2024-05-03 13:00:00+00:00,0.36707142857142727 -2024-05-03 14:00:00+00:00,0.395071428571429 -2024-05-03 15:00:00+00:00,0.3766428571428569 -2024-05-03 16:00:00+00:00,0.3656428571428571 -2024-05-03 17:00:00+00:00,0.35935714285714127 -2024-05-03 18:00:00+00:00,0.3462142857142863 -2024-05-03 19:00:00+00:00,0.3391428571428605 -2024-05-03 20:00:00+00:00,0.31842857142857334 -2024-05-05 21:00:00+00:00,0.3218571428571429 -2024-05-05 22:00:00+00:00,0.33899999999999864 -2024-05-05 23:00:00+00:00,0.36307142857142843 -2024-05-06 00:00:00+00:00,0.38785714285714334 -2024-05-06 01:00:00+00:00,0.39942857142857235 -2024-05-06 02:00:00+00:00,0.31457142857143033 -2024-05-06 03:00:00+00:00,0.29821428571428654 -2024-05-06 04:00:00+00:00,0.24492857142857158 -2024-05-06 05:00:00+00:00,0.2362857142857158 -2024-05-06 06:00:00+00:00,0.24421428571428652 -2024-05-06 07:00:00+00:00,0.24764285714285808 -2024-05-06 08:00:00+00:00,0.2555714285714288 -2024-05-06 09:00:00+00:00,0.2567857142857122 -2024-05-06 10:00:00+00:00,0.25771428571428395 -2024-05-06 11:00:00+00:00,0.24871428571428364 -2024-05-06 12:00:00+00:00,0.24571428571428555 -2024-05-06 13:00:00+00:00,0.22621428571428584 -2024-05-06 14:00:00+00:00,0.21571428571428644 -2024-05-06 15:00:00+00:00,0.20500000000000032 -2024-05-06 16:00:00+00:00,0.19542857142857276 -2024-05-06 17:00:00+00:00,0.18750000000000203 -2024-05-06 18:00:00+00:00,0.18285714285714505 -2024-05-06 19:00:00+00:00,0.18092857142857252 -2024-05-06 20:00:00+00:00,0.16685714285714376 -2024-05-06 21:00:00+00:00,0.15950000000000028 -2024-05-06 22:00:00+00:00,0.15264285714285716 -2024-05-06 23:00:00+00:00,0.1662857142857145 -2024-05-07 00:00:00+00:00,0.18535714285714278 -2024-05-07 01:00:00+00:00,0.22021428571428764 -2024-05-07 02:00:00+00:00,0.21042857142857127 -2024-05-07 03:00:00+00:00,0.1962857142857136 -2024-05-07 04:00:00+00:00,0.19178571428571242 -2024-05-07 05:00:00+00:00,0.1925714285714264 -2024-05-07 06:00:00+00:00,0.2015714285714247 -2024-05-07 07:00:00+00:00,0.21899999999999611 -2024-05-07 08:00:00+00:00,0.24514285714285425 -2024-05-07 09:00:00+00:00,0.25571428571428256 -2024-05-07 10:00:00+00:00,0.2619999999999984 -2024-05-07 11:00:00+00:00,0.2705714285714273 -2024-05-07 12:00:00+00:00,0.28028571428571475 -2024-05-07 13:00:00+00:00,0.27421428571428563 -2024-05-07 14:00:00+00:00,0.2613571428571423 -2024-05-07 15:00:00+00:00,0.23757142857142607 -2024-05-07 16:00:00+00:00,0.22799999999999848 -2024-05-07 17:00:00+00:00,0.23542857142857088 -2024-05-07 18:00:00+00:00,0.22635714285714162 -2024-05-07 19:00:00+00:00,0.22257142857142753 -2024-05-07 20:00:00+00:00,0.20942857142857058 -2024-05-07 21:00:00+00:00,0.19185714285714134 -2024-05-07 22:00:00+00:00,0.16878571428571224 -2024-05-07 23:00:00+00:00,0.16049999999999898 -2024-05-08 00:00:00+00:00,0.1664999999999992 -2024-05-08 01:00:00+00:00,0.17514285714285702 -2024-05-08 02:00:00+00:00,0.17049999999999801 -2024-05-08 03:00:00+00:00,0.16385714285714162 -2024-05-08 04:00:00+00:00,0.15642857142857128 -2024-05-08 05:00:00+00:00,0.1471428571428573 -2024-05-08 06:00:00+00:00,0.15099999999999827 -2024-05-08 07:00:00+00:00,0.14707142857142635 -2024-05-08 08:00:00+00:00,0.15742857142856995 -2024-05-08 09:00:00+00:00,0.165857142857141 -2024-05-08 10:00:00+00:00,0.1677142857142826 -2024-05-08 11:00:00+00:00,0.17114285714285618 -2024-05-08 12:00:00+00:00,0.1752142857142839 -2024-05-08 13:00:00+00:00,0.17828571428571088 -2024-05-08 14:00:00+00:00,0.17121428571428104 -2024-05-08 15:00:00+00:00,0.16907142857142382 -2024-05-08 16:00:00+00:00,0.1669285714285666 -2024-05-08 17:00:00+00:00,0.16292857142856576 -2024-05-08 18:00:00+00:00,0.15964285714285 -2024-05-08 19:00:00+00:00,0.15642857142856517 -2024-05-08 20:00:00+00:00,0.15328571428570928 -2024-05-08 21:00:00+00:00,0.14807142857142302 -2024-05-08 22:00:00+00:00,0.13835714285713557 -2024-05-08 23:00:00+00:00,0.13992857142856355 -2024-05-09 00:00:00+00:00,0.171999999999993 -2024-05-09 01:00:00+00:00,0.1772857142857061 -2024-05-09 02:00:00+00:00,0.16921428571427757 -2024-05-09 03:00:00+00:00,0.16599999999999276 -2024-05-09 04:00:00+00:00,0.1606428571428507 -2024-05-09 05:00:00+00:00,0.1490714285714217 -2024-05-09 06:00:00+00:00,0.15349999999999195 -2024-05-09 07:00:00+00:00,0.15692857142856553 -2024-05-09 08:00:00+00:00,0.1567857142857077 -2024-05-09 09:00:00+00:00,0.1606428571428507 -2024-05-09 10:00:00+00:00,0.1567857142857077 -2024-05-09 11:00:00+00:00,0.15949999999999218 -2024-05-09 12:00:00+00:00,0.18028571428570825 -2024-05-09 13:00:00+00:00,0.17828571428570886 -2024-05-09 14:00:00+00:00,0.15607142857142467 -2024-05-09 15:00:00+00:00,0.15507142857142395 -2024-05-09 16:00:00+00:00,0.15721428571428117 -2024-05-09 17:00:00+00:00,0.15885714285713806 -2024-05-09 18:00:00+00:00,0.16442857142856684 -2024-05-09 19:00:00+00:00,0.1629999999999967 -2024-05-09 20:00:00+00:00,0.15478571428571236 -2024-05-09 21:00:00+00:00,0.151214285714283 -2024-05-09 22:00:00+00:00,0.15835714285714175 -2024-05-09 23:00:00+00:00,0.16071428571428367 -2024-05-10 00:00:00+00:00,0.17349999999999813 -2024-05-10 01:00:00+00:00,0.18092857142857252 -2024-05-10 02:00:00+00:00,0.1602857142857163 -2024-05-10 03:00:00+00:00,0.14907142857143185 -2024-05-10 04:00:00+00:00,0.13807142857143212 -2024-05-10 05:00:00+00:00,0.12992857142857467 -2024-05-10 06:00:00+00:00,0.1371428571428603 -2024-05-10 07:00:00+00:00,0.13700000000000248 -2024-05-10 08:00:00+00:00,0.13485714285714323 -2024-05-10 09:00:00+00:00,0.13399999999999831 -2024-05-10 10:00:00+00:00,0.1328571428571418 -2024-05-10 11:00:00+00:00,0.1329999999999976 -2024-05-10 12:00:00+00:00,0.13199999999999892 -2024-05-10 13:00:00+00:00,0.13978571428571382 -2024-05-10 14:00:00+00:00,0.141214285714286 -2024-05-10 15:00:00+00:00,0.1298571428571417 -2024-05-10 16:00:00+00:00,0.1309999999999982 -2024-05-10 17:00:00+00:00,0.13264285714285304 -2024-05-10 18:00:00+00:00,0.1304999999999958 -2024-05-10 19:00:00+00:00,0.12849999999999845 -2024-05-10 20:00:00+00:00,0.11814285714285486 -2024-05-12 21:00:00+00:00,0.11249999999999716 -2024-05-12 22:00:00+00:00,0.11064285714285559 -2024-05-12 23:00:00+00:00,0.11035714285714196 -2024-05-13 00:00:00+00:00,0.11535714285714148 -2024-05-13 01:00:00+00:00,0.14107142857142815 -2024-05-13 02:00:00+00:00,0.1436428571428548 -2024-05-13 03:00:00+00:00,0.1328571428571418 -2024-05-13 04:00:00+00:00,0.11792857142857015 -2024-05-13 05:00:00+00:00,0.12014285714285629 -2024-05-13 06:00:00+00:00,0.12192857142856894 -2024-05-13 07:00:00+00:00,0.1234999999999969 -2024-05-13 08:00:00+00:00,0.12671428571428173 -2024-05-13 09:00:00+00:00,0.12499999999999391 -2024-05-13 10:00:00+00:00,0.12428571428570885 -2024-05-13 11:00:00+00:00,0.12428571428570885 -2024-05-13 12:00:00+00:00,0.1296428571428509 -2024-05-13 13:00:00+00:00,0.13678571428570965 -2024-05-13 14:00:00+00:00,0.13371428571428265 -2024-05-13 15:00:00+00:00,0.12678571428571064 -2024-05-13 16:00:00+00:00,0.12007142857142535 -2024-05-13 17:00:00+00:00,0.11621428571428234 -2024-05-13 18:00:00+00:00,0.11742857142856776 -2024-05-13 19:00:00+00:00,0.11349999999999584 -2024-05-13 20:00:00+00:00,0.10592857142856969 -2024-05-13 21:00:00+00:00,0.10321428571428523 -2024-05-13 22:00:00+00:00,0.10114285714285691 -2024-05-13 23:00:00+00:00,0.10128571428571474 -2024-05-14 00:00:00+00:00,0.10957142857143001 -2024-05-14 01:00:00+00:00,0.11778571428571638 -2024-05-14 02:00:00+00:00,0.11164285714286036 -2024-05-14 03:00:00+00:00,0.10450000000000362 -2024-05-14 04:00:00+00:00,0.1016428571428593 -2024-05-14 05:00:00+00:00,0.07992857142857547 -2024-05-14 06:00:00+00:00,0.08214285714286161 -2024-05-14 07:00:00+00:00,0.08471428571429028 -2024-05-14 08:00:00+00:00,0.08535714285714643 -2024-05-14 09:00:00+00:00,0.09507142857143183 -2024-05-14 10:00:00+00:00,0.09814285714285884 -2024-05-14 11:00:00+00:00,0.09671428571428871 -2024-05-14 12:00:00+00:00,0.118857142857146 -2024-05-14 13:00:00+00:00,0.14507142857143102 -2024-05-14 14:00:00+00:00,0.15000000000000163 -2024-05-14 15:00:00+00:00,0.1480000000000022 -2024-05-14 16:00:00+00:00,0.14914285714285874 -2024-05-14 17:00:00+00:00,0.15049999999999994 -2024-05-14 18:00:00+00:00,0.15535714285714164 -2024-05-14 19:00:00+00:00,0.15642857142856922 -2024-05-14 20:00:00+00:00,0.14921428571428358 -2024-05-14 21:00:00+00:00,0.1466428571428549 -2024-05-14 22:00:00+00:00,0.1471428571428573 -2024-05-14 23:00:00+00:00,0.1410714285714302 -2024-05-15 00:00:00+00:00,0.14735714285714607 -2024-05-15 01:00:00+00:00,0.1535000000000021 -2024-05-15 02:00:00+00:00,0.13307142857143056 -2024-05-15 03:00:00+00:00,0.10800000000000207 -2024-05-15 04:00:00+00:00,0.09450000000000257 -2024-05-15 05:00:00+00:00,0.09842857142857449 -2024-05-15 06:00:00+00:00,0.10321428571428928 -2024-05-15 07:00:00+00:00,0.1197142857142889 -2024-05-15 08:00:00+00:00,0.15000000000000366 -2024-05-15 09:00:00+00:00,0.162857142857147 -2024-05-15 10:00:00+00:00,0.17314285714285965 -2024-05-15 11:00:00+00:00,0.18300000000000086 -2024-05-15 12:00:00+00:00,0.24371428571428616 -2024-05-15 13:00:00+00:00,0.29214285714285737 -2024-05-15 14:00:00+00:00,0.313285714285714 -2024-05-15 15:00:00+00:00,0.34692857142857136 -2024-05-15 16:00:00+00:00,0.36192857142856993 -2024-05-15 17:00:00+00:00,0.3789999999999988 -2024-05-15 18:00:00+00:00,0.3961428571428546 -2024-05-15 19:00:00+00:00,0.3937142857142817 -2024-05-15 20:00:00+00:00,0.3931428571428524 -2024-05-15 21:00:00+00:00,0.376499999999995 -2024-05-15 22:00:00+00:00,0.3602142857142821 -2024-05-15 23:00:00+00:00,0.3801428571428533 -2024-05-16 00:00:00+00:00,0.4339999999999975 -2024-05-16 01:00:00+00:00,0.4564285714285684 -2024-05-16 02:00:00+00:00,0.4240714285714233 -2024-05-16 03:00:00+00:00,0.38221428571428157 -2024-05-16 04:00:00+00:00,0.3661428571428514 -2024-05-16 05:00:00+00:00,0.3469999999999942 -2024-05-16 06:00:00+00:00,0.3449999999999948 -2024-05-16 07:00:00+00:00,0.3349999999999958 -2024-05-16 08:00:00+00:00,0.34814285714285276 -2024-05-16 09:00:00+00:00,0.3477142857142833 -2024-05-16 10:00:00+00:00,0.3459999999999996 -2024-05-16 11:00:00+00:00,0.36021428571428615 -2024-05-16 12:00:00+00:00,0.38899999999999985 -2024-05-16 13:00:00+00:00,0.3712142857142839 -2024-05-16 14:00:00+00:00,0.32314285714285723 -2024-05-16 15:00:00+00:00,0.2995000000000009 -2024-05-16 16:00:00+00:00,0.2734285714285737 -2024-05-16 17:00:00+00:00,0.266214285714286 -2024-05-16 18:00:00+00:00,0.2555000000000019 -2024-05-16 19:00:00+00:00,0.23871428571428663 -2024-05-16 20:00:00+00:00,0.22200000000000028 -2024-05-16 21:00:00+00:00,0.21199999999999924 -2024-05-16 22:00:00+00:00,0.18600000000000097 -2024-05-16 23:00:00+00:00,0.18314285714285664 -2024-05-17 00:00:00+00:00,0.1914999999999988 -2024-05-17 01:00:00+00:00,0.2023571428571407 -2024-05-17 02:00:00+00:00,0.16121428571428403 -2024-05-17 03:00:00+00:00,0.15035714285714213 -2024-05-17 04:00:00+00:00,0.14035714285713904 -2024-05-17 05:00:00+00:00,0.13828571428571074 -2024-05-17 06:00:00+00:00,0.1447142857142824 -2024-05-17 07:00:00+00:00,0.15364285714285383 -2024-05-17 08:00:00+00:00,0.15828571428570878 -2024-05-17 09:00:00+00:00,0.1599999999999966 -2024-05-17 10:00:00+00:00,0.1647857142857114 -2024-05-17 11:00:00+00:00,0.1688571428571391 -2024-05-17 12:00:00+00:00,0.17335714285713827 -2024-05-17 13:00:00+00:00,0.17385714285713863 -2024-05-17 14:00:00+00:00,0.18535714285713872 -2024-05-17 15:00:00+00:00,0.1772857142857102 -2024-05-17 16:00:00+00:00,0.1784285714285667 -2024-05-17 17:00:00+00:00,0.1769285714285656 -2024-05-17 18:00:00+00:00,0.1737857142857097 -2024-05-17 19:00:00+00:00,0.16928571428570852 -2024-05-17 20:00:00+00:00,0.16207142857142084 -2024-05-19 21:00:00+00:00,0.16185714285713612 -2024-05-19 22:00:00+00:00,0.16185714285713818 -2024-05-19 23:00:00+00:00,0.16185714285713818 -2024-05-20 00:00:00+00:00,0.16492857142856718 -2024-05-20 01:00:00+00:00,0.16821428571428296 -2024-05-20 02:00:00+00:00,0.16385714285714162 -2024-05-20 03:00:00+00:00,0.1663571428571434 -2024-05-20 04:00:00+00:00,0.1460714285714297 -2024-05-20 05:00:00+00:00,0.1336428571428578 -2024-05-20 06:00:00+00:00,0.13057142857142878 -2024-05-20 07:00:00+00:00,0.1422142857142867 -2024-05-20 08:00:00+00:00,0.14614285714285863 -2024-05-20 09:00:00+00:00,0.14621428571428755 -2024-05-20 10:00:00+00:00,0.1436428571428609 -2024-05-20 11:00:00+00:00,0.13285714285714587 -2024-05-20 12:00:00+00:00,0.15714285714285836 -2024-05-20 13:00:00+00:00,0.1577142857142856 -2024-05-20 14:00:00+00:00,0.1569285714285716 -2024-05-20 17:00:00+00:00,0.15535714285714164 -2024-05-20 18:00:00+00:00,0.1544285714285678 -2024-05-20 19:00:00+00:00,0.14757142857142266 -2024-05-20 20:00:00+00:00,0.1415714285714204 -2024-05-20 21:00:00+00:00,0.13507142857142185 -2024-05-20 22:00:00+00:00,0.13149999999999246 -2024-05-20 23:00:00+00:00,0.12235714285713632 -2024-05-21 00:00:00+00:00,0.12178571428570706 -2024-05-21 01:00:00+00:00,0.12171428571428018 -2024-05-21 02:00:00+00:00,0.1238571428571374 -2024-05-21 03:00:00+00:00,0.12557142857142317 -2024-05-21 04:00:00+00:00,0.09992857142856744 -2024-05-21 05:00:00+00:00,0.10221428571428248 -2024-05-21 06:00:00+00:00,0.11214285714285259 -2024-05-21 07:00:00+00:00,0.12157142857142438 -2024-05-21 08:00:00+00:00,0.12564285714285411 -2024-05-21 09:00:00+00:00,0.13528571428571062 -2024-05-21 10:00:00+00:00,0.14307142857142555 -2024-05-21 11:00:00+00:00,0.1464999999999971 -2024-05-21 12:00:00+00:00,0.15599999999999778 -2024-05-21 13:00:00+00:00,0.1801428571428545 -2024-05-21 14:00:00+00:00,0.19314285714285567 -2024-05-21 15:00:00+00:00,0.20192857142856926 -2024-05-21 16:00:00+00:00,0.20257142857142746 -2024-05-21 17:00:00+00:00,0.20742857142856913 -2024-05-21 18:00:00+00:00,0.2023571428571407 -2024-05-21 19:00:00+00:00,0.19828571428571098 -2024-05-21 20:00:00+00:00,0.18207142857142702 -2024-05-21 21:00:00+00:00,0.16871428571428534 -2024-05-21 22:00:00+00:00,0.16099999999999934 -2024-05-21 23:00:00+00:00,0.15514285714285694 -2024-05-22 00:00:00+00:00,0.15521428571428583 -2024-05-22 01:00:00+00:00,0.15421428571428514 -2024-05-22 02:00:00+00:00,0.14657142857142805 -2024-05-22 03:00:00+00:00,0.11578571428571495 -2024-05-22 04:00:00+00:00,0.10071428571428546 -2024-05-22 05:00:00+00:00,0.09378571428571345 -2024-05-22 06:00:00+00:00,0.09935714285714223 -2024-05-22 07:00:00+00:00,0.09464285714285633 -2024-05-22 08:00:00+00:00,0.09814285714285477 -2024-05-22 09:00:00+00:00,0.09735714285714282 -2024-05-22 10:00:00+00:00,0.09935714285714223 -2024-05-22 11:00:00+00:00,0.1094285714285722 -2024-05-22 12:00:00+00:00,0.11228571428571651 -2024-05-22 13:00:00+00:00,0.11878571428571709 -2024-05-22 14:00:00+00:00,0.12014285714286034 -2024-05-22 15:00:00+00:00,0.11950000000000419 -2024-05-22 16:00:00+00:00,0.11671428571429081 -2024-05-22 17:00:00+00:00,0.12057142857143179 -2024-05-22 18:00:00+00:00,0.12392857142857443 -2024-05-22 19:00:00+00:00,0.12364285714286082 -2024-05-22 20:00:00+00:00,0.12000000000000252 -2024-05-22 21:00:00+00:00,0.11921428571428853 -2024-05-22 22:00:00+00:00,0.11850000000000348 -2024-05-22 23:00:00+00:00,0.11850000000000348 -2024-05-23 00:00:00+00:00,0.1235714285714319 -2024-05-23 01:00:00+00:00,0.121142857142857 -2024-05-23 02:00:00+00:00,0.12571428571428506 -2024-05-23 03:00:00+00:00,0.11628571428571328 -2024-05-23 04:00:00+00:00,0.11107142857142906 -2024-05-23 05:00:00+00:00,0.11049999999999979 -2024-05-23 06:00:00+00:00,0.1182857142857147 -2024-05-23 07:00:00+00:00,0.12692857142857253 -2024-05-23 08:00:00+00:00,0.12292857142857169 -2024-05-23 09:00:00+00:00,0.1259999999999987 -2024-05-23 10:00:00+00:00,0.12285714285714075 -2024-05-23 11:00:00+00:00,0.12928571428571242 -2024-05-23 12:00:00+00:00,0.13785714285714132 -2024-05-23 13:00:00+00:00,0.1636428571428549 -2024-05-23 14:00:00+00:00,0.19992857142856987 -2024-05-23 15:00:00+00:00,0.19942857142857154 -2024-05-23 16:00:00+00:00,0.1961428571428578 -2024-05-23 17:00:00+00:00,0.20050000000000118 -2024-05-23 18:00:00+00:00,0.20357142857142815 -2024-05-23 19:00:00+00:00,0.20307142857142782 -2024-05-23 20:00:00+00:00,0.19992857142856987 -2024-05-23 21:00:00+00:00,0.19228571428571278 -2024-05-23 22:00:00+00:00,0.19142857142857192 -2024-05-23 23:00:00+00:00,0.18771428571428675 -2024-05-24 00:00:00+00:00,0.19642857142857345 -2024-05-24 01:00:00+00:00,0.1927857142857172 -2024-05-24 02:00:00+00:00,0.1822857142857178 -2024-05-24 03:00:00+00:00,0.1525000000000034 -2024-05-24 04:00:00+00:00,0.11107142857143108 -2024-05-24 05:00:00+00:00,0.10457142857143051 -2024-05-24 06:00:00+00:00,0.10357142857142979 -2024-05-24 07:00:00+00:00,0.0979285714285721 -2024-05-24 08:00:00+00:00,0.09421428571428692 -2024-05-24 09:00:00+00:00,0.09357142857143076 -2024-05-24 10:00:00+00:00,0.09171428571428716 -2024-05-24 11:00:00+00:00,0.08985714285714355 -2024-05-24 12:00:00+00:00,0.09371428571428453 -2024-05-24 13:00:00+00:00,0.0944285714285696 -2024-05-24 14:00:00+00:00,0.0897142857142837 -2024-05-24 15:00:00+00:00,0.09207142857142767 -2024-05-24 16:00:00+00:00,0.09435714285714068 -2024-05-24 17:00:00+00:00,0.09692857142856733 -2024-05-24 18:00:00+00:00,0.09707142857142514 -2024-05-24 19:00:00+00:00,0.09692857142856733 -2024-05-24 20:00:00+00:00,0.09692857142856733 -2024-05-26 21:00:00+00:00,0.10371428571428153 -2024-05-26 22:00:00+00:00,0.11107142857142296 -2024-05-26 23:00:00+00:00,0.11285714285713766 -2024-05-27 00:00:00+00:00,0.11842857142856644 -2024-05-27 01:00:00+00:00,0.12407142857142617 -2024-05-27 02:00:00+00:00,0.12349999999999893 -2024-05-27 03:00:00+00:00,0.12414285714285711 -2024-05-27 04:00:00+00:00,0.12007142857142737 -2024-05-27 05:00:00+00:00,0.1145714285714275 -2024-05-27 06:00:00+00:00,0.11314285714285736 -2024-05-27 07:00:00+00:00,0.11671428571428676 -2024-05-27 08:00:00+00:00,0.11714285714285617 -2024-05-27 09:00:00+00:00,0.11750000000000073 -2024-05-27 10:00:00+00:00,0.11421428571428496 -2024-05-27 11:00:00+00:00,0.1087142857142851 -2024-05-27 12:00:00+00:00,0.10071428571428546 -2024-05-27 13:00:00+00:00,0.09957142857142896 -2024-05-27 14:00:00+00:00,0.09457142857142944 -2024-05-27 15:00:00+00:00,0.0944285714285696 -2024-05-27 16:00:00+00:00,0.08978571428571058 -2024-05-27 17:00:00+00:00,0.08542857142856722 -2024-05-27 18:00:00+00:00,0.08107142857142387 -2024-05-27 19:00:00+00:00,0.0788571428571357 -2024-05-27 20:00:00+00:00,0.07685714285713427 -2024-05-27 21:00:00+00:00,0.07057142857142042 -2024-05-27 22:00:00+00:00,0.0719285714285657 -2024-05-27 23:00:00+00:00,0.07471428571427907 -2024-05-28 00:00:00+00:00,0.07992857142856533 -2024-05-28 01:00:00+00:00,0.08878571428570987 -2024-05-28 02:00:00+00:00,0.09121428571428274 -2024-05-28 03:00:00+00:00,0.09599999999999552 -2024-05-28 04:00:00+00:00,0.09564285714285095 -2024-05-28 05:00:00+00:00,0.09935714285713816 -2024-05-28 06:00:00+00:00,0.10314285714285225 -2024-05-28 07:00:00+00:00,0.10557142857142512 -2024-05-28 08:00:00+00:00,0.11057142857142667 -2024-05-28 09:00:00+00:00,0.11678571428571363 -2024-05-28 10:00:00+00:00,0.12092857142857229 -2024-05-28 11:00:00+00:00,0.1258571428571429 -2024-05-28 12:00:00+00:00,0.12885714285714098 -2024-05-28 13:00:00+00:00,0.1398571428571407 -2024-05-28 14:00:00+00:00,0.14078571428571252 -2024-05-28 15:00:00+00:00,0.13578571428571098 -2024-05-28 16:00:00+00:00,0.13678571428570965 -2024-05-28 17:00:00+00:00,0.13814285714285088 -2024-05-28 18:00:00+00:00,0.13571428571428207 -2024-05-28 19:00:00+00:00,0.12371428571427957 -2024-05-28 20:00:00+00:00,0.12085714285713729 -2024-05-28 21:00:00+00:00,0.11878571428570897 -2024-05-28 22:00:00+00:00,0.12049999999999475 -2024-05-28 23:00:00+00:00,0.11692857142856537 -2024-05-29 00:00:00+00:00,0.11849999999999332 -2024-05-29 01:00:00+00:00,0.1222142857142785 -2024-05-29 02:00:00+00:00,0.11914285714285151 -2024-05-29 03:00:00+00:00,0.10492857142856694 -2024-05-29 04:00:00+00:00,0.10357142857142573 -2024-05-29 05:00:00+00:00,0.09971428571428273 -2024-05-29 06:00:00+00:00,0.11499999999999895 -2024-05-29 07:00:00+00:00,0.11300000000000157 -2024-05-29 08:00:00+00:00,0.11692857142857147 -2024-05-29 09:00:00+00:00,0.11921428571428651 -2024-05-29 10:00:00+00:00,0.12350000000000096 -2024-05-29 11:00:00+00:00,0.12657142857142997 -2024-05-29 12:00:00+00:00,0.12714285714285925 -2024-05-29 13:00:00+00:00,0.13764285714286068 -2024-05-29 14:00:00+00:00,0.14057142857143187 -2024-05-29 15:00:00+00:00,0.1430000000000027 -2024-05-29 16:00:00+00:00,0.14228571428571563 -2024-05-29 17:00:00+00:00,0.14350000000000104 -2024-05-29 18:00:00+00:00,0.1394285714285713 -2024-05-29 19:00:00+00:00,0.13871428571428623 -2024-05-29 20:00:00+00:00,0.11742857142856979 -2024-05-29 21:00:00+00:00,0.11314285714285331 -2024-05-29 22:00:00+00:00,0.11035714285713993 -2024-05-29 23:00:00+00:00,0.10957142857142596 -2024-05-30 00:00:00+00:00,0.1234999999999969 -2024-05-30 01:00:00+00:00,0.12428571428570885 -2024-05-30 02:00:00+00:00,0.12507142857142078 -2024-05-30 03:00:00+00:00,0.12114285714284888 -2024-05-30 04:00:00+00:00,0.1261428571428484 -2024-05-30 05:00:00+00:00,0.13492857142856604 -2024-05-30 06:00:00+00:00,0.1475714285714247 -2024-05-30 07:00:00+00:00,0.1754999999999955 -2024-05-30 08:00:00+00:00,0.1861428571428527 -2024-05-30 09:00:00+00:00,0.19157142857142365 -2024-05-30 10:00:00+00:00,0.20114285714285327 -2024-05-30 11:00:00+00:00,0.2130714285714248 -2024-05-30 12:00:00+00:00,0.22771428571428082 -2024-05-30 13:00:00+00:00,0.2511428571428545 -2024-05-30 14:00:00+00:00,0.2510714285714276 -2024-05-30 15:00:00+00:00,0.25264285714285756 -2024-05-30 16:00:00+00:00,0.24900000000000336 -2024-05-30 17:00:00+00:00,0.24335714285714566 -2024-05-30 18:00:00+00:00,0.23071428571428904 -2024-05-30 19:00:00+00:00,0.21192857142857438 -2024-05-30 20:00:00+00:00,0.19850000000000176 -2024-05-30 21:00:00+00:00,0.16842857142857376 -2024-05-30 22:00:00+00:00,0.16192857142857317 -2024-05-30 23:00:00+00:00,0.16714285714285942 -2024-05-31 00:00:00+00:00,0.18507142857142916 -2024-05-31 01:00:00+00:00,0.1883571428571429 -2024-05-31 02:00:00+00:00,0.18592857142857205 -2024-05-31 03:00:00+00:00,0.1685714285714275 -2024-05-31 04:00:00+00:00,0.15828571428571284 -2024-05-31 05:00:00+00:00,0.15949999999999825 -2024-05-31 06:00:00+00:00,0.16521428571428082 -2024-05-31 07:00:00+00:00,0.1748571428571373 -2024-05-31 08:00:00+00:00,0.188214285714281 -2024-05-31 09:00:00+00:00,0.19157142857142365 -2024-05-31 10:00:00+00:00,0.19671428571428098 -2024-05-31 11:00:00+00:00,0.20114285714285124 -2024-05-31 12:00:00+00:00,0.22442857142856504 -2024-05-31 13:00:00+00:00,0.22949999999999346 -2024-05-31 14:00:00+00:00,0.24242857142856572 -2024-05-31 15:00:00+00:00,0.23607142857142296 -2024-05-31 16:00:00+00:00,0.22478571428570962 -2024-05-31 17:00:00+00:00,0.2187857142857094 -2024-05-31 18:00:00+00:00,0.21335714285713842 -2024-05-31 19:00:00+00:00,0.21185714285713736 -2024-05-31 20:00:00+00:00,0.2074285714285671 -2024-06-02 21:00:00+00:00,0.1988571428571382 -2024-06-02 22:00:00+00:00,0.19007142857142462 -2024-06-02 23:00:00+00:00,0.19485714285713943 -2024-06-03 00:00:00+00:00,0.20257142857142543 -2024-06-03 01:00:00+00:00,0.2054285714285677 -2024-06-03 02:00:00+00:00,0.1879999999999963 -2024-06-03 03:00:00+00:00,0.18714285714285342 -2024-06-03 04:00:00+00:00,0.14914285714285466 -2024-06-03 05:00:00+00:00,0.14192857142856902 -2024-06-03 06:00:00+00:00,0.1475714285714247 -2024-06-03 07:00:00+00:00,0.15571428571428214 -2024-06-03 08:00:00+00:00,0.15835714285713973 -2024-06-03 09:00:00+00:00,0.158142857142855 -2024-06-03 10:00:00+00:00,0.17449999999999882 -2024-06-03 11:00:00+00:00,0.1847857142857135 -2024-06-03 12:00:00+00:00,0.19221428571428387 -2024-06-03 13:00:00+00:00,0.1935714285714251 -2024-06-03 14:00:00+00:00,0.21157142857142577 -2024-06-03 15:00:00+00:00,0.2211428571428574 -2024-06-03 16:00:00+00:00,0.21742857142857222 -2024-06-03 17:00:00+00:00,0.20907142857142805 -2024-06-03 18:00:00+00:00,0.21042857142856924 -2024-06-03 19:00:00+00:00,0.2094999999999995 -2024-06-03 20:00:00+00:00,0.21178571428571452 -2024-06-03 21:00:00+00:00,0.20321428571428563 -2024-06-03 22:00:00+00:00,0.2002142857142855 -2024-06-03 23:00:00+00:00,0.2096428571428573 -2024-06-04 00:00:00+00:00,0.21564285714285752 -2024-06-04 01:00:00+00:00,0.2103571428571444 -2024-06-04 02:00:00+00:00,0.20285714285714512 -2024-06-04 03:00:00+00:00,0.19728571428571634 -2024-06-04 04:00:00+00:00,0.17250000000000146 -2024-06-04 05:00:00+00:00,0.16707142857142848 -2024-06-04 06:00:00+00:00,0.1854285714285717 -2024-06-04 07:00:00+00:00,0.21764285714285897 -2024-06-04 08:00:00+00:00,0.2295714285714305 -2024-06-04 09:00:00+00:00,0.24807142857142953 -2024-06-04 10:00:00+00:00,0.2684285714285721 -2024-06-04 11:00:00+00:00,0.29085714285714304 -2024-06-04 12:00:00+00:00,0.3138571428571412 -2024-06-04 13:00:00+00:00,0.3247142857142831 -2024-06-04 14:00:00+00:00,0.3449285714285679 -2024-06-04 15:00:00+00:00,0.35185714285713793 -2024-06-04 16:00:00+00:00,0.35057142857142154 -2024-06-04 17:00:00+00:00,0.3622142857142795 -2024-06-04 18:00:00+00:00,0.3613571428571366 -2024-06-04 19:00:00+00:00,0.35207142857142265 -2024-06-04 20:00:00+00:00,0.3332142857142811 -2024-06-04 21:00:00+00:00,0.2961428571428521 -2024-06-04 22:00:00+00:00,0.28271428571428153 -2024-06-04 23:00:00+00:00,0.2838571428571401 -2024-06-05 00:00:00+00:00,0.273071428571425 -2024-06-05 01:00:00+00:00,0.25878571428571157 -2024-06-05 02:00:00+00:00,0.23728571428571246 -2024-06-05 03:00:00+00:00,0.22507142857142728 -2024-06-05 04:00:00+00:00,0.1866428571428571 -2024-06-05 05:00:00+00:00,0.1797142857142871 -2024-06-05 06:00:00+00:00,0.19257142857143247 -2024-06-05 07:00:00+00:00,0.1959285714285731 -2024-06-05 08:00:00+00:00,0.2007857142857148 -2024-06-05 09:00:00+00:00,0.21428571428571427 -2024-06-05 10:00:00+00:00,0.21928571428571178 -2024-06-05 11:00:00+00:00,0.22664285714285523 -2024-06-05 12:00:00+00:00,0.24035714285713944 -2024-06-05 13:00:00+00:00,0.24728571428570945 -2024-06-05 14:00:00+00:00,0.2755714285714248 -2024-06-05 15:00:00+00:00,0.2794999999999967 -2024-06-05 16:00:00+00:00,0.28149999999999814 -2024-06-05 17:00:00+00:00,0.2705714285714253 -2024-06-05 18:00:00+00:00,0.2647857142857098 -2024-06-05 19:00:00+00:00,0.25692857142856595 -2024-06-05 20:00:00+00:00,0.24021428571427958 -2024-06-05 21:00:00+00:00,0.22214285714285203 -2024-06-05 22:00:00+00:00,0.2248571428571385 -2024-06-05 23:00:00+00:00,0.22092857142856864 -2024-06-06 00:00:00+00:00,0.22964285714285534 -2024-06-06 01:00:00+00:00,0.24292857142857013 -2024-06-06 02:00:00+00:00,0.24378571428571302 -2024-06-06 03:00:00+00:00,0.22271428571428536 -2024-06-06 04:00:00+00:00,0.19757142857142793 -2024-06-06 05:00:00+00:00,0.19871428571428446 -2024-06-06 06:00:00+00:00,0.2145714285714259 -2024-06-06 07:00:00+00:00,0.2289999999999992 -2024-06-06 08:00:00+00:00,0.24121428571428435 -2024-06-06 09:00:00+00:00,0.25792857142857073 -2024-06-06 10:00:00+00:00,0.2674999999999983 -2024-06-06 11:00:00+00:00,0.27671428571428536 -2024-06-06 12:00:00+00:00,0.290142857142858 -2024-06-06 13:00:00+00:00,0.31321428571428506 -2024-06-06 14:00:00+00:00,0.31399999999999906 -2024-06-06 15:00:00+00:00,0.2989999999999985 -2024-06-06 16:00:00+00:00,0.3006428571428553 -2024-06-06 17:00:00+00:00,0.30049999999999955 -2024-06-06 18:00:00+00:00,0.2828571428571434 -2024-06-06 19:00:00+00:00,0.2842142857142867 -2024-06-06 20:00:00+00:00,0.264642857142858 -2024-06-06 21:00:00+00:00,0.2563571428571428 -2024-06-06 22:00:00+00:00,0.24264285714285652 -2024-06-06 23:00:00+00:00,0.23121428571428534 -2024-06-07 00:00:00+00:00,0.2357142857142845 -2024-06-07 01:00:00+00:00,0.2408571428571398 -2024-06-07 02:00:00+00:00,0.22114285714285334 -2024-06-07 03:00:00+00:00,0.1888571428571392 -2024-06-07 04:00:00+00:00,0.18314285714285258 -2024-06-07 05:00:00+00:00,0.1902142857142804 -2024-06-07 06:00:00+00:00,0.19785714285713954 -2024-06-07 07:00:00+00:00,0.20914285714285086 -2024-06-07 08:00:00+00:00,0.2173571428571352 -2024-06-07 09:00:00+00:00,0.20992857142856483 -2024-06-07 10:00:00+00:00,0.21364285714285 -2024-06-07 11:00:00+00:00,0.21678571428570592 -2024-06-07 12:00:00+00:00,0.31892857142856357 -2024-06-07 13:00:00+00:00,0.334785714285707 -2024-06-07 14:00:00+00:00,0.33664285714285064 -2024-06-07 15:00:00+00:00,0.3499285714285674 -2024-06-07 16:00:00+00:00,0.35028571428571 -2024-06-07 17:00:00+00:00,0.35571428571428093 -2024-06-07 18:00:00+00:00,0.34592857142856864 -2024-06-07 19:00:00+00:00,0.33757142857142647 -2024-06-07 20:00:00+00:00,0.315571428571427 -2024-06-09 21:00:00+00:00,0.3072857142857138 -2024-06-09 22:00:00+00:00,0.3061428571428572 -2024-06-09 23:00:00+00:00,0.3022857142857122 -2024-06-10 00:00:00+00:00,0.3095714285714268 -2024-06-10 01:00:00+00:00,0.3095714285714288 -2024-06-10 02:00:00+00:00,0.2102857142857155 -2024-06-10 03:00:00+00:00,0.20049999999999915 -2024-06-10 04:00:00+00:00,0.19057142857142903 -2024-06-10 05:00:00+00:00,0.16792857142856935 -2024-06-10 06:00:00+00:00,0.16785714285714043 -2024-06-10 07:00:00+00:00,0.1684999999999986 -2024-06-10 08:00:00+00:00,0.17099999999999835 -2024-06-10 09:00:00+00:00,0.17385714285714066 -2024-06-10 10:00:00+00:00,0.17885714285714016 -2024-06-10 11:00:00+00:00,0.17557142857142644 -2024-06-10 12:00:00+00:00,0.1734285714285692 -2024-06-10 13:00:00+00:00,0.17849999999999763 -2024-06-10 14:00:00+00:00,0.16899999999999896 -2024-06-10 15:00:00+00:00,0.16028571428571223 -2024-06-10 16:00:00+00:00,0.1589999999999979 -2024-06-10 17:00:00+00:00,0.15099999999999827 -2024-06-10 18:00:00+00:00,0.1476428571428536 -2024-06-10 19:00:00+00:00,0.1434285714285701 -2024-06-10 20:00:00+00:00,0.1355714285714283 -2024-06-10 21:00:00+00:00,0.1298571428571417 -2024-06-10 22:00:00+00:00,0.12414285714285508 -2024-06-10 23:00:00+00:00,0.11499999999999691 -2024-06-11 00:00:00+00:00,0.11949999999999607 -2024-06-11 01:00:00+00:00,0.11635714285714016 -2024-06-11 02:00:00+00:00,0.10878571428571197 -2024-06-11 03:00:00+00:00,0.1058571428571428 -2024-06-11 04:00:00+00:00,0.1039999999999992 -2024-06-11 05:00:00+00:00,0.10878571428571401 -2024-06-11 06:00:00+00:00,0.11078571428571544 -2024-06-11 07:00:00+00:00,0.11114285714285797 -2024-06-11 08:00:00+00:00,0.11750000000000276 -2024-06-11 09:00:00+00:00,0.12192857142857301 -2024-06-11 10:00:00+00:00,0.1287142857142872 -2024-06-11 11:00:00+00:00,0.13100000000000225 -2024-06-11 12:00:00+00:00,0.14700000000000354 -2024-06-11 13:00:00+00:00,0.16228571428571772 -2024-06-11 14:00:00+00:00,0.16235714285714664 -2024-06-11 15:00:00+00:00,0.1641428571428593 -2024-06-11 16:00:00+00:00,0.1642857142857151 -2024-06-11 17:00:00+00:00,0.1741428571428563 -2024-06-11 18:00:00+00:00,0.1759999999999999 -2024-06-11 19:00:00+00:00,0.17585714285714207 -2024-06-11 20:00:00+00:00,0.17299999999999777 -2024-06-11 21:00:00+00:00,0.16871428571428534 -2024-06-11 22:00:00+00:00,0.16049999999999898 -2024-06-11 23:00:00+00:00,0.1586428571428574 -2024-06-12 00:00:00+00:00,0.15792857142857233 -2024-06-12 01:00:00+00:00,0.1632857142857144 -2024-06-12 02:00:00+00:00,0.148142857142856 -2024-06-12 03:00:00+00:00,0.1324285714285724 -2024-06-12 04:00:00+00:00,0.12485714285714421 -2024-06-12 05:00:00+00:00,0.1217857142857172 -2024-06-12 06:00:00+00:00,0.12200000000000395 -2024-06-12 07:00:00+00:00,0.10957142857143408 -2024-06-12 08:00:00+00:00,0.10592857142857781 -2024-06-12 09:00:00+00:00,0.10050000000000889 -2024-06-12 10:00:00+00:00,0.0997142857142949 -2024-06-12 11:00:00+00:00,0.1000714285714354 -2024-06-12 12:00:00+00:00,0.18592857142857813 -2024-06-12 13:00:00+00:00,0.206071428571434 -2024-06-12 14:00:00+00:00,0.22314285714286086 -2024-06-12 15:00:00+00:00,0.2196428571428624 -2024-06-12 16:00:00+00:00,0.2264285714285766 -2024-06-12 17:00:00+00:00,0.23928571428571996 -2024-06-12 18:00:00+00:00,0.28864285714286303 -2024-06-12 19:00:00+00:00,0.30671428571428855 -2024-06-12 20:00:00+00:00,0.3162857142857161 -2024-06-12 21:00:00+00:00,0.315571428571429 -2024-06-12 22:00:00+00:00,0.327142857142856 -2024-06-12 23:00:00+00:00,0.3327857142857117 -2024-06-13 00:00:00+00:00,0.34214285714285253 -2024-06-13 01:00:00+00:00,0.34999999999999837 -2024-06-13 02:00:00+00:00,0.27171428571428385 -2024-06-13 03:00:00+00:00,0.24899999999999725 -2024-06-13 04:00:00+00:00,0.225285714285712 -2024-06-13 05:00:00+00:00,0.22528571428570995 -2024-06-13 06:00:00+00:00,0.2257142857142814 -2024-06-13 07:00:00+00:00,0.22271428571427926 -2024-06-13 08:00:00+00:00,0.17428571428570802 -2024-06-13 09:00:00+00:00,0.15885714285713806 -2024-06-13 10:00:00+00:00,0.14714285714285325 -2024-06-13 11:00:00+00:00,0.14799999999999613 -2024-06-13 12:00:00+00:00,0.1803571428571392 -2024-06-13 13:00:00+00:00,0.19114285714285423 -2024-06-13 14:00:00+00:00,0.1961428571428558 -2024-06-13 15:00:00+00:00,0.20157142857142674 -2024-06-13 16:00:00+00:00,0.2042857142857112 -2024-06-13 17:00:00+00:00,0.21442857142856805 -2024-06-13 18:00:00+00:00,0.21942857142856959 -2024-06-13 19:00:00+00:00,0.22164285714285573 -2024-06-13 20:00:00+00:00,0.21464285714285683 -2024-06-13 21:00:00+00:00,0.20428571428571324 -2024-06-13 22:00:00+00:00,0.20228571428571382 -2024-06-13 23:00:00+00:00,0.19857142857142662 -2024-06-14 00:00:00+00:00,0.20535714285714082 -2024-06-14 01:00:00+00:00,0.20814285714285422 -2024-06-14 02:00:00+00:00,0.17392857142856957 -2024-06-14 03:00:00+00:00,0.23549999999999574 -2024-06-14 04:00:00+00:00,0.22899999999999718 -2024-06-14 05:00:00+00:00,0.23599999999999607 -2024-06-14 06:00:00+00:00,0.2647857142857118 -2024-06-14 07:00:00+00:00,0.2887142857142838 -2024-06-14 08:00:00+00:00,0.31671428571428145 -2024-06-14 09:00:00+00:00,0.34678571428571153 -2024-06-14 10:00:00+00:00,0.3597857142857127 -2024-06-14 11:00:00+00:00,0.3817142857142853 -2024-06-14 12:00:00+00:00,0.4082142857142839 -2024-06-14 13:00:00+00:00,0.42164285714285654 -2024-06-14 14:00:00+00:00,0.4423571428571437 -2024-06-14 15:00:00+00:00,0.4536428571428611 -2024-06-14 16:00:00+00:00,0.4457857142857173 -2024-06-14 17:00:00+00:00,0.3707142857142896 -2024-06-14 18:00:00+00:00,0.36292857142857265 -2024-06-14 19:00:00+00:00,0.34271428571428786 -2024-06-14 20:00:00+00:00,0.30864285714285905 -2024-06-16 21:00:00+00:00,0.2787857142857157 -2024-06-16 22:00:00+00:00,0.2576428571428591 -2024-06-16 23:00:00+00:00,0.22650000000000148 -2024-06-17 00:00:00+00:00,0.2259999999999991 -2024-06-17 01:00:00+00:00,0.21085714285714272 -2024-06-17 02:00:00+00:00,0.18300000000000086 -2024-06-17 03:00:00+00:00,0.17685714285714482 -2024-06-17 04:00:00+00:00,0.14928571428571452 -2024-06-17 05:00:00+00:00,0.1375714285714277 -2024-06-17 06:00:00+00:00,0.15414285714285622 -2024-06-17 07:00:00+00:00,0.16542857142857162 -2024-06-17 08:00:00+00:00,0.1710714285714293 -2024-06-17 09:00:00+00:00,0.1739285714285716 -2024-06-17 10:00:00+00:00,0.17250000000000146 -2024-06-17 11:00:00+00:00,0.1794285714285735 -2024-06-17 12:00:00+00:00,0.17378571428571782 -2024-06-17 13:00:00+00:00,0.17221428571428785 -2024-06-17 14:00:00+00:00,0.162071428571431 -2024-06-17 15:00:00+00:00,0.16007142857143158 -2024-06-17 16:00:00+00:00,0.15985714285714486 -2024-06-17 17:00:00+00:00,0.15135714285714488 -2024-06-17 18:00:00+00:00,0.15078571428571763 -2024-06-17 19:00:00+00:00,0.14514285714285993 -2024-06-17 20:00:00+00:00,0.1246428571428595 -2024-06-17 21:00:00+00:00,0.11028571428571711 -2024-06-17 22:00:00+00:00,0.10521428571429071 -2024-06-17 23:00:00+00:00,0.10507142857143492 -2024-06-18 00:00:00+00:00,0.10457142857143456 -2024-06-18 01:00:00+00:00,0.10100000000000721 -2024-06-18 02:00:00+00:00,0.09850000000000543 -2024-06-18 03:00:00+00:00,0.09335714285714809 -2024-06-18 04:00:00+00:00,0.09514285714286277 -2024-06-18 05:00:00+00:00,0.10100000000000518 -2024-06-18 06:00:00+00:00,0.10642857142857613 -2024-06-18 07:00:00+00:00,0.1167857142857177 -2024-06-18 08:00:00+00:00,0.12350000000000298 -2024-06-18 09:00:00+00:00,0.13078571428571756 -2024-06-18 10:00:00+00:00,0.13457142857143164 -2024-06-18 11:00:00+00:00,0.1380714285714301 -2024-06-18 12:00:00+00:00,0.1685714285714275 -2024-06-18 13:00:00+00:00,0.1781428571428551 -2024-06-18 14:00:00+00:00,0.18678571428571292 -2024-06-18 15:00:00+00:00,0.19149999999999676 -2024-06-18 16:00:00+00:00,0.19407142857142543 -2024-06-18 17:00:00+00:00,0.20535714285714082 -2024-06-18 18:00:00+00:00,0.20342857142856832 -2024-06-18 19:00:00+00:00,0.19814285714285315 -2024-06-18 20:00:00+00:00,0.18992857142856678 -2024-06-18 21:00:00+00:00,0.1786428571428534 -2024-06-18 22:00:00+00:00,0.17321428571428246 -2024-06-18 23:00:00+00:00,0.16557142857142335 -2024-06-19 00:00:00+00:00,0.16471428571428046 -2024-06-19 01:00:00+00:00,0.1679999999999962 -2024-06-19 02:00:00+00:00,0.13935714285714035 -2024-06-19 03:00:00+00:00,0.12707142857142426 -2024-06-19 04:00:00+00:00,0.11307142857142237 -2024-06-19 05:00:00+00:00,0.10114285714285286 -2024-06-19 06:00:00+00:00,0.10457142857142442 -2024-06-19 07:00:00+00:00,0.10007142857142323 -2024-06-19 08:00:00+00:00,0.09557142857142407 -2024-06-19 09:00:00+00:00,0.09257142857142599 -2024-06-19 10:00:00+00:00,0.09557142857142813 -2024-06-19 11:00:00+00:00,0.09764285714285645 -2024-06-19 12:00:00+00:00,0.09707142857142717 -2024-06-19 13:00:00+00:00,0.09578571428571488 -2024-06-19 14:00:00+00:00,0.09357142857143076 -2024-06-19 15:00:00+00:00,0.08542857142857331 -2024-06-19 16:00:00+00:00,0.08192857142857284 -2024-06-19 17:00:00+00:00,0.07985714285714453 -2024-06-19 18:00:00+00:00,0.08221428571428849 -2024-06-19 19:00:00+00:00,0.079500000000002 -2024-06-19 20:00:00+00:00,0.07514285714285864 -2024-06-19 21:00:00+00:00,0.06757142857143249 -2024-06-19 22:00:00+00:00,0.06807142857143285 -2024-06-19 23:00:00+00:00,0.07000000000000332 -2024-06-20 00:00:00+00:00,0.07328571428571706 -2024-06-20 01:00:00+00:00,0.07792857142857404 -2024-06-20 02:00:00+00:00,0.07585714285714573 -2024-06-20 03:00:00+00:00,0.07864285714285911 -2024-06-20 04:00:00+00:00,0.08085714285714321 -2024-06-20 05:00:00+00:00,0.084857142857142 -2024-06-20 06:00:00+00:00,0.08978571428571261 -2024-06-20 07:00:00+00:00,0.10385714285714139 -2024-06-20 08:00:00+00:00,0.11171428571428318 -2024-06-20 09:00:00+00:00,0.11449999999999656 -2024-06-20 10:00:00+00:00,0.11064285714285559 -2024-06-20 11:00:00+00:00,0.11164285714285427 -2024-06-20 12:00:00+00:00,0.12871428571428112 -2024-06-20 13:00:00+00:00,0.13792857142856615 -2024-06-20 14:00:00+00:00,0.13607142857142257 -2024-06-20 15:00:00+00:00,0.13392857142856737 -2024-06-20 16:00:00+00:00,0.14214285714285171 -2024-06-20 17:00:00+00:00,0.1429999999999946 -2024-06-20 18:00:00+00:00,0.15171428571427928 -2024-06-20 19:00:00+00:00,0.15171428571427928 -2024-06-20 20:00:00+00:00,0.14814285714285194 -2024-06-20 21:00:00+00:00,0.1352142857142817 -2024-06-20 22:00:00+00:00,0.12528571428570956 -2024-06-20 23:00:00+00:00,0.12799999999999606 -2024-06-21 00:00:00+00:00,0.13871428571428016 -2024-06-21 01:00:00+00:00,0.14821428571428083 -2024-06-21 02:00:00+00:00,0.13728571428571204 -2024-06-21 03:00:00+00:00,0.1272142857142821 -2024-06-21 04:00:00+00:00,0.12221428571428257 -2024-06-21 05:00:00+00:00,0.12499999999999391 -2024-06-21 06:00:00+00:00,0.11971428571428078 -2024-06-21 07:00:00+00:00,0.13735714285713893 -2024-06-21 08:00:00+00:00,0.13614285714285554 -2024-06-21 09:00:00+00:00,0.13721428571428515 -2024-06-21 10:00:00+00:00,0.1414999999999996 -2024-06-21 11:00:00+00:00,0.14642857142857021 -2024-06-21 12:00:00+00:00,0.1530714285714286 -2024-06-21 13:00:00+00:00,0.16471428571428653 -2024-06-21 14:00:00+00:00,0.18135714285714602 -2024-06-21 15:00:00+00:00,0.18271428571428924 -2024-06-21 16:00:00+00:00,0.17800000000000335 -2024-06-21 17:00:00+00:00,0.1817857142857195 -2024-06-21 18:00:00+00:00,0.18450000000000596 -2024-06-21 19:00:00+00:00,0.1797142857142932 -2024-06-21 20:00:00+00:00,0.1932857142857216 -2024-06-23 21:00:00+00:00,0.18114285714286332 -2024-06-23 22:00:00+00:00,0.1772142857142914 -2024-06-23 23:00:00+00:00,0.18392857142857671 -2024-06-24 00:00:00+00:00,0.18521428571429105 -2024-06-24 01:00:00+00:00,0.1903571428571504 -2024-06-24 02:00:00+00:00,0.18692857142857885 -2024-06-24 03:00:00+00:00,0.1751428571428631 -2024-06-24 04:00:00+00:00,0.14792857142857535 -2024-06-24 05:00:00+00:00,0.13928571428571754 -2024-06-24 06:00:00+00:00,0.13971428571428898 -2024-06-24 07:00:00+00:00,0.13578571428571706 -2024-06-24 08:00:00+00:00,0.13878571428571718 -2024-06-24 09:00:00+00:00,0.14850000000000257 -2024-06-24 10:00:00+00:00,0.19328571428571756 -2024-06-24 11:00:00+00:00,0.19785714285714764 -2024-06-24 12:00:00+00:00,0.2040000000000057 -2024-06-24 13:00:00+00:00,0.20178571428571956 -2024-06-24 14:00:00+00:00,0.21707142857143374 -2024-06-24 15:00:00+00:00,0.21235714285714583 -2024-06-24 16:00:00+00:00,0.21364285714286016 -2024-06-24 17:00:00+00:00,0.2080000000000045 -2024-06-24 18:00:00+00:00,0.2146428571428629 -2024-06-24 19:00:00+00:00,0.2143571428571493 -2024-06-24 20:00:00+00:00,0.2137142857142911 -2024-06-24 21:00:00+00:00,0.2117857142857186 -2024-06-24 22:00:00+00:00,0.20900000000000318 -2024-06-24 23:00:00+00:00,0.19950000000000248 -2024-06-25 00:00:00+00:00,0.16100000000000136 -2024-06-25 01:00:00+00:00,0.1673571428571421 -2024-06-25 02:00:00+00:00,0.16178571428571129 -2024-06-25 03:00:00+00:00,0.16064285714285478 -2024-06-25 04:00:00+00:00,0.14157142857142446 -2024-06-25 05:00:00+00:00,0.14549999999999638 -2024-06-25 06:00:00+00:00,0.1457142857142831 -2024-06-25 07:00:00+00:00,0.15492857142856817 -2024-06-25 08:00:00+00:00,0.14949999999999722 -2024-06-25 09:00:00+00:00,0.14885714285713902 -2024-06-25 10:00:00+00:00,0.15307142857142456 -2024-06-25 11:00:00+00:00,0.15314285714285347 -2024-06-25 12:00:00+00:00,0.16442857142856684 -2024-06-25 13:00:00+00:00,0.16807142857142512 -2024-06-25 14:00:00+00:00,0.15135714285713878 -2024-06-25 15:00:00+00:00,0.13535714285714157 -2024-06-25 16:00:00+00:00,0.13078571428571348 -2024-06-25 17:00:00+00:00,0.12492857142856906 -2024-06-25 18:00:00+00:00,0.12285714285714278 -2024-06-25 19:00:00+00:00,0.11521428571428569 -2024-06-25 20:00:00+00:00,0.11207142857142774 -2024-06-25 21:00:00+00:00,0.10271428571428487 -2024-06-25 22:00:00+00:00,0.1001428571428562 -2024-06-25 23:00:00+00:00,0.09985714285714258 -2024-06-26 00:00:00+00:00,0.09607142857142849 -2024-06-26 01:00:00+00:00,0.10628571428571425 -2024-06-26 02:00:00+00:00,0.0979285714285721 -2024-06-26 03:00:00+00:00,0.09442857142857163 -2024-06-26 04:00:00+00:00,0.0930000000000015 -2024-06-26 05:00:00+00:00,0.09221428571428548 -2024-06-26 06:00:00+00:00,0.09150000000000043 -2024-06-26 07:00:00+00:00,0.09321428571428621 -2024-06-26 08:00:00+00:00,0.09549999999999922 -2024-06-26 09:00:00+00:00,0.10464285714285738 -2024-06-26 10:00:00+00:00,0.12507142857142892 -2024-06-26 11:00:00+00:00,0.13535714285714157 -2024-06-26 12:00:00+00:00,0.13828571428571276 -2024-06-26 13:00:00+00:00,0.17557142857142644 -2024-06-26 14:00:00+00:00,0.18392857142856858 -2024-06-26 15:00:00+00:00,0.18549999999999858 -2024-06-26 16:00:00+00:00,0.18907142857142795 -2024-06-26 17:00:00+00:00,0.18878571428571433 -2024-06-26 18:00:00+00:00,0.1883571428571429 -2024-06-26 19:00:00+00:00,0.19357142857142914 -2024-06-26 20:00:00+00:00,0.19657142857142926 -2024-06-26 21:00:00+00:00,0.1922857142857148 -2024-06-26 22:00:00+00:00,0.19264285714285734 -2024-06-26 23:00:00+00:00,0.18664285714285508 -2024-06-27 00:00:00+00:00,0.1754285714285686 -2024-06-27 01:00:00+00:00,0.1848571428571404 -2024-06-27 02:00:00+00:00,0.18642857142856833 -2024-06-27 03:00:00+00:00,0.14921428571428358 -2024-06-27 04:00:00+00:00,0.14357142857142793 -2024-06-27 05:00:00+00:00,0.1384285714285706 -2024-06-27 06:00:00+00:00,0.1384285714285706 -2024-06-27 07:00:00+00:00,0.14485714285714021 -2024-06-27 08:00:00+00:00,0.14428571428571096 -2024-06-27 09:00:00+00:00,0.13971428571428085 -2024-06-27 10:00:00+00:00,0.13964285714285193 -2024-06-27 11:00:00+00:00,0.14507142857142494 -2024-06-27 12:00:00+00:00,0.15692857142856756 -2024-06-27 13:00:00+00:00,0.1618571428571402 -2024-06-27 14:00:00+00:00,0.16507142857142704 -2024-06-27 15:00:00+00:00,0.15350000000000005 -2024-06-27 16:00:00+00:00,0.14864285714285635 -2024-06-27 17:00:00+00:00,0.14678571428571274 -2024-06-27 18:00:00+00:00,0.14492857142856913 -2024-06-27 19:00:00+00:00,0.1389285714285689 -2024-06-27 20:00:00+00:00,0.1312142857142829 -2024-06-27 21:00:00+00:00,0.12214285714285568 -2024-06-27 22:00:00+00:00,0.1213571428571417 -2024-06-27 23:00:00+00:00,0.12364285714285675 -2024-06-28 00:00:00+00:00,0.15164285714285647 -2024-06-28 01:00:00+00:00,0.16607142857142776 -2024-06-28 02:00:00+00:00,0.16507142857142906 -2024-06-28 03:00:00+00:00,0.1632857142857144 -2024-06-28 04:00:00+00:00,0.1557142857142862 -2024-06-28 05:00:00+00:00,0.15478571428571644 -2024-06-28 06:00:00+00:00,0.15864285714285944 -2024-06-28 07:00:00+00:00,0.169785714285717 -2024-06-28 08:00:00+00:00,0.1698571428571459 -2024-06-28 09:00:00+00:00,0.18371428571428997 -2024-06-28 10:00:00+00:00,0.19885714285714837 -2024-06-28 11:00:00+00:00,0.21142857142857605 -2024-06-28 12:00:00+00:00,0.22671428571429025 -2024-06-28 13:00:00+00:00,0.2360000000000042 -2024-06-28 14:00:00+00:00,0.23521428571429023 -2024-06-28 15:00:00+00:00,0.22300000000000506 -2024-06-28 16:00:00+00:00,0.21057142857143316 -2024-06-28 17:00:00+00:00,0.2095714285714345 -2024-06-28 18:00:00+00:00,0.20742857142857726 -2024-06-28 19:00:00+00:00,0.2034285714285744 -2024-06-28 20:00:00+00:00,0.20178571428571754 -2024-06-30 21:00:00+00:00,0.19607142857143092 -2024-06-30 22:00:00+00:00,0.19850000000000176 -2024-06-30 23:00:00+00:00,0.1907142857142848 -2024-07-01 00:00:00+00:00,0.20314285714285468 -2024-07-01 01:00:00+00:00,0.2014285714285689 -2024-07-01 02:00:00+00:00,0.18728571428571122 -2024-07-01 03:00:00+00:00,0.18171428571428244 -2024-07-01 04:00:00+00:00,0.155071428571426 -2024-07-01 05:00:00+00:00,0.1525714285714242 -2024-07-01 06:00:00+00:00,0.15721428571428117 -2024-07-01 07:00:00+00:00,0.16135714285713781 -2024-07-01 08:00:00+00:00,0.16307142857142157 -2024-07-01 09:00:00+00:00,0.16392857142856446 -2024-07-01 10:00:00+00:00,0.16592857142856587 -2024-07-01 11:00:00+00:00,0.15999999999999456 -2024-07-01 12:00:00+00:00,0.17057142857142285 -2024-07-01 13:00:00+00:00,0.17249999999999538 -2024-07-01 14:00:00+00:00,0.19028571428571134 -2024-07-01 15:00:00+00:00,0.18999999999999773 -2024-07-01 16:00:00+00:00,0.1914999999999988 -2024-07-01 17:00:00+00:00,0.18714285714285545 -2024-07-01 18:00:00+00:00,0.18649999999999725 -2024-07-01 19:00:00+00:00,0.1819999999999981 -2024-07-01 20:00:00+00:00,0.17542857142857063 -2024-07-01 21:00:00+00:00,0.17028571428571126 -2024-07-01 22:00:00+00:00,0.1667142857142839 -2024-07-01 23:00:00+00:00,0.16642857142857231 -2024-07-02 00:00:00+00:00,0.16778571428571354 -2024-07-02 01:00:00+00:00,0.17835714285714183 -2024-07-02 02:00:00+00:00,0.1652857142857138 -2024-07-02 03:00:00+00:00,0.1567857142857138 -2024-07-02 04:00:00+00:00,0.11707142857142726 -2024-07-02 05:00:00+00:00,0.11028571428571306 -2024-07-02 06:00:00+00:00,0.11114285714285595 -2024-07-02 07:00:00+00:00,0.1115000000000005 -2024-07-02 08:00:00+00:00,0.11414285714285809 -2024-07-02 09:00:00+00:00,0.11721428571428508 -2024-07-02 10:00:00+00:00,0.1193571428571423 -2024-07-02 11:00:00+00:00,0.1160714285714306 -2024-07-02 12:00:00+00:00,0.11907142857143072 -2024-07-02 13:00:00+00:00,0.13228571428571456 -2024-07-02 14:00:00+00:00,0.1420714285714309 -2024-07-02 15:00:00+00:00,0.13814285714286104 -2024-07-02 16:00:00+00:00,0.13557142857143237 -2024-07-02 17:00:00+00:00,0.13642857142857526 -2024-07-02 18:00:00+00:00,0.13164285714286045 -2024-07-02 19:00:00+00:00,0.12978571428571684 -2024-07-02 20:00:00+00:00,0.12478571428571529 -2024-07-02 21:00:00+00:00,0.12150000000000157 -2024-07-02 22:00:00+00:00,0.11642857142857313 -2024-07-02 23:00:00+00:00,0.11628571428571936 -2024-07-03 00:00:00+00:00,0.12007142857143142 -2024-07-03 01:00:00+00:00,0.12292857142857372 -2024-07-03 02:00:00+00:00,0.11942857142857324 -2024-07-03 03:00:00+00:00,0.10164285714285727 -2024-07-03 04:00:00+00:00,0.09149999999999839 -2024-07-03 05:00:00+00:00,0.09471428571428119 -2024-07-03 06:00:00+00:00,0.10892857142856778 -2024-07-03 07:00:00+00:00,0.11607142857142451 -2024-07-03 08:00:00+00:00,0.11749999999999668 -2024-07-03 09:00:00+00:00,0.11878571428571101 -2024-07-03 10:00:00+00:00,0.12135714285713968 -2024-07-03 11:00:00+00:00,0.11992857142856751 -2024-07-03 12:00:00+00:00,0.12521428571428064 -2024-07-03 13:00:00+00:00,0.1345714285714215 -2024-07-03 14:00:00+00:00,0.18899999999999498 -2024-07-03 15:00:00+00:00,0.199785714285708 -2024-07-03 16:00:00+00:00,0.20628571428570858 -2024-07-03 17:00:00+00:00,0.20828571428571 -2024-07-03 18:00:00+00:00,0.21614285714285383 -2024-07-03 19:00:00+00:00,0.2097857142857131 -2024-07-03 20:00:00+00:00,0.19442857142857 -2024-07-03 21:00:00+00:00,0.18907142857142795 -2024-07-03 22:00:00+00:00,0.18914285714285484 -2024-07-03 23:00:00+00:00,0.18978571428571098 -2024-07-04 00:00:00+00:00,0.19921428571428276 -2024-07-04 01:00:00+00:00,0.2189285714285672 -2024-07-04 02:00:00+00:00,0.21849999999999575 -2024-07-04 03:00:00+00:00,0.21464285714285478 -2024-07-04 04:00:00+00:00,0.1579999999999972 -2024-07-04 05:00:00+00:00,0.14578571428571202 -2024-07-04 06:00:00+00:00,0.14385714285713952 -2024-07-04 07:00:00+00:00,0.15299999999999767 -2024-07-04 08:00:00+00:00,0.14542857142856747 -2024-07-04 09:00:00+00:00,0.14271428571428096 -2024-07-04 10:00:00+00:00,0.15392857142856542 -2024-07-04 11:00:00+00:00,0.15778571428570842 -2024-07-04 12:00:00+00:00,0.16749999999999585 -2024-07-04 13:00:00+00:00,0.16742857142856898 -2024-07-04 14:00:00+00:00,0.16657142857142812 -2024-07-04 15:00:00+00:00,0.15128571428571394 -2024-07-04 16:00:00+00:00,0.14592857142857188 -2024-07-04 17:00:00+00:00,0.13607142857142865 -2024-07-04 18:00:00+00:00,0.1357142857142841 -2024-07-04 19:00:00+00:00,0.13414285714285615 -2024-07-04 20:00:00+00:00,0.12835714285714264 -2024-07-04 21:00:00+00:00,0.12099999999999918 -2024-07-04 22:00:00+00:00,0.11842857142857253 -2024-07-04 23:00:00+00:00,0.12342857142857204 -2024-07-05 00:00:00+00:00,0.14928571428571655 -2024-07-05 01:00:00+00:00,0.15700000000000053 -2024-07-05 02:00:00+00:00,0.15021428571428633 -2024-07-05 03:00:00+00:00,0.1757142857142863 -2024-07-05 04:00:00+00:00,0.16964285714285715 -2024-07-05 05:00:00+00:00,0.17185714285714532 -2024-07-05 06:00:00+00:00,0.18450000000000394 -2024-07-05 07:00:00+00:00,0.19542857142857276 -2024-07-05 08:00:00+00:00,0.20185714285714443 -2024-07-05 09:00:00+00:00,0.20685714285714393 -2024-07-05 10:00:00+00:00,0.21500000000000138 -2024-07-05 11:00:00+00:00,0.21650000000000244 -2024-07-05 12:00:00+00:00,0.2682142857142874 -2024-07-05 13:00:00+00:00,0.29714285714285893 -2024-07-05 14:00:00+00:00,0.28700000000000003 -2024-07-05 15:00:00+00:00,0.29621428571428715 -2024-07-05 16:00:00+00:00,0.3036428571428575 -2024-07-05 17:00:00+00:00,0.2782142857142844 -2024-07-05 18:00:00+00:00,0.2783571428571402 -2024-07-05 19:00:00+00:00,0.2722857142857111 -2024-07-05 20:00:00+00:00,0.2632857142857087 -2024-07-07 21:00:00+00:00,0.2562142857142809 -2024-07-07 22:00:00+00:00,0.25157142857142595 -2024-07-07 23:00:00+00:00,0.25749999999999723 -2024-07-08 00:00:00+00:00,0.25664285714285434 -2024-07-08 01:00:00+00:00,0.27207142857142436 -2024-07-08 02:00:00+00:00,0.22914285714285296 -2024-07-08 03:00:00+00:00,0.2042857142857112 -2024-07-08 04:00:00+00:00,0.18121428571428208 -2024-07-08 05:00:00+00:00,0.16535714285713862 -2024-07-08 06:00:00+00:00,0.17121428571428104 -2024-07-08 07:00:00+00:00,0.17614285714285366 -2024-07-08 08:00:00+00:00,0.18264285714285425 -2024-07-08 09:00:00+00:00,0.18528571428571183 -2024-07-08 10:00:00+00:00,0.18607142857142783 -2024-07-08 11:00:00+00:00,0.1924999999999995 -2024-07-08 12:00:00+00:00,0.2086428571428566 -2024-07-08 13:00:00+00:00,0.207571428571429 -2024-07-08 14:00:00+00:00,0.2087142857142855 -2024-07-08 15:00:00+00:00,0.20142857142857093 -2024-07-08 16:00:00+00:00,0.19021428571428448 -2024-07-08 17:00:00+00:00,0.18057142857142797 -2024-07-08 18:00:00+00:00,0.18007142857142963 -2024-07-08 19:00:00+00:00,0.17214285714285893 -2024-07-08 20:00:00+00:00,0.15342857142857522 -2024-07-08 21:00:00+00:00,0.1432857142857204 -2024-07-08 22:00:00+00:00,0.12942857142857836 -2024-07-08 23:00:00+00:00,0.1326428571428632 -2024-07-09 00:00:00+00:00,0.13500000000000512 -2024-07-09 01:00:00+00:00,0.13335714285714825 -2024-07-09 02:00:00+00:00,0.12050000000000491 -2024-07-09 03:00:00+00:00,0.11835714285714768 -2024-07-09 04:00:00+00:00,0.11642857142857517 -2024-07-09 05:00:00+00:00,0.1078571428571483 -2024-07-09 06:00:00+00:00,0.11300000000000564 -2024-07-09 07:00:00+00:00,0.12314285714286045 -2024-07-09 08:00:00+00:00,0.12950000000000322 -2024-07-09 09:00:00+00:00,0.13271428571429006 -2024-07-09 10:00:00+00:00,0.1350000000000031 -2024-07-09 11:00:00+00:00,0.14435714285714393 -2024-07-09 12:00:00+00:00,0.15085714285714452 -2024-07-09 13:00:00+00:00,0.15314285714285955 -2024-07-09 14:00:00+00:00,0.17785714285714554 -2024-07-09 15:00:00+00:00,0.18107142857143238 -2024-07-09 16:00:00+00:00,0.17542857142857468 -2024-07-09 17:00:00+00:00,0.1697142857142881 -2024-07-09 18:00:00+00:00,0.1637857142857188 -2024-07-09 19:00:00+00:00,0.16050000000000506 -2024-07-09 20:00:00+00:00,0.15457142857143374 -2024-07-09 21:00:00+00:00,0.14457142857143473 -2024-07-09 22:00:00+00:00,0.1365714285714351 -2024-07-09 23:00:00+00:00,0.1326428571428632 -2024-07-10 00:00:00+00:00,0.14050000000000498 -2024-07-10 01:00:00+00:00,0.1385714285714345 -2024-07-10 02:00:00+00:00,0.13778571428572053 -2024-07-10 03:00:00+00:00,0.13271428571429006 -2024-07-10 04:00:00+00:00,0.10157142857143242 -2024-07-10 05:00:00+00:00,0.09607142857143051 -2024-07-10 06:00:00+00:00,0.09985714285714462 -2024-07-10 07:00:00+00:00,0.10357142857142979 -2024-07-10 08:00:00+00:00,0.10642857142857208 -2024-07-10 09:00:00+00:00,0.10957142857142799 -2024-07-10 10:00:00+00:00,0.11314285714285736 -2024-07-10 11:00:00+00:00,0.11521428571428771 -2024-07-10 12:00:00+00:00,0.11542857142857445 -2024-07-10 13:00:00+00:00,0.12428571428571697 -2024-07-10 14:00:00+00:00,0.11985714285714673 -2024-07-10 15:00:00+00:00,0.11950000000000419 -2024-07-10 16:00:00+00:00,0.11728571428571602 -2024-07-10 17:00:00+00:00,0.11857142857143035 -2024-07-10 18:00:00+00:00,0.11857142857143035 -2024-07-10 19:00:00+00:00,0.1131428571428594 -2024-07-10 20:00:00+00:00,0.10678571428571663 -2024-07-10 21:00:00+00:00,0.10078571428571845 -2024-07-10 22:00:00+00:00,0.09671428571429073 -2024-07-10 23:00:00+00:00,0.09528571428571857 -2024-07-11 00:00:00+00:00,0.09792857142857615 -2024-07-11 01:00:00+00:00,0.09885714285714593 -2024-07-11 02:00:00+00:00,0.10257142857142908 -2024-07-11 03:00:00+00:00,0.09457142857142944 -2024-07-11 04:00:00+00:00,0.0895714285714279 -2024-07-11 05:00:00+00:00,0.08414285714285492 -2024-07-11 06:00:00+00:00,0.08235714285714225 -2024-07-11 07:00:00+00:00,0.08907142857142755 -2024-07-11 08:00:00+00:00,0.09407142857142706 -2024-07-11 09:00:00+00:00,0.09607142857142646 -2024-07-11 10:00:00+00:00,0.09742857142856971 -2024-07-11 11:00:00+00:00,0.09585714285713973 -2024-07-11 12:00:00+00:00,0.32435714285713857 -2024-07-11 13:00:00+00:00,0.42899999999999594 -2024-07-11 14:00:00+00:00,0.4507142857142798 -2024-07-11 15:00:00+00:00,0.4562857142857086 -2024-07-11 16:00:00+00:00,0.454428571428567 -2024-07-11 17:00:00+00:00,0.47442857142856504 -2024-07-11 18:00:00+00:00,0.4805714285714231 -2024-07-11 19:00:00+00:00,0.4844285714285661 -2024-07-11 20:00:00+00:00,0.487571428571422 -2024-07-11 21:00:00+00:00,0.4782857142857101 -2024-07-11 22:00:00+00:00,0.4949285714285675 -2024-07-11 23:00:00+00:00,0.6103571428571399 -2024-07-12 00:00:00+00:00,0.6873571428571401 -2024-07-12 01:00:00+00:00,0.7056428571428545 -2024-07-12 02:00:00+00:00,0.518499999999997 -2024-07-12 03:00:00+00:00,0.4214999999999987 -2024-07-12 04:00:00+00:00,0.4046428571428566 -2024-07-12 05:00:00+00:00,0.4107857142857126 -2024-07-12 06:00:00+00:00,0.4214285714285698 -2024-07-12 07:00:00+00:00,0.4117142857142844 -2024-07-12 08:00:00+00:00,0.41699999999999954 -2024-07-12 09:00:00+00:00,0.42192857142857015 -2024-07-12 10:00:00+00:00,0.42464285714285666 -2024-07-12 11:00:00+00:00,0.43328571428571244 -2024-07-12 12:00:00+00:00,0.45364285714285507 -2024-07-12 13:00:00+00:00,0.4379285714285694 -2024-07-12 14:00:00+00:00,0.4244999999999968 -2024-07-12 15:00:00+00:00,0.44385714285714073 -2024-07-12 16:00:00+00:00,0.41135714285714187 -2024-07-12 17:00:00+00:00,0.408928571428569 -2024-07-12 18:00:00+00:00,0.40292857142856875 -2024-07-12 19:00:00+00:00,0.3925714285714272 -2024-07-12 20:00:00+00:00,0.3850714285714259 -2024-07-14 21:00:00+00:00,0.3934285714285701 -2024-07-14 22:00:00+00:00,0.4059999999999978 -2024-07-14 23:00:00+00:00,0.4115714285714266 -2024-07-15 00:00:00+00:00,0.42807142857142616 -2024-07-15 01:00:00+00:00,0.43357142857142605 -2024-07-15 02:00:00+00:00,0.40285714285714186 -2024-07-15 03:00:00+00:00,0.30542857142857016 -2024-07-15 04:00:00+00:00,0.24192857142857147 -2024-07-15 05:00:00+00:00,0.21207142857142816 -2024-07-15 06:00:00+00:00,0.22499999999999837 -2024-07-15 07:00:00+00:00,0.23435714285714124 -2024-07-15 08:00:00+00:00,0.2387857142857115 -2024-07-15 09:00:00+00:00,0.2463571428571417 -2024-07-15 10:00:00+00:00,0.24764285714285808 -2024-07-15 11:00:00+00:00,0.2443571428571423 -2024-07-15 12:00:00+00:00,0.23114285714285845 -2024-07-15 13:00:00+00:00,0.22700000000000184 -2024-07-15 14:00:00+00:00,0.2081428571428603 -2024-07-15 15:00:00+00:00,0.19564285714285948 -2024-07-15 16:00:00+00:00,0.2365714285714294 -2024-07-15 17:00:00+00:00,0.25028571428571567 -2024-07-15 18:00:00+00:00,0.25142857142857217 -2024-07-15 19:00:00+00:00,0.25035714285714256 -2024-07-15 20:00:00+00:00,0.24378571428571508 -2024-07-15 21:00:00+00:00,0.23021428571428665 -2024-07-15 22:00:00+00:00,0.22307142857142992 -2024-07-15 23:00:00+00:00,0.22042857142857233 -2024-07-16 00:00:00+00:00,0.22914285714285704 -2024-07-16 01:00:00+00:00,0.22928571428571484 -2024-07-16 02:00:00+00:00,0.22857142857142776 -2024-07-16 03:00:00+00:00,0.22321428571428573 -2024-07-16 04:00:00+00:00,0.2230714285714279 -2024-07-16 05:00:00+00:00,0.22585714285714328 -2024-07-16 06:00:00+00:00,0.1892857142857147 -2024-07-16 07:00:00+00:00,0.18264285714285627 -2024-07-16 08:00:00+00:00,0.1863571428571435 -2024-07-16 09:00:00+00:00,0.1873571428571442 -2024-07-16 10:00:00+00:00,0.17542857142857063 -2024-07-16 11:00:00+00:00,0.17842857142857074 -2024-07-16 12:00:00+00:00,0.21499999999999936 -2024-07-16 13:00:00+00:00,0.22099999999999756 -2024-07-16 14:00:00+00:00,0.21171428571428358 -2024-07-16 15:00:00+00:00,0.20007142857142565 -2024-07-16 16:00:00+00:00,0.19314285714285365 -2024-07-16 17:00:00+00:00,0.19364285714285398 -2024-07-16 18:00:00+00:00,0.19557142857142448 -2024-07-16 19:00:00+00:00,0.1929285714285669 -2024-07-16 20:00:00+00:00,0.17928571428570958 -2024-07-16 21:00:00+00:00,0.16807142857142512 -2024-07-16 22:00:00+00:00,0.16349999999999504 -2024-07-16 23:00:00+00:00,0.15671428571428084 -2024-07-17 00:00:00+00:00,0.16585714285713898 -2024-07-17 01:00:00+00:00,0.16999999999999563 -2024-07-17 02:00:00+00:00,0.1357142857142841 -2024-07-17 03:00:00+00:00,0.12485714285714014 -2024-07-17 04:00:00+00:00,0.1254285714285674 -2024-07-17 05:00:00+00:00,0.14328571428571024 -2024-07-17 06:00:00+00:00,0.1627142857142831 -2024-07-17 07:00:00+00:00,0.21242857142856866 -2024-07-17 08:00:00+00:00,0.2741428571428547 -2024-07-17 09:00:00+00:00,0.30128571428571355 -2024-07-17 10:00:00+00:00,0.33135714285714357 -2024-07-17 11:00:00+00:00,0.35871428571428715 -2024-07-17 12:00:00+00:00,0.37307142857143155 -2024-07-17 13:00:00+00:00,0.4020000000000031 -2024-07-17 14:00:00+00:00,0.4127142857142892 -2024-07-17 15:00:00+00:00,0.4097857142857159 -2024-07-17 16:00:00+00:00,0.4299999999999987 -2024-07-17 17:00:00+00:00,0.44164285714285867 -2024-07-17 18:00:00+00:00,0.45807142857142935 -2024-07-17 19:00:00+00:00,0.4447857142857166 -2024-07-17 20:00:00+00:00,0.4297142857142871 -2024-07-17 21:00:00+00:00,0.3759285714285718 -2024-07-17 22:00:00+00:00,0.32450000000000045 -2024-07-17 23:00:00+00:00,0.34942857142857114 -2024-07-18 00:00:00+00:00,0.3401428571428572 -2024-07-18 01:00:00+00:00,0.3502142857142851 -2024-07-18 02:00:00+00:00,0.34814285714285476 -2024-07-18 03:00:00+00:00,0.3342857142857107 -2024-07-18 04:00:00+00:00,0.33278571428570963 -2024-07-18 05:00:00+00:00,0.3683571428571416 -2024-07-18 06:00:00+00:00,0.36985714285714266 -2024-07-18 07:00:00+00:00,0.37357142857142783 -2024-07-18 08:00:00+00:00,0.37464285714285744 -2024-07-18 09:00:00+00:00,0.3760714285714276 -2024-07-18 10:00:00+00:00,0.3761428571428565 -2024-07-18 11:00:00+00:00,0.3816428571428564 -2024-07-18 12:00:00+00:00,0.3902142857142853 -2024-07-18 13:00:00+00:00,0.3570714285714282 -2024-07-18 14:00:00+00:00,0.34914285714285753 -2024-07-18 15:00:00+00:00,0.3279999999999989 -2024-07-18 16:00:00+00:00,0.330214285714285 -2024-07-18 17:00:00+00:00,0.31950000000000095 -2024-07-18 18:00:00+00:00,0.3066428571428596 -2024-07-18 19:00:00+00:00,0.2685714285714279 -2024-07-18 20:00:00+00:00,0.24242857142857183 -2024-07-18 21:00:00+00:00,0.22078571428571486 -2024-07-18 22:00:00+00:00,0.19800000000000142 -2024-07-18 23:00:00+00:00,0.1963571428571466 -2024-07-19 00:00:00+00:00,0.20885714285714738 -2024-07-19 01:00:00+00:00,0.22207142857143328 -2024-07-19 02:00:00+00:00,0.2062857142857187 -2024-07-19 03:00:00+00:00,0.1877857142857177 -2024-07-19 04:00:00+00:00,0.17714285714286046 -2024-07-19 05:00:00+00:00,0.18450000000000596 -2024-07-19 06:00:00+00:00,0.21328571428571966 -2024-07-19 07:00:00+00:00,0.24685714285714816 -2024-07-19 08:00:00+00:00,0.25285714285714633 -2024-07-19 09:00:00+00:00,0.2652857142857203 -2024-07-19 10:00:00+00:00,0.27650000000000474 -2024-07-19 11:00:00+00:00,0.28878571428571675 -2024-07-19 12:00:00+00:00,0.3013571428571465 -2024-07-19 13:00:00+00:00,0.3091428571428594 -2024-07-19 14:00:00+00:00,0.3027857142857146 -2024-07-19 15:00:00+00:00,0.2920000000000016 -2024-07-19 16:00:00+00:00,0.2862142857142881 -2024-07-19 17:00:00+00:00,0.28321428571428797 -2024-07-19 18:00:00+00:00,0.2814285714285733 -2024-07-19 19:00:00+00:00,0.2574999999999993 -2024-07-19 20:00:00+00:00,0.21478571428571464 -2024-07-21 21:00:00+00:00,0.17457142857142977 -2024-07-21 22:00:00+00:00,0.17528571428571688 -2024-07-21 23:00:00+00:00,0.1738571428571447 -2024-07-22 00:00:00+00:00,0.1699285714285728 -2024-07-22 01:00:00+00:00,0.16957142857143026 -2024-07-22 02:00:00+00:00,0.15642857142857128 -2024-07-22 03:00:00+00:00,0.14385714285714357 -2024-07-22 04:00:00+00:00,0.13371428571428673 -2024-07-22 05:00:00+00:00,0.15164285714285647 -2024-07-22 06:00:00+00:00,0.20035714285714132 -2024-07-22 07:00:00+00:00,0.2307857142857139 -2024-07-22 08:00:00+00:00,0.2444999999999981 -2024-07-22 09:00:00+00:00,0.2583571428571422 -2024-07-22 10:00:00+00:00,0.28049999999999947 -2024-07-22 11:00:00+00:00,0.2952142857142844 -2024-07-22 12:00:00+00:00,0.2973571428571416 -2024-07-22 13:00:00+00:00,0.2940714285714279 -2024-07-22 14:00:00+00:00,0.29749999999999943 -2024-07-22 15:00:00+00:00,0.3028571428571435 -2024-07-22 16:00:00+00:00,0.3037142857142864 -2024-07-22 17:00:00+00:00,0.30435714285714255 -2024-07-22 18:00:00+00:00,0.30357142857142855 -2024-07-22 19:00:00+00:00,0.2767142857142874 -2024-07-22 20:00:00+00:00,0.22442857142857317 -2024-07-22 21:00:00+00:00,0.1950000000000013 -2024-07-22 22:00:00+00:00,0.1830714285714318 -2024-07-22 23:00:00+00:00,0.18050000000000313 -2024-07-23 00:00:00+00:00,0.17221428571428785 -2024-07-23 01:00:00+00:00,0.1738571428571447 -2024-07-23 02:00:00+00:00,0.1698571428571459 -2024-07-23 03:00:00+00:00,0.1872857142857153 -2024-07-23 04:00:00+00:00,0.18557142857143155 -2024-07-23 05:00:00+00:00,0.17900000000000205 -2024-07-23 06:00:00+00:00,0.20100000000000154 -2024-07-23 07:00:00+00:00,0.2429285714285742 -2024-07-23 08:00:00+00:00,0.2572142857142897 -2024-07-23 09:00:00+00:00,0.27135714285714535 -2024-07-23 10:00:00+00:00,0.2852857142857163 -2024-07-23 11:00:00+00:00,0.28985714285714437 -2024-07-23 12:00:00+00:00,0.3041428571428578 -2024-07-23 13:00:00+00:00,0.3047142857142871 -2024-07-23 14:00:00+00:00,0.30035714285714377 -2024-07-23 15:00:00+00:00,0.2920000000000016 -2024-07-23 16:00:00+00:00,0.300142857142857 -2024-07-23 17:00:00+00:00,0.28278571428571453 -2024-07-23 18:00:00+00:00,0.279285714285714 -2024-07-23 19:00:00+00:00,0.2717857142857148 -2024-07-23 20:00:00+00:00,0.24892857142857241 -2024-07-23 21:00:00+00:00,0.20307142857142782 -2024-07-23 22:00:00+00:00,0.18592857142857003 -2024-07-23 23:00:00+00:00,0.18135714285714194 -2024-07-24 00:00:00+00:00,0.18042857142857013 -2024-07-24 01:00:00+00:00,0.21935714285714067 -2024-07-24 02:00:00+00:00,0.21742857142856817 -2024-07-24 03:00:00+00:00,0.21928571428570973 -2024-07-24 04:00:00+00:00,0.239928571428568 -2024-07-24 05:00:00+00:00,0.26028571428570857 -2024-07-24 06:00:00+00:00,0.2567142857142792 -2024-07-24 07:00:00+00:00,0.2739285714285659 -2024-07-24 08:00:00+00:00,0.2929999999999942 -2024-07-24 09:00:00+00:00,0.3339999999999951 -2024-07-24 10:00:00+00:00,0.35292857142856754 -2024-07-24 11:00:00+00:00,0.38585714285713785 -2024-07-24 12:00:00+00:00,0.4139285714285665 -2024-07-24 13:00:00+00:00,0.4473571428571371 -2024-07-24 14:00:00+00:00,0.4659285714285671 -2024-07-24 15:00:00+00:00,0.432857142857141 -2024-07-24 16:00:00+00:00,0.4293571428571405 -2024-07-24 17:00:00+00:00,0.44107142857142734 -2024-07-24 18:00:00+00:00,0.42378571428571377 -2024-07-24 19:00:00+00:00,0.4084285714285727 -2024-07-24 20:00:00+00:00,0.395071428571431 -2024-07-24 21:00:00+00:00,0.38757142857143173 -2024-07-24 22:00:00+00:00,0.37585714285714494 -2024-07-24 23:00:00+00:00,0.3550000000000019 -2024-07-25 00:00:00+00:00,0.41050000000000103 -2024-07-25 01:00:00+00:00,0.42307142857143276 -2024-07-25 02:00:00+00:00,0.42121428571428915 -2024-07-25 03:00:00+00:00,0.4034285714285752 -2024-07-25 04:00:00+00:00,0.39271428571428907 -2024-07-25 05:00:00+00:00,0.4035000000000021 -2024-07-25 06:00:00+00:00,0.4089285714285751 -2024-07-25 07:00:00+00:00,0.44228571428571684 -2024-07-25 08:00:00+00:00,0.48092857142857376 -2024-07-25 09:00:00+00:00,0.5004285714285734 -2024-07-25 10:00:00+00:00,0.5107857142857151 -2024-07-25 11:00:00+00:00,0.5248571428571438 -2024-07-25 12:00:00+00:00,0.5928571428571457 -2024-07-25 13:00:00+00:00,0.62264285714286 -2024-07-25 14:00:00+00:00,0.578785714285719 -2024-07-25 15:00:00+00:00,0.5622857142857194 -2024-07-25 16:00:00+00:00,0.5605000000000047 -2024-07-25 17:00:00+00:00,0.5524285714285782 -2024-07-25 18:00:00+00:00,0.5483571428571504 -2024-07-25 19:00:00+00:00,0.530142857142863 -2024-07-25 20:00:00+00:00,0.5249285714285767 -2024-07-25 21:00:00+00:00,0.46671428571429324 -2024-07-25 22:00:00+00:00,0.41585714285714914 -2024-07-25 23:00:00+00:00,0.41828571428572 -2024-07-26 00:00:00+00:00,0.4538571428571499 -2024-07-26 01:00:00+00:00,0.46114285714286246 -2024-07-26 02:00:00+00:00,0.40514285714286097 -2024-07-26 03:00:00+00:00,0.36257142857143215 -2024-07-26 04:00:00+00:00,0.34271428571428786 -2024-07-26 05:00:00+00:00,0.3310714285714279 -2024-07-26 06:00:00+00:00,0.31685714285714134 -2024-07-26 07:00:00+00:00,0.33892857142856975 -2024-07-26 08:00:00+00:00,0.35957142857142593 -2024-07-26 09:00:00+00:00,0.37342857142857 -2024-07-26 10:00:00+00:00,0.3876428571428566 -2024-07-26 11:00:00+00:00,0.3985714285714274 -2024-07-26 12:00:00+00:00,0.44171428571428556 -2024-07-26 13:00:00+00:00,0.44335714285714445 -2024-07-26 14:00:00+00:00,0.4606428571428601 -2024-07-26 15:00:00+00:00,0.4407857142857178 -2024-07-26 16:00:00+00:00,0.4235714285714331 -2024-07-26 17:00:00+00:00,0.42450000000000493 -2024-07-26 18:00:00+00:00,0.41592857142857603 -2024-07-26 19:00:00+00:00,0.4007142857142928 -2024-07-26 20:00:00+00:00,0.39028571428572434 -2024-07-28 21:00:00+00:00,0.3614285714285797 -2024-07-28 22:00:00+00:00,0.34528571428572263 -2024-07-28 23:00:00+00:00,0.33857142857143735 -2024-07-29 00:00:00+00:00,0.36542857142858054 -2024-07-29 01:00:00+00:00,0.3924285714285795 -2024-07-29 02:00:00+00:00,0.37964285714286305 -2024-07-29 03:00:00+00:00,0.3662857142857194 -2024-07-29 04:00:00+00:00,0.31442857142857655 -2024-07-29 05:00:00+00:00,0.3126428571428619 -2024-07-29 06:00:00+00:00,0.32300000000000345 -2024-07-29 07:00:00+00:00,0.34400000000000425 -2024-07-29 08:00:00+00:00,0.35950000000000315 -2024-07-29 09:00:00+00:00,0.3662857142857153 -2024-07-29 10:00:00+00:00,0.38214285714285473 -2024-07-29 11:00:00+00:00,0.38535714285714157 -2024-07-29 12:00:00+00:00,0.3806428571428557 -2024-07-29 13:00:00+00:00,0.39842857142856963 -2024-07-29 14:00:00+00:00,0.35392857142856826 -2024-07-29 15:00:00+00:00,0.32407142857142696 -2024-07-29 16:00:00+00:00,0.2980714285714287 -2024-07-29 17:00:00+00:00,0.282428571428572 -2024-07-29 18:00:00+00:00,0.26871428571428574 -2024-07-29 19:00:00+00:00,0.24850000000000097 -2024-07-29 20:00:00+00:00,0.2325714285714286 -2024-07-29 21:00:00+00:00,0.20692857142856877 -2024-07-29 22:00:00+00:00,0.18928571428571267 -2024-07-29 23:00:00+00:00,0.19421428571428528 -2024-07-30 00:00:00+00:00,0.20507142857143126 -2024-07-30 01:00:00+00:00,0.2160000000000021 -2024-07-30 02:00:00+00:00,0.20900000000000116 -2024-07-30 03:00:00+00:00,0.188285714285716 -2024-07-30 04:00:00+00:00,0.20142857142857298 -2024-07-30 05:00:00+00:00,0.21378571428571394 -2024-07-30 06:00:00+00:00,0.24649999999999953 -2024-07-30 07:00:00+00:00,0.2664285714285687 -2024-07-30 08:00:00+00:00,0.2819999999999965 -2024-07-30 09:00:00+00:00,0.2958571428571385 -2024-07-30 10:00:00+00:00,0.303214285714284 -2024-07-30 11:00:00+00:00,0.30635714285714194 -2024-07-30 12:00:00+00:00,0.31492857142857084 -2024-07-30 13:00:00+00:00,0.34271428571428586 -2024-07-30 14:00:00+00:00,0.3329285714285695 -2024-07-30 15:00:00+00:00,0.3728571428571428 -2024-07-30 16:00:00+00:00,0.41142857142857076 -2024-07-30 17:00:00+00:00,0.4262142857142846 -2024-07-30 18:00:00+00:00,0.420499999999998 -2024-07-30 19:00:00+00:00,0.40357142857142697 -2024-07-30 20:00:00+00:00,0.4049999999999991 -2024-07-30 21:00:00+00:00,0.3860000000000018 -2024-07-30 22:00:00+00:00,0.4152857142857158 -2024-07-30 23:00:00+00:00,0.4362857142857166 -2024-07-31 00:00:00+00:00,0.4684285714285729 -2024-07-31 01:00:00+00:00,0.4814285714285741 -2024-07-31 02:00:00+00:00,0.5387857142857168 -2024-07-31 03:00:00+00:00,0.6540714285714314 -2024-07-31 04:00:00+00:00,0.7387142857142907 -2024-07-31 05:00:00+00:00,0.7205000000000032 -2024-07-31 06:00:00+00:00,0.729928571428575 -2024-07-31 07:00:00+00:00,0.831785714285717 -2024-07-31 08:00:00+00:00,0.8767857142857167 -2024-07-31 09:00:00+00:00,0.9105714285714299 -2024-07-31 10:00:00+00:00,0.8969285714285726 -2024-07-31 11:00:00+00:00,0.9217857142857143 -2024-07-31 12:00:00+00:00,0.9196428571428571 -2024-07-31 13:00:00+00:00,0.9173571428571421 -2024-07-31 14:00:00+00:00,0.9466428571428561 -2024-07-31 15:00:00+00:00,0.9423571428571417 -2024-07-31 16:00:00+00:00,0.891142857142855 -2024-07-31 17:00:00+00:00,0.759214285714281 -2024-07-31 18:00:00+00:00,0.7191428571428499 -2024-07-31 19:00:00+00:00,0.7327857142857072 -2024-07-31 20:00:00+00:00,0.709857142857138 -2024-07-31 21:00:00+00:00,0.5870714285714261 -2024-07-31 22:00:00+00:00,0.5482857142857134 -2024-07-31 23:00:00+00:00,0.5531428571428592 -2024-08-01 00:00:00+00:00,0.5604285714285717 -2024-08-01 01:00:00+00:00,0.5927857142857148 -2024-08-01 02:00:00+00:00,0.5975000000000007 -2024-08-01 03:00:00+00:00,0.5882142857142887 -2024-08-01 04:00:00+00:00,0.5403571428571448 -2024-08-01 05:00:00+00:00,0.5497857142857144 -2024-08-01 06:00:00+00:00,0.5837142857142875 -2024-08-01 07:00:00+00:00,0.5840000000000032 -2024-08-01 08:00:00+00:00,0.5573571428571488 -2024-08-01 09:00:00+00:00,0.5192857142857191 -2024-08-01 10:00:00+00:00,0.5012142857142895 -2024-08-01 11:00:00+00:00,0.5402857142857158 -2024-08-01 12:00:00+00:00,0.5585714285714302 -2024-08-01 13:00:00+00:00,0.5475714285714284 -2024-08-01 14:00:00+00:00,0.548571428571429 -2024-08-01 15:00:00+00:00,0.5047857142857148 -2024-08-01 16:00:00+00:00,0.4833571428571446 -2024-08-01 17:00:00+00:00,0.47578571428571437 -2024-08-01 18:00:00+00:00,0.46550000000000175 -2024-08-01 19:00:00+00:00,0.4608571428571468 -2024-08-01 20:00:00+00:00,0.4412142857142892 -2024-08-01 21:00:00+00:00,0.4152142857142889 -2024-08-01 22:00:00+00:00,0.4076428571428587 -2024-08-01 23:00:00+00:00,0.41342857142857425 -2024-08-02 00:00:00+00:00,0.42771428571428977 -2024-08-02 01:00:00+00:00,0.41128571428571903 -2024-08-02 02:00:00+00:00,0.39707142857143246 -2024-08-02 03:00:00+00:00,0.38085714285714645 -2024-08-02 04:00:00+00:00,0.36442857142857576 -2024-08-02 05:00:00+00:00,0.374285714285719 -2024-08-02 06:00:00+00:00,0.376571428571432 -2024-08-02 07:00:00+00:00,0.3981428571428601 -2024-08-02 08:00:00+00:00,0.41628571428571653 -2024-08-02 09:00:00+00:00,0.40985714285714486 -2024-08-02 10:00:00+00:00,0.3908571428571455 -2024-08-02 11:00:00+00:00,0.410571428571432 -2024-08-02 12:00:00+00:00,0.5278571428571459 -2024-08-02 13:00:00+00:00,0.5750000000000028 -2024-08-02 14:00:00+00:00,0.6032857142857162 -2024-08-02 15:00:00+00:00,0.6222857142857176 -2024-08-02 16:00:00+00:00,0.6402142857142893 -2024-08-02 17:00:00+00:00,0.6357142857142902 -2024-08-02 18:00:00+00:00,0.6449285714285752 -2024-08-02 19:00:00+00:00,0.62814285714286 -2024-08-02 20:00:00+00:00,0.6013571428571457 -2024-08-04 21:00:00+00:00,0.574071428571431 -2024-08-04 22:00:00+00:00,0.5805000000000027 -2024-08-04 23:00:00+00:00,0.6367142857142868 -2024-08-05 00:00:00+00:00,0.6747142857142856 -2024-08-05 01:00:00+00:00,0.7101428571428556 -2024-08-05 02:00:00+00:00,0.5971428571428561 -2024-08-05 03:00:00+00:00,0.5891428571428544 -2024-08-05 04:00:00+00:00,0.6863571428571394 -2024-08-05 05:00:00+00:00,0.7187142857142804 -2024-08-05 06:00:00+00:00,0.7704999999999964 -2024-08-05 07:00:00+00:00,0.8453571428571394 -2024-08-05 08:00:00+00:00,0.9239285714285675 -2024-08-05 09:00:00+00:00,0.9654999999999977 -2024-08-05 10:00:00+00:00,0.9972857142857114 -2024-08-05 11:00:00+00:00,1.0338571428571401 -2024-08-05 12:00:00+00:00,1.0382857142857103 -2024-08-05 13:00:00+00:00,1.0258571428571384 -2024-08-05 14:00:00+00:00,1.0653571428571402 -2024-08-05 15:00:00+00:00,1.1247142857142844 -2024-08-05 16:00:00+00:00,1.1592857142857136 -2024-08-05 17:00:00+00:00,1.1383571428571437 -2024-08-05 18:00:00+00:00,1.033928571428573 -2024-08-05 19:00:00+00:00,0.9824285714285749 -2024-08-05 20:00:00+00:00,0.9223571428571457 -2024-08-05 21:00:00+00:00,0.8430000000000035 -2024-08-05 22:00:00+00:00,0.8205000000000037 -2024-08-05 23:00:00+00:00,0.837285714285717 -2024-08-06 00:00:00+00:00,0.9065000000000022 -2024-08-06 01:00:00+00:00,0.9347857142857176 -2024-08-06 02:00:00+00:00,0.9642142857142915 -2024-08-06 03:00:00+00:00,0.957714285714293 -2024-08-06 04:00:00+00:00,0.9024285714285766 -2024-08-06 05:00:00+00:00,0.858071428571433 -2024-08-06 06:00:00+00:00,0.8485000000000034 -2024-08-06 07:00:00+00:00,0.853357142857145 -2024-08-06 08:00:00+00:00,0.862642857142859 -2024-08-06 09:00:00+00:00,0.8627857142857148 -2024-08-06 10:00:00+00:00,0.8761428571428566 -2024-08-06 11:00:00+00:00,0.9062142857142825 -2024-08-06 12:00:00+00:00,0.8684999999999974 -2024-08-06 13:00:00+00:00,0.840214285714282 -2024-08-06 14:00:00+00:00,0.7827142857142836 -2024-08-06 15:00:00+00:00,0.7528571428571423 -2024-08-06 16:00:00+00:00,0.7067142857142841 -2024-08-06 17:00:00+00:00,0.673642857142856 -2024-08-06 18:00:00+00:00,0.6610714285714282 -2024-08-06 19:00:00+00:00,0.6117857142857142 -2024-08-06 20:00:00+00:00,0.597214285714287 -2024-08-06 21:00:00+00:00,0.5673571428571458 -2024-08-06 22:00:00+00:00,0.5338571428571461 -2024-08-06 23:00:00+00:00,0.530928571428575 -2024-08-07 00:00:00+00:00,0.5265714285714316 -2024-08-07 01:00:00+00:00,0.6955000000000037 -2024-08-07 02:00:00+00:00,0.6879285714285734 -2024-08-07 03:00:00+00:00,0.692928571428575 -2024-08-07 04:00:00+00:00,0.6983571428571439 -2024-08-07 05:00:00+00:00,0.7172857142857144 -2024-08-07 06:00:00+00:00,0.7381428571428553 -2024-08-07 07:00:00+00:00,0.7753571428571401 -2024-08-07 08:00:00+00:00,0.7927142857142826 -2024-08-07 09:00:00+00:00,0.8073571428571386 -2024-08-07 10:00:00+00:00,0.8007857142857091 -2024-08-07 11:00:00+00:00,0.8133571428571368 -2024-08-07 12:00:00+00:00,0.8084285714285642 -2024-08-07 13:00:00+00:00,0.8109999999999928 -2024-08-07 14:00:00+00:00,0.8136428571428505 -2024-08-07 15:00:00+00:00,0.6352857142857086 -2024-08-07 16:00:00+00:00,0.6224285714285672 -2024-08-07 17:00:00+00:00,0.600999999999995 -2024-08-07 18:00:00+00:00,0.5699999999999973 -2024-08-07 19:00:00+00:00,0.5294999999999968 -2024-08-07 20:00:00+00:00,0.4943571428571403 -2024-08-07 21:00:00+00:00,0.4414999999999988 -2024-08-07 22:00:00+00:00,0.42878571428571327 -2024-08-07 23:00:00+00:00,0.4587142857142855 -2024-08-08 00:00:00+00:00,0.4978571428571428 -2024-08-08 01:00:00+00:00,0.5086428571428557 -2024-08-08 02:00:00+00:00,0.5202857142857117 -2024-08-08 03:00:00+00:00,0.5203571428571406 -2024-08-08 04:00:00+00:00,0.5014285714285701 -2024-08-08 05:00:00+00:00,0.5034285714285696 -2024-08-08 06:00:00+00:00,0.5057142857142846 -2024-08-08 07:00:00+00:00,0.5172857142857136 -2024-08-08 08:00:00+00:00,0.5287142857142848 -2024-08-08 09:00:00+00:00,0.5334999999999975 -2024-08-08 10:00:00+00:00,0.5394285714285709 -2024-08-08 11:00:00+00:00,0.556999999999998 -2024-08-08 12:00:00+00:00,0.6228571428571408 -2024-08-08 13:00:00+00:00,0.5984999999999994 -2024-08-08 14:00:00+00:00,0.5545714285714273 -2024-08-08 15:00:00+00:00,0.527000000000001 -2024-08-08 16:00:00+00:00,0.5023571428571459 -2024-08-08 17:00:00+00:00,0.4921428571428582 -2024-08-08 18:00:00+00:00,0.47450000000000003 -2024-08-08 19:00:00+00:00,0.4540714285714285 -2024-08-08 20:00:00+00:00,0.4347857142857135 -2024-08-08 21:00:00+00:00,0.3979285714285713 -2024-08-08 22:00:00+00:00,0.3686428571428572 -2024-08-08 23:00:00+00:00,0.37528571428571567 -2024-08-09 00:00:00+00:00,0.39564285714285824 -2024-08-09 01:00:00+00:00,0.4083571428571438 -2024-08-09 02:00:00+00:00,0.34635714285714414 -2024-08-09 03:00:00+00:00,0.3315714285714283 -2024-08-09 04:00:00+00:00,0.32735714285714274 -2024-08-09 05:00:00+00:00,0.33478571428571513 -2024-08-09 06:00:00+00:00,0.3450000000000009 -2024-08-09 07:00:00+00:00,0.34650000000000397 -2024-08-09 08:00:00+00:00,0.35857142857143337 -2024-08-09 09:00:00+00:00,0.35642857142857615 -2024-08-09 10:00:00+00:00,0.35892857142857587 -2024-08-09 11:00:00+00:00,0.3765000000000031 -2024-08-09 12:00:00+00:00,0.40607142857143075 -2024-08-09 13:00:00+00:00,0.38557142857143034 -2024-08-09 14:00:00+00:00,0.3710714285714301 -2024-08-09 15:00:00+00:00,0.35314285714285837 -2024-08-09 16:00:00+00:00,0.3323571428571443 -2024-08-09 17:00:00+00:00,0.31421428571428783 -2024-08-09 18:00:00+00:00,0.2918571428571458 -2024-08-09 19:00:00+00:00,0.27214285714285935 -2024-08-09 20:00:00+00:00,0.2568571428571431 -2024-08-11 21:00:00+00:00,0.25821428571428434 -2024-08-11 22:00:00+00:00,0.24857142857142783 -2024-08-11 23:00:00+00:00,0.25257142857142867 -2024-08-12 00:00:00+00:00,0.2557142857142866 -2024-08-12 01:00:00+00:00,0.25321428571428684 -2024-08-12 02:00:00+00:00,0.2257142857142875 -2024-08-12 03:00:00+00:00,0.2304285714285734 -2024-08-12 04:00:00+00:00,0.21721428571428752 -2024-08-12 05:00:00+00:00,0.20607142857142996 -2024-08-12 06:00:00+00:00,0.20185714285714443 -2024-08-12 07:00:00+00:00,0.20657142857143032 -2024-08-12 08:00:00+00:00,0.21550000000000175 -2024-08-12 09:00:00+00:00,0.21992857142857197 -2024-08-12 10:00:00+00:00,0.22264285714285847 -2024-08-12 11:00:00+00:00,0.2202857142857145 -2024-08-12 12:00:00+00:00,0.21657142857142933 -2024-08-12 13:00:00+00:00,0.24157142857142894 -2024-08-12 14:00:00+00:00,0.24207142857142724 -2024-08-12 15:00:00+00:00,0.2679285714285718 -2024-08-12 16:00:00+00:00,0.2790000000000004 -2024-08-12 17:00:00+00:00,0.27342857142857163 -2024-08-12 18:00:00+00:00,0.2774285714285704 -2024-08-12 19:00:00+00:00,0.2878571428571429 -2024-08-12 20:00:00+00:00,0.28778571428571403 -2024-08-12 21:00:00+00:00,0.27507142857142647 -2024-08-12 22:00:00+00:00,0.2656428571428527 -2024-08-12 23:00:00+00:00,0.27514285714285336 -2024-08-13 00:00:00+00:00,0.2858571428571395 -2024-08-13 01:00:00+00:00,0.28342857142856864 -2024-08-13 02:00:00+00:00,0.27978571428571036 -2024-08-13 03:00:00+00:00,0.2544285714285662 -2024-08-13 04:00:00+00:00,0.2601428571428528 -2024-08-13 05:00:00+00:00,0.2289285714285642 -2024-08-13 06:00:00+00:00,0.23614285714284985 -2024-08-13 07:00:00+00:00,0.23007142857142274 -2024-08-13 08:00:00+00:00,0.22892857142856624 -2024-08-13 09:00:00+00:00,0.22449999999999395 -2024-08-13 10:00:00+00:00,0.24285714285713514 -2024-08-13 11:00:00+00:00,0.2605714285714222 -2024-08-13 12:00:00+00:00,0.283142857142853 -2024-08-13 13:00:00+00:00,0.3055714285714239 -2024-08-13 14:00:00+00:00,0.30392857142856705 -2024-08-13 15:00:00+00:00,0.2967857142857103 -2024-08-13 16:00:00+00:00,0.3037857142857113 -2024-08-13 17:00:00+00:00,0.3040714285714269 -2024-08-13 18:00:00+00:00,0.29664285714285654 -2024-08-13 19:00:00+00:00,0.2996428571428587 -2024-08-13 20:00:00+00:00,0.2790000000000004 -2024-08-13 21:00:00+00:00,0.27478571428571286 -2024-08-13 22:00:00+00:00,0.26949999999999974 -2024-08-13 23:00:00+00:00,0.2707857142857141 -2024-08-14 00:00:00+00:00,0.2595714285714296 -2024-08-14 01:00:00+00:00,0.2691428571428572 -2024-08-14 02:00:00+00:00,0.29721428571428377 -2024-08-14 03:00:00+00:00,0.2934999999999986 -2024-08-14 04:00:00+00:00,0.296285714285714 -2024-08-14 05:00:00+00:00,0.3089285714285706 -2024-08-14 06:00:00+00:00,0.3192142857142853 -2024-08-14 07:00:00+00:00,0.3272142857142849 -2024-08-14 08:00:00+00:00,0.33735714285714175 -2024-08-14 09:00:00+00:00,0.3280714285714258 -2024-08-14 10:00:00+00:00,0.34228571428571236 -2024-08-14 11:00:00+00:00,0.34371428571428453 -2024-08-14 12:00:00+00:00,0.40835714285714175 -2024-08-14 13:00:00+00:00,0.42935714285714255 -2024-08-14 14:00:00+00:00,0.4441428571428584 -2024-08-14 15:00:00+00:00,0.4307857142857167 -2024-08-14 16:00:00+00:00,0.3824285714285744 -2024-08-14 17:00:00+00:00,0.3651428571428588 -2024-08-14 18:00:00+00:00,0.3497142857142868 -2024-08-14 19:00:00+00:00,0.3390714285714296 -2024-08-14 20:00:00+00:00,0.3203571428571418 -2024-08-14 21:00:00+00:00,0.3029285714285704 -2024-08-14 22:00:00+00:00,0.28614285714285514 -2024-08-14 23:00:00+00:00,0.29007142857142704 -2024-08-15 00:00:00+00:00,0.2826428571428567 -2024-08-15 01:00:00+00:00,0.30214285714285644 -2024-08-15 02:00:00+00:00,0.23892857142856933 -2024-08-15 03:00:00+00:00,0.2108571428571407 -2024-08-15 04:00:00+00:00,0.1927857142857111 -2024-08-15 05:00:00+00:00,0.195928571428567 -2024-08-15 06:00:00+00:00,0.20142857142856688 -2024-08-15 07:00:00+00:00,0.18985714285713787 -2024-08-15 08:00:00+00:00,0.19607142857142484 -2024-08-15 09:00:00+00:00,0.1927142857142822 -2024-08-15 10:00:00+00:00,0.19528571428571087 -2024-08-15 11:00:00+00:00,0.20092857142856854 -2024-08-15 12:00:00+00:00,0.3302857142857119 -2024-08-15 13:00:00+00:00,0.3495714285714269 -2024-08-15 14:00:00+00:00,0.36149999999999644 -2024-08-15 15:00:00+00:00,0.34399999999999614 -2024-08-15 16:00:00+00:00,0.34614285714285337 -2024-08-15 17:00:00+00:00,0.35292857142856754 -2024-08-15 18:00:00+00:00,0.3489285714285667 -2024-08-15 19:00:00+00:00,0.33385714285713924 -2024-08-15 20:00:00+00:00,0.3446428571428543 -2024-08-15 21:00:00+00:00,0.33699999999999924 -2024-08-15 22:00:00+00:00,0.3435714285714267 -2024-08-15 23:00:00+00:00,0.34278571428571275 -2024-08-16 00:00:00+00:00,0.35607142857142754 -2024-08-16 01:00:00+00:00,0.3732142857142833 -2024-08-16 02:00:00+00:00,0.25049999999999834 -2024-08-16 03:00:00+00:00,0.229928571428571 -2024-08-16 04:00:00+00:00,0.21607142857142897 -2024-08-16 05:00:00+00:00,0.21900000000000017 -2024-08-16 06:00:00+00:00,0.22142857142857103 -2024-08-16 07:00:00+00:00,0.21664285714285622 -2024-08-16 08:00:00+00:00,0.23578571428571543 -2024-08-16 09:00:00+00:00,0.2419285714285735 -2024-08-16 10:00:00+00:00,0.2402142857142877 -2024-08-16 11:00:00+00:00,0.26421428571428657 -2024-08-16 12:00:00+00:00,0.27921428571428714 -2024-08-16 13:00:00+00:00,0.2927857142857156 -2024-08-16 14:00:00+00:00,0.3016428571428581 -2024-08-16 15:00:00+00:00,0.29457142857143026 -2024-08-16 16:00:00+00:00,0.29028571428571376 -2024-08-16 17:00:00+00:00,0.29992857142857027 -2024-08-16 18:00:00+00:00,0.29964285714285666 -2024-08-16 19:00:00+00:00,0.2910714285714298 -2024-08-16 20:00:00+00:00,0.28371428571428836 -2024-08-18 21:00:00+00:00,0.28078571428571714 -2024-08-18 22:00:00+00:00,0.27100000000000285 -2024-08-18 23:00:00+00:00,0.2750714285714305 -2024-08-19 00:00:00+00:00,0.2690714285714303 -2024-08-19 01:00:00+00:00,0.28107142857142875 -2024-08-19 02:00:00+00:00,0.2699999999999981 -2024-08-19 03:00:00+00:00,0.32399999999999807 -2024-08-19 04:00:00+00:00,0.34342857142856886 -2024-08-19 05:00:00+00:00,0.3856428571428552 -2024-08-19 06:00:00+00:00,0.42078571428571365 -2024-08-19 07:00:00+00:00,0.4403571428571423 -2024-08-19 08:00:00+00:00,0.451357142857142 -2024-08-19 09:00:00+00:00,0.4676428571428569 -2024-08-19 10:00:00+00:00,0.47849999999999887 -2024-08-19 11:00:00+00:00,0.49564285714285666 -2024-08-19 12:00:00+00:00,0.5011428571428544 -2024-08-19 13:00:00+00:00,0.510785714285713 -2024-08-19 14:00:00+00:00,0.526214285714285 -2024-08-19 15:00:00+00:00,0.5117142857142868 -2024-08-19 16:00:00+00:00,0.5027857142857154 -2024-08-19 17:00:00+00:00,0.4382142857142871 -2024-08-19 18:00:00+00:00,0.3984285714285737 -2024-08-19 19:00:00+00:00,0.34442857142857364 -2024-08-19 20:00:00+00:00,0.30321428571428805 -2024-08-19 21:00:00+00:00,0.2684285714285742 -2024-08-19 22:00:00+00:00,0.2525714285714307 -2024-08-19 23:00:00+00:00,0.24842857142857205 -2024-08-20 00:00:00+00:00,0.26692857142857307 -2024-08-20 01:00:00+00:00,0.2900714285714311 -2024-08-20 02:00:00+00:00,0.3236428571428596 -2024-08-20 03:00:00+00:00,0.321 -2024-08-20 04:00:00+00:00,0.3088571428571417 -2024-08-20 05:00:00+00:00,0.311714285714284 -2024-08-20 06:00:00+00:00,0.32814285714285674 -2024-08-20 07:00:00+00:00,0.37842857142857156 -2024-08-20 08:00:00+00:00,0.38871428571428623 -2024-08-20 09:00:00+00:00,0.3924285714285714 -2024-08-20 10:00:00+00:00,0.3971428571428573 -2024-08-20 11:00:00+00:00,0.40635714285714236 -2024-08-20 12:00:00+00:00,0.425142857142857 -2024-08-20 13:00:00+00:00,0.42442857142856993 -2024-08-20 14:00:00+00:00,0.4376428571428558 -2024-08-20 15:00:00+00:00,0.40835714285714175 -2024-08-20 16:00:00+00:00,0.3774999999999998 -2024-08-20 17:00:00+00:00,0.36492857142857205 -2024-08-20 18:00:00+00:00,0.3545000000000016 -2024-08-20 19:00:00+00:00,0.3335714285714297 -2024-08-20 20:00:00+00:00,0.3137857142857164 -2024-08-20 21:00:00+00:00,0.26192857142857157 -2024-08-20 22:00:00+00:00,0.25035714285714256 -2024-08-20 23:00:00+00:00,0.2672142857142867 -2024-08-21 00:00:00+00:00,0.298642857142858 -2024-08-21 01:00:00+00:00,0.30678571428571544 -2024-08-21 02:00:00+00:00,0.29600000000000243 -2024-08-21 03:00:00+00:00,0.2927142857142887 -2024-08-21 04:00:00+00:00,0.267000000000002 -2024-08-21 05:00:00+00:00,0.2663571428571418 -2024-08-21 06:00:00+00:00,0.26871428571428574 -2024-08-21 07:00:00+00:00,0.2964285714285718 -2024-08-21 08:00:00+00:00,0.30507142857142966 -2024-08-21 09:00:00+00:00,0.31392857142857417 -2024-08-21 10:00:00+00:00,0.31564285714285994 -2024-08-21 11:00:00+00:00,0.31750000000000356 -2024-08-21 12:00:00+00:00,0.3272857142857179 -2024-08-21 13:00:00+00:00,0.3200714285714322 -2024-08-21 14:00:00+00:00,0.3821428571428608 -2024-08-21 15:00:00+00:00,0.40214285714286085 -2024-08-21 16:00:00+00:00,0.40100000000000235 -2024-08-21 17:00:00+00:00,0.40657142857143114 -2024-08-21 18:00:00+00:00,0.42407142857143143 -2024-08-21 19:00:00+00:00,0.4268571428571469 -2024-08-21 20:00:00+00:00,0.41835714285714687 -2024-08-21 21:00:00+00:00,0.39128571428571896 -2024-08-21 22:00:00+00:00,0.39100000000000534 -2024-08-21 23:00:00+00:00,0.39564285714286235 -2024-08-22 00:00:00+00:00,0.41785714285714654 -2024-08-22 01:00:00+00:00,0.4366428571428632 -2024-08-22 02:00:00+00:00,0.4320000000000062 -2024-08-22 03:00:00+00:00,0.4292142857142908 -2024-08-22 04:00:00+00:00,0.35328571428572025 -2024-08-22 05:00:00+00:00,0.3300000000000044 -2024-08-22 06:00:00+00:00,0.3336428571428627 -2024-08-22 07:00:00+00:00,0.34114285714286396 -2024-08-22 08:00:00+00:00,0.3277857142857203 -2024-08-22 09:00:00+00:00,0.3202142857142921 -2024-08-22 10:00:00+00:00,0.32307142857143234 -2024-08-22 11:00:00+00:00,0.3412857142857157 -2024-08-22 12:00:00+00:00,0.3538571428571434 -2024-08-22 13:00:00+00:00,0.3807857142857135 -2024-08-22 14:00:00+00:00,0.36685714285714255 -2024-08-22 15:00:00+00:00,0.37028571428571205 -2024-08-22 16:00:00+00:00,0.3791428571428566 -2024-08-22 17:00:00+00:00,0.375 -2024-08-22 18:00:00+00:00,0.35528571428571354 -2024-08-22 19:00:00+00:00,0.34499999999999886 -2024-08-22 20:00:00+00:00,0.33564285714285597 -2024-08-22 21:00:00+00:00,0.31078571428571217 -2024-08-22 22:00:00+00:00,0.2901428571428539 -2024-08-22 23:00:00+00:00,0.29057142857142537 -2024-08-23 00:00:00+00:00,0.29885714285714066 -2024-08-23 01:00:00+00:00,0.3175714285714264 -2024-08-23 02:00:00+00:00,0.31328571428571195 -2024-08-23 03:00:00+00:00,0.2824999999999968 -2024-08-23 04:00:00+00:00,0.28399999999999587 -2024-08-23 05:00:00+00:00,0.265357142857139 -2024-08-23 06:00:00+00:00,0.2742142857142816 -2024-08-23 07:00:00+00:00,0.29928571428571005 -2024-08-23 08:00:00+00:00,0.308571428571424 -2024-08-23 09:00:00+00:00,0.31449999999999534 -2024-08-23 10:00:00+00:00,0.31892857142856557 -2024-08-23 11:00:00+00:00,0.32771428571428124 -2024-08-23 12:00:00+00:00,0.3347857142857111 -2024-08-23 13:00:00+00:00,0.3562142857142833 -2024-08-23 14:00:00+00:00,0.4206428571428558 -2024-08-23 15:00:00+00:00,0.4163571428571434 -2024-08-23 16:00:00+00:00,0.4038571428571426 -2024-08-23 17:00:00+00:00,0.42292857142857293 -2024-08-23 18:00:00+00:00,0.4227142857142882 -2024-08-23 19:00:00+00:00,0.42592857142857304 -2024-08-23 20:00:00+00:00,0.40357142857142897 -2024-08-25 21:00:00+00:00,0.381142857142856 -2024-08-25 22:00:00+00:00,0.3963571428571413 -2024-08-25 23:00:00+00:00,0.4134285714285722 -2024-08-26 00:00:00+00:00,0.44371428571428695 -2024-08-26 01:00:00+00:00,0.4632857142857136 -2024-08-26 02:00:00+00:00,0.4789285714285703 -2024-08-26 03:00:00+00:00,0.46399999999999864 -2024-08-26 04:00:00+00:00,0.38957142857142507 -2024-08-26 05:00:00+00:00,0.36642857142856705 -2024-08-26 06:00:00+00:00,0.37721428571428206 -2024-08-26 07:00:00+00:00,0.3629285714285686 -2024-08-26 08:00:00+00:00,0.3534999999999968 -2024-08-26 09:00:00+00:00,0.34785714285713915 -2024-08-26 10:00:00+00:00,0.3447142857142812 -2024-08-26 11:00:00+00:00,0.345642857142853 -2024-08-26 12:00:00+00:00,0.34292857142856853 -2024-08-26 13:00:00+00:00,0.34964285714285176 -2024-08-26 14:00:00+00:00,0.33135714285713747 -2024-08-26 15:00:00+00:00,0.33385714285713924 -2024-08-26 16:00:00+00:00,0.31242857142856906 -2024-08-26 17:00:00+00:00,0.30835714285713933 -2024-08-26 18:00:00+00:00,0.2974285714285685 -2024-08-26 19:00:00+00:00,0.2840714285714268 -2024-08-26 20:00:00+00:00,0.26799999999999863 -2024-08-26 21:00:00+00:00,0.252285714285713 -2024-08-26 22:00:00+00:00,0.25321428571428484 -2024-08-26 23:00:00+00:00,0.2615000000000001 -2024-08-27 00:00:00+00:00,0.2798571428571433 -2024-08-27 01:00:00+00:00,0.28578571428571664 -2024-08-27 02:00:00+00:00,0.2755714285714309 -2024-08-27 03:00:00+00:00,0.2476428571428601 -2024-08-27 04:00:00+00:00,0.23778571428571688 -2024-08-27 05:00:00+00:00,0.22700000000000184 -2024-08-27 06:00:00+00:00,0.23142857142857412 -2024-08-27 07:00:00+00:00,0.24221428571428913 -2024-08-27 08:00:00+00:00,0.24671428571429033 -2024-08-27 09:00:00+00:00,0.26350000000000356 -2024-08-27 10:00:00+00:00,0.26528571428571623 -2024-08-27 11:00:00+00:00,0.2856428571428568 -2024-08-27 12:00:00+00:00,0.2905714285714274 -2024-08-27 13:00:00+00:00,0.28728571428571364 -2024-08-27 14:00:00+00:00,0.283214285714286 -2024-08-27 15:00:00+00:00,0.27164285714285696 -2024-08-27 16:00:00+00:00,0.26314285714285496 -2024-08-27 17:00:00+00:00,0.2666428571428554 -2024-08-27 18:00:00+00:00,0.26821428571428335 -2024-08-27 19:00:00+00:00,0.2541428571428546 -2024-08-27 20:00:00+00:00,0.24442857142856717 -2024-08-27 21:00:00+00:00,0.2227857142857102 -2024-08-27 22:00:00+00:00,0.2264999999999954 -2024-08-27 23:00:00+00:00,0.22107142857142442 -2024-08-28 00:00:00+00:00,0.23214285714285307 -2024-08-28 01:00:00+00:00,0.22707142857142465 -2024-08-28 02:00:00+00:00,0.2196428571428543 -2024-08-28 03:00:00+00:00,0.21364285714285408 -2024-08-28 04:00:00+00:00,0.20249999999999652 -2024-08-28 05:00:00+00:00,0.20699999999999566 -2024-08-28 06:00:00+00:00,0.21042857142856722 -2024-08-28 07:00:00+00:00,0.21149999999999686 -2024-08-28 08:00:00+00:00,0.21307142857142683 -2024-08-28 09:00:00+00:00,0.2246428571428538 -2024-08-28 10:00:00+00:00,0.23635714285714066 -2024-08-28 11:00:00+00:00,0.24557142857142772 -2024-08-28 12:00:00+00:00,0.2597142857142854 -2024-08-28 13:00:00+00:00,0.265428571428572 -2024-08-28 14:00:00+00:00,0.2698571428571463 -2024-08-28 15:00:00+00:00,0.2678571428571469 -2024-08-28 16:00:00+00:00,0.2765000000000027 -2024-08-28 17:00:00+00:00,0.28178571428571786 -2024-08-28 18:00:00+00:00,0.28342857142857475 -2024-08-28 19:00:00+00:00,0.27350000000000463 -2024-08-28 20:00:00+00:00,0.28221428571429136 -2024-08-28 21:00:00+00:00,0.2749285714285768 -2024-08-28 22:00:00+00:00,0.27092857142857596 -2024-08-28 23:00:00+00:00,0.2682857142857204 -2024-08-29 00:00:00+00:00,0.2738571428571492 -2024-08-29 01:00:00+00:00,0.2810714285714328 -2024-08-29 02:00:00+00:00,0.26550000000000296 -2024-08-29 03:00:00+00:00,0.2507142857142891 -2024-08-29 04:00:00+00:00,0.24071428571428807 -2024-08-29 05:00:00+00:00,0.24257142857143169 -2024-08-29 06:00:00+00:00,0.2370714285714318 -2024-08-29 07:00:00+00:00,0.24064285714286118 -2024-08-29 08:00:00+00:00,0.2447857142857178 -2024-08-29 09:00:00+00:00,0.25807142857143056 -2024-08-29 10:00:00+00:00,0.24128571428571735 -2024-08-29 11:00:00+00:00,0.24914285714285914 -2024-08-29 12:00:00+00:00,0.297857142857144 -2024-08-29 13:00:00+00:00,0.2967857142857144 -2024-08-29 14:00:00+00:00,0.2999285714285723 -2024-08-29 15:00:00+00:00,0.3068571428571443 -2024-08-29 16:00:00+00:00,0.2995714285714318 -2024-08-29 17:00:00+00:00,0.3046428571428602 -2024-08-29 18:00:00+00:00,0.2983571428571444 -2024-08-29 19:00:00+00:00,0.2897857142857155 -2024-08-29 20:00:00+00:00,0.28271428571428764 -2024-08-29 21:00:00+00:00,0.2690000000000014 -2024-08-29 22:00:00+00:00,0.2630000000000012 -2024-08-29 23:00:00+00:00,0.2584285714285731 -2024-08-30 00:00:00+00:00,0.27050000000000246 -2024-08-30 01:00:00+00:00,0.2668571428571462 -2024-08-30 02:00:00+00:00,0.213785714285718 -2024-08-30 03:00:00+00:00,0.2010714285714345 -2024-08-30 04:00:00+00:00,0.18278571428571816 -2024-08-30 05:00:00+00:00,0.16421428571429025 -2024-08-30 06:00:00+00:00,0.17050000000000207 -2024-08-30 07:00:00+00:00,0.1694285714285704 -2024-08-30 08:00:00+00:00,0.17749999999999894 -2024-08-30 09:00:00+00:00,0.1740714285714294 -2024-08-30 10:00:00+00:00,0.17950000000000038 -2024-08-30 11:00:00+00:00,0.18907142857142795 -2024-08-30 12:00:00+00:00,0.21078571428571383 -2024-08-30 13:00:00+00:00,0.21314285714285777 -2024-08-30 14:00:00+00:00,0.22085714285714175 -2024-08-30 15:00:00+00:00,0.2367142857142852 -2024-08-30 16:00:00+00:00,0.2509285714285718 -2024-08-30 17:00:00+00:00,0.25900000000000034 -2024-08-30 18:00:00+00:00,0.2599285714285721 -2024-08-30 19:00:00+00:00,0.26128571428571334 -2024-08-30 20:00:00+00:00,0.25371428571428517 -2024-09-01 21:00:00+00:00,0.24778571428571589 -2024-09-01 22:00:00+00:00,0.2518571428571436 -2024-09-01 23:00:00+00:00,0.25942857142856973 -2024-09-02 00:00:00+00:00,0.2734999999999985 -2024-09-02 01:00:00+00:00,0.27314285714285397 -2024-09-02 02:00:00+00:00,0.2625714285714257 -2024-09-02 03:00:00+00:00,0.25692857142856595 -2024-09-02 04:00:00+00:00,0.24071428571427994 -2024-09-02 05:00:00+00:00,0.2318571428571354 -2024-09-02 06:00:00+00:00,0.22428571428570723 -2024-09-02 07:00:00+00:00,0.23728571428570636 -2024-09-02 08:00:00+00:00,0.2579285714285646 -2024-09-02 09:00:00+00:00,0.25585714285713834 -2024-09-02 10:00:00+00:00,0.2597142857142834 -2024-09-02 11:00:00+00:00,0.269214285714282 -2024-09-02 12:00:00+00:00,0.2505714285714252 -2024-09-02 13:00:00+00:00,0.2579999999999976 -2024-09-02 14:00:00+00:00,0.23749999999999716 -2024-09-02 15:00:00+00:00,0.23300000000000004 -2024-09-02 16:00:00+00:00,0.22085714285714378 -2024-09-02 17:00:00+00:00,0.213000000000002 -2024-09-02 18:00:00+00:00,0.20407142857143054 -2024-09-02 19:00:00+00:00,0.1865000000000013 -2024-09-02 20:00:00+00:00,0.17528571428571485 -2024-09-02 21:00:00+00:00,0.15514285714285694 -2024-09-02 22:00:00+00:00,0.13392857142857142 -2024-09-02 23:00:00+00:00,0.14128571428571288 -2024-09-03 00:00:00+00:00,0.16728571428571115 -2024-09-03 01:00:00+00:00,0.1897142857142821 -2024-09-03 02:00:00+00:00,0.19835714285713987 -2024-09-03 03:00:00+00:00,0.19421428571428123 -2024-09-03 04:00:00+00:00,0.20007142857142565 -2024-09-03 05:00:00+00:00,0.22092857142856864 -2024-09-03 06:00:00+00:00,0.2378571428571397 -2024-09-03 07:00:00+00:00,0.25771428571428395 -2024-09-03 08:00:00+00:00,0.28328571428571286 -2024-09-03 09:00:00+00:00,0.29385714285714315 -2024-09-03 10:00:00+00:00,0.30292857142857244 -2024-09-03 11:00:00+00:00,0.32250000000000106 -2024-09-03 12:00:00+00:00,0.3437857142857134 -2024-09-03 13:00:00+00:00,0.37164285714285733 -2024-09-03 14:00:00+00:00,0.37242857142857133 -2024-09-03 15:00:00+00:00,0.3579285714285711 -2024-09-03 16:00:00+00:00,0.35878571428571604 -2024-09-03 17:00:00+00:00,0.3505000000000028 -2024-09-03 18:00:00+00:00,0.3475714285714296 -2024-09-03 19:00:00+00:00,0.33421428571428585 -2024-09-03 20:00:00+00:00,0.32335714285714395 -2024-09-03 21:00:00+00:00,0.3070000000000001 -2024-09-03 22:00:00+00:00,0.29828571428571543 -2024-09-03 23:00:00+00:00,0.3067142857142845 -2024-09-04 00:00:00+00:00,0.33971428571428575 -2024-09-04 01:00:00+00:00,0.34300000000000147 -2024-09-04 02:00:00+00:00,0.3339285714285743 -2024-09-04 03:00:00+00:00,0.3082142857142876 -2024-09-04 04:00:00+00:00,0.2919285714285747 -2024-09-04 05:00:00+00:00,0.2827857142857206 -2024-09-04 06:00:00+00:00,0.3006428571428635 -2024-09-04 07:00:00+00:00,0.3092142857142924 -2024-09-04 08:00:00+00:00,0.32142857142857956 -2024-09-04 09:00:00+00:00,0.316428571428578 -2024-09-04 10:00:00+00:00,0.31578571428571983 -2024-09-04 11:00:00+00:00,0.3232142857142902 -2024-09-04 12:00:00+00:00,0.32635714285714607 -2024-09-04 13:00:00+00:00,0.3328571428571487 -2024-09-04 14:00:00+00:00,0.34207142857143175 -2024-09-04 15:00:00+00:00,0.34171428571428714 -2024-09-04 16:00:00+00:00,0.3470000000000003 -2024-09-04 17:00:00+00:00,0.33685714285714347 -2024-09-04 18:00:00+00:00,0.3327142857142848 -2024-09-04 19:00:00+00:00,0.3274999999999985 -2024-09-04 20:00:00+00:00,0.306285714285711 -2024-09-04 21:00:00+00:00,0.29157142857142404 -2024-09-04 22:00:00+00:00,0.28621428571428 -2024-09-04 23:00:00+00:00,0.30778571428571005 -2024-09-05 00:00:00+00:00,0.3256428571428529 -2024-09-05 01:00:00+00:00,0.3384999999999983 -2024-09-05 02:00:00+00:00,0.3360714285714254 -2024-09-05 03:00:00+00:00,0.3218571428571388 -2024-09-05 04:00:00+00:00,0.29121428571428154 -2024-09-05 05:00:00+00:00,0.28364285714285337 -2024-09-05 06:00:00+00:00,0.28671428571428237 -2024-09-05 07:00:00+00:00,0.3134285714285677 -2024-09-05 08:00:00+00:00,0.3100714285714271 -2024-09-05 09:00:00+00:00,0.3148571428571399 -2024-09-05 10:00:00+00:00,0.3157142857142828 -2024-09-05 11:00:00+00:00,0.3206428571428554 -2024-09-05 12:00:00+00:00,0.3577142857142844 -2024-09-05 13:00:00+00:00,0.3386428571428541 -2024-09-05 14:00:00+00:00,0.37664285714285484 -2024-09-05 15:00:00+00:00,0.3912142857142819 -2024-09-05 16:00:00+00:00,0.38242857142856834 -2024-09-05 17:00:00+00:00,0.3864285714285692 -2024-09-05 18:00:00+00:00,0.38042857142856895 -2024-09-05 19:00:00+00:00,0.3745714285714265 -2024-09-05 20:00:00+00:00,0.35357142857142776 -2024-09-05 21:00:00+00:00,0.31985714285714145 -2024-09-05 22:00:00+00:00,0.3136428571428545 -2024-09-05 23:00:00+00:00,0.30757142857142533 -2024-09-06 00:00:00+00:00,0.3142142857142837 -2024-09-06 01:00:00+00:00,0.32207142857142557 -2024-09-06 02:00:00+00:00,0.2781428571428555 -2024-09-06 03:00:00+00:00,0.27857142857142897 -2024-09-06 04:00:00+00:00,0.21464285714285683 -2024-09-06 05:00:00+00:00,0.21321428571428466 -2024-09-06 06:00:00+00:00,0.22957142857142848 -2024-09-06 07:00:00+00:00,0.24557142857142772 -2024-09-06 08:00:00+00:00,0.2429285714285722 -2024-09-06 09:00:00+00:00,0.25035714285714256 -2024-09-06 10:00:00+00:00,0.2541428571428546 -2024-09-06 11:00:00+00:00,0.27285714285714036 -2024-09-06 12:00:00+00:00,0.413571428571426 -2024-09-06 13:00:00+00:00,0.48257142857142654 -2024-09-06 14:00:00+00:00,0.5582857142857124 -2024-09-06 15:00:00+00:00,0.6099285714285705 -2024-09-06 16:00:00+00:00,0.6420714285714268 -2024-09-06 17:00:00+00:00,0.6579285714285683 -2024-09-06 18:00:00+00:00,0.6644999999999978 -2024-09-06 19:00:00+00:00,0.6307142857142846 -2024-09-06 20:00:00+00:00,0.6150714285714278 -2024-09-08 21:00:00+00:00,0.6012857142857128 -2024-09-08 22:00:00+00:00,0.609499999999999 -2024-09-08 23:00:00+00:00,0.6192857142857134 -2024-09-09 00:00:00+00:00,0.6307857142857135 -2024-09-09 01:00:00+00:00,0.6355000000000014 -2024-09-09 02:00:00+00:00,0.5053571428571441 -2024-09-09 03:00:00+00:00,0.4495714285714314 -2024-09-09 04:00:00+00:00,0.3801428571428594 -2024-09-09 05:00:00+00:00,0.33078571428571635 -2024-09-09 06:00:00+00:00,0.30728571428571577 -2024-09-09 07:00:00+00:00,0.2996428571428607 -2024-09-09 08:00:00+00:00,0.30714285714285794 -2024-09-09 09:00:00+00:00,0.32064285714285745 -2024-09-09 10:00:00+00:00,0.32921428571428635 -2024-09-09 11:00:00+00:00,0.3268571428571444 -2024-09-09 12:00:00+00:00,0.34442857142857164 -2024-09-09 13:00:00+00:00,0.34942857142857314 -2024-09-09 14:00:00+00:00,0.35064285714286064 -2024-09-09 15:00:00+00:00,0.34550000000000125 -2024-09-09 16:00:00+00:00,0.33442857142857463 -2024-09-09 17:00:00+00:00,0.3262142857142883 -2024-09-09 18:00:00+00:00,0.3102857142857159 -2024-09-09 19:00:00+00:00,0.30228571428571627 -2024-09-09 20:00:00+00:00,0.29921428571428726 -2024-09-09 21:00:00+00:00,0.27699999999999897 -2024-09-09 22:00:00+00:00,0.27399999999999886 -2024-09-09 23:00:00+00:00,0.27014285714285585 -2024-09-10 00:00:00+00:00,0.27478571428571286 -2024-09-10 01:00:00+00:00,0.2703571428571406 -2024-09-10 02:00:00+00:00,0.24428571428571136 -2024-09-10 03:00:00+00:00,0.22614285714285284 -2024-09-10 04:00:00+00:00,0.21814285714285322 -2024-09-10 05:00:00+00:00,0.20828571428571 -2024-09-10 06:00:00+00:00,0.2249285714285654 -2024-09-10 07:00:00+00:00,0.2299285714285649 -2024-09-10 08:00:00+00:00,0.23971428571427925 -2024-09-10 09:00:00+00:00,0.25264285714284945 -2024-09-10 10:00:00+00:00,0.25592857142856523 -2024-09-10 11:00:00+00:00,0.26671428571428024 -2024-09-10 12:00:00+00:00,0.2767142857142813 -2024-09-10 13:00:00+00:00,0.2789285714285675 -2024-09-10 14:00:00+00:00,0.28921428571428215 -2024-09-10 15:00:00+00:00,0.3091428571428533 -2024-09-10 16:00:00+00:00,0.3120714285714265 -2024-09-10 17:00:00+00:00,0.3115714285714282 -2024-09-10 18:00:00+00:00,0.31235714285714017 -2024-09-10 19:00:00+00:00,0.3080714285714257 -2024-09-10 20:00:00+00:00,0.2957142857142827 -2024-09-10 21:00:00+00:00,0.28214285714285225 -2024-09-10 22:00:00+00:00,0.27221428571428213 -2024-09-10 23:00:00+00:00,0.26464285714285396 -2024-09-11 00:00:00+00:00,0.26521428571428124 -2024-09-11 01:00:00+00:00,0.3173571428571397 -2024-09-11 02:00:00+00:00,0.31057142857142545 -2024-09-11 03:00:00+00:00,0.34071428571428236 -2024-09-11 04:00:00+00:00,0.33985714285713947 -2024-09-11 05:00:00+00:00,0.34778571428571226 -2024-09-11 06:00:00+00:00,0.34928571428571126 -2024-09-11 07:00:00+00:00,0.358785714285712 -2024-09-11 08:00:00+00:00,0.3677142857142834 -2024-09-11 09:00:00+00:00,0.38128571428571384 -2024-09-11 10:00:00+00:00,0.3822142857142857 -2024-09-11 11:00:00+00:00,0.3988571428571431 -2024-09-11 12:00:00+00:00,0.4507857142857148 -2024-09-11 13:00:00+00:00,0.48314285714285987 -2024-09-11 14:00:00+00:00,0.5141428571428618 -2024-09-11 15:00:00+00:00,0.4796428571428614 -2024-09-11 16:00:00+00:00,0.4775000000000042 -2024-09-11 17:00:00+00:00,0.45728571428571946 -2024-09-11 18:00:00+00:00,0.4328571428571471 -2024-09-11 19:00:00+00:00,0.40685714285714675 -2024-09-11 20:00:00+00:00,0.39264285714286223 -2024-09-11 21:00:00+00:00,0.37057142857143177 -2024-09-11 22:00:00+00:00,0.3620000000000029 -2024-09-11 23:00:00+00:00,0.35814285714285987 -2024-09-12 00:00:00+00:00,0.36807142857143205 -2024-09-12 01:00:00+00:00,0.37771428571429055 -2024-09-12 02:00:00+00:00,0.3370000000000033 -2024-09-12 03:00:00+00:00,0.3046428571428582 -2024-09-12 04:00:00+00:00,0.2732142857142849 -2024-09-12 05:00:00+00:00,0.26314285714285496 -2024-09-12 06:00:00+00:00,0.26750000000000035 -2024-09-12 07:00:00+00:00,0.27221428571428624 -2024-09-12 08:00:00+00:00,0.27721428571428575 -2024-09-12 09:00:00+00:00,0.2751428571428574 -2024-09-12 10:00:00+00:00,0.28121428571428453 -2024-09-12 11:00:00+00:00,0.29557142857142693 -2024-09-12 12:00:00+00:00,0.32564285714285696 -2024-09-12 13:00:00+00:00,0.34678571428571353 -2024-09-12 14:00:00+00:00,0.3694999999999981 -2024-09-12 15:00:00+00:00,0.36321428571428427 -2024-09-12 16:00:00+00:00,0.37435714285714183 -2024-09-12 17:00:00+00:00,0.3792857142857124 -2024-09-12 18:00:00+00:00,0.39314285714285646 -2024-09-12 19:00:00+00:00,0.3962142857142855 -2024-09-12 20:00:00+00:00,0.3839285714285694 -2024-09-12 21:00:00+00:00,0.3522142857142825 -2024-09-12 22:00:00+00:00,0.3486428571428531 -2024-09-12 23:00:00+00:00,0.36471428571428127 -2024-09-13 00:00:00+00:00,0.3798571428571376 -2024-09-13 01:00:00+00:00,0.38114285714285195 -2024-09-13 02:00:00+00:00,0.3702142857142811 -2024-09-13 03:00:00+00:00,0.3549999999999938 -2024-09-13 04:00:00+00:00,0.33492857142856686 -2024-09-13 05:00:00+00:00,0.33978571428570853 -2024-09-13 06:00:00+00:00,0.3322857142857093 -2024-09-13 07:00:00+00:00,0.35114285714285287 -2024-09-13 08:00:00+00:00,0.3584999999999943 -2024-09-13 09:00:00+00:00,0.3604999999999937 -2024-09-13 10:00:00+00:00,0.3712142857142778 -2024-09-13 11:00:00+00:00,0.394928571428563 -2024-09-13 12:00:00+00:00,0.4047857142857083 -2024-09-13 13:00:00+00:00,0.40707142857142337 -2024-09-13 14:00:00+00:00,0.41335714285713926 -2024-09-13 15:00:00+00:00,0.416642857142853 -2024-09-13 16:00:00+00:00,0.40521428571427975 -2024-09-13 17:00:00+00:00,0.39621428571428147 -2024-09-13 18:00:00+00:00,0.38142857142856557 -2024-09-13 19:00:00+00:00,0.3563571428571371 -2024-09-13 20:00:00+00:00,0.34192857142856575 -2024-09-15 21:00:00+00:00,0.3171428571428529 -2024-09-15 22:00:00+00:00,0.3004999999999975 -2024-09-15 23:00:00+00:00,0.2889999999999974 -2024-09-16 00:00:00+00:00,0.29442857142857043 -2024-09-16 01:00:00+00:00,0.2773571428571415 -2024-09-16 02:00:00+00:00,0.26078571428571096 -2024-09-16 03:00:00+00:00,0.2641428571428516 -2024-09-16 04:00:00+00:00,0.2543571428571373 -2024-09-16 05:00:00+00:00,0.24621428571428186 -2024-09-16 06:00:00+00:00,0.25742857142856834 -2024-09-16 07:00:00+00:00,0.269214285714282 -2024-09-16 08:00:00+00:00,0.2722857142857111 -2024-09-16 09:00:00+00:00,0.2984285714285692 -2024-09-16 10:00:00+00:00,0.3034999999999976 -2024-09-16 11:00:00+00:00,0.30664285714285555 -2024-09-16 12:00:00+00:00,0.33264285714285585 -2024-09-16 13:00:00+00:00,0.3367857142857145 -2024-09-16 14:00:00+00:00,0.33364285714285863 -2024-09-16 15:00:00+00:00,0.3582142857142888 -2024-09-16 16:00:00+00:00,0.3705000000000049 -2024-09-16 17:00:00+00:00,0.3471428571428642 -2024-09-16 18:00:00+00:00,0.33128571428572073 -2024-09-16 19:00:00+00:00,0.3290000000000057 -2024-09-16 20:00:00+00:00,0.3027857142857207 -2024-09-16 21:00:00+00:00,0.2816428571428641 -2024-09-16 22:00:00+00:00,0.2836428571428655 -2024-09-16 23:00:00+00:00,0.28664285714286564 -2024-09-17 00:00:00+00:00,0.2983571428571525 -2024-09-17 01:00:00+00:00,0.30128571428572165 -2024-09-17 02:00:00+00:00,0.2710000000000069 -2024-09-17 03:00:00+00:00,0.26650000000000773 -2024-09-17 04:00:00+00:00,0.2517857142857208 -2024-09-17 05:00:00+00:00,0.23850000000000598 -2024-09-17 06:00:00+00:00,0.23492857142857662 -2024-09-17 07:00:00+00:00,0.2477857142857179 -2024-09-17 08:00:00+00:00,0.2569285714285761 -2024-09-17 09:00:00+00:00,0.2560714285714332 -2024-09-17 10:00:00+00:00,0.2532857142857178 -2024-09-17 11:00:00+00:00,0.26750000000000235 -2024-09-17 12:00:00+00:00,0.2922857142857152 -2024-09-17 13:00:00+00:00,0.3141428571428569 -2024-09-17 14:00:00+00:00,0.313999999999997 -2024-09-17 15:00:00+00:00,0.3068571428571403 -2024-09-17 16:00:00+00:00,0.30964285714285367 -2024-09-17 17:00:00+00:00,0.31535714285713823 -2024-09-17 18:00:00+00:00,0.31635714285713895 -2024-09-17 19:00:00+00:00,0.33178571428571096 -2024-09-17 20:00:00+00:00,0.3362142857142812 -2024-09-17 21:00:00+00:00,0.3156428571428539 -2024-09-17 22:00:00+00:00,0.32328571428571096 -2024-09-17 23:00:00+00:00,0.3257142857142818 -2024-09-18 00:00:00+00:00,0.3507857142857103 -2024-09-18 01:00:00+00:00,0.3532857142857101 -2024-09-18 02:00:00+00:00,0.3287857142857088 -2024-09-18 03:00:00+00:00,0.28449999999999626 -2024-09-18 04:00:00+00:00,0.28171428571428286 -2024-09-18 05:00:00+00:00,0.2840714285714268 -2024-09-18 06:00:00+00:00,0.2807142857142842 -2024-09-18 07:00:00+00:00,0.2886428571428569 -2024-09-18 08:00:00+00:00,0.2997857142857145 -2024-09-18 09:00:00+00:00,0.28042857142857053 -2024-09-18 10:00:00+00:00,0.272357142857144 -2024-09-18 11:00:00+00:00,0.2930714285714292 -2024-09-18 12:00:00+00:00,0.28471428571428703 -2024-09-18 13:00:00+00:00,0.287071428571431 -2024-09-18 14:00:00+00:00,0.2810714285714328 -2024-09-18 15:00:00+00:00,0.2725000000000059 -2024-09-18 16:00:00+00:00,0.26564285714286484 -2024-09-18 17:00:00+00:00,0.27142857142857835 -2024-09-18 18:00:00+00:00,0.35800000000000615 -2024-09-18 19:00:00+00:00,0.45235714285714884 -2024-09-18 20:00:00+00:00,0.4542142857142904 -2024-09-18 21:00:00+00:00,0.43485714285714444 -2024-09-18 22:00:00+00:00,0.433642857142857 -2024-09-18 23:00:00+00:00,0.4626428571428554 -2024-09-19 00:00:00+00:00,0.5149999999999965 -2024-09-19 01:00:00+00:00,0.5275714285714262 -2024-09-19 02:00:00+00:00,0.5521428571428524 -2024-09-19 03:00:00+00:00,0.5613571428571374 -2024-09-19 04:00:00+00:00,0.5519999999999945 -2024-09-19 05:00:00+00:00,0.5857142857142789 -2024-09-19 06:00:00+00:00,0.6213571428571356 -2024-09-19 07:00:00+00:00,0.6391428571428496 -2024-09-19 08:00:00+00:00,0.5618571428571377 -2024-09-19 09:00:00+00:00,0.46971428571427915 -2024-09-19 10:00:00+00:00,0.48107142857142343 -2024-09-19 11:00:00+00:00,0.5072142857142816 -2024-09-19 12:00:00+00:00,0.5584999999999971 -2024-09-19 13:00:00+00:00,0.5469285714285702 -2024-09-19 14:00:00+00:00,0.521642857142857 -2024-09-19 15:00:00+00:00,0.502285714285713 -2024-09-19 16:00:00+00:00,0.4800714285714288 -2024-09-19 17:00:00+00:00,0.46878571428571547 -2024-09-19 18:00:00+00:00,0.4800714285714288 -2024-09-19 19:00:00+00:00,0.44635714285714456 -2024-09-19 20:00:00+00:00,0.4104285714285721 -2024-09-19 21:00:00+00:00,0.3787857142857141 -2024-09-19 22:00:00+00:00,0.356499999999999 -2024-09-19 23:00:00+00:00,0.3556428571428561 -2024-09-20 00:00:00+00:00,0.3584999999999984 -2024-09-20 01:00:00+00:00,0.34757142857142753 -2024-09-20 02:00:00+00:00,0.30692857142856916 -2024-09-20 03:00:00+00:00,0.31021428571428294 -2024-09-20 04:00:00+00:00,0.28657142857142454 -2024-09-20 05:00:00+00:00,0.28478571428571187 -2024-09-20 06:00:00+00:00,0.3581428571428538 -2024-09-20 07:00:00+00:00,0.40199999999999697 -2024-09-20 08:00:00+00:00,0.4021428571428548 -2024-09-20 09:00:00+00:00,0.41142857142856876 -2024-09-20 10:00:00+00:00,0.4364999999999973 -2024-09-20 11:00:00+00:00,0.4474285714285701 -2024-09-20 12:00:00+00:00,0.48757142857142605 -2024-09-20 13:00:00+00:00,0.5120714285714273 -2024-09-20 14:00:00+00:00,0.50692857142857 -2024-09-20 15:00:00+00:00,0.5292142857142851 -2024-09-20 16:00:00+00:00,0.5153571428571431 -2024-09-20 17:00:00+00:00,0.5068571428571451 -2024-09-20 18:00:00+00:00,0.505428571428575 -2024-09-20 19:00:00+00:00,0.5037142857142872 -2024-09-20 20:00:00+00:00,0.4225714285714304 -2024-09-22 21:00:00+00:00,0.38314285714285745 -2024-09-22 22:00:00+00:00,0.3792857142857124 -2024-09-22 23:00:00+00:00,0.3778571428571403 -2024-09-23 00:00:00+00:00,0.3589285714285698 -2024-09-23 01:00:00+00:00,0.3675714285714256 -2024-09-23 02:00:00+00:00,0.3269999999999982 -2024-09-23 03:00:00+00:00,0.2924999999999979 -2024-09-23 04:00:00+00:00,0.2749285714285707 -2024-09-23 05:00:00+00:00,0.24399999999999775 -2024-09-23 06:00:00+00:00,0.24707142857142678 -2024-09-23 07:00:00+00:00,0.2531428571428539 -2024-09-23 08:00:00+00:00,0.2619999999999964 -2024-09-23 09:00:00+00:00,0.2637142857142822 -2024-09-23 10:00:00+00:00,0.27928571428571 -2024-09-23 11:00:00+00:00,0.2936428571428544 -2024-09-23 12:00:00+00:00,0.2990714285714274 -2024-09-23 13:00:00+00:00,0.3307857142857143 -2024-09-23 14:00:00+00:00,0.3597857142857147 -2024-09-23 15:00:00+00:00,0.36221428571428554 -2024-09-23 16:00:00+00:00,0.3742857142857129 -2024-09-23 17:00:00+00:00,0.3751428571428558 -2024-09-23 18:00:00+00:00,0.3734999999999969 -2024-09-23 19:00:00+00:00,0.37164285714285533 -2024-09-23 20:00:00+00:00,0.3593571428571392 -2024-09-23 21:00:00+00:00,0.32778571428571013 -2024-09-23 22:00:00+00:00,0.31635714285713895 -2024-09-23 23:00:00+00:00,0.31878571428571184 -2024-09-24 00:00:00+00:00,0.3139285714285701 -2024-09-24 01:00:00+00:00,0.30742857142856955 -2024-09-24 02:00:00+00:00,0.30128571428571355 -2024-09-24 03:00:00+00:00,0.2699285714285712 -2024-09-24 04:00:00+00:00,0.23807142857142644 -2024-09-24 05:00:00+00:00,0.23721428571428557 -2024-09-24 06:00:00+00:00,0.24307142857142797 -2024-09-24 07:00:00+00:00,0.2635714285714264 -2024-09-24 08:00:00+00:00,0.2832142857142839 -2024-09-24 09:00:00+00:00,0.288571428571426 -2024-09-24 10:00:00+00:00,0.31178571428571494 -2024-09-24 11:00:00+00:00,0.3318571428571439 -2024-09-24 12:00:00+00:00,0.3453571428571434 -2024-09-24 13:00:00+00:00,0.34850000000000136 -2024-09-24 14:00:00+00:00,0.37321428571428733 -2024-09-24 15:00:00+00:00,0.36478571428571627 -2024-09-24 16:00:00+00:00,0.36878571428571505 -2024-09-24 17:00:00+00:00,0.3677857142857143 -2024-09-24 18:00:00+00:00,0.3700000000000005 -2024-09-24 19:00:00+00:00,0.3597142857142858 -2024-09-24 20:00:00+00:00,0.34185714285714297 -2024-09-24 21:00:00+00:00,0.31671428571428756 -2024-09-24 22:00:00+00:00,0.3124285714285731 -2024-09-24 23:00:00+00:00,0.30900000000000155 -2024-09-25 00:00:00+00:00,0.30328571428571494 -2024-09-25 01:00:00+00:00,0.30592857142857255 -2024-09-25 02:00:00+00:00,0.29942857142857193 -2024-09-25 03:00:00+00:00,0.2895714285714287 -2024-09-25 04:00:00+00:00,0.25428571428571445 -2024-09-25 05:00:00+00:00,0.24914285714285508 -2024-09-25 06:00:00+00:00,0.2577857142857129 -2024-09-25 07:00:00+00:00,0.2619999999999984 -2024-09-25 08:00:00+00:00,0.25921428571428506 -2024-09-25 09:00:00+00:00,0.2692142857142841 -2024-09-25 10:00:00+00:00,0.2752142857142843 -2024-09-25 11:00:00+00:00,0.28171428571428286 -2024-09-25 12:00:00+00:00,0.27507142857142647 -2024-09-25 13:00:00+00:00,0.28457142857142514 -2024-09-25 14:00:00+00:00,0.2808571428571379 -2024-09-25 15:00:00+00:00,0.27528571428570914 -2024-09-25 16:00:00+00:00,0.26935714285713785 -2024-09-25 17:00:00+00:00,0.2756428571428517 -2024-09-25 18:00:00+00:00,0.2775714285714222 -2024-09-25 19:00:00+00:00,0.2748571428571377 -2024-09-25 20:00:00+00:00,0.24535714285713692 -2024-09-25 21:00:00+00:00,0.22642857142856446 -2024-09-25 22:00:00+00:00,0.2222142857142789 -2024-09-25 23:00:00+00:00,0.20792857142856544 -2024-09-26 00:00:00+00:00,0.21178571428571047 -2024-09-26 01:00:00+00:00,0.23264285714285546 -2024-09-26 02:00:00+00:00,0.22657142857142837 -2024-09-26 03:00:00+00:00,0.21928571428571583 -2024-09-26 04:00:00+00:00,0.21842857142857497 -2024-09-26 05:00:00+00:00,0.21371428571428908 -2024-09-26 06:00:00+00:00,0.21921428571428894 -2024-09-26 07:00:00+00:00,0.23328571428571568 -2024-09-26 08:00:00+00:00,0.25614285714286006 -2024-09-26 09:00:00+00:00,0.26357142857143046 -2024-09-26 10:00:00+00:00,0.285571428571432 -2024-09-26 11:00:00+00:00,0.3007857142857172 -2024-09-26 12:00:00+00:00,0.33578571428571585 -2024-09-26 13:00:00+00:00,0.3530714285714294 -2024-09-26 14:00:00+00:00,0.38007142857142845 -2024-09-26 15:00:00+00:00,0.37049999999999883 -2024-09-26 16:00:00+00:00,0.37385714285714144 -2024-09-26 17:00:00+00:00,0.3791428571428566 -2024-09-26 18:00:00+00:00,0.36999999999999844 -2024-09-26 19:00:00+00:00,0.36614285714285544 -2024-09-26 20:00:00+00:00,0.36592857142857077 -2024-09-26 21:00:00+00:00,0.3390000000000007 -2024-09-26 22:00:00+00:00,0.31514285714285556 -2024-09-26 23:00:00+00:00,0.3157857142857137 -2024-09-27 00:00:00+00:00,0.32499999999999674 -2024-09-27 01:00:00+00:00,0.3269999999999982 -2024-09-27 02:00:00+00:00,0.31014285714285805 -2024-09-27 03:00:00+00:00,0.3019285714285737 -2024-09-27 04:00:00+00:00,0.29378571428571626 -2024-09-27 05:00:00+00:00,0.32200000000000273 -2024-09-27 06:00:00+00:00,0.535500000000001 -2024-09-27 07:00:00+00:00,0.5620714285714286 -2024-09-27 08:00:00+00:00,0.6060714285714275 -2024-09-27 09:00:00+00:00,0.6239999999999993 -2024-09-27 10:00:00+00:00,0.6334285714285711 -2024-09-27 11:00:00+00:00,0.648142857142858 -2024-09-27 12:00:00+00:00,0.6870714285714306 -2024-09-27 13:00:00+00:00,0.7031428571428587 -2024-09-27 14:00:00+00:00,0.7141428571428605 -2024-09-27 15:00:00+00:00,0.730000000000004 -2024-09-27 16:00:00+00:00,0.7240714285714306 -2024-09-27 17:00:00+00:00,0.7270000000000019 -2024-09-27 18:00:00+00:00,0.7123571428571438 -2024-09-27 19:00:00+00:00,0.6740714285714274 -2024-09-27 20:00:00+00:00,0.4548571428571425 -2024-09-29 21:00:00+00:00,0.413571428571428 -2024-09-29 22:00:00+00:00,0.38728571428571407 -2024-09-29 23:00:00+00:00,0.3830714285714265 -2024-09-30 00:00:00+00:00,0.38435714285714084 -2024-09-30 01:00:00+00:00,0.39507142857142696 -2024-09-30 02:00:00+00:00,0.36307142857142644 -2024-09-30 03:00:00+00:00,0.34121428571428275 -2024-09-30 04:00:00+00:00,0.32178571428571195 -2024-09-30 05:00:00+00:00,0.3196428571428527 -2024-09-30 06:00:00+00:00,0.32964285714285374 -2024-09-30 07:00:00+00:00,0.3429999999999954 -2024-09-30 08:00:00+00:00,0.33571428571428086 -2024-09-30 09:00:00+00:00,0.3324999999999981 -2024-09-30 10:00:00+00:00,0.3406428571428555 -2024-09-30 11:00:00+00:00,0.347214285714285 -2024-09-30 12:00:00+00:00,0.34714285714285814 -2024-09-30 13:00:00+00:00,0.3490000000000017 -2024-09-30 14:00:00+00:00,0.3476428571428585 -2024-09-30 15:00:00+00:00,0.3432142857142862 -2024-09-30 16:00:00+00:00,0.34050000000000175 -2024-09-30 17:00:00+00:00,0.33985714285714763 -2024-09-30 18:00:00+00:00,0.36864285714285927 -2024-09-30 19:00:00+00:00,0.35185714285714603 -2024-09-30 20:00:00+00:00,0.3304285714285738 -2024-09-30 21:00:00+00:00,0.299428571428574 -2024-09-30 22:00:00+00:00,0.2940714285714319 -2024-09-30 23:00:00+00:00,0.30914285714285733 -2024-10-01 00:00:00+00:00,0.32171428571428506 -2024-10-01 01:00:00+00:00,0.3387857142857139 -2024-10-01 02:00:00+00:00,0.3327142857142848 -2024-10-01 03:00:00+00:00,0.33149999999999935 -2024-10-01 04:00:00+00:00,0.3174285714285706 -2024-10-01 05:00:00+00:00,0.3044999999999983 -2024-10-01 06:00:00+00:00,0.3114999999999973 -2024-10-01 07:00:00+00:00,0.3319999999999957 -2024-10-01 08:00:00+00:00,0.3106428571428544 -2024-10-01 09:00:00+00:00,0.30714285714285594 -2024-10-01 10:00:00+00:00,0.3060714285714263 -2024-10-01 11:00:00+00:00,0.3169999999999971 -2024-10-01 12:00:00+00:00,0.33299999999999635 -2024-10-01 13:00:00+00:00,0.3705714285714277 -2024-10-01 14:00:00+00:00,0.40392857142856947 -2024-10-01 15:00:00+00:00,0.399642857142853 -2024-10-01 16:00:00+00:00,0.4047857142857083 -2024-10-01 17:00:00+00:00,0.41578571428570804 -2024-10-01 18:00:00+00:00,0.42649999999999216 -2024-10-01 19:00:00+00:00,0.429714285714279 -2024-10-01 20:00:00+00:00,0.41157142857142254 -2024-10-01 21:00:00+00:00,0.3845714285714215 -2024-10-01 22:00:00+00:00,0.3628571428571356 -2024-10-01 23:00:00+00:00,0.3654285714285623 -2024-10-02 00:00:00+00:00,0.373357142857135 -2024-10-02 01:00:00+00:00,0.3820714285714238 -2024-10-02 02:00:00+00:00,0.36621428571428033 -2024-10-02 03:00:00+00:00,0.3244285714285634 -2024-10-02 04:00:00+00:00,0.3003571428571356 -2024-10-02 05:00:00+00:00,0.2958571428571365 -2024-10-02 06:00:00+00:00,0.29042857142856554 -2024-10-02 07:00:00+00:00,0.27314285714285397 -2024-10-02 08:00:00+00:00,0.2773571428571415 -2024-10-02 09:00:00+00:00,0.2752857142857112 -2024-10-02 10:00:00+00:00,0.32464285714285424 -2024-10-02 11:00:00+00:00,0.3372142857142819 -2024-10-02 12:00:00+00:00,0.37635714285713917 -2024-10-02 13:00:00+00:00,0.3907142857142816 -2024-10-02 14:00:00+00:00,0.4232857142857093 -2024-10-02 15:00:00+00:00,0.41464285714285154 -2024-10-02 16:00:00+00:00,0.42092857142856743 -2024-10-02 17:00:00+00:00,0.41507142857142504 -2024-10-02 18:00:00+00:00,0.3889285714285689 -2024-10-02 19:00:00+00:00,0.3784999999999964 -2024-10-02 20:00:00+00:00,0.3623571428571393 -2024-10-02 21:00:00+00:00,0.3480714285714238 -2024-10-02 22:00:00+00:00,0.36542857142856633 -2024-10-02 23:00:00+00:00,0.376499999999995 -2024-10-03 00:00:00+00:00,0.3634999999999958 -2024-10-03 01:00:00+00:00,0.3761428571428545 -2024-10-03 02:00:00+00:00,0.3384999999999983 -2024-10-03 03:00:00+00:00,0.3197142857142857 -2024-10-03 04:00:00+00:00,0.2890000000000015 -2024-10-03 05:00:00+00:00,0.2927857142857156 -2024-10-03 06:00:00+00:00,0.2960714285714293 -2024-10-03 07:00:00+00:00,0.32028571428571695 -2024-10-03 08:00:00+00:00,0.3342857142857168 -2024-10-03 09:00:00+00:00,0.33850000000000435 -2024-10-03 10:00:00+00:00,0.33735714285714785 -2024-10-03 11:00:00+00:00,0.3601428571428613 -2024-10-03 12:00:00+00:00,0.33928571428571835 -2024-10-03 13:00:00+00:00,0.3361428571428604 -2024-10-03 14:00:00+00:00,0.33292857142857357 -2024-10-03 15:00:00+00:00,0.31857142857143117 -2024-10-03 16:00:00+00:00,0.31721428571428795 -2024-10-03 17:00:00+00:00,0.3133571428571429 -2024-10-03 18:00:00+00:00,0.3116428571428571 -2024-10-03 19:00:00+00:00,0.3002142857142839 -2024-10-03 20:00:00+00:00,0.2866428571428555 -2024-10-03 21:00:00+00:00,0.25378571428571 -2024-10-03 22:00:00+00:00,0.23157142857142382 -2024-10-03 23:00:00+00:00,0.22449999999999598 -2024-10-04 00:00:00+00:00,0.23785714285713766 -2024-10-04 01:00:00+00:00,0.21971428571427915 -2024-10-04 02:00:00+00:00,0.2087142857142794 -2024-10-04 03:00:00+00:00,0.19599999999999593 -2024-10-04 04:00:00+00:00,0.17307142857142463 -2024-10-04 05:00:00+00:00,0.18364285714285294 -2024-10-04 06:00:00+00:00,0.18835714285713884 -2024-10-04 07:00:00+00:00,0.19028571428571134 -2024-10-04 08:00:00+00:00,0.18514285714285197 -2024-10-04 09:00:00+00:00,0.18635714285713942 -2024-10-04 10:00:00+00:00,0.18907142857142592 -2024-10-04 11:00:00+00:00,0.1951428571428571 -2024-10-04 12:00:00+00:00,0.34749999999999864 -2024-10-04 13:00:00+00:00,0.3722857142857115 -2024-10-04 14:00:00+00:00,0.36835714285713955 -2024-10-04 15:00:00+00:00,0.38121428571428495 -2024-10-04 16:00:00+00:00,0.3923571428571425 -2024-10-04 17:00:00+00:00,0.39407142857142624 -2024-10-04 18:00:00+00:00,0.3866428571428559 -2024-10-04 19:00:00+00:00,0.3676428571428545 -2024-10-04 20:00:00+00:00,0.3560714285714255 -2024-10-06 21:00:00+00:00,0.3576428571428555 -2024-10-06 22:00:00+00:00,0.37164285714285733 -2024-10-06 23:00:00+00:00,0.38621428571428446 -2024-10-07 00:00:00+00:00,0.4068571428571407 -2024-10-07 01:00:00+00:00,0.41121428571428403 -2024-10-07 02:00:00+00:00,0.27857142857142697 -2024-10-07 03:00:00+00:00,0.2644999999999982 -2024-10-07 04:00:00+00:00,0.26092857142857084 -2024-10-07 05:00:00+00:00,0.2522142857142861 -2024-10-07 06:00:00+00:00,0.24328571428571472 -2024-10-07 07:00:00+00:00,0.25285714285714433 -2024-10-07 08:00:00+00:00,0.2649285714285717 -2024-10-07 09:00:00+00:00,0.2756428571428598 -2024-10-07 10:00:00+00:00,0.2920000000000016 -2024-10-07 11:00:00+00:00,0.3160714285714294 -2024-10-07 12:00:00+00:00,0.3082142857142876 -2024-10-07 13:00:00+00:00,0.31178571428571694 -2024-10-07 14:00:00+00:00,0.3061428571428613 -2024-10-07 15:00:00+00:00,0.3083571428571454 -2024-10-07 16:00:00+00:00,0.29692857142857626 -2024-10-07 17:00:00+00:00,0.2879285714285779 -2024-10-07 18:00:00+00:00,0.28421428571429275 -2024-10-07 19:00:00+00:00,0.27878571428571775 -2024-10-07 20:00:00+00:00,0.2742857142857166 -2024-10-07 21:00:00+00:00,0.2553571428571461 -2024-10-07 22:00:00+00:00,0.27771428571429013 -2024-10-07 23:00:00+00:00,0.29200000000000365 -2024-10-08 00:00:00+00:00,0.29878571428571987 -2024-10-08 01:00:00+00:00,0.2752142857142904 -2024-10-08 02:00:00+00:00,0.28235714285714714 -2024-10-08 03:00:00+00:00,0.2739285714285761 -2024-10-08 04:00:00+00:00,0.2627857142857185 -2024-10-08 05:00:00+00:00,0.2660000000000033 -2024-10-08 06:00:00+00:00,0.27185714285714574 -2024-10-08 07:00:00+00:00,0.3113571428571435 -2024-10-08 08:00:00+00:00,0.3233571428571419 -2024-10-08 09:00:00+00:00,0.330214285714285 -2024-10-08 10:00:00+00:00,0.3354285714285713 -2024-10-08 11:00:00+00:00,0.34678571428571153 -2024-10-08 12:00:00+00:00,0.3264285714285669 -2024-10-08 13:00:00+00:00,0.31628571428571 -2024-10-08 14:00:00+00:00,0.30014285714285094 -2024-10-08 15:00:00+00:00,0.29957142857142366 -2024-10-08 16:00:00+00:00,0.2911428571428506 -2024-10-08 17:00:00+00:00,0.28185714285713664 -2024-10-08 18:00:00+00:00,0.27892857142856337 -2024-10-08 19:00:00+00:00,0.2643571428571363 -2024-10-08 20:00:00+00:00,0.2557142857142785 -2024-10-08 21:00:00+00:00,0.20735714285713616 -2024-10-08 22:00:00+00:00,0.19249999999999343 -2024-10-08 23:00:00+00:00,0.19064285714285184 -2024-10-09 00:00:00+00:00,0.1911428571428522 -2024-10-09 01:00:00+00:00,0.19707142857142554 -2024-10-09 02:00:00+00:00,0.18942857142856845 -2024-10-09 03:00:00+00:00,0.17721428571428127 -2024-10-09 04:00:00+00:00,0.1677857142857115 -2024-10-09 05:00:00+00:00,0.17585714285714005 -2024-10-09 06:00:00+00:00,0.17578571428571316 -2024-10-09 07:00:00+00:00,0.18678571428571292 -2024-10-09 08:00:00+00:00,0.19285714285714203 -2024-10-09 09:00:00+00:00,0.1984285714285688 -2024-10-09 10:00:00+00:00,0.20014285714285457 -2024-10-09 11:00:00+00:00,0.2135714285714272 -2024-10-09 12:00:00+00:00,0.22271428571428536 -2024-10-09 13:00:00+00:00,0.23021428571428462 -2024-10-09 14:00:00+00:00,0.22450000000000006 -2024-10-09 15:00:00+00:00,0.21871428571428453 -2024-10-09 16:00:00+00:00,0.21064285714285802 -2024-10-09 17:00:00+00:00,0.20800000000000246 -2024-10-09 18:00:00+00:00,0.2162142857142868 -2024-10-09 19:00:00+00:00,0.2039999999999996 -2024-10-09 20:00:00+00:00,0.19199999999999712 -2024-10-09 21:00:00+00:00,0.18185714285713825 -2024-10-09 22:00:00+00:00,0.17471428571428355 -2024-10-09 23:00:00+00:00,0.17178571428571437 -2024-10-10 00:00:00+00:00,0.1787857142857153 -2024-10-10 01:00:00+00:00,0.17328571428571543 -2024-10-10 02:00:00+00:00,0.16664285714285704 -2024-10-10 03:00:00+00:00,0.15000000000000163 -2024-10-10 04:00:00+00:00,0.1625714285714293 -2024-10-10 05:00:00+00:00,0.16807142857142918 -2024-10-10 06:00:00+00:00,0.17557142857142846 -2024-10-10 07:00:00+00:00,0.18692857142857072 -2024-10-10 08:00:00+00:00,0.1884999999999987 -2024-10-10 09:00:00+00:00,0.19864285714285757 -2024-10-10 10:00:00+00:00,0.20571428571428743 -2024-10-10 11:00:00+00:00,0.2122857142857169 -2024-10-10 12:00:00+00:00,0.2992142857142852 -2024-10-10 13:00:00+00:00,0.3144285714285705 -2024-10-10 14:00:00+00:00,0.331714285714282 -2024-10-10 15:00:00+00:00,0.34842857142856637 -2024-10-10 16:00:00+00:00,0.37507142857142484 -2024-10-10 17:00:00+00:00,0.3944999999999957 -2024-10-10 18:00:00+00:00,0.3864285714285671 -2024-10-10 19:00:00+00:00,0.3858571428571399 -2024-10-10 20:00:00+00:00,0.3766428571428528 -2024-10-10 21:00:00+00:00,0.35992857142856644 -2024-10-10 22:00:00+00:00,0.35321428571428115 -2024-10-10 23:00:00+00:00,0.3472142857142809 -2024-10-11 00:00:00+00:00,0.36057142857142466 -2024-10-11 01:00:00+00:00,0.3709285714285682 -2024-10-11 02:00:00+00:00,0.2835714285714285 -2024-10-11 03:00:00+00:00,0.2682857142857123 -2024-10-11 04:00:00+00:00,0.23685714285714304 -2024-10-11 05:00:00+00:00,0.21864285714285764 -2024-10-11 06:00:00+00:00,0.19549999999999962 -2024-10-11 07:00:00+00:00,0.1809999999999994 -2024-10-11 08:00:00+00:00,0.17728571428571424 -2024-10-11 09:00:00+00:00,0.17499999999999918 -2024-10-11 10:00:00+00:00,0.1818571428571423 -2024-10-11 11:00:00+00:00,0.18864285714285853 -2024-10-11 12:00:00+00:00,0.213000000000002 -2024-10-11 13:00:00+00:00,0.21428571428571633 -2024-10-11 14:00:00+00:00,0.21021428571428658 -2024-10-11 15:00:00+00:00,0.19664285714285817 -2024-10-11 16:00:00+00:00,0.19749999999999904 -2024-10-11 17:00:00+00:00,0.19714285714285854 -2024-10-11 18:00:00+00:00,0.19628571428571565 -2024-10-11 19:00:00+00:00,0.19164285714285864 -2024-10-11 20:00:00+00:00,0.18221428571428686 -2024-10-13 21:00:00+00:00,0.1818571428571423 -2024-10-13 22:00:00+00:00,0.1856428571428564 -2024-10-13 23:00:00+00:00,0.18085714285714363 -2024-10-14 00:00:00+00:00,0.1842142857142883 -2024-10-14 01:00:00+00:00,0.1832857142857165 -2024-10-14 02:00:00+00:00,0.15871428571428833 -2024-10-14 03:00:00+00:00,0.15114285714285813 -2024-10-14 04:00:00+00:00,0.13550000000000142 -2024-10-14 05:00:00+00:00,0.13178571428571623 -2024-10-14 06:00:00+00:00,0.12564285714286022 -2024-10-14 07:00:00+00:00,0.12971428571428792 -2024-10-14 08:00:00+00:00,0.13428571428571598 -2024-10-14 09:00:00+00:00,0.13600000000000176 -2024-10-14 10:00:00+00:00,0.1415714285714326 -2024-10-14 11:00:00+00:00,0.14671428571429196 -2024-10-14 12:00:00+00:00,0.14385714285714965 -2024-10-14 13:00:00+00:00,0.14600000000000485 -2024-10-14 14:00:00+00:00,0.14242857142857343 -2024-10-14 15:00:00+00:00,0.13992857142857368 -2024-10-14 16:00:00+00:00,0.14057142857143187 -2024-10-14 17:00:00+00:00,0.1397857142857179 -2024-10-14 18:00:00+00:00,0.14057142857143187 -2024-10-14 19:00:00+00:00,0.14914285714285874 -2024-10-14 20:00:00+00:00,0.15014285714285944 -2024-10-14 21:00:00+00:00,0.14064285714285876 -2024-10-14 22:00:00+00:00,0.1359285714285749 -2024-10-14 23:00:00+00:00,0.14200000000000404 -2024-10-15 00:00:00+00:00,0.14728571428571918 -2024-10-15 01:00:00+00:00,0.14300000000000473 -2024-10-15 02:00:00+00:00,0.14578571428571813 -2024-10-15 03:00:00+00:00,0.14285714285714693 -2024-10-15 04:00:00+00:00,0.13685714285714873 -2024-10-15 05:00:00+00:00,0.1485000000000046 -2024-10-15 06:00:00+00:00,0.1622857142857157 -2024-10-15 07:00:00+00:00,0.16821428571428904 -2024-10-15 08:00:00+00:00,0.17721428571428938 -2024-10-15 09:00:00+00:00,0.18071428571428985 -2024-10-15 10:00:00+00:00,0.19700000000000273 -2024-10-15 11:00:00+00:00,0.20807142857143138 -2024-10-15 12:00:00+00:00,0.23235714285714387 -2024-10-15 13:00:00+00:00,0.23249999999999968 -2024-10-15 14:00:00+00:00,0.24607142857142808 -2024-10-15 15:00:00+00:00,0.24557142857142772 -2024-10-15 16:00:00+00:00,0.24928571428571292 -2024-10-15 17:00:00+00:00,0.24692857142857097 -2024-10-15 18:00:00+00:00,0.2560714285714271 -2024-10-15 19:00:00+00:00,0.2464285714285706 -2024-10-15 20:00:00+00:00,0.22735714285714437 -2024-10-15 21:00:00+00:00,0.22264285714285847 -2024-10-15 22:00:00+00:00,0.21492857142857247 -2024-10-15 23:00:00+00:00,0.21128571428571416 -2024-10-16 00:00:00+00:00,0.20721428571428444 -2024-10-16 01:00:00+00:00,0.22228571428571392 -2024-10-16 02:00:00+00:00,0.20414285714285743 -2024-10-16 03:00:00+00:00,0.20328571428571454 -2024-10-16 04:00:00+00:00,0.18471428571428458 -2024-10-16 05:00:00+00:00,0.18728571428571325 -2024-10-16 06:00:00+00:00,0.18342857142857025 -2024-10-16 07:00:00+00:00,0.19757142857142793 -2024-10-16 08:00:00+00:00,0.19485714285714348 -2024-10-16 09:00:00+00:00,0.2067142857142861 -2024-10-16 10:00:00+00:00,0.214499999999999 -2024-10-16 11:00:00+00:00,0.22671428571428415 -2024-10-16 12:00:00+00:00,0.24357142857142833 -2024-10-16 13:00:00+00:00,0.24814285714285841 -2024-10-16 14:00:00+00:00,0.262357142857145 -2024-10-16 15:00:00+00:00,0.2451428571428583 -2024-10-16 16:00:00+00:00,0.23935714285714482 -2024-10-16 17:00:00+00:00,0.23264285714285954 -2024-10-16 18:00:00+00:00,0.22621428571428787 -2024-10-16 19:00:00+00:00,0.21928571428571583 -2024-10-16 20:00:00+00:00,0.2135000000000003 -2024-10-16 21:00:00+00:00,0.19364285714285806 -2024-10-16 22:00:00+00:00,0.19092857142857156 -2024-10-16 23:00:00+00:00,0.179785714285714 -2024-10-17 00:00:00+00:00,0.1803571428571453 -2024-10-17 01:00:00+00:00,0.1803571428571453 -2024-10-17 02:00:00+00:00,0.16935714285714557 -2024-10-17 03:00:00+00:00,0.15664285714286003 -2024-10-17 04:00:00+00:00,0.13757142857143176 -2024-10-17 05:00:00+00:00,0.1310714285714332 -2024-10-17 06:00:00+00:00,0.14021428571428934 -2024-10-17 07:00:00+00:00,0.14678571428571882 -2024-10-17 08:00:00+00:00,0.15250000000000544 -2024-10-17 09:00:00+00:00,0.16207142857143506 -2024-10-17 10:00:00+00:00,0.1594285714285795 -2024-10-17 11:00:00+00:00,0.16814285714286217 -2024-10-17 12:00:00+00:00,0.20200000000000426 -2024-10-17 13:00:00+00:00,0.2150000000000034 -2024-10-17 14:00:00+00:00,0.22471428571428678 -2024-10-17 15:00:00+00:00,0.22135714285714414 -2024-10-17 16:00:00+00:00,0.22135714285714414 -2024-10-17 17:00:00+00:00,0.21849999999999983 -2024-10-17 18:00:00+00:00,0.21178571428571452 -2024-10-17 19:00:00+00:00,0.21292857142857105 -2024-10-17 20:00:00+00:00,0.20221428571428493 -2024-10-17 21:00:00+00:00,0.19557142857142853 -2024-10-17 22:00:00+00:00,0.19271428571428423 -2024-10-17 23:00:00+00:00,0.1923571428571417 -2024-10-18 00:00:00+00:00,0.20399999999999757 -2024-10-18 01:00:00+00:00,0.20614285714285682 -2024-10-18 02:00:00+00:00,0.17564285714285738 -2024-10-18 03:00:00+00:00,0.1613571428571439 -2024-10-18 04:00:00+00:00,0.14950000000000127 -2024-10-18 05:00:00+00:00,0.14392857142857046 -2024-10-18 06:00:00+00:00,0.146571428571426 -2024-10-18 07:00:00+00:00,0.15371428571428478 -2024-10-18 08:00:00+00:00,0.16649999999999718 -2024-10-18 09:00:00+00:00,0.16535714285714068 -2024-10-18 10:00:00+00:00,0.18971428571428411 -2024-10-18 11:00:00+00:00,0.19785714285713954 -2024-10-18 12:00:00+00:00,0.21178571428571047 -2024-10-18 13:00:00+00:00,0.2129999999999959 -2024-10-18 14:00:00+00:00,0.2061428571428548 -2024-10-18 15:00:00+00:00,0.20228571428570977 -2024-10-18 16:00:00+00:00,0.20785714285713652 -2024-10-18 17:00:00+00:00,0.21649999999999434 -2024-10-18 18:00:00+00:00,0.21549999999999564 -2024-10-18 19:00:00+00:00,0.21249999999999755 -2024-10-18 20:00:00+00:00,0.20457142857142685 -2024-10-20 21:00:00+00:00,0.19864285714285554 -2024-10-20 22:00:00+00:00,0.18799999999999834 -2024-10-20 23:00:00+00:00,0.1907857142857117 -2024-10-21 00:00:00+00:00,0.18814285714285411 -2024-10-21 01:00:00+00:00,0.19807142857142424 -2024-10-21 02:00:00+00:00,0.19057142857142498 -2024-10-21 03:00:00+00:00,0.18507142857142508 -2024-10-21 04:00:00+00:00,0.18492857142856728 -2024-10-21 05:00:00+00:00,0.18742857142856906 -2024-10-21 06:00:00+00:00,0.19271428571428423 -2024-10-21 07:00:00+00:00,0.1925714285714264 -2024-10-21 08:00:00+00:00,0.19171428571428148 -2024-10-21 09:00:00+00:00,0.20321428571428157 -2024-10-21 10:00:00+00:00,0.20849999999999674 -2024-10-21 11:00:00+00:00,0.20614285714285277 -2024-10-21 12:00:00+00:00,0.2177857142857107 -2024-10-21 13:00:00+00:00,0.22328571428571056 -2024-10-21 14:00:00+00:00,0.21049999999999613 -2024-10-21 15:00:00+00:00,0.20835714285714094 -2024-10-21 16:00:00+00:00,0.20342857142857035 -2024-10-21 17:00:00+00:00,0.21314285714285575 -2024-10-21 18:00:00+00:00,0.2107142857142849 -2024-10-21 19:00:00+00:00,0.20635714285714155 -2024-10-21 20:00:00+00:00,0.19078571428571373 -2024-10-21 21:00:00+00:00,0.1845714285714288 -2024-10-21 22:00:00+00:00,0.1850714285714312 -2024-10-21 23:00:00+00:00,0.1804285714285742 -2024-10-22 00:00:00+00:00,0.1804285714285722 -2024-10-22 01:00:00+00:00,0.18857142857142964 -2024-10-22 02:00:00+00:00,0.18342857142857433 -2024-10-22 03:00:00+00:00,0.17964285714286024 -2024-10-22 04:00:00+00:00,0.1850714285714312 -2024-10-22 05:00:00+00:00,0.17928571428571768 -2024-10-22 06:00:00+00:00,0.1860714285714319 -2024-10-22 07:00:00+00:00,0.19178571428571647 -2024-10-22 08:00:00+00:00,0.2007857142857148 -2024-10-22 09:00:00+00:00,0.20835714285714296 -2024-10-22 10:00:00+00:00,0.21064285714285802 -2024-10-22 11:00:00+00:00,0.21100000000000055 -2024-10-22 12:00:00+00:00,0.21278571428571322 -2024-10-22 13:00:00+00:00,0.22321428571428367 -2024-10-22 14:00:00+00:00,0.22571428571428548 -2024-10-22 15:00:00+00:00,0.22828571428571415 -2024-10-22 16:00:00+00:00,0.22392857142857078 -2024-10-22 17:00:00+00:00,0.22349999999999934 -2024-10-22 18:00:00+00:00,0.2172142857142855 -2024-10-22 19:00:00+00:00,0.20757142857142696 -2024-10-22 20:00:00+00:00,0.1972857142857123 -2024-10-22 21:00:00+00:00,0.17442857142857196 -2024-10-22 22:00:00+00:00,0.16035714285714522 -2024-10-22 23:00:00+00:00,0.15271428571429016 -2024-10-23 00:00:00+00:00,0.1660000000000029 -2024-10-23 01:00:00+00:00,0.1822857142857178 -2024-10-23 02:00:00+00:00,0.18178571428571746 -2024-10-23 03:00:00+00:00,0.1649285714285753 -2024-10-23 04:00:00+00:00,0.178285714285717 -2024-10-23 05:00:00+00:00,0.17814285714286118 -2024-10-23 06:00:00+00:00,0.18621428571428972 -2024-10-23 07:00:00+00:00,0.19457142857143392 -2024-10-23 08:00:00+00:00,0.1990000000000062 -2024-10-23 09:00:00+00:00,0.21892857142857736 -2024-10-23 10:00:00+00:00,0.23335714285714662 -2024-10-23 11:00:00+00:00,0.2521428571428593 -2024-10-23 12:00:00+00:00,0.268500000000001 -2024-10-23 13:00:00+00:00,0.27807142857142864 -2024-10-23 14:00:00+00:00,0.2668571428571442 -2024-10-23 15:00:00+00:00,0.2602857142857147 -2024-10-23 16:00:00+00:00,0.25792857142857073 -2024-10-23 17:00:00+00:00,0.2602142857142858 -2024-10-23 18:00:00+00:00,0.25350000000000045 -2024-10-23 19:00:00+00:00,0.24599999999999916 -2024-10-23 20:00:00+00:00,0.2424285714285698 -2024-10-23 21:00:00+00:00,0.22607142857142598 -2024-10-23 22:00:00+00:00,0.22007142857142575 -2024-10-23 23:00:00+00:00,0.20878571428571238 -2024-10-24 00:00:00+00:00,0.20721428571428646 -2024-10-24 01:00:00+00:00,0.19799999999999937 -2024-10-24 02:00:00+00:00,0.20342857142857237 -2024-10-24 03:00:00+00:00,0.19771428571428576 -2024-10-24 04:00:00+00:00,0.20542857142857177 -2024-10-24 05:00:00+00:00,0.1980714285714283 -2024-10-24 06:00:00+00:00,0.21364285714285813 -2024-10-24 07:00:00+00:00,0.2242142857142844 -2024-10-24 08:00:00+00:00,0.22557142857142765 -2024-10-24 09:00:00+00:00,0.23321428571428474 -2024-10-24 10:00:00+00:00,0.2301428571428557 -2024-10-24 11:00:00+00:00,0.2483571428571411 -2024-10-24 12:00:00+00:00,0.27314285714285597 -2024-10-24 13:00:00+00:00,0.2874285714285715 -2024-10-24 14:00:00+00:00,0.30057142857142843 -2024-10-24 15:00:00+00:00,0.30121428571428666 -2024-10-24 16:00:00+00:00,0.2917857142857128 -2024-10-24 17:00:00+00:00,0.29664285714285654 -2024-10-24 18:00:00+00:00,0.2925714285714288 -2024-10-24 19:00:00+00:00,0.2848571428571428 -2024-10-24 20:00:00+00:00,0.26478571428571385 -2024-10-24 21:00:00+00:00,0.24771428571428697 -2024-10-24 22:00:00+00:00,0.23600000000000218 -2024-10-24 23:00:00+00:00,0.23500000000000146 -2024-10-25 00:00:00+00:00,0.24821428571428733 -2024-10-25 01:00:00+00:00,0.24550000000000288 -2024-10-25 02:00:00+00:00,0.22085714285714378 -2024-10-25 03:00:00+00:00,0.19871428571428648 -2024-10-25 04:00:00+00:00,0.18628571428571458 -2024-10-25 05:00:00+00:00,0.19378571428571587 -2024-10-25 06:00:00+00:00,0.2013571428571461 -2024-10-25 07:00:00+00:00,0.2005000000000032 -2024-10-25 08:00:00+00:00,0.19350000000000225 -2024-10-25 09:00:00+00:00,0.2012142857142903 -2024-10-25 10:00:00+00:00,0.2087857142857185 -2024-10-25 11:00:00+00:00,0.22200000000000436 -2024-10-25 12:00:00+00:00,0.23164285714286084 -2024-10-25 13:00:00+00:00,0.23821428571429035 -2024-10-25 14:00:00+00:00,0.22757142857143517 -2024-10-25 15:00:00+00:00,0.22392857142857686 -2024-10-25 16:00:00+00:00,0.22571428571429156 -2024-10-25 17:00:00+00:00,0.23357142857143337 -2024-10-25 18:00:00+00:00,0.2281428571428624 -2024-10-25 19:00:00+00:00,0.2166428571428623 -2024-10-25 20:00:00+00:00,0.2057857142857204 -2024-10-27 21:00:00+00:00,0.25578571428571956 -2024-10-27 22:00:00+00:00,0.28607142857143436 -2024-10-27 23:00:00+00:00,0.29207142857143253 -2024-10-28 00:00:00+00:00,0.33142857142857657 -2024-10-28 01:00:00+00:00,0.3456428571428611 -2024-10-28 02:00:00+00:00,0.3477857142857163 -2024-10-28 03:00:00+00:00,0.3390714285714296 -2024-10-28 04:00:00+00:00,0.344142857142858 -2024-10-28 05:00:00+00:00,0.34642857142857103 -2024-10-28 06:00:00+00:00,0.3573571428571419 -2024-10-28 07:00:00+00:00,0.36971428571428483 -2024-10-28 08:00:00+00:00,0.3753571428571405 -2024-10-28 09:00:00+00:00,0.3858571428571399 -2024-10-28 10:00:00+00:00,0.40714285714285225 -2024-10-28 11:00:00+00:00,0.3605714285714226 -2024-10-28 12:00:00+00:00,0.3434285714285648 -2024-10-28 13:00:00+00:00,0.3374285714285646 -2024-10-28 14:00:00+00:00,0.3094999999999938 -2024-10-28 15:00:00+00:00,0.3066428571428515 -2024-10-28 16:00:00+00:00,0.2937857142857102 -2024-10-28 17:00:00+00:00,0.2866428571428535 -2024-10-28 18:00:00+00:00,0.27714285714285075 -2024-10-28 19:00:00+00:00,0.2639999999999958 -2024-10-28 20:00:00+00:00,0.24742857142856728 -2024-10-28 21:00:00+00:00,0.22557142857142562 -2024-10-28 22:00:00+00:00,0.214499999999999 -2024-10-28 23:00:00+00:00,0.20742857142856913 -2024-10-29 00:00:00+00:00,0.19857142857142662 -2024-10-29 01:00:00+00:00,0.19871428571428446 -2024-10-29 02:00:00+00:00,0.19042857142856917 -2024-10-29 03:00:00+00:00,0.1925714285714264 -2024-10-29 04:00:00+00:00,0.1821428571428559 -2024-10-29 05:00:00+00:00,0.16807142857142715 -2024-10-29 06:00:00+00:00,0.17457142857142774 -2024-10-29 07:00:00+00:00,0.18699999999999964 -2024-10-29 08:00:00+00:00,0.19764285714285887 -2024-10-29 09:00:00+00:00,0.20100000000000154 -2024-10-29 10:00:00+00:00,0.20628571428571668 -2024-10-29 11:00:00+00:00,0.2269999999999998 -2024-10-29 12:00:00+00:00,0.23428571428571235 -2024-10-29 13:00:00+00:00,0.23421428571428343 -2024-10-29 14:00:00+00:00,0.2587857142857136 -2024-10-29 15:00:00+00:00,0.26671428571428635 -2024-10-29 16:00:00+00:00,0.2684285714285721 -2024-10-29 17:00:00+00:00,0.27357142857142946 -2024-10-29 18:00:00+00:00,0.2735000000000006 -2024-10-29 19:00:00+00:00,0.26864285714285685 -2024-10-29 20:00:00+00:00,0.25928571428571195 -2024-10-29 21:00:00+00:00,0.24399999999999775 -2024-10-29 22:00:00+00:00,0.23642857142856752 -2024-10-29 23:00:00+00:00,0.2421428571428521 -2024-10-30 00:00:00+00:00,0.24671428571428017 -2024-10-30 01:00:00+00:00,0.23614285714285188 -2024-10-30 02:00:00+00:00,0.2382857142857091 -2024-10-30 03:00:00+00:00,0.23307142857142488 -2024-10-30 04:00:00+00:00,0.19642857142856535 -2024-10-30 05:00:00+00:00,0.18185714285713622 -2024-10-30 06:00:00+00:00,0.18485714285713634 -2024-10-30 07:00:00+00:00,0.1728571428571379 -2024-10-30 08:00:00+00:00,0.20028571428570835 -2024-10-30 09:00:00+00:00,0.2162857142857096 -2024-10-30 10:00:00+00:00,0.22442857142856706 -2024-10-30 11:00:00+00:00,0.23878571428570947 -2024-10-30 12:00:00+00:00,0.26164285714285185 -2024-10-30 13:00:00+00:00,0.2881428571428525 -2024-10-30 14:00:00+00:00,0.3015714285714231 -2024-10-30 15:00:00+00:00,0.3035714285714245 -2024-10-30 16:00:00+00:00,0.3017857142857118 -2024-10-30 17:00:00+00:00,0.30635714285713994 -2024-10-30 18:00:00+00:00,0.3004285714285686 -2024-10-30 19:00:00+00:00,0.3015714285714251 -2024-10-30 20:00:00+00:00,0.2937857142857102 -2024-10-30 21:00:00+00:00,0.2936428571428524 -2024-10-30 22:00:00+00:00,0.2606428571428531 -2024-10-30 23:00:00+00:00,0.24628571428570872 -2024-10-31 00:00:00+00:00,0.26049999999999535 -2024-10-31 01:00:00+00:00,0.2532142857142808 -2024-10-31 02:00:00+00:00,0.24907142857142414 -2024-10-31 03:00:00+00:00,0.24192857142856536 -2024-10-31 04:00:00+00:00,0.23014285714285165 -2024-10-31 05:00:00+00:00,0.23164285714285068 -2024-10-31 06:00:00+00:00,0.2812857142857053 -2024-10-31 07:00:00+00:00,0.30657142857142056 -2024-10-31 08:00:00+00:00,0.3368571428571353 -2024-10-31 09:00:00+00:00,0.3422857142857083 -2024-10-31 10:00:00+00:00,0.353357142857139 -2024-10-31 11:00:00+00:00,0.3721428571428516 -2024-10-31 12:00:00+00:00,0.3954999999999923 -2024-10-31 13:00:00+00:00,0.4153571428571366 -2024-10-31 14:00:00+00:00,0.4265714285714231 -2024-10-31 15:00:00+00:00,0.45985714285713797 -2024-10-31 16:00:00+00:00,0.4478571428571395 -2024-10-31 17:00:00+00:00,0.438285714285714 -2024-10-31 18:00:00+00:00,0.444428571428572 -2024-10-31 19:00:00+00:00,0.44314285714285767 -2024-10-31 20:00:00+00:00,0.391214285714288 -2024-10-31 21:00:00+00:00,0.3575000000000017 -2024-10-31 22:00:00+00:00,0.32892857142857473 -2024-10-31 23:00:00+00:00,0.32971428571428874 -2024-11-01 00:00:00+00:00,0.32792857142857407 -2024-11-01 01:00:00+00:00,0.3271428571428621 -2024-11-01 02:00:00+00:00,0.31414285714286294 -2024-11-01 03:00:00+00:00,0.29614285714286226 -2024-11-01 04:00:00+00:00,0.26357142857143245 -2024-11-01 05:00:00+00:00,0.23585714285714637 -2024-11-01 06:00:00+00:00,0.2324285714285728 -2024-11-01 07:00:00+00:00,0.2354285714285729 -2024-11-01 08:00:00+00:00,0.2229285714285721 -2024-11-01 09:00:00+00:00,0.22557142857142967 -2024-11-01 10:00:00+00:00,0.22514285714285823 -2024-11-01 11:00:00+00:00,0.23607142857142907 -2024-11-01 12:00:00+00:00,0.301714285714285 -2024-11-01 13:00:00+00:00,0.31878571428571384 -2024-11-01 14:00:00+00:00,0.35085714285714126 -2024-11-01 15:00:00+00:00,0.3435714285714267 -2024-11-01 16:00:00+00:00,0.3414999999999984 -2024-11-01 17:00:00+00:00,0.3432857142857131 -2024-11-01 18:00:00+00:00,0.34221428571428547 -2024-11-01 19:00:00+00:00,0.33085714285714324 -2024-11-01 20:00:00+00:00,0.32492857142857395 -2024-11-03 22:00:00+00:00,0.32842857142857235 -2024-11-03 23:00:00+00:00,0.33785714285714413 -2024-11-04 00:00:00+00:00,0.3389285714285738 -2024-11-04 01:00:00+00:00,0.35350000000000087 -2024-11-04 02:00:00+00:00,0.35214285714285765 -2024-11-04 03:00:00+00:00,0.2933571428571428 -2024-11-04 04:00:00+00:00,0.2684285714285701 -2024-11-04 05:00:00+00:00,0.2259999999999991 -2024-11-04 06:00:00+00:00,0.23199999999999932 -2024-11-04 07:00:00+00:00,0.23042857142856935 -2024-11-04 08:00:00+00:00,0.23407142857142763 -2024-11-04 09:00:00+00:00,0.25099999999999867 -2024-11-04 10:00:00+00:00,0.26342857142857057 -2024-11-04 11:00:00+00:00,0.27285714285714235 -2024-11-04 12:00:00+00:00,0.2626428571428566 -2024-11-04 13:00:00+00:00,0.2652142857142853 -2024-11-04 14:00:00+00:00,0.2692142857142841 -2024-11-04 15:00:00+00:00,0.2710000000000008 -2024-11-04 16:00:00+00:00,0.2735000000000006 -2024-11-04 17:00:00+00:00,0.2737857142857162 -2024-11-04 18:00:00+00:00,0.2767142857142874 -2024-11-04 19:00:00+00:00,0.27400000000000296 -2024-11-04 20:00:00+00:00,0.25421428571428756 -2024-11-04 21:00:00+00:00,0.24514285714286035 -2024-11-04 22:00:00+00:00,0.22978571428571723 -2024-11-04 23:00:00+00:00,0.21821428571428822 -2024-11-05 00:00:00+00:00,0.22035714285714544 -2024-11-05 01:00:00+00:00,0.2161428571428599 -2024-11-05 02:00:00+00:00,0.20535714285714488 -2024-11-05 03:00:00+00:00,0.19485714285714348 -2024-11-05 04:00:00+00:00,0.17835714285714385 -2024-11-05 05:00:00+00:00,0.16278571428571403 -2024-11-05 06:00:00+00:00,0.15942857142857342 -2024-11-05 07:00:00+00:00,0.15700000000000053 -2024-11-05 08:00:00+00:00,0.1572857142857162 -2024-11-05 09:00:00+00:00,0.16071428571428775 -2024-11-05 10:00:00+00:00,0.16457142857143076 -2024-11-05 11:00:00+00:00,0.16850000000000268 -2024-11-05 12:00:00+00:00,0.1835714285714301 -2024-11-05 13:00:00+00:00,0.19628571428571767 -2024-11-05 14:00:00+00:00,0.20028571428571645 -2024-11-05 15:00:00+00:00,0.21550000000000175 -2024-11-05 16:00:00+00:00,0.22007142857143183 -2024-11-05 17:00:00+00:00,0.23257142857143265 -2024-11-05 18:00:00+00:00,0.24821428571428936 -2024-11-05 19:00:00+00:00,0.2556428571428618 -2024-11-05 20:00:00+00:00,0.25378571428571817 -2024-11-05 21:00:00+00:00,0.2509285714285759 -2024-11-05 22:00:00+00:00,0.2455714285714318 -2024-11-05 23:00:00+00:00,0.2710714285714297 -2024-11-06 00:00:00+00:00,0.37900000000000084 -2024-11-06 01:00:00+00:00,0.40471428571428547 -2024-11-06 02:00:00+00:00,0.4750714285714293 -2024-11-06 03:00:00+00:00,0.5026428571428576 -2024-11-06 04:00:00+00:00,0.5243571428571434 -2024-11-06 05:00:00+00:00,0.5389999999999995 -2024-11-06 06:00:00+00:00,0.5767857142857115 -2024-11-06 07:00:00+00:00,0.582499999999998 -2024-11-06 08:00:00+00:00,0.582499999999998 -2024-11-06 09:00:00+00:00,0.5782142857142816 -2024-11-06 10:00:00+00:00,0.5889999999999945 -2024-11-06 11:00:00+00:00,0.600999999999995 -2024-11-06 12:00:00+00:00,0.615642857142851 -2024-11-06 13:00:00+00:00,0.6061428571428523 -2024-11-06 14:00:00+00:00,0.5081428571428533 -2024-11-06 15:00:00+00:00,0.5013571428571392 -2024-11-06 16:00:00+00:00,0.44578571428571123 -2024-11-06 17:00:00+00:00,0.40849999999999553 -2024-11-06 18:00:00+00:00,0.38671428571428074 -2024-11-06 19:00:00+00:00,0.3538571428571394 -2024-11-06 20:00:00+00:00,0.3142142857142837 -2024-11-06 21:00:00+00:00,0.2897142857142825 -2024-11-06 22:00:00+00:00,0.2714999999999971 -2024-11-06 23:00:00+00:00,0.27842857142856914 -2024-11-07 00:00:00+00:00,0.29135714285714137 -2024-11-07 01:00:00+00:00,0.28999999999999815 -2024-11-07 02:00:00+00:00,0.27957142857142764 -2024-11-07 03:00:00+00:00,0.27014285714285585 -2024-11-07 04:00:00+00:00,0.28235714285714103 -2024-11-07 05:00:00+00:00,0.2761428571428561 -2024-11-07 06:00:00+00:00,0.26228571428571207 -2024-11-07 07:00:00+00:00,0.27171428571428385 -2024-11-07 08:00:00+00:00,0.2654999999999989 -2024-11-07 09:00:00+00:00,0.2694285714285688 -2024-11-07 10:00:00+00:00,0.26907142857142624 -2024-11-07 11:00:00+00:00,0.2699285714285712 -2024-11-07 12:00:00+00:00,0.2907142857142852 -2024-11-07 13:00:00+00:00,0.2912857142857145 -2024-11-07 14:00:00+00:00,0.2903571428571427 -2024-11-07 15:00:00+00:00,0.300142857142857 -2024-11-07 16:00:00+00:00,0.3075714285714294 -2024-11-07 17:00:00+00:00,0.3072142857142869 -2024-11-07 18:00:00+00:00,0.2873571428571446 -2024-11-07 19:00:00+00:00,0.30907142857142844 -2024-11-07 20:00:00+00:00,0.32264285714285684 -2024-11-07 21:00:00+00:00,0.30878571428571483 -2024-11-07 22:00:00+00:00,0.294785714285715 -2024-11-07 23:00:00+00:00,0.29707142857143004 -2024-11-08 00:00:00+00:00,0.304785714285714 -2024-11-08 01:00:00+00:00,0.31928571428571423 -2024-11-08 02:00:00+00:00,0.3092142857142863 -2024-11-08 03:00:00+00:00,0.3135000000000007 -2024-11-08 04:00:00+00:00,0.30035714285714377 -2024-11-08 05:00:00+00:00,0.28407142857143086 -2024-11-08 06:00:00+00:00,0.28321428571428797 -2024-11-08 07:00:00+00:00,0.2862142857142881 -2024-11-08 08:00:00+00:00,0.3050000000000007 -2024-11-08 09:00:00+00:00,0.27607142857143124 -2024-11-08 10:00:00+00:00,0.2617857142857178 -2024-11-08 11:00:00+00:00,0.2720714285714304 -2024-11-08 12:00:00+00:00,0.28135714285714436 -2024-11-08 13:00:00+00:00,0.2972142857142878 -2024-11-08 14:00:00+00:00,0.30114285714286176 -2024-11-08 15:00:00+00:00,0.30771428571428927 -2024-11-08 16:00:00+00:00,0.3137142857142895 -2024-11-08 17:00:00+00:00,0.3023571428571472 -2024-11-08 18:00:00+00:00,0.30085714285714815 -2024-11-08 19:00:00+00:00,0.29585714285714665 -2024-11-08 20:00:00+00:00,0.2936428571428605 -2024-11-08 21:00:00+00:00,0.28935714285714403 -2024-11-10 22:00:00+00:00,0.2701428571428579 -2024-11-10 23:00:00+00:00,0.2749285714285707 -2024-11-11 00:00:00+00:00,0.2760714285714272 -2024-11-11 01:00:00+00:00,0.2679285714285718 -2024-11-11 02:00:00+00:00,0.27607142857142924 -2024-11-11 03:00:00+00:00,0.25214285714285517 -2024-11-11 04:00:00+00:00,0.24321428571428175 -2024-11-11 05:00:00+00:00,0.22828571428571007 -2024-11-11 06:00:00+00:00,0.21999999999999684 -2024-11-11 07:00:00+00:00,0.22814285714285226 -2024-11-11 08:00:00+00:00,0.22635714285713757 -2024-11-11 09:00:00+00:00,0.23514285714285116 -2024-11-11 10:00:00+00:00,0.23049999999999418 -2024-11-11 11:00:00+00:00,0.2209999999999955 -2024-11-11 12:00:00+00:00,0.21792857142856853 -2024-11-11 13:00:00+00:00,0.21592857142857116 -2024-11-11 14:00:00+00:00,0.2156428571428555 -2024-11-11 15:00:00+00:00,0.21228571428571286 -2024-11-11 16:00:00+00:00,0.20064285714285493 -2024-11-11 17:00:00+00:00,0.19942857142857154 -2024-11-11 18:00:00+00:00,0.19457142857142987 -2024-11-11 19:00:00+00:00,0.1865000000000013 -2024-11-11 20:00:00+00:00,0.18242857142857158 -2024-11-11 21:00:00+00:00,0.16478571428571545 -2024-11-11 22:00:00+00:00,0.1499285714285707 -2024-11-11 23:00:00+00:00,0.15300000000000175 -2024-11-12 00:00:00+00:00,0.16235714285714462 -2024-11-12 01:00:00+00:00,0.17171428571428748 -2024-11-12 02:00:00+00:00,0.18657142857143022 -2024-11-12 03:00:00+00:00,0.18685714285714386 -2024-11-12 04:00:00+00:00,0.18000000000000074 -2024-11-12 05:00:00+00:00,0.1844999999999999 -2024-11-12 06:00:00+00:00,0.19028571428571336 -2024-11-12 07:00:00+00:00,0.19392857142856965 -2024-11-12 08:00:00+00:00,0.20171428571428254 -2024-11-12 09:00:00+00:00,0.21542857142856878 -2024-11-12 10:00:00+00:00,0.21585714285713817 -2024-11-12 11:00:00+00:00,0.22314285714285273 -2024-11-12 12:00:00+00:00,0.23421428571428343 -2024-11-12 13:00:00+00:00,0.23721428571428152 -2024-11-12 14:00:00+00:00,0.2284285714285679 -2024-11-12 15:00:00+00:00,0.2282142857142832 -2024-11-12 16:00:00+00:00,0.22735714285714032 -2024-11-12 17:00:00+00:00,0.2254999999999967 -2024-11-12 18:00:00+00:00,0.22299999999999898 -2024-11-12 19:00:00+00:00,0.21492857142856842 -2024-11-12 20:00:00+00:00,0.21614285714285586 -2024-11-12 21:00:00+00:00,0.21414285714285647 -2024-11-12 22:00:00+00:00,0.20549999999999866 -2024-11-12 23:00:00+00:00,0.19714285714285648 -2024-11-13 00:00:00+00:00,0.2067142857142861 -2024-11-13 01:00:00+00:00,0.21664285714285622 -2024-11-13 02:00:00+00:00,0.222214285714285 -2024-11-13 03:00:00+00:00,0.2125714285714285 -2024-11-13 04:00:00+00:00,0.20807142857142732 -2024-11-13 05:00:00+00:00,0.20378571428571288 -2024-11-13 06:00:00+00:00,0.2004285714285682 -2024-11-13 07:00:00+00:00,0.19907142857142698 -2024-11-13 08:00:00+00:00,0.20871428571428347 -2024-11-13 09:00:00+00:00,0.22135714285714211 -2024-11-13 10:00:00+00:00,0.2135000000000003 -2024-11-13 11:00:00+00:00,0.21864285714285764 -2024-11-13 12:00:00+00:00,0.22528571428571606 -2024-11-13 13:00:00+00:00,0.26064285714285923 -2024-11-13 14:00:00+00:00,0.2796428571428586 -2024-11-13 15:00:00+00:00,0.2792857142857161 -2024-11-13 16:00:00+00:00,0.28292857142857236 -2024-11-13 17:00:00+00:00,0.2833571428571438 -2024-11-13 18:00:00+00:00,0.28857142857143003 -2024-11-13 19:00:00+00:00,0.29114285714285665 -2024-11-13 20:00:00+00:00,0.2791428571428603 -2024-11-13 21:00:00+00:00,0.27692857142857413 -2024-11-13 22:00:00+00:00,0.26564285714285873 -2024-11-13 23:00:00+00:00,0.25564285714285767 -2024-11-14 00:00:00+00:00,0.2727142857142866 -2024-11-14 01:00:00+00:00,0.2712857142857144 -2024-11-14 02:00:00+00:00,0.272357142857142 -2024-11-14 03:00:00+00:00,0.23949999999999655 -2024-11-14 04:00:00+00:00,0.21442857142857008 -2024-11-14 05:00:00+00:00,0.20278571428571215 -2024-11-14 06:00:00+00:00,0.19607142857142687 -2024-11-14 07:00:00+00:00,0.1994285714285695 -2024-11-14 08:00:00+00:00,0.19971428571428515 -2024-11-14 09:00:00+00:00,0.20092857142857262 -2024-11-14 10:00:00+00:00,0.2077142857142848 -2024-11-14 11:00:00+00:00,0.21371428571428502 -2024-11-14 12:00:00+00:00,0.21785714285714367 -2024-11-14 13:00:00+00:00,0.2381428571428594 -2024-11-14 14:00:00+00:00,0.24857142857142783 -2024-11-14 15:00:00+00:00,0.26371428571428623 -2024-11-14 16:00:00+00:00,0.2705714285714314 -2024-11-14 17:00:00+00:00,0.2827857142857186 -2024-11-14 18:00:00+00:00,0.28678571428571736 -2024-11-14 19:00:00+00:00,0.2847142857142911 -2024-11-14 20:00:00+00:00,0.30671428571429055 -2024-11-14 21:00:00+00:00,0.2975714285714344 -2024-11-14 22:00:00+00:00,0.2877142857142912 -2024-11-14 23:00:00+00:00,0.2920714285714346 -2024-11-15 00:00:00+00:00,0.3008571428571502 -2024-11-15 01:00:00+00:00,0.3057142857142919 -2024-11-15 02:00:00+00:00,0.3100000000000043 -2024-11-15 03:00:00+00:00,0.2974285714285746 -2024-11-15 04:00:00+00:00,0.2783571428571463 -2024-11-15 05:00:00+00:00,0.25692857142857406 -2024-11-15 06:00:00+00:00,0.26721428571428874 -2024-11-15 07:00:00+00:00,0.2705714285714314 -2024-11-15 08:00:00+00:00,0.28064285714286136 -2024-11-15 09:00:00+00:00,0.3031428571428612 -2024-11-15 10:00:00+00:00,0.2822142857142893 -2024-11-15 11:00:00+00:00,0.2908571428571471 -2024-11-15 12:00:00+00:00,0.3035714285714306 -2024-11-15 13:00:00+00:00,0.32335714285714595 -2024-11-15 14:00:00+00:00,0.34828571428571664 -2024-11-15 15:00:00+00:00,0.38000000000000356 -2024-11-15 16:00:00+00:00,0.3982857142857199 -2024-11-15 17:00:00+00:00,0.4115000000000058 -2024-11-15 18:00:00+00:00,0.4257142857142924 -2024-11-15 19:00:00+00:00,0.44757142857143606 -2024-11-15 20:00:00+00:00,0.43185714285715043 -2024-11-15 21:00:00+00:00,0.416000000000007 -2024-11-17 22:00:00+00:00,0.4069285714285777 -2024-11-17 23:00:00+00:00,0.3992142857142917 -2024-11-18 00:00:00+00:00,0.44078571428572183 -2024-11-18 01:00:00+00:00,0.4976428571428621 -2024-11-18 02:00:00+00:00,0.5032857142857198 -2024-11-18 03:00:00+00:00,0.4832142857142888 -2024-11-18 04:00:00+00:00,0.4559285714285742 -2024-11-18 05:00:00+00:00,0.4264285714285734 -2024-11-18 06:00:00+00:00,0.4152857142857158 -2024-11-18 07:00:00+00:00,0.4056428571428593 -2024-11-18 08:00:00+00:00,0.40607142857143075 -2024-11-18 09:00:00+00:00,0.405071428571428 -2024-11-18 10:00:00+00:00,0.4071428571428543 -2024-11-18 11:00:00+00:00,0.405857142857142 -2024-11-18 12:00:00+00:00,0.4048571428571413 -2024-11-18 13:00:00+00:00,0.41442857142857087 -2024-11-18 14:00:00+00:00,0.38428571428571195 -2024-11-18 15:00:00+00:00,0.3307857142857143 -2024-11-18 16:00:00+00:00,0.3266428571428577 -2024-11-18 17:00:00+00:00,0.32228571428571634 -2024-11-18 18:00:00+00:00,0.31650000000000283 -2024-11-18 19:00:00+00:00,0.30485714285714494 -2024-11-18 20:00:00+00:00,0.29178571428571487 -2024-11-18 21:00:00+00:00,0.27942857142857186 -2024-11-18 22:00:00+00:00,0.2497857142857153 -2024-11-18 23:00:00+00:00,0.2362142857142889 -2024-11-19 00:00:00+00:00,0.23935714285714685 -2024-11-19 01:00:00+00:00,0.25278571428571744 -2024-11-19 02:00:00+00:00,0.2547857142857189 -2024-11-19 03:00:00+00:00,0.23871428571428868 -2024-11-19 04:00:00+00:00,0.23578571428571746 -2024-11-19 05:00:00+00:00,0.23014285714285773 -2024-11-19 06:00:00+00:00,0.22742857142857126 -2024-11-19 07:00:00+00:00,0.22742857142857126 -2024-11-19 08:00:00+00:00,0.30578571428571266 -2024-11-19 09:00:00+00:00,0.34514285714285464 -2024-11-19 10:00:00+00:00,0.3622857142857145 -2024-11-19 11:00:00+00:00,0.3863571428571423 -2024-11-19 12:00:00+00:00,0.4012857142857119 -2024-11-19 13:00:00+00:00,0.42807142857142616 -2024-11-19 14:00:00+00:00,0.45464285714285574 -2024-11-19 15:00:00+00:00,0.45649999999999935 -2024-11-19 16:00:00+00:00,0.4779285714285696 -2024-11-19 17:00:00+00:00,0.4946428571428539 -2024-11-19 18:00:00+00:00,0.48449999999999704 -2024-11-19 19:00:00+00:00,0.4787857142857125 -2024-11-19 20:00:00+00:00,0.46871428571428453 -2024-11-19 21:00:00+00:00,0.46121428571428325 -2024-11-19 22:00:00+00:00,0.37735714285714195 -2024-11-19 23:00:00+00:00,0.3414285714285715 -2024-11-20 00:00:00+00:00,0.338714285714285 -2024-11-20 01:00:00+00:00,0.32750000000000057 -2024-11-20 02:00:00+00:00,0.3230000000000014 -2024-11-20 03:00:00+00:00,0.2917142857142859 -2024-11-20 04:00:00+00:00,0.2563571428571428 -2024-11-20 05:00:00+00:00,0.24285714285714124 -2024-11-20 06:00:00+00:00,0.22314285714285478 -2024-11-20 07:00:00+00:00,0.21278571428571322 -2024-11-20 08:00:00+00:00,0.2091428571428549 -2024-11-20 09:00:00+00:00,0.21692857142856983 -2024-11-20 10:00:00+00:00,0.22278571428571223 -2024-11-20 11:00:00+00:00,0.22621428571428379 -2024-11-20 12:00:00+00:00,0.232214285714282 -2024-11-20 13:00:00+00:00,0.22707142857142465 -2024-11-20 14:00:00+00:00,0.23414285714285452 -2024-11-20 15:00:00+00:00,0.2522142857142841 -2024-11-20 16:00:00+00:00,0.26628571428571285 -2024-11-20 17:00:00+00:00,0.2729285714285713 -2024-11-20 18:00:00+00:00,0.276214285714285 -2024-11-20 19:00:00+00:00,0.27171428571428385 -2024-11-20 20:00:00+00:00,0.2610714285714266 -2024-11-20 21:00:00+00:00,0.24935714285713978 -2024-11-20 22:00:00+00:00,0.2443571428571423 -2024-11-20 23:00:00+00:00,0.23621428571428485 -2024-11-21 00:00:00+00:00,0.2500714285714289 -2024-11-21 01:00:00+00:00,0.25421428571428756 -2024-11-21 02:00:00+00:00,0.254642857142859 -2024-11-21 03:00:00+00:00,0.25364285714286033 -2024-11-21 04:00:00+00:00,0.2390714285714312 -2024-11-21 05:00:00+00:00,0.21650000000000041 -2024-11-21 06:00:00+00:00,0.23414285714285857 -2024-11-21 07:00:00+00:00,0.2469999999999999 -2024-11-21 08:00:00+00:00,0.27485714285714175 -2024-11-21 09:00:00+00:00,0.2912142857142856 -2024-11-21 10:00:00+00:00,0.2972857142857147 -2024-11-21 11:00:00+00:00,0.30400000000000205 -2024-11-21 12:00:00+00:00,0.32671428571428657 -2024-11-21 13:00:00+00:00,0.35907142857142965 -2024-11-21 14:00:00+00:00,0.3739285714285724 -2024-11-21 15:00:00+00:00,0.39064285714285873 -2024-11-21 16:00:00+00:00,0.40135714285714486 -2024-11-21 17:00:00+00:00,0.41164285714285753 -2024-11-21 18:00:00+00:00,0.41307142857142765 -2024-11-21 19:00:00+00:00,0.408214285714286 -2024-11-21 20:00:00+00:00,0.37342857142857 -2024-11-21 21:00:00+00:00,0.35064285714285653 -2024-11-21 22:00:00+00:00,0.3108571428571431 -2024-11-21 23:00:00+00:00,0.31571428571428684 -2024-11-22 00:00:00+00:00,0.3310714285714279 -2024-11-22 01:00:00+00:00,0.326357142857142 -2024-11-22 02:00:00+00:00,0.3072857142857138 -2024-11-22 03:00:00+00:00,0.286285714285715 -2024-11-22 04:00:00+00:00,0.2575714285714282 -2024-11-22 05:00:00+00:00,0.24778571428571183 -2024-11-22 06:00:00+00:00,0.24157142857142486 -2024-11-22 07:00:00+00:00,0.24028571428571258 -2024-11-22 08:00:00+00:00,0.2547857142857128 -2024-11-22 09:00:00+00:00,0.2837857142857132 -2024-11-22 10:00:00+00:00,0.2954285714285711 -2024-11-22 11:00:00+00:00,0.3006428571428574 -2024-11-22 12:00:00+00:00,0.3134285714285718 -2024-11-22 13:00:00+00:00,0.30928571428571316 -2024-11-22 14:00:00+00:00,0.3309285714285721 -2024-11-22 15:00:00+00:00,0.33778571428571524 -2024-11-22 16:00:00+00:00,0.3420000000000008 -2024-11-22 17:00:00+00:00,0.33178571428571296 -2024-11-22 18:00:00+00:00,0.32592857142857057 -2024-11-22 19:00:00+00:00,0.3149999999999998 -2024-11-22 20:00:00+00:00,0.3057857142857147 -2024-11-22 21:00:00+00:00,0.29414285714285676 -2024-11-24 22:00:00+00:00,0.28635714285714187 -2024-11-24 23:00:00+00:00,0.2697857142857113 -2024-11-25 00:00:00+00:00,0.2765714285714255 -2024-11-25 01:00:00+00:00,0.3049285714285678 -2024-11-25 02:00:00+00:00,0.30499999999999666 -2024-11-25 03:00:00+00:00,0.3017857142857118 -2024-11-25 04:00:00+00:00,0.2642142857142825 -2024-11-25 05:00:00+00:00,0.26364285714285324 -2024-11-25 06:00:00+00:00,0.2700714285714249 -2024-11-25 07:00:00+00:00,0.2879999999999967 -2024-11-25 08:00:00+00:00,0.2982142857142825 -2024-11-25 09:00:00+00:00,0.3118571428571398 -2024-11-25 10:00:00+00:00,0.31135714285714144 -2024-11-25 11:00:00+00:00,0.31742857142856856 -2024-11-25 12:00:00+00:00,0.3225714285714259 -2024-11-25 13:00:00+00:00,0.3300714285714272 -2024-11-25 14:00:00+00:00,0.330214285714285 -2024-11-25 15:00:00+00:00,0.34171428571428514 -2024-11-25 16:00:00+00:00,0.3404999999999977 -2024-11-25 17:00:00+00:00,0.3283571428571414 -2024-11-25 18:00:00+00:00,0.32921428571428635 -2024-11-25 19:00:00+00:00,0.3220000000000007 -2024-11-25 20:00:00+00:00,0.3077857142857141 -2024-11-25 21:00:00+00:00,0.28800000000000076 -2024-11-25 22:00:00+00:00,0.28471428571428703 -2024-11-25 23:00:00+00:00,0.30357142857142855 -2024-11-26 00:00:00+00:00,0.3280714285714278 -2024-11-26 01:00:00+00:00,0.3337857142857144 -2024-11-26 02:00:00+00:00,0.32592857142857057 -2024-11-26 03:00:00+00:00,0.31871428571428495 -2024-11-26 04:00:00+00:00,0.30778571428571205 -2024-11-26 05:00:00+00:00,0.27557142857142686 -2024-11-26 06:00:00+00:00,0.29135714285714137 -2024-11-26 07:00:00+00:00,0.2934999999999986 -2024-11-26 08:00:00+00:00,0.2952857142857133 -2024-11-26 09:00:00+00:00,0.2975714285714283 -2024-11-26 10:00:00+00:00,0.31007142857142916 -2024-11-26 11:00:00+00:00,0.31199999999999967 -2024-11-26 12:00:00+00:00,0.35078571428571437 -2024-11-26 13:00:00+00:00,0.34271428571428586 -2024-11-26 14:00:00+00:00,0.3285714285714282 -2024-11-26 15:00:00+00:00,0.3338571428571413 -2024-11-26 16:00:00+00:00,0.3300714285714272 -2024-11-26 17:00:00+00:00,0.3243571428571426 -2024-11-26 18:00:00+00:00,0.3227857142857147 -2024-11-26 19:00:00+00:00,0.32535714285714334 -2024-11-26 20:00:00+00:00,0.3008571428571441 -2024-11-26 21:00:00+00:00,0.29764285714285926 -2024-11-26 22:00:00+00:00,0.2842857142857156 -2024-11-26 23:00:00+00:00,0.28878571428571476 -2024-11-27 00:00:00+00:00,0.2875000000000004 -2024-11-27 01:00:00+00:00,0.3141428571428569 -2024-11-27 02:00:00+00:00,0.27757142857142825 -2024-11-27 03:00:00+00:00,0.2616428571428579 -2024-11-27 04:00:00+00:00,0.256928571428572 -2024-11-27 05:00:00+00:00,0.24964285714285747 -2024-11-27 06:00:00+00:00,0.25864285714285984 -2024-11-27 07:00:00+00:00,0.26307142857142807 -2024-11-27 08:00:00+00:00,0.2848571428571428 -2024-11-27 09:00:00+00:00,0.29957142857142777 -2024-11-27 10:00:00+00:00,0.3105714285714275 -2024-11-27 11:00:00+00:00,0.3179999999999958 -2024-11-27 12:00:00+00:00,0.33271428571428074 -2024-11-27 13:00:00+00:00,0.33542857142856725 -2024-11-27 14:00:00+00:00,0.3522857142857094 -2024-11-27 15:00:00+00:00,0.37692857142856845 -2024-11-27 16:00:00+00:00,0.42642857142856727 -2024-11-27 17:00:00+00:00,0.43078571428571066 -2024-11-27 18:00:00+00:00,0.4301428571428545 -2024-11-27 19:00:00+00:00,0.4272142857142853 -2024-11-27 20:00:00+00:00,0.41085714285714153 -2024-11-27 21:00:00+00:00,0.395071428571429 -2024-11-27 22:00:00+00:00,0.3736428571428588 -2024-11-27 23:00:00+00:00,0.3674285714285738 -2024-11-28 00:00:00+00:00,0.3787142857142892 -2024-11-28 01:00:00+00:00,0.385071428571434 -2024-11-28 02:00:00+00:00,0.3845000000000048 -2024-11-28 03:00:00+00:00,0.38185714285714717 -2024-11-28 04:00:00+00:00,0.3554285714285775 -2024-11-28 05:00:00+00:00,0.3062142857142902 -2024-11-28 06:00:00+00:00,0.2611428571428616 -2024-11-28 07:00:00+00:00,0.2542857142857165 -2024-11-28 08:00:00+00:00,0.25564285714285767 -2024-11-28 09:00:00+00:00,0.252285714285713 -2024-11-28 10:00:00+00:00,0.2482142857142853 -2024-11-28 11:00:00+00:00,0.25042857142857144 -2024-11-28 12:00:00+00:00,0.24871428571428567 -2024-11-28 13:00:00+00:00,0.2317142857142857 -2024-11-28 14:00:00+00:00,0.21007142857142874 -2024-11-28 15:00:00+00:00,0.19778571428571468 -2024-11-28 16:00:00+00:00,0.18557142857142953 -2024-11-28 17:00:00+00:00,0.17035714285714423 -2024-11-28 18:00:00+00:00,0.16850000000000062 -2024-11-28 19:00:00+00:00,0.16085714285714353 -2024-11-28 20:00:00+00:00,0.14550000000000246 -2024-11-28 21:00:00+00:00,0.13721428571428923 -2024-11-28 22:00:00+00:00,0.12257142857143322 -2024-11-28 23:00:00+00:00,0.15107142857143327 -2024-11-29 00:00:00+00:00,0.19214285714286103 -2024-11-29 01:00:00+00:00,0.23728571428571854 -2024-11-29 02:00:00+00:00,0.2551428571428594 -2024-11-29 03:00:00+00:00,0.26278571428571645 -2024-11-29 04:00:00+00:00,0.2805714285714304 -2024-11-29 05:00:00+00:00,0.29314285714286015 -2024-11-29 06:00:00+00:00,0.3025714285714299 -2024-11-29 07:00:00+00:00,0.33064285714285646 -2024-11-29 08:00:00+00:00,0.34399999999999814 -2024-11-29 09:00:00+00:00,0.3656428571428551 -2024-11-29 10:00:00+00:00,0.3908571428571394 -2024-11-29 11:00:00+00:00,0.3995714285714241 -2024-11-29 12:00:00+00:00,0.416642857142853 -2024-11-29 13:00:00+00:00,0.39799999999999613 -2024-11-29 14:00:00+00:00,0.36928571428570933 -2024-11-29 15:00:00+00:00,0.3453571428571373 -2024-11-29 16:00:00+00:00,0.3399285714285684 -2024-11-29 17:00:00+00:00,0.3787142857142811 -2024-11-29 18:00:00+00:00,0.3677857142857083 -2024-11-29 19:00:00+00:00,0.3588571428571368 -2024-11-29 20:00:00+00:00,0.3510714285714239 -2024-11-29 21:00:00+00:00,0.32785714285714107 -2024-12-01 22:00:00+00:00,0.32428571428571373 -2024-12-01 23:00:00+00:00,0.3347142857142842 -2024-12-02 00:00:00+00:00,0.33899999999999864 -2024-12-02 01:00:00+00:00,0.3505714285714297 -2024-12-02 02:00:00+00:00,0.34714285714285814 -2024-12-02 03:00:00+00:00,0.3434285714285729 -2024-12-02 04:00:00+00:00,0.34085714285714425 -2024-12-02 05:00:00+00:00,0.3267857142857155 -2024-12-02 06:00:00+00:00,0.3335714285714297 -2024-12-02 07:00:00+00:00,0.3045000000000024 -2024-12-02 08:00:00+00:00,0.31028571428571794 -2024-12-02 09:00:00+00:00,0.3227142857142878 -2024-12-02 10:00:00+00:00,0.3297142857142867 -2024-12-02 11:00:00+00:00,0.330214285714285 -2024-12-02 12:00:00+00:00,0.3315714285714283 -2024-12-02 13:00:00+00:00,0.3162857142857141 -2024-12-02 14:00:00+00:00,0.30035714285714377 -2024-12-02 15:00:00+00:00,0.3084285714285703 -2024-12-02 16:00:00+00:00,0.35528571428571354 -2024-12-02 17:00:00+00:00,0.3674285714285698 -2024-12-02 18:00:00+00:00,0.3674285714285698 -2024-12-02 19:00:00+00:00,0.36442857142856966 -2024-12-02 20:00:00+00:00,0.36085714285713827 -2024-12-02 21:00:00+00:00,0.3359285714285676 -2024-12-02 22:00:00+00:00,0.3197857142857105 -2024-12-02 23:00:00+00:00,0.3153571428571403 -2024-12-03 00:00:00+00:00,0.3301428571428561 -2024-12-03 01:00:00+00:00,0.3454285714285703 -2024-12-03 02:00:00+00:00,0.3424285714285702 -2024-12-03 03:00:00+00:00,0.34107142857142697 -2024-12-03 04:00:00+00:00,0.33457142857142635 -2024-12-03 05:00:00+00:00,0.3150714285714266 -2024-12-03 06:00:00+00:00,0.2674999999999983 -2024-12-03 07:00:00+00:00,0.25649999999999856 -2024-12-03 08:00:00+00:00,0.264642857142856 -2024-12-03 09:00:00+00:00,0.2636428571428553 -2024-12-03 10:00:00+00:00,0.25571428571428456 -2024-12-03 11:00:00+00:00,0.27842857142857114 -2024-12-03 12:00:00+00:00,0.29271428571428465 -2024-12-03 13:00:00+00:00,0.33342857142856985 -2024-12-03 14:00:00+00:00,0.33335714285714096 -2024-12-03 15:00:00+00:00,0.3417142857142831 -2024-12-03 16:00:00+00:00,0.357999999999998 -2024-12-03 17:00:00+00:00,0.36764285714285655 -2024-12-03 18:00:00+00:00,0.3720714285714268 -2024-12-03 19:00:00+00:00,0.3955714285714273 -2024-12-03 20:00:00+00:00,0.38957142857142707 -2024-12-03 21:00:00+00:00,0.3818571428571431 -2024-12-03 22:00:00+00:00,0.3592857142857144 -2024-12-03 23:00:00+00:00,0.35514285714285776 -2024-12-04 00:00:00+00:00,0.361142857142858 -2024-12-04 01:00:00+00:00,0.35907142857142765 -2024-12-04 02:00:00+00:00,0.35828571428571365 -2024-12-04 03:00:00+00:00,0.3167142857142835 -2024-12-04 04:00:00+00:00,0.30657142857142666 -2024-12-04 05:00:00+00:00,0.2872142857142868 -2024-12-04 06:00:00+00:00,0.2779285714285708 -2024-12-04 07:00:00+00:00,0.28021428571428586 -2024-12-04 08:00:00+00:00,0.28107142857142875 -2024-12-04 09:00:00+00:00,0.26471428571428696 -2024-12-04 10:00:00+00:00,0.2760000000000003 -2024-12-04 11:00:00+00:00,0.2845714285714292 -2024-12-04 12:00:00+00:00,0.3075714285714294 -2024-12-04 13:00:00+00:00,0.3295714285714289 -2024-12-04 14:00:00+00:00,0.3243571428571426 -2024-12-04 15:00:00+00:00,0.3371428571428571 -2024-12-04 16:00:00+00:00,0.3462142857142863 -2024-12-04 17:00:00+00:00,0.34135714285714464 -2024-12-04 18:00:00+00:00,0.34850000000000136 -2024-12-04 19:00:00+00:00,0.3592857142857144 -2024-12-04 20:00:00+00:00,0.3539285714285723 -2024-12-04 21:00:00+00:00,0.3335714285714297 -2024-12-04 22:00:00+00:00,0.3255000000000012 -2024-12-04 23:00:00+00:00,0.3194999999999989 -2024-12-05 00:00:00+00:00,0.32478571428571407 -2024-12-05 01:00:00+00:00,0.3408571428571402 -2024-12-05 02:00:00+00:00,0.3395714285714279 -2024-12-05 03:00:00+00:00,0.319428571428572 -2024-12-05 04:00:00+00:00,0.31007142857142916 -2024-12-05 05:00:00+00:00,0.3127142857142867 -2024-12-05 06:00:00+00:00,0.304 -2024-12-05 07:00:00+00:00,0.3084285714285723 -2024-12-05 08:00:00+00:00,0.3202857142857149 -2024-12-05 09:00:00+00:00,0.30828571428571444 -2024-12-05 10:00:00+00:00,0.3102857142857139 -2024-12-05 11:00:00+00:00,0.311714285714284 -2024-12-05 12:00:00+00:00,0.3277142857142853 -2024-12-05 13:00:00+00:00,0.34450000000000053 -2024-12-05 14:00:00+00:00,0.34385714285714236 -2024-12-05 15:00:00+00:00,0.3318571428571439 -2024-12-05 16:00:00+00:00,0.324071428571429 -2024-12-05 17:00:00+00:00,0.32378571428571334 -2024-12-05 18:00:00+00:00,0.326357142857142 -2024-12-05 19:00:00+00:00,0.29935714285714304 -2024-12-05 20:00:00+00:00,0.2912857142857145 -2024-12-05 21:00:00+00:00,0.2744999999999972 -2024-12-05 22:00:00+00:00,0.2411428571428534 -2024-12-05 23:00:00+00:00,0.2389285714285673 -2024-12-06 00:00:00+00:00,0.2497857142857092 -2024-12-06 01:00:00+00:00,0.25028571428570956 -2024-12-06 02:00:00+00:00,0.24092857142856466 -2024-12-06 03:00:00+00:00,0.21657142857142123 -2024-12-06 04:00:00+00:00,0.20578571428570822 -2024-12-06 05:00:00+00:00,0.1962857142857075 -2024-12-06 06:00:00+00:00,0.19685714285713476 -2024-12-06 07:00:00+00:00,0.2115714285714217 -2024-12-06 08:00:00+00:00,0.21857142857142264 -2024-12-06 09:00:00+00:00,0.21921428571427878 -2024-12-06 10:00:00+00:00,0.22242857142856362 -2024-12-06 11:00:00+00:00,0.22714285714285154 -2024-12-06 12:00:00+00:00,0.24142857142856705 -2024-12-06 13:00:00+00:00,0.29585714285714054 -2024-12-06 14:00:00+00:00,0.3041428571428558 -2024-12-06 15:00:00+00:00,0.3188571428571428 -2024-12-06 16:00:00+00:00,0.33400000000000113 -2024-12-06 17:00:00+00:00,0.34050000000000175 -2024-12-06 18:00:00+00:00,0.33864285714285813 -2024-12-06 19:00:00+00:00,0.3363571428571431 -2024-12-06 20:00:00+00:00,0.3259999999999995 -2024-12-06 21:00:00+00:00,0.31128571428571256 -2024-12-08 22:00:00+00:00,0.2972857142857127 -2024-12-08 23:00:00+00:00,0.2934285714285697 -2024-12-09 00:00:00+00:00,0.2991428571428563 -2024-12-09 01:00:00+00:00,0.3103571428571407 -2024-12-09 02:00:00+00:00,0.2992857142857141 -2024-12-09 03:00:00+00:00,0.2434999999999994 -2024-12-09 04:00:00+00:00,0.21699999999999875 -2024-12-09 05:00:00+00:00,0.19721428571428337 -2024-12-09 06:00:00+00:00,0.18349999999999916 -2024-12-09 07:00:00+00:00,0.18285714285714302 -2024-12-09 08:00:00+00:00,0.18607142857142986 -2024-12-09 09:00:00+00:00,0.18457142857143083 -2024-12-09 10:00:00+00:00,0.18650000000000336 -2024-12-09 11:00:00+00:00,0.18442857142857502 -2024-12-09 12:00:00+00:00,0.2042142857142904 -2024-12-09 13:00:00+00:00,0.20550000000000473 -2024-12-09 14:00:00+00:00,0.203000000000007 -2024-12-09 15:00:00+00:00,0.20428571428572337 -2024-12-09 16:00:00+00:00,0.21457142857143602 -2024-12-09 17:00:00+00:00,0.21371428571429313 -2024-12-09 18:00:00+00:00,0.20985714285715013 -2024-12-09 19:00:00+00:00,0.20985714285715013 -2024-12-09 20:00:00+00:00,0.20164285714286376 -2024-12-09 21:00:00+00:00,0.19300000000000597 -2024-12-09 22:00:00+00:00,0.18628571428571863 -2024-12-09 23:00:00+00:00,0.1928571428571461 -2024-12-10 00:00:00+00:00,0.2025000000000026 -2024-12-10 01:00:00+00:00,0.21328571428571763 -2024-12-10 02:00:00+00:00,0.2037857142857149 -2024-12-10 03:00:00+00:00,0.20607142857142996 -2024-12-10 04:00:00+00:00,0.20214285714285601 -2024-12-10 05:00:00+00:00,0.2079999999999984 -2024-12-10 06:00:00+00:00,0.21471428571428572 -2024-12-10 07:00:00+00:00,0.23300000000000004 -2024-12-10 08:00:00+00:00,0.24571428571428758 -2024-12-10 09:00:00+00:00,0.254642857142859 -2024-12-10 10:00:00+00:00,0.2552142857142862 -2024-12-10 11:00:00+00:00,0.25792857142857073 -2024-12-10 12:00:00+00:00,0.2673571428571425 -2024-12-10 13:00:00+00:00,0.27278571428571546 -2024-12-10 14:00:00+00:00,0.2710000000000008 -2024-12-10 15:00:00+00:00,0.28200000000000053 -2024-12-10 16:00:00+00:00,0.2772857142857167 -2024-12-10 17:00:00+00:00,0.27171428571428585 -2024-12-10 18:00:00+00:00,0.27528571428571524 -2024-12-10 19:00:00+00:00,0.2545714285714301 -2024-12-10 20:00:00+00:00,0.23614285714285796 -2024-12-10 21:00:00+00:00,0.21371428571428705 -2024-12-10 22:00:00+00:00,0.19528571428571492 -2024-12-10 23:00:00+00:00,0.18885714285714325 -2024-12-11 00:00:00+00:00,0.19071428571428686 -2024-12-11 01:00:00+00:00,0.1889285714285742 -2024-12-11 02:00:00+00:00,0.19114285714286033 -2024-12-11 03:00:00+00:00,0.1850714285714312 -2024-12-11 04:00:00+00:00,0.17864285714286154 -2024-12-11 05:00:00+00:00,0.16507142857143314 -2024-12-11 06:00:00+00:00,0.16207142857143303 -2024-12-11 07:00:00+00:00,0.1769285714285778 -2024-12-11 08:00:00+00:00,0.17742857142857815 -2024-12-11 09:00:00+00:00,0.2926428571428638 -2024-12-11 10:00:00+00:00,0.30657142857143477 -2024-12-11 11:00:00+00:00,0.31435714285714766 -2024-12-11 12:00:00+00:00,0.32521428571428956 -2024-12-11 13:00:00+00:00,0.37135714285714777 -2024-12-11 14:00:00+00:00,0.388928571428577 -2024-12-11 15:00:00+00:00,0.41107142857143436 -2024-12-11 16:00:00+00:00,0.4135714285714341 -2024-12-11 17:00:00+00:00,0.413642857142861 -2024-12-11 18:00:00+00:00,0.4299285714285738 -2024-12-11 19:00:00+00:00,0.4269285714285737 -2024-12-11 20:00:00+00:00,0.4239285714285736 -2024-12-11 21:00:00+00:00,0.4073571428571451 -2024-12-11 22:00:00+00:00,0.395071428571431 -2024-12-11 23:00:00+00:00,0.2875000000000024 -2024-12-12 00:00:00+00:00,0.2828571428571434 -2024-12-12 01:00:00+00:00,0.2864999999999997 -2024-12-12 02:00:00+00:00,0.30007142857143015 -2024-12-12 03:00:00+00:00,0.256928571428572 -2024-12-12 04:00:00+00:00,0.242285714285714 -2024-12-12 05:00:00+00:00,0.24107142857142858 -2024-12-12 06:00:00+00:00,0.2411428571428575 -2024-12-12 07:00:00+00:00,0.24764285714285808 -2024-12-12 08:00:00+00:00,0.24185714285714255 -2024-12-12 09:00:00+00:00,0.2413571428571422 -2024-12-12 10:00:00+00:00,0.2566428571428564 -2024-12-12 11:00:00+00:00,0.25942857142856973 -2024-12-12 12:00:00+00:00,0.2713571428571413 -2024-12-12 13:00:00+00:00,0.2976428571428552 -2024-12-12 14:00:00+00:00,0.3177857142857131 -2024-12-12 15:00:00+00:00,0.31935714285714106 -2024-12-12 16:00:00+00:00,0.3126428571428538 -2024-12-12 17:00:00+00:00,0.31642857142856784 -2024-12-12 18:00:00+00:00,0.3217857142857099 -2024-12-12 19:00:00+00:00,0.29957142857142366 -2024-12-12 20:00:00+00:00,0.28785714285713687 -2024-12-12 21:00:00+00:00,0.2714999999999951 -2024-12-12 22:00:00+00:00,0.2559999999999982 -2024-12-12 23:00:00+00:00,0.25649999999999856 -2024-12-13 00:00:00+00:00,0.2606428571428552 -2024-12-13 01:00:00+00:00,0.26628571428571085 -2024-12-13 02:00:00+00:00,0.26821428571428135 -2024-12-13 03:00:00+00:00,0.23849999999999585 -2024-12-13 04:00:00+00:00,0.21499999999999733 -2024-12-13 05:00:00+00:00,0.20664285714285516 -2024-12-13 06:00:00+00:00,0.21057142857142708 -2024-12-13 07:00:00+00:00,0.2050714285714272 -2024-12-13 08:00:00+00:00,0.2125714285714285 -2024-12-13 09:00:00+00:00,0.2301428571428557 -2024-12-13 10:00:00+00:00,0.2290714285714261 -2024-12-13 11:00:00+00:00,0.23557142857142463 -2024-12-13 12:00:00+00:00,0.2546428571428529 -2024-12-13 13:00:00+00:00,0.26057142857142424 -2024-12-13 14:00:00+00:00,0.2556428571428536 -2024-12-13 15:00:00+00:00,0.25378571428571206 -2024-12-13 16:00:00+00:00,0.25007142857142484 -2024-12-13 17:00:00+00:00,0.24628571428570872 -2024-12-13 18:00:00+00:00,0.23792857142856455 -2024-12-13 19:00:00+00:00,0.2317142857142796 -2024-12-13 20:00:00+00:00,0.21407142857142145 -2024-12-13 21:00:00+00:00,0.20799999999999436 -2024-12-15 22:00:00+00:00,0.19664285714285207 -2024-12-15 23:00:00+00:00,0.1869999999999976 -2024-12-16 00:00:00+00:00,0.218357142857142 -2024-12-16 01:00:00+00:00,0.222214285714285 -2024-12-16 02:00:00+00:00,0.20628571428571263 -2024-12-16 03:00:00+00:00,0.19635714285714048 -2024-12-16 04:00:00+00:00,0.18464285714285364 -2024-12-16 05:00:00+00:00,0.18007142857142558 -2024-12-16 06:00:00+00:00,0.18057142857142797 -2024-12-16 07:00:00+00:00,0.1875 -2024-12-16 08:00:00+00:00,0.20185714285714237 -2024-12-16 09:00:00+00:00,0.21042857142857127 -2024-12-16 10:00:00+00:00,0.2188571428571444 -2024-12-16 11:00:00+00:00,0.2202142857142856 -2024-12-16 12:00:00+00:00,0.2262857142857127 -2024-12-16 13:00:00+00:00,0.21949999999999648 -2024-12-16 14:00:00+00:00,0.2033571428571394 -2024-12-16 15:00:00+00:00,0.20464285714285374 -2024-12-16 16:00:00+00:00,0.20914285714285288 -2024-12-16 17:00:00+00:00,0.21357142857142516 -2024-12-16 18:00:00+00:00,0.21321428571428466 -2024-12-16 19:00:00+00:00,0.21049999999999816 -2024-12-16 20:00:00+00:00,0.1994999999999964 -2024-12-16 21:00:00+00:00,0.19064285714285387 -2024-12-16 22:00:00+00:00,0.17621428571428258 -2024-12-16 23:00:00+00:00,0.17692857142856763 -2024-12-17 00:00:00+00:00,0.18685714285713978 -2024-12-17 01:00:00+00:00,0.1974285714285681 -2024-12-17 02:00:00+00:00,0.19721428571428337 -2024-12-17 03:00:00+00:00,0.2032142857142836 -2024-12-17 04:00:00+00:00,0.1927857142857111 -2024-12-17 05:00:00+00:00,0.19121428571428314 -2024-12-17 06:00:00+00:00,0.18792857142856942 -2024-12-17 07:00:00+00:00,0.19121428571428517 -2024-12-17 08:00:00+00:00,0.20499999999999627 -2024-12-17 09:00:00+00:00,0.21028571428570939 -2024-12-17 10:00:00+00:00,0.21742857142856817 -2024-12-17 11:00:00+00:00,0.2285714285714237 -2024-12-17 12:00:00+00:00,0.23164285714285274 -2024-12-17 13:00:00+00:00,0.2419999999999963 -2024-12-17 14:00:00+00:00,0.23407142857142357 -2024-12-17 15:00:00+00:00,0.2266428571428532 -2024-12-17 16:00:00+00:00,0.2219999999999942 -2024-12-17 17:00:00+00:00,0.21964285714285228 -2024-12-17 18:00:00+00:00,0.2219285714285673 -2024-12-17 19:00:00+00:00,0.21407142857142553 -2024-12-17 20:00:00+00:00,0.22092857142856864 -2024-12-17 21:00:00+00:00,0.21399999999999458 -2024-12-17 22:00:00+00:00,0.19549999999999557 -2024-12-17 23:00:00+00:00,0.19557142857142448 -2024-12-18 00:00:00+00:00,0.19899999999999604 -2024-12-18 01:00:00+00:00,0.19635714285714048 -2024-12-18 02:00:00+00:00,0.1999999999999988 -2024-12-18 03:00:00+00:00,0.18707142857142653 -2024-12-18 04:00:00+00:00,0.1926428571428553 -2024-12-18 05:00:00+00:00,0.19021428571428448 -2024-12-18 06:00:00+00:00,0.18421428571428627 -2024-12-18 07:00:00+00:00,0.1924999999999995 -2024-12-18 08:00:00+00:00,0.18292857142857194 -2024-12-18 09:00:00+00:00,0.18921428571428578 -2024-12-18 10:00:00+00:00,0.1827857142857141 -2024-12-18 11:00:00+00:00,0.18235714285714266 -2024-12-18 12:00:00+00:00,0.18985714285714397 -2024-12-18 13:00:00+00:00,0.18557142857143155 -2024-12-18 14:00:00+00:00,0.18392857142857263 -2024-12-18 15:00:00+00:00,0.19592857142857106 -2024-12-18 16:00:00+00:00,0.19249999999999748 -2024-12-18 17:00:00+00:00,0.20107142857142637 -2024-12-18 18:00:00+00:00,0.18792857142856942 -2024-12-18 19:00:00+00:00,0.24328571428571064 -2024-12-18 20:00:00+00:00,0.26357142857142435 -2024-12-18 21:00:00+00:00,0.2689285714285664 -2024-12-18 22:00:00+00:00,0.26778571428570785 -2024-12-18 23:00:00+00:00,0.2769999999999929 -2024-12-19 00:00:00+00:00,0.2920714285714204 -2024-12-19 01:00:00+00:00,0.2984285714285631 -2024-12-19 02:00:00+00:00,0.3425714285714199 -2024-12-19 03:00:00+00:00,0.36721428571427495 -2024-12-19 04:00:00+00:00,0.36799999999999095 -2024-12-19 05:00:00+00:00,0.3609285714285631 -2024-12-19 06:00:00+00:00,0.44007142857142256 -2024-12-19 07:00:00+00:00,0.4681428571428512 -2024-12-19 08:00:00+00:00,0.5052142857142802 -2024-12-19 09:00:00+00:00,0.47135714285713803 -2024-12-19 10:00:00+00:00,0.45685714285713785 -2024-12-19 11:00:00+00:00,0.4581428571428522 -2024-12-19 12:00:00+00:00,0.4727857142857102 -2024-12-19 13:00:00+00:00,0.4951428571428543 -2024-12-19 14:00:00+00:00,0.5034999999999984 -2024-12-19 15:00:00+00:00,0.5287857142857136 -2024-12-19 16:00:00+00:00,0.4859285714285692 -2024-12-19 17:00:00+00:00,0.46828571428571514 -2024-12-19 18:00:00+00:00,0.4679285714285726 -2024-12-19 19:00:00+00:00,0.4629285714285731 -2024-12-19 20:00:00+00:00,0.3841428571428582 -2024-12-19 21:00:00+00:00,0.3452142857142856 -2024-12-19 22:00:00+00:00,0.304 -2024-12-19 23:00:00+00:00,0.29192857142857065 -2024-12-20 00:00:00+00:00,0.29764285714285726 -2024-12-20 01:00:00+00:00,0.3152857142857154 -2024-12-20 02:00:00+00:00,0.33007142857142924 -2024-12-20 03:00:00+00:00,0.3064999999999998 -2024-12-20 04:00:00+00:00,0.29071428571428726 -2024-12-20 05:00:00+00:00,0.27435714285714347 -2024-12-20 06:00:00+00:00,0.2781428571428596 -2024-12-20 07:00:00+00:00,0.2815714285714291 -2024-12-20 08:00:00+00:00,0.283214285714286 -2024-12-20 09:00:00+00:00,0.28935714285714403 -2024-12-20 10:00:00+00:00,0.28964285714285765 -2024-12-20 11:00:00+00:00,0.2925000000000019 -2024-12-20 12:00:00+00:00,0.3043571428571446 -2024-12-20 13:00:00+00:00,0.3178571428571461 -2024-12-20 14:00:00+00:00,0.31935714285714517 -2024-12-20 15:00:00+00:00,0.30092857142857504 -2024-12-20 16:00:00+00:00,0.30000000000000326 -2024-12-20 17:00:00+00:00,0.2921428571428594 -2024-12-20 18:00:00+00:00,0.28742857142857353 -2024-12-20 19:00:00+00:00,0.2717857142857168 -2024-12-20 20:00:00+00:00,0.27821428571428847 -2024-12-20 21:00:00+00:00,0.27021428571428885 -2024-12-22 22:00:00+00:00,0.2658571428571455 -2024-12-22 23:00:00+00:00,0.25607142857143117 -2024-12-23 00:00:00+00:00,0.2626428571428607 -2024-12-23 01:00:00+00:00,0.2752857142857173 -2024-12-23 02:00:00+00:00,0.2750714285714326 -2024-12-23 03:00:00+00:00,0.25192857142857455 -2024-12-23 04:00:00+00:00,0.23750000000000324 -2024-12-23 05:00:00+00:00,0.2180000000000015 -2024-12-23 06:00:00+00:00,0.19357142857143117 -2024-12-23 07:00:00+00:00,0.19292857142857503 -2024-12-23 08:00:00+00:00,0.2035714285714302 -2024-12-23 09:00:00+00:00,0.21385714285714488 -2024-12-23 10:00:00+00:00,0.2005714285714301 -2024-12-23 11:00:00+00:00,0.19714285714285854 -2024-12-23 12:00:00+00:00,0.2097142857142862 -2024-12-23 13:00:00+00:00,0.20921428571428585 -2024-12-23 14:00:00+00:00,0.2064285714285725 -2024-12-23 15:00:00+00:00,0.19528571428571492 -2024-12-23 16:00:00+00:00,0.19257142857142842 -2024-12-23 17:00:00+00:00,0.19749999999999904 -2024-12-23 18:00:00+00:00,0.1970714285714276 -2024-12-23 19:00:00+00:00,0.19649999999999831 -2024-12-23 20:00:00+00:00,0.19399999999999654 -2024-12-23 21:00:00+00:00,0.1833571428571393 -2024-12-23 22:00:00+00:00,0.16442857142856887 -2024-12-23 23:00:00+00:00,0.15435714285714092 -2024-12-24 00:00:00+00:00,0.15821428571428392 -2024-12-24 01:00:00+00:00,0.16721428571428426 -2024-12-24 02:00:00+00:00,0.15142857142856972 -2024-12-24 03:00:00+00:00,0.14721428571428216 -2024-12-24 04:00:00+00:00,0.14492857142856508 -2024-12-24 05:00:00+00:00,0.1430714285714235 -2024-12-24 06:00:00+00:00,0.14671428571427977 -2024-12-24 07:00:00+00:00,0.1423571428571364 -2024-12-24 08:00:00+00:00,0.14664285714285086 -2024-12-24 09:00:00+00:00,0.14649999999999505 -2024-12-24 10:00:00+00:00,0.14414285714285516 -2024-12-24 11:00:00+00:00,0.14799999999999816 -2024-12-24 12:00:00+00:00,0.1485714285714254 -2024-12-24 13:00:00+00:00,0.1457142857142831 -2024-12-24 14:00:00+00:00,0.13728571428571204 -2024-12-24 15:00:00+00:00,0.13085714285714037 -2024-12-24 16:00:00+00:00,0.12957142857142603 -2024-12-24 17:00:00+00:00,0.12928571428571445 -2024-12-24 18:00:00+00:00,0.12657142857142997 -2024-12-24 19:00:00+00:00,0.12092857142857229 -2024-12-24 20:00:00+00:00,0.11614285714285952 -2024-12-24 21:00:00+00:00,0.11528571428571865 -2024-12-25 22:00:00+00:00,0.1071428571428612 -2024-12-25 23:00:00+00:00,0.11200000000000289 -2024-12-26 00:00:00+00:00,0.12778571428571542 -2024-12-26 01:00:00+00:00,0.13692857142857356 -2024-12-26 02:00:00+00:00,0.13935714285714645 -2024-12-26 03:00:00+00:00,0.14014285714286043 -2024-12-26 04:00:00+00:00,0.1400000000000026 -2024-12-26 05:00:00+00:00,0.13657142857143104 -2024-12-26 06:00:00+00:00,0.13542857142857453 -2024-12-26 07:00:00+00:00,0.13692857142857356 -2024-12-26 08:00:00+00:00,0.13392857142857345 -2024-12-26 09:00:00+00:00,0.13900000000000187 -2024-12-26 10:00:00+00:00,0.13057142857142878 -2024-12-26 11:00:00+00:00,0.13299999999999962 -2024-12-26 12:00:00+00:00,0.13299999999999962 -2024-12-26 13:00:00+00:00,0.13907142857142876 -2024-12-26 14:00:00+00:00,0.12614285714285853 -2024-12-26 15:00:00+00:00,0.12328571428571422 -2024-12-26 16:00:00+00:00,0.12228571428571351 -2024-12-26 17:00:00+00:00,0.12414285714285711 -2024-12-26 18:00:00+00:00,0.1309285714285713 -2024-12-26 19:00:00+00:00,0.13007142857142842 -2024-12-26 20:00:00+00:00,0.1306428571428577 -2024-12-26 21:00:00+00:00,0.1297857142857148 -2024-12-26 22:00:00+00:00,0.1317857142857142 -2024-12-26 23:00:00+00:00,0.13671428571428482 -2024-12-27 00:00:00+00:00,0.15400000000000041 -2024-12-27 01:00:00+00:00,0.16200000000000006 -2024-12-27 02:00:00+00:00,0.17471428571428557 -2024-12-27 03:00:00+00:00,0.1655714285714274 -2024-12-27 04:00:00+00:00,0.16607142857142776 -2024-12-27 05:00:00+00:00,0.16728571428571318 -2024-12-27 06:00:00+00:00,0.1712142857142851 -2024-12-27 07:00:00+00:00,0.1703571428571422 -2024-12-27 08:00:00+00:00,0.1655714285714274 -2024-12-27 09:00:00+00:00,0.1682857142857139 -2024-12-27 10:00:00+00:00,0.17399999999999846 -2024-12-27 11:00:00+00:00,0.17871428571428435 -2024-12-27 12:00:00+00:00,0.18671428571428603 -2024-12-27 13:00:00+00:00,0.18400000000000155 -2024-12-27 14:00:00+00:00,0.17735714285714316 -2024-12-27 15:00:00+00:00,0.1829999999999988 -2024-12-27 16:00:00+00:00,0.19207142857142806 -2024-12-27 17:00:00+00:00,0.19557142857143056 -2024-12-27 18:00:00+00:00,0.1931428571428577 -2024-12-27 19:00:00+00:00,0.1862142857142877 -2024-12-27 20:00:00+00:00,0.1817857142857154 -2024-12-27 21:00:00+00:00,0.1809285714285705 -2024-12-29 22:00:00+00:00,0.17778571428571258 -2024-12-29 23:00:00+00:00,0.18185714285714027 -2024-12-30 00:00:00+00:00,0.19028571428571134 -2024-12-30 01:00:00+00:00,0.19499999999999723 -2024-12-30 02:00:00+00:00,0.1888571428571392 -2024-12-30 03:00:00+00:00,0.17928571428570958 -2024-12-30 04:00:00+00:00,0.16957142857142418 -2024-12-30 05:00:00+00:00,0.15842857142856864 -2024-12-30 06:00:00+00:00,0.14878571428571213 -2024-12-30 07:00:00+00:00,0.1429285714285677 -2024-12-30 08:00:00+00:00,0.14528571428571166 -2024-12-30 09:00:00+00:00,0.1467142857142818 -2024-12-30 10:00:00+00:00,0.14871428571428322 -2024-12-30 11:00:00+00:00,0.15678571428571178 -2024-12-30 12:00:00+00:00,0.161999999999998 -2024-12-30 13:00:00+00:00,0.16149999999999767 -2024-12-30 14:00:00+00:00,0.1752857142857128 -2024-12-30 15:00:00+00:00,0.20271428571428324 -2024-12-30 16:00:00+00:00,0.2139999999999966 -2024-12-30 17:00:00+00:00,0.22735714285714032 -2024-12-30 18:00:00+00:00,0.23742857142856824 -2024-12-30 19:00:00+00:00,0.23671428571428318 -2024-12-30 20:00:00+00:00,0.24114285714285547 -2024-12-30 21:00:00+00:00,0.2434999999999994 -2024-12-30 22:00:00+00:00,0.23957142857142547 -2024-12-30 23:00:00+00:00,0.24428571428571338 -2024-12-31 00:00:00+00:00,0.26092857142857084 -2024-12-31 01:00:00+00:00,0.2720000000000015 -2024-12-31 02:00:00+00:00,0.2699285714285732 -2024-12-31 03:00:00+00:00,0.2671428571428578 -2024-12-31 04:00:00+00:00,0.25507142857143045 -2024-12-31 05:00:00+00:00,0.21878571428571547 -2024-12-31 06:00:00+00:00,0.2149285714285745 -2024-12-31 07:00:00+00:00,0.21928571428571786 -2024-12-31 08:00:00+00:00,0.22164285714285978 -2024-12-31 09:00:00+00:00,0.24750000000000227 -2024-12-31 10:00:00+00:00,0.25035714285714455 -2024-12-31 11:00:00+00:00,0.2562857142857159 -2024-12-31 12:00:00+00:00,0.2758571428571445 -2024-12-31 13:00:00+00:00,0.280071428571428 -2024-12-31 14:00:00+00:00,0.2818571428571407 -2024-12-31 15:00:00+00:00,0.2898571428571403 -2024-12-31 16:00:00+00:00,0.30299999999999727 -2024-12-31 17:00:00+00:00,0.3088571428571417 -2024-12-31 18:00:00+00:00,0.29778571428571304 -2024-12-31 19:00:00+00:00,0.2960714285714293 -2024-12-31 20:00:00+00:00,0.2851428571428564 -2024-12-31 21:00:00+00:00,0.27471428571428397 -2025-01-01 22:00:00+00:00,0.26428571428571346 -2025-01-01 23:00:00+00:00,0.26371428571428623 -2025-01-02 00:00:00+00:00,0.27285714285714235 -2025-01-02 01:00:00+00:00,0.2760000000000003 -2025-01-02 02:00:00+00:00,0.26914285714285924 -2025-01-02 03:00:00+00:00,0.2630000000000032 -2025-01-02 04:00:00+00:00,0.24750000000000227 -2025-01-02 05:00:00+00:00,0.22935714285714376 -2025-01-02 06:00:00+00:00,0.2459285714285723 -2025-01-02 07:00:00+00:00,0.25121428571428744 -2025-01-02 08:00:00+00:00,0.26578571428571457 -2025-01-02 09:00:00+00:00,0.272357142857142 -2025-01-02 10:00:00+00:00,0.2934285714285717 -2025-01-02 11:00:00+00:00,0.2992142857142852 -2025-01-02 12:00:00+00:00,0.30685714285714233 -2025-01-02 13:00:00+00:00,0.3060714285714263 -2025-01-02 14:00:00+00:00,0.30635714285714194 -2025-01-02 15:00:00+00:00,0.3174999999999975 -2025-01-02 16:00:00+00:00,0.34428571428571175 -2025-01-02 17:00:00+00:00,0.3577142857142824 -2025-01-02 18:00:00+00:00,0.35835714285714054 -2025-01-02 19:00:00+00:00,0.35614285714285643 -2025-01-02 20:00:00+00:00,0.32335714285714395 -2025-01-02 21:00:00+00:00,0.31071428571428533 -2025-01-02 22:00:00+00:00,0.28885714285714365 -2025-01-02 23:00:00+00:00,0.2917142857142859 -2025-01-03 00:00:00+00:00,0.2809999999999998 -2025-01-03 01:00:00+00:00,0.2801428571428569 -2025-01-03 02:00:00+00:00,0.27371428571428524 -2025-01-03 03:00:00+00:00,0.25621428571428495 -2025-01-03 04:00:00+00:00,0.2313571428571391 -2025-01-03 05:00:00+00:00,0.21078571428571177 -2025-01-03 06:00:00+00:00,0.1786428571428534 -2025-01-03 07:00:00+00:00,0.16921428571428368 -2025-01-03 08:00:00+00:00,0.17821428571428402 -2025-01-03 09:00:00+00:00,0.181285714285711 -2025-01-03 10:00:00+00:00,0.18992857142856678 -2025-01-03 11:00:00+00:00,0.1937857142857098 -2025-01-03 12:00:00+00:00,0.20342857142856627 -2025-01-03 13:00:00+00:00,0.2037142857142799 -2025-01-03 14:00:00+00:00,0.20142857142856485 -2025-01-03 15:00:00+00:00,0.211357142857137 -2025-01-03 16:00:00+00:00,0.2178571428571376 -2025-01-03 17:00:00+00:00,0.22221428571428095 -2025-01-03 18:00:00+00:00,0.22207142857142514 -2025-01-03 19:00:00+00:00,0.22249999999999456 -2025-01-03 20:00:00+00:00,0.22578571428571031 -2025-01-03 21:00:00+00:00,0.2168571428571389 -2025-01-05 22:00:00+00:00,0.20957142857142433 -2025-01-05 23:00:00+00:00,0.20492857142856735 -2025-01-06 00:00:00+00:00,0.2130714285714248 -2025-01-06 01:00:00+00:00,0.2128571428571401 -2025-01-06 02:00:00+00:00,0.2138571428571408 -2025-01-06 03:00:00+00:00,0.2077142857142848 -2025-01-06 04:00:00+00:00,0.20049999999999915 -2025-01-06 05:00:00+00:00,0.18407142857142844 -2025-01-06 06:00:00+00:00,0.18135714285714397 -2025-01-06 07:00:00+00:00,0.1687857142857163 -2025-01-06 08:00:00+00:00,0.16957142857143026 -2025-01-06 09:00:00+00:00,0.1735714285714311 -2025-01-06 10:00:00+00:00,0.17478571428571651 -2025-01-06 11:00:00+00:00,0.22435714285714425 -2025-01-06 12:00:00+00:00,0.25285714285714433 -2025-01-06 13:00:00+00:00,0.2811428571428597 -2025-01-06 14:00:00+00:00,0.3259285714285746 -2025-01-06 15:00:00+00:00,0.34571428571428797 -2025-01-06 16:00:00+00:00,0.3497142857142868 -2025-01-06 17:00:00+00:00,0.35014285714286025 -2025-01-06 18:00:00+00:00,0.3605000000000039 -2025-01-06 19:00:00+00:00,0.359642857142861 -2025-01-06 20:00:00+00:00,0.35864285714286026 -2025-01-06 21:00:00+00:00,0.35235714285714437 -2025-01-06 22:00:00+00:00,0.3492142857142885 -2025-01-06 23:00:00+00:00,0.35021428571428714 -2025-01-07 00:00:00+00:00,0.36850000000000144 -2025-01-07 01:00:00+00:00,0.33835714285714247 -2025-01-07 02:00:00+00:00,0.3084285714285723 -2025-01-07 03:00:00+00:00,0.28300000000000125 -2025-01-07 04:00:00+00:00,0.22485714285714462 -2025-01-07 05:00:00+00:00,0.21814285714285933 -2025-01-07 06:00:00+00:00,0.21228571428571893 -2025-01-07 07:00:00+00:00,0.22692857142857292 -2025-01-07 08:00:00+00:00,0.22428571428571736 -2025-01-07 09:00:00+00:00,0.23871428571428868 -2025-01-07 10:00:00+00:00,0.2437857142857171 -2025-01-07 11:00:00+00:00,0.2548571428571478 -2025-01-07 12:00:00+00:00,0.25964285714286256 -2025-01-07 13:00:00+00:00,0.26035714285714967 -2025-01-07 14:00:00+00:00,0.24721428571429271 -2025-01-07 15:00:00+00:00,0.2677142857142952 -2025-01-07 16:00:00+00:00,0.28607142857143636 -2025-01-07 17:00:00+00:00,0.28657142857143675 -2025-01-07 18:00:00+00:00,0.3001428571428631 -2025-01-07 19:00:00+00:00,0.2817857142857199 -2025-01-07 20:00:00+00:00,0.2783571428571463 -2025-01-07 21:00:00+00:00,0.26985714285714835 -2025-01-07 22:00:00+00:00,0.2601428571428609 -2025-01-07 23:00:00+00:00,0.2520714285714324 -2025-01-08 00:00:00+00:00,0.2597857142857184 -2025-01-08 01:00:00+00:00,0.26050000000000345 -2025-01-08 02:00:00+00:00,0.2634285714285746 -2025-01-08 03:00:00+00:00,0.25885714285714656 -2025-01-08 04:00:00+00:00,0.24428571428571746 -2025-01-08 05:00:00+00:00,0.20885714285714535 -2025-01-08 06:00:00+00:00,0.19107142857143142 -2025-01-08 07:00:00+00:00,0.1892857142857147 -2025-01-08 08:00:00+00:00,0.17892857142857313 -2025-01-08 09:00:00+00:00,0.18492857142857336 -2025-01-08 10:00:00+00:00,0.18950000000000142 -2025-01-08 11:00:00+00:00,0.19071428571428686 -2025-01-08 12:00:00+00:00,0.20014285714285865 -2025-01-08 13:00:00+00:00,0.2087857142857144 -2025-01-08 14:00:00+00:00,0.20828571428571405 -2025-01-08 15:00:00+00:00,0.20549999999999866 -2025-01-08 16:00:00+00:00,0.20157142857142674 -2025-01-08 17:00:00+00:00,0.20507142857142518 -2025-01-08 18:00:00+00:00,0.21449999999999697 -2025-01-08 19:00:00+00:00,0.21471428571428167 -2025-01-08 20:00:00+00:00,0.2112857142857101 -2025-01-08 21:00:00+00:00,0.20328571428571252 -2025-01-08 22:00:00+00:00,0.1965714285714252 -2025-01-08 23:00:00+00:00,0.19821428571428207 -2025-01-09 00:00:00+00:00,0.20042857142857023 -2025-01-09 01:00:00+00:00,0.19871428571428243 -2025-01-09 02:00:00+00:00,0.19528571428570882 -2025-01-09 03:00:00+00:00,0.18471428571428256 -2025-01-09 04:00:00+00:00,0.17714285714285236 -2025-01-09 05:00:00+00:00,0.18078571428571064 -2025-01-09 06:00:00+00:00,0.18142857142856883 -2025-01-09 07:00:00+00:00,0.1807857142857127 -2025-01-09 08:00:00+00:00,0.1799999999999987 -2025-01-09 09:00:00+00:00,0.17957142857142724 -2025-01-09 10:00:00+00:00,0.18028571428571435 -2025-01-09 11:00:00+00:00,0.1877142857142847 -2025-01-09 12:00:00+00:00,0.20135714285714204 -2025-01-09 13:00:00+00:00,0.20514285714285613 -2025-01-09 14:00:00+00:00,0.20364285714285504 -2025-01-09 15:00:00+00:00,0.19985714285714096 -2025-01-09 16:00:00+00:00,0.19692857142856976 -2025-01-09 17:00:00+00:00,0.19478571428571254 -2025-01-09 18:00:00+00:00,0.18671428571428603 -2025-01-09 19:00:00+00:00,0.17342857142857124 -2025-01-09 20:00:00+00:00,0.16499999999999812 -2025-01-09 21:00:00+00:00,0.1571428571428543 -2025-01-09 22:00:00+00:00,0.14678571428571274 -2025-01-09 23:00:00+00:00,0.14578571428571405 -2025-01-10 00:00:00+00:00,0.15535714285714164 -2025-01-10 01:00:00+00:00,0.15821428571428392 -2025-01-10 02:00:00+00:00,0.15071428571428466 -2025-01-10 03:00:00+00:00,0.13785714285714334 -2025-01-10 04:00:00+00:00,0.13585714285714193 -2025-01-10 05:00:00+00:00,0.12935714285714336 -2025-01-10 06:00:00+00:00,0.13021428571428625 -2025-01-10 07:00:00+00:00,0.13242857142857037 -2025-01-10 08:00:00+00:00,0.17349999999999813 -2025-01-10 09:00:00+00:00,0.19228571428571076 -2025-01-10 10:00:00+00:00,0.2080714285714253 -2025-01-10 11:00:00+00:00,0.21621428571428478 -2025-01-10 12:00:00+00:00,0.22042857142856828 -2025-01-10 13:00:00+00:00,0.27957142857142564 -2025-01-10 14:00:00+00:00,0.3233571428571399 -2025-01-10 15:00:00+00:00,0.37335714285713906 -2025-01-10 16:00:00+00:00,0.3844999999999966 -2025-01-10 17:00:00+00:00,0.3939285714285664 -2025-01-10 18:00:00+00:00,0.40199999999999697 -2025-01-10 19:00:00+00:00,0.40964285714285403 -2025-01-10 20:00:00+00:00,0.4101428571428544 -2025-01-10 21:00:00+00:00,0.40649999999999814 -2025-01-12 22:00:00+00:00,0.36964285714285594 -2025-01-12 23:00:00+00:00,0.3625714285714281 -2025-01-13 00:00:00+00:00,0.35614285714285643 -2025-01-13 01:00:00+00:00,0.3860714285714266 -2025-01-13 02:00:00+00:00,0.39457142857142663 -2025-01-13 03:00:00+00:00,0.3413571428571406 -2025-01-13 04:00:00+00:00,0.29028571428571376 -2025-01-13 05:00:00+00:00,0.2422142857142871 -2025-01-13 06:00:00+00:00,0.24342857142857252 -2025-01-13 07:00:00+00:00,0.24550000000000086 -2025-01-13 08:00:00+00:00,0.24471428571428483 -2025-01-13 09:00:00+00:00,0.27342857142856963 -2025-01-13 10:00:00+00:00,0.2944999999999993 -2025-01-13 11:00:00+00:00,0.3031428571428551 -2025-01-13 12:00:00+00:00,0.3300714285714252 -2025-01-13 13:00:00+00:00,0.33464285714285325 -2025-01-13 14:00:00+00:00,0.34514285714285264 -2025-01-13 15:00:00+00:00,0.3218571428571388 -2025-01-13 16:00:00+00:00,0.3269999999999961 -2025-01-13 17:00:00+00:00,0.3292142857142823 -2025-01-13 18:00:00+00:00,0.33307142857142324 -2025-01-13 19:00:00+00:00,0.3384999999999942 -2025-01-13 20:00:00+00:00,0.32799999999999485 -2025-01-13 21:00:00+00:00,0.3264999999999958 -2025-01-13 22:00:00+00:00,0.32721428571428085 -2025-01-13 23:00:00+00:00,0.3099285714285673 -2025-01-14 00:00:00+00:00,0.31085714285713906 -2025-01-14 01:00:00+00:00,0.35449999999999754 -2025-01-14 02:00:00+00:00,0.33721428571428397 -2025-01-14 03:00:00+00:00,0.3327857142857137 -2025-01-14 04:00:00+00:00,0.3182857142857135 -2025-01-14 05:00:00+00:00,0.3249999999999988 -2025-01-14 06:00:00+00:00,0.3189285714285696 -2025-01-14 07:00:00+00:00,0.3184999999999982 -2025-01-14 08:00:00+00:00,0.32642857142857096 -2025-01-14 09:00:00+00:00,0.32700000000000023 -2025-01-14 10:00:00+00:00,0.32342857142857084 -2025-01-14 11:00:00+00:00,0.3157857142857137 -2025-01-14 12:00:00+00:00,0.31571428571428684 -2025-01-14 13:00:00+00:00,0.3297142857142867 -2025-01-14 14:00:00+00:00,0.31957142857142984 -2025-01-14 15:00:00+00:00,0.28700000000000003 -2025-01-14 16:00:00+00:00,0.2835714285714285 -2025-01-14 17:00:00+00:00,0.28800000000000076 -2025-01-14 18:00:00+00:00,0.29100000000000087 -2025-01-14 19:00:00+00:00,0.27664285714285847 -2025-01-14 20:00:00+00:00,0.2678571428571449 -2025-01-14 21:00:00+00:00,0.2563571428571448 -2025-01-14 22:00:00+00:00,0.2404285714285724 -2025-01-14 23:00:00+00:00,0.2269999999999998 -2025-01-15 00:00:00+00:00,0.22935714285714376 -2025-01-15 01:00:00+00:00,0.23542857142857088 -2025-01-15 02:00:00+00:00,0.22142857142857103 -2025-01-15 03:00:00+00:00,0.191357142857143 -2025-01-15 04:00:00+00:00,0.1953571428571418 -2025-01-15 05:00:00+00:00,0.19564285714285745 -2025-01-15 06:00:00+00:00,0.1892857142857147 -2025-01-15 07:00:00+00:00,0.20449999999999793 -2025-01-15 08:00:00+00:00,0.22864285714285668 -2025-01-15 09:00:00+00:00,0.2462857142857128 -2025-01-15 10:00:00+00:00,0.25071428571428506 -2025-01-15 11:00:00+00:00,0.2685714285714259 -2025-01-15 12:00:00+00:00,0.2742142857142836 -2025-01-15 13:00:00+00:00,0.32292857142856846 -2025-01-15 14:00:00+00:00,0.34728571428570987 -2025-01-15 15:00:00+00:00,0.3645714285714255 -2025-01-15 16:00:00+00:00,0.38992857142856757 -2025-01-15 17:00:00+00:00,0.39128571428571085 -2025-01-15 18:00:00+00:00,0.3784999999999964 -2025-01-15 19:00:00+00:00,0.35864285714285415 -2025-01-15 20:00:00+00:00,0.35471428571428226 -2025-01-15 21:00:00+00:00,0.3267142857142825 -2025-01-15 22:00:00+00:00,0.2987142857142828 -2025-01-15 23:00:00+00:00,0.2827857142857125 -2025-01-16 00:00:00+00:00,0.29607142857142726 -2025-01-16 01:00:00+00:00,0.32157142857142923 -2025-01-16 02:00:00+00:00,0.34835714285714353 -2025-01-16 03:00:00+00:00,0.2995000000000009 -2025-01-16 04:00:00+00:00,0.28792857142857387 -2025-01-16 05:00:00+00:00,0.267785714285718 -2025-01-16 06:00:00+00:00,0.2556428571428597 -2025-01-16 07:00:00+00:00,0.26192857142857356 -2025-01-16 08:00:00+00:00,0.2765714285714296 -2025-01-16 09:00:00+00:00,0.2900714285714291 -2025-01-16 10:00:00+00:00,0.29242857142857304 -2025-01-16 11:00:00+00:00,0.30092857142857504 -2025-01-16 12:00:00+00:00,0.32314285714285923 -2025-01-16 13:00:00+00:00,0.3467142857142867 -2025-01-16 14:00:00+00:00,0.34057142857142864 -2025-01-16 15:00:00+00:00,0.3479285714285721 -2025-01-16 16:00:00+00:00,0.33949999999999897 -2025-01-16 17:00:00+00:00,0.35271428571428487 -2025-01-16 18:00:00+00:00,0.343357142857142 -2025-01-16 19:00:00+00:00,0.3460714285714265 -2025-01-16 20:00:00+00:00,0.3362857142857142 -2025-01-16 21:00:00+00:00,0.3304285714285718 -2025-01-16 22:00:00+00:00,0.3123571428571442 -2025-01-16 23:00:00+00:00,0.3057857142857147 -2025-01-17 00:00:00+00:00,0.33228571428571335 -2025-01-17 01:00:00+00:00,0.33207142857142663 -2025-01-17 02:00:00+00:00,0.32378571428571135 -2025-01-17 03:00:00+00:00,0.2946428571428551 -2025-01-17 04:00:00+00:00,0.2842142857142826 -2025-01-17 05:00:00+00:00,0.24992857142856703 -2025-01-17 06:00:00+00:00,0.2331428571428538 -2025-01-17 07:00:00+00:00,0.2262857142857127 -2025-01-17 08:00:00+00:00,0.2320714285714262 -2025-01-17 09:00:00+00:00,0.24857142857142783 -2025-01-17 10:00:00+00:00,0.2506428571428541 -2025-01-17 11:00:00+00:00,0.25307142857142495 -2025-01-17 12:00:00+00:00,0.256142857142854 -2025-01-17 13:00:00+00:00,0.25164285714285484 -2025-01-17 14:00:00+00:00,0.2540714285714277 -2025-01-17 15:00:00+00:00,0.26399999999999785 -2025-01-17 16:00:00+00:00,0.26178571428571373 -2025-01-17 17:00:00+00:00,0.2622142857142852 -2025-01-17 18:00:00+00:00,0.26450000000000023 -2025-01-17 19:00:00+00:00,0.24842857142857205 -2025-01-17 20:00:00+00:00,0.2393571428571428 -2025-01-17 21:00:00+00:00,0.23585714285714232 -2025-01-19 22:00:00+00:00,0.21985714285714306 -2025-01-19 23:00:00+00:00,0.21099999999999852 -2025-01-20 00:00:00+00:00,0.22542857142857184 -2025-01-20 01:00:00+00:00,0.23071428571428498 -2025-01-20 02:00:00+00:00,0.2307857142857139 -2025-01-20 03:00:00+00:00,0.23714285714285666 -2025-01-20 04:00:00+00:00,0.21985714285714306 -2025-01-20 05:00:00+00:00,0.20557142857143162 -2025-01-20 06:00:00+00:00,0.19935714285714465 -2025-01-20 07:00:00+00:00,0.2140000000000027 -2025-01-20 08:00:00+00:00,0.21885714285714641 -2025-01-20 09:00:00+00:00,0.22807142857143145 -2025-01-20 10:00:00+00:00,0.23385714285714496 -2025-01-20 11:00:00+00:00,0.22999999999999993 -2025-01-20 12:00:00+00:00,0.23614285714285593 -2025-01-20 13:00:00+00:00,0.2673571428571425 -2025-01-20 14:00:00+00:00,0.27671428571428336 -2025-01-20 15:00:00+00:00,0.2882142857142855 -2025-01-20 16:00:00+00:00,0.2854285714285721 -2025-01-20 17:00:00+00:00,0.2981428571428576 -2025-01-20 18:00:00+00:00,0.2915714285714281 -2025-01-20 19:00:00+00:00,0.292428571428569 -2025-01-20 20:00:00+00:00,0.2904999999999985 -2025-01-20 21:00:00+00:00,0.2827142857142836 -2025-01-20 22:00:00+00:00,0.27285714285714036 -2025-01-20 23:00:00+00:00,0.29149999999999715 -2025-01-21 00:00:00+00:00,0.37499999999999795 -2025-01-21 01:00:00+00:00,0.4165714285714281 -2025-01-21 02:00:00+00:00,0.4489285714285712 -2025-01-21 03:00:00+00:00,0.4289285714285711 -2025-01-21 04:00:00+00:00,0.4098571428571428 -2025-01-21 05:00:00+00:00,0.4039999999999984 -2025-01-21 06:00:00+00:00,0.4120714285714249 -2025-01-21 07:00:00+00:00,0.39907142857142575 -2025-01-21 08:00:00+00:00,0.39571428571428313 -2025-01-21 09:00:00+00:00,0.40071428571428463 -2025-01-21 10:00:00+00:00,0.4031428571428555 -2025-01-21 11:00:00+00:00,0.40085714285714047 -2025-01-21 12:00:00+00:00,0.4110714285714262 -2025-01-21 13:00:00+00:00,0.4030714285714266 -2025-01-21 14:00:00+00:00,0.33178571428571296 -2025-01-21 15:00:00+00:00,0.3144285714285705 -2025-01-21 16:00:00+00:00,0.2887857142857127 -2025-01-21 17:00:00+00:00,0.2667142857142843 -2025-01-21 18:00:00+00:00,0.26178571428571573 -2025-01-21 19:00:00+00:00,0.24692857142857502 -2025-01-21 20:00:00+00:00,0.23514285714286132 -2025-01-21 21:00:00+00:00,0.2235000000000034 -2025-01-21 22:00:00+00:00,0.21814285714286136 -2025-01-21 23:00:00+00:00,0.22550000000000278 -2025-01-22 00:00:00+00:00,0.24114285714285952 -2025-01-22 01:00:00+00:00,0.2505714285714313 -2025-01-22 02:00:00+00:00,0.24321428571428783 -2025-01-22 03:00:00+00:00,0.2360714285714311 -2025-01-22 04:00:00+00:00,0.22635714285714567 -2025-01-22 05:00:00+00:00,0.20385714285714382 -2025-01-22 06:00:00+00:00,0.2054285714285738 -2025-01-22 07:00:00+00:00,0.2132857142857156 -2025-01-22 08:00:00+00:00,0.24178571428571363 -2025-01-22 09:00:00+00:00,0.24585714285714136 -2025-01-22 10:00:00+00:00,0.25149999999999906 -2025-01-22 11:00:00+00:00,0.2580714285714265 -2025-01-22 12:00:00+00:00,0.2697142857142824 -2025-01-22 13:00:00+00:00,0.26049999999999734 -2025-01-22 14:00:00+00:00,0.2580714285714265 -2025-01-22 15:00:00+00:00,0.26228571428571207 -2025-01-22 16:00:00+00:00,0.27185714285714163 -2025-01-22 17:00:00+00:00,0.2625714285714257 -2025-01-22 18:00:00+00:00,0.2567857142857101 -2025-01-22 19:00:00+00:00,0.2533571428571406 -2025-01-22 20:00:00+00:00,0.2408571428571398 -2025-01-22 21:00:00+00:00,0.22692857142856887 -2025-01-22 22:00:00+00:00,0.19135714285714098 -2025-01-22 23:00:00+00:00,0.18721428571428436 -2025-01-23 00:00:00+00:00,0.1869285714285687 -2025-01-23 01:00:00+00:00,0.19385714285714073 -2025-01-23 02:00:00+00:00,0.1876428571428558 -2025-01-23 03:00:00+00:00,0.17728571428571424 -2025-01-23 04:00:00+00:00,0.16007142857142956 -2025-01-23 05:00:00+00:00,0.1451428571428579 -2025-01-23 06:00:00+00:00,0.14299999999999866 -2025-01-23 07:00:00+00:00,0.14414285714285718 -2025-01-23 08:00:00+00:00,0.14821428571428694 -2025-01-23 09:00:00+00:00,0.1539285714285715 -2025-01-23 10:00:00+00:00,0.15999999999999862 -2025-01-23 11:00:00+00:00,0.16799999999999823 -2025-01-23 12:00:00+00:00,0.1791428571428558 -2025-01-23 13:00:00+00:00,0.1937142857142829 -2025-01-23 14:00:00+00:00,0.2020714285714271 -2025-01-23 15:00:00+00:00,0.20542857142856974 -2025-01-23 16:00:00+00:00,0.23192857142856838 -2025-01-23 17:00:00+00:00,0.24421428571428244 -2025-01-23 18:00:00+00:00,0.24342857142856644 -2025-01-23 19:00:00+00:00,0.2525714285714246 -2025-01-23 20:00:00+00:00,0.2512857142857123 -2025-01-23 21:00:00+00:00,0.24799999999999858 -2025-01-23 22:00:00+00:00,0.23828571428571113 -2025-01-23 23:00:00+00:00,0.23999999999999894 -2025-01-24 00:00:00+00:00,0.2450000000000005 -2025-01-24 01:00:00+00:00,0.2470714285714288 -2025-01-24 02:00:00+00:00,0.2651428571428584 -2025-01-24 03:00:00+00:00,0.3127142857142867 -2025-01-24 04:00:00+00:00,0.33028571428571596 -2025-01-24 05:00:00+00:00,0.3331428571428603 -2025-01-24 06:00:00+00:00,0.359642857142861 -2025-01-24 07:00:00+00:00,0.37142857142857466 -2025-01-24 08:00:00+00:00,0.39900000000000496 -2025-01-24 09:00:00+00:00,0.4141428571428593 -2025-01-24 10:00:00+00:00,0.42828571428571494 -2025-01-24 11:00:00+00:00,0.43450000000000194 -2025-01-24 12:00:00+00:00,0.4603571428571464 -2025-01-24 13:00:00+00:00,0.4683571428571461 diff --git a/indicators_directory/USD_JPY_BollingerBands_middle.csv b/indicators_directory/USD_JPY_BollingerBands_middle.csv deleted file mode 100644 index 9cc83e6..0000000 --- a/indicators_directory/USD_JPY_BollingerBands_middle.csv +++ /dev/null @@ -1,5001 +0,0 @@ -time,BollingerBands_middle -2024-04-05 03:00:00+00:00, -2024-04-05 04:00:00+00:00, -2024-04-05 05:00:00+00:00, -2024-04-05 06:00:00+00:00, -2024-04-05 07:00:00+00:00, -2024-04-05 08:00:00+00:00, -2024-04-05 09:00:00+00:00, -2024-04-05 10:00:00+00:00, -2024-04-05 11:00:00+00:00, -2024-04-05 12:00:00+00:00, -2024-04-05 13:00:00+00:00, -2024-04-05 14:00:00+00:00, -2024-04-05 15:00:00+00:00, -2024-04-05 16:00:00+00:00, -2024-04-05 17:00:00+00:00, -2024-04-05 18:00:00+00:00, -2024-04-05 19:00:00+00:00, -2024-04-05 20:00:00+00:00, -2024-04-07 21:00:00+00:00, -2024-04-07 22:00:00+00:00,151.47615000000002 -2024-04-07 23:00:00+00:00,151.49714999999998 -2024-04-08 00:00:00+00:00,151.52185 -2024-04-08 01:00:00+00:00,151.55155 -2024-04-08 02:00:00+00:00,151.57695 -2024-04-08 03:00:00+00:00,151.59855 -2024-04-08 04:00:00+00:00,151.61764999999997 -2024-04-08 05:00:00+00:00,151.63615 -2024-04-08 06:00:00+00:00,151.65725 -2024-04-08 07:00:00+00:00,151.68195 -2024-04-08 08:00:00+00:00,151.69445 -2024-04-08 09:00:00+00:00,151.7074 -2024-04-08 10:00:00+00:00,151.72379999999998 -2024-04-08 11:00:00+00:00,151.74015 -2024-04-08 12:00:00+00:00,151.75504999999998 -2024-04-08 13:00:00+00:00,151.7627 -2024-04-08 14:00:00+00:00,151.7757 -2024-04-08 15:00:00+00:00,151.78265 -2024-04-08 16:00:00+00:00,151.79295000000002 -2024-04-08 17:00:00+00:00,151.80085000000003 -2024-04-08 18:00:00+00:00,151.8047 -2024-04-08 19:00:00+00:00,151.8124 -2024-04-08 20:00:00+00:00,151.8194 -2024-04-08 21:00:00+00:00,151.8216 -2024-04-08 22:00:00+00:00,151.82335 -2024-04-08 23:00:00+00:00,151.82645 -2024-04-09 00:00:00+00:00,151.83215 -2024-04-09 01:00:00+00:00,151.83715 -2024-04-09 02:00:00+00:00,151.84295 -2024-04-09 03:00:00+00:00,151.8423 -2024-04-09 04:00:00+00:00,151.84150000000002 -2024-04-09 05:00:00+00:00,151.8425 -2024-04-09 06:00:00+00:00,151.84560000000002 -2024-04-09 07:00:00+00:00,151.8449 -2024-04-09 08:00:00+00:00,151.84535 -2024-04-09 09:00:00+00:00,151.85039999999998 -2024-04-09 10:00:00+00:00,151.8496 -2024-04-09 11:00:00+00:00,151.8517 -2024-04-09 12:00:00+00:00,151.84845 -2024-04-09 13:00:00+00:00,151.8483 -2024-04-09 14:00:00+00:00,151.84235 -2024-04-09 15:00:00+00:00,151.83715 -2024-04-09 16:00:00+00:00,151.82805000000002 -2024-04-09 17:00:00+00:00,151.82150000000001 -2024-04-09 18:00:00+00:00,151.8182 -2024-04-09 19:00:00+00:00,151.8134 -2024-04-09 20:00:00+00:00,151.80695 -2024-04-09 21:00:00+00:00,151.80045 -2024-04-09 22:00:00+00:00,151.79435 -2024-04-09 23:00:00+00:00,151.7905 -2024-04-10 00:00:00+00:00,151.78209999999999 -2024-04-10 01:00:00+00:00,151.77360000000002 -2024-04-10 02:00:00+00:00,151.76569999999998 -2024-04-10 03:00:00+00:00,151.75815 -2024-04-10 04:00:00+00:00,151.7529 -2024-04-10 05:00:00+00:00,151.75145 -2024-04-10 06:00:00+00:00,151.75065 -2024-04-10 07:00:00+00:00,151.75125 -2024-04-10 08:00:00+00:00,151.75539999999998 -2024-04-10 09:00:00+00:00,151.75985 -2024-04-10 10:00:00+00:00,151.7689 -2024-04-10 11:00:00+00:00,151.77450000000002 -2024-04-10 12:00:00+00:00,151.8103 -2024-04-10 13:00:00+00:00,151.8593 -2024-04-10 14:00:00+00:00,151.91084999999998 -2024-04-10 15:00:00+00:00,151.96925000000002 -2024-04-10 16:00:00+00:00,152.027 -2024-04-10 17:00:00+00:00,152.0777 -2024-04-10 18:00:00+00:00,152.13809999999998 -2024-04-10 19:00:00+00:00,152.19715000000002 -2024-04-10 20:00:00+00:00,152.2682 -2024-04-10 21:00:00+00:00,152.33205 -2024-04-10 22:00:00+00:00,152.39000000000001 -2024-04-10 23:00:00+00:00,152.45 -2024-04-11 00:00:00+00:00,152.5027 -2024-04-11 01:00:00+00:00,152.55255000000002 -2024-04-11 02:00:00+00:00,152.6048 -2024-04-11 03:00:00+00:00,152.6601 -2024-04-11 04:00:00+00:00,152.7122 -2024-04-11 05:00:00+00:00,152.7677 -2024-04-11 06:00:00+00:00,152.83425 -2024-04-11 07:00:00+00:00,152.8987 -2024-04-11 08:00:00+00:00,152.9415 -2024-04-11 09:00:00+00:00,152.96625 -2024-04-11 10:00:00+00:00,152.98145000000002 -2024-04-11 11:00:00+00:00,152.99054999999998 -2024-04-11 12:00:00+00:00,152.98595 -2024-04-11 13:00:00+00:00,153.00395 -2024-04-11 14:00:00+00:00,153.01950000000002 -2024-04-11 15:00:00+00:00,153.03109999999998 -2024-04-11 16:00:00+00:00,153.03564999999998 -2024-04-11 17:00:00+00:00,153.0445 -2024-04-11 18:00:00+00:00,153.06095 -2024-04-11 19:00:00+00:00,153.07350000000002 -2024-04-11 20:00:00+00:00,153.09545 -2024-04-11 21:00:00+00:00,153.1157 -2024-04-11 22:00:00+00:00,153.1358 -2024-04-11 23:00:00+00:00,153.1481 -2024-04-12 00:00:00+00:00,153.1519 -2024-04-12 01:00:00+00:00,153.1584 -2024-04-12 02:00:00+00:00,153.159 -2024-04-12 03:00:00+00:00,153.16275000000002 -2024-04-12 04:00:00+00:00,153.1626 -2024-04-12 05:00:00+00:00,153.16465 -2024-04-12 06:00:00+00:00,153.17475 -2024-04-12 07:00:00+00:00,153.18275 -2024-04-12 08:00:00+00:00,153.206 -2024-04-12 09:00:00+00:00,153.2145 -2024-04-12 10:00:00+00:00,153.21445 -2024-04-12 11:00:00+00:00,153.21300000000002 -2024-04-12 12:00:00+00:00,153.1939 -2024-04-12 13:00:00+00:00,153.1818 -2024-04-12 14:00:00+00:00,153.1659 -2024-04-12 15:00:00+00:00,153.16174999999998 -2024-04-12 16:00:00+00:00,153.1532 -2024-04-12 17:00:00+00:00,153.14905 -2024-04-12 18:00:00+00:00,153.14839999999998 -2024-04-12 19:00:00+00:00,153.1507 -2024-04-12 20:00:00+00:00,153.1677 -2024-04-14 21:00:00+00:00,153.1719 -2024-04-14 22:00:00+00:00,153.17720000000003 -2024-04-14 23:00:00+00:00,153.18215 -2024-04-15 00:00:00+00:00,153.1934 -2024-04-15 01:00:00+00:00,153.2116 -2024-04-15 02:00:00+00:00,153.23329999999999 -2024-04-15 03:00:00+00:00,153.2547 -2024-04-15 04:00:00+00:00,153.2786 -2024-04-15 05:00:00+00:00,153.3047 -2024-04-15 06:00:00+00:00,153.3347 -2024-04-15 07:00:00+00:00,153.3719 -2024-04-15 08:00:00+00:00,153.42260000000002 -2024-04-15 09:00:00+00:00,153.46959999999999 -2024-04-15 10:00:00+00:00,153.5197 -2024-04-15 11:00:00+00:00,153.55935000000002 -2024-04-15 12:00:00+00:00,153.6135 -2024-04-15 13:00:00+00:00,153.67495000000002 -2024-04-15 14:00:00+00:00,153.73075 -2024-04-15 15:00:00+00:00,153.78164999999998 -2024-04-15 16:00:00+00:00,153.83105 -2024-04-15 17:00:00+00:00,153.88060000000002 -2024-04-15 18:00:00+00:00,153.9268 -2024-04-15 19:00:00+00:00,153.9728 -2024-04-15 20:00:00+00:00,154.01325 -2024-04-15 21:00:00+00:00,154.0462 -2024-04-15 22:00:00+00:00,154.0695 -2024-04-15 23:00:00+00:00,154.09634999999997 -2024-04-16 00:00:00+00:00,154.1216 -2024-04-16 01:00:00+00:00,154.14849999999998 -2024-04-16 02:00:00+00:00,154.17090000000002 -2024-04-16 03:00:00+00:00,154.19320000000002 -2024-04-16 04:00:00+00:00,154.2134 -2024-04-16 05:00:00+00:00,154.23700000000002 -2024-04-16 06:00:00+00:00,154.266 -2024-04-16 07:00:00+00:00,154.28985 -2024-04-16 08:00:00+00:00,154.30575 -2024-04-16 09:00:00+00:00,154.31595 -2024-04-16 10:00:00+00:00,154.3293 -2024-04-16 11:00:00+00:00,154.34740000000002 -2024-04-16 12:00:00+00:00,154.3647 -2024-04-16 13:00:00+00:00,154.38445 -2024-04-16 14:00:00+00:00,154.40355000000002 -2024-04-16 15:00:00+00:00,154.4209 -2024-04-16 16:00:00+00:00,154.4364 -2024-04-16 17:00:00+00:00,154.45985000000002 -2024-04-16 18:00:00+00:00,154.48335 -2024-04-16 19:00:00+00:00,154.5043 -2024-04-16 20:00:00+00:00,154.52624999999998 -2024-04-16 21:00:00+00:00,154.54155 -2024-04-16 22:00:00+00:00,154.55985 -2024-04-16 23:00:00+00:00,154.57704999999999 -2024-04-17 00:00:00+00:00,154.59814999999998 -2024-04-17 01:00:00+00:00,154.61499999999998 -2024-04-17 02:00:00+00:00,154.62365 -2024-04-17 03:00:00+00:00,154.63655 -2024-04-17 04:00:00+00:00,154.64370000000002 -2024-04-17 05:00:00+00:00,154.6465 -2024-04-17 06:00:00+00:00,154.6402 -2024-04-17 07:00:00+00:00,154.63975 -2024-04-17 08:00:00+00:00,154.63565 -2024-04-17 09:00:00+00:00,154.63695 -2024-04-17 10:00:00+00:00,154.63885 -2024-04-17 11:00:00+00:00,154.64165 -2024-04-17 12:00:00+00:00,154.6439 -2024-04-17 13:00:00+00:00,154.64155 -2024-04-17 14:00:00+00:00,154.64185 -2024-04-17 15:00:00+00:00,154.64105 -2024-04-17 16:00:00+00:00,154.6183 -2024-04-17 17:00:00+00:00,154.6005 -2024-04-17 18:00:00+00:00,154.5838 -2024-04-17 19:00:00+00:00,154.56565 -2024-04-17 20:00:00+00:00,154.55075 -2024-04-17 21:00:00+00:00,154.53310000000002 -2024-04-17 22:00:00+00:00,154.51295 -2024-04-17 23:00:00+00:00,154.49745000000001 -2024-04-18 00:00:00+00:00,154.47925 -2024-04-18 01:00:00+00:00,154.45940000000002 -2024-04-18 02:00:00+00:00,154.44245 -2024-04-18 03:00:00+00:00,154.42385000000002 -2024-04-18 04:00:00+00:00,154.41035 -2024-04-18 05:00:00+00:00,154.39485 -2024-04-18 06:00:00+00:00,154.37720000000002 -2024-04-18 07:00:00+00:00,154.35920000000002 -2024-04-18 08:00:00+00:00,154.3456 -2024-04-18 09:00:00+00:00,154.3339 -2024-04-18 10:00:00+00:00,154.3236 -2024-04-18 11:00:00+00:00,154.3115 -2024-04-18 12:00:00+00:00,154.3163 -2024-04-18 13:00:00+00:00,154.3269 -2024-04-18 14:00:00+00:00,154.34115 -2024-04-18 15:00:00+00:00,154.3552 -2024-04-18 16:00:00+00:00,154.36650000000003 -2024-04-18 17:00:00+00:00,154.3819 -2024-04-18 18:00:00+00:00,154.39770000000001 -2024-04-18 19:00:00+00:00,154.4117 -2024-04-18 20:00:00+00:00,154.43019999999999 -2024-04-18 21:00:00+00:00,154.4493 -2024-04-18 22:00:00+00:00,154.4749 -2024-04-18 23:00:00+00:00,154.49365 -2024-04-19 00:00:00+00:00,154.51035 -2024-04-19 01:00:00+00:00,154.5079 -2024-04-19 02:00:00+00:00,154.48915 -2024-04-19 03:00:00+00:00,154.49115 -2024-04-19 04:00:00+00:00,154.48945 -2024-04-19 05:00:00+00:00,154.48525 -2024-04-19 06:00:00+00:00,154.48395 -2024-04-19 07:00:00+00:00,154.48895 -2024-04-19 08:00:00+00:00,154.49095 -2024-04-19 09:00:00+00:00,154.48895 -2024-04-19 10:00:00+00:00,154.4836 -2024-04-19 11:00:00+00:00,154.483 -2024-04-19 12:00:00+00:00,154.4788 -2024-04-19 13:00:00+00:00,154.47594999999998 -2024-04-19 14:00:00+00:00,154.47575 -2024-04-19 15:00:00+00:00,154.4722 -2024-04-19 16:00:00+00:00,154.46845000000002 -2024-04-19 17:00:00+00:00,154.4695 -2024-04-19 18:00:00+00:00,154.4661 -2024-04-19 19:00:00+00:00,154.46565 -2024-04-19 20:00:00+00:00,154.46645 -2024-04-21 21:00:00+00:00,154.47899999999998 -2024-04-21 22:00:00+00:00,154.51579999999998 -2024-04-21 23:00:00+00:00,154.53220000000002 -2024-04-22 00:00:00+00:00,154.54985 -2024-04-22 01:00:00+00:00,154.56405 -2024-04-22 02:00:00+00:00,154.57585 -2024-04-22 03:00:00+00:00,154.5866 -2024-04-22 04:00:00+00:00,154.6019 -2024-04-22 05:00:00+00:00,154.6138 -2024-04-22 06:00:00+00:00,154.62115 -2024-04-22 07:00:00+00:00,154.62385 -2024-04-22 08:00:00+00:00,154.63304999999997 -2024-04-22 09:00:00+00:00,154.64235000000002 -2024-04-22 10:00:00+00:00,154.65055 -2024-04-22 11:00:00+00:00,154.66125 -2024-04-22 12:00:00+00:00,154.6696 -2024-04-22 13:00:00+00:00,154.67524999999998 -2024-04-22 14:00:00+00:00,154.683 -2024-04-22 15:00:00+00:00,154.6915 -2024-04-22 16:00:00+00:00,154.69915 -2024-04-22 17:00:00+00:00,154.71555 -2024-04-22 18:00:00+00:00,154.72375000000002 -2024-04-22 19:00:00+00:00,154.73364999999998 -2024-04-22 20:00:00+00:00,154.7417 -2024-04-22 21:00:00+00:00,154.75169999999997 -2024-04-22 22:00:00+00:00,154.75934999999998 -2024-04-22 23:00:00+00:00,154.7655 -2024-04-23 00:00:00+00:00,154.769 -2024-04-23 01:00:00+00:00,154.76915000000002 -2024-04-23 02:00:00+00:00,154.7736 -2024-04-23 03:00:00+00:00,154.7785 -2024-04-23 04:00:00+00:00,154.7795 -2024-04-23 05:00:00+00:00,154.77955 -2024-04-23 06:00:00+00:00,154.77985 -2024-04-23 07:00:00+00:00,154.7828 -2024-04-23 08:00:00+00:00,154.78760000000003 -2024-04-23 09:00:00+00:00,154.79255 -2024-04-23 10:00:00+00:00,154.79585 -2024-04-23 11:00:00+00:00,154.79725 -2024-04-23 12:00:00+00:00,154.79795 -2024-04-23 13:00:00+00:00,154.78924999999998 -2024-04-23 14:00:00+00:00,154.78905 -2024-04-23 15:00:00+00:00,154.78815 -2024-04-23 16:00:00+00:00,154.78764999999999 -2024-04-23 17:00:00+00:00,154.78425000000001 -2024-04-23 18:00:00+00:00,154.78154999999998 -2024-04-23 19:00:00+00:00,154.78215 -2024-04-23 20:00:00+00:00,154.78455000000002 -2024-04-23 21:00:00+00:00,154.78735 -2024-04-23 22:00:00+00:00,154.78825 -2024-04-23 23:00:00+00:00,154.78799999999998 -2024-04-24 00:00:00+00:00,154.79070000000002 -2024-04-24 01:00:00+00:00,154.7921 -2024-04-24 02:00:00+00:00,154.7946 -2024-04-24 03:00:00+00:00,154.79595 -2024-04-24 04:00:00+00:00,154.79585 -2024-04-24 05:00:00+00:00,154.79775 -2024-04-24 06:00:00+00:00,154.8042 -2024-04-24 07:00:00+00:00,154.80925000000002 -2024-04-24 08:00:00+00:00,154.81375 -2024-04-24 09:00:00+00:00,154.82845 -2024-04-24 10:00:00+00:00,154.83535 -2024-04-24 11:00:00+00:00,154.8408 -2024-04-24 12:00:00+00:00,154.847 -2024-04-24 13:00:00+00:00,154.85865 -2024-04-24 14:00:00+00:00,154.871 -2024-04-24 15:00:00+00:00,154.88569999999999 -2024-04-24 16:00:00+00:00,154.89965 -2024-04-24 17:00:00+00:00,154.925 -2024-04-24 18:00:00+00:00,154.9492 -2024-04-24 19:00:00+00:00,154.97665 -2024-04-24 20:00:00+00:00,155.00414999999998 -2024-04-24 21:00:00+00:00,155.02609999999999 -2024-04-24 22:00:00+00:00,155.0469 -2024-04-24 23:00:00+00:00,155.06795 -2024-04-25 00:00:00+00:00,155.09459999999999 -2024-04-25 01:00:00+00:00,155.12050000000002 -2024-04-25 02:00:00+00:00,155.14589999999998 -2024-04-25 03:00:00+00:00,155.17379999999997 -2024-04-25 04:00:00+00:00,155.20825 -2024-04-25 05:00:00+00:00,155.24444999999997 -2024-04-25 06:00:00+00:00,155.28105 -2024-04-25 07:00:00+00:00,155.31615 -2024-04-25 08:00:00+00:00,155.35235 -2024-04-25 09:00:00+00:00,155.3849 -2024-04-25 10:00:00+00:00,155.412 -2024-04-25 11:00:00+00:00,155.43400000000003 -2024-04-25 12:00:00+00:00,155.46224999999998 -2024-04-25 13:00:00+00:00,155.48035 -2024-04-25 14:00:00+00:00,155.4954 -2024-04-25 15:00:00+00:00,155.5064 -2024-04-25 16:00:00+00:00,155.5148 -2024-04-25 17:00:00+00:00,155.53115 -2024-04-25 18:00:00+00:00,155.5498 -2024-04-25 19:00:00+00:00,155.56795 -2024-04-25 20:00:00+00:00,155.5815 -2024-04-25 21:00:00+00:00,155.59179999999998 -2024-04-25 22:00:00+00:00,155.5986 -2024-04-25 23:00:00+00:00,155.60660000000001 -2024-04-26 00:00:00+00:00,155.6089 -2024-04-26 01:00:00+00:00,155.6056 -2024-04-26 02:00:00+00:00,155.60070000000002 -2024-04-26 03:00:00+00:00,155.61645000000001 -2024-04-26 04:00:00+00:00,155.64275 -2024-04-26 05:00:00+00:00,155.66625000000002 -2024-04-26 06:00:00+00:00,155.70794999999998 -2024-04-26 07:00:00+00:00,155.7652 -2024-04-26 08:00:00+00:00,155.8092 -2024-04-26 09:00:00+00:00,155.8611 -2024-04-26 10:00:00+00:00,155.92355 -2024-04-26 11:00:00+00:00,155.98845 -2024-04-26 12:00:00+00:00,156.05450000000002 -2024-04-26 13:00:00+00:00,156.123 -2024-04-26 14:00:00+00:00,156.20625 -2024-04-26 15:00:00+00:00,156.3057 -2024-04-26 16:00:00+00:00,156.406 -2024-04-26 17:00:00+00:00,156.5112 -2024-04-26 18:00:00+00:00,156.6189 -2024-04-26 19:00:00+00:00,156.7323 -2024-04-26 20:00:00+00:00,156.86775 -2024-04-28 21:00:00+00:00,156.98475000000002 -2024-04-28 22:00:00+00:00,157.11769999999999 -2024-04-28 23:00:00+00:00,157.2306 -2024-04-29 00:00:00+00:00,157.3304 -2024-04-29 01:00:00+00:00,157.48375 -2024-04-29 02:00:00+00:00,157.63335 -2024-04-29 03:00:00+00:00,157.76825 -2024-04-29 04:00:00+00:00,157.75584999999998 -2024-04-29 05:00:00+00:00,157.76135 -2024-04-29 06:00:00+00:00,157.77225 -2024-04-29 07:00:00+00:00,157.70954999999998 -2024-04-29 08:00:00+00:00,157.66174999999998 -2024-04-29 09:00:00+00:00,157.60195000000002 -2024-04-29 10:00:00+00:00,157.533 -2024-04-29 11:00:00+00:00,157.4635 -2024-04-29 12:00:00+00:00,157.40195 -2024-04-29 13:00:00+00:00,157.35235 -2024-04-29 14:00:00+00:00,157.30014999999997 -2024-04-29 15:00:00+00:00,157.24155000000002 -2024-04-29 16:00:00+00:00,157.11585 -2024-04-29 17:00:00+00:00,157.02425 -2024-04-29 18:00:00+00:00,156.9038 -2024-04-29 19:00:00+00:00,156.796 -2024-04-29 20:00:00+00:00,156.7042 -2024-04-29 21:00:00+00:00,156.5606 -2024-04-29 22:00:00+00:00,156.40535 -2024-04-29 23:00:00+00:00,156.25209999999998 -2024-04-30 00:00:00+00:00,156.27735 -2024-04-30 01:00:00+00:00,156.28025 -2024-04-30 02:00:00+00:00,156.2645 -2024-04-30 03:00:00+00:00,156.3233 -2024-04-30 04:00:00+00:00,156.36735000000002 -2024-04-30 05:00:00+00:00,156.42175 -2024-04-30 06:00:00+00:00,156.46890000000002 -2024-04-30 07:00:00+00:00,156.50065 -2024-04-30 08:00:00+00:00,156.52655 -2024-04-30 09:00:00+00:00,156.53725 -2024-04-30 10:00:00+00:00,156.5493 -2024-04-30 11:00:00+00:00,156.56130000000002 -2024-04-30 12:00:00+00:00,156.64255 -2024-04-30 13:00:00+00:00,156.70895 -2024-04-30 14:00:00+00:00,156.78495 -2024-04-30 15:00:00+00:00,156.86005 -2024-04-30 16:00:00+00:00,156.91535000000002 -2024-04-30 17:00:00+00:00,156.9787 -2024-04-30 18:00:00+00:00,157.05035 -2024-04-30 19:00:00+00:00,157.11905000000002 -2024-04-30 20:00:00+00:00,157.1689 -2024-04-30 21:00:00+00:00,157.21195 -2024-04-30 22:00:00+00:00,157.26105 -2024-04-30 23:00:00+00:00,157.31125 -2024-05-01 00:00:00+00:00,157.36055 -2024-05-01 01:00:00+00:00,157.40955 -2024-05-01 02:00:00+00:00,157.4622 -2024-05-01 03:00:00+00:00,157.5147 -2024-05-01 04:00:00+00:00,157.56075 -2024-05-01 05:00:00+00:00,157.6103 -2024-05-01 06:00:00+00:00,157.66275000000002 -2024-05-01 07:00:00+00:00,157.70895000000002 -2024-05-01 08:00:00+00:00,157.73385000000002 -2024-05-01 09:00:00+00:00,157.75825000000003 -2024-05-01 10:00:00+00:00,157.78685000000002 -2024-05-01 11:00:00+00:00,157.8033 -2024-05-01 12:00:00+00:00,157.8191 -2024-05-01 13:00:00+00:00,157.8218 -2024-05-01 14:00:00+00:00,157.82004999999998 -2024-05-01 15:00:00+00:00,157.81695 -2024-05-01 16:00:00+00:00,157.80705 -2024-05-01 17:00:00+00:00,157.80329999999998 -2024-05-01 18:00:00+00:00,157.77405 -2024-05-01 19:00:00+00:00,157.76085 -2024-05-01 20:00:00+00:00,157.59575 -2024-05-01 21:00:00+00:00,157.41965 -2024-05-01 22:00:00+00:00,157.29739999999998 -2024-05-01 23:00:00+00:00,157.18795 -2024-05-02 00:00:00+00:00,157.09595 -2024-05-02 01:00:00+00:00,157.00425 -2024-05-02 02:00:00+00:00,156.897 -2024-05-02 03:00:00+00:00,156.8002 -2024-05-02 04:00:00+00:00,156.69405 -2024-05-02 05:00:00+00:00,156.58315 -2024-05-02 06:00:00+00:00,156.45954999999998 -2024-05-02 07:00:00+00:00,156.3408 -2024-05-02 08:00:00+00:00,156.20909999999998 -2024-05-02 09:00:00+00:00,156.0914 -2024-05-02 10:00:00+00:00,155.96295 -2024-05-02 11:00:00+00:00,155.81765000000001 -2024-05-02 12:00:00+00:00,155.66295 -2024-05-02 13:00:00+00:00,155.50095000000002 -2024-05-02 14:00:00+00:00,155.34855 -2024-05-02 15:00:00+00:00,155.16400000000002 -2024-05-02 16:00:00+00:00,155.1303 -2024-05-02 17:00:00+00:00,155.08530000000002 -2024-05-02 18:00:00+00:00,154.9663 -2024-05-02 19:00:00+00:00,154.8396 -2024-05-02 20:00:00+00:00,154.7222 -2024-05-02 21:00:00+00:00,154.60494999999997 -2024-05-02 22:00:00+00:00,154.47740000000002 -2024-05-02 23:00:00+00:00,154.33700000000002 -2024-05-03 00:00:00+00:00,154.20284999999998 -2024-05-03 01:00:00+00:00,154.06015 -2024-05-03 02:00:00+00:00,153.9402 -2024-05-03 03:00:00+00:00,153.81555 -2024-05-03 04:00:00+00:00,153.70415 -2024-05-03 05:00:00+00:00,153.59044999999998 -2024-05-03 06:00:00+00:00,153.49984999999998 -2024-05-03 07:00:00+00:00,153.42775 -2024-05-03 08:00:00+00:00,153.36145 -2024-05-03 09:00:00+00:00,153.29395 -2024-05-03 10:00:00+00:00,153.24545 -2024-05-03 11:00:00+00:00,153.21620000000001 -2024-05-03 12:00:00+00:00,153.1379 -2024-05-03 13:00:00+00:00,153.0949 -2024-05-03 14:00:00+00:00,153.0867 -2024-05-03 15:00:00+00:00,153.0698 -2024-05-03 16:00:00+00:00,153.03 -2024-05-03 17:00:00+00:00,152.9883 -2024-05-03 18:00:00+00:00,152.97129999999999 -2024-05-03 19:00:00+00:00,152.9589 -2024-05-03 20:00:00+00:00,152.9507 -2024-05-05 21:00:00+00:00,152.94985000000003 -2024-05-05 22:00:00+00:00,152.95975 -2024-05-05 23:00:00+00:00,152.9923 -2024-05-06 00:00:00+00:00,153.0172 -2024-05-06 01:00:00+00:00,153.04590000000002 -2024-05-06 02:00:00+00:00,153.06985 -2024-05-06 03:00:00+00:00,153.10094999999998 -2024-05-06 04:00:00+00:00,153.13785000000001 -2024-05-06 05:00:00+00:00,153.18155 -2024-05-06 06:00:00+00:00,153.21105 -2024-05-06 07:00:00+00:00,153.24105 -2024-05-06 08:00:00+00:00,153.3175 -2024-05-06 09:00:00+00:00,153.3804 -2024-05-06 10:00:00+00:00,153.42635 -2024-05-06 11:00:00+00:00,153.47125 -2024-05-06 12:00:00+00:00,153.50355 -2024-05-06 13:00:00+00:00,153.54784999999998 -2024-05-06 14:00:00+00:00,153.59734999999998 -2024-05-06 15:00:00+00:00,153.64569999999998 -2024-05-06 16:00:00+00:00,153.6918 -2024-05-06 17:00:00+00:00,153.74575 -2024-05-06 18:00:00+00:00,153.77949999999998 -2024-05-06 19:00:00+00:00,153.7934 -2024-05-06 20:00:00+00:00,153.81744999999998 -2024-05-06 21:00:00+00:00,153.83415 -2024-05-06 22:00:00+00:00,153.84395 -2024-05-06 23:00:00+00:00,153.86015 -2024-05-07 00:00:00+00:00,153.86045 -2024-05-07 01:00:00+00:00,153.88205 -2024-05-07 02:00:00+00:00,153.92505 -2024-05-07 03:00:00+00:00,153.9625 -2024-05-07 04:00:00+00:00,153.99985 -2024-05-07 05:00:00+00:00,154.03795 -2024-05-07 06:00:00+00:00,154.0648 -2024-05-07 07:00:00+00:00,154.0829 -2024-05-07 08:00:00+00:00,154.12695000000002 -2024-05-07 09:00:00+00:00,154.16545000000002 -2024-05-07 10:00:00+00:00,154.19295000000002 -2024-05-07 11:00:00+00:00,154.2264 -2024-05-07 12:00:00+00:00,154.25169999999997 -2024-05-07 13:00:00+00:00,154.2765 -2024-05-07 14:00:00+00:00,154.30195 -2024-05-07 15:00:00+00:00,154.33465 -2024-05-07 16:00:00+00:00,154.36485 -2024-05-07 17:00:00+00:00,154.40225 -2024-05-07 18:00:00+00:00,154.44150000000002 -2024-05-07 19:00:00+00:00,154.46110000000002 -2024-05-07 20:00:00+00:00,154.4987 -2024-05-07 21:00:00+00:00,154.5114 -2024-05-07 22:00:00+00:00,154.5212 -2024-05-07 23:00:00+00:00,154.5324 -2024-05-08 00:00:00+00:00,154.55315000000002 -2024-05-08 01:00:00+00:00,154.58285 -2024-05-08 02:00:00+00:00,154.62365 -2024-05-08 03:00:00+00:00,154.6761 -2024-05-08 04:00:00+00:00,154.71475 -2024-05-08 05:00:00+00:00,154.74545 -2024-05-08 06:00:00+00:00,154.78484999999998 -2024-05-08 07:00:00+00:00,154.82495 -2024-05-08 08:00:00+00:00,154.87595000000002 -2024-05-08 09:00:00+00:00,154.92545 -2024-05-08 10:00:00+00:00,154.97359999999998 -2024-05-08 11:00:00+00:00,155.0185 -2024-05-08 12:00:00+00:00,155.0739 -2024-05-08 13:00:00+00:00,155.1234 -2024-05-08 14:00:00+00:00,155.1658 -2024-05-08 15:00:00+00:00,155.2053 -2024-05-08 16:00:00+00:00,155.2482 -2024-05-08 17:00:00+00:00,155.2949 -2024-05-08 18:00:00+00:00,155.33829999999998 -2024-05-08 19:00:00+00:00,155.38125 -2024-05-08 20:00:00+00:00,155.4131 -2024-05-08 21:00:00+00:00,155.43284999999997 -2024-05-08 22:00:00+00:00,155.45415 -2024-05-08 23:00:00+00:00,155.46470000000002 -2024-05-09 00:00:00+00:00,155.48729999999998 -2024-05-09 01:00:00+00:00,155.5075 -2024-05-09 02:00:00+00:00,155.5243 -2024-05-09 03:00:00+00:00,155.5355 -2024-05-09 04:00:00+00:00,155.5426 -2024-05-09 05:00:00+00:00,155.5542 -2024-05-09 06:00:00+00:00,155.5729 -2024-05-09 07:00:00+00:00,155.5903 -2024-05-09 08:00:00+00:00,155.60215 -2024-05-09 09:00:00+00:00,155.61575 -2024-05-09 10:00:00+00:00,155.6321 -2024-05-09 11:00:00+00:00,155.6547 -2024-05-09 12:00:00+00:00,155.66245 -2024-05-09 13:00:00+00:00,155.66754999999998 -2024-05-09 14:00:00+00:00,155.66490000000002 -2024-05-09 15:00:00+00:00,155.6673 -2024-05-09 16:00:00+00:00,155.6722 -2024-05-09 17:00:00+00:00,155.6733 -2024-05-09 18:00:00+00:00,155.6661 -2024-05-09 19:00:00+00:00,155.669 -2024-05-09 20:00:00+00:00,155.66165 -2024-05-09 21:00:00+00:00,155.65655 -2024-05-09 22:00:00+00:00,155.64455 -2024-05-09 23:00:00+00:00,155.63675 -2024-05-10 00:00:00+00:00,155.63475 -2024-05-10 01:00:00+00:00,155.6378 -2024-05-10 02:00:00+00:00,155.63785000000001 -2024-05-10 03:00:00+00:00,155.63245 -2024-05-10 04:00:00+00:00,155.62375 -2024-05-10 05:00:00+00:00,155.60945 -2024-05-10 06:00:00+00:00,155.5972 -2024-05-10 07:00:00+00:00,155.58775 -2024-05-10 08:00:00+00:00,155.5884 -2024-05-10 09:00:00+00:00,155.59165000000002 -2024-05-10 10:00:00+00:00,155.60095 -2024-05-10 11:00:00+00:00,155.60385 -2024-05-10 12:00:00+00:00,155.61370000000002 -2024-05-10 13:00:00+00:00,155.61795 -2024-05-10 14:00:00+00:00,155.6393 -2024-05-10 15:00:00+00:00,155.66035 -2024-05-10 16:00:00+00:00,155.6778 -2024-05-10 17:00:00+00:00,155.6961 -2024-05-10 18:00:00+00:00,155.7206 -2024-05-10 19:00:00+00:00,155.7397 -2024-05-10 20:00:00+00:00,155.7516 -2024-05-12 21:00:00+00:00,155.7525 -2024-05-12 22:00:00+00:00,155.75375 -2024-05-12 23:00:00+00:00,155.75895 -2024-05-13 00:00:00+00:00,155.77175 -2024-05-13 01:00:00+00:00,155.78244999999998 -2024-05-13 02:00:00+00:00,155.78605 -2024-05-13 03:00:00+00:00,155.78969999999998 -2024-05-13 04:00:00+00:00,155.7942 -2024-05-13 05:00:00+00:00,155.80055 -2024-05-13 06:00:00+00:00,155.8055 -2024-05-13 07:00:00+00:00,155.8126 -2024-05-13 08:00:00+00:00,155.81504999999999 -2024-05-13 09:00:00+00:00,155.82765 -2024-05-13 10:00:00+00:00,155.8278 -2024-05-13 11:00:00+00:00,155.82895 -2024-05-13 12:00:00+00:00,155.82535000000001 -2024-05-13 13:00:00+00:00,155.82525 -2024-05-13 14:00:00+00:00,155.8287 -2024-05-13 15:00:00+00:00,155.84865000000002 -2024-05-13 16:00:00+00:00,155.87105 -2024-05-13 17:00:00+00:00,155.89724999999999 -2024-05-13 18:00:00+00:00,155.9181 -2024-05-13 19:00:00+00:00,155.9373 -2024-05-13 20:00:00+00:00,155.9519 -2024-05-13 21:00:00+00:00,155.9703 -2024-05-13 22:00:00+00:00,155.9945 -2024-05-13 23:00:00+00:00,156.01780000000002 -2024-05-14 00:00:00+00:00,156.04215 -2024-05-14 01:00:00+00:00,156.07135 -2024-05-14 02:00:00+00:00,156.10135 -2024-05-14 03:00:00+00:00,156.12785000000002 -2024-05-14 04:00:00+00:00,156.15465 -2024-05-14 05:00:00+00:00,156.18115 -2024-05-14 06:00:00+00:00,156.20985 -2024-05-14 07:00:00+00:00,156.23915000000002 -2024-05-14 08:00:00+00:00,156.27405 -2024-05-14 09:00:00+00:00,156.29975 -2024-05-14 10:00:00+00:00,156.32525 -2024-05-14 11:00:00+00:00,156.339 -2024-05-14 12:00:00+00:00,156.3571 -2024-05-14 13:00:00+00:00,156.36325000000002 -2024-05-14 14:00:00+00:00,156.3728 -2024-05-14 15:00:00+00:00,156.38719999999998 -2024-05-14 16:00:00+00:00,156.4004 -2024-05-14 17:00:00+00:00,156.4153 -2024-05-14 18:00:00+00:00,156.4257 -2024-05-14 19:00:00+00:00,156.43734999999998 -2024-05-14 20:00:00+00:00,156.44414999999998 -2024-05-14 21:00:00+00:00,156.44414999999998 -2024-05-14 22:00:00+00:00,156.44375 -2024-05-14 23:00:00+00:00,156.44914999999997 -2024-05-15 00:00:00+00:00,156.44815 -2024-05-15 01:00:00+00:00,156.44655 -2024-05-15 02:00:00+00:00,156.44695000000002 -2024-05-15 03:00:00+00:00,156.44355 -2024-05-15 04:00:00+00:00,156.43875 -2024-05-15 05:00:00+00:00,156.43294999999998 -2024-05-15 06:00:00+00:00,156.42434999999998 -2024-05-15 07:00:00+00:00,156.40664999999998 -2024-05-15 08:00:00+00:00,156.36005 -2024-05-15 09:00:00+00:00,156.33395 -2024-05-15 10:00:00+00:00,156.3014 -2024-05-15 11:00:00+00:00,156.25995 -2024-05-15 12:00:00+00:00,156.19174999999998 -2024-05-15 13:00:00+00:00,156.15355 -2024-05-15 14:00:00+00:00,156.09744999999998 -2024-05-15 15:00:00+00:00,156.0256 -2024-05-15 16:00:00+00:00,155.95315 -2024-05-15 17:00:00+00:00,155.86935 -2024-05-15 18:00:00+00:00,155.7929 -2024-05-15 19:00:00+00:00,155.7154 -2024-05-15 20:00:00+00:00,155.6411 -2024-05-15 21:00:00+00:00,155.56234999999998 -2024-05-15 22:00:00+00:00,155.46734999999998 -2024-05-15 23:00:00+00:00,155.36255 -2024-05-16 00:00:00+00:00,155.22795000000002 -2024-05-16 01:00:00+00:00,155.1209 -2024-05-16 02:00:00+00:00,155.00845 -2024-05-16 03:00:00+00:00,154.90225 -2024-05-16 04:00:00+00:00,154.81665 -2024-05-16 05:00:00+00:00,154.73415 -2024-05-16 06:00:00+00:00,154.66535000000002 -2024-05-16 07:00:00+00:00,154.6023 -2024-05-16 08:00:00+00:00,154.58190000000002 -2024-05-16 09:00:00+00:00,154.52855 -2024-05-16 10:00:00+00:00,154.49645 -2024-05-16 11:00:00+00:00,154.48905 -2024-05-16 12:00:00+00:00,154.50555 -2024-05-16 13:00:00+00:00,154.54125 -2024-05-16 14:00:00+00:00,154.5609 -2024-05-16 15:00:00+00:00,154.5752 -2024-05-16 16:00:00+00:00,154.59325 -2024-05-16 17:00:00+00:00,154.6151 -2024-05-16 18:00:00+00:00,154.65355000000002 -2024-05-16 19:00:00+00:00,154.70954999999998 -2024-05-16 20:00:00+00:00,154.79604999999998 -2024-05-16 21:00:00+00:00,154.8596 -2024-05-16 22:00:00+00:00,154.92839999999998 -2024-05-16 23:00:00+00:00,154.9998 -2024-05-17 00:00:00+00:00,155.0754 -2024-05-17 01:00:00+00:00,155.1575 -2024-05-17 02:00:00+00:00,155.23309999999998 -2024-05-17 03:00:00+00:00,155.30194999999998 -2024-05-17 04:00:00+00:00,155.3567 -2024-05-17 05:00:00+00:00,155.41295 -2024-05-17 06:00:00+00:00,155.46165000000002 -2024-05-17 07:00:00+00:00,155.509 -2024-05-17 08:00:00+00:00,155.5368 -2024-05-17 09:00:00+00:00,155.55540000000002 -2024-05-17 10:00:00+00:00,155.5824 -2024-05-17 11:00:00+00:00,155.6124 -2024-05-17 12:00:00+00:00,155.63865 -2024-05-17 13:00:00+00:00,155.6633 -2024-05-17 14:00:00+00:00,155.66705 -2024-05-17 15:00:00+00:00,155.67505 -2024-05-17 16:00:00+00:00,155.68645 -2024-05-17 17:00:00+00:00,155.70115 -2024-05-17 18:00:00+00:00,155.7158 -2024-05-17 19:00:00+00:00,155.72944999999999 -2024-05-17 20:00:00+00:00,155.73905000000002 -2024-05-19 21:00:00+00:00,155.73045000000002 -2024-05-19 22:00:00+00:00,155.7217 -2024-05-19 23:00:00+00:00,155.72039999999998 -2024-05-20 00:00:00+00:00,155.72365 -2024-05-20 01:00:00+00:00,155.72695000000002 -2024-05-20 02:00:00+00:00,155.73534999999998 -2024-05-20 03:00:00+00:00,155.73045000000002 -2024-05-20 04:00:00+00:00,155.72555000000003 -2024-05-20 05:00:00+00:00,155.71904999999998 -2024-05-20 06:00:00+00:00,155.71425 -2024-05-20 07:00:00+00:00,155.70795 -2024-05-20 08:00:00+00:00,155.70255 -2024-05-20 09:00:00+00:00,155.7009 -2024-05-20 10:00:00+00:00,155.71599999999998 -2024-05-20 11:00:00+00:00,155.72445 -2024-05-20 12:00:00+00:00,155.7509 -2024-05-20 13:00:00+00:00,155.7718 -2024-05-20 14:00:00+00:00,155.79635 -2024-05-20 17:00:00+00:00,155.8214 -2024-05-20 18:00:00+00:00,155.8528 -2024-05-20 19:00:00+00:00,155.8849 -2024-05-20 20:00:00+00:00,155.9136 -2024-05-20 21:00:00+00:00,155.93685 -2024-05-20 22:00:00+00:00,155.95655 -2024-05-20 23:00:00+00:00,155.98335 -2024-05-21 00:00:00+00:00,156.01395 -2024-05-21 01:00:00+00:00,156.05169999999998 -2024-05-21 02:00:00+00:00,156.08499999999998 -2024-05-21 03:00:00+00:00,156.1237 -2024-05-21 04:00:00+00:00,156.1589 -2024-05-21 05:00:00+00:00,156.1913 -2024-05-21 06:00:00+00:00,156.21965 -2024-05-21 07:00:00+00:00,156.24585 -2024-05-21 08:00:00+00:00,156.27345 -2024-05-21 09:00:00+00:00,156.2919 -2024-05-21 10:00:00+00:00,156.29515 -2024-05-21 11:00:00+00:00,156.30265 -2024-05-21 12:00:00+00:00,156.3065 -2024-05-21 13:00:00+00:00,156.3003 -2024-05-21 14:00:00+00:00,156.28439999999998 -2024-05-21 15:00:00+00:00,156.2739 -2024-05-21 16:00:00+00:00,156.2661 -2024-05-21 17:00:00+00:00,156.26555000000002 -2024-05-21 18:00:00+00:00,156.26285000000001 -2024-05-21 19:00:00+00:00,156.25125 -2024-05-21 20:00:00+00:00,156.23965 -2024-05-21 21:00:00+00:00,156.22335 -2024-05-21 22:00:00+00:00,156.21095 -2024-05-21 23:00:00+00:00,156.20055 -2024-05-22 00:00:00+00:00,156.19165 -2024-05-22 01:00:00+00:00,156.1855 -2024-05-22 02:00:00+00:00,156.18805 -2024-05-22 03:00:00+00:00,156.19185 -2024-05-22 04:00:00+00:00,156.19655 -2024-05-22 05:00:00+00:00,156.20555000000002 -2024-05-22 06:00:00+00:00,156.21335 -2024-05-22 07:00:00+00:00,156.22195 -2024-05-22 08:00:00+00:00,156.23354999999998 -2024-05-22 09:00:00+00:00,156.25295 -2024-05-22 10:00:00+00:00,156.27665 -2024-05-22 11:00:00+00:00,156.30175 -2024-05-22 12:00:00+00:00,156.32315 -2024-05-22 13:00:00+00:00,156.33395000000002 -2024-05-22 14:00:00+00:00,156.34945 -2024-05-22 15:00:00+00:00,156.3661 -2024-05-22 16:00:00+00:00,156.3809 -2024-05-22 17:00:00+00:00,156.3979 -2024-05-22 18:00:00+00:00,156.4202 -2024-05-22 19:00:00+00:00,156.442 -2024-05-22 20:00:00+00:00,156.4699 -2024-05-22 21:00:00+00:00,156.4922 -2024-05-22 22:00:00+00:00,156.5144 -2024-05-22 23:00:00+00:00,156.53564999999998 -2024-05-23 00:00:00+00:00,156.55810000000002 -2024-05-23 01:00:00+00:00,156.58049999999997 -2024-05-23 02:00:00+00:00,156.59840000000003 -2024-05-23 03:00:00+00:00,156.6162 -2024-05-23 04:00:00+00:00,156.6285 -2024-05-23 05:00:00+00:00,156.64265 -2024-05-23 06:00:00+00:00,156.65375 -2024-05-23 07:00:00+00:00,156.6625 -2024-05-23 08:00:00+00:00,156.673 -2024-05-23 09:00:00+00:00,156.68445 -2024-05-23 10:00:00+00:00,156.69379999999998 -2024-05-23 11:00:00+00:00,156.69815 -2024-05-23 12:00:00+00:00,156.71115 -2024-05-23 13:00:00+00:00,156.7409 -2024-05-23 14:00:00+00:00,156.75889999999998 -2024-05-23 15:00:00+00:00,156.77635 -2024-05-23 16:00:00+00:00,156.78735 -2024-05-23 17:00:00+00:00,156.7994 -2024-05-23 18:00:00+00:00,156.80694999999997 -2024-05-23 19:00:00+00:00,156.81405 -2024-05-23 20:00:00+00:00,156.82125 -2024-05-23 21:00:00+00:00,156.8323 -2024-05-23 22:00:00+00:00,156.84605 -2024-05-23 23:00:00+00:00,156.8577 -2024-05-24 00:00:00+00:00,156.87345 -2024-05-24 01:00:00+00:00,156.89225000000002 -2024-05-24 02:00:00+00:00,156.91315 -2024-05-24 03:00:00+00:00,156.92795 -2024-05-24 04:00:00+00:00,156.94405 -2024-05-24 05:00:00+00:00,156.9648 -2024-05-24 06:00:00+00:00,156.98125 -2024-05-24 07:00:00+00:00,157.00445 -2024-05-24 08:00:00+00:00,157.0181 -2024-05-24 09:00:00+00:00,157.0145 -2024-05-24 10:00:00+00:00,157.01375000000002 -2024-05-24 11:00:00+00:00,157.01245 -2024-05-24 12:00:00+00:00,157.01370000000003 -2024-05-24 13:00:00+00:00,157.02025 -2024-05-24 14:00:00+00:00,157.0248 -2024-05-24 15:00:00+00:00,157.02624999999998 -2024-05-24 16:00:00+00:00,157.0249 -2024-05-24 17:00:00+00:00,157.02435 -2024-05-24 18:00:00+00:00,157.02280000000002 -2024-05-24 19:00:00+00:00,157.01985 -2024-05-24 20:00:00+00:00,157.0177 -2024-05-26 21:00:00+00:00,157.00885 -2024-05-26 22:00:00+00:00,156.99875 -2024-05-26 23:00:00+00:00,156.98950000000002 -2024-05-27 00:00:00+00:00,156.9771 -2024-05-27 01:00:00+00:00,156.96345000000002 -2024-05-27 02:00:00+00:00,156.94785000000002 -2024-05-27 03:00:00+00:00,156.93040000000002 -2024-05-27 04:00:00+00:00,156.91785 -2024-05-27 05:00:00+00:00,156.90519999999998 -2024-05-27 06:00:00+00:00,156.89745 -2024-05-27 07:00:00+00:00,156.8913 -2024-05-27 08:00:00+00:00,156.88500000000002 -2024-05-27 09:00:00+00:00,156.876 -2024-05-27 10:00:00+00:00,156.86955 -2024-05-27 11:00:00+00:00,156.86815 -2024-05-27 12:00:00+00:00,156.8634 -2024-05-27 13:00:00+00:00,156.85655 -2024-05-27 14:00:00+00:00,156.844 -2024-05-27 15:00:00+00:00,156.8408 -2024-05-27 16:00:00+00:00,156.83605000000003 -2024-05-27 17:00:00+00:00,156.83365 -2024-05-27 18:00:00+00:00,156.83415 -2024-05-27 19:00:00+00:00,156.8349 -2024-05-27 20:00:00+00:00,156.83825 -2024-05-27 21:00:00+00:00,156.84255000000002 -2024-05-27 22:00:00+00:00,156.85229999999999 -2024-05-27 23:00:00+00:00,156.85899999999998 -2024-05-28 00:00:00+00:00,156.86520000000002 -2024-05-28 01:00:00+00:00,156.86595 -2024-05-28 02:00:00+00:00,156.86245 -2024-05-28 03:00:00+00:00,156.84994999999998 -2024-05-28 04:00:00+00:00,156.837 -2024-05-28 05:00:00+00:00,156.83415 -2024-05-28 06:00:00+00:00,156.8354 -2024-05-28 07:00:00+00:00,156.8361 -2024-05-28 08:00:00+00:00,156.83845000000002 -2024-05-28 09:00:00+00:00,156.8446 -2024-05-28 10:00:00+00:00,156.85155 -2024-05-28 11:00:00+00:00,156.84824999999998 -2024-05-28 12:00:00+00:00,156.83724999999998 -2024-05-28 13:00:00+00:00,156.8349 -2024-05-28 14:00:00+00:00,156.83465 -2024-05-28 15:00:00+00:00,156.8358 -2024-05-28 16:00:00+00:00,156.83925 -2024-05-28 17:00:00+00:00,156.84935 -2024-05-28 18:00:00+00:00,156.8609 -2024-05-28 19:00:00+00:00,156.87585 -2024-05-28 20:00:00+00:00,156.89045 -2024-05-28 21:00:00+00:00,156.9092 -2024-05-28 22:00:00+00:00,156.9323 -2024-05-28 23:00:00+00:00,156.96305 -2024-05-29 00:00:00+00:00,156.99725 -2024-05-29 01:00:00+00:00,157.0176 -2024-05-29 02:00:00+00:00,157.03799999999998 -2024-05-29 03:00:00+00:00,157.0591 -2024-05-29 04:00:00+00:00,157.0784 -2024-05-29 05:00:00+00:00,157.0925 -2024-05-29 06:00:00+00:00,157.1042 -2024-05-29 07:00:00+00:00,157.1217 -2024-05-29 08:00:00+00:00,157.1427 -2024-05-29 09:00:00+00:00,157.1593 -2024-05-29 10:00:00+00:00,157.17755 -2024-05-29 11:00:00+00:00,157.19575 -2024-05-29 12:00:00+00:00,157.20725 -2024-05-29 13:00:00+00:00,157.21955 -2024-05-29 14:00:00+00:00,157.23675 -2024-05-29 15:00:00+00:00,157.26125 -2024-05-29 16:00:00+00:00,157.28605 -2024-05-29 17:00:00+00:00,157.31005 -2024-05-29 18:00:00+00:00,157.33274999999998 -2024-05-29 19:00:00+00:00,157.35354999999998 -2024-05-29 20:00:00+00:00,157.36825 -2024-05-29 21:00:00+00:00,157.38625 -2024-05-29 22:00:00+00:00,157.40375 -2024-05-29 23:00:00+00:00,157.41934999999998 -2024-05-30 00:00:00+00:00,157.42495 -2024-05-30 01:00:00+00:00,157.43635 -2024-05-30 02:00:00+00:00,157.4485 -2024-05-30 03:00:00+00:00,157.4599 -2024-05-30 04:00:00+00:00,157.4642 -2024-05-30 05:00:00+00:00,157.45454999999998 -2024-05-30 06:00:00+00:00,157.43005 -2024-05-30 07:00:00+00:00,157.41495 -2024-05-30 08:00:00+00:00,157.40235 -2024-05-30 09:00:00+00:00,157.38115 -2024-05-30 10:00:00+00:00,157.35235 -2024-05-30 11:00:00+00:00,157.30755 -2024-05-30 12:00:00+00:00,157.25560000000002 -2024-05-30 13:00:00+00:00,157.21035 -2024-05-30 14:00:00+00:00,157.15654999999998 -2024-05-30 15:00:00+00:00,157.10424999999998 -2024-05-30 16:00:00+00:00,157.05575000000002 -2024-05-30 17:00:00+00:00,157.01305 -2024-05-30 18:00:00+00:00,156.97224999999997 -2024-05-30 19:00:00+00:00,156.9329 -2024-05-30 20:00:00+00:00,156.9053 -2024-05-30 21:00:00+00:00,156.872 -2024-05-30 22:00:00+00:00,156.84494999999998 -2024-05-30 23:00:00+00:00,156.8256 -2024-05-31 00:00:00+00:00,156.80339999999998 -2024-05-31 01:00:00+00:00,156.78905 -2024-05-31 02:00:00+00:00,156.79244999999997 -2024-05-31 03:00:00+00:00,156.78405 -2024-05-31 04:00:00+00:00,156.77205 -2024-05-31 05:00:00+00:00,156.7664 -2024-05-31 06:00:00+00:00,156.767 -2024-05-31 07:00:00+00:00,156.78765 -2024-05-31 08:00:00+00:00,156.8202 -2024-05-31 09:00:00+00:00,156.85035 -2024-05-31 10:00:00+00:00,156.88275000000002 -2024-05-31 11:00:00+00:00,156.90900000000002 -2024-05-31 12:00:00+00:00,156.9172 -2024-05-31 13:00:00+00:00,156.91455000000002 -2024-05-31 14:00:00+00:00,156.93125 -2024-05-31 15:00:00+00:00,156.9489 -2024-05-31 16:00:00+00:00,156.96710000000002 -2024-05-31 17:00:00+00:00,156.9888 -2024-05-31 18:00:00+00:00,157.012 -2024-05-31 19:00:00+00:00,157.02569999999997 -2024-05-31 20:00:00+00:00,157.0537 -2024-06-02 21:00:00+00:00,157.08115 -2024-06-02 22:00:00+00:00,157.10520000000002 -2024-06-02 23:00:00+00:00,157.1243 -2024-06-03 00:00:00+00:00,157.1435 -2024-06-03 01:00:00+00:00,157.15635 -2024-06-03 02:00:00+00:00,157.17145 -2024-06-03 03:00:00+00:00,157.18535 -2024-06-03 04:00:00+00:00,157.19105 -2024-06-03 05:00:00+00:00,157.195 -2024-06-03 06:00:00+00:00,157.19570000000002 -2024-06-03 07:00:00+00:00,157.1943 -2024-06-03 08:00:00+00:00,157.20409999999998 -2024-06-03 09:00:00+00:00,157.22269999999997 -2024-06-03 10:00:00+00:00,157.20170000000002 -2024-06-03 11:00:00+00:00,157.18490000000003 -2024-06-03 12:00:00+00:00,157.1651 -2024-06-03 13:00:00+00:00,157.1373 -2024-06-03 14:00:00+00:00,157.08409999999998 -2024-06-03 15:00:00+00:00,157.02275 -2024-06-03 16:00:00+00:00,156.96095 -2024-06-03 17:00:00+00:00,156.90884999999997 -2024-06-03 18:00:00+00:00,156.8553 -2024-06-03 19:00:00+00:00,156.8079 -2024-06-03 20:00:00+00:00,156.75754999999998 -2024-06-03 21:00:00+00:00,156.7101 -2024-06-03 22:00:00+00:00,156.6562 -2024-06-03 23:00:00+00:00,156.58975 -2024-06-04 00:00:00+00:00,156.53865000000002 -2024-06-04 01:00:00+00:00,156.4912 -2024-06-04 02:00:00+00:00,156.44719999999998 -2024-06-04 03:00:00+00:00,156.4097 -2024-06-04 04:00:00+00:00,156.37179999999998 -2024-06-04 05:00:00+00:00,156.3282 -2024-06-04 06:00:00+00:00,156.28879999999998 -2024-06-04 07:00:00+00:00,156.2154 -2024-06-04 08:00:00+00:00,156.1414 -2024-06-04 09:00:00+00:00,156.0658 -2024-06-04 10:00:00+00:00,156.00240000000002 -2024-06-04 11:00:00+00:00,155.94395 -2024-06-04 12:00:00+00:00,155.89679999999998 -2024-06-04 13:00:00+00:00,155.8317 -2024-06-04 14:00:00+00:00,155.76479999999998 -2024-06-04 15:00:00+00:00,155.69670000000002 -2024-06-04 16:00:00+00:00,155.63185000000001 -2024-06-04 17:00:00+00:00,155.5564 -2024-06-04 18:00:00+00:00,155.48395 -2024-06-04 19:00:00+00:00,155.41795 -2024-06-04 20:00:00+00:00,155.34324999999998 -2024-06-04 21:00:00+00:00,155.26195 -2024-06-04 22:00:00+00:00,155.1861 -2024-06-04 23:00:00+00:00,155.1225 -2024-06-05 00:00:00+00:00,155.0689 -2024-06-05 01:00:00+00:00,155.0272 -2024-06-05 02:00:00+00:00,155.0037 -2024-06-05 03:00:00+00:00,155.0087 -2024-06-05 04:00:00+00:00,155.02280000000002 -2024-06-05 05:00:00+00:00,155.04749999999999 -2024-06-05 06:00:00+00:00,155.0957 -2024-06-05 07:00:00+00:00,155.15935 -2024-06-05 08:00:00+00:00,155.21560000000002 -2024-06-05 09:00:00+00:00,155.27345 -2024-06-05 10:00:00+00:00,155.33275 -2024-06-05 11:00:00+00:00,155.39634999999998 -2024-06-05 12:00:00+00:00,155.46184999999997 -2024-06-05 13:00:00+00:00,155.51895 -2024-06-05 14:00:00+00:00,155.59925 -2024-06-05 15:00:00+00:00,155.67114999999998 -2024-06-05 16:00:00+00:00,155.73255 -2024-06-05 17:00:00+00:00,155.79585 -2024-06-05 18:00:00+00:00,155.8578 -2024-06-05 19:00:00+00:00,155.90645 -2024-06-05 20:00:00+00:00,155.9505 -2024-06-05 21:00:00+00:00,155.9853 -2024-06-05 22:00:00+00:00,156.0055 -2024-06-05 23:00:00+00:00,156.0267 -2024-06-06 00:00:00+00:00,156.0299 -2024-06-06 01:00:00+00:00,156.02995 -2024-06-06 02:00:00+00:00,156.01765 -2024-06-06 03:00:00+00:00,155.98899999999998 -2024-06-06 04:00:00+00:00,155.96329999999998 -2024-06-06 05:00:00+00:00,155.9567 -2024-06-06 06:00:00+00:00,155.95645 -2024-06-06 07:00:00+00:00,155.96315 -2024-06-06 08:00:00+00:00,155.96645 -2024-06-06 09:00:00+00:00,155.97775000000001 -2024-06-06 10:00:00+00:00,155.96385 -2024-06-06 11:00:00+00:00,155.96295 -2024-06-06 12:00:00+00:00,155.9709 -2024-06-06 13:00:00+00:00,155.97255 -2024-06-06 14:00:00+00:00,155.96914999999998 -2024-06-06 15:00:00+00:00,155.96370000000002 -2024-06-06 16:00:00+00:00,155.94834999999998 -2024-06-06 17:00:00+00:00,155.93349999999998 -2024-06-06 18:00:00+00:00,155.9231 -2024-06-06 19:00:00+00:00,155.908 -2024-06-06 20:00:00+00:00,155.90640000000002 -2024-06-06 21:00:00+00:00,155.90475 -2024-06-06 22:00:00+00:00,155.90325 -2024-06-06 23:00:00+00:00,155.9086 -2024-06-07 00:00:00+00:00,155.9106 -2024-06-07 01:00:00+00:00,155.89935 -2024-06-07 02:00:00+00:00,155.8868 -2024-06-07 03:00:00+00:00,155.86039999999997 -2024-06-07 04:00:00+00:00,155.83135 -2024-06-07 05:00:00+00:00,155.80855 -2024-06-07 06:00:00+00:00,155.7747 -2024-06-07 07:00:00+00:00,155.73595 -2024-06-07 08:00:00+00:00,155.68970000000002 -2024-06-07 09:00:00+00:00,155.65715 -2024-06-07 10:00:00+00:00,155.63445000000002 -2024-06-07 11:00:00+00:00,155.61495000000002 -2024-06-07 12:00:00+00:00,155.66385 -2024-06-07 13:00:00+00:00,155.7236 -2024-06-07 14:00:00+00:00,155.78315 -2024-06-07 15:00:00+00:00,155.83245000000002 -2024-06-07 16:00:00+00:00,155.88484999999997 -2024-06-07 17:00:00+00:00,155.93445 -2024-06-07 18:00:00+00:00,155.98525 -2024-06-07 19:00:00+00:00,156.03855000000001 -2024-06-07 20:00:00+00:00,156.08845000000002 -2024-06-09 21:00:00+00:00,156.14204999999998 -2024-06-09 22:00:00+00:00,156.19655 -2024-06-09 23:00:00+00:00,156.25025 -2024-06-10 00:00:00+00:00,156.3132 -2024-06-10 01:00:00+00:00,156.3826 -2024-06-10 02:00:00+00:00,156.46359999999999 -2024-06-10 03:00:00+00:00,156.55025 -2024-06-10 04:00:00+00:00,156.63864999999998 -2024-06-10 05:00:00+00:00,156.71769999999998 -2024-06-10 06:00:00+00:00,156.7942 -2024-06-10 07:00:00+00:00,156.86475 -2024-06-10 08:00:00+00:00,156.87365 -2024-06-10 09:00:00+00:00,156.87075 -2024-06-10 10:00:00+00:00,156.8687 -2024-06-10 11:00:00+00:00,156.88295 -2024-06-10 12:00:00+00:00,156.89855 -2024-06-10 13:00:00+00:00,156.91315 -2024-06-10 14:00:00+00:00,156.92645 -2024-06-10 15:00:00+00:00,156.93625 -2024-06-10 16:00:00+00:00,156.9474 -2024-06-10 17:00:00+00:00,156.9598 -2024-06-10 18:00:00+00:00,156.96865 -2024-06-10 19:00:00+00:00,156.97805 -2024-06-10 20:00:00+00:00,156.98764999999997 -2024-06-10 21:00:00+00:00,156.99345 -2024-06-10 22:00:00+00:00,156.99624999999997 -2024-06-10 23:00:00+00:00,156.99085 -2024-06-11 00:00:00+00:00,156.99535 -2024-06-11 01:00:00+00:00,157.00305 -2024-06-11 02:00:00+00:00,157.01225 -2024-06-11 03:00:00+00:00,157.02315000000002 -2024-06-11 04:00:00+00:00,157.03855000000001 -2024-06-11 05:00:00+00:00,157.0576 -2024-06-11 06:00:00+00:00,157.08020000000002 -2024-06-11 07:00:00+00:00,157.10315 -2024-06-11 08:00:00+00:00,157.11535 -2024-06-11 09:00:00+00:00,157.1328 -2024-06-11 10:00:00+00:00,157.14249999999998 -2024-06-11 11:00:00+00:00,157.1506 -2024-06-11 12:00:00+00:00,157.14555000000001 -2024-06-11 13:00:00+00:00,157.15235 -2024-06-11 14:00:00+00:00,157.1643 -2024-06-11 15:00:00+00:00,157.17985 -2024-06-11 16:00:00+00:00,157.1973 -2024-06-11 17:00:00+00:00,157.20235000000002 -2024-06-11 18:00:00+00:00,157.2013 -2024-06-11 19:00:00+00:00,157.2035 -2024-06-11 20:00:00+00:00,157.1997 -2024-06-11 21:00:00+00:00,157.19490000000002 -2024-06-11 22:00:00+00:00,157.18765000000002 -2024-06-11 23:00:00+00:00,157.18234999999999 -2024-06-12 00:00:00+00:00,157.1782 -2024-06-12 01:00:00+00:00,157.1711 -2024-06-12 02:00:00+00:00,157.16645 -2024-06-12 03:00:00+00:00,157.15855000000002 -2024-06-12 04:00:00+00:00,157.15955 -2024-06-12 05:00:00+00:00,157.1594 -2024-06-12 06:00:00+00:00,157.1689 -2024-06-12 07:00:00+00:00,157.17704999999998 -2024-06-12 08:00:00+00:00,157.19755 -2024-06-12 09:00:00+00:00,157.20635000000001 -2024-06-12 10:00:00+00:00,157.20675 -2024-06-12 11:00:00+00:00,157.2072 -2024-06-12 12:00:00+00:00,157.14624999999998 -2024-06-12 13:00:00+00:00,157.0792 -2024-06-12 14:00:00+00:00,157.01755 -2024-06-12 15:00:00+00:00,156.9574 -2024-06-12 16:00:00+00:00,156.8904 -2024-06-12 17:00:00+00:00,156.8295 -2024-06-12 18:00:00+00:00,156.80249999999998 -2024-06-12 19:00:00+00:00,156.78875 -2024-06-12 20:00:00+00:00,156.7662 -2024-06-12 21:00:00+00:00,156.73915 -2024-06-12 22:00:00+00:00,156.7201 -2024-06-12 23:00:00+00:00,156.701 -2024-06-13 00:00:00+00:00,156.6787 -2024-06-13 01:00:00+00:00,156.65820000000002 -2024-06-13 02:00:00+00:00,156.64375 -2024-06-13 03:00:00+00:00,156.63090000000003 -2024-06-13 04:00:00+00:00,156.618 -2024-06-13 05:00:00+00:00,156.60629999999998 -2024-06-13 06:00:00+00:00,156.5975 -2024-06-13 07:00:00+00:00,156.59459999999999 -2024-06-13 08:00:00+00:00,156.6494 -2024-06-13 09:00:00+00:00,156.71959999999999 -2024-06-13 10:00:00+00:00,156.7893 -2024-06-13 11:00:00+00:00,156.85565000000003 -2024-06-13 12:00:00+00:00,156.91694999999999 -2024-06-13 13:00:00+00:00,156.9808 -2024-06-13 14:00:00+00:00,156.99775 -2024-06-13 15:00:00+00:00,156.9945 -2024-06-13 16:00:00+00:00,157.00039999999998 -2024-06-13 17:00:00+00:00,157.01745 -2024-06-13 18:00:00+00:00,157.022 -2024-06-13 19:00:00+00:00,157.03505 -2024-06-13 20:00:00+00:00,157.04555 -2024-06-13 21:00:00+00:00,157.05424999999997 -2024-06-13 22:00:00+00:00,157.0585 -2024-06-13 23:00:00+00:00,157.0644 -2024-06-14 00:00:00+00:00,157.07229999999998 -2024-06-14 01:00:00+00:00,157.081 -2024-06-14 02:00:00+00:00,157.0898 -2024-06-14 03:00:00+00:00,157.11690000000002 -2024-06-14 04:00:00+00:00,157.1513 -2024-06-14 05:00:00+00:00,157.1995 -2024-06-14 06:00:00+00:00,157.23870000000002 -2024-06-14 07:00:00+00:00,157.26184999999998 -2024-06-14 08:00:00+00:00,157.28519999999997 -2024-06-14 09:00:00+00:00,157.28090000000003 -2024-06-14 10:00:00+00:00,157.2817 -2024-06-14 11:00:00+00:00,157.29615 -2024-06-14 12:00:00+00:00,157.31625000000003 -2024-06-14 13:00:00+00:00,157.33319999999998 -2024-06-14 14:00:00+00:00,157.3574 -2024-06-14 15:00:00+00:00,157.3686 -2024-06-14 16:00:00+00:00,157.38400000000001 -2024-06-14 17:00:00+00:00,157.39935 -2024-06-14 18:00:00+00:00,157.40915 -2024-06-14 19:00:00+00:00,157.41815000000003 -2024-06-14 20:00:00+00:00,157.4284 -2024-06-16 21:00:00+00:00,157.43295 -2024-06-16 22:00:00+00:00,157.44255 -2024-06-16 23:00:00+00:00,157.4296 -2024-06-17 00:00:00+00:00,157.4051 -2024-06-17 01:00:00+00:00,157.37214999999998 -2024-06-17 02:00:00+00:00,157.3465 -2024-06-17 03:00:00+00:00,157.33120000000002 -2024-06-17 04:00:00+00:00,157.32575000000003 -2024-06-17 05:00:00+00:00,157.3435 -2024-06-17 06:00:00+00:00,157.36305 -2024-06-17 07:00:00+00:00,157.3875 -2024-06-17 08:00:00+00:00,157.40744999999998 -2024-06-17 09:00:00+00:00,157.42635 -2024-06-17 10:00:00+00:00,157.4389 -2024-06-17 11:00:00+00:00,157.46695 -2024-06-17 12:00:00+00:00,157.49595 -2024-06-17 13:00:00+00:00,157.5247 -2024-06-17 14:00:00+00:00,157.5535 -2024-06-17 15:00:00+00:00,157.57874999999999 -2024-06-17 16:00:00+00:00,157.5975 -2024-06-17 17:00:00+00:00,157.61755 -2024-06-17 18:00:00+00:00,157.62675000000002 -2024-06-17 19:00:00+00:00,157.6355 -2024-06-17 20:00:00+00:00,157.64915 -2024-06-17 21:00:00+00:00,157.66140000000001 -2024-06-17 22:00:00+00:00,157.67445 -2024-06-17 23:00:00+00:00,157.6909 -2024-06-18 00:00:00+00:00,157.70589999999999 -2024-06-18 01:00:00+00:00,157.71295 -2024-06-18 02:00:00+00:00,157.72805 -2024-06-18 03:00:00+00:00,157.7324 -2024-06-18 04:00:00+00:00,157.73575 -2024-06-18 05:00:00+00:00,157.74484999999999 -2024-06-18 06:00:00+00:00,157.76145000000002 -2024-06-18 07:00:00+00:00,157.77545 -2024-06-18 08:00:00+00:00,157.7883 -2024-06-18 09:00:00+00:00,157.79874999999998 -2024-06-18 10:00:00+00:00,157.81125 -2024-06-18 11:00:00+00:00,157.825 -2024-06-18 12:00:00+00:00,157.82750000000001 -2024-06-18 13:00:00+00:00,157.83025 -2024-06-18 14:00:00+00:00,157.84355 -2024-06-18 15:00:00+00:00,157.84779999999998 -2024-06-18 16:00:00+00:00,157.84695 -2024-06-18 17:00:00+00:00,157.85315 -2024-06-18 18:00:00+00:00,157.85755 -2024-06-18 19:00:00+00:00,157.86605 -2024-06-18 20:00:00+00:00,157.87465 -2024-06-18 21:00:00+00:00,157.88655 -2024-06-18 22:00:00+00:00,157.89695 -2024-06-18 23:00:00+00:00,157.9083 -2024-06-19 00:00:00+00:00,157.91649999999998 -2024-06-19 01:00:00+00:00,157.91285 -2024-06-19 02:00:00+00:00,157.90624999999997 -2024-06-19 03:00:00+00:00,157.89275 -2024-06-19 04:00:00+00:00,157.8779 -2024-06-19 05:00:00+00:00,157.86235000000002 -2024-06-19 06:00:00+00:00,157.84044999999998 -2024-06-19 07:00:00+00:00,157.82345 -2024-06-19 08:00:00+00:00,157.8217 -2024-06-19 09:00:00+00:00,157.82414999999997 -2024-06-19 10:00:00+00:00,157.8173 -2024-06-19 11:00:00+00:00,157.82165 -2024-06-19 12:00:00+00:00,157.83025 -2024-06-19 13:00:00+00:00,157.83185 -2024-06-19 14:00:00+00:00,157.83685 -2024-06-19 15:00:00+00:00,157.84015 -2024-06-19 16:00:00+00:00,157.84404999999998 -2024-06-19 17:00:00+00:00,157.84955 -2024-06-19 18:00:00+00:00,157.8576 -2024-06-19 19:00:00+00:00,157.86465 -2024-06-19 20:00:00+00:00,157.87475 -2024-06-19 21:00:00+00:00,157.88665 -2024-06-19 22:00:00+00:00,157.89525 -2024-06-19 23:00:00+00:00,157.90025 -2024-06-20 00:00:00+00:00,157.9092 -2024-06-20 01:00:00+00:00,157.9226 -2024-06-20 02:00:00+00:00,157.9432 -2024-06-20 03:00:00+00:00,157.95999999999998 -2024-06-20 04:00:00+00:00,157.97735 -2024-06-20 05:00:00+00:00,157.98970000000003 -2024-06-20 06:00:00+00:00,158.00425 -2024-06-20 07:00:00+00:00,158.02265 -2024-06-20 08:00:00+00:00,158.05035 -2024-06-20 09:00:00+00:00,158.07864999999998 -2024-06-20 10:00:00+00:00,158.10495 -2024-06-20 11:00:00+00:00,158.1299 -2024-06-20 12:00:00+00:00,158.1606 -2024-06-20 13:00:00+00:00,158.19895000000002 -2024-06-20 14:00:00+00:00,158.23425 -2024-06-20 15:00:00+00:00,158.27265 -2024-06-20 16:00:00+00:00,158.31145 -2024-06-20 17:00:00+00:00,158.3557 -2024-06-20 18:00:00+00:00,158.39555000000001 -2024-06-20 19:00:00+00:00,158.44305 -2024-06-20 20:00:00+00:00,158.4879 -2024-06-20 21:00:00+00:00,158.5307 -2024-06-20 22:00:00+00:00,158.5716 -2024-06-20 23:00:00+00:00,158.6145 -2024-06-21 00:00:00+00:00,158.6625 -2024-06-21 01:00:00+00:00,158.70555 -2024-06-21 02:00:00+00:00,158.74725 -2024-06-21 03:00:00+00:00,158.77805 -2024-06-21 04:00:00+00:00,158.8005 -2024-06-21 05:00:00+00:00,158.8254 -2024-06-21 06:00:00+00:00,158.8525 -2024-06-21 07:00:00+00:00,158.86954999999998 -2024-06-21 08:00:00+00:00,158.88365000000002 -2024-06-21 09:00:00+00:00,158.89344999999997 -2024-06-21 10:00:00+00:00,158.90725 -2024-06-21 11:00:00+00:00,158.91344999999998 -2024-06-21 12:00:00+00:00,158.91694999999999 -2024-06-21 13:00:00+00:00,158.93005 -2024-06-21 14:00:00+00:00,158.9688 -2024-06-21 15:00:00+00:00,158.9959 -2024-06-21 16:00:00+00:00,159.0235 -2024-06-21 17:00:00+00:00,159.05695 -2024-06-21 18:00:00+00:00,159.08915 -2024-06-21 19:00:00+00:00,159.12265 -2024-06-21 20:00:00+00:00,159.15845 -2024-06-23 21:00:00+00:00,159.19675 -2024-06-23 22:00:00+00:00,159.23475 -2024-06-23 23:00:00+00:00,159.28525 -2024-06-24 00:00:00+00:00,159.3309 -2024-06-24 01:00:00+00:00,159.36790000000002 -2024-06-24 02:00:00+00:00,159.4051 -2024-06-24 03:00:00+00:00,159.4516 -2024-06-24 04:00:00+00:00,159.49785 -2024-06-24 05:00:00+00:00,159.5385 -2024-06-24 06:00:00+00:00,159.5722 -2024-06-24 07:00:00+00:00,159.61175 -2024-06-24 08:00:00+00:00,159.6546 -2024-06-24 09:00:00+00:00,159.67925 -2024-06-24 10:00:00+00:00,159.67585000000003 -2024-06-24 11:00:00+00:00,159.67659999999998 -2024-06-24 12:00:00+00:00,159.6722 -2024-06-24 13:00:00+00:00,159.6655 -2024-06-24 14:00:00+00:00,159.6745 -2024-06-24 15:00:00+00:00,159.6797 -2024-06-24 16:00:00+00:00,159.6751 -2024-06-24 17:00:00+00:00,159.67435 -2024-06-24 18:00:00+00:00,159.6703 -2024-06-24 19:00:00+00:00,159.65765000000002 -2024-06-24 20:00:00+00:00,159.64884999999998 -2024-06-24 21:00:00+00:00,159.64425 -2024-06-24 22:00:00+00:00,159.6411 -2024-06-24 23:00:00+00:00,159.64090000000002 -2024-06-25 00:00:00+00:00,159.62290000000002 -2024-06-25 01:00:00+00:00,159.60705000000002 -2024-06-25 02:00:00+00:00,159.58954999999997 -2024-06-25 03:00:00+00:00,159.5792 -2024-06-25 04:00:00+00:00,159.5614 -2024-06-25 05:00:00+00:00,159.55195 -2024-06-25 06:00:00+00:00,159.55059999999997 -2024-06-25 07:00:00+00:00,159.55175000000003 -2024-06-25 08:00:00+00:00,159.55595 -2024-06-25 09:00:00+00:00,159.5557 -2024-06-25 10:00:00+00:00,159.5411 -2024-06-25 11:00:00+00:00,159.5285 -2024-06-25 12:00:00+00:00,159.52530000000002 -2024-06-25 13:00:00+00:00,159.52135 -2024-06-25 14:00:00+00:00,159.52395 -2024-06-25 15:00:00+00:00,159.52579999999998 -2024-06-25 16:00:00+00:00,159.5319 -2024-06-25 17:00:00+00:00,159.53835 -2024-06-25 18:00:00+00:00,159.5397 -2024-06-25 19:00:00+00:00,159.53595 -2024-06-25 20:00:00+00:00,159.5502 -2024-06-25 21:00:00+00:00,159.56325 -2024-06-25 22:00:00+00:00,159.58055000000002 -2024-06-25 23:00:00+00:00,159.59145 -2024-06-26 00:00:00+00:00,159.60590000000002 -2024-06-26 01:00:00+00:00,159.6223 -2024-06-26 02:00:00+00:00,159.64005000000003 -2024-06-26 03:00:00+00:00,159.65755 -2024-06-26 04:00:00+00:00,159.67135 -2024-06-26 05:00:00+00:00,159.69009999999997 -2024-06-26 06:00:00+00:00,159.70975 -2024-06-26 07:00:00+00:00,159.73155000000003 -2024-06-26 08:00:00+00:00,159.74615 -2024-06-26 09:00:00+00:00,159.76375 -2024-06-26 10:00:00+00:00,159.7944 -2024-06-26 11:00:00+00:00,159.82545 -2024-06-26 12:00:00+00:00,159.85575 -2024-06-26 13:00:00+00:00,159.8946 -2024-06-26 14:00:00+00:00,159.9415 -2024-06-26 15:00:00+00:00,159.9945 -2024-06-26 16:00:00+00:00,160.0423 -2024-06-26 17:00:00+00:00,160.09109999999998 -2024-06-26 18:00:00+00:00,160.14254999999997 -2024-06-26 19:00:00+00:00,160.19735 -2024-06-26 20:00:00+00:00,160.25259999999997 -2024-06-26 21:00:00+00:00,160.3016 -2024-06-26 22:00:00+00:00,160.3448 -2024-06-26 23:00:00+00:00,160.38445000000002 -2024-06-27 00:00:00+00:00,160.43135 -2024-06-27 01:00:00+00:00,160.4653 -2024-06-27 02:00:00+00:00,160.49705 -2024-06-27 03:00:00+00:00,160.52365 -2024-06-27 04:00:00+00:00,160.54270000000002 -2024-06-27 05:00:00+00:00,160.56369999999998 -2024-06-27 06:00:00+00:00,160.5696 -2024-06-27 07:00:00+00:00,160.58184999999997 -2024-06-27 08:00:00+00:00,160.59195 -2024-06-27 09:00:00+00:00,160.591 -2024-06-27 10:00:00+00:00,160.5824 -2024-06-27 11:00:00+00:00,160.57565 -2024-06-27 12:00:00+00:00,160.56385 -2024-06-27 13:00:00+00:00,160.55805 -2024-06-27 14:00:00+00:00,160.55259999999998 -2024-06-27 15:00:00+00:00,160.54770000000002 -2024-06-27 16:00:00+00:00,160.54194999999999 -2024-06-27 17:00:00+00:00,160.54025 -2024-06-27 18:00:00+00:00,160.54360000000003 -2024-06-27 19:00:00+00:00,160.55304999999998 -2024-06-27 20:00:00+00:00,160.55715 -2024-06-27 21:00:00+00:00,160.56945 -2024-06-27 22:00:00+00:00,160.58265 -2024-06-27 23:00:00+00:00,160.5965 -2024-06-28 00:00:00+00:00,160.63569999999999 -2024-06-28 01:00:00+00:00,160.66879999999998 -2024-06-28 02:00:00+00:00,160.69469999999998 -2024-06-28 03:00:00+00:00,160.7166 -2024-06-28 04:00:00+00:00,160.7409 -2024-06-28 05:00:00+00:00,160.76365 -2024-06-28 06:00:00+00:00,160.78855 -2024-06-28 07:00:00+00:00,160.8075 -2024-06-28 08:00:00+00:00,160.83325 -2024-06-28 09:00:00+00:00,160.8415 -2024-06-28 10:00:00+00:00,160.8349 -2024-06-28 11:00:00+00:00,160.83239999999998 -2024-06-28 12:00:00+00:00,160.82255 -2024-06-28 13:00:00+00:00,160.80975 -2024-06-28 14:00:00+00:00,160.81289999999998 -2024-06-28 15:00:00+00:00,160.81615000000002 -2024-06-28 16:00:00+00:00,160.82 -2024-06-28 17:00:00+00:00,160.8229 -2024-06-28 18:00:00+00:00,160.8271 -2024-06-28 19:00:00+00:00,160.8349 -2024-06-28 20:00:00+00:00,160.8224 -2024-06-30 21:00:00+00:00,160.81080000000003 -2024-06-30 22:00:00+00:00,160.80509999999998 -2024-06-30 23:00:00+00:00,160.80190000000002 -2024-07-01 00:00:00+00:00,160.7998 -2024-07-01 01:00:00+00:00,160.799 -2024-07-01 02:00:00+00:00,160.7972 -2024-07-01 03:00:00+00:00,160.80345 -2024-07-01 04:00:00+00:00,160.8114 -2024-07-01 05:00:00+00:00,160.82905 -2024-07-01 06:00:00+00:00,160.85125 -2024-07-01 07:00:00+00:00,160.86945 -2024-07-01 08:00:00+00:00,160.89430000000002 -2024-07-01 09:00:00+00:00,160.9241 -2024-07-01 10:00:00+00:00,160.93885 -2024-07-01 11:00:00+00:00,160.9498 -2024-07-01 12:00:00+00:00,160.97495 -2024-07-01 13:00:00+00:00,161.00475 -2024-07-01 14:00:00+00:00,161.04725000000002 -2024-07-01 15:00:00+00:00,161.08205 -2024-07-01 16:00:00+00:00,161.1144 -2024-07-01 17:00:00+00:00,161.1478 -2024-07-01 18:00:00+00:00,161.1827 -2024-07-01 19:00:00+00:00,161.21025000000003 -2024-07-01 20:00:00+00:00,161.23405 -2024-07-01 21:00:00+00:00,161.26024999999998 -2024-07-01 22:00:00+00:00,161.28715000000003 -2024-07-01 23:00:00+00:00,161.31015 -2024-07-02 00:00:00+00:00,161.33265 -2024-07-02 01:00:00+00:00,161.36265 -2024-07-02 02:00:00+00:00,161.39825000000002 -2024-07-02 03:00:00+00:00,161.43064999999999 -2024-07-02 04:00:00+00:00,161.46405 -2024-07-02 05:00:00+00:00,161.49595 -2024-07-02 06:00:00+00:00,161.5235 -2024-07-02 07:00:00+00:00,161.55124999999998 -2024-07-02 08:00:00+00:00,161.56315 -2024-07-02 09:00:00+00:00,161.57675 -2024-07-02 10:00:00+00:00,161.5745 -2024-07-02 11:00:00+00:00,161.57775 -2024-07-02 12:00:00+00:00,161.57755 -2024-07-02 13:00:00+00:00,161.57145 -2024-07-02 14:00:00+00:00,161.56734999999998 -2024-07-02 15:00:00+00:00,161.57049999999998 -2024-07-02 16:00:00+00:00,161.5756 -2024-07-02 17:00:00+00:00,161.57925 -2024-07-02 18:00:00+00:00,161.582 -2024-07-02 19:00:00+00:00,161.57930000000002 -2024-07-02 20:00:00+00:00,161.57655 -2024-07-02 21:00:00+00:00,161.5672 -2024-07-02 22:00:00+00:00,161.5575 -2024-07-02 23:00:00+00:00,161.54895000000002 -2024-07-03 00:00:00+00:00,161.54325 -2024-07-03 01:00:00+00:00,161.5397 -2024-07-03 02:00:00+00:00,161.5383 -2024-07-03 03:00:00+00:00,161.53685000000002 -2024-07-03 04:00:00+00:00,161.54315 -2024-07-03 05:00:00+00:00,161.55325 -2024-07-03 06:00:00+00:00,161.5634 -2024-07-03 07:00:00+00:00,161.57080000000002 -2024-07-03 08:00:00+00:00,161.5874 -2024-07-03 09:00:00+00:00,161.61175 -2024-07-03 10:00:00+00:00,161.63685 -2024-07-03 11:00:00+00:00,161.65595000000002 -2024-07-03 12:00:00+00:00,161.6684 -2024-07-03 13:00:00+00:00,161.67704999999998 -2024-07-03 14:00:00+00:00,161.669 -2024-07-03 15:00:00+00:00,161.67 -2024-07-03 16:00:00+00:00,161.67334999999997 -2024-07-03 17:00:00+00:00,161.67569999999998 -2024-07-03 18:00:00+00:00,161.6876 -2024-07-03 19:00:00+00:00,161.69815 -2024-07-03 20:00:00+00:00,161.70525 -2024-07-03 21:00:00+00:00,161.70225 -2024-07-03 22:00:00+00:00,161.7001 -2024-07-03 23:00:00+00:00,161.698 -2024-07-04 00:00:00+00:00,161.6842 -2024-07-04 01:00:00+00:00,161.6592 -2024-07-04 02:00:00+00:00,161.64079999999998 -2024-07-04 03:00:00+00:00,161.629 -2024-07-04 04:00:00+00:00,161.6116 -2024-07-04 05:00:00+00:00,161.59234999999998 -2024-07-04 06:00:00+00:00,161.56284999999997 -2024-07-04 07:00:00+00:00,161.531 -2024-07-04 08:00:00+00:00,161.50205 -2024-07-04 09:00:00+00:00,161.4799 -2024-07-04 10:00:00+00:00,161.46639999999996 -2024-07-04 11:00:00+00:00,161.44250000000002 -2024-07-04 12:00:00+00:00,161.42260000000002 -2024-07-04 13:00:00+00:00,161.4056 -2024-07-04 14:00:00+00:00,161.37565 -2024-07-04 15:00:00+00:00,161.34785 -2024-07-04 16:00:00+00:00,161.3192 -2024-07-04 17:00:00+00:00,161.2983 -2024-07-04 18:00:00+00:00,161.28055 -2024-07-04 19:00:00+00:00,161.26225 -2024-07-04 20:00:00+00:00,161.25345 -2024-07-04 21:00:00+00:00,161.24735 -2024-07-04 22:00:00+00:00,161.23870000000002 -2024-07-04 23:00:00+00:00,161.22985 -2024-07-05 00:00:00+00:00,161.20855 -2024-07-05 01:00:00+00:00,161.18515 -2024-07-05 02:00:00+00:00,161.1658 -2024-07-05 03:00:00+00:00,161.1325 -2024-07-05 04:00:00+00:00,161.1023 -2024-07-05 05:00:00+00:00,161.07365 -2024-07-05 06:00:00+00:00,161.05925000000002 -2024-07-05 07:00:00+00:00,161.04775 -2024-07-05 08:00:00+00:00,161.0278 -2024-07-05 09:00:00+00:00,161.0047 -2024-07-05 10:00:00+00:00,160.99165 -2024-07-05 11:00:00+00:00,160.9754 -2024-07-05 12:00:00+00:00,160.96595 -2024-07-05 13:00:00+00:00,160.97129999999999 -2024-07-05 14:00:00+00:00,160.9569 -2024-07-05 15:00:00+00:00,160.93245 -2024-07-05 16:00:00+00:00,160.91344999999998 -2024-07-05 17:00:00+00:00,160.89355 -2024-07-05 18:00:00+00:00,160.86599999999999 -2024-07-05 19:00:00+00:00,160.83655 -2024-07-05 20:00:00+00:00,160.82299999999998 -2024-07-07 21:00:00+00:00,160.8095 -2024-07-07 22:00:00+00:00,160.79975 -2024-07-07 23:00:00+00:00,160.80089999999998 -2024-07-08 00:00:00+00:00,160.7995 -2024-07-08 01:00:00+00:00,160.7861 -2024-07-08 02:00:00+00:00,160.7661 -2024-07-08 03:00:00+00:00,160.752 -2024-07-08 04:00:00+00:00,160.74205 -2024-07-08 05:00:00+00:00,160.74205 -2024-07-08 06:00:00+00:00,160.74375 -2024-07-08 07:00:00+00:00,160.74765 -2024-07-08 08:00:00+00:00,160.7551 -2024-07-08 09:00:00+00:00,160.7438 -2024-07-08 10:00:00+00:00,160.74255 -2024-07-08 11:00:00+00:00,160.75650000000002 -2024-07-08 12:00:00+00:00,160.7469 -2024-07-08 13:00:00+00:00,160.73739999999998 -2024-07-08 14:00:00+00:00,160.7321 -2024-07-08 15:00:00+00:00,160.73255 -2024-07-08 16:00:00+00:00,160.729 -2024-07-08 17:00:00+00:00,160.728 -2024-07-08 18:00:00+00:00,160.72899999999998 -2024-07-08 19:00:00+00:00,160.7367 -2024-07-08 20:00:00+00:00,160.74785000000003 -2024-07-08 21:00:00+00:00,160.76745 -2024-07-08 22:00:00+00:00,160.78810000000001 -2024-07-08 23:00:00+00:00,160.8067 -2024-07-09 00:00:00+00:00,160.8244 -2024-07-09 01:00:00+00:00,160.8385 -2024-07-09 02:00:00+00:00,160.847 -2024-07-09 03:00:00+00:00,160.8547 -2024-07-09 04:00:00+00:00,160.84825 -2024-07-09 05:00:00+00:00,160.84155 -2024-07-09 06:00:00+00:00,160.83610000000002 -2024-07-09 07:00:00+00:00,160.8317 -2024-07-09 08:00:00+00:00,160.8497 -2024-07-09 09:00:00+00:00,160.86909999999997 -2024-07-09 10:00:00+00:00,160.8893 -2024-07-09 11:00:00+00:00,160.9064 -2024-07-09 12:00:00+00:00,160.9264 -2024-07-09 13:00:00+00:00,160.94115000000002 -2024-07-09 14:00:00+00:00,160.96985 -2024-07-09 15:00:00+00:00,161.00015 -2024-07-09 16:00:00+00:00,161.02429999999998 -2024-07-09 17:00:00+00:00,161.05 -2024-07-09 18:00:00+00:00,161.07625000000002 -2024-07-09 19:00:00+00:00,161.09765 -2024-07-09 20:00:00+00:00,161.11875 -2024-07-09 21:00:00+00:00,161.1343 -2024-07-09 22:00:00+00:00,161.1506 -2024-07-09 23:00:00+00:00,161.1645 -2024-07-10 00:00:00+00:00,161.18959999999998 -2024-07-10 01:00:00+00:00,161.22115 -2024-07-10 02:00:00+00:00,161.25515000000001 -2024-07-10 03:00:00+00:00,161.28055 -2024-07-10 04:00:00+00:00,161.30015 -2024-07-10 05:00:00+00:00,161.3229 -2024-07-10 06:00:00+00:00,161.34035 -2024-07-10 07:00:00+00:00,161.35920000000002 -2024-07-10 08:00:00+00:00,161.3782 -2024-07-10 09:00:00+00:00,161.40659999999997 -2024-07-10 10:00:00+00:00,161.4158 -2024-07-10 11:00:00+00:00,161.42000000000002 -2024-07-10 12:00:00+00:00,161.42649999999998 -2024-07-10 13:00:00+00:00,161.4405 -2024-07-10 14:00:00+00:00,161.4581 -2024-07-10 15:00:00+00:00,161.48055 -2024-07-10 16:00:00+00:00,161.4992 -2024-07-10 17:00:00+00:00,161.52195 -2024-07-10 18:00:00+00:00,161.54410000000001 -2024-07-10 19:00:00+00:00,161.56435 -2024-07-10 20:00:00+00:00,161.57655 -2024-07-10 21:00:00+00:00,161.57855 -2024-07-10 22:00:00+00:00,161.58284999999998 -2024-07-10 23:00:00+00:00,161.59105 -2024-07-11 00:00:00+00:00,161.59705 -2024-07-11 01:00:00+00:00,161.601 -2024-07-11 02:00:00+00:00,161.61525 -2024-07-11 03:00:00+00:00,161.62234999999998 -2024-07-11 04:00:00+00:00,161.63115 -2024-07-11 05:00:00+00:00,161.6365 -2024-07-11 06:00:00+00:00,161.64569999999998 -2024-07-11 07:00:00+00:00,161.65335 -2024-07-11 08:00:00+00:00,161.65745 -2024-07-11 09:00:00+00:00,161.65494999999999 -2024-07-11 10:00:00+00:00,161.64925 -2024-07-11 11:00:00+00:00,161.63920000000002 -2024-07-11 12:00:00+00:00,161.4874 -2024-07-11 13:00:00+00:00,161.3305 -2024-07-11 14:00:00+00:00,161.16965 -2024-07-11 15:00:00+00:00,161.012 -2024-07-11 16:00:00+00:00,160.855 -2024-07-11 17:00:00+00:00,160.71675 -2024-07-11 18:00:00+00:00,160.57415 -2024-07-11 19:00:00+00:00,160.4357 -2024-07-11 20:00:00+00:00,160.30249999999998 -2024-07-11 21:00:00+00:00,160.17059999999998 -2024-07-11 22:00:00+00:00,160.0512 -2024-07-11 23:00:00+00:00,159.88365000000002 -2024-07-12 00:00:00+00:00,159.75335 -2024-07-12 01:00:00+00:00,159.63685 -2024-07-12 02:00:00+00:00,159.51585 -2024-07-12 03:00:00+00:00,159.3959 -2024-07-12 04:00:00+00:00,159.27489999999997 -2024-07-12 05:00:00+00:00,159.14960000000002 -2024-07-12 06:00:00+00:00,159.0291 -2024-07-12 07:00:00+00:00,158.9131 -2024-07-12 08:00:00+00:00,158.9356 -2024-07-12 09:00:00+00:00,158.96405 -2024-07-12 10:00:00+00:00,158.99175 -2024-07-12 11:00:00+00:00,159.01125 -2024-07-12 12:00:00+00:00,159.02335 -2024-07-12 13:00:00+00:00,158.9989 -2024-07-12 14:00:00+00:00,158.9479 -2024-07-12 15:00:00+00:00,158.90175000000002 -2024-07-12 16:00:00+00:00,158.85055 -2024-07-12 17:00:00+00:00,158.80225000000002 -2024-07-12 18:00:00+00:00,158.73495 -2024-07-12 19:00:00+00:00,158.7123 -2024-07-12 20:00:00+00:00,158.65255 -2024-07-14 21:00:00+00:00,158.5925 -2024-07-14 22:00:00+00:00,158.54395 -2024-07-14 23:00:00+00:00,158.49665 -2024-07-15 00:00:00+00:00,158.44685 -2024-07-15 01:00:00+00:00,158.39735000000002 -2024-07-15 02:00:00+00:00,158.342 -2024-07-15 03:00:00+00:00,158.2798 -2024-07-15 04:00:00+00:00,158.22445 -2024-07-15 05:00:00+00:00,158.16334999999998 -2024-07-15 06:00:00+00:00,158.11325 -2024-07-15 07:00:00+00:00,158.06099999999998 -2024-07-15 08:00:00+00:00,158.0114 -2024-07-15 09:00:00+00:00,157.99349999999998 -2024-07-15 10:00:00+00:00,158.00505 -2024-07-15 11:00:00+00:00,158.01565 -2024-07-15 12:00:00+00:00,158.0201 -2024-07-15 13:00:00+00:00,158.0182 -2024-07-15 14:00:00+00:00,158.0153 -2024-07-15 15:00:00+00:00,158.01805 -2024-07-15 16:00:00+00:00,158.0094 -2024-07-15 17:00:00+00:00,157.99725 -2024-07-15 18:00:00+00:00,157.9729 -2024-07-15 19:00:00+00:00,157.9545 -2024-07-15 20:00:00+00:00,157.95409999999998 -2024-07-15 21:00:00+00:00,157.9554 -2024-07-15 22:00:00+00:00,157.96025 -2024-07-15 23:00:00+00:00,157.9692 -2024-07-16 00:00:00+00:00,157.98775 -2024-07-16 01:00:00+00:00,158.0165 -2024-07-16 02:00:00+00:00,158.04575 -2024-07-16 03:00:00+00:00,158.08100000000002 -2024-07-16 04:00:00+00:00,158.1221 -2024-07-16 05:00:00+00:00,158.16045000000003 -2024-07-16 06:00:00+00:00,158.1916 -2024-07-16 07:00:00+00:00,158.2108 -2024-07-16 08:00:00+00:00,158.23600000000002 -2024-07-16 09:00:00+00:00,158.25955000000002 -2024-07-16 10:00:00+00:00,158.28815 -2024-07-16 11:00:00+00:00,158.3109 -2024-07-16 12:00:00+00:00,158.36305 -2024-07-16 13:00:00+00:00,158.39894999999999 -2024-07-16 14:00:00+00:00,158.43575 -2024-07-16 15:00:00+00:00,158.46835000000002 -2024-07-16 16:00:00+00:00,158.49005 -2024-07-16 17:00:00+00:00,158.50965000000002 -2024-07-16 18:00:00+00:00,158.52105 -2024-07-16 19:00:00+00:00,158.5329 -2024-07-16 20:00:00+00:00,158.53505 -2024-07-16 21:00:00+00:00,158.5249 -2024-07-16 22:00:00+00:00,158.50715 -2024-07-16 23:00:00+00:00,158.4938 -2024-07-17 00:00:00+00:00,158.4861 -2024-07-17 01:00:00+00:00,158.4733 -2024-07-17 02:00:00+00:00,158.4652 -2024-07-17 03:00:00+00:00,158.45919999999998 -2024-07-17 04:00:00+00:00,158.44665 -2024-07-17 05:00:00+00:00,158.42085 -2024-07-17 06:00:00+00:00,158.39015 -2024-07-17 07:00:00+00:00,158.32665 -2024-07-17 08:00:00+00:00,158.20105 -2024-07-17 09:00:00+00:00,158.09015 -2024-07-17 10:00:00+00:00,157.99759999999998 -2024-07-17 11:00:00+00:00,157.8945 -2024-07-17 12:00:00+00:00,157.7958 -2024-07-17 13:00:00+00:00,157.68625 -2024-07-17 14:00:00+00:00,157.59335000000002 -2024-07-17 15:00:00+00:00,157.50214999999997 -2024-07-17 16:00:00+00:00,157.39695 -2024-07-17 17:00:00+00:00,157.30390000000003 -2024-07-17 18:00:00+00:00,157.1922 -2024-07-17 19:00:00+00:00,157.0833 -2024-07-17 20:00:00+00:00,156.96964999999997 -2024-07-17 21:00:00+00:00,156.85455 -2024-07-17 22:00:00+00:00,156.74185 -2024-07-17 23:00:00+00:00,156.60655000000003 -2024-07-18 00:00:00+00:00,156.48245 -2024-07-18 01:00:00+00:00,156.4006 -2024-07-18 02:00:00+00:00,156.3254 -2024-07-18 03:00:00+00:00,156.29350000000002 -2024-07-18 04:00:00+00:00,156.29845 -2024-07-18 05:00:00+00:00,156.2792 -2024-07-18 06:00:00+00:00,156.24845 -2024-07-18 07:00:00+00:00,156.23525 -2024-07-18 08:00:00+00:00,156.23015 -2024-07-18 09:00:00+00:00,156.2406 -2024-07-18 10:00:00+00:00,156.23534999999998 -2024-07-18 11:00:00+00:00,156.23195 -2024-07-18 12:00:00+00:00,156.23845 -2024-07-18 13:00:00+00:00,156.24454999999998 -2024-07-18 14:00:00+00:00,156.2772 -2024-07-18 15:00:00+00:00,156.3166 -2024-07-18 16:00:00+00:00,156.36325000000002 -2024-07-18 17:00:00+00:00,156.4142 -2024-07-18 18:00:00+00:00,156.47039999999998 -2024-07-18 19:00:00+00:00,156.55509999999998 -2024-07-18 20:00:00+00:00,156.6363 -2024-07-18 21:00:00+00:00,156.69119999999998 -2024-07-18 22:00:00+00:00,156.7388 -2024-07-18 23:00:00+00:00,156.77575 -2024-07-19 00:00:00+00:00,156.81924999999998 -2024-07-19 01:00:00+00:00,156.89045 -2024-07-19 02:00:00+00:00,156.95525 -2024-07-19 03:00:00+00:00,157.01175 -2024-07-19 04:00:00+00:00,157.06255 -2024-07-19 05:00:00+00:00,157.12675 -2024-07-19 06:00:00+00:00,157.1702 -2024-07-19 07:00:00+00:00,157.21125 -2024-07-19 08:00:00+00:00,157.25254999999999 -2024-07-19 09:00:00+00:00,157.2916 -2024-07-19 10:00:00+00:00,157.3265 -2024-07-19 11:00:00+00:00,157.3512 -2024-07-19 12:00:00+00:00,157.37759999999997 -2024-07-19 13:00:00+00:00,157.39365 -2024-07-19 14:00:00+00:00,157.39655 -2024-07-19 15:00:00+00:00,157.3977 -2024-07-19 16:00:00+00:00,157.4004 -2024-07-19 17:00:00+00:00,157.40335 -2024-07-19 18:00:00+00:00,157.41455000000002 -2024-07-19 19:00:00+00:00,157.4309 -2024-07-19 20:00:00+00:00,157.44405 -2024-07-21 21:00:00+00:00,157.4424 -2024-07-21 22:00:00+00:00,157.4348 -2024-07-21 23:00:00+00:00,157.43705 -2024-07-22 00:00:00+00:00,157.43435 -2024-07-22 01:00:00+00:00,157.42285 -2024-07-22 02:00:00+00:00,157.43720000000002 -2024-07-22 03:00:00+00:00,157.44525000000002 -2024-07-22 04:00:00+00:00,157.4544 -2024-07-22 05:00:00+00:00,157.4379 -2024-07-22 06:00:00+00:00,157.38745 -2024-07-22 07:00:00+00:00,157.35444999999999 -2024-07-22 08:00:00+00:00,157.31055 -2024-07-22 09:00:00+00:00,157.26955 -2024-07-22 10:00:00+00:00,157.24465 -2024-07-22 11:00:00+00:00,157.21795000000003 -2024-07-22 12:00:00+00:00,157.18675000000002 -2024-07-22 13:00:00+00:00,157.15910000000002 -2024-07-22 14:00:00+00:00,157.1284 -2024-07-22 15:00:00+00:00,157.1076 -2024-07-22 16:00:00+00:00,157.08745000000002 -2024-07-22 17:00:00+00:00,157.07315 -2024-07-22 18:00:00+00:00,157.06325 -2024-07-22 19:00:00+00:00,157.046 -2024-07-22 20:00:00+00:00,157.0272 -2024-07-22 21:00:00+00:00,156.99785000000003 -2024-07-22 22:00:00+00:00,156.9725 -2024-07-22 23:00:00+00:00,156.94385 -2024-07-23 00:00:00+00:00,156.90455 -2024-07-23 01:00:00+00:00,156.88799999999998 -2024-07-23 02:00:00+00:00,156.8973 -2024-07-23 03:00:00+00:00,156.8708 -2024-07-23 04:00:00+00:00,156.84629999999999 -2024-07-23 05:00:00+00:00,156.8276 -2024-07-23 06:00:00+00:00,156.8149 -2024-07-23 07:00:00+00:00,156.77425 -2024-07-23 08:00:00+00:00,156.73525 -2024-07-23 09:00:00+00:00,156.68935 -2024-07-23 10:00:00+00:00,156.6479 -2024-07-23 11:00:00+00:00,156.60129999999998 -2024-07-23 12:00:00+00:00,156.54919999999998 -2024-07-23 13:00:00+00:00,156.4968 -2024-07-23 14:00:00+00:00,156.44234999999998 -2024-07-23 15:00:00+00:00,156.38965 -2024-07-23 16:00:00+00:00,156.32635 -2024-07-23 17:00:00+00:00,156.26299999999998 -2024-07-23 18:00:00+00:00,156.1922 -2024-07-23 19:00:00+00:00,156.129 -2024-07-23 20:00:00+00:00,156.07635 -2024-07-23 21:00:00+00:00,156.02035 -2024-07-23 22:00:00+00:00,155.9705 -2024-07-23 23:00:00+00:00,155.94459999999998 -2024-07-24 00:00:00+00:00,155.92059999999998 -2024-07-24 01:00:00+00:00,155.8672 -2024-07-24 02:00:00+00:00,155.8006 -2024-07-24 03:00:00+00:00,155.7512 -2024-07-24 04:00:00+00:00,155.6811 -2024-07-24 05:00:00+00:00,155.6156 -2024-07-24 06:00:00+00:00,155.54245 -2024-07-24 07:00:00+00:00,155.46425000000002 -2024-07-24 08:00:00+00:00,155.4058 -2024-07-24 09:00:00+00:00,155.34009999999998 -2024-07-24 10:00:00+00:00,155.26935 -2024-07-24 11:00:00+00:00,155.17755 -2024-07-24 12:00:00+00:00,155.0789 -2024-07-24 13:00:00+00:00,154.96645 -2024-07-24 14:00:00+00:00,154.84865 -2024-07-24 15:00:00+00:00,154.73565 -2024-07-24 16:00:00+00:00,154.62905 -2024-07-24 17:00:00+00:00,154.54104999999998 -2024-07-24 18:00:00+00:00,154.4595 -2024-07-24 19:00:00+00:00,154.37240000000003 -2024-07-24 20:00:00+00:00,154.27595000000002 -2024-07-24 21:00:00+00:00,154.2032 -2024-07-24 22:00:00+00:00,154.1204 -2024-07-24 23:00:00+00:00,154.0635 -2024-07-25 00:00:00+00:00,153.9953 -2024-07-25 01:00:00+00:00,153.9068 -2024-07-25 02:00:00+00:00,153.8096 -2024-07-25 03:00:00+00:00,153.69599999999997 -2024-07-25 04:00:00+00:00,153.58405 -2024-07-25 05:00:00+00:00,153.48235 -2024-07-25 06:00:00+00:00,153.39669999999998 -2024-07-25 07:00:00+00:00,153.2971 -2024-07-25 08:00:00+00:00,153.24195000000003 -2024-07-25 09:00:00+00:00,153.1853 -2024-07-25 10:00:00+00:00,153.13230000000001 -2024-07-25 11:00:00+00:00,153.0994 -2024-07-25 12:00:00+00:00,153.1019 -2024-07-25 13:00:00+00:00,153.0933 -2024-07-25 14:00:00+00:00,153.07525 -2024-07-25 15:00:00+00:00,153.07324999999997 -2024-07-25 16:00:00+00:00,153.0796 -2024-07-25 17:00:00+00:00,153.0916 -2024-07-25 18:00:00+00:00,153.1009 -2024-07-25 19:00:00+00:00,153.101 -2024-07-25 20:00:00+00:00,153.1339 -2024-07-25 21:00:00+00:00,153.18765000000002 -2024-07-25 22:00:00+00:00,153.25074999999998 -2024-07-25 23:00:00+00:00,153.31995 -2024-07-26 00:00:00+00:00,153.38485 -2024-07-26 01:00:00+00:00,153.42685 -2024-07-26 02:00:00+00:00,153.48025 -2024-07-26 03:00:00+00:00,153.55815 -2024-07-26 04:00:00+00:00,153.60665 -2024-07-26 05:00:00+00:00,153.67355 -2024-07-26 06:00:00+00:00,153.74484999999999 -2024-07-26 07:00:00+00:00,153.8046 -2024-07-26 08:00:00+00:00,153.84359999999998 -2024-07-26 09:00:00+00:00,153.8712 -2024-07-26 10:00:00+00:00,153.91745 -2024-07-26 11:00:00+00:00,153.9491 -2024-07-26 12:00:00+00:00,153.9587 -2024-07-26 13:00:00+00:00,153.9471 -2024-07-26 14:00:00+00:00,153.93275 -2024-07-26 15:00:00+00:00,153.9303 -2024-07-26 16:00:00+00:00,153.9244 -2024-07-26 17:00:00+00:00,153.91415 -2024-07-26 18:00:00+00:00,153.90564999999998 -2024-07-26 19:00:00+00:00,153.90849999999998 -2024-07-26 20:00:00+00:00,153.90015 -2024-07-28 21:00:00+00:00,153.90495 -2024-07-28 22:00:00+00:00,153.91000000000003 -2024-07-28 23:00:00+00:00,153.92974999999998 -2024-07-29 00:00:00+00:00,153.92855 -2024-07-29 01:00:00+00:00,153.91834999999998 -2024-07-29 02:00:00+00:00,153.90744999999998 -2024-07-29 03:00:00+00:00,153.88725 -2024-07-29 04:00:00+00:00,153.84285 -2024-07-29 05:00:00+00:00,153.80180000000001 -2024-07-29 06:00:00+00:00,153.74099999999999 -2024-07-29 07:00:00+00:00,153.69125000000003 -2024-07-29 08:00:00+00:00,153.66474999999997 -2024-07-29 09:00:00+00:00,153.6597 -2024-07-29 10:00:00+00:00,153.66875 -2024-07-29 11:00:00+00:00,153.667 -2024-07-29 12:00:00+00:00,153.6721 -2024-07-29 13:00:00+00:00,153.69415 -2024-07-29 14:00:00+00:00,153.70985000000002 -2024-07-29 15:00:00+00:00,153.7201 -2024-07-29 16:00:00+00:00,153.7295 -2024-07-29 17:00:00+00:00,153.7456 -2024-07-29 18:00:00+00:00,153.7441 -2024-07-29 19:00:00+00:00,153.7366 -2024-07-29 20:00:00+00:00,153.7552 -2024-07-29 21:00:00+00:00,153.78410000000002 -2024-07-29 22:00:00+00:00,153.81414999999998 -2024-07-29 23:00:00+00:00,153.83025 -2024-07-30 00:00:00+00:00,153.85755 -2024-07-30 01:00:00+00:00,153.8881 -2024-07-30 02:00:00+00:00,153.92155 -2024-07-30 03:00:00+00:00,153.94435 -2024-07-30 04:00:00+00:00,153.98195 -2024-07-30 05:00:00+00:00,154.03015 -2024-07-30 06:00:00+00:00,154.09865 -2024-07-30 07:00:00+00:00,154.15165 -2024-07-30 08:00:00+00:00,154.1906 -2024-07-30 09:00:00+00:00,154.2223 -2024-07-30 10:00:00+00:00,154.25664999999998 -2024-07-30 11:00:00+00:00,154.30295 -2024-07-30 12:00:00+00:00,154.3529 -2024-07-30 13:00:00+00:00,154.3702 -2024-07-30 14:00:00+00:00,154.40064999999998 -2024-07-30 15:00:00+00:00,154.38695 -2024-07-30 16:00:00+00:00,154.34744999999998 -2024-07-30 17:00:00+00:00,154.30675 -2024-07-30 18:00:00+00:00,154.2688 -2024-07-30 19:00:00+00:00,154.24079999999998 -2024-07-30 20:00:00+00:00,154.1809 -2024-07-30 21:00:00+00:00,154.11565000000002 -2024-07-30 22:00:00+00:00,154.05880000000002 -2024-07-30 23:00:00+00:00,153.9881 -2024-07-31 00:00:00+00:00,153.88505 -2024-07-31 01:00:00+00:00,153.7731 -2024-07-31 02:00:00+00:00,153.66485 -2024-07-31 03:00:00+00:00,153.59945 -2024-07-31 04:00:00+00:00,153.49380000000002 -2024-07-31 05:00:00+00:00,153.39724999999999 -2024-07-31 06:00:00+00:00,153.27190000000002 -2024-07-31 07:00:00+00:00,153.0735 -2024-07-31 08:00:00+00:00,152.87269999999998 -2024-07-31 09:00:00+00:00,152.6756 -2024-07-31 10:00:00+00:00,152.47115 -2024-07-31 11:00:00+00:00,152.29435 -2024-07-31 12:00:00+00:00,152.14925 -2024-07-31 13:00:00+00:00,151.9801 -2024-07-31 14:00:00+00:00,151.83875 -2024-07-31 15:00:00+00:00,151.69395 -2024-07-31 16:00:00+00:00,151.5838 -2024-07-31 17:00:00+00:00,151.4907 -2024-07-31 18:00:00+00:00,151.3686 -2024-07-31 19:00:00+00:00,151.2253 -2024-07-31 20:00:00+00:00,151.10565 -2024-07-31 21:00:00+00:00,150.9786 -2024-07-31 22:00:00+00:00,150.84295000000003 -2024-07-31 23:00:00+00:00,150.653 -2024-08-01 00:00:00+00:00,150.4975 -2024-08-01 01:00:00+00:00,150.3124 -2024-08-01 02:00:00+00:00,150.18945000000002 -2024-08-01 03:00:00+00:00,150.12165 -2024-08-01 04:00:00+00:00,150.05965 -2024-08-01 05:00:00+00:00,150.02745 -2024-08-01 06:00:00+00:00,150.00320000000002 -2024-08-01 07:00:00+00:00,149.98674999999997 -2024-08-01 08:00:00+00:00,149.95485000000002 -2024-08-01 09:00:00+00:00,149.96120000000002 -2024-08-01 10:00:00+00:00,149.94109999999998 -2024-08-01 11:00:00+00:00,149.94835 -2024-08-01 12:00:00+00:00,149.96345 -2024-08-01 13:00:00+00:00,149.9495 -2024-08-01 14:00:00+00:00,149.92985 -2024-08-01 15:00:00+00:00,149.94324999999998 -2024-08-01 16:00:00+00:00,149.93875 -2024-08-01 17:00:00+00:00,149.93175000000002 -2024-08-01 18:00:00+00:00,149.90075 -2024-08-01 19:00:00+00:00,149.9 -2024-08-01 20:00:00+00:00,149.89495 -2024-08-01 21:00:00+00:00,149.90245 -2024-08-01 22:00:00+00:00,149.87955 -2024-08-01 23:00:00+00:00,149.86165 -2024-08-02 00:00:00+00:00,149.84655 -2024-08-02 01:00:00+00:00,149.83335 -2024-08-02 02:00:00+00:00,149.8107 -2024-08-02 03:00:00+00:00,149.79225000000002 -2024-08-02 04:00:00+00:00,149.7705 -2024-08-02 05:00:00+00:00,149.71985 -2024-08-02 06:00:00+00:00,149.6608 -2024-08-02 07:00:00+00:00,149.59494999999998 -2024-08-02 08:00:00+00:00,149.5055 -2024-08-02 09:00:00+00:00,149.4223 -2024-08-02 10:00:00+00:00,149.35955 -2024-08-02 11:00:00+00:00,149.30694999999997 -2024-08-02 12:00:00+00:00,149.18445 -2024-08-02 13:00:00+00:00,149.05104999999998 -2024-08-02 14:00:00+00:00,148.90705 -2024-08-02 15:00:00+00:00,148.76745 -2024-08-02 16:00:00+00:00,148.64270000000002 -2024-08-02 17:00:00+00:00,148.51835 -2024-08-02 18:00:00+00:00,148.3775 -2024-08-02 19:00:00+00:00,148.2463 -2024-08-02 20:00:00+00:00,148.1044 -2024-08-04 21:00:00+00:00,147.95374999999999 -2024-08-04 22:00:00+00:00,147.79105 -2024-08-04 23:00:00+00:00,147.5961 -2024-08-05 00:00:00+00:00,147.40885 -2024-08-05 01:00:00+00:00,147.2176 -2024-08-05 02:00:00+00:00,147.0319 -2024-08-05 03:00:00+00:00,146.7898 -2024-08-05 04:00:00+00:00,146.49455 -2024-08-05 05:00:00+00:00,146.18295 -2024-08-05 06:00:00+00:00,145.88125 -2024-08-05 07:00:00+00:00,145.60475000000002 -2024-08-05 08:00:00+00:00,145.35255 -2024-08-05 09:00:00+00:00,145.11329999999998 -2024-08-05 10:00:00+00:00,144.8986 -2024-08-05 11:00:00+00:00,144.665 -2024-08-05 12:00:00+00:00,144.43509999999998 -2024-08-05 13:00:00+00:00,144.22995 -2024-08-05 14:00:00+00:00,144.03834999999998 -2024-08-05 15:00:00+00:00,143.90735 -2024-08-05 16:00:00+00:00,143.78935 -2024-08-05 17:00:00+00:00,143.66604999999998 -2024-08-05 18:00:00+00:00,143.52325000000002 -2024-08-05 19:00:00+00:00,143.43075 -2024-08-05 20:00:00+00:00,143.36475000000002 -2024-08-05 21:00:00+00:00,143.31310000000002 -2024-08-05 22:00:00+00:00,143.29469999999998 -2024-08-05 23:00:00+00:00,143.3666 -2024-08-06 00:00:00+00:00,143.46035 -2024-08-06 01:00:00+00:00,143.56795 -2024-08-06 02:00:00+00:00,143.69535000000002 -2024-08-06 03:00:00+00:00,143.78895 -2024-08-06 04:00:00+00:00,143.9448 -2024-08-06 05:00:00+00:00,144.1236 -2024-08-06 06:00:00+00:00,144.2866 -2024-08-06 07:00:00+00:00,144.4359 -2024-08-06 08:00:00+00:00,144.5695 -2024-08-06 09:00:00+00:00,144.67030000000003 -2024-08-06 10:00:00+00:00,144.78195 -2024-08-06 11:00:00+00:00,144.84135 -2024-08-06 12:00:00+00:00,144.86214999999999 -2024-08-06 13:00:00+00:00,144.88135000000003 -2024-08-06 14:00:00+00:00,144.9333 -2024-08-06 15:00:00+00:00,145.0017 -2024-08-06 16:00:00+00:00,145.06040000000002 -2024-08-06 17:00:00+00:00,145.1233 -2024-08-06 18:00:00+00:00,145.13510000000002 -2024-08-06 19:00:00+00:00,145.0817 -2024-08-06 20:00:00+00:00,145.0462 -2024-08-06 21:00:00+00:00,145.0337 -2024-08-06 22:00:00+00:00,144.9964 -2024-08-06 23:00:00+00:00,144.9658 -2024-08-07 00:00:00+00:00,144.92635 -2024-08-07 01:00:00+00:00,144.97 -2024-08-07 02:00:00+00:00,145.0299 -2024-08-07 03:00:00+00:00,145.1216 -2024-08-07 04:00:00+00:00,145.2566 -2024-08-07 05:00:00+00:00,145.36759999999998 -2024-08-07 06:00:00+00:00,145.45204999999999 -2024-08-07 07:00:00+00:00,145.52875 -2024-08-07 08:00:00+00:00,145.65879999999999 -2024-08-07 09:00:00+00:00,145.81754999999998 -2024-08-07 10:00:00+00:00,145.9521 -2024-08-07 11:00:00+00:00,146.0567 -2024-08-07 12:00:00+00:00,146.1379 -2024-08-07 13:00:00+00:00,146.23215 -2024-08-07 14:00:00+00:00,146.34555 -2024-08-07 15:00:00+00:00,146.47975000000002 -2024-08-07 16:00:00+00:00,146.62225 -2024-08-07 17:00:00+00:00,146.74615 -2024-08-07 18:00:00+00:00,146.8604 -2024-08-07 19:00:00+00:00,146.9661 -2024-08-07 20:00:00+00:00,147.0651 -2024-08-07 21:00:00+00:00,147.06509999999997 -2024-08-07 22:00:00+00:00,147.04955 -2024-08-07 23:00:00+00:00,147.00740000000002 -2024-08-08 00:00:00+00:00,146.92675000000003 -2024-08-08 01:00:00+00:00,146.89715 -2024-08-08 02:00:00+00:00,146.89785 -2024-08-08 03:00:00+00:00,146.88285000000002 -2024-08-08 04:00:00+00:00,146.8298 -2024-08-08 05:00:00+00:00,146.7494 -2024-08-08 06:00:00+00:00,146.6997 -2024-08-08 07:00:00+00:00,146.63315 -2024-08-08 08:00:00+00:00,146.5932 -2024-08-08 09:00:00+00:00,146.5386 -2024-08-08 10:00:00+00:00,146.4803 -2024-08-08 11:00:00+00:00,146.41725000000002 -2024-08-08 12:00:00+00:00,146.41125 -2024-08-08 13:00:00+00:00,146.41595 -2024-08-08 14:00:00+00:00,146.4382 -2024-08-08 15:00:00+00:00,146.4502 -2024-08-08 16:00:00+00:00,146.47715 -2024-08-08 17:00:00+00:00,146.50825 -2024-08-08 18:00:00+00:00,146.54265 -2024-08-08 19:00:00+00:00,146.58585 -2024-08-08 20:00:00+00:00,146.6495 -2024-08-08 21:00:00+00:00,146.69144999999997 -2024-08-08 22:00:00+00:00,146.72565 -2024-08-08 23:00:00+00:00,146.79095 -2024-08-09 00:00:00+00:00,146.85835 -2024-08-09 01:00:00+00:00,146.91424999999998 -2024-08-09 02:00:00+00:00,146.9788 -2024-08-09 03:00:00+00:00,147.04675 -2024-08-09 04:00:00+00:00,147.08135 -2024-08-09 05:00:00+00:00,147.12565 -2024-08-09 06:00:00+00:00,147.18035 -2024-08-09 07:00:00+00:00,147.23255 -2024-08-09 08:00:00+00:00,147.2398 -2024-08-09 09:00:00+00:00,147.24515000000002 -2024-08-09 10:00:00+00:00,147.23755 -2024-08-09 11:00:00+00:00,147.23365 -2024-08-09 12:00:00+00:00,147.21009999999998 -2024-08-09 13:00:00+00:00,147.17225 -2024-08-09 14:00:00+00:00,147.13865 -2024-08-09 15:00:00+00:00,147.106 -2024-08-09 16:00:00+00:00,147.07260000000002 -2024-08-09 17:00:00+00:00,147.04645 -2024-08-09 18:00:00+00:00,147.01315 -2024-08-09 19:00:00+00:00,146.96075000000002 -2024-08-09 20:00:00+00:00,146.91745 -2024-08-11 21:00:00+00:00,146.9014 -2024-08-11 22:00:00+00:00,146.87645 -2024-08-11 23:00:00+00:00,146.8686 -2024-08-12 00:00:00+00:00,146.86714999999998 -2024-08-12 01:00:00+00:00,146.86475 -2024-08-12 02:00:00+00:00,146.85160000000002 -2024-08-12 03:00:00+00:00,146.85155 -2024-08-12 04:00:00+00:00,146.84744999999998 -2024-08-12 05:00:00+00:00,146.8457 -2024-08-12 06:00:00+00:00,146.85 -2024-08-12 07:00:00+00:00,146.8602 -2024-08-12 08:00:00+00:00,146.8894 -2024-08-12 09:00:00+00:00,146.9252 -2024-08-12 10:00:00+00:00,146.96904999999998 -2024-08-12 11:00:00+00:00,147.02285 -2024-08-12 12:00:00+00:00,147.07815 -2024-08-12 13:00:00+00:00,147.13225 -2024-08-12 14:00:00+00:00,147.19535000000002 -2024-08-12 15:00:00+00:00,147.2403 -2024-08-12 16:00:00+00:00,147.277 -2024-08-12 17:00:00+00:00,147.29775 -2024-08-12 18:00:00+00:00,147.3131 -2024-08-12 19:00:00+00:00,147.3186 -2024-08-12 20:00:00+00:00,147.3355 -2024-08-12 21:00:00+00:00,147.3471 -2024-08-12 22:00:00+00:00,147.35705 -2024-08-12 23:00:00+00:00,147.34825 -2024-08-13 00:00:00+00:00,147.3553 -2024-08-13 01:00:00+00:00,147.36145 -2024-08-13 02:00:00+00:00,147.36899999999997 -2024-08-13 03:00:00+00:00,147.38225 -2024-08-13 04:00:00+00:00,147.4 -2024-08-13 05:00:00+00:00,147.41649999999998 -2024-08-13 06:00:00+00:00,147.43990000000002 -2024-08-13 07:00:00+00:00,147.45409999999998 -2024-08-13 08:00:00+00:00,147.4604 -2024-08-13 09:00:00+00:00,147.46620000000001 -2024-08-13 10:00:00+00:00,147.44889999999998 -2024-08-13 11:00:00+00:00,147.43915 -2024-08-13 12:00:00+00:00,147.44155 -2024-08-13 13:00:00+00:00,147.43635 -2024-08-13 14:00:00+00:00,147.4214 -2024-08-13 15:00:00+00:00,147.4107 -2024-08-13 16:00:00+00:00,147.3877 -2024-08-13 17:00:00+00:00,147.3728 -2024-08-13 18:00:00+00:00,147.3499 -2024-08-13 19:00:00+00:00,147.34025 -2024-08-13 20:00:00+00:00,147.31975 -2024-08-13 21:00:00+00:00,147.29595 -2024-08-13 22:00:00+00:00,147.26850000000002 -2024-08-13 23:00:00+00:00,147.24165 -2024-08-14 00:00:00+00:00,147.21065000000002 -2024-08-14 01:00:00+00:00,147.17145 -2024-08-14 02:00:00+00:00,147.1002 -2024-08-14 03:00:00+00:00,147.0462 -2024-08-14 04:00:00+00:00,146.99735 -2024-08-14 05:00:00+00:00,146.95695 -2024-08-14 06:00:00+00:00,146.93995 -2024-08-14 07:00:00+00:00,146.94285 -2024-08-14 08:00:00+00:00,146.92825 -2024-08-14 09:00:00+00:00,146.92945 -2024-08-14 10:00:00+00:00,146.92295 -2024-08-14 11:00:00+00:00,146.91910000000001 -2024-08-14 12:00:00+00:00,146.94805000000002 -2024-08-14 13:00:00+00:00,146.95105 -2024-08-14 14:00:00+00:00,146.95525000000004 -2024-08-14 15:00:00+00:00,146.95700000000002 -2024-08-14 16:00:00+00:00,146.96145 -2024-08-14 17:00:00+00:00,146.97955 -2024-08-14 18:00:00+00:00,147.00035 -2024-08-14 19:00:00+00:00,147.02005000000003 -2024-08-14 20:00:00+00:00,147.03109999999998 -2024-08-14 21:00:00+00:00,147.05025 -2024-08-14 22:00:00+00:00,147.0916 -2024-08-14 23:00:00+00:00,147.11645000000001 -2024-08-15 00:00:00+00:00,147.1346 -2024-08-15 01:00:00+00:00,147.1565 -2024-08-15 02:00:00+00:00,147.1703 -2024-08-15 03:00:00+00:00,147.17024999999998 -2024-08-15 04:00:00+00:00,147.17815000000002 -2024-08-15 05:00:00+00:00,147.18005 -2024-08-15 06:00:00+00:00,147.19485 -2024-08-15 07:00:00+00:00,147.21095 -2024-08-15 08:00:00+00:00,147.21195 -2024-08-15 09:00:00+00:00,147.23264999999998 -2024-08-15 10:00:00+00:00,147.25615000000002 -2024-08-15 11:00:00+00:00,147.27365 -2024-08-15 12:00:00+00:00,147.3742 -2024-08-15 13:00:00+00:00,147.46765 -2024-08-15 14:00:00+00:00,147.5572 -2024-08-15 15:00:00+00:00,147.6358 -2024-08-15 16:00:00+00:00,147.7221 -2024-08-15 17:00:00+00:00,147.81435000000002 -2024-08-15 18:00:00+00:00,147.90035 -2024-08-15 19:00:00+00:00,147.98895 -2024-08-15 20:00:00+00:00,148.09165000000002 -2024-08-15 21:00:00+00:00,148.18075000000002 -2024-08-15 22:00:00+00:00,148.27045 -2024-08-15 23:00:00+00:00,148.36190000000002 -2024-08-16 00:00:00+00:00,148.4561 -2024-08-16 01:00:00+00:00,148.5453 -2024-08-16 02:00:00+00:00,148.6309 -2024-08-16 03:00:00+00:00,148.71685 -2024-08-16 04:00:00+00:00,148.7932 -2024-08-16 05:00:00+00:00,148.87055 -2024-08-16 06:00:00+00:00,148.96205 -2024-08-16 07:00:00+00:00,149.0519 -2024-08-16 08:00:00+00:00,149.03969999999998 -2024-08-16 09:00:00+00:00,149.0197 -2024-08-16 10:00:00+00:00,148.98565000000002 -2024-08-16 11:00:00+00:00,148.94265000000001 -2024-08-16 12:00:00+00:00,148.8749 -2024-08-16 13:00:00+00:00,148.80855 -2024-08-16 14:00:00+00:00,148.75825 -2024-08-16 15:00:00+00:00,148.71280000000002 -2024-08-16 16:00:00+00:00,148.64865 -2024-08-16 17:00:00+00:00,148.57075 -2024-08-16 18:00:00+00:00,148.49134999999998 -2024-08-16 19:00:00+00:00,148.41475 -2024-08-16 20:00:00+00:00,148.33755000000002 -2024-08-18 21:00:00+00:00,148.2756 -2024-08-18 22:00:00+00:00,148.22485 -2024-08-18 23:00:00+00:00,148.1763 -2024-08-19 00:00:00+00:00,148.1242 -2024-08-19 01:00:00+00:00,148.04874999999998 -2024-08-19 02:00:00+00:00,147.96305 -2024-08-19 03:00:00+00:00,147.8352 -2024-08-19 04:00:00+00:00,147.70915 -2024-08-19 05:00:00+00:00,147.54655 -2024-08-19 06:00:00+00:00,147.42255 -2024-08-19 07:00:00+00:00,147.32504999999998 -2024-08-19 08:00:00+00:00,147.24465 -2024-08-19 09:00:00+00:00,147.16985 -2024-08-19 10:00:00+00:00,147.08725 -2024-08-19 11:00:00+00:00,146.98245 -2024-08-19 12:00:00+00:00,146.8932 -2024-08-19 13:00:00+00:00,146.8256 -2024-08-19 14:00:00+00:00,146.7602 -2024-08-19 15:00:00+00:00,146.6962 -2024-08-19 16:00:00+00:00,146.64065 -2024-08-19 17:00:00+00:00,146.58339999999998 -2024-08-19 18:00:00+00:00,146.5231 -2024-08-19 19:00:00+00:00,146.45675 -2024-08-19 20:00:00+00:00,146.39595 -2024-08-19 21:00:00+00:00,146.35500000000002 -2024-08-19 22:00:00+00:00,146.3191 -2024-08-19 23:00:00+00:00,146.3317 -2024-08-20 00:00:00+00:00,146.33935000000002 -2024-08-20 01:00:00+00:00,146.38495 -2024-08-20 02:00:00+00:00,146.44135 -2024-08-20 03:00:00+00:00,146.48970000000003 -2024-08-20 04:00:00+00:00,146.53225 -2024-08-20 05:00:00+00:00,146.58285 -2024-08-20 06:00:00+00:00,146.61755 -2024-08-20 07:00:00+00:00,146.64344999999997 -2024-08-20 08:00:00+00:00,146.65865 -2024-08-20 09:00:00+00:00,146.66275 -2024-08-20 10:00:00+00:00,146.6668 -2024-08-20 11:00:00+00:00,146.66434999999998 -2024-08-20 12:00:00+00:00,146.648 -2024-08-20 13:00:00+00:00,146.62665 -2024-08-20 14:00:00+00:00,146.5738 -2024-08-20 15:00:00+00:00,146.52675 -2024-08-20 16:00:00+00:00,146.4663 -2024-08-20 17:00:00+00:00,146.41094999999999 -2024-08-20 18:00:00+00:00,146.34859999999998 -2024-08-20 19:00:00+00:00,146.28005000000002 -2024-08-20 20:00:00+00:00,146.22625 -2024-08-20 21:00:00+00:00,146.16580000000002 -2024-08-20 22:00:00+00:00,146.072 -2024-08-20 23:00:00+00:00,145.98485 -2024-08-21 00:00:00+00:00,145.9108 -2024-08-21 01:00:00+00:00,145.8171 -2024-08-21 02:00:00+00:00,145.7344 -2024-08-21 03:00:00+00:00,145.68035 -2024-08-21 04:00:00+00:00,145.63805000000002 -2024-08-21 05:00:00+00:00,145.59755 -2024-08-21 06:00:00+00:00,145.5728 -2024-08-21 07:00:00+00:00,145.56135 -2024-08-21 08:00:00+00:00,145.55435 -2024-08-21 09:00:00+00:00,145.55455 -2024-08-21 10:00:00+00:00,145.58325 -2024-08-21 11:00:00+00:00,145.60165 -2024-08-21 12:00:00+00:00,145.6208 -2024-08-21 13:00:00+00:00,145.6336 -2024-08-21 14:00:00+00:00,145.64669999999998 -2024-08-21 15:00:00+00:00,145.63975 -2024-08-21 16:00:00+00:00,145.6359 -2024-08-21 17:00:00+00:00,145.63285 -2024-08-21 18:00:00+00:00,145.61375 -2024-08-21 19:00:00+00:00,145.5979 -2024-08-21 20:00:00+00:00,145.58995 -2024-08-21 21:00:00+00:00,145.57835 -2024-08-21 22:00:00+00:00,145.5534 -2024-08-21 23:00:00+00:00,145.5357 -2024-08-22 00:00:00+00:00,145.51864999999998 -2024-08-22 01:00:00+00:00,145.51615 -2024-08-22 02:00:00+00:00,145.49085 -2024-08-22 03:00:00+00:00,145.44685 -2024-08-22 04:00:00+00:00,145.40185000000002 -2024-08-22 05:00:00+00:00,145.35954999999998 -2024-08-22 06:00:00+00:00,145.31995 -2024-08-22 07:00:00+00:00,145.2791 -2024-08-22 08:00:00+00:00,145.272 -2024-08-22 09:00:00+00:00,145.2653 -2024-08-22 10:00:00+00:00,145.27125 -2024-08-22 11:00:00+00:00,145.3108 -2024-08-22 12:00:00+00:00,145.35375000000002 -2024-08-22 13:00:00+00:00,145.41455000000002 -2024-08-22 14:00:00+00:00,145.48905 -2024-08-22 15:00:00+00:00,145.53755 -2024-08-22 16:00:00+00:00,145.58945 -2024-08-22 17:00:00+00:00,145.64634999999998 -2024-08-22 18:00:00+00:00,145.7129 -2024-08-22 19:00:00+00:00,145.77145 -2024-08-22 20:00:00+00:00,145.8202 -2024-08-22 21:00:00+00:00,145.85219999999998 -2024-08-22 22:00:00+00:00,145.88905 -2024-08-22 23:00:00+00:00,145.93635 -2024-08-23 00:00:00+00:00,145.98335 -2024-08-23 01:00:00+00:00,145.9942 -2024-08-23 02:00:00+00:00,146.0052 -2024-08-23 03:00:00+00:00,146.0265 -2024-08-23 04:00:00+00:00,146.0333 -2024-08-23 05:00:00+00:00,146.03655 -2024-08-23 06:00:00+00:00,146.0211 -2024-08-23 07:00:00+00:00,146.01285000000001 -2024-08-23 08:00:00+00:00,146.00695000000002 -2024-08-23 09:00:00+00:00,145.99965 -2024-08-23 10:00:00+00:00,145.98875 -2024-08-23 11:00:00+00:00,145.9915 -2024-08-23 12:00:00+00:00,145.97449999999998 -2024-08-23 13:00:00+00:00,145.9701 -2024-08-23 14:00:00+00:00,145.91955000000002 -2024-08-23 15:00:00+00:00,145.8481 -2024-08-23 16:00:00+00:00,145.775 -2024-08-23 17:00:00+00:00,145.6825 -2024-08-23 18:00:00+00:00,145.5881 -2024-08-23 19:00:00+00:00,145.48930000000001 -2024-08-23 20:00:00+00:00,145.40484999999998 -2024-08-25 21:00:00+00:00,145.33315 -2024-08-25 22:00:00+00:00,145.24815 -2024-08-25 23:00:00+00:00,145.1607 -2024-08-26 00:00:00+00:00,145.0578 -2024-08-26 01:00:00+00:00,144.96115 -2024-08-26 02:00:00+00:00,144.8849 -2024-08-26 03:00:00+00:00,144.792 -2024-08-26 04:00:00+00:00,144.69754999999998 -2024-08-26 05:00:00+00:00,144.59324999999998 -2024-08-26 06:00:00+00:00,144.4808 -2024-08-26 07:00:00+00:00,144.37345 -2024-08-26 08:00:00+00:00,144.26715 -2024-08-26 09:00:00+00:00,144.15415000000002 -2024-08-26 10:00:00+00:00,144.0952 -2024-08-26 11:00:00+00:00,144.0586 -2024-08-26 12:00:00+00:00,144.0132 -2024-08-26 13:00:00+00:00,144.0134 -2024-08-26 14:00:00+00:00,144.00605000000002 -2024-08-26 15:00:00+00:00,144.01979999999998 -2024-08-26 16:00:00+00:00,144.02370000000002 -2024-08-26 17:00:00+00:00,144.04725 -2024-08-26 18:00:00+00:00,144.07745 -2024-08-26 19:00:00+00:00,144.11115 -2024-08-26 20:00:00+00:00,144.15155 -2024-08-26 21:00:00+00:00,144.1898 -2024-08-26 22:00:00+00:00,144.2117 -2024-08-26 23:00:00+00:00,144.2386 -2024-08-27 00:00:00+00:00,144.27855000000002 -2024-08-27 01:00:00+00:00,144.31080000000003 -2024-08-27 02:00:00+00:00,144.36595 -2024-08-27 03:00:00+00:00,144.4133 -2024-08-27 04:00:00+00:00,144.45200000000003 -2024-08-27 05:00:00+00:00,144.49325 -2024-08-27 06:00:00+00:00,144.53289999999998 -2024-08-27 07:00:00+00:00,144.57605 -2024-08-27 08:00:00+00:00,144.63215 -2024-08-27 09:00:00+00:00,144.65335 -2024-08-27 10:00:00+00:00,144.68505 -2024-08-27 11:00:00+00:00,144.68630000000002 -2024-08-27 12:00:00+00:00,144.68275 -2024-08-27 13:00:00+00:00,144.6733 -2024-08-27 14:00:00+00:00,144.6608 -2024-08-27 15:00:00+00:00,144.6443 -2024-08-27 16:00:00+00:00,144.62505000000002 -2024-08-27 17:00:00+00:00,144.6073 -2024-08-27 18:00:00+00:00,144.58970000000002 -2024-08-27 19:00:00+00:00,144.5632 -2024-08-27 20:00:00+00:00,144.5187 -2024-08-27 21:00:00+00:00,144.48100000000002 -2024-08-27 22:00:00+00:00,144.43095 -2024-08-27 23:00:00+00:00,144.38765 -2024-08-28 00:00:00+00:00,144.36135 -2024-08-28 01:00:00+00:00,144.33980000000003 -2024-08-28 02:00:00+00:00,144.32065 -2024-08-28 03:00:00+00:00,144.29145 -2024-08-28 04:00:00+00:00,144.25615 -2024-08-28 05:00:00+00:00,144.23415 -2024-08-28 06:00:00+00:00,144.22175 -2024-08-28 07:00:00+00:00,144.2231 -2024-08-28 08:00:00+00:00,144.22085 -2024-08-28 09:00:00+00:00,144.2181 -2024-08-28 10:00:00+00:00,144.226 -2024-08-28 11:00:00+00:00,144.22895 -2024-08-28 12:00:00+00:00,144.25745 -2024-08-28 13:00:00+00:00,144.29199999999997 -2024-08-28 14:00:00+00:00,144.3156 -2024-08-28 15:00:00+00:00,144.3404 -2024-08-28 16:00:00+00:00,144.3798 -2024-08-28 17:00:00+00:00,144.41424999999998 -2024-08-28 18:00:00+00:00,144.45345 -2024-08-28 19:00:00+00:00,144.49015 -2024-08-28 20:00:00+00:00,144.51409999999998 -2024-08-28 21:00:00+00:00,144.51899999999998 -2024-08-28 22:00:00+00:00,144.5117 -2024-08-28 23:00:00+00:00,144.5129 -2024-08-29 00:00:00+00:00,144.5167 -2024-08-29 01:00:00+00:00,144.5286 -2024-08-29 02:00:00+00:00,144.53130000000002 -2024-08-29 03:00:00+00:00,144.5295 -2024-08-29 04:00:00+00:00,144.54579999999999 -2024-08-29 05:00:00+00:00,144.56265 -2024-08-29 06:00:00+00:00,144.57115 -2024-08-29 07:00:00+00:00,144.59134999999998 -2024-08-29 08:00:00+00:00,144.59044999999998 -2024-08-29 09:00:00+00:00,144.57440000000003 -2024-08-29 10:00:00+00:00,144.5744 -2024-08-29 11:00:00+00:00,144.58030000000002 -2024-08-29 12:00:00+00:00,144.613 -2024-08-29 13:00:00+00:00,144.65005 -2024-08-29 14:00:00+00:00,144.6848 -2024-08-29 15:00:00+00:00,144.699 -2024-08-29 16:00:00+00:00,144.71975 -2024-08-29 17:00:00+00:00,144.73945 -2024-08-29 18:00:00+00:00,144.76344999999998 -2024-08-29 19:00:00+00:00,144.78754999999998 -2024-08-29 20:00:00+00:00,144.8156 -2024-08-29 21:00:00+00:00,144.83395000000002 -2024-08-29 22:00:00+00:00,144.84985 -2024-08-29 23:00:00+00:00,144.8682 -2024-08-30 00:00:00+00:00,144.87095 -2024-08-30 01:00:00+00:00,144.8783 -2024-08-30 02:00:00+00:00,144.88765 -2024-08-30 03:00:00+00:00,144.89100000000002 -2024-08-30 04:00:00+00:00,144.89885 -2024-08-30 05:00:00+00:00,144.91574999999997 -2024-08-30 06:00:00+00:00,144.93895 -2024-08-30 07:00:00+00:00,144.95589999999999 -2024-08-30 08:00:00+00:00,144.9421 -2024-08-30 09:00:00+00:00,144.92995000000002 -2024-08-30 10:00:00+00:00,144.92714999999998 -2024-08-30 11:00:00+00:00,144.94915 -2024-08-30 12:00:00+00:00,144.98065000000003 -2024-08-30 13:00:00+00:00,145.01775 -2024-08-30 14:00:00+00:00,145.0583 -2024-08-30 15:00:00+00:00,145.11010000000002 -2024-08-30 16:00:00+00:00,145.17175 -2024-08-30 17:00:00+00:00,145.2294 -2024-08-30 18:00:00+00:00,145.28875 -2024-08-30 19:00:00+00:00,145.35345 -2024-08-30 20:00:00+00:00,145.42720000000003 -2024-09-01 21:00:00+00:00,145.49485 -2024-09-01 22:00:00+00:00,145.5787 -2024-09-01 23:00:00+00:00,145.6592 -2024-09-02 00:00:00+00:00,145.7265 -2024-09-02 01:00:00+00:00,145.79440000000002 -2024-09-02 02:00:00+00:00,145.84525000000002 -2024-09-02 03:00:00+00:00,145.8963 -2024-09-02 04:00:00+00:00,145.93705 -2024-09-02 05:00:00+00:00,145.98595 -2024-09-02 06:00:00+00:00,146.02935 -2024-09-02 07:00:00+00:00,146.0817 -2024-09-02 08:00:00+00:00,146.1351 -2024-09-02 09:00:00+00:00,146.1892 -2024-09-02 10:00:00+00:00,146.25005000000002 -2024-09-02 11:00:00+00:00,146.30180000000001 -2024-09-02 12:00:00+00:00,146.33970000000002 -2024-09-02 13:00:00+00:00,146.38025 -2024-09-02 14:00:00+00:00,146.4237 -2024-09-02 15:00:00+00:00,146.4619 -2024-09-02 16:00:00+00:00,146.49269999999999 -2024-09-02 17:00:00+00:00,146.5315 -2024-09-02 18:00:00+00:00,146.5543 -2024-09-02 19:00:00+00:00,146.57840000000002 -2024-09-02 20:00:00+00:00,146.6144 -2024-09-02 21:00:00+00:00,146.64884999999998 -2024-09-02 22:00:00+00:00,146.69795 -2024-09-02 23:00:00+00:00,146.73785 -2024-09-03 00:00:00+00:00,146.79745 -2024-09-03 01:00:00+00:00,146.82285 -2024-09-03 02:00:00+00:00,146.84685000000002 -2024-09-03 03:00:00+00:00,146.85039999999998 -2024-09-03 04:00:00+00:00,146.842 -2024-09-03 05:00:00+00:00,146.8236 -2024-09-03 06:00:00+00:00,146.7843 -2024-09-03 07:00:00+00:00,146.73225 -2024-09-03 08:00:00+00:00,146.67365 -2024-09-03 09:00:00+00:00,146.62220000000002 -2024-09-03 10:00:00+00:00,146.5759 -2024-09-03 11:00:00+00:00,146.5371 -2024-09-03 12:00:00+00:00,146.49034999999998 -2024-09-03 13:00:00+00:00,146.41754999999998 -2024-09-03 14:00:00+00:00,146.35070000000002 -2024-09-03 15:00:00+00:00,146.29749999999999 -2024-09-03 16:00:00+00:00,146.24020000000002 -2024-09-03 17:00:00+00:00,146.18985 -2024-09-03 18:00:00+00:00,146.1325 -2024-09-03 19:00:00+00:00,146.07670000000002 -2024-09-03 20:00:00+00:00,145.9946 -2024-09-03 21:00:00+00:00,145.9359 -2024-09-03 22:00:00+00:00,145.87089999999998 -2024-09-03 23:00:00+00:00,145.81205 -2024-09-04 00:00:00+00:00,145.74405 -2024-09-04 01:00:00+00:00,145.69885 -2024-09-04 02:00:00+00:00,145.67025 -2024-09-04 03:00:00+00:00,145.6385 -2024-09-04 04:00:00+00:00,145.6105 -2024-09-04 05:00:00+00:00,145.5722 -2024-09-04 06:00:00+00:00,145.5143 -2024-09-04 07:00:00+00:00,145.45475 -2024-09-04 08:00:00+00:00,145.42095 -2024-09-04 09:00:00+00:00,145.40445 -2024-09-04 10:00:00+00:00,145.3796 -2024-09-04 11:00:00+00:00,145.3329 -2024-09-04 12:00:00+00:00,145.2984 -2024-09-04 13:00:00+00:00,145.2431 -2024-09-04 14:00:00+00:00,145.1589 -2024-09-04 15:00:00+00:00,145.09269999999998 -2024-09-04 16:00:00+00:00,145.02095 -2024-09-04 17:00:00+00:00,144.95255 -2024-09-04 18:00:00+00:00,144.88000000000002 -2024-09-04 19:00:00+00:00,144.80270000000002 -2024-09-04 20:00:00+00:00,144.73065000000003 -2024-09-04 21:00:00+00:00,144.64305000000002 -2024-09-04 22:00:00+00:00,144.55185 -2024-09-04 23:00:00+00:00,144.453 -2024-09-05 00:00:00+00:00,144.3764 -2024-09-05 01:00:00+00:00,144.3033 -2024-09-05 02:00:00+00:00,144.251 -2024-09-05 03:00:00+00:00,144.18985 -2024-09-05 04:00:00+00:00,144.10835 -2024-09-05 05:00:00+00:00,144.0231 -2024-09-05 06:00:00+00:00,143.9316 -2024-09-05 07:00:00+00:00,143.8676 -2024-09-05 08:00:00+00:00,143.79240000000001 -2024-09-05 09:00:00+00:00,143.73309999999998 -2024-09-05 10:00:00+00:00,143.70170000000002 -2024-09-05 11:00:00+00:00,143.65885 -2024-09-05 12:00:00+00:00,143.61135 -2024-09-05 13:00:00+00:00,143.56725 -2024-09-05 14:00:00+00:00,143.56875 -2024-09-05 15:00:00+00:00,143.5494 -2024-09-05 16:00:00+00:00,143.53439999999998 -2024-09-05 17:00:00+00:00,143.5192 -2024-09-05 18:00:00+00:00,143.50900000000001 -2024-09-05 19:00:00+00:00,143.5151 -2024-09-05 20:00:00+00:00,143.5018 -2024-09-05 21:00:00+00:00,143.48785 -2024-09-05 22:00:00+00:00,143.467 -2024-09-05 23:00:00+00:00,143.4486 -2024-09-06 00:00:00+00:00,143.42865 -2024-09-06 01:00:00+00:00,143.4225 -2024-09-06 02:00:00+00:00,143.42055 -2024-09-06 03:00:00+00:00,143.39159999999998 -2024-09-06 04:00:00+00:00,143.3627 -2024-09-06 05:00:00+00:00,143.3126 -2024-09-06 06:00:00+00:00,143.25764999999998 -2024-09-06 07:00:00+00:00,143.21125 -2024-09-06 08:00:00+00:00,143.18705 -2024-09-06 09:00:00+00:00,143.16755 -2024-09-06 10:00:00+00:00,143.11425 -2024-09-06 11:00:00+00:00,143.09545 -2024-09-06 12:00:00+00:00,143.07315 -2024-09-06 13:00:00+00:00,143.08155 -2024-09-06 14:00:00+00:00,143.03255000000001 -2024-09-06 15:00:00+00:00,142.96660000000003 -2024-09-06 16:00:00+00:00,142.9163 -2024-09-06 17:00:00+00:00,142.86615 -2024-09-06 18:00:00+00:00,142.81345 -2024-09-06 19:00:00+00:00,142.76475 -2024-09-06 20:00:00+00:00,142.72150000000002 -2024-09-08 21:00:00+00:00,142.66559999999998 -2024-09-08 22:00:00+00:00,142.61305 -2024-09-08 23:00:00+00:00,142.58599999999998 -2024-09-09 00:00:00+00:00,142.5712 -2024-09-09 01:00:00+00:00,142.58890000000002 -2024-09-09 02:00:00+00:00,142.61020000000002 -2024-09-09 03:00:00+00:00,142.62205 -2024-09-09 04:00:00+00:00,142.64005 -2024-09-09 05:00:00+00:00,142.64565 -2024-09-09 06:00:00+00:00,142.65315 -2024-09-09 07:00:00+00:00,142.6581 -2024-09-09 08:00:00+00:00,142.67775 -2024-09-09 09:00:00+00:00,142.67625 -2024-09-09 10:00:00+00:00,142.7378 -2024-09-09 11:00:00+00:00,142.8113 -2024-09-09 12:00:00+00:00,142.85060000000001 -2024-09-09 13:00:00+00:00,142.869 -2024-09-09 14:00:00+00:00,142.888 -2024-09-09 15:00:00+00:00,142.9134 -2024-09-09 16:00:00+00:00,142.9418 -2024-09-09 17:00:00+00:00,142.97449999999998 -2024-09-09 18:00:00+00:00,143.0076 -2024-09-09 19:00:00+00:00,143.031 -2024-09-09 20:00:00+00:00,143.05429999999998 -2024-09-09 21:00:00+00:00,143.0634 -2024-09-09 22:00:00+00:00,143.0746 -2024-09-09 23:00:00+00:00,143.09595000000002 -2024-09-10 00:00:00+00:00,143.12075 -2024-09-10 01:00:00+00:00,143.14614999999998 -2024-09-10 02:00:00+00:00,143.1662 -2024-09-10 03:00:00+00:00,143.17005 -2024-09-10 04:00:00+00:00,143.15505000000002 -2024-09-10 05:00:00+00:00,143.1384 -2024-09-10 06:00:00+00:00,143.12485 -2024-09-10 07:00:00+00:00,143.12445 -2024-09-10 08:00:00+00:00,143.1384 -2024-09-10 09:00:00+00:00,143.1568 -2024-09-10 10:00:00+00:00,143.17194999999998 -2024-09-10 11:00:00+00:00,143.1818 -2024-09-10 12:00:00+00:00,143.18110000000001 -2024-09-10 13:00:00+00:00,143.19070000000002 -2024-09-10 14:00:00+00:00,143.18605 -2024-09-10 15:00:00+00:00,143.15249999999997 -2024-09-10 16:00:00+00:00,143.1174 -2024-09-10 17:00:00+00:00,143.0801 -2024-09-10 18:00:00+00:00,143.04534999999998 -2024-09-10 19:00:00+00:00,143.0014 -2024-09-10 20:00:00+00:00,142.9507 -2024-09-10 21:00:00+00:00,142.9011 -2024-09-10 22:00:00+00:00,142.8532 -2024-09-10 23:00:00+00:00,142.80325 -2024-09-11 00:00:00+00:00,142.76375000000002 -2024-09-11 01:00:00+00:00,142.69755 -2024-09-11 02:00:00+00:00,142.61925 -2024-09-11 03:00:00+00:00,142.50910000000002 -2024-09-11 04:00:00+00:00,142.38815 -2024-09-11 05:00:00+00:00,142.29435 -2024-09-11 06:00:00+00:00,142.21095 -2024-09-11 07:00:00+00:00,142.1242 -2024-09-11 08:00:00+00:00,142.0575 -2024-09-11 09:00:00+00:00,141.98565 -2024-09-11 10:00:00+00:00,141.92874999999998 -2024-09-11 11:00:00+00:00,141.8988 -2024-09-11 12:00:00+00:00,141.8902 -2024-09-11 13:00:00+00:00,141.86115 -2024-09-11 14:00:00+00:00,141.81504999999999 -2024-09-11 15:00:00+00:00,141.78595 -2024-09-11 16:00:00+00:00,141.76055000000002 -2024-09-11 17:00:00+00:00,141.74925 -2024-09-11 18:00:00+00:00,141.73695 -2024-09-11 19:00:00+00:00,141.7439 -2024-09-11 20:00:00+00:00,141.7474 -2024-09-11 21:00:00+00:00,141.77044999999998 -2024-09-11 22:00:00+00:00,141.80175 -2024-09-11 23:00:00+00:00,141.86375 -2024-09-12 00:00:00+00:00,141.94334999999998 -2024-09-12 01:00:00+00:00,142.00635 -2024-09-12 02:00:00+00:00,142.0642 -2024-09-12 03:00:00+00:00,142.1245 -2024-09-12 04:00:00+00:00,142.18710000000002 -2024-09-12 05:00:00+00:00,142.2503 -2024-09-12 06:00:00+00:00,142.3001 -2024-09-12 07:00:00+00:00,142.3539 -2024-09-12 08:00:00+00:00,142.3684 -2024-09-12 09:00:00+00:00,142.4116 -2024-09-12 10:00:00+00:00,142.47129999999999 -2024-09-12 11:00:00+00:00,142.51330000000002 -2024-09-12 12:00:00+00:00,142.52085 -2024-09-12 13:00:00+00:00,142.5111 -2024-09-12 14:00:00+00:00,142.52519999999998 -2024-09-12 15:00:00+00:00,142.51860000000002 -2024-09-12 16:00:00+00:00,142.5265 -2024-09-12 17:00:00+00:00,142.52550000000002 -2024-09-12 18:00:00+00:00,142.5038 -2024-09-12 19:00:00+00:00,142.46599999999998 -2024-09-12 20:00:00+00:00,142.4225 -2024-09-12 21:00:00+00:00,142.38709999999998 -2024-09-12 22:00:00+00:00,142.35264999999998 -2024-09-12 23:00:00+00:00,142.29855 -2024-09-13 00:00:00+00:00,142.21914999999998 -2024-09-13 01:00:00+00:00,142.13875 -2024-09-13 02:00:00+00:00,142.062 -2024-09-13 03:00:00+00:00,141.97265 -2024-09-13 04:00:00+00:00,141.8916 -2024-09-13 05:00:00+00:00,141.80095 -2024-09-13 06:00:00+00:00,141.72445000000002 -2024-09-13 07:00:00+00:00,141.64175 -2024-09-13 08:00:00+00:00,141.5717 -2024-09-13 09:00:00+00:00,141.50005 -2024-09-13 10:00:00+00:00,141.41075 -2024-09-13 11:00:00+00:00,141.3404 -2024-09-13 12:00:00+00:00,141.251 -2024-09-13 13:00:00+00:00,141.15540000000001 -2024-09-13 14:00:00+00:00,141.08620000000002 -2024-09-13 15:00:00+00:00,141.02530000000002 -2024-09-13 16:00:00+00:00,140.9752 -2024-09-13 17:00:00+00:00,140.9289 -2024-09-13 18:00:00+00:00,140.8834 -2024-09-13 19:00:00+00:00,140.8543 -2024-09-13 20:00:00+00:00,140.8355 -2024-09-15 21:00:00+00:00,140.81350000000003 -2024-09-15 22:00:00+00:00,140.7963 -2024-09-15 23:00:00+00:00,140.7898 -2024-09-16 00:00:00+00:00,140.76819999999998 -2024-09-16 01:00:00+00:00,140.75209999999998 -2024-09-16 02:00:00+00:00,140.7243 -2024-09-16 03:00:00+00:00,140.6848 -2024-09-16 04:00:00+00:00,140.66080000000002 -2024-09-16 05:00:00+00:00,140.64170000000001 -2024-09-16 06:00:00+00:00,140.59945 -2024-09-16 07:00:00+00:00,140.5514 -2024-09-16 08:00:00+00:00,140.5075 -2024-09-16 09:00:00+00:00,140.49984999999998 -2024-09-16 10:00:00+00:00,140.47415 -2024-09-16 11:00:00+00:00,140.43525 -2024-09-16 12:00:00+00:00,140.4066 -2024-09-16 13:00:00+00:00,140.38400000000001 -2024-09-16 14:00:00+00:00,140.35965000000002 -2024-09-16 15:00:00+00:00,140.35305 -2024-09-16 16:00:00+00:00,140.34405 -2024-09-16 17:00:00+00:00,140.3387 -2024-09-16 18:00:00+00:00,140.3396 -2024-09-16 19:00:00+00:00,140.33215 -2024-09-16 20:00:00+00:00,140.33610000000002 -2024-09-16 21:00:00+00:00,140.3405 -2024-09-16 22:00:00+00:00,140.3571 -2024-09-16 23:00:00+00:00,140.39075 -2024-09-17 00:00:00+00:00,140.41299999999998 -2024-09-17 01:00:00+00:00,140.42545 -2024-09-17 02:00:00+00:00,140.4617 -2024-09-17 03:00:00+00:00,140.4978 -2024-09-17 04:00:00+00:00,140.5391 -2024-09-17 05:00:00+00:00,140.56385 -2024-09-17 06:00:00+00:00,140.59154999999998 -2024-09-17 07:00:00+00:00,140.62715 -2024-09-17 08:00:00+00:00,140.6439 -2024-09-17 09:00:00+00:00,140.6531 -2024-09-17 10:00:00+00:00,140.66424999999998 -2024-09-17 11:00:00+00:00,140.65465 -2024-09-17 12:00:00+00:00,140.67125 -2024-09-17 13:00:00+00:00,140.71644999999998 -2024-09-17 14:00:00+00:00,140.76565 -2024-09-17 15:00:00+00:00,140.81945 -2024-09-17 16:00:00+00:00,140.8759 -2024-09-17 17:00:00+00:00,140.93955 -2024-09-17 18:00:00+00:00,140.98665 -2024-09-17 19:00:00+00:00,141.05810000000002 -2024-09-17 20:00:00+00:00,141.14515 -2024-09-17 21:00:00+00:00,141.2407 -2024-09-17 22:00:00+00:00,141.3143 -2024-09-17 23:00:00+00:00,141.385 -2024-09-18 00:00:00+00:00,141.4336 -2024-09-18 01:00:00+00:00,141.47445 -2024-09-18 02:00:00+00:00,141.51395 -2024-09-18 03:00:00+00:00,141.55365 -2024-09-18 04:00:00+00:00,141.5908 -2024-09-18 05:00:00+00:00,141.63545 -2024-09-18 06:00:00+00:00,141.6794 -2024-09-18 07:00:00+00:00,141.743 -2024-09-18 08:00:00+00:00,141.77995 -2024-09-18 09:00:00+00:00,141.78320000000002 -2024-09-18 10:00:00+00:00,141.77865 -2024-09-18 11:00:00+00:00,141.78235 -2024-09-18 12:00:00+00:00,141.79180000000002 -2024-09-18 13:00:00+00:00,141.78474999999997 -2024-09-18 14:00:00+00:00,141.79444999999998 -2024-09-18 15:00:00+00:00,141.78005 -2024-09-18 16:00:00+00:00,141.75394999999997 -2024-09-18 17:00:00+00:00,141.73579999999998 -2024-09-18 18:00:00+00:00,141.69019999999998 -2024-09-18 19:00:00+00:00,141.7117 -2024-09-18 20:00:00+00:00,141.7431 -2024-09-18 21:00:00+00:00,141.77325 -2024-09-18 22:00:00+00:00,141.80525 -2024-09-18 23:00:00+00:00,141.87079999999997 -2024-09-19 00:00:00+00:00,141.97925 -2024-09-19 01:00:00+00:00,142.089 -2024-09-19 02:00:00+00:00,142.17185 -2024-09-19 03:00:00+00:00,142.23645000000002 -2024-09-19 04:00:00+00:00,142.3097 -2024-09-19 05:00:00+00:00,142.35605 -2024-09-19 06:00:00+00:00,142.3881 -2024-09-19 07:00:00+00:00,142.4211 -2024-09-19 08:00:00+00:00,142.46445 -2024-09-19 09:00:00+00:00,142.51435 -2024-09-19 10:00:00+00:00,142.55575000000002 -2024-09-19 11:00:00+00:00,142.60495 -2024-09-19 12:00:00+00:00,142.69865 -2024-09-19 13:00:00+00:00,142.7657 -2024-09-19 14:00:00+00:00,142.85455000000002 -2024-09-19 15:00:00+00:00,142.87685000000002 -2024-09-19 16:00:00+00:00,142.91485 -2024-09-19 17:00:00+00:00,142.95475000000002 -2024-09-19 18:00:00+00:00,142.9823 -2024-09-19 19:00:00+00:00,142.97895 -2024-09-19 20:00:00+00:00,142.93635 -2024-09-19 21:00:00+00:00,142.88185 -2024-09-19 22:00:00+00:00,142.85485 -2024-09-19 23:00:00+00:00,142.83955 -2024-09-20 00:00:00+00:00,142.80125 -2024-09-20 01:00:00+00:00,142.7924 -2024-09-20 02:00:00+00:00,142.80339999999998 -2024-09-20 03:00:00+00:00,142.79260000000002 -2024-09-20 04:00:00+00:00,142.76245 -2024-09-20 05:00:00+00:00,142.73845 -2024-09-20 06:00:00+00:00,142.74605 -2024-09-20 07:00:00+00:00,142.78154999999998 -2024-09-20 08:00:00+00:00,142.78410000000002 -2024-09-20 09:00:00+00:00,142.8144 -2024-09-20 10:00:00+00:00,142.88155 -2024-09-20 11:00:00+00:00,142.94805 -2024-09-20 12:00:00+00:00,142.97944999999999 -2024-09-20 13:00:00+00:00,143.0374 -2024-09-20 14:00:00+00:00,143.12535 -2024-09-20 15:00:00+00:00,143.18905 -2024-09-20 16:00:00+00:00,143.2451 -2024-09-20 17:00:00+00:00,143.31195000000002 -2024-09-20 18:00:00+00:00,143.37235 -2024-09-20 19:00:00+00:00,143.4252 -2024-09-20 20:00:00+00:00,143.5006 -2024-09-22 21:00:00+00:00,143.57559999999998 -2024-09-22 22:00:00+00:00,143.6485 -2024-09-22 23:00:00+00:00,143.7379 -2024-09-23 00:00:00+00:00,143.83470000000003 -2024-09-23 01:00:00+00:00,143.93945000000002 -2024-09-23 02:00:00+00:00,144.00830000000002 -2024-09-23 03:00:00+00:00,144.04265 -2024-09-23 04:00:00+00:00,144.0652 -2024-09-23 05:00:00+00:00,144.074 -2024-09-23 06:00:00+00:00,144.0608 -2024-09-23 07:00:00+00:00,144.03325 -2024-09-23 08:00:00+00:00,144.02935 -2024-09-23 09:00:00+00:00,144.0068 -2024-09-23 10:00:00+00:00,143.9543 -2024-09-23 11:00:00+00:00,143.93925 -2024-09-23 12:00:00+00:00,143.9401 -2024-09-23 13:00:00+00:00,143.94415 -2024-09-23 14:00:00+00:00,143.9391 -2024-09-23 15:00:00+00:00,143.92265 -2024-09-23 16:00:00+00:00,143.894 -2024-09-23 17:00:00+00:00,143.86944999999997 -2024-09-23 18:00:00+00:00,143.83915 -2024-09-23 19:00:00+00:00,143.80955 -2024-09-23 20:00:00+00:00,143.78345 -2024-09-23 21:00:00+00:00,143.7442 -2024-09-23 22:00:00+00:00,143.7077 -2024-09-23 23:00:00+00:00,143.67335 -2024-09-24 00:00:00+00:00,143.638 -2024-09-24 01:00:00+00:00,143.6137 -2024-09-24 02:00:00+00:00,143.59740000000002 -2024-09-24 03:00:00+00:00,143.6028 -2024-09-24 04:00:00+00:00,143.6155 -2024-09-24 05:00:00+00:00,143.6387 -2024-09-24 06:00:00+00:00,143.6915 -2024-09-24 07:00:00+00:00,143.73370000000003 -2024-09-24 08:00:00+00:00,143.7595 -2024-09-24 09:00:00+00:00,143.77 -2024-09-24 10:00:00+00:00,143.7783 -2024-09-24 11:00:00+00:00,143.79745 -2024-09-24 12:00:00+00:00,143.82855 -2024-09-24 13:00:00+00:00,143.86305 -2024-09-24 14:00:00+00:00,143.88065 -2024-09-24 15:00:00+00:00,143.89505000000003 -2024-09-24 16:00:00+00:00,143.88805 -2024-09-24 17:00:00+00:00,143.88215 -2024-09-24 18:00:00+00:00,143.8698 -2024-09-24 19:00:00+00:00,143.85025000000002 -2024-09-24 20:00:00+00:00,143.8338 -2024-09-24 21:00:00+00:00,143.81185 -2024-09-24 22:00:00+00:00,143.7808 -2024-09-24 23:00:00+00:00,143.73965 -2024-09-25 00:00:00+00:00,143.70625 -2024-09-25 01:00:00+00:00,143.67405000000002 -2024-09-25 02:00:00+00:00,143.62015000000002 -2024-09-25 03:00:00+00:00,143.5623 -2024-09-25 04:00:00+00:00,143.5105 -2024-09-25 05:00:00+00:00,143.46009999999998 -2024-09-25 06:00:00+00:00,143.44725 -2024-09-25 07:00:00+00:00,143.4425 -2024-09-25 08:00:00+00:00,143.44105 -2024-09-25 09:00:00+00:00,143.4454 -2024-09-25 10:00:00+00:00,143.4759 -2024-09-25 11:00:00+00:00,143.5024 -2024-09-25 12:00:00+00:00,143.53924999999998 -2024-09-25 13:00:00+00:00,143.56844999999998 -2024-09-25 14:00:00+00:00,143.61714999999998 -2024-09-25 15:00:00+00:00,143.6754 -2024-09-25 16:00:00+00:00,143.7408 -2024-09-25 17:00:00+00:00,143.8089 -2024-09-25 18:00:00+00:00,143.89055 -2024-09-25 19:00:00+00:00,143.98095 -2024-09-25 20:00:00+00:00,144.0601 -2024-09-25 21:00:00+00:00,144.1213 -2024-09-25 22:00:00+00:00,144.1864 -2024-09-25 23:00:00+00:00,144.2575 -2024-09-26 00:00:00+00:00,144.31959999999998 -2024-09-26 01:00:00+00:00,144.3973 -2024-09-26 02:00:00+00:00,144.4551 -2024-09-26 03:00:00+00:00,144.5075 -2024-09-26 04:00:00+00:00,144.5451 -2024-09-26 05:00:00+00:00,144.57185 -2024-09-26 06:00:00+00:00,144.59945 -2024-09-26 07:00:00+00:00,144.63535000000002 -2024-09-26 08:00:00+00:00,144.66670000000002 -2024-09-26 09:00:00+00:00,144.699 -2024-09-26 10:00:00+00:00,144.6993 -2024-09-26 11:00:00+00:00,144.6874 -2024-09-26 12:00:00+00:00,144.6891 -2024-09-26 13:00:00+00:00,144.69035 -2024-09-26 14:00:00+00:00,144.6981 -2024-09-26 15:00:00+00:00,144.69389999999999 -2024-09-26 16:00:00+00:00,144.69885 -2024-09-26 17:00:00+00:00,144.70094999999998 -2024-09-26 18:00:00+00:00,144.69955 -2024-09-26 19:00:00+00:00,144.69675 -2024-09-26 20:00:00+00:00,144.71235 -2024-09-26 21:00:00+00:00,144.71175 -2024-09-26 22:00:00+00:00,144.71375 -2024-09-26 23:00:00+00:00,144.72155 -2024-09-27 00:00:00+00:00,144.76010000000002 -2024-09-27 01:00:00+00:00,144.7894 -2024-09-27 02:00:00+00:00,144.8022 -2024-09-27 03:00:00+00:00,144.8137 -2024-09-27 04:00:00+00:00,144.8619 -2024-09-27 05:00:00+00:00,144.93959999999998 -2024-09-27 06:00:00+00:00,144.8803 -2024-09-27 07:00:00+00:00,144.8315 -2024-09-27 08:00:00+00:00,144.7605 -2024-09-27 09:00:00+00:00,144.6883 -2024-09-27 10:00:00+00:00,144.60795000000002 -2024-09-27 11:00:00+00:00,144.52965 -2024-09-27 12:00:00+00:00,144.41275000000002 -2024-09-27 13:00:00+00:00,144.3042 -2024-09-27 14:00:00+00:00,144.21595 -2024-09-27 15:00:00+00:00,144.1127 -2024-09-27 16:00:00+00:00,143.99790000000002 -2024-09-27 17:00:00+00:00,143.8741 -2024-09-27 18:00:00+00:00,143.7387 -2024-09-27 19:00:00+00:00,143.5925 -2024-09-27 20:00:00+00:00,143.43009999999998 -2024-09-29 21:00:00+00:00,143.2791 -2024-09-29 22:00:00+00:00,143.15839999999997 -2024-09-29 23:00:00+00:00,143.03515 -2024-09-30 00:00:00+00:00,142.8799 -2024-09-30 01:00:00+00:00,142.69050000000001 -2024-09-30 02:00:00+00:00,142.6578 -2024-09-30 03:00:00+00:00,142.62079999999997 -2024-09-30 04:00:00+00:00,142.56990000000002 -2024-09-30 05:00:00+00:00,142.4986 -2024-09-30 06:00:00+00:00,142.43990000000002 -2024-09-30 07:00:00+00:00,142.40265 -2024-09-30 08:00:00+00:00,142.40365 -2024-09-30 09:00:00+00:00,142.4031 -2024-09-30 10:00:00+00:00,142.39034999999998 -2024-09-30 11:00:00+00:00,142.3884 -2024-09-30 12:00:00+00:00,142.4102 -2024-09-30 13:00:00+00:00,142.45035000000001 -2024-09-30 14:00:00+00:00,142.49365 -2024-09-30 15:00:00+00:00,142.5487 -2024-09-30 16:00:00+00:00,142.59365 -2024-09-30 17:00:00+00:00,142.63415 -2024-09-30 18:00:00+00:00,142.6847 -2024-09-30 19:00:00+00:00,142.73160000000001 -2024-09-30 20:00:00+00:00,142.77855 -2024-09-30 21:00:00+00:00,142.83605 -2024-09-30 22:00:00+00:00,142.88785000000001 -2024-09-30 23:00:00+00:00,142.95105 -2024-10-01 00:00:00+00:00,143.04295 -2024-10-01 01:00:00+00:00,143.14345 -2024-10-01 02:00:00+00:00,143.2414 -2024-10-01 03:00:00+00:00,143.33715 -2024-10-01 04:00:00+00:00,143.4241 -2024-10-01 05:00:00+00:00,143.5106 -2024-10-01 06:00:00+00:00,143.59720000000002 -2024-10-01 07:00:00+00:00,143.67780000000002 -2024-10-01 08:00:00+00:00,143.7209 -2024-10-01 09:00:00+00:00,143.751 -2024-10-01 10:00:00+00:00,143.7862 -2024-10-01 11:00:00+00:00,143.81080000000003 -2024-10-01 12:00:00+00:00,143.85700000000003 -2024-10-01 13:00:00+00:00,143.879 -2024-10-01 14:00:00+00:00,143.87485 -2024-10-01 15:00:00+00:00,143.87195 -2024-10-01 16:00:00+00:00,143.8725 -2024-10-01 17:00:00+00:00,143.8827 -2024-10-01 18:00:00+00:00,143.88815 -2024-10-01 19:00:00+00:00,143.88045 -2024-10-01 20:00:00+00:00,143.8606 -2024-10-01 21:00:00+00:00,143.85674999999998 -2024-10-01 22:00:00+00:00,143.832 -2024-10-01 23:00:00+00:00,143.80450000000002 -2024-10-02 00:00:00+00:00,143.78135000000003 -2024-10-02 01:00:00+00:00,143.7631 -2024-10-02 02:00:00+00:00,143.7465 -2024-10-02 03:00:00+00:00,143.74464999999998 -2024-10-02 04:00:00+00:00,143.74075 -2024-10-02 05:00:00+00:00,143.73985 -2024-10-02 06:00:00+00:00,143.74765 -2024-10-02 07:00:00+00:00,143.76325000000003 -2024-10-02 08:00:00+00:00,143.77775 -2024-10-02 09:00:00+00:00,143.81415 -2024-10-02 10:00:00+00:00,143.87365 -2024-10-02 11:00:00+00:00,143.925 -2024-10-02 12:00:00+00:00,144.0116 -2024-10-02 13:00:00+00:00,144.1077 -2024-10-02 14:00:00+00:00,144.2338 -2024-10-02 15:00:00+00:00,144.3582 -2024-10-02 16:00:00+00:00,144.48145000000002 -2024-10-02 17:00:00+00:00,144.608 -2024-10-02 18:00:00+00:00,144.7486 -2024-10-02 19:00:00+00:00,144.88415 -2024-10-02 20:00:00+00:00,145.01705 -2024-10-02 21:00:00+00:00,145.14079999999998 -2024-10-02 22:00:00+00:00,145.2705 -2024-10-02 23:00:00+00:00,145.39260000000002 -2024-10-03 00:00:00+00:00,145.55559999999997 -2024-10-03 01:00:00+00:00,145.70995 -2024-10-03 02:00:00+00:00,145.85435 -2024-10-03 03:00:00+00:00,145.9936 -2024-10-03 04:00:00+00:00,146.11335 -2024-10-03 05:00:00+00:00,146.22814999999997 -2024-10-03 06:00:00+00:00,146.32485 -2024-10-03 07:00:00+00:00,146.4126 -2024-10-03 08:00:00+00:00,146.4819 -2024-10-03 09:00:00+00:00,146.5408 -2024-10-03 10:00:00+00:00,146.57295000000002 -2024-10-03 11:00:00+00:00,146.6039 -2024-10-03 12:00:00+00:00,146.64079999999998 -2024-10-03 13:00:00+00:00,146.66495000000003 -2024-10-03 14:00:00+00:00,146.6873 -2024-10-03 15:00:00+00:00,146.707 -2024-10-03 16:00:00+00:00,146.7193 -2024-10-03 17:00:00+00:00,146.7333 -2024-10-03 18:00:00+00:00,146.7469 -2024-10-03 19:00:00+00:00,146.76125 -2024-10-03 20:00:00+00:00,146.7594 -2024-10-03 21:00:00+00:00,146.76255 -2024-10-03 22:00:00+00:00,146.76635 -2024-10-03 23:00:00+00:00,146.76615 -2024-10-04 00:00:00+00:00,146.7624 -2024-10-04 01:00:00+00:00,146.7621 -2024-10-04 02:00:00+00:00,146.7462 -2024-10-04 03:00:00+00:00,146.74230000000003 -2024-10-04 04:00:00+00:00,146.71615000000003 -2024-10-04 05:00:00+00:00,146.67425 -2024-10-04 06:00:00+00:00,146.64375 -2024-10-04 07:00:00+00:00,146.62560000000002 -2024-10-04 08:00:00+00:00,146.60395 -2024-10-04 09:00:00+00:00,146.59499999999997 -2024-10-04 10:00:00+00:00,146.58100000000002 -2024-10-04 11:00:00+00:00,146.56875000000002 -2024-10-04 12:00:00+00:00,146.66495 -2024-10-04 13:00:00+00:00,146.75275 -2024-10-04 14:00:00+00:00,146.83425 -2024-10-04 15:00:00+00:00,146.92595 -2024-10-04 16:00:00+00:00,147.0252 -2024-10-04 17:00:00+00:00,147.12175 -2024-10-04 18:00:00+00:00,147.22235 -2024-10-04 19:00:00+00:00,147.31844999999998 -2024-10-04 20:00:00+00:00,147.42115 -2024-10-06 21:00:00+00:00,147.53295 -2024-10-06 22:00:00+00:00,147.65945000000002 -2024-10-06 23:00:00+00:00,147.78050000000002 -2024-10-07 00:00:00+00:00,147.8903 -2024-10-07 01:00:00+00:00,148.0054 -2024-10-07 02:00:00+00:00,148.12349999999998 -2024-10-07 03:00:00+00:00,148.22859999999997 -2024-10-07 04:00:00+00:00,148.33865 -2024-10-07 05:00:00+00:00,148.43660000000003 -2024-10-07 06:00:00+00:00,148.53109999999998 -2024-10-07 07:00:00+00:00,148.61534999999998 -2024-10-07 08:00:00+00:00,148.59925 -2024-10-07 09:00:00+00:00,148.5961 -2024-10-07 10:00:00+00:00,148.60305 -2024-10-07 11:00:00+00:00,148.58184999999997 -2024-10-07 12:00:00+00:00,148.5434 -2024-10-07 13:00:00+00:00,148.49975 -2024-10-07 14:00:00+00:00,148.4673 -2024-10-07 15:00:00+00:00,148.4352 -2024-10-07 16:00:00+00:00,148.4003 -2024-10-07 17:00:00+00:00,148.3619 -2024-10-07 18:00:00+00:00,148.32 -2024-10-07 19:00:00+00:00,148.28400000000002 -2024-10-07 20:00:00+00:00,148.27175 -2024-10-07 21:00:00+00:00,148.26045 -2024-10-07 22:00:00+00:00,148.21595 -2024-10-07 23:00:00+00:00,148.20215000000002 -2024-10-08 00:00:00+00:00,148.16625 -2024-10-08 01:00:00+00:00,148.1367 -2024-10-08 02:00:00+00:00,148.10205000000002 -2024-10-08 03:00:00+00:00,148.0842 -2024-10-08 04:00:00+00:00,148.0722 -2024-10-08 05:00:00+00:00,148.05355 -2024-10-08 06:00:00+00:00,148.0212 -2024-10-08 07:00:00+00:00,147.9871 -2024-10-08 08:00:00+00:00,147.97055 -2024-10-08 09:00:00+00:00,147.96570000000003 -2024-10-08 10:00:00+00:00,147.94845 -2024-10-08 11:00:00+00:00,147.93485 -2024-10-08 12:00:00+00:00,147.93665000000001 -2024-10-08 13:00:00+00:00,147.94825 -2024-10-08 14:00:00+00:00,147.95864999999998 -2024-10-08 15:00:00+00:00,147.96625 -2024-10-08 16:00:00+00:00,147.9647 -2024-10-08 17:00:00+00:00,147.96904999999998 -2024-10-08 18:00:00+00:00,148.0019 -2024-10-08 19:00:00+00:00,148.00955 -2024-10-08 20:00:00+00:00,148.02835 -2024-10-08 21:00:00+00:00,148.04784999999998 -2024-10-08 22:00:00+00:00,148.07335 -2024-10-08 23:00:00+00:00,148.08474999999999 -2024-10-09 00:00:00+00:00,148.092 -2024-10-09 01:00:00+00:00,148.1021 -2024-10-09 02:00:00+00:00,148.1162 -2024-10-09 03:00:00+00:00,148.1528 -2024-10-09 04:00:00+00:00,148.1777 -2024-10-09 05:00:00+00:00,148.21615000000003 -2024-10-09 06:00:00+00:00,148.24435 -2024-10-09 07:00:00+00:00,148.27884999999998 -2024-10-09 08:00:00+00:00,148.31295 -2024-10-09 09:00:00+00:00,148.33125 -2024-10-09 10:00:00+00:00,148.3458 -2024-10-09 11:00:00+00:00,148.3706 -2024-10-09 12:00:00+00:00,148.4086 -2024-10-09 13:00:00+00:00,148.45205 -2024-10-09 14:00:00+00:00,148.4918 -2024-10-09 15:00:00+00:00,148.53760000000003 -2024-10-09 16:00:00+00:00,148.5898 -2024-10-09 17:00:00+00:00,148.63755 -2024-10-09 18:00:00+00:00,148.6954 -2024-10-09 19:00:00+00:00,148.7543 -2024-10-09 20:00:00+00:00,148.80865 -2024-10-09 21:00:00+00:00,148.85885 -2024-10-09 22:00:00+00:00,148.90675 -2024-10-09 23:00:00+00:00,148.94885 -2024-10-10 00:00:00+00:00,148.99275 -2024-10-10 01:00:00+00:00,149.01775 -2024-10-10 02:00:00+00:00,149.0564 -2024-10-10 03:00:00+00:00,149.0904 -2024-10-10 04:00:00+00:00,149.1243 -2024-10-10 05:00:00+00:00,149.15635 -2024-10-10 06:00:00+00:00,149.1821 -2024-10-10 07:00:00+00:00,149.1969 -2024-10-10 08:00:00+00:00,149.2049 -2024-10-10 09:00:00+00:00,149.1932 -2024-10-10 10:00:00+00:00,149.17804999999998 -2024-10-10 11:00:00+00:00,149.1658 -2024-10-10 12:00:00+00:00,149.1343 -2024-10-10 13:00:00+00:00,149.10305 -2024-10-10 14:00:00+00:00,149.0709 -2024-10-10 15:00:00+00:00,149.03325 -2024-10-10 16:00:00+00:00,149.01354999999998 -2024-10-10 17:00:00+00:00,148.99525 -2024-10-10 18:00:00+00:00,148.97129999999999 -2024-10-10 19:00:00+00:00,148.94144999999997 -2024-10-10 20:00:00+00:00,148.90975 -2024-10-10 21:00:00+00:00,148.8823 -2024-10-10 22:00:00+00:00,148.85475000000002 -2024-10-10 23:00:00+00:00,148.82885 -2024-10-11 00:00:00+00:00,148.78204999999997 -2024-10-11 01:00:00+00:00,148.75709999999998 -2024-10-11 02:00:00+00:00,148.7345 -2024-10-11 03:00:00+00:00,148.71904999999998 -2024-10-11 04:00:00+00:00,148.70114999999998 -2024-10-11 05:00:00+00:00,148.6917 -2024-10-11 06:00:00+00:00,148.6841 -2024-10-11 07:00:00+00:00,148.6751 -2024-10-11 08:00:00+00:00,148.6813 -2024-10-11 09:00:00+00:00,148.70015 -2024-10-11 10:00:00+00:00,148.71735 -2024-10-11 11:00:00+00:00,148.73919999999998 -2024-10-11 12:00:00+00:00,148.74630000000002 -2024-10-11 13:00:00+00:00,148.7602 -2024-10-11 14:00:00+00:00,148.78570000000002 -2024-10-11 15:00:00+00:00,148.81350000000003 -2024-10-11 16:00:00+00:00,148.8347 -2024-10-11 17:00:00+00:00,148.8591 -2024-10-11 18:00:00+00:00,148.88139999999999 -2024-10-11 19:00:00+00:00,148.90310000000002 -2024-10-11 20:00:00+00:00,148.9363 -2024-10-13 21:00:00+00:00,148.9548 -2024-10-13 22:00:00+00:00,148.98854999999998 -2024-10-13 23:00:00+00:00,149.0184 -2024-10-14 00:00:00+00:00,149.0438 -2024-10-14 01:00:00+00:00,149.06975 -2024-10-14 02:00:00+00:00,149.1011 -2024-10-14 03:00:00+00:00,149.12875 -2024-10-14 04:00:00+00:00,149.15645 -2024-10-14 05:00:00+00:00,149.17059999999998 -2024-10-14 06:00:00+00:00,149.1782 -2024-10-14 07:00:00+00:00,149.19570000000002 -2024-10-14 08:00:00+00:00,149.21395 -2024-10-14 09:00:00+00:00,149.22925 -2024-10-14 10:00:00+00:00,149.24214999999998 -2024-10-14 11:00:00+00:00,149.2679 -2024-10-14 12:00:00+00:00,149.30474999999998 -2024-10-14 13:00:00+00:00,149.34244999999999 -2024-10-14 14:00:00+00:00,149.37905 -2024-10-14 15:00:00+00:00,149.41334999999998 -2024-10-14 16:00:00+00:00,149.45365 -2024-10-14 17:00:00+00:00,149.49075 -2024-10-14 18:00:00+00:00,149.51885000000001 -2024-10-14 19:00:00+00:00,149.54175 -2024-10-14 20:00:00+00:00,149.56824999999998 -2024-10-14 21:00:00+00:00,149.59605000000002 -2024-10-14 22:00:00+00:00,149.61675 -2024-10-14 23:00:00+00:00,149.6363 -2024-10-15 00:00:00+00:00,149.65079999999998 -2024-10-15 01:00:00+00:00,149.6657 -2024-10-15 02:00:00+00:00,149.6861 -2024-10-15 03:00:00+00:00,149.7039 -2024-10-15 04:00:00+00:00,149.71644999999998 -2024-10-15 05:00:00+00:00,149.72845 -2024-10-15 06:00:00+00:00,149.71800000000002 -2024-10-15 07:00:00+00:00,149.69765 -2024-10-15 08:00:00+00:00,149.6681 -2024-10-15 09:00:00+00:00,149.624 -2024-10-15 10:00:00+00:00,149.5892 -2024-10-15 11:00:00+00:00,149.5656 -2024-10-15 12:00:00+00:00,149.5231 -2024-10-15 13:00:00+00:00,149.4888 -2024-10-15 14:00:00+00:00,149.45514999999997 -2024-10-15 15:00:00+00:00,149.42795 -2024-10-15 16:00:00+00:00,149.4128 -2024-10-15 17:00:00+00:00,149.396 -2024-10-15 18:00:00+00:00,149.3732 -2024-10-15 19:00:00+00:00,149.3493 -2024-10-15 20:00:00+00:00,149.33120000000002 -2024-10-15 21:00:00+00:00,149.31550000000001 -2024-10-15 22:00:00+00:00,149.296 -2024-10-15 23:00:00+00:00,149.26485 -2024-10-16 00:00:00+00:00,149.24455 -2024-10-16 01:00:00+00:00,149.2141 -2024-10-16 02:00:00+00:00,149.2031 -2024-10-16 03:00:00+00:00,149.20015 -2024-10-16 04:00:00+00:00,149.20595 -2024-10-16 05:00:00+00:00,149.22865000000002 -2024-10-16 06:00:00+00:00,149.2347 -2024-10-16 07:00:00+00:00,149.2395 -2024-10-16 08:00:00+00:00,149.2586 -2024-10-16 09:00:00+00:00,149.26295 -2024-10-16 10:00:00+00:00,149.27055000000001 -2024-10-16 11:00:00+00:00,149.26794999999998 -2024-10-16 12:00:00+00:00,149.2681 -2024-10-16 13:00:00+00:00,149.262 -2024-10-16 14:00:00+00:00,149.27960000000002 -2024-10-16 15:00:00+00:00,149.3033 -2024-10-16 16:00:00+00:00,149.3297 -2024-10-16 17:00:00+00:00,149.35705000000002 -2024-10-16 18:00:00+00:00,149.38425 -2024-10-16 19:00:00+00:00,149.4158 -2024-10-16 20:00:00+00:00,149.4346 -2024-10-16 21:00:00+00:00,149.4626 -2024-10-16 22:00:00+00:00,149.4869 -2024-10-16 23:00:00+00:00,149.50650000000002 -2024-10-17 00:00:00+00:00,149.5205 -2024-10-17 01:00:00+00:00,149.5216 -2024-10-17 02:00:00+00:00,149.529 -2024-10-17 03:00:00+00:00,149.5343 -2024-10-17 04:00:00+00:00,149.5382 -2024-10-17 05:00:00+00:00,149.55015 -2024-10-17 06:00:00+00:00,149.56275 -2024-10-17 07:00:00+00:00,149.59295 -2024-10-17 08:00:00+00:00,149.61205 -2024-10-17 09:00:00+00:00,149.62855 -2024-10-17 10:00:00+00:00,149.62815 -2024-10-17 11:00:00+00:00,149.61875 -2024-10-17 12:00:00+00:00,149.62314999999998 -2024-10-17 13:00:00+00:00,149.62465000000003 -2024-10-17 14:00:00+00:00,149.63695 -2024-10-17 15:00:00+00:00,149.65725 -2024-10-17 16:00:00+00:00,149.68540000000002 -2024-10-17 17:00:00+00:00,149.7186 -2024-10-17 18:00:00+00:00,149.7535 -2024-10-17 19:00:00+00:00,149.78619999999998 -2024-10-17 20:00:00+00:00,149.81985 -2024-10-17 21:00:00+00:00,149.85915 -2024-10-17 22:00:00+00:00,149.8991 -2024-10-17 23:00:00+00:00,149.9266 -2024-10-18 00:00:00+00:00,149.952 -2024-10-18 01:00:00+00:00,149.9771 -2024-10-18 02:00:00+00:00,149.99165 -2024-10-18 03:00:00+00:00,149.99765 -2024-10-18 04:00:00+00:00,150.00105 -2024-10-18 05:00:00+00:00,150.0134 -2024-10-18 06:00:00+00:00,150.03019999999998 -2024-10-18 07:00:00+00:00,150.05855 -2024-10-18 08:00:00+00:00,150.06300000000002 -2024-10-18 09:00:00+00:00,150.06985 -2024-10-18 10:00:00+00:00,150.0659 -2024-10-18 11:00:00+00:00,150.05990000000003 -2024-10-18 12:00:00+00:00,150.04265 -2024-10-18 13:00:00+00:00,150.01690000000002 -2024-10-18 14:00:00+00:00,149.98335 -2024-10-18 15:00:00+00:00,149.95145 -2024-10-18 16:00:00+00:00,149.91140000000001 -2024-10-18 17:00:00+00:00,149.88275000000002 -2024-10-18 18:00:00+00:00,149.84855 -2024-10-18 19:00:00+00:00,149.8194 -2024-10-18 20:00:00+00:00,149.79345 -2024-10-20 21:00:00+00:00,149.76985 -2024-10-20 22:00:00+00:00,149.75225 -2024-10-20 23:00:00+00:00,149.73775 -2024-10-21 00:00:00+00:00,149.71195 -2024-10-21 01:00:00+00:00,149.6778 -2024-10-21 02:00:00+00:00,149.6412 -2024-10-21 03:00:00+00:00,149.59775 -2024-10-21 04:00:00+00:00,149.5677 -2024-10-21 05:00:00+00:00,149.53979999999999 -2024-10-21 06:00:00+00:00,149.52435 -2024-10-21 07:00:00+00:00,149.51579999999998 -2024-10-21 08:00:00+00:00,149.51999999999998 -2024-10-21 09:00:00+00:00,149.5362 -2024-10-21 10:00:00+00:00,149.55315000000002 -2024-10-21 11:00:00+00:00,149.5702 -2024-10-21 12:00:00+00:00,149.5953 -2024-10-21 13:00:00+00:00,149.62214999999998 -2024-10-21 14:00:00+00:00,149.65765000000002 -2024-10-21 15:00:00+00:00,149.70499999999998 -2024-10-21 16:00:00+00:00,149.75425 -2024-10-21 17:00:00+00:00,149.81455 -2024-10-21 18:00:00+00:00,149.8747 -2024-10-21 19:00:00+00:00,149.93335 -2024-10-21 20:00:00+00:00,150.00515000000001 -2024-10-21 21:00:00+00:00,150.08155 -2024-10-21 22:00:00+00:00,150.15449999999998 -2024-10-21 23:00:00+00:00,150.22424999999998 -2024-10-22 00:00:00+00:00,150.2898 -2024-10-22 01:00:00+00:00,150.35475000000002 -2024-10-22 02:00:00+00:00,150.41485 -2024-10-22 03:00:00+00:00,150.4693 -2024-10-22 04:00:00+00:00,150.51545 -2024-10-22 05:00:00+00:00,150.5548 -2024-10-22 06:00:00+00:00,150.59904999999998 -2024-10-22 07:00:00+00:00,150.65320000000003 -2024-10-22 08:00:00+00:00,150.70645000000002 -2024-10-22 09:00:00+00:00,150.7442 -2024-10-22 10:00:00+00:00,150.77455 -2024-10-22 11:00:00+00:00,150.79425 -2024-10-22 12:00:00+00:00,150.81414999999998 -2024-10-22 13:00:00+00:00,150.8228 -2024-10-22 14:00:00+00:00,150.83295 -2024-10-22 15:00:00+00:00,150.8495 -2024-10-22 16:00:00+00:00,150.8615 -2024-10-22 17:00:00+00:00,150.87385 -2024-10-22 18:00:00+00:00,150.89280000000002 -2024-10-22 19:00:00+00:00,150.91765 -2024-10-22 20:00:00+00:00,150.9407 -2024-10-22 21:00:00+00:00,150.96005 -2024-10-22 22:00:00+00:00,150.97175 -2024-10-22 23:00:00+00:00,150.98325 -2024-10-23 00:00:00+00:00,151.0132 -2024-10-23 01:00:00+00:00,151.0532 -2024-10-23 02:00:00+00:00,151.09900000000002 -2024-10-23 03:00:00+00:00,151.1364 -2024-10-23 04:00:00+00:00,151.1907 -2024-10-23 05:00:00+00:00,151.25485 -2024-10-23 06:00:00+00:00,151.32704999999999 -2024-10-23 07:00:00+00:00,151.40245 -2024-10-23 08:00:00+00:00,151.47740000000002 -2024-10-23 09:00:00+00:00,151.56755 -2024-10-23 10:00:00+00:00,151.65985 -2024-10-23 11:00:00+00:00,151.75735 -2024-10-23 12:00:00+00:00,151.8577 -2024-10-23 13:00:00+00:00,151.96224999999998 -2024-10-23 14:00:00+00:00,152.06035 -2024-10-23 15:00:00+00:00,152.14545 -2024-10-23 16:00:00+00:00,152.23364999999998 -2024-10-23 17:00:00+00:00,152.31995 -2024-10-23 18:00:00+00:00,152.39955 -2024-10-23 19:00:00+00:00,152.4713 -2024-10-23 20:00:00+00:00,152.5359 -2024-10-23 21:00:00+00:00,152.58814999999998 -2024-10-23 22:00:00+00:00,152.63855 -2024-10-23 23:00:00+00:00,152.68935 -2024-10-24 00:00:00+00:00,152.71779999999998 -2024-10-24 01:00:00+00:00,152.7433 -2024-10-24 02:00:00+00:00,152.75035 -2024-10-24 03:00:00+00:00,152.75155 -2024-10-24 04:00:00+00:00,152.74155000000002 -2024-10-24 05:00:00+00:00,152.72445 -2024-10-24 06:00:00+00:00,152.686 -2024-10-24 07:00:00+00:00,152.6396 -2024-10-24 08:00:00+00:00,152.58665000000002 -2024-10-24 09:00:00+00:00,152.53255 -2024-10-24 10:00:00+00:00,152.47395 -2024-10-24 11:00:00+00:00,152.43554999999998 -2024-10-24 12:00:00+00:00,152.39525 -2024-10-24 13:00:00+00:00,152.36675 -2024-10-24 14:00:00+00:00,152.33015 -2024-10-24 15:00:00+00:00,152.2942 -2024-10-24 16:00:00+00:00,152.24065000000002 -2024-10-24 17:00:00+00:00,152.1873 -2024-10-24 18:00:00+00:00,152.14075 -2024-10-24 19:00:00+00:00,152.09445 -2024-10-24 20:00:00+00:00,152.05365 -2024-10-24 21:00:00+00:00,152.01105 -2024-10-24 22:00:00+00:00,151.97425 -2024-10-24 23:00:00+00:00,151.94385 -2024-10-25 00:00:00+00:00,151.9335 -2024-10-25 01:00:00+00:00,151.9068 -2024-10-25 02:00:00+00:00,151.89575 -2024-10-25 03:00:00+00:00,151.882 -2024-10-25 04:00:00+00:00,151.86675 -2024-10-25 05:00:00+00:00,151.85395 -2024-10-25 06:00:00+00:00,151.85444999999999 -2024-10-25 07:00:00+00:00,151.8497 -2024-10-25 08:00:00+00:00,151.8453 -2024-10-25 09:00:00+00:00,151.83509999999998 -2024-10-25 10:00:00+00:00,151.83345 -2024-10-25 11:00:00+00:00,151.82965 -2024-10-25 12:00:00+00:00,151.8409 -2024-10-25 13:00:00+00:00,151.86045000000001 -2024-10-25 14:00:00+00:00,151.87085 -2024-10-25 15:00:00+00:00,151.88285000000002 -2024-10-25 16:00:00+00:00,151.9014 -2024-10-25 17:00:00+00:00,151.91825 -2024-10-25 18:00:00+00:00,151.94580000000002 -2024-10-25 19:00:00+00:00,151.969 -2024-10-25 20:00:00+00:00,151.98380000000003 -2024-10-27 21:00:00+00:00,152.0386 -2024-10-27 22:00:00+00:00,152.0947 -2024-10-27 23:00:00+00:00,152.14995 -2024-10-28 00:00:00+00:00,152.23809999999997 -2024-10-28 01:00:00+00:00,152.344 -2024-10-28 02:00:00+00:00,152.4296 -2024-10-28 03:00:00+00:00,152.51345 -2024-10-28 04:00:00+00:00,152.5976 -2024-10-28 05:00:00+00:00,152.67445 -2024-10-28 06:00:00+00:00,152.75029999999998 -2024-10-28 07:00:00+00:00,152.82729999999998 -2024-10-28 08:00:00+00:00,152.8904 -2024-10-28 09:00:00+00:00,152.93604999999997 -2024-10-28 10:00:00+00:00,152.9614 -2024-10-28 11:00:00+00:00,152.99380000000002 -2024-10-28 12:00:00+00:00,153.01515 -2024-10-28 13:00:00+00:00,153.0448 -2024-10-28 14:00:00+00:00,153.08004999999997 -2024-10-28 15:00:00+00:00,153.128 -2024-10-28 16:00:00+00:00,153.1759 -2024-10-28 17:00:00+00:00,153.1926 -2024-10-28 18:00:00+00:00,153.20785 -2024-10-28 19:00:00+00:00,153.2214 -2024-10-28 20:00:00+00:00,153.21290000000002 -2024-10-28 21:00:00+00:00,153.1832 -2024-10-28 22:00:00+00:00,153.16965 -2024-10-28 23:00:00+00:00,153.14489999999998 -2024-10-29 00:00:00+00:00,153.11354999999998 -2024-10-29 01:00:00+00:00,153.0836 -2024-10-29 02:00:00+00:00,153.06275 -2024-10-29 03:00:00+00:00,153.04795000000001 -2024-10-29 04:00:00+00:00,153.03535 -2024-10-29 05:00:00+00:00,153.03045 -2024-10-29 06:00:00+00:00,153.05365 -2024-10-29 07:00:00+00:00,153.07535000000001 -2024-10-29 08:00:00+00:00,153.11395000000002 -2024-10-29 09:00:00+00:00,153.14665 -2024-10-29 10:00:00+00:00,153.16625000000002 -2024-10-29 11:00:00+00:00,153.18935 -2024-10-29 12:00:00+00:00,153.21454999999997 -2024-10-29 13:00:00+00:00,153.23385000000002 -2024-10-29 14:00:00+00:00,153.23995 -2024-10-29 15:00:00+00:00,153.2531 -2024-10-29 16:00:00+00:00,153.26565 -2024-10-29 17:00:00+00:00,153.27345 -2024-10-29 18:00:00+00:00,153.27935 -2024-10-29 19:00:00+00:00,153.29360000000003 -2024-10-29 20:00:00+00:00,153.3109 -2024-10-29 21:00:00+00:00,153.3326 -2024-10-29 22:00:00+00:00,153.34565 -2024-10-29 23:00:00+00:00,153.35705 -2024-10-30 00:00:00+00:00,153.37325 -2024-10-30 01:00:00+00:00,153.39249999999998 -2024-10-30 02:00:00+00:00,153.40810000000002 -2024-10-30 03:00:00+00:00,153.4168 -2024-10-30 04:00:00+00:00,153.41495 -2024-10-30 05:00:00+00:00,153.40585000000002 -2024-10-30 06:00:00+00:00,153.40245 -2024-10-30 07:00:00+00:00,153.38525 -2024-10-30 08:00:00+00:00,153.33975 -2024-10-30 09:00:00+00:00,153.30935 -2024-10-30 10:00:00+00:00,153.28505 -2024-10-30 11:00:00+00:00,153.26215000000002 -2024-10-30 12:00:00+00:00,153.25259999999997 -2024-10-30 13:00:00+00:00,153.22899999999998 -2024-10-30 14:00:00+00:00,153.22095 -2024-10-30 15:00:00+00:00,153.20774999999998 -2024-10-30 16:00:00+00:00,153.19365 -2024-10-30 17:00:00+00:00,153.18655 -2024-10-30 18:00:00+00:00,153.18585 -2024-10-30 19:00:00+00:00,153.18755 -2024-10-30 20:00:00+00:00,153.19545 -2024-10-30 21:00:00+00:00,153.20135 -2024-10-30 22:00:00+00:00,153.2008 -2024-10-30 23:00:00+00:00,153.19580000000002 -2024-10-31 00:00:00+00:00,153.20424999999997 -2024-10-31 01:00:00+00:00,153.2175 -2024-10-31 02:00:00+00:00,153.2241 -2024-10-31 03:00:00+00:00,153.21015 -2024-10-31 04:00:00+00:00,153.21335 -2024-10-31 05:00:00+00:00,153.20255 -2024-10-31 06:00:00+00:00,153.16645 -2024-10-31 07:00:00+00:00,153.12714999999997 -2024-10-31 08:00:00+00:00,153.07930000000002 -2024-10-31 09:00:00+00:00,153.0601 -2024-10-31 10:00:00+00:00,153.0204 -2024-10-31 11:00:00+00:00,152.9983 -2024-10-31 12:00:00+00:00,152.97875 -2024-10-31 13:00:00+00:00,152.96554999999998 -2024-10-31 14:00:00+00:00,152.9327 -2024-10-31 15:00:00+00:00,152.8855 -2024-10-31 16:00:00+00:00,152.8372 -2024-10-31 17:00:00+00:00,152.7792 -2024-10-31 18:00:00+00:00,152.71660000000003 -2024-10-31 19:00:00+00:00,152.6514 -2024-10-31 20:00:00+00:00,152.57710000000003 -2024-10-31 21:00:00+00:00,152.50565 -2024-10-31 22:00:00+00:00,152.4385 -2024-10-31 23:00:00+00:00,152.385 -2024-11-01 00:00:00+00:00,152.34070000000003 -2024-11-01 01:00:00+00:00,152.30450000000002 -2024-11-01 02:00:00+00:00,152.3107 -2024-11-01 03:00:00+00:00,152.3191 -2024-11-01 04:00:00+00:00,152.3233 -2024-11-01 05:00:00+00:00,152.3224 -2024-11-01 06:00:00+00:00,152.3189 -2024-11-01 07:00:00+00:00,152.3103 -2024-11-01 08:00:00+00:00,152.30765 -2024-11-01 09:00:00+00:00,152.29805000000002 -2024-11-01 10:00:00+00:00,152.30225000000002 -2024-11-01 11:00:00+00:00,152.31815 -2024-11-01 12:00:00+00:00,152.29784999999998 -2024-11-01 13:00:00+00:00,152.31045 -2024-11-01 14:00:00+00:00,152.3529 -2024-11-01 15:00:00+00:00,152.4034 -2024-11-01 16:00:00+00:00,152.44609999999997 -2024-11-01 17:00:00+00:00,152.48845 -2024-11-01 18:00:00+00:00,152.53325 -2024-11-01 19:00:00+00:00,152.58255 -2024-11-01 20:00:00+00:00,152.6308 -2024-11-03 22:00:00+00:00,152.64690000000002 -2024-11-03 23:00:00+00:00,152.6466 -2024-11-04 00:00:00+00:00,152.6294 -2024-11-04 01:00:00+00:00,152.59465 -2024-11-04 02:00:00+00:00,152.55845 -2024-11-04 03:00:00+00:00,152.52545 -2024-11-04 04:00:00+00:00,152.4892 -2024-11-04 05:00:00+00:00,152.44995 -2024-11-04 06:00:00+00:00,152.4185 -2024-11-04 07:00:00+00:00,152.39385 -2024-11-04 08:00:00+00:00,152.3645 -2024-11-04 09:00:00+00:00,152.3569 -2024-11-04 10:00:00+00:00,152.326 -2024-11-04 11:00:00+00:00,152.25875 -2024-11-04 12:00:00+00:00,152.20184999999998 -2024-11-04 13:00:00+00:00,152.14870000000002 -2024-11-04 14:00:00+00:00,152.09415 -2024-11-04 15:00:00+00:00,152.04579999999999 -2024-11-04 16:00:00+00:00,151.9986 -2024-11-04 17:00:00+00:00,151.94924999999998 -2024-11-04 18:00:00+00:00,151.93055 -2024-11-04 19:00:00+00:00,151.92335 -2024-11-04 20:00:00+00:00,151.92714999999998 -2024-11-04 21:00:00+00:00,151.94435 -2024-11-04 22:00:00+00:00,151.95955 -2024-11-04 23:00:00+00:00,151.98674999999997 -2024-11-05 00:00:00+00:00,152.00979999999998 -2024-11-05 01:00:00+00:00,152.03074999999998 -2024-11-05 02:00:00+00:00,152.0362 -2024-11-05 03:00:00+00:00,152.0466 -2024-11-05 04:00:00+00:00,152.06545 -2024-11-05 05:00:00+00:00,152.0926 -2024-11-05 06:00:00+00:00,152.11975 -2024-11-05 07:00:00+00:00,152.1558 -2024-11-05 08:00:00+00:00,152.17485000000002 -2024-11-05 09:00:00+00:00,152.1926 -2024-11-05 10:00:00+00:00,152.21435 -2024-11-05 11:00:00+00:00,152.22255 -2024-11-05 12:00:00+00:00,152.236 -2024-11-05 13:00:00+00:00,152.238 -2024-11-05 14:00:00+00:00,152.22645 -2024-11-05 15:00:00+00:00,152.22115 -2024-11-05 16:00:00+00:00,152.2118 -2024-11-05 17:00:00+00:00,152.1893 -2024-11-05 18:00:00+00:00,152.16109999999998 -2024-11-05 19:00:00+00:00,152.11975 -2024-11-05 20:00:00+00:00,152.08225 -2024-11-05 21:00:00+00:00,152.04955 -2024-11-05 22:00:00+00:00,152.01725 -2024-11-05 23:00:00+00:00,151.9701 -2024-11-06 00:00:00+00:00,151.99255 -2024-11-06 01:00:00+00:00,152.0177 -2024-11-06 02:00:00+00:00,152.10255 -2024-11-06 03:00:00+00:00,152.1859 -2024-11-06 04:00:00+00:00,152.25435 -2024-11-06 05:00:00+00:00,152.33225000000002 -2024-11-06 06:00:00+00:00,152.42180000000002 -2024-11-06 07:00:00+00:00,152.51090000000002 -2024-11-06 08:00:00+00:00,152.59135 -2024-11-06 09:00:00+00:00,152.68865 -2024-11-06 10:00:00+00:00,152.79670000000002 -2024-11-06 11:00:00+00:00,152.90550000000002 -2024-11-06 12:00:00+00:00,153.02775 -2024-11-06 13:00:00+00:00,153.1587 -2024-11-06 14:00:00+00:00,153.2953 -2024-11-06 15:00:00+00:00,153.44025000000002 -2024-11-06 16:00:00+00:00,153.59290000000001 -2024-11-06 17:00:00+00:00,153.7452 -2024-11-06 18:00:00+00:00,153.8861 -2024-11-06 19:00:00+00:00,154.03625 -2024-11-06 20:00:00+00:00,154.1186 -2024-11-06 21:00:00+00:00,154.2033 -2024-11-06 22:00:00+00:00,154.2271 -2024-11-06 23:00:00+00:00,154.2456 -2024-11-07 00:00:00+00:00,154.2968 -2024-11-07 01:00:00+00:00,154.3352 -2024-11-07 02:00:00+00:00,154.3548 -2024-11-07 03:00:00+00:00,154.37385 -2024-11-07 04:00:00+00:00,154.3876 -2024-11-07 05:00:00+00:00,154.3882 -2024-11-07 06:00:00+00:00,154.3852 -2024-11-07 07:00:00+00:00,154.37439999999998 -2024-11-07 08:00:00+00:00,154.35605 -2024-11-07 09:00:00+00:00,154.3384 -2024-11-07 10:00:00+00:00,154.325 -2024-11-07 11:00:00+00:00,154.3107 -2024-11-07 12:00:00+00:00,154.26975 -2024-11-07 13:00:00+00:00,154.2116 -2024-11-07 14:00:00+00:00,154.1515 -2024-11-07 15:00:00+00:00,154.07739999999998 -2024-11-07 16:00:00+00:00,154.0061 -2024-11-07 17:00:00+00:00,153.92559999999997 -2024-11-07 18:00:00+00:00,153.848 -2024-11-07 19:00:00+00:00,153.7868 -2024-11-07 20:00:00+00:00,153.7004 -2024-11-07 21:00:00+00:00,153.6202 -2024-11-07 22:00:00+00:00,153.5452 -2024-11-07 23:00:00+00:00,153.48790000000002 -2024-11-08 00:00:00+00:00,153.43585000000002 -2024-11-08 01:00:00+00:00,153.39015 -2024-11-08 02:00:00+00:00,153.34985 -2024-11-08 03:00:00+00:00,153.29035000000002 -2024-11-08 04:00:00+00:00,153.2252 -2024-11-08 05:00:00+00:00,153.1681 -2024-11-08 06:00:00+00:00,153.1054 -2024-11-08 07:00:00+00:00,153.034 -2024-11-08 08:00:00+00:00,152.96329999999998 -2024-11-08 09:00:00+00:00,152.90225 -2024-11-08 10:00:00+00:00,152.8499 -2024-11-08 11:00:00+00:00,152.823 -2024-11-08 12:00:00+00:00,152.78500000000003 -2024-11-08 13:00:00+00:00,152.7714 -2024-11-08 14:00:00+00:00,152.75854999999999 -2024-11-08 15:00:00+00:00,152.72535 -2024-11-08 16:00:00+00:00,152.7123 -2024-11-08 17:00:00+00:00,152.6996 -2024-11-08 18:00:00+00:00,152.6874 -2024-11-08 19:00:00+00:00,152.66254999999998 -2024-11-08 20:00:00+00:00,152.63155 -2024-11-08 21:00:00+00:00,152.60864999999998 -2024-11-10 22:00:00+00:00,152.58645 -2024-11-10 23:00:00+00:00,152.59125 -2024-11-11 00:00:00+00:00,152.61175 -2024-11-11 01:00:00+00:00,152.63245 -2024-11-11 02:00:00+00:00,152.66375 -2024-11-11 03:00:00+00:00,152.70415 -2024-11-11 04:00:00+00:00,152.76529999999997 -2024-11-11 05:00:00+00:00,152.82760000000002 -2024-11-11 06:00:00+00:00,152.88865 -2024-11-11 07:00:00+00:00,152.94935 -2024-11-11 08:00:00+00:00,153.01875 -2024-11-11 09:00:00+00:00,153.06285 -2024-11-11 10:00:00+00:00,153.1115 -2024-11-11 11:00:00+00:00,153.1782 -2024-11-11 12:00:00+00:00,153.23815 -2024-11-11 13:00:00+00:00,153.29389999999998 -2024-11-11 14:00:00+00:00,153.35139999999998 -2024-11-11 15:00:00+00:00,153.41055 -2024-11-11 16:00:00+00:00,153.47594999999998 -2024-11-11 17:00:00+00:00,153.53795 -2024-11-11 18:00:00+00:00,153.59404999999998 -2024-11-11 19:00:00+00:00,153.63685 -2024-11-11 20:00:00+00:00,153.66185000000002 -2024-11-11 21:00:00+00:00,153.68735 -2024-11-11 22:00:00+00:00,153.70445 -2024-11-11 23:00:00+00:00,153.70835 -2024-11-12 00:00:00+00:00,153.71795000000003 -2024-11-12 01:00:00+00:00,153.7396 -2024-11-12 02:00:00+00:00,153.7602 -2024-11-12 03:00:00+00:00,153.7611 -2024-11-12 04:00:00+00:00,153.7481 -2024-11-12 05:00:00+00:00,153.74755 -2024-11-12 06:00:00+00:00,153.75225 -2024-11-12 07:00:00+00:00,153.75545 -2024-11-12 08:00:00+00:00,153.7628 -2024-11-12 09:00:00+00:00,153.77955000000003 -2024-11-12 10:00:00+00:00,153.78975 -2024-11-12 11:00:00+00:00,153.8004 -2024-11-12 12:00:00+00:00,153.81310000000002 -2024-11-12 13:00:00+00:00,153.83835 -2024-11-12 14:00:00+00:00,153.86875 -2024-11-12 15:00:00+00:00,153.90654999999998 -2024-11-12 16:00:00+00:00,153.96134999999998 -2024-11-12 17:00:00+00:00,154.01409999999998 -2024-11-12 18:00:00+00:00,154.064 -2024-11-12 19:00:00+00:00,154.1252 -2024-11-12 20:00:00+00:00,154.1659 -2024-11-12 21:00:00+00:00,154.19935 -2024-11-12 22:00:00+00:00,154.23575 -2024-11-12 23:00:00+00:00,154.2859 -2024-11-13 00:00:00+00:00,154.35739999999998 -2024-11-13 01:00:00+00:00,154.4069 -2024-11-13 02:00:00+00:00,154.4547 -2024-11-13 03:00:00+00:00,154.50385 -2024-11-13 04:00:00+00:00,154.54945 -2024-11-13 05:00:00+00:00,154.58995 -2024-11-13 06:00:00+00:00,154.63975 -2024-11-13 07:00:00+00:00,154.69175 -2024-11-13 08:00:00+00:00,154.73835 -2024-11-13 09:00:00+00:00,154.76395 -2024-11-13 10:00:00+00:00,154.79285 -2024-11-13 11:00:00+00:00,154.80775 -2024-11-13 12:00:00+00:00,154.81689999999998 -2024-11-13 13:00:00+00:00,154.80315000000002 -2024-11-13 14:00:00+00:00,154.80845000000002 -2024-11-13 15:00:00+00:00,154.8203 -2024-11-13 16:00:00+00:00,154.85545 -2024-11-13 17:00:00+00:00,154.89465 -2024-11-13 18:00:00+00:00,154.94745 -2024-11-13 19:00:00+00:00,154.99169999999998 -2024-11-13 20:00:00+00:00,155.02465 -2024-11-13 21:00:00+00:00,155.06825 -2024-11-13 22:00:00+00:00,155.1021 -2024-11-13 23:00:00+00:00,155.13285000000002 -2024-11-14 00:00:00+00:00,155.17649999999998 -2024-11-14 01:00:00+00:00,155.2242 -2024-11-14 02:00:00+00:00,155.2724 -2024-11-14 03:00:00+00:00,155.314 -2024-11-14 04:00:00+00:00,155.36635 -2024-11-14 05:00:00+00:00,155.42270000000002 -2024-11-14 06:00:00+00:00,155.46914999999998 -2024-11-14 07:00:00+00:00,155.52005 -2024-11-14 08:00:00+00:00,155.5711 -2024-11-14 09:00:00+00:00,155.651 -2024-11-14 10:00:00+00:00,155.71189999999999 -2024-11-14 11:00:00+00:00,155.75865000000002 -2024-11-14 12:00:00+00:00,155.79435 -2024-11-14 13:00:00+00:00,155.82475 -2024-11-14 14:00:00+00:00,155.83495 -2024-11-14 15:00:00+00:00,155.85535 -2024-11-14 16:00:00+00:00,155.8743 -2024-11-14 17:00:00+00:00,155.88764999999998 -2024-11-14 18:00:00+00:00,155.91145 -2024-11-14 19:00:00+00:00,155.9367 -2024-11-14 20:00:00+00:00,155.96560000000002 -2024-11-14 21:00:00+00:00,155.986 -2024-11-14 22:00:00+00:00,156.00060000000002 -2024-11-14 23:00:00+00:00,156.0274 -2024-11-15 00:00:00+00:00,156.0562 -2024-11-15 01:00:00+00:00,156.0828 -2024-11-15 02:00:00+00:00,156.1063 -2024-11-15 03:00:00+00:00,156.13979999999998 -2024-11-15 04:00:00+00:00,156.1603 -2024-11-15 05:00:00+00:00,156.17765 -2024-11-15 06:00:00+00:00,156.17995000000002 -2024-11-15 07:00:00+00:00,156.17275 -2024-11-15 08:00:00+00:00,156.14884999999998 -2024-11-15 09:00:00+00:00,156.11615 -2024-11-15 10:00:00+00:00,156.09150000000002 -2024-11-15 11:00:00+00:00,156.0685 -2024-11-15 12:00:00+00:00,156.03979999999999 -2024-11-15 13:00:00+00:00,156.01905000000002 -2024-11-15 14:00:00+00:00,156.00230000000002 -2024-11-15 15:00:00+00:00,155.95364999999998 -2024-11-15 16:00:00+00:00,155.86854999999997 -2024-11-15 17:00:00+00:00,155.76885 -2024-11-15 18:00:00+00:00,155.65005 -2024-11-15 19:00:00+00:00,155.53685000000002 -2024-11-15 20:00:00+00:00,155.4198 -2024-11-15 21:00:00+00:00,155.3094 -2024-11-17 22:00:00+00:00,155.21865 -2024-11-17 23:00:00+00:00,155.12535 -2024-11-18 00:00:00+00:00,155.02105 -2024-11-18 01:00:00+00:00,154.92825 -2024-11-18 02:00:00+00:00,154.8601 -2024-11-18 03:00:00+00:00,154.804 -2024-11-18 04:00:00+00:00,154.7605 -2024-11-18 05:00:00+00:00,154.7219 -2024-11-18 06:00:00+00:00,154.68595 -2024-11-18 07:00:00+00:00,154.63975 -2024-11-18 08:00:00+00:00,154.61759999999998 -2024-11-18 09:00:00+00:00,154.59005 -2024-11-18 10:00:00+00:00,154.56225 -2024-11-18 11:00:00+00:00,154.5676 -2024-11-18 12:00:00+00:00,154.6011 -2024-11-18 13:00:00+00:00,154.6322 -2024-11-18 14:00:00+00:00,154.67605 -2024-11-18 15:00:00+00:00,154.7149 -2024-11-18 16:00:00+00:00,154.7403 -2024-11-18 17:00:00+00:00,154.75815 -2024-11-18 18:00:00+00:00,154.7608 -2024-11-18 19:00:00+00:00,154.7657 -2024-11-18 20:00:00+00:00,154.7818 -2024-11-18 21:00:00+00:00,154.786 -2024-11-18 22:00:00+00:00,154.78154999999998 -2024-11-18 23:00:00+00:00,154.77955 -2024-11-19 00:00:00+00:00,154.76590000000002 -2024-11-19 01:00:00+00:00,154.74190000000002 -2024-11-19 02:00:00+00:00,154.72035 -2024-11-19 03:00:00+00:00,154.70085 -2024-11-19 04:00:00+00:00,154.6741 -2024-11-19 05:00:00+00:00,154.65640000000002 -2024-11-19 06:00:00+00:00,154.6319 -2024-11-19 07:00:00+00:00,154.6054 -2024-11-19 08:00:00+00:00,154.5295 -2024-11-19 09:00:00+00:00,154.4725 -2024-11-19 10:00:00+00:00,154.42135000000002 -2024-11-19 11:00:00+00:00,154.37575 -2024-11-19 12:00:00+00:00,154.3346 -2024-11-19 13:00:00+00:00,154.27315 -2024-11-19 14:00:00+00:00,154.24425000000002 -2024-11-19 15:00:00+00:00,154.20535 -2024-11-19 16:00:00+00:00,154.19305000000003 -2024-11-19 17:00:00+00:00,154.1951 -2024-11-19 18:00:00+00:00,154.19205000000002 -2024-11-19 19:00:00+00:00,154.19605 -2024-11-19 20:00:00+00:00,154.21165 -2024-11-19 21:00:00+00:00,154.23864999999998 -2024-11-19 22:00:00+00:00,154.26010000000002 -2024-11-19 23:00:00+00:00,154.28719999999998 -2024-11-20 00:00:00+00:00,154.31234999999998 -2024-11-20 01:00:00+00:00,154.32995 -2024-11-20 02:00:00+00:00,154.3478 -2024-11-20 03:00:00+00:00,154.36915000000002 -2024-11-20 04:00:00+00:00,154.4343 -2024-11-20 05:00:00+00:00,154.5055 -2024-11-20 06:00:00+00:00,154.5845 -2024-11-20 07:00:00+00:00,154.66325 -2024-11-20 08:00:00+00:00,154.7461 -2024-11-20 09:00:00+00:00,154.86020000000002 -2024-11-20 10:00:00+00:00,154.94514999999998 -2024-11-20 11:00:00+00:00,155.03905 -2024-11-20 12:00:00+00:00,155.10615 -2024-11-20 13:00:00+00:00,155.15645 -2024-11-20 14:00:00+00:00,155.2071 -2024-11-20 15:00:00+00:00,155.2489 -2024-11-20 16:00:00+00:00,155.28365000000002 -2024-11-20 17:00:00+00:00,155.31185 -2024-11-20 18:00:00+00:00,155.34965 -2024-11-20 19:00:00+00:00,155.382 -2024-11-20 20:00:00+00:00,155.40975 -2024-11-20 21:00:00+00:00,155.44245 -2024-11-20 22:00:00+00:00,155.4664 -2024-11-20 23:00:00+00:00,155.4825 -2024-11-21 00:00:00+00:00,155.4836 -2024-11-21 01:00:00+00:00,155.4762 -2024-11-21 02:00:00+00:00,155.45649999999998 -2024-11-21 03:00:00+00:00,155.41995 -2024-11-21 04:00:00+00:00,155.39114999999998 -2024-11-21 05:00:00+00:00,155.36285 -2024-11-21 06:00:00+00:00,155.31335 -2024-11-21 07:00:00+00:00,155.2667 -2024-11-21 08:00:00+00:00,155.2043 -2024-11-21 09:00:00+00:00,155.1376 -2024-11-21 10:00:00+00:00,155.07765 -2024-11-21 11:00:00+00:00,155.02785 -2024-11-21 12:00:00+00:00,154.9808 -2024-11-21 13:00:00+00:00,154.9325 -2024-11-21 14:00:00+00:00,154.8704 -2024-11-21 15:00:00+00:00,154.81805 -2024-11-21 16:00:00+00:00,154.77695 -2024-11-21 17:00:00+00:00,154.7276 -2024-11-21 18:00:00+00:00,154.68779999999998 -2024-11-21 19:00:00+00:00,154.6493 -2024-11-21 20:00:00+00:00,154.62075 -2024-11-21 21:00:00+00:00,154.59584999999998 -2024-11-21 22:00:00+00:00,154.57325 -2024-11-21 23:00:00+00:00,154.53490000000002 -2024-11-22 00:00:00+00:00,154.49865 -2024-11-22 01:00:00+00:00,154.4599 -2024-11-22 02:00:00+00:00,154.4415 -2024-11-22 03:00:00+00:00,154.40955000000002 -2024-11-22 04:00:00+00:00,154.40875 -2024-11-22 05:00:00+00:00,154.42415 -2024-11-22 06:00:00+00:00,154.44930000000002 -2024-11-22 07:00:00+00:00,154.459 -2024-11-22 08:00:00+00:00,154.46255 -2024-11-22 09:00:00+00:00,154.47485 -2024-11-22 10:00:00+00:00,154.48625 -2024-11-22 11:00:00+00:00,154.48595 -2024-11-22 12:00:00+00:00,154.47805 -2024-11-22 13:00:00+00:00,154.4697 -2024-11-22 14:00:00+00:00,154.48610000000002 -2024-11-22 15:00:00+00:00,154.50560000000002 -2024-11-22 16:00:00+00:00,154.517 -2024-11-22 17:00:00+00:00,154.5276 -2024-11-22 18:00:00+00:00,154.53915 -2024-11-22 19:00:00+00:00,154.57135 -2024-11-22 20:00:00+00:00,154.5967 -2024-11-22 21:00:00+00:00,154.61405 -2024-11-24 22:00:00+00:00,154.60715 -2024-11-24 23:00:00+00:00,154.60135 -2024-11-25 00:00:00+00:00,154.59085 -2024-11-25 01:00:00+00:00,154.5441 -2024-11-25 02:00:00+00:00,154.487 -2024-11-25 03:00:00+00:00,154.44779999999997 -2024-11-25 04:00:00+00:00,154.42685 -2024-11-25 05:00:00+00:00,154.4152 -2024-11-25 06:00:00+00:00,154.41365 -2024-11-25 07:00:00+00:00,154.42485 -2024-11-25 08:00:00+00:00,154.43485 -2024-11-25 09:00:00+00:00,154.4423 -2024-11-25 10:00:00+00:00,154.41955000000002 -2024-11-25 11:00:00+00:00,154.40005 -2024-11-25 12:00:00+00:00,154.3734 -2024-11-25 13:00:00+00:00,154.332 -2024-11-25 14:00:00+00:00,154.28225 -2024-11-25 15:00:00+00:00,154.26055000000002 -2024-11-25 16:00:00+00:00,154.23325 -2024-11-25 17:00:00+00:00,154.21120000000002 -2024-11-25 18:00:00+00:00,154.2039 -2024-11-25 19:00:00+00:00,154.20319999999998 -2024-11-25 20:00:00+00:00,154.19945 -2024-11-25 21:00:00+00:00,154.21965 -2024-11-25 22:00:00+00:00,154.23715 -2024-11-25 23:00:00+00:00,154.25915000000003 -2024-11-26 00:00:00+00:00,154.25529999999998 -2024-11-26 01:00:00+00:00,154.24465 -2024-11-26 02:00:00+00:00,154.22899999999998 -2024-11-26 03:00:00+00:00,154.1891 -2024-11-26 04:00:00+00:00,154.1463 -2024-11-26 05:00:00+00:00,154.11100000000002 -2024-11-26 06:00:00+00:00,154.09245 -2024-11-26 07:00:00+00:00,154.0689 -2024-11-26 08:00:00+00:00,154.0573 -2024-11-26 09:00:00+00:00,154.05720000000002 -2024-11-26 10:00:00+00:00,154.05810000000002 -2024-11-26 11:00:00+00:00,154.0286 -2024-11-26 12:00:00+00:00,153.9768 -2024-11-26 13:00:00+00:00,153.93234999999999 -2024-11-26 14:00:00+00:00,153.903 -2024-11-26 15:00:00+00:00,153.86939999999998 -2024-11-26 16:00:00+00:00,153.83685 -2024-11-26 17:00:00+00:00,153.7945 -2024-11-26 18:00:00+00:00,153.75844999999998 -2024-11-26 19:00:00+00:00,153.6948 -2024-11-26 20:00:00+00:00,153.6472 -2024-11-26 21:00:00+00:00,153.59995 -2024-11-26 22:00:00+00:00,153.55495000000002 -2024-11-26 23:00:00+00:00,153.51475 -2024-11-27 00:00:00+00:00,153.46835 -2024-11-27 01:00:00+00:00,153.41 -2024-11-27 02:00:00+00:00,153.33915 -2024-11-27 03:00:00+00:00,153.2599 -2024-11-27 04:00:00+00:00,153.17715 -2024-11-27 05:00:00+00:00,153.10275 -2024-11-27 06:00:00+00:00,153.01845 -2024-11-27 07:00:00+00:00,152.92704999999998 -2024-11-27 08:00:00+00:00,152.85565 -2024-11-27 09:00:00+00:00,152.75775000000002 -2024-11-27 10:00:00+00:00,152.6516 -2024-11-27 11:00:00+00:00,152.55270000000002 -2024-11-27 12:00:00+00:00,152.4525 -2024-11-27 13:00:00+00:00,152.3528 -2024-11-27 14:00:00+00:00,152.2518 -2024-11-27 15:00:00+00:00,152.15135 -2024-11-27 16:00:00+00:00,152.03325 -2024-11-27 17:00:00+00:00,151.9159 -2024-11-27 18:00:00+00:00,151.80464999999998 -2024-11-27 19:00:00+00:00,151.70895000000002 -2024-11-27 20:00:00+00:00,151.61795 -2024-11-27 21:00:00+00:00,151.5462 -2024-11-27 22:00:00+00:00,151.4624 -2024-11-27 23:00:00+00:00,151.4069 -2024-11-28 00:00:00+00:00,151.3756 -2024-11-28 01:00:00+00:00,151.32525 -2024-11-28 02:00:00+00:00,151.29344999999998 -2024-11-28 03:00:00+00:00,151.27725 -2024-11-28 04:00:00+00:00,151.2671 -2024-11-28 05:00:00+00:00,151.27055000000001 -2024-11-28 06:00:00+00:00,151.27794999999998 -2024-11-28 07:00:00+00:00,151.2914 -2024-11-28 08:00:00+00:00,151.30890000000002 -2024-11-28 09:00:00+00:00,151.33679999999998 -2024-11-28 10:00:00+00:00,151.36084999999997 -2024-11-28 11:00:00+00:00,151.39725 -2024-11-28 12:00:00+00:00,151.45025 -2024-11-28 13:00:00+00:00,151.49065000000002 -2024-11-28 14:00:00+00:00,151.52395 -2024-11-28 15:00:00+00:00,151.5489 -2024-11-28 16:00:00+00:00,151.5684 -2024-11-28 17:00:00+00:00,151.58735000000001 -2024-11-28 18:00:00+00:00,151.61610000000002 -2024-11-28 19:00:00+00:00,151.62410000000003 -2024-11-28 20:00:00+00:00,151.61225000000002 -2024-11-28 21:00:00+00:00,151.6184 -2024-11-28 22:00:00+00:00,151.62290000000002 -2024-11-28 23:00:00+00:00,151.6008 -2024-11-29 00:00:00+00:00,151.54855 -2024-11-29 01:00:00+00:00,151.46855 -2024-11-29 02:00:00+00:00,151.3993 -2024-11-29 03:00:00+00:00,151.31645 -2024-11-29 04:00:00+00:00,151.2253 -2024-11-29 05:00:00+00:00,151.13590000000002 -2024-11-29 06:00:00+00:00,151.04330000000002 -2024-11-29 07:00:00+00:00,150.9516 -2024-11-29 08:00:00+00:00,150.87279999999998 -2024-11-29 09:00:00+00:00,150.8024 -2024-11-29 10:00:00+00:00,150.72425 -2024-11-29 11:00:00+00:00,150.65019999999998 -2024-11-29 12:00:00+00:00,150.5838 -2024-11-29 13:00:00+00:00,150.50745 -2024-11-29 14:00:00+00:00,150.42765000000003 -2024-11-29 15:00:00+00:00,150.36155 -2024-11-29 16:00:00+00:00,150.3099 -2024-11-29 17:00:00+00:00,150.2123 -2024-11-29 18:00:00+00:00,150.11790000000002 -2024-11-29 19:00:00+00:00,150.03889999999998 -2024-11-29 20:00:00+00:00,149.99225 -2024-11-29 21:00:00+00:00,149.98160000000001 -2024-12-01 22:00:00+00:00,149.9542 -2024-12-01 23:00:00+00:00,149.9426 -2024-12-02 00:00:00+00:00,149.95225 -2024-12-02 01:00:00+00:00,149.97379999999998 -2024-12-02 02:00:00+00:00,150.00349999999997 -2024-12-02 03:00:00+00:00,150.03005 -2024-12-02 04:00:00+00:00,150.0496 -2024-12-02 05:00:00+00:00,150.0777 -2024-12-02 06:00:00+00:00,150.0962 -2024-12-02 07:00:00+00:00,150.1067 -2024-12-02 08:00:00+00:00,150.1098 -2024-12-02 09:00:00+00:00,150.12875 -2024-12-02 10:00:00+00:00,150.14045 -2024-12-02 11:00:00+00:00,150.139 -2024-12-02 12:00:00+00:00,150.1249 -2024-12-02 13:00:00+00:00,150.1488 -2024-12-02 14:00:00+00:00,150.16615 -2024-12-02 15:00:00+00:00,150.17945000000003 -2024-12-02 16:00:00+00:00,150.16035 -2024-12-02 17:00:00+00:00,150.15375 -2024-12-02 18:00:00+00:00,150.1557 -2024-12-02 19:00:00+00:00,150.13865 -2024-12-02 20:00:00+00:00,150.10545 -2024-12-02 21:00:00+00:00,150.0582 -2024-12-02 22:00:00+00:00,150.0057 -2024-12-02 23:00:00+00:00,149.95495 -2024-12-03 00:00:00+00:00,149.91955000000002 -2024-12-03 01:00:00+00:00,149.87715 -2024-12-03 02:00:00+00:00,149.85375 -2024-12-03 03:00:00+00:00,149.8458 -2024-12-03 04:00:00+00:00,149.8422 -2024-12-03 05:00:00+00:00,149.82615 -2024-12-03 06:00:00+00:00,149.82305000000002 -2024-12-03 07:00:00+00:00,149.81595 -2024-12-03 08:00:00+00:00,149.80515 -2024-12-03 09:00:00+00:00,149.79205 -2024-12-03 10:00:00+00:00,149.7948 -2024-12-03 11:00:00+00:00,149.78805 -2024-12-03 12:00:00+00:00,149.80895 -2024-12-03 13:00:00+00:00,149.7717 -2024-12-03 14:00:00+00:00,149.73020000000002 -2024-12-03 15:00:00+00:00,149.7115 -2024-12-03 16:00:00+00:00,149.69070000000002 -2024-12-03 17:00:00+00:00,149.6717 -2024-12-03 18:00:00+00:00,149.6465 -2024-12-03 19:00:00+00:00,149.64625 -2024-12-03 20:00:00+00:00,149.6255 -2024-12-03 21:00:00+00:00,149.6115 -2024-12-03 22:00:00+00:00,149.59835 -2024-12-03 23:00:00+00:00,149.5744 -2024-12-04 00:00:00+00:00,149.5608 -2024-12-04 01:00:00+00:00,149.55585000000002 -2024-12-04 02:00:00+00:00,149.53915 -2024-12-04 03:00:00+00:00,149.5356 -2024-12-04 04:00:00+00:00,149.53815 -2024-12-04 05:00:00+00:00,149.55225000000002 -2024-12-04 06:00:00+00:00,149.55014999999997 -2024-12-04 07:00:00+00:00,149.58249999999998 -2024-12-04 08:00:00+00:00,149.62025 -2024-12-04 09:00:00+00:00,149.7089 -2024-12-04 10:00:00+00:00,149.81105 -2024-12-04 11:00:00+00:00,149.898 -2024-12-04 12:00:00+00:00,150.00039999999998 -2024-12-04 13:00:00+00:00,150.09365 -2024-12-04 14:00:00+00:00,150.18474999999998 -2024-12-04 15:00:00+00:00,150.2291 -2024-12-04 16:00:00+00:00,150.26569999999998 -2024-12-04 17:00:00+00:00,150.2944 -2024-12-04 18:00:00+00:00,150.33575000000002 -2024-12-04 19:00:00+00:00,150.37725 -2024-12-04 20:00:00+00:00,150.40955000000002 -2024-12-04 21:00:00+00:00,150.44445 -2024-12-04 22:00:00+00:00,150.4824 -2024-12-04 23:00:00+00:00,150.51285000000001 -2024-12-05 00:00:00+00:00,150.5255 -2024-12-05 01:00:00+00:00,150.54765 -2024-12-05 02:00:00+00:00,150.56415 -2024-12-05 03:00:00+00:00,150.55945000000003 -2024-12-05 04:00:00+00:00,150.55705 -2024-12-05 05:00:00+00:00,150.52245 -2024-12-05 06:00:00+00:00,150.46825 -2024-12-05 07:00:00+00:00,150.41315 -2024-12-05 08:00:00+00:00,150.36395 -2024-12-05 09:00:00+00:00,150.3257 -2024-12-05 10:00:00+00:00,150.2886 -2024-12-05 11:00:00+00:00,150.27679999999998 -2024-12-05 12:00:00+00:00,150.2876 -2024-12-05 13:00:00+00:00,150.3095 -2024-12-05 14:00:00+00:00,150.3126 -2024-12-05 15:00:00+00:00,150.303 -2024-12-05 16:00:00+00:00,150.28715 -2024-12-05 17:00:00+00:00,150.2625 -2024-12-05 18:00:00+00:00,150.24354999999997 -2024-12-05 19:00:00+00:00,150.21729999999997 -2024-12-05 20:00:00+00:00,150.21025 -2024-12-05 21:00:00+00:00,150.18795 -2024-12-05 22:00:00+00:00,150.1749 -2024-12-05 23:00:00+00:00,150.16649999999998 -2024-12-06 00:00:00+00:00,150.15205 -2024-12-06 01:00:00+00:00,150.15765 -2024-12-06 02:00:00+00:00,150.1601 -2024-12-06 03:00:00+00:00,150.1646 -2024-12-06 04:00:00+00:00,150.154 -2024-12-06 05:00:00+00:00,150.13545 -2024-12-06 06:00:00+00:00,150.1226 -2024-12-06 07:00:00+00:00,150.11925000000002 -2024-12-06 08:00:00+00:00,150.11745000000002 -2024-12-06 09:00:00+00:00,150.11579999999998 -2024-12-06 10:00:00+00:00,150.11999999999998 -2024-12-06 11:00:00+00:00,150.13295 -2024-12-06 12:00:00+00:00,150.1432 -2024-12-06 13:00:00+00:00,150.11970000000002 -2024-12-06 14:00:00+00:00,150.09470000000002 -2024-12-06 15:00:00+00:00,150.08705 -2024-12-06 16:00:00+00:00,150.07260000000002 -2024-12-06 17:00:00+00:00,150.06585 -2024-12-06 18:00:00+00:00,150.0615 -2024-12-06 19:00:00+00:00,150.0541 -2024-12-06 20:00:00+00:00,150.04704999999998 -2024-12-06 21:00:00+00:00,150.04685 -2024-12-08 22:00:00+00:00,150.05535 -2024-12-08 23:00:00+00:00,150.05615 -2024-12-09 00:00:00+00:00,150.04955 -2024-12-09 01:00:00+00:00,150.04825 -2024-12-09 02:00:00+00:00,150.0505 -2024-12-09 03:00:00+00:00,150.04495 -2024-12-09 04:00:00+00:00,150.02135 -2024-12-09 05:00:00+00:00,149.99089999999998 -2024-12-09 06:00:00+00:00,149.9693 -2024-12-09 07:00:00+00:00,149.96105 -2024-12-09 08:00:00+00:00,149.96175 -2024-12-09 09:00:00+00:00,149.9996 -2024-12-09 10:00:00+00:00,150.0396 -2024-12-09 11:00:00+00:00,150.0707 -2024-12-09 12:00:00+00:00,150.1193 -2024-12-09 13:00:00+00:00,150.16505 -2024-12-09 14:00:00+00:00,150.21215 -2024-12-09 15:00:00+00:00,150.2647 -2024-12-09 16:00:00+00:00,150.3286 -2024-12-09 17:00:00+00:00,150.39294999999998 -2024-12-09 18:00:00+00:00,150.45645 -2024-12-09 19:00:00+00:00,150.52365 -2024-12-09 20:00:00+00:00,150.59245 -2024-12-09 21:00:00+00:00,150.6576 -2024-12-09 22:00:00+00:00,150.7246 -2024-12-09 23:00:00+00:00,150.79505 -2024-12-10 00:00:00+00:00,150.8725 -2024-12-10 01:00:00+00:00,150.93995 -2024-12-10 02:00:00+00:00,150.99295 -2024-12-10 03:00:00+00:00,151.02925 -2024-12-10 04:00:00+00:00,151.06475 -2024-12-10 05:00:00+00:00,151.09055 -2024-12-10 06:00:00+00:00,151.12885 -2024-12-10 07:00:00+00:00,151.1821 -2024-12-10 08:00:00+00:00,151.2256 -2024-12-10 09:00:00+00:00,151.26165 -2024-12-10 10:00:00+00:00,151.2947 -2024-12-10 11:00:00+00:00,151.32875 -2024-12-10 12:00:00+00:00,151.356 -2024-12-10 13:00:00+00:00,151.37365 -2024-12-10 14:00:00+00:00,151.40140000000002 -2024-12-10 15:00:00+00:00,151.44575 -2024-12-10 16:00:00+00:00,151.4873 -2024-12-10 17:00:00+00:00,151.53215 -2024-12-10 18:00:00+00:00,151.56564999999998 -2024-12-10 19:00:00+00:00,151.5926 -2024-12-10 20:00:00+00:00,151.61695 -2024-12-10 21:00:00+00:00,151.6497 -2024-12-10 22:00:00+00:00,151.68675 -2024-12-10 23:00:00+00:00,151.72535 -2024-12-11 00:00:00+00:00,151.7553 -2024-12-11 01:00:00+00:00,151.79379999999998 -2024-12-11 02:00:00+00:00,151.8049 -2024-12-11 03:00:00+00:00,151.80450000000002 -2024-12-11 04:00:00+00:00,151.80005 -2024-12-11 05:00:00+00:00,151.80784999999997 -2024-12-11 06:00:00+00:00,151.81635 -2024-12-11 07:00:00+00:00,151.81374999999997 -2024-12-11 08:00:00+00:00,151.8058 -2024-12-11 09:00:00+00:00,151.85565000000003 -2024-12-11 10:00:00+00:00,151.8942 -2024-12-11 11:00:00+00:00,151.91559999999998 -2024-12-11 12:00:00+00:00,151.94575 -2024-12-11 13:00:00+00:00,151.95504999999997 -2024-12-11 14:00:00+00:00,151.9658 -2024-12-11 15:00:00+00:00,151.99245 -2024-12-11 16:00:00+00:00,152.01305 -2024-12-11 17:00:00+00:00,152.0394 -2024-12-11 18:00:00+00:00,152.07625000000002 -2024-12-11 19:00:00+00:00,152.1163 -2024-12-11 20:00:00+00:00,152.15945 -2024-12-11 21:00:00+00:00,152.19745 -2024-12-11 22:00:00+00:00,152.2463 -2024-12-11 23:00:00+00:00,152.2818 -2024-12-12 00:00:00+00:00,152.3138 -2024-12-12 01:00:00+00:00,152.3251 -2024-12-12 02:00:00+00:00,152.35295000000002 -2024-12-12 03:00:00+00:00,152.3881 -2024-12-12 04:00:00+00:00,152.41649999999998 -2024-12-12 05:00:00+00:00,152.4073 -2024-12-12 06:00:00+00:00,152.4015 -2024-12-12 07:00:00+00:00,152.4024 -2024-12-12 08:00:00+00:00,152.3948 -2024-12-12 09:00:00+00:00,152.4062 -2024-12-12 10:00:00+00:00,152.4155 -2024-12-12 11:00:00+00:00,152.40175000000002 -2024-12-12 12:00:00+00:00,152.39835 -2024-12-12 13:00:00+00:00,152.3751 -2024-12-12 14:00:00+00:00,152.3535 -2024-12-12 15:00:00+00:00,152.33565000000002 -2024-12-12 16:00:00+00:00,152.30985 -2024-12-12 17:00:00+00:00,152.29985000000002 -2024-12-12 18:00:00+00:00,152.30270000000002 -2024-12-12 19:00:00+00:00,152.3168 -2024-12-12 20:00:00+00:00,152.34065 -2024-12-12 21:00:00+00:00,152.3741 -2024-12-12 22:00:00+00:00,152.3871 -2024-12-12 23:00:00+00:00,152.39905 -2024-12-13 00:00:00+00:00,152.4305 -2024-12-13 01:00:00+00:00,152.44415 -2024-12-13 02:00:00+00:00,152.46545 -2024-12-13 03:00:00+00:00,152.48194999999998 -2024-12-13 04:00:00+00:00,152.50435 -2024-12-13 05:00:00+00:00,152.5227 -2024-12-13 06:00:00+00:00,152.54225 -2024-12-13 07:00:00+00:00,152.57274999999998 -2024-12-13 08:00:00+00:00,152.6171 -2024-12-13 09:00:00+00:00,152.68605 -2024-12-13 10:00:00+00:00,152.74714999999998 -2024-12-13 11:00:00+00:00,152.81414999999998 -2024-12-13 12:00:00+00:00,152.88295 -2024-12-13 13:00:00+00:00,152.93474999999998 -2024-12-13 14:00:00+00:00,152.9907 -2024-12-13 15:00:00+00:00,153.04685 -2024-12-13 16:00:00+00:00,153.10115000000002 -2024-12-13 17:00:00+00:00,153.15320000000003 -2024-12-13 18:00:00+00:00,153.2092 -2024-12-13 19:00:00+00:00,153.2638 -2024-12-13 20:00:00+00:00,153.30545 -2024-12-13 21:00:00+00:00,153.34949999999998 -2024-12-15 22:00:00+00:00,153.3851 -2024-12-15 23:00:00+00:00,153.41295 -2024-12-16 00:00:00+00:00,153.45595 -2024-12-16 01:00:00+00:00,153.50665 -2024-12-16 02:00:00+00:00,153.56490000000002 -2024-12-16 03:00:00+00:00,153.61589999999998 -2024-12-16 04:00:00+00:00,153.64495 -2024-12-16 05:00:00+00:00,153.6575 -2024-12-16 06:00:00+00:00,153.6666 -2024-12-16 07:00:00+00:00,153.6617 -2024-12-16 08:00:00+00:00,153.67395000000002 -2024-12-16 09:00:00+00:00,153.69915 -2024-12-16 10:00:00+00:00,153.71075000000002 -2024-12-16 11:00:00+00:00,153.7179 -2024-12-16 12:00:00+00:00,153.7345 -2024-12-16 13:00:00+00:00,153.7514 -2024-12-16 14:00:00+00:00,153.78164999999998 -2024-12-16 15:00:00+00:00,153.80925 -2024-12-16 16:00:00+00:00,153.83530000000002 -2024-12-16 17:00:00+00:00,153.86055000000002 -2024-12-16 18:00:00+00:00,153.8825 -2024-12-16 19:00:00+00:00,153.91580000000002 -2024-12-16 20:00:00+00:00,153.93284999999997 -2024-12-16 21:00:00+00:00,153.94525 -2024-12-16 22:00:00+00:00,153.95819999999998 -2024-12-16 23:00:00+00:00,153.97205000000002 -2024-12-17 00:00:00+00:00,153.99245000000002 -2024-12-17 01:00:00+00:00,154.01415 -2024-12-17 02:00:00+00:00,154.03185000000002 -2024-12-17 03:00:00+00:00,154.0577 -2024-12-17 04:00:00+00:00,154.07604999999998 -2024-12-17 05:00:00+00:00,154.0925 -2024-12-17 06:00:00+00:00,154.10805 -2024-12-17 07:00:00+00:00,154.12130000000002 -2024-12-17 08:00:00+00:00,154.11034999999998 -2024-12-17 09:00:00+00:00,154.09875 -2024-12-17 10:00:00+00:00,154.0756 -2024-12-17 11:00:00+00:00,154.0593 -2024-12-17 12:00:00+00:00,154.04154999999997 -2024-12-17 13:00:00+00:00,154.02265 -2024-12-17 14:00:00+00:00,153.9977 -2024-12-17 15:00:00+00:00,153.96699999999998 -2024-12-17 16:00:00+00:00,153.93035 -2024-12-17 17:00:00+00:00,153.88625000000002 -2024-12-17 18:00:00+00:00,153.8433 -2024-12-17 19:00:00+00:00,153.80564999999999 -2024-12-17 20:00:00+00:00,153.77415 -2024-12-17 21:00:00+00:00,153.74385 -2024-12-17 22:00:00+00:00,153.71605 -2024-12-17 23:00:00+00:00,153.6924 -2024-12-18 00:00:00+00:00,153.67360000000002 -2024-12-18 01:00:00+00:00,153.64645000000002 -2024-12-18 02:00:00+00:00,153.62375000000003 -2024-12-18 03:00:00+00:00,153.60115000000002 -2024-12-18 04:00:00+00:00,153.5802 -2024-12-18 05:00:00+00:00,153.5583 -2024-12-18 06:00:00+00:00,153.5399 -2024-12-18 07:00:00+00:00,153.52304999999998 -2024-12-18 08:00:00+00:00,153.51024999999998 -2024-12-18 09:00:00+00:00,153.5032 -2024-12-18 10:00:00+00:00,153.5041 -2024-12-18 11:00:00+00:00,153.51170000000002 -2024-12-18 12:00:00+00:00,153.53199999999998 -2024-12-18 13:00:00+00:00,153.56075 -2024-12-18 14:00:00+00:00,153.586 -2024-12-18 15:00:00+00:00,153.6201 -2024-12-18 16:00:00+00:00,153.6441 -2024-12-18 17:00:00+00:00,153.6609 -2024-12-18 18:00:00+00:00,153.67695 -2024-12-18 19:00:00+00:00,153.73065 -2024-12-18 20:00:00+00:00,153.78045 -2024-12-18 21:00:00+00:00,153.84265 -2024-12-18 22:00:00+00:00,153.89565 -2024-12-18 23:00:00+00:00,153.948 -2024-12-19 00:00:00+00:00,154.01690000000002 -2024-12-19 01:00:00+00:00,154.0812 -2024-12-19 02:00:00+00:00,154.16199999999998 -2024-12-19 03:00:00+00:00,154.24615 -2024-12-19 04:00:00+00:00,154.33325 -2024-12-19 05:00:00+00:00,154.41299999999998 -2024-12-19 06:00:00+00:00,154.5395 -2024-12-19 07:00:00+00:00,154.6802 -2024-12-19 08:00:00+00:00,154.83265 -2024-12-19 09:00:00+00:00,154.9923 -2024-12-19 10:00:00+00:00,155.1509 -2024-12-19 11:00:00+00:00,155.2847 -2024-12-19 12:00:00+00:00,155.4316 -2024-12-19 13:00:00+00:00,155.5858 -2024-12-19 14:00:00+00:00,155.75605 -2024-12-19 15:00:00+00:00,155.90935 -2024-12-19 16:00:00+00:00,156.06154999999998 -2024-12-19 17:00:00+00:00,156.20454999999998 -2024-12-19 18:00:00+00:00,156.34415 -2024-12-19 19:00:00+00:00,156.48205000000002 -2024-12-19 20:00:00+00:00,156.60745 -2024-12-19 21:00:00+00:00,156.74695000000003 -2024-12-19 22:00:00+00:00,156.86475000000002 -2024-12-19 23:00:00+00:00,156.98445 -2024-12-20 00:00:00+00:00,157.10605 -2024-12-20 01:00:00+00:00,157.20855 -2024-12-20 02:00:00+00:00,157.25185 -2024-12-20 03:00:00+00:00,157.28145 -2024-12-20 04:00:00+00:00,157.30255 -2024-12-20 05:00:00+00:00,157.30215 -2024-12-20 06:00:00+00:00,157.30365 -2024-12-20 07:00:00+00:00,157.3101 -2024-12-20 08:00:00+00:00,157.30755 -2024-12-20 09:00:00+00:00,157.29825 -2024-12-20 10:00:00+00:00,157.27655 -2024-12-20 11:00:00+00:00,157.22965000000002 -2024-12-20 12:00:00+00:00,157.17995000000002 -2024-12-20 13:00:00+00:00,157.1212 -2024-12-20 14:00:00+00:00,157.07379999999998 -2024-12-20 15:00:00+00:00,157.0278 -2024-12-20 16:00:00+00:00,156.96675 -2024-12-20 17:00:00+00:00,156.89875 -2024-12-20 18:00:00+00:00,156.83085 -2024-12-20 19:00:00+00:00,156.74845 -2024-12-20 20:00:00+00:00,156.67935 -2024-12-20 21:00:00+00:00,156.63625 -2024-12-22 22:00:00+00:00,156.61465 -2024-12-22 23:00:00+00:00,156.58955 -2024-12-23 00:00:00+00:00,156.5553 -2024-12-23 01:00:00+00:00,156.5265 -2024-12-23 02:00:00+00:00,156.5052 -2024-12-23 03:00:00+00:00,156.48964999999998 -2024-12-23 04:00:00+00:00,156.4741 -2024-12-23 05:00:00+00:00,156.47045 -2024-12-23 06:00:00+00:00,156.46405000000001 -2024-12-23 07:00:00+00:00,156.4651 -2024-12-23 08:00:00+00:00,156.45675 -2024-12-23 09:00:00+00:00,156.46554999999998 -2024-12-23 10:00:00+00:00,156.47715 -2024-12-23 11:00:00+00:00,156.49425 -2024-12-23 12:00:00+00:00,156.54595 -2024-12-23 13:00:00+00:00,156.60275 -2024-12-23 14:00:00+00:00,156.65705 -2024-12-23 15:00:00+00:00,156.7134 -2024-12-23 16:00:00+00:00,156.7471 -2024-12-23 17:00:00+00:00,156.7843 -2024-12-23 18:00:00+00:00,156.81390000000002 -2024-12-23 19:00:00+00:00,156.84054999999998 -2024-12-23 20:00:00+00:00,156.86714999999998 -2024-12-23 21:00:00+00:00,156.9029 -2024-12-23 22:00:00+00:00,156.93290000000002 -2024-12-23 23:00:00+00:00,156.9665 -2024-12-24 00:00:00+00:00,157.0034 -2024-12-24 01:00:00+00:00,157.02765 -2024-12-24 02:00:00+00:00,157.05329999999998 -2024-12-24 03:00:00+00:00,157.06795 -2024-12-24 04:00:00+00:00,157.0903 -2024-12-24 05:00:00+00:00,157.10575 -2024-12-24 06:00:00+00:00,157.11885 -2024-12-24 07:00:00+00:00,157.13365000000002 -2024-12-24 08:00:00+00:00,157.1294 -2024-12-24 09:00:00+00:00,157.1235 -2024-12-24 10:00:00+00:00,157.1193 -2024-12-24 11:00:00+00:00,157.11975 -2024-12-24 12:00:00+00:00,157.12495 -2024-12-24 13:00:00+00:00,157.12645 -2024-12-24 14:00:00+00:00,157.13375 -2024-12-24 15:00:00+00:00,157.14540000000002 -2024-12-24 16:00:00+00:00,157.1532 -2024-12-24 17:00:00+00:00,157.15995 -2024-12-24 18:00:00+00:00,157.16910000000001 -2024-12-24 19:00:00+00:00,157.17505 -2024-12-24 20:00:00+00:00,157.1688 -2024-12-24 21:00:00+00:00,157.17249999999999 -2024-12-25 22:00:00+00:00,157.17865 -2024-12-25 23:00:00+00:00,157.18064999999999 -2024-12-26 00:00:00+00:00,157.19625 -2024-12-26 01:00:00+00:00,157.21695 -2024-12-26 02:00:00+00:00,157.23385000000002 -2024-12-26 03:00:00+00:00,157.24535 -2024-12-26 04:00:00+00:00,157.26395 -2024-12-26 05:00:00+00:00,157.27685 -2024-12-26 06:00:00+00:00,157.2911 -2024-12-26 07:00:00+00:00,157.3028 -2024-12-26 08:00:00+00:00,157.3132 -2024-12-26 09:00:00+00:00,157.3252 -2024-12-26 10:00:00+00:00,157.33335000000002 -2024-12-26 11:00:00+00:00,157.34615 -2024-12-26 12:00:00+00:00,157.36395 -2024-12-26 13:00:00+00:00,157.39050000000003 -2024-12-26 14:00:00+00:00,157.4202 -2024-12-26 15:00:00+00:00,157.45845 -2024-12-26 16:00:00+00:00,157.4996 -2024-12-26 17:00:00+00:00,157.54125000000002 -2024-12-26 18:00:00+00:00,157.57535 -2024-12-26 19:00:00+00:00,157.6181 -2024-12-26 20:00:00+00:00,157.65030000000002 -2024-12-26 21:00:00+00:00,157.68045 -2024-12-26 22:00:00+00:00,157.70385000000002 -2024-12-26 23:00:00+00:00,157.72375 -2024-12-27 00:00:00+00:00,157.74805 -2024-12-27 01:00:00+00:00,157.76775 -2024-12-27 02:00:00+00:00,157.7792 -2024-12-27 03:00:00+00:00,157.79289999999997 -2024-12-27 04:00:00+00:00,157.8045 -2024-12-27 05:00:00+00:00,157.821 -2024-12-27 06:00:00+00:00,157.83665 -2024-12-27 07:00:00+00:00,157.8479 -2024-12-27 08:00:00+00:00,157.8576 -2024-12-27 09:00:00+00:00,157.85965000000002 -2024-12-27 10:00:00+00:00,157.8509 -2024-12-27 11:00:00+00:00,157.83 -2024-12-27 12:00:00+00:00,157.81905 -2024-12-27 13:00:00+00:00,157.8068 -2024-12-27 14:00:00+00:00,157.80100000000002 -2024-12-27 15:00:00+00:00,157.78045 -2024-12-27 16:00:00+00:00,157.76855 -2024-12-27 17:00:00+00:00,157.75875000000002 -2024-12-27 18:00:00+00:00,157.75584999999998 -2024-12-27 19:00:00+00:00,157.76455 -2024-12-27 20:00:00+00:00,157.7642 -2024-12-27 21:00:00+00:00,157.76915000000002 -2024-12-29 22:00:00+00:00,157.7742 -2024-12-29 23:00:00+00:00,157.7869 -2024-12-30 00:00:00+00:00,157.80530000000002 -2024-12-30 01:00:00+00:00,157.8071 -2024-12-30 02:00:00+00:00,157.8096 -2024-12-30 03:00:00+00:00,157.80975 -2024-12-30 04:00:00+00:00,157.80700000000002 -2024-12-30 05:00:00+00:00,157.80585000000002 -2024-12-30 06:00:00+00:00,157.81154999999998 -2024-12-30 07:00:00+00:00,157.82345 -2024-12-30 08:00:00+00:00,157.82869999999997 -2024-12-30 09:00:00+00:00,157.8326 -2024-12-30 10:00:00+00:00,157.83100000000002 -2024-12-30 11:00:00+00:00,157.8342 -2024-12-30 12:00:00+00:00,157.82545 -2024-12-30 13:00:00+00:00,157.80715 -2024-12-30 14:00:00+00:00,157.7699 -2024-12-30 15:00:00+00:00,157.73155 -2024-12-30 16:00:00+00:00,157.6992 -2024-12-30 17:00:00+00:00,157.66455 -2024-12-30 18:00:00+00:00,157.628 -2024-12-30 19:00:00+00:00,157.5873 -2024-12-30 20:00:00+00:00,157.5314 -2024-12-30 21:00:00+00:00,157.4845 -2024-12-30 22:00:00+00:00,157.43855000000002 -2024-12-30 23:00:00+00:00,157.3981 -2024-12-31 00:00:00+00:00,157.3431 -2024-12-31 01:00:00+00:00,157.27245 -2024-12-31 02:00:00+00:00,157.1984 -2024-12-31 03:00:00+00:00,157.12579999999997 -2024-12-31 04:00:00+00:00,157.04235 -2024-12-31 05:00:00+00:00,156.96044999999998 -2024-12-31 06:00:00+00:00,156.8893 -2024-12-31 07:00:00+00:00,156.81779999999998 -2024-12-31 08:00:00+00:00,156.74745 -2024-12-31 09:00:00+00:00,156.70655 -2024-12-31 10:00:00+00:00,156.6939 -2024-12-31 11:00:00+00:00,156.67535 -2024-12-31 12:00:00+00:00,156.65705 -2024-12-31 13:00:00+00:00,156.65015 -2024-12-31 14:00:00+00:00,156.64024999999998 -2024-12-31 15:00:00+00:00,156.64375 -2024-12-31 16:00:00+00:00,156.67104999999998 -2024-12-31 17:00:00+00:00,156.69665 -2024-12-31 18:00:00+00:00,156.7172 -2024-12-31 19:00:00+00:00,156.73225 -2024-12-31 20:00:00+00:00,156.7649 -2024-12-31 21:00:00+00:00,156.80285 -2025-01-01 22:00:00+00:00,156.84640000000002 -2025-01-01 23:00:00+00:00,156.9093 -2025-01-02 00:00:00+00:00,156.96965 -2025-01-02 01:00:00+00:00,157.03335 -2025-01-02 02:00:00+00:00,157.0798 -2025-01-02 03:00:00+00:00,157.12730000000002 -2025-01-02 04:00:00+00:00,157.17085000000003 -2025-01-02 05:00:00+00:00,157.1992 -2025-01-02 06:00:00+00:00,157.1907 -2025-01-02 07:00:00+00:00,157.184 -2025-01-02 08:00:00+00:00,157.17835 -2025-01-02 09:00:00+00:00,157.16745 -2025-01-02 10:00:00+00:00,157.18545 -2025-01-02 11:00:00+00:00,157.18775 -2025-01-02 12:00:00+00:00,157.17315 -2025-01-02 13:00:00+00:00,157.14605 -2025-01-02 14:00:00+00:00,157.1327 -2025-01-02 15:00:00+00:00,157.1248 -2025-01-02 16:00:00+00:00,157.1404 -2025-01-02 17:00:00+00:00,157.15865 -2025-01-02 18:00:00+00:00,157.17055 -2025-01-02 19:00:00+00:00,157.16665 -2025-01-02 20:00:00+00:00,157.1763 -2025-01-02 21:00:00+00:00,157.1777 -2025-01-02 22:00:00+00:00,157.18665 -2025-01-02 23:00:00+00:00,157.1967 -2025-01-03 00:00:00+00:00,157.20625 -2025-01-03 01:00:00+00:00,157.20985000000002 -2025-01-03 02:00:00+00:00,157.24225 -2025-01-03 03:00:00+00:00,157.27425 -2025-01-03 04:00:00+00:00,157.29940000000002 -2025-01-03 05:00:00+00:00,157.3248 -2025-01-03 06:00:00+00:00,157.3267 -2025-01-03 07:00:00+00:00,157.32340000000002 -2025-01-03 08:00:00+00:00,157.33610000000002 -2025-01-03 09:00:00+00:00,157.35739999999998 -2025-01-03 10:00:00+00:00,157.37455 -2025-01-03 11:00:00+00:00,157.3793 -2025-01-03 12:00:00+00:00,157.3547 -2025-01-03 13:00:00+00:00,157.33554999999998 -2025-01-03 14:00:00+00:00,157.31725 -2025-01-03 15:00:00+00:00,157.30615 -2025-01-03 16:00:00+00:00,157.28490000000002 -2025-01-03 17:00:00+00:00,157.2664 -2025-01-03 18:00:00+00:00,157.25135 -2025-01-03 19:00:00+00:00,157.24370000000002 -2025-01-03 20:00:00+00:00,157.2501 -2025-01-03 21:00:00+00:00,157.25060000000002 -2025-01-05 22:00:00+00:00,157.2523 -2025-01-05 23:00:00+00:00,157.26225 -2025-01-06 00:00:00+00:00,157.27765 -2025-01-06 01:00:00+00:00,157.29355 -2025-01-06 02:00:00+00:00,157.32075 -2025-01-06 03:00:00+00:00,157.34969999999998 -2025-01-06 04:00:00+00:00,157.369 -2025-01-06 05:00:00+00:00,157.3952 -2025-01-06 06:00:00+00:00,157.4091 -2025-01-06 07:00:00+00:00,157.43 -2025-01-06 08:00:00+00:00,157.45499999999998 -2025-01-06 09:00:00+00:00,157.48275 -2025-01-06 10:00:00+00:00,157.52115 -2025-01-06 11:00:00+00:00,157.5113 -2025-01-06 12:00:00+00:00,157.4904 -2025-01-06 13:00:00+00:00,157.46255000000002 -2025-01-06 14:00:00+00:00,157.46880000000002 -2025-01-06 15:00:00+00:00,157.48525 -2025-01-06 16:00:00+00:00,157.49544999999998 -2025-01-06 17:00:00+00:00,157.50645 -2025-01-06 18:00:00+00:00,157.51595 -2025-01-06 19:00:00+00:00,157.51780000000002 -2025-01-06 20:00:00+00:00,157.5195 -2025-01-06 21:00:00+00:00,157.52100000000002 -2025-01-06 22:00:00+00:00,157.5165 -2025-01-06 23:00:00+00:00,157.51765 -2025-01-07 00:00:00+00:00,157.5369 -2025-01-07 01:00:00+00:00,157.5635 -2025-01-07 02:00:00+00:00,157.5949 -2025-01-07 03:00:00+00:00,157.61790000000002 -2025-01-07 04:00:00+00:00,157.63875000000002 -2025-01-07 05:00:00+00:00,157.64505 -2025-01-07 06:00:00+00:00,157.63774999999998 -2025-01-07 07:00:00+00:00,157.6524 -2025-01-07 08:00:00+00:00,157.6845 -2025-01-07 09:00:00+00:00,157.73425 -2025-01-07 10:00:00+00:00,157.757 -2025-01-07 11:00:00+00:00,157.76595 -2025-01-07 12:00:00+00:00,157.77585000000002 -2025-01-07 13:00:00+00:00,157.78395 -2025-01-07 14:00:00+00:00,157.79535 -2025-01-07 15:00:00+00:00,157.81504999999999 -2025-01-07 16:00:00+00:00,157.82535000000001 -2025-01-07 17:00:00+00:00,157.8278 -2025-01-07 18:00:00+00:00,157.83859999999999 -2025-01-07 19:00:00+00:00,157.84060000000002 -2025-01-07 20:00:00+00:00,157.82915 -2025-01-07 21:00:00+00:00,157.81685000000002 -2025-01-07 22:00:00+00:00,157.80464999999998 -2025-01-07 23:00:00+00:00,157.8096 -2025-01-08 00:00:00+00:00,157.81385 -2025-01-08 01:00:00+00:00,157.81914999999998 -2025-01-08 02:00:00+00:00,157.83645 -2025-01-08 03:00:00+00:00,157.87155 -2025-01-08 04:00:00+00:00,157.91140000000001 -2025-01-08 05:00:00+00:00,157.93980000000002 -2025-01-08 06:00:00+00:00,157.9551 -2025-01-08 07:00:00+00:00,157.9751 -2025-01-08 08:00:00+00:00,158.00029999999998 -2025-01-08 09:00:00+00:00,158.02485 -2025-01-08 10:00:00+00:00,158.05294999999998 -2025-01-08 11:00:00+00:00,158.07455 -2025-01-08 12:00:00+00:00,158.1083 -2025-01-08 13:00:00+00:00,158.13434999999998 -2025-01-08 14:00:00+00:00,158.1597 -2025-01-08 15:00:00+00:00,158.18919999999997 -2025-01-08 16:00:00+00:00,158.2116 -2025-01-08 17:00:00+00:00,158.228 -2025-01-08 18:00:00+00:00,158.24945 -2025-01-08 19:00:00+00:00,158.26175 -2025-01-08 20:00:00+00:00,158.27135 -2025-01-08 21:00:00+00:00,158.29045000000002 -2025-01-08 22:00:00+00:00,158.30095 -2025-01-08 23:00:00+00:00,158.30065 -2025-01-09 00:00:00+00:00,158.3025 -2025-01-09 01:00:00+00:00,158.2993 -2025-01-09 02:00:00+00:00,158.30115 -2025-01-09 03:00:00+00:00,158.29425 -2025-01-09 04:00:00+00:00,158.27835 -2025-01-09 05:00:00+00:00,158.2731 -2025-01-09 06:00:00+00:00,158.2641 -2025-01-09 07:00:00+00:00,158.2551 -2025-01-09 08:00:00+00:00,158.23645 -2025-01-09 09:00:00+00:00,158.2297 -2025-01-09 10:00:00+00:00,158.21185 -2025-01-09 11:00:00+00:00,158.18875 -2025-01-09 12:00:00+00:00,158.15995 -2025-01-09 13:00:00+00:00,158.12324999999998 -2025-01-09 14:00:00+00:00,158.09105000000002 -2025-01-09 15:00:00+00:00,158.06625 -2025-01-09 16:00:00+00:00,158.04885 -2025-01-09 17:00:00+00:00,158.03655 -2025-01-09 18:00:00+00:00,158.02465 -2025-01-09 19:00:00+00:00,158.0207 -2025-01-09 20:00:00+00:00,158.0136 -2025-01-09 21:00:00+00:00,158.01385 -2025-01-09 22:00:00+00:00,158.01614999999998 -2025-01-09 23:00:00+00:00,158.0197 -2025-01-10 00:00:00+00:00,158.02360000000002 -2025-01-10 01:00:00+00:00,158.02720000000002 -2025-01-10 02:00:00+00:00,158.033 -2025-01-10 03:00:00+00:00,158.03490000000002 -2025-01-10 04:00:00+00:00,158.0474 -2025-01-10 05:00:00+00:00,158.06380000000001 -2025-01-10 06:00:00+00:00,158.08044999999998 -2025-01-10 07:00:00+00:00,158.10444999999999 -2025-01-10 08:00:00+00:00,158.10840000000002 -2025-01-10 09:00:00+00:00,158.12205 -2025-01-10 10:00:00+00:00,158.13494999999998 -2025-01-10 11:00:00+00:00,158.13595 -2025-01-10 12:00:00+00:00,158.13495 -2025-01-10 13:00:00+00:00,158.15709999999999 -2025-01-10 14:00:00+00:00,158.15175 -2025-01-10 15:00:00+00:00,158.12394999999998 -2025-01-10 16:00:00+00:00,158.10235 -2025-01-10 17:00:00+00:00,158.08004999999997 -2025-01-10 18:00:00+00:00,158.06805000000003 -2025-01-10 19:00:00+00:00,158.05945000000003 -2025-01-10 20:00:00+00:00,158.04995 -2025-01-10 21:00:00+00:00,158.03045 -2025-01-12 22:00:00+00:00,158.0036 -2025-01-12 23:00:00+00:00,157.98765 -2025-01-13 00:00:00+00:00,157.95805 -2025-01-13 01:00:00+00:00,157.9098 -2025-01-13 02:00:00+00:00,157.8693 -2025-01-13 03:00:00+00:00,157.82065 -2025-01-13 04:00:00+00:00,157.8065 -2025-01-13 05:00:00+00:00,157.78019999999998 -2025-01-13 06:00:00+00:00,157.75285000000002 -2025-01-13 07:00:00+00:00,157.7264 -2025-01-13 08:00:00+00:00,157.707 -2025-01-13 09:00:00+00:00,157.63510000000002 -2025-01-13 10:00:00+00:00,157.60819999999998 -2025-01-13 11:00:00+00:00,157.5961 -2025-01-13 12:00:00+00:00,157.5633 -2025-01-13 13:00:00+00:00,157.53975 -2025-01-13 14:00:00+00:00,157.5127 -2025-01-13 15:00:00+00:00,157.49499999999998 -2025-01-13 16:00:00+00:00,157.4798 -2025-01-13 17:00:00+00:00,157.45940000000002 -2025-01-13 18:00:00+00:00,157.44715000000002 -2025-01-13 19:00:00+00:00,157.44225 -2025-01-13 20:00:00+00:00,157.4353 -2025-01-13 21:00:00+00:00,157.43675 -2025-01-13 22:00:00+00:00,157.4283 -2025-01-13 23:00:00+00:00,157.4229 -2025-01-14 00:00:00+00:00,157.4227 -2025-01-14 01:00:00+00:00,157.42435 -2025-01-14 02:00:00+00:00,157.43245 -2025-01-14 03:00:00+00:00,157.43715 -2025-01-14 04:00:00+00:00,157.43125 -2025-01-14 05:00:00+00:00,157.45475 -2025-01-14 06:00:00+00:00,157.4574 -2025-01-14 07:00:00+00:00,157.46800000000002 -2025-01-14 08:00:00+00:00,157.5011 -2025-01-14 09:00:00+00:00,157.53815000000003 -2025-01-14 10:00:00+00:00,157.56195 -2025-01-14 11:00:00+00:00,157.5829 -2025-01-14 12:00:00+00:00,157.60035 -2025-01-14 13:00:00+00:00,157.62265 -2025-01-14 14:00:00+00:00,157.63915 -2025-01-14 15:00:00+00:00,157.64669999999998 -2025-01-14 16:00:00+00:00,157.6616 -2025-01-14 17:00:00+00:00,157.69445000000002 -2025-01-14 18:00:00+00:00,157.7275 -2025-01-14 19:00:00+00:00,157.7591 -2025-01-14 20:00:00+00:00,157.78135 -2025-01-14 21:00:00+00:00,157.8082 -2025-01-14 22:00:00+00:00,157.82139999999998 -2025-01-14 23:00:00+00:00,157.84589999999997 -2025-01-15 00:00:00+00:00,157.8702 -2025-01-15 01:00:00+00:00,157.88615 -2025-01-15 02:00:00+00:00,157.90945 -2025-01-15 03:00:00+00:00,157.9276 -2025-01-15 04:00:00+00:00,157.9232 -2025-01-15 05:00:00+00:00,157.89235 -2025-01-15 06:00:00+00:00,157.86804999999998 -2025-01-15 07:00:00+00:00,157.81535 -2025-01-15 08:00:00+00:00,157.77775 -2025-01-15 09:00:00+00:00,157.7321 -2025-01-15 10:00:00+00:00,157.68105 -2025-01-15 11:00:00+00:00,157.63344999999998 -2025-01-15 12:00:00+00:00,157.58485000000002 -2025-01-15 13:00:00+00:00,157.49815 -2025-01-15 14:00:00+00:00,157.41199999999998 -2025-01-15 15:00:00+00:00,157.32965000000002 -2025-01-15 16:00:00+00:00,157.26045000000002 -2025-01-15 17:00:00+00:00,157.1891 -2025-01-15 18:00:00+00:00,157.1162 -2025-01-15 19:00:00+00:00,157.03695 -2025-01-15 20:00:00+00:00,156.96044999999998 -2025-01-15 21:00:00+00:00,156.88865 -2025-01-15 22:00:00+00:00,156.81005 -2025-01-15 23:00:00+00:00,156.72665 -2025-01-16 00:00:00+00:00,156.65555 -2025-01-16 01:00:00+00:00,156.5671 -2025-01-16 02:00:00+00:00,156.4864 -2025-01-16 03:00:00+00:00,156.43099999999998 -2025-01-16 04:00:00+00:00,156.37320000000003 -2025-01-16 05:00:00+00:00,156.33555 -2025-01-16 06:00:00+00:00,156.301 -2025-01-16 07:00:00+00:00,156.2597 -2025-01-16 08:00:00+00:00,156.20555 -2025-01-16 09:00:00+00:00,156.16975 -2025-01-16 10:00:00+00:00,156.13885 -2025-01-16 11:00:00+00:00,156.1133 -2025-01-16 12:00:00+00:00,156.08874999999998 -2025-01-16 13:00:00+00:00,156.05675000000002 -2025-01-16 14:00:00+00:00,156.038 -2025-01-16 15:00:00+00:00,155.9862 -2025-01-16 16:00:00+00:00,155.9361 -2025-01-16 17:00:00+00:00,155.8763 -2025-01-16 18:00:00+00:00,155.8251 -2025-01-16 19:00:00+00:00,155.77870000000001 -2025-01-16 20:00:00+00:00,155.7298 -2025-01-16 21:00:00+00:00,155.70815 -2025-01-16 22:00:00+00:00,155.68054999999998 -2025-01-16 23:00:00+00:00,155.66005 -2025-01-17 00:00:00+00:00,155.62169999999998 -2025-01-17 01:00:00+00:00,155.57684999999998 -2025-01-17 02:00:00+00:00,155.5437 -2025-01-17 03:00:00+00:00,155.50670000000002 -2025-01-17 04:00:00+00:00,155.4813 -2025-01-17 05:00:00+00:00,155.47535 -2025-01-17 06:00:00+00:00,155.47420000000002 -2025-01-17 07:00:00+00:00,155.46585 -2025-01-17 08:00:00+00:00,155.44555 -2025-01-17 09:00:00+00:00,155.4368 -2025-01-17 10:00:00+00:00,155.41935 -2025-01-17 11:00:00+00:00,155.43275 -2025-01-17 12:00:00+00:00,155.44670000000002 -2025-01-17 13:00:00+00:00,155.46755000000002 -2025-01-17 14:00:00+00:00,155.50215 -2025-01-17 15:00:00+00:00,155.54285 -2025-01-17 16:00:00+00:00,155.59785 -2025-01-17 17:00:00+00:00,155.6547 -2025-01-17 18:00:00+00:00,155.70510000000002 -2025-01-17 19:00:00+00:00,155.7441 -2025-01-17 20:00:00+00:00,155.79225000000002 -2025-01-17 21:00:00+00:00,155.84629999999999 -2025-01-19 22:00:00+00:00,155.89015 -2025-01-19 23:00:00+00:00,155.9332 -2025-01-20 00:00:00+00:00,155.963 -2025-01-20 01:00:00+00:00,155.98115 -2025-01-20 02:00:00+00:00,155.99579999999997 -2025-01-20 03:00:00+00:00,156.0022 -2025-01-20 04:00:00+00:00,156.0157 -2025-01-20 05:00:00+00:00,156.03215 -2025-01-20 06:00:00+00:00,156.05325 -2025-01-20 07:00:00+00:00,156.06805 -2025-01-20 08:00:00+00:00,156.0898 -2025-01-20 09:00:00+00:00,156.1196 -2025-01-20 10:00:00+00:00,156.1361 -2025-01-20 11:00:00+00:00,156.14780000000002 -2025-01-20 12:00:00+00:00,156.1512 -2025-01-20 13:00:00+00:00,156.12445 -2025-01-20 14:00:00+00:00,156.09255 -2025-01-20 15:00:00+00:00,156.06980000000001 -2025-01-20 16:00:00+00:00,156.04645 -2025-01-20 17:00:00+00:00,156.0229 -2025-01-20 18:00:00+00:00,155.9921 -2025-01-20 19:00:00+00:00,155.9588 -2025-01-20 20:00:00+00:00,155.94 -2025-01-20 21:00:00+00:00,155.92579999999998 -2025-01-20 22:00:00+00:00,155.91140000000001 -2025-01-20 23:00:00+00:00,155.8882 -2025-01-21 00:00:00+00:00,155.89069999999998 -2025-01-21 01:00:00+00:00,155.86485 -2025-01-21 02:00:00+00:00,155.81205 -2025-01-21 03:00:00+00:00,155.772 -2025-01-21 04:00:00+00:00,155.7175 -2025-01-21 05:00:00+00:00,155.66895000000002 -2025-01-21 06:00:00+00:00,155.62615 -2025-01-21 07:00:00+00:00,155.59295 -2025-01-21 08:00:00+00:00,155.56145 -2025-01-21 09:00:00+00:00,155.57025 -2025-01-21 10:00:00+00:00,155.5919 -2025-01-21 11:00:00+00:00,155.60285000000002 -2025-01-21 12:00:00+00:00,155.60970000000003 -2025-01-21 13:00:00+00:00,155.59295 -2025-01-21 14:00:00+00:00,155.58725 -2025-01-21 15:00:00+00:00,155.57175 -2025-01-21 16:00:00+00:00,155.56605 -2025-01-21 17:00:00+00:00,155.56265 -2025-01-21 18:00:00+00:00,155.55565 -2025-01-21 19:00:00+00:00,155.56945000000002 -2025-01-21 20:00:00+00:00,155.54435 -2025-01-21 21:00:00+00:00,155.54295 -2025-01-21 22:00:00+00:00,155.56005 -2025-01-21 23:00:00+00:00,155.5876 -2025-01-22 00:00:00+00:00,155.6058 -2025-01-22 01:00:00+00:00,155.6246 -2025-01-22 02:00:00+00:00,155.63569999999999 -2025-01-22 03:00:00+00:00,155.6479 -2025-01-22 04:00:00+00:00,155.6503 -2025-01-22 05:00:00+00:00,155.6469 -2025-01-22 06:00:00+00:00,155.64215 -2025-01-22 07:00:00+00:00,155.64894999999999 -2025-01-22 08:00:00+00:00,155.644 -2025-01-22 09:00:00+00:00,155.653 -2025-01-22 10:00:00+00:00,155.66209999999998 -2025-01-22 11:00:00+00:00,155.6891 -2025-01-22 12:00:00+00:00,155.70499999999998 -2025-01-22 13:00:00+00:00,155.72070000000002 -2025-01-22 14:00:00+00:00,155.753 -2025-01-22 15:00:00+00:00,155.7953 -2025-01-22 16:00:00+00:00,155.8503 -2025-01-22 17:00:00+00:00,155.9052 -2025-01-22 18:00:00+00:00,155.95995 -2025-01-22 19:00:00+00:00,155.99894999999998 -2025-01-22 20:00:00+00:00,156.05495000000002 -2025-01-22 21:00:00+00:00,156.09695 -2025-01-22 22:00:00+00:00,156.13155 -2025-01-22 23:00:00+00:00,156.15735 -2025-01-23 00:00:00+00:00,156.18715 -2025-01-23 01:00:00+00:00,156.22325 -2025-01-23 02:00:00+00:00,156.25355 -2025-01-23 03:00:00+00:00,156.27625 -2025-01-23 04:00:00+00:00,156.31959999999998 -2025-01-23 05:00:00+00:00,156.3711 -2025-01-23 06:00:00+00:00,156.4133 -2025-01-23 07:00:00+00:00,156.45015 -2025-01-23 08:00:00+00:00,156.48395 -2025-01-23 09:00:00+00:00,156.5085 -2025-01-23 10:00:00+00:00,156.52100000000002 -2025-01-23 11:00:00+00:00,156.5283 -2025-01-23 12:00:00+00:00,156.51725000000002 -2025-01-23 13:00:00+00:00,156.49679999999998 -2025-01-23 14:00:00+00:00,156.48035 -2025-01-23 15:00:00+00:00,156.46275 -2025-01-23 16:00:00+00:00,156.43545 -2025-01-23 17:00:00+00:00,156.40495 -2025-01-23 18:00:00+00:00,156.38325 -2025-01-23 19:00:00+00:00,156.35155 -2025-01-23 20:00:00+00:00,156.33075000000002 -2025-01-23 21:00:00+00:00,156.3067 -2025-01-23 22:00:00+00:00,156.28360000000004 -2025-01-23 23:00:00+00:00,156.26545 -2025-01-24 00:00:00+00:00,156.24825 -2025-01-24 01:00:00+00:00,156.22875000000002 -2025-01-24 02:00:00+00:00,156.19735 -2025-01-24 03:00:00+00:00,156.14124999999999 -2025-01-24 04:00:00+00:00,156.07845 -2025-01-24 05:00:00+00:00,156.0272 -2025-01-24 06:00:00+00:00,155.9752 -2025-01-24 07:00:00+00:00,155.9171 -2025-01-24 08:00:00+00:00,155.8662 -2025-01-24 09:00:00+00:00,155.83515000000003 -2025-01-24 10:00:00+00:00,155.8182 -2025-01-24 11:00:00+00:00,155.81470000000002 -2025-01-24 12:00:00+00:00,155.8374 -2025-01-24 13:00:00+00:00,155.85695 diff --git a/indicators_directory/USD_JPY_BollingerBands_std.csv b/indicators_directory/USD_JPY_BollingerBands_std.csv deleted file mode 100644 index bcc1f9e..0000000 --- a/indicators_directory/USD_JPY_BollingerBands_std.csv +++ /dev/null @@ -1,5001 +0,0 @@ -time,BollingerBands_std -2024-04-05 03:00:00+00:00, -2024-04-05 04:00:00+00:00, -2024-04-05 05:00:00+00:00, -2024-04-05 06:00:00+00:00, -2024-04-05 07:00:00+00:00, -2024-04-05 08:00:00+00:00, -2024-04-05 09:00:00+00:00, -2024-04-05 10:00:00+00:00, -2024-04-05 11:00:00+00:00, -2024-04-05 12:00:00+00:00, -2024-04-05 13:00:00+00:00, -2024-04-05 14:00:00+00:00, -2024-04-05 15:00:00+00:00, -2024-04-05 16:00:00+00:00, -2024-04-05 17:00:00+00:00, -2024-04-05 18:00:00+00:00, -2024-04-05 19:00:00+00:00, -2024-04-05 20:00:00+00:00, -2024-04-07 21:00:00+00:00, -2024-04-07 22:00:00+00:00,0.1647343235892738 -2024-04-07 23:00:00+00:00,0.16275660710978762 -2024-04-08 00:00:00+00:00,0.1554854113989175 -2024-04-08 01:00:00+00:00,0.14428461456440334 -2024-04-08 02:00:00+00:00,0.13544331694573616 -2024-04-08 03:00:00+00:00,0.13000424082151898 -2024-04-08 04:00:00+00:00,0.12952393601184498 -2024-04-08 05:00:00+00:00,0.12618836171208045 -2024-04-08 06:00:00+00:00,0.10762697519429199 -2024-04-08 07:00:00+00:00,0.09570979986120642 -2024-04-08 08:00:00+00:00,0.10795880062123699 -2024-04-08 09:00:00+00:00,0.11332737858451522 -2024-04-08 10:00:00+00:00,0.10935822352537755 -2024-04-08 11:00:00+00:00,0.11299989520253344 -2024-04-08 12:00:00+00:00,0.11067185968578 -2024-04-08 13:00:00+00:00,0.10349986015751153 -2024-04-08 14:00:00+00:00,0.09154469716450182 -2024-04-08 15:00:00+00:00,0.08656015553537744 -2024-04-08 16:00:00+00:00,0.07940003645758736 -2024-04-08 17:00:00+00:00,0.06789409322414865 -2024-04-08 18:00:00+00:00,0.06368846875709996 -2024-04-08 19:00:00+00:00,0.05703498464693891 -2024-04-08 20:00:00+00:00,0.052472950425033214 -2024-04-08 21:00:00+00:00,0.051650036938821926 -2024-04-08 22:00:00+00:00,0.05046027619500637 -2024-04-08 23:00:00+00:00,0.049023597969618096 -2024-04-09 00:00:00+00:00,0.051843159219770424 -2024-04-09 01:00:00+00:00,0.052383479717939344 -2024-04-09 02:00:00+00:00,0.049747229491662735 -2024-04-09 03:00:00+00:00,0.049459286818781666 -2024-04-09 04:00:00+00:00,0.04845996720019181 -2024-04-09 05:00:00+00:00,0.049363847841058885 -2024-04-09 06:00:00+00:00,0.05200040485663522 -2024-04-09 07:00:00+00:00,0.05104579986836601 -2024-04-09 08:00:00+00:00,0.051409885389682185 -2024-04-09 09:00:00+00:00,0.04508868454141089 -2024-04-09 10:00:00+00:00,0.04590310160362523 -2024-04-09 11:00:00+00:00,0.043851543812361594 -2024-04-09 12:00:00+00:00,0.04734584403471177 -2024-04-09 13:00:00+00:00,0.04759820872338798 -2024-04-09 14:00:00+00:00,0.06258491074230857 -2024-04-09 15:00:00+00:00,0.06728437294124502 -2024-04-09 16:00:00+00:00,0.07680424535958215 -2024-04-09 17:00:00+00:00,0.08253962365843447 -2024-04-09 18:00:00+00:00,0.08444718062659785 -2024-04-09 19:00:00+00:00,0.08621173445585467 -2024-04-09 20:00:00+00:00,0.08338337269562626 -2024-04-09 21:00:00+00:00,0.08161686809653886 -2024-04-09 22:00:00+00:00,0.0802202724082691 -2024-04-09 23:00:00+00:00,0.07889199812665 -2024-04-10 00:00:00+00:00,0.0764212012467442 -2024-04-10 01:00:00+00:00,0.07268272798515786 -2024-04-10 02:00:00+00:00,0.06451854078681625 -2024-04-10 03:00:00+00:00,0.05557477182279558 -2024-04-10 04:00:00+00:00,0.0468355465544169 -2024-04-10 05:00:00+00:00,0.04434728378317904 -2024-04-10 06:00:00+00:00,0.04360139423167435 -2024-04-10 07:00:00+00:00,0.044816438478454804 -2024-04-10 08:00:00+00:00,0.05025451014060223 -2024-04-10 09:00:00+00:00,0.055386940318931 -2024-04-10 10:00:00+00:00,0.05185597463417989 -2024-04-10 11:00:00+00:00,0.05367690868812047 -2024-04-10 12:00:00+00:00,0.14365935586069142 -2024-04-10 13:00:00+00:00,0.23781839599508123 -2024-04-10 14:00:00+00:00,0.3112346001262936 -2024-04-10 15:00:00+00:00,0.37924493890385635 -2024-04-10 16:00:00+00:00,0.4331751803163243 -2024-04-10 17:00:00+00:00,0.45885923767531345 -2024-04-10 18:00:00+00:00,0.49229461653937223 -2024-04-10 19:00:00+00:00,0.517276091911386 -2024-04-10 20:00:00+00:00,0.545676943177683 -2024-04-10 21:00:00+00:00,0.5533062799875176 -2024-04-10 22:00:00+00:00,0.5507066274102917 -2024-04-10 23:00:00+00:00,0.5430846594853753 -2024-04-11 00:00:00+00:00,0.525923758733065 -2024-04-11 01:00:00+00:00,0.5037947028616773 -2024-04-11 02:00:00+00:00,0.4729163273048179 -2024-04-11 03:00:00+00:00,0.4427252801502328 -2024-04-11 04:00:00+00:00,0.40233994529356765 -2024-04-11 05:00:00+00:00,0.35200793950358544 -2024-04-11 06:00:00+00:00,0.2860270276148436 -2024-04-11 07:00:00+00:00,0.17471754649287868 -2024-04-11 08:00:00+00:00,0.14479659053801705 -2024-04-11 09:00:00+00:00,0.1386616005732554 -2024-04-11 10:00:00+00:00,0.13278493692258514 -2024-04-11 11:00:00+00:00,0.1335761068291751 -2024-04-11 12:00:00+00:00,0.13709139287296687 -2024-04-11 13:00:00+00:00,0.13130978838671825 -2024-04-11 14:00:00+00:00,0.14389232085086376 -2024-04-11 15:00:00+00:00,0.1482146025899627 -2024-04-11 16:00:00+00:00,0.15320789968589524 -2024-04-11 17:00:00+00:00,0.1561842703848146 -2024-04-11 18:00:00+00:00,0.15934255552063692 -2024-04-11 19:00:00+00:00,0.16035700303042463 -2024-04-11 20:00:00+00:00,0.15642199165567966 -2024-04-11 21:00:00+00:00,0.14302892603964526 -2024-04-11 22:00:00+00:00,0.1277532984427411 -2024-04-11 23:00:00+00:00,0.12034813535760235 -2024-04-12 00:00:00+00:00,0.11294101860728403 -2024-04-12 01:00:00+00:00,0.10541117487872849 -2024-04-12 02:00:00+00:00,0.10549083272642173 -2024-04-12 03:00:00+00:00,0.10585037851334894 -2024-04-12 04:00:00+00:00,0.10573422490201535 -2024-04-12 05:00:00+00:00,0.10624067760885206 -2024-04-12 06:00:00+00:00,0.10696869930694806 -2024-04-12 07:00:00+00:00,0.10611903693419952 -2024-04-12 08:00:00+00:00,0.0741051883960406 -2024-04-12 09:00:00+00:00,0.07515422738995943 -2024-04-12 10:00:00+00:00,0.07511358066185436 -2024-04-12 11:00:00+00:00,0.07582597804982949 -2024-04-12 12:00:00+00:00,0.11009512633149114 -2024-04-12 13:00:00+00:00,0.12431479566363883 -2024-04-12 14:00:00+00:00,0.13550408811019038 -2024-04-12 15:00:00+00:00,0.13551456515171253 -2024-04-12 16:00:00+00:00,0.13323568353957027 -2024-04-12 17:00:00+00:00,0.1325330048261784 -2024-04-12 18:00:00+00:00,0.13215158759961157 -2024-04-12 19:00:00+00:00,0.13338156583688093 -2024-04-12 20:00:00+00:00,0.13105366518236633 -2024-04-14 21:00:00+00:00,0.130112461476279 -2024-04-14 22:00:00+00:00,0.13251081385800711 -2024-04-14 23:00:00+00:00,0.13553646819348808 -2024-04-15 00:00:00+00:00,0.14915707016023988 -2024-04-15 01:00:00+00:00,0.17166932718042144 -2024-04-15 02:00:00+00:00,0.2047476238531901 -2024-04-15 03:00:00+00:00,0.22747101608279469 -2024-04-15 04:00:00+00:00,0.25670880492527476 -2024-04-15 05:00:00+00:00,0.2844631323810878 -2024-04-15 06:00:00+00:00,0.31121376982095433 -2024-04-15 07:00:00+00:00,0.3334101157178893 -2024-04-15 08:00:00+00:00,0.32755624667636707 -2024-04-15 09:00:00+00:00,0.3214425380422336 -2024-04-15 10:00:00+00:00,0.3104850365067859 -2024-04-15 11:00:00+00:00,0.30764577631441836 -2024-04-15 12:00:00+00:00,0.31876084088876233 -2024-04-15 13:00:00+00:00,0.3386890321906384 -2024-04-15 14:00:00+00:00,0.35081122153919714 -2024-04-15 15:00:00+00:00,0.3497098458947534 -2024-04-15 16:00:00+00:00,0.34965779887734083 -2024-04-15 17:00:00+00:00,0.32228418319367563 -2024-04-15 18:00:00+00:00,0.29753771985553235 -2024-04-15 19:00:00+00:00,0.26613146731406556 -2024-04-15 20:00:00+00:00,0.24540104126234424 -2024-04-15 21:00:00+00:00,0.2267074627890096 -2024-04-15 22:00:00+00:00,0.21415107800464364 -2024-04-15 23:00:00+00:00,0.19502827730203307 -2024-04-16 00:00:00+00:00,0.18531833209524257 -2024-04-16 01:00:00+00:00,0.17909435913430224 -2024-04-16 02:00:00+00:00,0.1705017055017185 -2024-04-16 03:00:00+00:00,0.16332228390854775 -2024-04-16 04:00:00+00:00,0.14493243434915218 -2024-04-16 05:00:00+00:00,0.12402079621901388 -2024-04-16 06:00:00+00:00,0.11600862036964595 -2024-04-16 07:00:00+00:00,0.08491498844863575 -2024-04-16 08:00:00+00:00,0.094291750490721 -2024-04-16 09:00:00+00:00,0.11016660827595556 -2024-04-16 10:00:00+00:00,0.1270913885859907 -2024-04-16 11:00:00+00:00,0.1413772109979616 -2024-04-16 12:00:00+00:00,0.1557143471065827 -2024-04-16 13:00:00+00:00,0.1554370662970853 -2024-04-16 14:00:00+00:00,0.15608245965074724 -2024-04-16 15:00:00+00:00,0.1547044380682059 -2024-04-16 16:00:00+00:00,0.1546358711026856 -2024-04-16 17:00:00+00:00,0.15754173214908235 -2024-04-16 18:00:00+00:00,0.14805485292215426 -2024-04-16 19:00:00+00:00,0.13701982184730552 -2024-04-16 20:00:00+00:00,0.13638176873112143 -2024-04-16 21:00:00+00:00,0.13437123556585587 -2024-04-16 22:00:00+00:00,0.12734961203058393 -2024-04-16 23:00:00+00:00,0.12116429689574182 -2024-04-17 00:00:00+00:00,0.1001715764924452 -2024-04-17 01:00:00+00:00,0.08269856487100567 -2024-04-17 02:00:00+00:00,0.08014610014572351 -2024-04-17 03:00:00+00:00,0.058825768611915734 -2024-04-17 04:00:00+00:00,0.05032745405573589 -2024-04-17 05:00:00+00:00,0.047115200364820975 -2024-04-17 06:00:00+00:00,0.0603625886242074 -2024-04-17 07:00:00+00:00,0.060554347057172345 -2024-04-17 08:00:00+00:00,0.0628417184607368 -2024-04-17 09:00:00+00:00,0.06167015400409072 -2024-04-17 10:00:00+00:00,0.06072567739341168 -2024-04-17 11:00:00+00:00,0.05883990321779102 -2024-04-17 12:00:00+00:00,0.057319878063424756 -2024-04-17 13:00:00+00:00,0.055798957735456636 -2024-04-17 14:00:00+00:00,0.05585156549796855 -2024-04-17 15:00:00+00:00,0.05611405209266091 -2024-04-17 16:00:00+00:00,0.09587442444836362 -2024-04-17 17:00:00+00:00,0.11658179870638927 -2024-04-17 18:00:00+00:00,0.12713424318260236 -2024-04-17 19:00:00+00:00,0.13560207846616779 -2024-04-17 20:00:00+00:00,0.13712033708474933 -2024-04-17 21:00:00+00:00,0.14157679708839527 -2024-04-17 22:00:00+00:00,0.14766693497302763 -2024-04-17 23:00:00+00:00,0.14878966963329968 -2024-04-18 00:00:00+00:00,0.15138722570075164 -2024-04-18 01:00:00+00:00,0.15785016212950775 -2024-04-18 02:00:00+00:00,0.17371648862773395 -2024-04-18 03:00:00+00:00,0.17463262943462193 -2024-04-18 04:00:00+00:00,0.1736615810619336 -2024-04-18 05:00:00+00:00,0.17001556430323575 -2024-04-18 06:00:00+00:00,0.1627033464543641 -2024-04-18 07:00:00+00:00,0.1528809650471899 -2024-04-18 08:00:00+00:00,0.13919633994004432 -2024-04-18 09:00:00+00:00,0.1204866884984931 -2024-04-18 10:00:00+00:00,0.09847703445908816 -2024-04-18 11:00:00+00:00,0.07195429836149038 -2024-04-18 12:00:00+00:00,0.0726600592525961 -2024-04-18 13:00:00+00:00,0.08646015206327587 -2024-04-18 14:00:00+00:00,0.11085850393546393 -2024-04-18 15:00:00+00:00,0.12671127561704293 -2024-04-18 16:00:00+00:00,0.13992911739454986 -2024-04-18 17:00:00+00:00,0.15233132172679495 -2024-04-18 18:00:00+00:00,0.15750592303009972 -2024-04-18 19:00:00+00:00,0.16440037776909575 -2024-04-18 20:00:00+00:00,0.17022573248513942 -2024-04-18 21:00:00+00:00,0.16715674963182908 -2024-04-18 22:00:00+00:00,0.1550985764640369 -2024-04-18 23:00:00+00:00,0.14756346538325504 -2024-04-19 00:00:00+00:00,0.14259559120713247 -2024-04-19 01:00:00+00:00,0.14700587170559237 -2024-04-19 02:00:00+00:00,0.194513231859797 -2024-04-19 03:00:00+00:00,0.1923347616174437 -2024-04-19 04:00:00+00:00,0.19373733574941096 -2024-04-19 05:00:00+00:00,0.19621681751013056 -2024-04-19 06:00:00+00:00,0.1965624247973764 -2024-04-19 07:00:00+00:00,0.19488308911030325 -2024-04-19 08:00:00+00:00,0.193822076576803 -2024-04-19 09:00:00+00:00,0.1936476656744784 -2024-04-19 10:00:00+00:00,0.19079926072932174 -2024-04-19 11:00:00+00:00,0.19037939959352781 -2024-04-19 12:00:00+00:00,0.1880639868715189 -2024-04-19 13:00:00+00:00,0.18591211138064553 -2024-04-19 14:00:00+00:00,0.18577827049897025 -2024-04-19 15:00:00+00:00,0.18354164879453982 -2024-04-19 16:00:00+00:00,0.1803267429158447 -2024-04-19 17:00:00+00:00,0.18122260228530826 -2024-04-19 18:00:00+00:00,0.17835207640508405 -2024-04-19 19:00:00+00:00,0.17797021483532238 -2024-04-19 20:00:00+00:00,0.17877256206554448 -2024-04-21 21:00:00+00:00,0.1704328853865046 -2024-04-21 22:00:00+00:00,0.10618335680931382 -2024-04-21 23:00:00+00:00,0.09771688428224155 -2024-04-22 00:00:00+00:00,0.08926617500573365 -2024-04-22 01:00:00+00:00,0.0748883203609084 -2024-04-22 02:00:00+00:00,0.06974409992144474 -2024-04-22 03:00:00+00:00,0.06978870365659903 -2024-04-22 04:00:00+00:00,0.06267619375281182 -2024-04-22 05:00:00+00:00,0.06210398749956644 -2024-04-22 06:00:00+00:00,0.0603378863278133 -2024-04-22 07:00:00+00:00,0.06073694358447176 -2024-04-22 08:00:00+00:00,0.06098358277947102 -2024-04-22 09:00:00+00:00,0.06684961520335587 -2024-04-22 10:00:00+00:00,0.0703169329026922 -2024-04-22 11:00:00+00:00,0.07033294878239545 -2024-04-22 12:00:00+00:00,0.07021725683987053 -2024-04-22 13:00:00+00:00,0.07106548129580412 -2024-04-22 14:00:00+00:00,0.0682996493804574 -2024-04-22 15:00:00+00:00,0.0686589588605485 -2024-04-22 16:00:00+00:00,0.07155069972976538 -2024-04-22 17:00:00+00:00,0.05664336724525923 -2024-04-22 18:00:00+00:00,0.05639137205601523 -2024-04-22 19:00:00+00:00,0.05790489026023736 -2024-04-22 20:00:00+00:00,0.060457118341515265 -2024-04-22 21:00:00+00:00,0.055614367703025046 -2024-04-22 22:00:00+00:00,0.052481851502368504 -2024-04-22 23:00:00+00:00,0.05098967904095071 -2024-04-23 00:00:00+00:00,0.049949448132098125 -2024-04-23 01:00:00+00:00,0.04981151315093099 -2024-04-23 02:00:00+00:00,0.04487690767408151 -2024-04-23 03:00:00+00:00,0.03607813159287836 -2024-04-23 04:00:00+00:00,0.03467973775582429 -2024-04-23 05:00:00+00:00,0.03466452001189214 -2024-04-23 06:00:00+00:00,0.03447542985148338 -2024-04-23 07:00:00+00:00,0.03546770213906457 -2024-04-23 08:00:00+00:00,0.03697424424019475 -2024-04-23 09:00:00+00:00,0.036751620090027845 -2024-04-23 10:00:00+00:00,0.03398184500244254 -2024-04-23 11:00:00+00:00,0.033652832840519425 -2024-04-23 12:00:00+00:00,0.03379267283213556 -2024-04-23 13:00:00+00:00,0.04821975463577451 -2024-04-23 14:00:00+00:00,0.04818110025045794 -2024-04-23 15:00:00+00:00,0.04742004351123298 -2024-04-23 16:00:00+00:00,0.046939238442418395 -2024-04-23 17:00:00+00:00,0.046935425968185916 -2024-04-23 18:00:00+00:00,0.04686876976446239 -2024-04-23 19:00:00+00:00,0.04735340259294343 -2024-04-23 20:00:00+00:00,0.0488579843205594 -2024-04-23 21:00:00+00:00,0.04695381269510454 -2024-04-23 22:00:00+00:00,0.04669483799124572 -2024-04-23 23:00:00+00:00,0.04688956791482463 -2024-04-24 00:00:00+00:00,0.04563943355291134 -2024-04-24 01:00:00+00:00,0.04539986088873048 -2024-04-24 02:00:00+00:00,0.04503028221193772 -2024-04-24 03:00:00+00:00,0.046282286031465766 -2024-04-24 04:00:00+00:00,0.04617503882862194 -2024-04-24 05:00:00+00:00,0.04871277256353275 -2024-04-24 06:00:00+00:00,0.05676229289803717 -2024-04-24 07:00:00+00:00,0.060985654053310454 -2024-04-24 08:00:00+00:00,0.06434927309365963 -2024-04-24 09:00:00+00:00,0.05610185755729317 -2024-04-24 10:00:00+00:00,0.0602348692537473 -2024-04-24 11:00:00+00:00,0.06342886608609419 -2024-04-24 12:00:00+00:00,0.0678147631832783 -2024-04-24 13:00:00+00:00,0.07059243660346397 -2024-04-24 14:00:00+00:00,0.07342235426369609 -2024-04-24 15:00:00+00:00,0.09087417559375788 -2024-04-24 16:00:00+00:00,0.10339514139233204 -2024-04-24 17:00:00+00:00,0.13159627254512085 -2024-04-24 18:00:00+00:00,0.14780663043456155 -2024-04-24 19:00:00+00:00,0.15957122646714436 -2024-04-24 20:00:00+00:00,0.1735779136460672 -2024-04-24 21:00:00+00:00,0.17389376672479342 -2024-04-24 22:00:00+00:00,0.17180371296907984 -2024-04-24 23:00:00+00:00,0.17207112207786224 -2024-04-25 00:00:00+00:00,0.17645378103805975 -2024-04-25 01:00:00+00:00,0.18064518872936075 -2024-04-25 02:00:00+00:00,0.18772906008542595 -2024-04-25 03:00:00+00:00,0.191316381670032 -2024-04-25 04:00:00+00:00,0.20137732977663944 -2024-04-25 05:00:00+00:00,0.21450714011081357 -2024-04-25 06:00:00+00:00,0.22109618650003976 -2024-04-25 07:00:00+00:00,0.21762649679194837 -2024-04-25 08:00:00+00:00,0.2136951283848896 -2024-04-25 09:00:00+00:00,0.2041629638063556 -2024-04-25 10:00:00+00:00,0.18611654526611385 -2024-04-25 11:00:00+00:00,0.1752213637560932 -2024-04-25 12:00:00+00:00,0.16640814599474058 -2024-04-25 13:00:00+00:00,0.16637379443431408 -2024-04-25 14:00:00+00:00,0.15963128568428642 -2024-04-25 15:00:00+00:00,0.15289569888537452 -2024-04-25 16:00:00+00:00,0.14816122086845807 -2024-04-25 17:00:00+00:00,0.1331766832001413 -2024-04-25 18:00:00+00:00,0.11309223064567736 -2024-04-25 19:00:00+00:00,0.09320406305129825 -2024-04-25 20:00:00+00:00,0.08279429169756235 -2024-04-25 21:00:00+00:00,0.07007785145125627 -2024-04-25 22:00:00+00:00,0.06004419425747341 -2024-04-25 23:00:00+00:00,0.050839686123020485 -2024-04-26 00:00:00+00:00,0.05108908628778113 -2024-04-26 01:00:00+00:00,0.04972810283333205 -2024-04-26 02:00:00+00:00,0.04827018258913855 -2024-04-26 03:00:00+00:00,0.09071730236427179 -2024-04-26 04:00:00+00:00,0.1589021132013228 -2024-04-26 05:00:00+00:00,0.18963368427428812 -2024-04-26 06:00:00+00:00,0.24532030083329961 -2024-04-26 07:00:00+00:00,0.328116410666008 -2024-04-26 08:00:00+00:00,0.3721399849815327 -2024-04-26 09:00:00+00:00,0.41855011647475815 -2024-04-26 10:00:00+00:00,0.46344448086386464 -2024-04-26 11:00:00+00:00,0.493845434482294 -2024-04-26 12:00:00+00:00,0.514938678005851 -2024-04-26 13:00:00+00:00,0.5369092837235687 -2024-04-26 14:00:00+00:00,0.5791333702417331 -2024-04-26 15:00:00+00:00,0.6427916172129073 -2024-04-26 16:00:00+00:00,0.6892619240907918 -2024-04-26 17:00:00+00:00,0.7196631229455294 -2024-04-26 18:00:00+00:00,0.7327684275557371 -2024-04-26 19:00:00+00:00,0.7457506356201321 -2024-04-26 20:00:00+00:00,0.7813190516862505 -2024-04-28 21:00:00+00:00,0.7553110112303802 -2024-04-28 22:00:00+00:00,0.7262698570537567 -2024-04-28 23:00:00+00:00,0.7095252972024388 -2024-04-29 00:00:00+00:00,0.6972033155111497 -2024-04-29 01:00:00+00:00,0.7490854687387969 -2024-04-29 02:00:00+00:00,0.8130861464697223 -2024-04-29 03:00:00+00:00,0.8722670930288914 -2024-04-29 04:00:00+00:00,0.8918894358560316 -2024-04-29 05:00:00+00:00,0.8852854594643252 -2024-04-29 06:00:00+00:00,0.8743335431853047 -2024-04-29 07:00:00+00:00,0.9844013128490513 -2024-04-29 08:00:00+00:00,1.0501190847267425 -2024-04-29 09:00:00+00:00,1.1251181212851122 -2024-04-29 10:00:00+00:00,1.1873241476450076 -2024-04-29 11:00:00+00:00,1.2220153543706993 -2024-04-29 12:00:00+00:00,1.24284510086284 -2024-04-29 13:00:00+00:00,1.249930704395794 -2024-04-29 14:00:00+00:00,1.2552933511216744 -2024-04-29 15:00:00+00:00,1.2536633257028598 -2024-04-29 16:00:00+00:00,1.2631998331312448 -2024-04-29 17:00:00+00:00,1.2671666228249925 -2024-04-29 18:00:00+00:00,1.2613021925986874 -2024-04-29 19:00:00+00:00,1.2363967596892136 -2024-04-29 20:00:00+00:00,1.1944259400721775 -2024-04-29 21:00:00+00:00,1.045330237420018 -2024-04-29 22:00:00+00:00,0.809865828719585 -2024-04-29 23:00:00+00:00,0.3988766990611131 -2024-04-30 00:00:00+00:00,0.41837546408535936 -2024-04-30 01:00:00+00:00,0.4223708616111133 -2024-04-30 02:00:00+00:00,0.3978684654389415 -2024-04-30 03:00:00+00:00,0.37514475802678804 -2024-04-30 04:00:00+00:00,0.37193905485661255 -2024-04-30 05:00:00+00:00,0.354187413222931 -2024-04-30 06:00:00+00:00,0.3418043299921235 -2024-04-30 07:00:00+00:00,0.3480755022470513 -2024-04-30 08:00:00+00:00,0.36087357095237244 -2024-04-30 09:00:00+00:00,0.3697256272901294 -2024-04-30 10:00:00+00:00,0.3785144230045329 -2024-04-30 11:00:00+00:00,0.38783380868524436 -2024-04-30 12:00:00+00:00,0.3968961782598007 -2024-04-30 13:00:00+00:00,0.4124834255061252 -2024-04-30 14:00:00+00:00,0.37829958540461356 -2024-04-30 15:00:00+00:00,0.37293282519350385 -2024-04-30 16:00:00+00:00,0.3768611743578954 -2024-04-30 17:00:00+00:00,0.37463836598079014 -2024-04-30 18:00:00+00:00,0.36833955659011064 -2024-04-30 19:00:00+00:00,0.35602002826804446 -2024-04-30 20:00:00+00:00,0.38046203213516944 -2024-04-30 21:00:00+00:00,0.3919694503423783 -2024-04-30 22:00:00+00:00,0.38872551200807676 -2024-04-30 23:00:00+00:00,0.3826768425071363 -2024-05-01 00:00:00+00:00,0.3712646204836074 -2024-05-01 01:00:00+00:00,0.36154441745280136 -2024-05-01 02:00:00+00:00,0.34916510949127205 -2024-05-01 03:00:00+00:00,0.3335506116441471 -2024-05-01 04:00:00+00:00,0.3128185744616343 -2024-05-01 05:00:00+00:00,0.28415675807520846 -2024-05-01 06:00:00+00:00,0.2446890346667653 -2024-05-01 07:00:00+00:00,0.18443240810621578 -2024-05-01 08:00:00+00:00,0.18208681417585146 -2024-05-01 09:00:00+00:00,0.17162317197826288 -2024-05-01 10:00:00+00:00,0.1432139639688909 -2024-05-01 11:00:00+00:00,0.1328553229799676 -2024-05-01 12:00:00+00:00,0.10688158721793208 -2024-05-01 13:00:00+00:00,0.10070833343407071 -2024-05-01 14:00:00+00:00,0.1032092789683781 -2024-05-01 15:00:00+00:00,0.10752942070802124 -2024-05-01 16:00:00+00:00,0.11655153593292529 -2024-05-01 17:00:00+00:00,0.12066748570874078 -2024-05-01 18:00:00+00:00,0.19454629404927207 -2024-05-01 19:00:00+00:00,0.2053488110813151 -2024-05-01 20:00:00+00:00,0.7697336432694433 -2024-05-01 21:00:00+00:00,1.065254270363716 -2024-05-01 22:00:00+00:00,1.1464799399175436 -2024-05-01 23:00:00+00:00,1.1879534580204516 -2024-05-02 00:00:00+00:00,1.204303925401925 -2024-05-02 01:00:00+00:00,1.2083128243880141 -2024-05-02 02:00:00+00:00,1.2130801162423628 -2024-05-02 03:00:00+00:00,1.2075742365766098 -2024-05-02 04:00:00+00:00,1.1940469211892046 -2024-05-02 05:00:00+00:00,1.177269779707221 -2024-05-02 06:00:00+00:00,1.1602771209369436 -2024-05-02 07:00:00+00:00,1.1286769898290914 -2024-05-02 08:00:00+00:00,1.105087274477312 -2024-05-02 09:00:00+00:00,1.0715325178655155 -2024-05-02 10:00:00+00:00,1.0259802232119748 -2024-05-02 11:00:00+00:00,0.9795046156635643 -2024-05-02 12:00:00+00:00,0.9232425965617812 -2024-05-02 13:00:00+00:00,0.8376243646865699 -2024-05-02 14:00:00+00:00,0.8045570520483393 -2024-05-02 15:00:00+00:00,0.7073624843113704 -2024-05-02 16:00:00+00:00,0.7577318717556322 -2024-05-02 17:00:00+00:00,0.833566661370257 -2024-05-02 18:00:00+00:00,0.9432352555799378 -2024-05-02 19:00:00+00:00,1.0037813978836778 -2024-05-02 20:00:00+00:00,0.9957344604812471 -2024-05-02 21:00:00+00:00,0.9646427467968203 -2024-05-02 22:00:00+00:00,0.9632045965095481 -2024-05-02 23:00:00+00:00,0.9422945678670704 -2024-05-03 00:00:00+00:00,0.9087939535451063 -2024-05-03 01:00:00+00:00,0.8850970969632097 -2024-05-03 02:00:00+00:00,0.850419623975194 -2024-05-03 03:00:00+00:00,0.790010624512123 -2024-05-03 04:00:00+00:00,0.748212133935481 -2024-05-03 05:00:00+00:00,0.6663624329935324 -2024-05-03 06:00:00+00:00,0.5666058943158173 -2024-05-03 07:00:00+00:00,0.4862768190409094 -2024-05-03 08:00:00+00:00,0.4143002312075333 -2024-05-03 09:00:00+00:00,0.33855256530310746 -2024-05-03 10:00:00+00:00,0.28709588990371127 -2024-05-03 11:00:00+00:00,0.25702930408317637 -2024-05-03 12:00:00+00:00,0.31207740267871964 -2024-05-03 13:00:00+00:00,0.3348040903974749 -2024-05-03 14:00:00+00:00,0.3377507801222542 -2024-05-03 15:00:00+00:00,0.3405439302359531 -2024-05-03 16:00:00+00:00,0.31175783449320554 -2024-05-03 17:00:00+00:00,0.264226796520422 -2024-05-03 18:00:00+00:00,0.2555370196673778 -2024-05-03 19:00:00+00:00,0.25302691764327523 -2024-05-03 20:00:00+00:00,0.24920465062706357 -2024-05-05 21:00:00+00:00,0.24960922616941256 -2024-05-05 22:00:00+00:00,0.2571440053221339 -2024-05-05 23:00:00+00:00,0.30114450107176466 -2024-05-06 00:00:00+00:00,0.31511611894746866 -2024-05-06 01:00:00+00:00,0.33818663486229245 -2024-05-06 02:00:00+00:00,0.3712782011256185 -2024-05-06 03:00:00+00:00,0.41504273400717046 -2024-05-06 04:00:00+00:00,0.45483684466267454 -2024-05-06 05:00:00+00:00,0.4871921133010336 -2024-05-06 06:00:00+00:00,0.49969637886642765 -2024-05-06 07:00:00+00:00,0.5169634492827765 -2024-05-06 08:00:00+00:00,0.4660823848563073 -2024-05-06 09:00:00+00:00,0.4373612742461576 -2024-05-06 10:00:00+00:00,0.4318102988700576 -2024-05-06 11:00:00+00:00,0.4157730751260191 -2024-05-06 12:00:00+00:00,0.3914793097978035 -2024-05-06 13:00:00+00:00,0.36958074041269984 -2024-05-06 14:00:00+00:00,0.34904686384167943 -2024-05-06 15:00:00+00:00,0.3107851009093136 -2024-05-06 16:00:00+00:00,0.27362721471273893 -2024-05-06 17:00:00+00:00,0.18731787646140471 -2024-05-06 18:00:00+00:00,0.14738117425994382 -2024-05-06 19:00:00+00:00,0.1486218798085477 -2024-05-06 20:00:00+00:00,0.12103478186454322 -2024-05-06 21:00:00+00:00,0.10703775772549176 -2024-05-06 22:00:00+00:00,0.1091326932536745 -2024-05-06 23:00:00+00:00,0.1407858676369265 -2024-05-07 00:00:00+00:00,0.14095780443645387 -2024-05-07 01:00:00+00:00,0.17964423174702604 -2024-05-07 02:00:00+00:00,0.2277421152370296 -2024-05-07 03:00:00+00:00,0.265278503106744 -2024-05-07 04:00:00+00:00,0.28324404114148233 -2024-05-07 05:00:00+00:00,0.30296125772825727 -2024-05-07 06:00:00+00:00,0.3057586939850789 -2024-05-07 07:00:00+00:00,0.2969805770719672 -2024-05-07 08:00:00+00:00,0.27384195883973855 -2024-05-07 09:00:00+00:00,0.2780714552245239 -2024-05-07 10:00:00+00:00,0.2803316597779496 -2024-05-07 11:00:00+00:00,0.2780394519529615 -2024-05-07 12:00:00+00:00,0.27026324399156715 -2024-05-07 13:00:00+00:00,0.259611754660922 -2024-05-07 14:00:00+00:00,0.24662276221457857 -2024-05-07 15:00:00+00:00,0.23906798746766914 -2024-05-07 16:00:00+00:00,0.2183944463827013 -2024-05-07 17:00:00+00:00,0.1980605635718739 -2024-05-07 18:00:00+00:00,0.18279165592009938 -2024-05-07 19:00:00+00:00,0.1817389394312715 -2024-05-07 20:00:00+00:00,0.14161590008985075 -2024-05-07 21:00:00+00:00,0.13990161956984928 -2024-05-07 22:00:00+00:00,0.14929716040716248 -2024-05-07 23:00:00+00:00,0.15983820767252419 -2024-05-08 00:00:00+00:00,0.17852296771116177 -2024-05-08 01:00:00+00:00,0.22122417185051602 -2024-05-08 02:00:00+00:00,0.24946411512938893 -2024-05-08 03:00:00+00:00,0.24738057193098992 -2024-05-08 04:00:00+00:00,0.2623964206681476 -2024-05-08 05:00:00+00:00,0.2787470981685223 -2024-05-08 06:00:00+00:00,0.2939336256986383 -2024-05-08 07:00:00+00:00,0.3109739327382477 -2024-05-08 08:00:00+00:00,0.32308976673526013 -2024-05-08 09:00:00+00:00,0.32281548828137935 -2024-05-08 10:00:00+00:00,0.3153458252052507 -2024-05-08 11:00:00+00:00,0.3220123403988612 -2024-05-08 12:00:00+00:00,0.3239622947532995 -2024-05-08 13:00:00+00:00,0.3313332556756074 -2024-05-08 14:00:00+00:00,0.3344704534205774 -2024-05-08 15:00:00+00:00,0.3149361004541885 -2024-05-08 16:00:00+00:00,0.29938913245553966 -2024-05-08 17:00:00+00:00,0.2662701240250304 -2024-05-08 18:00:00+00:00,0.24169992269868265 -2024-05-08 19:00:00+00:00,0.21109136834668402 -2024-05-08 20:00:00+00:00,0.17956523517996495 -2024-05-08 21:00:00+00:00,0.1691347251873447 -2024-05-08 22:00:00+00:00,0.1603566009702792 -2024-05-08 23:00:00+00:00,0.14669054431195885 -2024-05-09 00:00:00+00:00,0.1341539178902032 -2024-05-09 01:00:00+00:00,0.11328980072567678 -2024-05-09 02:00:00+00:00,0.0993336218113436 -2024-05-09 03:00:00+00:00,0.08801943565909226 -2024-05-09 04:00:00+00:00,0.08490328864166832 -2024-05-09 05:00:00+00:00,0.07918838299349969 -2024-05-09 06:00:00+00:00,0.08101910106869423 -2024-05-09 07:00:00+00:00,0.09789043284843527 -2024-05-09 08:00:00+00:00,0.11361072735256238 -2024-05-09 09:00:00+00:00,0.13300489702543178 -2024-05-09 10:00:00+00:00,0.14906123786134856 -2024-05-09 11:00:00+00:00,0.15074345582770132 -2024-05-09 12:00:00+00:00,0.14905226035518201 -2024-05-09 13:00:00+00:00,0.14665587181577563 -2024-05-09 14:00:00+00:00,0.14814569642626182 -2024-05-09 15:00:00+00:00,0.14804163710589077 -2024-05-09 16:00:00+00:00,0.14491652770200625 -2024-05-09 17:00:00+00:00,0.14388412736111666 -2024-05-09 18:00:00+00:00,0.15156443827154845 -2024-05-09 19:00:00+00:00,0.14618085410363024 -2024-05-09 20:00:00+00:00,0.15193325231526145 -2024-05-09 21:00:00+00:00,0.15653130677661367 -2024-05-09 22:00:00+00:00,0.16973709547453716 -2024-05-09 23:00:00+00:00,0.17761545541190688 -2024-05-10 00:00:00+00:00,0.17858180346130856 -2024-05-10 01:00:00+00:00,0.17894503713981438 -2024-05-10 02:00:00+00:00,0.1789805267300002 -2024-05-10 03:00:00+00:00,0.17418909114769435 -2024-05-10 04:00:00+00:00,0.1670558920056391 -2024-05-10 05:00:00+00:00,0.15270765844752074 -2024-05-10 06:00:00+00:00,0.1354169390053067 -2024-05-10 07:00:00+00:00,0.12040583785935005 -2024-05-10 08:00:00+00:00,0.12110517395649656 -2024-05-10 09:00:00+00:00,0.12368988173349696 -2024-05-10 10:00:00+00:00,0.1281752398336436 -2024-05-10 11:00:00+00:00,0.1307827749043327 -2024-05-10 12:00:00+00:00,0.1399530372401316 -2024-05-10 13:00:00+00:00,0.13936603641642856 -2024-05-10 14:00:00+00:00,0.14457017964741092 -2024-05-10 15:00:00+00:00,0.14375171395275366 -2024-05-10 16:00:00+00:00,0.14200652320506427 -2024-05-10 17:00:00+00:00,0.1381630996557704 -2024-05-10 18:00:00+00:00,0.11729602676981463 -2024-05-10 19:00:00+00:00,0.08945513430706878 -2024-05-10 20:00:00+00:00,0.07537303720904534 -2024-05-12 21:00:00+00:00,0.07466521772630763 -2024-05-12 22:00:00+00:00,0.07498833243429172 -2024-05-12 23:00:00+00:00,0.0768378162188403 -2024-05-13 00:00:00+00:00,0.08301608912688539 -2024-05-13 01:00:00+00:00,0.07680013364321828 -2024-05-13 02:00:00+00:00,0.07304466911085249 -2024-05-13 03:00:00+00:00,0.06979677266887459 -2024-05-13 04:00:00+00:00,0.0678035863144378 -2024-05-13 05:00:00+00:00,0.06591659403925669 -2024-05-13 06:00:00+00:00,0.06539877675705559 -2024-05-13 07:00:00+00:00,0.06584863025597354 -2024-05-13 08:00:00+00:00,0.06730799202769668 -2024-05-13 09:00:00+00:00,0.05533655402952917 -2024-05-13 10:00:00+00:00,0.055475551763294266 -2024-05-13 11:00:00+00:00,0.05630132747122103 -2024-05-13 12:00:00+00:00,0.058490012654145204 -2024-05-13 13:00:00+00:00,0.05846175088999714 -2024-05-13 14:00:00+00:00,0.0619321360443963 -2024-05-13 15:00:00+00:00,0.09831703552811631 -2024-05-13 16:00:00+00:00,0.12683369758654617 -2024-05-13 17:00:00+00:00,0.14372410522401724 -2024-05-13 18:00:00+00:00,0.1561409282510283 -2024-05-13 19:00:00+00:00,0.16838461612864777 -2024-05-13 20:00:00+00:00,0.1799783320331514 -2024-05-13 21:00:00+00:00,0.18662461619483817 -2024-05-13 22:00:00+00:00,0.18738743990205786 -2024-05-13 23:00:00+00:00,0.1861859851173507 -2024-05-14 00:00:00+00:00,0.18912604402308403 -2024-05-14 01:00:00+00:00,0.20128959891933773 -2024-05-14 02:00:00+00:00,0.21043970883410876 -2024-05-14 03:00:00+00:00,0.2149512245811626 -2024-05-14 04:00:00+00:00,0.2153118362833302 -2024-05-14 05:00:00+00:00,0.21389502467463314 -2024-05-14 06:00:00+00:00,0.20954292991012646 -2024-05-14 07:00:00+00:00,0.20151460049381806 -2024-05-14 08:00:00+00:00,0.17209436671289813 -2024-05-14 09:00:00+00:00,0.13907509331525678 -2024-05-14 10:00:00+00:00,0.10911745242063967 -2024-05-14 11:00:00+00:00,0.10675402125615245 -2024-05-14 12:00:00+00:00,0.11581923302535875 -2024-05-14 13:00:00+00:00,0.1118569928249912 -2024-05-14 14:00:00+00:00,0.10523287459956938 -2024-05-14 15:00:00+00:00,0.10260737637213639 -2024-05-14 16:00:00+00:00,0.09706828850532004 -2024-05-14 17:00:00+00:00,0.08847128586630656 -2024-05-14 18:00:00+00:00,0.07702774620877952 -2024-05-14 19:00:00+00:00,0.062031634558615316 -2024-05-14 20:00:00+00:00,0.05229599463094655 -2024-05-14 21:00:00+00:00,0.05229599463094655 -2024-05-14 22:00:00+00:00,0.05231169238041167 -2024-05-14 23:00:00+00:00,0.05460313757827012 -2024-05-15 00:00:00+00:00,0.055495163390213396 -2024-05-15 01:00:00+00:00,0.05673620863462366 -2024-05-15 02:00:00+00:00,0.05680481356290232 -2024-05-15 03:00:00+00:00,0.05775763792478227 -2024-05-15 04:00:00+00:00,0.06058823493328199 -2024-05-15 05:00:00+00:00,0.07333877772085784 -2024-05-15 06:00:00+00:00,0.08324236966266914 -2024-05-15 07:00:00+00:00,0.11029399707714468 -2024-05-15 08:00:00+00:00,0.19594184825218505 -2024-05-15 09:00:00+00:00,0.22904090074100972 -2024-05-15 10:00:00+00:00,0.26395422250960804 -2024-05-15 11:00:00+00:00,0.2935640296006315 -2024-05-15 12:00:00+00:00,0.383077822932468 -2024-05-15 13:00:00+00:00,0.38815087612058835 -2024-05-15 14:00:00+00:00,0.4242761606876805 -2024-05-15 15:00:00+00:00,0.47745624214100246 -2024-05-15 16:00:00+00:00,0.5206825757967188 -2024-05-15 17:00:00+00:00,0.5728337018728985 -2024-05-15 18:00:00+00:00,0.5945652015958625 -2024-05-15 19:00:00+00:00,0.5955454289103789 -2024-05-15 20:00:00+00:00,0.5993744019271057 -2024-05-15 21:00:00+00:00,0.59926720821627 -2024-05-15 22:00:00+00:00,0.6000759842247155 -2024-05-15 23:00:00+00:00,0.6122601334838967 -2024-05-16 00:00:00+00:00,0.6742105305278787 -2024-05-16 01:00:00+00:00,0.6753669489917378 -2024-05-16 02:00:00+00:00,0.6633730771402707 -2024-05-16 03:00:00+00:00,0.6496400521590611 -2024-05-16 04:00:00+00:00,0.6586554306437825 -2024-05-16 05:00:00+00:00,0.6276536318541092 -2024-05-16 06:00:00+00:00,0.5854772479741633 -2024-05-16 07:00:00+00:00,0.5366623068369647 -2024-05-16 08:00:00+00:00,0.523459534454324 -2024-05-16 09:00:00+00:00,0.4479249790340849 -2024-05-16 10:00:00+00:00,0.4099145578500509 -2024-05-16 11:00:00+00:00,0.4010926490955043 -2024-05-16 12:00:00+00:00,0.42830344322016567 -2024-05-16 13:00:00+00:00,0.4767661762779447 -2024-05-16 14:00:00+00:00,0.5002416153068522 -2024-05-16 15:00:00+00:00,0.5164375541815555 -2024-05-16 16:00:00+00:00,0.5345972291071448 -2024-05-16 17:00:00+00:00,0.5527595746516293 -2024-05-16 18:00:00+00:00,0.5750226059635164 -2024-05-16 19:00:00+00:00,0.593033989884713 -2024-05-16 20:00:00+00:00,0.5582674773946033 -2024-05-16 21:00:00+00:00,0.5467257948346936 -2024-05-16 22:00:00+00:00,0.5198368569999318 -2024-05-16 23:00:00+00:00,0.4782553381008181 -2024-05-17 00:00:00+00:00,0.41718283256912375 -2024-05-17 01:00:00+00:00,0.39253903594142175 -2024-05-17 02:00:00+00:00,0.37717563966794687 -2024-05-17 03:00:00+00:00,0.34442911959084843 -2024-05-17 04:00:00+00:00,0.332886909832681 -2024-05-17 05:00:00+00:00,0.3055606538136734 -2024-05-17 06:00:00+00:00,0.25502802219842174 -2024-05-17 07:00:00+00:00,0.22737425675036638 -2024-05-17 08:00:00+00:00,0.2358520053386674 -2024-05-17 09:00:00+00:00,0.24432493463713334 -2024-05-17 10:00:00+00:00,0.2446852758376987 -2024-05-17 11:00:00+00:00,0.2395463695386698 -2024-05-17 12:00:00+00:00,0.22820126735478524 -2024-05-17 13:00:00+00:00,0.21015034718587777 -2024-05-17 14:00:00+00:00,0.20446321893199235 -2024-05-17 15:00:00+00:00,0.1972925892951209 -2024-05-17 16:00:00+00:00,0.18674679593176427 -2024-05-17 17:00:00+00:00,0.1712920789677823 -2024-05-17 18:00:00+00:00,0.15444045011881885 -2024-05-17 19:00:00+00:00,0.13623759239020744 -2024-05-17 20:00:00+00:00,0.12147448292270781 -2024-05-19 21:00:00+00:00,0.12138129354388189 -2024-05-19 22:00:00+00:00,0.11646915110544095 -2024-05-19 23:00:00+00:00,0.1157744631476038 -2024-05-20 00:00:00+00:00,0.11925261776344277 -2024-05-20 01:00:00+00:00,0.1223495746718538 -2024-05-20 02:00:00+00:00,0.1224109880743416 -2024-05-20 03:00:00+00:00,0.12058125673178871 -2024-05-20 04:00:00+00:00,0.11662376530068425 -2024-05-20 05:00:00+00:00,0.11373074157972021 -2024-05-20 06:00:00+00:00,0.11024082490169776 -2024-05-20 07:00:00+00:00,0.10507264404988809 -2024-05-20 08:00:00+00:00,0.10328574315053214 -2024-05-20 09:00:00+00:00,0.10283451192775624 -2024-05-20 10:00:00+00:00,0.0754774277952425 -2024-05-20 11:00:00+00:00,0.06859681979172631 -2024-05-20 12:00:00+00:00,0.11495852799701241 -2024-05-20 13:00:00+00:00,0.1343133022423835 -2024-05-20 14:00:00+00:00,0.15872759684873572 -2024-05-20 17:00:00+00:00,0.17704486496906832 -2024-05-20 18:00:00+00:00,0.19800202019527044 -2024-05-20 19:00:00+00:00,0.21472771007746622 -2024-05-20 20:00:00+00:00,0.22700391835564096 -2024-05-20 21:00:00+00:00,0.2348751684156956 -2024-05-20 22:00:00+00:00,0.24560440485805796 -2024-05-20 23:00:00+00:00,0.2637752781628811 -2024-05-21 00:00:00+00:00,0.2784308427815189 -2024-05-21 01:00:00+00:00,0.28847878696333384 -2024-05-21 02:00:00+00:00,0.29265877382418476 -2024-05-21 03:00:00+00:00,0.29107461514275845 -2024-05-21 04:00:00+00:00,0.2855094984160542 -2024-05-21 05:00:00+00:00,0.27090920988699213 -2024-05-21 06:00:00+00:00,0.24328676495364626 -2024-05-21 07:00:00+00:00,0.2119347652898601 -2024-05-21 08:00:00+00:00,0.16965676651019476 -2024-05-21 09:00:00+00:00,0.12337230774141594 -2024-05-21 10:00:00+00:00,0.1203963957389021 -2024-05-21 11:00:00+00:00,0.11055852225751378 -2024-05-21 12:00:00+00:00,0.10690305495895333 -2024-05-21 13:00:00+00:00,0.11790009152076958 -2024-05-21 14:00:00+00:00,0.14131837889027535 -2024-05-21 15:00:00+00:00,0.14835054503495873 -2024-05-21 16:00:00+00:00,0.15228328864861757 -2024-05-21 17:00:00+00:00,0.15243272028066743 -2024-05-21 18:00:00+00:00,0.15286467183876462 -2024-05-21 19:00:00+00:00,0.15053444264580304 -2024-05-21 20:00:00+00:00,0.14503584856870347 -2024-05-21 21:00:00+00:00,0.13428613402390474 -2024-05-21 22:00:00+00:00,0.12472642695335948 -2024-05-21 23:00:00+00:00,0.10876167814619557 -2024-05-22 00:00:00+00:00,0.09348474404956661 -2024-05-22 01:00:00+00:00,0.08400720521421713 -2024-05-22 02:00:00+00:00,0.08682679371514568 -2024-05-22 03:00:00+00:00,0.090616180160361 -2024-05-22 04:00:00+00:00,0.09647605375927759 -2024-05-22 05:00:00+00:00,0.09715612775061884 -2024-05-22 06:00:00+00:00,0.10437143943639796 -2024-05-22 07:00:00+00:00,0.11257908332194644 -2024-05-22 08:00:00+00:00,0.12620679563626716 -2024-05-22 09:00:00+00:00,0.12665098126054466 -2024-05-22 10:00:00+00:00,0.11071788474153553 -2024-05-22 11:00:00+00:00,0.12071840875434378 -2024-05-22 12:00:00+00:00,0.12467485080287909 -2024-05-22 13:00:00+00:00,0.12471587710341607 -2024-05-22 14:00:00+00:00,0.12823763919749684 -2024-05-22 15:00:00+00:00,0.12529623845158014 -2024-05-22 16:00:00+00:00,0.12157298003827872 -2024-05-22 17:00:00+00:00,0.11185229923349906 -2024-05-22 18:00:00+00:00,0.1122607866187288 -2024-05-22 19:00:00+00:00,0.1237161437010975 -2024-05-22 20:00:00+00:00,0.14452896268359197 -2024-05-22 21:00:00+00:00,0.14435832611099406 -2024-05-22 22:00:00+00:00,0.14767118523653164 -2024-05-22 23:00:00+00:00,0.14759163969233338 -2024-05-23 00:00:00+00:00,0.15226116760263858 -2024-05-23 01:00:00+00:00,0.14475114762475133 -2024-05-23 02:00:00+00:00,0.14019512718373586 -2024-05-23 03:00:00+00:00,0.13649777326802626 -2024-05-23 04:00:00+00:00,0.13436106109553445 -2024-05-23 05:00:00+00:00,0.12822647522744718 -2024-05-23 06:00:00+00:00,0.11765823612569892 -2024-05-23 07:00:00+00:00,0.11870064071926864 -2024-05-23 08:00:00+00:00,0.11731917778263835 -2024-05-23 09:00:00+00:00,0.10342628955125595 -2024-05-23 10:00:00+00:00,0.0963696829474928 -2024-05-23 11:00:00+00:00,0.0889844900845873 -2024-05-23 12:00:00+00:00,0.07520797481401023 -2024-05-23 13:00:00+00:00,0.0994097845542553 -2024-05-23 14:00:00+00:00,0.1109565586016307 -2024-05-23 15:00:00+00:00,0.12857489114742893 -2024-05-23 16:00:00+00:00,0.14210532603042733 -2024-05-23 17:00:00+00:00,0.1447692901496535 -2024-05-23 18:00:00+00:00,0.14577180256508032 -2024-05-23 19:00:00+00:00,0.1456435717840864 -2024-05-23 20:00:00+00:00,0.14849592410472714 -2024-05-23 21:00:00+00:00,0.15080628913990315 -2024-05-23 22:00:00+00:00,0.1538774204630783 -2024-05-23 23:00:00+00:00,0.15567006270673497 -2024-05-24 00:00:00+00:00,0.15725155007846858 -2024-05-24 01:00:00+00:00,0.16075508505337988 -2024-05-24 02:00:00+00:00,0.15437421212928967 -2024-05-24 03:00:00+00:00,0.15300067940002307 -2024-05-24 04:00:00+00:00,0.15110591441293278 -2024-05-24 05:00:00+00:00,0.13891671113925122 -2024-05-24 06:00:00+00:00,0.12617609875455807 -2024-05-24 07:00:00+00:00,0.08703869376737385 -2024-05-24 08:00:00+00:00,0.0636205031673744 -2024-05-24 09:00:00+00:00,0.06127204223876069 -2024-05-24 10:00:00+00:00,0.06162695498854632 -2024-05-24 11:00:00+00:00,0.060936960542075556 -2024-05-24 12:00:00+00:00,0.06199499132656801 -2024-05-24 13:00:00+00:00,0.06115801365150803 -2024-05-24 14:00:00+00:00,0.054532076529732805 -2024-05-24 15:00:00+00:00,0.05070230454757924 -2024-05-24 16:00:00+00:00,0.05327377158663968 -2024-05-24 17:00:00+00:00,0.053955415338297334 -2024-05-24 18:00:00+00:00,0.054857326930964324 -2024-05-24 19:00:00+00:00,0.058145258231861646 -2024-05-24 20:00:00+00:00,0.05823373956108838 -2024-05-26 21:00:00+00:00,0.05867598362906731 -2024-05-26 22:00:00+00:00,0.06532902556401676 -2024-05-26 23:00:00+00:00,0.06988373805323096 -2024-05-27 00:00:00+00:00,0.07480916072575072 -2024-05-27 01:00:00+00:00,0.07960592084601274 -2024-05-27 02:00:00+00:00,0.09322145394613543 -2024-05-27 03:00:00+00:00,0.1043104677697322 -2024-05-27 04:00:00+00:00,0.10738385403486254 -2024-05-27 05:00:00+00:00,0.10971762801319711 -2024-05-27 06:00:00+00:00,0.10970461537089939 -2024-05-27 07:00:00+00:00,0.10517809458741721 -2024-05-27 08:00:00+00:00,0.09705559991969162 -2024-05-27 09:00:00+00:00,0.08625421424929489 -2024-05-27 10:00:00+00:00,0.08216445320510816 -2024-05-27 11:00:00+00:00,0.08171212305835493 -2024-05-27 12:00:00+00:00,0.08142248494549575 -2024-05-27 13:00:00+00:00,0.07894733422357954 -2024-05-27 14:00:00+00:00,0.07857413530477729 -2024-05-27 15:00:00+00:00,0.07606479233934474 -2024-05-27 16:00:00+00:00,0.06852081897951677 -2024-05-27 17:00:00+00:00,0.0661515604457762 -2024-05-27 18:00:00+00:00,0.06643023647280386 -2024-05-27 19:00:00+00:00,0.06693901389317795 -2024-05-27 20:00:00+00:00,0.06844581031308639 -2024-05-27 21:00:00+00:00,0.0691432342616075 -2024-05-27 22:00:00+00:00,0.06580841413132357 -2024-05-27 23:00:00+00:00,0.05613236238862439 -2024-05-28 00:00:00+00:00,0.05301102171362579 -2024-05-28 01:00:00+00:00,0.051621573437620895 -2024-05-28 02:00:00+00:00,0.05673528097516357 -2024-05-28 03:00:00+00:00,0.07173010453634047 -2024-05-28 04:00:00+00:00,0.0761501287412567 -2024-05-28 05:00:00+00:00,0.07492190672498657 -2024-05-28 06:00:00+00:00,0.07556412405467734 -2024-05-28 07:00:00+00:00,0.0760622321519742 -2024-05-28 08:00:00+00:00,0.07636165682871915 -2024-05-28 09:00:00+00:00,0.07959727581923201 -2024-05-28 10:00:00+00:00,0.07470677769545657 -2024-05-28 11:00:00+00:00,0.07539640855577544 -2024-05-28 12:00:00+00:00,0.08310353404319688 -2024-05-28 13:00:00+00:00,0.0826730402307378 -2024-05-28 14:00:00+00:00,0.08255605752229556 -2024-05-28 15:00:00+00:00,0.0834497012195099 -2024-05-28 16:00:00+00:00,0.08752676283615014 -2024-05-28 17:00:00+00:00,0.10423671189806784 -2024-05-28 18:00:00+00:00,0.12379095282801039 -2024-05-28 19:00:00+00:00,0.13822075212452187 -2024-05-28 20:00:00+00:00,0.1550773915518048 -2024-05-28 21:00:00+00:00,0.1635843899450207 -2024-05-28 22:00:00+00:00,0.17287114155078456 -2024-05-28 23:00:00+00:00,0.17617708645456906 -2024-05-29 00:00:00+00:00,0.18647135380976448 -2024-05-29 01:00:00+00:00,0.19034550304250553 -2024-05-29 02:00:00+00:00,0.19701990282067314 -2024-05-29 03:00:00+00:00,0.20328406363641902 -2024-05-29 04:00:00+00:00,0.20270860600774307 -2024-05-29 05:00:00+00:00,0.20252914020906596 -2024-05-29 06:00:00+00:00,0.1953888430854077 -2024-05-29 07:00:00+00:00,0.1821211569031496 -2024-05-29 08:00:00+00:00,0.14986769604579592 -2024-05-29 09:00:00+00:00,0.13014853863014358 -2024-05-29 10:00:00+00:00,0.11156280979174228 -2024-05-29 11:00:00+00:00,0.09350422170153583 -2024-05-29 12:00:00+00:00,0.07664262591794133 -2024-05-29 13:00:00+00:00,0.07758287590649425 -2024-05-29 14:00:00+00:00,0.09778702692041767 -2024-05-29 15:00:00+00:00,0.12835061971537373 -2024-05-29 16:00:00+00:00,0.15828670690029364 -2024-05-29 17:00:00+00:00,0.17321586016567941 -2024-05-29 18:00:00+00:00,0.18924834005336197 -2024-05-29 19:00:00+00:00,0.20457593494919601 -2024-05-29 20:00:00+00:00,0.2163469131847295 -2024-05-29 21:00:00+00:00,0.22048913925358518 -2024-05-29 22:00:00+00:00,0.2264245837089021 -2024-05-29 23:00:00+00:00,0.23076697634393234 -2024-05-30 00:00:00+00:00,0.22793592705979945 -2024-05-30 01:00:00+00:00,0.22300490318515492 -2024-05-30 02:00:00+00:00,0.2099527515829757 -2024-05-30 03:00:00+00:00,0.19890539936681606 -2024-05-30 04:00:00+00:00,0.1915074823394972 -2024-05-30 05:00:00+00:00,0.21151346231238355 -2024-05-30 06:00:00+00:00,0.2609955585473733 -2024-05-30 07:00:00+00:00,0.2787529513695441 -2024-05-30 08:00:00+00:00,0.2943353395495469 -2024-05-30 09:00:00+00:00,0.3135531978743039 -2024-05-30 10:00:00+00:00,0.32835896195654274 -2024-05-30 11:00:00+00:00,0.34923095585689623 -2024-05-30 12:00:00+00:00,0.3668076220327368 -2024-05-30 13:00:00+00:00,0.37317687002025995 -2024-05-30 14:00:00+00:00,0.3809046675898864 -2024-05-30 15:00:00+00:00,0.3757241254209013 -2024-05-30 16:00:00+00:00,0.3614578486047871 -2024-05-30 17:00:00+00:00,0.34313684166443614 -2024-05-30 18:00:00+00:00,0.31146781113073685 -2024-05-30 19:00:00+00:00,0.27139811503440237 -2024-05-30 20:00:00+00:00,0.2522112940456964 -2024-05-30 21:00:00+00:00,0.21785726858601043 -2024-05-30 22:00:00+00:00,0.1878127496987897 -2024-05-30 23:00:00+00:00,0.1447958272222771 -2024-05-31 00:00:00+00:00,0.11823144119153912 -2024-05-31 01:00:00+00:00,0.11482548544321083 -2024-05-31 02:00:00+00:00,0.11442739597394118 -2024-05-31 03:00:00+00:00,0.10660674167435517 -2024-05-31 04:00:00+00:00,0.10076521696180422 -2024-05-31 05:00:00+00:00,0.09516323926416713 -2024-05-31 06:00:00+00:00,0.09622779991078874 -2024-05-31 07:00:00+00:00,0.1275408190671585 -2024-05-31 08:00:00+00:00,0.16678874126440046 -2024-05-31 09:00:00+00:00,0.20084093601906294 -2024-05-31 10:00:00+00:00,0.20939559011591344 -2024-05-31 11:00:00+00:00,0.21066186426298233 -2024-05-31 12:00:00+00:00,0.20513579584990627 -2024-05-31 13:00:00+00:00,0.20772184716972703 -2024-05-31 14:00:00+00:00,0.21357184789356456 -2024-05-31 15:00:00+00:00,0.22020418754576024 -2024-05-31 16:00:00+00:00,0.22365713892396336 -2024-05-31 17:00:00+00:00,0.2262010284356767 -2024-05-31 18:00:00+00:00,0.22979991297261598 -2024-05-31 19:00:00+00:00,0.2366723473543854 -2024-05-31 20:00:00+00:00,0.23445773943550832 -2024-06-02 21:00:00+00:00,0.2199699201976537 -2024-06-02 22:00:00+00:00,0.2152378366321841 -2024-06-02 23:00:00+00:00,0.2035477701650756 -2024-06-03 00:00:00+00:00,0.17859554424286064 -2024-06-03 01:00:00+00:00,0.16137379785436837 -2024-06-03 02:00:00+00:00,0.15340571423605037 -2024-06-03 03:00:00+00:00,0.16316710034185944 -2024-06-03 04:00:00+00:00,0.16918954646778775 -2024-06-03 05:00:00+00:00,0.17356812708340977 -2024-06-03 06:00:00+00:00,0.17379573613048774 -2024-06-03 07:00:00+00:00,0.17414304465697197 -2024-06-03 08:00:00+00:00,0.15934467772159297 -2024-06-03 09:00:00+00:00,0.11176813406289149 -2024-06-03 10:00:00+00:00,0.15519057894047394 -2024-06-03 11:00:00+00:00,0.1732086967619339 -2024-06-03 12:00:00+00:00,0.19505462123601852 -2024-06-03 13:00:00+00:00,0.22425434338861108 -2024-06-03 14:00:00+00:00,0.30410591991706554 -2024-06-03 15:00:00+00:00,0.37964968270917326 -2024-06-03 16:00:00+00:00,0.4291698811010282 -2024-06-03 17:00:00+00:00,0.4573661754252972 -2024-06-03 18:00:00+00:00,0.47247011601621125 -2024-06-03 19:00:00+00:00,0.4851416396562182 -2024-06-03 20:00:00+00:00,0.5061247479903276 -2024-06-03 21:00:00+00:00,0.520364639360368 -2024-06-03 22:00:00+00:00,0.5188523367686391 -2024-06-03 23:00:00+00:00,0.5002484514315709 -2024-06-04 00:00:00+00:00,0.4626185509531027 -2024-06-04 01:00:00+00:00,0.41437061976931205 -2024-06-04 02:00:00+00:00,0.37360189901686963 -2024-06-04 03:00:00+00:00,0.33616758039238376 -2024-06-04 04:00:00+00:00,0.3000155434595999 -2024-06-04 05:00:00+00:00,0.25286580589514185 -2024-06-04 06:00:00+00:00,0.2466385806705235 -2024-06-04 07:00:00+00:00,0.28394614018811726 -2024-06-04 08:00:00+00:00,0.31869031329931263 -2024-06-04 09:00:00+00:00,0.3642729745688915 -2024-06-04 10:00:00+00:00,0.44148259785832294 -2024-06-04 11:00:00+00:00,0.5085353038524519 -2024-06-04 12:00:00+00:00,0.539402944785442 -2024-06-04 13:00:00+00:00,0.5797241721633762 -2024-06-04 14:00:00+00:00,0.6087870252446543 -2024-06-04 15:00:00+00:00,0.6291411940941137 -2024-06-04 16:00:00+00:00,0.6535969524994937 -2024-06-04 17:00:00+00:00,0.681627572336373 -2024-06-04 18:00:00+00:00,0.6912570909510845 -2024-06-04 19:00:00+00:00,0.6929585295562967 -2024-06-04 20:00:00+00:00,0.6625146572364801 -2024-06-04 21:00:00+00:00,0.6158687039676306 -2024-06-04 22:00:00+00:00,0.5625500118121461 -2024-06-04 23:00:00+00:00,0.485968972369193 -2024-06-05 00:00:00+00:00,0.40094072274856574 -2024-06-05 01:00:00+00:00,0.31049664800324867 -2024-06-05 02:00:00+00:00,0.24839465626968096 -2024-06-05 03:00:00+00:00,0.2574222621546418 -2024-06-05 04:00:00+00:00,0.2810839170448045 -2024-06-05 05:00:00+00:00,0.3129350865934933 -2024-06-05 06:00:00+00:00,0.3645214743515625 -2024-06-05 07:00:00+00:00,0.4287103395808303 -2024-06-05 08:00:00+00:00,0.49271614546350806 -2024-06-05 09:00:00+00:00,0.5189568965981646 -2024-06-05 10:00:00+00:00,0.53946853720317 -2024-06-05 11:00:00+00:00,0.5572264280396987 -2024-06-05 12:00:00+00:00,0.558696911996457 -2024-06-05 13:00:00+00:00,0.5236676803798785 -2024-06-05 14:00:00+00:00,0.516009167096053 -2024-06-05 15:00:00+00:00,0.4947129178155314 -2024-06-05 16:00:00+00:00,0.4689794603301056 -2024-06-05 17:00:00+00:00,0.42528693410078783 -2024-06-05 18:00:00+00:00,0.36802182429717545 -2024-06-05 19:00:00+00:00,0.327116826871121 -2024-06-05 20:00:00+00:00,0.28791692881100744 -2024-06-05 21:00:00+00:00,0.253274783171828 -2024-06-05 22:00:00+00:00,0.22562229733320924 -2024-06-05 23:00:00+00:00,0.192058954767978 -2024-06-06 00:00:00+00:00,0.18472280798748758 -2024-06-06 01:00:00+00:00,0.18461352947296686 -2024-06-06 02:00:00+00:00,0.20130763967313764 -2024-06-06 03:00:00+00:00,0.22208177725950548 -2024-06-06 04:00:00+00:00,0.22026541406407926 -2024-06-06 05:00:00+00:00,0.2197917914303944 -2024-06-06 06:00:00+00:00,0.21965894018053164 -2024-06-06 07:00:00+00:00,0.22764336720585582 -2024-06-06 08:00:00+00:00,0.23013530917171388 -2024-06-06 09:00:00+00:00,0.2242134497613552 -2024-06-06 10:00:00+00:00,0.2103969368928009 -2024-06-06 11:00:00+00:00,0.20931529353227843 -2024-06-06 12:00:00+00:00,0.21856900632881293 -2024-06-06 13:00:00+00:00,0.2197480554999008 -2024-06-06 14:00:00+00:00,0.2182256859337294 -2024-06-06 15:00:00+00:00,0.21637567233907767 -2024-06-06 16:00:00+00:00,0.21641487326347147 -2024-06-06 17:00:00+00:00,0.21852989678915874 -2024-06-06 18:00:00+00:00,0.22573992954430705 -2024-06-06 19:00:00+00:00,0.23623716896622884 -2024-06-06 20:00:00+00:00,0.2381769355600078 -2024-06-06 21:00:00+00:00,0.24017447057704577 -2024-06-06 22:00:00+00:00,0.24192340567150225 -2024-06-06 23:00:00+00:00,0.2352811084664005 -2024-06-07 00:00:00+00:00,0.23388467693810952 -2024-06-07 01:00:00+00:00,0.23931399215940793 -2024-06-07 02:00:00+00:00,0.2367373850384384 -2024-06-07 03:00:00+00:00,0.2193858413151229 -2024-06-07 04:00:00+00:00,0.21578455995941723 -2024-06-07 05:00:00+00:00,0.22407270319441688 -2024-06-07 06:00:00+00:00,0.23842180666994556 -2024-06-07 07:00:00+00:00,0.2294997936036928 -2024-06-07 08:00:00+00:00,0.2053923331754211 -2024-06-07 09:00:00+00:00,0.18089842308481976 -2024-06-07 10:00:00+00:00,0.15878203365428564 -2024-06-07 11:00:00+00:00,0.1361943174515914 -2024-06-07 12:00:00+00:00,0.2926250115238251 -2024-06-07 13:00:00+00:00,0.41170702409016025 -2024-06-07 14:00:00+00:00,0.4844687024826713 -2024-06-07 15:00:00+00:00,0.5153214096699723 -2024-06-07 16:00:00+00:00,0.5448065108014747 -2024-06-07 17:00:00+00:00,0.5636797779825631 -2024-06-07 18:00:00+00:00,0.5795963999572216 -2024-06-07 19:00:00+00:00,0.5985591889135977 -2024-06-07 20:00:00+00:00,0.6166697892298171 -2024-06-09 21:00:00+00:00,0.6261803569860047 -2024-06-09 22:00:00+00:00,0.6433252819705939 -2024-06-09 23:00:00+00:00,0.6490636879799837 -2024-06-10 00:00:00+00:00,0.6417511076828276 -2024-06-10 01:00:00+00:00,0.6258566676346375 -2024-06-10 02:00:00+00:00,0.5903696790118054 -2024-06-10 03:00:00+00:00,0.5551069953780496 -2024-06-10 04:00:00+00:00,0.492494645978758 -2024-06-10 05:00:00+00:00,0.4191703710927567 -2024-06-10 06:00:00+00:00,0.3299621349919426 -2024-06-10 07:00:00+00:00,0.17280834379861343 -2024-06-10 08:00:00+00:00,0.1727975009020934 -2024-06-10 09:00:00+00:00,0.17179114462229209 -2024-06-10 10:00:00+00:00,0.17205754851855184 -2024-06-10 11:00:00+00:00,0.1598250606201377 -2024-06-10 12:00:00+00:00,0.1525980185500663 -2024-06-10 13:00:00+00:00,0.13622515225731308 -2024-06-10 14:00:00+00:00,0.11996204444549682 -2024-06-10 15:00:00+00:00,0.11201544772310316 -2024-06-10 16:00:00+00:00,0.10572775367442877 -2024-06-10 17:00:00+00:00,0.09621335940831237 -2024-06-10 18:00:00+00:00,0.09891318629676862 -2024-06-10 19:00:00+00:00,0.09342403332299842 -2024-06-10 20:00:00+00:00,0.08821103584275929 -2024-06-10 21:00:00+00:00,0.08621239074601147 -2024-06-10 22:00:00+00:00,0.08666078760096547 -2024-06-10 23:00:00+00:00,0.07951515911237812 -2024-06-11 00:00:00+00:00,0.0894875910376635 -2024-06-11 01:00:00+00:00,0.10176105915456204 -2024-06-11 02:00:00+00:00,0.11849933378562112 -2024-06-11 03:00:00+00:00,0.1273029023618579 -2024-06-11 04:00:00+00:00,0.13724794122616576 -2024-06-11 05:00:00+00:00,0.14331246686982593 -2024-06-11 06:00:00+00:00,0.14081738828905063 -2024-06-11 07:00:00+00:00,0.1443458110246465 -2024-06-11 08:00:00+00:00,0.14352050101991407 -2024-06-11 09:00:00+00:00,0.13676048984061778 -2024-06-11 10:00:00+00:00,0.12614632273415705 -2024-06-11 11:00:00+00:00,0.11735389573687449 -2024-06-11 12:00:00+00:00,0.12623890259672976 -2024-06-11 13:00:00+00:00,0.12179762119529755 -2024-06-11 14:00:00+00:00,0.12607812950456962 -2024-06-11 15:00:00+00:00,0.12574337903430616 -2024-06-11 16:00:00+00:00,0.12833512872833916 -2024-06-11 17:00:00+00:00,0.12286161450329423 -2024-06-11 18:00:00+00:00,0.12443772487066379 -2024-06-11 19:00:00+00:00,0.12187288460756313 -2024-06-11 20:00:00+00:00,0.1226450162157642 -2024-06-11 21:00:00+00:00,0.12364205553652753 -2024-06-11 22:00:00+00:00,0.12201262877875398 -2024-06-11 23:00:00+00:00,0.12278748222853862 -2024-06-12 00:00:00+00:00,0.12120387349385724 -2024-06-12 01:00:00+00:00,0.11900415739050763 -2024-06-12 02:00:00+00:00,0.11631150326605844 -2024-06-12 03:00:00+00:00,0.10888935718330275 -2024-06-12 04:00:00+00:00,0.10959229468882382 -2024-06-12 05:00:00+00:00,0.10946828429133258 -2024-06-12 06:00:00+00:00,0.1120727677256882 -2024-06-12 07:00:00+00:00,0.11287556027682846 -2024-06-12 08:00:00+00:00,0.09449894180657153 -2024-06-12 09:00:00+00:00,0.0970188668707534 -2024-06-12 10:00:00+00:00,0.09752725666214261 -2024-06-12 11:00:00+00:00,0.09812054885615702 -2024-06-12 12:00:00+00:00,0.24824263916025857 -2024-06-12 13:00:00+00:00,0.39383079455432707 -2024-06-12 14:00:00+00:00,0.48933590604998395 -2024-06-12 15:00:00+00:00,0.5503534175535396 -2024-06-12 16:00:00+00:00,0.605733170369991 -2024-06-12 17:00:00+00:00,0.6411011497515323 -2024-06-12 18:00:00+00:00,0.6384802267902934 -2024-06-12 19:00:00+00:00,0.6343439109588681 -2024-06-12 20:00:00+00:00,0.6275713085941487 -2024-06-12 21:00:00+00:00,0.6222939967757833 -2024-06-12 22:00:00+00:00,0.613634032887598 -2024-06-12 23:00:00+00:00,0.6043089136856948 -2024-06-13 00:00:00+00:00,0.5913852693838204 -2024-06-13 01:00:00+00:00,0.5777061354611162 -2024-06-13 02:00:00+00:00,0.5645894526131657 -2024-06-13 03:00:00+00:00,0.5525009073599806 -2024-06-13 04:00:00+00:00,0.538800031260411 -2024-06-13 05:00:00+00:00,0.5252146528619931 -2024-06-13 06:00:00+00:00,0.5138373181033763 -2024-06-13 07:00:00+00:00,0.5096081466773054 -2024-06-13 08:00:00+00:00,0.5194736607495721 -2024-06-13 09:00:00+00:00,0.4898219225306006 -2024-06-13 10:00:00+00:00,0.44666189968895365 -2024-06-13 11:00:00+00:00,0.40154311232401907 -2024-06-13 12:00:00+00:00,0.31647473916349933 -2024-06-13 13:00:00+00:00,0.21432258029289966 -2024-06-13 14:00:00+00:00,0.19562743188937826 -2024-06-13 15:00:00+00:00,0.19889867825828592 -2024-06-13 16:00:00+00:00,0.19234437318806483 -2024-06-13 17:00:00+00:00,0.16842317474701643 -2024-06-13 18:00:00+00:00,0.1635693961926147 -2024-06-13 19:00:00+00:00,0.15529580433647633 -2024-06-13 20:00:00+00:00,0.14504317869733843 -2024-06-13 21:00:00+00:00,0.1366624250607266 -2024-06-13 22:00:00+00:00,0.13617461701146785 -2024-06-13 23:00:00+00:00,0.1364275014809388 -2024-06-14 00:00:00+00:00,0.13983791369906917 -2024-06-14 01:00:00+00:00,0.14576043793022922 -2024-06-14 02:00:00+00:00,0.15527483275365175 -2024-06-14 03:00:00+00:00,0.22230985962549066 -2024-06-14 04:00:00+00:00,0.28863035913267787 -2024-06-14 05:00:00+00:00,0.3648156708350052 -2024-06-14 06:00:00+00:00,0.40234799025940843 -2024-06-14 07:00:00+00:00,0.4138853483533822 -2024-06-14 08:00:00+00:00,0.41305162160187986 -2024-06-14 09:00:00+00:00,0.41460531644411747 -2024-06-14 10:00:00+00:00,0.4139359345326414 -2024-06-14 11:00:00+00:00,0.4001308042740611 -2024-06-14 12:00:00+00:00,0.38640092010157817 -2024-06-14 13:00:00+00:00,0.3762842710429361 -2024-06-14 14:00:00+00:00,0.36204890626692837 -2024-06-14 15:00:00+00:00,0.3558743716872983 -2024-06-14 16:00:00+00:00,0.34588133042943775 -2024-06-14 17:00:00+00:00,0.33495612831765287 -2024-06-14 18:00:00+00:00,0.3280399967633699 -2024-06-14 19:00:00+00:00,0.32228138653683025 -2024-06-14 20:00:00+00:00,0.31834793941404366 -2024-06-16 21:00:00+00:00,0.3163985619481506 -2024-06-16 22:00:00+00:00,0.315959103787227 -2024-06-16 23:00:00+00:00,0.30487415868589485 -2024-06-17 00:00:00+00:00,0.2798533262502881 -2024-06-17 01:00:00+00:00,0.2202229193642473 -2024-06-17 02:00:00+00:00,0.17295283811860643 -2024-06-17 03:00:00+00:00,0.15496233838751022 -2024-06-17 04:00:00+00:00,0.15083412814497762 -2024-06-17 05:00:00+00:00,0.14332315346286545 -2024-06-17 06:00:00+00:00,0.11136212860297122 -2024-06-17 07:00:00+00:00,0.0946803486677998 -2024-06-17 08:00:00+00:00,0.10598782205461622 -2024-06-17 09:00:00+00:00,0.11500813473612811 -2024-06-17 10:00:00+00:00,0.12320197368003764 -2024-06-17 11:00:00+00:00,0.14813737402103877 -2024-06-17 12:00:00+00:00,0.1715420694228802 -2024-06-17 13:00:00+00:00,0.18709808855200216 -2024-06-17 14:00:00+00:00,0.19172362236152984 -2024-06-17 15:00:00+00:00,0.19066362637925946 -2024-06-17 16:00:00+00:00,0.19152861543219976 -2024-06-17 17:00:00+00:00,0.18479589737679417 -2024-06-17 18:00:00+00:00,0.18426321991548344 -2024-06-17 19:00:00+00:00,0.18503015402318426 -2024-06-17 20:00:00+00:00,0.18111969727217728 -2024-06-17 21:00:00+00:00,0.17797587063827955 -2024-06-17 22:00:00+00:00,0.17085403897693452 -2024-06-17 23:00:00+00:00,0.1549997962749526 -2024-06-18 00:00:00+00:00,0.1372346818334375 -2024-06-18 01:00:00+00:00,0.12678264659203206 -2024-06-18 02:00:00+00:00,0.09553972721803826 -2024-06-18 03:00:00+00:00,0.08889994377511184 -2024-06-18 04:00:00+00:00,0.08691125239401143 -2024-06-18 05:00:00+00:00,0.08764658400327074 -2024-06-18 06:00:00+00:00,0.09617334953689237 -2024-06-18 07:00:00+00:00,0.12538046310961498 -2024-06-18 08:00:00+00:00,0.14909661298393365 -2024-06-18 09:00:00+00:00,0.16325210566266166 -2024-06-18 10:00:00+00:00,0.17686952521753427 -2024-06-18 11:00:00+00:00,0.18723472463351395 -2024-06-18 12:00:00+00:00,0.18699211917860753 -2024-06-18 13:00:00+00:00,0.18616401230370744 -2024-06-18 14:00:00+00:00,0.1861715324023274 -2024-06-18 15:00:00+00:00,0.18450177578145371 -2024-06-18 16:00:00+00:00,0.18511603047870612 -2024-06-18 17:00:00+00:00,0.18320057315237506 -2024-06-18 18:00:00+00:00,0.18056883074036612 -2024-06-18 19:00:00+00:00,0.17662105585630328 -2024-06-18 20:00:00+00:00,0.17140050820785457 -2024-06-18 21:00:00+00:00,0.1586799078689338 -2024-06-18 22:00:00+00:00,0.14909392131080298 -2024-06-18 23:00:00+00:00,0.13662245328007433 -2024-06-19 00:00:00+00:00,0.12932639248392952 -2024-06-19 01:00:00+00:00,0.13264605655359288 -2024-06-19 02:00:00+00:00,0.1332496173718237 -2024-06-19 03:00:00+00:00,0.12287429392948272 -2024-06-19 04:00:00+00:00,0.10693377194476503 -2024-06-19 05:00:00+00:00,0.09504086380521845 -2024-06-19 06:00:00+00:00,0.0859733588060468 -2024-06-19 07:00:00+00:00,0.06620659454475566 -2024-06-19 08:00:00+00:00,0.0663754076458956 -2024-06-19 09:00:00+00:00,0.06655292712257621 -2024-06-19 10:00:00+00:00,0.05713520440375314 -2024-06-19 11:00:00+00:00,0.060485122165012686 -2024-06-19 12:00:00+00:00,0.05614630796466719 -2024-06-19 13:00:00+00:00,0.05742021928097775 -2024-06-19 14:00:00+00:00,0.058478313597682074 -2024-06-19 15:00:00+00:00,0.06207997815357698 -2024-06-19 16:00:00+00:00,0.06548481144248976 -2024-06-19 17:00:00+00:00,0.06894732927297008 -2024-06-19 18:00:00+00:00,0.07901791937469319 -2024-06-19 19:00:00+00:00,0.08589177709063674 -2024-06-19 20:00:00+00:00,0.09892680709126922 -2024-06-19 21:00:00+00:00,0.09934378111133894 -2024-06-19 22:00:00+00:00,0.10177884954119253 -2024-06-19 23:00:00+00:00,0.10230752147704796 -2024-06-20 00:00:00+00:00,0.10581791711409637 -2024-06-20 01:00:00+00:00,0.10662793157942896 -2024-06-20 02:00:00+00:00,0.09388884807542713 -2024-06-20 03:00:00+00:00,0.08651741536459753 -2024-06-20 04:00:00+00:00,0.08732111038737778 -2024-06-20 05:00:00+00:00,0.0861180951908408 -2024-06-20 06:00:00+00:00,0.08276719095307426 -2024-06-20 07:00:00+00:00,0.09907428102914775 -2024-06-20 08:00:00+00:00,0.13067528056579097 -2024-06-20 09:00:00+00:00,0.15342863077162164 -2024-06-20 10:00:00+00:00,0.16510936567990978 -2024-06-20 11:00:00+00:00,0.17530481724995606 -2024-06-20 12:00:00+00:00,0.19214643539573378 -2024-06-20 13:00:00+00:00,0.22064820178538083 -2024-06-20 14:00:00+00:00,0.24588056044306864 -2024-06-20 15:00:00+00:00,0.26768997681657 -2024-06-20 16:00:00+00:00,0.29386561107471104 -2024-06-20 17:00:00+00:00,0.3111007790745414 -2024-06-20 18:00:00+00:00,0.31470361579343775 -2024-06-20 19:00:00+00:00,0.3168727911852287 -2024-06-20 20:00:00+00:00,0.319251410587313 -2024-06-20 21:00:00+00:00,0.31566089400517133 -2024-06-20 22:00:00+00:00,0.3070673507537533 -2024-06-20 23:00:00+00:00,0.294754045557755 -2024-06-21 00:00:00+00:00,0.2926034679869393 -2024-06-21 01:00:00+00:00,0.2676040820712455 -2024-06-21 02:00:00+00:00,0.2352355762213517 -2024-06-21 03:00:00+00:00,0.20885892368878692 -2024-06-21 04:00:00+00:00,0.1939852137724922 -2024-06-21 05:00:00+00:00,0.17880551034800407 -2024-06-21 06:00:00+00:00,0.15376793863447136 -2024-06-21 07:00:00+00:00,0.12000327848292627 -2024-06-21 08:00:00+00:00,0.09397887503014019 -2024-06-21 09:00:00+00:00,0.08455485609226793 -2024-06-21 10:00:00+00:00,0.07843191820976525 -2024-06-21 11:00:00+00:00,0.07216098599197514 -2024-06-21 12:00:00+00:00,0.07112218918224657 -2024-06-21 13:00:00+00:00,0.0877049329728698 -2024-06-21 14:00:00+00:00,0.16491101270057057 -2024-06-21 15:00:00+00:00,0.19599755638772806 -2024-06-21 16:00:00+00:00,0.22320641851857803 -2024-06-21 17:00:00+00:00,0.25366751447418584 -2024-06-21 18:00:00+00:00,0.27259653529978306 -2024-06-21 19:00:00+00:00,0.29365774475992884 -2024-06-21 20:00:00+00:00,0.33258500694860715 -2024-06-23 21:00:00+00:00,0.35206426970788657 -2024-06-23 22:00:00+00:00,0.36569010104867977 -2024-06-23 23:00:00+00:00,0.3848140870394437 -2024-06-24 00:00:00+00:00,0.389212551867772 -2024-06-24 01:00:00+00:00,0.38666249393453794 -2024-06-24 02:00:00+00:00,0.38151400609584296 -2024-06-24 03:00:00+00:00,0.3563938389286528 -2024-06-24 04:00:00+00:00,0.3305655878945114 -2024-06-24 05:00:00+00:00,0.3026327460020222 -2024-06-24 06:00:00+00:00,0.27636752799797437 -2024-06-24 07:00:00+00:00,0.22736219077699704 -2024-06-24 08:00:00+00:00,0.1640578845382796 -2024-06-24 09:00:00+00:00,0.11349605838388478 -2024-06-24 10:00:00+00:00,0.11769285407471858 -2024-06-24 11:00:00+00:00,0.1162164043373212 -2024-06-24 12:00:00+00:00,0.1252839301882183 -2024-06-24 13:00:00+00:00,0.13371710123764372 -2024-06-24 14:00:00+00:00,0.13099718761641052 -2024-06-24 15:00:00+00:00,0.1303647111002727 -2024-06-24 16:00:00+00:00,0.1266494956261461 -2024-06-24 17:00:00+00:00,0.1263763281683074 -2024-06-24 18:00:00+00:00,0.12620163484316727 -2024-06-24 19:00:00+00:00,0.11406151389869122 -2024-06-24 20:00:00+00:00,0.10918611587659977 -2024-06-24 21:00:00+00:00,0.10912179340053531 -2024-06-24 22:00:00+00:00,0.10808909582862777 -2024-06-24 23:00:00+00:00,0.10797022009111404 -2024-06-25 00:00:00+00:00,0.1175320337304517 -2024-06-25 01:00:00+00:00,0.1251594667242167 -2024-06-25 02:00:00+00:00,0.13847723546578686 -2024-06-25 03:00:00+00:00,0.1382311565348805 -2024-06-25 04:00:00+00:00,0.13288198169051987 -2024-06-25 05:00:00+00:00,0.13349254859980525 -2024-06-25 06:00:00+00:00,0.13409556688416457 -2024-06-25 07:00:00+00:00,0.13341974723677086 -2024-06-25 08:00:00+00:00,0.12945573315796494 -2024-06-25 09:00:00+00:00,0.1296818374049691 -2024-06-25 10:00:00+00:00,0.12636867535352042 -2024-06-25 11:00:00+00:00,0.1206558830334683 -2024-06-25 12:00:00+00:00,0.11578069107744701 -2024-06-25 13:00:00+00:00,0.11033121190806401 -2024-06-25 14:00:00+00:00,0.11375942993903049 -2024-06-25 15:00:00+00:00,0.11614174645009052 -2024-06-25 16:00:00+00:00,0.12447570046128902 -2024-06-25 17:00:00+00:00,0.1314463168592576 -2024-06-25 18:00:00+00:00,0.13273166442933637 -2024-06-25 19:00:00+00:00,0.12897061070797186 -2024-06-25 20:00:00+00:00,0.12832056899191663 -2024-06-25 21:00:00+00:00,0.1255911809890278 -2024-06-25 22:00:00+00:00,0.11485160909045411 -2024-06-25 23:00:00+00:00,0.11554879354467644 -2024-06-26 00:00:00+00:00,0.112456728544426 -2024-06-26 01:00:00+00:00,0.11305382977377469 -2024-06-26 02:00:00+00:00,0.11748302231304168 -2024-06-26 03:00:00+00:00,0.1196888400251615 -2024-06-26 04:00:00+00:00,0.11365658109669258 -2024-06-26 05:00:00+00:00,0.10438284798247467 -2024-06-26 06:00:00+00:00,0.08864706784305756 -2024-06-26 07:00:00+00:00,0.07741241234176376 -2024-06-26 08:00:00+00:00,0.09078040308674706 -2024-06-26 09:00:00+00:00,0.10102833112489433 -2024-06-26 10:00:00+00:00,0.15547292878396357 -2024-06-26 11:00:00+00:00,0.19036073098331077 -2024-06-26 12:00:00+00:00,0.22255546323632588 -2024-06-26 13:00:00+00:00,0.2636553571886769 -2024-06-26 14:00:00+00:00,0.3025351654299531 -2024-06-26 15:00:00+00:00,0.33525033852287894 -2024-06-26 16:00:00+00:00,0.3555853735755029 -2024-06-26 17:00:00+00:00,0.36742201464838 -2024-06-26 18:00:00+00:00,0.3778392132361077 -2024-06-26 19:00:00+00:00,0.3898688409763335 -2024-06-26 20:00:00+00:00,0.39689497484731623 -2024-06-26 21:00:00+00:00,0.39623164411234346 -2024-06-26 22:00:00+00:00,0.3898451244522559 -2024-06-26 23:00:00+00:00,0.37565570393827336 -2024-06-27 00:00:00+00:00,0.35051500081475456 -2024-06-27 01:00:00+00:00,0.3193790191942536 -2024-06-27 02:00:00+00:00,0.2814809472966261 -2024-06-27 03:00:00+00:00,0.2446138256334814 -2024-06-27 04:00:00+00:00,0.21073308137502667 -2024-06-27 05:00:00+00:00,0.16890236982711448 -2024-06-27 06:00:00+00:00,0.16116333658602525 -2024-06-27 07:00:00+00:00,0.1488320406455481 -2024-06-27 08:00:00+00:00,0.13893825780046723 -2024-06-27 09:00:00+00:00,0.1396058361266739 -2024-06-27 10:00:00+00:00,0.14361402953964728 -2024-06-27 11:00:00+00:00,0.1416977045706959 -2024-06-27 12:00:00+00:00,0.14616367000029148 -2024-06-27 13:00:00+00:00,0.14536577279961477 -2024-06-27 14:00:00+00:00,0.14164090996355766 -2024-06-27 15:00:00+00:00,0.13420451795097896 -2024-06-27 16:00:00+00:00,0.12375505308778917 -2024-06-27 17:00:00+00:00,0.12077071580618298 -2024-06-27 18:00:00+00:00,0.12624053901611837 -2024-06-27 19:00:00+00:00,0.13950456512636056 -2024-06-27 20:00:00+00:00,0.1449036976265212 -2024-06-27 21:00:00+00:00,0.14979792531261232 -2024-06-27 22:00:00+00:00,0.15108633818409584 -2024-06-27 23:00:00+00:00,0.14903885048645088 -2024-06-28 00:00:00+00:00,0.1780304823298441 -2024-06-28 01:00:00+00:00,0.19354901461826982 -2024-06-28 02:00:00+00:00,0.19316126343375034 -2024-06-28 03:00:00+00:00,0.2005792664071002 -2024-06-28 04:00:00+00:00,0.20910181354602977 -2024-06-28 05:00:00+00:00,0.20496373878749516 -2024-06-28 06:00:00+00:00,0.19323410265352706 -2024-06-28 07:00:00+00:00,0.18709510670955593 -2024-06-28 08:00:00+00:00,0.16178701888908648 -2024-06-28 09:00:00+00:00,0.1487627924865594 -2024-06-28 10:00:00+00:00,0.1626053990395458 -2024-06-28 11:00:00+00:00,0.16515300722907117 -2024-06-28 12:00:00+00:00,0.1781969564007029 -2024-06-28 13:00:00+00:00,0.1938525959451249 -2024-06-28 14:00:00+00:00,0.19363310397416286 -2024-06-28 15:00:00+00:00,0.19430287672096522 -2024-06-28 16:00:00+00:00,0.19418656251127067 -2024-06-28 17:00:00+00:00,0.19339185746466275 -2024-06-28 18:00:00+00:00,0.19199229701367343 -2024-06-28 19:00:00+00:00,0.19001493018062154 -2024-06-28 20:00:00+00:00,0.17790192450942774 -2024-06-30 21:00:00+00:00,0.16849725909665864 -2024-06-30 22:00:00+00:00,0.1658756351097938 -2024-06-30 23:00:00+00:00,0.16274937143356272 -2024-07-01 00:00:00+00:00,0.15975889731228535 -2024-07-01 01:00:00+00:00,0.159037234987727 -2024-07-01 02:00:00+00:00,0.1576022976285616 -2024-07-01 03:00:00+00:00,0.16539028007753795 -2024-07-01 04:00:00+00:00,0.17459951168597398 -2024-07-01 05:00:00+00:00,0.1791451851871628 -2024-07-01 06:00:00+00:00,0.15746440702913747 -2024-07-01 07:00:00+00:00,0.15397657889914756 -2024-07-01 08:00:00+00:00,0.1319517854810089 -2024-07-01 09:00:00+00:00,0.09315742198352428 -2024-07-01 10:00:00+00:00,0.10053607630626277 -2024-07-01 11:00:00+00:00,0.1061327867746252 -2024-07-01 12:00:00+00:00,0.13668730163619447 -2024-07-01 13:00:00+00:00,0.1595882448750828 -2024-07-01 14:00:00+00:00,0.20930961078155283 -2024-07-01 15:00:00+00:00,0.23352211099479497 -2024-07-01 16:00:00+00:00,0.24743811561752024 -2024-07-01 17:00:00+00:00,0.25262674777618305 -2024-07-01 18:00:00+00:00,0.25375124579920294 -2024-07-01 19:00:00+00:00,0.2540967232072925 -2024-07-01 20:00:00+00:00,0.2554586123806579 -2024-07-01 21:00:00+00:00,0.24921241733764957 -2024-07-01 22:00:00+00:00,0.23701793737926186 -2024-07-01 23:00:00+00:00,0.23551673872252993 -2024-07-02 00:00:00+00:00,0.23325325632656507 -2024-07-02 01:00:00+00:00,0.23221525292763653 -2024-07-02 02:00:00+00:00,0.21224139064475037 -2024-07-02 03:00:00+00:00,0.19957883947457328 -2024-07-02 04:00:00+00:00,0.18045657739177795 -2024-07-02 05:00:00+00:00,0.16223098382698115 -2024-07-02 06:00:00+00:00,0.1413642179390054 -2024-07-02 07:00:00+00:00,0.1042950647662548 -2024-07-02 08:00:00+00:00,0.09363775390122397 -2024-07-02 09:00:00+00:00,0.08764394180222027 -2024-07-02 10:00:00+00:00,0.08606576437693343 -2024-07-02 11:00:00+00:00,0.0866747550686537 -2024-07-02 12:00:00+00:00,0.08681951943937857 -2024-07-02 13:00:00+00:00,0.09618757720365077 -2024-07-02 14:00:00+00:00,0.10007537952588691 -2024-07-02 15:00:00+00:00,0.09798522986381607 -2024-07-02 16:00:00+00:00,0.09531631554101047 -2024-07-02 17:00:00+00:00,0.09166177822443497 -2024-07-02 18:00:00+00:00,0.08795094331145197 -2024-07-02 19:00:00+00:00,0.09092686481541132 -2024-07-02 20:00:00+00:00,0.09348316768217355 -2024-07-02 21:00:00+00:00,0.09611758154461919 -2024-07-02 22:00:00+00:00,0.10041414247151638 -2024-07-02 23:00:00+00:00,0.09830590017022908 -2024-07-03 00:00:00+00:00,0.09362291390611462 -2024-07-03 01:00:00+00:00,0.0883230315546523 -2024-07-03 02:00:00+00:00,0.08624634245701561 -2024-07-03 03:00:00+00:00,0.08433284624410603 -2024-07-03 04:00:00+00:00,0.09293703305752336 -2024-07-03 05:00:00+00:00,0.11546513489667441 -2024-07-03 06:00:00+00:00,0.12894445972010996 -2024-07-03 07:00:00+00:00,0.13662341637892064 -2024-07-03 08:00:00+00:00,0.14920469869812614 -2024-07-03 09:00:00+00:00,0.15325962666751092 -2024-07-03 10:00:00+00:00,0.1643565684338601 -2024-07-03 11:00:00+00:00,0.1741679392456225 -2024-07-03 12:00:00+00:00,0.17702821662700616 -2024-07-03 13:00:00+00:00,0.17385065432280475 -2024-07-03 14:00:00+00:00,0.18611626249833702 -2024-07-03 15:00:00+00:00,0.18498449439440015 -2024-07-03 16:00:00+00:00,0.18173093908024657 -2024-07-03 17:00:00+00:00,0.17901517138894443 -2024-07-03 18:00:00+00:00,0.1690351567544768 -2024-07-03 19:00:00+00:00,0.16258027169783862 -2024-07-03 20:00:00+00:00,0.15948465528592354 -2024-07-03 21:00:00+00:00,0.1614281248178003 -2024-07-03 22:00:00+00:00,0.1624716655720831 -2024-07-03 23:00:00+00:00,0.16369226586261554 -2024-07-04 00:00:00+00:00,0.1732711899642748 -2024-07-04 01:00:00+00:00,0.1809529162604855 -2024-07-04 02:00:00+00:00,0.18308111520648307 -2024-07-04 03:00:00+00:00,0.18178066600907794 -2024-07-04 04:00:00+00:00,0.17628696703160243 -2024-07-04 05:00:00+00:00,0.16774362489387767 -2024-07-04 06:00:00+00:00,0.15436261992247544 -2024-07-04 07:00:00+00:00,0.14201556626249204 -2024-07-04 08:00:00+00:00,0.13788380885737342 -2024-07-04 09:00:00+00:00,0.14031014521495225 -2024-07-04 10:00:00+00:00,0.1659379719486386 -2024-07-04 11:00:00+00:00,0.19564078255195874 -2024-07-04 12:00:00+00:00,0.20561701754176576 -2024-07-04 13:00:00+00:00,0.21281036779156978 -2024-07-04 14:00:00+00:00,0.2169368753870321 -2024-07-04 15:00:00+00:00,0.20837069070467767 -2024-07-04 16:00:00+00:00,0.19553182540111713 -2024-07-04 17:00:00+00:00,0.1889806729394705 -2024-07-04 18:00:00+00:00,0.17479716819153757 -2024-07-04 19:00:00+00:00,0.15939552759808917 -2024-07-04 20:00:00+00:00,0.15370630746686562 -2024-07-04 21:00:00+00:00,0.15123849241071533 -2024-07-04 22:00:00+00:00,0.14405558140529665 -2024-07-04 23:00:00+00:00,0.1295349069283968 -2024-07-05 00:00:00+00:00,0.11721346926042858 -2024-07-05 01:00:00+00:00,0.10592066299691083 -2024-07-05 02:00:00+00:00,0.10913612941829033 -2024-07-05 03:00:00+00:00,0.16084824494609481 -2024-07-05 04:00:00+00:00,0.19208526069395995 -2024-07-05 05:00:00+00:00,0.2100070863642032 -2024-07-05 06:00:00+00:00,0.22046168662723076 -2024-07-05 07:00:00+00:00,0.22942189935156754 -2024-07-05 08:00:00+00:00,0.23833580910564434 -2024-07-05 09:00:00+00:00,0.24707703892744604 -2024-07-05 10:00:00+00:00,0.2507018096776637 -2024-07-05 11:00:00+00:00,0.2507035154096996 -2024-07-05 12:00:00+00:00,0.24799776634568133 -2024-07-05 13:00:00+00:00,0.2534307961322916 -2024-07-05 14:00:00+00:00,0.24479656431801364 -2024-07-05 15:00:00+00:00,0.2413208118203754 -2024-07-05 16:00:00+00:00,0.2282843275777135 -2024-07-05 17:00:00+00:00,0.2145181810640885 -2024-07-05 18:00:00+00:00,0.19796464332549965 -2024-07-05 19:00:00+00:00,0.16115225721948329 -2024-07-05 20:00:00+00:00,0.15122343179116624 -2024-07-07 21:00:00+00:00,0.14520711163727562 -2024-07-07 22:00:00+00:00,0.1406929748237579 -2024-07-07 23:00:00+00:00,0.13920673761115046 -2024-07-08 00:00:00+00:00,0.14101791601935534 -2024-07-08 01:00:00+00:00,0.1636825875911119 -2024-07-08 02:00:00+00:00,0.18788683606015405 -2024-07-08 03:00:00+00:00,0.1977435873108483 -2024-07-08 04:00:00+00:00,0.20335902269635825 -2024-07-08 05:00:00+00:00,0.20335902269635825 -2024-07-08 06:00:00+00:00,0.20402757168274635 -2024-07-08 07:00:00+00:00,0.2063145975559183 -2024-07-08 08:00:00+00:00,0.21622987282407763 -2024-07-08 09:00:00+00:00,0.1928800008907101 -2024-07-08 10:00:00+00:00,0.1914673189274938 -2024-07-08 11:00:00+00:00,0.2006771431834139 -2024-07-08 12:00:00+00:00,0.19873915728497923 -2024-07-08 13:00:00+00:00,0.1980915259124575 -2024-07-08 14:00:00+00:00,0.19993469988289417 -2024-07-08 15:00:00+00:00,0.20003459570889645 -2024-07-08 16:00:00+00:00,0.19934735620966565 -2024-07-08 17:00:00+00:00,0.1993183119545543 -2024-07-08 18:00:00+00:00,0.19959010630050403 -2024-07-08 19:00:00+00:00,0.19894540379449852 -2024-07-08 20:00:00+00:00,0.19795328397969564 -2024-07-08 21:00:00+00:00,0.1819148080152504 -2024-07-08 22:00:00+00:00,0.15657817958653483 -2024-07-08 23:00:00+00:00,0.14058078781119251 -2024-07-09 00:00:00+00:00,0.12684901927536424 -2024-07-09 01:00:00+00:00,0.1277293602920702 -2024-07-09 02:00:00+00:00,0.1330979062139286 -2024-07-09 03:00:00+00:00,0.14051263290881347 -2024-07-09 04:00:00+00:00,0.131681383836367 -2024-07-09 05:00:00+00:00,0.1247449925441399 -2024-07-09 06:00:00+00:00,0.122720006547149 -2024-07-09 07:00:00+00:00,0.11755003416945321 -2024-07-09 08:00:00+00:00,0.12280026575751742 -2024-07-09 09:00:00+00:00,0.12189896595842775 -2024-07-09 10:00:00+00:00,0.1107101954449458 -2024-07-09 11:00:00+00:00,0.11888712030952492 -2024-07-09 12:00:00+00:00,0.12161821196183187 -2024-07-09 13:00:00+00:00,0.11338953588952677 -2024-07-09 14:00:00+00:00,0.14212088074605728 -2024-07-09 15:00:00+00:00,0.16535648096378286 -2024-07-09 16:00:00+00:00,0.17524932617013983 -2024-07-09 17:00:00+00:00,0.17919527721391026 -2024-07-09 18:00:00+00:00,0.1770818648238887 -2024-07-09 19:00:00+00:00,0.1756834099559715 -2024-07-09 20:00:00+00:00,0.17527838761632325 -2024-07-09 21:00:00+00:00,0.17611452615642686 -2024-07-09 22:00:00+00:00,0.17868242928128159 -2024-07-09 23:00:00+00:00,0.18148147652959168 -2024-07-10 00:00:00+00:00,0.18692480899588387 -2024-07-10 01:00:00+00:00,0.18941774358974858 -2024-07-10 02:00:00+00:00,0.17566393605064617 -2024-07-10 03:00:00+00:00,0.16141006134234953 -2024-07-10 04:00:00+00:00,0.1561673444786975 -2024-07-10 05:00:00+00:00,0.15054179348884272 -2024-07-10 06:00:00+00:00,0.13276028063087653 -2024-07-10 07:00:00+00:00,0.1265978298956206 -2024-07-10 08:00:00+00:00,0.11899164060689271 -2024-07-10 09:00:00+00:00,0.09388200885691332 -2024-07-10 10:00:00+00:00,0.09839480093067132 -2024-07-10 11:00:00+00:00,0.09947176276228954 -2024-07-10 12:00:00+00:00,0.09680501296120424 -2024-07-10 13:00:00+00:00,0.10075843967642208 -2024-07-10 14:00:00+00:00,0.10763921222384476 -2024-07-10 15:00:00+00:00,0.1171380090581757 -2024-07-10 16:00:00+00:00,0.11923510613311213 -2024-07-10 17:00:00+00:00,0.12081629163361002 -2024-07-10 18:00:00+00:00,0.12470508370989537 -2024-07-10 19:00:00+00:00,0.1211107692546392 -2024-07-10 20:00:00+00:00,0.12295762003313805 -2024-07-10 21:00:00+00:00,0.122570913987768 -2024-07-10 22:00:00+00:00,0.12146919690979936 -2024-07-10 23:00:00+00:00,0.11616978277292396 -2024-07-11 00:00:00+00:00,0.11127986297262218 -2024-07-11 01:00:00+00:00,0.10914741363501916 -2024-07-11 02:00:00+00:00,0.09494423575575711 -2024-07-11 03:00:00+00:00,0.09093969955905702 -2024-07-11 04:00:00+00:00,0.08817284167215143 -2024-07-11 05:00:00+00:00,0.08859814663694274 -2024-07-11 06:00:00+00:00,0.08847782956404061 -2024-07-11 07:00:00+00:00,0.0799659632077847 -2024-07-11 08:00:00+00:00,0.07053739216054099 -2024-07-11 09:00:00+00:00,0.07350436799168421 -2024-07-11 10:00:00+00:00,0.0770979384539184 -2024-07-11 11:00:00+00:00,0.07787952915362373 -2024-07-11 12:00:00+00:00,0.6715764956294283 -2024-07-11 13:00:00+00:00,0.9262545688543999 -2024-07-11 14:00:00+00:00,1.106743077448953 -2024-07-11 15:00:00+00:00,1.2385403123315322 -2024-07-11 16:00:00+00:00,1.3402442825279557 -2024-07-11 17:00:00+00:00,1.4031956713558218 -2024-07-11 18:00:00+00:00,1.4533731826000027 -2024-07-11 19:00:00+00:00,1.482504392469045 -2024-07-11 20:00:00+00:00,1.4952271258575502 -2024-07-11 21:00:00+00:00,1.4927690412557153 -2024-07-11 22:00:00+00:00,1.4630812331315577 -2024-07-11 23:00:00+00:00,1.4634337873660495 -2024-07-12 00:00:00+00:00,1.4093397586343046 -2024-07-12 01:00:00+00:00,1.3348084536362181 -2024-07-12 02:00:00+00:00,1.2412983981144858 -2024-07-12 03:00:00+00:00,1.1370732467279605 -2024-07-12 04:00:00+00:00,1.0205940427041131 -2024-07-12 05:00:00+00:00,0.8691757983422476 -2024-07-12 06:00:00+00:00,0.6610052870259268 -2024-07-12 07:00:00+00:00,0.3055293766600213 -2024-07-12 08:00:00+00:00,0.3019150107009034 -2024-07-12 09:00:00+00:00,0.2961742863536983 -2024-07-12 10:00:00+00:00,0.28175500276197424 -2024-07-12 11:00:00+00:00,0.2649728635606923 -2024-07-12 12:00:00+00:00,0.24879420263681334 -2024-07-12 13:00:00+00:00,0.2912670866952584 -2024-07-12 14:00:00+00:00,0.4055113600877757 -2024-07-12 15:00:00+00:00,0.46774170504008783 -2024-07-12 16:00:00+00:00,0.5207534495951646 -2024-07-12 17:00:00+00:00,0.555283320289257 -2024-07-12 18:00:00+00:00,0.5772515163771526 -2024-07-12 19:00:00+00:00,0.6039408388607915 -2024-07-12 20:00:00+00:00,0.6242126387880036 -2024-07-14 21:00:00+00:00,0.6097698012592982 -2024-07-14 22:00:00+00:00,0.5877250946177814 -2024-07-14 23:00:00+00:00,0.5666161120391118 -2024-07-15 00:00:00+00:00,0.5532992218940129 -2024-07-15 01:00:00+00:00,0.5412168818125792 -2024-07-15 02:00:00+00:00,0.5173489100575674 -2024-07-15 03:00:00+00:00,0.47991332550864724 -2024-07-15 04:00:00+00:00,0.44234012574346754 -2024-07-15 05:00:00+00:00,0.38444892549764087 -2024-07-15 06:00:00+00:00,0.3129593676339786 -2024-07-15 07:00:00+00:00,0.24077440850252013 -2024-07-15 08:00:00+00:00,0.16957389322447672 -2024-07-15 09:00:00+00:00,0.15328559516248633 -2024-07-15 10:00:00+00:00,0.13986703272122145 -2024-07-15 11:00:00+00:00,0.13983910867832333 -2024-07-15 12:00:00+00:00,0.1366069659939166 -2024-07-15 13:00:00+00:00,0.13748477427722272 -2024-07-15 14:00:00+00:00,0.14024906416856311 -2024-07-15 15:00:00+00:00,0.13705107576588088 -2024-07-15 16:00:00+00:00,0.1505521067346793 -2024-07-15 17:00:00+00:00,0.14727342097756113 -2024-07-15 18:00:00+00:00,0.1261990491250403 -2024-07-15 19:00:00+00:00,0.10166844979753643 -2024-07-15 20:00:00+00:00,0.10101323519337946 -2024-07-15 21:00:00+00:00,0.10252260341286634 -2024-07-15 22:00:00+00:00,0.1085065484321932 -2024-07-15 23:00:00+00:00,0.11676814634161135 -2024-07-16 00:00:00+00:00,0.14684502213698764 -2024-07-16 01:00:00+00:00,0.1900328226501158 -2024-07-16 02:00:00+00:00,0.24286077341427875 -2024-07-16 03:00:00+00:00,0.27403342093579824 -2024-07-16 04:00:00+00:00,0.29376035704093134 -2024-07-16 05:00:00+00:00,0.3207247508221846 -2024-07-16 06:00:00+00:00,0.32964596639188953 -2024-07-16 07:00:00+00:00,0.3361300813368818 -2024-07-16 08:00:00+00:00,0.33578266780858324 -2024-07-16 09:00:00+00:00,0.3304038159277986 -2024-07-16 10:00:00+00:00,0.31873058661332504 -2024-07-16 11:00:00+00:00,0.30482624904375455 -2024-07-16 12:00:00+00:00,0.28596880120758333 -2024-07-16 13:00:00+00:00,0.27215639370150285 -2024-07-16 14:00:00+00:00,0.24276453287531394 -2024-07-16 15:00:00+00:00,0.2122913278867763 -2024-07-16 16:00:00+00:00,0.1949951348952702 -2024-07-16 17:00:00+00:00,0.16966539051360827 -2024-07-16 18:00:00+00:00,0.14924458026394666 -2024-07-16 19:00:00+00:00,0.12609724735623956 -2024-07-16 20:00:00+00:00,0.12345869755246824 -2024-07-16 21:00:00+00:00,0.13194851468525146 -2024-07-16 22:00:00+00:00,0.13173948575332317 -2024-07-16 23:00:00+00:00,0.1318434478390846 -2024-07-17 00:00:00+00:00,0.1271459584024573 -2024-07-17 01:00:00+00:00,0.11344792452995764 -2024-07-17 02:00:00+00:00,0.11149585784673069 -2024-07-17 03:00:00+00:00,0.1127463851730785 -2024-07-17 04:00:00+00:00,0.12469975520631375 -2024-07-17 05:00:00+00:00,0.17549697103708328 -2024-07-17 06:00:00+00:00,0.22090514158787872 -2024-07-17 07:00:00+00:00,0.3678943319413156 -2024-07-17 08:00:00+00:00,0.5805685484714503 -2024-07-17 09:00:00+00:00,0.6935558471804548 -2024-07-17 10:00:00+00:00,0.7449415660588363 -2024-07-17 11:00:00+00:00,0.8012408468972924 -2024-07-17 12:00:00+00:00,0.838019695786405 -2024-07-17 13:00:00+00:00,0.8867626440268441 -2024-07-17 14:00:00+00:00,0.9097120582615855 -2024-07-17 15:00:00+00:00,0.9170430900161233 -2024-07-17 16:00:00+00:00,0.9280322972480795 -2024-07-17 17:00:00+00:00,0.9231565927486695 -2024-07-17 18:00:00+00:00,0.9263416216484256 -2024-07-17 19:00:00+00:00,0.9089465909838381 -2024-07-17 20:00:00+00:00,0.8651112052020483 -2024-07-17 21:00:00+00:00,0.8055121597289119 -2024-07-17 22:00:00+00:00,0.729983292885479 -2024-07-17 23:00:00+00:00,0.6575586005480962 -2024-07-18 00:00:00+00:00,0.5646808576968213 -2024-07-18 01:00:00+00:00,0.4576551678152147 -2024-07-18 02:00:00+00:00,0.31278686201445394 -2024-07-18 03:00:00+00:00,0.2603442053499545 -2024-07-18 04:00:00+00:00,0.2603146830408912 -2024-07-18 05:00:00+00:00,0.26504529900079754 -2024-07-18 06:00:00+00:00,0.24370937717360527 -2024-07-18 07:00:00+00:00,0.2355834582169801 -2024-07-18 08:00:00+00:00,0.2290132781629317 -2024-07-18 09:00:00+00:00,0.23611402240222468 -2024-07-18 10:00:00+00:00,0.23115801725955065 -2024-07-18 11:00:00+00:00,0.22649165779035 -2024-07-18 12:00:00+00:00,0.2305575564541555 -2024-07-18 13:00:00+00:00,0.2383761898570355 -2024-07-18 14:00:00+00:00,0.26195451593197133 -2024-07-18 15:00:00+00:00,0.30375724378867425 -2024-07-18 16:00:00+00:00,0.35470371252712163 -2024-07-18 17:00:00+00:00,0.396508126944808 -2024-07-18 18:00:00+00:00,0.43624720176662235 -2024-07-18 19:00:00+00:00,0.4379300472821853 -2024-07-18 20:00:00+00:00,0.4289177445337716 -2024-07-18 21:00:00+00:00,0.447802541067602 -2024-07-18 22:00:00+00:00,0.4563368561852492 -2024-07-18 23:00:00+00:00,0.46059776663474816 -2024-07-19 00:00:00+00:00,0.45875493687012225 -2024-07-19 01:00:00+00:00,0.44078333082645654 -2024-07-19 02:00:00+00:00,0.41678631088982576 -2024-07-19 03:00:00+00:00,0.3920053537470376 -2024-07-19 04:00:00+00:00,0.38329423560846165 -2024-07-19 05:00:00+00:00,0.38982382997868653 -2024-07-19 06:00:00+00:00,0.35040662093959585 -2024-07-19 07:00:00+00:00,0.31367916478378927 -2024-07-19 08:00:00+00:00,0.2551518588039945 -2024-07-19 09:00:00+00:00,0.20240433737464184 -2024-07-19 10:00:00+00:00,0.1618506458980698 -2024-07-19 11:00:00+00:00,0.14202616511643024 -2024-07-19 12:00:00+00:00,0.15105293599423028 -2024-07-19 13:00:00+00:00,0.1471866966917906 -2024-07-19 14:00:00+00:00,0.14547398935130884 -2024-07-19 15:00:00+00:00,0.14532725320859757 -2024-07-19 16:00:00+00:00,0.14513057641094346 -2024-07-19 17:00:00+00:00,0.1447797874047292 -2024-07-19 18:00:00+00:00,0.1424028662445712 -2024-07-19 19:00:00+00:00,0.13209203330283015 -2024-07-19 20:00:00+00:00,0.1220739529914111 -2024-07-21 21:00:00+00:00,0.12208426770062529 -2024-07-21 22:00:00+00:00,0.12813340087572683 -2024-07-21 23:00:00+00:00,0.12751407558625313 -2024-07-22 00:00:00+00:00,0.12708317831031896 -2024-07-22 01:00:00+00:00,0.10282037223365281 -2024-07-22 02:00:00+00:00,0.09945620564367916 -2024-07-22 03:00:00+00:00,0.09583531652625801 -2024-07-22 04:00:00+00:00,0.08560890262992073 -2024-07-22 05:00:00+00:00,0.12546079278104932 -2024-07-22 06:00:00+00:00,0.2541964584184714 -2024-07-22 07:00:00+00:00,0.28400842741164056 -2024-07-22 08:00:00+00:00,0.29914377373938617 -2024-07-22 09:00:00+00:00,0.32514409356078816 -2024-07-22 10:00:00+00:00,0.338113851112681 -2024-07-22 11:00:00+00:00,0.34691838490899757 -2024-07-22 12:00:00+00:00,0.35610729828670135 -2024-07-22 13:00:00+00:00,0.35890988459696554 -2024-07-22 14:00:00+00:00,0.3551763683436056 -2024-07-22 15:00:00+00:00,0.3440286707731073 -2024-07-22 16:00:00+00:00,0.33287511092263233 -2024-07-22 17:00:00+00:00,0.3235792061143822 -2024-07-22 18:00:00+00:00,0.32031643482510025 -2024-07-22 19:00:00+00:00,0.30889582641549895 -2024-07-22 20:00:00+00:00,0.29557786399209784 -2024-07-22 21:00:00+00:00,0.269558757383355 -2024-07-22 22:00:00+00:00,0.2366297351913621 -2024-07-22 23:00:00+00:00,0.20445003893071645 -2024-07-23 00:00:00+00:00,0.17670894147616228 -2024-07-23 01:00:00+00:00,0.178940154646616 -2024-07-23 02:00:00+00:00,0.15853908698763353 -2024-07-23 03:00:00+00:00,0.20988106907351314 -2024-07-23 04:00:00+00:00,0.24456085239425426 -2024-07-23 05:00:00+00:00,0.2699599190475883 -2024-07-23 06:00:00+00:00,0.2750739422075893 -2024-07-23 07:00:00+00:00,0.32420865194704024 -2024-07-23 08:00:00+00:00,0.3661610049912112 -2024-07-23 09:00:00+00:00,0.404922250493213 -2024-07-23 10:00:00+00:00,0.4264526752261599 -2024-07-23 11:00:00+00:00,0.4267516349021398 -2024-07-23 12:00:00+00:00,0.42960147995058756 -2024-07-23 13:00:00+00:00,0.4174901952795523 -2024-07-23 14:00:00+00:00,0.40974051801329053 -2024-07-23 15:00:00+00:00,0.3907524825615202 -2024-07-23 16:00:00+00:00,0.38020842967544016 -2024-07-23 17:00:00+00:00,0.37511878819818206 -2024-07-23 18:00:00+00:00,0.3529260545722656 -2024-07-23 19:00:00+00:00,0.3306593094760289 -2024-07-23 20:00:00+00:00,0.32562204033751624 -2024-07-23 21:00:00+00:00,0.3070529313117196 -2024-07-23 22:00:00+00:00,0.28210104571841615 -2024-07-23 23:00:00+00:00,0.2759008975311973 -2024-07-24 00:00:00+00:00,0.26321102199674123 -2024-07-24 01:00:00+00:00,0.28571859544777883 -2024-07-24 02:00:00+00:00,0.262682598135919 -2024-07-24 03:00:00+00:00,0.3041311351429074 -2024-07-24 04:00:00+00:00,0.39024012849712547 -2024-07-24 05:00:00+00:00,0.44926588071375273 -2024-07-24 06:00:00+00:00,0.4920515029682594 -2024-07-24 07:00:00+00:00,0.5132346211139416 -2024-07-24 08:00:00+00:00,0.5117369389939321 -2024-07-24 09:00:00+00:00,0.5032814321966153 -2024-07-24 10:00:00+00:00,0.5078809718552678 -2024-07-24 11:00:00+00:00,0.5293914554952468 -2024-07-24 12:00:00+00:00,0.5903611650984514 -2024-07-24 13:00:00+00:00,0.6758376070074832 -2024-07-24 14:00:00+00:00,0.7551350018674237 -2024-07-24 15:00:00+00:00,0.7978954736270328 -2024-07-24 16:00:00+00:00,0.8176695687601152 -2024-07-24 17:00:00+00:00,0.8036201953740204 -2024-07-24 18:00:00+00:00,0.7685415785020736 -2024-07-24 19:00:00+00:00,0.7096104490952652 -2024-07-24 20:00:00+00:00,0.6277225732269152 -2024-07-24 21:00:00+00:00,0.5922021880827627 -2024-07-24 22:00:00+00:00,0.5513183625029694 -2024-07-24 23:00:00+00:00,0.50658573336984 -2024-07-25 00:00:00+00:00,0.5207571511912578 -2024-07-25 01:00:00+00:00,0.5557275553540233 -2024-07-25 02:00:00+00:00,0.5990026271715778 -2024-07-25 03:00:00+00:00,0.6555808192099991 -2024-07-25 04:00:00+00:00,0.63670934250375 -2024-07-25 05:00:00+00:00,0.5971813860829326 -2024-07-25 06:00:00+00:00,0.5549277904561614 -2024-07-25 07:00:00+00:00,0.5830999643369695 -2024-07-25 08:00:00+00:00,0.5838983757011793 -2024-07-25 09:00:00+00:00,0.6175616823989197 -2024-07-25 10:00:00+00:00,0.6541318955917133 -2024-07-25 11:00:00+00:00,0.65739825307504 -2024-07-25 12:00:00+00:00,0.6589909271708446 -2024-07-25 13:00:00+00:00,0.6500784648906011 -2024-07-25 14:00:00+00:00,0.6280409704107491 -2024-07-25 15:00:00+00:00,0.6249300487075549 -2024-07-25 16:00:00+00:00,0.6343366530966446 -2024-07-25 17:00:00+00:00,0.6506429532545309 -2024-07-25 18:00:00+00:00,0.6595901358848868 -2024-07-25 19:00:00+00:00,0.6597206745352714 -2024-07-25 20:00:00+00:00,0.6833174418263386 -2024-07-25 21:00:00+00:00,0.7029670408452666 -2024-07-25 22:00:00+00:00,0.7080321784905438 -2024-07-25 23:00:00+00:00,0.6793281878671525 -2024-07-26 00:00:00+00:00,0.671295940299514 -2024-07-26 01:00:00+00:00,0.6551744865940403 -2024-07-26 02:00:00+00:00,0.6494397484226423 -2024-07-26 03:00:00+00:00,0.57693256697075 -2024-07-26 04:00:00+00:00,0.5415677315758496 -2024-07-26 05:00:00+00:00,0.4471053655284998 -2024-07-26 06:00:00+00:00,0.28668913567856785 -2024-07-26 07:00:00+00:00,0.15907707496502127 -2024-07-26 08:00:00+00:00,0.18079485318287844 -2024-07-26 09:00:00+00:00,0.1924095412630724 -2024-07-26 10:00:00+00:00,0.24037043230620972 -2024-07-26 11:00:00+00:00,0.28632184686172724 -2024-07-26 12:00:00+00:00,0.2921944377704988 -2024-07-26 13:00:00+00:00,0.2936076687489611 -2024-07-26 14:00:00+00:00,0.30843217712327864 -2024-07-26 15:00:00+00:00,0.30873325224681253 -2024-07-26 16:00:00+00:00,0.31038539709060015 -2024-07-26 17:00:00+00:00,0.3132495683883448 -2024-07-26 18:00:00+00:00,0.3158352793378372 -2024-07-26 19:00:00+00:00,0.3141726812987042 -2024-07-26 20:00:00+00:00,0.31600887311106 -2024-07-28 21:00:00+00:00,0.3116530586045416 -2024-07-28 22:00:00+00:00,0.31274321060525695 -2024-07-28 23:00:00+00:00,0.3149704873238104 -2024-07-29 00:00:00+00:00,0.31601606803043475 -2024-07-29 01:00:00+00:00,0.32865535858566663 -2024-07-29 02:00:00+00:00,0.3417950255107405 -2024-07-29 03:00:00+00:00,0.352776039720214 -2024-07-29 04:00:00+00:00,0.35344444585511103 -2024-07-29 05:00:00+00:00,0.356466518676438 -2024-07-29 06:00:00+00:00,0.3204240611083109 -2024-07-29 07:00:00+00:00,0.24666232509490862 -2024-07-29 08:00:00+00:00,0.2133077526908023 -2024-07-29 09:00:00+00:00,0.2110460413476496 -2024-07-29 10:00:00+00:00,0.20773740379854216 -2024-07-29 11:00:00+00:00,0.20608480622793812 -2024-07-29 12:00:00+00:00,0.21040159592680535 -2024-07-29 13:00:00+00:00,0.238466653279868 -2024-07-29 14:00:00+00:00,0.2512235898457063 -2024-07-29 15:00:00+00:00,0.2575234071941543 -2024-07-29 16:00:00+00:00,0.2622520884273195 -2024-07-29 17:00:00+00:00,0.26885417685215574 -2024-07-29 18:00:00+00:00,0.26731016872835744 -2024-07-29 19:00:00+00:00,0.25720612252327396 -2024-07-29 20:00:00+00:00,0.26442023967109246 -2024-07-29 21:00:00+00:00,0.2599355992921619 -2024-07-29 22:00:00+00:00,0.25018483165448363 -2024-07-29 23:00:00+00:00,0.24014773411496534 -2024-07-30 00:00:00+00:00,0.2208353697133104 -2024-07-30 01:00:00+00:00,0.19279656578802132 -2024-07-30 02:00:00+00:00,0.14811036955331996 -2024-07-30 03:00:00+00:00,0.1332782111572784 -2024-07-30 04:00:00+00:00,0.1604560851248685 -2024-07-30 05:00:00+00:00,0.20929261181177772 -2024-07-30 06:00:00+00:00,0.2957050940081043 -2024-07-30 07:00:00+00:00,0.3381054452329517 -2024-07-30 08:00:00+00:00,0.3507677894224045 -2024-07-30 09:00:00+00:00,0.37695456935753624 -2024-07-30 10:00:00+00:00,0.3912653259034832 -2024-07-30 11:00:00+00:00,0.4094284173560728 -2024-07-30 12:00:00+00:00,0.42388688907338595 -2024-07-30 13:00:00+00:00,0.41579531906929945 -2024-07-30 14:00:00+00:00,0.40888285221284254 -2024-07-30 15:00:00+00:00,0.42716008030022184 -2024-07-30 16:00:00+00:00,0.49347772038641324 -2024-07-30 17:00:00+00:00,0.5520030391714363 -2024-07-30 18:00:00+00:00,0.5969433191744663 -2024-07-30 19:00:00+00:00,0.6304092739028672 -2024-07-30 20:00:00+00:00,0.7101649104193987 -2024-07-30 21:00:00+00:00,0.7839707483071897 -2024-07-30 22:00:00+00:00,0.8308654080574308 -2024-07-30 23:00:00+00:00,0.8877188329117747 -2024-07-31 00:00:00+00:00,0.9499432933162293 -2024-07-31 01:00:00+00:00,0.9843732657410237 -2024-07-31 02:00:00+00:00,0.9549331899970718 -2024-07-31 03:00:00+00:00,0.909906963138722 -2024-07-31 04:00:00+00:00,0.9020662596678791 -2024-07-31 05:00:00+00:00,0.8560548356079605 -2024-07-31 06:00:00+00:00,0.8331009226719734 -2024-07-31 07:00:00+00:00,0.8970051047138253 -2024-07-31 08:00:00+00:00,0.9061717102229727 -2024-07-31 09:00:00+00:00,0.9929468846702277 -2024-07-31 10:00:00+00:00,0.9965976475182546 -2024-07-31 11:00:00+00:00,1.072814560660303 -2024-07-31 12:00:00+00:00,1.1330273780712923 -2024-07-31 13:00:00+00:00,1.216417384213394 -2024-07-31 14:00:00+00:00,1.223846906269164 -2024-07-31 15:00:00+00:00,1.2158939304002736 -2024-07-31 16:00:00+00:00,1.2136389647774324 -2024-07-31 17:00:00+00:00,1.195352892172764 -2024-07-31 18:00:00+00:00,1.1697739952586423 -2024-07-31 19:00:00+00:00,1.178759521916704 -2024-07-31 20:00:00+00:00,1.1769390394639154 -2024-07-31 21:00:00+00:00,1.1638699239959467 -2024-07-31 22:00:00+00:00,1.0851786888914094 -2024-07-31 23:00:00+00:00,0.895266323199504 -2024-08-01 00:00:00+00:00,0.8141126586865564 -2024-08-01 01:00:00+00:00,0.6483643712260133 -2024-08-01 02:00:00+00:00,0.47631131734702953 -2024-08-01 03:00:00+00:00,0.4625601838293663 -2024-08-01 04:00:00+00:00,0.43110680991933664 -2024-08-01 05:00:00+00:00,0.42791470802978193 -2024-08-01 06:00:00+00:00,0.4124738715562101 -2024-08-01 07:00:00+00:00,0.4111483116713582 -2024-08-01 08:00:00+00:00,0.40735763090100263 -2024-08-01 09:00:00+00:00,0.4061823028364306 -2024-08-01 10:00:00+00:00,0.3911713717602791 -2024-08-01 11:00:00+00:00,0.4009935391008523 -2024-08-01 12:00:00+00:00,0.4299207362448338 -2024-08-01 13:00:00+00:00,0.4040362802633586 -2024-08-01 14:00:00+00:00,0.3879575770087127 -2024-08-01 15:00:00+00:00,0.38764659363717946 -2024-08-01 16:00:00+00:00,0.3876465936371638 -2024-08-01 17:00:00+00:00,0.3899067195875576 -2024-08-01 18:00:00+00:00,0.3942553106547176 -2024-08-01 19:00:00+00:00,0.3944932792176147 -2024-08-01 20:00:00+00:00,0.4012268651870838 -2024-08-01 21:00:00+00:00,0.38827329967770197 -2024-08-01 22:00:00+00:00,0.40948510348899536 -2024-08-01 23:00:00+00:00,0.43107628764387024 -2024-08-02 00:00:00+00:00,0.4426858782719578 -2024-08-02 01:00:00+00:00,0.4492273219889692 -2024-08-02 02:00:00+00:00,0.45036828202361373 -2024-08-02 03:00:00+00:00,0.45568304714225866 -2024-08-02 04:00:00+00:00,0.4705570606712161 -2024-08-02 05:00:00+00:00,0.5035792181239719 -2024-08-02 06:00:00+00:00,0.5332922176935597 -2024-08-02 07:00:00+00:00,0.5010412815009699 -2024-08-02 08:00:00+00:00,0.41505972934723023 -2024-08-02 09:00:00+00:00,0.35695467791230057 -2024-08-02 10:00:00+00:00,0.3508750677035109 -2024-08-02 11:00:00+00:00,0.3172718367566884 -2024-08-02 12:00:00+00:00,0.49887225184590006 -2024-08-02 13:00:00+00:00,0.668638795951088 -2024-08-02 14:00:00+00:00,0.8422140917205345 -2024-08-02 15:00:00+00:00,0.9188556655900925 -2024-08-02 16:00:00+00:00,1.002192286401929 -2024-08-02 17:00:00+00:00,1.065254467981611 -2024-08-02 18:00:00+00:00,1.1386395159768052 -2024-08-02 19:00:00+00:00,1.1877809074849033 -2024-08-02 20:00:00+00:00,1.2139451301117972 -2024-08-04 21:00:00+00:00,1.2188437089374944 -2024-08-04 22:00:00+00:00,1.2083159866765838 -2024-08-04 23:00:00+00:00,1.2335402154495838 -2024-08-05 00:00:00+00:00,1.2513045939399199 -2024-08-05 01:00:00+00:00,1.2969244347479327 -2024-08-05 02:00:00+00:00,1.3163352196528089 -2024-08-05 03:00:00+00:00,1.3397176685967975 -2024-08-05 04:00:00+00:00,1.455501305382701 -2024-08-05 05:00:00+00:00,1.5780595837831848 -2024-08-05 06:00:00+00:00,1.628198548435388 -2024-08-05 07:00:00+00:00,1.535842983843455 -2024-08-05 08:00:00+00:00,1.6288964451171482 -2024-08-05 09:00:00+00:00,1.7114417775262045 -2024-08-05 10:00:00+00:00,1.7735609258949976 -2024-08-05 11:00:00+00:00,1.792289978878212 -2024-08-05 12:00:00+00:00,1.7924317472045326 -2024-08-05 13:00:00+00:00,1.7367527919918424 -2024-08-05 14:00:00+00:00,1.684421321049689 -2024-08-05 15:00:00+00:00,1.574128372838403 -2024-08-05 16:00:00+00:00,1.449435725945886 -2024-08-05 17:00:00+00:00,1.3058283708720262 -2024-08-05 18:00:00+00:00,1.1468057181696367 -2024-08-05 19:00:00+00:00,1.04069065501564 -2024-08-05 20:00:00+00:00,0.9381573134074483 -2024-08-05 21:00:00+00:00,0.8622662856283644 -2024-08-05 22:00:00+00:00,0.8243685366226676 -2024-08-05 23:00:00+00:00,0.9723370868630733 -2024-08-06 00:00:00+00:00,1.0402983516710953 -2024-08-06 01:00:00+00:00,1.0637525174515898 -2024-08-06 02:00:00+00:00,1.1135620075688164 -2024-08-06 03:00:00+00:00,1.1716672994030308 -2024-08-06 04:00:00+00:00,1.1847038092932423 -2024-08-06 05:00:00+00:00,1.1921156072367711 -2024-08-06 06:00:00+00:00,1.1636964878157512 -2024-08-06 07:00:00+00:00,1.0856899770567008 -2024-08-06 08:00:00+00:00,0.9596295063406428 -2024-08-06 09:00:00+00:00,0.8573293354597279 -2024-08-06 10:00:00+00:00,0.7157316811767401 -2024-08-06 11:00:00+00:00,0.6933991236678769 -2024-08-06 12:00:00+00:00,0.6787913619990174 -2024-08-06 13:00:00+00:00,0.6588243336415331 -2024-08-06 14:00:00+00:00,0.5770721107620648 -2024-08-06 15:00:00+00:00,0.505296171586075 -2024-08-06 16:00:00+00:00,0.47425480600588676 -2024-08-06 17:00:00+00:00,0.4172383011747546 -2024-08-06 18:00:00+00:00,0.4099949806738487 -2024-08-06 19:00:00+00:00,0.3869157530614358 -2024-08-06 20:00:00+00:00,0.4215760653955384 -2024-08-06 21:00:00+00:00,0.43257346193101726 -2024-08-06 22:00:00+00:00,0.43960070395105794 -2024-08-06 23:00:00+00:00,0.4348193332849915 -2024-08-07 00:00:00+00:00,0.4174316552548923 -2024-08-07 01:00:00+00:00,0.5467908288305013 -2024-08-07 02:00:00+00:00,0.6747080381980586 -2024-08-07 03:00:00+00:00,0.8214499632189641 -2024-08-07 04:00:00+00:00,0.9912374190980279 -2024-08-07 05:00:00+00:00,1.0540657324800944 -2024-08-07 06:00:00+00:00,1.081511587143585 -2024-08-07 07:00:00+00:00,1.1131926524852136 -2024-08-07 08:00:00+00:00,1.1505318495419974 -2024-08-07 09:00:00+00:00,1.1866141781824182 -2024-08-07 10:00:00+00:00,1.1822705585665756 -2024-08-07 11:00:00+00:00,1.1964898706197518 -2024-08-07 12:00:00+00:00,1.2026675132130102 -2024-08-07 13:00:00+00:00,1.2104358621114772 -2024-08-07 14:00:00+00:00,1.1956667584818326 -2024-08-07 15:00:00+00:00,1.1556974597148666 -2024-08-07 16:00:00+00:00,1.047872424673792 -2024-08-07 17:00:00+00:00,0.9309229305385868 -2024-08-07 18:00:00+00:00,0.7764111363207143 -2024-08-07 19:00:00+00:00,0.5953312125221363 -2024-08-07 20:00:00+00:00,0.2904977397740553 -2024-08-07 21:00:00+00:00,0.2904977397740553 -2024-08-07 22:00:00+00:00,0.31090114772368205 -2024-08-07 23:00:00+00:00,0.3536284698782499 -2024-08-08 00:00:00+00:00,0.38831550855190244 -2024-08-08 01:00:00+00:00,0.4068075032594264 -2024-08-08 02:00:00+00:00,0.4062519667615698 -2024-08-08 03:00:00+00:00,0.4197231261234861 -2024-08-08 04:00:00+00:00,0.4435063163053595 -2024-08-08 05:00:00+00:00,0.4464732442887491 -2024-08-08 06:00:00+00:00,0.4496898463003214 -2024-08-08 07:00:00+00:00,0.46919497402990795 -2024-08-08 08:00:00+00:00,0.47068713485497987 -2024-08-08 09:00:00+00:00,0.4570455925339428 -2024-08-08 10:00:00+00:00,0.4319812495587652 -2024-08-08 11:00:00+00:00,0.3756535182314618 -2024-08-08 12:00:00+00:00,0.36352483079119347 -2024-08-08 13:00:00+00:00,0.3725236092436056 -2024-08-08 14:00:00+00:00,0.4110475193066484 -2024-08-08 15:00:00+00:00,0.4270181309743294 -2024-08-08 16:00:00+00:00,0.46001170176401274 -2024-08-08 17:00:00+00:00,0.49829275634215064 -2024-08-08 18:00:00+00:00,0.5228008853856165 -2024-08-08 19:00:00+00:00,0.5360922224983771 -2024-08-08 20:00:00+00:00,0.5395585427211833 -2024-08-08 21:00:00+00:00,0.5500166958923638 -2024-08-08 22:00:00+00:00,0.564962623330464 -2024-08-08 23:00:00+00:00,0.5983699326394336 -2024-08-09 00:00:00+00:00,0.5973434412575473 -2024-08-09 01:00:00+00:00,0.5610442214233211 -2024-08-09 02:00:00+00:00,0.5486728101548278 -2024-08-09 03:00:00+00:00,0.48497247612969957 -2024-08-09 04:00:00+00:00,0.44412151901939473 -2024-08-09 05:00:00+00:00,0.38440579911475564 -2024-08-09 06:00:00+00:00,0.30069783307208964 -2024-08-09 07:00:00+00:00,0.1813692002915232 -2024-08-09 08:00:00+00:00,0.1771254683868122 -2024-08-09 09:00:00+00:00,0.17524036867805176 -2024-08-09 10:00:00+00:00,0.17630311062031598 -2024-08-09 11:00:00+00:00,0.1804594355167404 -2024-08-09 12:00:00+00:00,0.20711499468858569 -2024-08-09 13:00:00+00:00,0.24348649043581858 -2024-08-09 14:00:00+00:00,0.280786166013681 -2024-08-09 15:00:00+00:00,0.3151387329805342 -2024-08-09 16:00:00+00:00,0.33052691581340177 -2024-08-09 17:00:00+00:00,0.3389170795547087 -2024-08-09 18:00:00+00:00,0.347173288253808 -2024-08-09 19:00:00+00:00,0.31675856233678384 -2024-08-09 20:00:00+00:00,0.2993133325197484 -2024-08-11 21:00:00+00:00,0.2982913446400906 -2024-08-11 22:00:00+00:00,0.26543974927966696 -2024-08-11 23:00:00+00:00,0.2565439122619829 -2024-08-12 00:00:00+00:00,0.25650449359508215 -2024-08-12 01:00:00+00:00,0.25526000670676324 -2024-08-12 02:00:00+00:00,0.24347406642988048 -2024-08-12 03:00:00+00:00,0.24339776298047985 -2024-08-12 04:00:00+00:00,0.23768322012534676 -2024-08-12 05:00:00+00:00,0.2347751667417637 -2024-08-12 06:00:00+00:00,0.24118763163868262 -2024-08-12 07:00:00+00:00,0.25262008082187626 -2024-08-12 08:00:00+00:00,0.27534808587027304 -2024-08-12 09:00:00+00:00,0.28313481998379375 -2024-08-12 10:00:00+00:00,0.2886843978301043 -2024-08-12 11:00:00+00:00,0.2964369596125935 -2024-08-12 12:00:00+00:00,0.31849320817889426 -2024-08-12 13:00:00+00:00,0.34124661166378706 -2024-08-12 14:00:00+00:00,0.3570738202810131 -2024-08-12 15:00:00+00:00,0.34047893508330107 -2024-08-12 16:00:00+00:00,0.30862018894594284 -2024-08-12 17:00:00+00:00,0.2856198936640506 -2024-08-12 18:00:00+00:00,0.2764247113141759 -2024-08-12 19:00:00+00:00,0.272504447040262 -2024-08-12 20:00:00+00:00,0.2522981735835755 -2024-08-12 21:00:00+00:00,0.23952208990306859 -2024-08-12 22:00:00+00:00,0.22539356800700572 -2024-08-12 23:00:00+00:00,0.234918098771644 -2024-08-13 00:00:00+00:00,0.22999292889354148 -2024-08-13 01:00:00+00:00,0.2273067657640203 -2024-08-13 02:00:00+00:00,0.22513831999582146 -2024-08-13 03:00:00+00:00,0.22370113397366576 -2024-08-13 04:00:00+00:00,0.23576839655653045 -2024-08-13 05:00:00+00:00,0.24157193539974292 -2024-08-13 06:00:00+00:00,0.2635917696466912 -2024-08-13 07:00:00+00:00,0.27842827664596026 -2024-08-13 08:00:00+00:00,0.28608176963984794 -2024-08-13 09:00:00+00:00,0.29392795389036774 -2024-08-13 10:00:00+00:00,0.2781748597635086 -2024-08-13 11:00:00+00:00,0.27804662137320263 -2024-08-13 12:00:00+00:00,0.2775159501802159 -2024-08-13 13:00:00+00:00,0.2835441624828443 -2024-08-13 14:00:00+00:00,0.2986473716682815 -2024-08-13 15:00:00+00:00,0.31113545869440073 -2024-08-13 16:00:00+00:00,0.34305164560405493 -2024-08-13 17:00:00+00:00,0.3577883231509783 -2024-08-13 18:00:00+00:00,0.3870665521096759 -2024-08-13 19:00:00+00:00,0.39777206839297324 -2024-08-13 20:00:00+00:00,0.4120021556840502 -2024-08-13 21:00:00+00:00,0.42521938297384876 -2024-08-13 22:00:00+00:00,0.43712945207010545 -2024-08-13 23:00:00+00:00,0.4396164925234435 -2024-08-14 00:00:00+00:00,0.4259810070804394 -2024-08-14 01:00:00+00:00,0.4191504534217796 -2024-08-14 02:00:00+00:00,0.41199011226422044 -2024-08-14 03:00:00+00:00,0.37670407200678163 -2024-08-14 04:00:00+00:00,0.32768779665541153 -2024-08-14 05:00:00+00:00,0.2525075245839212 -2024-08-14 06:00:00+00:00,0.2212675148532769 -2024-08-14 07:00:00+00:00,0.22722450635274227 -2024-08-14 08:00:00+00:00,0.20410391438224154 -2024-08-14 09:00:00+00:00,0.20509881436914837 -2024-08-14 10:00:00+00:00,0.2048050355899011 -2024-08-14 11:00:00+00:00,0.20457784510604532 -2024-08-14 12:00:00+00:00,0.21812055448137146 -2024-08-14 13:00:00+00:00,0.2178663218168562 -2024-08-14 14:00:00+00:00,0.21312409894340528 -2024-08-14 15:00:00+00:00,0.2122265422482632 -2024-08-14 16:00:00+00:00,0.21097080734181067 -2024-08-14 17:00:00+00:00,0.2162774715692771 -2024-08-14 18:00:00+00:00,0.2210882830884136 -2024-08-14 19:00:00+00:00,0.23338954893185535 -2024-08-14 20:00:00+00:00,0.24228667225137412 -2024-08-14 21:00:00+00:00,0.2439305066550965 -2024-08-14 22:00:00+00:00,0.20634166855578584 -2024-08-14 23:00:00+00:00,0.1962679357498451 -2024-08-15 00:00:00+00:00,0.18882361575479048 -2024-08-15 01:00:00+00:00,0.20737849955407303 -2024-08-15 02:00:00+00:00,0.21873730934248115 -2024-08-15 03:00:00+00:00,0.21868022188976538 -2024-08-15 04:00:00+00:00,0.21939396785232856 -2024-08-15 05:00:00+00:00,0.218863686183875 -2024-08-15 06:00:00+00:00,0.20645001299800156 -2024-08-15 07:00:00+00:00,0.19392930744982914 -2024-08-15 08:00:00+00:00,0.19455549194475974 -2024-08-15 09:00:00+00:00,0.1884915954391191 -2024-08-15 10:00:00+00:00,0.15293214000328104 -2024-08-15 11:00:00+00:00,0.12363923527206168 -2024-08-15 12:00:00+00:00,0.3851571927544613 -2024-08-15 13:00:00+00:00,0.5393483665490815 -2024-08-15 14:00:00+00:00,0.6399170669740399 -2024-08-15 15:00:00+00:00,0.705296473663916 -2024-08-15 16:00:00+00:00,0.76724029720663 -2024-08-15 17:00:00+00:00,0.8170437902811001 -2024-08-15 18:00:00+00:00,0.8488495790590375 -2024-08-15 19:00:00+00:00,0.8722961517110938 -2024-08-15 20:00:00+00:00,0.8989915563538448 -2024-08-15 21:00:00+00:00,0.9276221369297154 -2024-08-15 22:00:00+00:00,0.9417045281806622 -2024-08-15 23:00:00+00:00,0.9422487044447331 -2024-08-16 00:00:00+00:00,0.9214993445904625 -2024-08-16 01:00:00+00:00,0.872435737326878 -2024-08-16 02:00:00+00:00,0.8118663294027842 -2024-08-16 03:00:00+00:00,0.7421944187604967 -2024-08-16 04:00:00+00:00,0.6675674300476947 -2024-08-16 05:00:00+00:00,0.5783829977460775 -2024-08-16 06:00:00+00:00,0.4321118854598482 -2024-08-16 07:00:00+00:00,0.13659656302259301 -2024-08-16 08:00:00+00:00,0.15507149447262658 -2024-08-16 09:00:00+00:00,0.17421345037814012 -2024-08-16 10:00:00+00:00,0.22868808331537444 -2024-08-16 11:00:00+00:00,0.30945831702615484 -2024-08-16 12:00:00+00:00,0.4160648861057206 -2024-08-16 13:00:00+00:00,0.4797213527581354 -2024-08-16 14:00:00+00:00,0.5093151102756736 -2024-08-16 15:00:00+00:00,0.5225773777781884 -2024-08-16 16:00:00+00:00,0.5272375151146815 -2024-08-16 17:00:00+00:00,0.5399464763697371 -2024-08-16 18:00:00+00:00,0.5496194161481552 -2024-08-16 19:00:00+00:00,0.5471271260689955 -2024-08-16 20:00:00+00:00,0.545959944044765 -2024-08-18 21:00:00+00:00,0.5462077298843412 -2024-08-18 22:00:00+00:00,0.5343149351971581 -2024-08-18 23:00:00+00:00,0.5099506787047692 -2024-08-19 00:00:00+00:00,0.488782224648531 -2024-08-19 01:00:00+00:00,0.47526733471589966 -2024-08-19 02:00:00+00:00,0.4354266479712945 -2024-08-19 03:00:00+00:00,0.48252445803843036 -2024-08-19 04:00:00+00:00,0.5633792099322517 -2024-08-19 05:00:00+00:00,0.7168221885327778 -2024-08-19 06:00:00+00:00,0.7810537736551877 -2024-08-19 07:00:00+00:00,0.8188751896889496 -2024-08-19 08:00:00+00:00,0.8592068726285366 -2024-08-19 09:00:00+00:00,0.8760185214776615 -2024-08-19 10:00:00+00:00,0.8710966394349382 -2024-08-19 11:00:00+00:00,0.8640842109746059 -2024-08-19 12:00:00+00:00,0.8451016506735469 -2024-08-19 13:00:00+00:00,0.8270069305204556 -2024-08-19 14:00:00+00:00,0.8078814138957267 -2024-08-19 15:00:00+00:00,0.7793765119241359 -2024-08-19 16:00:00+00:00,0.7496955364272071 -2024-08-19 17:00:00+00:00,0.7083240709195067 -2024-08-19 18:00:00+00:00,0.6418745491232972 -2024-08-19 19:00:00+00:00,0.546606264018887 -2024-08-19 20:00:00+00:00,0.4449260701111105 -2024-08-19 21:00:00+00:00,0.37911822898485875 -2024-08-19 22:00:00+00:00,0.3070924598829119 -2024-08-19 23:00:00+00:00,0.318148608061876 -2024-08-20 00:00:00+00:00,0.31647304278837196 -2024-08-20 01:00:00+00:00,0.232922276332378 -2024-08-20 02:00:00+00:00,0.2396682520121043 -2024-08-20 03:00:00+00:00,0.2643040712423906 -2024-08-20 04:00:00+00:00,0.26354463812786055 -2024-08-20 05:00:00+00:00,0.30520903530769256 -2024-08-20 06:00:00+00:00,0.31681249223088814 -2024-08-20 07:00:00+00:00,0.28706050613239165 -2024-08-20 08:00:00+00:00,0.27094304600972 -2024-08-20 09:00:00+00:00,0.2673560359717159 -2024-08-20 10:00:00+00:00,0.26320546301320247 -2024-08-20 11:00:00+00:00,0.26579974153880076 -2024-08-20 12:00:00+00:00,0.2856897470148646 -2024-08-20 13:00:00+00:00,0.3091753504709486 -2024-08-20 14:00:00+00:00,0.38480515913457725 -2024-08-20 15:00:00+00:00,0.43138026633200643 -2024-08-20 16:00:00+00:00,0.4990865445164351 -2024-08-20 17:00:00+00:00,0.5434729911183285 -2024-08-20 18:00:00+00:00,0.5865983472720543 -2024-08-20 19:00:00+00:00,0.6209954211806904 -2024-08-20 20:00:00+00:00,0.6603441586506825 -2024-08-20 21:00:00+00:00,0.7033223113575935 -2024-08-20 22:00:00+00:00,0.7107099489579931 -2024-08-20 23:00:00+00:00,0.6882738343285489 -2024-08-21 00:00:00+00:00,0.6601009173006226 -2024-08-21 01:00:00+00:00,0.5831386852919526 -2024-08-21 02:00:00+00:00,0.5127168501122866 -2024-08-21 03:00:00+00:00,0.4768249457769916 -2024-08-21 04:00:00+00:00,0.43381641456576353 -2024-08-21 05:00:00+00:00,0.3865034179317148 -2024-08-21 06:00:00+00:00,0.3426008264487352 -2024-08-21 07:00:00+00:00,0.3172698129007246 -2024-08-21 08:00:00+00:00,0.3043215533974734 -2024-08-21 09:00:00+00:00,0.3047090889928993 -2024-08-21 10:00:00+00:00,0.3347649410512793 -2024-08-21 11:00:00+00:00,0.3510076134565815 -2024-08-21 12:00:00+00:00,0.3497001120799763 -2024-08-21 13:00:00+00:00,0.3492683178624528 -2024-08-21 14:00:00+00:00,0.34433186252032166 -2024-08-21 15:00:00+00:00,0.3521411013087014 -2024-08-21 16:00:00+00:00,0.3567866677491269 -2024-08-21 17:00:00+00:00,0.3615587998613808 -2024-08-21 18:00:00+00:00,0.3978960290926178 -2024-08-21 19:00:00+00:00,0.41578928110693153 -2024-08-21 20:00:00+00:00,0.4202420949746228 -2024-08-21 21:00:00+00:00,0.4285327813649925 -2024-08-21 22:00:00+00:00,0.45373855208888214 -2024-08-21 23:00:00+00:00,0.4635912559561859 -2024-08-22 00:00:00+00:00,0.46442961901674396 -2024-08-22 01:00:00+00:00,0.46371739064698847 -2024-08-22 02:00:00+00:00,0.4523503852324638 -2024-08-22 03:00:00+00:00,0.4273795644067047 -2024-08-22 04:00:00+00:00,0.4093025228730367 -2024-08-22 05:00:00+00:00,0.37366879152055166 -2024-08-22 06:00:00+00:00,0.3210796711565537 -2024-08-22 07:00:00+00:00,0.2692179511657498 -2024-08-22 08:00:00+00:00,0.256903422296704 -2024-08-22 09:00:00+00:00,0.24543733248471686 -2024-08-22 10:00:00+00:00,0.25637634234475115 -2024-08-22 11:00:00+00:00,0.30207102679664205 -2024-08-22 12:00:00+00:00,0.3427672026756698 -2024-08-22 13:00:00+00:00,0.3938301096034728 -2024-08-22 14:00:00+00:00,0.4015599155254652 -2024-08-22 15:00:00+00:00,0.3993544098971864 -2024-08-22 16:00:00+00:00,0.43188722634900095 -2024-08-22 17:00:00+00:00,0.4497009854154243 -2024-08-22 18:00:00+00:00,0.4304192447879155 -2024-08-22 19:00:00+00:00,0.42585956107343237 -2024-08-22 20:00:00+00:00,0.42906184067826625 -2024-08-22 21:00:00+00:00,0.4369807414400246 -2024-08-22 22:00:00+00:00,0.43196996419719647 -2024-08-22 23:00:00+00:00,0.41146225441802914 -2024-08-23 00:00:00+00:00,0.3661840599456351 -2024-08-23 01:00:00+00:00,0.34666070165810287 -2024-08-23 02:00:00+00:00,0.32926642543117707 -2024-08-23 03:00:00+00:00,0.28894791002144393 -2024-08-23 04:00:00+00:00,0.280809562684845 -2024-08-23 05:00:00+00:00,0.27598731372541085 -2024-08-23 06:00:00+00:00,0.2995714306708267 -2024-08-23 07:00:00+00:00,0.302642271842056 -2024-08-23 08:00:00+00:00,0.3029888785008083 -2024-08-23 09:00:00+00:00,0.2976230881508007 -2024-08-23 10:00:00+00:00,0.2924587014846241 -2024-08-23 11:00:00+00:00,0.2926405194996544 -2024-08-23 12:00:00+00:00,0.2816091916306606 -2024-08-23 13:00:00+00:00,0.2766026790796117 -2024-08-23 14:00:00+00:00,0.3171668122782103 -2024-08-23 15:00:00+00:00,0.38219213956773845 -2024-08-23 16:00:00+00:00,0.42644935525779754 -2024-08-23 17:00:00+00:00,0.5088478730059609 -2024-08-23 18:00:00+00:00,0.5811071918232834 -2024-08-23 19:00:00+00:00,0.6349355623907578 -2024-08-23 20:00:00+00:00,0.6646997165074426 -2024-08-25 21:00:00+00:00,0.7294465295281494 -2024-08-25 22:00:00+00:00,0.7927687174961086 -2024-08-25 23:00:00+00:00,0.8385792558771947 -2024-08-26 00:00:00+00:00,0.8843773069334385 -2024-08-26 01:00:00+00:00,0.9183483615294569 -2024-08-26 02:00:00+00:00,0.9381087300731299 -2024-08-26 03:00:00+00:00,0.9317755546138824 -2024-08-26 04:00:00+00:00,0.9052867225168076 -2024-08-26 05:00:00+00:00,0.8487533194829701 -2024-08-26 06:00:00+00:00,0.797490709377596 -2024-08-26 07:00:00+00:00,0.7176326926382949 -2024-08-26 08:00:00+00:00,0.6158113411255013 -2024-08-26 09:00:00+00:00,0.40945320080316633 -2024-08-26 10:00:00+00:00,0.3251847409597526 -2024-08-26 11:00:00+00:00,0.2703092575187356 -2024-08-26 12:00:00+00:00,0.19707935875573832 -2024-08-26 13:00:00+00:00,0.197502671441481 -2024-08-26 14:00:00+00:00,0.18902477549997987 -2024-08-26 15:00:00+00:00,0.2148675478551281 -2024-08-26 16:00:00+00:00,0.22242020441455612 -2024-08-26 17:00:00+00:00,0.2491285600591397 -2024-08-26 18:00:00+00:00,0.2665914427208041 -2024-08-26 19:00:00+00:00,0.2879199952206232 -2024-08-26 20:00:00+00:00,0.2862386701330496 -2024-08-26 21:00:00+00:00,0.27966814914835353 -2024-08-26 22:00:00+00:00,0.27553681569986693 -2024-08-26 23:00:00+00:00,0.27695646620817516 -2024-08-27 00:00:00+00:00,0.3038785205098645 -2024-08-27 01:00:00+00:00,0.31288598893120906 -2024-08-27 02:00:00+00:00,0.30955170891253403 -2024-08-27 03:00:00+00:00,0.3051529555489813 -2024-08-27 04:00:00+00:00,0.27985466146474397 -2024-08-27 05:00:00+00:00,0.26550327080249075 -2024-08-27 06:00:00+00:00,0.2521887137309048 -2024-08-27 07:00:00+00:00,0.2543452843069038 -2024-08-27 08:00:00+00:00,0.2291612336712738 -2024-08-27 09:00:00+00:00,0.22732802051779002 -2024-08-27 10:00:00+00:00,0.19506502955355573 -2024-08-27 11:00:00+00:00,0.1939680113805971 -2024-08-27 12:00:00+00:00,0.1988580225264844 -2024-08-27 13:00:00+00:00,0.21087664133317194 -2024-08-27 14:00:00+00:00,0.22802760674723577 -2024-08-27 15:00:00+00:00,0.24417834286241813 -2024-08-27 16:00:00+00:00,0.26815970784675414 -2024-08-27 17:00:00+00:00,0.287440813068833 -2024-08-27 18:00:00+00:00,0.31242600802639436 -2024-08-27 19:00:00+00:00,0.3409002940615288 -2024-08-27 20:00:00+00:00,0.3598770403559068 -2024-08-27 21:00:00+00:00,0.3789817381608718 -2024-08-27 22:00:00+00:00,0.3905485312067128 -2024-08-27 23:00:00+00:00,0.39128308162306785 -2024-08-28 00:00:00+00:00,0.39124770383204344 -2024-08-28 01:00:00+00:00,0.37774171064937273 -2024-08-28 02:00:00+00:00,0.3610836431253606 -2024-08-28 03:00:00+00:00,0.32526142921133955 -2024-08-28 04:00:00+00:00,0.27102170716302015 -2024-08-28 05:00:00+00:00,0.23722680124130133 -2024-08-28 06:00:00+00:00,0.21224982168683312 -2024-08-28 07:00:00+00:00,0.2144284691570666 -2024-08-28 08:00:00+00:00,0.2127927765537591 -2024-08-28 09:00:00+00:00,0.2115782546924741 -2024-08-28 10:00:00+00:00,0.2159719766563249 -2024-08-28 11:00:00+00:00,0.21697646601903947 -2024-08-28 12:00:00+00:00,0.24067984295779946 -2024-08-28 13:00:00+00:00,0.2722696031625378 -2024-08-28 14:00:00+00:00,0.26768724871039334 -2024-08-28 15:00:00+00:00,0.25754803326369485 -2024-08-28 16:00:00+00:00,0.2555921091900326 -2024-08-28 17:00:00+00:00,0.23985190050328709 -2024-08-28 18:00:00+00:00,0.20839700842985204 -2024-08-28 19:00:00+00:00,0.1816982097831388 -2024-08-28 20:00:00+00:00,0.1594351541719364 -2024-08-28 21:00:00+00:00,0.15604924987273203 -2024-08-28 22:00:00+00:00,0.1630024538611927 -2024-08-28 23:00:00+00:00,0.16233231012999796 -2024-08-29 00:00:00+00:00,0.1593278974698147 -2024-08-29 01:00:00+00:00,0.1587253170751411 -2024-08-29 02:00:00+00:00,0.15928032212879703 -2024-08-29 03:00:00+00:00,0.15910655141023936 -2024-08-29 04:00:00+00:00,0.15609632642299906 -2024-08-29 05:00:00+00:00,0.14370484175508103 -2024-08-29 06:00:00+00:00,0.13941315903563897 -2024-08-29 07:00:00+00:00,0.13120224431140678 -2024-08-29 08:00:00+00:00,0.1304120896346422 -2024-08-29 09:00:00+00:00,0.11672973718759046 -2024-08-29 10:00:00+00:00,0.11672973718759046 -2024-08-29 11:00:00+00:00,0.11434578199343114 -2024-08-29 12:00:00+00:00,0.21352406487520148 -2024-08-29 13:00:00+00:00,0.2732847896991882 -2024-08-29 14:00:00+00:00,0.3149570730432489 -2024-08-29 15:00:00+00:00,0.3221874249677934 -2024-08-29 16:00:00+00:00,0.32817387475329535 -2024-08-29 17:00:00+00:00,0.3236820198364139 -2024-08-29 18:00:00+00:00,0.30657007006585263 -2024-08-29 19:00:00+00:00,0.2984779767371254 -2024-08-29 20:00:00+00:00,0.28953236337112237 -2024-08-29 21:00:00+00:00,0.28904661337312687 -2024-08-29 22:00:00+00:00,0.2834983105257195 -2024-08-29 23:00:00+00:00,0.2731913922652548 -2024-08-30 00:00:00+00:00,0.27139396003720795 -2024-08-30 01:00:00+00:00,0.2661222710027198 -2024-08-30 02:00:00+00:00,0.2584113967412732 -2024-08-30 03:00:00+00:00,0.25670236701079074 -2024-08-30 04:00:00+00:00,0.25263272169509077 -2024-08-30 05:00:00+00:00,0.23691256985505302 -2024-08-30 06:00:00+00:00,0.21470407411038736 -2024-08-30 07:00:00+00:00,0.19865359950813744 -2024-08-30 08:00:00+00:00,0.17460237524045308 -2024-08-30 09:00:00+00:00,0.14955036985506093 -2024-08-30 10:00:00+00:00,0.14158399949589048 -2024-08-30 11:00:00+00:00,0.18040051192496015 -2024-08-30 12:00:00+00:00,0.23697974034599154 -2024-08-30 13:00:00+00:00,0.27194075877279716 -2024-08-30 14:00:00+00:00,0.29388900512721977 -2024-08-30 15:00:00+00:00,0.3534877202781456 -2024-08-30 16:00:00+00:00,0.4310100590696134 -2024-08-30 17:00:00+00:00,0.4811615769412766 -2024-08-30 18:00:00+00:00,0.5114263721958541 -2024-08-30 19:00:00+00:00,0.5399163165847408 -2024-08-30 20:00:00+00:00,0.5506192303301606 -2024-09-01 21:00:00+00:00,0.5480882828130308 -2024-09-01 22:00:00+00:00,0.559677265996186 -2024-09-01 23:00:00+00:00,0.5572571550101786 -2024-09-02 00:00:00+00:00,0.5349645831560114 -2024-09-02 01:00:00+00:00,0.5045110608248744 -2024-09-02 02:00:00+00:00,0.4650578769527942 -2024-09-02 03:00:00+00:00,0.4124840156012298 -2024-09-02 04:00:00+00:00,0.3698052794452515 -2024-09-02 05:00:00+00:00,0.3189080835575571 -2024-09-02 06:00:00+00:00,0.27595504490969325 -2024-09-02 07:00:00+00:00,0.25433548083439256 -2024-09-02 08:00:00+00:00,0.26760357556191805 -2024-09-02 09:00:00+00:00,0.2626309397153897 -2024-09-02 10:00:00+00:00,0.25717830691681554 -2024-09-02 11:00:00+00:00,0.2960843762587639 -2024-09-02 12:00:00+00:00,0.33218385836670294 -2024-09-02 13:00:00+00:00,0.3569022975129694 -2024-09-02 14:00:00+00:00,0.3726412271618499 -2024-09-02 15:00:00+00:00,0.386123091870374 -2024-09-02 16:00:00+00:00,0.38894243921561833 -2024-09-02 17:00:00+00:00,0.388301361495035 -2024-09-02 18:00:00+00:00,0.39644261544259374 -2024-09-02 19:00:00+00:00,0.4016965861680111 -2024-09-02 20:00:00+00:00,0.39767659430110996 -2024-09-02 21:00:00+00:00,0.3913224911451984 -2024-09-02 22:00:00+00:00,0.36232748704135526 -2024-09-02 23:00:00+00:00,0.3169567917963274 -2024-09-03 00:00:00+00:00,0.266023045049812 -2024-09-03 01:00:00+00:00,0.21658941868688708 -2024-09-03 02:00:00+00:00,0.1582424105533067 -2024-09-03 03:00:00+00:00,0.15004539654400398 -2024-09-03 04:00:00+00:00,0.16283055439651117 -2024-09-03 05:00:00+00:00,0.19889785787200492 -2024-09-03 06:00:00+00:00,0.26815354983107453 -2024-09-03 07:00:00+00:00,0.3216215289214928 -2024-09-03 08:00:00+00:00,0.37558169266568364 -2024-09-03 09:00:00+00:00,0.403045720238171 -2024-09-03 10:00:00+00:00,0.41496758271873424 -2024-09-03 11:00:00+00:00,0.4142287570031388 -2024-09-03 12:00:00+00:00,0.43307253248316774 -2024-09-03 13:00:00+00:00,0.481335584293284 -2024-09-03 14:00:00+00:00,0.502594227846531 -2024-09-03 15:00:00+00:00,0.49880272439561896 -2024-09-03 16:00:00+00:00,0.49000060147235275 -2024-09-03 17:00:00+00:00,0.4691718655707248 -2024-09-03 18:00:00+00:00,0.44018447086455575 -2024-09-03 19:00:00+00:00,0.42836336023304 -2024-09-03 20:00:00+00:00,0.3698206392726039 -2024-09-03 21:00:00+00:00,0.3586669617379711 -2024-09-03 22:00:00+00:00,0.3413470066015424 -2024-09-03 23:00:00+00:00,0.3195980163792464 -2024-09-04 00:00:00+00:00,0.30163510103866387 -2024-09-04 01:00:00+00:00,0.2789258106785321 -2024-09-04 02:00:00+00:00,0.273536464363112 -2024-09-04 03:00:00+00:00,0.2761962497732481 -2024-09-04 04:00:00+00:00,0.28589683448346875 -2024-09-04 05:00:00+00:00,0.2912545639473884 -2024-09-04 06:00:00+00:00,0.3087760386957496 -2024-09-04 07:00:00+00:00,0.288635423782199 -2024-09-04 08:00:00+00:00,0.27498123853462536 -2024-09-04 09:00:00+00:00,0.28366779582478213 -2024-09-04 10:00:00+00:00,0.29036862228736987 -2024-09-04 11:00:00+00:00,0.2899026877899982 -2024-09-04 12:00:00+00:00,0.27612781168827466 -2024-09-04 13:00:00+00:00,0.2595562812270561 -2024-09-04 14:00:00+00:00,0.33072773023318724 -2024-09-04 15:00:00+00:00,0.3616845237259637 -2024-09-04 16:00:00+00:00,0.4177547095296778 -2024-09-04 17:00:00+00:00,0.4551604083551322 -2024-09-04 18:00:00+00:00,0.5029489876477397 -2024-09-04 19:00:00+00:00,0.5411886624700902 -2024-09-04 20:00:00+00:00,0.5831685027472434 -2024-09-04 21:00:00+00:00,0.6071598657653372 -2024-09-04 22:00:00+00:00,0.616799402233734 -2024-09-04 23:00:00+00:00,0.6457959592755523 -2024-09-05 00:00:00+00:00,0.6368314987957909 -2024-09-05 01:00:00+00:00,0.6247365002145862 -2024-09-05 02:00:00+00:00,0.6178381664832334 -2024-09-05 03:00:00+00:00,0.6016789907067608 -2024-09-05 04:00:00+00:00,0.5658352256571613 -2024-09-05 05:00:00+00:00,0.5348924042956369 -2024-09-05 06:00:00+00:00,0.5018853297047825 -2024-09-05 07:00:00+00:00,0.45211461048586155 -2024-09-05 08:00:00+00:00,0.3547999287423796 -2024-09-05 09:00:00+00:00,0.26677881625764827 -2024-09-05 10:00:00+00:00,0.25530726578307456 -2024-09-05 11:00:00+00:00,0.21686213778251365 -2024-09-05 12:00:00+00:00,0.2303023812370488 -2024-09-05 13:00:00+00:00,0.22089885149722815 -2024-09-05 14:00:00+00:00,0.22330174879264117 -2024-09-05 15:00:00+00:00,0.21678279200279962 -2024-09-05 16:00:00+00:00,0.21362051932551718 -2024-09-05 17:00:00+00:00,0.2153214487153023 -2024-09-05 18:00:00+00:00,0.21492716015329993 -2024-09-05 19:00:00+00:00,0.21152277459314126 -2024-09-05 20:00:00+00:00,0.20625829479451216 -2024-09-05 21:00:00+00:00,0.20094468330972118 -2024-09-05 22:00:00+00:00,0.18430095514177175 -2024-09-05 23:00:00+00:00,0.17120360289742773 -2024-09-06 00:00:00+00:00,0.1784262414696877 -2024-09-06 01:00:00+00:00,0.18145102271682118 -2024-09-06 02:00:00+00:00,0.1837110072132058 -2024-09-06 03:00:00+00:00,0.19708731691053005 -2024-09-06 04:00:00+00:00,0.2108317112933939 -2024-09-06 05:00:00+00:00,0.26225467726983054 -2024-09-06 06:00:00+00:00,0.32891100614035174 -2024-09-06 07:00:00+00:00,0.3635368474223739 -2024-09-06 08:00:00+00:00,0.3867036774722546 -2024-09-06 09:00:00+00:00,0.3960548173940475 -2024-09-06 10:00:00+00:00,0.3593496866956182 -2024-09-06 11:00:00+00:00,0.35137796033956353 -2024-09-06 12:00:00+00:00,0.3427408526349834 -2024-09-06 13:00:00+00:00,0.3518717581310623 -2024-09-06 14:00:00+00:00,0.370026951310862 -2024-09-06 15:00:00+00:00,0.4056598782249361 -2024-09-06 16:00:00+00:00,0.4044114761780023 -2024-09-06 17:00:00+00:00,0.3996483025718069 -2024-09-06 18:00:00+00:00,0.39290088138163853 -2024-09-06 19:00:00+00:00,0.37720452006668403 -2024-09-06 20:00:00+00:00,0.3767969576934288 -2024-09-08 21:00:00+00:00,0.37248559132924886 -2024-09-08 22:00:00+00:00,0.36707413199422523 -2024-09-08 23:00:00+00:00,0.35420674896281756 -2024-09-09 00:00:00+00:00,0.34215272053376394 -2024-09-09 01:00:00+00:00,0.3530312196724948 -2024-09-09 02:00:00+00:00,0.35356747284357326 -2024-09-09 03:00:00+00:00,0.3545319337712118 -2024-09-09 04:00:00+00:00,0.36324045604216104 -2024-09-09 05:00:00+00:00,0.366747478677442 -2024-09-09 06:00:00+00:00,0.3727388354224362 -2024-09-09 07:00:00+00:00,0.37903046671111634 -2024-09-09 08:00:00+00:00,0.40629466550968285 -2024-09-09 09:00:00+00:00,0.4030640375666326 -2024-09-09 10:00:00+00:00,0.45564859493245713 -2024-09-09 11:00:00+00:00,0.47256078412806773 -2024-09-09 12:00:00+00:00,0.47343975325168697 -2024-09-09 13:00:00+00:00,0.46310769460373 -2024-09-09 14:00:00+00:00,0.4487412804737728 -2024-09-09 15:00:00+00:00,0.43502442757941134 -2024-09-09 16:00:00+00:00,0.4117519181067267 -2024-09-09 17:00:00+00:00,0.370462371072235 -2024-09-09 18:00:00+00:00,0.3189042752952989 -2024-09-09 19:00:00+00:00,0.29538289150044844 -2024-09-09 20:00:00+00:00,0.28613359037101144 -2024-09-09 21:00:00+00:00,0.28587067367071745 -2024-09-09 22:00:00+00:00,0.28020582653271053 -2024-09-09 23:00:00+00:00,0.2712585627303334 -2024-09-10 00:00:00+00:00,0.28216901889298013 -2024-09-10 01:00:00+00:00,0.28561130646562766 -2024-09-10 02:00:00+00:00,0.2892332148830637 -2024-09-10 03:00:00+00:00,0.28964451435659494 -2024-09-10 04:00:00+00:00,0.2858334948918396 -2024-09-10 05:00:00+00:00,0.274780563094738 -2024-09-10 06:00:00+00:00,0.2529491887022863 -2024-09-10 07:00:00+00:00,0.2521450031062696 -2024-09-10 08:00:00+00:00,0.26586925944497825 -2024-09-10 09:00:00+00:00,0.2532127459209499 -2024-09-10 10:00:00+00:00,0.2354682847390038 -2024-09-10 11:00:00+00:00,0.22875097920310908 -2024-09-10 12:00:00+00:00,0.22973598110155755 -2024-09-10 13:00:00+00:00,0.21735445211642465 -2024-09-10 14:00:00+00:00,0.22667748352897257 -2024-09-10 15:00:00+00:00,0.29976824374835553 -2024-09-10 16:00:00+00:00,0.3369029845704732 -2024-09-10 17:00:00+00:00,0.3733599786318174 -2024-09-10 18:00:00+00:00,0.4075742456891772 -2024-09-10 19:00:00+00:00,0.43755846522013564 -2024-09-10 20:00:00+00:00,0.43890414966242647 -2024-09-10 21:00:00+00:00,0.4386542697617453 -2024-09-10 22:00:00+00:00,0.4328863470158016 -2024-09-10 23:00:00+00:00,0.4438875953743919 -2024-09-11 00:00:00+00:00,0.4528365424402463 -2024-09-11 01:00:00+00:00,0.4877531164329684 -2024-09-11 02:00:00+00:00,0.4946994701308172 -2024-09-11 03:00:00+00:00,0.5091773447227692 -2024-09-11 04:00:00+00:00,0.544256351615004 -2024-09-11 05:00:00+00:00,0.5651272120033269 -2024-09-11 06:00:00+00:00,0.5717142711631761 -2024-09-11 07:00:00+00:00,0.5571661001124489 -2024-09-11 08:00:00+00:00,0.5431083539837409 -2024-09-11 09:00:00+00:00,0.5044199664840252 -2024-09-11 10:00:00+00:00,0.4809824238589649 -2024-09-11 11:00:00+00:00,0.47599310030170744 -2024-09-11 12:00:00+00:00,0.46670712100626977 -2024-09-11 13:00:00+00:00,0.4513977443895469 -2024-09-11 14:00:00+00:00,0.44589230167435023 -2024-09-11 15:00:00+00:00,0.4306204183412033 -2024-09-11 16:00:00+00:00,0.4029890261763764 -2024-09-11 17:00:00+00:00,0.38597993874459857 -2024-09-11 18:00:00+00:00,0.3659403855067396 -2024-09-11 19:00:00+00:00,0.3770874391934521 -2024-09-11 20:00:00+00:00,0.3827251864934338 -2024-09-11 21:00:00+00:00,0.4015700076052583 -2024-09-11 22:00:00+00:00,0.4301626221959606 -2024-09-11 23:00:00+00:00,0.45769087184068286 -2024-09-12 00:00:00+00:00,0.4552035142984981 -2024-09-12 01:00:00+00:00,0.4465477253428297 -2024-09-12 02:00:00+00:00,0.43539330067445836 -2024-09-12 03:00:00+00:00,0.42035843096447884 -2024-09-12 04:00:00+00:00,0.4210163016708406 -2024-09-12 05:00:00+00:00,0.41852813520360316 -2024-09-12 06:00:00+00:00,0.3931866972629319 -2024-09-12 07:00:00+00:00,0.37865911618911996 -2024-09-12 08:00:00+00:00,0.3817042668425435 -2024-09-12 09:00:00+00:00,0.36427005592243167 -2024-09-12 10:00:00+00:00,0.28346337359214163 -2024-09-12 11:00:00+00:00,0.22340124383566265 -2024-09-12 12:00:00+00:00,0.20516983327035773 -2024-09-12 13:00:00+00:00,0.2246299646317705 -2024-09-12 14:00:00+00:00,0.21274264155742653 -2024-09-12 15:00:00+00:00,0.21955347019268978 -2024-09-12 16:00:00+00:00,0.21644265062718132 -2024-09-12 17:00:00+00:00,0.21761639344205552 -2024-09-12 18:00:00+00:00,0.2444729238261973 -2024-09-12 19:00:00+00:00,0.2783974817638054 -2024-09-12 20:00:00+00:00,0.3085494926769994 -2024-09-12 21:00:00+00:00,0.33325964266787467 -2024-09-12 22:00:00+00:00,0.3524435415173967 -2024-09-12 23:00:00+00:00,0.3937465755363796 -2024-09-13 00:00:00+00:00,0.44681366357453867 -2024-09-13 01:00:00+00:00,0.4740094241332912 -2024-09-13 02:00:00+00:00,0.521233355113352 -2024-09-13 03:00:00+00:00,0.5467417628270972 -2024-09-13 04:00:00+00:00,0.5712567308902774 -2024-09-13 05:00:00+00:00,0.5834497655350894 -2024-09-13 06:00:00+00:00,0.5702862138828316 -2024-09-13 07:00:00+00:00,0.5613783670642414 -2024-09-13 08:00:00+00:00,0.5878421825063364 -2024-09-13 09:00:00+00:00,0.6180355529348474 -2024-09-13 10:00:00+00:00,0.5970553949937981 -2024-09-13 11:00:00+00:00,0.5762368299272983 -2024-09-13 12:00:00+00:00,0.519502596068846 -2024-09-13 13:00:00+00:00,0.49676748765962075 -2024-09-13 14:00:00+00:00,0.4644545867048998 -2024-09-13 15:00:00+00:00,0.43313728218232367 -2024-09-13 16:00:00+00:00,0.39295045885056185 -2024-09-13 17:00:00+00:00,0.33642765696933885 -2024-09-13 18:00:00+00:00,0.25871146284097013 -2024-09-13 19:00:00+00:00,0.21268585669198053 -2024-09-13 20:00:00+00:00,0.1967251621583151 -2024-09-15 21:00:00+00:00,0.17391997541167653 -2024-09-15 22:00:00+00:00,0.16700554656653166 -2024-09-15 23:00:00+00:00,0.16197452676518975 -2024-09-16 00:00:00+00:00,0.1666788906367436 -2024-09-16 01:00:00+00:00,0.17219508506541564 -2024-09-16 02:00:00+00:00,0.15879185301442442 -2024-09-16 03:00:00+00:00,0.20160555536009084 -2024-09-16 04:00:00+00:00,0.2267086234618663 -2024-09-16 05:00:00+00:00,0.24904303148424098 -2024-09-16 06:00:00+00:00,0.30449293044111847 -2024-09-16 07:00:00+00:00,0.3389128749306081 -2024-09-16 08:00:00+00:00,0.3697497730740725 -2024-09-16 09:00:00+00:00,0.37447117442838956 -2024-09-16 10:00:00+00:00,0.3817687746788653 -2024-09-16 11:00:00+00:00,0.4003749393462608 -2024-09-16 12:00:00+00:00,0.39226513583706946 -2024-09-16 13:00:00+00:00,0.37422017154771825 -2024-09-16 14:00:00+00:00,0.3517164340075991 -2024-09-16 15:00:00+00:00,0.34150109417017005 -2024-09-16 16:00:00+00:00,0.330692650203089 -2024-09-16 17:00:00+00:00,0.3239460805579408 -2024-09-16 18:00:00+00:00,0.32502006408254724 -2024-09-16 19:00:00+00:00,0.3142587392803814 -2024-09-16 20:00:00+00:00,0.317344557810595 -2024-09-16 21:00:00+00:00,0.3209681898542775 -2024-09-16 22:00:00+00:00,0.339652748295518 -2024-09-16 23:00:00+00:00,0.34856440536572253 -2024-09-17 00:00:00+00:00,0.3512835111620581 -2024-09-17 01:00:00+00:00,0.3475808841174322 -2024-09-17 02:00:00+00:00,0.32156919522827027 -2024-09-17 03:00:00+00:00,0.29147512298628425 -2024-09-17 04:00:00+00:00,0.25118684585488366 -2024-09-17 05:00:00+00:00,0.24113509525198126 -2024-09-17 06:00:00+00:00,0.21926011338171883 -2024-09-17 07:00:00+00:00,0.14385053447119206 -2024-09-17 08:00:00+00:00,0.1126381722448027 -2024-09-17 09:00:00+00:00,0.10401108217445247 -2024-09-17 10:00:00+00:00,0.09201537316854978 -2024-09-17 11:00:00+00:00,0.08698534331683473 -2024-09-17 12:00:00+00:00,0.11240803237079984 -2024-09-17 13:00:00+00:00,0.2330858153568516 -2024-09-17 14:00:00+00:00,0.32046089744992085 -2024-09-17 15:00:00+00:00,0.3913416160834321 -2024-09-17 16:00:00+00:00,0.437893990962512 -2024-09-17 17:00:00+00:00,0.48999489519920447 -2024-09-17 18:00:00+00:00,0.5266578110623705 -2024-09-17 19:00:00+00:00,0.592404547012982 -2024-09-17 20:00:00+00:00,0.6560917999438121 -2024-09-17 21:00:00+00:00,0.6871766875802844 -2024-09-17 22:00:00+00:00,0.6912795229872009 -2024-09-17 23:00:00+00:00,0.6864558098680741 -2024-09-18 00:00:00+00:00,0.6680779500349026 -2024-09-18 01:00:00+00:00,0.6457220743655624 -2024-09-18 02:00:00+00:00,0.6182746344779779 -2024-09-18 03:00:00+00:00,0.5808600043828394 -2024-09-18 04:00:00+00:00,0.5371575873420349 -2024-09-18 05:00:00+00:00,0.48929696876156475 -2024-09-18 06:00:00+00:00,0.43441229501528233 -2024-09-18 07:00:00+00:00,0.3551878672027141 -2024-09-18 08:00:00+00:00,0.30601366921261836 -2024-09-18 09:00:00+00:00,0.3041626295564008 -2024-09-18 10:00:00+00:00,0.3061468987915809 -2024-09-18 11:00:00+00:00,0.3065600781811793 -2024-09-18 12:00:00+00:00,0.30799822275248684 -2024-09-18 13:00:00+00:00,0.3068824349859062 -2024-09-18 14:00:00+00:00,0.3107639948286425 -2024-09-18 15:00:00+00:00,0.2960383109235064 -2024-09-18 16:00:00+00:00,0.25858959041539303 -2024-09-18 17:00:00+00:00,0.2246160700010633 -2024-09-18 18:00:00+00:00,0.24874963095968133 -2024-09-18 19:00:00+00:00,0.2927235267503661 -2024-09-18 20:00:00+00:00,0.31852751671205065 -2024-09-18 21:00:00+00:00,0.32487339632491186 -2024-09-18 22:00:00+00:00,0.325158402625059 -2024-09-18 23:00:00+00:00,0.3673030585196487 -2024-09-19 00:00:00+00:00,0.4941203640477209 -2024-09-19 01:00:00+00:00,0.6187674505427793 -2024-09-19 02:00:00+00:00,0.6526624237922846 -2024-09-19 03:00:00+00:00,0.6853756921795698 -2024-09-19 04:00:00+00:00,0.704506628379646 -2024-09-19 05:00:00+00:00,0.6890759239043898 -2024-09-19 06:00:00+00:00,0.6670558170912825 -2024-09-19 07:00:00+00:00,0.6552554262589055 -2024-09-19 08:00:00+00:00,0.6494303150979291 -2024-09-19 09:00:00+00:00,0.6308532463092217 -2024-09-19 10:00:00+00:00,0.6227150125057755 -2024-09-19 11:00:00+00:00,0.6100826928076074 -2024-09-19 12:00:00+00:00,0.6368499182534815 -2024-09-19 13:00:00+00:00,0.6291929751345161 -2024-09-19 14:00:00+00:00,0.4993041973965884 -2024-09-19 15:00:00+00:00,0.48977785239414046 -2024-09-19 16:00:00+00:00,0.4701216275560349 -2024-09-19 17:00:00+00:00,0.43176746599999793 -2024-09-19 18:00:00+00:00,0.3907987905510263 -2024-09-19 19:00:00+00:00,0.39357825071131225 -2024-09-19 20:00:00+00:00,0.38150398695744037 -2024-09-19 21:00:00+00:00,0.3371348745579452 -2024-09-19 22:00:00+00:00,0.3313827925859545 -2024-09-19 23:00:00+00:00,0.3229253579404464 -2024-09-20 00:00:00+00:00,0.3260810158627913 -2024-09-20 01:00:00+00:00,0.3348014965079716 -2024-09-20 02:00:00+00:00,0.31929797988516684 -2024-09-20 03:00:00+00:00,0.33309906849524284 -2024-09-20 04:00:00+00:00,0.3593188694719789 -2024-09-20 05:00:00+00:00,0.3750370472375376 -2024-09-20 06:00:00+00:00,0.3785561871118672 -2024-09-20 07:00:00+00:00,0.426215595877495 -2024-09-20 08:00:00+00:00,0.4324717087926749 -2024-09-20 09:00:00+00:00,0.490378843839229 -2024-09-20 10:00:00+00:00,0.5872610353524297 -2024-09-20 11:00:00+00:00,0.6589563897887435 -2024-09-20 12:00:00+00:00,0.678248555170508 -2024-09-20 13:00:00+00:00,0.7212324539224932 -2024-09-20 14:00:00+00:00,0.7781755501182638 -2024-09-20 15:00:00+00:00,0.7882606084297635 -2024-09-20 16:00:00+00:00,0.7867190965028331 -2024-09-20 17:00:00+00:00,0.7895739340484575 -2024-09-20 18:00:00+00:00,0.7837426588005031 -2024-09-20 19:00:00+00:00,0.783439152215311 -2024-09-20 20:00:00+00:00,0.7527602120217459 -2024-09-22 21:00:00+00:00,0.710782030370767 -2024-09-22 22:00:00+00:00,0.6646945083533131 -2024-09-22 23:00:00+00:00,0.5888419410508956 -2024-09-23 00:00:00+00:00,0.46764720166498003 -2024-09-23 01:00:00+00:00,0.30940902491538036 -2024-09-23 02:00:00+00:00,0.2281456366915654 -2024-09-23 03:00:00+00:00,0.22008282523303757 -2024-09-23 04:00:00+00:00,0.21797769070901393 -2024-09-23 05:00:00+00:00,0.2162026339109199 -2024-09-23 06:00:00+00:00,0.21240319148281295 -2024-09-23 07:00:00+00:00,0.22622459139537113 -2024-09-23 08:00:00+00:00,0.23341092624132567 -2024-09-23 09:00:00+00:00,0.24939666136356783 -2024-09-23 10:00:00+00:00,0.2672698418889626 -2024-09-23 11:00:00+00:00,0.27803499867565545 -2024-09-23 12:00:00+00:00,0.27747392473821203 -2024-09-23 13:00:00+00:00,0.27866019197913583 -2024-09-23 14:00:00+00:00,0.28090453513069674 -2024-09-23 15:00:00+00:00,0.2913365344030848 -2024-09-23 16:00:00+00:00,0.31851728857320133 -2024-09-23 17:00:00+00:00,0.3365247272747192 -2024-09-23 18:00:00+00:00,0.3575972852008637 -2024-09-23 19:00:00+00:00,0.3609233005906659 -2024-09-23 20:00:00+00:00,0.3556708227734525 -2024-09-23 21:00:00+00:00,0.32903952724258556 -2024-09-23 22:00:00+00:00,0.2958306947590249 -2024-09-23 23:00:00+00:00,0.25866504954525604 -2024-09-24 00:00:00+00:00,0.21963821919200824 -2024-09-24 01:00:00+00:00,0.18867239767797897 -2024-09-24 02:00:00+00:00,0.166915484328658 -2024-09-24 03:00:00+00:00,0.17098310154500235 -2024-09-24 04:00:00+00:00,0.17921715720052048 -2024-09-24 05:00:00+00:00,0.20878649372364882 -2024-09-24 06:00:00+00:00,0.2640128584657305 -2024-09-24 07:00:00+00:00,0.31331741088180676 -2024-09-24 08:00:00+00:00,0.33714911578934764 -2024-09-24 09:00:00+00:00,0.3500245103653677 -2024-09-24 10:00:00+00:00,0.3520616123765402 -2024-09-24 11:00:00+00:00,0.3519256013836176 -2024-09-24 12:00:00+00:00,0.337199062656872 -2024-09-24 13:00:00+00:00,0.3270519795543965 -2024-09-24 14:00:00+00:00,0.3051407396836855 -2024-09-24 15:00:00+00:00,0.2922588028731561 -2024-09-24 16:00:00+00:00,0.3011384494739413 -2024-09-24 17:00:00+00:00,0.3083144796845153 -2024-09-24 18:00:00+00:00,0.3234782347903819 -2024-09-24 19:00:00+00:00,0.34938455282320324 -2024-09-24 20:00:00+00:00,0.3711816975465413 -2024-09-24 21:00:00+00:00,0.39601718126443924 -2024-09-24 22:00:00+00:00,0.4307144126041882 -2024-09-24 23:00:00+00:00,0.46891770960666074 -2024-09-25 00:00:00+00:00,0.4846210537637522 -2024-09-25 01:00:00+00:00,0.47886219033240845 -2024-09-25 02:00:00+00:00,0.4492880068722992 -2024-09-25 03:00:00+00:00,0.4087985090651212 -2024-09-25 04:00:00+00:00,0.37606305457160893 -2024-09-25 05:00:00+00:00,0.3341252364685615 -2024-09-25 06:00:00+00:00,0.3193534380306247 -2024-09-25 07:00:00+00:00,0.31167349643812714 -2024-09-25 08:00:00+00:00,0.30915240231259267 -2024-09-25 09:00:00+00:00,0.3193273192243747 -2024-09-25 10:00:00+00:00,0.36776821928885445 -2024-09-25 11:00:00+00:00,0.4076180358116711 -2024-09-25 12:00:00+00:00,0.4362704224905869 -2024-09-25 13:00:00+00:00,0.4509695373808033 -2024-09-25 14:00:00+00:00,0.48155616982675786 -2024-09-25 15:00:00+00:00,0.5036166461479606 -2024-09-25 16:00:00+00:00,0.5263290545332966 -2024-09-25 17:00:00+00:00,0.5393982904601717 -2024-09-25 18:00:00+00:00,0.5415887422681273 -2024-09-25 19:00:00+00:00,0.527390445060664 -2024-09-25 20:00:00+00:00,0.5189460878239768 -2024-09-25 21:00:00+00:00,0.5153710058267933 -2024-09-25 22:00:00+00:00,0.4946299413806741 -2024-09-25 23:00:00+00:00,0.46128464778145284 -2024-09-26 00:00:00+00:00,0.3983934050990195 -2024-09-26 01:00:00+00:00,0.3262851674375631 -2024-09-26 02:00:00+00:00,0.2936632334842752 -2024-09-26 03:00:00+00:00,0.279161809266982 -2024-09-26 04:00:00+00:00,0.24755688334231193 -2024-09-26 05:00:00+00:00,0.2351942701273947 -2024-09-26 06:00:00+00:00,0.2320041911277334 -2024-09-26 07:00:00+00:00,0.23994720354779506 -2024-09-26 08:00:00+00:00,0.220372435868222 -2024-09-26 09:00:00+00:00,0.16744614205941832 -2024-09-26 10:00:00+00:00,0.16680720029282536 -2024-09-26 11:00:00+00:00,0.19494814416044703 -2024-09-26 12:00:00+00:00,0.19366571841850264 -2024-09-26 13:00:00+00:00,0.19281987085313937 -2024-09-26 14:00:00+00:00,0.19547860285665672 -2024-09-26 15:00:00+00:00,0.1949804037819939 -2024-09-26 16:00:00+00:00,0.19795408150709862 -2024-09-26 17:00:00+00:00,0.19789935630878164 -2024-09-26 18:00:00+00:00,0.19836236768005372 -2024-09-26 19:00:00+00:00,0.19845372645331777 -2024-09-26 20:00:00+00:00,0.19405676724008145 -2024-09-26 21:00:00+00:00,0.19373771598705303 -2024-09-26 22:00:00+00:00,0.19530970673075485 -2024-09-26 23:00:00+00:00,0.20715630372946214 -2024-09-27 00:00:00+00:00,0.26502371287392484 -2024-09-27 01:00:00+00:00,0.2914340946825765 -2024-09-27 02:00:00+00:00,0.29910930930331836 -2024-09-27 03:00:00+00:00,0.3122974458771836 -2024-09-27 04:00:00+00:00,0.38137326648016573 -2024-09-27 05:00:00+00:00,0.49026753165642817 -2024-09-27 06:00:00+00:00,0.6185072096473945 -2024-09-27 07:00:00+00:00,0.7094782738162287 -2024-09-27 08:00:00+00:00,0.8024117921460074 -2024-09-27 09:00:00+00:00,0.8808299973177456 -2024-09-27 10:00:00+00:00,0.9381729430209942 -2024-09-27 11:00:00+00:00,0.9957754595054598 -2024-09-27 12:00:00+00:00,1.0881508638948494 -2024-09-27 13:00:00+00:00,1.16208164400427 -2024-09-27 14:00:00+00:00,1.2028214845301135 -2024-09-27 15:00:00+00:00,1.2500395404123537 -2024-09-27 16:00:00+00:00,1.2876865383372937 -2024-09-27 17:00:00+00:00,1.3246019421793436 -2024-09-27 18:00:00+00:00,1.3546472486897971 -2024-09-27 19:00:00+00:00,1.3593650026713648 -2024-09-27 20:00:00+00:00,1.3175106471008668 -2024-09-29 21:00:00+00:00,1.2631371930165205 -2024-09-29 22:00:00+00:00,1.1942436672649352 -2024-09-29 23:00:00+00:00,1.088924784731293 -2024-09-30 00:00:00+00:00,0.8756447789526125 -2024-09-30 01:00:00+00:00,0.3704430490516829 -2024-09-30 02:00:00+00:00,0.35362879729292024 -2024-09-30 03:00:00+00:00,0.33289932089701146 -2024-09-30 04:00:00+00:00,0.32612701749130685 -2024-09-30 05:00:00+00:00,0.35122393510441 -2024-09-30 06:00:00+00:00,0.31958342945082363 -2024-09-30 07:00:00+00:00,0.2780914795728751 -2024-09-30 08:00:00+00:00,0.278571218259554 -2024-09-30 09:00:00+00:00,0.2782881693884203 -2024-09-30 10:00:00+00:00,0.2616452549389178 -2024-09-30 11:00:00+00:00,0.26014943066274765 -2024-09-30 12:00:00+00:00,0.28784564569903137 -2024-09-30 13:00:00+00:00,0.3288578759739558 -2024-09-30 14:00:00+00:00,0.3465388676624017 -2024-09-30 15:00:00+00:00,0.37717734201194514 -2024-09-30 16:00:00+00:00,0.38870842469976485 -2024-09-30 17:00:00+00:00,0.39707433675114295 -2024-09-30 18:00:00+00:00,0.46199636585625053 -2024-09-30 19:00:00+00:00,0.5176181685183515 -2024-09-30 20:00:00+00:00,0.5546226288979512 -2024-09-30 21:00:00+00:00,0.5799831644212919 -2024-09-30 22:00:00+00:00,0.5966702584577651 -2024-09-30 23:00:00+00:00,0.6147432048054973 -2024-10-01 00:00:00+00:00,0.622561556848233 -2024-10-01 01:00:00+00:00,0.5542026491059748 -2024-10-01 02:00:00+00:00,0.5238020316699769 -2024-10-01 03:00:00+00:00,0.5301566079076607 -2024-10-01 04:00:00+00:00,0.5351183734887266 -2024-10-01 05:00:00+00:00,0.5233591299562835 -2024-10-01 06:00:00+00:00,0.5085356272396061 -2024-10-01 07:00:00+00:00,0.4610197620648041 -2024-10-01 08:00:00+00:00,0.42833593550620735 -2024-10-01 09:00:00+00:00,0.4052293696995666 -2024-10-01 10:00:00+00:00,0.36879042681352747 -2024-10-01 11:00:00+00:00,0.3478696972686581 -2024-10-01 12:00:00+00:00,0.30972432558140284 -2024-10-01 13:00:00+00:00,0.26525995187256984 -2024-10-01 14:00:00+00:00,0.2690116950383889 -2024-10-01 15:00:00+00:00,0.27097222126815657 -2024-10-01 16:00:00+00:00,0.2704574097496205 -2024-10-01 17:00:00+00:00,0.264208071839872 -2024-10-01 18:00:00+00:00,0.2582583925657019 -2024-10-01 19:00:00+00:00,0.2658455179909241 -2024-10-01 20:00:00+00:00,0.27382330061944415 -2024-10-01 21:00:00+00:00,0.2764624033904652 -2024-10-01 22:00:00+00:00,0.2837979265603357 -2024-10-01 23:00:00+00:00,0.26406328978979576 -2024-10-02 00:00:00+00:00,0.23942063285272916 -2024-10-02 01:00:00+00:00,0.2131655891154134 -2024-10-02 02:00:00+00:00,0.17586762355378172 -2024-10-02 03:00:00+00:00,0.17129115706344408 -2024-10-02 04:00:00+00:00,0.1706115546889665 -2024-10-02 05:00:00+00:00,0.1707020410068671 -2024-10-02 06:00:00+00:00,0.1742367640936474 -2024-10-02 07:00:00+00:00,0.18832694824573482 -2024-10-02 08:00:00+00:00,0.21922396013836706 -2024-10-02 09:00:00+00:00,0.2367121891418352 -2024-10-02 10:00:00+00:00,0.3174336689336674 -2024-10-02 11:00:00+00:00,0.36275756724550906 -2024-10-02 12:00:00+00:00,0.4786202097965462 -2024-10-02 13:00:00+00:00,0.6130473579754564 -2024-10-02 14:00:00+00:00,0.7598604857852995 -2024-10-02 15:00:00+00:00,0.8431810444072412 -2024-10-02 16:00:00+00:00,0.8999938289061069 -2024-10-02 17:00:00+00:00,0.9520364322783097 -2024-10-02 18:00:00+00:00,0.9894951078128686 -2024-10-02 19:00:00+00:00,1.0275701166838989 -2024-10-02 20:00:00+00:00,1.0537036672548572 -2024-10-02 21:00:00+00:00,1.0607974458011526 -2024-10-02 22:00:00+00:00,1.0729989699154692 -2024-10-02 23:00:00+00:00,1.0759236619212795 -2024-10-03 00:00:00+00:00,1.0578958957678843 -2024-10-03 01:00:00+00:00,0.9987612577423898 -2024-10-03 02:00:00+00:00,0.9290373781326268 -2024-10-03 03:00:00+00:00,0.8526112460025523 -2024-10-03 04:00:00+00:00,0.7706105764227191 -2024-10-03 05:00:00+00:00,0.6406736811810043 -2024-10-03 06:00:00+00:00,0.5531048510767083 -2024-10-03 07:00:00+00:00,0.3992331332766285 -2024-10-03 08:00:00+00:00,0.32121822385667387 -2024-10-03 09:00:00+00:00,0.2851556545779738 -2024-10-03 10:00:00+00:00,0.279839705002297 -2024-10-03 11:00:00+00:00,0.25178163047216945 -2024-10-03 12:00:00+00:00,0.21529969313581132 -2024-10-03 13:00:00+00:00,0.18488815245188217 -2024-10-03 14:00:00+00:00,0.1685639343684228 -2024-10-03 15:00:00+00:00,0.16112303233480257 -2024-10-03 16:00:00+00:00,0.15150233616873263 -2024-10-03 17:00:00+00:00,0.12921182107967635 -2024-10-03 18:00:00+00:00,0.1285342058565888 -2024-10-03 19:00:00+00:00,0.1245259958971204 -2024-10-03 20:00:00+00:00,0.1211464532202629 -2024-10-03 21:00:00+00:00,0.12311546771635092 -2024-10-03 22:00:00+00:00,0.12497127026251403 -2024-10-03 23:00:00+00:00,0.12483010547592738 -2024-10-04 00:00:00+00:00,0.1272967522282397 -2024-10-04 01:00:00+00:00,0.12780490877429013 -2024-10-04 02:00:00+00:00,0.14988262064001678 -2024-10-04 03:00:00+00:00,0.15867049595214103 -2024-10-04 04:00:00+00:00,0.19532948539474398 -2024-10-04 05:00:00+00:00,0.234374166600597 -2024-10-04 06:00:00+00:00,0.25155241678563883 -2024-10-04 07:00:00+00:00,0.26249238579656653 -2024-10-04 08:00:00+00:00,0.26758913413361834 -2024-10-04 09:00:00+00:00,0.268782635660624 -2024-10-04 10:00:00+00:00,0.26608249605398576 -2024-10-04 11:00:00+00:00,0.25932724189814294 -2024-10-04 12:00:00+00:00,0.5319506778395011 -2024-10-04 13:00:00+00:00,0.659639524741733 -2024-10-04 14:00:00+00:00,0.7668682639023869 -2024-10-04 15:00:00+00:00,0.8729307246112816 -2024-10-04 16:00:00+00:00,0.9823895464749551 -2024-10-04 17:00:00+00:00,1.0578111897350986 -2024-10-04 18:00:00+00:00,1.125138133027323 -2024-10-04 19:00:00+00:00,1.1725626220390057 -2024-10-04 20:00:00+00:00,1.2003710073284988 -2024-10-06 21:00:00+00:00,1.2193340924124687 -2024-10-06 22:00:00+00:00,1.228126192501873 -2024-10-06 23:00:00+00:00,1.2140939224805471 -2024-10-07 00:00:00+00:00,1.1649879195101054 -2024-10-07 01:00:00+00:00,1.0885525589779363 -2024-10-07 02:00:00+00:00,1.0104388051341227 -2024-10-07 03:00:00+00:00,0.9163847387683082 -2024-10-07 04:00:00+00:00,0.8026148237088676 -2024-10-07 05:00:00+00:00,0.6722920261280522 -2024-10-07 06:00:00+00:00,0.49467489587215696 -2024-10-07 07:00:00+00:00,0.20585106388134697 -2024-10-07 08:00:00+00:00,0.21584201697193925 -2024-10-07 09:00:00+00:00,0.21918314854544813 -2024-10-07 10:00:00+00:00,0.21817701040547718 -2024-10-07 11:00:00+00:00,0.22880611759383448 -2024-10-07 12:00:00+00:00,0.2300630119081782 -2024-10-07 13:00:00+00:00,0.26042816460942103 -2024-10-07 14:00:00+00:00,0.25189745193265944 -2024-10-07 15:00:00+00:00,0.2521990858858553 -2024-10-07 16:00:00+00:00,0.26146089568844094 -2024-10-07 17:00:00+00:00,0.2575826693569461 -2024-10-07 18:00:00+00:00,0.22425455455163248 -2024-10-07 19:00:00+00:00,0.20033550799440092 -2024-10-07 20:00:00+00:00,0.19854944359734913 -2024-10-07 21:00:00+00:00,0.19801554291771697 -2024-10-07 22:00:00+00:00,0.21980960056385151 -2024-10-07 23:00:00+00:00,0.21574406736980656 -2024-10-08 00:00:00+00:00,0.2163038493341116 -2024-10-08 01:00:00+00:00,0.21801909615744383 -2024-10-08 02:00:00+00:00,0.23083771349896479 -2024-10-08 03:00:00+00:00,0.2305628353096286 -2024-10-08 04:00:00+00:00,0.22367754039825954 -2024-10-08 05:00:00+00:00,0.21493854072523305 -2024-10-08 06:00:00+00:00,0.16509633543243496 -2024-10-08 07:00:00+00:00,0.17990169822923413 -2024-10-08 08:00:00+00:00,0.17729976838063038 -2024-10-08 09:00:00+00:00,0.17997546608948856 -2024-10-08 10:00:00+00:00,0.17028906530516041 -2024-10-08 11:00:00+00:00,0.16600230649744196 -2024-10-08 12:00:00+00:00,0.16698385511102073 -2024-10-08 13:00:00+00:00,0.18071841275828124 -2024-10-08 14:00:00+00:00,0.19553119948759254 -2024-10-08 15:00:00+00:00,0.20313849948514454 -2024-10-08 16:00:00+00:00,0.20150933104793856 -2024-10-08 17:00:00+00:00,0.20686061280721688 -2024-10-08 18:00:00+00:00,0.21328431722272784 -2024-10-08 19:00:00+00:00,0.22080748336509465 -2024-10-08 20:00:00+00:00,0.22000389344538168 -2024-10-08 21:00:00+00:00,0.22008784723286665 -2024-10-08 22:00:00+00:00,0.20602791705233883 -2024-10-08 23:00:00+00:00,0.20326903995678935 -2024-10-09 00:00:00+00:00,0.20573667373796853 -2024-10-09 01:00:00+00:00,0.2045940524287313 -2024-10-09 02:00:00+00:00,0.2063169763017578 -2024-10-09 03:00:00+00:00,0.1701966663501781 -2024-10-09 04:00:00+00:00,0.15801835328094796 -2024-10-09 05:00:00+00:00,0.16145792176303847 -2024-10-09 06:00:00+00:00,0.14797982606141308 -2024-10-09 07:00:00+00:00,0.1322745449322954 -2024-10-09 08:00:00+00:00,0.15364191956514422 -2024-10-09 09:00:00+00:00,0.1674291286841116 -2024-10-09 10:00:00+00:00,0.1779800697753036 -2024-10-09 11:00:00+00:00,0.19449242976857986 -2024-10-09 12:00:00+00:00,0.22185424322600594 -2024-10-09 13:00:00+00:00,0.26903188516882937 -2024-10-09 14:00:00+00:00,0.30933878545207294 -2024-10-09 15:00:00+00:00,0.34307930643055184 -2024-10-09 16:00:00+00:00,0.3672600684384581 -2024-10-09 17:00:00+00:00,0.3804128608651995 -2024-10-09 18:00:00+00:00,0.3985530935722378 -2024-10-09 19:00:00+00:00,0.40012893971337377 -2024-10-09 20:00:00+00:00,0.39855664257875956 -2024-10-09 21:00:00+00:00,0.3773421279877257 -2024-10-09 22:00:00+00:00,0.35957999984880756 -2024-10-09 23:00:00+00:00,0.3362973738520683 -2024-10-10 00:00:00+00:00,0.3085202159663296 -2024-10-10 01:00:00+00:00,0.2945344005946653 -2024-10-10 02:00:00+00:00,0.2641573294699693 -2024-10-10 03:00:00+00:00,0.2374135631676323 -2024-10-10 04:00:00+00:00,0.23034164551867248 -2024-10-10 05:00:00+00:00,0.19893301564336507 -2024-10-10 06:00:00+00:00,0.15112312852832152 -2024-10-10 07:00:00+00:00,0.11377859375680946 -2024-10-10 08:00:00+00:00,0.09709404002215392 -2024-10-10 09:00:00+00:00,0.11960575579093766 -2024-10-10 10:00:00+00:00,0.14261005898444534 -2024-10-10 11:00:00+00:00,0.1508211208765681 -2024-10-10 12:00:00+00:00,0.19374918669375676 -2024-10-10 13:00:00+00:00,0.23123864974067224 -2024-10-10 14:00:00+00:00,0.23808532300112217 -2024-10-10 15:00:00+00:00,0.25489912860835584 -2024-10-10 16:00:00+00:00,0.24716720843013607 -2024-10-10 17:00:00+00:00,0.24774326158332488 -2024-10-10 18:00:00+00:00,0.24680273387739954 -2024-10-10 19:00:00+00:00,0.2578695048945255 -2024-10-10 20:00:00+00:00,0.261288885248623 -2024-10-10 21:00:00+00:00,0.26951146831702727 -2024-10-10 22:00:00+00:00,0.2617630255676535 -2024-10-10 23:00:00+00:00,0.24838113216874308 -2024-10-11 00:00:00+00:00,0.22186635967211307 -2024-10-11 01:00:00+00:00,0.1910948785465681 -2024-10-11 02:00:00+00:00,0.17193373869433293 -2024-10-11 03:00:00+00:00,0.15826875036936391 -2024-10-11 04:00:00+00:00,0.1347462624274794 -2024-10-11 05:00:00+00:00,0.1276904562078702 -2024-10-11 06:00:00+00:00,0.12250409220330506 -2024-10-11 07:00:00+00:00,0.10712358812535462 -2024-10-11 08:00:00+00:00,0.10686740419900696 -2024-10-11 09:00:00+00:00,0.11778002456079831 -2024-10-11 10:00:00+00:00,0.14295206217582304 -2024-10-11 11:00:00+00:00,0.15248489131836082 -2024-10-11 12:00:00+00:00,0.16420208978851614 -2024-10-11 13:00:00+00:00,0.18112879969906165 -2024-10-11 14:00:00+00:00,0.21313403239438863 -2024-10-11 15:00:00+00:00,0.21954558326957382 -2024-10-11 16:00:00+00:00,0.21646443727991485 -2024-10-11 17:00:00+00:00,0.20960436409834163 -2024-10-11 18:00:00+00:00,0.21147188434913217 -2024-10-11 19:00:00+00:00,0.21498026831539227 -2024-10-11 20:00:00+00:00,0.19383120702730622 -2024-10-13 21:00:00+00:00,0.19397682980684325 -2024-10-13 22:00:00+00:00,0.199720455892695 -2024-10-13 23:00:00+00:00,0.2006661012385007 -2024-10-14 00:00:00+00:00,0.1920747112782691 -2024-10-14 01:00:00+00:00,0.1769328968164021 -2024-10-14 02:00:00+00:00,0.16154318300662598 -2024-10-14 03:00:00+00:00,0.14987464051903546 -2024-10-14 04:00:00+00:00,0.1220847310476638 -2024-10-14 05:00:00+00:00,0.11176309520476028 -2024-10-14 06:00:00+00:00,0.10912648372308628 -2024-10-14 07:00:00+00:00,0.10845765594928332 -2024-10-14 08:00:00+00:00,0.11527106487410353 -2024-10-14 09:00:00+00:00,0.11849533625013207 -2024-10-14 10:00:00+00:00,0.13522545492778873 -2024-10-14 11:00:00+00:00,0.15873377240709202 -2024-10-14 12:00:00+00:00,0.17898864261978642 -2024-10-14 13:00:00+00:00,0.19741766432351454 -2024-10-14 14:00:00+00:00,0.2187556855866894 -2024-10-14 15:00:00+00:00,0.23295137843210062 -2024-10-14 16:00:00+00:00,0.25007688812974377 -2024-10-14 17:00:00+00:00,0.2548413076445735 -2024-10-14 18:00:00+00:00,0.26809960340368194 -2024-10-14 19:00:00+00:00,0.2687013358202272 -2024-10-14 20:00:00+00:00,0.2615467905769517 -2024-10-14 21:00:00+00:00,0.2512579875202797 -2024-10-14 22:00:00+00:00,0.2442752706921678 -2024-10-14 23:00:00+00:00,0.23552340363803992 -2024-10-15 00:00:00+00:00,0.22159650381579335 -2024-10-15 01:00:00+00:00,0.20039253578452088 -2024-10-15 02:00:00+00:00,0.17053164539874335 -2024-10-15 03:00:00+00:00,0.15206158717100737 -2024-10-15 04:00:00+00:00,0.13768364761040686 -2024-10-15 05:00:00+00:00,0.11743821434163425 -2024-10-15 06:00:00+00:00,0.14331672682464555 -2024-10-15 07:00:00+00:00,0.17934274002093067 -2024-10-15 08:00:00+00:00,0.2163483788470231 -2024-10-15 09:00:00+00:00,0.27307700856826495 -2024-10-15 10:00:00+00:00,0.2877854829338479 -2024-10-15 11:00:00+00:00,0.28652241572647397 -2024-10-15 12:00:00+00:00,0.2919897077817739 -2024-10-15 13:00:00+00:00,0.28887560604211926 -2024-10-15 14:00:00+00:00,0.27704289517352754 -2024-10-15 15:00:00+00:00,0.2715682476551572 -2024-10-15 16:00:00+00:00,0.2607762904498338 -2024-10-15 17:00:00+00:00,0.24701310422878292 -2024-10-15 18:00:00+00:00,0.2349218458566393 -2024-10-15 19:00:00+00:00,0.22172721499889322 -2024-10-15 20:00:00+00:00,0.216620113702767 -2024-10-15 21:00:00+00:00,0.21341891095988366 -2024-10-15 22:00:00+00:00,0.20141995923024106 -2024-10-15 23:00:00+00:00,0.18045622731355845 -2024-10-16 00:00:00+00:00,0.15214967518995345 -2024-10-16 01:00:00+00:00,0.12834078802495966 -2024-10-16 02:00:00+00:00,0.1289348671853596 -2024-10-16 03:00:00+00:00,0.1288897018355529 -2024-10-16 04:00:00+00:00,0.12921849092589355 -2024-10-16 05:00:00+00:00,0.11255561187980427 -2024-10-16 06:00:00+00:00,0.11112207595995789 -2024-10-16 07:00:00+00:00,0.11846807243605319 -2024-10-16 08:00:00+00:00,0.12279310788742126 -2024-10-16 09:00:00+00:00,0.12169654874416365 -2024-10-16 10:00:00+00:00,0.12424994960263648 -2024-10-16 11:00:00+00:00,0.12585307840761414 -2024-10-16 12:00:00+00:00,0.12608180292525747 -2024-10-16 13:00:00+00:00,0.12045877205796288 -2024-10-16 14:00:00+00:00,0.145939569243624 -2024-10-16 15:00:00+00:00,0.1750888796177649 -2024-10-16 16:00:00+00:00,0.19963574718806396 -2024-10-16 17:00:00+00:00,0.21864931662518527 -2024-10-16 18:00:00+00:00,0.2354645743333494 -2024-10-16 19:00:00+00:00,0.2363760607207235 -2024-10-16 20:00:00+00:00,0.23927178991747228 -2024-10-16 21:00:00+00:00,0.22140898089010705 -2024-10-16 22:00:00+00:00,0.2046280064638694 -2024-10-16 23:00:00+00:00,0.19142773812631864 -2024-10-17 00:00:00+00:00,0.18312592727404584 -2024-10-17 01:00:00+00:00,0.18217469920231918 -2024-10-17 02:00:00+00:00,0.17411611364107504 -2024-10-17 03:00:00+00:00,0.17326010254743185 -2024-10-17 04:00:00+00:00,0.17251806916200657 -2024-10-17 05:00:00+00:00,0.16123577857497057 -2024-10-17 06:00:00+00:00,0.1571997973685259 -2024-10-17 07:00:00+00:00,0.13409677368910566 -2024-10-17 08:00:00+00:00,0.14003739154119405 -2024-10-17 09:00:00+00:00,0.12096562138069189 -2024-10-17 10:00:00+00:00,0.12097380089665853 -2024-10-17 11:00:00+00:00,0.12109234179007682 -2024-10-17 12:00:00+00:00,0.1273942388113376 -2024-10-17 13:00:00+00:00,0.12919233918222972 -2024-10-17 14:00:00+00:00,0.1537388334951734 -2024-10-17 15:00:00+00:00,0.18844680242857803 -2024-10-17 16:00:00+00:00,0.2254161998062585 -2024-10-17 17:00:00+00:00,0.25713694892720534 -2024-10-17 18:00:00+00:00,0.2831063589954739 -2024-10-17 19:00:00+00:00,0.29770306643853706 -2024-10-17 20:00:00+00:00,0.30724416396947646 -2024-10-17 21:00:00+00:00,0.2984333258495184 -2024-10-17 22:00:00+00:00,0.28918358761540813 -2024-10-17 23:00:00+00:00,0.28107695140181865 -2024-10-18 00:00:00+00:00,0.2672983745376163 -2024-10-18 01:00:00+00:00,0.2467869099552215 -2024-10-18 02:00:00+00:00,0.23372662276351336 -2024-10-18 03:00:00+00:00,0.22934443754003847 -2024-10-18 04:00:00+00:00,0.22728546270467978 -2024-10-18 05:00:00+00:00,0.21301134138094238 -2024-10-18 06:00:00+00:00,0.1928093139787273 -2024-10-18 07:00:00+00:00,0.15256628405613235 -2024-10-18 08:00:00+00:00,0.14686334492765105 -2024-10-18 09:00:00+00:00,0.1360082330293828 -2024-10-18 10:00:00+00:00,0.13859365056914136 -2024-10-18 11:00:00+00:00,0.1383610455490839 -2024-10-18 12:00:00+00:00,0.1400275442044221 -2024-10-18 13:00:00+00:00,0.14651204361872514 -2024-10-18 14:00:00+00:00,0.16024102726828057 -2024-10-18 15:00:00+00:00,0.1735985916718385 -2024-10-18 16:00:00+00:00,0.19871889688129987 -2024-10-18 17:00:00+00:00,0.20106869074698214 -2024-10-18 18:00:00+00:00,0.19992853322781332 -2024-10-18 19:00:00+00:00,0.20259277271524545 -2024-10-18 20:00:00+00:00,0.20446167438723742 -2024-10-20 21:00:00+00:00,0.20466205129565318 -2024-10-20 22:00:00+00:00,0.20574994398791063 -2024-10-20 23:00:00+00:00,0.20545299751484708 -2024-10-21 00:00:00+00:00,0.21587581098104022 -2024-10-21 01:00:00+00:00,0.23916072547294753 -2024-10-21 02:00:00+00:00,0.24979772865308472 -2024-10-21 03:00:00+00:00,0.2421697696769801 -2024-10-21 04:00:00+00:00,0.23691750724686403 -2024-10-21 05:00:00+00:00,0.22558289403699905 -2024-10-21 06:00:00+00:00,0.20626943921908295 -2024-10-21 07:00:00+00:00,0.18789207422276819 -2024-10-21 08:00:00+00:00,0.19685714825451747 -2024-10-21 09:00:00+00:00,0.2267961291278167 -2024-10-21 10:00:00+00:00,0.24420812409011214 -2024-10-21 11:00:00+00:00,0.25785116061314567 -2024-10-21 12:00:00+00:00,0.2667405796257459 -2024-10-21 13:00:00+00:00,0.29249278439716464 -2024-10-21 14:00:00+00:00,0.32228873533601937 -2024-10-21 15:00:00+00:00,0.3680860882976778 -2024-10-21 16:00:00+00:00,0.4076333330186243 -2024-10-21 17:00:00+00:00,0.46064742480283616 -2024-10-21 18:00:00+00:00,0.5039530157493725 -2024-10-21 19:00:00+00:00,0.5379040488481487 -2024-10-21 20:00:00+00:00,0.5565153116340877 -2024-10-21 21:00:00+00:00,0.5458127184871274 -2024-10-21 22:00:00+00:00,0.5224472272310599 -2024-10-21 23:00:00+00:00,0.4836418721582558 -2024-10-22 00:00:00+00:00,0.441967205236876 -2024-10-22 01:00:00+00:00,0.3912979581904205 -2024-10-22 02:00:00+00:00,0.36627919675961046 -2024-10-22 03:00:00+00:00,0.3566744202830512 -2024-10-22 04:00:00+00:00,0.34548371502505176 -2024-10-22 05:00:00+00:00,0.3358015704490083 -2024-10-22 06:00:00+00:00,0.30825817525388455 -2024-10-22 07:00:00+00:00,0.2767631706188069 -2024-10-22 08:00:00+00:00,0.22657831800514333 -2024-10-22 09:00:00+00:00,0.1848927426790674 -2024-10-22 10:00:00+00:00,0.14280073522103334 -2024-10-22 11:00:00+00:00,0.1249239241371245 -2024-10-22 12:00:00+00:00,0.1093287051475113 -2024-10-22 13:00:00+00:00,0.1108197207454213 -2024-10-22 14:00:00+00:00,0.11550505790160549 -2024-10-22 15:00:00+00:00,0.12988476666421306 -2024-10-22 16:00:00+00:00,0.1380409930757497 -2024-10-22 17:00:00+00:00,0.1370794140976939 -2024-10-22 18:00:00+00:00,0.13578915537250613 -2024-10-22 19:00:00+00:00,0.12872339778722586 -2024-10-22 20:00:00+00:00,0.11568382492150167 -2024-10-22 21:00:00+00:00,0.0977679717283886 -2024-10-22 22:00:00+00:00,0.09612923034899147 -2024-10-22 23:00:00+00:00,0.10381809740391658 -2024-10-23 00:00:00+00:00,0.14753540157216558 -2024-10-23 01:00:00+00:00,0.19984825817629434 -2024-10-23 02:00:00+00:00,0.2455087092064228 -2024-10-23 03:00:00+00:00,0.2844770640675597 -2024-10-23 04:00:00+00:00,0.35045430662677274 -2024-10-23 05:00:00+00:00,0.4051014525064908 -2024-10-23 06:00:00+00:00,0.4542805155661322 -2024-10-23 07:00:00+00:00,0.4968786227747874 -2024-10-23 08:00:00+00:00,0.5314900999050237 -2024-10-23 09:00:00+00:00,0.5829261463399356 -2024-10-23 10:00:00+00:00,0.6291455588273659 -2024-10-23 11:00:00+00:00,0.6875133893301334 -2024-10-23 12:00:00+00:00,0.7260683670745689 -2024-10-23 13:00:00+00:00,0.743520705465587 -2024-10-23 14:00:00+00:00,0.7481864582431152 -2024-10-23 15:00:00+00:00,0.7319793263428362 -2024-10-23 16:00:00+00:00,0.7043726790809159 -2024-10-23 17:00:00+00:00,0.655777519625643 -2024-10-23 18:00:00+00:00,0.5893233831975369 -2024-10-23 19:00:00+00:00,0.5122712172117058 -2024-10-23 20:00:00+00:00,0.45823596539743133 -2024-10-23 21:00:00+00:00,0.4086838019592149 -2024-10-23 22:00:00+00:00,0.3582778214631485 -2024-10-23 23:00:00+00:00,0.292190866756059 -2024-10-24 00:00:00+00:00,0.2542585919159724 -2024-10-24 01:00:00+00:00,0.21964567156408218 -2024-10-24 02:00:00+00:00,0.20621635925970286 -2024-10-24 03:00:00+00:00,0.2039686443524123 -2024-10-24 04:00:00+00:00,0.2251410025669064 -2024-10-24 05:00:00+00:00,0.2389486786671815 -2024-10-24 06:00:00+00:00,0.2802235949058623 -2024-10-24 07:00:00+00:00,0.2919690682693433 -2024-10-24 08:00:00+00:00,0.30570113971973567 -2024-10-24 09:00:00+00:00,0.31098324118753007 -2024-10-24 10:00:00+00:00,0.32328567696534505 -2024-10-24 11:00:00+00:00,0.3256215877434065 -2024-10-24 12:00:00+00:00,0.32042108394427304 -2024-10-24 13:00:00+00:00,0.30995107845586867 -2024-10-24 14:00:00+00:00,0.3164033526405587 -2024-10-24 15:00:00+00:00,0.32590935127165493 -2024-10-24 16:00:00+00:00,0.3325735810691083 -2024-10-24 17:00:00+00:00,0.3414839288562649 -2024-10-24 18:00:00+00:00,0.3232811835956457 -2024-10-24 19:00:00+00:00,0.293341452708989 -2024-10-24 20:00:00+00:00,0.26890582871970825 -2024-10-24 21:00:00+00:00,0.22897999793907445 -2024-10-24 22:00:00+00:00,0.2165735258236234 -2024-10-24 23:00:00+00:00,0.19562027524673237 -2024-10-25 00:00:00+00:00,0.18574586482102382 -2024-10-25 01:00:00+00:00,0.15308979127553105 -2024-10-25 02:00:00+00:00,0.1496919204060965 -2024-10-25 03:00:00+00:00,0.13931259807426713 -2024-10-25 04:00:00+00:00,0.14124367701938892 -2024-10-25 05:00:00+00:00,0.14108619046538207 -2024-10-25 06:00:00+00:00,0.1411040955167997 -2024-10-25 07:00:00+00:00,0.13559541205956624 -2024-10-25 08:00:00+00:00,0.12999761124531714 -2024-10-25 09:00:00+00:00,0.10599349524725198 -2024-10-25 10:00:00+00:00,0.10468724088037855 -2024-10-25 11:00:00+00:00,0.10459358681648695 -2024-10-25 12:00:00+00:00,0.1011663038503522 -2024-10-25 13:00:00+00:00,0.09526278051040973 -2024-10-25 14:00:00+00:00,0.10196246720739019 -2024-10-25 15:00:00+00:00,0.11224094141430972 -2024-10-25 16:00:00+00:00,0.13137707876318316 -2024-10-25 17:00:00+00:00,0.1425995035171294 -2024-10-25 18:00:00+00:00,0.15041332521885314 -2024-10-25 19:00:00+00:00,0.1605595478426683 -2024-10-25 20:00:00+00:00,0.17713081690719695 -2024-10-27 21:00:00+00:00,0.27568066954628134 -2024-10-27 22:00:00+00:00,0.3389657799581806 -2024-10-27 23:00:00+00:00,0.38479625160067815 -2024-10-28 00:00:00+00:00,0.47000346021549444 -2024-10-28 01:00:00+00:00,0.5768983308986988 -2024-10-28 02:00:00+00:00,0.6267837199244243 -2024-10-28 03:00:00+00:00,0.6708561281827615 -2024-10-28 04:00:00+00:00,0.7030881804278774 -2024-10-28 05:00:00+00:00,0.7183937840288069 -2024-10-28 06:00:00+00:00,0.7120446541177751 -2024-10-28 07:00:00+00:00,0.6862146434070665 -2024-10-28 08:00:00+00:00,0.6555374974100523 -2024-10-28 09:00:00+00:00,0.622547692094176 -2024-10-28 10:00:00+00:00,0.5933494931632634 -2024-10-28 11:00:00+00:00,0.5596524861444792 -2024-10-28 12:00:00+00:00,0.5352693640493981 -2024-10-28 13:00:00+00:00,0.5010274285856737 -2024-10-28 14:00:00+00:00,0.4654831643577582 -2024-10-28 15:00:00+00:00,0.42340412446786596 -2024-10-28 16:00:00+00:00,0.3769155845539651 -2024-10-28 17:00:00+00:00,0.3735777802274806 -2024-10-28 18:00:00+00:00,0.369658772220711 -2024-10-28 19:00:00+00:00,0.3650334375250172 -2024-10-28 20:00:00+00:00,0.3609453814721144 -2024-10-28 21:00:00+00:00,0.328576931608012 -2024-10-28 22:00:00+00:00,0.31690647381018106 -2024-10-28 23:00:00+00:00,0.29746576978769024 -2024-10-29 00:00:00+00:00,0.27386809634442266 -2024-10-29 01:00:00+00:00,0.2571342880480803 -2024-10-29 02:00:00+00:00,0.24558027412094618 -2024-10-29 03:00:00+00:00,0.2370159832172638 -2024-10-29 04:00:00+00:00,0.23632388008921212 -2024-10-29 05:00:00+00:00,0.23959471808032298 -2024-10-29 06:00:00+00:00,0.20992687319619616 -2024-10-29 07:00:00+00:00,0.19695879207130146 -2024-10-29 08:00:00+00:00,0.17864444983954322 -2024-10-29 09:00:00+00:00,0.1696917561053498 -2024-10-29 10:00:00+00:00,0.16866125342219493 -2024-10-29 11:00:00+00:00,0.20345108680413118 -2024-10-29 12:00:00+00:00,0.2407227002300405 -2024-10-29 13:00:00+00:00,0.2608765134085175 -2024-10-29 14:00:00+00:00,0.2629871869718255 -2024-10-29 15:00:00+00:00,0.2690221864961491 -2024-10-29 16:00:00+00:00,0.2769644238712822 -2024-10-29 17:00:00+00:00,0.2789273579943969 -2024-10-29 18:00:00+00:00,0.2808710651674041 -2024-10-29 19:00:00+00:00,0.2806052480769025 -2024-10-29 20:00:00+00:00,0.2734233078000738 -2024-10-29 21:00:00+00:00,0.2592948737714771 -2024-10-29 22:00:00+00:00,0.24783000856058637 -2024-10-29 23:00:00+00:00,0.23808257631158808 -2024-10-30 00:00:00+00:00,0.2174839074168489 -2024-10-30 01:00:00+00:00,0.1811523057542361 -2024-10-30 02:00:00+00:00,0.15756165037718275 -2024-10-30 03:00:00+00:00,0.1480041250709586 -2024-10-30 04:00:00+00:00,0.14850818685962036 -2024-10-30 05:00:00+00:00,0.15416678421043595 -2024-10-30 06:00:00+00:00,0.15633717773854577 -2024-10-30 07:00:00+00:00,0.14313956195213615 -2024-10-30 08:00:00+00:00,0.15944306849309609 -2024-10-30 09:00:00+00:00,0.1517408715225846 -2024-10-30 10:00:00+00:00,0.17611404046321763 -2024-10-30 11:00:00+00:00,0.17728724086789144 -2024-10-30 12:00:00+00:00,0.1657939113408224 -2024-10-30 13:00:00+00:00,0.17495082011438187 -2024-10-30 14:00:00+00:00,0.16916279137267431 -2024-10-30 15:00:00+00:00,0.16265975947784433 -2024-10-30 16:00:00+00:00,0.1604271518090764 -2024-10-30 17:00:00+00:00,0.1550784096604733 -2024-10-30 18:00:00+00:00,0.15477021162348387 -2024-10-30 19:00:00+00:00,0.15590262644451217 -2024-10-30 20:00:00+00:00,0.16317393846895567 -2024-10-30 21:00:00+00:00,0.16613858351486147 -2024-10-30 22:00:00+00:00,0.165767306743384 -2024-10-30 23:00:00+00:00,0.1628297786863643 -2024-10-31 00:00:00+00:00,0.17562695958288885 -2024-10-31 01:00:00+00:00,0.1872815217955045 -2024-10-31 02:00:00+00:00,0.1917248301898216 -2024-10-31 03:00:00+00:00,0.19367750592353802 -2024-10-31 04:00:00+00:00,0.18796255922175029 -2024-10-31 05:00:00+00:00,0.20296524847919495 -2024-10-31 06:00:00+00:00,0.30067406288230647 -2024-10-31 07:00:00+00:00,0.3634387336852106 -2024-10-31 08:00:00+00:00,0.3932239351090121 -2024-10-31 09:00:00+00:00,0.40932587710636664 -2024-10-31 10:00:00+00:00,0.4268429268421076 -2024-10-31 11:00:00+00:00,0.4306599708713176 -2024-10-31 12:00:00+00:00,0.4354134000371356 -2024-10-31 13:00:00+00:00,0.4313142064914472 -2024-10-31 14:00:00+00:00,0.43400158862820887 -2024-10-31 15:00:00+00:00,0.44296435639561377 -2024-10-31 16:00:00+00:00,0.43536404607619406 -2024-10-31 17:00:00+00:00,0.4426237085296787 -2024-10-31 18:00:00+00:00,0.4532012913820307 -2024-10-31 19:00:00+00:00,0.4675132871567493 -2024-10-31 20:00:00+00:00,0.43801801210809227 -2024-10-31 21:00:00+00:00,0.394829513487101 -2024-10-31 22:00:00+00:00,0.34425136162910264 -2024-10-31 23:00:00+00:00,0.3265800457761931 -2024-11-01 00:00:00+00:00,0.3098524436331172 -2024-11-01 01:00:00+00:00,0.28984996115790745 -2024-11-01 02:00:00+00:00,0.2882785750369895 -2024-11-01 03:00:00+00:00,0.288863817821523 -2024-11-01 04:00:00+00:00,0.29072198690069334 -2024-11-01 05:00:00+00:00,0.28998410116874174 -2024-11-01 06:00:00+00:00,0.28855317850506035 -2024-11-01 07:00:00+00:00,0.27841753949606146 -2024-11-01 08:00:00+00:00,0.2748121415460748 -2024-11-01 09:00:00+00:00,0.253019548826747 -2024-11-01 10:00:00+00:00,0.25870179435846097 -2024-11-01 11:00:00+00:00,0.27175168131780203 -2024-11-01 12:00:00+00:00,0.276969934686182 -2024-11-01 13:00:00+00:00,0.27686695928034377 -2024-11-01 14:00:00+00:00,0.2990306972169653 -2024-11-01 15:00:00+00:00,0.3100021052292682 -2024-11-01 16:00:00+00:00,0.316352884216218 -2024-11-01 17:00:00+00:00,0.31946937499942757 -2024-11-01 18:00:00+00:00,0.31978658588186065 -2024-11-01 19:00:00+00:00,0.3060380909979099 -2024-11-01 20:00:00+00:00,0.29068785933159313 -2024-11-03 22:00:00+00:00,0.2688910755495271 -2024-11-03 23:00:00+00:00,0.26930151363670957 -2024-11-04 00:00:00+00:00,0.2944789153110629 -2024-11-04 01:00:00+00:00,0.34847249757006116 -2024-11-04 02:00:00+00:00,0.3896239043305818 -2024-11-04 03:00:00+00:00,0.4298067466400716 -2024-11-04 04:00:00+00:00,0.4576535807612241 -2024-11-04 05:00:00+00:00,0.47728105753133854 -2024-11-04 06:00:00+00:00,0.47538543916795456 -2024-11-04 07:00:00+00:00,0.47438417418821 -2024-11-04 08:00:00+00:00,0.4741675808405434 -2024-11-04 09:00:00+00:00,0.4808472675602506 -2024-11-04 10:00:00+00:00,0.49566627141135666 -2024-11-04 11:00:00+00:00,0.5049866986095779 -2024-11-04 12:00:00+00:00,0.4872765641635323 -2024-11-04 13:00:00+00:00,0.4650431898264583 -2024-11-04 14:00:00+00:00,0.433595891760093 -2024-11-04 15:00:00+00:00,0.38278406718145963 -2024-11-04 16:00:00+00:00,0.31534565827541633 -2024-11-04 17:00:00+00:00,0.21027372507334344 -2024-11-04 18:00:00+00:00,0.17857431737124368 -2024-11-04 19:00:00+00:00,0.16557913510610753 -2024-11-04 20:00:00+00:00,0.1700307324647332 -2024-11-04 21:00:00+00:00,0.17280328786893848 -2024-11-04 22:00:00+00:00,0.17428303502734757 -2024-11-04 23:00:00+00:00,0.18023518986816914 -2024-11-05 00:00:00+00:00,0.18726328210504195 -2024-11-05 01:00:00+00:00,0.1924008630124821 -2024-11-05 02:00:00+00:00,0.1973473026859779 -2024-11-05 03:00:00+00:00,0.2102708528580693 -2024-11-05 04:00:00+00:00,0.23022356979251452 -2024-11-05 05:00:00+00:00,0.2397672994332833 -2024-11-05 06:00:00+00:00,0.23680791123808748 -2024-11-05 07:00:00+00:00,0.19781958815190348 -2024-11-05 08:00:00+00:00,0.18011670919241676 -2024-11-05 09:00:00+00:00,0.1611486400609527 -2024-11-05 10:00:00+00:00,0.13586962591456658 -2024-11-05 11:00:00+00:00,0.12649671301687387 -2024-11-05 12:00:00+00:00,0.1183104746169885 -2024-11-05 13:00:00+00:00,0.114604583282536 -2024-11-05 14:00:00+00:00,0.1413668147013871 -2024-11-05 15:00:00+00:00,0.14628532855839818 -2024-11-05 16:00:00+00:00,0.15667922303346418 -2024-11-05 17:00:00+00:00,0.1958536241386052 -2024-11-05 18:00:00+00:00,0.24161472154470245 -2024-11-05 19:00:00+00:00,0.28644277004169105 -2024-11-05 20:00:00+00:00,0.31203405260127476 -2024-11-05 21:00:00+00:00,0.3248854818216825 -2024-11-05 22:00:00+00:00,0.33522794677420326 -2024-11-05 23:00:00+00:00,0.34675198171701427 -2024-11-06 00:00:00+00:00,0.3921157824223825 -2024-11-06 01:00:00+00:00,0.4353321901400485 -2024-11-06 02:00:00+00:00,0.6272158593286262 -2024-11-06 03:00:00+00:00,0.7500697441142468 -2024-11-06 04:00:00+00:00,0.8104069331832798 -2024-11-06 05:00:00+00:00,0.875925908597112 -2024-11-06 06:00:00+00:00,0.9557424559412885 -2024-11-06 07:00:00+00:00,1.0113043635686847 -2024-11-06 08:00:00+00:00,1.0560659007968398 -2024-11-06 09:00:00+00:00,1.0927668540692175 -2024-11-06 10:00:00+00:00,1.1106090837131777 -2024-11-06 11:00:00+00:00,1.1392073652487313 -2024-11-06 12:00:00+00:00,1.1636687390297455 -2024-11-06 13:00:00+00:00,1.1517952623190382 -2024-11-06 14:00:00+00:00,1.1130681683317822 -2024-11-06 15:00:00+00:00,1.0476395962684562 -2024-11-06 16:00:00+00:00,0.9748527500069638 -2024-11-06 17:00:00+00:00,0.8841208300289985 -2024-11-06 18:00:00+00:00,0.7384836455352377 -2024-11-06 19:00:00+00:00,0.4732671299617719 -2024-11-06 20:00:00+00:00,0.40647617912633754 -2024-11-06 21:00:00+00:00,0.3116330669358283 -2024-11-06 22:00:00+00:00,0.3174316171489083 -2024-11-06 23:00:00+00:00,0.31065082782597586 -2024-11-07 00:00:00+00:00,0.2735264058985799 -2024-11-07 01:00:00+00:00,0.24449961788296912 -2024-11-07 02:00:00+00:00,0.23582299336066714 -2024-11-07 03:00:00+00:00,0.215022954680949 -2024-11-07 04:00:00+00:00,0.1906759168072274 -2024-11-07 05:00:00+00:00,0.1894000499854425 -2024-11-07 06:00:00+00:00,0.19628915295059288 -2024-11-07 07:00:00+00:00,0.2112305798927572 -2024-11-07 08:00:00+00:00,0.2237292712837647 -2024-11-07 09:00:00+00:00,0.24136375690007936 -2024-11-07 10:00:00+00:00,0.2515342395603648 -2024-11-07 11:00:00+00:00,0.2578492215221996 -2024-11-07 12:00:00+00:00,0.2763633906129837 -2024-11-07 13:00:00+00:00,0.3090239983653837 -2024-11-07 14:00:00+00:00,0.3746408104154808 -2024-11-07 15:00:00+00:00,0.4519180642866804 -2024-11-07 16:00:00+00:00,0.4828692641928661 -2024-11-07 17:00:00+00:00,0.5076524297783798 -2024-11-07 18:00:00+00:00,0.5292067549264049 -2024-11-07 19:00:00+00:00,0.5433100888236005 -2024-11-07 20:00:00+00:00,0.5475786316872636 -2024-11-07 21:00:00+00:00,0.5395490904804033 -2024-11-07 22:00:00+00:00,0.5236135175632143 -2024-11-07 23:00:00+00:00,0.49623677496477514 -2024-11-08 00:00:00+00:00,0.4742616727037504 -2024-11-08 01:00:00+00:00,0.45984199515861646 -2024-11-08 02:00:00+00:00,0.4445507815238662 -2024-11-08 03:00:00+00:00,0.4318443036749693 -2024-11-08 04:00:00+00:00,0.41039295672827947 -2024-11-08 05:00:00+00:00,0.3827557830502155 -2024-11-08 06:00:00+00:00,0.3356739332421562 -2024-11-08 07:00:00+00:00,0.2644658966875523 -2024-11-08 08:00:00+00:00,0.24689995840012724 -2024-11-08 09:00:00+00:00,0.2571691793864302 -2024-11-08 10:00:00+00:00,0.2920030460996131 -2024-11-08 11:00:00+00:00,0.3054117151870688 -2024-11-08 12:00:00+00:00,0.3116349078223338 -2024-11-08 13:00:00+00:00,0.30692282586436326 -2024-11-08 14:00:00+00:00,0.30335327240471033 -2024-11-08 15:00:00+00:00,0.30173032135658956 -2024-11-08 16:00:00+00:00,0.3015174080417936 -2024-11-08 17:00:00+00:00,0.29808165604076803 -2024-11-08 18:00:00+00:00,0.29266873672713545 -2024-11-08 19:00:00+00:00,0.2692512962086565 -2024-11-08 20:00:00+00:00,0.24661187806900098 -2024-11-08 21:00:00+00:00,0.2211656380573336 -2024-11-10 22:00:00+00:00,0.18548527387824262 -2024-11-10 23:00:00+00:00,0.19278236293103929 -2024-11-11 00:00:00+00:00,0.2278233098476633 -2024-11-11 01:00:00+00:00,0.2627272900386175 -2024-11-11 02:00:00+00:00,0.312121244128555 -2024-11-11 03:00:00+00:00,0.3578307854788832 -2024-11-11 04:00:00+00:00,0.3968559462691501 -2024-11-11 05:00:00+00:00,0.4144053951904901 -2024-11-11 06:00:00+00:00,0.4036232316679145 -2024-11-11 07:00:00+00:00,0.42128341190007085 -2024-11-11 08:00:00+00:00,0.4359328623890596 -2024-11-11 09:00:00+00:00,0.4510269305593079 -2024-11-11 10:00:00+00:00,0.4640467875518724 -2024-11-11 11:00:00+00:00,0.455826444332851 -2024-11-11 12:00:00+00:00,0.45365118467082666 -2024-11-11 13:00:00+00:00,0.4468049026561385 -2024-11-11 14:00:00+00:00,0.43975249017671075 -2024-11-11 15:00:00+00:00,0.423675207634453 -2024-11-11 16:00:00+00:00,0.37666758692234564 -2024-11-11 17:00:00+00:00,0.33073243675549835 -2024-11-11 18:00:00+00:00,0.26778417760384315 -2024-11-11 19:00:00+00:00,0.21612186495560684 -2024-11-11 20:00:00+00:00,0.18297462431582026 -2024-11-11 21:00:00+00:00,0.15123396821998633 -2024-11-11 22:00:00+00:00,0.13448908187505823 -2024-11-11 23:00:00+00:00,0.12761631427807116 -2024-11-12 00:00:00+00:00,0.12423385201194824 -2024-11-12 01:00:00+00:00,0.12708571490586676 -2024-11-12 02:00:00+00:00,0.09954930006634959 -2024-11-12 03:00:00+00:00,0.09848104272031596 -2024-11-12 04:00:00+00:00,0.11401380334943674 -2024-11-12 05:00:00+00:00,0.11465852040546984 -2024-11-12 06:00:00+00:00,0.11410054424198407 -2024-11-12 07:00:00+00:00,0.1151628023210106 -2024-11-12 08:00:00+00:00,0.1221003038339233 -2024-11-12 09:00:00+00:00,0.14425287550376367 -2024-11-12 10:00:00+00:00,0.1559378671359627 -2024-11-12 11:00:00+00:00,0.16787664640125943 -2024-11-12 12:00:00+00:00,0.17899541301564534 -2024-11-12 13:00:00+00:00,0.2196373266298572 -2024-11-12 14:00:00+00:00,0.2545218168432061 -2024-11-12 15:00:00+00:00,0.29185855890675844 -2024-11-12 16:00:00+00:00,0.3397259382856605 -2024-11-12 17:00:00+00:00,0.3815691838861434 -2024-11-12 18:00:00+00:00,0.4073941580169818 -2024-11-12 19:00:00+00:00,0.4142001295930467 -2024-11-12 20:00:00+00:00,0.4171324287854417 -2024-11-12 21:00:00+00:00,0.42655391155197364 -2024-11-12 22:00:00+00:00,0.42280515294292353 -2024-11-12 23:00:00+00:00,0.4099590351645756 -2024-11-13 00:00:00+00:00,0.3906595502447147 -2024-11-13 01:00:00+00:00,0.3524967935466166 -2024-11-13 02:00:00+00:00,0.32751699029884274 -2024-11-13 03:00:00+00:00,0.30018998806505304 -2024-11-13 04:00:00+00:00,0.27834444297412053 -2024-11-13 05:00:00+00:00,0.26920379188678284 -2024-11-13 06:00:00+00:00,0.2558554021893406 -2024-11-13 07:00:00+00:00,0.24001510366528814 -2024-11-13 08:00:00+00:00,0.2020553011538806 -2024-11-13 09:00:00+00:00,0.18649946377292953 -2024-11-13 10:00:00+00:00,0.1741155922406921 -2024-11-13 11:00:00+00:00,0.16205030891438796 -2024-11-13 12:00:00+00:00,0.16342192724195656 -2024-11-13 13:00:00+00:00,0.17706920291016306 -2024-11-13 14:00:00+00:00,0.17641263676030539 -2024-11-13 15:00:00+00:00,0.18019904196341746 -2024-11-13 16:00:00+00:00,0.19868050917136768 -2024-11-13 17:00:00+00:00,0.22715894618069868 -2024-11-13 18:00:00+00:00,0.26064504495884566 -2024-11-13 19:00:00+00:00,0.28357011569329515 -2024-11-13 20:00:00+00:00,0.3132467120651546 -2024-11-13 21:00:00+00:00,0.3124471955197047 -2024-11-13 22:00:00+00:00,0.3116850468168826 -2024-11-13 23:00:00+00:00,0.3111679652853483 -2024-11-14 00:00:00+00:00,0.33019906274996574 -2024-11-14 01:00:00+00:00,0.35829811167590303 -2024-11-14 02:00:00+00:00,0.3959289409784191 -2024-11-14 03:00:00+00:00,0.42130561477532297 -2024-11-14 04:00:00+00:00,0.44587539856030217 -2024-11-14 05:00:00+00:00,0.45430642335825394 -2024-11-14 06:00:00+00:00,0.45565779806367007 -2024-11-14 07:00:00+00:00,0.4357507103469874 -2024-11-14 08:00:00+00:00,0.4222125805171449 -2024-11-14 09:00:00+00:00,0.3574799221299607 -2024-11-14 10:00:00+00:00,0.31262267485167683 -2024-11-14 11:00:00+00:00,0.26476171509278074 -2024-11-14 12:00:00+00:00,0.24477514384040963 -2024-11-14 13:00:00+00:00,0.23249875492601801 -2024-11-14 14:00:00+00:00,0.22632800484917873 -2024-11-14 15:00:00+00:00,0.21711269809429587 -2024-11-14 16:00:00+00:00,0.2094124864073148 -2024-11-14 17:00:00+00:00,0.19039910296712792 -2024-11-14 18:00:00+00:00,0.15491473882581014 -2024-11-14 19:00:00+00:00,0.10307947873895822 -2024-11-14 20:00:00+00:00,0.11995192015001492 -2024-11-14 21:00:00+00:00,0.1364034263743429 -2024-11-14 22:00:00+00:00,0.15364497693453646 -2024-11-14 23:00:00+00:00,0.18679129921808701 -2024-11-15 00:00:00+00:00,0.23081266039903262 -2024-11-15 01:00:00+00:00,0.2559501596024719 -2024-11-15 02:00:00+00:00,0.26201066669838835 -2024-11-15 03:00:00+00:00,0.26864917445896225 -2024-11-15 04:00:00+00:00,0.2688860255331144 -2024-11-15 05:00:00+00:00,0.27655536704757155 -2024-11-15 06:00:00+00:00,0.27568030204851135 -2024-11-15 07:00:00+00:00,0.2845108220875158 -2024-11-15 08:00:00+00:00,0.31806177402415997 -2024-11-15 09:00:00+00:00,0.3623281843135691 -2024-11-15 10:00:00+00:00,0.39980080565270865 -2024-11-15 11:00:00+00:00,0.42080705666297274 -2024-11-15 12:00:00+00:00,0.4465232474533078 -2024-11-15 13:00:00+00:00,0.47001707414719823 -2024-11-15 14:00:00+00:00,0.48059569394917956 -2024-11-15 15:00:00+00:00,0.5350007648693812 -2024-11-15 16:00:00+00:00,0.6071707879823288 -2024-11-15 17:00:00+00:00,0.6939140910652354 -2024-11-15 18:00:00+00:00,0.7940037435214221 -2024-11-15 19:00:00+00:00,0.8297348514273606 -2024-11-15 20:00:00+00:00,0.8320814484356978 -2024-11-15 21:00:00+00:00,0.8200675453497087 -2024-11-17 22:00:00+00:00,0.7938497322269309 -2024-11-17 23:00:00+00:00,0.7423204922040472 -2024-11-18 00:00:00+00:00,0.7056525516655976 -2024-11-18 01:00:00+00:00,0.6242139372534546 -2024-11-18 02:00:00+00:00,0.560472347773927 -2024-11-18 03:00:00+00:00,0.5183286906649817 -2024-11-18 04:00:00+00:00,0.4908554830605389 -2024-11-18 05:00:00+00:00,0.47050072989259234 -2024-11-18 06:00:00+00:00,0.450484356277153 -2024-11-18 07:00:00+00:00,0.4086948256505135 -2024-11-18 08:00:00+00:00,0.37614560448929474 -2024-11-18 09:00:00+00:00,0.3397121807892072 -2024-11-18 10:00:00+00:00,0.27241625944146897 -2024-11-18 11:00:00+00:00,0.2813767655609936 -2024-11-18 12:00:00+00:00,0.32233978474463193 -2024-11-18 13:00:00+00:00,0.32013345899190715 -2024-11-18 14:00:00+00:00,0.27522440124360364 -2024-11-18 15:00:00+00:00,0.2616701217543371 -2024-11-18 16:00:00+00:00,0.24240551059402837 -2024-11-18 17:00:00+00:00,0.2243111736383659 -2024-11-18 18:00:00+00:00,0.22237559499775544 -2024-11-18 19:00:00+00:00,0.22069342867684727 -2024-11-18 20:00:00+00:00,0.19275880753477984 -2024-11-18 21:00:00+00:00,0.18949961807523605 -2024-11-18 22:00:00+00:00,0.19169369066331968 -2024-11-18 23:00:00+00:00,0.19327468178493362 -2024-11-19 00:00:00+00:00,0.21167052348821297 -2024-11-19 01:00:00+00:00,0.2547721169326675 -2024-11-19 02:00:00+00:00,0.28491942995574304 -2024-11-19 03:00:00+00:00,0.30814987380195 -2024-11-19 04:00:00+00:00,0.3081475893615977 -2024-11-19 05:00:00+00:00,0.31200816451507 -2024-11-19 06:00:00+00:00,0.3025366267305245 -2024-11-19 07:00:00+00:00,0.285912095412039 -2024-11-19 08:00:00+00:00,0.30127369963575823 -2024-11-19 09:00:00+00:00,0.33251442388579006 -2024-11-19 10:00:00+00:00,0.3567949838675475 -2024-11-19 11:00:00+00:00,0.3373713984808828 -2024-11-19 12:00:00+00:00,0.3330652535831948 -2024-11-19 13:00:00+00:00,0.37255226053336327 -2024-11-19 14:00:00+00:00,0.36568707860688326 -2024-11-19 15:00:00+00:00,0.3512718657542624 -2024-11-19 16:00:00+00:00,0.3411066317103355 -2024-11-19 17:00:00+00:00,0.34432678784601356 -2024-11-19 18:00:00+00:00,0.3403322640982509 -2024-11-19 19:00:00+00:00,0.34600022434878197 -2024-11-19 20:00:00+00:00,0.36128400766821833 -2024-11-19 21:00:00+00:00,0.37372340952694943 -2024-11-19 22:00:00+00:00,0.3810303068303529 -2024-11-19 23:00:00+00:00,0.394084228222623 -2024-11-20 00:00:00+00:00,0.41831117539481644 -2024-11-20 01:00:00+00:00,0.4304838740022929 -2024-11-20 02:00:00+00:00,0.44556712529593484 -2024-11-20 03:00:00+00:00,0.4645330734215006 -2024-11-20 04:00:00+00:00,0.4647950425356645 -2024-11-20 05:00:00+00:00,0.46609932303567175 -2024-11-20 06:00:00+00:00,0.47053849329394154 -2024-11-20 07:00:00+00:00,0.5121467588678827 -2024-11-20 08:00:00+00:00,0.529037149216047 -2024-11-20 09:00:00+00:00,0.4844426640218442 -2024-11-20 10:00:00+00:00,0.4844103604965024 -2024-11-20 11:00:00+00:00,0.4654507125116638 -2024-11-20 12:00:00+00:00,0.4572446396783785 -2024-11-20 13:00:00+00:00,0.4684213661909513 -2024-11-20 14:00:00+00:00,0.4584963869330128 -2024-11-20 15:00:00+00:00,0.44742254841561035 -2024-11-20 16:00:00+00:00,0.42822550317284513 -2024-11-20 17:00:00+00:00,0.40251620103296903 -2024-11-20 18:00:00+00:00,0.364463596462978 -2024-11-20 19:00:00+00:00,0.3331934794166088 -2024-11-20 20:00:00+00:00,0.3156008263105644 -2024-11-20 21:00:00+00:00,0.27813844998032194 -2024-11-20 22:00:00+00:00,0.24478377136960988 -2024-11-20 23:00:00+00:00,0.21863993469115717 -2024-11-21 00:00:00+00:00,0.21642001072395403 -2024-11-21 01:00:00+00:00,0.22914362306009858 -2024-11-21 02:00:00+00:00,0.2551231900363609 -2024-11-21 03:00:00+00:00,0.2762263516708887 -2024-11-21 04:00:00+00:00,0.2826864126265434 -2024-11-21 05:00:00+00:00,0.27238213769672176 -2024-11-21 06:00:00+00:00,0.2874778297892557 -2024-11-21 07:00:00+00:00,0.2728468048851396 -2024-11-21 08:00:00+00:00,0.310986054838987 -2024-11-21 09:00:00+00:00,0.33405079977526175 -2024-11-21 10:00:00+00:00,0.35335225824849925 -2024-11-21 11:00:00+00:00,0.3561230235226223 -2024-11-21 12:00:00+00:00,0.3685377363933749 -2024-11-21 13:00:00+00:00,0.39768706288733535 -2024-11-21 14:00:00+00:00,0.4263173268185538 -2024-11-21 15:00:00+00:00,0.42615248998985616 -2024-11-21 16:00:00+00:00,0.3978531168901458 -2024-11-21 17:00:00+00:00,0.3730242548740806 -2024-11-21 18:00:00+00:00,0.3447388943107442 -2024-11-21 19:00:00+00:00,0.3172580055611217 -2024-11-21 20:00:00+00:00,0.30207229439313055 -2024-11-21 21:00:00+00:00,0.2855967482637473 -2024-11-21 22:00:00+00:00,0.2723405134208975 -2024-11-21 23:00:00+00:00,0.2739035365882329 -2024-11-22 00:00:00+00:00,0.2477571550566833 -2024-11-22 01:00:00+00:00,0.1871236292362416 -2024-11-22 02:00:00+00:00,0.17344755005045243 -2024-11-22 03:00:00+00:00,0.13852473648572025 -2024-11-22 04:00:00+00:00,0.13837358847286435 -2024-11-22 05:00:00+00:00,0.15343377617428086 -2024-11-22 06:00:00+00:00,0.187276631828549 -2024-11-22 07:00:00+00:00,0.1967862853255356 -2024-11-22 08:00:00+00:00,0.19712258405586613 -2024-11-22 09:00:00+00:00,0.19100462239554775 -2024-11-22 10:00:00+00:00,0.1734519120000947 -2024-11-22 11:00:00+00:00,0.17375587074569068 -2024-11-22 12:00:00+00:00,0.16914816764770754 -2024-11-22 13:00:00+00:00,0.17499055609895886 -2024-11-22 14:00:00+00:00,0.1970847800144141 -2024-11-22 15:00:00+00:00,0.2175924243739863 -2024-11-22 16:00:00+00:00,0.22350674071484505 -2024-11-22 17:00:00+00:00,0.22979336252551888 -2024-11-22 18:00:00+00:00,0.23482407185798995 -2024-11-22 19:00:00+00:00,0.2240017093163915 -2024-11-22 20:00:00+00:00,0.22429634998997186 -2024-11-22 21:00:00+00:00,0.2229180814557509 -2024-11-24 22:00:00+00:00,0.23203703762411 -2024-11-24 23:00:00+00:00,0.24218832925919773 -2024-11-25 00:00:00+00:00,0.25443337973637864 -2024-11-25 01:00:00+00:00,0.31163185092903206 -2024-11-25 02:00:00+00:00,0.34470048018482957 -2024-11-25 03:00:00+00:00,0.35985736938783225 -2024-11-25 04:00:00+00:00,0.3679070641909927 -2024-11-25 05:00:00+00:00,0.36915573662292117 -2024-11-25 06:00:00+00:00,0.3696059459072993 -2024-11-25 07:00:00+00:00,0.36988494297487445 -2024-11-25 08:00:00+00:00,0.37463965492129514 -2024-11-25 09:00:00+00:00,0.3727914754892573 -2024-11-25 10:00:00+00:00,0.3582753241316239 -2024-11-25 11:00:00+00:00,0.3410638888868651 -2024-11-25 12:00:00+00:00,0.33435411418284655 -2024-11-25 13:00:00+00:00,0.33574583116487194 -2024-11-25 14:00:00+00:00,0.34492056673241156 -2024-11-25 15:00:00+00:00,0.3233454198111592 -2024-11-25 16:00:00+00:00,0.2935216077173958 -2024-11-25 17:00:00+00:00,0.2670839804593464 -2024-11-25 18:00:00+00:00,0.26778937125067964 -2024-11-25 19:00:00+00:00,0.26795042744014985 -2024-11-25 20:00:00+00:00,0.26828646804073425 -2024-11-25 21:00:00+00:00,0.24883333565624907 -2024-11-25 22:00:00+00:00,0.226397711275306 -2024-11-25 23:00:00+00:00,0.2178326916821294 -2024-11-26 00:00:00+00:00,0.2215355739217554 -2024-11-26 01:00:00+00:00,0.22601799529468608 -2024-11-26 02:00:00+00:00,0.23293301496385624 -2024-11-26 03:00:00+00:00,0.24489587473060118 -2024-11-26 04:00:00+00:00,0.22529141359341862 -2024-11-26 05:00:00+00:00,0.23444873749399772 -2024-11-26 06:00:00+00:00,0.22267854453606542 -2024-11-26 07:00:00+00:00,0.20018804314369637 -2024-11-26 08:00:00+00:00,0.19884775976873978 -2024-11-26 09:00:00+00:00,0.19891669768442752 -2024-11-26 10:00:00+00:00,0.19748921352768886 -2024-11-26 11:00:00+00:00,0.1924483252220586 -2024-11-26 12:00:00+00:00,0.24851275512458504 -2024-11-26 13:00:00+00:00,0.26280176136264455 -2024-11-26 14:00:00+00:00,0.27443818206519005 -2024-11-26 15:00:00+00:00,0.28508307189385684 -2024-11-26 16:00:00+00:00,0.28956978521929433 -2024-11-26 17:00:00+00:00,0.2992864320456174 -2024-11-26 18:00:00+00:00,0.3021854562772144 -2024-11-26 19:00:00+00:00,0.2970703620109829 -2024-11-26 20:00:00+00:00,0.3180848281197578 -2024-11-26 21:00:00+00:00,0.3245971551678133 -2024-11-26 22:00:00+00:00,0.33087706014835583 -2024-11-26 23:00:00+00:00,0.3549226564904415 -2024-11-27 00:00:00+00:00,0.37021903543091816 -2024-11-27 01:00:00+00:00,0.41757180282086603 -2024-11-27 02:00:00+00:00,0.4227327480813281 -2024-11-27 03:00:00+00:00,0.4334552608312969 -2024-11-27 04:00:00+00:00,0.4486669465557133 -2024-11-27 05:00:00+00:00,0.4412659867208602 -2024-11-27 06:00:00+00:00,0.4677404222595101 -2024-11-27 07:00:00+00:00,0.4892055293879405 -2024-11-27 08:00:00+00:00,0.5399391071753071 -2024-11-27 09:00:00+00:00,0.6036834195470422 -2024-11-27 10:00:00+00:00,0.6471297274841269 -2024-11-27 11:00:00+00:00,0.6669590928699392 -2024-11-27 12:00:00+00:00,0.6692639711956906 -2024-11-27 13:00:00+00:00,0.6804066585764368 -2024-11-27 14:00:00+00:00,0.6676779557645184 -2024-11-27 15:00:00+00:00,0.6822585769131534 -2024-11-27 16:00:00+00:00,0.7190397013288551 -2024-11-27 17:00:00+00:00,0.7257214849139968 -2024-11-27 18:00:00+00:00,0.7075461878040579 -2024-11-27 19:00:00+00:00,0.6748712528148211 -2024-11-27 20:00:00+00:00,0.6246671092264525 -2024-11-27 21:00:00+00:00,0.5933629048254213 -2024-11-27 22:00:00+00:00,0.547803114825167 -2024-11-27 23:00:00+00:00,0.49605070833899084 -2024-11-28 00:00:00+00:00,0.45374771564612204 -2024-11-28 01:00:00+00:00,0.37944042938776157 -2024-11-28 02:00:00+00:00,0.3369531397706067 -2024-11-28 03:00:00+00:00,0.310364620001384 -2024-11-28 04:00:00+00:00,0.294236728862559 -2024-11-28 05:00:00+00:00,0.29718016417683063 -2024-11-28 06:00:00+00:00,0.3023705420787969 -2024-11-28 07:00:00+00:00,0.31779510112020437 -2024-11-28 08:00:00+00:00,0.338065378263213 -2024-11-28 09:00:00+00:00,0.36239577083231694 -2024-11-28 10:00:00+00:00,0.380436075937987 -2024-11-28 11:00:00+00:00,0.3892916475119101 -2024-11-28 12:00:00+00:00,0.361076005239188 -2024-11-28 13:00:00+00:00,0.3232361487757254 -2024-11-28 14:00:00+00:00,0.2870146658304205 -2024-11-28 15:00:00+00:00,0.26185289156862873 -2024-11-28 16:00:00+00:00,0.23978551815659785 -2024-11-28 17:00:00+00:00,0.21603393369362084 -2024-11-28 18:00:00+00:00,0.15903223765155833 -2024-11-28 19:00:00+00:00,0.14817162872779147 -2024-11-28 20:00:00+00:00,0.1522141409912948 -2024-11-28 21:00:00+00:00,0.14689752956198573 -2024-11-28 22:00:00+00:00,0.14265560288165616 -2024-11-28 23:00:00+00:00,0.17286276875879913 -2024-11-29 00:00:00+00:00,0.2856585143538622 -2024-11-29 01:00:00+00:00,0.45884150168091836 -2024-11-29 02:00:00+00:00,0.543013627803621 -2024-11-29 03:00:00+00:00,0.6080755211764161 -2024-11-29 04:00:00+00:00,0.6604720879245938 -2024-11-29 05:00:00+00:00,0.685996079458593 -2024-11-29 06:00:00+00:00,0.7085859974408334 -2024-11-29 07:00:00+00:00,0.7197300224686528 -2024-11-29 08:00:00+00:00,0.712339259785706 -2024-11-29 09:00:00+00:00,0.7093786309754065 -2024-11-29 10:00:00+00:00,0.7116739255409847 -2024-11-29 11:00:00+00:00,0.7011611121861641 -2024-11-29 12:00:00+00:00,0.6806244501074834 -2024-11-29 13:00:00+00:00,0.6581883808724872 -2024-11-29 14:00:00+00:00,0.6227169057568563 -2024-11-29 15:00:00+00:00,0.5706630008198713 -2024-11-29 16:00:00+00:00,0.5104383977259797 -2024-11-29 17:00:00+00:00,0.44207776165123763 -2024-11-29 18:00:00+00:00,0.3325537391936162 -2024-11-29 19:00:00+00:00,0.24035410276228983 -2024-11-29 20:00:00+00:00,0.21898951543960374 -2024-11-29 21:00:00+00:00,0.2265592521053997 -2024-12-01 22:00:00+00:00,0.23639031055657148 -2024-12-01 23:00:00+00:00,0.23454421640988385 -2024-12-02 00:00:00+00:00,0.24146153116033092 -2024-12-02 01:00:00+00:00,0.2729036073874226 -2024-12-02 02:00:00+00:00,0.3064007523332613 -2024-12-02 03:00:00+00:00,0.32813419507543967 -2024-12-02 04:00:00+00:00,0.34902290677193076 -2024-12-02 05:00:00+00:00,0.3798138186269696 -2024-12-02 06:00:00+00:00,0.38288030282807545 -2024-12-02 07:00:00+00:00,0.3841929476585698 -2024-12-02 08:00:00+00:00,0.3848612326527671 -2024-12-02 09:00:00+00:00,0.38688892391961205 -2024-12-02 10:00:00+00:00,0.38441075547567866 -2024-12-02 11:00:00+00:00,0.3843084013477091 -2024-12-02 12:00:00+00:00,0.3786650929377596 -2024-12-02 13:00:00+00:00,0.3584708165162386 -2024-12-02 14:00:00+00:00,0.3409243278888785 -2024-12-02 15:00:00+00:00,0.3226189661915554 -2024-12-02 16:00:00+00:00,0.3642922879099738 -2024-12-02 17:00:00+00:00,0.37357686094118425 -2024-12-02 18:00:00+00:00,0.37070744597911365 -2024-12-02 19:00:00+00:00,0.3918736738973414 -2024-12-02 20:00:00+00:00,0.4134033935122229 -2024-12-02 21:00:00+00:00,0.4157218958807699 -2024-12-02 22:00:00+00:00,0.41049804150936753 -2024-12-02 23:00:00+00:00,0.40510420683908493 -2024-12-03 00:00:00+00:00,0.3777095061422715 -2024-12-03 01:00:00+00:00,0.326820935164413 -2024-12-03 02:00:00+00:00,0.3087973061625999 -2024-12-03 03:00:00+00:00,0.29992395523672705 -2024-12-03 04:00:00+00:00,0.29562255447497504 -2024-12-03 05:00:00+00:00,0.27468896760664735 -2024-12-03 06:00:00+00:00,0.27088013950349277 -2024-12-03 07:00:00+00:00,0.2635948795097011 -2024-12-03 08:00:00+00:00,0.254043567499603 -2024-12-03 09:00:00+00:00,0.24574429902581874 -2024-12-03 10:00:00+00:00,0.24842802617238402 -2024-12-03 11:00:00+00:00,0.24805378762743294 -2024-12-03 12:00:00+00:00,0.2175791386055955 -2024-12-03 13:00:00+00:00,0.30271249166315445 -2024-12-03 14:00:00+00:00,0.3692737680457841 -2024-12-03 15:00:00+00:00,0.3890457285777492 -2024-12-03 16:00:00+00:00,0.4091841818961559 -2024-12-03 17:00:00+00:00,0.42270521018079527 -2024-12-03 18:00:00+00:00,0.44502720198142603 -2024-12-03 19:00:00+00:00,0.44510695045744025 -2024-12-03 20:00:00+00:00,0.44374927721596896 -2024-12-03 21:00:00+00:00,0.4398298115577574 -2024-12-03 22:00:00+00:00,0.4357963400225078 -2024-12-03 23:00:00+00:00,0.42005919379625495 -2024-12-04 00:00:00+00:00,0.4047012673150655 -2024-12-04 01:00:00+00:00,0.3992679188584651 -2024-12-04 02:00:00+00:00,0.38136545185903387 -2024-12-04 03:00:00+00:00,0.37706782857374976 -2024-12-04 04:00:00+00:00,0.3799655489619543 -2024-12-04 05:00:00+00:00,0.39579937432211004 -2024-12-04 06:00:00+00:00,0.3931218205167465 -2024-12-04 07:00:00+00:00,0.43382102783003706 -2024-12-04 08:00:00+00:00,0.474181385989746 -2024-12-04 09:00:00+00:00,0.48870375266816707 -2024-12-04 10:00:00+00:00,0.5071722924095157 -2024-12-04 11:00:00+00:00,0.5366302264851966 -2024-12-04 12:00:00+00:00,0.5755521284899572 -2024-12-04 13:00:00+00:00,0.5916109385478676 -2024-12-04 14:00:00+00:00,0.5606177865619809 -2024-12-04 15:00:00+00:00,0.5390148811335533 -2024-12-04 16:00:00+00:00,0.5076995692432685 -2024-12-04 17:00:00+00:00,0.4834963016016618 -2024-12-04 18:00:00+00:00,0.4556345343866261 -2024-12-04 19:00:00+00:00,0.42307170908848996 -2024-12-04 20:00:00+00:00,0.4069821507524791 -2024-12-04 21:00:00+00:00,0.3932091280725779 -2024-12-04 22:00:00+00:00,0.36079304459931266 -2024-12-04 23:00:00+00:00,0.3373674047209294 -2024-12-05 00:00:00+00:00,0.32029188986848495 -2024-12-05 01:00:00+00:00,0.3042328185345207 -2024-12-05 02:00:00+00:00,0.28152596866254226 -2024-12-05 03:00:00+00:00,0.28544913360085655 -2024-12-05 04:00:00+00:00,0.28670532732333537 -2024-12-05 05:00:00+00:00,0.31799478228050526 -2024-12-05 06:00:00+00:00,0.34721536996002755 -2024-12-05 07:00:00+00:00,0.36348825721938144 -2024-12-05 08:00:00+00:00,0.3189490100800339 -2024-12-05 09:00:00+00:00,0.27153541976851103 -2024-12-05 10:00:00+00:00,0.24334260011535253 -2024-12-05 11:00:00+00:00,0.24358238632055568 -2024-12-05 12:00:00+00:00,0.24422560747531832 -2024-12-05 13:00:00+00:00,0.25261901828516153 -2024-12-05 14:00:00+00:00,0.2545229593188341 -2024-12-05 15:00:00+00:00,0.2529218726454981 -2024-12-05 16:00:00+00:00,0.24850146135195403 -2024-12-05 17:00:00+00:00,0.2373202366319948 -2024-12-05 18:00:00+00:00,0.2292418797948467 -2024-12-05 19:00:00+00:00,0.22262857900249897 -2024-12-05 20:00:00+00:00,0.22462878729894936 -2024-12-05 21:00:00+00:00,0.2116179464063781 -2024-12-05 22:00:00+00:00,0.20991850543827936 -2024-12-05 23:00:00+00:00,0.20842630902515022 -2024-12-06 00:00:00+00:00,0.20188518748387918 -2024-12-06 01:00:00+00:00,0.19701303050450397 -2024-12-06 02:00:00+00:00,0.1923584646575629 -2024-12-06 03:00:00+00:00,0.18412106994884317 -2024-12-06 04:00:00+00:00,0.1886291264530932 -2024-12-06 05:00:00+00:00,0.1907112655825824 -2024-12-06 06:00:00+00:00,0.2000927152967464 -2024-12-06 07:00:00+00:00,0.19999444065715033 -2024-12-06 08:00:00+00:00,0.19744245658465742 -2024-12-06 09:00:00+00:00,0.19321997275826994 -2024-12-06 10:00:00+00:00,0.20247339001011422 -2024-12-06 11:00:00+00:00,0.21897091246171335 -2024-12-06 12:00:00+00:00,0.22707072855718546 -2024-12-06 13:00:00+00:00,0.2512185250860224 -2024-12-06 14:00:00+00:00,0.2712839064018912 -2024-12-06 15:00:00+00:00,0.27556534706714525 -2024-12-06 16:00:00+00:00,0.2832587434967721 -2024-12-06 17:00:00+00:00,0.28425345895037735 -2024-12-06 18:00:00+00:00,0.2847391234076044 -2024-12-06 19:00:00+00:00,0.2850070912856893 -2024-12-06 20:00:00+00:00,0.28547734259613167 -2024-12-06 21:00:00+00:00,0.28547951807618693 -2024-12-08 22:00:00+00:00,0.28124521512463024 -2024-12-08 23:00:00+00:00,0.28074248826052595 -2024-12-09 00:00:00+00:00,0.28420664735173085 -2024-12-09 01:00:00+00:00,0.28479778140576456 -2024-12-09 02:00:00+00:00,0.28344840796494186 -2024-12-09 03:00:00+00:00,0.2836590753536413 -2024-12-09 04:00:00+00:00,0.2748657614544217 -2024-12-09 05:00:00+00:00,0.24208130426057942 -2024-12-09 06:00:00+00:00,0.20351622198073102 -2024-12-09 07:00:00+00:00,0.18267903252723555 -2024-12-09 08:00:00+00:00,0.18449957204010872 -2024-12-09 09:00:00+00:00,0.19719757652747147 -2024-12-09 10:00:00+00:00,0.20523296128765126 -2024-12-09 11:00:00+00:00,0.22426537377097047 -2024-12-09 12:00:00+00:00,0.26310336167624704 -2024-12-09 13:00:00+00:00,0.30973239294785604 -2024-12-09 14:00:00+00:00,0.3506348039878467 -2024-12-09 15:00:00+00:00,0.3896510044146743 -2024-12-09 16:00:00+00:00,0.4390569319029085 -2024-12-09 17:00:00+00:00,0.48658265644940785 -2024-12-09 18:00:00+00:00,0.5149211973226574 -2024-12-09 19:00:00+00:00,0.5255204212364317 -2024-12-09 20:00:00+00:00,0.5221956151721767 -2024-12-09 21:00:00+00:00,0.5141855491223033 -2024-12-09 22:00:00+00:00,0.49871417822023906 -2024-12-09 23:00:00+00:00,0.48768901596698067 -2024-12-10 00:00:00+00:00,0.4595847667992414 -2024-12-10 01:00:00+00:00,0.4165155553806166 -2024-12-10 02:00:00+00:00,0.37500771568259583 -2024-12-10 03:00:00+00:00,0.342846885389877 -2024-12-10 04:00:00+00:00,0.31203371525073803 -2024-12-10 05:00:00+00:00,0.2750595102701677 -2024-12-10 06:00:00+00:00,0.23236184912109012 -2024-12-10 07:00:00+00:00,0.19798216288797857 -2024-12-10 08:00:00+00:00,0.19732191166182028 -2024-12-10 09:00:00+00:00,0.1961404638486893 -2024-12-10 10:00:00+00:00,0.19334019643838452 -2024-12-10 11:00:00+00:00,0.2030646448300199 -2024-12-10 12:00:00+00:00,0.2258208418449575 -2024-12-10 13:00:00+00:00,0.23711229291982897 -2024-12-10 14:00:00+00:00,0.2562908298276461 -2024-12-10 15:00:00+00:00,0.2999229505988517 -2024-12-10 16:00:00+00:00,0.3238974983754626 -2024-12-10 17:00:00+00:00,0.3457218649073381 -2024-12-10 18:00:00+00:00,0.349384613105759 -2024-12-10 19:00:00+00:00,0.3559305668264812 -2024-12-10 20:00:00+00:00,0.36190962448682645 -2024-12-10 21:00:00+00:00,0.36278253596543486 -2024-12-10 22:00:00+00:00,0.352341621727511 -2024-12-10 23:00:00+00:00,0.32247060654553666 -2024-12-11 00:00:00+00:00,0.29071474530633434 -2024-12-11 01:00:00+00:00,0.21852606729165727 -2024-12-11 02:00:00+00:00,0.19210027529960938 -2024-12-11 03:00:00+00:00,0.192653356498622 -2024-12-11 04:00:00+00:00,0.19771177182339555 -2024-12-11 05:00:00+00:00,0.1923249100697798 -2024-12-11 06:00:00+00:00,0.18598168410581856 -2024-12-11 07:00:00+00:00,0.18795852700918786 -2024-12-11 08:00:00+00:00,0.19254516894998044 -2024-12-11 09:00:00+00:00,0.27162770086192195 -2024-12-11 10:00:00+00:00,0.31808565543166195 -2024-12-11 11:00:00+00:00,0.34760025434830455 -2024-12-11 12:00:00+00:00,0.3843535755441637 -2024-12-11 13:00:00+00:00,0.390809480413369 -2024-12-11 14:00:00+00:00,0.39274681811426554 -2024-12-11 15:00:00+00:00,0.4079778728287503 -2024-12-11 16:00:00+00:00,0.4151042322902464 -2024-12-11 17:00:00+00:00,0.4287304882557997 -2024-12-11 18:00:00+00:00,0.4510982942040485 -2024-12-11 19:00:00+00:00,0.4647444232356158 -2024-12-11 20:00:00+00:00,0.4671449087497156 -2024-12-11 21:00:00+00:00,0.45916050110047846 -2024-12-11 22:00:00+00:00,0.4257629807427173 -2024-12-11 23:00:00+00:00,0.392798140180012 -2024-12-12 00:00:00+00:00,0.35393228609361643 -2024-12-12 01:00:00+00:00,0.3383851589107453 -2024-12-12 02:00:00+00:00,0.3115447885052462 -2024-12-12 03:00:00+00:00,0.2646664036949794 -2024-12-12 04:00:00+00:00,0.2015290235924921 -2024-12-12 05:00:00+00:00,0.1929314303679235 -2024-12-12 06:00:00+00:00,0.1885915943391497 -2024-12-12 07:00:00+00:00,0.18940388475595474 -2024-12-12 08:00:00+00:00,0.1815803721789196 -2024-12-12 09:00:00+00:00,0.182404582071428 -2024-12-12 10:00:00+00:00,0.17231198749463303 -2024-12-12 11:00:00+00:00,0.17915822904441217 -2024-12-12 12:00:00+00:00,0.1809481678696343 -2024-12-12 13:00:00+00:00,0.19678625856650736 -2024-12-12 14:00:00+00:00,0.1849083698613488 -2024-12-12 15:00:00+00:00,0.17207350780076108 -2024-12-12 16:00:00+00:00,0.1699694321820624 -2024-12-12 17:00:00+00:00,0.16613921708983873 -2024-12-12 18:00:00+00:00,0.16883006087551145 -2024-12-12 19:00:00+00:00,0.17650185620759073 -2024-12-12 20:00:00+00:00,0.18976835597373345 -2024-12-12 21:00:00+00:00,0.18163899993516835 -2024-12-12 22:00:00+00:00,0.18679425772362995 -2024-12-12 23:00:00+00:00,0.19233016426697586 -2024-12-13 00:00:00+00:00,0.20783761369386405 -2024-12-13 01:00:00+00:00,0.2208539109496862 -2024-12-13 02:00:00+00:00,0.24402361292714594 -2024-12-13 03:00:00+00:00,0.2621611547015796 -2024-12-13 04:00:00+00:00,0.2824951373270868 -2024-12-13 05:00:00+00:00,0.29565682450543423 -2024-12-13 06:00:00+00:00,0.2945427991111771 -2024-12-13 07:00:00+00:00,0.28742630631333543 -2024-12-13 08:00:00+00:00,0.30699389670420396 -2024-12-13 09:00:00+00:00,0.32310279850725204 -2024-12-13 10:00:00+00:00,0.35030351874541804 -2024-12-13 11:00:00+00:00,0.3843543149960131 -2024-12-13 12:00:00+00:00,0.36847187635787176 -2024-12-13 13:00:00+00:00,0.34950865885431226 -2024-12-13 14:00:00+00:00,0.36221483881300826 -2024-12-13 15:00:00+00:00,0.37547111106701336 -2024-12-13 16:00:00+00:00,0.3951993866973769 -2024-12-13 17:00:00+00:00,0.40102429376963306 -2024-12-13 18:00:00+00:00,0.39492179103668784 -2024-12-13 19:00:00+00:00,0.3809208509912787 -2024-12-13 20:00:00+00:00,0.3756912891191176 -2024-12-13 21:00:00+00:00,0.3607084403373159 -2024-12-15 22:00:00+00:00,0.34981211495992837 -2024-12-15 23:00:00+00:00,0.33108108004271963 -2024-12-16 00:00:00+00:00,0.3238310922366183 -2024-12-16 01:00:00+00:00,0.31031533619559476 -2024-12-16 02:00:00+00:00,0.2582782872557174 -2024-12-16 03:00:00+00:00,0.1907533264783649 -2024-12-16 04:00:00+00:00,0.1598951876583247 -2024-12-16 05:00:00+00:00,0.1501176730873211 -2024-12-16 06:00:00+00:00,0.1435249473436848 -2024-12-16 07:00:00+00:00,0.14655306200719437 -2024-12-16 08:00:00+00:00,0.1382844036740661 -2024-12-16 09:00:00+00:00,0.1099565822665431 -2024-12-16 10:00:00+00:00,0.11106701383715532 -2024-12-16 11:00:00+00:00,0.11242583513062619 -2024-12-16 12:00:00+00:00,0.13882571422888138 -2024-12-16 13:00:00+00:00,0.15297553978754072 -2024-12-16 14:00:00+00:00,0.1960341739398603 -2024-12-16 15:00:00+00:00,0.21959744865910874 -2024-12-16 16:00:00+00:00,0.23106392367925316 -2024-12-16 17:00:00+00:00,0.23714651807820777 -2024-12-16 18:00:00+00:00,0.2340055104722731 -2024-12-16 19:00:00+00:00,0.21752449344207467 -2024-12-16 20:00:00+00:00,0.2222725389314832 -2024-12-16 21:00:00+00:00,0.22766546899693382 -2024-12-16 22:00:00+00:00,0.23092185961337286 -2024-12-16 23:00:00+00:00,0.23037668806807401 -2024-12-17 00:00:00+00:00,0.22716177283342728 -2024-12-17 01:00:00+00:00,0.21429867864370689 -2024-12-17 02:00:00+00:00,0.19671011930474486 -2024-12-17 03:00:00+00:00,0.15731533864747543 -2024-12-17 04:00:00+00:00,0.1327607562699848 -2024-12-17 05:00:00+00:00,0.11698380448022791 -2024-12-17 06:00:00+00:00,0.09980268683841534 -2024-12-17 07:00:00+00:00,0.0710367583510888 -2024-12-17 08:00:00+00:00,0.09137964465933353 -2024-12-17 09:00:00+00:00,0.11424759578327488 -2024-12-17 10:00:00+00:00,0.11712808996142408 -2024-12-17 11:00:00+00:00,0.11572067087825129 -2024-12-17 12:00:00+00:00,0.12366996608146609 -2024-12-17 13:00:00+00:00,0.13403034803645647 -2024-12-17 14:00:00+00:00,0.1688338017572038 -2024-12-17 15:00:00+00:00,0.19764215399757132 -2024-12-17 16:00:00+00:00,0.22710240557003616 -2024-12-17 17:00:00+00:00,0.2636700240129773 -2024-12-17 18:00:00+00:00,0.28953976180864527 -2024-12-17 19:00:00+00:00,0.30369917159262694 -2024-12-17 20:00:00+00:00,0.29851250081327296 -2024-12-17 21:00:00+00:00,0.2948573740581863 -2024-12-17 22:00:00+00:00,0.29505083858928727 -2024-12-17 23:00:00+00:00,0.28594338781727524 -2024-12-18 00:00:00+00:00,0.2721134438052509 -2024-12-18 01:00:00+00:00,0.24983099020725671 -2024-12-18 02:00:00+00:00,0.2214480751410979 -2024-12-18 03:00:00+00:00,0.194871151721182 -2024-12-18 04:00:00+00:00,0.18762689736606566 -2024-12-18 05:00:00+00:00,0.1866722711752127 -2024-12-18 06:00:00+00:00,0.1750088418349873 -2024-12-18 07:00:00+00:00,0.1517756220782623 -2024-12-18 08:00:00+00:00,0.135117443980237 -2024-12-18 09:00:00+00:00,0.12371937679304078 -2024-12-18 10:00:00+00:00,0.12421877976655231 -2024-12-18 11:00:00+00:00,0.12927453440914655 -2024-12-18 12:00:00+00:00,0.14503357137462008 -2024-12-18 13:00:00+00:00,0.14815598992964502 -2024-12-18 14:00:00+00:00,0.1400638951353604 -2024-12-18 15:00:00+00:00,0.1592402685930586 -2024-12-18 16:00:00+00:00,0.17866401865701642 -2024-12-18 17:00:00+00:00,0.17920758320586427 -2024-12-18 18:00:00+00:00,0.17361223424202418 -2024-12-18 19:00:00+00:00,0.2760004337995197 -2024-12-18 20:00:00+00:00,0.3485903152393093 -2024-12-18 21:00:00+00:00,0.41739067586588235 -2024-12-18 22:00:00+00:00,0.4616701117565681 -2024-12-18 23:00:00+00:00,0.4872986763619697 -2024-12-19 00:00:00+00:00,0.5092127980210494 -2024-12-19 01:00:00+00:00,0.5027854622370561 -2024-12-19 02:00:00+00:00,0.5292240595887124 -2024-12-19 03:00:00+00:00,0.5639726826953674 -2024-12-19 04:00:00+00:00,0.5874311493679679 -2024-12-19 05:00:00+00:00,0.5958557755429356 -2024-12-19 06:00:00+00:00,0.672841304497214 -2024-12-19 07:00:00+00:00,0.7676671839073382 -2024-12-19 08:00:00+00:00,0.8831646013870568 -2024-12-19 09:00:00+00:00,0.9793529603968653 -2024-12-19 10:00:00+00:00,1.0286392083905416 -2024-12-19 11:00:00+00:00,1.0481972544308606 -2024-12-19 12:00:00+00:00,1.0647149062378234 -2024-12-19 13:00:00+00:00,1.0430446627097665 -2024-12-19 14:00:00+00:00,1.0085538617702936 -2024-12-19 15:00:00+00:00,1.0628217791319712 -2024-12-19 16:00:00+00:00,1.0958557566854408 -2024-12-19 17:00:00+00:00,1.1139680367179507 -2024-12-19 18:00:00+00:00,1.0966383213630977 -2024-12-19 19:00:00+00:00,1.0467809540572492 -2024-12-19 20:00:00+00:00,0.9859007890133692 -2024-12-19 21:00:00+00:00,0.8857601834692564 -2024-12-19 22:00:00+00:00,0.8069599138864724 -2024-12-19 23:00:00+00:00,0.7303075397528336 -2024-12-20 00:00:00+00:00,0.6323836672622207 -2024-12-20 01:00:00+00:00,0.4529925612136497 -2024-12-20 02:00:00+00:00,0.37732776131943435 -2024-12-20 03:00:00+00:00,0.3341801397123555 -2024-12-20 04:00:00+00:00,0.3201962350435968 -2024-12-20 05:00:00+00:00,0.3205436623338692 -2024-12-20 06:00:00+00:00,0.31889468231656054 -2024-12-20 07:00:00+00:00,0.3071301626848805 -2024-12-20 08:00:00+00:00,0.3105573046354185 -2024-12-20 09:00:00+00:00,0.32551382457388656 -2024-12-20 10:00:00+00:00,0.3477958377058745 -2024-12-20 11:00:00+00:00,0.348943710570226 -2024-12-20 12:00:00+00:00,0.3446898644000623 -2024-12-20 13:00:00+00:00,0.3521577995415531 -2024-12-20 14:00:00+00:00,0.35659288298974545 -2024-12-20 15:00:00+00:00,0.36819068284751716 -2024-12-20 16:00:00+00:00,0.41384269511985217 -2024-12-20 17:00:00+00:00,0.4436837274322608 -2024-12-20 18:00:00+00:00,0.4591682726622969 -2024-12-20 19:00:00+00:00,0.4514818262806165 -2024-12-20 20:00:00+00:00,0.39381164010558145 -2024-12-20 21:00:00+00:00,0.37113167969343525 -2024-12-22 22:00:00+00:00,0.3629203587978237 -2024-12-22 23:00:00+00:00,0.34677043443513794 -2024-12-23 00:00:00+00:00,0.30446693708388595 -2024-12-23 01:00:00+00:00,0.28331004030055923 -2024-12-23 02:00:00+00:00,0.2623416013086443 -2024-12-23 03:00:00+00:00,0.2511154640867039 -2024-12-23 04:00:00+00:00,0.2341400615202899 -2024-12-23 05:00:00+00:00,0.23058129628873808 -2024-12-23 06:00:00+00:00,0.22433937516811256 -2024-12-23 07:00:00+00:00,0.22591985068831527 -2024-12-23 08:00:00+00:00,0.21833939656625212 -2024-12-23 09:00:00+00:00,0.22452440375691882 -2024-12-23 10:00:00+00:00,0.2370452488190348 -2024-12-23 11:00:00+00:00,0.25100846596818216 -2024-12-23 12:00:00+00:00,0.27300481485705647 -2024-12-23 13:00:00+00:00,0.28743894086341915 -2024-12-23 14:00:00+00:00,0.28765759522942225 -2024-12-23 15:00:00+00:00,0.26271325170147114 -2024-12-23 16:00:00+00:00,0.25790959245976175 -2024-12-23 17:00:00+00:00,0.2615729947204339 -2024-12-23 18:00:00+00:00,0.2661663310367746 -2024-12-23 19:00:00+00:00,0.266931979288889 -2024-12-23 20:00:00+00:00,0.26945330127336736 -2024-12-23 21:00:00+00:00,0.25956195891256606 -2024-12-23 22:00:00+00:00,0.2521690952908939 -2024-12-23 23:00:00+00:00,0.23836890911021655 -2024-12-24 00:00:00+00:00,0.232102608862902 -2024-12-24 01:00:00+00:00,0.21827029956586763 -2024-12-24 02:00:00+00:00,0.1961205590258318 -2024-12-24 03:00:00+00:00,0.18668393635681277 -2024-12-24 04:00:00+00:00,0.1461657674265213 -2024-12-24 05:00:00+00:00,0.11552437650730721 -2024-12-24 06:00:00+00:00,0.09490897294968849 -2024-12-24 07:00:00+00:00,0.06990766458289772 -2024-12-24 08:00:00+00:00,0.07186566407327732 -2024-12-24 09:00:00+00:00,0.06971181270474006 -2024-12-24 10:00:00+00:00,0.06903629853045629 -2024-12-24 11:00:00+00:00,0.06915952184735812 -2024-12-24 12:00:00+00:00,0.06605458260570563 -2024-12-24 13:00:00+00:00,0.06726966540139531 -2024-12-24 14:00:00+00:00,0.07554494994486048 -2024-12-24 15:00:00+00:00,0.08728260204691203 -2024-12-24 16:00:00+00:00,0.09387258996322917 -2024-12-24 17:00:00+00:00,0.1000234050983317 -2024-12-24 18:00:00+00:00,0.10789610006659661 -2024-12-24 19:00:00+00:00,0.1123005717242263 -2024-12-24 20:00:00+00:00,0.1074153766758873 -2024-12-24 21:00:00+00:00,0.10750055074084502 -2024-12-25 22:00:00+00:00,0.1082760968378268 -2024-12-25 23:00:00+00:00,0.10691328256368382 -2024-12-26 00:00:00+00:00,0.10435610838365864 -2024-12-26 01:00:00+00:00,0.10568397522881294 -2024-12-26 02:00:00+00:00,0.11055423764962821 -2024-12-26 03:00:00+00:00,0.11244333070573437 -2024-12-26 04:00:00+00:00,0.11057337401596382 -2024-12-26 05:00:00+00:00,0.10433058535870465 -2024-12-26 06:00:00+00:00,0.09664688842020251 -2024-12-26 07:00:00+00:00,0.09168343700073961 -2024-12-26 08:00:00+00:00,0.08316856686884713 -2024-12-26 09:00:00+00:00,0.08206775114617239 -2024-12-26 10:00:00+00:00,0.0853699533565226 -2024-12-26 11:00:00+00:00,0.10287052408529838 -2024-12-26 12:00:00+00:00,0.12324663970790188 -2024-12-26 13:00:00+00:00,0.16174199724562846 -2024-12-26 14:00:00+00:00,0.20176030591139726 -2024-12-26 15:00:00+00:00,0.24701000936341666 -2024-12-26 16:00:00+00:00,0.26778868336113126 -2024-12-26 17:00:00+00:00,0.28462586243683796 -2024-12-26 18:00:00+00:00,0.2887202752794203 -2024-12-26 19:00:00+00:00,0.2825405233899576 -2024-12-26 20:00:00+00:00,0.284429641636937 -2024-12-26 21:00:00+00:00,0.2906246403319293 -2024-12-26 22:00:00+00:00,0.2877157359721283 -2024-12-26 23:00:00+00:00,0.2771241171478107 -2024-12-27 00:00:00+00:00,0.27125623444638836 -2024-12-27 01:00:00+00:00,0.2546235352948661 -2024-12-27 02:00:00+00:00,0.24080667063186895 -2024-12-27 03:00:00+00:00,0.22385824929788903 -2024-12-27 04:00:00+00:00,0.20455098448165165 -2024-12-27 05:00:00+00:00,0.18532844241567703 -2024-12-27 06:00:00+00:00,0.16367949262226272 -2024-12-27 07:00:00+00:00,0.15323353346698823 -2024-12-27 08:00:00+00:00,0.14643604671934302 -2024-12-27 09:00:00+00:00,0.1464489402303118 -2024-12-27 10:00:00+00:00,0.14693711504851975 -2024-12-27 11:00:00+00:00,0.14321423036401743 -2024-12-27 12:00:00+00:00,0.13662606474688266 -2024-12-27 13:00:00+00:00,0.12606497902521197 -2024-12-27 14:00:00+00:00,0.12262308527306057 -2024-12-27 15:00:00+00:00,0.12458751939592953 -2024-12-27 16:00:00+00:00,0.11642773900695445 -2024-12-27 17:00:00+00:00,0.10112622383488754 -2024-12-27 18:00:00+00:00,0.09788353708010067 -2024-12-27 19:00:00+00:00,0.10655587854441925 -2024-12-27 20:00:00+00:00,0.10604249391414018 -2024-12-27 21:00:00+00:00,0.10735248135174873 -2024-12-29 22:00:00+00:00,0.10138441689542317 -2024-12-29 23:00:00+00:00,0.1009152327439445 -2024-12-30 00:00:00+00:00,0.09373091378933077 -2024-12-30 01:00:00+00:00,0.09319978534985221 -2024-12-30 02:00:00+00:00,0.09242430752156189 -2024-12-30 03:00:00+00:00,0.09243596639835763 -2024-12-30 04:00:00+00:00,0.09199256257005728 -2024-12-30 05:00:00+00:00,0.09117206110481108 -2024-12-30 06:00:00+00:00,0.09171665457323125 -2024-12-30 07:00:00+00:00,0.08571585549951016 -2024-12-30 08:00:00+00:00,0.08708622460296192 -2024-12-30 09:00:00+00:00,0.08738505225556092 -2024-12-30 10:00:00+00:00,0.08799581323664817 -2024-12-30 11:00:00+00:00,0.07884601908866481 -2024-12-30 12:00:00+00:00,0.09794760946447229 -2024-12-30 13:00:00+00:00,0.12740415381890102 -2024-12-30 14:00:00+00:00,0.2046398376345873 -2024-12-30 15:00:00+00:00,0.2392396893003781 -2024-12-30 16:00:00+00:00,0.25706186023822397 -2024-12-30 17:00:00+00:00,0.2821407776450408 -2024-12-30 18:00:00+00:00,0.3212614937359832 -2024-12-30 19:00:00+00:00,0.3356931712921246 -2024-12-30 20:00:00+00:00,0.3649769134580464 -2024-12-30 21:00:00+00:00,0.3884290221546843 -2024-12-30 22:00:00+00:00,0.40249752858266 -2024-12-30 23:00:00+00:00,0.40300762692188374 -2024-12-31 00:00:00+00:00,0.4206641240370796 -2024-12-31 01:00:00+00:00,0.44760573286532923 -2024-12-31 02:00:00+00:00,0.4650166267419423 -2024-12-31 03:00:00+00:00,0.4640460049664443 -2024-12-31 04:00:00+00:00,0.46754895886500325 -2024-12-31 05:00:00+00:00,0.4571820407773465 -2024-12-31 06:00:00+00:00,0.4323225038748619 -2024-12-31 07:00:00+00:00,0.4200579659106244 -2024-12-31 08:00:00+00:00,0.4070080142604832 -2024-12-31 09:00:00+00:00,0.37104085104729384 -2024-12-31 10:00:00+00:00,0.3615059000589971 -2024-12-31 11:00:00+00:00,0.34453191356049456 -2024-12-31 12:00:00+00:00,0.32062217063662446 -2024-12-31 13:00:00+00:00,0.3107893642570657 -2024-12-31 14:00:00+00:00,0.302985994966479 -2024-12-31 15:00:00+00:00,0.30880327154072024 -2024-12-31 16:00:00+00:00,0.3474763869123365 -2024-12-31 17:00:00+00:00,0.3795134384814285 -2024-12-31 18:00:00+00:00,0.40088856568039294 -2024-12-31 19:00:00+00:00,0.41771658421096786 -2024-12-31 20:00:00+00:00,0.43959884822016215 -2024-12-31 21:00:00+00:00,0.44318503619131955 -2025-01-01 22:00:00+00:00,0.443585676752235 -2025-01-01 23:00:00+00:00,0.4715351301182084 -2025-01-02 00:00:00+00:00,0.45717395916178355 -2025-01-02 01:00:00+00:00,0.43822792374089303 -2025-01-02 02:00:00+00:00,0.41163941807694204 -2025-01-02 03:00:00+00:00,0.356920173869136 -2025-01-02 04:00:00+00:00,0.2755076223782281 -2025-01-02 05:00:00+00:00,0.24591581783654878 -2025-01-02 06:00:00+00:00,0.261570177740627 -2025-01-02 07:00:00+00:00,0.27339175667912735 -2025-01-02 08:00:00+00:00,0.28072617767251506 -2025-01-02 09:00:00+00:00,0.29154876361845833 -2025-01-02 10:00:00+00:00,0.27685156100449787 -2025-01-02 11:00:00+00:00,0.27682007739989156 -2025-01-02 12:00:00+00:00,0.2742795874537027 -2025-01-02 13:00:00+00:00,0.2803080025690929 -2025-01-02 14:00:00+00:00,0.2790455725637307 -2025-01-02 15:00:00+00:00,0.27598161645306146 -2025-01-02 16:00:00+00:00,0.29725983669980566 -2025-01-02 17:00:00+00:00,0.3121374992043553 -2025-01-02 18:00:00+00:00,0.3207823454406462 -2025-01-02 19:00:00+00:00,0.3144176362555141 -2025-01-02 20:00:00+00:00,0.3259349466721819 -2025-01-02 21:00:00+00:00,0.3275091159664821 -2025-01-02 22:00:00+00:00,0.3331369680209738 -2025-01-02 23:00:00+00:00,0.3352523165885751 -2025-01-03 00:00:00+00:00,0.3327549872916838 -2025-01-03 01:00:00+00:00,0.33318688842768657 -2025-01-03 02:00:00+00:00,0.30807857420357987 -2025-01-03 03:00:00+00:00,0.2774447076050916 -2025-01-03 04:00:00+00:00,0.25222137308573495 -2025-01-03 05:00:00+00:00,0.22247071951444752 -2025-01-03 06:00:00+00:00,0.22093035337245423 -2025-01-03 07:00:00+00:00,0.22330823632301575 -2025-01-03 08:00:00+00:00,0.21583470768457488 -2025-01-03 09:00:00+00:00,0.1815594436200467 -2025-01-03 10:00:00+00:00,0.16450387130064548 -2025-01-03 11:00:00+00:00,0.15901972730734723 -2025-01-03 12:00:00+00:00,0.15117264438291433 -2025-01-03 13:00:00+00:00,0.14692944059979704 -2025-01-03 14:00:00+00:00,0.1478964342091958 -2025-01-03 15:00:00+00:00,0.13120986600098022 -2025-01-03 16:00:00+00:00,0.10823361667283181 -2025-01-03 17:00:00+00:00,0.0928657207685067 -2025-01-03 18:00:00+00:00,0.08206626006592824 -2025-01-03 19:00:00+00:00,0.07855946449826279 -2025-01-03 20:00:00+00:00,0.08118264002363851 -2025-01-03 21:00:00+00:00,0.08141989921743086 -2025-01-05 22:00:00+00:00,0.08314989628217483 -2025-01-05 23:00:00+00:00,0.10071997392018776 -2025-01-06 00:00:00+00:00,0.12513078416800147 -2025-01-06 01:00:00+00:00,0.146727629835152 -2025-01-06 02:00:00+00:00,0.17169736990051004 -2025-01-06 03:00:00+00:00,0.1876853749994301 -2025-01-06 04:00:00+00:00,0.20503093473723139 -2025-01-06 05:00:00+00:00,0.22256154675501758 -2025-01-06 06:00:00+00:00,0.22973346109487547 -2025-01-06 07:00:00+00:00,0.23319790553658612 -2025-01-06 08:00:00+00:00,0.2304165563983273 -2025-01-06 09:00:00+00:00,0.22960695819587756 -2025-01-06 10:00:00+00:00,0.23276287343990146 -2025-01-06 11:00:00+00:00,0.24213895529848745 -2025-01-06 12:00:00+00:00,0.28425459305527767 -2025-01-06 13:00:00+00:00,0.33926196599048747 -2025-01-06 14:00:00+00:00,0.33467039557301737 -2025-01-06 15:00:00+00:00,0.32911266266378686 -2025-01-06 16:00:00+00:00,0.32759706876359584 -2025-01-06 17:00:00+00:00,0.32408080131087796 -2025-01-06 18:00:00+00:00,0.32196951063464185 -2025-01-06 19:00:00+00:00,0.3220458613783822 -2025-01-06 20:00:00+00:00,0.3225586033892437 -2025-01-06 21:00:00+00:00,0.32311982458752603 -2025-01-06 22:00:00+00:00,0.32085059646507663 -2025-01-06 23:00:00+00:00,0.32165481250851946 -2025-01-07 00:00:00+00:00,0.34507038182073446 -2025-01-07 01:00:00+00:00,0.38319494830951506 -2025-01-07 02:00:00+00:00,0.41522028394507965 -2025-01-07 03:00:00+00:00,0.4317200481665473 -2025-01-07 04:00:00+00:00,0.44415737785691883 -2025-01-07 05:00:00+00:00,0.44655623502710323 -2025-01-07 06:00:00+00:00,0.443281646822871 -2025-01-07 07:00:00+00:00,0.4328769607484911 -2025-01-07 08:00:00+00:00,0.3867498171190458 -2025-01-07 09:00:00+00:00,0.29470518272651497 -2025-01-07 10:00:00+00:00,0.27580580504099045 -2025-01-07 11:00:00+00:00,0.27108660004857343 -2025-01-07 12:00:00+00:00,0.266202786749635 -2025-01-07 13:00:00+00:00,0.26014762507309813 -2025-01-07 14:00:00+00:00,0.2537187159655019 -2025-01-07 15:00:00+00:00,0.24874981616420444 -2025-01-07 16:00:00+00:00,0.24483104268614728 -2025-01-07 17:00:00+00:00,0.2432238734595821 -2025-01-07 18:00:00+00:00,0.23863744795831915 -2025-01-07 19:00:00+00:00,0.23795187481076027 -2025-01-07 20:00:00+00:00,0.2299341495885279 -2025-01-07 21:00:00+00:00,0.20830803984190988 -2025-01-07 22:00:00+00:00,0.18567013049358885 -2025-01-07 23:00:00+00:00,0.19570853728960177 -2025-01-08 00:00:00+00:00,0.20279838961687005 -2025-01-08 01:00:00+00:00,0.20559881089570026 -2025-01-08 02:00:00+00:00,0.2145449222734419 -2025-01-08 03:00:00+00:00,0.2133360272327364 -2025-01-08 04:00:00+00:00,0.20057165667871296 -2025-01-08 05:00:00+00:00,0.19549952211469454 -2025-01-08 06:00:00+00:00,0.19163476772161298 -2025-01-08 07:00:00+00:00,0.18593629353185193 -2025-01-08 08:00:00+00:00,0.1871166537069484 -2025-01-08 09:00:00+00:00,0.17378761233116172 -2025-01-08 10:00:00+00:00,0.17516082081091655 -2025-01-08 11:00:00+00:00,0.1869952081846237 -2025-01-08 12:00:00+00:00,0.20163518382890713 -2025-01-08 13:00:00+00:00,0.1782748542939391 -2025-01-08 14:00:00+00:00,0.17070106215519457 -2025-01-08 15:00:00+00:00,0.1519430640937512 -2025-01-08 16:00:00+00:00,0.13546970914059153 -2025-01-08 17:00:00+00:00,0.13676333761539278 -2025-01-08 18:00:00+00:00,0.1386937083152835 -2025-01-08 19:00:00+00:00,0.1469786504007394 -2025-01-08 20:00:00+00:00,0.14694083123542037 -2025-01-08 21:00:00+00:00,0.12981058058393966 -2025-01-08 22:00:00+00:00,0.12220581211938344 -2025-01-08 23:00:00+00:00,0.12247890254402734 -2025-01-09 00:00:00+00:00,0.12158406227779046 -2025-01-09 01:00:00+00:00,0.12585584899512234 -2025-01-09 02:00:00+00:00,0.12228150219438778 -2025-01-09 03:00:00+00:00,0.13646818595889382 -2025-01-09 04:00:00+00:00,0.15883300561796604 -2025-01-09 05:00:00+00:00,0.16441407927275134 -2025-01-09 06:00:00+00:00,0.16616792391067592 -2025-01-09 07:00:00+00:00,0.16477094145298724 -2025-01-09 08:00:00+00:00,0.15536086173105457 -2025-01-09 09:00:00+00:00,0.15900317769058891 -2025-01-09 10:00:00+00:00,0.16460903438116878 -2025-01-09 11:00:00+00:00,0.1731472980772743 -2025-01-09 12:00:00+00:00,0.1958784464375908 -2025-01-09 13:00:00+00:00,0.2173079006237678 -2025-01-09 14:00:00+00:00,0.21164231864611305 -2025-01-09 15:00:00+00:00,0.19315302766074816 -2025-01-09 16:00:00+00:00,0.18035937075964512 -2025-01-09 17:00:00+00:00,0.16629348656347434 -2025-01-09 18:00:00+00:00,0.1534107918037311 -2025-01-09 19:00:00+00:00,0.14985083808048286 -2025-01-09 20:00:00+00:00,0.14080759545058127 -2025-01-09 21:00:00+00:00,0.1409958099031988 -2025-01-09 22:00:00+00:00,0.14268562237069896 -2025-01-09 23:00:00+00:00,0.14251725653500494 -2025-01-10 00:00:00+00:00,0.14099249696257543 -2025-01-10 01:00:00+00:00,0.142877422582981 -2025-01-10 02:00:00+00:00,0.1502058236650907 -2025-01-10 03:00:00+00:00,0.15257126027830428 -2025-01-10 04:00:00+00:00,0.1704802504066368 -2025-01-10 05:00:00+00:00,0.18905265206393498 -2025-01-10 06:00:00+00:00,0.19707531953091 -2025-01-10 07:00:00+00:00,0.20431953171910316 -2025-01-10 08:00:00+00:00,0.19772293211466857 -2025-01-10 09:00:00+00:00,0.17301794093108605 -2025-01-10 10:00:00+00:00,0.15839041534611933 -2025-01-10 11:00:00+00:00,0.15738068994719034 -2025-01-10 12:00:00+00:00,0.1582574434595677 -2025-01-10 13:00:00+00:00,0.18330615744634127 -2025-01-10 14:00:00+00:00,0.18731534764402555 -2025-01-10 15:00:00+00:00,0.2298080377180576 -2025-01-10 16:00:00+00:00,0.24946263825274154 -2025-01-10 17:00:00+00:00,0.2673754456501811 -2025-01-10 18:00:00+00:00,0.2700572015231562 -2025-01-10 19:00:00+00:00,0.2734798125712128 -2025-01-10 20:00:00+00:00,0.27861300738475586 -2025-01-10 21:00:00+00:00,0.2861150808030053 -2025-01-12 22:00:00+00:00,0.28823353103040833 -2025-01-12 23:00:00+00:00,0.2837202615804827 -2025-01-13 00:00:00+00:00,0.2705492415336481 -2025-01-13 01:00:00+00:00,0.27119144527275924 -2025-01-13 02:00:00+00:00,0.2660413699322153 -2025-01-13 03:00:00+00:00,0.2545266555984042 -2025-01-13 04:00:00+00:00,0.2619143089871236 -2025-01-13 05:00:00+00:00,0.27464304103512965 -2025-01-13 06:00:00+00:00,0.27052663550068085 -2025-01-13 07:00:00+00:00,0.27156668268931056 -2025-01-13 08:00:00+00:00,0.26522879892357304 -2025-01-13 09:00:00+00:00,0.21443779613204403 -2025-01-13 10:00:00+00:00,0.20382954692444027 -2025-01-13 11:00:00+00:00,0.21396012906846382 -2025-01-13 12:00:00+00:00,0.24660027316633162 -2025-01-13 13:00:00+00:00,0.2580001784769054 -2025-01-13 14:00:00+00:00,0.24668541652411696 -2025-01-13 15:00:00+00:00,0.2315578817928749 -2025-01-13 16:00:00+00:00,0.2188694876413649 -2025-01-13 17:00:00+00:00,0.21205247610056616 -2025-01-13 18:00:00+00:00,0.20264806799591906 -2025-01-13 19:00:00+00:00,0.19167897364123962 -2025-01-13 20:00:00+00:00,0.1804445095906705 -2025-01-13 21:00:00+00:00,0.18066831338801778 -2025-01-13 22:00:00+00:00,0.18066954419411277 -2025-01-13 23:00:00+00:00,0.18262844071283185 -2025-01-14 00:00:00+00:00,0.18249098027989116 -2025-01-14 01:00:00+00:00,0.18249074234440285 -2025-01-14 02:00:00+00:00,0.19092089155168188 -2025-01-14 03:00:00+00:00,0.19291101709104724 -2025-01-14 04:00:00+00:00,0.18924472457180086 -2025-01-14 05:00:00+00:00,0.1763903789277377 -2025-01-14 06:00:00+00:00,0.17641291273110551 -2025-01-14 07:00:00+00:00,0.173755423964913 -2025-01-14 08:00:00+00:00,0.14785195294220912 -2025-01-14 09:00:00+00:00,0.1607123205882038 -2025-01-14 10:00:00+00:00,0.1674233445629599 -2025-01-14 11:00:00+00:00,0.18708959291832156 -2025-01-14 12:00:00+00:00,0.1963705613306137 -2025-01-14 13:00:00+00:00,0.18974394793606877 -2025-01-14 14:00:00+00:00,0.1912119999797854 -2025-01-14 15:00:00+00:00,0.20123908270998928 -2025-01-14 16:00:00+00:00,0.21259756890590809 -2025-01-14 17:00:00+00:00,0.23240832372421047 -2025-01-14 18:00:00+00:00,0.2274951705432977 -2025-01-14 19:00:00+00:00,0.20948505785054045 -2025-01-14 20:00:00+00:00,0.20861959207968908 -2025-01-14 21:00:00+00:00,0.19658414560887252 -2025-01-14 22:00:00+00:00,0.197374183747619 -2025-01-14 23:00:00+00:00,0.193461243200221 -2025-01-15 00:00:00+00:00,0.175862565926547 -2025-01-15 01:00:00+00:00,0.16239402208845277 -2025-01-15 02:00:00+00:00,0.13229929183710817 -2025-01-15 03:00:00+00:00,0.09735469598911414 -2025-01-15 04:00:00+00:00,0.1095923546583071 -2025-01-15 05:00:00+00:00,0.17288398144896733 -2025-01-15 06:00:00+00:00,0.21162714851598552 -2025-01-15 07:00:00+00:00,0.3038900900508167 -2025-01-15 08:00:00+00:00,0.3418369686661609 -2025-01-15 09:00:00+00:00,0.39788783131021926 -2025-01-15 10:00:00+00:00,0.44927678432822526 -2025-01-15 11:00:00+00:00,0.4675573114203313 -2025-01-15 12:00:00+00:00,0.4828602581868553 -2025-01-15 13:00:00+00:00,0.5322194121041259 -2025-01-15 14:00:00+00:00,0.5822730413866882 -2025-01-15 15:00:00+00:00,0.618837983634521 -2025-01-15 16:00:00+00:00,0.619079237755879 -2025-01-15 17:00:00+00:00,0.6143632475895673 -2025-01-15 18:00:00+00:00,0.6047515888356996 -2025-01-15 19:00:00+00:00,0.5794009133663875 -2025-01-15 20:00:00+00:00,0.5493960775148726 -2025-01-15 21:00:00+00:00,0.512462812503727 -2025-01-15 22:00:00+00:00,0.458859280675856 -2025-01-15 23:00:00+00:00,0.4000581898321937 -2025-01-16 00:00:00+00:00,0.35948098183967586 -2025-01-16 01:00:00+00:00,0.4015248435509266 -2025-01-16 02:00:00+00:00,0.39892479173680323 -2025-01-16 03:00:00+00:00,0.41703502312739305 -2025-01-16 04:00:00+00:00,0.39747924141639357 -2025-01-16 05:00:00+00:00,0.3836665870108058 -2025-01-16 06:00:00+00:00,0.37141096544349456 -2025-01-16 07:00:00+00:00,0.3317626132755868 -2025-01-16 08:00:00+00:00,0.2940793797045812 -2025-01-16 09:00:00+00:00,0.3121859895859109 -2025-01-16 10:00:00+00:00,0.3301422779237311 -2025-01-16 11:00:00+00:00,0.33720103325843315 -2025-01-16 12:00:00+00:00,0.3170996647063206 -2025-01-16 13:00:00+00:00,0.299930847273703 -2025-01-16 14:00:00+00:00,0.28194512341943145 -2025-01-16 15:00:00+00:00,0.29445106820547823 -2025-01-16 16:00:00+00:00,0.29768402532845306 -2025-01-16 17:00:00+00:00,0.3056549654154154 -2025-01-16 18:00:00+00:00,0.3029451748018345 -2025-01-16 19:00:00+00:00,0.30994211681829376 -2025-01-16 20:00:00+00:00,0.31930839735261773 -2025-01-16 21:00:00+00:00,0.34539760077321136 -2025-01-16 22:00:00+00:00,0.3648957276998007 -2025-01-16 23:00:00+00:00,0.3706051203794361 -2025-01-17 00:00:00+00:00,0.3780863309781225 -2025-01-17 01:00:00+00:00,0.3697245453874532 -2025-01-17 02:00:00+00:00,0.34952013719391833 -2025-01-17 03:00:00+00:00,0.315209053418012 -2025-01-17 04:00:00+00:00,0.302217958971823 -2025-01-17 05:00:00+00:00,0.2991732951226877 -2025-01-17 06:00:00+00:00,0.29843708671191144 -2025-01-17 07:00:00+00:00,0.291600352842248 -2025-01-17 08:00:00+00:00,0.25640520457980875 -2025-01-17 09:00:00+00:00,0.2423204924080415 -2025-01-17 10:00:00+00:00,0.19881392381830523 -2025-01-17 11:00:00+00:00,0.20823591754705711 -2025-01-17 12:00:00+00:00,0.21800436979887408 -2025-01-17 13:00:00+00:00,0.22014575910384648 -2025-01-17 14:00:00+00:00,0.25325112872163796 -2025-01-17 15:00:00+00:00,0.28183464261467134 -2025-01-17 16:00:00+00:00,0.31805449299544913 -2025-01-17 17:00:00+00:00,0.3299172304315981 -2025-01-17 18:00:00+00:00,0.33057587709119673 -2025-01-17 19:00:00+00:00,0.33469796280242825 -2025-01-17 20:00:00+00:00,0.3194060070767902 -2025-01-17 21:00:00+00:00,0.30820586078124745 -2025-01-19 22:00:00+00:00,0.30929346903602595 -2025-01-19 23:00:00+00:00,0.3043940659026847 -2025-01-20 00:00:00+00:00,0.276293131882053 -2025-01-20 01:00:00+00:00,0.2602278909946294 -2025-01-20 02:00:00+00:00,0.24828095288866925 -2025-01-20 03:00:00+00:00,0.23946884203200464 -2025-01-20 04:00:00+00:00,0.2291618825403023 -2025-01-20 05:00:00+00:00,0.21955895381171076 -2025-01-20 06:00:00+00:00,0.21385013810451337 -2025-01-20 07:00:00+00:00,0.19743739177923292 -2025-01-20 08:00:00+00:00,0.180420444602286 -2025-01-20 09:00:00+00:00,0.1582464433423205 -2025-01-20 10:00:00+00:00,0.16712362266164196 -2025-01-20 11:00:00+00:00,0.17313566323300664 -2025-01-20 12:00:00+00:00,0.17707019122363976 -2025-01-20 13:00:00+00:00,0.19898306589935455 -2025-01-20 14:00:00+00:00,0.2359630825026913 -2025-01-20 15:00:00+00:00,0.25174205676896855 -2025-01-20 16:00:00+00:00,0.2651167518163121 -2025-01-20 17:00:00+00:00,0.2625021102450382 -2025-01-20 18:00:00+00:00,0.2626873065851937 -2025-01-20 19:00:00+00:00,0.26261390508927024 -2025-01-20 20:00:00+00:00,0.2737851635458156 -2025-01-20 21:00:00+00:00,0.28169105882137857 -2025-01-20 22:00:00+00:00,0.28831788010514653 -2025-01-20 23:00:00+00:00,0.3194810924129479 -2025-01-21 00:00:00+00:00,0.32038218951236963 -2025-01-21 01:00:00+00:00,0.32646290591072996 -2025-01-21 02:00:00+00:00,0.3539810394697429 -2025-01-21 03:00:00+00:00,0.3771074117387183 -2025-01-21 04:00:00+00:00,0.3969333100406589 -2025-01-21 05:00:00+00:00,0.3832728140479558 -2025-01-21 06:00:00+00:00,0.34615881279036637 -2025-01-21 07:00:00+00:00,0.303045502035592 -2025-01-21 08:00:00+00:00,0.24444426226979926 -2025-01-21 09:00:00+00:00,0.2536005717426677 -2025-01-21 10:00:00+00:00,0.26974937683709976 -2025-01-21 11:00:00+00:00,0.27837635919136205 -2025-01-21 12:00:00+00:00,0.282138469156003 -2025-01-21 13:00:00+00:00,0.27847923004626723 -2025-01-21 14:00:00+00:00,0.27738039146118476 -2025-01-21 15:00:00+00:00,0.2827112856623168 -2025-01-21 16:00:00+00:00,0.28304853124656637 -2025-01-21 17:00:00+00:00,0.2824707297156657 -2025-01-21 18:00:00+00:00,0.2819263201409264 -2025-01-21 19:00:00+00:00,0.27437728057087957 -2025-01-21 20:00:00+00:00,0.2527127087150441 -2025-01-21 21:00:00+00:00,0.25277480614131315 -2025-01-21 22:00:00+00:00,0.23517887366807338 -2025-01-21 23:00:00+00:00,0.22154966174605717 -2025-01-22 00:00:00+00:00,0.1890067110721864 -2025-01-22 01:00:00+00:00,0.17653340220334934 -2025-01-22 02:00:00+00:00,0.1765896521639586 -2025-01-22 03:00:00+00:00,0.1877422364750531 -2025-01-22 04:00:00+00:00,0.18936211478157491 -2025-01-22 05:00:00+00:00,0.18520767856317263 -2025-01-22 06:00:00+00:00,0.17717825543434487 -2025-01-22 07:00:00+00:00,0.1902105412121891 -2025-01-22 08:00:00+00:00,0.18675427139149783 -2025-01-22 09:00:00+00:00,0.18334982378767722 -2025-01-22 10:00:00+00:00,0.18425922811662213 -2025-01-22 11:00:00+00:00,0.17269836798313265 -2025-01-22 12:00:00+00:00,0.16857389442909168 -2025-01-22 13:00:00+00:00,0.1705378796904416 -2025-01-22 14:00:00+00:00,0.18873624031786795 -2025-01-22 15:00:00+00:00,0.23208575998601877 -2025-01-22 16:00:00+00:00,0.28760830452269026 -2025-01-22 17:00:00+00:00,0.32358527711761276 -2025-01-22 18:00:00+00:00,0.3407489390475725 -2025-01-22 19:00:00+00:00,0.3586572142823853 -2025-01-22 20:00:00+00:00,0.35253196568611056 -2025-01-22 21:00:00+00:00,0.356528654623125 -2025-01-22 22:00:00+00:00,0.35383693462417654 -2025-01-22 23:00:00+00:00,0.35655504851289804 -2025-01-23 00:00:00+00:00,0.3494236269073712 -2025-01-23 01:00:00+00:00,0.3480943421561441 -2025-01-23 02:00:00+00:00,0.34372379898473865 -2025-01-23 03:00:00+00:00,0.3444252076615793 -2025-01-23 04:00:00+00:00,0.32500856667107225 -2025-01-23 05:00:00+00:00,0.2974257801963325 -2025-01-23 06:00:00+00:00,0.26518019690519684 -2025-01-23 07:00:00+00:00,0.2357182249371825 -2025-01-23 08:00:00+00:00,0.1820570977213128 -2025-01-23 09:00:00+00:00,0.12042009794304366 -2025-01-23 10:00:00+00:00,0.09137660641074404 -2025-01-23 11:00:00+00:00,0.08710133233127959 -2025-01-23 12:00:00+00:00,0.08859421086697253 -2025-01-23 13:00:00+00:00,0.1091718104600782 -2025-01-23 14:00:00+00:00,0.12034873663503506 -2025-01-23 15:00:00+00:00,0.13833212318322072 -2025-01-23 16:00:00+00:00,0.17037311218909224 -2025-01-23 17:00:00+00:00,0.20417961001641785 -2025-01-23 18:00:00+00:00,0.2231142909601663 -2025-01-23 19:00:00+00:00,0.2573401343074598 -2025-01-23 20:00:00+00:00,0.2705421214195955 -2025-01-23 21:00:00+00:00,0.2710306061355522 -2025-01-23 22:00:00+00:00,0.27389978956792393 -2025-01-23 23:00:00+00:00,0.2706739104124686 -2025-01-24 00:00:00+00:00,0.2597407360975494 -2025-01-24 01:00:00+00:00,0.23757655273520184 -2025-01-24 02:00:00+00:00,0.22574141585137136 -2025-01-24 03:00:00+00:00,0.2552787691690264 -2025-01-24 04:00:00+00:00,0.3129466870503595 -2025-01-24 05:00:00+00:00,0.34325402591112464 -2025-01-24 06:00:00+00:00,0.36115743758813085 -2025-01-24 07:00:00+00:00,0.3576092986971592 -2025-01-24 08:00:00+00:00,0.35755685597048054 -2025-01-24 09:00:00+00:00,0.35325066020560264 -2025-01-24 10:00:00+00:00,0.34018889487878057 -2025-01-24 11:00:00+00:00,0.3367213590975916 -2025-01-24 12:00:00+00:00,0.36432625631562693 -2025-01-24 13:00:00+00:00,0.3790712299248742 diff --git a/indicators_directory/USD_JPY_H1.csv b/indicators_directory/USD_JPY_H1.csv deleted file mode 100644 index e7fb3c3..0000000 --- a/indicators_directory/USD_JPY_H1.csv +++ /dev/null @@ -1,5001 +0,0 @@ -time,volume,open,high,low,close,instrument,granularity,RSI,MACD,Signal_Line,Histogram,BollingerBands_middle,BollingerBands_std,ATR,ADX,OBV -2024-04-05 03:00:00+00:00,3572,151.184,151.27,151.145,151.262,USD_JPY,H1,,0.0,0.0,0.0,,,,,-3572 -2024-04-05 04:00:00+00:00,3463,151.264,151.296,151.204,151.218,USD_JPY,H1,,-0.0035099715099704554,-0.0007019943019940911,-0.002807977207976364,,,,,-7035 -2024-04-05 05:00:00+00:00,3615,151.218,151.222,151.132,151.186,USD_JPY,H1,,-0.00877265606607125,-0.002316126654809523,-0.006456529411261727,,,,,-10650 -2024-04-05 06:00:00+00:00,5398,151.188,151.296,151.094,151.264,USD_JPY,H1,,-0.006573646461134786,-0.0031676306160745757,-0.00340601584506021,,,,,-5252 -2024-04-05 07:00:00+00:00,7127,151.264,151.356,151.17,151.34,USD_JPY,H1,,0.001286815724625967,-0.0022767413479344674,0.0035635570725604344,,,,,1875 -2024-04-05 08:00:00+00:00,5591,151.34,151.454,151.309,151.414,USD_JPY,H1,,0.01333376683055576,0.0008453602877635782,0.012488406542792182,,,,,7466 -2024-04-05 09:00:00+00:00,4287,151.413,151.446,151.374,151.42,USD_JPY,H1,,0.023098942006640755,0.005296076631539014,0.017802865375101742,,,,,11753 -2024-04-05 10:00:00+00:00,4051,151.42,151.428,151.334,151.338,USD_JPY,H1,,0.023945173930854935,0.009025896091402199,0.014919277839452736,,,,,7702 -2024-04-05 11:00:00+00:00,3989,151.339,151.412,151.338,151.376,USD_JPY,H1,,0.027366635707039677,0.012694044014529695,0.014672591692509982,,,,,11691 -2024-04-05 12:00:00+00:00,11963,151.375,151.748,151.273,151.658,USD_JPY,H1,,0.05223112415609421,0.0206014600428426,0.03162966411325161,,,,,23654 -2024-04-05 13:00:00+00:00,9483,151.658,151.753,151.595,151.615,USD_JPY,H1,,0.06768642280812287,0.030018452595898658,0.03766797021222421,,,,,14171 -2024-04-05 14:00:00+00:00,10067,151.614,151.646,151.44,151.526,USD_JPY,H1,,0.07192420468300043,0.03839960301331902,0.03352460166968141,,,,,4104 -2024-04-05 15:00:00+00:00,7294,151.526,151.668,151.526,151.592,USD_JPY,H1,,0.07968971236633138,0.04665762488392149,0.033032087482409885,,,,,11398 -2024-04-05 16:00:00+00:00,4345,151.592,151.62,151.528,151.582,USD_JPY,H1,67.39130434782649,0.08406793391463907,0.05413968669006501,0.02992824722457406,,,,,7053 -2024-04-05 17:00:00+00:00,3353,151.58,151.614,151.547,151.587,USD_JPY,H1,67.5675675675678,0.08693898573835668,0.060699546499723346,0.02623943923863333,,,0.14964285714285705,,10406 -2024-04-05 18:00:00+00:00,3396,151.589,151.59,151.538,151.554,USD_JPY,H1,68.38074398249663,0.08556514901061973,0.06567266700190263,0.0198924820087171,,,0.14678571428571477,,7010 -2024-04-05 19:00:00+00:00,2881,151.555,151.653,151.542,151.649,USD_JPY,H1,73.69498464687916,0.09109202736914312,0.07075653907535073,0.020335488293792392,,,0.14828571428571383,,9891 -2024-04-05 20:00:00+00:00,1533,151.65,151.65,151.607,151.63,USD_JPY,H1,69.93464052287612,0.09286844742356948,0.07517892074499448,0.017689526678575,,,0.13692857142857154,,8358 -2024-04-07 21:00:00+00:00,201,151.625,151.625,151.584,151.616,USD_JPY,H1,66.1214953271046,0.09208509051555325,0.07856015469910624,0.013524935816447009,,,0.12657142857142795,,8157 -2024-04-07 22:00:00+00:00,2646,151.616,151.736,151.616,151.696,USD_JPY,H1,66.35730858468858,0.09680371298915702,0.0822088663571164,0.014594846632040623,151.47615000000002,0.1647343235892738,0.12478571428571124,,10803 -2024-04-07 23:00:00+00:00,2606,151.697,151.698,151.648,151.682,USD_JPY,H1,65.05747126436876,0.0982806540953618,0.08542322390476548,0.01285743019059632,151.49714999999998,0.16275660710978762,0.12321428571428328,,8197 -2024-04-08 00:00:00+00:00,4396,151.683,151.781,151.673,151.712,USD_JPY,H1,72.86063569682247,0.10071095662479479,0.08848077044877134,0.01223018617602345,151.52185,0.1554854113989175,0.12421428571428399,,12593 -2024-04-08 01:00:00+00:00,5606,151.714,151.818,151.679,151.78,USD_JPY,H1,73.82075471698215,0.10689183801818558,0.0921629839626542,0.014728854055531385,151.55155,0.14428461456440334,0.12885714285714098,,18199 -2024-04-08 02:00:00+00:00,4322,151.78,151.782,151.684,151.772,USD_JPY,H1,59.93031358885084,0.1098780916680937,0.0957060055037421,0.014172086164351602,151.57695,0.13544331694573616,0.1019285714285709,,13877 -2024-04-08 03:00:00+00:00,3264,151.772,151.788,151.748,151.772,USD_JPY,H1,64.78342749529006,0.11096557710126831,0.09875791982324734,0.012207657278020964,151.59855,0.13000424082151898,0.09350000000000185,,10613 -2024-04-08 04:00:00+00:00,2413,151.772,151.798,151.768,151.796,USD_JPY,H1,78.9699570815426,0.11246756053640183,0.10149984796587826,0.010967712570523577,151.61764999999997,0.12952393601184498,0.08092857142857415,,13026 -2024-04-08 05:00:00+00:00,2911,151.796,151.807,151.755,151.79,USD_JPY,H1,74.38423645319904,0.11188401410481674,0.10357668119366596,0.00830733291115078,151.63615,0.12618836171208045,0.07450000000000248,,10115 -2024-04-08 06:00:00+00:00,3939,151.79,151.834,151.755,151.76,USD_JPY,H1,70.892018779343,0.10775862571418315,0.1044130700977694,0.0033455556164137534,151.65725,0.10762697519429199,0.07357142857143069,,6176 -2024-04-08 07:00:00+00:00,3860,151.758,151.877,151.758,151.87,USD_JPY,H1,76.64783427495408,0.11207339406098527,0.10594513489041257,0.006128259170572692,151.68195,0.09570979986120642,0.07728571428571586,,10036 -2024-04-08 08:00:00+00:00,3985,151.87,151.914,151.842,151.908,USD_JPY,H1,83.0223880597,0.11720805992743522,0.10819771989781711,0.009010340029618105,151.69445,0.10795880062123699,0.07871428571428599,,14021 -2024-04-08 09:00:00+00:00,3538,151.909,151.922,151.864,151.874,USD_JPY,H1,73.68421052631548,0.11718299119112885,0.10999477415647947,0.007188217034649377,151.7074,0.11332737858451522,0.0749285714285719,,10483 -2024-04-08 10:00:00+00:00,2542,151.874,151.891,151.828,151.854,USD_JPY,H1,73.52941176470922,0.11423249014487169,0.11084231735415792,0.003390172790713769,151.72379999999998,0.10935822352537755,0.07635714285714203,,7941 -2024-04-08 11:00:00+00:00,3000,151.856,151.924,151.85,151.919,USD_JPY,H1,78.74762808349192,0.11580423445167298,0.11183470077366094,0.003969533678012047,151.74015,0.11299989520253344,0.07871428571428599,,10941 -2024-04-08 12:00:00+00:00,4768,151.918,151.945,151.854,151.88,USD_JPY,H1,68.93004115226239,0.11260484056725772,0.11198872873238029,0.0006161118348774336,151.75504999999998,0.11067185968578,0.07664285714285768,,6173 -2024-04-08 13:00:00+00:00,6224,151.88,151.88,151.721,151.74,USD_JPY,H1,54.73856209150504,0.09764685572255871,0.10912035413041597,-0.01147349840785726,151.7627,0.10349986015751153,0.08442857142857056,,-51 -2024-04-08 14:00:00+00:00,6292,151.74,151.846,151.732,151.814,USD_JPY,H1,57.774390243903,0.09071798604969672,0.10543988051427212,-0.014721894464575405,151.7757,0.09154469716450182,0.084857142857142,,6241 -2024-04-08 15:00:00+00:00,3663,151.814,151.854,151.774,151.788,USD_JPY,H1,50.65146579804645,0.08218148717722329,0.10078820184686237,-0.018606714669639077,151.78265,0.08656015553537744,0.08064285714285647,,2578 -2024-04-08 16:00:00+00:00,2815,151.788,151.847,151.784,151.836,USD_JPY,H1,54.89296636085835,0.07838586569963013,0.09630773461741593,-0.0179218689177858,151.79295000000002,0.07940003645758736,0.07814285714285672,,5393 -2024-04-08 17:00:00+00:00,3134,151.834,151.836,151.742,151.774,USD_JPY,H1,50.13966480446996,0.069572933024034,0.09096077429873956,-0.021387841274705555,151.80085000000003,0.06789409322414865,0.08199999999999973,,2259 -2024-04-08 18:00:00+00:00,2738,151.772,151.798,151.72,151.773,USD_JPY,H1,48.340548340548516,0.061795587673941554,0.08512773697377995,-0.0233321492998384,151.8047,0.06368846875709996,0.08542857142857128,,-479 -2024-04-08 19:00:00+00:00,2415,151.774,151.838,151.748,151.836,USD_JPY,H1,53.066666666668155,0.06002364373668456,0.08010691832636088,-0.02008327458967632,151.8124,0.05703498464693891,0.08814285714285777,52.92577368264078,1936 -2024-04-08 20:00:00+00:00,888,151.835,151.862,151.833,151.852,USD_JPY,H1,56.25000000000121,0.059227691720479925,0.0759310730051847,-0.016703381284704777,151.8194,0.052472950425033214,0.0845714285714284,46.37280284395631,2824 -2024-04-08 21:00:00+00:00,1261,151.83,151.851,151.802,151.824,USD_JPY,H1,46.48318042813482,0.05569550490753272,0.07188395938565431,-0.01618845447812159,151.8216,0.051650036938821926,0.07957142857142888,41.051286402194016,1563 -2024-04-08 22:00:00+00:00,1003,151.816,151.818,151.778,151.807,USD_JPY,H1,42.022116903633325,0.050937290112130995,0.06769462553094965,-0.01675733541881866,151.82335,0.05046027619500637,0.07728571428571789,36.52589007148594,560 -2024-04-08 23:00:00+00:00,2199,151.808,151.856,151.808,151.834,USD_JPY,H1,46.805111821086925,0.04878270826259268,0.06391224207727826,-0.015129533814685583,151.82645,0.049023597969618096,0.07664285714286175,31.31811224058575,2759 -2024-04-09 00:00:00+00:00,4495,151.834,151.92,151.79,151.91,USD_JPY,H1,54.105571847506,0.052601395323364386,0.06165007272649549,-0.009048677403131103,151.83215,0.051843159219770424,0.08142857142857654,25.743915536487652,7254 -2024-04-09 01:00:00+00:00,4731,151.91,151.916,151.86,151.89,USD_JPY,H1,47.72370486656016,0.05339835646412894,0.05999972947402218,-0.00660137300989324,151.83715,0.052383479717939344,0.08014285714286018,19.980242008110004,2523 -2024-04-09 02:00:00+00:00,3451,151.895,151.896,151.815,151.876,USD_JPY,H1,49.67320261437984,0.05229741882274652,0.05845926734376705,-0.00616184852102053,151.84295,0.049747229491662735,0.07942857142857511,15.334898241833471,-928 -2024-04-09 03:00:00+00:00,2905,151.876,151.884,151.843,151.857,USD_JPY,H1,61.91446028513105,0.04932320934500467,0.05663205574401458,-0.007308846399009909,151.8423,0.049459286818781666,0.07100000000000405,13.48503239464409,-3833 -2024-04-09 04:00:00+00:00,2265,151.858,151.896,151.85,151.892,USD_JPY,H1,58.62831858407061,0.04922292318045152,0.055150229231301966,-0.005927306050850449,151.84150000000002,0.04845996720019181,0.06614285714286032,12.475948159418918,-1568 -2024-04-09 05:00:00+00:00,2288,151.893,151.902,151.871,151.894,USD_JPY,H1,62.383177570091256,0.048742950565127785,0.05386877349806713,-0.005125822932939346,151.8425,0.049363847841058885,0.06264285714285782,12.004675699289779,720 -2024-04-09 06:00:00+00:00,3163,151.896,151.921,151.874,151.916,USD_JPY,H1,59.95024875621584,0.04956641417916785,0.053008301634287276,-0.003441887455119426,151.84560000000002,0.05200040485663522,0.061499999999999284,12.172606119320678,3883 -2024-04-09 07:00:00+00:00,3678,151.916,151.937,151.882,151.905,USD_JPY,H1,68.66096866096723,0.04876922568098507,0.05216048644362684,-0.0033912607626417693,151.8449,0.05104579986836601,0.05871428571428388,13.353044002048064,205 -2024-04-09 08:00:00+00:00,3483,151.904,151.914,151.864,151.889,USD_JPY,H1,65.84699453552042,0.046312519869815105,0.0509908931288645,-0.004678373259049393,151.84535,0.051409885389682185,0.05671428571428245,14.098070292245206,-3278 -2024-04-09 09:00:00+00:00,4810,151.888,151.898,151.728,151.841,USD_JPY,H1,50.71225071225007,0.04003091252636182,0.04879889700836397,-0.008767984482002153,151.85039999999998,0.04508868454141089,0.062428571428567024,15.458410591434452,-8088 -2024-04-09 10:00:00+00:00,3396,151.842,151.842,151.764,151.798,USD_JPY,H1,42.857142857142854,0.031223033125968414,0.04528372423188486,-0.01406069110591645,151.8496,0.04590310160362523,0.06592857142856749,16.789292594585152,-11484 -2024-04-09 11:00:00+00:00,3215,151.798,151.848,151.775,151.83,USD_JPY,H1,50.78534031413609,0.026519161423323112,0.041530811670172516,-0.015011650246849403,151.8517,0.043851543812361594,0.06764285714285327,16.168412362453672,-8269 -2024-04-09 12:00:00+00:00,4715,151.83,151.847,151.744,151.771,USD_JPY,H1,45.75471698113226,0.017825026483365036,0.036789654632811024,-0.018964628149445988,151.84845,0.04734584403471177,0.07214285714285243,14.548809820657263,-12984 -2024-04-09 13:00:00+00:00,5368,151.77,151.79,151.707,151.771,USD_JPY,H1,42.0654911838774,0.01081024809471387,0.031593773325191594,-0.020783525230477724,151.8483,0.04759820872338798,0.07457142857142328,15.19428274546271,-18352 -2024-04-09 14:00:00+00:00,6982,151.77,151.77,151.572,151.654,USD_JPY,H1,20.77625570776364,-0.004142187943074305,0.024446581071538416,-0.02858876901461272,151.84235,0.06258491074230857,0.07942857142856699,20.526004231566066,-25334 -2024-04-09 15:00:00+00:00,5138,151.654,151.738,151.634,151.732,USD_JPY,H1,34.0725806451629,-0.009587632839412663,0.017639738289348204,-0.027227371128760867,151.83715,0.06728437294124502,0.08285714285714059,26.148448484856633,-20196 -2024-04-09 16:00:00+00:00,2877,151.73,151.748,151.656,151.67,USD_JPY,H1,31.066176470588033,-0.018690615218702078,0.010373667587738148,-0.029064282806440224,151.82805000000002,0.07680424535958215,0.08364285714285456,30.30237159870261,-23073 -2024-04-09 17:00:00+00:00,3084,151.67,151.726,151.658,151.693,USD_JPY,H1,35.03649635036773,-0.023774825171500424,0.003543969035890434,-0.02731879420739086,151.82150000000001,0.08253962365843447,0.08557142857142708,35.913485056503376,-19989 -2024-04-09 18:00:00+00:00,2335,151.692,151.744,151.69,151.741,USD_JPY,H1,36.54188948306909,-0.023658182539975314,-0.0018964612792827162,-0.021761721260692597,151.8182,0.08444718062659785,0.08614285714285634,41.33757673686669,-17654 -2024-04-09 19:00:00+00:00,2828,151.74,151.79,151.734,151.738,USD_JPY,H1,36.120996441282315,-0.023536503184345747,-0.006224469660295323,-0.017312033524050426,151.8134,0.08621173445585467,0.08792857142857104,45.4649617896241,-20482 -2024-04-09 20:00:00+00:00,884,151.742,151.782,151.734,151.781,USD_JPY,H1,38.42195540308992,-0.01974274866714154,-0.008928125461664566,-0.010814623205476975,151.80695,0.08338337269562626,0.08799999999999995,49.75259949762832,-19598 -2024-04-09 21:00:00+00:00,1098,151.767,151.784,151.746,151.76,USD_JPY,H1,37.7740303541328,-0.018220658960871106,-0.010786632161505876,-0.00743402679936523,151.80045,0.08161686809653886,0.0867857142857125,53.17950321721691,-20696 -2024-04-09 22:00:00+00:00,1057,151.756,151.786,151.736,151.754,USD_JPY,H1,38.42195540308805,-0.01729912817719992,-0.012089131364644684,-0.005209996812555235,151.79435,0.0802202724082691,0.08678571428571454,56.452318802665914,-21753 -2024-04-09 23:00:00+00:00,1981,151.756,151.79,151.742,151.78,USD_JPY,H1,44.56327985739805,-0.014305915988529705,-0.01253248828942169,-0.0017734276991080156,151.7905,0.07889199812665,0.07807142857142983,58.66773922989561,-19772 -2024-04-10 00:00:00+00:00,4092,151.778,151.785,151.682,151.724,USD_JPY,H1,43.55400696864147,-0.016265012809526525,-0.013278993193442657,-0.0029860196160838674,151.78209999999999,0.0764212012467442,0.07985714285714453,61.85633774622751,-23864 -2024-04-10 01:00:00+00:00,4540,151.724,151.784,151.713,151.724,USD_JPY,H1,40.221402214022106,-0.017614561454905697,-0.014146106845735267,-0.0034684546091704304,151.77360000000002,0.07268272798515786,0.07971428571428671,65.9841698292793,-28404 -2024-04-10 02:00:00+00:00,4356,151.734,151.766,151.699,151.758,USD_JPY,H1,48.74274661508955,-0.01575891368187854,-0.014468668212963921,-0.0012902454689146178,151.76569999999998,0.06451854078681625,0.077142857142856,69.86391888881504,-24048 -2024-04-10 03:00:00+00:00,3153,151.76,151.772,151.736,151.754,USD_JPY,H1,48.36852207293746,-0.014444558148227316,-0.014463846200016601,1.928805178928565e-05,151.75815,0.05557477182279558,0.07378571428571336,71.58208676083223,-27201 -2024-04-10 04:00:00+00:00,2372,151.754,151.79,151.746,151.784,USD_JPY,H1,64.97695852534028,-0.010857019674318735,-0.01374248089487703,0.0028854612205582945,151.7529,0.0468355465544169,0.06278571428571159,66.45468942863614,-24829 -2024-04-10 05:00:00+00:00,3199,151.784,151.822,151.78,151.812,USD_JPY,H1,60.41666666666405,-0.005688925204111683,-0.012131769756723962,0.0064428445526122785,151.75145,0.04434728378317904,0.05835714285713932,61.618830777325684,-21630 -2024-04-10 06:00:00+00:00,2930,151.811,151.818,151.775,151.782,USD_JPY,H1,65.90909090908761,-0.003968179676718364,-0.010499051740722843,0.006530872064004479,151.75065,0.04360139423167435,0.05485714285714088,56.788501874032285,-24560 -2024-04-10 07:00:00+00:00,2651,151.782,151.844,151.781,151.842,USD_JPY,H1,69.15167095115083,0.0022115289806379224,-0.007956935596450691,0.010168464577088613,151.75125,0.044816438478454804,0.054499999999996315,52.97563403026474,-21909 -2024-04-10 08:00:00+00:00,2808,151.842,151.886,151.828,151.854,USD_JPY,H1,66.00566572237398,0.007985243410445264,-0.0047684997950715,0.012753743205516765,151.75539999999998,0.05025451014060223,0.054785714285709934,49.856538576914495,-19101 -2024-04-10 09:00:00+00:00,2656,151.854,151.875,151.836,151.86,USD_JPY,H1,67.13483146067094,0.01289644140058499,-0.0012355115559402018,0.014131952956525192,151.75985,0.055386940318931,0.05357142857142451,47.29587251944604,-16445 -2024-04-10 10:00:00+00:00,2455,151.861,151.872,151.81,151.835,USD_JPY,H1,57.98816568047113,0.014602976106260712,0.0019321859764999812,0.012670790129760731,151.7689,0.05185597463417989,0.054571428571425225,43.20604390755564,-18900 -2024-04-10 11:00:00+00:00,2367,151.836,151.856,151.818,151.844,USD_JPY,H1,62.883435582819466,0.016491537757644892,0.0048440563327289635,0.011647481424915928,151.77450000000002,0.05367690868812047,0.054571428571425225,38.88387615995985,-16533 -2024-04-10 12:00:00+00:00,16791,151.843,152.522,151.774,152.386,USD_JPY,H1,86.65893271461405,0.06101970956132163,0.0160791869784475,0.044940522582874134,151.8103,0.14365935586069142,0.10442857142856658,39.42097795490415,258 -2024-04-10 13:00:00+00:00,14163,152.386,152.698,152.37,152.673,USD_JPY,H1,89.75957257346128,0.11810565944099949,0.0364844814709579,0.08162117797004159,151.8593,0.23781839599508123,0.12442857142856667,41.58337270573024,14421 -2024-04-10 14:00:00+00:00,8845,152.672,152.781,152.58,152.772,USD_JPY,H1,94.93996569468068,0.16938262120498848,0.06306410941776402,0.10631851178722446,151.91084999999998,0.3112346001262936,0.1314285714285656,43.572332677975204,23266 -2024-04-10 15:00:00+00:00,6167,152.773,152.944,152.746,152.906,USD_JPY,H1,95.4615384615367,0.21831605140519628,0.09411449781525047,0.1242015535899458,151.96925000000002,0.37924493890385635,0.1404999999999928,45.349911116947446,29433 -2024-04-10 16:00:00+00:00,4139,152.906,152.968,152.878,152.936,USD_JPY,H1,95.4475308641957,0.2565594391528805,0.1266034860827765,0.129955953070104,152.027,0.4331751803163243,0.14214285714285171,47.409279284489806,33572 -2024-04-10 17:00:00+00:00,10764,152.94,152.985,152.643,152.774,USD_JPY,H1,85.07565337001323,0.2706753761158325,0.1554178640893877,0.11525751202644477,152.0777,0.45885923767531345,0.1639999999999954,47.800384675592746,22808 -2024-04-10 18:00:00+00:00,7841,152.786,152.982,152.758,152.962,USD_JPY,H1,86.53846153846092,0.29364740221370766,0.1830637717142517,0.11058363049945596,152.13809999999998,0.49229461653937223,0.17685714285713874,51.98184249975136,30649 -2024-04-10 19:00:00+00:00,5075,152.962,152.97,152.92,152.961,USD_JPY,H1,86.24605678233488,0.3082192471369751,0.2080948667987964,0.10012438033817872,152.19715000000002,0.517276091911386,0.177428571428568,54.85615305835501,25574 -2024-04-10 20:00:00+00:00,3288,152.962,153.239,152.946,153.145,USD_JPY,H1,89.18918918918972,0.3308015273801175,0.23263619891506063,0.09816532846505685,152.2682,0.545676943177683,0.19528571428571087,58.63411259979848,28862 -2024-04-10 21:00:00+00:00,1542,153.142,153.144,152.942,153.001,USD_JPY,H1,81.78826110806378,0.33323719962325526,0.25275639905669955,0.08048080056655571,152.33205,0.5533062799875176,0.205214285714283,61.784994859764616,27320 -2024-04-10 22:00:00+00:00,2040,153.01,153.029,152.9,152.917,USD_JPY,H1,78.04749340369389,0.32464706021690404,0.2671345312887405,0.05751252892816355,152.39000000000001,0.5507066274102917,0.21028571428571144,64.09217520707872,25280 -2024-04-10 23:00:00+00:00,4399,152.918,152.972,152.812,152.954,USD_JPY,H1,78.40083073727936,0.31716877936901255,0.2771413809047949,0.040027398464217656,152.45,0.5430846594853753,0.21892857142856922,66.4486020904397,29679 -2024-04-11 00:00:00+00:00,7566,152.954,153.009,152.802,152.838,USD_JPY,H1,74.86365889935519,0.29844170714494567,0.2814014461528251,0.01704026099212058,152.5027,0.525923758733065,0.2292857142857108,70.00204929660343,22113 -2024-04-11 01:00:00+00:00,6124,152.837,152.902,152.758,152.809,USD_JPY,H1,73.68679430535101,0.27805506415293735,0.28073216975284754,-0.00267710559991019,152.55255000000002,0.5037947028616773,0.23685714285713896,73.01105200883445,15989 -2024-04-11 02:00:00+00:00,3582,152.81,152.86,152.783,152.827,USD_JPY,H1,64.57369464639791,0.26034980181842116,0.27665569616596225,-0.016305894347541094,152.6048,0.4729163273048179,0.18892857142857014,69.52559687439937,19571 -2024-04-11 03:00:00+00:00,2605,152.826,152.95,152.813,152.948,USD_JPY,H1,60.207869339272605,0.25316362988320407,0.2719572829094106,-0.018793653026206558,152.6601,0.4427252801502328,0.1752857142857128,65.39708589659654,22176 -2024-04-11 04:00:00+00:00,2961,152.949,152.973,152.866,152.896,USD_JPY,H1,54.76923076923044,0.24050023443669488,0.2656658732148675,-0.025165638778172628,152.7122,0.40233994529356765,0.1685714285714275,60.11999832161482,19215 -2024-04-11 05:00:00+00:00,3257,152.894,152.974,152.886,152.97,USD_JPY,H1,52.580645161289965,0.2337411612585356,0.25928093082360115,-0.02553976956506554,152.7677,0.35200793950358544,0.16071428571428573,53.669427616982205,22472 -2024-04-11 06:00:00+00:00,5363,152.971,153.19,152.96,153.166,USD_JPY,H1,58.17923186344183,0.24141720180259085,0.2557081850193991,-0.014290983216808273,152.83425,0.2860270276148436,0.17071428571428474,48.34730275988056,27835 -2024-04-11 07:00:00+00:00,7134,153.164,153.208,153.084,153.133,USD_JPY,H1,64.05638214565406,0.24204752186648193,0.2529760523888157,-0.01092853052233378,152.8987,0.17471754649287868,0.1551428571428549,48.000689913267465,20701 -2024-04-11 08:00:00+00:00,5856,153.134,153.292,153.1,153.242,USD_JPY,H1,61.68614357262101,0.24847814274994562,0.2520764704610417,-0.003598327711096083,152.9415,0.14479659053801705,0.1528571428571419,47.96195857674211,26557 -2024-04-11 09:00:00+00:00,5313,153.243,153.28,153.154,153.168,USD_JPY,H1,58.143194335168815,0.24478158483526613,0.2506174933358866,-0.00583590850062049,152.96625,0.1386616005732554,0.15828571428571284,47.999344459350304,21244 -2024-04-11 10:00:00+00:00,5324,153.169,153.173,153.052,153.076,USD_JPY,H1,47.073791348599876,0.2317568561575456,0.24684536590021844,-0.01508850974267284,152.98145000000002,0.13278493692258514,0.14599999999999877,44.967546218977205,15920 -2024-04-11 11:00:00+00:00,5597,153.077,153.191,153.023,153.088,USD_JPY,H1,54.15472779369565,0.21986845783561648,0.24144998428729805,-0.02158152645168157,152.99054999999998,0.1335761068291751,0.14357142857142793,41.68687459414779,21517 -2024-04-11 12:00:00+00:00,15300,153.086,153.242,152.797,152.844,USD_JPY,H1,46.97597348798649,0.18858417473055056,0.23087682237594856,-0.042292647645398,152.98595,0.13709139287296687,0.16614285714285668,37.1071432364987,6217 -2024-04-11 13:00:00+00:00,12196,152.847,153.144,152.836,153.134,USD_JPY,H1,56.16438356164307,0.18505849224391113,0.22171315634954109,-0.03665466410562995,153.00395,0.13130978838671825,0.17671428571428496,34.19758830090964,18413 -2024-04-11 14:00:00+00:00,8323,153.138,153.299,153.136,153.273,USD_JPY,H1,64.66621712744441,0.19127559579717968,0.21562564423906883,-0.02435004844188915,153.01950000000002,0.14389232085086376,0.17371428571428688,31.842316618301616,26736 -2024-04-11 15:00:00+00:00,6089,153.272,153.321,153.193,153.193,USD_JPY,H1,62.51629726206051,0.18758500062327244,0.21001751551590958,-0.022432514892637145,153.03109999999998,0.1482146025899627,0.17257142857143037,30.388165537485797,20647 -2024-04-11 16:00:00+00:00,5529,153.192,153.306,153.18,153.236,USD_JPY,H1,63.11738293778062,0.18598598730326898,0.20521120987338148,-0.0192252225701125,153.03564999999998,0.15320789968589524,0.17607142857142882,30.21970631471618,26176 -2024-04-11 17:00:00+00:00,6090,153.238,153.256,153.159,153.178,USD_JPY,H1,57.68716577540097,0.17798692003202632,0.19976635190511047,-0.02177943187308415,153.0445,0.1561842703848146,0.17321428571428651,29.700523222964726,20086 -2024-04-11 18:00:00+00:00,4359,153.178,153.248,153.09,153.246,USD_JPY,H1,61.57407407407526,0.1751160049900875,0.19483628252210589,-0.019720277532018382,153.06095,0.15934255552063692,0.1768571428571428,28.716657625529074,24445 -2024-04-11 19:00:00+00:00,5065,153.246,153.259,153.168,153.205,USD_JPY,H1,57.944557133198956,0.1676004333191372,0.18938911268151215,-0.02178867936237494,153.07350000000002,0.16035700303042463,0.1770714285714275,28.928070641485203,19380 -2024-04-11 20:00:00+00:00,1076,153.201,153.29,153.198,153.277,USD_JPY,H1,54.09594095940951,0.1655457782115093,0.18462044578751158,-0.01907466757600229,153.09545,0.15642199165567966,0.16721428571428426,28.374520304886435,20456 -2024-04-11 21:00:00+00:00,460,153.252,153.255,153.2,153.214,USD_JPY,H1,52.924187725631576,0.1570238030905955,0.17910111724812838,-0.02207731415753289,153.1157,0.14302892603964526,0.16228571428571367,25.279129779918613,19996 -2024-04-11 22:00:00+00:00,1344,153.217,153.238,153.172,153.229,USD_JPY,H1,49.49651432997764,0.14975417810308045,0.1732317294191188,-0.023477551316038348,153.1358,0.1277532984427411,0.15328571428571333,23.244096522478824,21340 -2024-04-11 23:00:00+00:00,2469,153.23,153.254,153.169,153.194,USD_JPY,H1,51.03833865814626,0.1395599798581202,0.16649737950691906,-0.026937399648798876,153.1481,0.12034813535760235,0.1503571428571401,20.80819157088542,18871 -2024-04-12 00:00:00+00:00,6142,153.195,153.304,152.966,152.972,USD_JPY,H1,46.23733719247508,0.1122732435709679,0.15565255231972885,-0.04337930874876095,153.1519,0.11294101860728403,0.16585714285713898,21.63702519224171,12729 -2024-04-12 01:00:00+00:00,5813,152.97,153.102,152.97,153.1,USD_JPY,H1,50.4005340453939,0.09982610552754068,0.14448726296129122,-0.04466115743375054,153.1584,0.10541117487872849,0.16328571428571031,22.588243128534824,18542 -2024-04-12 02:00:00+00:00,3471,153.1,153.186,153.049,153.178,USD_JPY,H1,62.537537537538256,0.09515867708293513,0.13462154578562002,-0.039462868702684895,153.159,0.10549083272642173,0.14128571428571085,22.886397921052993,22013 -2024-04-12 03:00:00+00:00,2945,153.176,153.234,153.16,153.208,USD_JPY,H1,53.45149253731418,0.09281059295014416,0.12625935521852485,-0.0334487622683807,153.16275000000002,0.10585037851334894,0.12457142857142653,22.20769511144002,24958 -2024-04-12 04:00:00+00:00,2758,153.208,153.272,153.177,153.239,USD_JPY,H1,48.2365145228219,0.09238618979253488,0.11948472213332686,-0.027098532340791986,153.1626,0.10573422490201535,0.11957142857142498,21.307575001477225,27716 -2024-04-12 05:00:00+00:00,3249,153.24,153.241,153.13,153.209,USD_JPY,H1,50.87527352297548,0.0886076837312828,0.11330931445291806,-0.024701630721635254,153.16465,0.10624067760885206,0.11835714285714159,20.60906115018864,24467 -2024-04-12 06:00:00+00:00,5619,153.21,153.29,153.202,153.278,USD_JPY,H1,52.23404255319166,0.09014181506526597,0.10867581457538764,-0.018533999510121663,153.17475,0.10696869930694806,0.11564285714285509,19.51179267342844,30086 -2024-04-12 07:00:00+00:00,6617,153.276,153.387,153.232,153.248,USD_JPY,H1,53.83771929824533,0.0879233502692216,0.10452532171415443,-0.016601971444932834,153.18275,0.10611903693419952,0.11978571428571172,18.552588896994934,23469 -2024-04-12 08:00:00+00:00,4537,153.247,153.31,153.208,153.309,USD_JPY,H1,53.480662983424864,0.09004935818947502,0.10163012900921856,-0.011580770819743541,153.206,0.0741051883960406,0.11578571428571292,18.88690783113197,28006 -2024-04-12 09:00:00+00:00,4073,153.31,153.354,153.264,153.304,USD_JPY,H1,55.69620253164515,0.0902899699994748,0.09936209720726982,-0.009072127207795017,153.2145,0.07515422738995943,0.11571428571428603,19.444860088824928,23933 -2024-04-12 10:00:00+00:00,4437,153.302,153.354,153.27,153.272,USD_JPY,H1,49.69843184559738,0.08689683144604032,0.09686904405502393,-0.009972212608983608,153.21445,0.07511358066185436,0.1151428571428588,19.199309813920014,19496 -2024-04-12 11:00:00+00:00,5204,153.271,153.295,153.158,153.164,USD_JPY,H1,47.13958810068592,0.07463272766264595,0.09242178077654833,-0.017789053113902387,153.21300000000002,0.07582597804982949,0.1210000000000012,18.220562009024793,14292 -2024-04-12 12:00:00+00:00,10811,153.164,153.188,152.794,152.854,USD_JPY,H1,33.960650128314555,0.039444239198019204,0.08182627246084251,-0.042382033262823304,153.1939,0.11009512633149114,0.14442857142857082,17.954817679600072,3481 -2024-04-12 13:00:00+00:00,11113,152.854,153.09,152.591,152.936,USD_JPY,H1,39.391447368421396,0.017966714170768228,0.06905436080282766,-0.05108764663205943,153.1818,0.12431479566363883,0.17400000000000052,18.948470272602012,14594 -2024-04-12 14:00:00+00:00,11155,152.939,153.016,152.732,152.928,USD_JPY,H1,47.80439121756427,0.00029666790530313847,0.05530282222332276,-0.05500615431801962,153.1659,0.13550408811019038,0.1701428571428575,19.276983572246138,3439 -2024-04-12 15:00:00+00:00,8510,152.928,153.159,152.902,153.122,USD_JPY,H1,51.029962546817394,0.0019250172084070982,0.04462726122033963,-0.04270224401193253,153.16174999999998,0.13551456515171253,0.17907142857142894,18.555064270174082,11949 -2024-04-12 16:00:00+00:00,5654,153.122,153.154,153.05,153.106,USD_JPY,H1,46.42147117296219,0.001902498659973162,0.036082308708266335,-0.03417981004829317,153.1532,0.13323568353957027,0.17671428571428496,20.889383439657973,6295 -2024-04-12 17:00:00+00:00,5987,153.106,153.144,153.052,153.131,USD_JPY,H1,46.153846153846374,0.003857477020517308,0.02963734237071653,-0.025779865350199223,153.14905,0.1325330048261784,0.1779999999999993,23.620429372143526,12282 -2024-04-12 18:00:00+00:00,5271,153.132,153.219,153.122,153.216,USD_JPY,H1,48.90995260663529,0.01212582215174507,0.02613503832692224,-0.01400921617517717,153.14839999999998,0.13215158759961157,0.1781428571428551,25.435397535387384,17553 -2024-04-12 19:00:00+00:00,2672,153.216,153.248,153.184,153.24,USD_JPY,H1,51.477597712107,0.02038021423857117,0.024984073509252025,-0.0046038592706808545,153.1507,0.13338156583688093,0.1747857142857104,26.00760730805357,20225 -2024-04-12 20:00:00+00:00,2555,153.238,153.331,153.213,153.312,USD_JPY,H1,51.61596958174994,0.03235866713581004,0.02645899223456363,0.005899674901246408,153.1677,0.13105366518236633,0.17692857142856763,27.076805868327888,22780 -2024-04-14 21:00:00+00:00,345,153.084,153.198,152.978,153.184,USD_JPY,H1,47.21739130434828,0.031163908954056296,0.027399975578462164,0.0037639333755941327,153.1719,0.130112461476279,0.18157142857142464,30.46652743839118,22435 -2024-04-14 22:00:00+00:00,3230,153.194,153.296,153.124,153.284,USD_JPY,H1,48.94869638351536,0.037849908567153534,0.029489962176200438,0.008359946390953096,153.17720000000003,0.13251081385800711,0.18657142857142414,32.47569343108859,25665 -2024-04-14 23:00:00+00:00,3255,153.278,153.324,153.232,153.307,USD_JPY,H1,50.12427506213695,0.04449164719770238,0.03249029918050083,0.012001348017201548,153.18215,0.13553646819348808,0.18671428571428197,34.31251978712665,28920 -2024-04-15 00:00:00+00:00,5138,153.302,153.464,153.28,153.464,USD_JPY,H1,57.20720720720721,0.06171247778064526,0.038334734900529716,0.023377742880115543,153.1934,0.14915707016023988,0.1938571428571387,35.43658732876961,34058 -2024-04-15 01:00:00+00:00,5929,153.466,153.689,153.454,153.573,USD_JPY,H1,65.34133533383357,0.08319646210881615,0.047307080342187,0.03588938176662915,153.2116,0.17166932718042144,0.2008571428571376,35.39627655391132,39987 -2024-04-15 02:00:00+00:00,4203,153.565,153.745,153.534,153.712,USD_JPY,H1,86.9191049913911,0.11016885482055727,0.05987943523786106,0.05028941958269621,153.23329999999999,0.2047476238531901,0.18778571428571159,35.13618135626209,44190 -2024-04-15 03:00:00+00:00,3072,153.712,153.736,153.656,153.676,USD_JPY,H1,83.15412186379632,0.12717379093575687,0.07333830637744022,0.053835484558316646,153.2547,0.22747101608279469,0.15785714285713937,35.808106415201905,41118 -2024-04-15 04:00:00+00:00,3188,153.674,153.852,153.669,153.787,USD_JPY,H1,85.23379819524007,0.1479021734655248,0.08825107979505714,0.05965109367046767,153.2786,0.25670880492527476,0.15064285714285372,37.020785822677155,44306 -2024-04-15 05:00:00+00:00,4106,153.786,153.854,153.777,153.826,USD_JPY,H1,83.08270676691477,0.16556797546502366,0.10371445892905046,0.06185351653597321,153.3047,0.2844631323810878,0.1377857142857124,39.110985770340434,48412 -2024-04-15 06:00:00+00:00,7993,153.828,153.89,153.764,153.872,USD_JPY,H1,85.00914076782377,0.18119140466160388,0.11920984807556115,0.061981556586042735,153.3347,0.31121376982095433,0.13935714285714035,40.57376050468103,56405 -2024-04-15 07:00:00+00:00,6609,153.873,153.97,153.872,153.908,USD_JPY,H1,85.15837104072281,0.1942389186513651,0.13421566219072195,0.06002325646064316,153.3719,0.3334101157178893,0.13978571428570977,41.77307208087677,63014 -2024-04-15 08:00:00+00:00,7538,153.908,153.954,153.696,153.868,USD_JPY,H1,80.7547169811314,0.1990568977755629,0.14718390930769015,0.05187298846787275,153.42260000000002,0.32755624667636707,0.1512857142857119,41.60312440595464,55476 -2024-04-15 09:00:00+00:00,4220,153.869,153.896,153.76,153.876,USD_JPY,H1,80.45977011494199,0.20120138970733592,0.1579874053876193,0.043213984319716625,153.46959999999999,0.3214425380422336,0.15642857142856922,41.572024128385614,59696 -2024-04-15 10:00:00+00:00,4131,153.876,153.946,153.823,153.93,USD_JPY,H1,80.11695906432693,0.20489634618138552,0.16736919354637253,0.037527152635012995,153.5197,0.3104850365067859,0.15678571428571178,41.698576908302904,63827 -2024-04-15 11:00:00+00:00,4855,153.932,153.942,153.864,153.915,USD_JPY,H1,90.03285870755673,0.20425967280718282,0.1747472893985346,0.02951238340864823,153.55935000000002,0.30764577631441836,0.1466428571428549,42.43583946522392,58972 -2024-04-15 12:00:00+00:00,11725,153.914,154.42,153.882,154.189,USD_JPY,H1,91.62833486660472,0.22329065893498523,0.18445596330582473,0.038834695629160504,153.6135,0.31876084088876233,0.17278571428571102,44.82742265756134,70697 -2024-04-15 13:00:00+00:00,8899,154.19,154.424,154.113,154.36,USD_JPY,H1,92.63157894736801,0.24929737844897204,0.19742424633445418,0.051873132114517856,153.67495000000002,0.3386890321906384,0.18842857142856775,47.05959232098392,79596 -2024-04-15 14:00:00+00:00,12468,154.363,154.448,153.858,154.332,USD_JPY,H1,89.24050632911188,0.2645983993964194,0.21085907694684725,0.053739322449572136,153.73075,0.35081122153919714,0.21742857142856817,47.85196299641921,67128 -2024-04-15 15:00:00+00:00,7359,154.333,154.346,154.199,154.258,USD_JPY,H1,81.979458450046,0.26766787849314255,0.22222083725610633,0.04544704123703622,153.78164999999998,0.3497098458947534,0.21114285714285433,49.02509415982255,59769 -2024-04-15 16:00:00+00:00,5081,154.258,154.324,154.208,154.3,USD_JPY,H1,80.18480492813111,0.270372822190069,0.23185123424289888,0.03852158794717009,153.83105,0.34965779887734083,0.2043571428571401,48.13307961075127,64850 -2024-04-15 17:00:00+00:00,5775,154.3,154.3,154.116,154.175,USD_JPY,H1,73.47130761994367,0.25943939833794616,0.23736886706190835,0.022070531276037808,153.88060000000002,0.32228418319367563,0.2117857142857125,44.81037772103984,59075 -2024-04-15 18:00:00+00:00,4958,154.176,154.247,154.16,154.208,USD_JPY,H1,71.37055837563383,0.2505492298117815,0.24000493961188302,0.010544290199898498,153.9268,0.29753771985553235,0.2049285714285714,40.533412367600526,64033 -2024-04-15 19:00:00+00:00,3233,154.21,154.235,154.176,154.227,USD_JPY,H1,70.77720207253871,0.24224440569796002,0.24045283282909843,0.001791572868861585,153.9728,0.26613146731406556,0.20364285714285707,36.5136303571315,67266 -2024-04-15 20:00:00+00:00,1712,154.226,154.276,154.224,154.273,USD_JPY,H1,70.77720207253786,0.23664667278032425,0.23969160081934363,-0.0030449280390193734,154.01325,0.24540104126234424,0.19835714285714598,32.41689115473866,68978 -2024-04-15 21:00:00+00:00,464,154.265,154.268,154.203,154.232,USD_JPY,H1,66.7010309278352,0.22629350114650038,0.237011980884775,-0.010718479738274611,154.0462,0.2267074627890096,0.19600000000000403,28.84182470278788,68514 -2024-04-15 22:00:00+00:00,1182,154.228,154.228,154.146,154.178,USD_JPY,H1,65.75203252032472,0.2112955062636388,0.23186868596054777,-0.020573179696908972,154.0695,0.21415107800464364,0.18342857142857635,26.46510175760853,67332 -2024-04-15 23:00:00+00:00,2321,154.177,154.243,154.147,154.213,USD_JPY,H1,66.66666666666572,0.19992903726691225,0.22548075622182068,-0.02555171895490843,154.09634999999997,0.19502827730203307,0.18057142857143407,25.01405264941229,69653 -2024-04-16 00:00:00+00:00,5888,154.218,154.366,154.133,154.292,USD_JPY,H1,67.47104247104171,0.19504728477929234,0.21939406193331504,-0.024346777154022697,154.1216,0.18531833209524257,0.18842857142857788,24.203050606460472,75541 -2024-04-16 01:00:00+00:00,5823,154.292,154.389,154.256,154.364,USD_JPY,H1,70.53979871912192,0.19474337858778767,0.21446392526420957,-0.019720546676421896,154.14849999999998,0.17909435913430224,0.1923571428571498,21.24776102696713,81364 -2024-04-16 02:00:00+00:00,4389,154.354,154.421,154.298,154.32,USD_JPY,H1,57.589803012745996,0.18877600617463486,0.20932634144629464,-0.02055033527165978,154.17090000000002,0.1705017055017185,0.16271428571429322,19.586883910163333,76975 -2024-04-16 03:00:00+00:00,2944,154.318,154.376,154.316,154.354,USD_JPY,H1,49.586776859504134,0.18466167159257907,0.20439340747555154,-0.019731735882972473,154.19320000000002,0.16332228390854775,0.14478571428572146,17.916288956659763,79919 -2024-04-16 04:00:00+00:00,2266,154.353,154.356,154.236,154.272,USD_JPY,H1,46.15384615384615,0.172792473027215,0.19807322058588425,-0.025280747558669242,154.2134,0.14493243434915218,0.11121428571429297,16.558970708641095,77653 -2024-04-16 05:00:00+00:00,3493,154.272,154.36,154.262,154.348,USD_JPY,H1,55.75447570332453,0.1675867764528789,0.1919759317592832,-0.024389155306404314,154.23700000000002,0.12402079621901388,0.10771428571429453,15.946095929099124,81146 -2024-04-16 06:00:00+00:00,7304,154.35,154.608,154.284,154.51,USD_JPY,H1,61.64079822616238,0.1745214953595564,0.18848504447933787,-0.013963549119781454,154.266,0.11600862036964595,0.12257142857143728,17.82860494895871,88450 -2024-04-16 07:00:00+00:00,5909,154.51,154.523,154.37,154.392,USD_JPY,H1,62.12290502793157,0.16855272532509957,0.18449858064849023,-0.015945855323390656,154.28985,0.08491498844863575,0.12035714285715114,21.580538268566638,82541 -2024-04-16 08:00:00+00:00,5362,154.392,154.554,154.38,154.507,USD_JPY,H1,65.3019447287609,0.17112929894111062,0.18182472430701432,-0.010695425365903705,154.30575,0.094291750490721,0.12657142857143608,25.03242111375484,87903 -2024-04-16 09:00:00+00:00,4759,154.502,154.568,154.474,154.564,USD_JPY,H1,66.60098522167362,0.17574479907972318,0.18060873926155613,-0.004863940181832949,154.31595,0.11016660827595556,0.12907142857143583,28.7471436715461,92662 -2024-04-16 10:00:00+00:00,3745,154.562,154.602,154.536,154.599,USD_JPY,H1,66.23505976095507,0.18015016472583056,0.18051702435441103,-0.0003668596285804626,154.3293,0.1270913885859907,0.13007142857143453,32.38297107044299,96407 -2024-04-16 11:00:00+00:00,5016,154.598,154.708,154.586,154.62,USD_JPY,H1,69.7154471544705,0.18322388237191944,0.1810583959579127,0.00216548641400674,154.34740000000002,0.1413772109979616,0.13414285714286223,36.20947399333073,101423 -2024-04-16 12:00:00+00:00,6765,154.62,154.702,154.565,154.646,USD_JPY,H1,74.47698744769701,0.18561811833541242,0.18197034043341268,0.0036477779019997436,154.3647,0.1557143471065827,0.13807142857143212,41.23203854249495,108188 -2024-04-16 13:00:00+00:00,12238,154.646,154.77,153.901,154.57,USD_JPY,H1,67.90371113339941,0.17931595997819727,0.1814394643423696,-0.0021235043641723295,154.38445,0.1554370662970853,0.19328571428571756,41.61446692552619,95950 -2024-04-16 14:00:00+00:00,9106,154.569,154.714,154.411,154.59,USD_JPY,H1,65.88486140724879,0.17393032639373018,0.1799376367526417,-0.006007310358911527,154.40355000000002,0.15608245965074724,0.19828571428571706,42.85568472412144,105056 -2024-04-16 15:00:00+00:00,6107,154.591,154.638,154.465,154.574,USD_JPY,H1,61.904761904761905,0.16645234764359884,0.17724057893083314,-0.010788231287234301,154.4209,0.1547044380682059,0.20114285714285934,43.90783880596463,98949 -2024-04-16 16:00:00+00:00,3907,154.576,154.648,154.539,154.583,USD_JPY,H1,65.52538370720205,0.1594145882508542,0.17367538079483735,-0.014260792543983158,154.4364,0.1546358711026856,0.20014285714286068,43.10346300158885,102856 -2024-04-16 17:00:00+00:00,7394,154.582,154.788,154.579,154.701,USD_JPY,H1,68.63587540279195,0.1614970891453993,0.17123972246494976,-0.00974263331955047,154.45985000000002,0.15754173214908235,0.21078571428571788,41.21324683175328,110250 -2024-04-16 18:00:00+00:00,7357,154.7,154.74,154.576,154.648,USD_JPY,H1,70.84257206208548,0.1570603352690796,0.1684038450257757,-0.011343509756696124,154.48335,0.14805485292215426,0.21392857142857583,41.047172970026075,102893 -2024-04-16 19:00:00+00:00,2930,154.65,154.7,154.625,154.632,USD_JPY,H1,66.86460807601046,0.15051803140278253,0.16482668230117709,-0.01430865089839456,154.5043,0.13701982184730552,0.2122857142857169,41.81780755018551,99963 -2024-04-16 20:00:00+00:00,2197,154.634,154.736,154.634,154.731,USD_JPY,H1,64.18485237484089,0.15157442545168465,0.1621762309312786,-0.01060180547959394,154.52624999999998,0.13638176873112143,0.19657142857142926,42.58074170927216,102160 -2024-04-16 21:00:00+00:00,700,154.704,154.706,154.65,154.67,USD_JPY,H1,69.25207756232759,0.1458086438609314,0.15890271351720917,-0.013094069656277768,154.54155,0.13437123556585587,0.18964285714285722,41.009133372792654,101460 -2024-04-16 22:00:00+00:00,1293,154.664,154.725,154.654,154.686,USD_JPY,H1,64.36597110754519,0.1409060099210535,0.15530337279797804,-0.01439736287692453,154.55985,0.12734961203058393,0.18228571428571375,40.31592760013232,102753 -2024-04-16 23:00:00+00:00,2465,154.684,154.724,154.654,154.698,USD_JPY,H1,61.59169550173187,0.1364164134163559,0.15152598092165362,-0.01510956750529771,154.57704999999999,0.12116429689574182,0.18057142857142594,39.62607928578213,105218 -2024-04-17 00:00:00+00:00,4322,154.698,154.735,154.612,154.694,USD_JPY,H1,58.68372943327233,0.13102523195632898,0.1474258311285887,-0.016400599172259722,154.59814999999998,0.1001715764924452,0.1846428571428557,39.57010663765613,100896 -2024-04-17 01:00:00+00:00,4537,154.695,154.718,154.614,154.685,USD_JPY,H1,56.07476635514033,0.12459025808357183,0.14285871651958534,-0.018268458436013518,154.61499999999998,0.08269856487100567,0.18335714285714136,40.10017438489849,96359 -2024-04-17 02:00:00+00:00,2614,154.685,154.696,154.63,154.683,USD_JPY,H1,53.620352250489866,0.1179692357264912,0.13788082036096652,-0.019911584634475316,154.62365,0.08014610014572351,0.1782857142857129,39.85518205064776,93745 -2024-04-17 03:00:00+00:00,2096,154.683,154.684,154.602,154.65,USD_JPY,H1,58.54700854701008,0.10880496766068859,0.13206564982091096,-0.023260682160222368,154.63655,0.058825768611915734,0.12207142857142676,48.06389214959564,91649 -2024-04-17 04:00:00+00:00,1847,154.65,154.656,154.601,154.65,USD_JPY,H1,56.696428571429145,0.10038504290645278,0.12572952843801932,-0.02534448553156654,154.64370000000002,0.05032745405573589,0.10435714285714173,53.955140191533864,89802 -2024-04-17 05:00:00+00:00,2888,154.65,154.68,154.606,154.62,USD_JPY,H1,54.97835497835426,0.09025108427667305,0.11863383960575008,-0.028382755329077025,154.6465,0.047115200364820975,0.0972857142857139,56.049157102773414,86914 -2024-04-17 06:00:00+00:00,7440,154.622,154.65,154.455,154.473,USD_JPY,H1,40.83333333333447,0.06955637498808187,0.10881834668221645,-0.039261971694134576,154.6402,0.0603625886242074,0.10342857142856994,53.513764567380136,79474 -2024-04-17 07:00:00+00:00,5802,154.474,154.637,154.472,154.611,USD_JPY,H1,42.741935483870414,0.06355845318094566,0.09976636798196228,-0.03620791480101662,154.63975,0.060554347057172345,0.100285714285712,57.3089648623482,85276 -2024-04-17 08:00:00+00:00,5333,154.614,154.649,154.472,154.564,USD_JPY,H1,43.15960912052064,0.05438562608782149,0.09069021960313413,-0.036304593515312636,154.63565,0.0628417184607368,0.10121428571428177,60.806413005814434,79943 -2024-04-17 09:00:00+00:00,4579,154.563,154.598,154.504,154.596,USD_JPY,H1,47.14285714285701,0.0491318655323596,0.08237854878897924,-0.03324668325661964,154.63695,0.06167015400409072,0.10257142857142705,61.58780664434992,84522 -2024-04-17 10:00:00+00:00,2971,154.594,154.638,154.546,154.628,USD_JPY,H1,40.85257548845375,0.04700847061818081,0.07530453315481955,-0.028296062536638744,154.63885,0.06072567739341168,0.10171428571428619,59.959873917860584,87493 -2024-04-17 11:00:00+00:00,2939,154.63,154.658,154.592,154.63,USD_JPY,H1,46.03174603174674,0.04496867721681497,0.06923736196721864,-0.02426868475040367,154.64165,0.05883990321779102,0.10242857142857124,59.04113040587412,90432 -2024-04-17 12:00:00+00:00,4887,154.631,154.703,154.606,154.628,USD_JPY,H1,44.08163265305883,0.042698540765996995,0.06392959772697432,-0.021231056960977324,154.6439,0.057319878063424756,0.10428571428571486,57.21052665472562,85545 -2024-04-17 13:00:00+00:00,6384,154.63,154.658,154.528,154.654,USD_JPY,H1,45.63492063491945,0.04250742484848047,0.05964516315127555,-0.01713773830279508,154.64155,0.055798957735456636,0.1085714285714293,56.47585370057662,91929 -2024-04-17 14:00:00+00:00,5156,154.652,154.71,154.646,154.654,USD_JPY,H1,46.00000000000057,0.04187327505729854,0.056090785532480154,-0.014217510475181612,154.64185,0.05585156549796855,0.10435714285714377,53.35866455687745,86773 -2024-04-17 15:00:00+00:00,4349,154.652,154.679,154.585,154.616,USD_JPY,H1,43.47826086956592,0.03786790670176288,0.0524462097663367,-0.014578303064573826,154.64105,0.05611405209266091,0.1036428571428587,49.68722231577775,82424 -2024-04-17 16:00:00+00:00,8743,154.616,154.616,154.248,154.276,USD_JPY,H1,26.528258362168387,0.007175747372457408,0.04339211728756085,-0.03621636991510344,154.6183,0.09587442444836362,0.12521428571428878,48.622000479752025,73681 -2024-04-17 17:00:00+00:00,7814,154.276,154.45,154.17,154.314,USD_JPY,H1,30.73394495412677,-0.013921252072151447,0.03192944341561839,-0.045850695487769835,154.6005,0.11658179870638927,0.13935714285714645,43.33132473962373,81495 -2024-04-17 18:00:00+00:00,4875,154.314,154.352,154.16,154.352,USD_JPY,H1,33.62637362637295,-0.027260254462390776,0.02009150384001656,-0.047351758302407336,154.5838,0.12713424318260236,0.14914285714286077,39.02718229577029,86370 -2024-04-17 19:00:00+00:00,3484,154.352,154.404,154.311,154.335,USD_JPY,H1,34.11371237458148,-0.03875650699646371,0.008321901672720504,-0.04707840866918422,154.56565,0.13560207846616779,0.150500000000002,38.187566900113794,82886 -2024-04-17 20:00:00+00:00,1866,154.337,154.408,154.31,154.396,USD_JPY,H1,45.25277435264912,-0.042455775996131706,-0.0018336338610499391,-0.040622142135081765,154.55075,0.13712033708474933,0.14357142857142996,41.02810328903802,84752 -2024-04-17 21:00:00+00:00,543,154.342,154.35,154.318,154.332,USD_JPY,H1,31.071913161464778,-0.04997565027224482,-0.011462037143288915,-0.038513613128955904,154.53310000000002,0.14157679708839527,0.13507142857142998,38.44831949128542,84209 -2024-04-17 22:00:00+00:00,1933,154.332,154.337,154.249,154.28,USD_JPY,H1,30.86253369272194,-0.05944591473050309,-0.02105881266073175,-0.03838710206977134,154.51295,0.14766693497302763,0.1287142857142872,37.07508524622669,82276 -2024-04-17 23:00:00+00:00,2328,154.278,154.37,154.176,154.34,USD_JPY,H1,33.37662337662235,-0.0614018664886089,-0.029127423426307184,-0.03227444306230172,154.49745000000001,0.14878966963329968,0.13585714285714395,38.49686142102221,84604 -2024-04-18 00:00:00+00:00,4682,154.339,154.41,154.252,154.286,USD_JPY,H1,28.409090909091162,-0.06654226326219259,-0.036610391393484265,-0.029931871868708326,154.47925,0.15138722570075164,0.14057142857142782,40.078701621427605,79922 -2024-04-18 01:00:00+00:00,5061,154.288,154.308,154.168,154.223,USD_JPY,H1,26.14302461899149,-0.07483696428693065,-0.04425570597217354,-0.03058125831475711,154.45940000000002,0.15785016212950775,0.14585714285714296,42.568902418196885,74861 -2024-04-18 02:00:00+00:00,7047,154.22,154.25,153.957,154.134,USD_JPY,H1,23.7234042553183,-0.08758253387287596,-0.05292107155231403,-0.03466146232056193,154.44245,0.17371648862773395,0.15985714285714284,46.81112937032719,67814 -2024-04-18 03:00:00+00:00,3969,154.134,154.322,154.114,154.239,USD_JPY,H1,29.636898920510248,-0.08819421905988634,-0.05997570105382849,-0.028218518006057847,154.42385000000002,0.17463262943462193,0.16542857142857162,48.87958279183255,71783 -2024-04-18 04:00:00+00:00,2485,154.238,154.313,154.235,154.294,USD_JPY,H1,33.240223463687585,-0.08328093287806837,-0.06463674741867646,-0.018644185459391907,154.41035,0.1736615810619336,0.16642857142856826,53.39205183520125,74268 -2024-04-18 05:00:00+00:00,3164,154.294,154.356,154.258,154.286,USD_JPY,H1,34.19540229885014,-0.07912059831537022,-0.06753351759801521,-0.011587080717355008,154.39485,0.17001556430323575,0.16671428571428187,56.36098331023102,71104 -2024-04-18 06:00:00+00:00,5335,154.288,154.308,154.064,154.275,USD_JPY,H1,49.93006993006959,-0.07583691057175201,-0.06919419619276257,-0.006642714378989445,154.37720000000002,0.1627033464543641,0.15785714285713734,56.39858282634221,65769 -2024-04-18 07:00:00+00:00,4123,154.276,154.324,154.194,154.27,USD_JPY,H1,46.774193548388446,-0.07279884284591276,-0.06991512552339262,-0.0028837173225201435,154.35920000000002,0.1528809650471899,0.14714285714285325,55.75006312680974,61646 -2024-04-18 08:00:00+00:00,4086,154.27,154.368,154.256,154.356,USD_JPY,H1,50.27397260273909,-0.06272857505106799,-0.0684778154289277,0.0057492403778597045,154.3456,0.13919633994004432,0.14142857142856663,54.50048514883131,65732 -2024-04-18 09:00:00+00:00,3144,154.356,154.425,154.34,154.42,USD_JPY,H1,55.46975546975425,-0.049018495439156595,-0.06458595143097348,0.015567455991816886,154.3339,0.1204866884984931,0.1408571428571394,53.549707531387305,68876 -2024-04-18 10:00:00+00:00,3430,154.42,154.482,154.382,154.448,USD_JPY,H1,53.49462365591525,-0.035484746507421505,-0.05876571044626309,0.023280963938841583,154.3236,0.09847703445908816,0.1409999999999972,52.77261771280338,72306 -2024-04-18 11:00:00+00:00,4386,154.448,154.512,154.316,154.374,USD_JPY,H1,52.785145888594094,-0.030380131287301992,-0.05308859461447087,0.02270846332716888,154.3115,0.07195429836149038,0.15171428571428333,52.569040568881256,67920 -2024-04-18 12:00:00+00:00,8368,154.376,154.5,154.32,154.372,USD_JPY,H1,56.534090909091496,-0.026194120715587133,-0.04770969983469413,0.021515579119106995,154.3163,0.0726600592525961,0.15828571428571284,51.50168255783834,59552 -2024-04-18 13:00:00+00:00,8423,154.372,154.597,154.34,154.526,USD_JPY,H1,61.65413533834587,-0.010331074020200504,-0.04023397467179541,0.029902900651594906,154.3269,0.08646015206327587,0.162785714285712,48.687737945420686,67975 -2024-04-18 14:00:00+00:00,6201,154.525,154.642,154.46,154.637,USD_JPY,H1,70.52631578947319,0.011069672809753683,-0.029973245175485594,0.04104291798523928,154.34115,0.11085850393546393,0.1644999999999978,45.83200689371127,74176 -2024-04-18 15:00:00+00:00,4397,154.636,154.648,154.569,154.616,USD_JPY,H1,74.16974169741653,0.026035275906650668,-0.018771540959058343,0.04480681686570901,154.3552,0.12671127561704293,0.16014285714285645,41.82824157151064,69779 -2024-04-18 16:00:00+00:00,3450,154.615,154.652,154.572,154.622,USD_JPY,H1,83.42465753424896,0.03794239769587193,-0.007428753228072287,0.04537115092394422,154.36650000000003,0.13992911739454986,0.14492857142856913,38.36563809667744,73229 -2024-04-18 17:00:00+00:00,2681,154.623,154.682,154.6,154.64,USD_JPY,H1,81.18195956454254,0.04827484470797572,0.0037119663591373133,0.0445628783488384,154.3819,0.15233132172679495,0.1359285714285688,35.47346337378517,75910 -2024-04-18 18:00:00+00:00,2037,154.637,154.657,154.549,154.596,USD_JPY,H1,73.89240506329358,0.05230995453558762,0.013431563994427374,0.03887839054116025,154.39770000000001,0.15750592303009972,0.13807142857142804,31.37632766096839,73873 -2024-04-18 19:00:00+00:00,1560,154.598,154.634,154.578,154.62,USD_JPY,H1,75.7716049382754,0.05678977044570388,0.022103205284682674,0.034686565161021206,154.4117,0.16440037776909575,0.13507142857142793,27.256333072222844,75433 -2024-04-18 20:00:00+00:00,1337,154.622,154.678,154.609,154.656,USD_JPY,H1,78.3060921248178,0.0625242157263699,0.03018740737302012,0.03233680835334978,154.43019999999999,0.17022573248513942,0.12257142857142712,27.122567157782587,76770 -2024-04-18 21:00:00+00:00,177,154.634,154.637,154.602,154.605,USD_JPY,H1,73.29624478442341,0.06223611199209245,0.03659714829683459,0.02563896369525786,154.4493,0.16715674963182908,0.1157857142857109,27.21812377507765,76593 -2024-04-18 22:00:00+00:00,974,154.608,154.656,154.54,154.646,USD_JPY,H1,71.51335311572802,0.06457180152227693,0.042192078941923054,0.022379722580353874,154.4749,0.1550985764640369,0.11607142857142654,26.23692004396627,77567 -2024-04-18 23:00:00+00:00,2282,154.646,154.647,154.552,154.614,USD_JPY,H1,65.10903426791552,0.06311319016822381,0.04637630118718321,0.0167368889810406,154.49365,0.14756346538325504,0.1167857142857116,24.5180153920349,75285 -2024-04-19 00:00:00+00:00,5023,154.614,154.673,154.548,154.628,USD_JPY,H1,64.33121019108336,0.06236797397724558,0.04957463574519569,0.012793338232049895,154.51035,0.14259559120713247,0.1185714285714263,22.89810404134895,80308 -2024-04-19 01:00:00+00:00,14506,154.629,154.629,153.975,154.237,USD_JPY,H1,42.7513227513218,0.02988248580507502,0.04563620575717156,-0.01575371995209654,154.5079,0.14700587170559237,0.1512857142857119,23.935628779916467,65802 -2024-04-19 02:00:00+00:00,16201,154.246,154.248,153.59,153.9,USD_JPY,H1,31.562499999998053,-0.02279283952415767,0.031950396700905714,-0.054743236225063385,154.48915,0.194513231859797,0.18542857142856764,26.356936285969677,49601 -2024-04-19 03:00:00+00:00,12157,153.9,154.384,153.9,154.31,USD_JPY,H1,42.96874999999922,-0.031096381140827134,0.019341041132559147,-0.05043742227338628,154.49115,0.1923347616174437,0.2016428571428516,29.743619807113078,61758 -2024-04-19 04:00:00+00:00,6425,154.311,154.474,154.306,154.322,USD_JPY,H1,39.03966597077175,-0.03629036524347384,0.00821475985735255,-0.044505125100826395,154.48945,0.19373733574941096,0.20064285714285088,32.7970357825048,68183 -2024-04-19 05:00:00+00:00,5041,154.328,154.428,154.25,154.336,USD_JPY,H1,40.20979020978963,-0.03882935147495914,-0.0011940624091097878,-0.03763528906584935,154.48525,0.19621681751013056,0.2077142857142787,36.6557748088415,73224 -2024-04-19 06:00:00+00:00,8775,154.336,154.465,154.21,154.422,USD_JPY,H1,43.377483443707625,-0.03351568710959896,-0.007658387349207622,-0.025857299760391333,154.48395,0.1965624247973764,0.2202142857142795,39.11035400443899,81999 -2024-04-19 07:00:00+00:00,6756,154.422,154.532,154.358,154.474,USD_JPY,H1,44.62435233160606,-0.024822466457379733,-0.011091203170842046,-0.013731263286537686,154.48895,0.19488308911030325,0.226785714285709,41.629657931640814,88755 -2024-04-19 08:00:00+00:00,5511,154.474,154.486,154.344,154.412,USD_JPY,H1,44.1101152368756,-0.022674530431231688,-0.013407868622919976,-0.009266661808311712,154.49095,0.193822076576803,0.22921428571427985,44.62062012303405,83244 -2024-04-19 09:00:00+00:00,4033,154.413,154.512,154.4,154.486,USD_JPY,H1,45.84367245657499,-0.014830141459952983,-0.013692323190326578,-0.001137818269626405,154.48895,0.1936476656744784,0.23321428571428068,47.8948073110936,87277 -2024-04-19 10:00:00+00:00,4121,154.487,154.577,154.474,154.53,USD_JPY,H1,46.11111111111077,-0.005005276693708538,-0.01195491389100297,0.006949637197294432,154.4836,0.19079926072932174,0.23564285714285355,47.46457911727115,91398 -2024-04-19 11:00:00+00:00,4267,154.531,154.61,154.531,154.604,USD_JPY,H1,49.96956786366475,0.0086524410199047,-0.007833442908821436,0.016485883928726137,154.483,0.19037939959352781,0.2388571428571404,47.06438830787345,95665 -2024-04-19 12:00:00+00:00,5083,154.602,154.609,154.495,154.538,USD_JPY,H1,46.762589928058134,0.013989371524644412,-0.0034688800221282664,0.017458251546772677,154.4788,0.1880639868715189,0.23871428571428258,48.243599786748355,90582 -2024-04-19 13:00:00+00:00,6301,154.54,154.614,154.524,154.583,USD_JPY,H1,49.077929803688065,0.021601047885667413,0.0015451055594308694,0.020055942326236545,154.47594999999998,0.18591211138064553,0.23835714285714005,50.12450738418734,96883 -2024-04-19 14:00:00+00:00,6009,154.582,154.631,154.46,154.592,USD_JPY,H1,48.92601431980985,0.028036394916256313,0.006843363430795959,0.021193031485460354,154.47575,0.18577827049897025,0.24164285714285377,52.80061471813817,102892 -2024-04-19 15:00:00+00:00,4253,154.592,154.602,154.464,154.549,USD_JPY,H1,61.7469879518079,0.02932863096683036,0.01134041693800284,0.01798821402882752,154.4722,0.18354164879453982,0.20478571428571155,50.306897570368655,98639 -2024-04-19 16:00:00+00:00,3232,154.55,154.608,154.545,154.581,USD_JPY,H1,83.28445747800609,0.03255954375896408,0.01558424230219509,0.016975301456768992,154.46845000000002,0.1803267429158447,0.16228571428571367,48.086474567183174,101871 -2024-04-19 17:00:00+00:00,2530,154.58,154.629,154.566,154.626,USD_JPY,H1,74.0121580547119,0.03830958034808418,0.02012930991137291,0.018180270436711273,154.4695,0.18122260228530826,0.13221428571428565,45.18361926896379,104401 -2024-04-19 18:00:00+00:00,2676,154.628,154.643,154.552,154.578,USD_JPY,H1,68.44380403458246,0.03854895852651907,0.023813239634402145,0.014735718892116927,154.4661,0.17835207640508405,0.1267142857142878,41.466256072584365,101725 -2024-04-19 19:00:00+00:00,2374,154.578,154.623,154.554,154.605,USD_JPY,H1,69.02404526166833,0.04045104731557103,0.02714080117063592,0.01331024614493511,154.46565,0.17797021483532238,0.1189285714285729,38.74023786937185,104099 -2024-04-19 20:00:00+00:00,1478,154.602,154.656,154.602,154.644,USD_JPY,H1,66.81818181818255,0.0445914183347611,0.03063092460346096,0.013960493731300143,154.46645,0.17877256206554448,0.10457142857143051,37.36265476738244,105577 -2024-04-21 21:00:00+00:00,1107,154.609,154.618,154.452,154.488,USD_JPY,H1,50.9162303664928,0.03488269000692412,0.0314812776841536,0.003401412322770525,154.47899999999998,0.1704328853865046,0.10400000000000123,34.464294236967326,104470 -2024-04-21 22:00:00+00:00,1623,154.508,154.696,154.504,154.636,USD_JPY,H1,63.176470588234324,0.03868488074715515,0.03292199829675391,0.005762882450401241,154.51579999999998,0.10618335680931382,0.10871428571428712,30.864033259895553,106093 -2024-04-21 23:00:00+00:00,2149,154.634,154.652,154.544,154.638,USD_JPY,H1,59.76863753213404,0.04138249593395926,0.03461409782419498,0.006768398109764283,154.53220000000002,0.09771688428224155,0.10842857142857147,27.893567981949438,108242 -2024-04-22 00:00:00+00:00,5973,154.636,154.736,154.612,154.675,USD_JPY,H1,59.40337224383931,0.045975983662287945,0.03688647499181357,0.009089508670474374,154.54985,0.08926617500573365,0.10992857142857052,25.33746863983215,114215 -2024-04-22 01:00:00+00:00,5003,154.676,154.698,154.586,154.62,USD_JPY,H1,51.063829787233395,0.0446634628378888,0.03844187256102862,0.00622159027686018,154.56405,0.0748883203609084,0.11221428571428353,22.205695523392563,109212 -2024-04-22 02:00:00+00:00,2547,154.621,154.706,154.618,154.658,USD_JPY,H1,58.28729281767771,0.04615748825654009,0.039984995700130914,0.006172492556409177,154.57585,0.06974409992144474,0.11035714285713993,19.776698425995587,111759 -2024-04-22 03:00:00+00:00,1808,154.659,154.71,154.659,154.689,USD_JPY,H1,57.4647887323936,0.049274944202693405,0.041842985400643413,0.007431958802049991,154.5866,0.06978870365659903,0.10764285714285547,17.425109365668796,113567 -2024-04-22 04:00:00+00:00,2345,154.69,154.73,154.686,154.718,USD_JPY,H1,58.63013698629954,0.053469247930252095,0.044168237906565155,0.00930101002368694,154.6019,0.06267619375281182,0.09857142857142621,16.38035419945221,115912 -2024-04-22 05:00:00+00:00,2537,154.714,154.742,154.68,154.724,USD_JPY,H1,62.62626262626118,0.056624679649218024,0.04665952625509573,0.009965153394122295,154.6138,0.06210398749956644,0.09314285714285322,17.545845667511376,118449 -2024-04-22 06:00:00+00:00,3905,154.728,154.764,154.66,154.677,USD_JPY,H1,56.77966101694915,0.054702300743571186,0.048268081152790826,0.00643421959078036,154.62115,0.0603378863278133,0.09607142857142444,17.585927825102594,114544 -2024-04-22 07:00:00+00:00,3919,154.678,154.689,154.596,154.658,USD_JPY,H1,52.34604105571711,0.051057105865993435,0.048825886095431356,0.002231219770562079,154.62385,0.06073694358447176,0.09821428571428166,17.093707815712857,110625 -2024-04-22 08:00:00+00:00,3662,154.657,154.732,154.628,154.722,USD_JPY,H1,60.3151862464182,0.052724749698512596,0.04960565881604761,0.003119090882464988,154.63304999999997,0.06098358277947102,0.09914285714285345,18.318910236135682,114287 -2024-04-22 09:00:00+00:00,2948,154.722,154.77,154.703,154.769,USD_JPY,H1,61.42061281337083,0.05717974415762228,0.05112047588436255,0.006059268273259734,154.64235000000002,0.06684961520335587,0.09899999999999766,18.746312276810695,117235 -2024-04-22 10:00:00+00:00,2257,154.77,154.782,154.725,154.756,USD_JPY,H1,58.09248554913215,0.058981466378753566,0.052692673983240755,0.006288792395512811,154.65055,0.0703169329026922,0.0992142857142844,17.500971382443932,114978 -2024-04-22 11:00:00+00:00,3337,154.756,154.78,154.728,154.763,USD_JPY,H1,75.32228360957532,0.06027932320296259,0.054210003827185126,0.006069319375777461,154.66125,0.07033294878239545,0.09107142857142694,21.605506195770925,118315 -2024-04-22 12:00:00+00:00,4542,154.763,154.771,154.685,154.748,USD_JPY,H1,63.658536585363436,0.05941263754442616,0.05525053057063334,0.004162106973792823,154.6696,0.07021725683987053,0.08235714285714023,24.449106108052522,113773 -2024-04-22 13:00:00+00:00,4516,154.748,154.768,154.706,154.739,USD_JPY,H1,62.11031175059854,0.05733859450660361,0.055668143357827396,0.001670451148776217,154.67524999999998,0.07106548129580412,0.07907142857142853,25.876768968829936,109257 -2024-04-22 14:00:00+00:00,3557,154.74,154.777,154.718,154.733,USD_JPY,H1,57.51295336787423,0.054581568257532354,0.05545082833776839,-0.0008692600802360367,154.683,0.0682996493804574,0.07442857142857154,25.738638227251034,105700 -2024-04-22 15:00:00+00:00,2476,154.732,154.79,154.718,154.775,USD_JPY,H1,70.7774798927605,0.05514992013351616,0.05539064669691794,-0.00024072656340178022,154.6915,0.0686589588605485,0.07157142857142926,27.433293248642318,108176 -2024-04-22 16:00:00+00:00,2554,154.775,154.852,154.756,154.797,USD_JPY,H1,69.46778711484583,0.0567217067014667,0.0556568586978277,0.001064848003638999,154.69915,0.07155069972976538,0.07214285714285852,29.35767944602569,110730 -2024-04-22 17:00:00+00:00,2273,154.798,154.816,154.765,154.816,USD_JPY,H1,68.40579710144921,0.058822431713934975,0.056289973301049165,0.00253245841288581,154.71555,0.05664336724525923,0.0720714285714296,31.51199219223784,113003 -2024-04-22 18:00:00+00:00,2224,154.815,154.83,154.782,154.8,USD_JPY,H1,62.34939759036395,0.05852160451047439,0.056736299542934215,0.0017853049675401744,154.72375000000002,0.05639137205601523,0.07235714285714526,31.945785992776592,110779 -2024-04-22 19:00:00+00:00,1479,154.799,154.847,154.799,154.836,USD_JPY,H1,65.46961325967072,0.06049079568140314,0.057487198770628,0.00300359691077514,154.73364999999998,0.05790489026023736,0.07135714285714657,32.397134953412866,112258 -2024-04-22 20:00:00+00:00,962,154.836,154.848,154.824,154.836,USD_JPY,H1,75.23809523809636,0.061344255479923504,0.058258610112487105,0.0030856453674363987,154.7417,0.060457118341515265,0.06564285714285997,32.363021715656274,111296 -2024-04-22 21:00:00+00:00,417,154.84,154.842,154.814,154.82,USD_JPY,H1,75.9615384615361,0.06003748745339976,0.05861438558066964,0.0014231018727301203,154.75169999999997,0.055614367703025046,0.061000000000005015,35.9909244896664,110879 -2024-04-22 22:00:00+00:00,1119,154.819,154.827,154.777,154.811,USD_JPY,H1,67.31517509727567,0.05761152974079664,0.05841381441269504,-0.0008022846718983984,154.75934999999998,0.052481851502368504,0.05714285714286201,36.843946874739984,109760 -2024-04-22 23:00:00+00:00,1828,154.81,154.84,154.778,154.812,USD_JPY,H1,60.18957345971654,0.05513408105156259,0.05775786774046855,-0.002623786688905963,154.7655,0.05098967904095071,0.056785714285719484,36.782972598108756,111588 -2024-04-23 00:00:00+00:00,3959,154.812,154.828,154.702,154.788,USD_JPY,H1,57.20720720720934,0.05065022146820297,0.05633633848601544,-0.005686117017812471,154.769,0.049949448132098125,0.061714285714290086,35.96291574837924,107629 -2024-04-23 01:00:00+00:00,5380,154.788,154.794,154.658,154.727,USD_JPY,H1,43.47826086956522,0.04169391870098593,0.05340785452900955,-0.011713935828023617,154.76915000000002,0.04981151315093099,0.06771428571429235,32.39406223546499,102249 -2024-04-23 02:00:00+00:00,3014,154.73,154.774,154.712,154.766,USD_JPY,H1,53.000000000000284,0.03731283911184846,0.05018885144557733,-0.01287601233372887,154.7736,0.04487690767408151,0.0660000000000086,30.635890267711023,105263 -2024-04-23 03:00:00+00:00,2371,154.768,154.777,154.726,154.756,USD_JPY,H1,52.82392026578016,0.03265743101084695,0.04668256735863126,-0.014025136347784309,154.7785,0.03607813159287836,0.06521428571429258,29.83125814232446,102892 -2024-04-23 04:00:00+00:00,2027,154.751,154.766,154.72,154.742,USD_JPY,H1,51.45631067960942,0.02752105792873749,0.042850265472652506,-0.015329207543915015,154.7795,0.03467973775582429,0.06428571428572079,30.739208628926527,100865 -2024-04-23 05:00:00+00:00,2523,154.74,154.796,154.74,154.77,USD_JPY,H1,49.15254237288217,0.025416821947857215,0.03936357676769345,-0.013946754819836232,154.77955,0.03466452001189214,0.06314285714286225,30.104303793554344,103388 -2024-04-23 06:00:00+00:00,3700,154.769,154.786,154.717,154.762,USD_JPY,H1,43.77224199288393,0.022840376983367605,0.03605893681082828,-0.013218559827460674,154.77985,0.03447542985148338,0.061214285714289725,31.258199858127078,99688 -2024-04-23 07:00:00+00:00,5239,154.762,154.862,154.758,154.822,USD_JPY,H1,50.93167701863348,0.025347830336130528,0.03391671551588873,-0.0085688851797582,154.7828,0.03546770213906457,0.06500000000000179,29.778321711583125,104927 -2024-04-23 08:00:00+00:00,3219,154.822,154.863,154.802,154.844,USD_JPY,H1,56.70731707316746,0.02877848090781754,0.03288906859427449,-0.004110587686456953,154.78760000000003,0.03697424424019475,0.06592857142857358,28.727930720117822,108146 -2024-04-23 09:00:00+00:00,2777,154.846,154.854,154.81,154.838,USD_JPY,H1,50.33557046979545,0.030659720177311556,0.032443198910881904,-0.0017834787335703484,154.79255,0.036751620090027845,0.06564285714285997,27.974233422886503,105369 -2024-04-23 10:00:00+00:00,2510,154.838,154.839,154.782,154.799,USD_JPY,H1,44.51038575667593,0.02867311595619526,0.031689182319944574,-0.003016066363749313,154.79585,0.03398184500244254,0.0680000000000019,27.997366261731276,102859 -2024-04-23 11:00:00+00:00,3502,154.798,154.824,154.762,154.803,USD_JPY,H1,47.38461538461592,0.0271089888205438,0.030773143620064423,-0.0036641547995206226,154.79725,0.033652832840519425,0.07042857142857274,26.05950120493507,106361 -2024-04-23 12:00:00+00:00,3209,154.804,154.838,154.77,154.811,USD_JPY,H1,50.0,0.026212775380116682,0.029861069972074876,-0.003648294591958194,154.79795,0.03379267283213556,0.07171428571428505,25.378898385297003,109570 -2024-04-23 13:00:00+00:00,6495,154.816,154.876,154.578,154.642,USD_JPY,H1,32.7235772357714,0.011730411284275988,0.0262349382345151,-0.014504526950239113,154.78924999999998,0.04821975463577451,0.08857142857142719,27.648025524016447,103075 -2024-04-23 14:00:00+00:00,8828,154.641,154.804,154.57,154.796,USD_JPY,H1,50.64308681671874,0.012535050111949886,0.023494960610002058,-0.010959910498052172,154.78905,0.04818110025045794,0.0962857142857132,30.389177797927907,111903 -2024-04-23 15:00:00+00:00,3428,154.796,154.84,154.769,154.818,USD_JPY,H1,57.80445969125249,0.014777601328944456,0.02175148875379054,-0.0069738874248460835,154.78815,0.04742004351123298,0.09164285714285418,31.00378940377004,115331 -2024-04-23 16:00:00+00:00,2658,154.816,154.84,154.779,154.826,USD_JPY,H1,55.434782608695656,0.017004356825651712,0.020802062368162774,-0.0037977055425110623,154.78764999999999,0.046939238442418395,0.09157142857142528,31.41171481169597,117989 -2024-04-23 17:00:00+00:00,4531,154.826,154.832,154.552,154.752,USD_JPY,H1,49.67532467532544,0.012652050085762312,0.019172059911682682,-0.0065200098259203705,154.78425000000001,0.046935425968185916,0.10792857142856908,33.9029437347771,113458 -2024-04-23 18:00:00+00:00,2609,154.753,154.814,154.712,154.757,USD_JPY,H1,51.235584843493804,0.00949680064468339,0.017237008058282825,-0.007740207413599435,154.78154999999998,0.04686876976446239,0.11192857142856992,36.256973716037486,116067 -2024-04-23 19:00:00+00:00,1594,154.754,154.828,154.746,154.824,USD_JPY,H1,54.17956656346774,0.012261242813110584,0.016241855009248376,-0.0039806121961377915,154.78215,0.04735340259294343,0.11378571428571352,39.42672632631521,117661 -2024-04-23 20:00:00+00:00,1609,154.824,154.838,154.817,154.836,USD_JPY,H1,55.69230769230884,0.01524465200137115,0.01604241440767293,-0.0007977624063017809,154.78455000000002,0.0488579843205594,0.11035714285714196,39.641983857898815,119270 -2024-04-23 21:00:00+00:00,578,154.813,154.828,154.774,154.783,USD_JPY,H1,46.967340590978566,0.013180432396694641,0.015470018005477275,-0.002289585608782634,154.78735,0.04695381269510454,0.10678571428571461,44.006719651205536,118692 -2024-04-23 22:00:00+00:00,894,154.773,154.808,154.773,154.784,USD_JPY,H1,45.176848874597994,0.011492734046640862,0.014674561213709993,-0.003181827167069131,154.78825,0.04669483799124572,0.10492857142857101,48.04869162167328,119586 -2024-04-23 23:00:00+00:00,1606,154.782,154.789,154.733,154.751,USD_JPY,H1,43.297380585517026,0.007407013298916354,0.013221051630751266,-0.0058140383318349125,154.78799999999998,0.04688956791482463,0.10578571428571186,51.83594123585204,117980 -2024-04-24 00:00:00+00:00,2934,154.748,154.822,154.742,154.796,USD_JPY,H1,49.77099236641112,0.00771128321682113,0.01211909794796524,-0.00440781473114411,154.79070000000002,0.04563943355291134,0.10742857142857076,54.39787874217162,120914 -2024-04-24 01:00:00+00:00,3407,154.797,154.825,154.771,154.798,USD_JPY,H1,49.617151607963606,0.00802133761726509,0.011299545881825211,-0.0032782082645601215,154.7921,0.04539986088873048,0.1068571428571415,56.690727711970005,124321 -2024-04-24 02:00:00+00:00,1858,154.798,154.818,154.791,154.812,USD_JPY,H1,50.075872534142995,0.009289655593477164,0.010897567824155602,-0.0016079122306784377,154.7946,0.04503028221193772,0.10392857142857233,60.41015362666432,126179 -2024-04-24 03:00:00+00:00,2072,154.808,154.854,154.802,154.849,USD_JPY,H1,69.63946869070197,0.013129053944140878,0.011343865048152657,0.0017851888959882212,154.79595,0.046282286031465766,0.08635714285714512,59.88528620909894,128251 -2024-04-24 04:00:00+00:00,1684,154.85,154.879,154.835,154.842,USD_JPY,H1,56.052631578950624,0.015429106168227236,0.012160913272167574,0.003268192896059662,154.79585,0.04617503882862194,0.07278571428571468,59.19145881374208,126567 -2024-04-24 05:00:00+00:00,1545,154.842,154.884,154.836,154.876,USD_JPY,H1,57.39795918367369,0.019767561829070246,0.013682242983548108,0.006085318845522138,154.79775,0.04871277256353275,0.07114285714285577,60.579353920035366,128112 -2024-04-24 06:00:00+00:00,2843,154.876,154.942,154.863,154.928,USD_JPY,H1,61.6972477064238,0.027089513565272227,0.01636369709989293,0.010725816465379297,154.8042,0.05676229289803717,0.07242857142857011,61.074532500319265,130955 -2024-04-24 07:00:00+00:00,4537,154.929,154.973,154.769,154.904,USD_JPY,H1,69.68911917098441,0.030602843118543888,0.019211526303623123,0.011391316814920765,154.80925000000002,0.060985654053310454,0.06699999999999916,57.769085374294264,126418 -2024-04-24 08:00:00+00:00,2581,154.902,154.928,154.864,154.901,USD_JPY,H1,68.75000000000277,0.03276738515467059,0.021922698073832618,0.010844687080837974,154.81375,0.06434927309365963,0.06428571428571266,54.84307451659405,123837 -2024-04-24 09:00:00+00:00,2150,154.901,154.938,154.873,154.936,USD_JPY,H1,65.90909090909255,0.03688185671964561,0.024914529802995217,0.011967326916650395,154.82845,0.05610185755729317,0.06307142857142724,51.73381558735634,125987 -2024-04-24 10:00:00+00:00,1400,154.935,154.94,154.906,154.934,USD_JPY,H1,64.32748538011657,0.03952559533360045,0.027836742909116266,0.011688852424484183,154.83535,0.0602348692537473,0.06399999999999904,49.14784562890255,124587 -2024-04-24 11:00:00+00:00,2101,154.934,154.945,154.904,154.927,USD_JPY,H1,74.32432432433055,0.04058806182223407,0.030387006691739826,0.010201055130494241,154.8408,0.06342886608609419,0.06307142857142724,43.7158437683287,122486 -2024-04-24 12:00:00+00:00,10380,154.926,155.172,154.775,154.95,USD_JPY,H1,76.10062893082312,0.042792694406472265,0.032868144234686314,0.00992455017178595,154.847,0.0678147631832783,0.08892857142856972,41.187919018181624,132866 -2024-04-24 13:00:00+00:00,6115,154.949,155.02,154.842,154.985,USD_JPY,H1,86.56250000000541,0.04682432740659692,0.03565938086906844,0.011164946537528482,154.85865,0.07059243660346397,0.09764285714285645,41.47101623287038,138981 -2024-04-24 14:00:00+00:00,5598,154.984,155.11,154.943,155.004,USD_JPY,H1,85.37414965986918,0.05096507317699661,0.038720519330654075,0.012244553846342536,154.871,0.07342235426369609,0.10385714285714139,42.63704168418758,144579 -2024-04-24 15:00:00+00:00,4580,155.004,155.136,154.974,155.118,USD_JPY,H1,89.408866995078,0.06272246575292684,0.04352090861510863,0.01920155713781821,154.88569999999999,0.09087417559375788,0.11157142857142739,43.976283848715056,149159 -2024-04-24 16:00:00+00:00,3096,155.119,155.134,155.064,155.115,USD_JPY,H1,88.35443037975378,0.07097999593918303,0.04901272607992351,0.021967269859259515,154.89965,0.10339514139233204,0.11464285714285438,44.88776201979231,146063 -2024-04-24 17:00:00+00:00,4443,155.117,155.378,155.088,155.29,USD_JPY,H1,91.369606003758,0.09060079598893367,0.05733034006172555,0.03327045592720812,154.925,0.13159627254512085,0.13164285714285232,47.901978269673336,150506 -2024-04-24 18:00:00+00:00,3542,155.289,155.336,155.242,155.268,USD_JPY,H1,88.86861313868891,0.10318574422177562,0.06650142089373556,0.03668432332804006,154.9492,0.14780663043456155,0.13521428571428373,51.521125385640005,146964 -2024-04-24 19:00:00+00:00,2804,155.268,155.309,155.223,155.3,USD_JPY,H1,88.827838827842,0.11442254703410981,0.07608564612181042,0.038336900912299396,154.97665,0.15957122646714436,0.13792857142857023,53.96158570484375,149768 -2024-04-24 20:00:00+00:00,1781,155.297,155.375,155.293,155.346,USD_JPY,H1,88.7037037037069,0.12559186494081587,0.08598688988561151,0.039604975055204356,155.00414999999998,0.1735779136460672,0.13814285714285493,57.74633772027994,151549 -2024-04-24 21:00:00+00:00,675,155.244,155.278,155.232,155.237,USD_JPY,H1,76.64000000000108,0.12421635201940262,0.09363278231236974,0.03058356970703288,155.02609999999999,0.17389376672479342,0.12842857142856953,64.17383153649884,150874 -2024-04-24 22:00:00+00:00,1151,155.236,155.246,155.198,155.228,USD_JPY,H1,75.91125198098358,0.1210051512744883,0.09910725610479346,0.021897895169694842,155.0469,0.17180371296907984,0.12728571428571303,69.25911580598562,149723 -2024-04-24 23:00:00+00:00,1496,155.227,155.276,155.21,155.27,USD_JPY,H1,76.1755485893429,0.12046070452248614,0.103377945788332,0.017082758734154144,155.06795,0.17207112207786224,0.12735714285714192,74.26596703132452,151219 -2024-04-25 00:00:00+00:00,3988,155.269,155.416,155.246,155.375,USD_JPY,H1,79.7570850202448,0.12703744049147758,0.10810984472896112,0.018927595762516458,155.09459999999999,0.17645378103805975,0.13707142857142735,79.21062703619407,155207 -2024-04-25 01:00:00+00:00,3580,155.374,155.452,155.354,155.394,USD_JPY,H1,81.00929614874099,0.13225810325360499,0.11293949643388991,0.019318606819715076,155.12050000000002,0.18064518872936075,0.14114285714285504,85.29983944791302,158787 -2024-04-25 02:00:00+00:00,3079,155.398,155.445,155.364,155.436,USD_JPY,H1,81.47668393782654,0.13819157859995812,0.11798991286710356,0.020201665732854562,155.14589999999998,0.18772906008542595,0.1185714285714263,88.16954516616822,161866 -2024-04-25 03:00:00+00:00,2873,155.436,155.519,155.416,155.462,USD_JPY,H1,81.25819134993614,0.14333955411518673,0.1230598411167202,0.020279712998466523,155.17379999999997,0.191316381670032,0.11321428571428425,87.0694827690095,164739 -2024-04-25 04:00:00+00:00,2566,155.462,155.626,155.452,155.59,USD_JPY,H1,83.60091743119504,0.1559501952839355,0.12963791195016328,0.026312283333772224,155.20825,0.20137732977663944,0.11371428571428462,85.88217473423312,167305 -2024-04-25 05:00:00+00:00,3754,155.591,155.742,155.59,155.66,USD_JPY,H1,82.72946859903604,0.16963716263512651,0.13763776208715595,0.03199940054797057,155.24444999999997,0.21450714011081357,0.11299999999999752,84.8634110643816,171059 -2024-04-25 06:00:00+00:00,3727,155.665,155.69,155.604,155.666,USD_JPY,H1,83.15282791817172,0.17890601554404384,0.14589141277853354,0.0330146027655103,155.28105,0.22109618650003976,0.11414285714285402,84.04125269912001,174786 -2024-04-25 07:00:00+00:00,3689,155.669,155.691,155.562,155.629,USD_JPY,H1,74.45887445887493,0.18117755539529412,0.15294864130188568,0.02822891409340844,155.31615,0.21762649679194837,0.10264285714285393,81.55092499704257,171097 -2024-04-25 08:00:00+00:00,2891,155.628,155.694,155.612,155.674,USD_JPY,H1,78.35195530726266,0.18448229396369697,0.15925537183424793,0.025226922129449048,155.35235,0.2136951283848896,0.10178571428570901,79.31920275246198,173988 -2024-04-25 09:00:00+00:00,2535,155.674,155.694,155.634,155.636,USD_JPY,H1,73.26869806094047,0.18193777524703592,0.16379185251680553,0.018145922730230385,155.3849,0.2041629638063556,0.09992857142856744,77.82683616612277,171453 -2024-04-25 10:00:00+00:00,3089,155.636,155.642,155.518,155.546,USD_JPY,H1,63.05483028720519,0.17069135431233917,0.16517175287591226,0.0055196014364269075,155.412,0.18611654526611385,0.10292857142856755,74.24850749151618,168364 -2024-04-25 11:00:00+00:00,3061,155.546,155.578,155.495,155.558,USD_JPY,H1,73.99103139013398,0.16089212019755905,0.16431582634024164,-0.0034237061426825866,155.43400000000003,0.1752213637560932,0.10399999999999514,70.45911698783974,171425 -2024-04-25 12:00:00+00:00,9575,155.559,155.748,155.312,155.68,USD_JPY,H1,78.90025575447414,0.1611133228689141,0.16367532564597614,-0.0025620027770620335,155.46224999999998,0.16640814599474058,0.1317142857142792,65.56750051945293,181000 -2024-04-25 13:00:00+00:00,12304,155.677,155.686,155.352,155.652,USD_JPY,H1,74.86979166666328,0.1572169623080697,0.16238365297839485,-0.005166690670325158,155.48035,0.16637379443431408,0.1508571428571364,60.85142884941039,168696 -2024-04-25 14:00:00+00:00,6905,155.653,155.684,155.508,155.569,USD_JPY,H1,63.00268096514552,0.14575152924976464,0.15905722823266882,-0.01330569898290418,155.4954,0.15963128568428642,0.15128571428570783,54.70717402763349,161791 -2024-04-25 15:00:00+00:00,3847,155.57,155.588,155.5,155.52,USD_JPY,H1,58.118556701030826,0.1311988221043805,0.15348554700701117,-0.022286724902630672,155.5064,0.15289569888537452,0.15057142857142278,48.65991473668584,157944 -2024-04-25 16:00:00+00:00,3224,155.521,155.612,155.498,155.514,USD_JPY,H1,55.27027027027021,0.11782335272152977,0.1463531081499149,-0.028529755428385123,155.5148,0.14816122086845807,0.15292857142856672,42.63085422713097,154720 -2024-04-25 17:00:00+00:00,4351,155.514,155.614,155.474,155.564,USD_JPY,H1,56.67539267015698,0.10998988408570654,0.13908046333707322,-0.029090579251366683,155.53115,0.1331766832001413,0.1555714285714243,38.74378980271889,159071 -2024-04-25 18:00:00+00:00,3903,155.566,155.643,155.532,155.601,USD_JPY,H1,50.8172362555717,0.10555067208798619,0.13237450508725582,-0.02682383299926963,155.5498,0.11309223064567736,0.15107142857142314,36.07246005898959,162974 -2024-04-25 19:00:00+00:00,2471,155.602,155.637,155.56,155.633,USD_JPY,H1,47.87401574803269,0.1034225068807757,0.1265841054459598,-0.0231615985651841,155.56795,0.09320406305129825,0.14571428571428108,36.17331810505356,165445 -2024-04-25 20:00:00+00:00,1542,155.634,155.654,155.613,155.646,USD_JPY,H1,48.442367601245365,0.10161357394770221,0.12158999914630829,-0.019976425198606082,155.5815,0.08279429169756235,0.14249999999999627,35.62112441153003,166987 -2024-04-25 21:00:00+00:00,852,155.623,155.626,155.573,155.6,USD_JPY,H1,47.77265745007712,0.0953688136845301,0.11634576205395265,-0.020976948369422557,155.59179999999998,0.07007785145125627,0.13707142857142532,36.46927077806667,166135 -2024-04-25 22:00:00+00:00,678,155.592,155.622,155.548,155.572,USD_JPY,H1,41.95583596214463,0.08715575292350763,0.11050776022786366,-0.02335200730435602,155.5986,0.06004419425747341,0.13649999999999807,37.33011487996959,165457 -2024-04-25 23:00:00+00:00,2016,155.57,155.642,155.551,155.622,USD_JPY,H1,48.91640866873205,0.08371639474412973,0.10514948713111688,-0.02143309238698715,155.60660000000001,0.050839686123020485,0.1387142857142842,37.343041783062745,167473 -2024-04-26 00:00:00+00:00,3254,155.62,155.649,155.572,155.636,USD_JPY,H1,57.89473684210605,0.08118451702813445,0.1003564931105204,-0.019171976082385953,155.6089,0.05108908628778113,0.13535714285714157,38.35743220294182,170727 -2024-04-26 01:00:00+00:00,3260,155.636,155.66,155.558,155.594,USD_JPY,H1,53.000000000000284,0.07492524511923193,0.09527024351226271,-0.020344998393030778,155.6056,0.04972810283333205,0.13671428571428482,38.752684181284984,167467 -2024-04-26 02:00:00+00:00,2419,155.594,155.633,155.537,155.568,USD_JPY,H1,38.888888888887955,0.06709333413513718,0.08963486163683762,-0.022541527501700437,155.60070000000002,0.04827018258913855,0.11242857142857231,37.617498443480926,165048 -2024-04-26 03:00:00+00:00,8237,155.568,156.145,155.422,155.944,USD_JPY,H1,67.1361502347441,0.09018692713468113,0.08974527473640632,0.00044165239827480274,155.61645000000001,0.09071730236427179,0.14021428571428732,40.72984457684059,173285 -2024-04-26 04:00:00+00:00,2992,155.944,156.219,155.944,156.2,USD_JPY,H1,80.7804878048813,0.12767407917553442,0.09733103562423195,0.030343043551302462,155.64275,0.1589021132013228,0.14728571428571716,45.35115601180441,176277 -2024-04-26 05:00:00+00:00,2503,156.2,156.218,156.092,156.106,USD_JPY,H1,77.38317757009509,0.14809080423117393,0.10748298934562037,0.04060781488555357,155.66625000000002,0.18963368427428812,0.15000000000000163,49.96304904487946,173774 -2024-04-26 06:00:00+00:00,6524,156.108,156.464,155.91,156.38,USD_JPY,H1,82.36173393124233,0.18425671925504616,0.12283773532750553,0.06141898392754064,155.70794999999998,0.24532030083329961,0.18142857142857288,55.327967272444575,180298 -2024-04-26 07:00:00+00:00,8680,156.382,156.824,156.377,156.703,USD_JPY,H1,85.35071384233574,0.2362584279574378,0.145521873853492,0.0907365541039458,155.7652,0.328116410666008,0.20335714285714346,60.28084270883232,188978 -2024-04-26 08:00:00+00:00,16016,156.707,156.71,154.97,156.56,USD_JPY,H1,77.92661619103214,0.26290069628029755,0.16899763833885312,0.09390305794144443,155.8092,0.3721399849815327,0.31971428571428767,58.60706190264962,172962 -2024-04-26 09:00:00+00:00,4538,156.562,156.695,156.464,156.69,USD_JPY,H1,79.11845730027656,0.29114861936770353,0.1934278345446232,0.09772078482308033,155.8611,0.41855011647475815,0.3307142857142874,53.974188358884305,177500 -2024-04-26 10:00:00+00:00,2841,156.69,156.844,156.634,156.818,USD_JPY,H1,80.36269430051958,0.32017307626674096,0.21877688288904676,0.1013961933776942,155.92355,0.46344448086386464,0.3427857142857168,49.424212351601795,180341 -2024-04-26 11:00:00+00:00,5397,156.818,156.868,156.281,156.818,USD_JPY,H1,82.32484076433241,0.3392643393498531,0.24287437418120805,0.09638996516864506,155.98845,0.493845434482294,0.38092857142857334,45.551380304740285,174944 -2024-04-26 12:00:00+00:00,10674,156.822,156.954,156.628,156.835,USD_JPY,H1,83.7159636946084,0.351711746730075,0.26464184869098145,0.08706989803909354,156.05450000000002,0.514938678005851,0.398928571428574,41.20568668579905,185618 -2024-04-26 13:00:00+00:00,7704,156.836,156.94,156.775,156.934,USD_JPY,H1,84.1311134235178,0.365353313803098,0.28478414171340477,0.08056917208969322,156.123,0.5369092837235687,0.40421428571428714,37.47693003316824,193322 -2024-04-26 14:00:00+00:00,9372,156.934,157.312,156.839,157.266,USD_JPY,H1,86.38392857142924,0.39836191121011666,0.30749969561274715,0.09086221559736951,156.20625,0.5791333702417331,0.4325000000000025,33.99819426276481,202694 -2024-04-26 15:00:00+00:00,8187,157.266,157.676,157.21,157.622,USD_JPY,H1,89.70242756460534,0.4480824714440246,0.33561625077900265,0.11246622066502193,156.3057,0.6427916172129073,0.4585000000000008,31.20450861355903,210881 -2024-04-26 16:00:00+00:00,5074,157.622,157.792,157.59,157.652,USD_JPY,H1,90.73494917904621,0.4843241357703505,0.3653578277772722,0.11896630799307828,156.406,0.6892619240907918,0.46607142857142897,31.95737268045654,215955 -2024-04-26 17:00:00+00:00,3309,157.652,157.794,157.582,157.704,USD_JPY,H1,89.39122649955264,0.5113473869004395,0.3945557396019057,0.11679164729853375,156.5112,0.7196631229455294,0.42957142857142927,27.450288527767885,219264 -2024-04-26 18:00:00+00:00,3616,157.702,157.778,157.7,157.726,USD_JPY,H1,88.15000000000026,0.5284471148581815,0.4213340146531609,0.10711310020502063,156.6189,0.7327684275557371,0.41550000000000054,22.89143652060851,222880 -2024-04-26 19:00:00+00:00,2624,157.72,157.898,157.706,157.89,USD_JPY,H1,93.09178743961347,0.5489047693566249,0.4468481655938537,0.1020566037627712,156.7323,0.7457506356201321,0.4202142857142884,17.962865092037124,225504 -2024-04-26 20:00:00+00:00,4750,157.892,158.444,157.86,158.345,USD_JPY,H1,93.64726788094178,0.5949738175322352,0.47647329598153004,0.11850052155070517,156.86775,0.7813190516862505,0.42235714285714365,13.111921614956225,230254 -2024-04-28 21:00:00+00:00,357,157.912,157.99,157.838,157.934,USD_JPY,H1,76.31466438648985,0.5915011479543466,0.4994788663760934,0.0920222815782532,156.98475000000002,0.7553110112303802,0.41578571428571415,7.188474270995981,229897 -2024-04-28 22:00:00+00:00,5618,157.93,158.436,157.93,158.227,USD_JPY,H1,83.4873443149859,0.6054128609864335,0.5206656652981615,0.08474719568827205,157.11769999999999,0.7262698570537567,0.32764285714285635,11.448905683912585,235515 -2024-04-28 23:00:00+00:00,3843,158.232,158.34,158.194,158.202,USD_JPY,H1,81.71140939597296,0.6074187573963457,0.5380162837177983,0.06940247367854735,157.2306,0.7095252972024388,0.32157142857142923,15.612240622959296,231672 -2024-04-29 00:00:00+00:00,4842,158.203,158.306,158.052,158.196,USD_JPY,H1,80.45977011494222,0.6015895450976245,0.5507309359937635,0.050858609103860974,157.3304,0.6972033155111497,0.3247142857142872,19.305374997824572,226830 -2024-04-29 01:00:00+00:00,13123,158.2,160.233,158.195,159.173,USD_JPY,H1,86.35381290521745,0.6681040990504812,0.5742055686051071,0.0938985304453741,157.48375,0.7490854687387969,0.4283571428571459,24.783594206927123,239953 -2024-04-29 02:00:00+00:00,8321,159.174,159.482,159.092,159.372,USD_JPY,H1,87.07980122771106,0.7284775632693936,0.6050599675379644,0.12341759573142919,157.63335,0.8130861464697223,0.43292857142857194,30.366478962747635,248274 -2024-04-29 03:00:00+00:00,3680,159.37,159.461,159.306,159.401,USD_JPY,H1,86.8099074903013,0.7697903621500757,0.6380060464603867,0.13178431568968896,157.76825,0.8722670930288914,0.4322142857142869,35.86336593059591,251954 -2024-04-29 04:00:00+00:00,32950,159.398,159.6,155.201,156.312,USD_JPY,H1,42.19056974459746,0.5469694454651517,0.6197987262613398,-0.07282928079618811,157.75584999999998,0.8918894358560316,0.7126428571428575,37.50809947637124,219004 -2024-04-29 05:00:00+00:00,21854,156.312,156.944,155.049,156.8,USD_JPY,H1,43.413461538461526,0.40509015808561344,0.5768570126261946,-0.17176685454058116,157.76135,0.8852854594643252,0.8147142857142862,39.16635647955159,240858 -2024-04-29 06:00:00+00:00,11024,156.804,157.24,156.67,157.036,USD_JPY,H1,45.2218430034131,0.3081409710152059,0.5231138043039969,-0.21497283328879102,157.77225,0.8743335431853047,0.8410000000000021,40.348673943828416,251882 -2024-04-29 07:00:00+00:00,31265,157.034,157.184,154.528,155.564,USD_JPY,H1,36.39715230104239,0.11124755127613639,0.4407405536984248,-0.3294930024222884,157.70954999999998,0.9844013128490513,1.01557142857143,43.543922292648304,220617 -2024-04-29 08:00:00+00:00,13391,155.569,155.948,155.064,155.879,USD_JPY,H1,38.68121093271232,-0.01915324824906861,0.34876179330892615,-0.36791504155799476,157.66174999999998,1.0501190847267425,1.0731428571428592,46.28454700961941,234008 -2024-04-29 09:00:00+00:00,10164,155.882,155.96,155.456,155.738,USD_JPY,H1,36.77482792527052,-0.1323487094355471,0.2525396927600315,-0.3848884021955786,157.60195000000002,1.1251181212851122,1.0954285714285743,49.408801719850736,223844 -2024-04-29 10:00:00+00:00,7017,155.738,155.963,155.466,155.887,USD_JPY,H1,34.30395913154537,-0.2076403247874623,0.16050368925053277,-0.36814401403799507,157.533,1.1873241476450076,1.0892142857142895,52.685269083353624,230861 -2024-04-29 11:00:00+00:00,7399,155.888,156.39,155.84,156.232,USD_JPY,H1,39.039155074703785,-0.2367418430855821,0.08105458278330979,-0.3177964258688919,157.4635,1.2220153543706993,1.1031428571428603,55.77575912208031,238260 -2024-04-29 12:00:00+00:00,8345,156.226,156.51,156.094,156.421,USD_JPY,H1,38.21148825065266,-0.24176734211587814,0.016490197803472204,-0.25825753991935035,157.40195,1.24284510086284,1.0967142857142886,54.475492838388284,246605 -2024-04-29 13:00:00+00:00,8473,156.424,156.73,156.254,156.712,USD_JPY,H1,40.600555134998665,-0.2197358403063845,-0.030755009818499136,-0.18898083048788536,157.35235,1.249930704395794,1.120285714285716,52.83097409962414,255078 -2024-04-29 14:00:00+00:00,7549,156.709,156.896,156.658,156.682,USD_JPY,H1,40.47798742138357,-0.2023637424179583,-0.06507675633839097,-0.13728698607956732,157.30014999999997,1.2552933511216744,1.1191428571428577,51.745369594323236,247529 -2024-04-29 15:00:00+00:00,5848,156.684,156.752,156.58,156.718,USD_JPY,H1,32.486802682265534,-0.18357519002768186,-0.08877644307624916,-0.0947987469514327,157.24155000000002,1.2536633257028598,0.9858571428571423,51.304707659653296,253377 -2024-04-29 16:00:00+00:00,10475,156.716,156.735,155.085,155.831,USD_JPY,H1,26.99753150578124,-0.23752062402360252,-0.11852527926571983,-0.11899534475788269,157.11585,1.2631998331312448,1.0758571428571437,50.05821996818145,242902 -2024-04-29 17:00:00+00:00,7866,155.824,156.176,155.756,156.102,USD_JPY,H1,29.222824033253502,-0.25546054383207206,-0.1459123321789903,-0.10954821165308176,157.02425,1.2671666228249925,1.0947857142857143,49.62616063116868,250768 -2024-04-29 18:00:00+00:00,8093,156.103,156.103,155.588,155.818,USD_JPY,H1,45.188936501753005,-0.2892600759460606,-0.17458188093240437,-0.11467819501365625,156.9038,1.2613021925986874,0.8173571428571437,52.733333996318834,242675 -2024-04-29 19:00:00+00:00,5423,155.817,156.1,155.817,156.046,USD_JPY,H1,42.26508001641337,-0.2942567455402241,-0.19851685385396833,-0.09573989168625574,156.796,1.2363967596892136,0.7022142857142869,55.157369017468866,248098 -2024-04-29 20:00:00+00:00,2889,156.038,156.368,156.016,156.36,USD_JPY,H1,43.174474959612404,-0.2697697288913332,-0.21276742886144132,-0.0570023000298919,156.7042,1.1944259400721775,0.6866428571428571,57.91152422866621,250987 -2024-04-29 21:00:00+00:00,417,156.317,156.323,156.202,156.301,USD_JPY,H1,60.412545916925566,-0.2522169981391471,-0.22065734271698248,-0.03155965542216463,156.5606,1.045330237420018,0.5055714285714288,56.99992709565796,250570 -2024-04-29 22:00:00+00:00,3498,156.29,156.309,156.062,156.267,USD_JPY,H1,55.954573357888336,-0.23830284158813697,-0.2241864424912134,-0.014116399096923582,156.40535,0.809865828719585,0.46007142857142674,57.65509848929552,247072 -2024-04-29 23:00:00+00:00,3418,156.272,156.391,156.173,156.336,USD_JPY,H1,59.38480853735101,-0.21918146148021833,-0.22318544628901438,0.004003984808796046,156.25209999999998,0.3988766990611131,0.43964285714285317,57.884638421921515,250490 -2024-04-30 00:00:00+00:00,7866,156.335,156.838,156.164,156.817,USD_JPY,H1,63.21773735076747,-0.16333215841584092,-0.2112147887143797,0.047882630298538786,156.27735,0.41837546408535936,0.4522857142857118,55.851912210540625,258356 -2024-04-30 01:00:00+00:00,7159,156.815,157.004,156.56,156.858,USD_JPY,H1,59.73864343497199,-0.11444359153162509,-0.1918605492778288,0.07741695774620372,156.28025,0.4223708616111133,0.4447142857142836,55.247487181352064,265515 -2024-04-30 02:00:00+00:00,4033,156.858,156.896,156.688,156.721,USD_JPY,H1,54.743833017077925,-0.08576515774447557,-0.17064147097115817,0.0848763132266826,156.2645,0.3978684654389415,0.4298571428571409,55.10315678475103,261482 -2024-04-30 03:00:00+00:00,3964,156.72,156.871,156.709,156.74,USD_JPY,H1,50.48442906574428,-0.06080324913349955,-0.14867382660362644,0.08787057747012689,156.3233,0.37514475802678804,0.40742857142857,56.37462663656915,265446 -2024-04-30 04:00:00+00:00,3173,156.738,156.842,156.732,156.76,USD_JPY,H1,51.35416666666671,-0.03895784211198361,-0.1267306297052979,0.08777278759331428,156.36735000000002,0.37193905485661255,0.3982857142857138,58.82349356232536,268619 -2024-04-30 05:00:00+00:00,4551,156.76,156.828,156.704,156.826,USD_JPY,H1,51.85567010309284,-0.016133573452862038,-0.10461121845481072,0.08847764500194868,156.42175,0.354187413222931,0.39485714285714224,58.13396752117005,273170 -2024-04-30 06:00:00+00:00,6602,156.83,156.894,156.718,156.83,USD_JPY,H1,74.6423285643809,0.0022516350231285287,-0.08323864775922288,0.0854902827823514,156.46890000000002,0.3418043299921235,0.2895714285714287,53.26814099494091,279772 -2024-04-30 07:00:00+00:00,6707,156.83,156.95,156.481,156.867,USD_JPY,H1,71.33296151701015,0.01958190793141057,-0.06267453662109619,0.08225644455250676,156.50065,0.3480755022470513,0.2930714285714292,49.08287101066736,286479 -2024-04-30 08:00:00+00:00,5403,156.868,156.98,156.822,156.939,USD_JPY,H1,85.45224541429376,0.03868019117371091,-0.042403591062134774,0.08108378223584568,156.52655,0.36087357095237244,0.2675714285714272,47.341694773974986,291882 -2024-04-30 09:00:00+00:00,5682,156.936,156.96,156.878,156.926,USD_JPY,H1,82.21083455343954,0.05216539666358244,-0.023489793516991327,0.07565519018057376,156.53725,0.3697256272901294,0.25321428571428684,45.624237415548464,286200 -2024-04-30 10:00:00+00:00,4064,156.926,156.953,156.825,156.923,USD_JPY,H1,76.68246445497557,0.06189693490591708,-0.006412447832409645,0.06830938273832672,156.5493,0.3785144230045329,0.2372142857142876,42.228470908670495,282136 -2024-04-30 11:00:00+00:00,2140,156.922,156.959,156.901,156.958,USD_JPY,H1,81.86226964112635,0.07160800407123702,0.009191642548319688,0.06241636152291733,156.56130000000002,0.38783380868524436,0.2327142857142864,41.563480806187634,284276 -2024-04-30 12:00:00+00:00,11863,156.959,157.496,156.832,157.456,USD_JPY,H1,89.76588628762582,0.1181268416899286,0.030978682376641472,0.08714815931328712,156.64255,0.3968961782598007,0.26250000000000284,42.41266906501453,296139 -2024-04-30 13:00:00+00:00,8190,157.456,157.544,157.3,157.43,USD_JPY,H1,87.67217630854127,0.15115297553151663,0.055013541007616504,0.09613943452390013,156.70895,0.4124834255061252,0.26435714285714645,43.49475665886958,287949 -2024-04-30 14:00:00+00:00,8353,157.43,157.466,157.244,157.338,USD_JPY,H1,74.50611476952052,0.1679665792474907,0.07760414865559134,0.09036243059189936,156.78495,0.37829958540461356,0.2320714285714323,44.366737777252204,279596 -2024-04-30 15:00:00+00:00,5260,157.338,157.578,157.314,157.548,USD_JPY,H1,78.00324675324732,0.19597761829274418,0.10127884258302192,0.09469877570972227,156.86005,0.37293282519350385,0.21921428571429097,44.14651115215101,284856 -2024-04-30 16:00:00+00:00,2863,157.546,157.578,157.438,157.466,USD_JPY,H1,81.64825828377346,0.20914891534201274,0.12285285713482008,0.08629605820719266,156.91535000000002,0.3768611743578954,0.2143571428571493,43.496826879838316,281993 -2024-04-30 17:00:00+00:00,2084,157.465,157.648,157.447,157.568,USD_JPY,H1,82.85714285714394,0.22522159633112437,0.14332660497408095,0.08189499135704342,156.9787,0.37463836598079014,0.21714285714286266,41.919084701172565,284077 -2024-04-30 18:00:00+00:00,2141,157.569,157.733,157.552,157.7,USD_JPY,H1,84.25655976676484,0.24577743931311602,0.16381677184188798,0.08196066747122804,157.05035,0.36833955659011064,0.22221428571429108,39.5335435927748,286218 -2024-04-30 19:00:00+00:00,2729,157.7,157.765,157.676,157.71,USD_JPY,H1,83.58662613981885,0.25987928279687367,0.1830292740328851,0.07685000876398856,157.11905000000002,0.35602002826804446,0.21971428571429133,37.507083730948864,288947 -2024-04-30 20:00:00+00:00,1781,157.714,157.848,157.71,157.814,USD_JPY,H1,84.74576271186518,0.27626244469669814,0.2016759081656477,0.07458653653105043,157.1689,0.38046203213516944,0.21700000000000483,40.67139887255668,290728 -2024-04-30 21:00:00+00:00,560,157.724,157.738,157.658,157.719,USD_JPY,H1,78.90094979647307,0.27837161775559593,0.21701505008363736,0.06135656767195857,157.21195,0.3919694503423783,0.18921428571429186,44.05116817600601,290168 -2024-04-30 22:00:00+00:00,2822,157.71,157.817,157.655,157.703,USD_JPY,H1,76.93935119887297,0.2755754243657407,0.22872712494005804,0.04684829942568264,157.26105,0.38872551200807676,0.18950000000000752,46.203273434376726,287346 -2024-04-30 23:00:00+00:00,3776,157.704,157.749,157.682,157.744,USD_JPY,H1,78.28492392807902,0.2735148691530185,0.23768467378265012,0.035830195370368356,157.31125,0.3826768425071363,0.18842857142857788,48.7248443566008,291122 -2024-05-01 00:00:00+00:00,5229,157.742,157.857,157.686,157.746,USD_JPY,H1,78.47750865051998,0.2689430396370369,0.2439363469535275,0.025006692683509413,157.36055,0.3712646204836074,0.1915000000000049,53.52331360093984,296351 -2024-05-01 01:00:00+00:00,3817,157.748,157.85,157.736,157.806,USD_JPY,H1,78.84353741496702,0.2670825687667957,0.24856559131618117,0.018516977450614536,157.40955,0.36154441745280136,0.19550000000000572,58.042035830823636,300168 -2024-05-01 02:00:00+00:00,1990,157.805,157.894,157.795,157.883,USD_JPY,H1,70.352716873214,0.26872370903927845,0.25259721486080067,0.01612649417847778,157.4622,0.34916510949127205,0.15514285714286302,59.11247945228668,302158 -2024-05-01 03:00:00+00:00,2052,157.889,157.932,157.843,157.917,USD_JPY,H1,73.03689687795651,0.2696593749616909,0.2560096468809787,0.013649728080712187,157.5147,0.3335506116441471,0.14407142857143437,60.22339524513016,304210 -2024-05-01 04:00:00+00:00,2031,157.915,157.927,157.82,157.86,USD_JPY,H1,75.53816046966921,0.26277239669619235,0.25736219684402145,0.005410199852170894,157.56075,0.3128185744616343,0.135857142857148,63.70099591200212,302179 -2024-05-01 05:00:00+00:00,2543,157.86,157.92,157.826,157.917,USD_JPY,H1,71.23130034522578,0.2589290673235496,0.2576755709399271,0.0012534963836224877,157.6103,0.28415675807520846,0.12371428571428973,67.36527588290139,304722 -2024-05-01 06:00:00+00:00,3142,157.918,157.979,157.854,157.972,USD_JPY,H1,80.04750593824386,0.25735461761766487,0.2576113802754747,-0.0002567626578098281,157.66275000000002,0.2446890346667653,0.12264285714286009,70.66834250162239,307864 -2024-05-01 07:00:00+00:00,2968,157.974,157.988,157.869,157.882,USD_JPY,H1,68.915662650603,0.24600877106610142,0.25529085843360005,-0.009282087367498637,157.70895000000002,0.18443240810621578,0.1167857142857177,73.79796288124204,304896 -2024-05-01 08:00:00+00:00,2068,157.882,157.98,157.868,157.954,USD_JPY,H1,66.49350649350812,0.24005964603492203,0.2522446159538645,-0.012184969918942468,157.73385000000002,0.18208681417585146,0.11185714285714507,76.62393384715789,306964 -2024-05-01 09:00:00+00:00,2112,157.953,157.97,157.9,157.918,USD_JPY,H1,63.06532663316632,0.22979113330640644,0.24775391942437291,-0.01796278611796648,157.75825000000003,0.17162317197826288,0.11050000000000182,79.01403322060432,304852 -2024-05-01 10:00:00+00:00,1826,157.92,157.928,157.86,157.91,USD_JPY,H1,56.857142857143224,0.21848912323923741,0.24190096018734583,-0.023411836948108417,157.78685000000002,0.1432139639688909,0.10550000000000027,79.79104450515152,303026 -2024-05-01 11:00:00+00:00,2114,157.911,157.912,157.866,157.877,USD_JPY,H1,62.38244514106749,0.20451188887622607,0.2344231459251219,-0.02991125704889583,157.8033,0.1328553229799676,0.1030714285714274,80.76633732827055,300912 -2024-05-01 12:00:00+00:00,4875,157.872,157.922,157.764,157.782,USD_JPY,H1,55.509065550907216,0.18365209683821604,0.22426893610774074,-0.040616839269524696,157.8191,0.10688158721793208,0.10278571428571175,77.76412592947966,296037 -2024-05-01 13:00:00+00:00,4282,157.783,157.817,157.513,157.622,USD_JPY,H1,42.703349282297374,0.1524525207761087,0.20990565304141434,-0.05745313226530563,157.8218,0.10070833343407071,0.1197142857142828,74.04869460739928,291755 -2024-05-01 14:00:00+00:00,6766,157.605,157.718,157.383,157.665,USD_JPY,H1,45.3819840364868,0.12970125724280024,0.19386477388169154,-0.0641635166388913,157.82004999999998,0.1032092789683781,0.13142857142856762,72.13681099578086,298521 -2024-05-01 15:00:00+00:00,4301,157.662,157.737,157.59,157.648,USD_JPY,H1,40.52757793764834,0.1090419908592537,0.17690021727720398,-0.06785822641795028,157.81695,0.10752942070802124,0.13378571428570954,69.80615790735304,294220 -2024-05-01 16:00:00+00:00,2243,157.649,157.666,157.603,157.616,USD_JPY,H1,33.079847908744,0.08906060562017615,0.15933229494579843,-0.07027168932562228,157.80705,0.11655153593292529,0.13121428571427884,68.80144833121543,291977 -2024-05-01 17:00:00+00:00,2387,157.615,157.678,157.564,157.644,USD_JPY,H1,32.56704980842781,0.07462435672212564,0.14239070730106387,-0.06776635057893823,157.80329999999998,0.12066748570874078,0.13299999999999354,68.67336951348172,294364 -2024-05-01 18:00:00+00:00,18964,157.656,157.769,157.003,157.118,USD_JPY,H1,20.367412140573208,0.020503371326498154,0.11801324010615073,-0.09750986877965258,157.77405,0.19454629404927207,0.18007142857142355,68.72891196167517,275400 -2024-05-01 19:00:00+00:00,10051,157.116,157.493,157.108,157.48,USD_JPY,H1,35.96660244059014,0.006744726115414323,0.09575953730800345,-0.08901481119258912,157.76085,0.2053488110813151,0.2008571428571376,68.752852511467,285451 -2024-05-01 20:00:00+00:00,26306,157.488,157.589,153.002,154.444,USD_JPY,H1,11.128250330541476,-0.24629973638462843,0.027347682569477075,-0.2736474189541055,157.59575,0.7697336432694433,0.5195714285714226,69.65053580201634,259145 -2024-05-01 21:00:00+00:00,2831,154.75,155.342,154.245,154.284,USD_JPY,H1,10.959201388888303,-0.45451064305692057,-0.06902398255580246,-0.38548666050111813,157.41965,1.065254270363716,0.589428571428566,70.66628142003525,256314 -2024-05-01 22:00:00+00:00,8725,154.255,155.44,154.209,155.438,USD_JPY,H1,27.891036906853728,-0.5204022577653404,-0.15929963759771007,-0.3611026201676304,157.29739999999998,1.1464799399175436,0.6693571428571374,71.53993602542934,265039 -2024-05-01 23:00:00+00:00,8098,155.436,155.76,155.204,155.728,USD_JPY,H1,31.57806191117082,-0.5429623290295638,-0.23603217588408082,-0.30693015314548294,157.18795,1.1879534580204516,0.7040714285714225,71.46509329946518,273137 -2024-05-02 00:00:00+00:00,8387,155.713,156.086,155.656,156.02,USD_JPY,H1,34.82658959537572,-0.5311565463559589,-0.29505704997845644,-0.23609949637750244,157.09595,1.204303925401925,0.7299285714285669,72.02999503156771,281524 -2024-05-02 01:00:00+00:00,6693,156.02,156.288,155.926,156.083,USD_JPY,H1,35.66634707574285,-0.5108282944451901,-0.3382112988718032,-0.1726169955733869,157.00425,1.2083128243880141,0.7524999999999977,70.18897342440178,288217 -2024-05-02 02:00:00+00:00,7619,156.084,156.148,155.703,155.827,USD_JPY,H1,34.77177130394122,-0.5095018487094762,-0.3724694088393378,-0.1370324398701384,156.897,1.2130801162423628,0.7729999999999981,72.31370198546578,280598 -2024-05-02 03:00:00+00:00,5339,155.828,156.105,155.787,155.946,USD_JPY,H1,36.861084979617225,-0.49316344423039027,-0.39660821591754836,-0.09655522831284191,156.8002,1.2075742365766098,0.7739999999999968,74.79224364136277,285937 -2024-05-02 04:00:00+00:00,5907,155.947,156.08,155.703,155.831,USD_JPY,H1,35.78294573643406,-0.4839163929236463,-0.41406985131876795,-0.06984654160487835,156.69405,1.1940469211892046,0.776999999999999,74.75692481060047,280030 -2024-05-02 05:00:00+00:00,6290,155.834,155.894,155.606,155.7,USD_JPY,H1,35.16148689823271,-0.48160697787793083,-0.4275772766306005,-0.05402970124733031,156.58315,1.177269779707221,0.787071428571429,75.25687578278522,273740 -2024-05-02 06:00:00+00:00,10893,155.694,155.712,155.164,155.438,USD_JPY,H1,33.97115101560183,-0.4952094934076001,-0.44110371998600045,-0.05410577342159967,156.45954999999998,1.1602771209369436,0.8217142857142871,75.309984600575,262847 -2024-05-02 07:00:00+00:00,9011,155.44,155.528,155.204,155.502,USD_JPY,H1,34.319180087847855,-0.4951179087837545,-0.4519065577455513,-0.04321135103820323,156.3408,1.1286769898290914,0.8367142857142856,74.4684900733761,271858 -2024-05-02 08:00:00+00:00,8202,155.5,155.557,155.1,155.148,USD_JPY,H1,35.205767497747175,-0.5176431013572653,-0.46505386646789415,-0.05258923488937117,156.20909999999998,1.105087274477312,0.8146428571428552,72.58172464745105,263656 -2024-05-02 09:00:00+00:00,6209,155.146,155.312,155.022,155.268,USD_JPY,H1,32.76184538653389,-0.5198193280019439,-0.4760069587747041,-0.043812369227239745,156.0914,1.0715325178655155,0.807857142857143,70.88957584757452,269865 -2024-05-02 10:00:00+00:00,5599,155.264,155.354,155.087,155.096,USD_JPY,H1,59.17792792792802,-0.529321279612418,-0.4866698229422469,-0.04265145667017112,155.96295,1.0259802232119748,0.49928571428571694,76.21926296119395,264266 -2024-05-02 11:00:00+00:00,6787,155.094,155.176,154.672,154.742,USD_JPY,H1,56.11318739989308,-0.5589729934996797,-0.5011304570537335,-0.05784253644594617,155.81765000000001,0.9795046156635643,0.45692857142857285,70.50289428650491,257479 -2024-05-02 12:00:00+00:00,10256,154.738,154.866,154.402,154.522,USD_JPY,H1,33.71266002844996,-0.5933841882147703,-0.5195812032859409,-0.07380298492882942,155.66295,0.9232425965617812,0.40214285714286085,66.08643458092953,247223 -2024-05-02 13:00:00+00:00,9499,154.514,154.788,154.348,154.404,USD_JPY,H1,24.924242424242607,-0.622995418396556,-0.5402640463080639,-0.08273137208849213,155.50095000000002,0.8376243646865699,0.3938571428571476,64.19850573473883,237724 -2024-05-02 14:00:00+00:00,10542,154.406,154.546,154.046,154.07,USD_JPY,H1,13.646532438479042,-0.6657393119190544,-0.5653590994302621,-0.10038021248879236,155.34855,0.8045570520483393,0.39885714285714713,65.28818694320282,227182 -2024-05-02 15:00:00+00:00,10602,154.072,154.154,153.477,153.789,USD_JPY,H1,10.448275862069636,-0.7140572990159342,-0.5950987393473965,-0.11895855966853763,155.16400000000002,0.7073624843113704,0.42135714285714493,68.1699060903717,216580 -2024-05-02 16:00:00+00:00,8023,153.784,153.93,153.5,153.77,USD_JPY,H1,11.37814494930609,-0.7452915362113401,-0.6251372987201853,-0.12015423749115484,155.1303,0.7577318717556322,0.42028571428571737,70.98137819454602,208557 -2024-05-02 17:00:00+00:00,7319,153.774,153.815,153.243,153.384,USD_JPY,H1,6.2798634812294125,-0.792061476621285,-0.6585221343004053,-0.13353934232087972,155.08530000000002,0.833566661370257,0.4384285714285759,73.60600707287972,201238 -2024-05-02 18:00:00+00:00,7515,153.384,153.419,153.058,153.058,USD_JPY,H1,5.8580070041395516,-0.845683948718829,-0.6959544971840901,-0.14972945153473893,154.9663,0.9432352555799378,0.43728571428571933,76.26761402507374,193723 -2024-05-02 19:00:00+00:00,4773,153.059,153.324,153.058,153.194,USD_JPY,H1,10.171646535283443,-0.8672094302913536,-0.7302054838055428,-0.1370039464858107,154.8396,1.0037813978836778,0.4357142857142914,78.81462618435398,198496 -2024-05-02 20:00:00+00:00,4050,153.19,153.828,153.188,153.672,USD_JPY,H1,23.735871505057048,-0.8360603411496754,-0.7513764552743694,-0.08468388587530606,154.7222,0.9957344604812471,0.4422857142857209,78.469757568897,202546 -2024-05-02 21:00:00+00:00,522,153.692,153.786,153.632,153.738,USD_JPY,H1,23.78121284185505,-0.7968630736894227,-0.7604737789573801,-0.036389294732042554,154.60494999999997,0.9646427467968203,0.43014285714286465,78.38345632547347,203068 -2024-05-02 22:00:00+00:00,3616,153.741,153.741,153.214,153.276,USD_JPY,H1,23.04147465437815,-0.7939266040417579,-0.7671643439742557,-0.026762260067502153,154.47740000000002,0.9632045965095481,0.4351428571428662,78.82857378154735,199452 -2024-05-02 23:00:00+00:00,6672,153.278,153.302,152.876,153.138,USD_JPY,H1,19.484240687679232,-0.7935869015651917,-0.772448855492443,-0.021138046072748717,154.33700000000002,0.9422945678670704,0.44485714285714956,79.35296296628663,192780 -2024-05-03 00:00:00+00:00,7715,153.136,153.45,152.936,153.148,USD_JPY,H1,20.733173076922995,-0.7834793067295323,-0.7746549457398608,-0.008824360989671431,154.20284999999998,0.9087939535451063,0.46250000000000363,71.50665994485406,200495 -2024-05-03 01:00:00+00:00,7878,153.148,153.237,152.753,152.846,USD_JPY,H1,21.06227106227111,-0.7907228799297741,-0.7778685325778436,-0.012854347351930473,154.06015,0.8850970969632097,0.4610714285714335,74.50116427042988,192617 -2024-05-03 02:00:00+00:00,5767,152.846,153.069,152.761,153.039,USD_JPY,H1,27.17759310557065,-0.7719909457711935,-0.7766930152165137,0.004702069445320145,153.9402,0.850419623975194,0.44992857142857395,76.28220193101704,198384 -2024-05-03 03:00:00+00:00,3948,153.04,153.144,152.938,153.009,USD_JPY,H1,27.934198038595028,-0.7509104737578127,-0.7715365069247735,0.020626033166960767,153.81555,0.790010624512123,0.4332142857142896,76.25487856605928,194436 -2024-05-03 04:00:00+00:00,3735,153.01,153.081,152.812,152.92,USD_JPY,H1,30.281207133058672,-0.7329367652145038,-0.7638165585827197,0.03087979336821589,153.70415,0.748212133935481,0.416714285714288,73.9580039693768,190701 -2024-05-03 05:00:00+00:00,3830,152.924,153.065,152.848,152.994,USD_JPY,H1,35.326688815061004,-0.7045991101994957,-0.751973068906075,0.04737395870657923,153.59044999999998,0.6663624329935324,0.38385714285714456,69.49695866120011,194531 -2024-05-03 06:00:00+00:00,7199,152.994,153.317,152.897,153.284,USD_JPY,H1,41.84563758389228,-0.651233721111339,-0.7318251993471278,0.08059147823578872,153.49984999999998,0.5666058943158173,0.3831428571428595,64.05404632818286,201730 -2024-05-03 07:00:00+00:00,7262,153.286,153.305,153.152,153.3,USD_JPY,H1,48.39080459770163,-0.6007254109014468,-0.7056052416579917,0.10487983075654483,153.42775,0.4862768190409094,0.3532142857142893,58.24331683995888,208992 -2024-05-03 08:00:00+00:00,7411,153.301,153.334,153.153,153.196,USD_JPY,H1,52.889447236181006,-0.562603795655491,-0.6770049524574915,0.11440115680200047,153.36145,0.4143002312075333,0.34035714285714597,51.74454811582286,201581 -2024-05-03 09:00:00+00:00,4876,153.199,153.2,152.954,153.054,USD_JPY,H1,47.07602339181316,-0.5376526293442225,-0.6491344878348377,0.1114818584906152,153.29395,0.33855256530310746,0.33892857142857175,45.86297072705315,196705 -2024-05-03 10:00:00+00:00,4950,153.055,153.129,153.04,153.1,USD_JPY,H1,35.42303771661554,-0.5083073836092069,-0.6209690669897117,0.11266168338050475,153.24545,0.28709588990371127,0.29957142857142777,45.53074874078844,201655 -2024-05-03 11:00:00+00:00,5725,153.1,153.238,153.094,153.204,USD_JPY,H1,36.65000000000021,-0.4712271211831194,-0.5910206778283932,0.1197935566452738,153.21620000000001,0.25702930408317637,0.29885714285714265,44.03417558207429,207380 -2024-05-03 12:00:00+00:00,15382,153.2,153.308,151.858,152.204,USD_JPY,H1,28.881008668242742,-0.5165776036563159,-0.5761320629939778,0.0595544593376619,153.1379,0.31207740267871964,0.3647857142857122,43.573926780852375,191998 -2024-05-03 13:00:00+00:00,15203,152.202,152.632,152.174,152.524,USD_JPY,H1,38.71323529411756,-0.5206946186577568,-0.5650445741267336,0.0443499554689768,153.0949,0.3348040903974749,0.36707142857142727,41.966321670706584,207201 -2024-05-03 14:00:00+00:00,15544,152.445,153.076,152.17,152.894,USD_JPY,H1,45.87662337662355,-0.4884706888878725,-0.5497297970789614,0.06125910819108893,153.0867,0.3377507801222542,0.395071428571429,39.34414016438366,222745 -2024-05-03 15:00:00+00:00,7051,152.892,152.964,152.738,152.856,USD_JPY,H1,50.17755681818166,-0.4606887417588723,-0.5319215860149435,0.07123284425607124,153.0698,0.3405439302359531,0.3766428571428569,36.946016884259514,215694 -2024-05-03 16:00:00+00:00,4186,152.858,152.906,152.752,152.876,USD_JPY,H1,46.91638289822212,-0.4320768032189619,-0.5119526294557473,0.07987582623678535,153.03,0.31175783449320554,0.3656428571428571,34.7973448708122,219880 -2024-05-03 17:00:00+00:00,4096,152.875,152.962,152.844,152.904,USD_JPY,H1,48.01211662249171,-0.40250247184758337,-0.4900625979341145,0.08756012608653113,152.9883,0.264226796520422,0.35935714285714127,33.08622800585203,223976 -2024-05-03 18:00:00+00:00,3882,152.903,152.984,152.899,152.936,USD_JPY,H1,50.309597523220184,-0.37219207009681554,-0.46648849236665474,0.0942964222698392,152.97129999999999,0.2555370196673778,0.3462142857142863,31.12573003206482,227858 -2024-05-03 19:00:00+00:00,2342,152.936,152.961,152.843,152.89,USD_JPY,H1,47.96557120500761,-0.34787261493485744,-0.4427653168802953,0.09489270194543786,152.9589,0.25302691764327523,0.3391428571428605,30.127143953606456,225516 -2024-05-03 20:00:00+00:00,1748,152.891,152.984,152.854,152.984,USD_JPY,H1,43.64406779661079,-0.3173559749654089,-0.41768344849731803,0.10032747353190913,152.9507,0.24920465062706357,0.31842857142857334,31.336309395364673,227264 -2024-05-05 21:00:00+00:00,308,153.013,153.016,152.815,152.829,USD_JPY,H1,40.57623049219711,-0.3021950066136583,-0.3945857601205861,0.09239075350692783,152.94985000000003,0.24960922616941256,0.3218571428571429,33.17168789823033,226956 -2024-05-05 22:00:00+00:00,2206,152.848,153.25,152.83,153.237,USD_JPY,H1,50.731359257937854,-0.2543259287697879,-0.3665337938504265,0.11220786508063862,152.95975,0.2571440053221339,0.33899999999999864,34.60164073307335,229162 -2024-05-05 23:00:00+00:00,4073,153.24,153.706,153.123,153.66,USD_JPY,H1,59.82490272373513,-0.18017977457569145,-0.3292629899954795,0.14908321541978803,152.9923,0.30114450107176466,0.36307142857142843,34.0949607539529,233235 -2024-05-06 00:00:00+00:00,5816,153.66,153.757,153.321,153.418,USD_JPY,H1,54.84756097560986,-0.13933957086720739,-0.2912783061698251,0.1519387353026177,153.0172,0.31511611894746866,0.38785714285714334,31.037050428064838,227419 -2024-05-06 01:00:00+00:00,4968,153.417,153.649,153.343,153.568,USD_JPY,H1,55.47203848466625,-0.09378853296604461,-0.251780351529069,0.1579918185630244,153.04590000000002,0.33818663486229245,0.39942857142857235,28.689637973195172,232387 -2024-05-06 02:00:00+00:00,4274,153.568,153.815,153.553,153.763,USD_JPY,H1,80.92026973423187,-0.04147602711225318,-0.20971948664570586,0.16824345953345268,153.06985,0.3712782011256185,0.31457142857143033,34.91696297650291,236661 -2024-05-06 03:00:00+00:00,4048,153.764,153.974,153.745,153.922,USD_JPY,H1,79.618644067796,0.012665976358505304,-0.16524239404486363,0.17790837040336893,153.10094999999998,0.41504273400717046,0.29821428571428654,38.17269670636828,240709 -2024-05-06 04:00:00+00:00,3881,153.93,154.01,153.85,153.934,USD_JPY,H1,75.97402597402528,0.055897848293056995,-0.12101434557727951,0.17691219387033652,153.13785000000001,0.45483684466267454,0.24492857142857158,42.628758873875086,244590 -2024-05-06 05:00:00+00:00,4830,153.936,153.979,153.874,153.928,USD_JPY,H1,77.20812182741086,0.08865332803330261,-0.0790808108551631,0.16773413888846572,153.18155,0.4871921133010336,0.2362857142857158,47.37807471272024,239760 -2024-05-06 06:00:00+00:00,5624,153.924,153.95,153.685,153.69,USD_JPY,H1,68.60146252285162,0.0943204038636054,-0.044400567911409394,0.1387209717750148,153.21105,0.49969637886642765,0.24421428571428652,50.18782377868728,234136 -2024-05-06 07:00:00+00:00,6375,153.69,153.826,153.66,153.804,USD_JPY,H1,69.78891820580462,0.10677956123649324,-0.014164542081828869,0.1209441033183221,153.24105,0.5169634492827765,0.24764285714285808,52.601717485886034,240511 -2024-05-06 08:00:00+00:00,5744,153.804,153.88,153.684,153.733,USD_JPY,H1,67.22870730652814,0.10966033056013202,0.01060043244656331,0.09905989811356872,153.3175,0.4660823848563073,0.2555714285714288,55.541217964334315,234767 -2024-05-06 09:00:00+00:00,3679,153.734,153.846,153.711,153.782,USD_JPY,H1,69.2573402417967,0.1145764850950286,0.03139564297625637,0.08318084211877223,153.3804,0.4373612742461576,0.2567857142857122,59.10320091082531,238446 -2024-05-06 10:00:00+00:00,4444,153.781,153.828,153.685,153.813,USD_JPY,H1,68.39769196626708,0.1195953926640243,0.04903559291380996,0.07055979975021434,153.42635,0.4318102988700576,0.25771428571428395,61.17018329667661,242890 -2024-05-06 11:00:00+00:00,3639,153.814,153.82,153.745,153.754,USD_JPY,H1,71.44181733889667,0.1174581220395794,0.06272009873896385,0.05473802330061554,153.47125,0.4157730751260191,0.24871428571428364,63.55763257296508,239251 -2024-05-06 12:00:00+00:00,6982,153.754,153.793,153.414,153.522,USD_JPY,H1,57.19333669863708,0.09593794565816438,0.06936366812280395,0.02657427753536043,153.50355,0.3914793097978035,0.24571428571428555,63.8060257447817,232269 -2024-05-06 13:00:00+00:00,7418,153.521,153.808,153.498,153.79,USD_JPY,H1,53.5596933187294,0.09936301606410325,0.07536353771106381,0.023999478353039436,153.54784999999998,0.36958074041269984,0.22621428571428584,63.46131933420223,239687 -2024-05-06 14:00:00+00:00,6065,153.79,153.965,153.676,153.926,USD_JPY,H1,64.76744186046483,0.11176313656943648,0.08264345748273835,0.02911967908669813,153.59734999999998,0.34904686384167943,0.21571428571428644,63.11661442669123,245752 -2024-05-06 15:00:00+00:00,4217,153.928,154.006,153.85,153.857,USD_JPY,H1,58.81635143380096,0.11470040321526653,0.089054846629244,0.025645556586022536,153.64569999999998,0.3107851009093136,0.20500000000000032,63.09624301511519,241535 -2024-05-06 16:00:00+00:00,4033,153.858,153.966,153.838,153.906,USD_JPY,H1,54.78901540522451,0.11960338530855097,0.09516455436510539,0.02443883094344558,153.6918,0.27362721471273893,0.19542857142857276,53.12838539733377,245568 -2024-05-06 17:00:00+00:00,4029,153.906,153.936,153.818,153.908,USD_JPY,H1,49.47604790419122,0.12224129566300235,0.10057990262468479,0.02166139303831756,153.74575,0.18731787646140471,0.18750000000000203,48.69382807362485,249597 -2024-05-06 18:00:00+00:00,3595,153.908,153.967,153.872,153.912,USD_JPY,H1,49.171686746988264,0.12323405966537848,0.10511073403282353,0.01812332563255495,153.77949999999998,0.14738117425994382,0.18285714285714505,44.50648943890455,253192 -2024-05-06 19:00:00+00:00,3036,153.913,153.964,153.886,153.938,USD_JPY,H1,50.370919881305305,0.1246815635456926,0.10902489993539735,0.015656663610295246,153.7934,0.1486218798085477,0.18092857142857252,40.15949759881608,256228 -2024-05-06 20:00:00+00:00,1211,153.936,153.95,153.882,153.899,USD_JPY,H1,59.09486510008762,0.12128366415225855,0.1114766527787696,0.009807011373488952,153.81744999999998,0.12103478186454322,0.16685714285714376,36.47177254717873,255017 -2024-05-06 21:00:00+00:00,146,153.888,153.928,153.865,153.902,USD_JPY,H1,54.72061657032716,0.11747865848329297,0.11267705391967428,0.004801604563618694,153.83415,0.10703775772549176,0.15950000000000028,33.01700988631924,255163 -2024-05-06 22:00:00+00:00,1028,153.896,153.964,153.864,153.959,USD_JPY,H1,61.035156250000554,0.11770574910181608,0.11368279295610265,0.0040229561457134355,153.84395,0.1091326932536745,0.15264285714285716,29.72856543593241,256191 -2024-05-06 23:00:00+00:00,4120,153.96,154.284,153.958,154.246,USD_JPY,H1,68.38351822504039,0.13943687993852905,0.11883361035258794,0.02060326958594111,153.86015,0.1407858676369265,0.1662857142857145,25.757707160438287,260311 -2024-05-07 00:00:00+00:00,7173,154.244,154.292,153.882,153.94,USD_JPY,H1,54.1314248536113,0.13046341401357608,0.12115957108478558,0.00930384292879051,153.86045,0.14095780443645387,0.18535714285714278,21.653925661361203,253138 -2024-05-07 01:00:00+00:00,7569,153.947,154.437,153.874,154.36,USD_JPY,H1,65.96417281348852,0.15545043171897532,0.1280177432116235,0.02743268850735181,153.88205,0.17964423174702604,0.22021428571428764,18.001078378948623,260707 -2024-05-07 02:00:00+00:00,3891,154.358,154.594,154.352,154.55,USD_JPY,H1,77.69396551724199,0.1884123352577376,0.14009666162084633,0.048315673636891265,153.92505,0.2277421152370296,0.21042857142857127,21.2468617619114,264598 -2024-05-07 03:00:00+00:00,2584,154.546,154.576,154.464,154.553,USD_JPY,H1,73.97862979258375,0.21232935557719657,0.1545432004121164,0.05778615516508018,153.9625,0.265278503106744,0.1962857142857136,26.35369650943175,267182 -2024-05-07 04:00:00+00:00,3007,154.56,154.652,154.426,154.48,USD_JPY,H1,68.12827225130907,0.22282469223117118,0.16819949877592735,0.05462519345524383,153.99985,0.28324404114148233,0.19178571428571242,30.943092046512714,264175 -2024-05-07 05:00:00+00:00,3658,154.478,154.552,154.385,154.544,USD_JPY,H1,72.55416940249509,0.23361363471241248,0.18128232596322438,0.052331308749188093,154.03795,0.30296125772825727,0.1925714285714264,34.802302435724904,267833 -2024-05-07 06:00:00+00:00,4977,154.546,154.578,154.324,154.35,USD_JPY,H1,63.30935251798499,0.22392846275653255,0.18981155332188604,0.034116909434646514,154.0648,0.3057586939850789,0.2015714285714247,38.13132982496007,262856 -2024-05-07 07:00:00+00:00,5145,154.348,154.442,154.08,154.116,USD_JPY,H1,55.47368421052692,0.19512180709017457,0.19087360407554377,0.0042482030146308025,154.0829,0.2969805770719672,0.21899999999999611,37.775305582460156,257711 -2024-05-07 08:00:00+00:00,4329,154.118,154.435,153.974,154.403,USD_JPY,H1,61.24599175446603,0.19322346653001432,0.19134357656643788,0.0018798899635764366,154.12695000000002,0.27384195883973855,0.24514285714285425,36.480938160541854,262040 -2024-05-07 09:00:00+00:00,3586,154.403,154.618,154.392,154.56,USD_JPY,H1,63.43993085566138,0.2020584023699996,0.19348654172715024,0.008571860642849372,154.16545000000002,0.2780714552245239,0.25571428571428256,35.81546941611479,265626 -2024-05-07 10:00:00+00:00,2723,154.562,154.632,154.476,154.476,USD_JPY,H1,62.22975837219137,0.19997684609228372,0.19478460260017696,0.005192243492106757,154.19295000000002,0.2803316597779496,0.2619999999999984,36.52267097549578,262903 -2024-05-07 11:00:00+00:00,3567,154.478,154.566,154.383,154.526,USD_JPY,H1,62.9675810473817,0.20005566272834585,0.19583881462581076,0.004216848102535087,154.2264,0.2780394519529615,0.2705714285714273,36.85887410957388,266470 -2024-05-07 12:00:00+00:00,4918,154.525,154.632,154.396,154.412,USD_JPY,H1,59.19610231425079,0.1887435599477385,0.19441976369019634,-0.005676203742457836,154.25169999999997,0.27026324399156715,0.28028571428571475,37.08055787510455,261552 -2024-05-07 13:00:00+00:00,5458,154.412,154.492,154.251,154.404,USD_JPY,H1,53.617216117215726,0.17709170096065918,0.1909541511442889,-0.013862450183629721,154.2765,0.259611754660922,0.27421428571428563,36.53607633710252,256094 -2024-05-07 14:00:00+00:00,4563,154.405,154.468,154.238,154.421,USD_JPY,H1,62.69129287598904,0.16730073792567168,0.18622346850056548,-0.018922730574893798,154.30195,0.24662276221457857,0.2613571428571423,36.0886303645065,260657 -2024-05-07 15:00:00+00:00,4223,154.424,154.594,154.364,154.592,USD_JPY,H1,57.04738760631814,0.17136422001587448,0.18325161880362728,-0.011887398787752801,154.33465,0.23906798746766914,0.23757142857142607,34.9538946369535,264880 -2024-05-07 16:00:00+00:00,2969,154.589,154.592,154.484,154.503,USD_JPY,H1,48.47896440129375,0.16549527612627912,0.17970035026815767,-0.014205074141878549,154.36485,0.2183944463827013,0.22799999999999848,31.20897634126782,261911 -2024-05-07 17:00:00+00:00,4402,154.502,154.674,154.458,154.65,USD_JPY,H1,52.87152161042044,0.17073761038798807,0.17790780229212375,-0.007170191904135675,154.40225,0.1980605635718739,0.23542857142857088,26.82254095922875,266313 -2024-05-07 18:00:00+00:00,3557,154.65,154.749,154.65,154.744,USD_JPY,H1,57.719298245613906,0.1803977000757584,0.17840578184885067,0.001991918226907724,154.44150000000002,0.18279165592009938,0.22635714285714162,22.60669614204512,269870 -2024-05-07 19:00:00+00:00,3422,154.743,154.746,154.632,154.638,USD_JPY,H1,52.682648401826214,0.17745449171059136,0.17821552382119882,-0.0007610321106074625,154.46110000000002,0.1817389394312715,0.22257142857142753,18.91457013044365,266448 -2024-05-07 20:00:00+00:00,1186,154.638,154.708,154.638,154.692,USD_JPY,H1,60.60794044665019,0.17743397812870398,0.17805921468269986,-0.0006252365539958782,154.4987,0.14161590008985075,0.20942857142857058,15.446467649424372,267634 -2024-05-07 21:00:00+00:00,1185,154.685,154.694,154.578,154.614,USD_JPY,H1,67.10164835164716,0.1691736443750358,0.17628210062116706,-0.007108456246131267,154.5114,0.13990161956984928,0.19185714285714134,14.479401266768775,266449 -2024-05-07 22:00:00+00:00,921,154.614,154.747,154.609,154.746,USD_JPY,H1,63.18216756341242,0.17130388266630803,0.17528645703019524,-0.003982574363887215,154.5212,0.14929716040716248,0.16878571428571224,15.67849862775592,267370 -2024-05-07 23:00:00+00:00,1972,154.747,154.846,154.736,154.777,USD_JPY,H1,59.23404255319029,0.17349362625444087,0.17492789087504437,-0.0014342646206035037,154.5324,0.15983820767252419,0.16049999999999898,15.575355914116377,269342 -2024-05-08 00:00:00+00:00,4903,154.786,154.93,154.69,154.895,USD_JPY,H1,67.32837055417619,0.18264520739893442,0.1764713541798224,0.006173853219112013,154.55315000000002,0.17852296771116177,0.1664999999999992,15.82232140513422,274245 -2024-05-08 01:00:00+00:00,6412,154.897,155.188,154.884,155.138,USD_JPY,H1,71.82596291012707,0.20711843812583197,0.18260077096902433,0.024517667156807643,154.58285,0.22122417185051602,0.17514285714285702,18.537627431934425,280657 -2024-05-08 02:00:00+00:00,5323,155.145,155.267,155.096,155.166,USD_JPY,H1,78.64741641337221,0.22616591589618906,0.1913137999544573,0.034852115941731765,154.62365,0.24946411512938893,0.17049999999999801,21.178794599908723,285980 -2024-05-08 03:00:00+00:00,3729,155.169,155.22,155.072,155.165,USD_JPY,H1,79.06799083269534,0.23843199203082577,0.20073743836973099,0.03769455366109478,154.6761,0.24738057193098992,0.16385714285714162,25.96931122506739,282251 -2024-05-08 04:00:00+00:00,3818,155.164,155.21,155.084,155.176,USD_JPY,H1,78.9716039907891,0.24620248481971885,0.20983044765972858,0.03637203715999027,154.71475,0.2623964206681476,0.15642857142857128,31.222260195162846,286069 -2024-05-08 05:00:00+00:00,3562,155.174,155.26,155.16,155.174,USD_JPY,H1,75.66137566137505,0.24932520726321172,0.21772939958042523,0.0315958076827865,154.74545,0.2787470981685223,0.1471428571428573,36.23677301380726,282507 -2024-05-08 06:00:00+00:00,4412,155.168,155.278,155.116,155.264,USD_JPY,H1,83.5242290748912,0.2561099589524076,0.22540551145482174,0.030704447497585885,154.78484999999998,0.2939336256986383,0.15099999999999827,39.57655170201843,286919 -2024-05-08 07:00:00+00:00,4449,155.262,155.364,155.203,155.328,USD_JPY,H1,82.22433460076142,0.2636124286923405,0.2330468949023255,0.030565533790014976,154.82495,0.3109739327382477,0.14707142857142635,43.62692100813213,291368 -2024-05-08 08:00:00+00:00,5953,155.331,155.454,155.21,155.432,USD_JPY,H1,82.39171374764678,0.27478259810465033,0.24139403554279049,0.03338856256185985,154.87595000000002,0.32308976673526013,0.15742857142856995,47.70616837542622,297321 -2024-05-08 09:00:00+00:00,5116,155.432,155.512,155.28,155.394,USD_JPY,H1,88.0281690140867,0.2773713906857438,0.24858950657138115,0.028781884114362638,154.92545,0.32281548828137935,0.165857142857141,52.256760542117846,292205 -2024-05-08 10:00:00+00:00,3781,155.393,155.432,155.336,155.384,USD_JPY,H1,86.42105263157936,0.2754409986545454,0.253959804988014,0.021481193666531395,154.97359999999998,0.3153458252052507,0.1677142857142826,57.854410193514695,288424 -2024-05-08 11:00:00+00:00,4309,155.383,155.52,155.356,155.49,USD_JPY,H1,94.78527607362078,0.27924549494173334,0.2590169429787579,0.02022855196297546,155.0185,0.3220123403988612,0.17114285714285618,63.97202197655377,292733 -2024-05-08 12:00:00+00:00,5827,155.492,155.685,155.49,155.611,USD_JPY,H1,94.72595656670217,0.28869636246085406,0.2649528268751771,0.023743535585676934,155.0739,0.3239622947532995,0.1752142857142839,68.8256721445899,298560 -2024-05-08 13:00:00+00:00,5875,155.61,155.655,155.502,155.64,USD_JPY,H1,94.71502590673688,0.2951242915717387,0.2709871198144895,0.02413717175724922,155.1234,0.3313332556756074,0.17828571428571088,74.34515266407041,304435 -2024-05-08 14:00:00+00:00,5226,155.64,155.647,155.506,155.592,USD_JPY,H1,88.93854748603694,0.29296811874897344,0.2753833196013863,0.01758479914758715,155.1658,0.3344704534205774,0.17121428571428104,79.50462843651395,299209 -2024-05-08 15:00:00+00:00,5699,155.588,155.622,155.348,155.428,USD_JPY,H1,67.76960784313795,0.2748575204547876,0.2752781597720666,-0.0004206393172789813,155.2053,0.3149361004541885,0.16907142857142382,79.67778541860547,293510 -2024-05-08 16:00:00+00:00,4092,155.428,155.565,155.424,155.55,USD_JPY,H1,71.09890109890263,0.26726821956387425,0.27367617173042813,-0.006407952166553876,155.2482,0.29938913245553966,0.1669285714285666,79.18324613255368,297602 -2024-05-08 17:00:00+00:00,3327,155.547,155.606,155.514,155.548,USD_JPY,H1,71.02085620197701,0.2581168502668163,0.27056430743770576,-0.012447457170889464,155.2949,0.2662701240250304,0.16292857142856576,77.90295816091087,294275 -2024-05-08 18:00:00+00:00,2521,155.548,155.628,155.548,155.614,USD_JPY,H1,72.67080745341748,0.2532704287347656,0.26710553169711776,-0.013835102962352186,155.33829999999998,0.24169992269868265,0.15964285714285,76.60242568147211,296796 -2024-05-08 19:00:00+00:00,1845,155.614,155.661,155.606,155.636,USD_JPY,H1,73.42799188640942,0.24834208789073386,0.263352842935841,-0.015010755045107127,155.38125,0.21109136834668402,0.15642857142856517,75.35871681581268,298641 -2024-05-08 20:00:00+00:00,1814,155.636,155.646,155.528,155.532,USD_JPY,H1,63.40000000000042,0.23335444662669147,0.2573531636740111,-0.02399871704731965,155.4131,0.17956523517996495,0.15328571428570928,74.16107387903944,296827 -2024-05-08 21:00:00+00:00,681,155.491,155.552,155.464,155.533,USD_JPY,H1,60.93916755602955,0.21903245479160205,0.24968902189752934,-0.03065656710592729,155.43284999999997,0.1691347251873447,0.14807142857142302,71.47329532548703,297508 -2024-05-08 22:00:00+00:00,1163,155.538,155.599,155.491,155.592,USD_JPY,H1,58.968609865472295,0.21002197737334427,0.24175561299269235,-0.03173363561934808,155.45415,0.1603566009702792,0.13835714285713557,68.41471928366019,298671 -2024-05-08 23:00:00+00:00,2400,155.59,155.602,155.348,155.376,USD_JPY,H1,49.158878504672884,0.1833383044402126,0.2300721512821964,-0.04673384684198381,155.46470000000002,0.14669054431195885,0.13992857142856355,63.392407912855006,296271 -2024-05-09 00:00:00+00:00,7720,155.377,155.7,155.155,155.628,USD_JPY,H1,59.29878048780499,0.18044553157881182,0.2201468273415195,-0.03970129576270767,155.48729999999998,0.1341539178902032,0.171999999999993,59.461733715501246,303991 -2024-05-09 01:00:00+00:00,4986,155.629,155.672,155.434,155.578,USD_JPY,H1,53.5031847133757,0.17213415077196714,0.21054429202760905,-0.038410141255641905,155.5075,0.11328980072567678,0.1772857142857061,55.86373598920154,299005 -2024-05-09 02:00:00+00:00,3230,155.586,155.62,155.538,155.6,USD_JPY,H1,49.52463267070025,0.1654157281936932,0.2015185792608259,-0.03610285106713268,155.5243,0.0993336218113436,0.16921428571427757,55.88868999237924,302235 -2024-05-09 03:00:00+00:00,3365,155.6,155.622,155.514,155.552,USD_JPY,H1,46.25850340136068,0.15443786744779686,0.1921024368982201,-0.037664569450423235,155.5355,0.08801943565909226,0.16599999999999276,55.7592122193965,298870 -2024-05-09 04:00:00+00:00,3074,155.554,155.606,155.54,155.574,USD_JPY,H1,49.2173913043478,0.14583198945661024,0.18284834740989814,-0.03701635795328789,155.5426,0.08490328864166832,0.1606428571428507,55.912547256452584,301944 -2024-05-09 05:00:00+00:00,2873,155.572,155.654,155.542,155.626,USD_JPY,H1,59.537572254335785,0.14157573758936337,0.1745938254457912,-0.03301808785642782,155.5542,0.07918838299349969,0.1490714285714217,57.801993093266724,304817 -2024-05-09 06:00:00+00:00,4065,155.628,155.825,155.622,155.758,USD_JPY,H1,59.92366412213758,0.14715758313394645,0.16910657698342224,-0.021948993849475795,155.5729,0.08101910106869423,0.15349999999999195,56.379717452240705,308882 -2024-05-09 07:00:00+00:00,4562,155.758,155.852,155.712,155.838,USD_JPY,H1,62.87744227353488,0.15623558083260036,0.16653237775325785,-0.010296796920657492,155.5903,0.09789043284843527,0.15692857142856553,54.50244039071426,313444 -2024-05-09 08:00:00+00:00,3646,155.83,155.878,155.8,155.848,USD_JPY,H1,60.934579439253106,0.16236523053004248,0.1656989483086148,-0.0033337177785723315,155.60215,0.11361072735256238,0.1567857142857077,52.43721271103978,317090 -2024-05-09 09:00:00+00:00,3006,155.849,155.953,155.844,155.912,USD_JPY,H1,62.41007194244689,0.17042275971712684,0.16664371059031724,0.003779049126809597,155.61575,0.13300489702543178,0.1606428571428507,49.946794592572296,320096 -2024-05-09 10:00:00+00:00,3387,155.912,155.946,155.882,155.919,USD_JPY,H1,69.06403940886727,0.17535190355641816,0.16838534918353742,0.00696655437288074,155.6321,0.14906123786134856,0.1567857142857077,47.52805391296189,323483 -2024-05-09 11:00:00+00:00,4938,155.92,155.95,155.824,155.88,USD_JPY,H1,66.47673314339981,0.17410434498540894,0.16952914834391172,0.00457519664149722,155.6547,0.15074345582770132,0.15949999999999218,46.54062719476805,318545 -2024-05-09 12:00:00+00:00,7571,155.883,155.918,155.519,155.705,USD_JPY,H1,54.83319076133453,0.15718270399688095,0.16705985947450558,-0.009877155477624633,155.66245,0.14905226035518201,0.18028571428570825,48.147387425230285,310974 -2024-05-09 13:00:00+00:00,6794,155.706,155.798,155.572,155.65,USD_JPY,H1,63.59126984127014,0.13774628779222553,0.16119714513804959,-0.023450857345824055,155.66754999999998,0.14665587181577563,0.17828571428570886,50.44728277658641,304180 -2024-05-09 14:00:00+00:00,6323,155.65,155.666,155.432,155.561,USD_JPY,H1,46.035502958581134,0.11384885301319514,0.15172748671307873,-0.03787863369988359,155.66490000000002,0.14814569642626182,0.15607142857142467,50.642430676951946,297857 -2024-05-09 15:00:00+00:00,3626,155.556,155.73,155.506,155.684,USD_JPY,H1,55.77342047930249,0.1036403345622432,0.14211005628291162,-0.038469721720668426,155.6673,0.14804163710589077,0.15507142857142395,48.49552525602525,301483 -2024-05-09 16:00:00+00:00,3182,155.684,155.71,155.598,155.63,USD_JPY,H1,51.57894736842109,0.09015342882929644,0.1317187307921886,-0.041565301962892154,155.6722,0.14491652770200625,0.15721428571428117,42.388811437564904,298301 -2024-05-09 17:00:00+00:00,2613,155.632,155.642,155.511,155.555,USD_JPY,H1,50.15353121801506,0.07257646930827377,0.11989027849540565,-0.04731380918713188,155.6733,0.14388412736111666,0.15885714285713806,36.70929157834542,295688 -2024-05-09 18:00:00+00:00,2237,155.556,155.572,155.428,155.448,USD_JPY,H1,44.067796610169175,0.04944265236946421,0.10580075327021737,-0.05635810090075316,155.6661,0.15156443827154845,0.16442857142856684,31.02565250825179,293451 -2024-05-09 19:00:00+00:00,2346,155.453,155.502,155.41,155.434,USD_JPY,H1,40.62499999999965,0.029637608871894372,0.09056812439055277,-0.0609305155186584,155.669,0.14618085410363024,0.1629999999999967,27.10281209670461,291105 -2024-05-09 20:00:00+00:00,1210,155.439,155.488,155.4,155.481,USD_JPY,H1,35.25026624068066,0.017532374121714156,0.07596097433678504,-0.05842860021507089,155.66165,0.15193325231526145,0.15478571428571236,29.15141405593812,292315 -2024-05-09 21:00:00+00:00,350,155.546,155.548,155.458,155.476,USD_JPY,H1,29.050925925926336,0.007449556307477678,0.06225869073092358,-0.0548091344234459,155.65655,0.15653130677661367,0.151214285714283,30.582484819364044,291965 -2024-05-09 22:00:00+00:00,1536,155.478,155.48,155.302,155.36,USD_JPY,H1,24.845360824741533,-0.009788543761288793,0.047849243832481105,-0.0576377875937699,155.64455,0.16973709547453716,0.15835714285714175,32.889647141016326,290429 -2024-05-09 23:00:00+00:00,1871,155.358,155.408,155.266,155.396,USD_JPY,H1,22.611464968150386,-0.020310832490253006,0.034217228567934285,-0.05452806105818729,155.63675,0.17761545541190688,0.16071428571428367,36.7321917362289,292300 -2024-05-10 00:00:00+00:00,5164,155.396,155.606,155.363,155.534,USD_JPY,H1,32.059645852747565,-0.017314781409083935,0.02391082657253064,-0.04122560798161458,155.63475,0.17858180346130856,0.17349999999999813,38.76854417538326,297464 -2024-05-10 01:00:00+00:00,5107,155.532,155.692,155.462,155.687,USD_JPY,H1,41.870261162595156,-0.0025650002895076796,0.018615661200122976,-0.021180661489630655,155.6378,0.17894503713981438,0.18092857142857252,39.8944485170843,302571 -2024-05-10 02:00:00+00:00,3606,155.687,155.774,155.664,155.759,USD_JPY,H1,52.49077490774798,0.014763916545348366,0.017845312269168054,-0.003081395723819689,155.63785000000001,0.1789805267300002,0.1602857142857163,36.40905802564737,306177 -2024-05-10 03:00:00+00:00,3048,155.758,155.758,155.689,155.73,USD_JPY,H1,53.78071833648341,0.025859063164716645,0.01944806244827777,0.0064110007164388735,155.63245,0.17418909114769435,0.14907142857143185,34.33891517302356,303129 -2024-05-10 04:00:00+00:00,2245,155.731,155.738,155.658,155.674,USD_JPY,H1,55.51219512195162,0.02978991520936347,0.02151643300049491,0.00827348220886856,155.62375,0.1670558920056391,0.13807142857143212,32.32020105785101,300884 -2024-05-10 05:00:00+00:00,3196,155.674,155.684,155.574,155.626,USD_JPY,H1,46.94736842105279,0.02870109655248143,0.022953365710892217,0.0057477308415892145,155.60945,0.15270765844752074,0.12992857142857467,32.02106712743145,297688 -2024-05-10 06:00:00+00:00,5949,155.63,155.713,155.5,155.674,USD_JPY,H1,52.33050847457703,0.031350015307879175,0.02463269563028961,0.006717319677589567,155.5972,0.1354169390053067,0.1371428571428603,32.34241669956544,303637 -2024-05-10 07:00:00+00:00,5342,155.675,155.783,155.654,155.691,USD_JPY,H1,57.67494356659171,0.03442423922953708,0.026591004350139103,0.007833234879397976,155.58775,0.12040583785935005,0.13700000000000248,31.096740610426625,308979 -2024-05-10 08:00:00+00:00,4756,155.69,155.736,155.622,155.718,USD_JPY,H1,66.74937965260585,0.038594366356477394,0.028991676751406764,0.00960268960507063,155.5884,0.12110517395649656,0.13485714285714323,29.720208581261122,313735 -2024-05-10 09:00:00+00:00,4153,155.717,155.748,155.668,155.715,USD_JPY,H1,67.67295597484531,0.04118242189630905,0.03142982578038722,0.00975259611592183,155.59165000000002,0.12368988173349696,0.13399999999999831,28.044124541424743,309582 -2024-05-10 10:00:00+00:00,3553,155.714,155.766,155.694,155.747,USD_JPY,H1,67.05128205128514,0.0452934919414929,0.03420255901260836,0.011090932928884543,155.60095,0.1281752398336436,0.1328571428571418,24.551239898912183,313135 -2024-05-10 11:00:00+00:00,3636,155.746,155.778,155.686,155.742,USD_JPY,H1,67.0512820512827,0.04759939021684545,0.03688192525345578,0.01071746496338967,155.60385,0.1307827749043327,0.1329999999999976,21.151847801648035,309499 -2024-05-10 12:00:00+00:00,4718,155.74,155.876,155.712,155.827,USD_JPY,H1,81.174899866489,0.05564418926206827,0.04063437805517828,0.01500981120688999,155.61370000000002,0.1399530372401316,0.13199999999999892,19.17561958337141,314217 -2024-05-10 13:00:00+00:00,5508,155.826,155.854,155.603,155.64,USD_JPY,H1,63.55555555555546,0.04639559376457214,0.041786621197057054,0.004608972567515086,155.61795,0.13936603641642856,0.13978571428571382,15.357553318817532,308709 -2024-05-10 14:00:00+00:00,7260,155.668,155.903,155.64,155.875,USD_JPY,H1,67.10130391173539,0.05736725719228275,0.0449027483961022,0.012464508796180551,155.6393,0.14457017964741092,0.141214285714286,12.773327700211436,315969 -2024-05-10 15:00:00+00:00,4273,155.874,155.898,155.827,155.855,USD_JPY,H1,59.72222222222089,0.06371409028017183,0.048665016772916125,0.015049073507255706,155.66035,0.14375171395275366,0.1298571428571417,10.477845404728853,311696 -2024-05-10 16:00:00+00:00,3068,155.854,155.898,155.772,155.83,USD_JPY,H1,54.34516523867966,0.06596629181308344,0.0521252717809496,0.013841020032133847,155.6778,0.14200652320506427,0.1309999999999982,12.1104403527014,308628 -2024-05-10 17:00:00+00:00,1853,155.829,155.844,155.752,155.842,USD_JPY,H1,57.00000000000135,0.06793634951762328,0.05528748732828434,0.012648862189338944,155.6961,0.1381630996557704,0.13264285714285304,13.195435215222929,310481 -2024-05-10 18:00:00+00:00,1999,155.843,155.887,155.837,155.85,USD_JPY,H1,61.7021276595735,0.06934381524604305,0.05809875291183608,0.011245062334206968,155.7206,0.11729602676981463,0.1304999999999958,13.745719591267775,312480 -2024-05-10 19:00:00+00:00,1223,155.848,155.848,155.766,155.778,USD_JPY,H1,59.79381443298871,0.06391269790796628,0.05926154191106212,0.0046511559969041535,155.7397,0.08945513430706878,0.12849999999999845,13.522668288255264,311257 -2024-05-10 20:00:00+00:00,1471,155.784,155.808,155.74,155.772,USD_JPY,H1,56.675749318799966,0.058450566684030036,0.05909934686565571,-0.0006487801816256744,155.7516,0.07537303720904534,0.11814285714285486,12.489452800796627,309786 -2024-05-12 21:00:00+00:00,76,155.705,155.722,155.69,155.705,USD_JPY,H1,50.89285714285778,0.04816028647513804,0.056911534787552176,-0.00875124831241414,155.7525,0.07466521772630763,0.11249999999999716,14.047758483395711,309710 -2024-05-12 22:00:00+00:00,1161,155.706,155.786,155.698,155.784,USD_JPY,H1,53.94736842105286,0.0458512602548069,0.05469947988100313,-0.008848219626196224,155.75375,0.07498833243429172,0.11064285714285559,14.20463994624542,310871 -2024-05-12 23:00:00+00:00,1609,155.785,155.838,155.762,155.834,USD_JPY,H1,56.738391845979535,0.04750827663195878,0.05326123923119426,-0.005752962599235481,155.75895,0.0768378162188403,0.11035714285714196,13.665998260062695,312480 -2024-05-13 00:00:00+00:00,3533,155.835,155.96,155.818,155.93,USD_JPY,H1,59.66209081309356,0.05592322363250446,0.05379363611145631,0.0021295875210481513,155.77175,0.08301608912688539,0.11535714285714148,13.88512785991543,316013 -2024-05-13 01:00:00+00:00,6005,155.932,155.954,155.502,155.84,USD_JPY,H1,54.7480620155046,0.054699341953380554,0.053974777279841166,0.0007245646735393879,155.78244999999998,0.07680013364321828,0.14107142857142815,14.980454962718673,310008 -2024-05-13 02:00:00+00:00,3181,155.844,155.896,155.696,155.746,USD_JPY,H1,46.10951008645575,0.04561853047309228,0.05230352791849139,-0.0066849974453991115,155.78605,0.07304466911085249,0.1436428571428548,15.301068465331493,306827 -2024-05-13 03:00:00+00:00,3028,155.747,155.818,155.718,155.764,USD_JPY,H1,57.110091743120975,0.039419962726725544,0.04972681488013822,-0.010306852153412677,155.78969999999998,0.06979677266887459,0.1328571428571418,15.726644869210586,309855 -2024-05-13 04:00:00+00:00,1957,155.764,155.81,155.756,155.808,USD_JPY,H1,45.08076358296517,0.03762427617073172,0.047306307138256926,-0.009682030967525207,155.7942,0.0678035863144378,0.11792857142857015,17.956472457889596,311812 -2024-05-13 05:00:00+00:00,1410,155.808,155.87,155.768,155.842,USD_JPY,H1,49.06474820144043,0.03850088327163803,0.04554522236493315,-0.007044339093295118,155.80055,0.06591659403925669,0.12014285714285629,20.022851085583632,313222 -2024-05-13 06:00:00+00:00,4250,155.836,155.927,155.776,155.846,USD_JPY,H1,51.18694362017747,0.039068015521422694,0.044249780996231065,-0.005181765474808371,155.8055,0.06539877675705559,0.12192857142856894,19.499410628454296,317472 -2024-05-13 07:00:00+00:00,5062,155.846,155.896,155.782,155.884,USD_JPY,H1,52.99999999999837,0.04209846938633177,0.04381951867425121,-0.0017210492879194406,155.8126,0.06584863025597354,0.1234999999999969,18.82194195890796,322534 -2024-05-13 08:00:00+00:00,3671,155.888,155.921,155.826,155.876,USD_JPY,H1,51.85714285714379,0.04335482532741253,0.04372658000488348,-0.0003717546774709493,155.81504999999999,0.06730799202769668,0.12671428571428173,19.156189339491302,318863 -2024-05-13 09:00:00+00:00,2791,155.876,155.894,155.836,155.892,USD_JPY,H1,58.85093167702007,0.04512143097551302,0.04400555019900939,0.0011158807765036319,155.82765,0.05533655402952917,0.12499999999999391,18.889159352570385,321654 -2024-05-13 10:00:00+00:00,2708,155.894,155.898,155.84,155.878,USD_JPY,H1,58.12883435582868,0.044874510261337264,0.044179342211474966,0.0006951680498622978,155.8278,0.055475551763294266,0.12428571428570885,18.81237626660216,318946 -2024-05-13 11:00:00+00:00,2655,155.878,155.896,155.846,155.878,USD_JPY,H1,64.78632478632375,0.044169663431006256,0.04417740645538123,-7.743024374971819e-06,155.82895,0.05630132747122103,0.12428571428570885,17.622837619436485,316291 -2024-05-13 12:00:00+00:00,3334,155.879,155.88,155.717,155.758,USD_JPY,H1,47.92332268370733,0.033541425447907613,0.04205021025388651,-0.008508784805978893,155.82535000000001,0.058490012654145204,0.1296428571428509,18.843524577795637,312957 -2024-05-13 13:00:00+00:00,3940,155.76,155.864,155.688,155.84,USD_JPY,H1,50.45592705167181,0.03137353044181168,0.039914874291471544,-0.008541343849659863,155.82525,0.05846175088999714,0.13678571428570965,21.494018737724115,316897 -2024-05-13 14:00:00+00:00,3556,155.838,155.936,155.837,155.919,USD_JPY,H1,49.1419656786274,0.03561949839496492,0.03905579911217022,-0.0034363007172052984,155.8287,0.0619321360443963,0.13371428571428265,24.010335684307417,320453 -2024-05-13 15:00:00+00:00,5753,155.92,156.227,155.872,156.177,USD_JPY,H1,70.82818294190517,0.05912138783523346,0.04306891685678287,0.01605247097845059,155.84865000000002,0.09831703552811631,0.12678571428571064,26.60209796271053,326206 -2024-05-13 16:00:00+00:00,3418,156.177,156.226,156.12,156.22,USD_JPY,H1,81.26649076517393,0.08029100049827775,0.05051333358508185,0.029777666913195902,155.87105,0.12683369758654617,0.12007142857142535,28.001351977162415,329624 -2024-05-13 17:00:00+00:00,2275,156.219,156.252,156.206,156.229,USD_JPY,H1,81.04138851802682,0.09667983092663235,0.05974663305339196,0.03693319787324039,155.89724999999999,0.14372410522401724,0.11621428571428234,29.82682276815006,331899 -2024-05-13 18:00:00+00:00,2800,156.228,156.242,156.171,156.201,USD_JPY,H1,76.80763983629016,0.10618469999812419,0.06903424644233841,0.03715045355578578,155.9181,0.1561409282510283,0.11742857142856776,30.39266287752118,329099 -2024-05-13 19:00:00+00:00,2498,156.2,156.234,156.187,156.218,USD_JPY,H1,76.2569832402236,0.11377757804561384,0.0779829127629935,0.03579466528262033,155.9373,0.16838461612864777,0.11349999999999584,31.414522065054552,331597 -2024-05-13 20:00:00+00:00,1390,156.217,156.247,156.202,156.222,USD_JPY,H1,76.25698324022454,0.11874889186577775,0.08613610858355035,0.0326127832822274,155.9519,0.1799783320331514,0.10592857142856969,33.15996337718175,332987 -2024-05-13 21:00:00+00:00,1025,156.209,156.237,156.161,156.208,USD_JPY,H1,73.4104046242781,0.12017372301414753,0.09294363146966979,0.02723009154447774,155.9703,0.18662461619483817,0.10321428571428523,34.374666139415716,331962 -2024-05-13 22:00:00+00:00,932,156.206,156.246,156.18,156.23,USD_JPY,H1,75.07082152974337,0.1216755283524833,0.0986900108462325,0.022985517506250802,155.9945,0.18738743990205786,0.10114285714285691,35.268062369268996,332894 -2024-05-13 23:00:00+00:00,1879,156.231,156.246,156.186,156.23,USD_JPY,H1,74.49275362318704,0.12146554075880545,0.1032451168287471,0.01822042393005835,156.01780000000002,0.1861859851173507,0.10128571428571474,36.743615517338995,331015 -2024-05-14 00:00:00+00:00,4818,156.23,156.4,156.226,156.295,USD_JPY,H1,78.13765182186194,0.1251019830628195,0.10761649007556158,0.01748549298725792,156.04215,0.18912604402308403,0.10957142857143001,39.53369762017699,335833 -2024-05-14 01:00:00+00:00,3814,156.294,156.459,156.294,156.426,USD_JPY,H1,81.42201834862345,0.1369755263715149,0.11348829733475224,0.023487229036762647,156.07135,0.20128959891933773,0.11778571428571638,42.282198955251324,339647 -2024-05-14 02:00:00+00:00,2882,156.428,156.499,156.422,156.446,USD_JPY,H1,94.55958549222443,0.14631262695385772,0.12005316325857335,0.02625946369528437,156.10135,0.21043970883410876,0.11164285714286036,45.77133720299441,342529 -2024-05-14 03:00:00+00:00,2261,156.446,156.454,156.378,156.414,USD_JPY,H1,89.75069252077091,0.14940793223112792,0.12592411705308426,0.023483815178043654,156.12785000000002,0.2149512245811626,0.10450000000000362,48.05171861910251,340268 -2024-05-14 04:00:00+00:00,1978,156.418,156.436,156.377,156.412,USD_JPY,H1,88.21705426356321,0.14997083030044678,0.1307334597025568,0.01923737059788999,156.15465,0.2153118362833302,0.1016428571428593,49.25311427975529,338290 -2024-05-14 05:00:00+00:00,2169,156.413,156.448,156.397,156.422,USD_JPY,H1,80.85642317380035,0.14950049881286986,0.1344868675246194,0.01501363128825045,156.18115,0.21389502467463314,0.07992857142857547,48.24165515065023,340459 -2024-05-14 06:00:00+00:00,3881,156.421,156.545,156.408,156.452,USD_JPY,H1,80.20833333332986,0.14982145848713913,0.13755378571712334,0.01226767277001578,156.20985,0.20954292991012646,0.08214285714286161,47.71047236065515,344340 -2024-05-14 07:00:00+00:00,2752,156.453,156.508,156.426,156.464,USD_JPY,H1,80.36175710593898,0.14932282052836854,0.1399075926793724,0.00941522784899615,156.23915000000002,0.20151460049381806,0.08471428571429028,47.68449947455756,347092 -2024-05-14 08:00:00+00:00,3640,156.462,156.492,156.412,156.456,USD_JPY,H1,84.74114441416656,0.1465922885603561,0.14124453185556915,0.00534775670478696,156.27405,0.17209436671289813,0.08535714285714643,48.6931864657166,343452 -2024-05-14 09:00:00+00:00,3282,156.456,156.471,156.288,156.354,USD_JPY,H1,65.04424778761334,0.1346456633596631,0.13992475815638794,-0.005279094796724837,156.29975,0.13907509331525678,0.09507142857143183,47.6500222209874,340170 -2024-05-14 10:00:00+00:00,2606,156.353,156.436,156.348,156.429,USD_JPY,H1,69.78967495219948,0.12973425428950236,0.13788665738301084,-0.008152403093508481,156.32525,0.10911745242063967,0.09814285714285884,46.455859525591855,342776 -2024-05-14 11:00:00+00:00,1835,156.43,156.464,156.408,156.452,USD_JPY,H1,72.93233082706963,0.12624258901470853,0.1355578437093504,-0.009315254694641867,156.339,0.10675402125615245,0.09671428571428871,46.96895701411487,344611 -2024-05-14 12:00:00+00:00,7426,156.452,156.784,156.408,156.582,USD_JPY,H1,77.5000000000021,0.1324386622151792,0.13493400741051617,-0.0024953451953369787,156.3571,0.11581923302535875,0.118857142857146,49.25837596640916,352037 -2024-05-14 13:00:00+00:00,8167,156.584,156.658,156.231,156.352,USD_JPY,H1,57.01149425287479,0.11743628466894052,0.13143446286220106,-0.013998178193260546,156.36325000000002,0.1118569928249912,0.14507142857143102,49.69391845260785,343870 -2024-05-14 14:00:00+00:00,5803,156.354,156.522,156.279,156.392,USD_JPY,H1,55.73964497041509,0.10753486311938332,0.1266545429136375,-0.01911967979425419,156.3728,0.10523287459956938,0.15000000000000163,48.78274871549081,349673 -2024-05-14 15:00:00+00:00,4577,156.394,156.514,156.377,156.506,USD_JPY,H1,54.8309178743972,0.10764588768176964,0.12285281186726395,-0.015206924185494311,156.38719999999998,0.10260737637213639,0.1480000000000022,47.10518080429195,354250 -2024-05-14 16:00:00+00:00,3458,156.506,156.545,156.452,156.486,USD_JPY,H1,52.41545893719774,0.10491069737958014,0.11926438896972719,-0.014353691590147044,156.4004,0.09706828850532004,0.14914285714285874,43.395509128485855,350792 -2024-05-14 17:00:00+00:00,1985,156.48,156.52,156.425,156.506,USD_JPY,H1,55.63725490196195,0.10316762010714342,0.11604503519721043,-0.012877415090067013,156.4153,0.08847128586630656,0.15049999999999994,40.12668341394542,352777 -2024-05-14 18:00:00+00:00,1849,156.507,156.51,156.383,156.438,USD_JPY,H1,51.47392290249336,0.0952017604765274,0.11187638025307384,-0.01667461977654644,156.4257,0.07702774620877952,0.15535714285714164,36.62809934729103,350928 -2024-05-14 19:00:00+00:00,2062,156.437,156.476,156.41,156.463,USD_JPY,H1,52.285395763656474,0.08987008400836771,0.10747512100413262,-0.017605036995764906,156.43734999999998,0.062031634558615316,0.15642857142856922,34.95341621436869,352990 -2024-05-14 20:00:00+00:00,1140,156.462,156.466,156.43,156.431,USD_JPY,H1,48.83203559510638,0.08211597755601474,0.10240329231450904,-0.020287314758494296,156.44414999999998,0.05229599463094655,0.14921428571428358,31.52085335126683,351850 -2024-05-14 21:00:00+00:00,301,156.425,156.448,156.402,156.426,USD_JPY,H1,47.86995515695005,0.07470616791323437,0.09686386743425411,-0.022157699521019744,156.44414999999998,0.05229599463094655,0.1466428571428549,27.5683810824487,351549 -2024-05-14 22:00:00+00:00,997,156.423,156.484,156.397,156.438,USD_JPY,H1,48.99553571428566,0.0690066741142914,0.09129242877026157,-0.022285754655970172,156.44375,0.05231169238041167,0.1471428571428573,23.38990186237215,352546 -2024-05-14 23:00:00+00:00,1337,156.438,156.526,156.428,156.522,USD_JPY,H1,59.567198177675124,0.07045571260101724,0.08712508553641271,-0.01666937293539547,156.44914999999997,0.05460313757827012,0.1410714285714302,23.663272699870767,353883 -2024-05-15 00:00:00+00:00,4368,156.519,156.562,156.386,156.392,USD_JPY,H1,48.017148981778924,0.06041771469060109,0.08178361136725039,-0.0213658966766493,156.44815,0.055495163390213396,0.14735714285714607,24.029873214614685,349515 -2024-05-15 01:00:00+00:00,3739,156.387,156.45,156.308,156.39,USD_JPY,H1,46.60087719298194,0.05170512128850646,0.07576791335150161,-0.02406279206299515,156.44655,0.05673620863462366,0.1535000000000021,22.243058377329195,345776 -2024-05-15 02:00:00+00:00,2318,156.39,156.48,156.39,156.46,USD_JPY,H1,42.84037558685581,0.04987382877931168,0.07058909643706363,-0.020715267657751946,156.44695000000002,0.05680481356290232,0.13307142857143056,21.120609397736946,348094 -2024-05-15 03:00:00+00:00,2258,156.462,156.464,156.388,156.396,USD_JPY,H1,53.206997084546416,0.04276527961934562,0.06502433307352003,-0.022259053454174407,156.44355,0.05775763792478227,0.10800000000000207,19.401743858533788,345836 -2024-05-15 04:00:00+00:00,1699,156.398,156.398,156.344,156.36,USD_JPY,H1,47.653958944283076,0.0338367550112082,0.05878681746105767,-0.024950062449849472,156.43875,0.06058823493328199,0.09450000000000257,19.713181316952497,344137 -2024-05-15 05:00:00+00:00,3464,156.358,156.366,156.174,156.238,USD_JPY,H1,30.579710144929834,0.01672367442063205,0.050374188852972554,-0.0336505144323405,156.43294999999998,0.07333877772085784,0.09842857142857449,21.88356178859725,340673 -2024-05-15 06:00:00+00:00,3794,156.238,156.39,156.23,156.257,USD_JPY,H1,33.38171262699862,0.0046410765286282185,0.04122756638810369,-0.03658648985947547,156.42434999999998,0.08324236966266914,0.10321428571428928,24.266051874064402,344467 -2024-05-15 07:00:00+00:00,5418,156.258,156.286,155.96,156.098,USD_JPY,H1,25.362318840582276,-0.01756199676600545,0.029469653757281864,-0.04703165052328731,156.40664999999998,0.11029399707714468,0.1197142857142889,27.486344054443318,339049 -2024-05-15 08:00:00+00:00,6774,156.099,156.125,155.574,155.65,USD_JPY,H1,17.38410596026712,-0.07049532203367903,0.009476658599089686,-0.07997198063276872,156.36005,0.19594184825218505,0.15000000000000366,31.877184687401098,332275 -2024-05-15 09:00:00+00:00,4811,155.649,155.847,155.601,155.83,USD_JPY,H1,26.779163609686165,-0.09680496066752653,-0.01177966525423356,-0.08502529541329297,156.33395,0.22904090074100972,0.162857142857147,36.05599413452565,337086 -2024-05-15 10:00:00+00:00,3861,155.826,155.884,155.704,155.741,USD_JPY,H1,25.70422535211401,-0.12341445007390917,-0.03410662221816868,-0.08930782785574048,156.3014,0.26395422250960804,0.17314285714285965,40.71596634234628,333225 -2024-05-15 11:00:00+00:00,5174,155.742,155.758,155.574,155.677,USD_JPY,H1,24.67883705206357,-0.14796132126042494,-0.056877562026619935,-0.091083759233805,156.25995,0.2935640296006315,0.18300000000000086,45.83027837680023,328051 -2024-05-15 12:00:00+00:00,14752,155.678,155.69,154.753,155.122,USD_JPY,H1,17.457962413453444,-0.20978053576536126,-0.0874581567743682,-0.12232237899099306,156.19174999999998,0.383077822932468,0.24371428571428616,51.639180300524494,313299 -2024-05-15 13:00:00+00:00,12421,155.122,155.806,155.03,155.742,USD_JPY,H1,34.75371383893676,-0.20636504244856724,-0.11123953390920802,-0.09512550853935922,156.15355,0.38815087612058835,0.29214285714285737,54.960795314971115,325720 -2024-05-15 14:00:00+00:00,7800,155.744,155.768,155.296,155.316,USD_JPY,H1,31.14926419060987,-0.23532025375365606,-0.13605567787809764,-0.09926457587555843,156.09744999999998,0.4242761606876805,0.313285714285714,58.84208498208666,317920 -2024-05-15 15:00:00+00:00,8243,155.316,155.355,154.742,155.026,USD_JPY,H1,28.29408020369226,-0.2784581514570448,-0.1645361725938871,-0.11392197886315769,156.0256,0.47745624214100246,0.34692857142857136,64.12631621415584,309677 -2024-05-15 16:00:00+00:00,6234,155.024,155.134,154.834,154.982,USD_JPY,H1,26.283697047496545,-0.3125923089003493,-0.19414739985517954,-0.11844490904516974,155.95315,0.5206825757967188,0.36192857142856993,67.22647116975543,303443 -2024-05-15 17:00:00+00:00,4683,154.982,155.007,154.692,154.75,USD_JPY,H1,24.939098660170444,-0.3542804116391096,-0.22617400221196557,-0.12810640942714405,155.86935,0.5728337018728985,0.3789999999999988,72.96668049226781,298760 -2024-05-15 18:00:00+00:00,3294,154.748,155.028,154.734,154.909,USD_JPY,H1,28.70560610507735,-0.3702208863018086,-0.2549833790299342,-0.11523750727187443,155.7929,0.5945652015958625,0.3961428571428546,76.89942304036133,302054 -2024-05-15 19:00:00+00:00,2599,154.91,155.024,154.866,154.972,USD_JPY,H1,31.09318996415776,-0.37346517971215576,-0.2786797391663785,-0.09478544054577726,155.7154,0.5955454289103789,0.3937142857142817,79.39163487836764,304653 -2024-05-15 20:00:00+00:00,2062,154.974,154.974,154.822,154.906,USD_JPY,H1,30.103092783505062,-0.37701594885459144,-0.29834698110402114,-0.0786689677505703,155.6411,0.5993744019271057,0.3931428571428524,81.89346920223566,302591 -2024-05-15 21:00:00+00:00,611,154.852,154.863,154.77,154.815,USD_JPY,H1,30.71836489329702,-0.3827606717000549,-0.3152297192232279,-0.067530952476827,155.56234999999998,0.59926720821627,0.376499999999995,83.27363216236128,301980 -2024-05-15 22:00:00+00:00,2850,154.828,154.828,154.505,154.56,USD_JPY,H1,32.61008296107198,-0.4032414582974866,-0.33283206703807966,-0.07040939125940693,155.46734999999998,0.6000759842247155,0.3602142857142821,83.90367272619123,299130 -2024-05-15 23:00:00+00:00,5422,154.554,154.681,154.156,154.3,USD_JPY,H1,26.197884256378103,-0.43543305510976893,-0.35335226465241754,-0.0820807904573514,155.36255,0.6122601334838967,0.3801428571428533,84.68007564495818,293708 -2024-05-16 00:00:00+00:00,10477,154.302,154.536,153.602,153.668,USD_JPY,H1,22.41149853606575,-0.5061081460013099,-0.383903440922196,-0.1222047050791139,155.22795000000002,0.6742105305278787,0.4339999999999975,86.29204225975357,283231 -2024-05-16 01:00:00+00:00,10150,153.666,154.128,153.63,154.097,USD_JPY,H1,30.834546336729744,-0.5214905317881176,-0.4114208590953804,-0.11006967269273715,155.1209,0.6753669489917378,0.4564285714285684,87.70964632991277,293381 -2024-05-16 02:00:00+00:00,7717,154.094,154.314,153.83,154.008,USD_JPY,H1,34.764770240700074,-0.534699061600719,-0.4360764995964482,-0.09862256200427083,155.00845,0.6633730771402707,0.4240714285714233,86.74428968727715,285664 -2024-05-16 03:00:00+00:00,5104,154.008,154.086,153.896,153.974,USD_JPY,H1,21.205211726384547,-0.5416664389570087,-0.4571944874685603,-0.08447195148844844,154.90225,0.6496400521590611,0.38221428571428157,86.92154858344179,280560 -2024-05-16 04:00:00+00:00,4672,153.974,154.051,153.804,153.938,USD_JPY,H1,24.291044776119463,-0.5438241683505964,-0.47452042364496755,-0.06930374470562889,154.81665,0.6586554306437825,0.3661428571428514,86.70164082046563,275888 -2024-05-16 05:00:00+00:00,4918,153.94,154.196,153.851,154.18,USD_JPY,H1,33.92857142857174,-0.5200124273529809,-0.4836188243865703,-0.03639360296641064,154.73415,0.6276536318541092,0.3469999999999942,84.66523454772506,280806 -2024-05-16 06:00:00+00:00,7070,154.178,154.384,154.112,154.365,USD_JPY,H1,38.87486476740031,-0.48067260261291267,-0.48302958003183877,0.0023569774189260984,154.66535000000002,0.5854772479741633,0.3449999999999948,81.54667016649967,287876 -2024-05-16 07:00:00+00:00,7257,154.363,154.453,154.278,154.416,USD_JPY,H1,43.55709876543214,-0.4403046760773748,-0.474484599240946,0.03417992316357121,154.6023,0.5366623068369647,0.3349999999999958,77.70009651070268,295133 -2024-05-16 08:00:00+00:00,7036,154.418,154.814,154.336,154.714,USD_JPY,H1,46.42987916514116,-0.3798875863292892,-0.45556519665861467,0.07567761032932546,154.58190000000002,0.523459534454324,0.34814285714285276,72.49238996704261,302169 -2024-05-16 09:00:00+00:00,4462,154.714,154.788,154.636,154.675,USD_JPY,H1,44.51422238640571,-0.3313341674516721,-0.43071899081722614,0.09938482336555404,154.52855,0.4479249790340849,0.3477142857142833,67.41011907241442,297707 -2024-05-16 10:00:00+00:00,4441,154.677,154.74,154.612,154.674,USD_JPY,H1,45.60938682816054,-0.2895976236877402,-0.402494717391329,0.1128970937035888,154.49645,0.4099145578500509,0.3459999999999996,62.11875134122969,293266 -2024-05-16 11:00:00+00:00,5008,154.674,154.946,154.654,154.878,USD_JPY,H1,51.14337568058055,-0.23732429026941304,-0.36946063196694584,0.1321363416975328,154.48905,0.4010926490955043,0.36021428571428615,56.04413520758334,298274 -2024-05-16 12:00:00+00:00,9343,154.875,155.34,154.614,155.312,USD_JPY,H1,62.8152692569871,-0.15904376647702634,-0.32737725886896196,0.16833349239193562,154.50555,0.42830344322016567,0.38899999999999985,51.57920268996126,307617 -2024-05-16 13:00:00+00:00,9922,155.314,155.539,155.263,155.464,USD_JPY,H1,70.59447983014823,-0.08377505106733452,-0.2786568173086365,0.194881766241302,154.54125,0.4767661762779447,0.3712142857142839,48.7851468975424,317539 -2024-05-16 14:00:00+00:00,6962,155.464,155.491,155.23,155.302,USD_JPY,H1,84.67741935483808,-0.036772210776916836,-0.23027989600229257,0.19350768522537573,154.5609,0.5002416153068522,0.32314285714285723,48.808721102324455,310577 -2024-05-16 15:00:00+00:00,5060,155.303,155.327,155.16,155.258,USD_JPY,H1,79.45205479452054,-0.0030375386317018638,-0.18483142452817444,0.18179388589647258,154.5752,0.5164375541815555,0.2995000000000009,48.13543891281571,305517 -2024-05-16 16:00:00+00:00,4174,155.258,155.36,155.241,155.267,USD_JPY,H1,83.28926493918541,0.02414532460039709,-0.14303607470246013,0.16718139930285722,154.59325,0.5345972291071448,0.2734285714285737,48.75878895314566,309691 -2024-05-16 17:00:00+00:00,4199,155.266,155.302,155.213,155.252,USD_JPY,H1,84.1346153846167,0.04397069807740195,-0.10563472014648771,0.14960541822388967,154.6151,0.5527595746516293,0.266214285714286,48.03139172666162,305492 -2024-05-16 18:00:00+00:00,3490,155.251,155.335,155.238,155.329,USD_JPY,H1,86.35650810245826,0.0651447576610451,-0.07147882458498116,0.13662358224602628,154.65355000000002,0.5750226059635164,0.2555000000000019,48.172769970406144,308982 -2024-05-16 19:00:00+00:00,2462,155.33,155.426,155.316,155.42,USD_JPY,H1,85.18728717366743,0.08825098944126353,-0.03953286177973222,0.12778385122099575,154.70954999999998,0.593033989884713,0.23871428571428663,49.8673799681522,311444 -2024-05-16 20:00:00+00:00,1262,155.417,155.432,155.394,155.398,USD_JPY,H1,82.3014383990009,0.10359346745207176,-0.010907595933371424,0.11450106338544319,154.79604999999998,0.5582674773946033,0.22200000000000028,52.35855167423242,310182 -2024-05-16 21:00:00+00:00,792,155.39,155.391,155.356,155.368,USD_JPY,H1,80.16476552598377,0.11204021270324915,0.013681965793952694,0.09835824690929645,154.8596,0.5467257948346936,0.21199999999999924,55.137395610982885,309390 -2024-05-16 22:00:00+00:00,1114,155.36,155.434,155.32,155.384,USD_JPY,H1,75.84876543210014,0.11865757479233707,0.03467708759362957,0.0839804871987075,154.92839999999998,0.5198368569999318,0.18600000000000097,58.90178541100049,310504 -2024-05-16 23:00:00+00:00,2315,155.384,155.46,155.348,155.402,USD_JPY,H1,78.50980392156944,0.12392579210097665,0.05252682849509899,0.07139896360587766,154.9998,0.4782553381008181,0.18314285714285664,62.68386956426479,312819 -2024-05-17 00:00:00+00:00,5648,155.402,155.596,155.351,155.45,USD_JPY,H1,79.34947049924472,0.13047011287437726,0.06811548537095465,0.06235462750342262,155.0754,0.41718283256912375,0.1914999999999988,66.9671686869034,318467 -2024-05-17 01:00:00+00:00,7743,155.45,155.867,155.423,155.822,USD_JPY,H1,81.67785234899486,0.16378580450168556,0.08724954919710083,0.07653625530458473,155.1575,0.39253903594142175,0.2023571428571407,72.19887806469914,326210 -2024-05-17 02:00:00+00:00,3999,155.821,155.93,155.78,155.877,USD_JPY,H1,75.42754275427686,0.19240880159429707,0.10828139967654009,0.08412740191775699,155.23309999999998,0.37717563966794687,0.16121428571428403,75.34052880599212,330209 -2024-05-17 03:00:00+00:00,3322,155.878,155.902,155.778,155.793,USD_JPY,H1,65.77181208053804,0.20594067907035196,0.12781325555530249,0.07812742351504948,155.30194999999998,0.34442911959084843,0.15035714285714213,76.12304956105687,326887 -2024-05-17 04:00:00+00:00,3641,155.794,155.855,155.734,155.809,USD_JPY,H1,78.26086956521974,0.21547202832857693,0.14534501010995737,0.07012701821861955,155.3567,0.332886909832681,0.14035714285713904,73.62403082018984,330528 -2024-05-17 05:00:00+00:00,3437,155.802,155.854,155.716,155.8,USD_JPY,H1,81.43851508120885,0.21976613924792332,0.16022923593755056,0.05953690331037276,155.41295,0.3055606538136734,0.13828571428571074,72.55760224876113,327091 -2024-05-17 06:00:00+00:00,4798,155.802,155.805,155.596,155.648,USD_JPY,H1,68.95522388059764,0.20850065761212022,0.1698835202724645,0.038617137339655716,155.46165000000002,0.25502802219842174,0.1447142857142824,69.94067873103256,322293 -2024-05-17 07:00:00+00:00,3809,155.648,155.84,155.626,155.825,USD_JPY,H1,74.55012853470404,0.21141800781069264,0.17819041778011013,0.03322759003058251,155.509,0.22737425675036638,0.15364285714285383,68.45885580424242,326102 -2024-05-17 08:00:00+00:00,4481,155.824,155.98,155.818,155.868,USD_JPY,H1,73.78640776699012,0.21472455844707383,0.1854972459135029,0.029227312533570943,155.5368,0.2358520053386674,0.15828571428570878,66.6490060828719,330583 -2024-05-17 09:00:00+00:00,3519,155.868,155.912,155.778,155.836,USD_JPY,H1,69.36685288640743,0.2123154507297329,0.1908608868767489,0.021454563852984,155.55540000000002,0.24432493463713334,0.1599999999999966,64.1377690883401,327064 -2024-05-17 10:00:00+00:00,3276,155.84,155.911,155.806,155.842,USD_JPY,H1,70.98298676748676,0.20848705635597753,0.19438612077259462,0.014100935583382906,155.5824,0.2446852758376987,0.1647857142857114,61.75475039762899,330340 -2024-05-17 11:00:00+00:00,2526,155.844,155.92,155.828,155.858,USD_JPY,H1,73.4674329501924,0.20438803448072917,0.19638650351422154,0.00800153096650763,155.6124,0.2395463695386698,0.1688571428571391,60.22251799759582,332866 -2024-05-17 12:00:00+00:00,4320,155.859,155.891,155.714,155.792,USD_JPY,H1,68.64716636197521,0.19358238447043163,0.19582567970546358,-0.0022432952350319446,155.63865,0.22820126735478524,0.17335714285713827,57.8271711226513,328546 -2024-05-17 13:00:00+00:00,5481,155.79,155.801,155.682,155.745,USD_JPY,H1,65.27159394479165,0.17916106455390945,0.19249275667515278,-0.013331692121243327,155.6633,0.21015034718587777,0.17385714285713863,54.912862681777305,323065 -2024-05-17 14:00:00+00:00,5992,155.734,155.75,155.344,155.404,USD_JPY,H1,48.37570621468954,0.13861830889788962,0.18171786711970017,-0.04309955822181055,155.66705,0.20446321893199235,0.18535714285713872,50.69080824837078,317073 -2024-05-17 15:00:00+00:00,6723,155.405,155.581,155.25,155.58,USD_JPY,H1,40.08196721311514,0.11931423185799872,0.16923714006735988,-0.049922908209361155,155.67505,0.1972925892951209,0.1772857142857102,49.06074108182811,323796 -2024-05-17 16:00:00+00:00,4680,155.574,155.635,155.469,155.626,USD_JPY,H1,39.63666391412023,0.10649976429843377,0.15668966491357467,-0.05018990061514089,155.68645,0.18674679593176427,0.1784285714285667,48.05845506942358,328476 -2024-05-17 17:00:00+00:00,4204,155.626,155.688,155.585,155.662,USD_JPY,H1,44.36801375752355,0.09811806163159531,0.1449753442571788,-0.0468572826255835,155.70115,0.1712920789677823,0.1769285714285656,47.055901394970725,332680 -2024-05-17 18:00:00+00:00,3360,155.666,155.687,155.61,155.677,USD_JPY,H1,44.32013769363135,0.09162962721589452,0.13430620084892197,-0.04267657363302746,155.7158,0.15444045011881885,0.1737857142857097,46.046291809510116,336040 -2024-05-17 19:00:00+00:00,2319,155.676,155.696,155.621,155.675,USD_JPY,H1,44.58874458874446,0.0853423395430184,0.12451342858774127,-0.03917108904472287,155.72944999999999,0.13623759239020744,0.16928571428570852,44.16922341458521,333721 -2024-05-17 20:00:00+00:00,1847,155.676,155.724,155.616,155.642,USD_JPY,H1,49.71042471042469,0.07681136100109143,0.1149730150704113,-0.03816165406931987,155.73905000000002,0.12147448292270781,0.16207142857142084,43.122021091816976,331874 -2024-05-19 21:00:00+00:00,169,155.602,155.751,155.54,155.65,USD_JPY,H1,39.907727797002025,0.06989037939700893,0.10595648793573084,-0.036066108538721914,155.73045000000002,0.12138129354388189,0.16185714285713612,42.32644035829075,332043 -2024-05-19 22:00:00+00:00,1172,155.637,155.726,155.564,155.702,USD_JPY,H1,40.52511415525107,0.0678196345003812,0.09832911724866092,-0.03050948274827972,155.7217,0.11646915110544095,0.16185714285713818,42.76909733779035,333215 -2024-05-19 23:00:00+00:00,2012,155.701,155.824,155.69,155.767,USD_JPY,H1,46.20462046204525,0.07060956787768191,0.09278520737446512,-0.02217563949678321,155.72039999999998,0.1157744631476038,0.16185714285713818,42.5337543875038,335227 -2024-05-20 00:00:00+00:00,4684,155.768,155.882,155.734,155.874,USD_JPY,H1,51.58415841584071,0.08052635821172771,0.09033343754191764,-0.009807079330189927,155.72365,0.11925261776344277,0.16492857142856718,41.681750669828965,339911 -2024-05-20 01:00:00+00:00,4765,155.875,155.94,155.802,155.866,USD_JPY,H1,50.39920159680688,0.08674006735418516,0.08961476350437114,-0.0028746961501859847,155.72695000000002,0.1223495746718538,0.16821428571428296,39.89724126532986,335146 -2024-05-20 02:00:00+00:00,2547,155.868,155.894,155.778,155.816,USD_JPY,H1,51.217038539553805,0.08663126320820425,0.08901806344513777,-0.002386800236933523,155.73534999999998,0.1224109880743416,0.16385714285714162,38.95948038143632,332599 -2024-05-20 03:00:00+00:00,3279,155.818,155.836,155.682,155.727,USD_JPY,H1,49.12451361867701,0.0784590518321977,0.08690626112254976,-0.008447209290352059,155.73045000000002,0.12058125673178871,0.1663571428571434,38.819384611788564,329320 -2024-05-20 04:00:00+00:00,2725,155.726,155.788,155.666,155.77,USD_JPY,H1,75.06849315068624,0.07459240130307876,0.08444348915865556,-0.009851087855576798,155.72555000000003,0.11662376530068425,0.1460714285714297,38.54404550230122,332045 -2024-05-20 05:00:00+00:00,2695,155.768,155.801,155.644,155.706,USD_JPY,H1,60.194174757279725,0.06560750528964832,0.08067629238485412,-0.015068787095205802,155.71904999999998,0.11373074157972021,0.1336428571428578,36.60636627454526,329350 -2024-05-20 06:00:00+00:00,5026,155.704,155.786,155.663,155.746,USD_JPY,H1,59.80392156862745,0.061011276158978944,0.07674328913967908,-0.015732012980700136,155.71425,0.11024082490169776,0.13057142857142878,33.84089769046011,334376 -2024-05-20 07:00:00+00:00,5531,155.744,155.762,155.496,155.732,USD_JPY,H1,55.93220338982961,0.05559814762457904,0.07251426083665907,-0.01691611321208003,155.70795,0.10507264404988809,0.1422142857142867,32.15615651570225,328845 -2024-05-20 08:00:00+00:00,4001,155.733,155.788,155.656,155.684,USD_JPY,H1,50.561797752809355,0.046894435552104596,0.06739029577974819,-0.02049586022764359,155.70255,0.10328574315053214,0.14614285714285863,30.249576151004607,324844 -2024-05-20 09:00:00+00:00,3622,155.684,155.712,155.636,155.712,USD_JPY,H1,52.85053929121529,0.041774496628590896,0.06226713594951673,-0.020492639320925835,155.7009,0.10283451192775624,0.14621428571428755,28.798347842633046,328466 -2024-05-20 10:00:00+00:00,2889,155.714,155.729,155.657,155.706,USD_JPY,H1,55.14469453376114,0.03680845335091476,0.05717539942979634,-0.02036694607888158,155.71599999999998,0.0754774277952425,0.1436428571428609,28.321522673159507,325577 -2024-05-20 11:00:00+00:00,2881,155.704,155.76,155.7,155.749,USD_JPY,H1,57.53424657534122,0.03592840857945134,0.052926001259727344,-0.016997592680276,155.72445,0.06859681979172631,0.13285714285714587,25.976315708662348,328458 -2024-05-20 12:00:00+00:00,8219,155.75,156.236,155.734,156.155,USD_JPY,H1,72.40356083085952,0.06721693864651002,0.05578418873708388,0.011432749909426138,155.7509,0.11495852799701241,0.15714285714285836,24.098680799231524,336677 -2024-05-20 13:00:00+00:00,6461,156.156,156.186,156.044,156.08,USD_JPY,H1,65.32810969637626,0.08498183327287734,0.06162371764424258,0.02335811562863476,155.7718,0.1343133022423835,0.1577142857142856,22.935580862419386,330216 -2024-05-20 14:00:00+00:00,1611,156.082,156.184,156.047,156.168,USD_JPY,H1,64.67065868263472,0.10495168708811775,0.07028931153301762,0.03466237555510013,155.79635,0.15872759684873572,0.1569285714285716,22.063690716246008,331827 -2024-05-20 17:00:00+00:00,1708,156.08,156.178,156.062,156.176,USD_JPY,H1,65.4690618762456,0.12003972996802759,0.08023939522001962,0.03980033474800797,155.8214,0.17704486496906832,0.15535714285714164,21.235034979996037,333535 -2024-05-20 18:00:00+00:00,2750,156.176,156.271,156.168,156.27,USD_JPY,H1,71.70172084129953,0.13799144755236625,0.09178980568648895,0.0462016418658773,155.8528,0.19800202019527044,0.1544285714285678,21.77394856238789,336285 -2024-05-20 19:00:00+00:00,2232,156.27,156.304,156.246,156.292,USD_JPY,H1,78.85597548518763,0.1522386171976109,0.10387956798871334,0.04835904920889755,155.8849,0.21472771007746622,0.14757142857142266,23.198932889014692,338517 -2024-05-20 20:00:00+00:00,1594,156.293,156.302,156.264,156.276,USD_JPY,H1,76.57563025210011,0.16038966330489757,0.1151815870519502,0.04520807625294737,155.9136,0.22700391835564096,0.1415714285714204,25.817359498051854,336923 -2024-05-20 21:00:00+00:00,230,156.214,156.238,156.172,156.232,USD_JPY,H1,78.21888412017174,0.1614380365991508,0.12443287696139033,0.037005159637760465,155.93685,0.2348751684156956,0.13507142857142185,26.579144009836366,336693 -2024-05-20 22:00:00+00:00,853,156.229,156.29,156.217,156.268,USD_JPY,H1,78.12499999999962,0.16329145685421054,0.13220459293995437,0.031086863914256163,155.95655,0.24560440485805796,0.13149999999999246,28.394460790611365,337546 -2024-05-20 23:00:00+00:00,1777,156.267,156.404,156.266,156.402,USD_JPY,H1,81.96564885496204,0.17357215412690152,0.1404781051773438,0.033094048949557725,155.98335,0.2637752781628811,0.12235714285713632,32.090279162702736,339323 -2024-05-21 00:00:00+00:00,4414,156.401,156.466,156.342,156.428,USD_JPY,H1,86.2573099415211,0.1817228753049278,0.1487270592028606,0.0329958161020672,156.01395,0.2784308427815189,0.12178571428570706,36.227215475922186,343737 -2024-05-21 01:00:00+00:00,3942,156.432,156.495,156.42,156.482,USD_JPY,H1,86.5969581749057,0.19034554431556217,0.15705075622540093,0.03329478809016123,156.05169999999998,0.28847878696333384,0.12171428571428018,40.38798973893273,347679 -2024-05-21 02:00:00+00:00,3106,156.483,156.5,156.398,156.436,USD_JPY,H1,83.42490842490973,0.19126250101260212,0.16389310518284117,0.027369395829760945,156.08499999999998,0.29265877382418476,0.1238571428571374,44.07304735392629,344573 -2024-05-21 03:00:00+00:00,2829,156.436,156.494,156.41,156.48,USD_JPY,H1,83.44007319304761,0.19331125624805168,0.16977673539588328,0.023534520852168395,156.1237,0.29107461514275845,0.12557142857142317,48.843145563936595,347402 -2024-05-21 04:00:00+00:00,3157,156.482,156.55,156.407,156.45,USD_JPY,H1,70.5718270571831,0.19032026668895696,0.173885441654498,0.01643482503445895,156.1589,0.2855094984160542,0.09992857142856744,50.004149101727386,344245 -2024-05-21 05:00:00+00:00,3379,156.448,156.472,156.298,156.38,USD_JPY,H1,71.06741573033705,0.1802239612886467,0.17515314558132777,0.005070815707318932,156.1913,0.27090920988699213,0.10221428571428248,50.282609211708504,340866 -2024-05-21 06:00:00+00:00,7597,156.38,156.38,156.104,156.251,USD_JPY,H1,55.511288180611096,0.15996931789766222,0.17211638004459467,-0.012147062146932452,156.21965,0.24328676495364626,0.11214285714285259,48.770339397588224,333269 -2024-05-21 07:00:00+00:00,6338,156.253,156.278,156.03,156.236,USD_JPY,H1,53.94736842105283,0.14108070193154276,0.1659092444219843,-0.02482854249044153,156.24585,0.2119347652898601,0.12157142857142438,48.08813925689552,326931 -2024-05-21 08:00:00+00:00,4466,156.23,156.298,156.138,156.258,USD_JPY,H1,49.12790697674414,0.12642915720672931,0.1580132269789333,-0.03158406977220399,156.27345,0.16965676651019476,0.12564285714285411,47.21095074719782,331397 -2024-05-21 09:00:00+00:00,4510,156.26,156.279,156.086,156.118,USD_JPY,H1,39.20595533498734,0.10234114743988698,0.14687881107112405,-0.04453766363123707,156.2919,0.12337230774141594,0.13528571428571062,45.74402456578518,326887 -2024-05-21 10:00:00+00:00,3642,156.119,156.248,156.101,156.22,USD_JPY,H1,46.86098654708464,0.09043924636972633,0.13559089813084452,-0.04515165176111818,156.29515,0.1203963957389021,0.14307142857142555,43.966432437315625,330529 -2024-05-21 11:00:00+00:00,4384,156.22,156.324,156.21,156.23,USD_JPY,H1,49.88344988344933,0.08088146921932093,0.12464901234853981,-0.04376754312921888,156.30265,0.11055852225751378,0.1464999999999971,41.633742778940395,334913 -2024-05-21 12:00:00+00:00,7135,156.23,156.396,156.19,156.245,USD_JPY,H1,48.62604540023921,0.07366803732978155,0.11445281734478817,-0.040784780015006614,156.3065,0.10690305495895333,0.15599999999999778,38.807764359426635,342048 -2024-05-21 13:00:00+00:00,11702,156.246,156.434,155.958,156.052,USD_JPY,H1,30.468750000001265,0.05178095493965884,0.10191844486376231,-0.05013748992410347,156.3003,0.11790009152076958,0.1801428571428545,36.07926911583594,330346 -2024-05-21 14:00:00+00:00,7636,156.05,156.15,155.844,155.952,USD_JPY,H1,25.463917525773937,0.02606565158626495,0.08674788620826283,-0.060682234621997885,156.28439999999998,0.14131837889027535,0.19314285714285567,34.37057247062109,322710 -2024-05-21 15:00:00+00:00,3843,155.954,156.148,155.95,156.082,USD_JPY,H1,30.879541108986714,0.015991660051952294,0.07259664097700073,-0.05660498092504844,156.2739,0.14835054503495873,0.20192857142856926,32.67833968617203,326553 -2024-05-21 16:00:00+00:00,2945,156.083,156.186,156.075,156.12,USD_JPY,H1,34.7784200385361,0.010948029533039971,0.06026691868820858,-0.04931888915516861,156.2661,0.15228328864861757,0.20257142857142746,30.825048474992894,329498 -2024-05-21 17:00:00+00:00,3394,156.119,156.256,156.104,156.221,USD_JPY,H1,38.17351598173639,0.014928683348301774,0.05119927162022723,-0.036270588271925454,156.26555000000002,0.15243272028066743,0.20742857142856913,28.295574065239727,332892 -2024-05-21 18:00:00+00:00,3166,156.219,156.25,156.178,156.214,USD_JPY,H1,38.99253731343392,0.01731889721102675,0.044423196738387134,-0.027104299527360383,156.26285000000001,0.15286467183876462,0.2023571428571407,27.915371968021702,329726 -2024-05-21 19:00:00+00:00,2833,156.214,156.253,156.136,156.17,USD_JPY,H1,39.96175908221834,0.015484234029827348,0.038635404196675174,-0.023151170166847826,156.25125,0.15053444264580304,0.19828571428571098,28.862872935658004,326893 -2024-05-21 20:00:00+00:00,1407,156.17,156.219,156.17,156.196,USD_JPY,H1,47.08377518557788,0.015944435423108416,0.034097210441961824,-0.018152775018853408,156.23965,0.14503584856870347,0.18207142857142702,30.946245901514224,328300 -2024-05-21 21:00:00+00:00,294,156.166,156.189,156.128,156.156,USD_JPY,H1,45.86776859504246,0.012932405911641354,0.02986424953589773,-0.016931843624256378,156.22335,0.13428613402390474,0.16871428571428534,32.415334311591685,328006 -2024-05-21 22:00:00+00:00,782,156.148,156.188,156.136,156.188,USD_JPY,H1,46.42126789365956,0.012977882437809285,0.026486976116280044,-0.013509093678470759,156.21095,0.12472642695335948,0.16099999999999934,33.497251177278386,328788 -2024-05-21 23:00:00+00:00,2180,156.189,156.29,156.179,156.272,USD_JPY,H1,58.3514099783076,0.019566470799503577,0.02510287505292475,-0.005536404253421175,156.20055,0.10876167814619557,0.15514285714285694,32.320360897437766,330968 -2024-05-22 00:00:00+00:00,4617,156.274,156.29,156.142,156.272,USD_JPY,H1,53.170731707316534,0.02450549050396944,0.02498339814313369,-0.00047790763916424894,156.19165,0.09348474404956661,0.15521428571428583,31.674076067716758,326351 -2024-05-22 01:00:00+00:00,4108,156.277,156.352,156.252,156.257,USD_JPY,H1,51.63636363636453,0.026899246790918596,0.02536656787269067,0.0015326789182279268,156.1855,0.08400720521421713,0.15421428571428514,32.56876171015825,322243 -2024-05-22 02:00:00+00:00,3479,156.252,156.307,156.208,156.302,USD_JPY,H1,53.33333333333267,0.032057896340035086,0.026704833566159554,0.005353062773875532,156.18805,0.08682679371514568,0.14657142857142805,34.74932999652859,325722 -2024-05-22 03:00:00+00:00,3183,156.299,156.322,156.277,156.312,USD_JPY,H1,69.34523809523962,0.03653196198291653,0.02867025924951095,0.007861702733405578,156.19185,0.090616180160361,0.11578571428571495,32.13750107049661,328905 -2024-05-22 04:00:00+00:00,2332,156.311,156.39,156.295,156.352,USD_JPY,H1,82.67973856209224,0.04281184860360554,0.03149857712032987,0.01131327148327567,156.19655,0.09647605375927759,0.10071428571428546,30.953823797518414,331237 -2024-05-22 05:00:00+00:00,2391,156.344,156.385,156.284,156.298,USD_JPY,H1,70.14925373134399,0.04293641107162216,0.03378614391058833,0.009150267161033829,156.20555000000002,0.09715612775061884,0.09378571428571345,29.247466699461768,328846 -2024-05-22 06:00:00+00:00,4652,156.299,156.473,156.284,156.376,USD_JPY,H1,72.2222222222225,0.048766921141179864,0.03678229935670664,0.011984621784473223,156.21335,0.10437143943639796,0.09935714285714223,28.445650807857664,333498 -2024-05-22 07:00:00+00:00,4172,156.376,156.462,156.376,156.402,USD_JPY,H1,68.06387225548819,0.05485331027097118,0.04039650153955955,0.014456808731411627,156.22195,0.11257908332194644,0.09464285714285633,27.670712550365295,337670 -2024-05-22 08:00:00+00:00,4208,156.401,156.509,156.388,156.477,USD_JPY,H1,73.1107205623911,0.06497964579693871,0.045313130391035385,0.019666515405903327,156.23354999999998,0.12620679563626716,0.09814285714285477,26.790084932661216,341878 -2024-05-22 09:00:00+00:00,5030,156.478,156.52,156.414,156.44,USD_JPY,H1,74.02135231316888,0.0692213087213247,0.050094766057093246,0.019126542664231458,156.25295,0.12665098126054466,0.09735714285714282,27.056970588350875,336848 -2024-05-22 10:00:00+00:00,2798,156.44,156.471,156.394,156.426,USD_JPY,H1,70.90909090909062,0.0706388929643822,0.05420359143855104,0.016435301525831156,156.27665,0.11071788474153553,0.09935714285714223,27.936439606581324,334050 -2024-05-22 11:00:00+00:00,5079,156.426,156.616,156.414,156.584,USD_JPY,H1,82.03592814371206,0.08354852286467462,0.060072577723775764,0.02347594514089886,156.30175,0.12071840875434378,0.1094285714285722,30.63754333513068,339129 -2024-05-22 12:00:00+00:00,5311,156.586,156.604,156.512,156.548,USD_JPY,H1,76.78571428571428,0.08983899047467503,0.06602586027395563,0.0238131302007194,156.32315,0.12467485080287909,0.11228571428571651,33.02768599506546,333818 -2024-05-22 13:00:00+00:00,6857,156.548,156.551,156.349,156.437,USD_JPY,H1,61.8025751072974,0.08488891249987773,0.06979847071914005,0.015090441780737679,156.33395000000002,0.12471587710341607,0.11878571428571709,33.84335714359303,326961 -2024-05-22 14:00:00+00:00,5682,156.44,156.547,156.38,156.524,USD_JPY,H1,66.03053435114562,0.0869834222062309,0.07323546101655823,0.01374796118967267,156.34945,0.12823763919749684,0.12014285714286034,34.69827793725845,332643 -2024-05-22 15:00:00+00:00,4403,156.524,156.559,156.468,156.503,USD_JPY,H1,65.53030303030124,0.08595794209347218,0.07577995723194102,0.010177984861531167,156.3661,0.12529623845158014,0.11950000000000419,34.97036035385402,328240 -2024-05-22 16:00:00+00:00,4090,156.499,156.522,156.462,156.492,USD_JPY,H1,62.53298153034223,0.08329743269348455,0.07728345232424973,0.006013980369234825,156.3809,0.12157298003827872,0.11671428571429081,34.71338218989955,324150 -2024-05-22 17:00:00+00:00,4015,156.492,156.547,156.448,156.496,USD_JPY,H1,62.234042553190704,0.08058281783377197,0.07794332542615418,0.002639492407617794,156.3979,0.11185229923349906,0.12057142857143179,36.822074833816096,328165 -2024-05-22 18:00:00+00:00,4613,156.498,156.638,156.498,156.634,USD_JPY,H1,66.58823529411616,0.08854620712793349,0.08006390176651004,0.008482305361423442,156.4202,0.1122607866187288,0.12392857142857443,36.60862403328211,332778 -2024-05-22 19:00:00+00:00,3068,156.635,156.729,156.632,156.708,USD_JPY,H1,73.56321839080351,0.09967939011190197,0.08398699943558843,0.015692390676313533,156.442,0.1237161437010975,0.12364285714286082,37.389022070360184,335846 -2024-05-22 20:00:00+00:00,2004,156.708,156.846,156.708,156.83,USD_JPY,H1,74.83588621444123,0.11699821563937007,0.09058924267634476,0.026408972963025315,156.4699,0.14452896268359197,0.12000000000000252,37.91767025765466,337850 -2024-05-22 21:00:00+00:00,803,156.774,156.777,156.702,156.703,USD_JPY,H1,64.8275862068963,0.11910272890861506,0.09629193992279883,0.022810788985816233,156.4922,0.14435832611099406,0.11921428571428853,39.13781637008161,337047 -2024-05-22 22:00:00+00:00,1576,156.697,156.792,156.681,156.746,USD_JPY,H1,63.682604272634215,0.1228244674653638,0.10159844543131183,0.021226022034051967,156.5144,0.14767118523653164,0.11850000000000348,39.28361057037712,338623 -2024-05-22 23:00:00+00:00,2243,156.742,156.764,156.658,156.737,USD_JPY,H1,65.54973821989401,0.12362270174804735,0.10600329669465894,0.01761940505338841,156.53564999999998,0.14759163969233338,0.11850000000000348,38.150832547429445,336380 -2024-05-23 00:00:00+00:00,4628,156.736,156.834,156.686,156.801,USD_JPY,H1,68.65671641790948,0.1279447063655823,0.11039157862884362,0.017553127736738686,156.55810000000002,0.15226116760263858,0.1235714285714319,38.11368310325408,341008 -2024-05-23 01:00:00+00:00,6230,156.802,156.908,156.74,156.746,USD_JPY,H1,58.98004434589819,0.12548536860026616,0.11341033662312813,0.012075031977138023,156.58049999999997,0.14475114762475133,0.121142857142857,36.04088842683385,334778 -2024-05-23 02:00:00+00:00,3184,156.745,156.802,156.646,156.734,USD_JPY,H1,60.592255125284964,0.12117123936982921,0.11496251717246836,0.00620872219736085,156.59840000000003,0.14019512718373586,0.12571428571428506,32.92551270789522,331594 -2024-05-23 03:00:00+00:00,2673,156.734,156.79,156.72,156.758,USD_JPY,H1,70.29077117572615,0.11832488468081692,0.11563499067413809,0.0026898940066788363,156.6162,0.13649777326802626,0.11628571428571328,35.145650251586936,334267 -2024-05-23 04:00:00+00:00,2153,156.76,156.788,156.694,156.723,USD_JPY,H1,63.46414073071742,0.11195438018452819,0.1148988685762161,-0.0029444883916879133,156.6285,0.13436106109553445,0.11107142857142906,36.49650307171387,332114 -2024-05-23 05:00:00+00:00,2584,156.724,156.753,156.67,156.723,USD_JPY,H1,65.32033426183996,0.10568741079077881,0.11305657701912865,-0.0073691662283498355,156.64265,0.12822647522744718,0.11049999999999979,37.836244753408096,329530 -2024-05-23 06:00:00+00:00,5019,156.724,156.747,156.578,156.648,USD_JPY,H1,59.97442455242955,0.09359007111427786,0.10916327583815849,-0.01557320472388063,156.65375,0.11765823612569892,0.1182857142857147,37.44105917048257,324511 -2024-05-23 07:00:00+00:00,5784,156.65,156.78,156.56,156.759,USD_JPY,H1,64.79190101237198,0.09190024577097233,0.10571066982472127,-0.013810424053748938,156.6625,0.11870064071926864,0.12692857142857253,37.01478082082888,330295 -2024-05-23 08:00:00+00:00,4585,156.758,156.795,156.709,156.758,USD_JPY,H1,58.24468085106529,0.08944924020829603,0.10245838390143623,-0.013009143693140199,156.673,0.11731917778263835,0.12292857142857169,35.779145015458695,325710 -2024-05-23 09:00:00+00:00,4104,156.759,156.784,156.644,156.666,USD_JPY,H1,47.2727272727272,0.07917054080496655,0.09780081528214231,-0.01863027447717576,156.68445,0.10342628955125595,0.1259999999999987,33.24938311069731,321606 -2024-05-23 10:00:00+00:00,3425,156.666,156.73,156.636,156.711,USD_JPY,H1,41.41414141414158,0.0738049439413544,0.09300164101398474,-0.019196697072630345,156.69379999999998,0.0963696829474928,0.12285714285714075,32.33028415963331,325031 -2024-05-23 11:00:00+00:00,4133,156.712,156.725,156.56,156.59,USD_JPY,H1,41.7758369723437,0.05910762510015388,0.08622283783121858,-0.027115212731064695,156.69815,0.0889844900845873,0.12928571428571242,31.987730463484485,320898 -2024-05-23 12:00:00+00:00,6460,156.59,156.76,156.529,156.752,USD_JPY,H1,50.37220843672458,0.05984211745987977,0.08094669375695082,-0.021104576297071048,156.71115,0.07520797481401023,0.13785714285714132,31.516793241418135,327358 -2024-05-23 13:00:00+00:00,9330,156.752,157.139,156.672,157.091,USD_JPY,H1,65.58098591549361,0.08677834802708162,0.082113024610977,0.004665323416104622,156.7409,0.0994097845542553,0.1636428571428549,30.748653375665384,336688 -2024-05-23 14:00:00+00:00,15854,157.092,157.198,156.542,156.994,USD_JPY,H1,58.254918733961084,0.0991554135937065,0.0855215024075229,0.013633911186183595,156.75889999999998,0.1109565586016307,0.19992857142856987,27.81696788946781,320834 -2024-05-23 15:00:00+00:00,6636,156.992,157.143,156.982,157.057,USD_JPY,H1,63.2115548003387,0.11274820953795484,0.0909668438336093,0.021781365704345537,156.77635,0.12857489114742893,0.19942857142857154,26.196657641256042,327470 -2024-05-23 16:00:00+00:00,4299,157.055,157.072,156.962,157.05,USD_JPY,H1,63.481228668942116,0.12155455155084383,0.09708438537705621,0.02447016617378761,156.78735,0.14210532603042733,0.1961428571428578,25.114038372725908,323171 -2024-05-23 17:00:00+00:00,3420,157.054,157.066,156.935,156.944,USD_JPY,H1,57.41626794258276,0.11861302974841692,0.10139011425132836,0.017222915497088556,156.7994,0.1447692901496535,0.20050000000000118,21.959135760215787,319751 -2024-05-23 18:00:00+00:00,4830,156.944,156.965,156.828,156.897,USD_JPY,H1,56.87203791469097,0.11120741546162094,0.10335357449338689,0.00785384096823405,156.80694999999997,0.14577180256508032,0.20357142857142815,19.78141730153968,314921 -2024-05-23 19:00:00+00:00,3043,156.898,156.936,156.86,156.879,USD_JPY,H1,56.07476635513921,0.10270207759631944,0.1032232751139734,-0.0005211975176539624,156.81405,0.1456435717840864,0.20307142857142782,18.15675155322181,311878 -2024-05-23 20:00:00+00:00,1698,156.883,156.984,156.859,156.945,USD_JPY,H1,61.64705882352924,0.10013291456684215,0.10260520300454715,-0.0024722884377050003,156.82125,0.14849592410472714,0.19992857142856987,16.57845511285028,313576 -2024-05-23 21:00:00+00:00,1149,156.946,157.025,156.912,156.967,USD_JPY,H1,58.76897133220997,0.09873390746892596,0.10183094389742292,-0.0030970364284969576,156.8323,0.15080628913990315,0.19228571428571278,14.89145560716626,314725 -2024-05-23 22:00:00+00:00,1296,156.968,157.014,156.94,157.009,USD_JPY,H1,60.22819885900447,0.09986307390252591,0.10143736989844353,-0.0015742959959176156,156.84605,0.1538774204630783,0.19142857142857192,14.02282135344988,316021 -2024-05-23 23:00:00+00:00,2268,157.008,157.01,156.922,156.991,USD_JPY,H1,64.09366869037379,0.09817381029466787,0.1007846579776884,-0.0026108476830205285,156.8577,0.15567006270673497,0.18771428571428675,13.625496176526907,313753 -2024-05-24 00:00:00+00:00,5906,156.99,157.138,156.922,157.038,USD_JPY,H1,64.15584415584442,0.09948081105432038,0.10052388859301481,-0.0010430775386944258,156.87345,0.15725155007846858,0.19642857142857345,12.488139361055504,319659 -2024-05-24 01:00:00+00:00,4974,157.042,157.108,156.994,157.099,USD_JPY,H1,73.24200913242069,0.10423722690816817,0.10126655625604548,0.002970670652122684,156.89225000000002,0.16075508505337988,0.1927857142857172,11.37105544998946,324633 -2024-05-24 02:00:00+00:00,3383,157.098,157.149,157.065,157.066,USD_JPY,H1,66.25258799171937,0.10414339628755442,0.10184192426234728,0.0023014720252071408,156.91315,0.15437421212928967,0.1822857142857178,11.001012062288694,321250 -2024-05-24 03:00:00+00:00,2742,157.066,157.096,157.046,157.055,USD_JPY,H1,47.178683385579475,0.10200557006018585,0.10187465342191501,0.00013091663827083377,156.92795,0.15300067940002307,0.1525000000000034,12.433967563946993,318508 -2024-05-24 04:00:00+00:00,2235,157.054,157.096,157.02,157.08,USD_JPY,H1,57.59717314487856,0.10116248033719444,0.10173221880497091,-0.0005697384677764705,156.94405,0.15110591441293278,0.11107142857143108,14.086380598458003,320743 -2024-05-24 05:00:00+00:00,2630,157.08,157.118,157.048,157.081,USD_JPY,H1,52.38095238095292,0.09942886325694644,0.10127154769536602,-0.0018426844384195756,156.9648,0.13891671113925122,0.10457142857143051,13.261561389563198,323373 -2024-05-24 06:00:00+00:00,4562,157.08,157.096,157.0,157.04,USD_JPY,H1,49.070631970258304,0.09366686852729345,0.0997506118617515,-0.006083743334458061,156.98125,0.12617609875455807,0.10357142857142979,13.417983914406111,318811 -2024-05-24 07:00:00+00:00,2814,157.039,157.071,157.019,157.054,USD_JPY,H1,62.331838565026366,0.08920186560774823,0.09764086261095087,-0.008438997003202636,157.00445,0.08703869376737385,0.0979285714285721,13.112130913059223,321625 -2024-05-24 08:00:00+00:00,2989,157.055,157.09,157.005,157.025,USD_JPY,H1,64.95327102804214,0.08237370815675149,0.094587431720111,-0.012213723563359508,157.0181,0.0636205031673744,0.09421428571428692,15.099671715952805,318636 -2024-05-24 09:00:00+00:00,3079,157.026,157.035,156.968,157.019,USD_JPY,H1,66.82692307692844,0.07560664795261118,0.09079127496661105,-0.015184627013999863,157.0145,0.06127204223876069,0.09357142857143076,16.31783339923114,315557 -2024-05-24 10:00:00+00:00,2619,157.02,157.035,156.936,156.979,USD_JPY,H1,54.35897435897805,0.06625232274478776,0.0858834845222464,-0.019631161777458633,157.01375000000002,0.06162695498854632,0.09171428571428716,17.20302240795192,312938 -2024-05-24 11:00:00+00:00,3437,156.978,157.046,156.959,157.031,USD_JPY,H1,57.61904761904907,0.062316571396848985,0.08117010189716692,-0.018853530500317933,157.01245,0.060936960542075556,0.08985714285714355,17.59277292606567,316375 -2024-05-24 12:00:00+00:00,6543,157.03,157.134,157.006,157.075,USD_JPY,H1,57.8199052132726,0.06203281667811211,0.07734264485335597,-0.015309828175243859,157.01370000000003,0.06199499132656801,0.09371428571428453,19.296025084134236,322918 -2024-05-24 13:00:00+00:00,6505,157.076,157.128,157.03,157.075,USD_JPY,H1,60.396039603959565,0.061103575041755676,0.07409483089103591,-0.012991255849280237,157.02025,0.06115801365150803,0.0944285714285696,21.330255022961552,316413 -2024-05-24 14:00:00+00:00,6136,157.05,157.064,156.914,156.988,USD_JPY,H1,44.36936936936686,0.05273902874498049,0.06982367046182483,-0.017084641716844345,157.0248,0.054532076529732805,0.0897142857142837,22.111052858918868,310277 -2024-05-24 15:00:00+00:00,4905,156.984,156.996,156.849,156.908,USD_JPY,H1,29.373650107988283,0.03920282832734756,0.06369950203492938,-0.024496673707581823,157.02624999999998,0.05070230454757924,0.09207142857142767,22.440495336518932,305372 -2024-05-24 16:00:00+00:00,3467,156.909,156.938,156.822,156.918,USD_JPY,H1,33.18181818181745,0.028948508019198016,0.056749303231783114,-0.0278007952125851,157.0249,0.05327377158663968,0.09435714285714068,23.793619782426667,308839 -2024-05-24 17:00:00+00:00,2304,156.92,156.968,156.882,156.956,USD_JPY,H1,39.400428265521704,0.023615937885779203,0.05012263016258234,-0.026506692276803134,157.02435,0.053955415338297334,0.09692857142856733,23.25513950471107,311143 -2024-05-24 18:00:00+00:00,1952,156.956,156.99,156.912,156.978,USD_JPY,H1,39.00862068965405,0.020923856580310485,0.04428287544612797,-0.023359018865817482,157.02280000000002,0.054857326930964324,0.09707142857142514,23.283014069171173,313095 -2024-05-24 19:00:00+00:00,1377,156.976,156.998,156.93,156.932,USD_JPY,H1,35.363457760314674,0.014906711892734847,0.038407642735449346,-0.0235009308427145,157.01985,0.058145258231861646,0.09692857142856733,25.168308964960882,311718 -2024-05-24 20:00:00+00:00,1013,156.932,156.998,156.902,156.995,USD_JPY,H1,45.76271186440823,0.01504818871140401,0.03373575193064028,-0.018687563219236272,157.0177,0.05823373956108838,0.09692857142856733,26.396774822248258,312731 -2024-05-26 21:00:00+00:00,126,156.964,157.023,156.876,156.922,USD_JPY,H1,38.81355932203408,0.009164181219375678,0.028821437788387364,-0.019657256569011686,157.00885,0.05867598362906731,0.10371428571428153,28.462549923647764,312605 -2024-05-26 22:00:00+00:00,1325,156.944,156.982,156.794,156.864,USD_JPY,H1,36.99515347334459,-0.00017701190083130314,0.023021747850543634,-0.023198759751374937,156.99875,0.06532902556401676,0.11107142857142296,28.695211926065753,311280 -2024-05-26 23:00:00+00:00,1453,156.861,156.918,156.826,156.87,USD_JPY,H1,37.9644588045239,-0.00701496079102526,0.017014406122229857,-0.024029366913255117,156.98950000000002,0.06988373805323096,0.11285714285713766,29.05930122375642,312733 -2024-05-27 00:00:00+00:00,4375,156.871,156.929,156.752,156.832,USD_JPY,H1,38.087520259318595,-0.015323724613352852,0.010546779975113316,-0.025870504588466167,156.9771,0.07480916072575072,0.11842857142856644,31.20363359527341,308358 -2024-05-27 01:00:00+00:00,4532,156.832,156.848,156.682,156.808,USD_JPY,H1,31.069609507640735,-0.023573340432960777,0.003722755893498497,-0.027296096326459275,156.96345000000002,0.07960592084601274,0.12407142857142617,34.55624171646442,303826 -2024-05-27 02:00:00+00:00,2577,156.809,156.809,156.689,156.728,USD_JPY,H1,22.24000000000413,-0.03614983897617208,-0.004251763080435619,-0.031898075895736455,156.94785000000002,0.09322145394613543,0.12349999999999893,38.24985923214901,301249 -2024-05-27 03:00:00+00:00,2327,156.729,156.771,156.664,156.705,USD_JPY,H1,21.4506172839548,-0.047426014883512835,-0.012886613441051062,-0.03453940144246177,156.93040000000002,0.1043104677697322,0.12414285714285711,41.5554370812656,298922 -2024-05-27 04:00:00+00:00,1985,156.706,156.784,156.691,156.774,USD_JPY,H1,33.01587301587453,-0.05021588472675376,-0.0203524676981916,-0.029863417028562156,156.91785,0.10738385403486254,0.12007142857142737,44.26311338419544,300907 -2024-05-27 05:00:00+00:00,2234,156.775,156.8,156.73,156.766,USD_JPY,H1,37.27598566308393,-0.05246759603159035,-0.026775493364871353,-0.025692102666718994,156.90519999999998,0.10971762801319711,0.1145714285714275,45.94478637865019,298673 -2024-05-27 06:00:00+00:00,3793,156.766,156.846,156.75,156.824,USD_JPY,H1,42.24422442244338,-0.049007055361215635,-0.03122180576414021,-0.017785249597075423,156.89745,0.10970461537089939,0.11314285714285736,45.08236217406564,302466 -2024-05-27 07:00:00+00:00,2745,156.826,156.96,156.824,156.908,USD_JPY,H1,46.31901840490808,-0.03903646588597098,-0.032784737788506366,-0.006251728097464618,156.8913,0.10517809458741721,0.11671428571428676,43.355201738890564,305211 -2024-05-27 08:00:00+00:00,2059,156.908,156.95,156.866,156.949,USD_JPY,H1,47.839046199702366,-0.027509235204405513,-0.0317296372716862,0.004220402067280686,156.88500000000002,0.09705559991969162,0.11714285714285617,42.858705288591075,307270 -2024-05-27 09:00:00+00:00,1991,156.95,156.953,156.88,156.895,USD_JPY,H1,47.275405007365535,-0.022472125864680947,-0.02987813499028515,0.007406009125604202,156.876,0.08625421424929489,0.11750000000000073,42.195600088352045,305279 -2024-05-27 10:00:00+00:00,2379,156.896,156.896,156.846,156.859,USD_JPY,H1,39.570552147239844,-0.02114137494766055,-0.028130782981760232,0.0069894080340996805,156.86955,0.08216445320510816,0.11421428571428496,41.833668577775306,302900 -2024-05-27 11:00:00+00:00,2375,156.86,156.892,156.822,156.88,USD_JPY,H1,46.49999999999984,-0.01818262280522731,-0.02614115094645365,0.007958528141226339,156.86815,0.08171212305835493,0.1087142857142851,40.96643204752558,305275 -2024-05-27 12:00:00+00:00,3789,156.88,156.896,156.82,156.823,USD_JPY,H1,46.57762938230404,-0.020204311322657986,-0.024953783021694518,0.004749471699036532,156.8634,0.08142248494549575,0.10071428571428546,37.72345801885225,301486 -2024-05-27 13:00:00+00:00,3628,156.823,156.836,156.76,156.819,USD_JPY,H1,45.72864321607911,-0.021877095074813724,-0.024338445432318362,0.002461350357504638,156.85655,0.07894733422357954,0.09957142857142896,36.419250184476056,297858 -2024-05-27 14:00:00+00:00,1903,156.818,156.832,156.725,156.727,USD_JPY,H1,41.9354838709683,-0.03027740034988824,-0.025526236415832338,-0.004751163934055901,156.844,0.07857413530477729,0.09457142857142944,34.25156173374974,295955 -2024-05-27 15:00:00+00:00,1566,156.728,156.874,156.71,156.868,USD_JPY,H1,53.90625000000029,-0.0252659312594119,-0.025474175384548253,0.00020824412513635246,156.8408,0.07606479233934474,0.0944285714285696,31.521372668157067,297521 -2024-05-27 16:00:00+00:00,1076,156.871,156.915,156.86,156.9,USD_JPY,H1,61.94444444444426,-0.018498929194123548,-0.024079126146463313,0.005580196952339765,156.83605000000003,0.06852081897951677,0.08978571428571058,27.366309439348527,298597 -2024-05-27 17:00:00+00:00,468,156.902,156.916,156.87,156.874,USD_JPY,H1,61.68741355463206,-0.015060407015397459,-0.022275382320250146,0.007214975304852687,156.83365,0.0661515604457762,0.08542857142856722,23.80427262366631,298129 -2024-05-27 18:00:00+00:00,1246,156.875,156.88,156.848,156.874,USD_JPY,H1,57.6452599388372,-0.01219477958741777,-0.02025926177368367,0.0080644821862659,156.83415,0.06643023647280386,0.08107142857142387,20.436857727829725,296883 -2024-05-27 19:00:00+00:00,764,156.872,156.885,156.846,156.885,USD_JPY,H1,59.056316590563,-0.008933165168514279,-0.01799404245264979,0.009060877284135512,156.8349,0.06693901389317795,0.0788571428571357,17.82696249317001,297647 -2024-05-27 20:00:00+00:00,1580,156.886,156.944,156.876,156.899,USD_JPY,H1,56.1174551386614,-0.005159157687359084,-0.015427065499591651,0.010267907812232567,156.83825,0.06844581031308639,0.07685714285713427,16.875998888357532,299227 -2024-05-27 21:00:00+00:00,659,156.866,156.906,156.858,156.894,USD_JPY,H1,48.6891385767808,-0.002542380798274735,-0.012850128559328268,0.010307747761053533,156.84255000000002,0.0691432342616075,0.07057142857142042,17.198174729962645,298568 -2024-05-27 22:00:00+00:00,542,156.888,156.952,156.849,156.923,USD_JPY,H1,47.50957854406026,0.001850163838980734,-0.009910070079666468,0.011760233918647202,156.85229999999999,0.06580841413132357,0.0719285714285657,16.09754353385926,299110 -2024-05-27 23:00:00+00:00,1145,156.923,156.947,156.835,156.839,USD_JPY,H1,44.92753623188294,-0.0014303229989423016,-0.008214120663521635,0.006783797664579334,156.85899999999998,0.05613236238862439,0.07471428571427907,14.916987978303537,297965 -2024-05-28 00:00:00+00:00,4768,156.838,156.903,156.78,156.898,USD_JPY,H1,53.39130434782504,0.0007223476892761482,-0.006426826992962079,0.007149174682238227,156.86520000000002,0.05301102171362579,0.07992857142856533,14.004021190794825,302733 -2024-05-28 01:00:00+00:00,3747,156.899,156.93,156.736,156.781,USD_JPY,H1,42.622950819672816,-0.006932652172537246,-0.006527992028877113,-0.00040466014366013266,156.86595,0.051621573437620895,0.08878571428570987,13.414145175307098,298986 -2024-05-28 02:00:00+00:00,3456,156.78,156.798,156.688,156.754,USD_JPY,H1,44.61778471138731,-0.01500500075741229,-0.00822339377458415,-0.006781606982828141,156.86245,0.05673528097516357,0.09121428571428274,14.86282854475871,295530 -2024-05-28 03:00:00+00:00,2872,156.75,156.768,156.625,156.658,USD_JPY,H1,39.0177353342428,-0.02881661288796522,-0.012342037597260363,-0.016474575290704858,156.84994999999998,0.07173010453634047,0.09599999999999552,14.94329287493365,292658 -2024-05-28 04:00:00+00:00,2291,156.656,156.724,156.622,156.69,USD_JPY,H1,47.25111441307545,-0.036756575521422974,-0.017224945182092888,-0.019531630339330086,156.837,0.0761501287412567,0.09564285714285095,15.154334227571999,294949 -2024-05-28 05:00:00+00:00,3155,156.688,156.872,156.656,156.838,USD_JPY,H1,47.79411764705885,-0.030752197806663162,-0.019930395707006943,-0.01082180209965622,156.83415,0.07492190672498657,0.09935714285713816,14.54964790860024,298104 -2024-05-28 06:00:00+00:00,4378,156.84,156.896,156.788,156.884,USD_JPY,H1,48.847262247837236,-0.022027945206161803,-0.020349905606837915,-0.0016780395993238884,156.8354,0.07556412405467734,0.10314285714285225,13.30330141393175,302482 -2024-05-28 07:00:00+00:00,3797,156.884,156.925,156.845,156.894,USD_JPY,H1,51.47492625368801,-0.014143953052382585,-0.01910871509594685,0.004964762043564264,156.8361,0.0760622321519742,0.10557142857142512,11.871364433883368,306279 -2024-05-28 08:00:00+00:00,3126,156.895,156.958,156.856,156.87,USD_JPY,H1,49.71509971510039,-0.009720381387182897,-0.01723104835419406,0.007510666967011161,156.83845000000002,0.07636165682871915,0.11057142857142667,11.716126428475459,303153 -2024-05-28 09:00:00+00:00,3455,156.871,156.994,156.868,156.942,USD_JPY,H1,53.735255570118866,-0.0004002567903569343,-0.013864890041426634,0.0134646332510697,156.8446,0.07959727581923201,0.11678571428571363,12.009207418438175,306608 -2024-05-28 10:00:00+00:00,2664,156.946,156.948,156.822,156.866,USD_JPY,H1,48.000000000000824,0.0008437183984995045,-0.010923168353441407,0.011766886751940911,156.85155,0.07470677769545657,0.12092857142857229,10.920905806674002,303944 -2024-05-28 11:00:00+00:00,3210,156.866,156.891,156.774,156.802,USD_JPY,H1,44.79638009049725,-0.0032966852956519688,-0.00939787174188352,0.0061011864462315515,156.84824999999998,0.07539640855577544,0.1258571428571429,9.962601944131011,300734 -2024-05-28 12:00:00+00:00,5228,156.801,156.801,156.656,156.68,USD_JPY,H1,37.56397134083997,-0.016235215992878693,-0.010765340592082555,-0.005469875400796138,156.83724999999998,0.08310353404319688,0.12885714285714098,11.520168546122221,295506 -2024-05-28 13:00:00+00:00,6385,156.681,156.846,156.58,156.827,USD_JPY,H1,49.42307692307691,-0.014460729034908582,-0.011504418280647761,-0.0029563107542608207,156.8349,0.0826730402307378,0.1398571428571407,13.50151620840368,301891 -2024-05-28 14:00:00+00:00,5716,156.826,156.962,156.826,156.869,USD_JPY,H1,48.58260019550364,-0.009555239491959355,-0.011114582522910081,0.0015593430309507259,156.83465,0.08255605752229556,0.14078571428571252,13.51360798986139,307607 -2024-05-28 15:00:00+00:00,2646,156.868,156.958,156.834,156.908,USD_JPY,H1,56.71957671957556,-0.0024919044996920547,-0.009390046918266478,0.006898142418574423,156.8358,0.0834497012195099,0.13578571428571098,12.895054995312503,310253 -2024-05-28 16:00:00+00:00,1894,156.907,157.0,156.876,156.968,USD_JPY,H1,60.94069529652335,0.007856769975688849,-0.005940683539475413,0.013797453515164261,156.83925,0.08752676283615014,0.13678571428570965,12.050848050691473,312147 -2024-05-28 17:00:00+00:00,3794,156.968,157.128,156.966,157.096,USD_JPY,H1,71.6831683168321,0.02608599618886842,0.0004646524061933544,0.02562134378267507,156.84935,0.10423671189806784,0.13814285714285088,12.741039454287252,315941 -2024-05-28 18:00:00+00:00,3599,157.098,157.156,157.088,157.154,USD_JPY,H1,72.39382239382229,0.04469765779535351,0.009311253484025386,0.03538640431132812,156.8609,0.12379095282801039,0.13571428571428207,14.012854596970653,319540 -2024-05-28 19:00:00+00:00,2507,157.155,157.158,157.11,157.138,USD_JPY,H1,66.592920353983,0.057493715660285716,0.018947745919277455,0.03854596974100826,156.87585,0.13822075212452187,0.12371428571427957,15.041533227548166,317033 -2024-05-28 20:00:00+00:00,1385,157.139,157.2,157.132,157.19,USD_JPY,H1,66.81318681318751,0.07101206623073608,0.029360609981569183,0.0416514562491669,156.89045,0.1550773915518048,0.12085714285713729,16.416752602767463,318418 -2024-05-28 21:00:00+00:00,587,157.146,157.185,157.134,157.156,USD_JPY,H1,64.025695931478,0.07808186150694496,0.03910486028664434,0.03897700122030062,156.9092,0.1635843899450207,0.11878571428570897,17.253219272733467,317831 -2024-05-28 22:00:00+00:00,996,157.151,157.268,157.142,157.216,USD_JPY,H1,67.83505154639249,0.08751737790274206,0.048787363809863885,0.03873001409287817,156.9323,0.17287114155078456,0.12049999999999475,17.812471540850762,318827 -2024-05-28 23:00:00+00:00,1940,157.216,157.29,157.214,157.273,USD_JPY,H1,67.32984293193739,0.09845953601453061,0.058721798250797236,0.03973773776373338,156.96305,0.17617708645456906,0.11692857142856537,17.973452581891888,320767 -2024-05-29 00:00:00+00:00,3815,157.272,157.41,157.262,157.374,USD_JPY,H1,75.91836734693885,0.1139673859765935,0.0697709157959565,0.04419647018063701,156.99725,0.18647135380976448,0.11849999999999332,20.63583295667455,324582 -2024-05-29 01:00:00+00:00,4119,157.376,157.39,157.221,157.245,USD_JPY,H1,71.19617224880581,0.11452803895568309,0.07872234042790183,0.03580569852778126,157.0176,0.19034550304250553,0.1222142857142785,23.623397819679457,320463 -2024-05-29 02:00:00+00:00,2697,157.246,157.308,157.206,157.292,USD_JPY,H1,81.54639175257893,0.1174114218999307,0.08646015672230761,0.03095126517762309,157.03799999999998,0.19701990282067314,0.11914285714285151,26.44427229076542,323160 -2024-05-29 03:00:00+00:00,2412,157.291,157.336,157.269,157.316,USD_JPY,H1,78.86658795749895,0.12024699062376953,0.09321752350260001,0.02702946712116952,157.0591,0.20328406363641902,0.10492857142856694,30.279988720888067,325572 -2024-05-29 04:00:00+00:00,1950,157.317,157.348,157.231,157.256,USD_JPY,H1,72.36994219653306,0.11631192918946454,0.09783640463997292,0.018475524549491612,157.0784,0.20270860600774307,0.10357142857142573,34.65338654947397,323622 -2024-05-29 05:00:00+00:00,2530,157.255,157.272,157.202,157.224,USD_JPY,H1,68.41491841491909,0.1093507052259497,0.10013926475716829,0.009211440468781404,157.0925,0.20252914020906596,0.09971428571428273,38.80790549991103,321092 -2024-05-29 06:00:00+00:00,6778,157.228,157.234,156.896,157.1,USD_JPY,H1,57.15835140997882,0.0927588550525229,0.09866318281623922,-0.005904327763716313,157.1042,0.1953888430854077,0.11499999999999895,38.37627093909821,314314 -2024-05-29 07:00:00+00:00,4645,157.101,157.156,157.022,157.152,USD_JPY,H1,53.30969267139401,0.0828506094174486,0.0955006681364811,-0.012650058719032506,157.1217,0.1821211569031496,0.11300000000000157,38.0723693220609,318959 -2024-05-29 08:00:00+00:00,5489,157.14,157.19,157.067,157.1,USD_JPY,H1,46.78571428571396,0.06999542426845551,0.09039961936287598,-0.02040419509442047,157.1427,0.14986769604579592,0.11692857142857147,37.497203771970206,313470 -2024-05-29 09:00:00+00:00,3702,157.1,157.176,157.096,157.159,USD_JPY,H1,51.189127972819236,0.06383258206602704,0.0850862119035062,-0.02125362983747915,157.1593,0.13014853863014358,0.11921428571428651,38.09669314219396,317172 -2024-05-29 10:00:00+00:00,3965,157.158,157.284,157.156,157.234,USD_JPY,H1,52.428256070640856,0.06425961359329335,0.08092089224146364,-0.016661278648170283,157.17755,0.11156280979174228,0.12350000000000096,37.726988799887124,321137 -2024-05-29 11:00:00+00:00,3483,157.234,157.294,157.2,157.272,USD_JPY,H1,56.3736263736258,0.06689321819615657,0.07811535743240222,-0.011222139236245654,157.19575,0.09350422170153583,0.12657142857142997,37.46344830371982,324620 -2024-05-29 12:00:00+00:00,5684,157.271,157.292,157.158,157.198,USD_JPY,H1,49.02597402597394,0.06229113384577545,0.07495051271507687,-0.012659378869301421,157.20725,0.07664262591794133,0.12714285714285925,38.15928950070854,318936 -2024-05-29 13:00:00+00:00,5968,157.198,157.389,157.166,157.342,USD_JPY,H1,53.412462908012806,0.06946282121973013,0.07385297441600752,-0.004390153196277391,157.21955,0.07758287590649425,0.13764285714286068,38.028594934083756,324904 -2024-05-29 14:00:00+00:00,4854,157.34,157.5,157.311,157.498,USD_JPY,H1,55.816135084427835,0.08673450994606924,0.07642928152201986,0.010305228424049379,157.23675,0.09778702692041767,0.14057142857143187,36.70175389779983,329758 -2024-05-29 15:00:00+00:00,5978,157.496,157.64,157.437,157.628,USD_JPY,H1,67.9475164011246,0.10964840270952436,0.08307310575952076,0.026575296950003602,157.26125,0.12835061971537373,0.1430000000000027,33.707611269816006,335736 -2024-05-29 16:00:00+00:00,3338,157.628,157.708,157.616,157.686,USD_JPY,H1,68.27458256029753,0.13097810897480144,0.0926541064025769,0.03832400257222454,157.28605,0.15828670690029364,0.14228571428571563,29.87588325070132,339074 -2024-05-29 17:00:00+00:00,3811,157.687,157.709,157.625,157.636,USD_JPY,H1,64.49275362318829,0.14220818529119583,0.1025649221803007,0.03964326311089514,157.31005,0.17321586016567941,0.14350000000000104,24.396565617119986,335263 -2024-05-29 18:00:00+00:00,2858,157.637,157.684,157.624,157.67,USD_JPY,H1,69.20222634508335,0.1520983227437398,0.11247160229298853,0.039626720450751274,157.33274999999998,0.18924834005336197,0.1394285714285713,20.335125567597213,338121 -2024-05-29 19:00:00+00:00,2997,157.668,157.702,157.642,157.689,USD_JPY,H1,71.83098591549374,0.1596293612294346,0.12190315408027774,0.037726207149156865,157.35354999999998,0.20457593494919601,0.13871428571428623,17.234003602223925,341118 -2024-05-29 20:00:00+00:00,1649,157.69,157.706,157.666,157.668,USD_JPY,H1,79.52182952183136,0.16203539581249515,0.12992960242672125,0.032105793385773906,157.36825,0.2163469131847295,0.11742857142856979,23.03245330750042,339469 -2024-05-29 21:00:00+00:00,425,157.614,157.636,157.562,157.605,USD_JPY,H1,73.27852004111048,0.15704826739963096,0.13535333542130318,0.02169493197832778,157.38625,0.22048913925358518,0.11314285714285331,25.367170003169228,339044 -2024-05-29 22:00:00+00:00,862,157.592,157.674,157.59,157.642,USD_JPY,H1,78.2881002087684,0.15430281616562525,0.13914323157016759,0.015159584595457659,157.40375,0.2264245837089021,0.11035714285713993,27.797680668973644,339906 -2024-05-29 23:00:00+00:00,2220,157.64,157.664,157.595,157.628,USD_JPY,H1,75.68455640744735,0.14927657584078702,0.14116990042429148,0.00810667541649554,157.41934999999998,0.23076697634393234,0.10957142857142596,30.14417655754801,337686 -2024-05-30 00:00:00+00:00,6450,157.628,157.628,157.305,157.368,USD_JPY,H1,56.1020036429867,0.12289673996417605,0.1375152683322684,-0.014618528368092354,157.42495,0.22793592705979945,0.1234999999999969,29.358352606132947,331236 -2024-05-30 01:00:00+00:00,5279,157.371,157.456,157.351,157.452,USD_JPY,H1,57.86713286713313,0.10752909943448685,0.1315180345527121,-0.023988935118225252,157.43635,0.22300490318515492,0.12428571428570885,28.994866080321682,336515 -2024-05-30 02:00:00+00:00,2933,157.454,157.457,157.312,157.343,USD_JPY,H1,56.14927905004148,0.08556836569260895,0.12232810078069148,-0.03675973508808253,157.4485,0.2099527515829757,0.12507142857142078,27.319921411813244,333582 -2024-05-30 03:00:00+00:00,3588,157.342,157.43,157.262,157.38,USD_JPY,H1,51.772388059700624,0.07033909149947704,0.1119302989244486,-0.04159120742497156,157.4599,0.19890539936681606,0.12114285714284888,26.25758659847998,337170 -2024-05-30 04:00:00+00:00,4193,157.382,157.385,157.126,157.186,USD_JPY,H1,35.945945945947216,0.042129955405130204,0.09797023022058493,-0.05584027481545473,157.4642,0.1915074823394972,0.1261428571428484,27.18496915484183,332977 -2024-05-30 05:00:00+00:00,5864,157.19,157.229,156.903,156.966,USD_JPY,H1,22.416666666668633,0.0019988094006748724,0.07877594605660293,-0.07677713665592806,157.45454999999998,0.21151346231238355,0.13492857142856604,32.277407014655225,327113 -2024-05-30 06:00:00+00:00,8841,156.966,156.971,156.702,156.744,USD_JPY,H1,15.469208211144263,-0.04717515182105103,0.053585726481072134,-0.10076087830212316,157.43005,0.2609955585473733,0.1475714285714247,37.90173614537377,318272 -2024-05-30 07:00:00+00:00,7126,156.746,157.01,156.535,156.97,USD_JPY,H1,28.37662337662377,-0.06713566101961987,0.029441448980933732,-0.0965771100005536,157.41495,0.2787529513695441,0.1754999999999955,43.845540558266,325398 -2024-05-30 08:00:00+00:00,6735,156.968,157.116,156.907,156.946,USD_JPY,H1,26.339869281046546,-0.08392368775901105,0.006768421632944777,-0.09069210939195582,157.40235,0.2943353395495469,0.1861428571428527,48.37157261955115,318663 -2024-05-30 09:00:00+00:00,5494,156.946,156.982,156.846,156.918,USD_JPY,H1,24.95126705653091,-0.09835392309318536,-0.01425604731228125,-0.08409787578090411,157.38115,0.3135531978743039,0.19157142857142365,52.73328654100557,313169 -2024-05-30 10:00:00+00:00,4096,156.92,157.091,156.917,156.922,USD_JPY,H1,25.492772667542724,-0.10821973227984927,-0.03304878430579486,-0.07517094797405441,157.35235,0.32835896195654274,0.20114285714285327,51.41296478381633,317265 -2024-05-30 11:00:00+00:00,5237,156.92,156.921,156.68,156.732,USD_JPY,H1,23.529411764706182,-0.1298727767163541,-0.05241358278790671,-0.0774591939284474,157.30755,0.34923095585689623,0.2130714285714248,52.06302803321313,312028 -2024-05-30 12:00:00+00:00,8624,156.732,156.856,156.567,156.647,USD_JPY,H1,20.68355922215666,-0.1521380078080199,-0.07235846779192935,-0.07977954001609054,157.25560000000002,0.3668076220327368,0.22771428571428082,53.12049971085094,303404 -2024-05-30 13:00:00+00:00,10666,156.648,156.77,156.373,156.731,USD_JPY,H1,24.617996604414444,-0.16114765601022896,-0.09011630543558928,-0.07103135057463968,157.21035,0.37317687002025995,0.2511428571428545,54.239232518214706,314070 -2024-05-30 14:00:00+00:00,6565,156.708,156.85,156.528,156.594,USD_JPY,H1,26.45985401459859,-0.1772988315987334,-0.1075528106682181,-0.06974602093051528,157.15654999999998,0.3809046675898864,0.2510714285714276,58.43108199197011,307505 -2024-05-30 15:00:00+00:00,5733,156.594,156.708,156.581,156.643,USD_JPY,H1,24.860161591050556,-0.18402355513279645,-0.12284695956113378,-0.06117659557166266,157.10424999999998,0.3757241254209013,0.25264285714285756,62.286606025326705,313238 -2024-05-30 16:00:00+00:00,3818,156.641,156.734,156.64,156.698,USD_JPY,H1,29.26045016077238,-0.18280761425336323,-0.13483909049957968,-0.04796852375378355,157.05575000000002,0.3614578486047871,0.24900000000000336,65.86951149195279,317056 -2024-05-30 17:00:00+00:00,2628,156.7,156.756,156.667,156.751,USD_JPY,H1,29.980903882877428,-0.17554375613696038,-0.14298002362705584,-0.03256373250990455,157.01305,0.34313684166443614,0.24335714285714566,69.52575934560618,319684 -2024-05-30 18:00:00+00:00,3492,156.752,156.833,156.752,156.826,USD_JPY,H1,37.603305785123474,-0.16186929457984434,-0.14675787781761354,-0.015111416762230795,156.97224999999997,0.31146781113073685,0.23071428571428904,70.27273613301384,323176 -2024-05-30 19:00:00+00:00,3769,156.826,156.86,156.797,156.841,USD_JPY,H1,44.98797113071377,-0.14811443957546544,-0.14702919016918392,-0.0010852494062815188,156.9329,0.27139811503440237,0.21192857142857438,67.60233228072626,326945 -2024-05-30 20:00:00+00:00,1702,156.846,156.88,156.799,156.816,USD_JPY,H1,53.42857142857152,-0.1376442319272826,-0.14515219852080366,0.00750796659352107,156.9053,0.2522112940456964,0.19850000000000176,62.803964040431275,325243 -2024-05-30 21:00:00+00:00,673,156.81,156.818,156.764,156.786,USD_JPY,H1,39.22716627634692,-0.1302656449445294,-0.14217488780554882,0.011909242861019409,156.872,0.21785726858601043,0.16842857142857376,57.176911527199685,324570 -2024-05-30 22:00:00+00:00,978,156.79,156.856,156.738,156.802,USD_JPY,H1,41.48936170212737,-0.12172383867658709,-0.1380846779797565,0.016360839303169394,156.84494999999998,0.1878127496987897,0.16192857142857317,53.185735876718866,325548 -2024-05-30 23:00:00+00:00,2629,156.807,156.996,156.787,156.993,USD_JPY,H1,53.71655104063367,-0.09840790682935108,-0.13014932374967542,0.03174141692032434,156.8256,0.1447958272222771,0.16714285714285942,47.67559903226038,328177 -2024-05-31 00:00:00+00:00,6185,156.992,157.028,156.603,156.742,USD_JPY,H1,42.83439490445849,-0.09904177325299202,-0.12392781365033875,0.024886040397346737,156.80339999999998,0.11823144119153912,0.18507142857142916,44.740818088047035,321992 -2024-05-31 01:00:00+00:00,7078,156.744,156.926,156.639,156.679,USD_JPY,H1,47.65279007971672,-0.1034353520947775,-0.11982932133922651,0.01639396924444901,156.78905,0.11482548544321083,0.1883571428571429,39.906120308855364,314914 -2024-05-31 02:00:00+00:00,5724,156.68,156.829,156.574,156.812,USD_JPY,H1,57.00934579439327,-0.09508917765924707,-0.11488129260323063,0.019792114943983558,156.79244999999997,0.11442739597394118,0.18592857142857205,34.94798580198282,320638 -2024-05-31 03:00:00+00:00,5886,156.814,156.878,156.724,156.802,USD_JPY,H1,53.218495013599075,-0.08826423554978646,-0.1095578811925418,0.021293645642755335,156.78405,0.10660674167435517,0.1685714285714275,32.448617154972304,314752 -2024-05-31 04:00:00+00:00,3883,156.803,156.852,156.674,156.706,USD_JPY,H1,55.273069679848895,-0.08956931810735114,-0.10556016857550367,0.01599085046815253,156.77205,0.10076521696180422,0.15828571428571284,29.53735892608862,310869 -2024-05-31 05:00:00+00:00,4664,156.706,156.838,156.694,156.805,USD_JPY,H1,57.28417266187044,-0.08167364981932224,-0.10078286482426739,0.019109215004945154,156.7664,0.09516323926416713,0.15949999999999825,25.83849982971815,315533 -2024-05-31 06:00:00+00:00,6321,156.802,156.962,156.788,156.934,USD_JPY,H1,59.949409780775,-0.06426623278659349,-0.09347953841673262,0.02921330563013913,156.767,0.09622779991078874,0.16521428571428082,23.166833467911,321854 -2024-05-31 07:00:00+00:00,6406,156.931,157.155,156.931,157.145,USD_JPY,H1,64.65773809523775,-0.033063655535471526,-0.08139636184048041,0.04833270630500888,156.78765,0.1275408190671585,0.1748571428571373,21.716006528010702,328260 -2024-05-31 08:00:00+00:00,6087,157.147,157.332,157.063,157.298,USD_JPY,H1,66.59634317862134,0.003964730123215077,-0.06432414344774132,0.0682888735709564,156.8202,0.16678874126440046,0.188214285714281,21.508064378569827,334347 -2024-05-31 09:00:00+00:00,5165,157.3,157.354,157.244,157.334,USD_JPY,H1,67.08246708246642,0.03580218635013921,-0.04429887748816522,0.08010106383830443,156.85035,0.20084093601906294,0.19157142857142365,22.113359873224493,339512 -2024-05-31 10:00:00+00:00,4257,157.333,157.367,157.214,157.242,USD_JPY,H1,64.1059602648998,0.05299902884871699,-0.02483929622078878,0.07783832506950578,156.88275000000002,0.20939559011591344,0.19671428571428098,23.305478948611306,335255 -2024-05-31 11:00:00+00:00,3918,157.242,157.242,157.126,157.168,USD_JPY,H1,62.29086229086221,0.059965227058739856,-0.007878391564883054,0.06784361862362291,156.90900000000002,0.21066186426298233,0.20114285714285124,24.731632670780375,331337 -2024-05-31 12:00:00+00:00,9323,157.172,157.194,156.75,156.862,USD_JPY,H1,51.626898047722364,0.04032945383798392,0.0017631775156903406,0.03856627632229358,156.9172,0.20513579584990627,0.22442857142856504,23.6952808086405,322014 -2024-05-31 13:00:00+00:00,8239,156.863,156.958,156.678,156.698,USD_JPY,H1,41.88222344523991,0.011403085031531646,0.0036911590188586016,0.007711926012673044,156.91455000000002,0.20772184716972703,0.22949999999999346,25.04701439858612,313775 -2024-05-31 14:00:00+00:00,9650,156.696,157.166,156.56,157.16,USD_JPY,H1,60.30571992110459,0.025464726735521026,0.008045872562191088,0.017418854173329938,156.93125,0.21357184789356456,0.24242857142856572,23.872604013649244,323425 -2024-05-31 15:00:00+00:00,7872,157.161,157.278,157.08,157.194,USD_JPY,H1,62.88144072035969,0.03890373688270188,0.014217445426293246,0.024686291456408632,156.9489,0.22020418754576024,0.23607142857142296,24.689381604005924,331297 -2024-05-31 16:00:00+00:00,3681,157.193,157.247,157.15,157.18,USD_JPY,H1,59.78723404255309,0.047872719341199854,0.02094850020927457,0.026924219131925286,156.96710000000002,0.22365713892396336,0.22478571428570962,25.430703773899893,327616 -2024-05-31 17:00:00+00:00,2935,157.18,157.25,157.18,157.22,USD_JPY,H1,60.9424083769637,0.05754502503560843,0.028267805174541343,0.02927721986106709,156.9888,0.2262010284356767,0.2187857142857094,23.322676270961388,330551 -2024-05-31 18:00:00+00:00,3279,157.22,157.274,157.172,157.266,USD_JPY,H1,65.05376344086062,0.068136774225934,0.03624159898481988,0.031895175241114126,157.012,0.22979991297261598,0.21335714285713842,22.915179771481917,333830 -2024-05-31 19:00:00+00:00,3083,157.266,157.35,157.227,157.267,USD_JPY,H1,63.11010215664029,0.07573843784544465,0.04414096675694484,0.031597471088499814,157.02569999999997,0.2366723473543854,0.21185714285713736,23.6626262019336,336913 -2024-05-31 20:00:00+00:00,2515,157.266,157.346,157.234,157.302,USD_JPY,H1,61.03117505995222,0.08362306389665264,0.0520373861848864,0.031585677711766236,157.0537,0.23445773943550832,0.2074285714285671,23.106296191613858,339428 -2024-06-02 21:00:00+00:00,1282,157.233,157.302,157.198,157.228,USD_JPY,H1,52.710646636185594,0.08294437417728773,0.05821878378336667,0.024725590393921054,157.08115,0.2199699201976537,0.1988571428571382,20.52533950279851,338146 -2024-06-02 22:00:00+00:00,2002,157.236,157.34,157.194,157.293,USD_JPY,H1,49.826749826749975,0.08665258736948545,0.06390554450059042,0.02274704286889502,157.10520000000002,0.2152378366321841,0.19007142857142462,18.476815150091277,340148 -2024-06-02 23:00:00+00:00,1936,157.291,157.305,157.128,157.184,USD_JPY,H1,45.05277044854841,0.07987523203723867,0.06709948200792007,0.012775750029318605,157.1243,0.2035477701650756,0.19485714285713943,16.980044039956088,338212 -2024-06-03 00:00:00+00:00,5320,157.185,157.31,157.049,157.09,USD_JPY,H1,44.99341238471688,0.06615650370525827,0.06691088634738772,-0.0007543826421294447,157.1435,0.17859554424286064,0.20257142857142543,16.08874107250498,332892 -2024-06-03 01:00:00+00:00,4140,157.089,157.152,156.996,157.062,USD_JPY,H1,46.399456521739125,0.0524206737733266,0.0640128438325755,-0.011592170059248896,157.15635,0.16137379785436837,0.2054285714285677,15.499694057464824,328752 -2024-06-03 02:00:00+00:00,3539,157.06,157.254,157.054,157.236,USD_JPY,H1,63.955223880597984,0.05494193894031696,0.062198662854123794,-0.007256723913806835,157.17145,0.15340571423605037,0.1879999999999963,17.075457913625787,332291 -2024-06-03 03:00:00+00:00,4417,157.234,157.474,157.206,157.423,USD_JPY,H1,76.59574468085253,0.07120854909751984,0.064000640102803,0.007207908994716836,157.18535,0.16316710034185944,0.18714285714285342,19.375260151000266,336708 -2024-06-03 04:00:00+00:00,3320,157.424,157.448,157.374,157.412,USD_JPY,H1,63.81578947368593,0.08226405792041191,0.06765332366632479,0.014610734254087127,157.19105,0.16918954646778775,0.14914285714285466,21.469081362468984,333388 -2024-06-03 05:00:00+00:00,3311,157.414,157.463,157.366,157.413,USD_JPY,H1,62.457337883961266,0.0900680712953772,0.07213627319213528,0.017931798103241914,157.195,0.17356812708340977,0.14192857142856902,22.602533579405478,336699 -2024-06-03 06:00:00+00:00,4392,157.411,157.416,157.24,157.256,USD_JPY,H1,53.71819960861038,0.08263169349748978,0.07423535725320618,0.008396336244283598,157.19570000000002,0.17379573613048774,0.1475714285714247,22.281567416855264,332307 -2024-06-03 07:00:00+00:00,4139,157.254,157.296,157.112,157.14,USD_JPY,H1,46.35701275045475,0.06661023860172577,0.07271033352291009,-0.006100094921184324,157.1943,0.17414304465697197,0.15571428571428214,21.70904422956814,328168 -2024-06-03 08:00:00+00:00,5796,157.14,157.144,157.005,157.058,USD_JPY,H1,40.82892416225746,0.04675741509532827,0.06751974983739373,-0.020762334742065458,157.20409999999998,0.15934467772159297,0.15835714285713973,21.631750784312167,322372 -2024-06-03 09:00:00+00:00,4780,157.058,157.15,157.03,157.07,USD_JPY,H1,41.397379912663496,0.031627625566443385,0.06034132498320366,-0.028713699416760274,157.22269999999997,0.11176813406289149,0.158142857142855,21.816796561166033,327152 -2024-06-03 10:00:00+00:00,4522,157.072,157.077,156.736,156.74,USD_JPY,H1,30.48611111111127,-0.006911413244694131,0.046890777337624104,-0.053802190582318235,157.20170000000002,0.15519057894047394,0.17449999999999882,23.747302642233507,322630 -2024-06-03 11:00:00+00:00,5217,156.742,156.884,156.636,156.858,USD_JPY,H1,37.533692722371654,-0.027613948914478215,0.03198983208720364,-0.05960378100168186,157.18490000000003,0.1732086967619339,0.1847857142857135,26.922809077552703,327847 -2024-06-03 12:00:00+00:00,5794,156.856,156.94,156.69,156.784,USD_JPY,H1,32.95378432685813,-0.04942232929488455,0.015707399810786005,-0.06512972910567055,157.1651,0.19505462123601852,0.19221428571428387,28.999516683672194,322053 -2024-06-03 13:00:00+00:00,6154,156.784,156.838,156.642,156.664,USD_JPY,H1,32.712765957446365,-0.07551809934457765,-0.002537700020286726,-0.07298039932429093,157.1373,0.22425434338861108,0.1935714285714251,30.488495449456845,315899 -2024-06-03 14:00:00+00:00,13434,156.644,156.644,156.131,156.202,USD_JPY,H1,26.282051282050958,-0.13195759896362347,-0.028421679808954076,-0.10353591915466939,157.08409999999998,0.30410591991706554,0.21157142857142577,32.75043253490748,302465 -2024-06-03 15:00:00+00:00,7474,156.204,156.24,155.95,156.04,USD_JPY,H1,24.526420737786154,-0.18759586676813456,-0.06025651720079018,-0.12733934956734438,157.02275,0.37964968270917326,0.2211428571428574,35.39040015547186,294991 -2024-06-03 16:00:00+00:00,5678,156.042,156.166,156.018,156.066,USD_JPY,H1,18.5145317545757,-0.2269751835178795,-0.09360025046420804,-0.13337493305367143,156.96095,0.4291698811010282,0.21742857142857222,38.351927954938105,300669 -2024-06-03 17:00:00+00:00,4435,156.067,156.188,156.037,156.186,USD_JPY,H1,15.466219988833686,-0.24566866321049474,-0.12401393301346539,-0.12165473019702935,156.90884999999997,0.4573661754252972,0.20907142857142805,41.060821369737496,305104 -2024-06-03 18:00:00+00:00,4654,156.186,156.271,156.178,156.222,USD_JPY,H1,17.235682819383882,-0.2546431141011851,-0.15013976923100936,-0.10450334487017576,156.8553,0.47247011601621125,0.21042857142856924,43.91397121773215,309758 -2024-06-03 19:00:00+00:00,3421,156.222,156.288,156.204,156.236,USD_JPY,H1,17.823947512301373,-0.2576556540969932,-0.17164294620420611,-0.08601270789278709,156.8079,0.4851416396562182,0.2094999999999995,47.417288805954946,313179 -2024-06-03 20:00:00+00:00,2668,156.238,156.254,156.046,156.083,USD_JPY,H1,17.863013698629885,-0.2692847876652422,-0.19117131449641334,-0.07811347316882888,156.75754999999998,0.5061247479903276,0.21178571428571452,52.18235013079847,310511 -2024-06-03 21:00:00+00:00,502,156.084,156.114,156.05,156.113,USD_JPY,H1,20.47153536515235,-0.2729339972966045,-0.20752385105645157,-0.06541014624015293,156.7101,0.520364639360368,0.20321428571428563,57.25638435803075,311013 -2024-06-03 22:00:00+00:00,1181,156.116,156.162,156.065,156.158,USD_JPY,H1,23.560517038777277,-0.26909296213833045,-0.21983767327282736,-0.049255288865503094,156.6562,0.5188523367686391,0.2002142857142855,60.893390992531955,312194 -2024-06-03 23:00:00+00:00,2897,156.17,156.244,155.992,156.094,USD_JPY,H1,22.17787913340878,-0.2681224307506511,-0.2294946247683921,-0.03862780598225901,156.58975,0.5002484514315709,0.2096428571428573,63.31432328074793,309297 -2024-06-04 00:00:00+00:00,6467,156.095,156.406,155.981,156.39,USD_JPY,H1,39.825581395347996,-0.24069398102238893,-0.23173449601919147,-0.00895948500319746,156.53865000000002,0.4626185509531027,0.21564285714285752,62.58137409724169,315764 -2024-06-04 01:00:00+00:00,4754,156.388,156.488,156.314,156.464,USD_JPY,H1,38.24582338902123,-0.2105583696281883,-0.22749927074099086,0.016940901112802553,156.4912,0.41437061976931205,0.2103571428571444,60.7360337587388,320518 -2024-06-04 02:00:00+00:00,4309,156.463,156.465,156.32,156.376,USD_JPY,H1,37.9289940828404,-0.19156826532073978,-0.22031306965694067,0.028744804336200885,156.44719999999998,0.37360189901686963,0.20285714285714512,59.37028287573424,316209 -2024-06-04 03:00:00+00:00,3130,156.377,156.43,156.312,156.39,USD_JPY,H1,41.35101010100978,-0.17339005521864692,-0.21092846676928192,0.037538411550635004,156.4097,0.33616758039238376,0.19728571428571634,57.89104662111042,319339 -2024-06-04 04:00:00+00:00,2681,156.391,156.42,156.254,156.3,USD_JPY,H1,54.04290429042981,-0.1643513999509878,-0.2016130534056231,0.03726165345463531,156.37179999999998,0.3000155434595999,0.17250000000000146,55.27734609418258,316658 -2024-06-04 05:00:00+00:00,3939,156.301,156.307,156.093,156.198,USD_JPY,H1,56.85763888888998,-0.1635336341435618,-0.19399716955321086,0.03046353540964905,156.3282,0.25286580589514185,0.16707142857142848,52.6682387660881,312719 -2024-06-04 06:00:00+00:00,8123,156.199,156.21,155.805,155.952,USD_JPY,H1,45.845481049562316,-0.1806532349024792,-0.19132838262306454,0.010675147720585337,156.28879999999998,0.2466385806705235,0.1854285714285717,48.83458726782374,304596 -2024-06-04 07:00:00+00:00,10241,155.951,155.96,155.358,155.39,USD_JPY,H1,28.05953693494905,-0.23683921002808006,-0.20043054810406763,-0.03640866192401243,156.2154,0.28394614018811726,0.21764285714285897,45.25493358816997,294355 -2024-06-04 08:00:00+00:00,10173,155.388,155.474,155.214,155.304,USD_JPY,H1,25.375536480685454,-0.2850209374338988,-0.21734862597003388,-0.0676723114638649,156.1414,0.31869031329931263,0.2295714285714305,43.47527309723278,284182 -2024-06-04 09:00:00+00:00,10245,155.306,155.378,155.035,155.152,USD_JPY,H1,22.927072927072217,-0.33164740833663586,-0.2402083824433543,-0.09143902589328157,156.0658,0.3642729745688915,0.24807142857142953,42.150157242958336,273937 -2024-06-04 10:00:00+00:00,9298,155.152,155.197,154.704,154.934,USD_JPY,H1,22.206095791000763,-0.38178897490331565,-0.2685245009353466,-0.11326447396796907,156.00240000000002,0.44148259785832294,0.2684285714285721,41.05160542620825,264639 -2024-06-04 11:00:00+00:00,7766,154.935,155.232,154.854,154.871,USD_JPY,H1,20.428571428570777,-0.42174844757059304,-0.2991692902623959,-0.12257915730819713,155.94395,0.5085353038524519,0.29085714285714304,39.89729296029601,256873 -2024-06-04 12:00:00+00:00,10367,154.87,155.142,154.723,155.123,USD_JPY,H1,27.568270481143756,-0.428146912508538,-0.3249648147116243,-0.10318209779691367,155.89679999999998,0.539402944785442,0.3138571428571412,39.72641318125112,267240 -2024-06-04 13:00:00+00:00,8853,155.122,155.206,154.802,154.884,USD_JPY,H1,25.624496373891304,-0.44734631481023257,-0.349441114731346,-0.09790520007888659,155.8317,0.5797241721633762,0.3247142857142831,40.25474673231603,258387 -2024-06-04 14:00:00+00:00,15694,154.856,155.254,154.546,154.884,USD_JPY,H1,15.553522415369756,-0.4572906178693188,-0.37101101535894054,-0.08627960251037825,155.76479999999998,0.6087870252446543,0.3449285714285679,43.87721034436057,242693 -2024-06-04 15:00:00+00:00,8815,154.883,155.029,154.758,154.874,USD_JPY,H1,12.535344015078763,-0.4606681702048263,-0.3889424463281177,-0.07172572387670861,155.69670000000002,0.6291411940941137,0.35185714285713793,48.849107213265235,233878 -2024-06-04 16:00:00+00:00,7161,154.874,154.874,154.747,154.786,USD_JPY,H1,12.535344015078763,-0.46508456396966835,-0.4041708698564278,-0.060913694113240546,155.63185000000001,0.6535969524994937,0.35057142857142154,53.4894192459433,226717 -2024-06-04 17:00:00+00:00,6361,154.787,154.83,154.549,154.604,USD_JPY,H1,11.00436681222655,-0.477763111062103,-0.41888931809756286,-0.05887379296454015,155.5564,0.681627572336373,0.3622142857142795,58.36611875975779,220356 -2024-06-04 18:00:00+00:00,5419,154.604,154.752,154.598,154.709,USD_JPY,H1,15.488069414315774,-0.4738757834443277,-0.42988661116691584,-0.04398917227741184,155.48395,0.6912570909510845,0.3613571428571366,63.32937103730815,225775 -2024-06-04 19:00:00+00:00,3892,154.71,154.788,154.704,154.774,USD_JPY,H1,18.606701940034355,-0.4602446773797908,-0.43595822440949084,-0.024286452970299965,155.41795,0.6929585295562967,0.35207142857142265,67.75360854900599,229667 -2024-06-04 20:00:00+00:00,1462,154.774,154.912,154.771,154.896,USD_JPY,H1,25.37313432835701,-0.43458788855565444,-0.4356841572387236,0.0010962686830691681,155.34324999999998,0.6625146572364801,0.3332142857142811,71.68436246120584,231129 -2024-06-04 21:00:00+00:00,1031,154.875,154.91,154.827,154.838,USD_JPY,H1,33.17073170731628,-0.41416062792640673,-0.43137945137626027,0.017218823449853538,155.26195,0.6158687039676306,0.2961428571428521,73.01268234891609,230098 -2024-06-04 22:00:00+00:00,799,154.827,154.87,154.798,154.859,USD_JPY,H1,35.873015873015476,-0.3917613709897978,-0.4234558352989678,0.03169446430917,155.1861,0.5625500118121461,0.28271428571428153,73.16207423502348,230897 -2024-06-04 23:00:00+00:00,2782,154.86,155.184,154.825,155.118,USD_JPY,H1,48.98929845422135,-0.3490866099028267,-0.4085819902197396,0.05949538031691293,155.1225,0.485968972369193,0.2838571428571401,69.67558890633418,233679 -2024-06-05 00:00:00+00:00,7907,155.11,155.438,155.096,155.228,USD_JPY,H1,59.3392630241431,-0.30289884426599656,-0.387445361028991,0.08454651676299446,155.0689,0.40094072274856574,0.273071428571425,68.00057856017169,241586 -2024-06-05 01:00:00+00:00,6503,155.229,155.396,155.218,155.364,USD_JPY,H1,64.96660595021295,-0.2524110068665948,-0.36043849019651175,0.10802748332991696,155.0272,0.31049664800324867,0.25878571428571157,66.21825574510599,248089 -2024-06-05 02:00:00+00:00,3836,155.364,155.482,155.364,155.482,USD_JPY,H1,61.8638466622611,-0.2005654247802795,-0.32846387711326536,0.12789845233298586,155.0037,0.24839465626968096,0.23728571428571246,65.55214059156124,251925 -2024-06-05 03:00:00+00:00,4018,155.482,155.594,155.361,155.49,USD_JPY,H1,73.63494539781766,-0.157021844230826,-0.2941754705367775,0.13715362630595151,155.0087,0.2574222621546418,0.22507142857142728,64.91812233710812,255943 -2024-06-05 04:00:00+00:00,3412,155.49,155.616,155.446,155.586,USD_JPY,H1,75.4716981132093,-0.11345896096005958,-0.2580321686214339,0.14457320766137433,155.02280000000002,0.2810839170448045,0.1866428571428571,66.47827179221197,259355 -2024-06-05 05:00:00+00:00,5408,155.584,155.71,155.536,155.646,USD_JPY,H1,77.03081232493079,-0.07324919246067907,-0.22107557338928294,0.14782638092860387,155.04749999999999,0.3129350865934933,0.1797142857142871,64.95431227628532,264763 -2024-06-05 06:00:00+00:00,6515,155.646,155.924,155.617,155.898,USD_JPY,H1,84.92462311557868,-0.020808499847674966,-0.18102215868096136,0.1602136588332864,155.0957,0.3645214743515625,0.19257142857143247,63.8688879877759,271278 -2024-06-05 07:00:00+00:00,7254,155.899,156.188,155.86,156.144,USD_JPY,H1,96.49758454106319,0.040138578408686953,-0.13679001126303172,0.17692858967171868,155.15935,0.4287103395808303,0.1959285714285731,64.74148843508432,278532 -2024-06-05 08:00:00+00:00,6144,156.148,156.302,156.08,156.248,USD_JPY,H1,96.495468277946,0.0957280148954851,-0.09028640603132836,0.18601442092681347,155.21560000000002,0.49271614546350806,0.2007857142857148,65.19844417809001,284676 -2024-06-05 09:00:00+00:00,6245,156.248,156.304,156.031,156.041,USD_JPY,H1,85.25319977740729,0.12167725413846142,-0.047893673997370406,0.16957092813583183,155.27345,0.5189568965981646,0.21428571428571427,65.55309518319343,278431 -2024-06-05 10:00:00+00:00,3883,156.042,156.17,155.959,156.07,USD_JPY,H1,84.44835680751234,0.14293460962355198,-0.009728017273185934,0.1526626268967379,155.33275,0.53946853720317,0.21928571428571178,66.37974734063967,282314 -2024-06-05 11:00:00+00:00,3728,156.07,156.21,156.024,156.146,USD_JPY,H1,87.97909407665529,0.1640230264893603,0.025022191479323313,0.139000835010037,155.39634999999998,0.5572264280396987,0.22664285714285523,68.00519891779842,286042 -2024-06-05 12:00:00+00:00,9541,156.144,156.2,155.936,156.096,USD_JPY,H1,85.32267275842466,0.174687478147888,0.05495524881303625,0.11973222933485174,155.46184999999997,0.558696911996457,0.24035714285713944,69.4752243760081,276501 -2024-06-05 13:00:00+00:00,12146,156.096,156.178,155.722,155.746,USD_JPY,H1,67.04668838219406,0.1531318493544518,0.07459056892131936,0.07854128043313242,155.51895,0.5236676803798785,0.24728571428570945,72.09629114853581,264355 -2024-06-05 14:00:00+00:00,14085,155.785,156.484,155.785,156.315,USD_JPY,H1,73.62016514558934,0.17988875728715925,0.09565020659448734,0.08423855069267192,155.59925,0.516009167096053,0.2755714285714248,72.76925054163704,278440 -2024-06-05 15:00:00+00:00,8775,156.316,156.316,156.083,156.212,USD_JPY,H1,68.69488536155215,0.1905856081485524,0.11463728690530035,0.07594832124325206,155.67114999999998,0.4947129178155314,0.2794999999999967,73.43565078005851,269665 -2024-06-05 16:00:00+00:00,6605,156.21,156.246,156.1,156.124,USD_JPY,H1,64.34316353887428,0.1897744729755857,0.12966472411935742,0.06010974885622827,155.73255,0.4689794603301056,0.28149999999999814,72.42415750052383,263060 -2024-06-05 17:00:00+00:00,3804,156.123,156.152,156.072,156.104,USD_JPY,H1,63.64444444444506,0.18538085455827513,0.14080795020714096,0.044572904351134174,155.79585,0.42528693410078783,0.2705714285714253,70.71245365877506,259256 -2024-06-05 18:00:00+00:00,3666,156.104,156.161,156.072,156.098,USD_JPY,H1,61.85185185185235,0.179347326116698,0.1485158253890524,0.030831500727645622,155.8578,0.36802182429717545,0.2647857142857098,65.59581301067726,255590 -2024-06-05 19:00:00+00:00,2663,156.098,156.134,156.07,156.091,USD_JPY,H1,60.560037968676646,0.17201795396314878,0.1532162511038717,0.018801702859277097,155.90645,0.327116826871121,0.25692857142856595,62.74405872767708,252927 -2024-06-05 20:00:00+00:00,1970,156.09,156.162,156.089,156.109,USD_JPY,H1,55.632674853177264,0.16575114724497553,0.15572323033209245,0.010027916912883073,155.9505,0.28791692881100744,0.24021428571427958,58.520418897350794,254897 -2024-06-05 21:00:00+00:00,238,156.059,156.072,155.997,156.06,USD_JPY,H1,47.494033412887624,0.15504352206983185,0.15558728867964033,-0.0005437666098084826,155.9853,0.253274783171828,0.22214285714285203,52.83993918369806,254659 -2024-06-05 22:00:00+00:00,1651,156.05,156.114,155.854,155.886,USD_JPY,H1,39.63344788087043,0.13100713742181824,0.15067125842807594,-0.019664121006257695,156.0055,0.22562229733320924,0.2248571428571385,49.62920539302741,253008 -2024-06-05 23:00:00+00:00,3582,155.885,156.02,155.802,155.914,USD_JPY,H1,45.947670708359496,0.11291587153039018,0.1431201810485388,-0.03020430951814862,156.0267,0.192058954767978,0.22092857142856864,46.857053225072946,256590 -2024-06-06 00:00:00+00:00,6306,155.912,155.927,155.594,155.65,USD_JPY,H1,38.34628190898994,0.07639518319348326,0.1297751814775277,-0.05337999828404444,156.0299,0.18472280798748758,0.22964285714285534,45.216776243640695,250284 -2024-06-06 01:00:00+00:00,6519,155.652,155.728,155.356,155.647,USD_JPY,H1,35.569693464430074,0.046672191668051255,0.11315458351563241,-0.06648239184758116,156.02995,0.18461352947296686,0.24292857142857013,44.493742833303465,243765 -2024-06-06 02:00:00+00:00,5170,155.648,155.706,155.43,155.652,USD_JPY,H1,36.817102137766476,0.023251931166129225,0.09517405304573179,-0.07192212187960256,156.01765,0.20130763967313764,0.24378571428571302,44.306092093661114,248935 -2024-06-06 03:00:00+00:00,4241,155.652,155.691,155.53,155.571,USD_JPY,H1,43.81625441696057,-0.0018237935138927241,0.07577448373380688,-0.0775982772476996,155.98899999999998,0.22208177725950548,0.22271428571428536,45.89814330620522,244694 -2024-06-06 04:00:00+00:00,5167,155.57,155.948,155.562,155.734,USD_JPY,H1,21.209117938553177,-0.008446383579268968,0.05893031027119171,-0.06737669385046068,155.96329999999998,0.22026541406407926,0.19757142857142793,48.075938009860174,249861 -2024-06-06 05:00:00+00:00,5515,155.734,155.962,155.713,155.909,USD_JPY,H1,35.98519888991635,0.00042134652423442276,0.04722851752180025,-0.04680717099756583,155.9567,0.2197917914303944,0.19871428571428446,48.27908233806083,255376 -2024-06-06 06:00:00+00:00,8020,155.91,156.182,155.814,156.065,USD_JPY,H1,47.432550043516144,0.019808641089383627,0.041744542235316935,-0.021935901145933308,155.95645,0.21965894018053164,0.2145714285714259,46.81660719137507,263396 -2024-06-06 07:00:00+00:00,5762,156.064,156.312,156.03,156.28,USD_JPY,H1,56.54761904761862,0.05192337453968321,0.04378030869619019,0.008143065843493016,155.96315,0.22764336720585582,0.2289999999999992,44.97122543448864,269158 -2024-06-06 08:00:00+00:00,5325,156.28,156.38,156.12,156.162,USD_JPY,H1,52.19780219780197,0.06707966570974122,0.0484401800989004,0.01863948561084082,155.96645,0.23013530917171388,0.24121428571428435,42.84969368315698,263833 -2024-06-06 09:00:00+00:00,4683,156.163,156.21,155.912,155.972,USD_JPY,H1,46.3697376449054,0.06303311701722691,0.05135876748256571,0.011674349534661205,155.97775000000001,0.2242134497613552,0.25792857142857073,41.983316500376944,259150 -2024-06-06 10:00:00+00:00,3993,155.97,156.101,155.894,156.037,USD_JPY,H1,47.86476868327391,0.06432960317528114,0.0539529346211088,0.010376668554172339,155.96385,0.2103969368928009,0.2674999999999983,42.25467043396179,263143 -2024-06-06 11:00:00+00:00,3635,156.039,156.234,156.03,156.194,USD_JPY,H1,53.73467112597518,0.07713648431706588,0.05858964456030021,0.018546839756765666,155.96295,0.20931529353227843,0.27671428571428536,40.95060926476855,266778 -2024-06-06 12:00:00+00:00,10956,156.194,156.345,155.897,156.283,USD_JPY,H1,61.614979520187354,0.09339103239889823,0.06554992212801981,0.02784111027087842,155.9709,0.21856900632881293,0.290142857142858,37.587582682247834,277734 -2024-06-06 13:00:00+00:00,11773,156.282,156.448,155.907,156.137,USD_JPY,H1,56.10290093048769,0.09341506827612989,0.07112295135764184,0.02229211691848805,155.97255,0.2197480554999008,0.31321428571428506,34.249832235878394,265961 -2024-06-06 14:00:00+00:00,7987,156.138,156.346,156.002,156.03,USD_JPY,H1,61.377245508982185,0.08383372808566492,0.07366510670324646,0.01016862138241846,155.96914999999998,0.2182256859337294,0.31399999999999906,32.087046784797366,257974 -2024-06-06 15:00:00+00:00,6881,156.03,156.094,155.932,155.982,USD_JPY,H1,59.76676384839704,0.07154255012346766,0.0732405953872907,-0.001698045263823042,155.96370000000002,0.21637567233907767,0.2989999999999985,30.22659447289168,251093 -2024-06-06 16:00:00+00:00,5248,155.981,156.069,155.77,155.802,USD_JPY,H1,53.9682539682542,0.04673843576421177,0.06794016346267492,-0.021201727698463152,155.94834999999998,0.21641487326347147,0.3006428571428553,27.15077277031464,245845 -2024-06-06 17:00:00+00:00,4362,155.802,155.872,155.713,155.763,USD_JPY,H1,55.19480519480552,0.023661269975434607,0.059084384765226865,-0.03542311478979226,155.93349999999998,0.21852989678915874,0.30049999999999955,24.03583469557429,241483 -2024-06-06 18:00:00+00:00,3723,155.763,155.792,155.653,155.678,USD_JPY,H1,48.41807909604483,-0.001469401454215813,0.04697362752133833,-0.048443028975554144,155.9231,0.22573992954430705,0.2828571428571434,18.722326549604873,237760 -2024-06-06 19:00:00+00:00,5454,155.677,155.742,155.474,155.612,USD_JPY,H1,41.05960264900657,-0.026406885891077536,0.03229752483885516,-0.058704410729932696,155.908,0.23623716896622884,0.2842142857142867,16.067867294697752,232306 -2024-06-06 20:00:00+00:00,3141,155.616,155.662,155.568,155.618,USD_JPY,H1,35.208471211118066,-0.04516523539697914,0.0168049727916883,-0.06197020818866744,155.90640000000002,0.2381769355600078,0.264642857142858,17.248531950148678,235447 -2024-06-06 21:00:00+00:00,1520,155.602,155.734,155.568,155.614,USD_JPY,H1,24.384615384614605,-0.059666332754602536,0.0015107116824301312,-0.06117704443703267,155.90475,0.24017447057704577,0.2563571428571428,19.904328782155876,233927 -2024-06-06 22:00:00+00:00,919,155.614,155.624,155.556,155.622,USD_JPY,H1,27.31092436974764,-0.0697094565219345,-0.012733321958442796,-0.0569761345634917,155.90325,0.24192340567150225,0.24264285714285652,23.613402188821187,234846 -2024-06-06 23:00:00+00:00,2217,155.62,155.719,155.581,155.678,USD_JPY,H1,36.07954545454432,-0.07231635455593732,-0.0246499284779417,-0.04766642607799562,155.9086,0.2352811084664005,0.23121428571428534,24.585190065815926,237063 -2024-06-07 00:00:00+00:00,6081,155.68,155.85,155.58,155.774,USD_JPY,H1,37.90248390064329,-0.0658765583768286,-0.032895254457719084,-0.032981303919109514,155.9106,0.23388467693810952,0.2357142857142845,24.082262724509825,243144 -2024-06-07 01:00:00+00:00,6553,155.774,155.938,155.662,155.684,USD_JPY,H1,25.0,-0.06725989118945108,-0.03976818180406549,-0.027491709385385595,155.89935,0.23931399215940793,0.2408571428571398,24.950756533861835,236591 -2024-06-07 02:00:00+00:00,4248,155.683,155.846,155.674,155.814,USD_JPY,H1,27.898209236569116,-0.05720683409180083,-0.04325591226161256,-0.01395092183018827,155.8868,0.2367373850384384,0.22114285714285334,24.841146521491314,240839 -2024-06-07 03:00:00+00:00,3967,155.814,155.827,155.738,155.752,USD_JPY,H1,30.296827021494337,-0.05362444651851206,-0.04532961911299246,-0.008294827405519602,155.86039999999997,0.2193858413151229,0.1888571428571392,25.939377800614604,236872 -2024-06-07 04:00:00+00:00,3405,155.752,155.76,155.496,155.581,USD_JPY,H1,28.4341978866468,-0.06384765344517973,-0.04903322597942991,-0.014814427465749819,155.83135,0.21578455995941723,0.18314285714285258,27.21977637673953,233467 -2024-06-07 05:00:00+00:00,4238,155.578,155.703,155.442,155.516,USD_JPY,H1,27.977315689980557,-0.07631486510061336,-0.05448955380366661,-0.021825311296946752,155.80855,0.22407270319441688,0.1902142857142804,27.185861755787236,229229 -2024-06-07 06:00:00+00:00,7824,155.514,155.538,155.132,155.36,USD_JPY,H1,28.626692456479958,-0.09765738289218007,-0.0631231196213693,-0.03453426327081077,155.7747,0.23842180666994556,0.19785714285713954,28.7772119859759,221405 -2024-06-07 07:00:00+00:00,7857,155.362,155.439,155.122,155.419,USD_JPY,H1,33.68121442125225,-0.10855927138538846,-0.07221034997417314,-0.03634892141121532,155.73595,0.2294997936036928,0.20914285714285086,30.532080234591344,229262 -2024-06-07 08:00:00+00:00,7727,155.418,155.566,155.312,155.358,USD_JPY,H1,34.46601941747565,-0.12072959118623316,-0.08191419821658515,-0.03881539296964802,155.68970000000002,0.2053923331754211,0.2173571428571352,32.47637501714248,221535 -2024-06-07 09:00:00+00:00,5125,155.359,155.496,155.332,155.486,USD_JPY,H1,44.23076923076878,-0.11867808001949243,-0.08926697457716662,-0.029411105442325808,155.65715,0.18089842308481976,0.20992857142856483,33.081820268247206,226660 -2024-06-07 10:00:00+00:00,3594,155.484,155.6,155.454,155.576,USD_JPY,H1,48.21428571428559,-0.10853882676900639,-0.09312134501553458,-0.01541748175347181,155.63445000000002,0.15878203365428564,0.21364285714285,30.363792332507813,230254 -2024-06-07 11:00:00+00:00,5260,155.574,155.64,155.43,155.592,USD_JPY,H1,49.074074074074424,-0.09808170440155095,-0.09411341689273786,-0.00396828750881309,155.61495000000002,0.1361943174515914,0.21678571428570592,27.291900925342812,235514 -2024-06-07 12:00:00+00:00,15929,155.592,156.878,155.38,156.78,USD_JPY,H1,74.45101351351359,0.00599816872846759,-0.07409109976849679,0.08008926849696438,155.66385,0.2926250115238251,0.31892857142856357,26.954388334704383,251443 -2024-06-07 13:00:00+00:00,12700,156.781,156.984,156.624,156.958,USD_JPY,H1,75.70281124498014,0.10167330387335483,-0.03893821904012647,0.14061152291348128,155.7236,0.41170702409016025,0.334785714285707,28.497734385351205,264143 -2024-06-07 14:00:00+00:00,10788,156.956,157.076,156.78,156.869,USD_JPY,H1,72.04993958920679,0.16837407011081496,0.002524238790061816,0.16584983132075315,155.78315,0.4844687024826713,0.33664285714285064,31.247232292515694,253355 -2024-06-07 15:00:00+00:00,8864,156.87,156.889,156.427,156.598,USD_JPY,H1,67.15465465465522,0.1970954787571202,0.0414384867834735,0.15565699197364669,155.83245000000002,0.5153214096699723,0.3499285714285674,32.06772729902886,244491 -2024-06-07 16:00:00+00:00,6100,156.598,156.69,156.513,156.666,USD_JPY,H1,66.37202152190663,0.22277640600128734,0.07770607062703627,0.14507033537425107,155.88484999999997,0.5448065108014747,0.35028571428571,34.174148900995476,250591 -2024-06-07 17:00:00+00:00,5204,156.668,156.738,156.573,156.606,USD_JPY,H1,66.42307692307685,0.23557170334640887,0.1092791971709108,0.1262925061754981,155.93445,0.5636797779825631,0.35571428571428093,35.15943695561116,245387 -2024-06-07 18:00:00+00:00,5118,156.606,156.692,156.565,156.638,USD_JPY,H1,71.47501015847288,0.245464637695477,0.13651628527582405,0.10894835241965295,155.98525,0.5795963999572216,0.34592857142856864,35.269164054593276,250505 -2024-06-07 19:00:00+00:00,3596,156.638,156.764,156.62,156.744,USD_JPY,H1,74.54036770583596,0.2588740348328429,0.1609878351872278,0.09788619964561507,156.03855000000001,0.5985591889135977,0.33757142857142647,35.78791546789223,254101 -2024-06-07 20:00:00+00:00,2570,156.747,156.774,156.676,156.772,USD_JPY,H1,79.7388374052232,0.2686634595434896,0.18252296005848018,0.0861404994850094,156.08845000000002,0.6166697892298171,0.315571428571427,37.435185485187425,256671 -2024-06-09 21:00:00+00:00,544,156.781,156.881,156.68,156.756,USD_JPY,H1,78.67867867867893,0.2719951916154457,0.2004174063698733,0.07157778524557243,156.14204999999998,0.6261803569860047,0.3072857142857138,39.36878097511997,256127 -2024-06-09 22:00:00+00:00,2339,156.764,156.946,156.708,156.904,USD_JPY,H1,81.96856906534376,0.28331213051382065,0.21699635119866278,0.06631577931515786,156.19655,0.6433252819705939,0.3061428571428572,42.55600388399066,258466 -2024-06-09 23:00:00+00:00,2862,156.908,156.915,156.805,156.826,USD_JPY,H1,78.29391891891939,0.2827278275935612,0.23014264647764246,0.05258518111591873,156.25025,0.6490636879799837,0.3022857142857122,46.563862404018224,255604 -2024-06-10 00:00:00+00:00,6478,156.826,156.968,156.72,156.84,USD_JPY,H1,77.57417102966895,0.2801648799769225,0.2401470931774985,0.04001778679942403,156.3132,0.6417511076828276,0.3095714285714268,51.253911515033124,262082 -2024-06-10 01:00:00+00:00,5378,156.837,156.982,156.772,156.904,USD_JPY,H1,78.03418803418832,0.28006952352538406,0.2481315792470756,0.031937944278308456,156.3826,0.6258566676346375,0.3095714285714288,55.7410182154274,267460 -2024-06-10 02:00:00+00:00,2773,156.905,156.996,156.888,156.98,USD_JPY,H1,58.14332247556988,0.2828658166357627,0.25507842672481307,0.027787389910949645,156.46359999999999,0.5903696790118054,0.2102857142857155,53.23367681877365,270233 -2024-06-10 03:00:00+00:00,3916,156.981,157.194,156.971,157.152,USD_JPY,H1,57.937806873976925,0.2955539002220746,0.2631735214242654,0.032380378797809195,156.55025,0.5551069953780496,0.20049999999999915,51.2920780154685,274149 -2024-06-10 04:00:00+00:00,4664,157.153,157.181,157.024,157.126,USD_JPY,H1,61.08714408973337,0.3000524967615661,0.2705493164917256,0.0295031802698405,156.63864999999998,0.492494645978758,0.19057142857142903,48.73375434058925,269485 -2024-06-10 05:00:00+00:00,4134,157.122,157.171,157.026,157.067,USD_JPY,H1,74.76240760295781,0.29545108383084084,0.27552966995954864,0.019921413871292204,156.71769999999998,0.4191703710927567,0.16792857142856935,53.687003370262666,265351 -2024-06-10 06:00:00+00:00,6565,157.066,157.184,157.008,157.106,USD_JPY,H1,73.96514161220163,0.2915901354226662,0.2787417630521722,0.012848372370494021,156.7942,0.3299621349919426,0.16785714285714043,55.89396874942572,271916 -2024-06-10 07:00:00+00:00,8157,157.105,157.106,156.932,157.003,USD_JPY,H1,70.65556711758634,0.2770256871208403,0.27839854786590584,-0.0013728607450655406,156.86475,0.17280834379861343,0.1684999999999986,56.34731653561924,263759 -2024-06-10 08:00:00+00:00,7638,157.001,157.04,156.878,156.958,USD_JPY,H1,66.42710472279339,0.2588680630994986,0.2744924509126244,-0.015624387813125806,156.87365,0.1727975009020934,0.17099999999999835,55.16896575415457,256121 -2024-06-10 09:00:00+00:00,6860,156.96,156.97,156.786,156.9,USD_JPY,H1,58.42332613391024,0.23706516036938297,0.2670069928039761,-0.02994183243459314,156.87075,0.17179114462229209,0.17385714285714066,51.872161901954776,249261 -2024-06-10 10:00:00+00:00,5802,156.9,156.912,156.744,156.828,USD_JPY,H1,52.886597938145094,0.21153792705808883,0.25591317965479865,-0.044375252596709824,156.8687,0.17205754851855184,0.17885714285714016,46.63958936405417,243459 -2024-06-10 11:00:00+00:00,3984,156.828,156.969,156.814,156.883,USD_JPY,H1,56.29335976214147,0.19351473369962946,0.2434334904637648,-0.04991875676413535,156.88295,0.1598250606201377,0.17557142857142644,41.80462128264529,247443 -2024-06-10 12:00:00+00:00,5897,156.882,157.008,156.8,156.978,USD_JPY,H1,53.87029288703009,0.18476704963015322,0.23170020229704252,-0.0469331526668893,156.89855,0.1525980185500663,0.1734285714285692,37.33287544173248,253340 -2024-06-10 13:00:00+00:00,5973,156.98,156.998,156.817,156.898,USD_JPY,H1,53.75782881002114,0.16942607721523473,0.219245377280681,-0.04981930006544627,156.91315,0.13622515225731308,0.17849999999999763,32.747870997129795,247367 -2024-06-10 14:00:00+00:00,3805,156.898,156.947,156.832,156.904,USD_JPY,H1,53.36842105263135,0.15595464780508905,0.20658723138556262,-0.05063258358047357,156.92645,0.11996204444549682,0.16899999999999896,28.476455072309278,251172 -2024-06-10 15:00:00+00:00,4072,156.905,156.974,156.886,156.94,USD_JPY,H1,51.95227765726695,0.14649464302158322,0.19456871371276677,-0.04807407069118355,156.93625,0.11201544772310316,0.16028571428571223,24.386764443018077,255244 -2024-06-10 16:00:00+00:00,4298,156.939,157.002,156.912,156.995,USD_JPY,H1,50.832408435072985,0.1418009681282797,0.18401516459586936,-0.04221419646758967,156.9474,0.10572775367442877,0.1589999999999979,23.98215668126172,259542 -2024-06-10 17:00:00+00:00,5347,156.994,157.065,156.954,157.004,USD_JPY,H1,39.97289972899716,0.13722557078304476,0.17465724583330444,-0.03743167505025968,156.9598,0.09621335940831237,0.15099999999999827,23.417685704029832,264889 -2024-06-10 18:00:00+00:00,4088,157.004,157.094,156.984,157.081,USD_JPY,H1,47.148288973382975,0.13821948373728787,0.16736969341410113,-0.029150209676813255,156.96865,0.09891318629676862,0.1476428571428536,22.827239967122107,268977 -2024-06-10 19:00:00+00:00,3114,157.078,157.096,157.01,157.014,USD_JPY,H1,46.67503136762865,0.1320783103112717,0.16031141679353525,-0.028233106482263542,156.97805,0.09342403332299842,0.1434285714285701,16.28577509334274,265863 -2024-06-10 20:00:00+00:00,1476,157.013,157.062,156.996,157.032,USD_JPY,H1,45.23195876288752,0.12719758115625268,0.15368864966607876,-0.026491068509826077,156.98764999999997,0.08821103584275929,0.1355714285714283,12.170397659734965,267339 -2024-06-10 21:00:00+00:00,692,157.029,157.058,156.964,157.02,USD_JPY,H1,51.24087591241058,0.12096683801593144,0.1471442873360493,-0.026177449320117868,156.99345,0.08621239074601147,0.1298571428571417,9.535079768719255,266647 -2024-06-10 22:00:00+00:00,2157,157.02,157.042,156.96,157.036,USD_JPY,H1,55.945121951219946,0.11598301546425205,0.14091203296168986,-0.02492901749743781,156.99624999999997,0.08666078760096547,0.12414285714285508,8.506651267270243,268804 -2024-06-10 23:00:00+00:00,1912,157.038,157.076,157.02,157.044,USD_JPY,H1,61.88118811881244,0.11139474405808869,0.13500857518096965,-0.023613831122880957,156.99085,0.07951515911237812,0.11499999999999691,12.04403360794399,270716 -2024-06-11 00:00:00+00:00,5652,157.044,157.266,157.035,157.216,USD_JPY,H1,77.4787535410773,0.1202512864713583,0.13205711743904738,-0.011805830967689085,156.99535,0.0894875910376635,0.11949999999999607,18.06546624163057,276368 -2024-06-11 01:00:00+00:00,4553,157.216,157.241,157.13,157.221,USD_JPY,H1,75.76219512195163,0.12621864834534335,0.1308894236203066,-0.004670775274963235,157.00305,0.10176105915456204,0.11635714285714016,23.34343924458079,280921 -2024-06-11 02:00:00+00:00,3177,157.223,157.29,157.188,157.29,USD_JPY,H1,74.76190476190473,0.1349598162141774,0.13170350213908077,0.0032563140750966335,157.01225,0.11849933378562112,0.10878571428571197,28.3350103646375,284098 -2024-06-11 03:00:00+00:00,2754,157.289,157.336,157.196,157.221,USD_JPY,H1,76.09046849757975,0.1347660324508695,0.13231600820143852,0.002450024249430971,157.02315000000002,0.1273029023618579,0.1058571428571428,33.721859614596205,281344 -2024-06-11 04:00:00+00:00,2623,157.22,157.292,157.203,157.266,USD_JPY,H1,77.50759878419706,0.13666815591318482,0.13318643774378777,0.0034817181693970467,157.03855000000001,0.13724794122616576,0.1039999999999992,39.1701566113573,283967 -2024-06-11 05:00:00+00:00,3204,157.266,157.303,157.148,157.281,USD_JPY,H1,76.76609105180835,0.1377975329174319,0.1341086567785166,0.0036888761389153035,157.0576,0.14331246686982593,0.10878571428571401,43.00745116070823,287171 -2024-06-11 06:00:00+00:00,4397,157.282,157.33,157.212,157.28,USD_JPY,H1,74.44253859348414,0.1370322581153971,0.1346933770458927,0.0023388810695043893,157.08020000000002,0.14081738828905063,0.11078571428571544,46.684014254851526,282774 -2024-06-11 07:00:00+00:00,4557,157.281,157.367,157.251,157.342,USD_JPY,H1,76.57232704402828,0.13981693161110798,0.13571808795893578,0.004098843652172196,157.10315,0.1443458110246465,0.11114285714285797,49.79298020154604,287331 -2024-06-11 08:00:00+00:00,4214,157.34,157.395,157.196,157.222,USD_JPY,H1,60.38291605302099,0.13083265094124386,0.1347410005553974,-0.003908349614153539,157.11535,0.14352050101991407,0.11750000000000276,52.21620694309843,283117 -2024-06-11 09:00:00+00:00,7100,157.222,157.291,157.143,157.247,USD_JPY,H1,68.28885400314002,0.12429701621766753,0.13265220368785144,-0.008355187470183906,157.1328,0.13676048984061778,0.12192857142857301,53.685910701519326,290217 -2024-06-11 10:00:00+00:00,5032,157.246,157.248,157.087,157.098,USD_JPY,H1,54.296875000000156,0.1058739745827495,0.12729655786683106,-0.02142258328408156,157.14249999999998,0.12614632273415705,0.1287142857142872,54.58086250306729,285185 -2024-06-11 11:00:00+00:00,5381,157.097,157.178,157.052,157.102,USD_JPY,H1,55.39473684210491,0.09055251490201499,0.11994774927386785,-0.02939523437185286,157.1506,0.11735389573687449,0.13100000000000225,55.584116607382676,290566 -2024-06-11 12:00:00+00:00,7971,157.1,157.114,156.808,156.894,USD_JPY,H1,42.542016806722884,0.060923992190339504,0.10814299785716218,-0.047219005666822675,157.14555000000001,0.12623890259672976,0.14700000000000354,55.53617768931108,282595 -2024-06-11 13:00:00+00:00,7582,156.897,157.164,156.894,157.14,USD_JPY,H1,54.03361344537721,0.05664040326021791,0.09784247893777334,-0.04120207567755543,157.15235,0.12179762119529755,0.16228571428571772,52.53865498080601,290177 -2024-06-11 14:00:00+00:00,7489,157.141,157.336,157.104,157.32,USD_JPY,H1,54.340567612687266,0.06699781474503652,0.09167354609922598,-0.024675731354189462,157.1643,0.12607812950456962,0.16235714285714664,47.546415504629245,297666 -2024-06-11 15:00:00+00:00,5854,157.318,157.388,157.252,157.325,USD_JPY,H1,54.340567612687266,0.07474794836136311,0.08828842655165342,-0.013540478190290306,157.17985,0.12574337903430616,0.1641428571428593,42.06551175742872,303520 -2024-06-11 16:00:00+00:00,4079,157.324,157.404,157.3,157.381,USD_JPY,H1,53.83966244725772,0.08443539836437708,0.08751782091419816,-0.003082422549821079,157.1973,0.12833512872833916,0.1642857142857151,36.83700613397841,307599 -2024-06-11 17:00:00+00:00,6315,157.382,157.382,157.104,157.121,USD_JPY,H1,46.36627906976766,0.07032231334261496,0.08407871939988151,-0.013756406057266551,157.20235000000002,0.12286161450329423,0.1741428571428563,33.025064997329444,301284 -2024-06-11 18:00:00+00:00,5082,157.12,157.13,157.015,157.015,USD_JPY,H1,41.26652748782193,0.050007818657860525,0.07726453925147733,-0.027256720593616807,157.2013,0.12443772487066379,0.1759999999999999,29.841232423288403,296202 -2024-06-11 19:00:00+00:00,4106,157.016,157.088,156.935,157.088,USD_JPY,H1,43.54515050167198,0.03934537617084288,0.06968070663535045,-0.030335330464507565,157.2035,0.12187288460756313,0.17585714285714207,28.212865545150635,300308 -2024-06-11 20:00:00+00:00,2148,157.092,157.15,157.072,157.14,USD_JPY,H1,45.472186287192336,0.03469137848250625,0.06268284100478161,-0.027991462522275357,157.1997,0.1226450162157642,0.17299999999999777,26.29935160156128,302456 -2024-06-11 21:00:00+00:00,1010,157.103,157.138,157.082,157.125,USD_JPY,H1,42.76184122748453,0.02945315945623861,0.05603690469507301,-0.026583745238834403,157.19490000000002,0.12364205553652753,0.16871428571428534,24.801424120596234,301446 -2024-06-11 22:00:00+00:00,815,157.122,157.159,157.075,157.145,USD_JPY,H1,47.248034310221655,0.026608934755245173,0.05015131070710745,-0.023542375951862274,157.18765000000002,0.12201262877875398,0.16049999999999898,24.287370168511625,302261 -2024-06-11 23:00:00+00:00,1907,157.136,157.18,157.058,157.115,USD_JPY,H1,45.29914529914511,0.021684155462367016,0.044457879658159366,-0.02277372419579235,157.18234999999999,0.12278748222853862,0.1586428571428574,24.31279291514017,300354 -2024-06-12 00:00:00+00:00,5322,157.112,157.22,157.069,157.183,USD_JPY,H1,53.2123960695382,0.023003098689173385,0.04016692346436217,-0.017163824775188782,157.1782,0.12120387349385724,0.15792857142857233,24.353848385053453,305676 -2024-06-12 01:00:00+00:00,5219,157.182,157.248,157.047,157.139,USD_JPY,H1,51.35730007336783,0.020264343682384833,0.0361864075079667,-0.015922063825581867,157.1711,0.11900415739050763,0.1632857142857144,24.021174121289214,300457 -2024-06-12 02:00:00+00:00,3649,157.138,157.19,157.096,157.187,USD_JPY,H1,62.17788861180435,0.02171672259524371,0.033292470525422106,-0.011575747930178397,157.16645,0.11631150326605844,0.148142857142856,24.353103491977148,304106 -2024-06-12 03:00:00+00:00,3161,157.186,157.214,157.164,157.184,USD_JPY,H1,52.291666666667226,0.022367826044387584,0.031107541629215203,-0.008739715584827619,157.15855000000002,0.10888935718330275,0.1324285714285724,24.638403782886176,300945 -2024-06-12 04:00:00+00:00,2328,157.184,157.256,157.13,157.242,USD_JPY,H1,45.34606205250576,0.027249826455602033,0.03033599859449257,-0.003086172138890536,157.15955,0.10959229468882382,0.12485714285714421,23.499931865193936,303273 -2024-06-12 05:00:00+00:00,3069,157.242,157.287,157.194,157.244,USD_JPY,H1,45.14970059880311,0.030923760379408805,0.030453550951475818,0.00047020942793298687,157.1594,0.10946828429133258,0.1217857142857172,23.305377809146062,306342 -2024-06-12 06:00:00+00:00,5761,157.244,157.296,157.189,157.288,USD_JPY,H1,44.34993924665927,0.03695976262309841,0.03175479328580034,0.005204969337298075,157.1689,0.1120727677256882,0.12200000000000395,22.91832616638685,312103 -2024-06-12 07:00:00+00:00,4474,157.287,157.358,157.254,157.265,USD_JPY,H1,62.286689419792395,0.03943287249924765,0.0332904091284898,0.006142463370757849,157.17704999999998,0.11287556027682846,0.10957142857143408,24.28422891557441,307629 -2024-06-12 08:00:00+00:00,3107,157.267,157.318,157.254,157.304,USD_JPY,H1,77.84200385356424,0.04403222784381455,0.03543877287155475,0.0085934549722598,157.19755,0.09449894180657153,0.10592857142857781,27.900998933940905,310736 -2024-06-12 09:00:00+00:00,3954,157.306,157.33,157.253,157.316,USD_JPY,H1,74.89082969432263,0.048091184562821354,0.037969255209808074,0.01012192935301328,157.20635000000001,0.0970188668707534,0.10050000000000889,35.12974675939991,314690 -2024-06-12 10:00:00+00:00,4233,157.316,157.371,157.304,157.328,USD_JPY,H1,72.48803827751208,0.0516804961282844,0.040711503393503344,0.01096899273478106,157.20675,0.09752725666214261,0.0997142857142949,42.871045033095086,318923 -2024-06-12 11:00:00+00:00,4485,157.329,157.367,157.306,157.334,USD_JPY,H1,75.5501222493861,0.05438231577497277,0.04344566586979723,0.010936649905175538,157.2072,0.09812054885615702,0.1000714285714354,49.84575665687604,323408 -2024-06-12 12:00:00+00:00,13677,157.333,157.352,156.066,156.162,USD_JPY,H1,18.51377322229399,-0.03761349294370575,0.027233834107096632,-0.06484732705080239,157.14624999999998,0.24824263916025857,0.18592857142857813,51.66611171863913,309731 -2024-06-12 13:00:00+00:00,14327,156.166,156.177,155.773,155.78,USD_JPY,H1,15.10716152639884,-0.1397342719347705,-0.006159787101276792,-0.1335744848334937,157.0792,0.39383079455432707,0.206071428571434,54.52731162207965,295404 -2024-06-12 14:00:00+00:00,12156,155.781,156.112,155.722,155.782,USD_JPY,H1,12.073632918247625,-0.21799147174903055,-0.048526124030827546,-0.169465347718203,157.01755,0.48933590604998395,0.22314285714286086,58.33640307162045,307560 -2024-06-12 15:00:00+00:00,8190,155.778,155.889,155.737,155.885,USD_JPY,H1,17.103882476390922,-0.2686033351732817,-0.09254156625931839,-0.17606176891396333,156.9574,0.5503534175535396,0.2196428571428624,62.741456420865134,315750 -2024-06-12 16:00:00+00:00,5169,155.886,155.909,155.72,155.8,USD_JPY,H1,14.307771487391364,-0.3119761246348105,-0.13642847793441681,-0.1755476467003937,156.8904,0.605733170369991,0.2264285714285766,66.52918556119415,310581 -2024-06-12 17:00:00+00:00,5371,155.8,155.99,155.76,155.907,USD_JPY,H1,18.80801172447555,-0.33386675883244266,-0.175916134114022,-0.15795062471842067,156.8295,0.6411011497515323,0.23928571428571996,70.13794840468965,315952 -2024-06-12 18:00:00+00:00,22235,155.898,156.69,155.873,156.605,USD_JPY,H1,38.14663193152219,-0.29153187954190685,-0.19903928319959896,-0.09249259634230789,156.80249999999998,0.6384802267902934,0.28864285714286303,71.86774852925764,338187 -2024-06-12 19:00:00+00:00,11034,156.606,156.878,156.532,156.84,USD_JPY,H1,43.08219178082202,-0.23629478745340293,-0.20649038405035977,-0.02980440340304316,156.78875,0.6343439109588681,0.30671428571428855,72.82396274462022,349221 -2024-06-12 20:00:00+00:00,3186,156.84,156.903,156.662,156.732,USD_JPY,H1,40.68364611260037,-0.19894042997717065,-0.20498039323572195,0.006039963258551301,156.7662,0.6275713085941487,0.3162857142857161,73.64194633413727,346035 -2024-06-12 21:00:00+00:00,405,156.68,156.682,156.588,156.598,USD_JPY,H1,39.224555735056875,-0.17809652676953647,-0.19960361994248488,0.02150709317294841,156.73915,0.6222939967757833,0.315571428571429,71.50518517965126,345630 -2024-06-12 22:00:00+00:00,1630,156.597,156.814,156.588,156.806,USD_JPY,H1,42.3713235294118,-0.14314365073204272,-0.18831162610039645,0.045167975368353735,156.7201,0.613634032887598,0.327142857142856,66.30502298766235,347260 -2024-06-12 23:00:00+00:00,2772,156.804,156.86,156.704,156.802,USD_JPY,H1,42.10687960687939,-0.1144467404378986,-0.1735386489678969,0.059091908529998294,156.701,0.6043089136856948,0.3327857142857117,57.29953760398598,344488 -2024-06-13 00:00:00+00:00,6113,156.802,156.908,156.71,156.796,USD_JPY,H1,41.815384615384374,-0.09113780228221913,-0.15705847963076136,0.06592067734854223,156.6787,0.5913852693838204,0.34214285714285253,48.05213940833159,338375 -2024-06-13 01:00:00+00:00,4810,156.796,156.866,156.695,156.834,USD_JPY,H1,42.38269347958558,-0.06880586723397641,-0.1394079571514044,0.07060208991742797,156.65820000000002,0.5777061354611162,0.34999999999999837,39.33750862848249,343185 -2024-06-13 02:00:00+00:00,4950,156.836,157.018,156.828,156.999,USD_JPY,H1,68.39560439560434,-0.03736283131601681,-0.11899893198432687,0.08163610066831006,156.64375,0.5645894526131657,0.27171428571428385,38.992727340457044,348135 -2024-06-13 03:00:00+00:00,3811,156.994,157.058,156.972,157.008,USD_JPY,H1,82.28180862250308,-0.01158423814587195,-0.0975159932166359,0.08593175507076395,156.63090000000003,0.5525009073599806,0.24899999999999725,40.177042293485954,351946 -2024-06-13 04:00:00+00:00,3448,157.008,157.052,156.994,157.046,USD_JPY,H1,82.6109391124873,0.011776018476211902,-0.07565759087806635,0.08743360935427825,156.618,0.538800031260411,0.225285714285712,41.46843238487564,355394 -2024-06-13 05:00:00+00:00,4054,157.046,157.196,157.044,157.082,USD_JPY,H1,81.9882415820421,0.032815809066448764,-0.05396291088916333,0.0867787199556121,156.60629999999998,0.5252146528619931,0.22528571428570995,42.5175431873624,359448 -2024-06-13 06:00:00+00:00,4516,157.082,157.257,157.062,157.152,USD_JPY,H1,86.42241379310289,0.054510051733245746,-0.03226831836468152,0.08677837009792727,156.5975,0.5138373181033763,0.2257142857142814,43.67387917308379,363964 -2024-06-13 07:00:00+00:00,5142,157.153,157.308,157.12,157.276,USD_JPY,H1,86.54564869193769,0.0807775062245355,-0.009659153446838115,0.09043665967137361,156.59459999999999,0.5096081466773054,0.22271428571427926,45.19519502472001,369106 -2024-06-13 08:00:00+00:00,4255,157.276,157.312,157.173,157.258,USD_JPY,H1,77.3679798826487,0.09900098189461914,0.012072873621453336,0.08692810827316581,156.6494,0.5194736607495721,0.17428571428570802,49.30288389985798,364851 -2024-06-13 09:00:00+00:00,3757,157.258,157.286,157.156,157.184,USD_JPY,H1,66.66666666666575,0.10624728355190882,0.030907755607544437,0.07533952794436438,156.71959999999999,0.4898219225306006,0.15885714285713806,53.34993427332377,361094 -2024-06-13 10:00:00+00:00,2226,157.185,157.202,157.125,157.176,USD_JPY,H1,73.81974248926862,0.11007561352784023,0.04674132719160359,0.06333428633623664,156.7893,0.44666189968895365,0.14714285714285325,56.91312964166514,358868 -2024-06-13 11:00:00+00:00,3143,157.174,157.266,157.16,157.212,USD_JPY,H1,86.8105515587489,0.11469238928074788,0.06033153960943245,0.05436084967131542,156.85565000000003,0.40154311232401907,0.14799999999999613,61.415546278202136,362011 -2024-06-13 12:00:00+00:00,12986,157.211,157.263,156.584,157.026,USD_JPY,H1,63.54679802955591,0.10216487866796342,0.06869820742113865,0.03346667124682477,156.91694999999999,0.31647473916349933,0.1803571428571392,60.50500256540246,349025 -2024-06-13 13:00:00+00:00,12611,157.028,157.269,156.962,157.184,USD_JPY,H1,69.77225672877856,0.10378959395805509,0.07571648472852194,0.028073109229533155,156.9808,0.21432258029289966,0.19114285714285423,59.93630055068109,361636 -2024-06-13 14:00:00+00:00,8924,157.184,157.188,156.92,156.944,USD_JPY,H1,56.166666666666416,0.08473443250204582,0.07752007428322671,0.007214358218819106,156.99775,0.19562743188937826,0.1961428571428558,59.92670647574318,352712 -2024-06-13 15:00:00+00:00,7963,156.946,157.001,156.754,156.775,USD_JPY,H1,47.78362133734042,0.055358058911110675,0.07308767120880351,-0.017729612297692834,156.9945,0.19889867825828592,0.20157142857142674,60.57087761773016,344749 -2024-06-13 16:00:00+00:00,8162,156.776,156.92,156.692,156.85,USD_JPY,H1,43.99677679290884,0.037694426508949164,0.06600902226883265,-0.028314595759883487,157.00039999999998,0.19234437318806483,0.2042857142857112,59.73646411513352,352911 -2024-06-13 17:00:00+00:00,7207,156.85,156.95,156.722,156.939,USD_JPY,H1,47.3883421650258,0.03052554725934442,0.05891232726693501,-0.028386780007590588,157.01745,0.16842317474701643,0.21442857142856805,56.83116052341383,360118 -2024-06-13 18:00:00+00:00,5961,156.94,156.984,156.856,156.897,USD_JPY,H1,44.37735849056595,0.02121060713773204,0.05137198324109442,-0.030161376103362378,157.022,0.1635693961926147,0.21942857142856959,53.165913555061316,354157 -2024-06-13 19:00:00+00:00,4235,156.896,157.077,156.894,157.063,USD_JPY,H1,49.34707903780049,0.026913026049413702,0.04648019180275828,-0.01956716575334458,157.03505,0.15529580433647633,0.22164285714285573,49.971099614422094,358392 -2024-06-13 20:00:00+00:00,2272,157.062,157.101,157.004,157.006,USD_JPY,H1,44.937586685159886,0.026527023475381384,0.042489558137282904,-0.01596253466190152,157.04555,0.14504317869733843,0.21464285714285683,47.07614163122887,356120 -2024-06-13 21:00:00+00:00,122,157.019,157.027,156.984,157.008,USD_JPY,H1,39.84848484848455,0.02608184170401273,0.03920801485062887,-0.01312617314661614,157.05424999999997,0.1366624250607266,0.20428571428571324,44.72125955863925,356242 -2024-06-13 22:00:00+00:00,1320,157.002,157.085,156.974,157.084,USD_JPY,H1,43.68650217706778,0.031498501664287915,0.03766611221336068,-0.006167610549072763,157.0585,0.13617461701146785,0.20228571428571382,42.4172362755545,357562 -2024-06-13 23:00:00+00:00,2765,157.084,157.146,157.068,157.126,USD_JPY,H1,47.84546805349201,0.03873379363699314,0.03787964849808717,0.0008541451389059707,157.0644,0.1364275014809388,0.19857142857142662,40.131187243335766,360327 -2024-06-14 00:00:00+00:00,6409,157.122,157.238,157.066,157.204,USD_JPY,H1,50.988700564972504,0.05018328115249915,0.04034037502896957,0.009842906123529581,157.07229999999998,0.13983791369906917,0.20535714285714082,37.580520156837,366736 -2024-06-14 01:00:00+00:00,4437,157.206,157.332,157.187,157.256,USD_JPY,H1,51.53631284916248,0.0627299362583642,0.044818287274848496,0.01791164898351571,157.081,0.14576043793022922,0.20814285714285422,33.5312496480193,371173 -2024-06-14 02:00:00+00:00,4899,157.257,157.342,157.142,157.328,USD_JPY,H1,61.4567526555388,0.07758865537249449,0.051372360894377696,0.02621629447811679,157.0898,0.15527483275365175,0.17392857142856957,34.68614337870161,376072 -2024-06-14 03:00:00+00:00,13177,157.329,157.981,156.812,157.818,USD_JPY,H1,69.21212121212191,0.12743421985939563,0.06658473268738128,0.06084948717201434,157.11690000000002,0.22230985962549066,0.23549999999999574,38.105798741273524,389249 -2024-06-14 04:00:00+00:00,6322,157.82,157.961,157.784,157.946,USD_JPY,H1,82.5747724317308,0.17524559693762853,0.08831690553743074,0.0869286914001978,157.1513,0.28863035913267787,0.22899999999999718,41.269978350320756,395571 -2024-06-14 05:00:00+00:00,4974,157.946,158.191,157.846,158.148,USD_JPY,H1,93.69828134945949,0.22682151234724302,0.11601782689939319,0.11080368544784983,157.1995,0.3648156708350052,0.23599999999999607,45.49743567097603,400545 -2024-06-14 06:00:00+00:00,12618,158.152,158.258,157.627,157.96,USD_JPY,H1,82.95724465558295,0.24964798154451273,0.1427438578284171,0.10690412371609564,157.23870000000002,0.40234799025940843,0.2647857142857118,47.125024923461005,387927 -2024-06-14 07:00:00+00:00,15243,157.96,158.214,157.651,157.675,USD_JPY,H1,69.57446808510721,0.24195193340511878,0.16258547294375741,0.07936646046136137,157.26184999999998,0.4138853483533822,0.2887142857142838,48.803877221323155,372684 -2024-06-14 08:00:00+00:00,14234,157.674,157.79,157.27,157.493,USD_JPY,H1,64.75247524752497,0.21864646055055914,0.17379767046511777,0.044848790085441376,157.28519999999997,0.41305162160187986,0.31671428571428145,48.38458543693647,358450 -2024-06-14 09:00:00+00:00,13253,157.492,157.53,156.926,157.098,USD_JPY,H1,50.77812361049412,0.16638551788045675,0.17231523994818557,-0.005929722067728821,157.28090000000003,0.41460531644411747,0.34678571428571153,45.84026705265378,345197 -2024-06-14 10:00:00+00:00,14646,157.097,157.163,156.884,156.96,USD_JPY,H1,49.01287553648085,0.11253565661039033,0.16035932328062652,-0.04782366667023619,157.2817,0.4139359345326414,0.3597857142857127,42.75619683584639,330551 -2024-06-14 11:00:00+00:00,10927,156.962,157.304,156.954,157.064,USD_JPY,H1,51.15131578947336,0.07735943303285353,0.14375934523107192,-0.06639991219821839,157.29615,0.4001308042740611,0.3817142857142853,39.62318910531923,341478 -2024-06-14 12:00:00+00:00,11628,157.064,157.432,156.95,157.252,USD_JPY,H1,53.301886792452976,0.0639152757224224,0.127790531329342,-0.06387525560691962,157.31625000000003,0.38640092010157817,0.4082142857142839,37.167776869786344,353106 -2024-06-14 13:00:00+00:00,9875,157.252,157.378,157.112,157.278,USD_JPY,H1,53.00632911392384,0.05472779890405377,0.11317798484428437,-0.0584501859402306,157.33319999999998,0.3762842710429361,0.42164285714285654,34.96579022151503,362981 -2024-06-14 14:00:00+00:00,12584,157.282,157.496,157.034,157.381,USD_JPY,H1,53.466509988249015,0.05512247890214894,0.1015668836558573,-0.046444404753708354,157.3574,0.36204890626692837,0.4423571428571437,33.63443702573974,375565 -2024-06-14 15:00:00+00:00,6846,157.376,157.455,157.152,157.287,USD_JPY,H1,50.59730250481709,0.04730494922657158,0.09071449677000017,-0.04340954754342859,157.3686,0.3558743716872983,0.4536428571428611,32.11285563501969,368719 -2024-06-14 16:00:00+00:00,4862,157.288,157.352,157.262,157.314,USD_JPY,H1,49.72549019607823,0.04279486245249586,0.0811305699064993,-0.03833570745400344,157.38400000000001,0.34588133042943775,0.4457857142857173,31.028264168444682,373581 -2024-06-14 17:00:00+00:00,3812,157.317,157.343,157.225,157.315,USD_JPY,H1,37.79718583211969,0.03885340002324256,0.07267513592984795,-0.033821735906605394,157.39935,0.33495612831765287,0.3707142857142896,30.228897446625048,377393 -2024-06-14 18:00:00+00:00,3575,157.314,157.344,157.276,157.28,USD_JPY,H1,33.07926829268267,0.03253056307693214,0.06464622135926479,-0.03211565828233265,157.40915,0.3280399967633699,0.36292857142857265,28.99464080264682,373818 -2024-06-14 19:00:00+00:00,2245,157.278,157.334,157.272,157.306,USD_JPY,H1,26.5066964285715,0.02928012885320186,0.057573002858052204,-0.028292874004850345,157.41815000000003,0.32228138653683025,0.34271428571428786,27.960425677972346,376063 -2024-06-14 20:00:00+00:00,2176,157.306,157.442,157.288,157.409,USD_JPY,H1,33.860574106619,0.034616339887548975,0.052981670263951564,-0.01836533037640259,157.4284,0.31834793941404366,0.30864285714285905,26.531868928532315,378239 -2024-06-16 21:00:00+00:00,412,157.365,157.45,157.305,157.347,USD_JPY,H1,38.94878706199416,0.03345677485873466,0.04907669118290818,-0.015619916324173519,157.43295,0.3163985619481506,0.2787857142857157,24.981131334638174,377827 -2024-06-16 22:00:00+00:00,2388,157.34,157.558,157.334,157.52,USD_JPY,H1,50.915254237288686,0.04596757975230048,0.04845486889678664,-0.002487289144486163,157.44255,0.315959103787227,0.2576428571428591,22.73798762319165,380215 -2024-06-16 23:00:00+00:00,2455,157.52,157.662,157.494,157.559,USD_JPY,H1,70.59874888293155,0.05835675646662253,0.05043524641075382,0.007921510055868705,157.4296,0.30487415868589485,0.22650000000000148,27.270600144800294,382670 -2024-06-17 00:00:00+00:00,8044,157.56,157.564,157.292,157.456,USD_JPY,H1,72.87822878228808,0.05918181792122823,0.05218456071284871,0.006997257208379522,157.4051,0.2798533262502881,0.2259999999999991,29.435860524926493,374626 -2024-06-17 01:00:00+00:00,4674,157.456,157.518,157.38,157.489,USD_JPY,H1,70.97729516288356,0.06178627555181038,0.054104903680641046,0.0076813718711693305,157.37214999999998,0.2202229193642473,0.21085714285714272,29.637299834307083,379300 -2024-06-17 02:00:00+00:00,4098,157.49,157.531,157.439,157.447,USD_JPY,H1,61.24567474048453,0.059772260583741854,0.05523837506126121,0.0045338855224806435,157.3465,0.17295283811860643,0.18300000000000086,28.97941442044506,375202 -2024-06-17 03:00:00+00:00,3243,157.446,157.512,157.332,157.369,USD_JPY,H1,54.95103373231827,0.05129094104370324,0.05444888825774962,-0.003157947214046379,157.33120000000002,0.15496233838751022,0.17685714285714482,29.132037391682445,371959 -2024-06-17 04:00:00+00:00,3474,157.371,157.411,157.335,157.384,USD_JPY,H1,50.180505415161605,0.04525810162010657,0.05261073093022101,-0.0073526293101144405,157.32575000000003,0.15083412814497762,0.14928571428571452,31.08170984214616,375433 -2024-06-17 05:00:00+00:00,4236,157.384,157.523,157.384,157.453,USD_JPY,H1,60.29776674937966,0.045520029688532304,0.051192590681883275,-0.005672560993350971,157.3435,0.14332315346286545,0.1375714285714277,31.096235308226085,379669 -2024-06-17 06:00:00+00:00,9811,157.452,157.48,157.158,157.351,USD_JPY,H1,52.099886492622375,0.03706974507335303,0.04836802156017723,-0.011298276486824195,157.36305,0.11136212860297122,0.15414285714285622,32.02620472718637,369858 -2024-06-17 07:00:00+00:00,6298,157.35,157.56,157.284,157.553,USD_JPY,H1,60.99815157116455,0.04614066459052424,0.047922550166246636,-0.0017818855757223973,157.3875,0.0946803486677998,0.16542857142857162,29.29542223178452,376156 -2024-06-17 08:00:00+00:00,4995,157.552,157.69,157.543,157.651,USD_JPY,H1,66.20087336244568,0.06053935464424853,0.05044591106184702,0.010093443582401516,157.40744999999998,0.10598782205461622,0.1710714285714293,26.882691454221796,381151 -2024-06-17 09:00:00+00:00,4152,157.652,157.702,157.6,157.656,USD_JPY,H1,65.56939501779341,0.07152933283856555,0.05466259541719073,0.016866737421374824,157.42635,0.11500813473612811,0.1739285714285716,22.61178711509013,385303 -2024-06-17 10:00:00+00:00,3754,157.656,157.68,157.546,157.632,USD_JPY,H1,60.66985645933061,0.07741003560801119,0.05921208345535482,0.018197952152656363,157.4389,0.12320197368003764,0.17250000000000146,19.822851735198167,381549 -2024-06-17 11:00:00+00:00,4297,157.63,157.868,157.626,157.848,USD_JPY,H1,70.89241034195112,0.09836602740048761,0.06704287224438138,0.03132315515610623,157.46695,0.14813737402103877,0.1794285714285735,17.242328328821852,385846 -2024-06-17 12:00:00+00:00,7060,157.848,157.942,157.797,157.894,USD_JPY,H1,67.44402985074554,0.11733307478891675,0.07710091275328845,0.040232162035628294,157.49595,0.1715420694228802,0.17378571428571782,17.593664500301184,392906 -2024-06-17 13:00:00+00:00,6619,157.894,157.934,157.788,157.89,USD_JPY,H1,65.95949855351827,0.13053707972525785,0.08778814614768234,0.04274893357757552,157.5247,0.18709808855200216,0.17221428571428785,12.621094316468515,386287 -2024-06-17 14:00:00+00:00,6254,157.888,157.962,157.832,157.856,USD_JPY,H1,70.6611570247927,0.13668224507739524,0.09756696593362492,0.03911527914377032,157.5535,0.19172362236152984,0.162071428571431,11.477186383115313,380033 -2024-06-17 15:00:00+00:00,4218,157.857,157.894,157.784,157.811,USD_JPY,H1,66.42857142857126,0.1363494573039361,0.10532346420768716,0.03102599309624894,157.57874999999999,0.19066362637925946,0.16007142857143158,11.680815506605425,375815 -2024-06-17 16:00:00+00:00,3513,157.812,157.818,157.729,157.784,USD_JPY,H1,67.46113989637192,0.13238104001928264,0.11073497937000626,0.021646060649276377,157.5975,0.19152861543219976,0.15985714285714486,12.076973969991352,372302 -2024-06-17 17:00:00+00:00,3803,157.784,157.793,157.732,157.748,USD_JPY,H1,70.53087757312991,0.12489147046557036,0.11356627758911908,0.011325192876451284,157.61755,0.18479589737679417,0.15135714285714488,12.838483300648452,368499 -2024-06-17 18:00:00+00:00,3105,157.747,157.75,157.682,157.704,USD_JPY,H1,66.8067226890763,0.11409033796093127,0.11367108966348152,0.00041924829744974246,157.62675000000002,0.18426321991548344,0.15078571428571763,11.290298906056544,365394 -2024-06-17 19:00:00+00:00,3487,157.704,157.756,157.696,157.734,USD_JPY,H1,65.38882803943059,0.10672089981099475,0.11228105169298418,-0.005560151881989425,157.6355,0.18503015402318426,0.14514285714285993,11.419816451482754,368881 -2024-06-17 20:00:00+00:00,1127,157.733,157.736,157.701,157.729,USD_JPY,H1,73.16176470588317,0.09933207049340353,0.10969125545306804,-0.010359184959664508,157.64915,0.18111969727217728,0.1246428571428595,13.268398783801644,367754 -2024-06-17 21:00:00+00:00,675,157.688,157.746,157.671,157.734,USD_JPY,H1,64.6203554119557,0.09280997264636426,0.1063149988917273,-0.013505026245363039,157.66140000000001,0.17797587063827955,0.11028571428571711,15.046848699270901,368429 -2024-06-17 22:00:00+00:00,685,157.734,157.735,157.659,157.708,USD_JPY,H1,55.21023765996236,0.08456832934572844,0.10196566498252754,-0.0173973356367991,157.67445,0.17085403897693452,0.10521428571429071,15.287499660342466,367744 -2024-06-17 23:00:00+00:00,1815,157.71,157.734,157.634,157.698,USD_JPY,H1,53.80434782608715,0.07634973896094266,0.09684247977821057,-0.020492740817267915,157.6909,0.1549997962749526,0.10507142857143492,14.953420504937622,365929 -2024-06-18 00:00:00+00:00,4890,157.696,157.732,157.605,157.684,USD_JPY,H1,54.79704797047899,0.06792378080808703,0.09105873998418587,-0.02313495917609884,157.70589999999999,0.1372346818334375,0.10457142857143456,15.135790722151148,361039 -2024-06-18 01:00:00+00:00,5072,157.684,157.71,157.518,157.594,USD_JPY,H1,19.471153846151324,0.05336869928308374,0.08352073184396545,-0.03015203256088171,157.71295,0.12678264659203206,0.10100000000000721,18.173302523707505,355967 -2024-06-18 02:00:00+00:00,3544,157.594,157.666,157.556,157.653,USD_JPY,H1,21.91142191142042,0.04606350778306023,0.07602928703178442,-0.029965779248724192,157.72805,0.09553972721803826,0.09850000000000543,23.395809262574943,359511 -2024-06-18 03:00:00+00:00,2259,157.652,157.658,157.584,157.64,USD_JPY,H1,21.4611872146111,0.03877808985248521,0.06857904759592458,-0.02980095774343937,157.7324,0.08889994377511184,0.09335714285714809,29.16587488048048,357252 -2024-06-18 04:00:00+00:00,3478,157.64,157.737,157.582,157.718,USD_JPY,H1,35.68464730290401,0.03885044799972093,0.06263332767668385,-0.023782879676962923,157.73575,0.08691125239401143,0.09514285714286277,31.874174589012494,360730 -2024-06-18 05:00:00+00:00,3509,157.717,157.86,157.668,157.838,USD_JPY,H1,52.423698384199824,0.04803704828032096,0.059714071797411276,-0.011677023517090317,157.74484999999999,0.08764658400327074,0.10100000000000518,31.25420632198475,364239 -2024-06-18 06:00:00+00:00,5919,157.842,157.986,157.821,157.964,USD_JPY,H1,63.71951219512235,0.06473837843429919,0.06071893312478886,0.0040194453095103305,157.76145000000002,0.09617334953689237,0.10642857142857613,32.37327383202912,370158 -2024-06-18 07:00:00+00:00,5924,157.964,158.134,157.928,158.128,USD_JPY,H1,74.23469387755098,0.09016832794597462,0.06660881208902603,0.0235595158569486,157.77545,0.12538046310961498,0.1167857142857177,33.745182967864956,376082 -2024-06-18 08:00:00+00:00,5245,158.134,158.232,158.07,158.151,USD_JPY,H1,79.29226736566075,0.11089927610532868,0.07546690489228657,0.035432371213042116,157.7883,0.14909661298393365,0.12350000000000298,36.8359388617963,381327 -2024-06-18 09:00:00+00:00,4968,158.152,158.16,157.998,158.099,USD_JPY,H1,73.24840764330929,0.12172951439418966,0.0847194267926672,0.03701008760152247,157.79874999999998,0.16325210566266166,0.13078571428571756,39.49639042748686,376359 -2024-06-18 10:00:00+00:00,3565,158.1,158.156,158.068,158.106,USD_JPY,H1,73.95171537483805,0.12938591744796213,0.0936527249237262,0.03573319252423593,157.81125,0.17686952521753427,0.13457142857143164,39.609806400396586,379924 -2024-06-18 11:00:00+00:00,3906,158.105,158.152,158.028,158.086,USD_JPY,H1,71.94513715710612,0.13231459884391938,0.10138509970776485,0.03092949913615453,157.825,0.18723472463351395,0.1380714285714301,40.52930710053499,376018 -2024-06-18 12:00:00+00:00,11136,158.084,158.129,157.626,157.834,USD_JPY,H1,56.12840466926065,0.11299872701633262,0.10370782516947841,0.009290901846854216,157.82750000000001,0.18699211917860753,0.1685714285714275,40.12007174916712,364882 -2024-06-18 13:00:00+00:00,8001,157.831,157.898,157.664,157.803,USD_JPY,H1,55.00476644423181,0.09410453994897239,0.1017871681253772,-0.007682628176404818,157.83025,0.18616401230370744,0.1781428571428551,39.90857800341,356881 -2024-06-18 14:00:00+00:00,7300,157.803,158.008,157.76,157.97,USD_JPY,H1,61.896838602328955,0.09155092284549937,0.09973991906940165,-0.008188996223902276,157.84355,0.1861715324023274,0.18678571428571292,40.18399181265858,364181 -2024-06-18 15:00:00+00:00,5251,157.974,158.005,157.747,157.819,USD_JPY,H1,58.90736342042689,0.07646132627903057,0.09508420051132743,-0.01862287423229686,157.84779999999998,0.18450177578145371,0.19149999999999676,37.913902951276704,358930 -2024-06-18 16:00:00+00:00,3837,157.818,157.844,157.698,157.712,USD_JPY,H1,52.25019069412641,0.055232026105528575,0.08711376563016766,-0.03188173952463909,157.84695,0.18511603047870612,0.19407142857142543,33.020674421684376,355093 -2024-06-18 17:00:00+00:00,5614,157.711,157.874,157.642,157.858,USD_JPY,H1,57.54847645429386,0.049616682367258136,0.07961434897758576,-0.029997666610327628,157.85315,0.18320057315237506,0.20535714285714082,27.535395040770123,360707 -2024-06-18 18:00:00+00:00,3540,157.858,157.898,157.77,157.796,USD_JPY,H1,52.731092436974734,0.03970589530882762,0.07163265824383415,-0.03192676293500653,157.85755,0.18056883074036612,0.20342857142856832,23.57146082288678,357167 -2024-06-18 19:00:00+00:00,2764,157.792,157.868,157.75,157.868,USD_JPY,H1,51.086956521739104,0.037232134561520525,0.06475255350737143,-0.027520418945850902,157.86605,0.17662105585630328,0.19814285714285315,23.60957366934934,359931 -2024-06-18 20:00:00+00:00,898,157.87,157.878,157.828,157.856,USD_JPY,H1,45.734597156398195,0.033912440134884037,0.05858453083287395,-0.024672090697989917,157.87465,0.17140050820785457,0.18992857142856678,23.302751057263812,359033 -2024-06-18 21:00:00+00:00,1203,157.859,157.874,157.826,157.832,USD_JPY,H1,36.85612788632467,0.029010543474299766,0.05266973336115912,-0.023659189886859354,157.88655,0.1586799078689338,0.1786428571428534,23.40926611045069,357830 -2024-06-18 22:00:00+00:00,803,157.838,157.889,157.803,157.861,USD_JPY,H1,37.19081272084785,0.02715281197700392,0.04756634908432808,-0.02041353710732416,157.89695,0.14909392131080298,0.17321428571428246,23.650860779501727,358633 -2024-06-18 23:00:00+00:00,1852,157.854,157.867,157.812,157.867,USD_JPY,H1,39.31860036832457,0.025866523060585678,0.043226383879579604,-0.017359860818993926,157.9083,0.13662245328007433,0.16557142857142335,24.678296598961452,360485 -2024-06-19 00:00:00+00:00,2735,157.873,157.928,157.852,157.882,USD_JPY,H1,39.76234003656402,0.02576055284902168,0.03973321767346802,-0.01397266482444634,157.91649999999998,0.12932639248392952,0.16471428571428046,24.819524905478463,363220 -2024-06-19 01:00:00+00:00,3816,157.882,157.894,157.724,157.765,USD_JPY,H1,36.52392947103263,0.016050626867325946,0.034996699512239604,-0.01894607264491366,157.91285,0.13264605655359288,0.1679999999999962,25.48828047587056,359404 -2024-06-19 02:00:00+00:00,2719,157.766,157.836,157.734,157.832,USD_JPY,H1,49.9005964214707,0.013604951219321038,0.030718349853655895,-0.017113398634334857,157.90624999999997,0.1332496173718237,0.13935714285714035,25.626919921401146,362123 -2024-06-19 03:00:00+00:00,2653,157.834,157.868,157.806,157.858,USD_JPY,H1,52.747252747252844,0.013607855469842889,0.027296250976893296,-0.013688395507050408,157.89275,0.12287429392948272,0.12707142857142426,26.066875779951243,364776 -2024-06-19 04:00:00+00:00,2953,157.86,157.869,157.817,157.854,USD_JPY,H1,43.07875894988219,0.013135967284682692,0.024464194238451177,-0.011328226953768485,157.8779,0.10693377194476503,0.11307142857142237,27.761111368923824,361823 -2024-06-19 05:00:00+00:00,2594,157.853,157.866,157.775,157.788,USD_JPY,H1,47.94156706507473,0.007351599421326682,0.02104167527502628,-0.013690075853699597,157.86235000000002,0.09504086380521845,0.10114285714285286,29.23589067095188,359229 -2024-06-19 06:00:00+00:00,4401,157.788,157.838,157.644,157.668,USD_JPY,H1,47.12793733681603,-0.006836741205773933,0.015465991978866238,-0.02230273318464017,157.84044999999998,0.0859733588060468,0.10457142857142442,32.00930299070857,354828 -2024-06-19 07:00:00+00:00,5668,157.67,157.773,157.604,157.746,USD_JPY,H1,41.97707736389796,-0.011652828691921968,0.010042227844708597,-0.021695056536630564,157.82345,0.06620659454475566,0.10007142857142323,34.97590554914804,360496 -2024-06-19 08:00:00+00:00,3290,157.746,157.802,157.737,157.799,USD_JPY,H1,50.21770682148143,-0.01106540061192618,0.005820702153381641,-0.01688610276530782,157.8217,0.0663754076458956,0.09557142857142407,38.137114971391384,363786 -2024-06-19 09:00:00+00:00,2511,157.8,157.866,157.79,157.852,USD_JPY,H1,48.80597014925447,-0.0062511432773533215,0.0034063330672346485,-0.009657476344587971,157.82414999999997,0.06655292712257621,0.09257142857142599,39.389806908380876,366297 -2024-06-19 10:00:00+00:00,2889,157.853,157.911,157.819,157.833,USD_JPY,H1,48.301329394387416,-0.003923720655905072,0.0019403223226067048,-0.005864042978511777,157.8173,0.05713520440375314,0.09557142857142813,39.17993767571357,363408 -2024-06-19 11:00:00+00:00,2563,157.832,157.909,157.832,157.906,USD_JPY,H1,55.096418732782816,0.003767835194565805,0.0023058248969985247,0.0014620102975672804,157.82165,0.060485122165012686,0.09764285714285645,37.446916598430185,365971 -2024-06-19 12:00:00+00:00,2357,157.906,157.952,157.874,157.884,USD_JPY,H1,51.59944367176589,0.00799605889287136,0.003443871696173092,0.004552187196698268,157.83025,0.05614630796466719,0.09707142857142717,33.45968884468413,363614 -2024-06-19 13:00:00+00:00,2377,157.884,157.911,157.874,157.89,USD_JPY,H1,51.59944367176589,0.011696279067962223,0.005094353170530919,0.006601925897431304,157.83185,0.05742021928097775,0.09578571428571488,29.868064715194098,365991 -2024-06-19 14:00:00+00:00,1073,157.888,157.912,157.867,157.896,USD_JPY,H1,50.985915492956366,0.014940653517754754,0.007063613239975687,0.007877040277779067,157.83685,0.058478313597682074,0.09357142857143076,28.199803749423477,367064 -2024-06-19 15:00:00+00:00,1988,157.898,157.946,157.89,157.934,USD_JPY,H1,63.3914421553087,0.020343617505290013,0.009719614093038554,0.010624003412251459,157.84015,0.06207997815357698,0.08542857142857331,25.062185909288644,369052 -2024-06-19 16:00:00+00:00,994,157.934,157.947,157.894,157.934,USD_JPY,H1,59.042553191488906,0.02434487285160003,0.01264466584475085,0.01170020700684918,157.84404999999998,0.06548481144248976,0.08192857142857284,25.00330462580199,368058 -2024-06-19 17:00:00+00:00,1216,157.936,157.956,157.923,157.942,USD_JPY,H1,57.69230769230729,0.02784050170865271,0.015683833017531224,0.012156668691121485,157.84955,0.06894732927297008,0.07985714285714453,24.576495554592018,369274 -2024-06-19 18:00:00+00:00,738,157.94,158.025,157.94,158.022,USD_JPY,H1,63.50482315112271,0.03664373797317921,0.019875814008660824,0.01676792396451839,157.8576,0.07901791937469319,0.08221428571428849,23.009531268877527,370012 -2024-06-19 19:00:00+00:00,1052,158.021,158.049,157.996,158.008,USD_JPY,H1,69.29824561403426,0.04200645883031484,0.024301942972991628,0.017704515857323213,157.86465,0.08589177709063674,0.079500000000002,22.12445143642886,368960 -2024-06-19 20:00:00+00:00,1484,158.008,158.134,158.001,158.084,USD_JPY,H1,89.54372623574037,0.051791992734592895,0.02979995292531188,0.021992039809281015,157.87475,0.09892680709126922,0.07514285714285864,24.20414461506984,370444 -2024-06-19 21:00:00+00:00,946,158.026,158.031,157.968,158.003,USD_JPY,H1,74.29111531190591,0.052406960976014716,0.034321354535452445,0.01808560644056227,157.88665,0.09934378111133894,0.06757142857143249,26.60247191135543,369498 -2024-06-19 22:00:00+00:00,1143,158.0,158.054,157.982,158.004,USD_JPY,H1,71.48846960167403,0.052371315456014145,0.03793134671956479,0.014439968736449357,157.89525,0.10177884954119253,0.06807142857143285,29.08884301151865,370641 -2024-06-19 23:00:00+00:00,1568,158.003,158.026,157.923,157.958,USD_JPY,H1,61.27659574467962,0.048077048277008316,0.039960487031053496,0.00811656124595482,157.90025,0.10230752147704796,0.07000000000000332,30.973125794398722,369073 -2024-06-20 00:00:00+00:00,3285,157.957,158.092,157.954,158.033,USD_JPY,H1,69.011406844105,0.05014761332733997,0.04199791229031079,0.00814970103702918,157.9092,0.10581791711409637,0.07328571428571706,33.56139223960901,372358 -2024-06-20 01:00:00+00:00,3584,158.032,158.12,157.978,158.056,USD_JPY,H1,65.75630252100808,0.053033125964191186,0.044204955025086874,0.008828170939104311,157.9226,0.10662793157942896,0.07792857142857404,36.33537501359136,375942 -2024-06-20 02:00:00+00:00,2293,158.056,158.1,158.051,158.08,USD_JPY,H1,70.50209205021159,0.056604019044755205,0.04668476782902054,0.009919251215734663,157.9432,0.09388884807542713,0.07585714285714573,39.50653821571375,378235 -2024-06-20 03:00:00+00:00,1820,158.08,158.14,158.064,158.082,USD_JPY,H1,70.25316455696324,0.05891621141219616,0.049131056545655666,0.009785154866540496,157.95999999999998,0.08651741536459753,0.07864285714285911,42.875531783237534,380055 -2024-06-20 04:00:00+00:00,2455,158.082,158.158,158.082,158.146,USD_JPY,H1,73.49624060150454,0.06516176142758923,0.052337197522042384,0.012824563905546843,157.97735,0.08732111038737778,0.08085714285714321,45.57971033389724,382510 -2024-06-20 05:00:00+00:00,2491,158.148,158.192,158.08,158.099,USD_JPY,H1,65.24953789279128,0.06556312669403042,0.05498238335643999,0.010580743337590424,157.98970000000003,0.0861180951908408,0.084857142857142,49.356342746484714,380019 -2024-06-20 06:00:00+00:00,4388,158.1,158.19,158.068,158.124,USD_JPY,H1,66.78445229682035,0.06712473051592838,0.05741085278833767,0.009713877727590706,158.00425,0.08276719095307426,0.08978571428571261,52.99099146678627,384407 -2024-06-20 07:00:00+00:00,5998,158.126,158.284,158.054,158.274,USD_JPY,H1,73.44632768361637,0.07954906706569886,0.061838495643809915,0.01771057142188895,158.02265,0.09907428102914775,0.10385714285714139,57.439915738719186,390405 -2024-06-20 08:00:00+00:00,6843,158.275,158.468,158.273,158.438,USD_JPY,H1,76.26262626262695,0.10145931288599286,0.0697626590922465,0.03169665379374635,158.05035,0.13067528056579097,0.11171428571428318,61.39343464628182,397248 -2024-06-20 09:00:00+00:00,3659,158.438,158.464,158.372,158.456,USD_JPY,H1,78.1407035175869,0.11890512584619728,0.07959115244303666,0.03931397340316062,158.07864999999998,0.15342863077162164,0.11449999999999656,64.2622158489341,400907 -2024-06-20 10:00:00+00:00,3279,158.454,158.469,158.39,158.422,USD_JPY,H1,72.41379310344814,0.12850620294216242,0.08937416254286182,0.0391320403993006,158.10495,0.16510936567990978,0.11064285714285559,63.16353774132707,397628 -2024-06-20 11:00:00+00:00,3978,158.421,158.448,158.371,158.433,USD_JPY,H1,81.43274853801361,0.13544144906643396,0.09858761984757625,0.036853829218857714,158.1299,0.17530481724995606,0.11164285714285427,62.155146673687646,401606 -2024-06-20 12:00:00+00:00,6168,158.436,158.552,158.241,158.548,USD_JPY,H1,84.08521303258328,0.1485053433339658,0.10857116454485416,0.03993417878911165,158.1606,0.19214643539573378,0.12871428571428112,58.742674606822014,407774 -2024-06-20 13:00:00+00:00,4980,158.542,158.73,158.498,158.709,USD_JPY,H1,91.12814895947531,0.16989152438878818,0.12083523651364098,0.04905628787514721,158.19895000000002,0.22064820178538083,0.13792857142856615,59.09803768228587,412754 -2024-06-20 14:00:00+00:00,5241,158.707,158.748,158.636,158.728,USD_JPY,H1,90.54842473745754,0.18622666311389935,0.13391352183369265,0.0523131412802067,158.23425,0.24588056044306864,0.13607142857142257,59.108926184029016,417995 -2024-06-20 15:00:00+00:00,4664,158.728,158.782,158.67,158.776,USD_JPY,H1,90.81632653061327,0.20073166737873294,0.14727715094270072,0.05345451643603222,158.27265,0.26768997681657,0.13392857142856737,58.94949866611197,422659 -2024-06-20 16:00:00+00:00,3500,158.777,158.914,158.75,158.86,USD_JPY,H1,91.4012738853513,0.2165093012912962,0.16112358101241983,0.055385720278876366,158.31145,0.29386561107471104,0.14214285714285171,59.760250377606624,426159 -2024-06-20 17:00:00+00:00,3998,158.86,158.91,158.822,158.888,USD_JPY,H1,91.63223140495974,0.22863697115110426,0.17462625904015672,0.054010712110947545,158.3557,0.3111007790745414,0.1429999999999946,60.142328099526296,430157 -2024-06-20 18:00:00+00:00,3972,158.886,158.896,158.698,158.801,USD_JPY,H1,83.04742684157375,0.22859298632729974,0.18541960449758535,0.04317338182971439,158.39555000000001,0.31470361579343775,0.15171428571427928,58.685826558050174,426185 -2024-06-20 19:00:00+00:00,3295,158.8,158.912,158.8,158.908,USD_JPY,H1,88.4871550903894,0.23448908954136982,0.19523350150634225,0.03925558803502757,158.44305,0.3168727911852287,0.15171428571427928,57.14759932686005,429480 -2024-06-20 20:00:00+00:00,1488,158.905,158.942,158.87,158.93,USD_JPY,H1,88.45419847328189,0.23819128904480635,0.20382505901403508,0.03436623003077127,158.4879,0.319251410587313,0.14814285714285194,56.16333951414925,430968 -2024-06-20 21:00:00+00:00,415,158.942,158.942,158.893,158.912,USD_JPY,H1,84.82532751091635,0.23694154462106098,0.21044835613544027,0.02649318848562071,158.5307,0.31566089400517133,0.1352142857142817,54.26856037176815,430553 -2024-06-20 22:00:00+00:00,1379,158.912,158.944,158.888,158.898,USD_JPY,H1,80.02610966057306,0.23214540247002446,0.21478776540235714,0.017357637067667325,158.5716,0.3070673507537533,0.12528571428570956,50.638751200663,429174 -2024-06-20 23:00:00+00:00,2550,158.899,158.95,158.82,158.94,USD_JPY,H1,80.63291139240373,0.22909263693892967,0.21764873970967166,0.01144389722925801,158.6145,0.294754045557755,0.12799999999999606,46.37062344007268,431724 -2024-06-21 00:00:00+00:00,3724,158.939,159.13,158.901,159.106,USD_JPY,H1,87.0932754880671,0.23733229201354789,0.22158545017044692,0.01574684184310096,158.6625,0.2926034679869393,0.13871428571428016,43.653125883866174,435448 -2024-06-21 01:00:00+00:00,6169,159.107,159.116,158.906,158.96,USD_JPY,H1,74.92904446546797,0.22943649707755753,0.22315565955186906,0.006280837525688476,158.70555,0.2676040820712455,0.14821428571428083,40.8800106561469,429279 -2024-06-21 02:00:00+00:00,3732,158.96,158.984,158.826,158.958,USD_JPY,H1,71.71610169491403,0.2204761278590297,0.2226197532133012,-0.002143625354271511,158.74725,0.2352355762213517,0.13728571428571204,41.066725775051864,425547 -2024-06-21 03:00:00+00:00,2688,158.959,158.963,158.872,158.89,USD_JPY,H1,60.634547591067644,0.205518845675158,0.21919957170567259,-0.013680726030514595,158.77805,0.20885892368878692,0.1272142857142821,38.086070042438756,422859 -2024-06-21 04:00:00+00:00,1815,158.888,158.912,158.87,158.887,USD_JPY,H1,59.520958083831424,0.19121876595073672,0.2136034105546854,-0.022384644603948678,158.8005,0.1939852137724922,0.12221428571428257,35.10454006695346,421044 -2024-06-21 05:00:00+00:00,2937,158.888,158.969,158.818,158.954,USD_JPY,H1,60.42154566744664,0.1831805978937382,0.20751884802249598,-0.024338250128757788,158.8254,0.17880551034800407,0.12499999999999391,32.309261919321536,423981 -2024-06-21 06:00:00+00:00,4211,158.954,159.002,158.912,158.964,USD_JPY,H1,56.66666666666544,0.175593080494167,0.2011336945168302,-0.025540614022663194,158.8525,0.15376793863447136,0.11971428571428078,27.95402953712429,428192 -2024-06-21 07:00:00+00:00,8449,158.966,159.002,158.667,158.774,USD_JPY,H1,43.94904458598727,0.15249068845182023,0.1914050933038282,-0.03891440485200798,158.86954999999998,0.12000327848292627,0.13735714285713893,25.482656712809888,419743 -2024-06-21 08:00:00+00:00,4854,158.776,158.857,158.676,158.83,USD_JPY,H1,51.591657519210976,0.13711997459014924,0.18054806956109243,-0.04342809497094319,158.88365000000002,0.09397887503014019,0.13614285714285554,23.5530947750455,424597 -2024-06-21 09:00:00+00:00,4099,158.83,158.91,158.783,158.905,USD_JPY,H1,49.829351535836985,0.12949767769464415,0.1703379911878028,-0.04084031349315864,158.89344999999997,0.08455485609226793,0.13721428571428515,21.28798634527701,428696 -2024-06-21 10:00:00+00:00,3822,158.899,159.02,158.888,159.004,USD_JPY,H1,53.870292887028484,0.12994747154922948,0.16225988726008814,-0.03231241571085866,158.90725,0.07843191820976525,0.1414999999999996,18.457351779183682,432518 -2024-06-21 11:00:00+00:00,3752,159.004,159.018,158.9,158.9,USD_JPY,H1,49.42418426103643,0.12052269497891643,0.15391244880385382,-0.03338975382493739,158.91344999999998,0.07216098599197514,0.14642857142857021,16.054219112201746,428766 -2024-06-21 12:00:00+00:00,6471,158.9,158.999,158.85,158.93,USD_JPY,H1,51.512287334594134,0.11415829515908626,0.14596161807490032,-0.03180332291581406,158.91694999999999,0.07112218918224657,0.1530714285714286,14.904404186344452,435237 -2024-06-21 13:00:00+00:00,7186,158.93,159.216,158.923,159.15,USD_JPY,H1,58.495145631068546,0.12542085034115757,0.14185346452815178,-0.01643261418699421,158.93005,0.0877049329728698,0.16471428571428653,16.213139601039238,442423 -2024-06-21 14:00:00+00:00,6937,159.151,159.598,159.136,159.576,USD_JPY,H1,65.70855614973308,0.16679839812951514,0.14684245124842446,0.019955946881090675,158.9688,0.16491101270057057,0.18135714285714602,17.177608306901323,449360 -2024-06-21 15:00:00+00:00,5709,159.58,159.627,159.398,159.45,USD_JPY,H1,66.59891598915956,0.1872645863040816,0.1549268782595559,0.03233770804452571,158.9959,0.19599755638772806,0.18271428571428924,17.96682625524277,443651 -2024-06-21 16:00:00+00:00,5079,159.452,159.506,159.414,159.482,USD_JPY,H1,67.39707835325402,0.20371798631200022,0.16468509987004476,0.03903288644195546,159.0235,0.22320641851857803,0.17800000000000335,19.067526894442725,448730 -2024-06-21 17:00:00+00:00,4476,159.48,159.596,159.452,159.581,USD_JPY,H1,72.47885491216738,0.22218469017792586,0.176185017931621,0.04599967224630486,159.05695,0.25366751447418584,0.1817857142857195,21.85074063656028,453206 -2024-06-21 18:00:00+00:00,4320,159.581,159.604,159.524,159.542,USD_JPY,H1,70.82008900190787,0.23100977508511278,0.18714996936231937,0.04385980572279341,159.08915,0.27259653529978306,0.18450000000000596,24.86413279557112,448886 -2024-06-21 19:00:00+00:00,2379,159.542,159.61,159.526,159.61,USD_JPY,H1,70.83862770012784,0.2407159267920349,0.19786316084826247,0.042852765943772436,159.12265,0.29365774475992884,0.1797142857142932,27.53410556769187,451265 -2024-06-21 20:00:00+00:00,2138,159.61,159.85,159.57,159.822,USD_JPY,H1,74.15540540540616,0.262488941071922,0.21078831689299438,0.05170062417892762,159.15845,0.33258500694860715,0.1932857142857216,31.712834010355145,453403 -2024-06-23 21:00:00+00:00,490,159.778,159.79,159.625,159.726,USD_JPY,H1,78.299643281808,0.26889812387156553,0.22241027828870863,0.0464878455828569,159.19675,0.35206426970788657,0.18114285714286332,37.27863989347703,452913 -2024-06-23 22:00:00+00:00,2029,159.732,159.79,159.664,159.718,USD_JPY,H1,77.17258261933904,0.270217020664802,0.23197162676392732,0.0382453939008747,159.23475,0.36569010104867977,0.1772142857142914,43.7368025012129,450884 -2024-06-23 23:00:00+00:00,3098,159.719,159.907,159.686,159.9,USD_JPY,H1,78.57553130384873,0.282689466634821,0.24211519473810605,0.04057427189671492,159.28525,0.3848140870394437,0.18392857142857671,50.59755515882119,453982 -2024-06-24 00:00:00+00:00,4783,159.898,159.928,159.778,159.8,USD_JPY,H1,72.84730195178028,0.28126258565251305,0.24994467292098746,0.03131791273152559,159.3309,0.389212551867772,0.18521428571429105,57.783676593305266,449199 -2024-06-24 01:00:00+00:00,5962,159.8,159.836,159.646,159.694,USD_JPY,H1,72.76376146788905,0.26848354686975995,0.25365244771074197,0.01483109915901798,159.36790000000002,0.38666249393453794,0.1903571428571504,63.41246991054113,443237 -2024-06-24 02:00:00+00:00,3113,159.69,159.742,159.641,159.708,USD_JPY,H1,72.51157407407335,0.2565286470044157,0.2542276875694767,0.002300959434938965,159.4051,0.38151400609584296,0.18692857142857885,69.57521868594672,446350 -2024-06-24 03:00:00+00:00,2855,159.708,159.748,159.62,159.704,USD_JPY,H1,68.32010582010554,0.24391978076229748,0.25216610620804086,-0.008246325445743385,159.4516,0.3563938389286528,0.1751428571428631,73.54509234969854,443495 -2024-06-24 04:00:00+00:00,3038,159.704,159.767,159.686,159.755,USD_JPY,H1,57.87159190853111,0.23532970287160992,0.2487988255407547,-0.013469122669144767,159.49785,0.3305655878945114,0.14792857142857535,75.8811686226371,446533 -2024-06-24 05:00:00+00:00,3371,159.756,159.82,159.712,159.718,USD_JPY,H1,62.78625954198439,0.22296619793877426,0.24363230002035863,-0.02066610208158437,159.5385,0.3026327460020222,0.13928571428571754,78.23027866720732,443162 -2024-06-24 06:00:00+00:00,5037,159.719,159.768,159.67,159.678,USD_JPY,H1,59.28030303030283,0.2075478827015047,0.23641541655658785,-0.028867533855083144,159.5722,0.27636752799797437,0.13971428571428898,78.70554674929754,438125 -2024-06-24 07:00:00+00:00,4954,159.676,159.737,159.648,159.691,USD_JPY,H1,55.67010309278405,0.19413982509161087,0.22796029826359246,-0.033820473171981585,159.61175,0.22736219077699704,0.13578571428571706,78.05581548063212,443079 -2024-06-24 08:00:00+00:00,3952,159.692,159.788,159.666,159.787,USD_JPY,H1,61.927945472248986,0.18908063664980546,0.22018436594083507,-0.031103729291029614,159.6546,0.1640578845382796,0.13878571428571718,77.60931785836145,447031 -2024-06-24 09:00:00+00:00,5263,159.787,159.81,159.59,159.643,USD_JPY,H1,51.49592021758775,0.17147494044442624,0.21044248084155331,-0.038967540397127076,159.67925,0.11349605838388478,0.14850000000000257,76.16845507458211,441768 -2024-06-24 10:00:00+00:00,12102,159.644,159.649,158.742,159.508,USD_JPY,H1,34.69785575048826,0.1449579426716241,0.1973455732075675,-0.05238763053594339,159.67585000000003,0.11769285407471858,0.19328571428571756,76.15984684526555,429666 -2024-06-24 11:00:00+00:00,7356,159.507,159.574,159.345,159.465,USD_JPY,H1,36.58787255909638,0.11910037526928363,0.18169653361991073,-0.0625961583506271,159.67659999999998,0.1162164043373212,0.19785714285714764,73.77644414454646,422310 -2024-06-24 12:00:00+00:00,7305,159.466,159.556,159.344,159.394,USD_JPY,H1,34.36293436293559,0.09182051049231177,0.16372132899439093,-0.07190081850207916,159.6722,0.1252839301882183,0.2040000000000057,71.51330449015686,415005 -2024-06-24 13:00:00+00:00,7771,159.394,159.512,159.322,159.447,USD_JPY,H1,25.027563395810503,0.07362892970704138,0.14570284913692103,-0.07207391942987965,159.6655,0.13371710123764372,0.20178571428571956,70.46198735587178,422776 -2024-06-24 14:00:00+00:00,6752,159.445,159.738,159.374,159.722,USD_JPY,H1,46.395563770794766,0.08047451251391635,0.1326571818123201,-0.05218266929840376,159.6745,0.13099718761641052,0.21707142857143374,67.4733956828274,429528 -2024-06-24 15:00:00+00:00,5024,159.721,159.756,159.632,159.714,USD_JPY,H1,51.01626016260214,0.08428259576700725,0.12298226460325754,-0.038699668836250284,159.6797,0.1303647111002727,0.21235714285714583,65.6333245425304,424504 -2024-06-24 16:00:00+00:00,3071,159.714,159.758,159.639,159.73,USD_JPY,H1,51.11561866125718,0.0875820046317699,0.11590221260896001,-0.028320207977190107,159.6751,0.1266494956261461,0.21364285714286016,63.26765299918743,427575 -2024-06-24 17:00:00+00:00,3067,159.728,159.734,159.685,159.711,USD_JPY,H1,50.3496503496506,0.08765325653857303,0.11025242139488263,-0.022599164856309598,159.67435,0.1263763281683074,0.2080000000000045,61.52483409176448,424508 -2024-06-24 18:00:00+00:00,4715,159.712,159.713,159.539,159.637,USD_JPY,H1,44.23828125000025,0.0808070492685431,0.10436334696961473,-0.023556297701071635,159.6703,0.12620163484316727,0.2146428571428629,60.99251718865092,419793 -2024-06-24 19:00:00+00:00,5230,159.637,159.721,159.617,159.647,USD_JPY,H1,46.43931795386164,0.07532005440714329,0.09855468845712044,-0.02323463404997715,159.65765000000002,0.11406151389869122,0.2143571428571493,60.7723490694845,425023 -2024-06-24 20:00:00+00:00,1971,159.65,159.661,159.572,159.624,USD_JPY,H1,47.24489795918354,0.06832802077605038,0.09250935492090644,-0.024181334144856056,159.64884999999998,0.10918611587659977,0.2137142857142911,61.58140518365053,423052 -2024-06-24 21:00:00+00:00,560,159.601,159.654,159.592,159.602,USD_JPY,H1,45.50050556117286,0.06031627909044346,0.08607073975481384,-0.025754460664370385,159.64425,0.10912179340053531,0.2117857142857186,63.23595636780275,422492 -2024-06-24 22:00:00+00:00,2637,159.602,159.652,159.569,159.645,USD_JPY,H1,42.414529914529965,0.05678210792265759,0.0802130133883826,-0.023430905465725016,159.6411,0.10808909582862777,0.20900000000000318,65.1604002753894,425129 -2024-06-24 23:00:00+00:00,2972,159.644,159.706,159.619,159.7,USD_JPY,H1,53.364817001180114,0.05775354523649412,0.07572111975800491,-0.017967574521510793,159.64090000000002,0.10797022009111404,0.19950000000000248,67.58409665069804,428101 -2024-06-25 00:00:00+00:00,6178,159.7,159.702,159.334,159.395,USD_JPY,H1,44.44444444444414,0.03352599845689497,0.06728209549778293,-0.03375609704088796,159.62290000000002,0.1175320337304517,0.16100000000000136,66.3561225423584,421923 -2024-06-25 01:00:00+00:00,8235,159.4,159.505,159.187,159.401,USD_JPY,H1,46.73469387755115,0.014640872080207146,0.05675385081426777,-0.04211297873406063,159.60705000000002,0.1251594667242167,0.1673571428571421,64.16794826116111,430158 -2024-06-25 02:00:00+00:00,4344,159.402,159.446,159.312,159.328,USD_JPY,H1,46.639511201629,-0.006145376472261432,0.044174005356961935,-0.05031938182922337,159.58954999999997,0.13847723546578686,0.16178571428571129,62.646308580038145,425814 -2024-06-25 03:00:00+00:00,3684,159.33,159.5,159.326,159.484,USD_JPY,H1,51.70506912442432,-0.009916421617646165,0.03335591996204031,-0.04327234157968648,159.5792,0.1382311565348805,0.16064285714285478,59.20971944070268,429498 -2024-06-25 04:00:00+00:00,3118,159.483,159.509,159.412,159.431,USD_JPY,H1,33.14020857473835,-0.016985856741627003,0.02328756462130685,-0.04027342136293385,159.5614,0.13288198169051987,0.14157142857142446,60.80147438481157,426380 -2024-06-25 05:00:00+00:00,4177,159.431,159.456,159.277,159.454,USD_JPY,H1,35.193621867880864,-0.020496259112377402,0.01453079987457,-0.0350270589869474,159.55195,0.13349254859980525,0.14549999999999638,63.2940714832581,430557 -2024-06-25 06:00:00+00:00,4763,159.454,159.502,159.38,159.481,USD_JPY,H1,35.99550056242879,-0.020859152603804887,0.007452809378895024,-0.02831196198269991,159.55059999999997,0.13409556688416457,0.1457142857142831,65.11909919200374,435320 -2024-06-25 07:00:00+00:00,6867,159.484,159.552,159.374,159.488,USD_JPY,H1,37.28620296465078,-0.020347355167160686,0.0018927764696838826,-0.022240131636844566,159.55175000000003,0.13341974723677086,0.15492857142856817,65.76444980808078,442187 -2024-06-25 08:00:00+00:00,5126,159.492,159.52,159.422,159.478,USD_JPY,H1,40.22140221402182,-0.02051221637583467,-0.002588222099419828,-0.01792399427641484,159.55595,0.12945573315796494,0.14949999999999722,65.9929914676086,437061 -2024-06-25 09:00:00+00:00,3405,159.48,159.519,159.424,159.442,USD_JPY,H1,37.783075089392234,-0.0232794185606906,-0.006726461391673983,-0.01655295716901662,159.5557,0.1296818374049691,0.14885714285713902,65.9777666120247,433656 -2024-06-25 10:00:00+00:00,3853,159.442,159.442,159.294,159.43,USD_JPY,H1,38.28502415458931,-0.026139426898566853,-0.010609054493052557,-0.015530372405514296,159.5411,0.12636867535352042,0.15307142857142456,66.17940408890829,429803 -2024-06-25 11:00:00+00:00,3647,159.431,159.481,159.418,159.462,USD_JPY,H1,41.64677804295792,-0.025529582412332275,-0.0135931600769085,-0.011936422335423774,159.5285,0.1206558830334683,0.15314285714285347,65.70829703590195,433450 -2024-06-25 12:00:00+00:00,7223,159.462,159.672,159.431,159.666,USD_JPY,H1,51.051051051050436,-0.008487344340068148,-0.012571996929540431,0.004084652589472283,159.52530000000002,0.11578069107744701,0.16442857142856684,62.538864793886695,440673 -2024-06-25 13:00:00+00:00,5795,159.672,159.704,159.566,159.632,USD_JPY,H1,46.52351738241376,0.0022493076463661055,-0.009607736014359124,0.01185704366072523,159.52135,0.11033121190806401,0.16807142857142512,60.200170349929216,434878 -2024-06-25 14:00:00+00:00,5765,159.632,159.724,159.59,159.689,USD_JPY,H1,70.13698630136975,0.0151825898848017,-0.0046496708345269595,0.01983226071932866,159.52395,0.11375942993903049,0.15135714285713878,57.6344336204363,440643 -2024-06-25 15:00:00+00:00,5915,159.688,159.758,159.664,159.684,USD_JPY,H1,69.41015089163264,0.02474362195323465,0.0012289877230253626,0.02351463423020929,159.52579999999998,0.11614174645009052,0.13535714285714157,55.97530822100083,434728 -2024-06-25 16:00:00+00:00,4959,159.685,159.748,159.678,159.746,USD_JPY,H1,79.10863509749507,0.036898349392032515,0.008362860056826793,0.02853548933520572,159.5319,0.12447570046128902,0.13078571428571348,54.05886251482089,439687 -2024-06-25 17:00:00+00:00,2954,159.748,159.748,159.656,159.731,USD_JPY,H1,71.40381282495656,0.04480420878832092,0.015651129803125618,0.029153078985195303,159.53835,0.1314463168592576,0.12492857142856906,52.126253213790484,436733 -2024-06-25 18:00:00+00:00,3125,159.732,159.732,159.664,159.672,USD_JPY,H1,70.66895368782143,0.045781116192358695,0.021677127080972233,0.024103989111386462,159.5397,0.13273166442933637,0.12285714285714278,47.09630733149061,433608 -2024-06-25 19:00:00+00:00,4485,159.673,159.674,159.602,159.625,USD_JPY,H1,64.08566721581553,0.042275489615008155,0.025796799587779418,0.016478690027228737,159.53595,0.12897061070797186,0.11521428571428569,42.62447024968248,429123 -2024-06-25 20:00:00+00:00,1416,159.626,159.702,159.624,159.68,USD_JPY,H1,65.66929133858386,0.04343460851174541,0.02932436137257262,0.01411024713917279,159.5502,0.12832056899191663,0.11207142857142774,38.683457353877905,430539 -2024-06-25 21:00:00+00:00,933,159.682,159.682,159.635,159.662,USD_JPY,H1,63.467492260062706,0.04241187136807412,0.03194186337167292,0.010470007996401194,159.56325,0.1255911809890278,0.10271428571428487,35.432787772563074,429606 -2024-06-25 22:00:00+00:00,1047,159.664,159.674,159.612,159.674,USD_JPY,H1,65.12345679012338,0.04208452037096322,0.03397039477153098,0.00811412559943224,159.58055000000002,0.11485160909045411,0.1001428571428562,32.098857003506055,430653 -2024-06-25 23:00:00+00:00,2255,159.674,159.71,159.619,159.702,USD_JPY,H1,70.31249999999972,0.043582071351920604,0.035892730087608904,0.0076893412643117,159.59145,0.11554879354467644,0.09985714285714258,28.976780402505135,432908 -2024-06-26 00:00:00+00:00,4800,159.702,159.762,159.667,159.72,USD_JPY,H1,72.44582043343638,0.04569460193411601,0.03785310445691033,0.00784149747720568,159.60590000000002,0.112456728544426,0.09607142857142849,28.464517943564715,437708 -2024-06-26 01:00:00+00:00,5022,159.721,159.902,159.696,159.782,USD_JPY,H1,73.66863905325548,0.05177485122860048,0.04063745381124836,0.011137397417352125,159.6223,0.11305382977377469,0.10628571428571425,29.004403589833228,442730 -2024-06-26 02:00:00+00:00,4139,159.784,159.878,159.754,159.836,USD_JPY,H1,66.15969581749168,0.060256244821374594,0.04456121201327361,0.015695032808100987,159.64005000000003,0.11748302231304168,0.0979285714285721,30.61442418840331,446869 -2024-06-26 03:00:00+00:00,2824,159.84,159.875,159.786,159.838,USD_JPY,H1,70.85020242914868,0.0663740746183521,0.048923784534289305,0.01745029008406279,159.65755,0.1196888400251615,0.09442857142857163,31.71293068857179,449693 -2024-06-26 04:00:00+00:00,2381,159.837,159.858,159.744,159.754,USD_JPY,H1,56.23800383877119,0.06370999170010805,0.05188102596745306,0.011828965732654989,159.67135,0.11365658109669258,0.0930000000000015,33.415523666557995,447312 -2024-06-26 05:00:00+00:00,3041,159.753,159.835,159.752,159.817,USD_JPY,H1,61.48531951640773,0.06592234848264411,0.05468929047049127,0.011233058012152838,159.69009999999997,0.10438284798247467,0.09221428571428548,34.146657327799154,450353 -2024-06-26 06:00:00+00:00,4693,159.818,159.854,159.794,159.823,USD_JPY,H1,57.361376673039636,0.06738305709026804,0.057228043794446626,0.010155013295821413,159.70975,0.08864706784305756,0.09150000000000043,34.867673486405515,455046 -2024-06-26 07:00:00+00:00,3855,159.822,159.932,159.816,159.898,USD_JPY,H1,64.32246998284751,0.07374249480741923,0.06053093399704115,0.013211560810378081,159.73155000000003,0.07741241234176376,0.09321428571428621,37.67963296256077,458901 -2024-06-26 08:00:00+00:00,3371,159.898,159.972,159.872,159.958,USD_JPY,H1,74.486301369863,0.08267091473049959,0.06495893014373284,0.017711984586766746,159.74615,0.09078040308674706,0.09549999999999922,40.57545373812916,462272 -2024-06-26 09:00:00+00:00,6868,159.958,160.062,159.862,159.984,USD_JPY,H1,81.88277087033732,0.09079807091262637,0.07012675829751155,0.020671312615114817,159.76375,0.10102833112489433,0.10464285714285738,44.38441664426857,469140 -2024-06-26 10:00:00+00:00,8664,159.992,160.348,159.992,160.302,USD_JPY,H1,87.65133171912777,0.12149828648648509,0.08040106393530627,0.041097222551178814,159.7944,0.15547292878396357,0.12507142857142892,48.803160991672314,477804 -2024-06-26 11:00:00+00:00,9921,160.304,160.396,160.205,160.305,USD_JPY,H1,89.64241676942017,0.14440588231803986,0.093202027611853,0.05120385470618685,159.82545,0.19036073098331077,0.13535714285714157,53.4252765872904,487725 -2024-06-26 12:00:00+00:00,6736,160.306,160.386,160.283,160.352,USD_JPY,H1,90.07092198581526,0.1644570655784321,0.10745303520516883,0.057004030373263265,159.85575,0.22255546323632588,0.13828571428571276,58.459380668235326,494461 -2024-06-26 13:00:00+00:00,13048,160.352,160.63,160.017,160.508,USD_JPY,H1,91.37577002053371,0.19073697194392025,0.12410982255291914,0.06662714939100112,159.8946,0.2636553571886769,0.17557142857142644,59.537562222071855,507509 -2024-06-26 14:00:00+00:00,8360,160.507,160.646,160.434,160.61,USD_JPY,H1,92.0604914933836,0.21728975360414893,0.1427458087631651,0.07454394484098384,159.9415,0.3025351654299531,0.18392857142856858,57.62937037390409,515869 -2024-06-26 15:00:00+00:00,6241,160.608,160.822,160.594,160.685,USD_JPY,H1,92.15686274509773,0.2415998844934677,0.1625166239092256,0.07908326058424209,159.9945,0.33525033852287894,0.18549999999999858,55.46866460287852,522110 -2024-06-26 16:00:00+00:00,5857,160.684,160.776,160.602,160.636,USD_JPY,H1,87.5234521575976,0.25398417639254944,0.1808101344058904,0.07317404198665906,160.0423,0.3555853735755029,0.18907142857142795,54.60118582842342,516253 -2024-06-26 17:00:00+00:00,4989,160.636,160.678,160.593,160.638,USD_JPY,H1,87.52345215759794,0.26095210678198555,0.19683852888110945,0.0641135779008761,160.09109999999998,0.36742201464838,0.18878571428571433,53.964802068054794,521242 -2024-06-26 18:00:00+00:00,4778,160.646,160.746,160.639,160.703,USD_JPY,H1,95.31996179560598,0.2686226835054981,0.2111953598059872,0.057427323699510924,160.14254999999997,0.3778392132361077,0.1883571428571429,55.355795106640855,526020 -2024-06-26 19:00:00+00:00,3101,160.706,160.844,160.688,160.798,USD_JPY,H1,95.45875810935993,0.27914951502955887,0.22478619085070156,0.05436332417885731,160.19735,0.3898688409763335,0.19357142857142914,57.223372887648665,529121 -2024-06-26 20:00:00+00:00,1885,160.797,160.874,160.772,160.825,USD_JPY,H1,95.54545454545392,0.28636968770479143,0.23710289022151954,0.049266797483271896,160.25259999999997,0.39689497484731623,0.19657142857142926,58.72041451948365,531006 -2024-06-26 21:00:00+00:00,599,160.758,160.778,160.722,160.762,USD_JPY,H1,89.7058823529416,0.2837374048981758,0.24642979315685082,0.037307611741324964,160.3016,0.39623164411234346,0.1922857142857148,58.16655932041499,530407 -2024-06-26 22:00:00+00:00,1295,160.764,160.765,160.66,160.7,USD_JPY,H1,84.03669724770586,0.27349573141830774,0.25184298080914225,0.021652750609165494,160.3448,0.3898451244522559,0.19264285714285734,56.837039634856765,529112 -2024-06-26 23:00:00+00:00,2743,160.698,160.706,160.59,160.631,USD_JPY,H1,78.55251544571942,0.2568505942883519,0.2528445035049842,0.004006090783367666,160.38445000000002,0.37565570393827336,0.18664285714285508,52.62129525419058,526369 -2024-06-27 00:00:00+00:00,7056,160.632,160.706,160.499,160.692,USD_JPY,H1,72.26027397260347,0.24574855700086573,0.25142531420416053,-0.005676757203294802,160.43135,0.35051500081475456,0.1754285714285686,47.18604563947047,533425 -2024-06-27 01:00:00+00:00,5464,160.694,160.718,160.395,160.496,USD_JPY,H1,58.93358278765222,0.2186144986474119,0.24486315109281082,-0.026248652445398923,160.4653,0.3193790191942536,0.1848571428571404,42.896532152304914,527961 -2024-06-27 02:00:00+00:00,5013,160.506,160.506,160.381,160.458,USD_JPY,H1,54.99999999999973,0.19183294867082168,0.234257110608413,-0.042424161937591326,160.49705,0.2814809472966261,0.18642857142856833,38.215390651873406,522948 -2024-06-27 03:00:00+00:00,2856,160.458,160.49,160.398,160.43,USD_JPY,H1,45.815450643776614,0.16643050411738614,0.22069178931020766,-0.05426128519282153,160.52365,0.2446138256334814,0.14921428571428358,35.47774202025576,520092 -2024-06-27 04:00:00+00:00,4194,160.433,160.434,160.301,160.339,USD_JPY,H1,35.287730727469196,0.13737240078791046,0.20402791160574824,-0.06665551081783777,160.54270000000002,0.21073308137502667,0.14357142857142793,33.83232307499353,515898 -2024-06-27 05:00:00+00:00,3960,160.337,160.466,160.31,160.404,USD_JPY,H1,34.577387486278525,0.11822576825579745,0.18686748293575808,-0.06864171467996064,160.56369999999998,0.16890236982711448,0.1384285714285706,33.73018712586692,519858 -2024-06-27 06:00:00+00:00,5104,160.406,160.496,160.322,160.42,USD_JPY,H1,37.699316628700934,0.1031538964058143,0.17012476562976933,-0.06697086922395504,160.5696,0.16116333658602525,0.1384285714285706,33.094132597059314,524962 -2024-06-27 07:00:00+00:00,6099,160.424,160.563,160.388,160.55,USD_JPY,H1,45.626242544731916,0.10054027719107239,0.15620786794202995,-0.05566759075095756,160.58184999999997,0.1488320406455481,0.14485714285714021,31.674279549334432,531061 -2024-06-27 08:00:00+00:00,3817,160.55,160.608,160.508,160.554,USD_JPY,H1,42.116402116402014,0.09766590000356246,0.14449947435433647,-0.04683357435077401,160.59195,0.13893825780046723,0.14428571428571096,29.85352284703006,534878 -2024-06-27 09:00:00+00:00,3288,160.558,160.57,160.478,160.489,USD_JPY,H1,33.11475409836065,0.08911570818997916,0.133422721121465,-0.04430701293148584,160.591,0.1396058361266739,0.13971428571428085,29.29283519681795,531590 -2024-06-27 10:00:00+00:00,3658,160.49,160.494,160.393,160.438,USD_JPY,H1,29.392971246006837,0.07733290026544637,0.12220475695026128,-0.044871856684814915,160.5824,0.14361402953964728,0.13964285714285193,29.54019612410256,527932 -2024-06-27 11:00:00+00:00,4887,160.438,160.55,160.418,160.55,USD_JPY,H1,39.27125506072991,0.07615454191702042,0.11299471394361311,-0.03684017202659269,160.57565,0.1416977045706959,0.14507142857142494,29.46166071703976,532819 -2024-06-27 12:00:00+00:00,8910,160.552,160.552,160.281,160.4,USD_JPY,H1,36.05947955390479,0.062397656693406134,0.10287530249357173,-0.04047764580016559,160.56385,0.14616367000029148,0.15692857142856756,30.41534228359185,523909 -2024-06-27 13:00:00+00:00,9096,160.401,160.547,160.362,160.522,USD_JPY,H1,45.17271922054897,0.06064057959005709,0.0944283579128688,-0.03378777832281171,160.55805,0.14536577279961477,0.1618571428571402,32.04741872843889,533005 -2024-06-27 14:00:00+00:00,8238,160.522,160.672,160.42,160.594,USD_JPY,H1,45.701754385964506,0.0643164812373982,0.08840598257777468,-0.02408950134037649,160.55259999999998,0.14164090996355766,0.16507142857142704,32.390490332589145,541243 -2024-06-27 15:00:00+00:00,5374,160.594,160.729,160.568,160.7,USD_JPY,H1,59.714285714284365,0.07491935026325791,0.08570865611487134,-0.010789305851613432,160.54770000000002,0.13420451795097896,0.15350000000000005,30.796642517674194,546617 -2024-06-27 16:00:00+00:00,3211,160.7,160.737,160.68,160.71,USD_JPY,H1,62.328767123287555,0.08317038040871694,0.08520100097364046,-0.0020306205649235215,160.54194999999999,0.12375505308778917,0.14864285714285635,29.430347694513067,549828 -2024-06-27 17:00:00+00:00,4409,160.708,160.732,160.666,160.728,USD_JPY,H1,64.72332015810201,0.09012294954933964,0.0861853906887803,0.00393755886055934,160.54025,0.12077071580618298,0.14678571428571274,29.720776521665204,554237 -2024-06-27 18:00:00+00:00,3248,160.725,160.817,160.71,160.767,USD_JPY,H1,72.29166666666568,0.09765418805497461,0.08847915016201915,0.009175037892955457,160.54360000000003,0.12624053901611837,0.14492857142856913,30.778537800354517,557485 -2024-06-27 19:00:00+00:00,4213,160.766,160.824,160.752,160.82,USD_JPY,H1,71.9409282700412,0.10666978303166275,0.09211727673594788,0.014552506295714862,160.55304999999998,0.13950456512636056,0.1389285714285689,29.970691343435448,561698 -2024-06-27 20:00:00+00:00,1507,160.818,160.82,160.754,160.774,USD_JPY,H1,68.09815950920245,0.10884815763702704,0.09546345291616372,0.013384704720863325,160.55715,0.1449036976265212,0.1312142857142829,29.32946453296745,560191 -2024-06-27 21:00:00+00:00,1113,160.744,160.766,160.718,160.742,USD_JPY,H1,60.909090909089414,0.10676171999006101,0.0977231063309432,0.009038613659117817,160.56945,0.14979792531261232,0.12214285714285568,28.546979011249537,559078 -2024-06-27 22:00:00+00:00,1390,160.748,160.784,160.695,160.722,USD_JPY,H1,59.3750000000002,0.10231494724683898,0.09864147451412235,0.0036734727327166344,160.58265,0.15108633818409584,0.1213571428571417,26.791707513351742,557688 -2024-06-27 23:00:00+00:00,2344,160.721,160.76,160.636,160.707,USD_JPY,H1,62.88416075650006,0.0964684449865274,0.09820686860860336,-0.001738423622075963,160.5965,0.14903885048645088,0.12364285714285675,23.651101298781253,555344 -2024-06-28 00:00:00+00:00,5801,160.704,161.144,160.651,161.123,USD_JPY,H1,78.28241123038791,0.12397368173429868,0.10336023123374243,0.020613450500556255,160.63569999999999,0.1780304823298441,0.15164285714285647,22.740816829876966,561145 -2024-06-28 01:00:00+00:00,10929,161.124,161.285,160.951,161.066,USD_JPY,H1,72.31833910034607,0.13956355460808822,0.1106008959086116,0.02896265869947663,160.66879999999998,0.19354901461826982,0.16607142857142776,23.15857382831294,550216 -2024-06-28 02:00:00+00:00,8048,161.06,161.097,160.84,160.938,USD_JPY,H1,73.72134038800658,0.1399765484025579,0.11647602640740087,0.023500521995157037,160.69469999999998,0.19316126343375034,0.16507142857142906,23.488467140035315,542168 -2024-06-28 03:00:00+00:00,4156,160.933,161.014,160.854,160.988,USD_JPY,H1,71.93973634651616,0.14269354868710593,0.12171953086334189,0.02097401782376404,160.7166,0.2005792664071002,0.1632857142857144,24.24495911542412,546324 -2024-06-28 04:00:00+00:00,3686,160.986,161.132,160.986,161.04,USD_JPY,H1,71.4011516314778,0.14734426345489737,0.126844477381653,0.020499786073244375,160.7409,0.20910181354602977,0.1557142857142862,27.044196888350076,550010 -2024-06-28 05:00:00+00:00,4410,161.038,161.05,160.902,160.944,USD_JPY,H1,61.82170542635645,0.14165072928770428,0.12980572776286325,0.011845001524841026,160.76365,0.20496373878749516,0.15478571428571644,29.706567560927915,545600 -2024-06-28 06:00:00+00:00,6194,160.948,160.993,160.882,160.936,USD_JPY,H1,60.97087378640801,0.1349375531819419,0.130832092846679,0.004105460335262906,160.78855,0.19323410265352706,0.15864285714285944,31.936152896682632,539406 -2024-06-28 07:00:00+00:00,7937,160.936,161.06,160.838,160.929,USD_JPY,H1,59.862610402355145,0.1275817878206169,0.13018203184146657,-0.002600244020849657,160.8075,0.18709510670955593,0.169785714285717,34.55461470072411,531469 -2024-06-28 08:00:00+00:00,6610,160.93,160.966,160.858,160.915,USD_JPY,H1,57.4446680080481,0.11924799116636109,0.12799522370644548,-0.008747232540084388,160.83325,0.16178701888908648,0.1698571428571459,35.33117294866257,524859 -2024-06-28 09:00:00+00:00,6004,160.914,160.924,160.658,160.687,USD_JPY,H1,44.31137724550969,0.09317167764905321,0.12103051449496703,-0.027858836845913823,160.8415,0.1487627924865594,0.18371428571428997,34.57702513569145,518855 -2024-06-28 10:00:00+00:00,7153,160.691,160.74,160.462,160.462,USD_JPY,H1,38.42729970326377,0.05373101403691294,0.10757061440335622,-0.05383960036644328,160.8349,0.1626053990395458,0.19885714285714837,32.829789542480164,511702 -2024-06-28 11:00:00+00:00,7049,160.464,160.66,160.436,160.65,USD_JPY,H1,46.94148936170268,0.0372150409614278,0.09349949971497054,-0.05628445875354274,160.83239999999998,0.16515300722907117,0.21142857142857605,32.13605310795052,518751 -2024-06-28 12:00:00+00:00,9995,160.65,160.684,160.381,160.513,USD_JPY,H1,43.55336212214688,0.012922298056594173,0.07738405938329528,-0.0644617613267011,160.82255,0.1781969564007029,0.22671428571429025,32.0622066329254,508756 -2024-06-28 13:00:00+00:00,9683,160.514,160.516,160.262,160.472,USD_JPY,H1,42.86581663630897,-0.009528395650107768,0.06000156837661467,-0.06952996402672243,160.80975,0.1938525959451249,0.2360000000000042,32.1859204600245,499073 -2024-06-28 14:00:00+00:00,15621,160.454,160.868,160.386,160.83,USD_JPY,H1,40.78036500944075,0.0015490197722840549,0.04831105865574855,-0.046762038883464495,160.81289999999998,0.19363310397416286,0.23521428571429023,29.40537877390064,514694 -2024-06-28 15:00:00+00:00,9870,160.828,160.966,160.803,160.885,USD_JPY,H1,44.29741650913643,0.014597718239713231,0.04156839057254149,-0.02697067233282826,160.81615000000002,0.19430287672096522,0.22300000000000506,26.548941955260798,524564 -2024-06-28 16:00:00+00:00,5934,160.885,160.891,160.808,160.851,USD_JPY,H1,47.086403215003706,0.02194245101912884,0.037643202661858964,-0.015700751642730125,160.82,0.19418656251127067,0.21057142857143316,22.850300554877453,518630 -2024-06-28 17:00:00+00:00,4718,160.85,160.906,160.76,160.8,USD_JPY,H1,43.7081659973229,0.023378438797664103,0.03479024988901999,-0.011411811091355889,160.8229,0.19339185746466275,0.2095714285714345,19.306534447265697,513912 -2024-06-28 18:00:00+00:00,4379,160.799,160.823,160.707,160.806,USD_JPY,H1,41.91988950276299,0.02471571197116873,0.03277534230544974,-0.00805963033428101,160.8271,0.19199229701367343,0.20742857142857726,16.752060325344427,518291 -2024-06-28 19:00:00+00:00,2824,160.806,160.886,160.794,160.863,USD_JPY,H1,47.125621007807275,0.03002878113025531,0.032226030070410853,-0.0021972489401555426,160.8349,0.19001493018062154,0.2034285714285744,14.453368480986379,521115 -2024-06-28 20:00:00+00:00,3000,160.868,160.946,160.858,160.873,USD_JPY,H1,47.76754075123963,0.03464695461804013,0.03271021497993671,0.0019367396381034171,160.8224,0.17790192450942774,0.20178571428571754,11.920535460348221,524115 -2024-06-30 21:00:00+00:00,263,160.786,160.912,160.77,160.834,USD_JPY,H1,46.70824670824665,0.034759233508850684,0.03312001868571951,0.0016392148231311743,160.81080000000003,0.16849725909665864,0.19607142857143092,9.82669526341621,523852 -2024-06-30 22:00:00+00:00,2499,160.84,160.945,160.803,160.824,USD_JPY,H1,46.83808200139042,0.03365336388193896,0.0332266877249634,0.0004266761569755584,160.80509999999998,0.1658756351097938,0.19850000000000176,7.764837707052831,521353 -2024-06-30 23:00:00+00:00,2116,160.818,160.938,160.781,160.924,USD_JPY,H1,59.0389016018308,0.0403806356684413,0.03465747731365898,0.005723158354782321,160.80190000000002,0.16274937143356272,0.1907142857142848,6.52798535021603,523469 -2024-07-01 00:00:00+00:00,9244,160.924,161.188,160.736,160.998,USD_JPY,H1,73.10344827586388,0.0510942459208934,0.03794483103510587,0.013149414885787532,160.7998,0.15975889731228535,0.20314285714285468,8.998704675501559,532713 -2024-07-01 01:00:00+00:00,9753,160.997,161.041,160.841,160.928,USD_JPY,H1,63.339731285989515,0.053321783914469734,0.04102022161097864,0.012301562303491095,160.799,0.159037234987727,0.2014285714285689,12.540015669537679,522960 -2024-07-01 02:00:00+00:00,3940,160.928,160.944,160.839,160.9,USD_JPY,H1,70.73954983923102,0.052225732098463595,0.04326132370847563,0.008964408389987966,160.7972,0.1576022976285616,0.18728571428571122,16.70587826681815,519020 -2024-07-01 03:00:00+00:00,4199,160.9,161.076,160.9,161.054,USD_JPY,H1,77.8202676864274,0.06305673728991223,0.04722040642476295,0.01583633086514928,160.80345,0.16539028007753795,0.18171428571428244,22.178201405356187,523219 -2024-07-01 04:00:00+00:00,2967,161.052,161.086,160.977,161.074,USD_JPY,H1,67.23163841808189,0.07241941386678263,0.05226020791316689,0.02015920595361574,160.8114,0.17459951168597398,0.155071428571426,26.87052558428159,526186 -2024-07-01 05:00:00+00:00,4403,161.076,161.124,160.996,161.04,USD_JPY,H1,61.28093158660973,0.07621730105535107,0.057051626541603735,0.019165674513747337,160.82905,0.1791451851871628,0.1525714285714242,31.159449819488962,521783 -2024-07-01 06:00:00+00:00,6855,161.038,161.053,160.905,160.906,USD_JPY,H1,53.49428208386355,0.06763482177510127,0.05916826558830325,0.008466556186798022,160.85125,0.15746440702913747,0.15721428571428117,34.53753483504784,514928 -2024-07-01 07:00:00+00:00,7332,160.903,161.074,160.87,161.014,USD_JPY,H1,62.67772511848427,0.06875527451251173,0.061085667373144956,0.007669607139366777,160.86945,0.15397657889914756,0.16135714285713781,37.77563152663873,522260 -2024-07-01 08:00:00+00:00,5197,161.015,161.093,160.953,161.01,USD_JPY,H1,62.11401425178088,0.06853049788779231,0.06257463347607443,0.005955864411717873,160.89430000000002,0.1319517854810089,0.16307142857142157,40.913181795081826,517063 -2024-07-01 09:00:00+00:00,3838,161.011,161.075,160.971,161.068,USD_JPY,H1,62.158956109134934,0.07220019713756187,0.06449974620837193,0.007700450929189945,160.9241,0.09315742198352428,0.16392857142856446,44.61229330551448,520901 -2024-07-01 10:00:00+00:00,4028,161.066,161.15,161.034,161.125,USD_JPY,H1,64.15730337078728,0.07879953191002187,0.06735970334870192,0.011439828561319948,160.93885,0.10053607630626277,0.16592857142856587,48.827311232091624,524929 -2024-07-01 11:00:00+00:00,3919,161.126,161.135,161.076,161.104,USD_JPY,H1,65.48165137614762,0.08139673685241178,0.0701671100494439,0.01122962680296788,160.9498,0.1061327867746252,0.15999999999999456,53.872975179108145,521010 -2024-07-01 12:00:00+00:00,6860,161.105,161.394,161.104,161.354,USD_JPY,H1,73.83093525179873,0.10244700583174904,0.07662308920590494,0.0258239166258441,160.97495,0.13668730163619447,0.17057142857142285,59.32838780373549,527870 -2024-07-01 13:00:00+00:00,8397,161.354,161.462,161.278,161.396,USD_JPY,H1,72.39089184060683,0.1211223219171984,0.08552293574816364,0.03559938616903477,161.00475,0.1595882448750828,0.17249999999999538,66.06508852832444,536267 -2024-07-01 14:00:00+00:00,10583,161.325,161.669,160.968,161.656,USD_JPY,H1,76.53225806451655,0.1551144091987453,0.09944123043827997,0.05567317876046533,161.04725000000002,0.20930961078155283,0.19028571428571134,65.48453407245913,546850 -2024-07-01 15:00:00+00:00,7001,161.656,161.73,161.534,161.559,USD_JPY,H1,74.90134175217001,0.17224080910082762,0.1140011461707895,0.058239662930038114,161.08205,0.23352211099479497,0.18999999999999773,63.19112008668803,539849 -2024-07-01 16:00:00+00:00,5078,161.558,161.601,161.475,161.52,USD_JPY,H1,74.2566510172142,0.18058495934775465,0.12731790880618254,0.0532670505415721,161.1144,0.24743811561752024,0.1914999999999988,59.94093198178704,534771 -2024-07-01 17:00:00+00:00,5951,161.522,161.522,161.407,161.502,USD_JPY,H1,69.61471103327486,0.18362855330934735,0.1385800377068155,0.04504851560253184,161.1478,0.25262674777618305,0.18714285714285545,54.46482126895283,528820 -2024-07-01 18:00:00+00:00,3864,161.502,161.57,161.47,161.522,USD_JPY,H1,69.61471103327412,0.18551594398226712,0.14796721896190584,0.03754872502036127,161.1827,0.25375124579920294,0.18649999999999725,49.350492349765766,532684 -2024-07-01 19:00:00+00:00,4341,161.52,161.523,161.458,161.475,USD_JPY,H1,68.83116883116938,0.1811312393074047,0.15460002303100562,0.026531216276399094,161.21025000000003,0.2540967232072925,0.1819999999999981,44.73642025257085,528343 -2024-07-01 20:00:00+00:00,2044,161.478,161.494,161.438,161.474,USD_JPY,H1,77.78864970645736,0.1755519836298447,0.15879041515077344,0.01676156847907126,161.23405,0.2554586123806579,0.17542857142857063,41.29214358388872,526299 -2024-07-01 21:00:00+00:00,1179,161.515,161.581,161.449,161.452,USD_JPY,H1,73.3974358974358,0.1674251937556619,0.16051737087175114,0.006907822883910758,161.26024999999998,0.24921241733764957,0.17028571428571126,38.47820280895995,525120 -2024-07-01 22:00:00+00:00,1062,161.455,161.498,161.408,161.438,USD_JPY,H1,72.62156448203018,0.1580332621589946,0.16002054912919983,-0.0019872869702052265,161.28715000000003,0.23701793737926186,0.1667142857142839,34.38693323334383,524058 -2024-07-01 23:00:00+00:00,1548,161.44,161.52,161.42,161.514,USD_JPY,H1,73.13278008298816,0.15493664039911437,0.15900376738318275,-0.004067126984068387,161.31015,0.23551673872252993,0.16642857142857231,30.667475146172343,525606 -2024-07-02 00:00:00+00:00,4977,161.512,161.64,161.505,161.524,USD_JPY,H1,71.75572519084038,0.1515425733177267,0.15751152857009154,-0.005968955252364849,161.33265,0.23325325632656507,0.16778571428571354,27.14031015723757,530583 -2024-07-02 01:00:00+00:00,4023,161.525,161.666,161.459,161.64,USD_JPY,H1,76.48221343873458,0.15640998431302933,0.1572912197186791,-0.0008812354056497718,161.36265,0.23221525292763653,0.17835714285714183,21.730260624529954,534606 -2024-07-02 02:00:00+00:00,4527,161.632,161.642,161.535,161.618,USD_JPY,H1,66.83673469387716,0.15668604723742874,0.15717018522242904,-0.00048413798500029914,161.39825000000002,0.21224139064475037,0.1652857142857138,16.70313328959565,530079 -2024-07-02 03:00:00+00:00,2134,161.62,161.682,161.617,161.662,USD_JPY,H1,66.92111959287652,0.15862671138344808,0.15746149045463287,0.0011652209288152138,161.43064999999999,0.19957883947457328,0.1567857142857138,11.528338020006203,532213 -2024-07-02 04:00:00+00:00,3253,161.664,161.744,161.599,161.678,USD_JPY,H1,52.02952029520225,0.15961581621141363,0.15789235560598902,0.0017234606054246093,161.46405,0.18045657739177795,0.11707142857142726,11.39618333985638,535466 -2024-07-02 05:00:00+00:00,3738,161.679,161.728,161.627,161.706,USD_JPY,H1,65.53911205074047,0.16080539046453168,0.15847496257769755,0.00233042788683413,161.49595,0.16223098382698115,0.11028571428571306,11.155809274597704,539204 -2024-07-02 06:00:00+00:00,5421,161.704,161.726,161.588,161.676,USD_JPY,H1,66.81034482758486,0.15751169062906456,0.15828230818797095,-0.0007706175589063946,161.5235,0.1413642179390054,0.11114285714285595,11.633667668392855,533783 -2024-07-02 07:00:00+00:00,5985,161.676,161.72,161.6,161.659,USD_JPY,H1,66.95464362850907,0.15178002619239805,0.15698185178885637,-0.00520182559645832,161.55124999999998,0.1042950647662548,0.1115000000000005,13.861443218001133,527798 -2024-07-02 08:00:00+00:00,4366,161.658,161.696,161.559,161.592,USD_JPY,H1,56.86274509804185,0.14021498965436763,0.15362847936195864,-0.013413489707591014,161.56315,0.09363775390122397,0.11414285714285809,15.066624481832365,523432 -2024-07-02 09:00:00+00:00,4368,161.592,161.67,161.562,161.668,USD_JPY,H1,67.90352504638467,0.13561885003451835,0.1500265534964706,-0.014407703461952248,161.57675,0.08764394180222027,0.11721428571428508,16.211666916168085,527800 -2024-07-02 10:00:00+00:00,2856,161.668,161.692,161.606,161.611,USD_JPY,H1,61.51260504201742,0.1259253634373465,0.14520631548464577,-0.019280952047299266,161.5745,0.08606576437693343,0.1193571428571423,18.303198665226034,524944 -2024-07-02 11:00:00+00:00,2671,161.61,161.674,161.588,161.624,USD_JPY,H1,64.67576791808888,0.11793274159128941,0.1397516007059745,-0.02181885911468509,161.57775,0.0866747550686537,0.1160714285714306,18.091372641284504,527615 -2024-07-02 12:00:00+00:00,5394,161.616,161.616,161.484,161.516,USD_JPY,H1,55.735294117647456,0.10171136844587636,0.13214355425395488,-0.03043218580807852,161.57755,0.08681951943937857,0.11907142857143072,17.998335396872946,522221 -2024-07-02 13:00:00+00:00,8442,161.517,161.554,161.269,161.38,USD_JPY,H1,40.94594594594438,0.0769942086488129,0.12111368513292649,-0.04411947648411359,161.57145,0.09618757720365077,0.13228571428571456,20.23386752595389,513779 -2024-07-02 14:00:00+00:00,9266,161.386,161.622,161.35,161.44,USD_JPY,H1,44.68354430379703,0.061537810418656136,0.10919851019007241,-0.04766069977141628,161.56734999999998,0.10007537952588691,0.1420714285714309,23.07288295458987,523045 -2024-07-02 15:00:00+00:00,5847,161.441,161.562,161.41,161.538,USD_JPY,H1,43.3937823834212,0.05654447493441239,0.09866770313894041,-0.04212322820452802,161.57049999999998,0.09798522986381607,0.13814285714286104,25.85359966387737,528892 -2024-07-02 16:00:00+00:00,3658,161.538,161.606,161.535,161.576,USD_JPY,H1,47.3350253807105,0.05501927505432036,0.08993801752201641,-0.03491874246769605,161.5756,0.09531631554101047,0.13557142857143237,26.803387317315874,532550 -2024-07-02 17:00:00+00:00,3027,161.577,161.588,161.511,161.525,USD_JPY,H1,41.38364779874166,0.04912894152943181,0.0817762023234995,-0.032647260794067684,161.57925,0.09166177822443497,0.13642857142857526,28.299062510468907,529523 -2024-07-02 18:00:00+00:00,3181,161.524,161.532,161.454,161.493,USD_JPY,H1,38.59432799013519,0.041401427325865825,0.07370124732397276,-0.03229981999810694,161.582,0.08795094331145197,0.13164285714286045,30.97173686995905,526342 -2024-07-02 19:00:00+00:00,2535,161.492,161.498,161.423,161.46,USD_JPY,H1,34.926470588235986,0.03224281731078804,0.06540956132133582,-0.03316674401054778,161.57930000000002,0.09092686481541132,0.12978571428571684,34.18308209965272,523807 -2024-07-02 20:00:00+00:00,1265,161.458,161.486,161.418,161.469,USD_JPY,H1,36.98113207547143,0.02541777735811479,0.05741120452869162,-0.03199342717057683,161.57655,0.09348316768217355,0.12478571428571529,36.94805905817805,525072 -2024-07-02 21:00:00+00:00,1401,161.44,161.49,161.416,161.453,USD_JPY,H1,37.02770780856418,0.018504509277136094,0.04962986547838052,-0.031125356201244424,161.5672,0.09611758154461919,0.12150000000000157,38.41583965310451,523671 -2024-07-02 22:00:00+00:00,1464,161.452,161.454,161.388,161.424,USD_JPY,H1,38.888888888888054,0.010563863239042348,0.04181666503051289,-0.03125280179147054,161.5575,0.10041414247151638,0.11642857142857313,41.09432736548045,522207 -2024-07-02 23:00:00+00:00,2095,161.424,161.526,161.42,161.491,USD_JPY,H1,38.152610441767344,0.009566902801878996,0.03536671258478611,-0.025799809782907114,161.54895000000002,0.09830590017022908,0.11628571428571936,42.3636971615395,524302 -2024-07-03 00:00:00+00:00,4709,161.492,161.581,161.442,161.564,USD_JPY,H1,46.92005242463957,0.014500145732313285,0.031193399214291546,-0.01669325348197826,161.54325,0.09362291390611462,0.12007142857143142,42.54973880859586,529011 -2024-07-03 01:00:00+00:00,3285,161.565,161.647,161.521,161.635,USD_JPY,H1,50.66991473812403,0.023863795940116006,0.02972747855945644,-0.005863682619340435,161.5397,0.0883230315546523,0.12292857142857372,43.306810960311566,532296 -2024-07-03 02:00:00+00:00,2692,161.633,161.65,161.567,161.648,USD_JPY,H1,59.090909090910166,0.03196507406940441,0.030174997661446035,0.0017900764079583735,161.5383,0.08624634245701561,0.11942857142857324,43.432990464371755,534988 -2024-07-03 03:00:00+00:00,2085,161.648,161.658,161.622,161.63,USD_JPY,H1,70.55921052631757,0.03651205751464204,0.031442409632085236,0.005069647882556802,161.53685000000002,0.08433284624410603,0.10164285714285727,43.277046137430844,532903 -2024-07-03 04:00:00+00:00,2401,161.628,161.742,161.612,161.718,USD_JPY,H1,71.85534591195113,0.04667836012828275,0.03448959973132474,0.012188760396958008,161.54315,0.09293703305752336,0.09149999999999839,42.412314579631115,535304 -2024-07-03 05:00:00+00:00,4606,161.716,161.896,161.699,161.87,USD_JPY,H1,74.05797101449436,0.06623682103494843,0.040839043992049476,0.02539777704289896,161.55325,0.11546513489667441,0.09471428571428119,42.8747121370804,539910 -2024-07-03 06:00:00+00:00,5644,161.868,161.942,161.672,161.814,USD_JPY,H1,66.80790960452046,0.07633832948280883,0.04793890109020135,0.02839942839260748,161.5634,0.12894445972010996,0.10892857142856778,44.49092382088692,534266 -2024-07-03 07:00:00+00:00,5792,161.813,161.903,161.726,161.772,USD_JPY,H1,67.66809728183057,0.08003223690508321,0.054357568253177724,0.025674668651905486,161.57080000000002,0.13662341637892064,0.11607142857142451,45.54109998891615,528474 -2024-07-03 08:00:00+00:00,4995,161.772,161.86,161.762,161.848,USD_JPY,H1,73.88963660834594,0.08807695369569046,0.06110144534168027,0.02697550835401019,161.5874,0.14920469869812614,0.11749999999999668,47.345413490100306,533469 -2024-07-03 09:00:00+00:00,3635,161.848,161.896,161.803,161.867,USD_JPY,H1,77.91495198902543,0.09489173803370932,0.06785950388008608,0.02703223415362324,161.61175,0.15325962666751092,0.11878571428571101,50.22957768924997,537104 -2024-07-03 10:00:00+00:00,2903,161.868,161.95,161.846,161.942,USD_JPY,H1,79.74842767295621,0.10513247518704816,0.07531409814147849,0.029818377045569666,161.63685,0.1643565684338601,0.12135714285713968,53.39250460255444,540007 -2024-07-03 11:00:00+00:00,3079,161.941,161.95,161.896,161.92,USD_JPY,H1,79.1510611735305,0.11020276811132135,0.08229183213544707,0.027910935975874282,161.65595000000002,0.1741679392456225,0.11992857142856751,56.73698363710719,536928 -2024-07-03 12:00:00+00:00,7103,161.921,161.934,161.794,161.825,USD_JPY,H1,73.12572087658364,0.10534100025299153,0.08690166575895597,0.018439334494035564,161.6684,0.17702821662700616,0.12521428571428064,58.37372614905356,529825 -2024-07-03 13:00:00+00:00,7684,161.826,161.833,161.596,161.698,USD_JPY,H1,61.16504854368873,0.0902004015007094,0.08756141290730667,0.0026389885934027385,161.67704999999998,0.17385065432280475,0.1345714285714215,57.549713253130925,522141 -2024-07-03 14:00:00+00:00,20259,161.673,161.673,160.772,161.332,USD_JPY,H1,40.49180327868899,0.048113603030941476,0.07967185093203363,-0.03155824790109216,161.669,0.18611626249833702,0.18899999999999498,58.414081069223144,501882 -2024-07-03 15:00:00+00:00,10618,161.333,161.547,161.27,161.48,USD_JPY,H1,44.02467232074037,0.026397580263704867,0.06901699679836788,-0.042619416534663015,161.67,0.18498449439440015,0.199785714285708,61.721874628272246,512500 -2024-07-03 16:00:00+00:00,6101,161.48,161.578,161.404,161.536,USD_JPY,H1,45.82089552238845,0.013550011653876481,0.057923599769469605,-0.044373588115593124,161.67334999999997,0.18173093908024657,0.20628571428570858,65.70268851071205,518601 -2024-07-03 17:00:00+00:00,4551,161.536,161.558,161.494,161.5,USD_JPY,H1,45.213549337261064,0.00045804181249309295,0.04643048817807431,-0.04597244636558122,161.67569999999998,0.17901517138894443,0.20828571428571,67.75457762978074,514050 -2024-07-03 18:00:00+00:00,4572,161.5,161.708,161.468,161.662,USD_JPY,H1,48.04469273743085,0.003118657557166671,0.03776812205389279,-0.034649464496726116,161.6876,0.1690351567544768,0.21614285714285383,69.08749075308685,518622 -2024-07-03 19:00:00+00:00,2697,161.662,161.74,161.632,161.702,USD_JPY,H1,43.63636363636363,0.008358528496074769,0.03188620334232919,-0.02352767484625442,161.69815,0.16258027169783862,0.2097857142857131,70.47829134390747,521319 -2024-07-03 20:00:00+00:00,2355,161.702,161.749,161.694,161.706,USD_JPY,H1,45.741324921135586,0.012687674918311131,0.028046497657525576,-0.015358822739214444,161.70525,0.15948465528592354,0.19442857142857,72.2369022635162,523674 -2024-07-03 21:00:00+00:00,2102,161.624,161.656,161.554,161.575,USD_JPY,H1,42.741341193809916,0.005484724965157284,0.02353414311905192,-0.018049418153894638,161.70225,0.1614281248178003,0.18907142857142795,73.5471824731609,521572 -2024-07-03 22:00:00+00:00,654,161.582,161.642,161.543,161.605,USD_JPY,H1,40.732265446223415,0.002172046512214365,0.019261723797684413,-0.017089677285470048,161.7001,0.1624716655720831,0.18914285714285484,72.73310074304865,522226 -2024-07-03 23:00:00+00:00,1550,161.598,161.676,161.574,161.588,USD_JPY,H1,39.343009931245575,-0.0018042348569906608,0.0150485320667494,-0.016852766923740062,161.698,0.16369226586261554,0.18978571428571098,71.01680255929587,520676 -2024-07-04 00:00:00+00:00,5645,161.589,161.606,161.37,161.442,USD_JPY,H1,31.88405797101443,-0.01654571758379575,0.00872968213664037,-0.025275399720436117,161.6842,0.1732711899642748,0.19921428571428276,69.81424256951281,515031 -2024-07-04 01:00:00+00:00,7748,161.444,161.468,161.138,161.37,USD_JPY,H1,30.769230769231072,-0.03365034687024604,0.0002536763352630877,-0.03390402320550913,161.6592,0.1809529162604855,0.2189285714285672,68.73606709097974,507283 -2024-07-04 02:00:00+00:00,3540,161.371,161.452,161.318,161.446,USD_JPY,H1,36.56980864635018,-0.04060525190243425,-0.00791810931227638,-0.03268714259015787,161.64079999999998,0.18308111520648307,0.21849999999999575,69.50598419677434,510823 -2024-07-04 03:00:00+00:00,3030,161.449,161.567,161.384,161.536,USD_JPY,H1,44.10480349344954,-0.03841202647859632,-0.014016892745540369,-0.02439513373305595,161.629,0.18178066600907794,0.21464285714285478,72.8222236986044,513853 -2024-07-04 04:00:00+00:00,2352,161.536,161.577,161.469,161.5,USD_JPY,H1,58.045977011494685,-0.03912773845161155,-0.019039061886754603,-0.020088676564856946,161.6116,0.17628696703160243,0.1579999999999972,72.86443095371477,511501 -2024-07-04 05:00:00+00:00,3121,161.51,161.554,161.448,161.482,USD_JPY,H1,50.10940919037252,-0.04067847873304231,-0.023366945256012146,-0.017311533477030166,161.59234999999998,0.16774362489387767,0.14578571428571202,70.09558849947477,508380 -2024-07-04 06:00:00+00:00,4783,161.484,161.486,161.339,161.352,USD_JPY,H1,40.688259109311595,-0.05180024415315643,-0.029053605035441004,-0.022746639117715423,161.56284999999997,0.15436261992247544,0.14385714285713952,68.39658937979779,503597 -2024-07-04 07:00:00+00:00,5498,161.352,161.458,161.266,161.283,USD_JPY,H1,39.373163565131456,-0.06542783536087882,-0.03632845110052857,-0.029099384260350247,161.531,0.14201556626249204,0.15299999999999767,66.55434214756036,498099 -2024-07-04 08:00:00+00:00,5512,161.28,161.327,161.193,161.246,USD_JPY,H1,26.785714285713368,-0.07831067365341937,-0.044724895611106735,-0.033585778042312636,161.50205,0.13788380885737342,0.14542857142856747,67.01735890041307,492587 -2024-07-04 09:00:00+00:00,4049,161.246,161.314,161.244,161.255,USD_JPY,H1,24.161849710981073,-0.08679368743071336,-0.053138653975028066,-0.033655033455685296,161.4799,0.14031014521495225,0.14271428571428096,66.90689976391661,496636 -2024-07-04 10:00:00+00:00,4175,161.254,161.266,161.054,161.062,USD_JPY,H1,19.44971537001848,-0.10784683284106222,-0.0640802897482349,-0.04376654309282732,161.46639999999996,0.1659379719486386,0.15392857142856542,66.83028032221732,492461 -2024-07-04 11:00:00+00:00,5739,161.062,161.104,160.948,161.002,USD_JPY,H1,20.854526958290435,-0.12789876348631424,-0.07684398449585078,-0.051054778990463456,161.44250000000002,0.19564078255195874,0.15778571428570842,66.91513627313084,486722 -2024-07-04 12:00:00+00:00,5454,161.002,161.185,160.95,161.138,USD_JPY,H1,28.558310376491747,-0.1313024269435914,-0.08773567298539892,-0.04356675395819248,161.42260000000002,0.20561701754176576,0.16749999999999585,66.08806599293591,492176 -2024-07-04 13:00:00+00:00,3801,161.138,161.196,161.095,161.16,USD_JPY,H1,30.438756855574866,-0.130717805128711,-0.09633209941406135,-0.03438570571464966,161.4056,0.21281036779156978,0.16742857142856898,65.47060024872152,495977 -2024-07-04 14:00:00+00:00,3885,161.158,161.186,160.962,161.063,USD_JPY,H1,31.866028708132347,-0.13650799823525972,-0.10436727917830103,-0.032140719056958686,161.37565,0.2169368753870321,0.16657142857142812,64.07224049365942,492092 -2024-07-04 15:00:00+00:00,2998,161.062,161.171,161.055,161.146,USD_JPY,H1,39.39393939393808,-0.13286774499124476,-0.11006737234088979,-0.022800372650354978,161.34785,0.20837069070467767,0.15128571428571394,62.120349718698584,495090 -2024-07-04 16:00:00+00:00,1250,161.146,161.174,161.115,161.133,USD_JPY,H1,34.239677744209075,-0.1295385694297977,-0.11396161175867138,-0.01557695767112631,161.3192,0.19553182540111713,0.14592857142857188,59.8510624178814,493840 -2024-07-04 17:00:00+00:00,1793,161.135,161.157,161.112,161.157,USD_JPY,H1,29.557713052857764,-0.12353948807049164,-0.11587718702103544,-0.007662301049456199,161.2983,0.1889806729394705,0.13607142857142865,60.29282204223177,495633 -2024-07-04 18:00:00+00:00,1602,161.158,161.259,161.156,161.25,USD_JPY,H1,37.296747967478694,-0.11001269226966315,-0.114704288070761,0.004691595801097848,161.28055,0.17479716819153757,0.1357142857142841,61.42153296054859,497235 -2024-07-04 19:00:00+00:00,2490,161.25,161.252,161.168,161.222,USD_JPY,H1,36.92152917504964,-0.10039468767050153,-0.11184236799070911,0.011447680320207584,161.26225,0.15939552759808917,0.13414285714285615,63.86727538345121,494745 -2024-07-04 20:00:00+00:00,3536,161.22,161.286,161.22,161.266,USD_JPY,H1,45.26431718061553,-0.08820514346692221,-0.10711492308595175,0.018909779619029538,161.25345,0.15370630746686562,0.12835714285714264,64.60054262248208,498281 -2024-07-04 21:00:00+00:00,2721,161.286,161.306,161.217,161.248,USD_JPY,H1,47.95799299883306,-0.07908564138759289,-0.10150906674627998,0.02242342535868709,161.24735,0.15123849241071533,0.12099999999999918,64.56581567500575,495560 -2024-07-04 22:00:00+00:00,1584,161.256,161.286,161.188,161.273,USD_JPY,H1,51.59763313609405,-0.06904516948625883,-0.09501628729427576,0.025971117808016933,161.23870000000002,0.14405558140529665,0.11842857142857253,62.51846649277507,497144 -2024-07-04 23:00:00+00:00,2026,161.264,161.398,161.258,161.359,USD_JPY,H1,55.63991323210521,-0.05353146449820656,-0.08671932273506193,0.03318785823685537,161.22985,0.1295349069283968,0.12342857142857204,58.42611681379351,499170 -2024-07-05 00:00:00+00:00,8695,161.358,161.394,160.82,161.074,USD_JPY,H1,50.59171597633141,-0.06350184988363594,-0.08207582816477674,0.018573978281140796,161.20855,0.11721346926042858,0.14928571428571655,55.356519744196895,490475 -2024-07-05 01:00:00+00:00,8488,161.073,161.146,160.882,161.014,USD_JPY,H1,50.59171597633141,-0.07537606236644478,-0.08073587500511034,0.0053598126386655565,161.18515,0.10592066299691083,0.15700000000000053,51.44967041985994,481987 -2024-07-05 02:00:00+00:00,4704,161.016,161.068,160.928,160.965,USD_JPY,H1,40.668824163969326,-0.08772906573770456,-0.08213451315162919,-0.005594552586075371,161.1658,0.10913612941829033,0.15021428571428633,49.00283953423748,477283 -2024-07-05 03:00:00+00:00,7339,160.964,160.986,160.528,160.617,USD_JPY,H1,28.332003192337893,-0.12416826706004258,-0.09054126393331187,-0.03362700312673071,161.1325,0.16084824494609481,0.1757142857142863,48.13902943129709,469944 -2024-07-05 04:00:00+00:00,3944,160.618,160.675,160.536,160.642,USD_JPY,H1,32.17612193056739,-0.1493081738845774,-0.10229464592356499,-0.04701352796101241,161.1023,0.19208526069395995,0.16964285714285715,46.979827671497254,473888 -2024-07-05 05:00:00+00:00,3510,160.644,160.788,160.641,160.682,USD_JPY,H1,29.61335676625623,-0.1641122812384026,-0.11465817298653252,-0.04945410825187008,161.07365,0.2100070863642032,0.17185714285714532,45.032761829214834,477398 -2024-07-05 06:00:00+00:00,5283,160.678,160.806,160.57,160.774,USD_JPY,H1,35.25061626951499,-0.16650168407986143,-0.1250268752051983,-0.04147480887466312,161.05925000000002,0.22046168662723076,0.18450000000000394,43.634479218327506,482681 -2024-07-05 07:00:00+00:00,6869,160.773,160.855,160.657,160.772,USD_JPY,H1,33.89121338912082,-0.16663581241343195,-0.13334866264684506,-0.03328714976658689,161.04775,0.22942189935156754,0.19542857142857276,40.18205258732654,475812 -2024-07-05 08:00:00+00:00,5121,160.767,160.826,160.633,160.739,USD_JPY,H1,27.488986784141545,-0.16747439372991835,-0.1401738088634597,-0.027300584866458644,161.0278,0.23833580910564434,0.20185714285714443,39.005454404106224,470691 -2024-07-05 09:00:00+00:00,4713,160.742,160.77,160.616,160.698,USD_JPY,H1,27.177700348432495,-0.16949351705497406,-0.1460377505017626,-0.023455766553211466,161.0047,0.24707703892744604,0.20685714285714393,37.79708149454682,465978 -2024-07-05 10:00:00+00:00,3891,160.702,160.834,160.654,160.802,USD_JPY,H1,30.79470198675544,-0.1608476049358103,-0.14899972138857215,-0.011847883547238147,160.99165,0.2507018096776637,0.21500000000000138,37.22604836537403,469869 -2024-07-05 11:00:00+00:00,4356,160.805,160.882,160.772,160.821,USD_JPY,H1,32.340777502068605,-0.15072505150985194,-0.1493447874128281,-0.0013802640970238256,160.9754,0.2507035154096996,0.21650000000000244,37.090857986005055,474225 -2024-07-05 12:00:00+00:00,17890,160.821,161.16,160.338,160.944,USD_JPY,H1,37.41392501912763,-0.13126464581702635,-0.14572875909366778,0.014464113276641433,160.96595,0.24799776634568133,0.2682142857142874,38.314872460560814,492115 -2024-07-05 13:00:00+00:00,18038,160.946,161.326,160.781,161.264,USD_JPY,H1,46.91758598312793,-0.08899493029340988,-0.1343819933336162,0.045387063040206316,160.97129999999999,0.2534307961322916,0.29714285714285893,40.708812334862685,510153 -2024-07-05 14:00:00+00:00,12019,161.263,161.331,160.899,160.962,USD_JPY,H1,46.40564826700836,-0.07895461265761128,-0.12329651719841522,0.044341904540803945,160.9569,0.24479656431801364,0.28700000000000003,40.362273719416244,498134 -2024-07-05 15:00:00+00:00,10517,160.962,161.023,160.63,160.733,USD_JPY,H1,41.86450492182975,-0.0884563055337253,-0.11632847486547725,0.027872169331751948,160.93245,0.2413208118203754,0.29621428571428715,41.92706496830001,487617 -2024-07-05 16:00:00+00:00,7155,160.732,160.952,160.708,160.886,USD_JPY,H1,47.842708902239025,-0.08268747453314518,-0.10960027479901084,0.026912800265865663,160.91344999999998,0.2282843275777135,0.3036428571428575,43.46723241318837,494772 -2024-07-05 17:00:00+00:00,6154,160.886,160.914,160.812,160.85,USD_JPY,H1,57.669519420671605,-0.08009722261493835,-0.10369966436219635,0.023602441747258007,160.89355,0.2145181810640885,0.2782142857142844,42.3771479569623,488618 -2024-07-05 18:00:00+00:00,5385,160.85,160.85,160.709,160.722,USD_JPY,H1,52.46609124537649,-0.0873658603130707,-0.10043290355237124,0.013067043239300538,160.86599999999999,0.19796464332549965,0.2783571428571402,42.09590010789177,483233 -2024-07-05 19:00:00+00:00,2431,160.72,160.774,160.712,160.77,USD_JPY,H1,52.69938650306817,-0.08823597975961661,-0.09799351879382032,0.009757539034203705,160.83655,0.16115225721948329,0.2722857142857111,44.05840743068067,485664 -2024-07-05 20:00:00+00:00,1768,160.774,160.85,160.74,160.803,USD_JPY,H1,50.92297899427108,-0.08527968041133249,-0.09545075111732276,0.01017107070599027,160.82299999999998,0.15122343179116624,0.2632857142857087,44.7774689241411,487432 -2024-07-07 21:00:00+00:00,627,160.746,160.832,160.733,160.744,USD_JPY,H1,49.14004914004938,-0.08669819595996842,-0.0937002400858519,0.007002044125883483,160.8095,0.14520711163727562,0.2562142857142809,46.387365106769664,486805 -2024-07-07 22:00:00+00:00,1660,160.761,160.794,160.666,160.77,USD_JPY,H1,50.95619987661957,-0.08474748083759209,-0.09190968823619995,0.007162207398607859,160.79975,0.1406929748237579,0.25157142857142595,47.19497651849444,488465 -2024-07-07 23:00:00+00:00,3784,160.767,160.813,160.576,160.64,USD_JPY,H1,48.30409356725085,-0.09262372989167034,-0.09205249656729403,-0.0005712333243763079,160.80089999999998,0.13920673761115046,0.25749999999999723,48.19462870111507,484681 -2024-07-08 00:00:00+00:00,7722,160.64,160.732,160.564,160.614,USD_JPY,H1,44.24019607843175,-0.09981311328289166,-0.09360461991041356,-0.006208493372478099,160.7995,0.14101791601935534,0.25664285714285434,50.102423570283335,476959 -2024-07-08 01:00:00+00:00,8046,160.614,160.718,160.392,160.414,USD_JPY,H1,38.77551020408144,-0.12026276564597538,-0.09893624905752593,-0.021326516588449446,160.7861,0.1636825875911119,0.27207142857142436,52.98795930686321,468913 -2024-07-08 02:00:00+00:00,8462,160.416,160.483,160.262,160.374,USD_JPY,H1,33.526011560694016,-0.13810494039603327,-0.10676998732522741,-0.03133495307080586,160.7661,0.18788683606015405,0.22914285714285296,54.32041811856031,460451 -2024-07-08 03:00:00+00:00,5326,160.374,160.555,160.358,160.49,USD_JPY,H1,24.6395806028835,-0.1412564455091001,-0.11366727896200196,-0.027589166547098143,160.752,0.1977435873108483,0.2042857142857112,57.29511133525206,465777 -2024-07-08 04:00:00+00:00,3637,160.488,160.581,160.472,160.54,USD_JPY,H1,33.43799058084748,-0.13812720939526457,-0.1185592650486545,-0.019567944346610078,160.74205,0.20335902269635825,0.18121428571428208,61.262935306946304,469414 -2024-07-08 05:00:00+00:00,4129,160.54,160.701,160.53,160.698,USD_JPY,H1,48.545303408146445,-0.12149744082293523,-0.11914690020351065,-0.0023505406194245793,160.74205,0.20335902269635825,0.16535714285713862,61.75753487424045,473543 -2024-07-08 06:00:00+00:00,8199,160.698,160.868,160.542,160.836,USD_JPY,H1,47.89562289562364,-0.09607528663298126,-0.11453257748940479,0.01845729085642353,160.74375,0.20402757168274635,0.17121428571428104,59.10013083434813,481742 -2024-07-08 07:00:00+00:00,8488,160.836,160.958,160.787,160.899,USD_JPY,H1,52.016460905350066,-0.07003712837436638,-0.10563348766639712,0.03559635929203074,160.74765,0.2063145975559183,0.17614285714285366,56.32756996424423,490230 -2024-07-08 08:00:00+00:00,5439,160.898,161.119,160.887,161.093,USD_JPY,H1,64.48087431693908,-0.033362934543561096,-0.09117937704182992,0.057816442498268825,160.7551,0.21622987282407763,0.18264285714285425,54.43862841760688,495669 -2024-07-08 09:00:00+00:00,4751,161.094,161.103,161.004,161.038,USD_JPY,H1,60.40372670807471,-0.00863685180382845,-0.07467087199422963,0.06603402019040118,160.7438,0.1928800008907101,0.18528571428571183,51.42152549167024,490918 -2024-07-08 10:00:00+00:00,4844,161.036,161.041,160.92,160.937,USD_JPY,H1,54.941002949853065,0.0027768808475627793,-0.05918132142587115,0.06195820227343393,160.74255,0.1914673189274938,0.18607142857142783,48.36619674786415,486074 -2024-07-08 11:00:00+00:00,4984,160.938,161.058,160.869,161.012,USD_JPY,H1,59.76676384839663,0.01767052459612728,-0.043810952221471466,0.061481476817598746,160.75650000000002,0.2006771431834139,0.1924999999999995,44.548710007244786,491058 -2024-07-08 12:00:00+00:00,9099,161.01,161.02,160.666,160.694,USD_JPY,H1,47.716346153845485,0.0037704389336568056,-0.03429467399044581,0.03806511292410262,160.7469,0.19873915728497923,0.2086428571428566,41.16754638378997,481959 -2024-07-08 13:00:00+00:00,9722,160.694,160.812,160.59,160.66,USD_JPY,H1,50.63775510204116,-0.009875160248441262,-0.029410771242044904,0.019535610993603642,160.73739999999998,0.1980915259124575,0.207571428571429,37.53158236828635,472237 -2024-07-08 14:00:00+00:00,8080,160.658,160.662,160.478,160.616,USD_JPY,H1,50.063051702396265,-0.023963590829879422,-0.02832133515961181,0.004357744329732387,160.7321,0.19993469988289417,0.2087142857142855,33.69558032229169,464157 -2024-07-08 15:00:00+00:00,6918,160.616,160.816,160.592,160.779,USD_JPY,H1,61.78179470626299,-0.0217255966605876,-0.027002187459806967,0.005276590799219369,160.73255,0.20003459570889645,0.20142857142857093,28.671558572125495,471075 -2024-07-08 16:00:00+00:00,4930,160.778,160.796,160.732,160.732,USD_JPY,H1,61.50385604113178,-0.023473885027527785,-0.026296526973351133,0.0028226419458233475,160.729,0.19934735620966565,0.19021428571428448,24.802473184162913,466145 -2024-07-08 17:00:00+00:00,4967,160.732,160.752,160.69,160.724,USD_JPY,H1,58.08011049723733,-0.025214294602449172,-0.02608008049917074,0.0008657858967215694,160.728,0.1993183119545543,0.18057142857142797,19.016511984868128,461178 -2024-07-08 18:00:00+00:00,4375,160.724,160.82,160.718,160.79,USD_JPY,H1,58.53825136612056,-0.02102556370414277,-0.02506917714016515,0.004043613436022379,160.72899999999998,0.19959010630050403,0.18007142857142963,13.754275511330908,465553 -2024-07-08 19:00:00+00:00,4296,160.789,160.8,160.74,160.794,USD_JPY,H1,53.66412213740487,-0.017185098599156845,-0.02349236143196349,0.006307262832806644,160.7367,0.19894540379449852,0.17214285714285893,10.174395547112415,469849 -2024-07-08 20:00:00+00:00,1334,160.794,160.842,160.778,160.837,USD_JPY,H1,50.04115226337351,-0.01055014618245309,-0.02090391838206141,0.01035377219960832,160.74785000000003,0.19795328397969564,0.15342857142857522,9.826461383626182,471183 -2024-07-08 21:00:00+00:00,288,160.799,160.818,160.789,160.806,USD_JPY,H1,46.069315300084675,-0.007704526526282507,-0.018264040010905633,0.010559513484623126,160.76745,0.1819148080152504,0.1432857142857204,11.105809877198963,470895 -2024-07-08 22:00:00+00:00,890,160.802,160.824,160.786,160.787,USD_JPY,H1,34.82142857142827,-0.006902921080268243,-0.015991816224778157,0.009088895144509914,160.78810000000001,0.15657817958653483,0.12942857142857836,12.857336787138024,470005 -2024-07-08 23:00:00+00:00,2446,160.788,160.876,160.732,160.862,USD_JPY,H1,41.43968871595198,-0.00021331087521048175,-0.012836115154864621,0.01262280427965414,160.8067,0.14058078781119251,0.1326428571428632,14.766923613885764,472451 -2024-07-09 00:00:00+00:00,5475,160.86,160.92,160.766,160.894,USD_JPY,H1,47.758081334723215,0.007582974167235079,-0.008752297290444681,0.01633527145767976,160.8244,0.12684901927536424,0.13500000000000512,16.672536521609267,477926 -2024-07-09 01:00:00+00:00,4117,160.894,161.022,160.856,160.98,USD_JPY,H1,48.35051546391688,0.02046515789945147,-0.002908806252465451,0.02337396415191692,160.8385,0.1277293602920702,0.13335714285714825,17.42933396751378,482043 -2024-07-09 02:00:00+00:00,4671,160.98,161.133,160.959,161.006,USD_JPY,H1,73.00884955752502,0.032398889793370245,0.004152732956701688,0.028246156836668555,160.847,0.1330979062139286,0.12050000000000491,18.800796765477937,486714 -2024-07-09 03:00:00+00:00,4035,161.006,161.101,160.909,161.053,USD_JPY,H1,78.43704775687638,0.045128749370718424,0.012347936239505036,0.032780813131213386,160.8547,0.14051263290881347,0.11835714285714768,20.56405949745798,490749 -2024-07-09 04:00:00+00:00,3911,161.052,161.063,160.906,160.964,USD_JPY,H1,73.64130434782629,0.04748828323477028,0.019376005638558087,0.028112277596212192,160.84825,0.131681383836367,0.11642857142857517,23.52658514860243,486838 -2024-07-09 05:00:00+00:00,3148,160.964,161.008,160.904,160.904,USD_JPY,H1,59.873617693523194,0.04400941907428546,0.024302688325703564,0.019706730748581897,160.84155,0.1247449925441399,0.1078571428571483,25.851701892323373,483690 -2024-07-09 06:00:00+00:00,4629,160.904,160.934,160.798,160.828,USD_JPY,H1,57.250755287009575,0.03471960334661617,0.026386071329886088,0.00833353201673008,160.83610000000002,0.122720006547149,0.11300000000000564,25.855316547701257,479061 -2024-07-09 07:00:00+00:00,5770,160.828,160.944,160.74,160.924,USD_JPY,H1,63.33333333333497,0.03470371235374614,0.0280495995346581,0.006654112819088041,160.8317,0.11755003416945321,0.12314285714286045,26.260798545378414,484831 -2024-07-09 08:00:00+00:00,4796,160.918,161.08,160.889,161.054,USD_JPY,H1,66.21621621621753,0.04466614861453877,0.031372909350634234,0.013293239263904535,160.8497,0.12280026575751742,0.12950000000000322,27.0611803456291,489627 -2024-07-09 09:00:00+00:00,4104,161.056,161.08,160.975,161.048,USD_JPY,H1,65.56372549019653,0.05148382775203686,0.03539509303091476,0.0160887347211221,160.86909999999997,0.12189896595842775,0.13271428571429006,28.780710025685206,485523 -2024-07-09 10:00:00+00:00,4331,161.048,161.055,160.959,161.02,USD_JPY,H1,61.42322097378467,0.054004985734394495,0.039117071571610706,0.014887914162783789,160.8893,0.1107101954449458,0.1350000000000031,29.2992480103344,481192 -2024-07-09 11:00:00+00:00,5146,161.02,161.179,161.019,161.121,USD_JPY,H1,68.08266360505192,0.06342179058398756,0.04397801537408608,0.01944377520990148,160.9064,0.11888712030952492,0.14435714285714393,29.90748788034995,486338 -2024-07-09 12:00:00+00:00,6374,161.12,161.162,161.033,161.132,USD_JPY,H1,69.98841251448496,0.07095436657061782,0.04937328561339243,0.02158108095722539,160.9264,0.12161821196183187,0.15085714285714452,28.91233625290273,492712 -2024-07-09 13:00:00+00:00,7147,161.13,161.15,160.974,161.019,USD_JPY,H1,58.71254162042252,0.06703311565902936,0.05290525162251982,0.014127864036509542,160.94115000000002,0.11338953588952677,0.15314285714285955,27.800429214043167,485565 -2024-07-09 14:00:00+00:00,15441,161.02,161.388,160.888,161.364,USD_JPY,H1,69.35749588138428,0.09071836790027987,0.060467874878071835,0.030250493022208037,160.96985,0.14212088074605728,0.17785714285714554,28.650850978534162,501006 -2024-07-09 15:00:00+00:00,9644,161.362,161.52,161.309,161.4,USD_JPY,H1,68.04123711340294,0.11111315677419498,0.07059693125729646,0.04051622551689851,161.00015,0.16535648096378286,0.18107142857143238,31.037616889047786,510650 -2024-07-09 16:00:00+00:00,5590,161.4,161.408,161.313,161.32,USD_JPY,H1,62.88998357963858,0.11944396678342173,0.08036633836252152,0.03907762842090021,161.02429999999998,0.17524932617013983,0.17542857142857468,31.817256385138997,505060 -2024-07-09 17:00:00+00:00,5062,161.32,161.344,161.232,161.32,USD_JPY,H1,61.40051238257889,0.12460976987571826,0.08921502466516087,0.03539474521055738,161.05,0.17919527721391026,0.1697142857142881,31.943982854125846,499998 -2024-07-09 18:00:00+00:00,3867,161.325,161.34,161.266,161.312,USD_JPY,H1,65.96330275229455,0.12659882050499505,0.09669178383312771,0.029907036671867337,161.07625000000002,0.1770818648238887,0.1637857142857188,30.42852970512458,496131 -2024-07-09 19:00:00+00:00,3224,161.312,161.312,161.254,161.29,USD_JPY,H1,68.34600760456266,0.12495948614895269,0.1023453242962927,0.022614161852659992,161.09765,0.1756834099559715,0.16050000000000506,29.88482304068617,492907 -2024-07-09 20:00:00+00:00,1050,161.292,161.325,161.272,161.316,USD_JPY,H1,74.35129740518937,0.12432514172584774,0.10674128778220371,0.017583853943644034,161.11875,0.17527838761632325,0.15457142857143374,32.24356396803723,493957 -2024-07-09 21:00:00+00:00,510,161.326,161.326,161.262,161.291,USD_JPY,H1,69.70998925886067,0.12041703550576699,0.10947643732691636,0.010940598178850625,161.1343,0.17611452615642686,0.14457142857143473,35.46879178620134,493447 -2024-07-09 22:00:00+00:00,1040,161.292,161.346,161.267,161.332,USD_JPY,H1,66.50831353919165,0.11925351028480691,0.11143185191849447,0.007821658366312434,161.1506,0.17868242928128159,0.1365714285714351,37.60223667220811,494487 -2024-07-09 23:00:00+00:00,1836,161.33,161.37,161.32,161.331,USD_JPY,H1,66.90561529271093,0.11690313000875108,0.1125261075365458,0.004377022472205283,161.1645,0.18148147652959168,0.1326428571428632,39.69338142694233,492651 -2024-07-10 00:00:00+00:00,4505,161.332,161.51,161.304,161.466,USD_JPY,H1,73.62288135593096,0.12449866534791454,0.11492061909881954,0.009578046249095001,161.18959999999998,0.18692480899588387,0.14050000000000498,43.08409509179978,497156 -2024-07-10 01:00:00+00:00,4554,161.467,161.583,161.45,161.535,USD_JPY,H1,72.69736842105107,0.13453506864385645,0.11884350900782692,0.01569155963602953,161.22115,0.18941774358974858,0.1385714285714345,45.531180026569054,501710 -2024-07-10 02:00:00+00:00,4474,161.534,161.592,161.474,161.508,USD_JPY,H1,70.25862068965486,0.13871133825017523,0.12281707485629659,0.015894263393878644,161.25515000000001,0.17566393605064617,0.13778571428572053,47.68060974449205,497236 -2024-07-10 03:00:00+00:00,2952,161.508,161.51,161.405,161.432,USD_JPY,H1,73.17620650953762,0.13433991029785375,0.125121641944608,0.00921826835324574,161.28055,0.16141006134234953,0.13271428571429006,49.74740080136142,494284 -2024-07-10 04:00:00+00:00,2532,161.433,161.474,161.41,161.446,USD_JPY,H1,57.321428571427234,0.13050087232610963,0.12619748802090833,0.004303384305201302,161.30015,0.1561673444786975,0.10157142857143242,49.69851471126255,496816 -2024-07-10 05:00:00+00:00,2814,161.445,161.564,161.43,161.503,USD_JPY,H1,58.86402753872393,0.1305528981621933,0.12706857004916533,0.003484328113027957,161.3229,0.15054179348884272,0.09607142857143051,49.20606926901324,499630 -2024-07-10 06:00:00+00:00,4375,161.502,161.504,161.356,161.369,USD_JPY,H1,53.85826771653583,0.11841641814015702,0.12533813966736368,-0.006921721527206659,161.34035,0.13276028063087653,0.09985714285714462,47.87672630633505,495255 -2024-07-10 07:00:00+00:00,5390,161.367,161.504,161.34,161.498,USD_JPY,H1,61.64921465968553,0.11784890338628884,0.12384029241114872,-0.005991389024859878,161.35920000000002,0.1265978298956206,0.10357142857142979,47.909839644979726,500645 -2024-07-10 08:00:00+00:00,4597,161.498,161.54,161.426,161.512,USD_JPY,H1,62.987012987011596,0.11717807099068978,0.12250784812705694,-0.0053297771363671614,161.3782,0.11899164060689271,0.10642857142857208,48.252064370081655,505242 -2024-07-10 09:00:00+00:00,5303,161.514,161.614,161.513,161.587,USD_JPY,H1,68.04374240583198,0.1213000334044807,0.1222662851825417,-0.0009662517780610058,161.40659999999997,0.09388200885691332,0.10957142857142799,49.380466096412015,510545 -2024-07-10 10:00:00+00:00,4236,161.588,161.609,161.506,161.548,USD_JPY,H1,63.87559808612462,0.12003604346199381,0.12182023683843214,-0.0017841933764383283,161.4158,0.09839480093067132,0.11314285714285736,49.05370565833461,506309 -2024-07-10 11:00:00+00:00,4366,161.548,161.55,161.457,161.484,USD_JPY,H1,61.02857142857248,0.11257239272686093,0.1199706680161179,-0.007398275289256975,161.42000000000002,0.09947176276228954,0.11521428571428771,47.47655459143679,501943 -2024-07-10 12:00:00+00:00,6082,161.484,161.514,161.432,161.45,USD_JPY,H1,56.797235023041225,0.10272967613690298,0.11652246964027493,-0.013792793503371953,161.42649999999998,0.09680501296120424,0.11542857142857445,45.893409610738864,495861 -2024-07-10 13:00:00+00:00,6038,161.45,161.602,161.428,161.6,USD_JPY,H1,63.22517207472991,0.10581324945087545,0.11438062560239505,-0.008567376151519604,161.4405,0.10075843967642208,0.12428571428571697,44.620153946588594,501899 -2024-07-10 14:00:00+00:00,7427,161.6,161.686,161.542,161.664,USD_JPY,H1,60.465116279069,0.11212871857779305,0.11393024419747466,-0.0018015256196816098,161.4581,0.10763921222384476,0.11985714285714673,42.22317077854098,509326 -2024-07-10 15:00:00+00:00,5802,161.663,161.756,161.628,161.739,USD_JPY,H1,60.71428571428614,0.12178182152817385,0.11550055966361451,0.006281261864559337,161.48055,0.1171380090581757,0.11950000000000419,39.96673916350885,515128 -2024-07-10 16:00:00+00:00,4992,161.738,161.744,161.657,161.689,USD_JPY,H1,59.282051282050205,0.12396836291063096,0.11719412031301782,0.006774242597613139,161.4992,0.11923510613311213,0.11728571428571602,37.72929178237998,510136 -2024-07-10 17:00:00+00:00,5462,161.688,161.768,161.645,161.746,USD_JPY,H1,66.42259414226024,0.12881572880391445,0.11951844201119716,0.009297286792717296,161.52195,0.12081629163361002,0.11857142857143035,36.85643651004774,515598 -2024-07-10 18:00:00+00:00,4056,161.749,161.808,161.744,161.775,USD_JPY,H1,66.94129763130826,0.13345892739488363,0.12230653908793446,0.011152388306949174,161.54410000000001,0.12470508370989537,0.11857142857143035,37.26818015487338,519654 -2024-07-10 19:00:00+00:00,3184,161.776,161.79,161.732,161.736,USD_JPY,H1,62.224554039873894,0.1324647504801817,0.12433818136638392,0.008126569113797777,161.56435,0.1211107692546392,0.1131428571428594,37.22471496021489,516470 -2024-07-10 20:00:00+00:00,1812,161.736,161.754,161.695,161.71,USD_JPY,H1,70.17751479289925,0.12810219306291515,0.12509098370569016,0.0030112093572249865,161.57655,0.12295762003313805,0.10678571428571663,39.11378958196217,514658 -2024-07-10 21:00:00+00:00,209,161.62,161.63,161.57,161.575,USD_JPY,H1,54.5240893066976,0.1124551501512201,0.12256381699479615,-0.010108666843576058,161.57855,0.122570913987768,0.10078571428571845,38.2334117379436,514449 -2024-07-10 22:00:00+00:00,1094,161.575,161.632,161.575,161.594,USD_JPY,H1,54.78971962616757,0.10043020028990668,0.11813709365381828,-0.017706893363911597,161.58284999999998,0.12146919690979936,0.09671428571429073,36.732354447557064,515543 -2024-07-10 23:00:00+00:00,2064,161.591,161.638,161.556,161.596,USD_JPY,H1,50.57471264367903,0.09002398372859943,0.11251447166877451,-0.02249048794017508,161.59105,0.11616978277292396,0.09528571428571857,33.50882127559099,517607 -2024-07-11 00:00:00+00:00,5372,161.594,161.614,161.474,161.566,USD_JPY,H1,51.16279069767433,0.07845188831754513,0.10570195499852865,-0.027250066680983523,161.59705,0.11127986297262218,0.09792857142857615,30.78783714976579,512235 -2024-07-11 01:00:00+00:00,4159,161.566,161.664,161.558,161.582,USD_JPY,H1,56.749311294764,0.06976774646199146,0.09851511329122122,-0.02874736682922975,161.601,0.10914741363501916,0.09885714285714593,28.59147433182589,516394 -2024-07-11 02:00:00+00:00,3256,161.582,161.67,161.536,161.654,USD_JPY,H1,63.35078534031348,0.06791244732772839,0.09239458009852265,-0.024482132770794265,161.61525,0.09494423575575711,0.10257142857142908,26.922665866681196,519650 -2024-07-11 03:00:00+00:00,3927,161.653,161.686,161.624,161.64,USD_JPY,H1,53.18471337579519,0.06456812524442057,0.08682928912770224,-0.02226116388328167,161.62234999999998,0.09093969955905702,0.09457142857142944,24.573756533674747,515723 -2024-07-11 04:00:00+00:00,2826,161.64,161.695,161.621,161.688,USD_JPY,H1,51.960784313725306,0.06504117061797388,0.08247166542575658,-0.017430494807782707,161.63115,0.08817284167215143,0.0895714285714279,23.714675717959896,518549 -2024-07-11 05:00:00+00:00,2832,161.688,161.719,161.667,161.694,USD_JPY,H1,45.856353591159234,0.06514921276971108,0.07900717489454748,-0.013857962124836393,161.6365,0.08859814663694274,0.08414285714285492,23.75132711321205,521381 -2024-07-11 06:00:00+00:00,4796,161.697,161.752,161.69,161.732,USD_JPY,H1,54.048964218455865,0.06752275903937743,0.07671029172351347,-0.009187532684136038,161.64569999999998,0.08847782956404061,0.08235714285714225,23.0853765224494,526177 -2024-07-11 07:00:00+00:00,5569,161.734,161.761,161.544,161.637,USD_JPY,H1,40.42179261862916,0.06103453735272524,0.07357514084935583,-0.012540603496630595,161.65335,0.0799659632077847,0.08907142857142755,22.881550965458324,520608 -2024-07-11 08:00:00+00:00,5446,161.635,161.636,161.502,161.532,USD_JPY,H1,31.16279069767593,0.04687955412413203,0.06823602350431107,-0.021356469380179044,161.65745,0.07053739216054099,0.09407142857142706,23.462474772784155,515162 -2024-07-11 09:00:00+00:00,5168,161.532,161.558,161.472,161.55,USD_JPY,H1,35.09615384615613,0.03669112505190242,0.061927043813829345,-0.025235918761926927,161.65494999999999,0.07350436799168421,0.09607142857142646,24.91095502041615,520330 -2024-07-11 10:00:00+00:00,4439,161.549,161.586,161.508,161.55,USD_JPY,H1,36.62207357859654,0.028290605122919033,0.05519975607564729,-0.026909150952728257,161.64925,0.0770979384539184,0.09742857142856971,25.01799447777369,515891 -2024-07-11 11:00:00+00:00,4015,161.549,161.594,161.536,161.538,USD_JPY,H1,46.10526315789727,0.020429336174288437,0.04824567209537552,-0.027816335921087086,161.63920000000002,0.07787952915362373,0.09585714285713973,25.793264570844144,511876 -2024-07-11 12:00:00+00:00,24456,161.537,161.622,158.366,158.653,USD_JPY,H1,5.986231667165953,-0.21610504076463144,-0.004624470476625869,-0.21148057028800557,161.4874,0.6715764956294283,0.32435714285713857,30.9694848170293,487420 -2024-07-11 13:00:00+00:00,29702,158.657,158.975,157.428,158.608,USD_JPY,H1,5.851063829787435,-0.4025510051382639,-0.08420977740895348,-0.31834122772931045,161.3305,0.9262545688543999,0.42899999999999594,37.314686664623586,457718 -2024-07-11 14:00:00+00:00,16741,158.608,158.796,158.352,158.558,USD_JPY,H1,5.8166862514690365,-0.5480280312983723,-0.17697342818683726,-0.37105460311153504,161.16965,1.106743077448953,0.4507142857142798,43.906844437588724,440977 -2024-07-11 15:00:00+00:00,12356,158.556,158.638,158.454,158.583,USD_JPY,H1,6.06504541459185,-0.6537661226625744,-0.2723319670819847,-0.3814341555805897,161.012,1.2385403123315322,0.4562857142857086,50.74930373785319,453333 -2024-07-11 16:00:00+00:00,5788,158.584,158.644,158.536,158.57,USD_JPY,H1,4.02504472271967,-0.7301960674902261,-0.36390478716363306,-0.3662912803265931,160.855,1.3402442825279557,0.454428571428567,57.53630328471451,447545 -2024-07-11 17:00:00+00:00,8419,158.571,158.896,158.554,158.81,USD_JPY,H1,10.474860335196212,-0.7626104565433423,-0.4436459210395749,-0.31896453550376735,160.71675,1.4031956713558218,0.47442857142856504,63.80444934318014,455964 -2024-07-11 18:00:00+00:00,6536,158.81,158.874,158.714,158.742,USD_JPY,H1,9.08333333333394,-0.7847401293736596,-0.5118647627063918,-0.27287536666726775,160.57415,1.4533731826000027,0.4805714285714231,69.04610826614108,449428 -2024-07-11 19:00:00+00:00,6050,158.742,158.838,158.732,158.827,USD_JPY,H1,11.035607502039355,-0.7863546578945488,-0.5667627417440233,-0.21959191615052553,160.4357,1.482504392469045,0.4844285714285661,73.48773865790982,455478 -2024-07-11 20:00:00+00:00,2123,158.828,158.922,158.816,158.902,USD_JPY,H1,11.921420882669736,-0.7726753892668512,-0.6079452712485889,-0.16473011801826232,160.30249999999998,1.4952271258575502,0.487571428571422,78.62512009919287,457601 -2024-07-11 21:00:00+00:00,377,158.866,158.948,158.861,158.944,USD_JPY,H1,13.240513240513465,-0.7498021686694472,-0.6363166507327606,-0.1134855179366866,160.17059999999998,1.4927690412557153,0.4782857142857101,81.97355833996752,457978 -2024-07-11 22:00:00+00:00,3855,158.956,159.286,158.919,159.266,USD_JPY,H1,20.798969072165093,-0.6976501904957502,-0.6485833586853584,-0.04906683181039173,160.0512,1.4630812331315577,0.4949285714285675,83.3708700031847,461833 -2024-07-11 23:00:00+00:00,19240,159.265,159.45,157.748,158.289,USD_JPY,H1,16.305021698698212,-0.7267772709523115,-0.664222141138749,-0.06255512981356248,159.88365000000002,1.4634337873660495,0.6103571428571399,85.02013838607317,442593 -2024-07-12 00:00:00+00:00,19293,158.287,159.138,157.982,159.082,USD_JPY,H1,28.08948863636371,-0.6780560118119752,-0.6669889152733943,-0.011067096538580845,159.75335,1.4093397586343046,0.6873571428571401,87.35764739238915,461886 -2024-07-12 01:00:00+00:00,11296,159.082,159.386,159.072,159.364,USD_JPY,H1,31.58251440189784,-0.6096612246015809,-0.6555233771390316,0.04586215253745074,159.63685,1.3348084536362181,0.7056428571428545,90.21570309108618,473182 -2024-07-12 02:00:00+00:00,9625,159.36,159.39,158.754,159.312,USD_JPY,H1,60.736396220267366,-0.5532760069911831,-0.6350739031094619,0.08179789611827881,159.51585,1.2412983981144858,0.518499999999997,87.06156352430692,463557 -2024-07-12 03:00:00+00:00,7500,159.307,159.341,159.152,159.238,USD_JPY,H1,60.16785022595192,-0.5086975486697156,-0.6097986322215128,0.10110108355179714,159.3959,1.1370732467279605,0.4214999999999987,82.11471890747318,456057 -2024-07-12 04:00:00+00:00,7053,159.236,159.239,159.031,159.112,USD_JPY,H1,58.727158160050266,-0.47802556509967076,-0.5834440187971444,0.1054184536974736,159.27489999999997,1.0205940427041131,0.4046428571428566,76.1812040561077,449004 -2024-07-12 05:00:00+00:00,8678,159.112,159.14,158.87,159.044,USD_JPY,H1,57.165060615480364,-0.45397172537843744,-0.557549560113403,0.10357783473496551,159.14960000000002,0.8691757983422476,0.4107857142857126,70.72140132870545,440326 -2024-07-12 06:00:00+00:00,10900,159.026,159.216,158.959,159.14,USD_JPY,H1,58.636363636363505,-0.42229453784321436,-0.5304985556593653,0.10820401781615097,159.0291,0.6610052870259268,0.4214285714285698,65.02553830742036,451226 -2024-07-12 07:00:00+00:00,8522,159.14,159.322,159.116,159.218,USD_JPY,H1,56.50095602294433,-0.386441532932821,-0.5016871511140565,0.11524561818123547,158.9131,0.3055293766600213,0.4117142857142844,60.65614004152734,459748 -2024-07-12 08:00:00+00:00,8346,159.218,159.268,159.034,159.103,USD_JPY,H1,55.66718995290458,-0.3631214688812747,-0.47397401466750017,0.11085254578622544,158.9356,0.3019150107009034,0.41699999999999954,56.27244417634993,451402 -2024-07-12 09:00:00+00:00,7177,159.104,159.219,159.044,159.177,USD_JPY,H1,55.513547574039066,-0.33480949312715325,-0.4461411103594308,0.11133161723227758,158.96405,0.2961742863536983,0.42192857142857015,51.83034501626965,458579 -2024-07-12 10:00:00+00:00,6297,159.178,159.256,159.112,159.112,USD_JPY,H1,53.318584070796625,-0.3139974381274442,-0.41971237591303356,0.10571493778558938,158.99175,0.28175500276197424,0.42464285714285666,47.734966323388356,452282 -2024-07-12 11:00:00+00:00,7063,159.114,159.144,158.936,158.973,USD_JPY,H1,50.44464888071183,-0.305201697735896,-0.3968102402776061,0.09160854254171008,159.01125,0.2649728635606923,0.43328571428571244,44.16494327284572,445219 -2024-07-12 12:00:00+00:00,19468,158.972,159.158,158.506,158.812,USD_JPY,H1,42.677419354838904,-0.30767567095924164,-0.3789833264139332,0.07130765545469153,159.02335,0.24879420263681334,0.45364285714285507,43.59225900873303,425751 -2024-07-12 13:00:00+00:00,20910,158.809,158.846,157.364,158.321,USD_JPY,H1,50.61208875286938,-0.34527578478423493,-0.37224181808799356,0.02696603330375863,158.9989,0.2912670866952584,0.4379285714285694,42.65497339839363,404841 -2024-07-12 14:00:00+00:00,17394,158.318,158.357,157.389,157.722,USD_JPY,H1,21.90082644628049,-0.4185832724273837,-0.38151010895587156,-0.03707316347151213,158.9479,0.4055113600877757,0.4244999999999968,41.87983550992537,387447 -2024-07-12 15:00:00+00:00,9421,157.718,158.098,157.513,157.904,USD_JPY,H1,18.534482758619276,-0.4567292154819427,-0.3965539302610858,-0.060175285220856856,158.90175000000002,0.46774170504008783,0.44385714285714073,42.77945736721953,396868 -2024-07-12 16:00:00+00:00,5665,157.897,158.025,157.844,157.878,USD_JPY,H1,18.744551002613946,-0.4834848208325866,-0.413940108375386,-0.06954471245720062,158.85055,0.5207534495951646,0.41135714285714187,45.90998992823177,391203 -2024-07-12 17:00:00+00:00,4146,157.878,158.018,157.863,157.978,USD_JPY,H1,22.84482758620635,-0.49096018319181667,-0.42934412333867217,-0.0616160598531445,158.80225000000002,0.555283320289257,0.408928571428569,50.429606408038296,395349 -2024-07-12 18:00:00+00:00,4813,157.978,157.992,157.868,157.92,USD_JPY,H1,23.53463587921776,-0.4958487413571504,-0.44264504694236784,-0.053203694414782565,158.73495,0.5772515163771526,0.40292857142856875,55.31686056963222,390536 -2024-07-12 19:00:00+00:00,2935,157.926,157.926,157.801,157.836,USD_JPY,H1,23.368606701939413,-0.5007289650894506,-0.45426183057178443,-0.04646713451766621,158.7123,0.6039408388607915,0.3925714285714272,59.50769182645011,387601 -2024-07-12 20:00:00+00:00,1994,157.844,157.946,157.794,157.887,USD_JPY,H1,21.817363922626853,-0.49477781314078584,-0.46236502708558475,-0.03241278605520109,158.65255,0.6242126387880036,0.3850714285714259,64.36216259127555,389595 -2024-07-14 21:00:00+00:00,178,158.128,158.21,158.125,158.163,USD_JPY,H1,28.211482858323137,-0.4624596420910905,-0.46238395008668587,-7.569200440460389e-05,158.5925,0.6097698012592982,0.3934285714285701,67.57445425864235,389773 -2024-07-14 22:00:00+00:00,2822,158.162,158.389,157.979,158.341,USD_JPY,H1,34.66183574879214,-0.4176695121565217,-0.4534410625006531,0.035771550344131375,158.54395,0.5877250946177814,0.4059999999999978,69.55090688641744,392595 -2024-07-14 23:00:00+00:00,5111,158.34,158.426,158.173,158.292,USD_JPY,H1,32.00488003253376,-0.381726595402597,-0.4390981690810419,0.057371573678444865,158.49665,0.5666161120391118,0.4115714285714266,71.32609574106367,387484 -2024-07-15 00:00:00+00:00,9447,158.29,158.367,157.992,158.116,USD_JPY,H1,30.62256809338554,-0.36325591594695084,-0.4239297184542237,0.06067380250727289,158.44685,0.5532992218940129,0.42807142857142616,73.34585881304868,378037 -2024-07-15 01:00:00+00:00,8767,158.117,158.239,157.954,158.054,USD_JPY,H1,31.568391496189278,-0.34959078627716167,-0.4090619320188113,0.059471145741649634,158.39735000000002,0.5412168818125792,0.43357142857142605,74.77129521537279,369270 -2024-07-15 02:00:00+00:00,6180,158.053,158.138,157.916,158.033,USD_JPY,H1,33.4466638334039,-0.3365757611936999,-0.394564697853789,0.057988936660089085,158.342,0.5173489100575674,0.40285714285714186,73.57501016344163,363090 -2024-07-15 03:00:00+00:00,5920,158.029,158.03,157.912,157.974,USD_JPY,H1,40.96824570536167,-0.3272497357158386,-0.3811017054261989,0.053851969710360326,158.2798,0.47991332550864724,0.30542857142857016,71.68348131338742,357170 -2024-07-15 04:00:00+00:00,3173,157.974,158.036,157.957,157.996,USD_JPY,H1,60.19345238095203,-0.31445869312528885,-0.3677731029660169,0.05331440984072805,158.22445,0.44234012574346754,0.24192857142857147,69.25770710181855,360343 -2024-07-15 05:00:00+00:00,4665,157.996,157.999,157.832,157.955,USD_JPY,H1,52.11970074813024,-0.30412430143042,-0.35504334265889753,0.05091904122847751,158.16334999999998,0.38444892549764087,0.21207142857142816,63.289555688249514,355678 -2024-07-15 06:00:00+00:00,7745,157.954,158.238,157.876,158.11,USD_JPY,H1,58.70870870870942,-0.2801970794309909,-0.34007409001331623,0.05987701058232531,158.11325,0.3129593676339786,0.22499999999999837,58.5692238258128,363423 -2024-07-15 07:00:00+00:00,10420,158.109,158.13,157.844,157.928,USD_JPY,H1,48.23196605374788,-0.27277606983673763,-0.3266144859780005,0.05383841614126289,158.06099999999998,0.24077440850252013,0.23435714285714124,53.920750396561246,353003 -2024-07-15 08:00:00+00:00,7551,157.926,157.968,157.782,157.82,USD_JPY,H1,46.584699453552176,-0.2724687139456705,-0.31578533157153454,0.04331661762586403,158.0114,0.16957389322447672,0.2387857142857115,48.882569251639936,345452 -2024-07-15 09:00:00+00:00,7427,157.818,157.984,157.753,157.963,USD_JPY,H1,54.16940249507474,-0.2577154440715219,-0.30417135407153206,0.04645591000001015,157.99349999999998,0.15328559516248633,0.2463571428571417,44.14472668484999,352879 -2024-07-15 10:00:00+00:00,5974,157.964,158.108,157.938,157.953,USD_JPY,H1,52.226720647773284,-0.24401740705820885,-0.29214056466886745,0.04812315761065861,158.00505,0.13986703272122145,0.24764285714285808,39.44314011443894,346905 -2024-07-15 11:00:00+00:00,5946,157.953,158.176,157.899,158.116,USD_JPY,H1,48.283418553688996,-0.21750165262264431,-0.27721278225962287,0.059711129636978555,158.01565,0.13983910867832333,0.2443571428571423,34.92955821410617,352851 -2024-07-15 12:00:00+00:00,8091,158.118,158.163,157.938,157.967,USD_JPY,H1,36.04477611940379,-0.20613458971584464,-0.26299714375086725,0.056862554035022606,158.0201,0.1366069659939166,0.23114285714285845,31.03731317798457,344760 -2024-07-15 13:00:00+00:00,10700,157.966,158.069,157.874,157.94,USD_JPY,H1,36.646433990895844,-0.19703350521947982,-0.24980441604458978,0.05277091082510996,158.0182,0.13748477427722272,0.22700000000000184,28.044366984757602,334060 -2024-07-15 14:00:00+00:00,8922,157.94,157.948,157.837,157.862,USD_JPY,H1,39.590163934426165,-0.19387985206455483,-0.2386195032485828,0.04473965118402798,158.0153,0.14024906416856311,0.2081428571428603,23.59589876946225,325138 -2024-07-15 15:00:00+00:00,8054,157.862,157.922,157.812,157.891,USD_JPY,H1,43.13395113732091,-0.18688619387120298,-0.22827284137310686,0.04138664750190388,158.01805,0.13705107576588088,0.19564285714285948,19.345927594551608,333192 -2024-07-15 16:00:00+00:00,8827,157.892,157.963,157.168,157.714,USD_JPY,H1,38.123603871929355,-0.19339673296335036,-0.22129761969115558,0.02790088672780522,158.0094,0.1505521067346793,0.2365714285714294,18.62123535260526,324365 -2024-07-15 17:00:00+00:00,7608,157.714,158.024,157.714,157.92,USD_JPY,H1,48.187919463087226,-0.1798605828735731,-0.21301021232763911,0.03314962945406602,157.99725,0.14727342097756113,0.25028571428571567,18.196111574188183,331973 -2024-07-15 18:00:00+00:00,6349,157.92,157.941,157.846,157.854,USD_JPY,H1,45.37157757496751,-0.1724706010896,-0.2049022900800313,0.03243168899043131,157.9729,0.1261990491250403,0.25142857142857217,18.74387475867007,325624 -2024-07-15 19:00:00+00:00,3943,157.854,157.988,157.836,157.924,USD_JPY,H1,49.0083173384515,-0.15913120680198745,-0.19574807342442255,0.0366168666224351,157.9545,0.10166844979753643,0.25035714285714256,20.969979920037183,329567 -2024-07-15 20:00:00+00:00,1670,157.926,158.154,157.884,158.108,USD_JPY,H1,49.937185929647946,-0.13218859068715005,-0.18303617687696805,0.050847586189817995,157.95409999999998,0.10101323519337946,0.24378571428571508,22.181223030236065,331237 -2024-07-15 21:00:00+00:00,217,158.048,158.11,158.014,158.08,USD_JPY,H1,55.28511821975032,-0.11180689896542617,-0.1687903212946597,0.056983422329233535,157.9554,0.10252260341286634,0.23021428571428665,23.855434175760475,331020 -2024-07-15 22:00:00+00:00,1272,158.08,158.158,158.072,158.13,USD_JPY,H1,61.2318840579716,-0.0905755803917998,-0.15314737311408774,0.06257179272228794,157.96025,0.1085065484321932,0.22307142857142992,25.348777508516942,332292 -2024-07-15 23:00:00+00:00,3095,158.132,158.258,158.064,158.153,USD_JPY,H1,57.53968253968284,-0.071074398257025,-0.1367327781426752,0.06565837988565021,157.9692,0.11676814634161135,0.22042857142857233,25.704094330240814,335387 -2024-07-16 00:00:00+00:00,7823,158.152,158.398,158.106,158.367,USD_JPY,H1,64.13934426229521,-0.037914504581550545,-0.11696912343045028,0.07905461884889974,157.98775,0.14684502213698764,0.22914285714285704,25.503051713881547,343210 -2024-07-16 01:00:00+00:00,8494,158.366,158.634,158.355,158.53,USD_JPY,H1,64.13934426229521,0.0015003922249832158,-0.09327522029936358,0.0947756125243468,158.0165,0.1900328226501158,0.22928571428571484,25.17810245707052,351704 -2024-07-16 02:00:00+00:00,5174,158.531,158.73,158.515,158.695,USD_JPY,H1,74.59459459459504,0.04552630405657965,-0.06551491542817493,0.11104121948475458,158.04575,0.24286077341427875,0.22857142857142776,24.838583301206477,356878 -2024-07-16 03:00:00+00:00,4326,158.696,158.71,158.59,158.633,USD_JPY,H1,72.87128712871475,0.07455485259634997,-0.03750096182326995,0.11205581441961993,158.08100000000002,0.27403342093579824,0.22321428571428573,23.97264855862472,352552 -2024-07-16 04:00:00+00:00,4443,158.635,158.727,158.618,158.642,USD_JPY,H1,76.97095435684867,0.09716633817484421,-0.010567501823647116,0.10773383999849133,158.1221,0.29376035704093134,0.2230714285714279,24.4043115756052,356995 -2024-07-16 05:00:00+00:00,4907,158.647,158.791,158.647,158.73,USD_JPY,H1,77.87375415282607,0.12079452387678202,0.015704903316438715,0.10508962056034331,158.16045000000003,0.3207247508221846,0.22585714285714328,25.22914150757789,361902 -2024-07-16 06:00:00+00:00,7116,158.73,158.749,158.466,158.576,USD_JPY,H1,79.08232118758642,0.12564515912617935,0.037692954478386845,0.0879522046477925,158.1916,0.32964596639188953,0.1892857142857147,26.855386550952858,354786 -2024-07-16 07:00:00+00:00,9562,158.576,158.576,158.359,158.5,USD_JPY,H1,71.44970414201404,0.1219509826506453,0.054544560112838536,0.06740642253780676,158.2108,0.3361300813368818,0.18264285714285627,27.565417628495602,345224 -2024-07-16 08:00:00+00:00,7673,158.499,158.591,158.444,158.471,USD_JPY,H1,73.46007604562857,0.11535353974070972,0.06670635603841278,0.04864718370229694,158.23600000000002,0.33578266780858324,0.1863571428571435,27.997894810759323,337551 -2024-07-16 09:00:00+00:00,6275,158.47,158.5,158.334,158.411,USD_JPY,H1,68.65900383141854,0.10408370794812072,0.07418182642035437,0.02990188152776635,158.25955000000002,0.3304038159277986,0.1873571428571442,28.059097593164825,331276 -2024-07-16 10:00:00+00:00,5814,158.41,158.451,158.348,158.434,USD_JPY,H1,64.24825174825244,0.09590268636762289,0.07852599840980808,0.017376687957814815,158.28815,0.31873058661332504,0.17542857142857063,26.949053524179938,337090 -2024-07-16 11:00:00+00:00,4878,158.432,158.46,158.322,158.346,USD_JPY,H1,61.04651162790732,0.08138020294853732,0.07909683931755393,0.002283363630983387,158.3109,0.30482624904375455,0.17842857142857074,25.576720815383197,332212 -2024-07-16 12:00:00+00:00,12687,158.344,158.856,158.258,158.757,USD_JPY,H1,70.0319488817902,0.10186110393985359,0.08364969224201388,0.018211411697839713,158.36305,0.28596880120758333,0.21499999999999936,26.103289914406293,344899 -2024-07-16 13:00:00+00:00,9902,158.76,158.808,158.53,158.638,USD_JPY,H1,64.5996387718251,0.10725370609614515,0.08837049501284014,0.018883211083305013,158.39894999999999,0.27215639370150285,0.22099999999999756,27.06176502064404,334997 -2024-07-16 14:00:00+00:00,9506,158.637,158.746,158.584,158.59,USD_JPY,H1,57.45819397993381,0.10642735500951517,0.09198186701217514,0.014445487997340023,158.43575,0.24276453287531394,0.21171428571428358,28.04383650631309,325491 -2024-07-16 15:00:00+00:00,7697,158.594,158.652,158.536,158.576,USD_JPY,H1,51.70876671619592,0.10345027247714711,0.09427554810516954,0.009174724371977569,158.46835000000002,0.2122913278867763,0.20007142857142565,28.380334741971502,317794 -2024-07-16 16:00:00+00:00,7372,158.576,158.634,158.516,158.542,USD_JPY,H1,43.703703703703766,0.09722662921132041,0.09486576432639973,0.0023608648849206826,158.49005,0.1949951348952702,0.19314285714285365,28.366392925817895,310422 -2024-07-16 17:00:00+00:00,7055,158.542,158.559,158.432,158.472,USD_JPY,H1,43.41782502044124,0.08565851406902425,0.09302431427492465,-0.0073658002059004,158.50965000000002,0.16966539051360827,0.19364285714285398,28.64503156640817,303367 -2024-07-16 18:00:00+00:00,4967,158.473,158.478,158.342,158.358,USD_JPY,H1,39.30722891566275,0.0665249934980352,0.08772445011954676,-0.021199456621511556,158.52105,0.14924458026394666,0.19557142857142448,29.36313714642685,298400 -2024-07-16 19:00:00+00:00,4776,158.356,158.432,158.32,158.39,USD_JPY,H1,36.63522012578564,0.05332893044669618,0.08084534618497664,-0.027516415738280467,158.5329,0.12609724735623956,0.1929285714285669,30.337741128406112,303176 -2024-07-16 20:00:00+00:00,2283,158.396,158.416,158.324,158.41,USD_JPY,H1,42.70650263620385,0.04397783910511066,0.07347184476900345,-0.02949400566389279,158.53505,0.12345869755246824,0.17928571428570958,26.402002731017635,305459 -2024-07-16 21:00:00+00:00,1664,158.33,158.372,158.312,158.327,USD_JPY,H1,42.445414847161366,0.029529230913226456,0.06468332199784806,-0.0351540910846216,158.5249,0.13194851468525146,0.16807142857142512,23.39263481269497,303795 -2024-07-16 22:00:00+00:00,1964,158.326,158.391,158.308,158.34,USD_JPY,H1,44.19840566873333,0.018909617874982132,0.055528581173274874,-0.03661896329829274,158.50715,0.13173948575332317,0.16349999999999504,20.09089111194266,305759 -2024-07-16 23:00:00+00:00,2957,158.341,158.376,158.305,158.366,USD_JPY,H1,47.945205479452625,0.012447988082925576,0.046912462555205016,-0.03446447447227944,158.4938,0.1318434478390846,0.15671428571428084,19.21902394402256,308716 -2024-07-17 00:00:00+00:00,7568,158.364,158.539,158.308,158.488,USD_JPY,H1,52.261306532663426,0.01697579393717774,0.040925128831599565,-0.023949334894421824,158.4861,0.1271459584024573,0.16585714285713898,19.9728389835513,316284 -2024-07-17 01:00:00+00:00,7144,158.486,158.626,158.43,158.474,USD_JPY,H1,55.71428571428507,0.019212954718312858,0.03658269400894223,-0.01736973929062937,158.4733,0.11344792452995764,0.16999999999999563,21.501154608765052,309140 -2024-07-17 02:00:00+00:00,4690,158.474,158.479,158.361,158.414,USD_JPY,H1,27.69830949284686,0.015960440176826296,0.032458243242519044,-0.016497803065692748,158.4652,0.11149585784673069,0.1357142857142841,19.351089178511664,304450 -2024-07-17 03:00:00+00:00,4179,158.413,158.45,158.324,158.38,USD_JPY,H1,31.140350877192205,0.010518037727763385,0.028070202139567912,-0.017552164411804527,158.45919999999998,0.1127463851730785,0.12485714285714014,17.388137744096348,300271 -2024-07-17 04:00:00+00:00,4943,158.379,158.39,158.22,158.22,USD_JPY,H1,26.75879396984874,-0.006629349236362714,0.021130291864381787,-0.0277596411007445,158.44665,0.12469975520631375,0.1254285714285674,16.864994303562565,295328 -2024-07-17 05:00:00+00:00,6630,158.221,158.236,157.87,157.895,USD_JPY,H1,19.24119241192406,-0.04591428945911957,0.007721375599681517,-0.05363566505880109,158.42085,0.17549697103708328,0.14328571428571024,19.472059857056497,288698 -2024-07-17 06:00:00+00:00,12222,157.889,158.096,157.706,157.82,USD_JPY,H1,18.554006968640635,-0.08215275499591712,-0.010253450519438212,-0.07189930447647891,158.39015,0.22090514158787872,0.1627142857142831,23.412536047532615,276476 -2024-07-17 07:00:00+00:00,17241,157.822,157.834,157.011,157.076,USD_JPY,H1,11.690450054884394,-0.16895892879261964,-0.0419945461740745,-0.12696438261854515,158.32665,0.3678943319413156,0.21242857142856866,27.95324797007098,259235 -2024-07-17 08:00:00+00:00,17317,157.075,157.102,156.102,156.245,USD_JPY,H1,8.389129578574043,-0.3013346042311298,-0.09386255778548555,-0.20747204644564424,158.20105,0.5805685484714503,0.2741428571428547,32.44330507053365,241918 -2024-07-17 09:00:00+00:00,17107,156.241,156.598,156.106,156.42,USD_JPY,H1,13.27367636092454,-0.38765361371451945,-0.15262076897129234,-0.2350328447432271,158.09015,0.6935558471804548,0.30128571428571355,36.24294949759554,259025 -2024-07-17 10:00:00+00:00,12641,156.418,156.74,156.227,156.739,USD_JPY,H1,21.97249245219733,-0.42541746885149223,-0.20718010894733233,-0.2182373599041599,157.99759999999998,0.7449415660588363,0.33135714285714357,40.606273391746825,271666 -2024-07-17 11:00:00+00:00,11668,156.74,156.798,156.355,156.514,USD_JPY,H1,20.973422990714155,-0.4681051904675826,-0.2593651252513824,-0.2087400652162002,157.8945,0.8012408468972924,0.35871428571428715,45.11915779507611,259998 -2024-07-17 12:00:00+00:00,13823,156.515,156.746,156.462,156.568,USD_JPY,H1,21.997471554993695,-0.4919077622127759,-0.3058736526436611,-0.18603410956911476,157.7958,0.838019695786405,0.37307142857143155,49.902731902346545,273821 -2024-07-17 13:00:00+00:00,17677,156.566,156.629,156.153,156.281,USD_JPY,H1,19.56204379562017,-0.5278453011902116,-0.35026798235297124,-0.17757731883724032,157.68625,0.8867626440268441,0.4020000000000031,53.574496682161495,256144 -2024-07-17 14:00:00+00:00,14876,156.28,156.638,156.257,156.5,USD_JPY,H1,21.777399204997096,-0.53251607615897,-0.38671760111417103,-0.14579847504479898,157.59335000000002,0.9097120582615855,0.4127142857142892,56.904193129689034,271020 -2024-07-17 15:00:00+00:00,12175,156.5,156.64,156.485,156.566,USD_JPY,H1,23.307218802462287,-0.5248419986996282,-0.4143424806312625,-0.11049951806836572,157.50214999999997,0.9170430900161233,0.4097857142857159,59.85811779096361,283195 -2024-07-17 16:00:00+00:00,10663,156.567,156.594,156.193,156.306,USD_JPY,H1,22.07207207207219,-0.5335891801921662,-0.4381918205434433,-0.09539735964872287,157.39695,0.9280322972480795,0.4299999999999987,65.28310356936795,272532 -2024-07-17 17:00:00+00:00,9820,156.304,156.478,156.189,156.466,USD_JPY,H1,25.46153846153848,-0.5215980639234488,-0.4548730692194444,-0.06672499470400434,157.30390000000003,0.9231565927486695,0.44164285714285867,70.96913731739791,282352 -2024-07-17 18:00:00+00:00,8459,156.466,156.492,156.092,156.106,USD_JPY,H1,24.219512195121865,-0.534977125947421,-0.4708938805650397,-0.06408324538238125,157.1922,0.9263416216484256,0.45807142857142935,75.30225942565751,273893 -2024-07-17 19:00:00+00:00,6879,156.106,156.24,156.06,156.188,USD_JPY,H1,27.8714026445421,-0.5328213810836075,-0.4832793806687533,-0.04954200041485424,157.0833,0.9089465909838381,0.4447857142857166,78.08644401850779,280772 -2024-07-17 20:00:00+00:00,2386,156.188,156.347,156.168,156.215,USD_JPY,H1,28.93147807823587,-0.5229065225027512,-0.4912048090355529,-0.031701713467198245,156.96964999999997,0.8651112052020483,0.4297142857142871,79.82728650935016,283158 -2024-07-17 21:00:00+00:00,1056,156.165,156.201,156.131,156.172,USD_JPY,H1,35.456885456885544,-0.5126096216487497,-0.4954857715581923,-0.01712385009055739,156.85455,0.8055121597289119,0.3759285714285718,79.99249402976932,282102 -2024-07-17 22:00:00+00:00,5188,156.174,156.274,155.994,156.16,USD_JPY,H1,48.14329401485348,-0.4996578090520529,-0.4963201790569644,-0.00333762999508852,156.74185,0.729983292885479,0.32450000000000045,78.20579319363887,276914 -2024-07-17 23:00:00+00:00,13151,156.158,156.208,155.367,155.674,USD_JPY,H1,35.653846153846644,-0.5225855022135875,-0.501573243688289,-0.021012258525298422,156.60655000000003,0.6575586005480962,0.34942857142857114,77.57160586177716,263763 -2024-07-18 00:00:00+00:00,16088,155.674,155.842,155.459,155.738,USD_JPY,H1,28.65671641791033,-0.5294879911325836,-0.507156193177148,-0.022331797955435606,156.48245,0.5646808576968213,0.3401428571428572,78.57621223179508,279851 -2024-07-18 01:00:00+00:00,10608,155.739,156.306,155.722,156.258,USD_JPY,H1,45.15151515151517,-0.4873803913838515,-0.5032010328184887,0.01582064143463724,156.4006,0.4576551678152147,0.3502142857142851,77.13497181562693,290459 -2024-07-18 02:00:00+00:00,9125,156.258,156.446,156.191,156.316,USD_JPY,H1,45.234493192132966,-0.4442091335592693,-0.49140265296664487,0.047193519407375595,156.3254,0.31278686201445394,0.34814285714285476,74.4573682149139,299584 -2024-07-18 03:00:00+00:00,5641,156.315,156.576,156.294,156.438,USD_JPY,H1,53.16659943525581,-0.3955910924310615,-0.4722403408595282,0.07664924842846671,156.29350000000002,0.2603442053499545,0.3342857142857107,70.20460789488905,305225 -2024-07-18 04:00:00+00:00,7574,156.436,156.54,156.18,156.344,USD_JPY,H1,46.686491079014296,-0.3604904494681591,-0.4498903625812544,0.08939991311309531,156.29845,0.2603146830408912,0.33278571428570963,65.65681049570895,297651 -2024-07-18 05:00:00+00:00,8848,156.344,156.455,155.802,156.035,USD_JPY,H1,39.776665383134194,-0.3535313651015599,-0.43061856308531554,0.07708719798375563,156.2792,0.26504529900079754,0.3683571428571416,61.600361148194146,288803 -2024-07-18 06:00:00+00:00,13263,156.018,156.416,155.994,156.124,USD_JPY,H1,46.24896949711423,-0.336950528459937,-0.41188495616023985,0.07493442770030284,156.24845,0.24370937717360527,0.36985714285714266,56.989906199822244,302066 -2024-07-18 07:00:00+00:00,14458,156.13,156.258,155.917,156.25,USD_JPY,H1,45.48494983277574,-0.31006867036791164,-0.39152169900177425,0.08145302863386261,156.23525,0.2355834582169801,0.37357142857142783,52.565044932366376,316524 -2024-07-18 08:00:00+00:00,14531,156.25,156.59,156.175,156.466,USD_JPY,H1,58.007117437722755,-0.2682430702061538,-0.3668659732426502,0.0986229030364964,156.23015,0.2290132781629317,0.37464285714285744,46.70007242945376,331055 -2024-07-18 09:00:00+00:00,10895,156.464,156.504,156.304,156.49,USD_JPY,H1,56.89497716895025,-0.2305022943505719,-0.33959323746423453,0.10909094311366263,156.2406,0.23611402240222468,0.3760714285714276,41.118401394985575,341950 -2024-07-18 10:00:00+00:00,8353,156.489,156.499,156.319,156.395,USD_JPY,H1,53.98582816651923,-0.20588485122328848,-0.3128515602160454,0.1069667089927569,156.23534999999998,0.23115801725955065,0.3761428571428565,36.540450890206,333597 -2024-07-18 11:00:00+00:00,7572,156.398,156.528,156.381,156.498,USD_JPY,H1,57.031924072476265,-0.17603489035462871,-0.2854882262437621,0.10945333588913336,156.23195,0.22649165779035,0.3816428571428564,32.248005993912386,341169 -2024-07-18 12:00:00+00:00,14490,156.495,156.582,156.182,156.436,USD_JPY,H1,55.82770270270307,-0.15558794220561367,-0.2595081694361324,0.10392022723051875,156.23845,0.2305575564541555,0.3902142857142853,29.417511972942282,326679 -2024-07-18 13:00:00+00:00,16805,156.434,156.696,156.319,156.588,USD_JPY,H1,72.46804326450385,-0.12566981539706035,-0.23274049862831803,0.10707068323125768,156.24454999999998,0.2383761898570355,0.3570714285714282,26.024805393117113,343484 -2024-07-18 14:00:00+00:00,13663,156.588,156.776,156.504,156.759,USD_JPY,H1,73.84399813171457,-0.0871565272662167,-0.20362370435589777,0.11646717708968107,156.2772,0.26195451593197133,0.34914285714285753,21.461735898263118,357147 -2024-07-18 15:00:00+00:00,13560,156.756,156.986,156.698,156.976,USD_JPY,H1,69.5321001088143,-0.03867852058516519,-0.17063466760175125,0.13195614701658606,156.3166,0.30375724378867425,0.3279999999999989,18.74131973267871,370707 -2024-07-18 16:00:00+00:00,10066,156.976,157.161,156.875,157.148,USD_JPY,H1,71.31147540983653,0.013464402262826525,-0.13381485362883572,0.14727925589166224,156.36325000000002,0.35470371252712163,0.330214285714285,17.08187096093098,380773 -2024-07-18 17:00:00+00:00,8885,157.152,157.226,157.094,157.191,USD_JPY,H1,70.10144153764094,0.05759387854240572,-0.09553310719458744,0.15312698573699315,156.4142,0.396508126944808,0.31950000000000095,16.532805347038085,389658 -2024-07-18 18:00:00+00:00,8394,157.192,157.33,157.15,157.284,USD_JPY,H1,75.10683760683813,0.09893071746756732,-0.056640342262156494,0.15557105972972382,156.47039999999998,0.43624720176662235,0.3066428571428596,16.57089804143626,398052 -2024-07-18 19:00:00+00:00,6088,157.284,157.402,157.282,157.368,USD_JPY,H1,90.46751669702576,0.13689056884803108,-0.01793416004011898,0.15482472888815005,156.55509999999998,0.4379300472821853,0.2685714285714279,18.469639979533845,404140 -2024-07-18 20:00:00+00:00,1868,157.367,157.399,157.343,157.362,USD_JPY,H1,89.57800511509039,0.16459255418772045,0.01857118280544891,0.14602137138227153,156.6363,0.4289177445337716,0.24242857142857183,20.9406923704174,402272 -2024-07-18 21:00:00+00:00,243,157.353,157.37,157.332,157.356,USD_JPY,H1,88.29639889196763,0.18394205775373962,0.05164535779510705,0.13229669995863258,156.69119999999998,0.447802541067602,0.22078571428571486,23.814236704440834,402029 -2024-07-18 22:00:00+00:00,4237,157.35,157.35,157.254,157.268,USD_JPY,H1,80.47112462006177,0.1899857764136641,0.07931344151881847,0.11067233489484563,156.7388,0.4563368561852492,0.19800000000000142,26.498049495146244,397792 -2024-07-18 23:00:00+00:00,5011,157.266,157.288,157.111,157.177,USD_JPY,H1,74.83731019522801,0.18529654429349307,0.1005100620737534,0.08478648221973967,156.77575,0.46059776663474816,0.1963571428571466,28.09408408672719,392781 -2024-07-19 00:00:00+00:00,12393,157.176,157.419,157.064,157.214,USD_JPY,H1,80.90566037735898,0.1824625699054252,0.11690056364008777,0.06556200626533742,156.81924999999998,0.45875493687012225,0.20885714285714738,29.76060227382434,405174 -2024-07-19 01:00:00+00:00,10477,157.214,157.534,157.202,157.459,USD_JPY,H1,82.75391956373629,0.1977070336195368,0.13306185763597758,0.0646451759835592,156.89045,0.44078333082645654,0.22207142857143328,31.888545900855544,415651 -2024-07-19 02:00:00+00:00,9024,157.46,157.523,157.344,157.42,USD_JPY,H1,84.07202216066375,0.2042865190522889,0.14730678991923984,0.05697972913304905,156.95525,0.41678631088982576,0.2062857142857187,35.38568376603941,406627 -2024-07-19 03:00:00+00:00,6569,157.422,157.448,157.33,157.38,USD_JPY,H1,79.7297297297293,0.20392245186656055,0.15862992230870399,0.045292529557856565,157.01175,0.3920053537470376,0.1877857142857177,37.92018255053859,400058 -2024-07-19 04:00:00+00:00,4605,157.38,157.485,157.362,157.482,USD_JPY,H1,78.62232779097363,0.20945006359434615,0.1687939505658324,0.04065611302851374,157.06255,0.38329423560846165,0.17714285714286046,40.533705602301396,404663 -2024-07-19 05:00:00+00:00,9327,157.481,157.865,157.474,157.774,USD_JPY,H1,79.82062780269015,0.23468736550537983,0.18197263355374188,0.05271473195163795,157.12675,0.38982382997868653,0.18450000000000596,44.41102800469815,413990 -2024-07-19 06:00:00+00:00,11710,157.77,157.826,157.137,157.264,USD_JPY,H1,53.46062052506005,0.2111019198173949,0.1877984908064725,0.02330342901092239,157.1702,0.35040662093959585,0.21328571428571966,45.18042527647826,402280 -2024-07-19 07:00:00+00:00,17444,157.26,157.558,156.956,157.319,USD_JPY,H1,53.791469194312405,0.19460503878184454,0.18915980040154695,0.00544523838029759,157.21125,0.31367916478378927,0.24685714285714816,44.989454934282115,419724 -2024-07-19 08:00:00+00:00,11875,157.32,157.426,157.162,157.262,USD_JPY,H1,49.33414043583561,0.17491540220095203,0.186310920761428,-0.011395518560475965,157.25254999999999,0.2551518588039945,0.25285714285714633,44.49175489361938,407849 -2024-07-19 09:00:00+00:00,8652,157.264,157.44,157.146,157.369,USD_JPY,H1,50.0298507462688,0.1660313233731756,0.18225500128377753,-0.01622367791060192,157.2916,0.20240433737464184,0.2652857142857203,41.768551476042354,416501 -2024-07-19 10:00:00+00:00,7573,157.368,157.579,157.366,157.457,USD_JPY,H1,52.70347182697781,0.16419871091980554,0.17864374321098314,-0.014445032291177606,157.3265,0.1618506458980698,0.27650000000000474,38.1190883747305,424074 -2024-07-19 11:00:00+00:00,7472,157.458,157.54,157.33,157.47,USD_JPY,H1,53.23129251700697,0.16192873009825348,0.1753007405884372,-0.013372010490183717,157.3512,0.14202616511643024,0.28878571428571675,34.001595415237894,431546 -2024-07-19 12:00:00+00:00,10916,157.472,157.698,157.426,157.676,USD_JPY,H1,60.8395324123271,0.1747379618751097,0.1751881848457717,-0.00045022297066199535,157.37759999999997,0.15105293599423028,0.3013571428571465,31.219761639894596,442462 -2024-07-19 13:00:00+00:00,13621,157.676,157.7,157.414,157.512,USD_JPY,H1,58.56777493606178,0.1696997478897515,0.17409049745456767,-0.004390749564816165,157.39365,0.1471866966917906,0.3091428571428594,30.034602842970457,428841 -2024-07-19 14:00:00+00:00,11649,157.514,157.53,157.264,157.342,USD_JPY,H1,53.065134099617296,0.1502572754181415,0.16932385304728245,-0.019066577629140963,157.39655,0.14547398935130884,0.3027857142857146,27.563998203196757,417192 -2024-07-19 15:00:00+00:00,10785,157.342,157.459,157.278,157.391,USD_JPY,H1,48.202959830866405,0.13722106735158945,0.16290329590814387,-0.025682228556554415,157.3977,0.14532725320859757,0.2920000000000016,25.4249666172909,427977 -2024-07-19 16:00:00+00:00,6788,157.392,157.442,157.344,157.416,USD_JPY,H1,49.89350372736979,0.12743804317008767,0.15581024536053262,-0.02837220219044495,157.4004,0.14513057641094346,0.2862142857142881,21.78303369138834,434765 -2024-07-19 17:00:00+00:00,6720,157.416,157.433,157.357,157.415,USD_JPY,H1,50.95160413268076,0.11824122316269836,0.14829644092096578,-0.030055217758267416,157.40335,0.1447797874047292,0.28321428571428797,18.516598664749093,428045 -2024-07-19 18:00:00+00:00,5175,157.416,157.5,157.402,157.492,USD_JPY,H1,50.2756339581034,0.11583070921773242,0.1418032945803191,-0.025972585362586675,157.41455000000002,0.1424028662445712,0.2814285714285733,15.17679648620884,433220 -2024-07-19 19:00:00+00:00,2344,157.49,157.528,157.472,157.504,USD_JPY,H1,41.199478487613206,0.11357938679111612,0.1361585130224785,-0.02257912623136238,157.4309,0.13209203330283015,0.2574999999999993,14.346006504311989,435564 -2024-07-19 20:00:00+00:00,1188,157.505,157.536,157.445,157.477,USD_JPY,H1,60.133206470029194,0.10836733204902771,0.13060027682778835,-0.022232944778760644,157.44405,0.1220739529914111,0.21478571428571464,14.793219670180687,434376 -2024-07-21 21:00:00+00:00,265,157.426,157.46,157.421,157.426,USD_JPY,H1,55.10983763132786,0.09898048195708498,0.12427631785364768,-0.0252958358965627,157.4424,0.12208426770062529,0.17457142857142977,14.769381259754368,434111 -2024-07-21 22:00:00+00:00,3575,157.419,157.504,157.23,157.268,USD_JPY,H1,50.26132404181187,0.07789414092258085,0.11499988246743431,-0.037105741544853466,157.4348,0.12813340087572683,0.17528571428571688,14.51736128423771,430536 -2024-07-21 23:00:00+00:00,5632,157.268,157.43,157.156,157.425,USD_JPY,H1,52.337228714524784,0.07301003736648681,0.10660191344724482,-0.033591876080758004,157.43705,0.12751407558625313,0.1738571428571447,14.174209677110271,436168 -2024-07-22 00:00:00+00:00,8376,157.426,157.492,157.334,157.428,USD_JPY,H1,48.69721473495068,0.0685907535277579,0.09899968146334745,-0.030408927935589553,157.43435,0.12708317831031896,0.1699285714285728,15.483787905598803,444544 -2024-07-22 01:00:00+00:00,8501,157.428,157.557,157.352,157.544,USD_JPY,H1,53.042763157895365,0.07360025190453712,0.09391979555158539,-0.02031954364704827,157.42285,0.10282037223365281,0.16957142857143026,15.731984703256567,453045 -2024-07-22 02:00:00+00:00,7000,157.546,157.614,157.526,157.551,USD_JPY,H1,43.85447394296915,0.07724472781902136,0.09058478200507258,-0.01334005418605122,157.43720000000002,0.09945620564367916,0.15642857142857128,17.417638803169286,460045 -2024-07-22 03:00:00+00:00,4427,157.552,157.568,157.458,157.48,USD_JPY,H1,48.2683982683976,0.07355598697915866,0.0871790229998898,-0.013623036020731144,157.44525000000002,0.09583531652625801,0.14385714285714357,18.767658023015116,455618 -2024-07-22 04:00:00+00:00,5547,157.48,157.516,157.392,157.445,USD_JPY,H1,56.5272496831423,0.06703568020171247,0.08315035444025434,-0.016114674238541876,157.4544,0.08560890262992073,0.13371428571428673,20.365535743482223,450071 -2024-07-22 05:00:00+00:00,8741,157.444,157.444,157.012,157.039,USD_JPY,H1,34.642233856893185,0.028775773977798735,0.07227543834776322,-0.04349966436996448,157.4379,0.12546079278104932,0.15164285714285647,23.288523626811287,441330 -2024-07-22 06:00:00+00:00,19905,157.034,157.064,156.284,156.448,USD_JPY,H1,21.728971962616484,-0.0486731642201903,0.048085717834172516,-0.09675888205436281,157.38745,0.2541964584184714,0.20035714285714132,27.401641570617763,421425 -2024-07-22 07:00:00+00:00,15224,156.446,156.848,156.346,156.81,USD_JPY,H1,35.40762180414848,-0.07992035894255878,0.022484502478826263,-0.10240486142138504,157.35444999999999,0.28400842741164056,0.2307857142857139,31.39075047838148,436649 -2024-07-22 08:00:00+00:00,11920,156.81,156.964,156.674,156.798,USD_JPY,H1,32.719123505975986,-0.10444827094511311,-0.0029020522059616145,-0.1015462187391515,157.31055,0.29914377373938617,0.2444999999999981,35.241635359295586,424729 -2024-07-22 09:00:00+00:00,10854,156.802,156.86,156.61,156.692,USD_JPY,H1,30.685061845861,-0.13093084278818878,-0.02850781032240705,-0.10242303246578173,157.26955,0.32514409356078816,0.2583571428571422,36.448892455682675,413875 -2024-07-22 10:00:00+00:00,10295,156.692,156.959,156.558,156.844,USD_JPY,H1,35.78805568028682,-0.13806185100952462,-0.05041861845983056,-0.08764323254969406,157.24465,0.338113851112681,0.28049999999999947,38.705524486796534,424170 -2024-07-22 11:00:00+00:00,10283,156.828,156.899,156.654,156.857,USD_JPY,H1,37.003197807217795,-0.14103843179822206,-0.06854258112750886,-0.07249585067071321,157.21795000000003,0.34691838490899757,0.2952142857142844,42.977419749118724,434453 -2024-07-22 12:00:00+00:00,12155,156.856,157.094,156.79,156.792,USD_JPY,H1,38.645038167938665,-0.14694842037286548,-0.08422374897658019,-0.06272467139628529,157.18675000000002,0.35610729828670135,0.2973571428571416,45.32932494889513,422298 -2024-07-22 13:00:00+00:00,12545,156.804,156.924,156.696,156.862,USD_JPY,H1,35.9880537580877,-0.14432008184448364,-0.09624301555016088,-0.04807706629432276,157.15910000000002,0.35890988459696554,0.2940714285714279,47.291844723193506,434843 -2024-07-22 14:00:00+00:00,12952,156.864,156.958,156.752,156.878,USD_JPY,H1,36.399604352125884,-0.1393398156830017,-0.10486237557672905,-0.03447744010627264,157.1284,0.3551763683436056,0.29749999999999943,48.604458549107065,447795 -2024-07-22 15:00:00+00:00,10340,156.878,157.148,156.868,157.088,USD_JPY,H1,39.224952741020026,-0.11709784287066327,-0.1073094690355159,-0.009788373835147371,157.1076,0.3440286707731073,0.3028571428571435,50.20868131954801,458135 -2024-07-22 16:00:00+00:00,7786,157.088,157.134,157.034,157.074,USD_JPY,H1,38.76589731512034,-0.09945415656045498,-0.10573840654050373,0.006284249980048756,157.08745000000002,0.33287511092263233,0.3037142857142864,51.03456299027418,450349 -2024-07-22 17:00:00+00:00,7149,157.075,157.154,157.035,157.14,USD_JPY,H1,41.9735599622281,-0.07923241763862165,-0.10043720876012732,0.021204791121505667,157.07315,0.3235792061143822,0.30435714285714255,51.231459202694275,457498 -2024-07-22 18:00:00+00:00,5339,157.138,157.172,157.059,157.07,USD_JPY,H1,41.29122155132335,-0.0680702869432821,-0.0939638243967583,0.025893537453476195,157.06325,0.32031643482510025,0.30357142857142855,51.7363926710015,452159 -2024-07-22 19:00:00+00:00,4010,157.069,157.122,157.066,157.08,USD_JPY,H1,51.166761525328035,-0.0577515772880588,-0.0867213749750184,0.028969797686959606,157.046,0.30889582641549895,0.2767142857142874,49.036328394632676,456169 -2024-07-22 20:00:00+00:00,1442,157.08,157.1,157.052,157.052,USD_JPY,H1,75.29313232830843,-0.05124259875719872,-0.07962561973145446,0.02838302097425574,157.0272,0.29557786399209784,0.22442857142857317,49.04732059574409,454727 -2024-07-22 21:00:00+00:00,169,156.971,156.982,156.892,156.957,USD_JPY,H1,57.9288025889966,-0.053137358042050664,-0.0743279673935737,0.021190609351523032,156.99785000000003,0.269558757383355,0.1950000000000013,46.26261234624695,454558 -2024-07-22 22:00:00+00:00,1286,156.963,157.08,156.958,157.044,USD_JPY,H1,62.2754491017971,-0.04707613117926712,-0.06887760015071238,0.021801468971445262,156.9725,0.2366297351913621,0.1830714285714318,43.701305764876246,455844 -2024-07-22 23:00:00+00:00,4673,157.038,157.102,156.888,156.907,USD_JPY,H1,60.40658276863533,-0.0527196015155198,-0.06564600042367387,0.012926398908154071,156.94385,0.20445003893071645,0.18050000000000313,40.814924768654855,451171 -2024-07-23 00:00:00+00:00,12745,156.904,156.932,156.647,156.659,USD_JPY,H1,41.806908768822005,-0.07632380646253978,-0.06778156163144705,-0.008542244831092727,156.90455,0.17670894147616228,0.17221428571428785,37.23966213542111,438426 -2024-07-23 01:00:00+00:00,11430,156.66,156.852,156.584,156.708,USD_JPY,H1,43.60515021459235,-0.09003851054967527,-0.0722329514150927,-0.017805559134582566,156.88799999999998,0.178940154646616,0.1738571428571447,33.28834134736543,449856 -2024-07-23 02:00:00+00:00,10934,156.708,156.77,156.522,156.634,USD_JPY,H1,43.27086882453106,-0.10566070309030806,-0.07891850175013577,-0.026742201340172286,156.8973,0.15853908698763353,0.1698571428571459,32.66836355208114,438922 -2024-07-23 03:00:00+00:00,10673,156.638,156.67,156.198,156.28,USD_JPY,H1,30.041152263375068,-0.1449355182934653,-0.09212190505880168,-0.05281361323466362,156.8708,0.20988106907351314,0.1872857142857153,32.86061369523442,428249 -2024-07-23 04:00:00+00:00,9695,156.283,156.388,156.206,156.308,USD_JPY,H1,30.61224489795977,-0.17182107985388484,-0.10806174001781832,-0.06375933983606652,156.84629999999999,0.24456085239425426,0.18557142857143155,33.15991359602558,437944 -2024-07-23 05:00:00+00:00,7440,156.306,156.452,156.264,156.318,USD_JPY,H1,19.685039370080375,-0.1901294704797749,-0.12447528611020965,-0.06565418436956526,156.8276,0.2699599190475883,0.17900000000000205,35.33336288745038,445384 -2024-07-23 06:00:00+00:00,11398,156.318,156.624,156.216,156.59,USD_JPY,H1,34.162303664921666,-0.18060892785928218,-0.13570201446002417,-0.04490691339925801,156.8149,0.2750739422075893,0.20100000000000154,35.43191569336571,456782 -2024-07-23 07:00:00+00:00,16159,156.588,156.638,155.932,156.044,USD_JPY,H1,22.70916334661507,-0.21464714742600677,-0.1514910410532207,-0.06315610637278607,156.77425,0.32420865194704024,0.2429285714285742,36.676872179479595,440623 -2024-07-23 08:00:00+00:00,15053,156.043,156.138,155.825,156.012,USD_JPY,H1,23.14720812182874,-0.24142185338371291,-0.16947720351931916,-0.07194464986439375,156.73525,0.3661610049912112,0.2572142857142897,38.51530759496227,425570 -2024-07-23 09:00:00+00:00,10762,156.012,156.076,155.822,155.944,USD_JPY,H1,21.992110453649374,-0.26507244234335303,-0.18859625128412594,-0.0764761910592271,156.68935,0.404922250493213,0.27135714285714535,41.66788098411799,414808 -2024-07-23 10:00:00+00:00,8680,155.946,156.167,155.924,156.049,USD_JPY,H1,26.175771971497625,-0.27220526910838316,-0.2053180548489774,-0.06688721425940578,156.6479,0.4264526752261599,0.2852857142857163,40.25945432332815,423488 -2024-07-23 11:00:00+00:00,9202,156.048,156.192,156.038,156.156,USD_JPY,H1,31.081719414266445,-0.26615599926208233,-0.2174856437315984,-0.04867035553048393,156.60129999999998,0.4267516349021398,0.28985714285714437,41.26170844958953,432690 -2024-07-23 12:00:00+00:00,13523,156.156,156.267,155.944,156.032,USD_JPY,H1,26.50882079851496,-0.26827516392080497,-0.22764354776943974,-0.040631616151365235,156.54919999999998,0.42960147995058756,0.3041428571428578,43.23328694189321,419167 -2024-07-23 13:00:00+00:00,12437,156.034,156.21,155.988,156.092,USD_JPY,H1,30.380356283101193,-0.2620918865004853,-0.23453321551564887,-0.027558670984836442,156.4968,0.4174901952795523,0.3047142857142871,45.021534328740806,431604 -2024-07-23 14:00:00+00:00,13341,156.092,156.196,155.972,155.981,USD_JPY,H1,32.52577319587685,-0.263115337108502,-0.2402496398342195,-0.022865697274282476,156.44234999999998,0.40974051801329053,0.30035714285714377,47.533882119088005,418263 -2024-07-23 15:00:00+00:00,8740,155.984,156.096,155.945,156.026,USD_JPY,H1,32.386363636364536,-0.25732897690559753,-0.24366550724849512,-0.013663469657102412,156.38965,0.3907524825615202,0.2920000000000016,49.973856230578015,427003 -2024-07-23 16:00:00+00:00,7294,156.026,156.058,155.696,155.786,USD_JPY,H1,29.828734538535684,-0.2690082790040833,-0.24873406159961278,-0.020274217404470524,156.32635,0.38020842967544016,0.300142857142857,51.131329487763686,419709 -2024-07-23 17:00:00+00:00,10445,155.786,155.809,155.58,155.69,USD_JPY,H1,34.00216919739756,-0.28275122761110083,-0.2555374948019104,-0.027213732809190427,156.26299999999998,0.37511878819818206,0.28278571428571453,50.809679758688944,409264 -2024-07-23 18:00:00+00:00,8178,155.688,155.758,155.625,155.628,USD_JPY,H1,31.895633652822923,-0.2952421277720134,-0.26347842139593103,-0.03176370637608239,156.1922,0.3529260545722656,0.279285714285714,50.09171379798952,401086 -2024-07-23 19:00:00+00:00,5674,155.628,155.675,155.592,155.643,USD_JPY,H1,32.07647371216204,-0.30046728171268455,-0.27087619345928177,-0.029591088253402786,156.129,0.3306593094760289,0.2717857142857148,48.84895155397567,406760 -2024-07-23 20:00:00+00:00,2343,155.64,155.654,155.566,155.606,USD_JPY,H1,20.14563106796288,-0.3040885016751247,-0.2775186551024504,-0.026569846572674305,156.07635,0.32562204033751624,0.24892857142857241,51.27784368266942,404417 -2024-07-23 21:00:00+00:00,369,155.566,155.596,155.532,155.588,USD_JPY,H1,29.642857142858517,-0.3048961412278004,-0.2829941523275204,-0.02190198890028,156.02035,0.3070529313117196,0.20307142857142782,52.24779531310253,404048 -2024-07-23 22:00:00+00:00,1970,155.59,155.645,155.572,155.637,USD_JPY,H1,33.509234828497696,-0.2981454754502124,-0.2860244169520588,-0.012121058498153592,155.9705,0.28210104571841615,0.18592857142857003,51.65287953267222,406018 -2024-07-23 23:00:00+00:00,4306,155.636,155.82,155.63,155.762,USD_JPY,H1,42.378559463987756,-0.27948731308373453,-0.28471699617839397,0.005229683094659432,155.94459999999998,0.2759008975311973,0.18135714285714194,48.7963574011494,410324 -2024-07-24 00:00:00+00:00,8901,155.77,155.992,155.77,155.828,USD_JPY,H1,40.43290043290099,-0.2564190968355433,-0.27905741630982384,0.02263831947428052,155.92059999999998,0.26321102199674123,0.18042857142857013,45.81592364216584,419225 -2024-07-24 01:00:00+00:00,16549,155.829,155.879,155.18,155.25,USD_JPY,H1,22.14022140221539,-0.2815318151956774,-0.27955229608699456,-0.0019795191086828257,155.8672,0.28571859544777883,0.21935714285714067,46.052199893883014,402676 -2024-07-24 02:00:00+00:00,9460,155.248,155.528,155.232,155.258,USD_JPY,H1,24.37086092715407,-0.2973605054755808,-0.28311393796471185,-0.014246567510868946,155.8006,0.262682598135919,0.21742857142856817,45.00792097434371,412136 -2024-07-24 03:00:00+00:00,12564,155.259,155.296,155.048,155.056,USD_JPY,H1,18.644067796612035,-0.3224871373988947,-0.2909885778515484,-0.03149855954734626,155.7512,0.3041311351429074,0.21928571428570973,44.81608333432499,399572 -2024-07-24 04:00:00+00:00,14616,155.056,155.059,154.546,154.61,USD_JPY,H1,15.500754906896688,-0.37407652551658543,-0.3076061673845558,-0.06647035813202962,155.6811,0.39024012849712547,0.239928571428568,46.08312288323572,384956 -2024-07-24 05:00:00+00:00,10897,154.61,154.796,154.36,154.634,USD_JPY,H1,14.598168870803704,-0.4083180515288234,-0.3277485442134094,-0.08056950731541401,155.6156,0.44926588071375273,0.26028571428570857,47.665652320258474,395853 -2024-07-24 06:00:00+00:00,15859,154.634,154.688,154.376,154.586,USD_JPY,H1,16.17812852311195,-0.4343213206092855,-0.3490630994925846,-0.0852582211167009,155.54245,0.4920515029682594,0.2567142857142792,48.352095790734744,379994 -2024-07-24 07:00:00+00:00,14108,154.586,154.884,154.414,154.592,USD_JPY,H1,17.399049881235555,-0.4492660890272191,-0.36910369739951154,-0.08016239162770755,155.46425000000002,0.5132346211139416,0.2739285714285659,48.39869960801964,394102 -2024-07-24 08:00:00+00:00,8386,154.591,154.948,154.548,154.863,USD_JPY,H1,29.79397781299531,-0.4342368780836807,-0.3821303335363454,-0.05210654454733532,155.4058,0.5117369389939321,0.2929999999999942,48.36437345236898,402488 -2024-07-24 09:00:00+00:00,10313,154.864,154.936,154.279,154.778,USD_JPY,H1,27.9673968415684,-0.4242939136341022,-0.3905630495558968,-0.03373086407820536,155.34009999999998,0.5032814321966153,0.3339999999999951,48.07255969700456,392175 -2024-07-24 10:00:00+00:00,7237,154.778,154.842,154.489,154.566,USD_JPY,H1,25.678203928905106,-0.4285802644085095,-0.3981664925264194,-0.0304137718820901,155.26935,0.5078809718552678,0.35292857142856754,46.20604006448183,384938 -2024-07-24 11:00:00+00:00,8185,154.564,154.581,154.056,154.19,USD_JPY,H1,21.995192307691852,-0.45704871285678905,-0.40994293659249337,-0.047105776264295685,155.17755,0.5293914554952468,0.38585714285713785,45.44936541519741,376753 -2024-07-24 12:00:00+00:00,15973,154.19,154.226,153.76,153.813,USD_JPY,H1,17.705382436259896,-0.5042185945429765,-0.42879806818259,-0.07542052636038649,155.0789,0.5903611650984514,0.4139285714285665,46.42386597299127,360780 -2024-07-24 13:00:00+00:00,17237,153.813,154.0,153.342,153.441,USD_JPY,H1,12.211006186909103,-0.5651041873792337,-0.45605929202191875,-0.10904489535731499,154.96645,0.6758376070074832,0.4473571428571371,50.631315892679915,343543 -2024-07-24 14:00:00+00:00,23618,153.442,153.596,153.106,153.272,USD_JPY,H1,9.735349716445299,-0.6198481226511774,-0.4888170581477705,-0.1310310645034069,154.84865,0.7551350018674237,0.4659285714285671,56.380915703989885,319925 -2024-07-24 15:00:00+00:00,14492,153.272,153.502,153.266,153.383,USD_JPY,H1,15.515330624307083,-0.6468201731047145,-0.5204176811391593,-0.1264024919655552,154.73565,0.7978954736270328,0.432857142857141,59.76569480312715,334417 -2024-07-24 16:00:00+00:00,10593,153.384,153.587,153.34,153.474,USD_JPY,H1,18.028673835124337,-0.6533216921425833,-0.5469984833398441,-0.10632320880273916,154.62905,0.8176695687601152,0.4293571428571405,63.12702669053437,345010 -2024-07-24 17:00:00+00:00,9902,153.474,153.86,153.448,153.828,USD_JPY,H1,29.12984364377924,-0.6227308971762966,-0.5621449661071347,-0.06058593106916188,154.54104999999998,0.8036201953740204,0.44107142857142734,64.49062356699945,354912 -2024-07-24 18:00:00+00:00,7588,153.829,154.078,153.807,154.006,USD_JPY,H1,38.70605833956572,-0.577467671522669,-0.5652095071902417,-0.012258164332427324,154.4595,0.7685415785020736,0.42378571428571377,63.48897830372904,362500 -2024-07-24 19:00:00+00:00,5566,154.006,154.1,153.879,154.02,USD_JPY,H1,38.475975975976375,-0.5343073930587252,-0.5590290843639384,0.024721691305213178,154.37240000000003,0.7096104490952652,0.4084285714285727,61.88772636823914,368066 -2024-07-24 20:00:00+00:00,2287,154.02,154.023,153.898,153.899,USD_JPY,H1,37.449762513701025,-0.5040558085863154,-0.5480344292084138,0.04397862062209845,154.27595000000002,0.6277225732269152,0.395071428571431,60.62681675664446,365779 -2024-07-24 21:00:00+00:00,880,153.89,153.898,153.533,153.795,USD_JPY,H1,35.94356261022901,-0.4829064952978115,-0.5350088424262933,0.05210234712848183,154.2032,0.5922021880827627,0.38757142857143173,62.04545306015045,364899 -2024-07-24 22:00:00+00:00,4983,153.765,153.792,153.556,153.602,USD_JPY,H1,27.13093942691367,-0.4762293239715234,-0.5232529387353393,0.04702361476381589,154.1204,0.5513183625029694,0.37585714285714494,63.96266976002948,359916 -2024-07-24 23:00:00+00:00,8437,153.592,153.952,153.587,153.918,USD_JPY,H1,35.60910307898298,-0.4403628299241973,-0.506674916973111,0.06631208704891367,154.0635,0.50658573336984,0.3550000000000019,64.32419468146684,368353 -2024-07-25 00:00:00+00:00,20233,153.914,153.97,152.84,153.246,USD_JPY,H1,30.8584686774945,-0.46085075817859433,-0.4975100852142077,0.036659327035613365,153.9953,0.5207571511912578,0.41050000000000103,64.83501328584008,348120 -2024-07-25 01:00:00+00:00,14745,153.246,153.347,152.646,152.864,USD_JPY,H1,30.804863925883325,-0.5021236278003869,-0.49843279373144356,-0.0036908340689433272,153.9068,0.5557275553540233,0.42307142857143276,64.55960465671839,333375 -2024-07-25 02:00:00+00:00,10289,152.859,152.956,152.516,152.642,USD_JPY,H1,32.25219763564746,-0.5464471167884142,-0.5080356583428377,-0.038411458445576474,153.8096,0.5990026271715778,0.42121428571428915,63.58466643534818,323086 -2024-07-25 03:00:00+00:00,11907,152.641,152.641,152.232,152.32,USD_JPY,H1,32.74853801169604,-0.6006327891660135,-0.5265550845074729,-0.07407770465854058,153.69599999999997,0.6555808192099991,0.4034285714285752,61.43903437068678,311179 -2024-07-25 04:00:00+00:00,9118,152.32,152.656,152.316,152.624,USD_JPY,H1,40.4255319148938,-0.611990420924343,-0.543642151790847,-0.06834826913349601,153.58405,0.63670934250375,0.39271428571428907,58.06193623039423,320297 -2024-07-25 05:00:00+00:00,10596,152.622,152.974,152.587,152.744,USD_JPY,H1,40.58355437665776,-0.6043419509808814,-0.5557821116288539,-0.048559839352027456,153.48235,0.5971813860829326,0.4035000000000021,52.840164182984985,330893 -2024-07-25 06:00:00+00:00,16601,152.738,152.87,152.547,152.853,USD_JPY,H1,40.89709762533025,-0.5827673155439186,-0.5611791524118669,-0.021588163132051696,153.39669999999998,0.5549277904561614,0.4089285714285751,48.40590677462204,347494 -2024-07-25 07:00:00+00:00,17482,152.852,152.935,152.056,152.198,USD_JPY,H1,28.04418103448309,-0.6114736004233237,-0.5712380420141583,-0.04023555840916537,153.2971,0.5830999643369695,0.44228571428571684,47.0771394996532,330012 -2024-07-25 08:00:00+00:00,15295,152.198,152.751,151.939,152.71,USD_JPY,H1,33.984181908057636,-0.5861526144977631,-0.5742209565108792,-0.011931657986883892,153.24195000000003,0.5838983757011793,0.48092857142857376,48.235339198396574,345307 -2024-07-25 09:00:00+00:00,11540,152.712,152.744,152.25,152.308,USD_JPY,H1,30.6946323861074,-0.5917028094051204,-0.5777173270897276,-0.013985482315392872,153.1853,0.6175616823989197,0.5004285714285734,49.91699170170428,333767 -2024-07-25 10:00:00+00:00,8763,152.308,152.362,152.092,152.212,USD_JPY,H1,30.868677704695017,-0.5969663204077165,-0.5815671257533254,-0.015399194654391102,153.13230000000001,0.6541318955917133,0.5107857142857151,51.750258767063556,325004 -2024-07-25 11:00:00+00:00,9800,152.211,152.735,152.173,152.725,USD_JPY,H1,38.89580738895823,-0.553364041900835,-0.5759265089828273,0.022562467081992277,153.0994,0.65739825307504,0.5248571428571438,50.394939046048,334804 -2024-07-25 12:00:00+00:00,20193,152.724,153.74,152.552,153.524,USD_JPY,H1,49.28097345132741,-0.4491586779207637,-0.5505729427704146,0.10141426484965088,153.1019,0.6589909271708446,0.5928571428571457,46.23496999963801,354997 -2024-07-25 13:00:00+00:00,21067,153.518,154.197,153.415,153.656,USD_JPY,H1,47.50000000000003,-0.3518677667919974,-0.5108319075747312,0.1589641407827338,153.0933,0.6500784648906011,0.62264285714286,42.669818104081926,376064 -2024-07-25 14:00:00+00:00,17353,153.662,153.747,153.231,153.645,USD_JPY,H1,54.356846473029,-0.2725102977675533,-0.46316758561329563,0.19065728784574232,153.07525,0.6280409704107491,0.578785714285719,39.63999357405809,358711 -2024-07-25 15:00:00+00:00,14391,153.644,154.104,153.634,153.98,USD_JPY,H1,62.312444836716416,-0.18050646536644877,-0.40663536156392627,0.2261288961974775,153.07324999999997,0.6249300487075549,0.5622857142857194,37.82192432708778,373102 -2024-07-25 16:00:00+00:00,16039,153.979,154.321,153.906,154.026,USD_JPY,H1,65.88613406795223,-0.10269712128732067,-0.34584771350860516,0.2431505922212845,153.0796,0.6343366530966446,0.5605000000000047,36.779821103168004,389141 -2024-07-25 17:00:00+00:00,16342,154.027,154.044,153.748,154.035,USD_JPY,H1,71.20949789760066,-0.03984709819070531,-0.2846475904450252,0.24480049225431988,153.0916,0.6506429532545309,0.5524285714285782,36.23576836062593,405483 -2024-07-25 18:00:00+00:00,12699,154.035,154.054,153.771,153.788,USD_JPY,H1,64.60110386352247,-0.00985523282221834,-0.22968911892046381,0.21983388609824547,153.1009,0.6595901358848868,0.5483571428571504,36.12218528163836,392784 -2024-07-25 19:00:00+00:00,9337,153.79,153.92,153.788,153.92,USD_JPY,H1,64.7073536768383,0.024284892270713954,-0.17889431668222827,0.20317920895294223,153.101,0.6597206745352714,0.530142857142863,37.19052895054737,402121 -2024-07-25 20:00:00+00:00,3429,153.916,154.056,153.806,153.904,USD_JPY,H1,63.457106274007614,0.049479749340434864,-0.13321950347769565,0.18269925281813051,153.1339,0.6833174418263386,0.5249285714285767,38.18341750785383,398692 -2024-07-25 21:00:00+00:00,352,153.931,153.942,153.878,153.939,USD_JPY,H1,76.49923896499243,0.07144746072734165,-0.09228611063668819,0.16373357136402983,153.18765000000002,0.7029670408452666,0.46671428571429324,39.29054240049293,399044 -2024-07-25 22:00:00+00:00,2738,153.94,153.994,153.894,153.904,USD_JPY,H1,71.26068376068383,0.08505239174868962,-0.05681841015961263,0.14187080190830226,153.25074999999998,0.7080321784905438,0.41585714285714914,39.930180934764174,396306 -2024-07-25 23:00:00+00:00,13071,153.902,153.904,153.376,153.704,USD_JPY,H1,76.78434382195027,0.0787878517597278,-0.029697157775744547,0.10848500953547235,153.31995,0.6793281878671525,0.41828571428572,38.645959236455774,383235 -2024-07-26 00:00:00+00:00,15790,153.704,154.142,153.374,153.922,USD_JPY,H1,81.34164222874003,0.0903721825175694,-0.00568328971708176,0.09605547223465116,153.38485,0.671295940299514,0.4538571428571499,37.92277580026597,399025 -2024-07-26 01:00:00+00:00,15257,153.926,154.094,153.43,153.584,USD_JPY,H1,66.82334508421539,0.07145537974926697,0.009744444176187986,0.06171093557307898,153.42685,0.6551744865940403,0.46114285714286246,38.56999579020898,383768 -2024-07-26 02:00:00+00:00,9431,153.585,153.972,153.568,153.921,USD_JPY,H1,59.49306551889076,0.08270340744078908,0.024336236829108206,0.05836717061168087,153.48025,0.6494397484226423,0.40514285714286097,39.85973301215182,393199 -2024-07-26 03:00:00+00:00,5422,153.923,153.923,153.737,153.756,USD_JPY,H1,52.35404896421845,0.07741108261291174,0.03495120598586891,0.04245987662704283,153.55815,0.57693256697075,0.36257142857143215,39.951190850088395,387777 -2024-07-26 04:00:00+00:00,5904,153.754,153.832,153.594,153.68,USD_JPY,H1,50.799451804476895,0.0663198186296654,0.04122492851462821,0.025094890115037197,153.60665,0.5415677315758496,0.34271428571428786,39.16784312094889,381873 -2024-07-26 05:00:00+00:00,7179,153.678,153.809,153.502,153.646,USD_JPY,H1,41.154661016948694,0.0541620497694737,0.043812352765597314,0.010349697003876383,153.67355,0.4471053655284998,0.3310714285714279,39.345546276058556,374694 -2024-07-26 06:00:00+00:00,14923,153.642,153.759,153.543,153.638,USD_JPY,H1,39.5135135135127,0.04338132431189479,0.04372614707485681,-0.0003448227629620215,153.74484999999999,0.28668913567856785,0.31685714285714134,40.779119333872686,359771 -2024-07-26 07:00:00+00:00,13709,153.638,154.174,153.569,153.92,USD_JPY,H1,47.29156853509148,0.05693623941704118,0.046368165543293684,0.010568073873747495,153.8046,0.15907707496502127,0.33892857142856975,37.911024368896385,373480 -2024-07-26 08:00:00+00:00,14776,153.919,154.436,153.864,154.304,USD_JPY,H1,61.4159292035401,0.0975398197482491,0.056602496384284766,0.040937323363964336,153.84359999999998,0.18079485318287844,0.35957142857142593,36.23423532221641,388256 -2024-07-26 09:00:00+00:00,10920,154.304,154.362,154.036,154.208,USD_JPY,H1,56.474820143885324,0.12058205710459902,0.06939840852834761,0.051183648576251406,153.8712,0.1924095412630724,0.37342857142857,34.48911659090831,377336 -2024-07-26 10:00:00+00:00,10391,154.208,154.649,154.2,154.57,USD_JPY,H1,62.957198443580026,0.1661384304509852,0.08874641291287513,0.07739201753811006,153.91745,0.24037043230620972,0.3876428571428566,33.06136635246516,387727 -2024-07-26 11:00:00+00:00,11421,154.568,154.739,154.522,154.613,USD_JPY,H1,63.0721489526769,0.20336762973431632,0.11167065627716338,0.09169697345715294,153.9491,0.28632184686172724,0.3985714285714274,29.744143975639652,399148 -2024-07-26 12:00:00+00:00,17128,154.614,154.729,154.025,154.218,USD_JPY,H1,55.34377127297477,0.19870825447500806,0.12907817591673232,0.06963007855827574,153.9587,0.2921944377704988,0.44171428571428556,25.23062754210697,382020 -2024-07-26 13:00:00+00:00,18859,154.218,154.222,153.671,153.803,USD_JPY,H1,51.56993339676484,0.1596878521553151,0.13520011116444888,0.02448774099086623,153.9471,0.2936076687489611,0.44335714285714445,22.00175169250463,363161 -2024-07-26 14:00:00+00:00,20494,153.808,154.11,153.1,153.501,USD_JPY,H1,43.497065183812225,0.10320533920219077,0.12880115677199727,-0.0255958175698065,153.93275,0.30843217712327864,0.4606428571428601,20.474145623066452,342667 -2024-07-26 15:00:00+00:00,14424,153.502,153.882,153.496,153.871,USD_JPY,H1,54.38972162740912,0.08729219840759583,0.12049936509911699,-0.033207166691521156,153.9303,0.30873325224681253,0.4407857142857178,20.14361746855293,357091 -2024-07-26 16:00:00+00:00,10018,153.87,153.871,153.708,153.786,USD_JPY,H1,47.76267815710986,0.06704922828751592,0.10980933773679678,-0.04276010944928087,153.9244,0.31038539709060015,0.4235714285714331,21.18643596500174,347073 -2024-07-26 17:00:00+00:00,8604,153.785,153.877,153.678,153.734,USD_JPY,H1,49.62121212121227,0.04627710949500852,0.09710289208843914,-0.050825782593430624,153.91415,0.3132495683883448,0.42450000000000493,23.80309949878087,338469 -2024-07-26 18:00:00+00:00,8300,153.734,153.828,153.71,153.734,USD_JPY,H1,50.95473833097599,0.02947528298241764,0.08357737026723484,-0.054102087284817205,153.90564999999998,0.3158352793378372,0.41592857142857603,25.873905850432948,330169 -2024-07-26 19:00:00+00:00,4356,153.732,153.77,153.676,153.761,USD_JPY,H1,52.038284296349,0.018129404284707107,0.0704877770707293,-0.05235837278602219,153.90849999999998,0.3141726812987042,0.4007142857142928,25.895766696327225,334525 -2024-07-26 20:00:00+00:00,1269,153.76,153.806,153.736,153.755,USD_JPY,H1,52.07520397303992,0.008554947706358007,0.058101211197855045,-0.04954626349149704,153.90015,0.31600887311106,0.39028571428572434,24.026631743319545,333256 -2024-07-28 21:00:00+00:00,532,153.738,153.851,153.65,153.68,USD_JPY,H1,45.405819295559326,-0.00502680542717826,0.045475607872848385,-0.050502413300026645,153.90495,0.3116530586045416,0.3614285714285797,28.39932274287824,332724 -2024-07-28 22:00:00+00:00,6055,153.733,154.026,153.695,154.022,USD_JPY,H1,44.513618677042516,0.011671556709529796,0.03871479764018467,-0.027043240930654876,153.91000000000003,0.31274321060525695,0.34528571428572263,32.14059363743354,338779 -2024-07-28 23:00:00+00:00,8527,154.022,154.216,153.984,154.151,USD_JPY,H1,48.90510948905132,0.03491190816467338,0.03795421974508241,-0.0030423115804090323,153.92974999999998,0.3149704873238104,0.33857142857143735,34.74230865294151,347306 -2024-07-29 00:00:00+00:00,16521,154.15,154.354,153.529,153.656,USD_JPY,H1,33.296783625731166,0.01323512473877031,0.033010400743819994,-0.019775276005049684,153.92855,0.31601606803043475,0.36542857142858054,38.85088898782898,330785 -2024-07-29 01:00:00+00:00,18113,153.656,153.837,153.242,153.442,USD_JPY,H1,29.858961128310995,-0.020970162842672835,0.02221428802652143,-0.043184450869194264,153.91834999999998,0.32865535858566663,0.3924285714285795,43.673350170338786,312672 -2024-07-29 02:00:00+00:00,16090,153.443,153.539,153.014,153.42,USD_JPY,H1,34.254143646408764,-0.04928518686980965,0.007914393047255216,-0.05719957991706487,153.90744999999998,0.3417950255107405,0.37964285714286305,49.07282007824211,296582 -2024-07-29 03:00:00+00:00,10675,153.419,153.696,153.332,153.516,USD_JPY,H1,43.52144469525946,-0.06324954829423746,-0.006318395221043318,-0.056931153073194136,153.88725,0.352776039720214,0.3662857142857194,53.751013501961175,307257 -2024-07-29 04:00:00+00:00,11235,153.517,153.609,153.325,153.416,USD_JPY,H1,47.88872329855917,-0.08144670270607435,-0.021344056718049526,-0.060102645988024825,153.84285,0.35344444585511103,0.31442857142857655,55.1017323572128,296022 -2024-07-29 05:00:00+00:00,9708,153.415,153.666,153.305,153.387,USD_JPY,H1,35.52631578947339,-0.09708895527708705,-0.03649303642985703,-0.06059591884723002,153.80180000000001,0.356466518676438,0.3126428571428619,53.80099360875858,286314 -2024-07-29 06:00:00+00:00,14249,153.381,153.45,153.142,153.354,USD_JPY,H1,36.66666666666685,-0.11087033315718031,-0.05136849577532169,-0.05950183738185862,153.74099999999999,0.3204240611083109,0.32300000000000345,53.39351431616467,272065 -2024-07-29 07:00:00+00:00,16833,153.354,153.729,153.236,153.618,USD_JPY,H1,46.834061135370746,-0.09934440034922432,-0.06096367669010222,-0.038380723659122096,153.69125000000003,0.24666232509490862,0.34400000000000425,51.809669233663826,288898 -2024-07-29 08:00:00+00:00,14144,153.616,153.92,153.585,153.688,USD_JPY,H1,48.79074658254412,-0.08359793560967432,-0.06549052847401665,-0.01810740713565767,153.66474999999997,0.2133077526908023,0.35950000000000315,49.98544625144255,303042 -2024-07-29 09:00:00+00:00,12556,153.685,153.778,153.589,153.702,USD_JPY,H1,48.4383271572261,-0.06919146966714607,-0.06623071671264254,-0.002960752954503529,153.6597,0.2110460413476496,0.3662857142857153,48.181208866684244,315598 -2024-07-29 10:00:00+00:00,10575,153.706,153.896,153.604,153.682,USD_JPY,H1,48.08197582764036,-0.05871128729435782,-0.06472683082898559,0.006015543534627771,153.66875,0.20773740379854216,0.38214285714285473,46.17814328036071,305023 -2024-07-29 11:00:00+00:00,10223,153.682,153.84,153.594,153.836,USD_JPY,H1,53.93541876892038,-0.03754634341484575,-0.05929073334615763,0.021744389931311878,153.667,0.20608480622793812,0.38535714285714157,41.8190794471409,315246 -2024-07-29 12:00:00+00:00,15333,153.837,154.037,153.757,153.888,USD_JPY,H1,46.04018912529601,-0.01638809572105515,-0.05071020582113713,0.03432211010008198,153.6721,0.21040159592680535,0.3806428571428557,36.97226316563501,330579 -2024-07-29 13:00:00+00:00,16220,153.889,154.212,153.731,154.175,USD_JPY,H1,50.64864864864867,0.023270224787978577,-0.035914119699314,0.059184344487292574,153.69415,0.238466653279868,0.39842857142856963,33.619316623033185,346799 -2024-07-29 14:00:00+00:00,18173,154.174,154.208,154.006,154.048,USD_JPY,H1,63.225371120107575,0.043945316642208354,-0.01994223243100953,0.06388754907321789,153.70985000000002,0.2512235898457063,0.35392857142856826,29.917084953222904,328626 -2024-07-29 15:00:00+00:00,12981,154.049,154.05,153.873,153.966,USD_JPY,H1,69.4074074074071,0.0531016385605767,-0.005333458232692285,0.058435096793268984,153.7201,0.2575234071941543,0.32407142857142696,26.369910443553334,315645 -2024-07-29 16:00:00+00:00,11675,153.966,154.095,153.934,153.943,USD_JPY,H1,69.35603256846872,0.05783549033637314,0.0073003314811208005,0.05053515885525234,153.7295,0.2622520884273195,0.2980714285714287,24.537436916536898,303970 -2024-07-29 17:00:00+00:00,7319,153.944,154.035,153.89,154.002,USD_JPY,H1,68.4931506849323,0.06559180736488202,0.018958626657873043,0.046633180707008975,153.7456,0.26885417685215574,0.282428571428572,23.2673917001115,311289 -2024-07-29 18:00:00+00:00,7482,154.003,154.056,153.964,153.992,USD_JPY,H1,73.52941176470527,0.07012348814373581,0.029191598955045597,0.040931889188690215,153.7441,0.26731016872835744,0.26871428571428574,23.02159332865207,303807 -2024-07-29 19:00:00+00:00,7172,153.984,154.04,153.962,154.001,USD_JPY,H1,75.49833887043131,0.073592770940337,0.03807183335210388,0.035520937588233124,153.7366,0.25720612252327396,0.24850000000000097,24.471431023768805,310979 -2024-07-29 20:00:00+00:00,2273,154.003,154.058,153.973,154.028,USD_JPY,H1,78.13021702837888,0.07762605209501316,0.04598267710068574,0.03164337499432743,153.7552,0.26442023967109246,0.2325714285714286,27.004714339382627,313252 -2024-07-29 21:00:00+00:00,1277,153.964,154.088,153.954,154.02,USD_JPY,H1,71.3375796178344,0.07926322619522352,0.0526387869195933,0.026624439275630227,153.78410000000002,0.2599355992921619,0.20692857142856877,30.315449759768793,311975 -2024-07-29 22:00:00+00:00,2419,154.028,154.066,153.978,154.021,USD_JPY,H1,69.0721649484531,0.07972239990684216,0.058055509517043066,0.02166689038979909,153.81414999999998,0.25018483165448363,0.18928571428571267,33.461487032680665,314394 -2024-07-29 23:00:00+00:00,6294,154.02,154.026,153.768,153.838,USD_JPY,H1,56.52591170825313,0.06457534341413407,0.05935947629646127,0.005215867117672801,153.83025,0.24014773411496534,0.19421428571428528,34.34598301948374,308100 -2024-07-30 00:00:00+00:00,10689,153.836,154.062,153.618,153.962,USD_JPY,H1,62.216404886562145,0.061863828003453136,0.05986034663785965,0.0020034813655934874,153.85755,0.2208353697133104,0.20507142857143126,34.81158273150599,318789 -2024-07-30 01:00:00+00:00,12272,153.962,154.251,153.852,153.998,USD_JPY,H1,57.87937743190581,0.06190621532553564,0.06026952037539485,0.0016366949501407935,153.8881,0.19279656578802132,0.2160000000000021,35.408107549820535,331061 -2024-07-30 02:00:00+00:00,7884,153.994,154.134,153.952,154.023,USD_JPY,H1,56.743256743256445,0.06322824282489137,0.060861264865294154,0.0023669779595972135,153.92155,0.14811036955331996,0.20900000000000116,35.38078562385452,338945 -2024-07-30 03:00:00+00:00,8688,154.022,154.168,153.977,154.074,USD_JPY,H1,43.398692810457455,0.06761184564831524,0.062211381021898375,0.0054004646264168635,153.94435,0.1332782111572784,0.188285714285716,36.51362634635062,347633 -2024-07-30 04:00:00+00:00,9454,154.076,154.448,154.062,154.44,USD_JPY,H1,69.52191235059814,0.09947236813789573,0.06966357844509785,0.029808789692797877,153.98195,0.1604560851248685,0.20142857142857298,35.75278281337583,357087 -2024-07-30 05:00:00+00:00,11829,154.442,154.772,154.422,154.666,USD_JPY,H1,80.48780487804913,0.14132921774498186,0.08399670630507466,0.0573325114399072,154.03015,0.20929261181177772,0.21378571428571394,36.678369618522105,368916 -2024-07-30 06:00:00+00:00,13968,154.662,155.218,154.599,155.052,USD_JPY,H1,86.69755129053621,0.2033044792007388,0.1078582608842075,0.0954462183165313,154.09865,0.2957050940081043,0.24649999999999953,36.886427098422196,382884 -2024-07-30 07:00:00+00:00,12627,155.047,155.146,154.722,154.896,USD_JPY,H1,77.79850746268627,0.23709929111964811,0.13370646693129562,0.1033928241883525,154.15165,0.3381054452329517,0.2664285714285687,37.981673463145775,370257 -2024-07-30 08:00:00+00:00,9464,154.898,154.916,154.606,154.667,USD_JPY,H1,68.47290640394179,0.24260691537381263,0.15548655661979904,0.08712035875401358,154.1906,0.3507677894224045,0.2819999999999965,38.08585916103558,360793 -2024-07-30 09:00:00+00:00,7444,154.67,154.938,154.666,154.809,USD_JPY,H1,70.61224489795981,0.25548488975672967,0.17548622324718516,0.07999866650954451,154.2223,0.37695456935753624,0.2958571428571385,38.40914463468635,368237 -2024-07-30 10:00:00+00:00,5421,154.81,154.882,154.694,154.735,USD_JPY,H1,67.61335326357873,0.25675982820763465,0.19174094423927507,0.06501888396835959,154.25664999999998,0.3912653259034832,0.303214285714284,37.41811255733023,362816 -2024-07-30 11:00:00+00:00,5349,154.734,154.904,154.726,154.892,USD_JPY,H1,70.2226345083492,0.26735689020526365,0.20686413343247279,0.06049275677279087,154.30295,0.4094284173560728,0.30635714285714194,36.96145858165626,368165 -2024-07-30 12:00:00+00:00,12095,154.892,155.024,154.816,154.942,USD_JPY,H1,70.88435374149749,0.2766012334774075,0.22081155344145972,0.05578968003594778,154.3529,0.42388688907338595,0.31492857142857084,37.52305277861511,380260 -2024-07-30 13:00:00+00:00,18975,154.942,154.943,154.296,154.348,USD_JPY,H1,59.74770642201888,0.23330718637180325,0.22331068002752844,0.00999650634427482,154.3702,0.41579531906929945,0.34271428571428586,38.710674555003656,361285 -2024-07-30 14:00:00+00:00,19068,154.35,154.655,154.35,154.601,USD_JPY,H1,61.63934426229549,0.2169109137235523,0.22203072676673324,-0.005119813043180932,154.40064999999998,0.40888285221284254,0.3329285714285695,41.65794944228354,380353 -2024-07-30 15:00:00+00:00,21472,154.6,154.604,153.646,153.727,USD_JPY,H1,46.218252860731354,0.1318721141989272,0.20399900425317205,-0.07212689005424486,154.38695,0.42716008030022184,0.3728571428571428,41.05166008278092,358881 -2024-07-30 16:00:00+00:00,17274,153.727,153.861,153.139,153.238,USD_JPY,H1,40.30145787002708,0.02473491099070202,0.16814618560067807,-0.14341127460997605,154.34744999999998,0.49347772038641324,0.41142857142857076,42.37795771419068,341607 -2024-07-30 17:00:00+00:00,16552,153.238,153.38,152.982,153.206,USD_JPY,H1,39.22542204567978,-0.0620390791124521,0.12210913265805204,-0.18414821177050414,154.30675,0.5520030391714363,0.4262142857142846,42.977261456575505,325055 -2024-07-30 18:00:00+00:00,11312,153.205,153.444,153.138,153.262,USD_JPY,H1,34.158149542764804,-0.12485016447405428,0.07271727323163078,-0.19756743770568508,154.2688,0.5969433191744663,0.420499999999998,44.397609277533356,336367 -2024-07-30 19:00:00+00:00,7968,153.26,153.319,153.206,153.278,USD_JPY,H1,30.216647662485414,-0.1713619816152061,0.023901422262263404,-0.19526340387746952,154.24079999999998,0.6304092739028672,0.40357142857142697,44.46449373257225,344335 -2024-07-30 20:00:00+00:00,5877,153.278,153.285,152.646,152.764,USD_JPY,H1,18.536853685368243,-0.24685286989824817,-0.030249436169838915,-0.21660343372840926,154.1809,0.7101649104193987,0.4049999999999991,46.285800772769214,338458 -2024-07-30 21:00:00+00:00,845,152.78,152.822,152.664,152.693,USD_JPY,H1,18.98056885384375,-0.30884883228642934,-0.085969315393157,-0.22287951689327234,154.11565000000002,0.7839707483071897,0.3860000000000018,47.523224913803745,337613 -2024-07-30 22:00:00+00:00,9919,152.692,153.144,152.424,152.886,USD_JPY,H1,24.665718349928284,-0.3385055112824489,-0.13647655457101537,-0.2020289567114335,154.05880000000002,0.8308654080574308,0.4152857142857158,48.11133532721754,347532 -2024-07-30 23:00:00+00:00,12627,152.876,152.98,152.414,152.66,USD_JPY,H1,20.144484579049177,-0.37591167845846485,-0.18436357934850528,-0.19154809910995957,153.9881,0.8877188329117747,0.4362857142857166,48.740159448447926,334905 -2024-07-31 00:00:00+00:00,17046,152.659,152.746,152.108,152.379,USD_JPY,H1,19.048870204938908,-0.42335056523785397,-0.23216097652637502,-0.19118958871147895,153.88505,0.9499432933162293,0.4684285714285729,49.495587494489484,317859 -2024-07-31 01:00:00+00:00,13039,152.376,152.53,152.17,152.427,USD_JPY,H1,16.662158506897214,-0.45186421652957165,-0.27610162452701437,-0.17576259200255728,153.7731,0.9843732657410237,0.4814285714285741,50.30396844560618,330898 -2024-07-31 02:00:00+00:00,12899,152.414,153.349,152.338,152.887,USD_JPY,H1,24.981738495251747,-0.43235936535890573,-0.3073531726933927,-0.12500619266551305,153.66485,0.9549331899970718,0.5387857142857168,48.63638513269051,343797 -2024-07-31 03:00:00+00:00,14507,152.886,153.86,151.599,153.588,USD_JPY,H1,40.98243948742258,-0.35623038663135276,-0.3171286154809847,-0.03910177115036806,153.59945,0.909906963138722,0.6540714285714314,48.96426280836192,358304 -2024-07-31 04:00:00+00:00,16957,153.568,153.906,152.414,152.554,USD_JPY,H1,29.509509509509428,-0.37500990031622905,-0.3287048724480336,-0.04630502786819546,153.49380000000002,0.9020662596678791,0.7387142857142907,48.15598116065439,341347 -2024-07-31 05:00:00+00:00,14271,152.548,153.172,152.469,152.878,USD_JPY,H1,40.4499437570301,-0.3596034235700074,-0.3348845826724284,-0.02471884089757903,153.39724999999999,0.8560548356079605,0.7205000000000032,49.872117324323405,355618 -2024-07-31 06:00:00+00:00,20326,152.877,153.064,152.21,152.228,USD_JPY,H1,39.036039947894004,-0.3952866292694637,-0.34696499199183545,-0.04832163727762823,153.27190000000002,0.8331009226719734,0.729928571428575,49.78016367923393,335292 -2024-07-31 07:00:00+00:00,24801,152.229,152.434,150.61,150.924,USD_JPY,H1,30.588635590336764,-0.5227616579027483,-0.382124325174018,-0.1406373327287303,153.0735,0.8970051047138253,0.831785714285717,51.15256230200576,310491 -2024-07-31 08:00:00+00:00,23141,150.924,150.986,150.05,150.926,USD_JPY,H1,29.945054945054494,-0.6165183138643613,-0.4290031229120867,-0.1875151909522746,152.87269999999998,0.9061717102229727,0.8767857142857167,52.41816264158571,333632 -2024-07-31 09:00:00+00:00,15685,150.923,150.946,150.36,150.406,USD_JPY,H1,27.307206068267732,-0.7244300151008076,-0.4880885013498309,-0.23634151375097673,152.6756,0.9929468846702277,0.9105714285714299,52.67252331446072,317947 -2024-07-31 10:00:00+00:00,15621,150.403,150.592,150.144,150.512,USD_JPY,H1,30.979729729729343,-0.7922647666097191,-0.5489237544018086,-0.2433410122079105,152.47115,0.9965976475182546,0.8969285714285726,50.05483245212843,333568 -2024-07-31 11:00:00+00:00,16091,150.512,150.588,150.082,150.191,USD_JPY,H1,29.72447325769815,-0.8619898309929113,-0.6115369697200292,-0.250452861272882,152.29435,1.072814560660303,0.9217857142857143,47.86958164953966,317477 -2024-07-31 12:00:00+00:00,22295,150.191,150.48,149.79,150.336,USD_JPY,H1,29.1734727213328,-0.8952275329342569,-0.6682750823628748,-0.22695245057138214,152.14925,1.1330273780712923,0.9196428571428571,48.16579848727587,339772 -2024-07-31 13:00:00+00:00,20493,150.333,150.356,149.822,149.823,USD_JPY,H1,27.8670619441409,-0.9519895212594349,-0.7250179701421868,-0.2269715511172481,151.9801,1.216417384213394,0.9173571428571421,48.340194076271814,319279 -2024-07-31 14:00:00+00:00,20853,149.824,150.68,149.632,150.435,USD_JPY,H1,35.57863501483672,-0.9367917682804716,-0.7673727297698438,-0.16941903851062778,151.83875,1.223846906269164,0.9466428571428561,47.26151387322608,340132 -2024-07-31 15:00:00+00:00,17480,150.434,150.578,150.278,150.382,USD_JPY,H1,34.84062268346915,-0.9184369274191226,-0.7975855692996997,-0.12085135811942294,151.69395,1.2158939304002736,0.9423571428571417,46.42711550997653,322652 -2024-07-31 16:00:00+00:00,16066,150.382,150.666,150.372,150.561,USD_JPY,H1,32.00804455445525,-0.8793106341241241,-0.8139305822645846,-0.06538005185953955,151.5838,1.2136389647774324,0.891142857142855,49.8560400461463,338718 -2024-07-31 17:00:00+00:00,13007,150.56,150.958,150.544,150.831,USD_JPY,H1,27.150671307806647,-0.8170970352847178,-0.8145638728686113,-0.0025331624161064603,151.4907,1.195352892172764,0.759214285714281,51.70016440406885,351725 -2024-07-31 18:00:00+00:00,26508,150.832,151.265,150.334,150.444,USD_JPY,H1,30.412179725213065,-0.7899143349372366,-0.8096339652823364,0.019719630345099826,151.3686,1.1697739952586423,0.7191428571428499,52.78194365444745,325217 -2024-07-31 19:00:00+00:00,25095,150.448,150.501,149.607,149.794,USD_JPY,H1,23.00420168067204,-0.8114673265745012,-0.8100006375407693,-0.0014666890337318161,151.2253,1.178759521916704,0.7327857142857072,55.42696165829791,300122 -2024-07-31 20:00:00+00:00,6599,149.794,150.293,149.76,149.986,USD_JPY,H1,28.663875142747827,-0.8037898433664168,-0.8087584787058989,0.004968635339482108,151.10565,1.1769390394639154,0.709857142857138,58.2333624355756,306721 -2024-07-31 21:00:00+00:00,662,149.957,149.96,149.855,149.886,USD_JPY,H1,37.18518518518472,-0.7965919309570211,-0.8063251691561234,0.009733238199102323,150.9786,1.1638699239959467,0.5870714285714261,57.11012792853527,306059 -2024-07-31 22:00:00+00:00,5176,149.884,150.198,149.805,150.174,USD_JPY,H1,41.328413284132914,-0.7589002111951686,-0.7968401775639326,0.037939966368763955,150.84295000000003,1.0851786888914094,0.5482857142857134,53.64919744775746,311235 -2024-07-31 23:00:00+00:00,10755,150.176,150.324,149.67,149.789,USD_JPY,H1,42.656510354677174,-0.7514334767812159,-0.7877588374073893,0.03632536062617342,150.653,0.895266323199504,0.5531428571428592,49.76914300105033,300480 -2024-08-01 00:00:00+00:00,20025,149.79,149.898,149.348,149.444,USD_JPY,H1,37.972972972972755,-0.7645414942429056,-0.7831153687744926,0.018573874531586987,150.4975,0.8141126586865564,0.5604285714285717,46.44079546598228,280455 -2024-08-01 01:00:00+00:00,21143,149.44,149.472,148.513,149.176,USD_JPY,H1,38.4317301116934,-0.7874775022913241,-0.7839877954778589,-0.0034897068134651654,150.3124,0.6483643712260133,0.5927857142857148,44.71135236909219,259312 -2024-08-01 02:00:00+00:00,18319,149.175,149.794,149.038,149.769,USD_JPY,H1,44.136504653567634,-0.7491683632717638,-0.77702390903664,0.027855545764876144,150.18945000000002,0.47631131734702953,0.5975000000000007,40.64982958874147,277631 -2024-08-01 03:00:00+00:00,15296,149.771,149.794,149.39,149.568,USD_JPY,H1,47.18107450806989,-0.7266507373929585,-0.7669492747079037,0.04029853731494526,150.12165,0.4625601838293663,0.5882142857142887,36.67503207360427,262335 -2024-08-01 04:00:00+00:00,14265,149.567,149.718,149.34,149.686,USD_JPY,H1,40.704889550756995,-0.6913146973181767,-0.7518223592299583,0.060507661911781585,150.05965,0.43110680991933664,0.5403571428571448,34.631867751045085,276600 -2024-08-01 05:00:00+00:00,16029,149.686,150.052,149.62,149.762,USD_JPY,H1,42.34945705824273,-0.6496888574041293,-0.7313956588647925,0.08170680146066323,150.02745,0.42791470802978193,0.5497857142857144,31.183432695060894,292629 -2024-08-01 06:00:00+00:00,23723,149.759,150.34,149.571,150.027,USD_JPY,H1,43.547607539874015,-0.5885325571021838,-0.7028230385122708,0.11429048141008702,150.00320000000002,0.4124738715562101,0.5837142857142875,25.26073197356041,316352 -2024-08-01 07:00:00+00:00,21504,150.028,150.198,149.78,149.862,USD_JPY,H1,37.98661046367463,-0.5470735462433822,-0.6716731400584931,0.12459959381511088,149.98674999999997,0.4111483116713582,0.5840000000000032,21.661160248988683,294848 -2024-08-01 08:00:00+00:00,19562,149.858,149.99,149.432,149.698,USD_JPY,H1,40.20997375328095,-0.5214395799438023,-0.641626428035555,0.12018684809175273,149.95485000000002,0.40735763090100263,0.5573571428571488,20.323365281329583,275286 -2024-08-01 09:00:00+00:00,15954,149.703,149.971,149.61,149.95,USD_JPY,H1,52.2860492379833,-0.47531109261572624,-0.6083633609515893,0.13305226833586303,149.96120000000002,0.4061823028364306,0.5192857142857191,17.12805167232824,291240 -2024-08-01 10:00:00+00:00,12228,149.952,150.2,149.92,150.033,USD_JPY,H1,50.71147441719645,-0.42713280661664044,-0.5721172500845995,0.14498444346795902,149.94109999999998,0.3911713717602791,0.5012142857142895,13.849271408246446,303468 -2024-08-01 11:00:00+00:00,12410,150.034,150.625,149.973,150.527,USD_JPY,H1,58.66919123613735,-0.34511126850776463,-0.5267160537692325,0.18160478526146784,149.94835,0.4009935391008523,0.5402857142857158,11.813596304676196,315878 -2024-08-01 12:00:00+00:00,19605,150.526,150.868,150.219,150.863,USD_JPY,H1,59.19893190921224,-0.2501130689238096,-0.47139545680014794,0.22128238787633836,149.96345,0.4299207362448338,0.5585714285714302,11.532128288208499,335483 -2024-08-01 13:00:00+00:00,19249,150.864,150.892,150.392,150.552,USD_JPY,H1,60.39226368836846,-0.1976431055013279,-0.41664498654038395,0.21900188103905605,149.9495,0.4040362802633586,0.5475714285714284,11.84316176848539,316234 -2024-08-01 14:00:00+00:00,25260,150.396,150.398,149.834,150.051,USD_JPY,H1,57.93049385941996,-0.1942476286831436,-0.3721655149689359,0.1779178862857923,149.92985,0.3879575770087127,0.548571428571429,11.691296466405419,290974 -2024-08-01 15:00:00+00:00,18687,150.05,150.22,149.874,150.062,USD_JPY,H1,62.408963585434535,-0.1884962137551156,-0.33543165472617187,0.14693544097105626,149.94324999999998,0.38764659363717946,0.5047857142857148,11.85273212719493,309661 -2024-08-01 16:00:00+00:00,16350,150.062,150.138,149.682,149.896,USD_JPY,H1,52.02036271078558,-0.19508417968043545,-0.30736215971702463,0.11227798003658918,149.93875,0.3876465936371638,0.4833571428571446,12.037557642294134,293311 -2024-08-01 17:00:00+00:00,15344,149.898,149.946,149.648,149.746,USD_JPY,H1,52.87839586028457,-0.20998832187623862,-0.28788739214886744,0.07789907027262882,149.93175000000002,0.3899067195875576,0.47578571428571437,12.050966832935215,277967 -2024-08-01 18:00:00+00:00,13813,149.746,149.768,149.534,149.554,USD_JPY,H1,47.91535060012627,-0.23458856636725045,-0.27722762699254405,0.0426390606252936,149.90075,0.3942553106547176,0.46550000000000175,10.908751094903437,264154 -2024-08-01 19:00:00+00:00,12009,149.553,149.841,149.474,149.774,USD_JPY,H1,50.181268882175225,-0.23363903066800162,-0.26850990772763556,0.03487087705963393,149.9,0.3944932792176147,0.4608571428571468,10.665758101178865,276163 -2024-08-01 20:00:00+00:00,5772,149.776,149.784,149.29,149.343,USD_JPY,H1,40.16110471806686,-0.2646143057677932,-0.2677307873356671,0.0031164815678738633,149.89495,0.4012268651870838,0.4412142857142892,12.376167826141968,270391 -2024-08-01 21:00:00+00:00,2178,149.352,149.358,149.304,149.326,USD_JPY,H1,41.94711538461544,-0.2872232614070356,-0.2716292821499408,-0.01559397925709477,149.90245,0.38827329967770197,0.4152142857142889,12.52577143039259,268213 -2024-08-01 22:00:00+00:00,7019,149.322,149.448,148.996,149.311,USD_JPY,H1,43.91318024536022,-0.30286021227644255,-0.27787546817524117,-0.024984744101201384,149.87955,0.40948510348899536,0.4076428571428587,11.128531682729681,261194 -2024-08-01 23:00:00+00:00,12125,149.311,149.312,148.87,149.21,USD_JPY,H1,37.78071334214054,-0.31971696623648427,-0.2862437677874898,-0.03347319844899449,149.86165,0.43107628764387024,0.41342857142857425,11.268703007541179,249069 -2024-08-02 00:00:00+00:00,21647,149.21,149.418,148.938,149.384,USD_JPY,H1,39.596024366784306,-0.31539998468113595,-0.29207501116621903,-0.023324973514916914,149.84655,0.4426858782719578,0.42771428571428977,12.211963902349197,270716 -2024-08-02 01:00:00+00:00,18914,149.388,149.778,149.356,149.498,USD_JPY,H1,31.21577217962789,-0.29932941526104173,-0.2935258919851836,-0.005803523275858147,149.83335,0.4492273219889692,0.41128571428571903,14.24613511857667,289630 -2024-08-02 02:00:00+00:00,13473,149.499,149.684,149.234,149.574,USD_JPY,H1,24.001613553853048,-0.277264673803586,-0.2902736483488641,0.013008974545278107,149.8107,0.45036828202361373,0.39707142857143246,17.621705948700775,303103 -2024-08-02 03:00:00+00:00,10751,149.58,149.65,149.377,149.493,USD_JPY,H1,26.456202756781394,-0.2632793102821438,-0.28487478073552003,0.02159547045337623,149.79225000000002,0.45568304714225866,0.38085714285714645,20.98453118521636,292352 -2024-08-02 04:00:00+00:00,10106,149.492,149.588,149.254,149.263,USD_JPY,H1,30.08088978766513,-0.26766936096728955,-0.28143369678187397,0.013764335814584416,149.7705,0.4705570606712161,0.36442857142857576,23.587862796078213,282246 -2024-08-02 05:00:00+00:00,12505,149.259,149.376,148.892,148.937,USD_JPY,H1,25.468818142171884,-0.29406419428505615,-0.2839597962825104,-0.010104398002545756,149.71985,0.5035792181239719,0.374285714285719,25.07351640346821,269741 -2024-08-02 06:00:00+00:00,18865,148.922,149.294,148.806,148.852,USD_JPY,H1,26.40144665461149,-0.318173374869815,-0.2908025119999713,-0.027370862869843693,149.6608,0.5332922176935597,0.376571428571432,27.730738699244682,250876 -2024-08-02 07:00:00+00:00,19932,148.85,149.226,148.626,149.21,USD_JPY,H1,38.92561983471079,-0.30487802205308867,-0.2936176140105948,-0.011260408042493897,149.59494999999998,0.5010412815009699,0.3981428571428601,30.752471611811814,270808 -2024-08-02 08:00:00+00:00,12989,149.211,149.322,148.834,149.074,USD_JPY,H1,39.84771573604085,-0.3018360445237249,-0.2952613001132208,-0.006574744410504096,149.5055,0.41505972934723023,0.41628571428571653,33.27785024859824,257819 -2024-08-02 09:00:00+00:00,8849,149.074,149.096,148.819,148.888,USD_JPY,H1,30.987124463519507,-0.3108506086300906,-0.2983791618165948,-0.012471446813495823,149.4223,0.35695467791230057,0.40985714285714486,36.4257074248862,248970 -2024-08-02 10:00:00+00:00,9301,148.886,148.96,148.732,148.796,USD_JPY,H1,36.26318432948284,-0.3217098755666541,-0.30304530456660667,-0.018664571000047425,149.35955,0.3508750677035109,0.3908571428571455,37.85639121865396,239669 -2024-08-02 11:00:00+00:00,10514,148.798,149.122,148.792,149.01,USD_JPY,H1,42.77879341864717,-0.3094804137583367,-0.30433232640495267,-0.005148087353384012,149.30694999999997,0.3172718367566884,0.410571428571432,39.08480801785254,250183 -2024-08-02 12:00:00+00:00,26640,149.01,149.112,147.018,147.446,USD_JPY,H1,25.046829007225085,-0.4211356170280851,-0.3276929845295792,-0.09344263249850593,149.18445,0.49887225184590006,0.5278571428571459,42.34690653685704,223543 -2024-08-02 13:00:00+00:00,30452,147.442,148.166,147.064,147.078,USD_JPY,H1,23.376623376623442,-0.533171623954189,-0.3687887124145012,-0.16438291153968787,149.05104999999998,0.668638795951088,0.5750000000000028,45.22352465833648,193091 -2024-08-02 14:00:00+00:00,33203,147.078,147.422,146.546,146.674,USD_JPY,H1,17.997165800661833,-0.6471010125834198,-0.4244511724482849,-0.2226498401351349,148.90705,0.8422140917205345,0.6032857142857162,48.36433591907257,159888 -2024-08-02 15:00:00+00:00,26819,146.672,147.108,146.42,146.982,USD_JPY,H1,21.589882565492573,-0.7044177585170814,-0.4804444896620442,-0.2239732688550372,148.76745,0.9188556655900925,0.6222857142857176,52.545073939204535,186707 -2024-08-02 16:00:00+00:00,21195,146.982,147.459,146.758,146.848,USD_JPY,H1,19.616584930896067,-0.7519859468295635,-0.5347527810955481,-0.2172331657340154,148.64270000000002,1.002192286401929,0.6402142857142893,54.12951069481032,165512 -2024-08-02 17:00:00+00:00,16904,146.85,146.96,146.75,146.839,USD_JPY,H1,19.93656547349339,-0.7814027787344457,-0.5840827806233277,-0.197319998111118,148.51835,1.065254467981611,0.6357142857142902,55.31852881509555,148608 -2024-08-02 18:00:00+00:00,11989,146.84,146.902,146.439,146.494,USD_JPY,H1,19.430337822918887,-0.8230666467085541,-0.6318795538403731,-0.19118709286818103,148.3775,1.1386395159768052,0.6449285714285752,57.52144038649793,136619 -2024-08-02 19:00:00+00:00,9470,146.494,146.695,146.446,146.586,USD_JPY,H1,22.630966239813844,-0.8389905700875886,-0.6733017570898162,-0.16568881299777238,148.2463,1.1877809074849033,0.62814285714286,58.653934325663165,146089 -2024-08-02 20:00:00+00:00,3690,146.586,146.62,146.507,146.546,USD_JPY,H1,22.870588235294164,-0.8450963155260354,-0.7076606687770601,-0.13743564674897524,148.1044,1.2139451301117972,0.6013571428571457,59.8777569837488,142399 -2024-08-04 21:00:00+00:00,339,146.5,146.649,146.431,146.485,USD_JPY,H1,15.532506956741813,-0.8451153888407532,-0.7351516127897988,-0.10996377605095442,147.95374999999999,1.2188437089374944,0.574071428571431,60.76836754285234,142060 -2024-08-04 22:00:00+00:00,9355,146.491,146.567,145.989,146.32,USD_JPY,H1,15.419387242591668,-0.848661780881173,-0.7578536464080736,-0.09080813447309932,147.79105,1.2083159866765838,0.5805000000000027,62.94892375122779,132705 -2024-08-04 23:00:00+00:00,18557,146.316,146.346,145.282,145.594,USD_JPY,H1,13.578062804069035,-0.899683463751785,-0.7862196098768159,-0.11346385387496905,147.5961,1.2335402154495838,0.6367142857142868,65.03540096266936,114148 -2024-08-05 00:00:00+00:00,28171,145.592,145.944,145.184,145.518,USD_JPY,H1,13.626276076342748,-0.935467591770049,-0.8160692062554625,-0.11939838551458648,147.40885,1.2513045939399199,0.6747142857142856,67.31429761624477,85977 -2024-08-05 01:00:00+00:00,25083,145.518,145.594,144.768,145.112,USD_JPY,H1,8.514261387824703,-0.9852304545561879,-0.8499014559156076,-0.13532899864058023,147.2176,1.2969244347479327,0.7101428571428556,70.94648488651379,60894 -2024-08-05 02:00:00+00:00,19445,145.11,145.554,145.042,145.138,USD_JPY,H1,13.481012658228238,-1.0109166809036765,-0.8821045009132213,-0.12881217999045513,147.0319,1.3163352196528089,0.5971428571428561,72.17891367571964,80339 -2024-08-05 03:00:00+00:00,19468,145.138,145.158,144.168,144.368,USD_JPY,H1,11.959573273442217,-1.080945300624336,-0.9218726608554443,-0.15907263976889163,146.7898,1.3397176685967975,0.5891428571428544,73.92069836032195,60871 -2024-08-05 04:00:00+00:00,21384,144.366,144.435,142.198,143.169,USD_JPY,H1,9.777369749828168,-1.2191392870080335,-0.9813259860859622,-0.2378133009220713,146.49455,1.455501305382701,0.6863571428571394,75.27041512165674,39487 -2024-08-05 05:00:00+00:00,26152,143.166,143.559,142.418,142.656,USD_JPY,H1,2.5865848312148785,-1.3544406804766425,-1.0559489249640983,-0.29849175551254414,146.18295,1.5780595837831848,0.7187142857142804,75.26441968139177,13335 -2024-08-05 06:00:00+00:00,25777,142.652,143.114,141.688,142.762,USD_JPY,H1,4.940449933833591,-1.4365549838440757,-1.1320701367400938,-0.3044848471039818,145.88125,1.628198548435388,0.7704999999999964,77.53380921858319,39112 -2024-08-05 07:00:00+00:00,23709,142.76,143.994,142.736,143.48,USD_JPY,H1,17.966812893381714,-1.4272422017661768,-1.1911045497453103,-0.23613765202086645,145.60475000000002,1.535842983843455,0.8453571428571394,77.85524963848539,62821 -2024-08-05 08:00:00+00:00,18323,143.478,143.571,142.008,142.402,USD_JPY,H1,15.76305220883539,-1.4896752961294908,-1.2508186990221466,-0.2388565971073442,145.35255,1.6288964451171482,0.9239285714285675,78.19394633123306,44498 -2024-08-05 09:00:00+00:00,19923,142.406,142.584,141.753,142.293,USD_JPY,H1,14.18321374937419,-1.5303089136946824,-1.3067167419566539,-0.22359217173802848,145.11329999999998,1.7114417775262045,0.9654999999999977,78.81979917602145,24575 -2024-08-05 10:00:00+00:00,15299,142.294,142.47,141.912,142.38,USD_JPY,H1,15.513245033112412,-1.5377647802919796,-1.352926349623719,-0.18483843066826067,144.8986,1.7735609258949976,0.9972857142857114,79.77084859283734,39874 -2024-08-05 11:00:00+00:00,16693,142.38,142.97,142.24,142.31,USD_JPY,H1,15.490163663415217,-1.5316659318392283,-1.388674266066821,-0.1429916657724073,144.665,1.792289978878212,1.0338571428571401,79.89838112298412,23181 -2024-08-05 12:00:00+00:00,20343,142.293,142.48,141.84,142.25,USD_JPY,H1,15.763795423956765,-1.5142190741416357,-1.413783227681784,-0.1004358464598516,144.43509999999998,1.7924317472045326,1.0382857142857103,79.41158760953215,2838 -2024-08-05 13:00:00+00:00,22051,142.254,142.994,142.104,142.736,USD_JPY,H1,24.947405329593025,-1.4445245950436174,-1.4199315011541507,-0.024593093889466733,144.22995,1.7367527919918424,1.0258571428571384,77.50360620913234,24889 -2024-08-05 14:00:00+00:00,24610,142.805,143.86,142.547,142.662,USD_JPY,H1,24.95615573482968,-1.3793619735845368,-1.411817595640228,0.03245562205569108,144.03834999999998,1.684421321049689,1.0653571428571402,74.34903753569098,279 -2024-08-05 15:00:00+00:00,19157,142.666,143.994,142.337,143.966,USD_JPY,H1,41.318181818181834,-1.208566620890565,-1.3711674006902954,0.16260077979973042,143.90735,1.574128372838403,1.1247142857142844,70.4839859823871,19436 -2024-08-05 16:00:00+00:00,19235,143.968,144.898,143.902,144.186,USD_JPY,H1,42.99381807477179,-1.0434299015902582,-1.305619900870288,0.26218999928002984,143.78935,1.449435725945886,1.1592857142857136,66.04804107011478,38671 -2024-08-05 17:00:00+00:00,14680,144.187,144.609,143.912,144.019,USD_JPY,H1,47.18139234372481,-0.9154802793283068,-1.227591976561892,0.3121116972335851,143.66604999999998,1.3058283708720262,1.1383571428571437,60.549859626221355,23991 -2024-08-05 18:00:00+00:00,13219,144.02,144.172,143.397,143.464,USD_JPY,H1,52.659095006309634,-0.8490755293586574,-1.151888687121245,0.30281315776258766,143.52325000000002,1.1468057181696367,1.033928571428573,55.34254475374861,10772 -2024-08-05 19:00:00+00:00,10803,143.451,143.87,143.45,143.744,USD_JPY,H1,60.237109522017384,-0.7650367591048735,-1.074518301517971,0.30948154241309744,143.43075,1.04069065501564,0.9824285714285749,49.97700232883738,21575 -2024-08-05 20:00:00+00:00,9197,143.746,144.298,143.713,144.198,USD_JPY,H1,62.68103143765472,-0.6542595258962933,-0.9904665463936355,0.3362070204973422,143.36475000000002,0.9381573134074483,0.9223571428571457,45.018812715746456,30772 -2024-08-05 21:00:00+00:00,474,144.195,144.211,144.064,144.079,USD_JPY,H1,55.91546513924574,-0.569505174796717,-0.9062742720742519,0.3367690972775349,143.31310000000002,0.8622662856283644,0.8430000000000035,41.183675944109886,30298 -2024-08-05 22:00:00+00:00,7511,144.075,144.875,143.627,144.77,USD_JPY,H1,75.32078699743417,-0.4414895985814269,-0.813317337375687,0.3718277387942601,143.29469999999998,0.8243685366226676,0.8205000000000037,39.23490082172729,37809 -2024-08-05 23:00:00+00:00,14852,144.769,145.832,144.766,145.806,USD_JPY,H1,81.34927717294323,-0.2535173995685227,-0.7013573498142541,0.4478399502457314,143.3666,0.9723370868630733,0.837285714285717,38.320989038836736,52661 -2024-08-06 00:00:00+00:00,21593,145.806,146.375,144.848,145.044,USD_JPY,H1,71.21694807263475,-0.16414297128696376,-0.593914474108796,0.4297715028218323,143.46035,1.0402983516710953,0.9065000000000022,37.45692550667575,31068 -2024-08-06 01:00:00+00:00,14116,145.044,145.494,144.368,144.808,USD_JPY,H1,69.38237119801353,-0.11107590672125411,-0.4973467606312877,0.3862708539100336,143.56795,1.0637525174515898,0.9347857142857176,36.40123522317414,16952 -2024-08-06 02:00:00+00:00,11548,144.825,145.36,144.308,145.31,USD_JPY,H1,72.21899506244549,-0.028187740389455485,-0.40351495658292125,0.37532721619346576,143.69535000000002,1.1135620075688164,0.9642142857142915,35.9729885207416,28500 -2024-08-06 03:00:00+00:00,10704,145.31,145.922,145.123,145.352,USD_JPY,H1,70.30425333747283,0.0404247858293445,-0.31472700810046816,0.35515179392981266,143.78895,1.1716672994030308,0.957714285714293,36.68515788862987,39204 -2024-08-06 04:00:00+00:00,10181,145.351,145.647,145.108,145.519,USD_JPY,H1,71.85921958683991,0.10704229456683834,-0.2303731475670069,0.3374154421338452,143.9448,1.1847038092932423,0.9024285714285766,38.13213252709458,49385 -2024-08-06 05:00:00+00:00,19401,145.531,146.15,145.114,145.869,USD_JPY,H1,67.04891596488062,0.18593587212964735,-0.14711134362767606,0.33304721575732343,144.1236,1.1921156072367711,0.858071428571433,40.43645921269018,68786 -2024-08-06 06:00:00+00:00,19096,145.857,146.293,145.431,145.64,USD_JPY,H1,63.005366726296636,0.2273603460363347,-0.07221700569487391,0.2995773517312086,144.2866,1.1636964878157512,0.8485000000000034,43.35713147103742,49690 -2024-08-06 07:00:00+00:00,23383,145.644,145.938,145.173,145.296,USD_JPY,H1,61.071614357551375,0.22978282164942243,-0.011817040226014645,0.24159986187543708,144.4359,1.0856899770567008,0.853357142857145,46.3670480331666,26307 -2024-08-06 08:00:00+00:00,22840,145.299,145.38,144.475,144.922,USD_JPY,H1,63.05048335123512,0.1992274071394604,0.03039184924708037,0.16883555789238003,144.5695,0.9596295063406428,0.862642857142859,48.389291743142266,3467 -2024-08-06 09:00:00+00:00,19702,144.922,144.922,144.5,144.752,USD_JPY,H1,59.20379839298762,0.15945632845341606,0.05620474508834751,0.10325158336506855,144.67030000000003,0.8573293354597279,0.8627857142857148,50.57373432749453,-16235 -2024-08-06 10:00:00+00:00,19841,144.751,145.123,144.351,144.895,USD_JPY,H1,56.74733785091965,0.13788689269136967,0.07254117460895194,0.06534571808241772,144.78195,0.7157316811767401,0.8761428571428566,51.15456435760376,3606 -2024-08-06 11:00:00+00:00,20101,144.894,145.462,144.894,145.154,USD_JPY,H1,60.13195098963231,0.14007737016908095,0.08604841372097774,0.05402895644810321,144.84135,0.6933991236678769,0.9062142857142825,53.00003283363829,23707 -2024-08-06 12:00:00+00:00,23221,145.146,145.204,144.484,144.602,USD_JPY,H1,48.373983739837335,0.09616304488613991,0.08807133995401017,0.00809170493212974,144.86214999999999,0.6787913619990174,0.8684999999999974,51.503423639954875,486 -2024-08-06 13:00:00+00:00,26426,144.596,144.718,144.048,144.403,USD_JPY,H1,33.79533379533359,0.044786715449248504,0.07941441505305785,-0.03462769960380935,144.88135000000003,0.6588243336415331,0.840214285714282,47.088373182928535,-25940 -2024-08-06 14:00:00+00:00,26594,144.404,144.994,144.272,144.503,USD_JPY,H1,42.6233978729203,0.012001423549151014,0.06593181675227648,-0.05393039320312547,144.9333,0.5770721107620648,0.7827142857142836,42.83939170201512,654 -2024-08-06 15:00:00+00:00,23078,144.504,145.211,144.504,145.112,USD_JPY,H1,53.7623762376238,0.03475936951289782,0.05969732730440075,-0.02493795779150293,145.0017,0.505296171586075,0.7528571428571423,39.854871337242756,23732 -2024-08-06 16:00:00+00:00,17365,145.12,145.422,145.016,145.372,USD_JPY,H1,50.816219062664715,0.07293429162677967,0.06234472016887653,0.010589571457903138,145.06040000000002,0.47425480600588676,0.7067142857142841,36.689030164910264,41097 -2024-08-06 17:00:00+00:00,15425,145.378,145.388,145.052,145.337,USD_JPY,H1,49.802163017673244,0.09922023582851125,0.06971982330080348,0.02950041252770777,145.1233,0.4172383011747546,0.673642857142856,32.5149088208149,25672 -2024-08-06 18:00:00+00:00,13057,145.338,145.369,145.006,145.006,USD_JPY,H1,43.5145385587863,0.0922793632136063,0.07423173128336405,0.018047631930242253,145.13510000000002,0.4099949806738487,0.6610714285714282,28.787261876762134,12615 -2024-08-06 19:00:00+00:00,16112,145.012,145.078,144.732,144.738,USD_JPY,H1,35.398915569326164,0.06441082354993455,0.07226754973667815,-0.007856726186743601,145.0817,0.3869157530614358,0.6117857142857142,25.809428797836752,-3497 -2024-08-06 20:00:00+00:00,9514,144.734,144.822,144.164,144.334,USD_JPY,H1,33.868577075099026,0.009614550895491902,0.0597369499684409,-0.050122399072949,145.0462,0.4215760653955384,0.597214285714287,24.396420127993768,-13011 -2024-08-06 21:00:00+00:00,1250,144.315,144.65,144.303,144.558,USD_JPY,H1,40.60590631364562,-0.015557623416668775,0.04467803529141897,-0.060235658708087746,145.0337,0.43257346193101726,0.5673571428571458,23.0780255530175,-11761 -2024-08-06 22:00:00+00:00,6640,144.545,144.744,144.308,144.564,USD_JPY,H1,44.971910112359495,-0.03462348507525803,0.02881773121808357,-0.0634412162933416,144.9964,0.43960070395105794,0.5338571428571461,20.624226041110518,-5121 -2024-08-06 23:00:00+00:00,10097,144.571,144.763,144.382,144.74,USD_JPY,H1,49.83174425126191,-0.03512667030548755,0.01602885091336935,-0.0511555212188569,144.9658,0.4348193332849915,0.530928571428575,18.230389786983757,4976 -2024-08-07 00:00:00+00:00,19926,144.74,145.259,144.548,144.73,USD_JPY,H1,47.59685406350105,-0.0359183206106195,0.00563941660857158,-0.04155773721919108,144.92635,0.4174316552548923,0.5265714285714316,15.408288388991862,-14950 -2024-08-07 01:00:00+00:00,22440,144.728,147.498,144.565,146.742,USD_JPY,H1,65.31045121480885,0.12437219063875204,0.029385971414607675,0.09498621922414437,144.97,0.5467908288305013,0.6955000000000037,14.884534272411953,7490 -2024-08-07 02:00:00+00:00,15002,146.74,146.956,146.342,146.838,USD_JPY,H1,73.63636363636316,0.2561966972798473,0.0747481165876556,0.1814485806921917,145.0299,0.6747080381980586,0.6879285714285734,16.081640675266943,22492 -2024-08-07 03:00:00+00:00,12304,146.842,147.372,146.632,147.13,USD_JPY,H1,78.2707858179553,0.37985183271339906,0.1357688598128043,0.24408297290059477,145.1216,0.8214499632189641,0.692928571428575,20.577233032857528,34796 -2024-08-07 04:00:00+00:00,12086,147.138,147.908,147.11,147.622,USD_JPY,H1,79.90412272291444,0.5116517042614817,0.21094542870253977,0.3007062755589419,145.2566,0.9912374190980279,0.6983571428571439,24.783774049214475,46882 -2024-08-07 05:00:00+00:00,19480,147.62,147.817,146.844,146.972,USD_JPY,H1,67.69406392694049,0.5572310713802153,0.28020255723807486,0.27702851414214047,145.36759999999998,1.0540657324800944,0.7172857142857144,27.98934484914334,27402 -2024-08-07 06:00:00+00:00,19537,146.972,147.14,146.442,146.584,USD_JPY,H1,61.25557206537865,0.5556396231526719,0.3352899704209943,0.22034965273167761,145.45204999999999,1.081511587143585,0.7381428571428553,29.659645391603483,7865 -2024-08-07 07:00:00+00:00,21772,146.586,146.945,146.088,146.688,USD_JPY,H1,62.387676508343944,0.556356982824525,0.37950337290170044,0.1768536099228245,145.52875,1.1131926524852136,0.7753571428571401,31.646368014426113,29637 -2024-08-07 08:00:00+00:00,20343,146.688,147.232,146.626,147.203,USD_JPY,H1,69.48731594819922,0.5916613873215226,0.4219349757856649,0.1697264115358577,145.65879999999999,1.1505318495419974,0.7927142857142826,34.04909097789352,49980 -2024-08-07 09:00:00+00:00,20011,147.204,147.641,147.09,147.578,USD_JPY,H1,74.72144846796635,0.642493483297045,0.466046677287941,0.176446806009104,145.81754999999998,1.1866141781824182,0.8073571428571386,35.816502105156594,69991 -2024-08-07 10:00:00+00:00,16670,147.579,147.61,147.044,147.194,USD_JPY,H1,74.98252969951038,0.6443648578271848,0.5017103133957898,0.14265454443139503,145.9521,1.1822705585665756,0.8007857142857091,37.55944739356902,53321 -2024-08-07 11:00:00+00:00,14655,147.194,147.512,146.989,147.204,USD_JPY,H1,74.01088929219569,0.6392855659881036,0.5292253639142526,0.11006020207385103,146.0567,1.1964898706197518,0.8133571428571368,39.36955416933231,67976 -2024-08-07 12:00:00+00:00,16660,147.208,147.233,146.866,146.996,USD_JPY,H1,71.28851540616222,0.6114281656470553,0.5456659242608132,0.06576224138624209,146.1379,1.2026675132130102,0.8084285714285642,42.36521700887278,51316 -2024-08-07 13:00:00+00:00,18654,146.994,147.341,146.924,147.222,USD_JPY,H1,71.53766053453629,0.6006632147741868,0.556665382363488,0.04399783241069888,146.23215,1.2104358621114772,0.8109999999999928,45.41588456565914,69970 -2024-08-07 14:00:00+00:00,18324,147.22,147.402,146.654,147.274,USD_JPY,H1,71.91592005513426,0.5895321197624241,0.5632387298432752,0.02629338991914898,146.34555,1.1956667584818326,0.8136428571428505,48.149159177353035,88294 -2024-08-07 15:00:00+00:00,16079,147.275,147.692,147.256,147.422,USD_JPY,H1,58.629441624365455,0.5858991294282703,0.5677708097602743,0.018128319667995996,146.47975000000002,1.1556974597148666,0.6352857142857086,45.491111841837665,104373 -2024-08-07 16:00:00+00:00,17025,147.422,147.5,147.066,147.184,USD_JPY,H1,54.238118569328755,0.5573901013381999,0.5656946680758594,-0.008304566737659558,146.62225,1.047872424673792,0.6224285714285672,43.06391868735348,87348 -2024-08-07 17:00:00+00:00,17023,147.184,147.406,146.966,147.036,USD_JPY,H1,48.80650076180811,0.5168956764660493,0.5559348697538975,-0.03903919328784822,146.74615,0.9309229305385868,0.600999999999995,38.870852412571644,70325 -2024-08-07 18:00:00+00:00,19954,147.035,147.048,146.684,146.849,USD_JPY,H1,39.361409303605605,0.46436134727602507,0.537620165258323,-0.07325881798229794,146.8604,0.7764111363207143,0.5699999999999973,36.3905619596745,50371 -2024-08-07 19:00:00+00:00,16300,146.85,147.196,146.79,146.854,USD_JPY,H1,48.02543507362797,0.41830896574793996,0.5137579253562464,-0.09544895960830646,146.9661,0.5953312125221363,0.5294999999999968,33.85823920571301,66671 -2024-08-07 20:00:00+00:00,5733,146.853,146.914,146.708,146.71,USD_JPY,H1,52.29591836734698,0.36597380682141534,0.4842011016492802,-0.11822729482786487,147.0651,0.2904977397740553,0.4943571428571403,31.753928093513007,60938 -2024-08-07 21:00:00+00:00,1249,146.678,146.764,146.647,146.742,USD_JPY,H1,51.01047904191618,0.32335254205762,0.4520313897309482,-0.1286788476733282,147.06509999999997,0.2904977397740553,0.4414999999999988,29.738062846688518,62187 -2024-08-07 22:00:00+00:00,5004,146.744,146.786,146.358,146.527,USD_JPY,H1,35.75042158516011,0.2691238868488597,0.4154498891545305,-0.14632600230567083,147.04955,0.31090114772368205,0.42878571428571327,28.852423949545287,57183 -2024-08-07 23:00:00+00:00,14129,146.522,146.536,145.566,146.287,USD_JPY,H1,21.14438980777865,0.20442481069559904,0.3732448734627442,-0.16882006276714517,147.00740000000002,0.3536284698782499,0.4587142857142855,29.937144685022936,43054 -2024-08-08 00:00:00+00:00,25787,146.3,146.546,145.432,146.009,USD_JPY,H1,22.19615204129549,0.12922838566728956,0.3244415759036533,-0.19521319023636374,146.92675000000003,0.38831550855190244,0.4978571428571428,29.987450230327266,17267 -2024-08-08 01:00:00+00:00,23065,146.011,146.628,145.954,146.38,USD_JPY,H1,33.46709470304964,0.09843656109336507,0.2792405729415957,-0.18080401184823064,146.89715,0.4068075032594264,0.5086428571428557,30.107227388384523,40332 -2024-08-08 02:00:00+00:00,17722,146.377,146.878,146.348,146.598,USD_JPY,H1,42.04636290967246,0.09058044142898325,0.24150854663907323,-0.15092810521008998,146.89785,0.4062519667615698,0.5202857142857117,29.518319858210788,58054 -2024-08-08 03:00:00+00:00,15763,146.598,146.726,146.308,146.388,USD_JPY,H1,33.22606596942906,0.06664096942492392,0.2065350311962434,-0.13989406177131947,146.88285000000002,0.4197231261234861,0.5203571428571406,29.290206319445275,42291 -2024-08-08 04:00:00+00:00,18151,146.388,146.393,145.91,146.142,USD_JPY,H1,28.880597014925783,0.027501599969582458,0.17072834495091121,-0.14322674498132876,146.8298,0.4435063163053595,0.5014285714285701,30.143239823519462,24140 -2024-08-08 05:00:00+00:00,20955,146.14,146.406,145.942,145.97,USD_JPY,H1,23.15088757396518,-0.017197354446608415,0.1331432050714073,-0.15034055951801573,146.7494,0.4464732442887491,0.5034285714285696,34.796038016158114,3185 -2024-08-08 06:00:00+00:00,22809,145.97,146.346,145.88,146.2,USD_JPY,H1,31.75074183976281,-0.03367434318354867,0.09977969542041612,-0.1334540386039648,146.6997,0.4496898463003214,0.5057142857142846,38.71465200729257,25994 -2024-08-08 07:00:00+00:00,22330,146.204,146.228,145.626,145.873,USD_JPY,H1,29.773913043478473,-0.07228538173038146,0.06536667999025661,-0.13765206172063807,146.63315,0.46919497402990795,0.5172857142857136,43.05212806007306,3664 -2024-08-08 08:00:00+00:00,19059,145.874,146.278,145.754,146.197,USD_JPY,H1,39.17662682602965,-0.0758662765265683,0.03712008868689163,-0.11298636521345992,146.5932,0.47068713485497987,0.5287142857142848,45.0419730771157,22723 -2024-08-08 09:00:00+00:00,17548,146.196,146.492,146.019,146.13,USD_JPY,H1,38.22381262199076,-0.08315197727540635,0.013065675494432036,-0.09621765276983839,146.5386,0.4570455925339428,0.5334999999999975,47.635368883367285,5175 -2024-08-08 10:00:00+00:00,16727,146.128,146.305,146.016,146.108,USD_JPY,H1,39.80352303523038,-0.08966753225212187,-0.007480966054878748,-0.08218656619724313,146.4803,0.4319812495587652,0.5394285714285709,50.808464814566946,-11552 -2024-08-08 11:00:00+00:00,17287,146.108,146.304,145.941,146.161,USD_JPY,H1,40.228725193407655,-0.08952253934498344,-0.02388928071289969,-0.06563325863208375,146.41725000000002,0.3756535182314618,0.556999999999998,54.57954888857945,5735 -2024-08-08 12:00:00+00:00,24929,146.168,147.298,145.948,147.064,USD_JPY,H1,57.3340617317673,-0.01635455300069566,-0.022382335170458883,0.006027782169763223,146.41125,0.36352483079119347,0.6228571428571408,53.32780338124076,30664 -2024-08-08 13:00:00+00:00,23474,147.064,147.549,146.92,147.13,USD_JPY,H1,62.087754516776265,0.04642212636306908,-0.00862144286375329,0.055043569226822374,146.41595,0.3725236092436056,0.5984999999999994,51.184538969272985,54138 -2024-08-08 14:00:00+00:00,19072,147.128,147.436,146.937,147.294,USD_JPY,H1,69.04832493329391,0.10815972841317034,0.01473479139163144,0.0934249370215389,146.4382,0.4110475193066484,0.5545714285714273,49.48986317272128,73210 -2024-08-08 15:00:00+00:00,16914,147.294,147.306,147.018,147.094,USD_JPY,H1,61.14928169893795,0.13934263909729339,0.03965636093276383,0.09968627816452955,146.4502,0.4270181309743294,0.527000000000001,48.345751317400016,56296 -2024-08-08 16:00:00+00:00,12658,147.094,147.263,147.078,147.249,USD_JPY,H1,60.369544440904335,0.17455041653815329,0.06663517205384173,0.10791524448431156,146.47715,0.46001170176401274,0.5023571428571459,47.682518533762256,68954 -2024-08-08 17:00:00+00:00,13011,147.248,147.426,147.151,147.364,USD_JPY,H1,66.03153745072251,0.20931946819081304,0.095172031281236,0.11414743690957704,146.50825,0.49829275634215064,0.4921428571428582,47.092874425083394,81965 -2024-08-08 18:00:00+00:00,10126,147.36,147.438,147.202,147.215,USD_JPY,H1,68.20495419070235,0.2222887312441344,0.12059537127381569,0.10169335997031871,146.54265,0.5228008853856165,0.47450000000000003,48.429793719937706,71839 -2024-08-08 19:00:00+00:00,12922,147.214,147.272,147.094,147.151,USD_JPY,H1,70.79957731595633,0.2248112167560805,0.14143854037026865,0.08337267638581186,146.58585,0.5360922224983771,0.4540714285714285,48.06925599598721,58917 -2024-08-08 20:00:00+00:00,4128,147.152,147.298,147.102,147.282,USD_JPY,H1,69.74452554744539,0.23467571433090484,0.1600859751623959,0.07458973916850895,146.6495,0.5395585427211833,0.4347857142857135,48.214311780839544,63045 -2024-08-08 21:00:00+00:00,570,147.253,147.286,147.2,147.219,USD_JPY,H1,77.18093699515293,0.2347043011564267,0.17500964036120206,0.05969466079522465,146.69144999999997,0.5500166958923638,0.3979285714285713,49.93256657475488,62475 -2024-08-08 22:00:00+00:00,5668,147.232,147.322,147.208,147.282,USD_JPY,H1,74.49209932279861,0.23707764637691753,0.18742324156434517,0.049654404812572356,146.72565,0.564962623330464,0.3686428571428572,52.12718517564332,68143 -2024-08-08 23:00:00+00:00,13419,147.281,147.818,147.252,147.694,USD_JPY,H1,80.54687499999949,0.2691014621892407,0.2037588856893243,0.0653425764999164,146.79095,0.5983699326394336,0.37528571428571567,54.69940589365199,81562 -2024-08-09 00:00:00+00:00,22206,147.694,147.776,147.202,147.49,USD_JPY,H1,75.2005835156819,0.27485115876942245,0.21797734030534394,0.05687381846407852,146.85835,0.5973434412575473,0.39564285714285824,57.05525623483892,59356 -2024-08-09 01:00:00+00:00,16834,147.492,147.621,147.08,147.088,USD_JPY,H1,64.9951472015526,0.2441553237963774,0.22321293700355063,0.020942386792826756,146.91424999999998,0.5610442214233211,0.4083571428571438,59.09570425017815,42522 -2024-08-09 02:00:00+00:00,14006,147.089,147.506,147.024,147.491,USD_JPY,H1,58.24006175221942,0.2494716317372081,0.22846467595028214,0.021006955786925963,146.9788,0.5486728101548278,0.34635714285714414,62.995699329579416,56528 -2024-08-09 03:00:00+00:00,11383,147.492,147.57,147.148,147.232,USD_JPY,H1,51.83189655172416,0.2301328800471083,0.2287983167696474,0.0013345632774608984,147.04675,0.48497247612969957,0.3315714285714283,64.4199285957541,45145 -2024-08-09 04:00:00+00:00,14039,147.231,147.26,146.82,146.889,USD_JPY,H1,43.16571042861975,0.18499701612984154,0.22003805664168624,-0.0350410405118447,147.08135,0.44412151901939473,0.32735714285714274,62.49646876596211,31106 -2024-08-09 05:00:00+00:00,19277,146.887,147.11,146.718,147.016,USD_JPY,H1,48.65051903114182,0.15765698581137144,0.2075618424756233,-0.049904856664251845,147.12565,0.38440579911475564,0.33478571428571513,59.651534576943575,50383 -2024-08-09 06:00:00+00:00,15424,147.018,147.216,146.888,147.202,USD_JPY,H1,49.195480999657704,0.14927768016804066,0.19590501001410676,-0.0466273298460661,147.18035,0.30069783307208964,0.3450000000000009,57.78575209347452,65807 -2024-08-09 07:00:00+00:00,18001,147.204,147.216,146.92,147.205,USD_JPY,H1,47.16981132075489,0.1412508432090931,0.18497417665310403,-0.04372333344401094,147.23255,0.1813692002915232,0.34650000000000397,55.06870320647191,83808 -2024-08-09 08:00:00+00:00,18845,147.204,147.324,146.919,147.209,USD_JPY,H1,49.887387387387385,0.1336714029339987,0.17471362190928297,-0.04104221897528426,147.2398,0.1771254683868122,0.35857142857143337,50.354901285122764,102653 -2024-08-09 09:00:00+00:00,15296,147.211,147.29,147.142,147.237,USD_JPY,H1,51.63622526636195,0.12844339242863612,0.16545957601315361,-0.0370161835845175,147.24515000000002,0.17524036867805176,0.35642857142857615,46.68540303829662,117949 -2024-08-09 10:00:00+00:00,13890,147.236,147.271,147.04,147.142,USD_JPY,H1,47.29938271604911,0.11530528285970831,0.15542871738246455,-0.04012343452275624,147.23755,0.17630311062031598,0.35892857142857587,41.993207083945485,104059 -2024-08-09 11:00:00+00:00,17734,147.142,147.156,146.824,147.016,USD_JPY,H1,46.177024482109175,0.0936465898030292,0.1430722918665775,-0.049425702063548294,147.23365,0.1804594355167404,0.3765000000000031,36.386996948463704,86325 -2024-08-09 12:00:00+00:00,19699,147.022,147.036,146.508,146.778,USD_JPY,H1,41.09540636042364,0.056624575701022195,0.12578274863346645,-0.06915817293244425,147.21009999999998,0.20711499468858569,0.40607142857143075,31.91161471421585,66626 -2024-08-09 13:00:00+00:00,18347,146.783,146.795,146.516,146.607,USD_JPY,H1,29.007338740826768,0.013332404245630869,0.10329267975589933,-0.08996027551026846,147.17225,0.24348649043581858,0.38557142857143034,30.255521283433165,48279 -2024-08-09 14:00:00+00:00,18349,146.604,146.638,146.267,146.543,USD_JPY,H1,30.665577786851827,-0.02584331303989984,0.0774654811967395,-0.10330879423663934,147.13865,0.280786166013681,0.3710714285714301,29.17426701932265,29930 -2024-08-09 15:00:00+00:00,17820,146.544,146.736,146.446,146.498,USD_JPY,H1,35.89866156787764,-0.05983177173322929,0.050006030610745746,-0.10983780234397503,147.106,0.3151387329805342,0.35314285714285837,27.5405345752697,12110 -2024-08-09 16:00:00+00:00,13006,146.496,146.669,146.478,146.614,USD_JPY,H1,25.70637119113556,-0.07652550123106039,0.02469972424238452,-0.10122522547344491,147.07260000000002,0.33052691581340177,0.3323571428571443,27.428777790293786,25116 -2024-08-09 17:00:00+00:00,12792,146.614,146.768,146.6,146.696,USD_JPY,H1,33.538083538083356,-0.0821912380030767,0.003321531793292278,-0.08551276979636899,147.04645,0.3389170795547087,0.31421428571428783,27.6340962813269,37908 -2024-08-09 18:00:00+00:00,10627,146.698,146.722,146.595,146.616,USD_JPY,H1,39.99999999999999,-0.0920753196563453,-0.015757838496635236,-0.07631748115971007,147.01315,0.347173288253808,0.2918571428571458,29.86124667426532,27281 -2024-08-09 19:00:00+00:00,5801,146.616,146.674,146.558,146.646,USD_JPY,H1,35.41009463722348,-0.0963768044883011,-0.03188163169496841,-0.0644951727933327,146.96075000000002,0.31675856233678384,0.27214285714285935,32.62282194799994,33082 -2024-08-09 20:00:00+00:00,3832,146.645,146.706,146.592,146.624,USD_JPY,H1,23.822463768114787,-0.10040358827984619,-0.04558602301194396,-0.05481756526790223,146.91745,0.2993133325197484,0.2568571428571431,35.583260892145006,29250 -2024-08-11 21:00:00+00:00,121,146.641,146.939,146.625,146.767,USD_JPY,H1,32.39549839228148,-0.09100686802216273,-0.05467019201398772,-0.036336676008175015,146.9014,0.2982913446400906,0.25821428571428434,37.155879573028116,29371 -2024-08-11 22:00:00+00:00,7980,146.792,147.008,146.738,146.992,USD_JPY,H1,42.593856655289386,-0.06465893200234518,-0.056667940011659215,-0.007990991990685967,146.87645,0.26543974927966696,0.24857142857142783,38.90069775260069,37351 -2024-08-11 23:00:00+00:00,8567,146.99,147.126,146.922,147.075,USD_JPY,H1,44.67105263157858,-0.03665802563924103,-0.05266595713717558,0.01600793149793455,146.8686,0.2565439122619829,0.25257142857142867,39.3484544158272,45918 -2024-08-12 00:00:00+00:00,10825,147.076,147.076,146.801,146.86,USD_JPY,H1,41.40243902439041,-0.03145323546141299,-0.04842341280202307,0.016970177340610085,146.86714999999998,0.25650449359508215,0.2557142857142866,40.502551943720235,35093 -2024-08-12 01:00:00+00:00,11257,146.862,147.0,146.703,146.968,USD_JPY,H1,48.520345252774206,-0.018401582353874346,-0.04241904671239333,0.02401746435851898,146.86475,0.25526000670676324,0.25321428571428684,40.369088601818234,46350 -2024-08-12 02:00:00+00:00,10128,146.968,146.988,146.845,146.939,USD_JPY,H1,55.697098372258075,-0.010279613880982197,-0.035991160146111104,0.025711546265128907,146.85160000000002,0.24347406642988048,0.2257142857142875,39.50626454425609,36222 -2024-08-12 03:00:00+00:00,10520,146.938,147.227,146.882,147.204,USD_JPY,H1,69.80756469807699,0.017340499468218695,-0.025324828223245145,0.04266532769146384,146.85155,0.24339776298047985,0.2304285714285734,36.74423309970918,46742 -2024-08-12 04:00:00+00:00,8813,147.205,147.214,147.028,147.127,USD_JPY,H1,69.21052631579053,0.032640126742165876,-0.013731837230162944,0.04637196397232882,146.84744999999998,0.23768322012534676,0.21721428571428752,35.76678319141291,37929 -2024-08-12 05:00:00+00:00,11976,147.126,147.226,147.092,147.202,USD_JPY,H1,72.70967741935658,0.05023795293411126,-0.000937879197308103,0.051175832131419366,146.8457,0.2347751667417637,0.20607142857142996,35.38375296075071,49905 -2024-08-12 06:00:00+00:00,13539,147.195,147.284,147.152,147.228,USD_JPY,H1,71.02739726027565,0.06552698538720847,0.012355093719595213,0.053171891667613255,146.85,0.24118763163868262,0.20185714285714443,35.006981814335624,63444 -2024-08-12 07:00:00+00:00,17128,147.228,147.324,147.09,147.22,USD_JPY,H1,68.90331890332016,0.07612064915662131,0.025108204807000434,0.05101244434962088,146.8602,0.25262008082187626,0.20657142857143032,33.91384077218593,46316 -2024-08-12 08:00:00+00:00,13284,147.218,147.446,147.194,147.362,USD_JPY,H1,75.75966850828802,0.09488069172061842,0.03906270218972403,0.05581798953089438,146.8894,0.27534808587027304,0.21550000000000175,34.10943090402912,59600 -2024-08-12 09:00:00+00:00,11616,147.362,147.387,147.209,147.323,USD_JPY,H1,73.23266986959678,0.10538635821126263,0.05232743339403176,0.053058924817230874,146.9252,0.28313481998379375,0.21992857142857197,34.99625043097809,47984 -2024-08-12 10:00:00+00:00,9735,147.325,147.44,147.288,147.42,USD_JPY,H1,75.97911227154148,0.12015420109469233,0.06589278693416388,0.054261414160528446,146.96904999999998,0.2886843978301043,0.22264285714285847,35.32105178198013,57719 -2024-08-12 11:00:00+00:00,12608,147.42,147.67,147.388,147.574,USD_JPY,H1,76.15035644847838,0.14264007000795687,0.08124224354892248,0.06139782645903438,147.02285,0.2964369596125935,0.2202857142857145,37.38211552489638,70327 -2024-08-12 12:00:00+00:00,11320,147.58,147.74,147.522,147.72,USD_JPY,H1,74.86338797814336,0.17027839955528634,0.09904947475019527,0.07122892480509108,147.07815,0.31849320817889426,0.21657142857142933,39.195013008224755,81647 -2024-08-12 13:00:00+00:00,19961,147.719,148.226,147.672,147.778,USD_JPY,H1,74.4266851980554,0.19461864749629854,0.11816330929941593,0.0764553381968826,147.13225,0.34124661166378706,0.24157142857142894,42.724078251386764,101608 -2024-08-12 14:00:00+00:00,20816,147.776,147.944,147.662,147.878,USD_JPY,H1,88.44410876132955,0.21944797397438265,0.1384202422344093,0.08102773173997335,147.19535000000002,0.3570738202810131,0.24207142857142724,47.11245755674737,122424 -2024-08-12 15:00:00+00:00,19557,147.878,147.895,147.236,147.545,USD_JPY,H1,68.62491930277619,0.209836215813624,0.15270343695025224,0.05713277886337176,147.2403,0.34047893508330107,0.2679285714285718,49.58032783493989,102867 -2024-08-12 16:00:00+00:00,15437,147.548,147.578,147.28,147.358,USD_JPY,H1,62.272993555946684,0.18499696123396348,0.15916214180699448,0.025834819426968997,147.277,0.30862018894594284,0.2790000000000004,51.947850302842326,87430 -2024-08-12 17:00:00+00:00,14860,147.356,147.357,147.09,147.182,USD_JPY,H1,49.32014833127255,0.14938789327285917,0.15720729210016743,-0.007819398827308255,147.29775,0.2856198936640506,0.27342857142857163,51.53530127901411,72570 -2024-08-12 18:00:00+00:00,13314,147.183,147.316,147.074,147.299,USD_JPY,H1,55.18697225572975,0.12911995805237098,0.15158982529060813,-0.022469867238237157,147.3131,0.2764247113141759,0.2774285714285704,49.033331150041,85884 -2024-08-12 19:00:00+00:00,11320,147.3,147.324,147.044,147.185,USD_JPY,H1,49.49911608721285,0.10267505201863969,0.14180687063621444,-0.039131818617574754,147.3186,0.272504447040262,0.2878571428571429,46.592888630592036,74564 -2024-08-12 20:00:00+00:00,5683,147.184,147.281,147.15,147.198,USD_JPY,H1,49.10926365795721,0.08182305951905278,0.12981010841278212,-0.047987048893729345,147.3355,0.2522981735835755,0.28778571428571403,43.941601095907416,80247 -2024-08-12 21:00:00+00:00,1081,147.206,147.218,147.162,147.2,USD_JPY,H1,49.404052443384664,0.06471311599918295,0.1167907099300623,-0.05207759393087935,147.3471,0.23952208990306859,0.27507142857142647,42.64659659915427,81328 -2024-08-12 22:00:00+00:00,5380,147.202,147.242,147.122,147.138,USD_JPY,H1,42.991239048811146,0.04562454924149506,0.10255747779234886,-0.0569329285508538,147.35705,0.22539356800700572,0.2656428571428527,40.13716753674504,75948 -2024-08-12 23:00:00+00:00,7350,147.14,147.228,146.917,147.028,USD_JPY,H1,41.16237267824988,0.02137425278755245,0.08632083279138959,-0.06494658000383714,147.34825,0.234918098771644,0.27514285714285336,36.655289880706775,68598 -2024-08-13 00:00:00+00:00,17271,147.028,147.308,147.006,147.268,USD_JPY,H1,45.80573951434918,0.021276450690749016,0.07331195637126148,-0.05203550568051246,147.3553,0.22999292889354148,0.2858571428571395,32.99239089231922,85869 -2024-08-13 01:00:00+00:00,14047,147.27,147.516,147.27,147.325,USD_JPY,H1,42.74052478134031,0.02550436698879821,0.06375043849476883,-0.03824607150597062,147.36145,0.2273067657640203,0.28342857142856864,29.434894249981596,99916 -2024-08-13 02:00:00+00:00,11173,147.324,147.398,147.231,147.379,USD_JPY,H1,39.4947627849658,0.0328338812736888,0.05756712705055283,-0.024733245776864025,147.36899999999997,0.22513831999582146,0.27978571428571036,26.3567459100016,111089 -2024-08-13 03:00:00+00:00,9509,147.38,147.51,147.311,147.485,USD_JPY,H1,41.232794733693176,0.046658043391232695,0.055385310318688805,-0.00872726692745611,147.38225,0.22370113397366576,0.2544285714285662,24.814357474518932,120598 -2024-08-13 04:00:00+00:00,11907,147.486,147.798,147.436,147.717,USD_JPY,H1,45.53521907931307,0.07546434655009193,0.059401117564969436,0.016063228985122496,147.4,0.23576839655653045,0.2601428571428528,20.393198131302494,132505 -2024-08-13 05:00:00+00:00,10684,147.716,147.826,147.604,147.653,USD_JPY,H1,53.52020860495439,0.0920679818278245,0.06593449041754045,0.02613349141028405,147.41649999999998,0.24157193539974292,0.2289285714285642,18.556375561465195,121821 -2024-08-13 06:00:00+00:00,12685,147.65,147.952,147.553,147.888,USD_JPY,H1,66.75094816687657,0.12277375896192666,0.07730234412641769,0.04547141483550897,147.43990000000002,0.2635917696466912,0.23614285714284985,16.701632440760886,134506 -2024-08-13 07:00:00+00:00,15313,147.89,147.948,147.766,147.858,USD_JPY,H1,73.53760445682403,0.14303869820989235,0.09044961494311263,0.05258908326677972,147.45409999999998,0.27842827664596026,0.23007142857142274,18.07580688285075,119193 -2024-08-13 08:00:00+00:00,13700,147.854,147.894,147.668,147.846,USD_JPY,H1,70.54845980465734,0.15632845177211152,0.10362538230891241,0.05270306946319911,147.4604,0.28608176963984794,0.22892857142856624,18.79176167231163,105493 -2024-08-13 09:00:00+00:00,10973,147.845,147.922,147.704,147.894,USD_JPY,H1,78.02371541501893,0.16878819086764452,0.11665794402065884,0.05213024684698568,147.46620000000001,0.29392795389036774,0.22449999999999395,20.053514147854237,116466 -2024-08-13 10:00:00+00:00,13688,147.896,147.92,147.532,147.532,USD_JPY,H1,60.34696406443607,0.1477490896932636,0.12287617315517979,0.024872916538083822,147.44889999999998,0.2781748597635086,0.24285714285713514,20.607594601298878,102778 -2024-08-13 11:00:00+00:00,16236,147.533,147.616,147.312,147.35,USD_JPY,H1,54.180602006688964,0.11506319458865732,0.1213135774418753,-0.006250382853217981,147.43915,0.27804662137320263,0.2605714285714222,19.51764912552497,86542 -2024-08-13 12:00:00+00:00,20113,147.35,147.512,147.076,147.406,USD_JPY,H1,57.4944071588363,0.09261056230340614,0.11557297441418149,-0.02296241211077535,147.44155,0.2775159501802159,0.283142857142853,19.151801092969322,106655 -2024-08-13 13:00:00+00:00,23475,147.406,147.472,146.847,147.078,USD_JPY,H1,51.24626121635117,0.047798835443984444,0.10201814662014208,-0.054219311176157636,147.43635,0.2835441624828443,0.3055714285714239,19.363155983593067,83180 -2024-08-13 14:00:00+00:00,19867,147.08,147.176,146.897,147.0,USD_JPY,H1,42.73318872017383,0.005922994338249055,0.08279911616376348,-0.07687612182551443,147.4214,0.2986473716682815,0.30392857142856705,19.854328548619527,63313 -2024-08-13 15:00:00+00:00,15333,147.0,147.096,146.948,146.971,USD_JPY,H1,40.25330396475859,-0.029266601905163725,0.060385972549978045,-0.08965257445514177,147.4107,0.31113545869440073,0.2967857142857103,21.12603538973442,47980 -2024-08-13 16:00:00+00:00,12993,146.97,146.971,146.706,146.738,USD_JPY,H1,33.934837092732764,-0.07509017045020983,0.03329074394994047,-0.1083809144001503,147.3877,0.34305164560405493,0.3037857142857113,22.596185804723547,34987 -2024-08-13 17:00:00+00:00,11702,146.738,146.913,146.71,146.902,USD_JPY,H1,35.801266439356766,-0.09705347719690849,0.00722189972057068,-0.10427537691747917,147.3728,0.3577883231509783,0.3040714285714269,22.38058772576073,46689 -2024-08-13 18:00:00+00:00,13677,146.901,146.904,146.646,146.68,USD_JPY,H1,24.620655898189227,-0.1308645753352664,-0.02039539529059674,-0.11046918004466967,147.3499,0.3870665521096759,0.29664285714285654,26.477189959776215,33012 -2024-08-13 19:00:00+00:00,12234,146.68,146.858,146.594,146.835,USD_JPY,H1,30.83411433926949,-0.1434987453828569,-0.045016065309048774,-0.09848268007380812,147.34025,0.39777206839297324,0.2996428571428587,30.729117317232884,45246 -2024-08-13 20:00:00+00:00,9529,146.836,146.902,146.792,146.858,USD_JPY,H1,23.2049947970863,-0.14992724048698847,-0.06599830034463672,-0.08392894014235175,147.31975,0.4120021556840502,0.2790000000000004,35.52032906040127,54775 -2024-08-13 21:00:00+00:00,974,146.789,146.874,146.751,146.849,USD_JPY,H1,23.46133613887403,-0.1539731869020784,-0.08359327765612506,-0.07037990924595333,147.29595,0.42521938297384876,0.27478571428571286,38.82333080614161,53801 -2024-08-13 22:00:00+00:00,4294,146.862,146.888,146.736,146.83,USD_JPY,H1,23.375262054507388,-0.15690407726256694,-0.09825543757741345,-0.05864863968515349,147.26850000000002,0.43712945207010545,0.26949999999999974,42.774326714742635,49507 -2024-08-13 23:00:00+00:00,7112,146.83,147.016,146.78,146.948,USD_JPY,H1,26.08695652173894,-0.14799917281837338,-0.10820418462560545,-0.03979498819276793,147.24165,0.4396164925234435,0.2707857142857141,45.36850418854347,56619 -2024-08-14 00:00:00+00:00,14993,146.948,147.149,146.918,147.097,USD_JPY,H1,37.677053824362446,-0.12744975568608652,-0.11205329883770167,-0.015396456848384851,147.21065000000002,0.4259810070804394,0.2595714285714296,47.51346397279342,71612 -2024-08-14 01:00:00+00:00,13419,147.096,147.189,146.751,146.869,USD_JPY,H1,36.72004417448923,-0.1280854003182128,-0.11525971913380391,-0.012825681184408896,147.17145,0.4191504534217796,0.2691428571428572,50.75871987180998,58193 -2024-08-14 02:00:00+00:00,18593,146.87,146.903,146.074,146.463,USD_JPY,H1,28.181397501156326,-0.15951121420019376,-0.12411001814708189,-0.03540119605311187,147.1002,0.41199011226422044,0.29721428571428377,54.9141948787791,39600 -2024-08-14 03:00:00+00:00,15863,146.464,146.906,146.333,146.778,USD_JPY,H1,43.016759776535935,-0.15718658160972154,-0.13072533083960983,-0.026461250770111716,147.0462,0.37670407200678163,0.2934999999999986,58.55386469649758,55463 -2024-08-14 04:00:00+00:00,10499,146.776,147.074,146.756,146.869,USD_JPY,H1,46.96899583526141,-0.1463147289350104,-0.13384321045868994,-0.01247151847632047,146.99735,0.32768779665541153,0.296285714285714,60.99433863280404,65962 -2024-08-14 05:00:00+00:00,8511,146.868,147.1,146.775,147.086,USD_JPY,H1,52.44785014899977,-0.11881895001397424,-0.1308383583697468,0.01201940835577256,146.95695,0.2525075245839212,0.3089285714285706,62.52366701051026,74473 -2024-08-14 06:00:00+00:00,15753,147.088,147.317,146.908,147.192,USD_JPY,H1,60.21602160216048,-0.08746677051729534,-0.12216404079925652,0.03469727028196118,146.93995,0.2212675148532769,0.3192142857142853,61.5224373627776,90226 -2024-08-14 07:00:00+00:00,14101,147.192,147.424,147.109,147.408,USD_JPY,H1,61.12576956904148,-0.044675555578066906,-0.1066663437550186,0.061990788176951694,146.94285,0.22722450635274227,0.3272142857142849,59.389234330568684,104327 -2024-08-14 08:00:00+00:00,14625,147.409,147.502,147.102,147.114,USD_JPY,H1,59.249786871270295,-0.034093543240174995,-0.09215178365204987,0.05805824041187488,146.92825,0.20410391438224154,0.33735714285714175,54.337296014012644,89702 -2024-08-14 09:00:00+00:00,11449,147.114,147.164,147.03,147.102,USD_JPY,H1,56.05991829323647,-0.026371527382991644,-0.07899573239823822,0.052624205015246575,146.92945,0.20509881436914837,0.3280714285714258,49.031299173054485,78253 -2024-08-14 10:00:00+00:00,10961,147.102,147.152,146.843,146.87,USD_JPY,H1,50.24875621890549,-0.038528107239812925,-0.07090220736655316,0.03237410012674023,146.92295,0.2048050355899011,0.34228571428571236,43.707557655225585,67292 -2024-08-14 11:00:00+00:00,10812,146.87,146.973,146.83,146.894,USD_JPY,H1,50.92707045735509,-0.04569889650380787,-0.0658615451940041,0.020162648690196225,146.91910000000001,0.20457784510604532,0.34371428571428453,38.31556360739123,78104 -2024-08-14 12:00:00+00:00,20146,146.894,147.585,146.528,147.317,USD_JPY,H1,58.601200989049744,-0.017052661351641518,-0.05609976842553158,0.039047107073890065,146.94805000000002,0.21812055448137146,0.40835714285714175,32.98609646136276,98250 -2024-08-14 13:00:00+00:00,23425,147.318,147.446,146.916,146.962,USD_JPY,H1,50.228161668839334,-0.0227337858181329,-0.04942657190405185,0.02669278608591895,146.95105,0.2178663218168562,0.42935714285714255,27.95356567701995,74825 -2024-08-14 14:00:00+00:00,22422,146.965,147.014,146.576,146.764,USD_JPY,H1,44.65832531280078,-0.04272060657316956,-0.04808537883787539,0.0053647722647058305,146.95525000000004,0.21312409894340528,0.4441428571428584,25.24992802000989,52403 -2024-08-14 15:00:00+00:00,15163,146.764,146.889,146.638,146.87,USD_JPY,H1,50.01669449081811,-0.04943711164821707,-0.04835572539994373,-0.001081386248273336,146.95700000000002,0.2122265422482632,0.4307857142857167,22.085551097309324,67566 -2024-08-14 16:00:00+00:00,11657,146.868,146.974,146.822,146.947,USD_JPY,H1,59.0772693173296,-0.04799349469391245,-0.04828327925873748,0.0002897845648250283,146.96145,0.21097080734181067,0.3824285714285744,20.065431306435503,79223 -2024-08-14 17:00:00+00:00,10884,146.946,147.266,146.935,147.211,USD_JPY,H1,58.27915869980926,-0.025255692297321275,-0.043677761866454244,0.01842206956913297,146.97955,0.2162774715692771,0.3651428571428588,19.140622855074906,90107 -2024-08-14 18:00:00+00:00,10649,147.21,147.268,147.166,147.246,USD_JPY,H1,57.366158655725165,-0.004361337800872889,-0.03581447705333797,0.03145313925246508,147.00035,0.2210882830884136,0.3497142857142868,18.897131947742345,100756 -2024-08-14 19:00:00+00:00,7111,147.245,147.38,147.204,147.342,USD_JPY,H1,55.25020508613627,0.019716704471846924,-0.024708240748300993,0.04442494522014792,147.02005000000003,0.23338954893185535,0.3390714285714296,18.880283743944204,107867 -2024-08-14 20:00:00+00:00,4692,147.343,147.441,147.294,147.318,USD_JPY,H1,52.67402376910031,0.03644204580263022,-0.012478183438114753,0.048920229240744975,147.03109999999998,0.24228667225137412,0.3203571428571418,20.34981002932839,103175 -2024-08-14 21:00:00+00:00,282,147.27,147.292,147.221,147.252,USD_JPY,H1,46.464188576609736,0.04386569447146371,-0.0012094078561990605,0.04507510232766277,147.05025,0.2439305066550965,0.3029285714285704,21.599459322315532,102893 -2024-08-14 22:00:00+00:00,2656,147.254,147.314,147.149,147.29,USD_JPY,H1,54.51282051282023,0.05221338850577695,0.009475151416196141,0.042738237089580806,147.0916,0.20634166855578584,0.28614285714285514,22.785162151963778,105549 -2024-08-14 23:00:00+00:00,5893,147.288,147.411,147.222,147.275,USD_JPY,H1,54.42908346134163,0.05696199906250854,0.01897252094545862,0.03798947811704992,147.11645000000001,0.1962679357498451,0.29007142857142704,24.56882322790676,99656 -2024-08-15 00:00:00+00:00,12801,147.276,147.359,147.154,147.232,USD_JPY,H1,60.260770975056644,0.056603081418217016,0.0264986330400103,0.030104448378206715,147.1346,0.18882361575479048,0.2826428571428567,26.22582812315207,86855 -2024-08-15 01:00:00+00:00,14262,147.232,147.618,147.202,147.524,USD_JPY,H1,65.50196850393704,0.07897027606821894,0.03699296164565203,0.04197731442256691,147.1565,0.20737849955407303,0.30214285714285644,28.649505581359836,101117 -2024-08-15 02:00:00+00:00,11709,147.52,147.589,147.417,147.468,USD_JPY,H1,54.53453453453402,0.091127248787501,0.04781981907402183,0.04330742971347917,147.1703,0.21873730934248115,0.23892857142856933,29.111767107809133,89408 -2024-08-15 03:00:00+00:00,8461,147.468,147.476,147.339,147.407,USD_JPY,H1,66.22902990518006,0.09474735848166915,0.0572053269555513,0.037542031526117854,147.17024999999998,0.21868022188976538,0.2108571428571407,30.3670732297721,80947 -2024-08-15 04:00:00+00:00,8799,147.408,147.421,147.236,147.272,USD_JPY,H1,69.41896024464772,0.08573465401437375,0.0629111923673158,0.022823461647057952,147.17815000000002,0.21939396785232856,0.1927857142857111,32.508459527467984,72148 -2024-08-15 05:00:00+00:00,8388,147.272,147.351,147.056,147.14,USD_JPY,H1,60.1199400299843,0.06716647069652026,0.0637622480331567,0.003404222663363571,147.18005,0.218863686183875,0.195928571428567,33.52624461516944,63760 -2024-08-15 06:00:00+00:00,10304,147.14,147.337,147.108,147.166,USD_JPY,H1,58.534684333592814,0.053927392932422435,0.061795277013009846,-0.00786788408058741,147.19485,0.20645001299800156,0.20142857142856688,32.07301026974286,74064 -2024-08-15 07:00:00+00:00,11877,147.166,147.267,147.098,147.216,USD_JPY,H1,50.233863423760305,0.046928942912899174,0.05882201019298772,-0.011893067280088543,147.21095,0.19392930744982914,0.18985714285713787,29.506256292705626,85941 -2024-08-15 08:00:00+00:00,11044,147.216,147.395,147.206,147.337,USD_JPY,H1,53.939393939393064,0.0505634456849009,0.05717029729137035,-0.006606851606469455,147.21195,0.19455549194475974,0.19607142857142484,26.835789381290663,96985 -2024-08-15 09:00:00+00:00,9412,147.337,147.45,147.321,147.376,USD_JPY,H1,51.54826958105607,0.055945880099585565,0.0569254138530134,-0.0009795337534278317,147.23264999999998,0.1884915954391191,0.1927142857142822,23.962762152545032,106397 -2024-08-15 10:00:00+00:00,8641,147.375,147.386,147.203,147.234,USD_JPY,H1,46.54605263157884,0.04819769190484635,0.055179869463379994,-0.006982177558533642,147.25615000000002,0.15293214000328104,0.19528571428571087,22.512428262728754,97756 -2024-08-15 11:00:00+00:00,10545,147.232,147.332,147.182,147.22,USD_JPY,H1,48.62542955326416,0.04046110352544474,0.05223611627579295,-0.011775012750348209,147.27365,0.12363923527206168,0.20092857142856854,21.48586255827712,87211 -2024-08-15 12:00:00+00:00,20470,147.219,149.162,147.186,148.958,USD_JPY,H1,79.12011173184335,0.1725824533304774,0.07630538368672984,0.09627706964374755,147.3742,0.3851571927544613,0.3302857142857119,24.414919054986918,107681 -2024-08-15 13:00:00+00:00,23061,148.96,149.327,148.868,149.08,USD_JPY,H1,80.37697744866998,0.2838617735100968,0.11781666165140323,0.16604511185869356,147.46765,0.5393483665490815,0.3495714285714269,26.736893724834918,130742 -2024-08-15 14:00:00+00:00,20000,149.079,149.154,148.782,149.037,USD_JPY,H1,80.37697744866998,0.364381334636505,0.1671295962484236,0.1972517383880814,147.5572,0.6399170669740399,0.36149999999999644,28.317350809864497,110742 -2024-08-15 15:00:00+00:00,12940,149.036,149.036,148.865,148.914,USD_JPY,H1,74.80371163454582,0.4135020012211328,0.21640407724296545,0.19709792397816733,147.6358,0.705296473663916,0.34399999999999614,29.296710909315454,97802 -2024-08-15 16:00:00+00:00,8705,148.912,149.054,148.852,149.044,USD_JPY,H1,77.39916550764903,0.45764495081058953,0.2646522519564903,0.19299269885409925,147.7221,0.76724029720663,0.34614285714285337,32.275428175073564,106507 -2024-08-15 17:00:00+00:00,8020,149.044,149.19,148.958,149.097,USD_JPY,H1,79.46304044630288,0.4912424759782539,0.30997029676084303,0.18127217921741084,147.81435000000002,0.8170437902811001,0.35292857142856754,35.63180470167848,114527 -2024-08-15 18:00:00+00:00,7528,149.095,149.114,148.985,149.01,USD_JPY,H1,80.81560283687826,0.5050269475372033,0.3489816269161151,0.15604532062108822,147.90035,0.8488495790590375,0.3489285714285667,37.88715502032501,106999 -2024-08-15 19:00:00+00:00,5753,149.01,149.052,148.968,149.047,USD_JPY,H1,84.9908256880722,0.5130230212938045,0.381789905791653,0.1312331155021515,147.98895,0.8722961517110938,0.33385714285713924,42.70602870311368,112752 -2024-08-15 20:00:00+00:00,3977,149.048,149.4,149.02,149.286,USD_JPY,H1,86.07896528250393,0.5325068623134541,0.41193329709601323,0.12057356521744089,148.09165000000002,0.8989915563538448,0.3446428571428543,48.04331693477383,116729 -2024-08-15 21:00:00+00:00,223,149.316,149.348,149.291,149.306,USD_JPY,H1,85.93535075653251,0.5432989672455051,0.4382064311259116,0.10509253611959346,148.18075000000002,0.9276221369297154,0.33699999999999924,53.86328541535225,116952 -2024-08-15 22:00:00+00:00,4280,149.304,149.315,149.034,149.262,USD_JPY,H1,83.99858707170475,0.542052907380338,0.4589757263767969,0.08307718100354106,148.27045,0.9417045281806622,0.3435714285714267,58.90372062288834,112672 -2024-08-15 23:00:00+00:00,5294,149.258,149.268,149.15,149.236,USD_JPY,H1,83.00212916962211,0.5328253344674181,0.47374564799492114,0.05907968647249695,148.36190000000002,0.9422487044447331,0.34278571428571275,63.88360159110492,107378 -2024-08-16 00:00:00+00:00,13561,149.236,149.278,148.909,149.156,USD_JPY,H1,84.86937590711025,0.5131419045844439,0.4816248993128257,0.03151700527161816,148.4561,0.9214993445904625,0.35607142857142754,67.28472094974776,93817 -2024-08-16 01:00:00+00:00,12337,149.156,149.232,148.842,148.924,USD_JPY,H1,78.6482851378606,0.47336552043583424,0.47997302353742743,-0.006607503101593193,148.5453,0.872435737326878,0.3732142857142833,70.7710233340231,81480 -2024-08-16 02:00:00+00:00,11708,148.928,149.0,148.742,148.878,USD_JPY,H1,46.879875195007614,0.43313769216629794,0.4706059572632016,-0.03746826509690365,148.6309,0.8118663294027842,0.25049999999999834,66.99588824122527,69772 -2024-08-16 03:00:00+00:00,9029,148.878,148.961,148.79,148.935,USD_JPY,H1,44.042728019720826,0.4012311293663231,0.4567309916838259,-0.05549986231750281,148.71685,0.7421944187604967,0.229928571428571,64.68613748201913,78801 -2024-08-16 04:00:00+00:00,7412,148.936,149.012,148.834,148.864,USD_JPY,H1,43.05220883534194,0.36599685789209957,0.4385841649254807,-0.07258730703338112,148.7932,0.6675674300476947,0.21607142857142897,61.52706669509049,71389 -2024-08-16 05:00:00+00:00,8018,148.862,149.06,148.848,148.923,USD_JPY,H1,50.38103302286256,0.33892730778671876,0.4186527934977283,-0.07972548571100957,148.87055,0.5783829977460775,0.21900000000000017,58.378477246177745,79407 -2024-08-16 06:00:00+00:00,10349,148.924,149.096,148.86,149.064,USD_JPY,H1,50.83892617449583,0.32510441459550066,0.3999431177172828,-0.07483870312178215,148.96205,0.4321118854598482,0.22142857142857103,55.049005984470114,89756 -2024-08-16 07:00:00+00:00,10875,149.058,149.063,148.898,149.017,USD_JPY,H1,46.627318718380764,0.30682033115968466,0.3813185604057632,-0.07449822924607852,149.0519,0.13659656302259301,0.21664285714285622,52.69703571681805,78881 -2024-08-16 08:00:00+00:00,12345,149.017,149.055,148.658,148.714,USD_JPY,H1,39.44365192582086,0.264827726403297,0.35802039360526994,-0.09319266720197295,149.03969999999998,0.15507149447262658,0.23578571428571543,50.74621807492188,66536 -2024-08-16 09:00:00+00:00,12199,148.716,148.77,148.6,148.68,USD_JPY,H1,36.88348820586196,0.2261973069913097,0.33165577628247794,-0.10545846929116826,149.0197,0.17421345037814012,0.2419285714285735,48.07504228753369,54337 -2024-08-16 10:00:00+00:00,12422,148.679,148.682,148.326,148.356,USD_JPY,H1,18.665768194070637,0.16750740794213925,0.2988261026144102,-0.13131869467227097,148.98565000000002,0.22868808331537444,0.2402142857142877,49.2220986241881,41915 -2024-08-16 11:00:00+00:00,15503,148.356,148.356,147.958,148.054,USD_JPY,H1,14.552661381653579,0.09552520888146887,0.258165923867822,-0.16264071498635313,148.94265000000001,0.30945831702615484,0.26421428571428657,49.76432200443428,26412 -2024-08-16 12:00:00+00:00,15958,148.053,148.109,147.618,147.689,USD_JPY,H1,12.314326784858778,0.008923483590280057,0.20831743581231363,-0.19939395222203357,148.8749,0.4160648861057206,0.27921428571428714,51.553736232969314,10454 -2024-08-16 13:00:00+00:00,18804,147.686,147.932,147.624,147.77,USD_JPY,H1,15.77964519141075,-0.05256702464174623,0.15614054372150168,-0.20870756836324791,148.80855,0.4797213527581354,0.2927857142857156,53.03192843020822,29258 -2024-08-16 14:00:00+00:00,19861,147.784,148.263,147.784,148.004,USD_JPY,H1,24.912891986062604,-0.08147762767660538,0.10861690944188027,-0.19009453711848565,148.75825,0.5093151102756736,0.3016428571428581,52.47808729769922,49119 -2024-08-16 15:00:00+00:00,13172,148.003,148.269,147.978,148.138,USD_JPY,H1,32.12010919017315,-0.09251040637713004,0.06839144627807821,-0.16090185265520823,148.71280000000002,0.5225773777781884,0.29457142857143026,51.95365105549019,62291 -2024-08-16 16:00:00+00:00,9657,148.138,148.194,147.996,148.003,USD_JPY,H1,30.870135548754106,-0.11086930243735083,0.03253929653499241,-0.14340859897234323,148.64865,0.5272375151146815,0.29028571428571376,55.121499276179,52634 -2024-08-16 17:00:00+00:00,7755,148.004,148.014,147.708,147.748,USD_JPY,H1,26.116700201207138,-0.1443314654197252,-0.0028348558559511128,-0.14149660956377408,148.57075,0.5399464763697371,0.29992857142857027,57.04696554375898,44879 -2024-08-16 18:00:00+00:00,9800,147.753,147.818,147.644,147.674,USD_JPY,H1,26.085209003215482,-0.17480659065753912,-0.037229202816268715,-0.1375773878412704,148.49134999999998,0.5496194161481552,0.29964285714285666,60.276640989599244,35079 -2024-08-16 19:00:00+00:00,4032,147.672,147.726,147.634,147.704,USD_JPY,H1,25.213501423342976,-0.19429785298737556,-0.06864293285049008,-0.12565492013688548,148.41475,0.5471271260689955,0.2910714285714298,63.71215243399495,39111 -2024-08-16 20:00:00+00:00,2904,147.704,147.705,147.572,147.612,USD_JPY,H1,19.87551867219952,-0.21469359580430591,-0.09785306544125326,-0.11684053036305266,148.33755000000002,0.545959944044765,0.28371428571428836,67.5720050983683,36207 -2024-08-18 21:00:00+00:00,104,147.586,147.71,147.586,147.685,USD_JPY,H1,22.660098522168013,-0.22240315389959164,-0.12276308313292095,-0.0996400707666707,148.2756,0.5462077298843412,0.28078571428571714,69.76497505698124,36311 -2024-08-18 22:00:00+00:00,5104,147.689,147.912,147.652,147.863,USD_JPY,H1,31.588057118130976,-0.21170946689275638,-0.14055235988488804,-0.07115710700786834,148.22485,0.5343149351971581,0.27100000000000285,69.45987157573919,41415 -2024-08-18 23:00:00+00:00,5417,147.858,148.054,147.827,147.964,USD_JPY,H1,34.94533221194291,-0.1928615985325166,-0.15101420761441375,-0.041847390918102856,148.1763,0.5099506787047692,0.2750714285714305,68.21679175193347,46832 -2024-08-19 00:00:00+00:00,14188,147.968,148.006,147.734,147.822,USD_JPY,H1,37.84153005464514,-0.18722453245504767,-0.15825627258254055,-0.02896825987250712,148.1242,0.488782224648531,0.2690714285714303,62.5951484460074,32644 -2024-08-19 01:00:00+00:00,16134,147.821,147.884,147.318,147.414,USD_JPY,H1,36.09904430929625,-0.21322142333499983,-0.1692493027330324,-0.043972120601967424,148.04874999999998,0.47526733471589966,0.28107142857142875,57.67155539622167,16510 -2024-08-19 02:00:00+00:00,10311,147.414,147.64,147.304,147.35,USD_JPY,H1,41.52923538230902,-0.2362648971203214,-0.18265242161049022,-0.05361247550983117,147.96305,0.4354266479712945,0.2699999999999981,51.71495396872142,6199 -2024-08-19 03:00:00+00:00,15329,147.348,147.376,146.312,146.46,USD_JPY,H1,26.690391459074718,-0.32262357433538114,-0.2106466521554684,-0.11197692217991273,147.8352,0.48252445803843036,0.32399999999999807,48.47160319281818,-9130 -2024-08-19 04:00:00+00:00,12315,146.462,146.628,145.863,146.193,USD_JPY,H1,18.149841716497235,-0.40790602999578596,-0.2500985277235319,-0.15780750227225404,147.70915,0.5633792099322517,0.34342857142856886,49.677869865674936,-21445 -2024-08-19 05:00:00+00:00,14524,146.194,146.298,145.416,145.428,USD_JPY,H1,10.995970063327675,-0.5310999080203658,-0.3062988037828987,-0.22480110423746708,147.54655,0.7168221885327778,0.3856428571428552,51.32423286227061,-35969 -2024-08-19 06:00:00+00:00,20341,145.426,145.878,145.188,145.876,USD_JPY,H1,21.91708476366547,-0.5858290157829913,-0.3622048461829172,-0.22362416960007409,147.42255,0.7810537736551877,0.42078571428571365,53.313659212011025,-15628 -2024-08-19 07:00:00+00:00,19512,145.875,146.256,145.676,146.104,USD_JPY,H1,28.138297872340843,-0.6038437980382128,-0.4105326365539763,-0.19331116148423644,147.32504999999998,0.8188751896889496,0.4403571428571423,53.51060328641084,3884 -2024-08-19 08:00:00+00:00,17189,146.104,146.232,145.904,146.081,USD_JPY,H1,28.525208951199886,-0.6129112907106844,-0.4510083673853179,-0.1619029233253665,147.24465,0.8592068726285366,0.451357142857142,53.345917064020476,-13305 -2024-08-19 09:00:00+00:00,15278,146.088,146.282,145.962,146.274,USD_JPY,H1,31.534090909091162,-0.5976346961867023,-0.48033363314559485,-0.11730106304110743,147.16985,0.8760185214776615,0.4676428571428569,52.7121809439893,1973 -2024-08-19 10:00:00+00:00,15035,146.273,146.527,146.242,146.352,USD_JPY,H1,33.670295489891515,-0.5726329802925534,-0.49879350257498656,-0.07383947771756683,147.08725,0.8710966394349382,0.47849999999999887,50.98109275539009,17008 -2024-08-19 11:00:00+00:00,14453,146.357,146.391,146.027,146.042,USD_JPY,H1,29.938949938950202,-0.5712483541043412,-0.5132844728808574,-0.057963881223483726,146.98245,0.8640842109746059,0.49564285714285666,49.70989636942171,2555 -2024-08-19 12:00:00+00:00,15799,146.042,146.271,145.934,146.218,USD_JPY,H1,29.90471536770106,-0.5496136942235239,-0.5205503171493908,-0.02906337707413309,146.8932,0.8451016506735469,0.5011428571428544,50.60394010507481,18354 -2024-08-19 13:00:00+00:00,18371,146.218,146.58,146.218,146.396,USD_JPY,H1,31.19904076738615,-0.5122006280009828,-0.5188803793197092,0.006679751318726446,146.8256,0.8270069305204556,0.510785714285713,51.83815389847346,36725 -2024-08-19 14:00:00+00:00,19150,146.398,146.68,146.192,146.366,USD_JPY,H1,32.06012814194207,-0.47944451482945283,-0.5109932064216579,0.03154869159220508,146.7602,0.8078814138957267,0.526214285714285,53.16801265344951,17575 -2024-08-19 15:00:00+00:00,12187,146.366,146.717,146.354,146.424,USD_JPY,H1,36.65048543689346,-0.4436903576172142,-0.4975326366607692,0.053842279043554986,146.6962,0.7793765119241359,0.5117142857142868,53.804970714956156,29762 -2024-08-19 16:00:00+00:00,8773,146.423,146.6,146.389,146.501,USD_JPY,H1,38.59177640419258,-0.4044790907686888,-0.4789219274823531,0.0744428367136643,146.64065,0.7496955364272071,0.5027857142857154,55.40579723276084,38535 -2024-08-19 17:00:00+00:00,7320,146.502,146.62,146.46,146.54,USD_JPY,H1,51.39372822299624,-0.36603745331450455,-0.45634503264878346,0.09030757933427891,146.58339999999998,0.7083240709195067,0.4382142857142871,52.82391551024779,45855 -2024-08-19 18:00:00+00:00,8521,146.536,146.692,146.484,146.657,USD_JPY,H1,58.52941176470576,-0.3224146609692866,-0.4295589583128841,0.10714429734359748,146.5231,0.6418745491232972,0.3984285714285737,48.34173160043785,54376 -2024-08-19 19:00:00+00:00,7981,146.658,146.68,146.554,146.637,USD_JPY,H1,80.60759493670858,-0.28615846000403167,-0.40087885865111367,0.114720398647082,146.45675,0.546606264018887,0.34442857142857364,45.64612758754863,46395 -2024-08-19 20:00:00+00:00,4364,146.637,146.697,146.584,146.606,USD_JPY,H1,73.42747111681578,-0.25696447394858524,-0.372095981710608,0.11513150776202274,146.39595,0.4449260701111105,0.30321428571428805,44.445240821421386,42031 -2024-08-19 21:00:00+00:00,271,146.602,146.663,146.57,146.595,USD_JPY,H1,68.3072334079039,-0.23204081565503998,-0.3440849484994944,0.11204413284445441,146.35500000000002,0.37911822898485875,0.2684285714285742,43.68700572663748,41760 -2024-08-19 22:00:00+00:00,1704,146.594,146.648,146.542,146.632,USD_JPY,H1,70.33210332103396,-0.20691782621528887,-0.3166515240426533,0.10973369782736442,146.3191,0.3070924598829119,0.2525714285714307,42.725812386657026,43464 -2024-08-19 23:00:00+00:00,7130,146.632,146.874,146.612,146.712,USD_JPY,H1,67.63285024154595,-0.17849476809340104,-0.28902017285280285,0.11052540475940181,146.3317,0.318148608061876,0.24842857142857205,42.45420939402926,50594 -2024-08-20 00:00:00+00:00,17269,146.715,146.726,146.182,146.346,USD_JPY,H1,49.80392156862744,-0.18338844314780545,-0.2678938269118034,0.08450538376399797,146.33935000000002,0.31647304278837196,0.26692857142857307,39.34460944305268,33325 -2024-08-20 01:00:00+00:00,16966,146.346,146.537,145.849,146.34,USD_JPY,H1,62.15334420880978,-0.18561125473576112,-0.25143731247659495,0.06582605774083383,146.38495,0.232922276332378,0.2900714285714311,36.30064133592402,16359 -2024-08-20 02:00:00+00:00,13700,146.346,147.106,146.299,147.004,USD_JPY,H1,72.92882147024585,-0.13226888484331312,-0.2276036269499386,0.09533474210662549,146.44135,0.2396682520121043,0.3236428571428596,34.10543197272967,30059 -2024-08-20 03:00:00+00:00,12261,147.002,147.167,146.842,147.071,USD_JPY,H1,71.05427323768035,-0.0836243627356339,-0.19880777410707767,0.11518341137144378,146.48970000000003,0.2643040712423906,0.321,31.69611782784082,42320 -2024-08-20 04:00:00+00:00,10489,147.072,147.106,146.788,146.932,USD_JPY,H1,66.53037383177505,-0.05564789256311542,-0.17017579779828523,0.11452790523516981,146.53225,0.26354463812786055,0.3088571428571417,29.07047689635106,31831 -2024-08-20 05:00:00+00:00,11351,146.932,147.331,146.928,147.286,USD_JPY,H1,71.46414342629458,-0.00485552541866241,-0.13711174332236067,0.13225621790369826,146.58285,0.30520903530769256,0.311714285714284,27.618283866785497,43182 -2024-08-20 06:00:00+00:00,14420,147.287,147.347,146.906,147.046,USD_JPY,H1,62.55181943804657,0.01584909870209117,-0.10651957491747031,0.12236867361956148,146.61755,0.31681249223088814,0.32814285714285674,25.995659646066326,28762 -2024-08-20 07:00:00+00:00,18866,147.048,147.196,146.332,146.56,USD_JPY,H1,50.38197097020646,-0.0068791769719780405,-0.08659149532837186,0.07971231835639382,146.64344999999997,0.28706050613239165,0.37842857142857156,26.005669006418064,9896 -2024-08-20 08:00:00+00:00,17737,146.558,146.586,146.234,146.522,USD_JPY,H1,47.34147302087399,-0.027639174414929357,-0.07480103114568337,0.047161856730754015,146.65865,0.27094304600972,0.38871428571428623,26.470077407513816,-7841 -2024-08-20 09:00:00+00:00,12617,146.522,146.557,146.379,146.478,USD_JPY,H1,46.89816621147107,-0.04709912483986045,-0.0692606498845188,0.022161525044658348,146.66275,0.2673560359717159,0.3924285714285714,24.916105573289933,-20458 -2024-08-20 10:00:00+00:00,11631,146.478,146.507,146.328,146.447,USD_JPY,H1,46.89816621147107,-0.06428171705493924,-0.06826486331860289,0.003983146263663653,146.6668,0.26320546301320247,0.3971428571428573,21.91987393782559,-32089 -2024-08-20 11:00:00+00:00,11002,146.45,146.56,146.338,146.375,USD_JPY,H1,45.807926829268304,-0.08275489651626344,-0.071162869958135,-0.011592026558128438,146.66434999999998,0.26579974153880076,0.40635714285714236,19.786353414714945,-43091 -2024-08-20 12:00:00+00:00,17812,146.37,146.496,146.127,146.174,USD_JPY,H1,41.786226685796244,-0.11231929755842884,-0.07939415547819377,-0.03292514208023507,146.648,0.2856897470148646,0.425142857142857,18.204255720080017,-60903 -2024-08-20 13:00:00+00:00,19173,146.174,146.296,146.044,146.113,USD_JPY,H1,39.183820873961935,-0.1390683946990805,-0.09132900332237112,-0.04773939137670938,146.62665,0.3091753504709486,0.42442857142856993,16.998983138905256,-80076 -2024-08-20 14:00:00+00:00,21785,146.114,146.251,145.522,145.6,USD_JPY,H1,37.20850480109735,-0.1993639164508636,-0.11293598594806961,-0.08642793050279399,146.5738,0.38480515913457725,0.4376428571428558,19.586749730341836,-101861 -2024-08-20 15:00:00+00:00,16558,145.601,145.866,145.588,145.696,USD_JPY,H1,39.288090485695285,-0.2366739244734788,-0.13768357365315145,-0.09899035082032734,146.52675,0.43138026633200643,0.40835714285714175,21.146387176753933,-85303 -2024-08-20 16:00:00+00:00,12181,145.697,145.746,145.371,145.397,USD_JPY,H1,19.57591821279874,-0.28706012535189984,-0.16755888399290114,-0.1195012413589987,146.4663,0.4990865445164351,0.3774999999999998,24.23138026405049,-97484 -2024-08-20 17:00:00+00:00,8893,145.398,145.494,145.345,145.488,USD_JPY,H1,20.300187617261358,-0.3160058938423731,-0.19724828596279553,-0.11875760787957756,146.41094999999999,0.5434729911183285,0.36492857142857205,28.40251561455733,-88591 -2024-08-20 18:00:00+00:00,7318,145.488,145.539,145.367,145.385,USD_JPY,H1,20.578166603271796,-0.3432995199378581,-0.22645853275780806,-0.11684098718005007,146.34859999999998,0.5865983472720543,0.3545000000000016,32.82479738005356,-95909 -2024-08-20 19:00:00+00:00,5143,145.384,145.434,145.324,145.341,USD_JPY,H1,8.063820612333345,-0.36428114129540745,-0.25402305446532797,-0.11025808683007948,146.28005000000002,0.6209954211806904,0.3335714285714297,38.1718132984984,-101052 -2024-08-20 20:00:00+00:00,3008,145.34,145.364,145.2,145.27,USD_JPY,H1,8.697674418605175,-0.3822321991534068,-0.2796648834029437,-0.10256731575046307,146.22625,0.6603441586506825,0.3137857142857164,43.77937401042427,-104060 -2024-08-20 21:00:00+00:00,1920,145.226,145.236,145.098,145.131,USD_JPY,H1,10.371602884082591,-0.4030288148637169,-0.30433766969509835,-0.09869114516861854,146.16580000000002,0.7033223113575935,0.26192857142857157,49.444333294786816,-105980 -2024-08-20 22:00:00+00:00,5982,145.136,145.183,144.993,145.128,USD_JPY,H1,10.576923076923563,-0.41496885492321667,-0.326463906740722,-0.08850494818249466,146.072,0.7107099489579931,0.25035714285714256,54.660295623128995,-111962 -2024-08-20 23:00:00+00:00,11594,145.126,145.358,144.944,145.328,USD_JPY,H1,20.11434511434595,-0.40364018140945745,-0.34189916167446915,-0.0617410197349883,145.98485,0.6882738343285489,0.2672142857142867,58.17831147369814,-100368 -2024-08-21 00:00:00+00:00,16956,145.328,145.553,144.934,145.451,USD_JPY,H1,25.297619047619406,-0.3803525861333412,-0.3495898465662436,-0.03076273956709763,145.9108,0.6601009173006226,0.298642857142858,60.19321812248085,-83412 -2024-08-21 01:00:00+00:00,18290,145.452,145.592,145.256,145.412,USD_JPY,H1,25.718608169440785,-0.3608839278841458,-0.351848662829824,-0.009035265054321784,145.8171,0.5831386852919526,0.30678571428571544,62.489003678192965,-101702 -2024-08-21 02:00:00+00:00,11214,145.412,145.496,145.278,145.392,USD_JPY,H1,28.301886792453132,-0.34311350984978617,-0.35010163223381646,0.006988122384030293,145.7344,0.5127168501122866,0.29600000000000243,63.88976052099861,-112916 -2024-08-21 03:00:00+00:00,10989,145.392,145.572,145.366,145.479,USD_JPY,H1,32.658643326040334,-0.31834052124906975,-0.34374941003686715,0.0254088887877974,145.68035,0.4768249457769916,0.2927142857142887,63.692025237700854,-101927 -2024-08-21 04:00:00+00:00,10885,145.48,145.762,145.393,145.676,USD_JPY,H1,52.51322751322725,-0.2795885726730205,-0.3309172425640978,0.051328669891077316,145.63805000000002,0.43381641456576353,0.267000000000002,62.0833321485081,-91042 -2024-08-21 05:00:00+00:00,9960,145.676,145.783,145.514,145.668,USD_JPY,H1,49.016853932584574,-0.2466793414789663,-0.31406966234707157,0.06739032086810526,145.59755,0.3865034179317148,0.2663571428571418,60.89286183002512,-101002 -2024-08-21 06:00:00+00:00,13539,145.668,145.978,145.57,145.952,USD_JPY,H1,69.69481902058233,-0.19542932454370998,-0.29034159478639926,0.09491227024268928,145.5728,0.3426008264487352,0.26871428571428574,58.91649602041815,-87463 -2024-08-21 07:00:00+00:00,17513,145.96,146.228,145.691,146.146,USD_JPY,H1,71.75925925925924,-0.1375732790868085,-0.2597879316464811,0.12221465255967262,145.56135,0.3172698129007246,0.2964285714285718,57.38978687027528,-69950 -2024-08-21 08:00:00+00:00,15298,146.146,146.173,145.88,146.034,USD_JPY,H1,71.3346482577258,-0.0996111548218721,-0.22775257628155934,0.12814142145968724,145.55435,0.3043215533974734,0.30507142857142966,55.95979567828392,-85248 -2024-08-21 09:00:00+00:00,13815,146.034,146.186,145.952,146.117,USD_JPY,H1,74.87179487179472,-0.062112497294407376,-0.19462456048412896,0.13251206318972159,145.55455,0.3047090889928993,0.31392857142857417,53.3574681072059,-71433 -2024-08-21 10:00:00+00:00,11155,146.116,146.228,146.04,146.174,USD_JPY,H1,79.2367399741268,-0.027478363934761774,-0.16119532117425553,0.13371695723949376,145.58325,0.3347649410512793,0.31564285714285994,51.869339753720475,-60278 -2024-08-21 11:00:00+00:00,12519,146.172,146.2,146.036,146.064,USD_JPY,H1,80.75148319050743,-0.008805144192194803,-0.1307172857778434,0.12191214158564859,145.60165,0.3510076134565815,0.31750000000000356,51.523264269207985,-72797 -2024-08-21 12:00:00+00:00,16486,146.063,146.063,145.736,145.78,USD_JPY,H1,68.13125695216976,-0.01673005585610099,-0.10791983979349491,0.09118978393739392,145.6208,0.3497001120799763,0.3272857142857179,49.355111094556776,-89283 -2024-08-21 13:00:00+00:00,18991,145.778,145.817,145.504,145.744,USD_JPY,H1,62.72949816401492,-0.025620171195555486,-0.09145990607390703,0.06583973487835154,145.6336,0.3492683178624528,0.3200714285714322,46.700048749961574,-108274 -2024-08-21 14:00:00+00:00,32174,145.744,146.9,145.412,145.647,USD_JPY,H1,56.09452736318411,-0.040031285251274085,-0.08117418190938044,0.04114289665810636,145.64669999999998,0.34433186252032166,0.3821428571428608,47.24262105172999,-140448 -2024-08-21 15:00:00+00:00,21564,145.65,145.65,145.034,145.202,USD_JPY,H1,44.786494538232134,-0.08636442264253219,-0.08221223005601079,-0.0041521925865214,145.63975,0.3521411013087014,0.40214285714286085,46.09687097353372,-162012 -2024-08-21 16:00:00+00:00,14135,145.202,145.244,145.042,145.193,USD_JPY,H1,45.03245132301578,-0.12239905253431971,-0.09024959455167259,-0.03214945798264712,145.6359,0.3567866677491269,0.40100000000000235,45.42441933296118,-176147 -2024-08-21 17:00:00+00:00,11011,145.194,145.225,144.941,145.07,USD_JPY,H1,39.97057381069082,-0.1590484172354536,-0.10400935908842879,-0.05503905814702481,145.63285,0.3615587998613808,0.40657142857143114,44.974642824373525,-187158 -2024-08-21 18:00:00+00:00,14405,145.068,145.068,144.454,144.746,USD_JPY,H1,28.53185595567885,-0.2117959432293901,-0.12556667591662107,-0.08622926731276903,145.61375,0.3978960290926178,0.42407142857143143,44.011442331111915,-201563 -2024-08-21 19:00:00+00:00,11776,144.745,145.048,144.74,145.011,USD_JPY,H1,36.44242674370578,-0.22956912236165294,-0.14636716520562745,-0.08320195715602549,145.5979,0.41578928110693153,0.4268571428571469,43.264171763272714,-189787 -2024-08-21 20:00:00+00:00,5521,145.01,145.298,145.009,145.292,USD_JPY,H1,36.36363636363636,-0.21846185105658833,-0.16078610237581964,-0.05767574868076869,145.58995,0.4202420949746228,0.41835714285714687,40.392126148543625,-184266 -2024-08-21 21:00:00+00:00,1036,145.257,145.257,145.099,145.18,USD_JPY,H1,29.341317365269845,-0.21620445215882,-0.17186977233241973,-0.04433467982640027,145.57835,0.4285327813649925,0.39128571428571896,37.092109183429336,-185302 -2024-08-21 22:00:00+00:00,3737,145.174,145.181,144.892,144.893,USD_JPY,H1,27.298050139275986,-0.2348665532826999,-0.18446912852247577,-0.05039742476022413,145.5534,0.45373855208888214,0.39100000000000534,34.32841429886166,-189039 -2024-08-21 23:00:00+00:00,8297,144.892,145.148,144.849,145.125,USD_JPY,H1,31.3673929376411,-0.22830419315712902,-0.19323614144940643,-0.03506805170772259,145.5357,0.4635912559561859,0.39564285714286235,31.325094552061877,-180742 -2024-08-22 00:00:00+00:00,14020,145.124,145.442,144.943,145.335,USD_JPY,H1,35.09769094138545,-0.20380884897718943,-0.19535068295496305,-0.008458166022226377,145.51864999999998,0.46442961901674396,0.41785714285714654,26.559459736666962,-166722 -2024-08-22 01:00:00+00:00,12200,145.336,145.645,145.218,145.618,USD_JPY,H1,42.536813922356046,-0.15971923346324957,-0.18822439305662036,0.0285051595933708,145.51615,0.46371739064698847,0.4366428571428632,20.48773312155882,-154522 -2024-08-22 02:00:00+00:00,10129,145.617,145.636,145.374,145.446,USD_JPY,H1,44.19332406119601,-0.1370767229213925,-0.1779948590295748,0.04091813610818229,145.49085,0.4523503852324638,0.4320000000000062,16.890202753121947,-164651 -2024-08-22 03:00:00+00:00,8348,145.446,145.482,145.208,145.266,USD_JPY,H1,42.0860927152316,-0.1321337106971896,-0.16882262936309778,0.03668891866590818,145.44685,0.4273795644067047,0.4292142857142908,15.58848760009859,-172999 -2024-08-22 04:00:00+00:00,11949,145.266,145.412,144.987,145.134,USD_JPY,H1,41.60392798690656,-0.13728509757913798,-0.16251512300630583,0.025230025427167846,145.40185000000002,0.4093025228730367,0.35328571428572025,14.432565581500578,-184948 -2024-08-22 05:00:00+00:00,9422,145.134,145.304,145.014,145.271,USD_JPY,H1,51.25591554422987,-0.1288278069871467,-0.155777659802474,0.026949852815327302,145.35954999999998,0.37366879152055166,0.3300000000000044,13.959740588481694,-175526 -2024-08-22 06:00:00+00:00,12587,145.266,145.455,145.202,145.382,USD_JPY,H1,53.316953316953175,-0.11187890060327277,-0.14699790796263373,0.035119007359360965,145.31995,0.3210796711565537,0.3336428571428627,12.8780084924057,-162939 -2024-08-22 07:00:00+00:00,14755,145.384,145.477,145.088,145.247,USD_JPY,H1,53.09332401258339,-0.10809410043808043,-0.13921714645772307,0.031123046019642636,145.2791,0.2692179511657498,0.34114285714286396,12.31563434503722,-177694 -2024-08-22 08:00:00+00:00,13383,145.255,145.674,145.252,145.638,USD_JPY,H1,65.23224043715841,-0.0727060763720715,-0.12591493244059276,0.05320885606852127,145.272,0.256903422296704,0.3277857142857203,13.415806295722929,-164311 -2024-08-22 09:00:00+00:00,10864,145.639,145.76,145.558,145.61,USD_JPY,H1,61.1296915644745,-0.04638547544999483,-0.11000904104247318,0.06362356559247835,145.2653,0.24543733248471686,0.3202142857142921,14.94968808470871,-175175 -2024-08-22 10:00:00+00:00,10766,145.61,145.891,145.562,145.766,USD_JPY,H1,59.236165237723974,-0.01279086816973063,-0.09056540646792467,0.07777453829819404,145.27125,0.25637634234475115,0.32307142857143234,15.973455722758972,-164409 -2024-08-22 11:00:00+00:00,11322,145.765,146.152,145.739,145.993,USD_JPY,H1,65.1622528907123,0.03178372007741359,-0.06609558115885701,0.0978793012362706,145.3108,0.30207102679664205,0.3412857142857157,17.468021477296336,-153087 -2024-08-22 12:00:00+00:00,17669,145.985,146.349,145.884,146.052,USD_JPY,H1,73.6241337138199,0.07105117559780183,-0.03866622980752525,0.10971740540532708,145.35375000000002,0.3427672026756698,0.3538571428571434,20.08676573815016,-135418 -2024-08-22 13:00:00+00:00,20028,146.05,146.5,145.824,146.286,USD_JPY,H1,73.64562118126291,0.11967324273655322,-0.0069983352987095584,0.12667157803526277,145.41455000000002,0.3938301096034728,0.3807857142857135,23.055087126566978,-115390 -2024-08-22 14:00:00+00:00,19305,146.285,146.528,146.224,146.236,USD_JPY,H1,69.62962962962935,0.1524150532557087,0.024884342412174097,0.1275307108435346,145.48905,0.4015599155254652,0.36685714285714255,26.192742078687935,-134695 -2024-08-22 15:00:00+00:00,14848,146.238,146.352,145.877,145.981,USD_JPY,H1,58.00617556241729,0.15598866487891883,0.051105206905523046,0.10488345797339578,145.53755,0.3993544098971864,0.37028571428571205,27.453046277513486,-149543 -2024-08-22 16:00:00+00:00,11479,145.982,146.354,145.968,146.33,USD_JPY,H1,68.08510638297889,0.18485131028310775,0.07785442758104,0.10699688270206775,145.58945,0.43188722634900095,0.3791428571428566,28.089730580864618,-138064 -2024-08-22 17:00:00+00:00,12095,146.33,146.494,146.278,146.318,USD_JPY,H1,73.11072056239051,0.20440066140849922,0.10316367434653184,0.10123698706196738,145.64634999999998,0.4497009854154243,0.375,29.671923810764405,-150159 -2024-08-22 18:00:00+00:00,10132,146.317,146.349,146.2,146.224,USD_JPY,H1,74.35210008936528,0.20988917683257569,0.12450877484374062,0.08538040198883506,145.7129,0.4304192447879155,0.35528571428571354,29.98782785572393,-160291 -2024-08-22 19:00:00+00:00,6187,146.23,146.325,146.179,146.296,USD_JPY,H1,73.58490566037716,0.2175409860470836,0.14311521708440922,0.07442576896267439,145.77145,0.42585956107343237,0.34499999999999886,30.966344597182335,-154104 -2024-08-22 20:00:00+00:00,2475,146.296,146.376,146.254,146.31,USD_JPY,H1,72.35067437379547,0.2221737028271491,0.1589269142329572,0.06324678859419189,145.8202,0.42906184067826625,0.33564285714285597,32.370141484089245,-151629 -2024-08-22 21:00:00+00:00,1112,146.268,146.288,146.247,146.258,USD_JPY,H1,75.36377320622137,0.21912328203853804,0.17096618779407338,0.048157094244464654,145.85219999999998,0.4369807414400246,0.31078571428571217,34.357852208390305,-152741 -2024-08-22 22:00:00+00:00,2767,146.257,146.289,146.151,146.183,USD_JPY,H1,66.2492546213468,0.20825331381911383,0.17842361299908147,0.029829700820032362,145.88905,0.43196996419719647,0.2901428571428539,35.357364588949864,-155508 -2024-08-22 23:00:00+00:00,6330,146.182,146.234,146.026,146.212,USD_JPY,H1,67.93802145411073,0.19967709012789214,0.1826743084248436,0.01700278170304853,145.93635,0.41146225441802914,0.29057142857142537,35.04399430401772,-149178 -2024-08-23 00:00:00+00:00,17217,146.212,146.339,145.894,146.074,USD_JPY,H1,59.27710843373528,0.1796737571489757,0.18207419816967002,-0.0024004410206943105,145.98335,0.3661840599456351,0.29885714285714066,33.96378936929539,-166395 -2024-08-23 01:00:00+00:00,16868,146.076,146.135,145.46,145.488,USD_JPY,H1,37.493808816246165,0.11520762724072142,0.1687008839838803,-0.053493256743158885,145.9942,0.34666070165810287,0.3175714285714264,34.54538688818853,-183263 -2024-08-23 02:00:00+00:00,14515,145.486,145.698,145.293,145.602,USD_JPY,H1,39.15139826422436,0.0724810852642861,0.1494569242399615,-0.07697583897567539,146.0052,0.32926642543117707,0.31328571428571195,35.200025845460594,-168748 -2024-08-23 03:00:00+00:00,9435,145.602,145.724,145.479,145.673,USD_JPY,H1,33.961276818420174,0.043843696704243484,0.12833427873281789,-0.0844905820285744,146.0265,0.28894791002144393,0.2824999999999968,36.23681394221906,-159313 -2024-08-23 04:00:00+00:00,9804,145.674,145.903,145.578,145.774,USD_JPY,H1,38.22629969419016,0.028964333055142788,0.10846028959728286,-0.07949595654214008,146.0333,0.280809562684845,0.28399999999999587,36.707918526082224,-149509 -2024-08-23 05:00:00+00:00,8619,145.774,145.774,145.56,145.675,USD_JPY,H1,41.52823920265846,0.009079198195536264,0.08858407131693355,-0.07950487312139728,146.03655,0.27598731372541085,0.265357142857139,38.67932964322917,-158128 -2024-08-23 06:00:00+00:00,12983,145.676,145.8,145.29,145.457,USD_JPY,H1,23.940298507462742,-0.023994103454526794,0.06606843636264148,-0.09006253981716827,146.0211,0.2995714306708267,0.2742142857142816,41.22744219439973,-171111 -2024-08-23 07:00:00+00:00,15244,145.458,145.982,145.415,145.828,USD_JPY,H1,37.95476892822032,-0.02003735570511367,0.048847277949090454,-0.06888463365420412,146.01285000000001,0.302642271842056,0.29928571428571005,42.40491462922529,-155867 -2024-08-23 08:00:00+00:00,12317,145.832,146.029,145.75,145.934,USD_JPY,H1,42.91300097751737,-0.00825315327230669,0.03742719170481103,-0.04568034497711772,146.00695000000002,0.3029888785008083,0.308571428571424,42.39789738082863,-143550 -2024-08-23 09:00:00+00:00,9472,145.936,146.158,145.929,146.14,USD_JPY,H1,46.42201834862373,0.017506585423177512,0.033443070448484324,-0.015936485025306812,145.99965,0.2976230881508007,0.31449999999999534,41.89135015646384,-134078 -2024-08-23 10:00:00+00:00,7229,146.141,146.178,145.994,146.018,USD_JPY,H1,43.618881118881035,0.02775701790054086,0.032305859938895634,-0.004548842038354775,145.98875,0.2924587014846241,0.31892857142856557,41.77977651336395,-141307 -2024-08-23 11:00:00+00:00,7640,146.019,146.103,145.939,146.036,USD_JPY,H1,45.075421472936796,0.03690756166031406,0.033226200283179325,0.003681361377134734,145.9915,0.2926405194996544,0.32771428571428124,41.163137638754066,-133667 -2024-08-23 12:00:00+00:00,14065,146.038,146.183,145.946,145.99,USD_JPY,H1,45.6629213483149,0.039986676438928725,0.034578295514329206,0.005408380924599519,145.97449999999998,0.2816091916306606,0.3347857142857111,40.99597002628328,-147732 -2024-08-23 13:00:00+00:00,16706,145.994,146.484,145.976,146.23,USD_JPY,H1,50.36945812807884,0.06108869882743306,0.03988037617694998,0.021208322650483086,145.9701,0.2766026790796117,0.3562142857142833,40.134304259058844,-131026 -2024-08-23 14:00:00+00:00,30917,146.228,146.294,144.947,145.213,USD_JPY,H1,37.01357466063309,-0.004202750285031698,0.031063750884553647,-0.035266501169585344,145.91955000000002,0.3171668122782103,0.4206428571428558,42.48343219676938,-161943 -2024-08-23 15:00:00+00:00,20904,145.212,145.216,144.601,144.867,USD_JPY,H1,39.90243902438996,-0.08291026454367056,0.008268947798908806,-0.09117921234257936,145.8481,0.38219213956773845,0.4163571428571434,42.14306192036533,-182847 -2024-08-23 16:00:00+00:00,15277,144.868,144.982,144.752,144.848,USD_JPY,H1,37.34899328859047,-0.1451465191389616,-0.022414145588665276,-0.12273237355029631,145.775,0.42644935525779754,0.4038571428571426,39.68919214599184,-198124 -2024-08-23 17:00:00+00:00,11505,144.845,144.856,144.344,144.408,USD_JPY,H1,31.1137653030751,-0.22735274118213056,-0.06340186470735834,-0.16395087647477222,145.6825,0.5088478730059609,0.42292857142857293,37.222479853771524,-209629 -2024-08-23 18:00:00+00:00,11920,144.407,144.454,144.132,144.295,USD_JPY,H1,27.997619756024548,-0.29818265598882476,-0.11035802296365163,-0.18782463302517313,145.5881,0.5811071918232834,0.4227142857142882,36.69192471686733,-221549 -2024-08-23 19:00:00+00:00,5972,144.296,144.307,144.048,144.236,USD_JPY,H1,28.334838903944075,-0.35498463874631625,-0.15928334612018458,-0.19570129262613167,145.48930000000001,0.6349355623907578,0.42592857142857304,36.94414849693107,-227521 -2024-08-23 20:00:00+00:00,4995,144.234,144.418,144.221,144.385,USD_JPY,H1,33.517835178351504,-0.3835561678156125,-0.20413791045927018,-0.17941825735634234,145.40484999999998,0.6646997165074426,0.40357142857142897,35.831606411825035,-222526 -2024-08-25 21:00:00+00:00,450,144.243,144.266,144.013,144.054,USD_JPY,H1,22.384806973847475,-0.4279748168834203,-0.24890529174410023,-0.1790695251393201,145.33315,0.7294465295281494,0.381142857142856,35.92116207249894,-222976 -2024-08-25 22:00:00+00:00,7387,144.05,144.344,143.852,143.902,USD_JPY,H1,18.815224063842223,-0.4700239029976956,-0.2931290139948193,-0.1768948890028763,145.24815,0.7927687174961086,0.3963571428571413,36.80954618841384,-230363 -2024-08-25 23:00:00+00:00,13826,143.895,144.026,143.558,143.924,USD_JPY,H1,13.955757970071701,-0.49585696017555847,-0.33367460323096715,-0.16218235694459132,145.1607,0.8385792558771947,0.4134285714285722,39.2016608126326,-216537 -2024-08-26 00:00:00+00:00,20288,143.923,144.054,143.446,143.716,USD_JPY,H1,13.575949367088683,-0.5270383359112145,-0.37234734976701667,-0.15469098614419785,145.0578,0.8843773069334385,0.44371428571428695,41.58518689353838,-236825 -2024-08-26 01:00:00+00:00,17702,143.714,143.886,143.448,143.742,USD_JPY,H1,13.79419191919149,-0.5433879797392933,-0.406555475761472,-0.13683250397782132,144.96115,0.9183483615294569,0.4632857142857136,43.81403428672436,-219123 -2024-08-26 02:00:00+00:00,12977,143.742,143.994,143.538,143.932,USD_JPY,H1,18.931159420289376,-0.5348483789808256,-0.4322140564053427,-0.10263432257548288,144.8849,0.9381087300731299,0.4789285714285703,46.58897927050696,-206146 -2024-08-26 03:00:00+00:00,12097,143.932,144.096,143.797,143.97,USD_JPY,H1,13.665594855305784,-0.5190313313326556,-0.4495775113908053,-0.06945381994185024,144.792,0.9317755546138824,0.46399999999999864,51.822236041116966,-194049 -2024-08-26 04:00:00+00:00,9862,143.97,144.045,143.74,144.045,USD_JPY,H1,23.06273062730621,-0.4947412645845475,-0.4586102620295538,-0.036131002554993685,144.69754999999998,0.9052867225168076,0.38957142857142507,54.27424625799397,-184187 -2024-08-26 05:00:00+00:00,10185,144.044,144.218,143.927,144.054,USD_JPY,H1,27.799016930639525,-0.46935455970117346,-0.46075912156387777,-0.008595438137295686,144.59324999999998,0.8487533194829701,0.36642857142856705,55.34822344887472,-174002 -2024-08-26 06:00:00+00:00,14370,144.056,144.069,143.688,143.769,USD_JPY,H1,24.27277062470222,-0.4668509640267473,-0.4619774900564517,-0.004873473970295583,144.4808,0.797490709377596,0.37721428571428206,57.67633762968001,-188372 -2024-08-26 07:00:00+00:00,14256,143.768,143.912,143.6,143.889,USD_JPY,H1,35.39673607203228,-0.4499965689652754,-0.4595813058382165,0.009584736872941091,144.37345,0.7176326926382949,0.3629285714285686,58.65178232381388,-174116 -2024-08-26 08:00:00+00:00,11787,143.89,143.966,143.776,143.864,USD_JPY,H1,37.2409709887514,-0.4336576945557056,-0.4543965835817143,0.020738889026008733,144.26715,0.6158113411255013,0.3534999999999968,57.95636941919965,-185903 -2024-08-26 09:00:00+00:00,8750,143.863,144.004,143.824,143.97,USD_JPY,H1,42.33870967741969,-0.40745877364159355,-0.44500902159369016,0.037550247952096605,144.15415000000002,0.40945320080316633,0.34785714285713915,56.7533705793813,-177153 -2024-08-26 10:00:00+00:00,8651,143.971,144.123,143.97,144.034,USD_JPY,H1,39.37007874015758,-0.3771837356188996,-0.4314439643987321,0.0542602287798325,144.0952,0.3251847409597526,0.3447142857142812,56.26347690974535,-168502 -2024-08-26 11:00:00+00:00,11925,144.035,144.23,143.964,144.135,USD_JPY,H1,52.85010555946474,-0.34110860627785655,-0.413376892774557,0.07226828649670047,144.0586,0.2703092575187356,0.345642857142853,53.60809662949536,-156577 -2024-08-26 12:00:00+00:00,15011,144.134,144.368,143.914,143.94,USD_JPY,H1,51.297814207650646,-0.324512894044517,-0.39560409302854904,0.07109119898403204,144.0132,0.19707935875573832,0.34292857142856853,49.74865957325894,-171588 -2024-08-26 13:00:00+00:00,18004,143.938,144.42,143.858,144.412,USD_JPY,H1,62.7481713688611,-0.27015998110906025,-0.3705152706446513,0.10035528953559103,144.0134,0.197502671441481,0.34964285714285176,46.408082523756946,-153584 -2024-08-26 14:00:00+00:00,18237,144.414,144.458,144.106,144.148,USD_JPY,H1,60.96446700507584,-0.24555687289912953,-0.3455235910955469,0.09996671819641739,144.00605000000002,0.18902477549997987,0.33135714285713747,43.8124363448412,-171821 -2024-08-26 15:00:00+00:00,13472,144.149,144.608,144.135,144.511,USD_JPY,H1,66.66666666666666,-0.19452529953920816,-0.3153239327842792,0.12079863324507106,144.01979999999998,0.2148675478551281,0.33385714285713924,41.728939656006084,-158349 -2024-08-26 16:00:00+00:00,9694,144.508,144.604,144.448,144.463,USD_JPY,H1,62.2632794457275,-0.15615554491776606,-0.2834902552109766,0.12733471029321053,144.02370000000002,0.22242020441455612,0.31242857142856906,39.3963296443163,-168043 -2024-08-26 17:00:00+00:00,8845,144.461,144.56,144.318,144.525,USD_JPY,H1,62.677021470991356,-0.11936835203863438,-0.2506658745765082,0.1312975225378738,144.04725,0.2491285600591397,0.30835714285713933,35.02595164777569,-159198 -2024-08-26 18:00:00+00:00,7055,144.526,144.654,144.502,144.506,USD_JPY,H1,60.80637599624952,-0.09070182369131885,-0.21867306439947035,0.1279712407081515,144.07745,0.2665914427208041,0.2974285714285685,32.10191965091685,-166253 -2024-08-26 19:00:00+00:00,3971,144.509,144.602,144.498,144.598,USD_JPY,H1,62.27436823104698,-0.05986962257941286,-0.18691237603545888,0.12704275345604601,144.11115,0.2879199952206232,0.2840714285714268,29.95787037249222,-162282 -2024-08-26 20:00:00+00:00,2745,144.598,144.612,144.456,144.524,USD_JPY,H1,68.827930174563,-0.04093419865890269,-0.15771674056014764,0.11678254190124496,144.15155,0.2862386701330496,0.26799999999999863,28.733639199880553,-165027 -2024-08-26 21:00:00+00:00,363,144.556,144.562,144.47,144.507,USD_JPY,H1,66.24605678233388,-0.026988391329069827,-0.1315710707139321,0.10458267938486226,144.1898,0.27966814914835353,0.252285714285713,29.086954640078567,-165390 -2024-08-26 22:00:00+00:00,2859,144.512,144.524,144.321,144.37,USD_JPY,H1,62.56206554121129,-0.0266834039187529,-0.11059353735489626,0.08391013343614336,144.2117,0.27553681569986693,0.25321428571428484,28.45539846085077,-168249 -2024-08-26 23:00:00+00:00,7249,144.367,144.53,144.234,144.508,USD_JPY,H1,63.147605083088905,-0.015131822284814689,-0.09150119434087996,0.07636937205606527,144.2386,0.27695646620817516,0.2615000000000001,27.340660946814694,-161000 -2024-08-27 00:00:00+00:00,11764,144.508,144.864,144.454,144.844,USD_JPY,H1,67.4719585849868,0.02089442340886194,-0.06902207079093159,0.08991649419979353,144.27855000000002,0.3038785205098645,0.2798571428571433,27.239720790698755,-149236 -2024-08-27 01:00:00+00:00,10522,144.846,144.954,144.605,144.699,USD_JPY,H1,61.93903471634242,0.03731504982513911,-0.047754646667717456,0.08506969649285656,144.31080000000003,0.31288598893120906,0.28578571428571664,28.2968408988238,-159758 -2024-08-27 02:00:00+00:00,8590,144.698,144.963,144.652,144.872,USD_JPY,H1,69.91452991453,0.06355554003934571,-0.025492609326304823,0.08904814936565053,144.36595,0.30955170891253403,0.2755714285714309,29.64866106111441,-151168 -2024-08-27 03:00:00+00:00,7731,144.874,144.975,144.804,144.836,USD_JPY,H1,61.13445378151264,0.0805182541382976,-0.00429043663338434,0.08480869077168195,144.4133,0.3051529555489813,0.2476428571428601,30.233349344035535,-158899 -2024-08-27 04:00:00+00:00,9036,144.836,144.838,144.624,144.638,USD_JPY,H1,63.32970620239399,0.07709567112024729,0.011986784917341987,0.06510888620290531,144.45200000000003,0.27985466146474397,0.23778571428571688,28.453910908436796,-167935 -2024-08-27 05:00:00+00:00,9034,144.637,144.894,144.572,144.795,USD_JPY,H1,58.70098039215659,0.08605979358623017,0.026801386651119627,0.059258406935110544,144.49325,0.26550327080249075,0.22700000000000184,25.675227217432035,-158901 -2024-08-27 06:00:00+00:00,12482,144.792,144.864,144.646,144.827,USD_JPY,H1,61.2623762376238,0.09465493462272434,0.04037209624544057,0.054282838377283774,144.53289999999998,0.2521887137309048,0.23142857142857412,23.25251345148647,-146419 -2024-08-27 07:00:00+00:00,16765,144.83,145.176,144.783,144.998,USD_JPY,H1,63.710144927535836,0.11395135640773901,0.055087948277900256,0.05886340812983876,144.57605,0.2543452843069038,0.24221428571428913,24.31014627828355,-129654 -2024-08-27 08:00:00+00:00,12464,144.999,145.154,144.939,145.062,USD_JPY,H1,65.70621468926578,0.1328764577332322,0.07064565016896665,0.06223080756426555,144.63215,0.2291612336712738,0.24671428571429033,24.17748097296919,-117190 -2024-08-27 09:00:00+00:00,12262,145.061,145.075,144.736,144.836,USD_JPY,H1,56.25,0.12816106466650012,0.08214873306847335,0.04601233159802677,144.65335,0.22732802051779002,0.26350000000000356,23.51680010208144,-129452 -2024-08-27 10:00:00+00:00,11805,144.834,144.862,144.681,144.782,USD_JPY,H1,56.84713375796209,0.11869845112798316,0.08945867668037531,0.02923977444760785,144.68505,0.19506502955355573,0.26528571428571623,21.218852478728955,-141257 -2024-08-27 11:00:00+00:00,13061,144.779,144.885,144.508,144.536,USD_JPY,H1,50.68622811168946,0.09030810204649242,0.08962856175359873,0.0006795402928936878,144.68630000000002,0.1939680113805971,0.2856428571428568,17.729322338314358,-154318 -2024-08-27 12:00:00+00:00,14075,144.532,144.608,144.336,144.392,USD_JPY,H1,50.518867924528095,0.055548619409449884,0.08281257328476897,-0.02726395387531909,144.68275,0.1988580225264844,0.2905714285714274,16.071327955199926,-168393 -2024-08-27 13:00:00+00:00,17192,144.384,144.489,144.239,144.336,USD_JPY,H1,45.78017664376844,0.02321513735012104,0.07089308609783938,-0.04767794874771834,144.6733,0.21087664133317194,0.28728571428571364,15.36407017919261,-185585 -2024-08-27 14:00:00+00:00,19881,144.347,144.508,144.155,144.256,USD_JPY,H1,33.50168350168377,-0.00876368919037418,0.05496173104019667,-0.06372542023057085,144.6608,0.22802760674723577,0.283214285714286,15.92588637222398,-205466 -2024-08-27 15:00:00+00:00,13702,144.256,144.371,144.184,144.268,USD_JPY,H1,36.93147362037587,-0.032761189309667316,0.03741714697022388,-0.0701783362798912,144.6443,0.24417834286241813,0.27164285714285696,17.15321452024543,-191764 -2024-08-27 16:00:00+00:00,8709,144.268,144.296,144.104,144.139,USD_JPY,H1,27.165109034268042,-0.061479900920971886,0.017637737391984723,-0.07911763831295661,144.62505000000002,0.26815970784675414,0.26314285714285496,19.231360713258134,-200473 -2024-08-27 17:00:00+00:00,9205,144.138,144.166,143.946,144.152,USD_JPY,H1,28.381795195953586,-0.08224265331250535,-0.002338340748913292,-0.07990431256359207,144.6073,0.287440813068833,0.2666428571428554,21.27160606032252,-191268 -2024-08-27 18:00:00+00:00,8248,144.152,144.154,143.918,144.018,USD_JPY,H1,29.578392621870364,-0.10826198748466709,-0.023523070096064053,-0.08473891738860304,144.58970000000002,0.31242600802639436,0.26821428571428335,24.43289893180069,-199516 -2024-08-27 19:00:00+00:00,6616,144.025,144.07,143.945,143.978,USD_JPY,H1,20.842255531763414,-0.13060463405844303,-0.04493938288853985,-0.08566525116990317,144.5632,0.3409002940615288,0.2541428571428546,28.534372773493395,-206132 -2024-08-27 20:00:00+00:00,4005,143.978,144.012,143.93,143.954,USD_JPY,H1,18.66475233309376,-0.14853571460417925,-0.06565864923166773,-0.08287706537251152,144.5187,0.3598770403559068,0.24442857142856717,32.406723602618975,-210137 -2024-08-27 21:00:00+00:00,856,143.968,144.026,143.936,143.945,USD_JPY,H1,7.229894394800894,-0.161609516004944,-0.08484882258632298,-0.07676069341862102,144.48100000000002,0.3789817381608718,0.2227857142857102,37.35108382460708,-210993 -2024-08-27 22:00:00+00:00,4587,143.946,143.951,143.684,143.871,USD_JPY,H1,2.0145044319079943,-0.1759139528174387,-0.10306184863254614,-0.07285210418489257,144.43095,0.3905485312067128,0.2264999999999954,42.48785217959171,-215580 -2024-08-27 23:00:00+00:00,7432,143.862,143.988,143.725,143.97,USD_JPY,H1,11.131059245958042,-0.1772189793478276,-0.11789327477560244,-0.05932570457222516,144.38765,0.39128308162306785,0.22107142857142442,48.39541888587888,-208148 -2024-08-28 00:00:00+00:00,12850,143.972,144.248,143.912,144.112,USD_JPY,H1,22.12978369384156,-0.16489421119530334,-0.12729346205954262,-0.037600749135760725,144.36135,0.39124770383204344,0.23214285714285307,51.6494154481764,-195298 -2024-08-28 01:00:00+00:00,12985,144.114,144.396,144.09,144.364,USD_JPY,H1,42.88079470198654,-0.13325635339836595,-0.1284860403273073,-0.004770313071058657,144.33980000000003,0.37774171064937273,0.22707142857142465,53.32325422282811,-182313 -2024-08-28 02:00:00+00:00,10606,144.366,144.465,144.297,144.444,USD_JPY,H1,52.2727272727271,-0.10056850066973766,-0.12290253239579337,0.022334031726055706,144.32065,0.3610836431253606,0.2196428571428543,53.62883976647101,-171707 -2024-08-28 03:00:00+00:00,8477,144.444,144.492,144.326,144.414,USD_JPY,H1,53.488372093022306,-0.07620544225645176,-0.11356311436792504,0.037357672111473283,144.29145,0.32526142921133955,0.21364285714285408,53.14926538084013,-180184 -2024-08-28 04:00:00+00:00,8026,144.414,144.541,144.344,144.356,USD_JPY,H1,54.56204379562052,-0.060875918516671845,-0.10302567519767442,0.04214975668100257,144.25615,0.27102170716302015,0.20249999999999652,51.23091261047252,-188210 -2024-08-28 05:00:00+00:00,11259,144.354,144.54,144.29,144.396,USD_JPY,H1,55.69395017793577,-0.04498098204228995,-0.09141673656659753,0.04643575452430758,144.23415,0.23722680124130133,0.20699999999999566,48.14287618991322,-176951 -2024-08-28 06:00:00+00:00,12357,144.397,144.606,144.366,144.534,USD_JPY,H1,67.43159752868527,-0.021006533442175623,-0.07733469594171316,0.05632816249953754,144.22175,0.21224982168683312,0.21042857142856722,45.6691338035806,-164594 -2024-08-28 07:00:00+00:00,13014,144.535,144.573,144.338,144.563,USD_JPY,H1,67.88511749347352,0.0003296474660601234,-0.0618018272601585,0.062131474726218626,144.2231,0.2144284691570666,0.21149999999999686,43.79892971119806,-151580 -2024-08-28 08:00:00+00:00,11120,144.565,144.578,144.32,144.347,USD_JPY,H1,63.36311941511066,-0.00018849737756454488,-0.04947916128363972,0.04929066390607517,144.22085,0.2127927765537591,0.21307142857142683,42.36630648306676,-162700 -2024-08-28 09:00:00+00:00,10418,144.348,144.349,144.062,144.281,USD_JPY,H1,62.0525059665875,-0.0058572604615392265,-0.040754781119219624,0.0348975206576804,144.2181,0.2115782546924741,0.2246428571428538,38.43360706164554,-173118 -2024-08-28 10:00:00+00:00,10314,144.28,144.494,144.248,144.414,USD_JPY,H1,66.83748169838958,0.0003778369565452522,-0.03252825750406665,0.0329060944606119,144.226,0.2159719766563249,0.23635714285714066,35.50758530980636,-162804 -2024-08-28 11:00:00+00:00,9996,144.414,144.49,144.271,144.327,USD_JPY,H1,63.22714681440549,-0.0016815919831856263,-0.026358924399890443,0.024677332416704816,144.22895,0.21697646601903947,0.24557142857142772,29.199891582070286,-172800 -2024-08-28 12:00:00+00:00,12975,144.325,144.778,144.313,144.709,USD_JPY,H1,73.91552511415611,0.027196993229068767,-0.0156477408740986,0.042844734103167366,144.25745,0.24067984295779946,0.2597142857142854,25.81255078296488,-159825 -2024-08-28 13:00:00+00:00,17380,144.708,145.043,144.7,144.843,USD_JPY,H1,74.4264129826533,0.06020218684861334,-0.00047775532955621203,0.06067994217816955,144.29199999999997,0.2722696031625378,0.265428571428572,23.40889946485026,-142445 -2024-08-28 14:00:00+00:00,16852,144.842,144.842,144.444,144.49,USD_JPY,H1,59.45945945946026,0.057215347811506945,0.01106086529865642,0.04615448251285052,144.3156,0.26768724871039334,0.2698571428571463,21.528264502475558,-159297 -2024-08-28 15:00:00+00:00,16394,144.49,144.628,144.35,144.474,USD_JPY,H1,53.12145289443787,0.052946851724755106,0.019438062583876158,0.033508789140878945,144.3404,0.25754803326369485,0.2678571428571469,20.344783477645468,-175691 -2024-08-28 16:00:00+00:00,11440,144.474,144.76,144.471,144.742,USD_JPY,H1,57.641025641025955,0.07037812286216649,0.029626074639534226,0.040752048222632266,144.3798,0.2555921091900326,0.2765000000000027,20.669920072387402,-164251 -2024-08-28 17:00:00+00:00,10747,144.742,144.812,144.572,144.634,USD_JPY,H1,55.42406311637095,0.07461768716802908,0.0386243971452332,0.03599329002279588,144.41424999999998,0.23985190050328709,0.28178571428571786,21.828292620929112,-174998 -2024-08-28 18:00:00+00:00,11377,144.634,144.731,144.511,144.655,USD_JPY,H1,57.50878955298878,0.07876415279605453,0.046652348275397465,0.03211180452065707,144.45345,0.20839700842985204,0.28342857142857475,21.718836492446776,-163621 -2024-08-28 19:00:00+00:00,8104,144.652,144.763,144.652,144.704,USD_JPY,H1,57.700000000000635,0.08502404292860888,0.05432668720603975,0.030697355722569125,144.49015,0.1816982097831388,0.27350000000000463,22.55130687261369,-155517 -2024-08-28 20:00:00+00:00,9948,144.704,144.777,144.415,144.591,USD_JPY,H1,51.44303797468398,0.07994533527826775,0.05945041682048535,0.020494918457782396,144.51409999999998,0.1594351541719364,0.28221428571429136,21.532299727421357,-165465 -2024-08-28 21:00:00+00:00,388,144.531,144.573,144.44,144.462,USD_JPY,H1,47.56626506024098,0.06476463458037074,0.060513260372462435,0.004251374207908304,144.51899999999998,0.15604924987273203,0.2749285714285768,19.334836994401567,-165853 -2024-08-28 22:00:00+00:00,5839,144.462,144.484,144.282,144.298,USD_JPY,H1,48.788927335639976,0.0390502436110296,0.05622065702017587,-0.017170413409146268,144.5117,0.1630024538611927,0.27092857142857596,17.4738021039887,-171692 -2024-08-28 23:00:00+00:00,7284,144.298,144.472,144.222,144.438,USD_JPY,H1,53.743443013828895,0.02962671514660542,0.050901868645461784,-0.021275153498856364,144.5129,0.16233231012999796,0.2682857142857204,17.507066524950158,-164408 -2024-08-29 00:00:00+00:00,12587,144.435,144.598,144.274,144.432,USD_JPY,H1,50.456852791878184,0.02142734993776685,0.0450069649039228,-0.023579614966155953,144.5167,0.1593278974698147,0.2738571428571492,16.685700176052755,-176995 -2024-08-29 01:00:00+00:00,11677,144.434,144.666,144.346,144.634,USD_JPY,H1,57.362110311750286,0.030873119646656733,0.042180195852469585,-0.011307076205812852,144.5286,0.1587253170751411,0.2810714285714328,16.219418750023163,-165318 -2024-08-29 02:00:00+00:00,8662,144.634,144.7,144.453,144.588,USD_JPY,H1,46.54088050314437,0.03425230537700941,0.04059461775737755,-0.0063423123803681425,144.53130000000002,0.15928032212879703,0.26550000000000296,13.22906008224491,-173980 -2024-08-29 03:00:00+00:00,7720,144.589,144.616,144.48,144.527,USD_JPY,H1,40.57279236276852,0.031643379036097485,0.038804370013121536,-0.007160990977024051,144.5295,0.15910655141023936,0.2507142857142891,11.247657108128717,-181700 -2024-08-29 04:00:00+00:00,9390,144.526,144.72,144.462,144.673,USD_JPY,H1,56.228727025186735,0.040885463765732766,0.03922058876364379,0.001664875002088978,144.54579999999999,0.15609632642299906,0.24071428571428807,9.431187542315595,-172310 -2024-08-29 05:00:00+00:00,10612,144.671,144.864,144.56,144.618,USD_JPY,H1,54.77453580901863,0.04327301774173975,0.04003107455926298,0.003241943182476767,144.56265,0.14370484175508103,0.24257142857143169,9.967610127103782,-182922 -2024-08-29 06:00:00+00:00,11194,144.619,144.676,144.464,144.584,USD_JPY,H1,43.79905808477302,0.04193821794814312,0.04041250323703901,0.0015257147111041106,144.57115,0.13941315903563897,0.2370714285714318,8.859529663414657,-194116 -2024-08-29 07:00:00+00:00,12741,144.567,144.848,144.558,144.731,USD_JPY,H1,53.693830921553975,0.052141001950900545,0.04275820297981132,0.009382798971089228,144.59134999999998,0.13120224431140678,0.24064285714286118,8.35399889674701,-181375 -2024-08-29 08:00:00+00:00,18168,144.728,144.748,144.47,144.691,USD_JPY,H1,51.35135135135141,0.0563495534977676,0.04547647308340257,0.010873080414365029,144.59044999999998,0.1304120896346422,0.2447857142857178,8.148583061653072,-199543 -2024-08-29 09:00:00+00:00,13206,144.69,144.74,144.443,144.522,USD_JPY,H1,43.73278236914543,0.045523210082961896,0.04548582048331444,3.7389599647455474e-05,144.57440000000003,0.11672973718759046,0.25807142857143056,7.238546078848946,-212749 -2024-08-29 10:00:00+00:00,11389,144.522,144.59,144.463,144.49,USD_JPY,H1,46.316557257476276,0.03396954262026952,0.04318256491070546,-0.00921302229043594,144.5744,0.11672973718759046,0.24128571428571735,9.145659277624341,-224138 -2024-08-29 11:00:00+00:00,12981,144.489,144.707,144.464,144.592,USD_JPY,H1,54.836309523810534,0.03266715879485105,0.041079483687534585,-0.008412324892683537,144.58030000000002,0.11434578199343114,0.24914285714285914,11.487329650107968,-211157 -2024-08-29 12:00:00+00:00,19584,144.592,145.426,144.542,145.396,USD_JPY,H1,77.67137096774222,0.09541124942970214,0.051945836835968096,0.04346541259373404,144.613,0.21352406487520148,0.297857142857144,16.283880574559905,-191573 -2024-08-29 13:00:00+00:00,20767,145.397,145.499,145.264,145.375,USD_JPY,H1,75.12064343163635,0.14180720363731325,0.06991811019623713,0.07188909344107612,144.65005,0.2732847896991882,0.2967857142857144,21.783931133248405,-212340 -2024-08-29 14:00:00+00:00,19684,145.372,145.556,145.188,145.35,USD_JPY,H1,74.36305732484148,0.17454697170722966,0.09084388249843564,0.08370308920879402,144.6848,0.3149570730432489,0.2999285714285723,26.668777546759436,-232024 -2024-08-29 15:00:00+00:00,15247,145.349,145.394,144.977,144.988,USD_JPY,H1,58.6594911937383,0.1693311549904024,0.106541336996829,0.06278981799357342,144.699,0.3221874249677934,0.3068571428571443,29.776840726218236,-247271 -2024-08-29 16:00:00+00:00,11588,144.987,145.048,144.903,145.006,USD_JPY,H1,60.36706349206384,0.16475088656565617,0.11818324691059442,0.04656763965506175,144.71975,0.32817387475329535,0.2995714285714318,32.26609549483418,-235683 -2024-08-29 17:00:00+00:00,9526,145.007,145.026,144.819,144.856,USD_JPY,H1,57.814726840855435,0.1473190422264281,0.12401040597376117,0.023308636252666937,144.73945,0.3236820198364139,0.3046428571428602,32.684339128165426,-245209 -2024-08-29 18:00:00+00:00,13922,144.856,144.898,144.728,144.778,USD_JPY,H1,52.577319587628686,0.1257605426190196,0.12436043330281286,0.001400109316206724,144.76344999999998,0.30657007006585263,0.2983571428571444,34.44206312459124,-259131 -2024-08-29 19:00:00+00:00,13871,144.78,144.94,144.756,144.92,USD_JPY,H1,57.10922787193976,0.11876444699933586,0.12324123604211748,-0.00447678904278162,144.78754999999998,0.2984779767371254,0.2897857142857155,34.56222183990566,-245260 -2024-08-29 20:00:00+00:00,10923,144.921,145.016,144.903,144.993,USD_JPY,H1,59.45446139620898,0.11775309633435427,0.12214360810056485,-0.004390511766210581,144.8156,0.28953236337112237,0.28271428571428764,36.779239794628566,-234337 -2024-08-29 21:00:00+00:00,460,144.971,145.044,144.946,145.001,USD_JPY,H1,56.66996047430864,0.11625698859015188,0.12096628419848227,-0.004709295608330388,144.83395000000002,0.28904661337312687,0.2690000000000014,37.88430126589368,-233877 -2024-08-29 22:00:00+00:00,2785,145.002,145.034,144.84,144.906,USD_JPY,H1,55.17075517075531,0.10618161085790234,0.11800934953036629,-0.01182773867246395,144.84985,0.2834983105257195,0.2630000000000012,39.06188108312903,-236662 -2024-08-29 23:00:00+00:00,5048,144.906,145.076,144.843,144.894,USD_JPY,H1,59.67741935483924,0.09612048459072753,0.11363157654243855,-0.017511091951711022,144.8682,0.2731913922652548,0.2584285714285731,40.843181661319605,-241710 -2024-08-30 00:00:00+00:00,11139,144.894,144.948,144.652,144.728,USD_JPY,H1,55.787937743190696,0.07390028042590302,0.10568531731913144,-0.031785036893228424,144.87095,0.27139396003720795,0.27050000000000246,39.75200541818301,-252849 -2024-08-30 01:00:00+00:00,10581,144.727,144.88,144.688,144.765,USD_JPY,H1,54.34455047714658,0.0586006870725555,0.09626839126981626,-0.03766770419726076,144.8783,0.2661222710027198,0.2668571428571462,38.102491097802776,-242268 -2024-08-30 02:00:00+00:00,7798,144.764,144.844,144.703,144.771,USD_JPY,H1,23.80553227158387,0.046424644564098116,0.08629964192867264,-0.03987499736457452,144.88765,0.2584113967412732,0.213785714285718,36.401174637672526,-234470 -2024-08-30 03:00:00+00:00,5456,144.772,144.811,144.754,144.798,USD_JPY,H1,25.938281901584972,0.0385098004954898,0.07674167364203607,-0.038231873146546275,144.89100000000002,0.25670236701079074,0.2010714285714345,35.399344293181045,-229014 -2024-08-30 04:00:00+00:00,7163,144.798,144.888,144.776,144.848,USD_JPY,H1,29.493464052288658,0.03585845770106744,0.06856503045384235,-0.032706572752774915,144.89885,0.25263272169509077,0.18278571428571816,33.917798809154846,-221851 -2024-08-30 05:00:00+00:00,6597,144.846,144.948,144.791,144.86,USD_JPY,H1,42.67734553775844,0.034329816392613566,0.0617179876415966,-0.02738817124898303,144.91574999999997,0.23691256985505302,0.16421428571429025,32.1691217420799,-215254 -2024-08-30 06:00:00+00:00,9183,144.861,145.093,144.861,144.954,USD_JPY,H1,47.26315789473728,0.04023951546554372,0.057422293206386026,-0.017182777740842307,144.93895,0.21470407411038736,0.17050000000000207,29.204772175789167,-206071 -2024-08-30 07:00:00+00:00,9464,144.953,145.01,144.818,144.931,USD_JPY,H1,54.55650060753441,0.04257629376522232,0.05445309331815329,-0.011876799552930972,144.95589999999999,0.19865359950813744,0.1694285714285704,27.184027076756177,-215535 -2024-08-30 08:00:00+00:00,8935,144.93,145.135,144.852,145.12,USD_JPY,H1,68.30835117773093,0.05899882612237661,0.05536223987899796,0.0036365862433786547,144.9421,0.17460237524045308,0.17749999999999894,27.653142141826816,-206600 -2024-08-30 09:00:00+00:00,7736,145.12,145.157,145.021,145.132,USD_JPY,H1,63.1840796019911,0.07215039618995434,0.05871987114118924,0.013430525048765095,144.92995000000002,0.14955036985506093,0.1740714285714294,28.29884509077947,-198864 -2024-08-30 10:00:00+00:00,8395,145.134,145.298,145.109,145.294,USD_JPY,H1,66.85330347144546,0.09455518303843746,0.06588693352063889,0.028668249517798575,144.92714999999998,0.14158399949589048,0.17950000000000038,28.616903666669398,-190469 -2024-08-30 11:00:00+00:00,9938,145.294,145.46,145.228,145.428,USD_JPY,H1,70.95191364082444,0.12172069771420979,0.07705368635935307,0.04466701135485672,144.94915,0.18040051192496015,0.18907142857142795,29.955133323318456,-180531 -2024-08-30 12:00:00+00:00,15906,145.424,145.75,145.252,145.636,USD_JPY,H1,82.24381625441717,0.15820968274263691,0.09328488563600984,0.06492479710662707,144.98065000000003,0.23697974034599154,0.21078571428571383,33.24266466181657,-164625 -2024-08-30 13:00:00+00:00,17265,145.638,145.693,145.427,145.598,USD_JPY,H1,80.39723661485462,0.18196362049718573,0.11102063260824502,0.07094298788894071,145.01775,0.27194075877279716,0.21314285714285777,36.06713205511029,-181890 -2024-08-30 14:00:00+00:00,20152,145.592,145.722,145.318,145.589,USD_JPY,H1,93.00699300699353,0.1977826472792401,0.12837303554244406,0.06940961173679605,145.0583,0.29388900512721977,0.22085714285714175,40.83617123085333,-202042 -2024-08-30 15:00:00+00:00,17060,145.59,145.972,145.558,145.956,USD_JPY,H1,94.74079639368942,0.23719889165522545,0.15013820676500034,0.08706068489022512,145.11010000000002,0.3534877202781456,0.2367142857142852,45.75963061637007,-184982 -2024-08-30 16:00:00+00:00,12741,145.957,146.25,145.91,146.226,USD_JPY,H1,95.61128526645811,0.2869159048653671,0.1774937463850737,0.10942215848029341,145.17175,0.4310100590696134,0.2509285714285718,47.98744331954914,-172241 -2024-08-30 17:00:00+00:00,9532,146.228,146.246,146.076,146.154,USD_JPY,H1,91.34146341463432,0.3168546940771648,0.20536593592349195,0.11148875815367287,145.2294,0.4811615769412766,0.25900000000000034,49.027373474922975,-181773 -2024-08-30 18:00:00+00:00,7081,146.156,146.176,146.051,146.093,USD_JPY,H1,87.70442156268896,0.3318340338404937,0.23065955550689232,0.10117447833360138,145.28875,0.5114263721958541,0.2599285714285721,50.96942980301089,-188854 -2024-08-30 19:00:00+00:00,4915,146.094,146.248,146.072,146.188,USD_JPY,H1,88.29296424452104,0.34736674694462977,0.2540009937944398,0.09336575315018997,145.35345,0.5399163165847408,0.26128571428571334,54.690477265066,-183939 -2024-08-30 20:00:00+00:00,5164,146.184,146.218,146.091,146.203,USD_JPY,H1,87.73413897280949,0.356774237303199,0.2745556424961917,0.08221859480700733,145.42720000000003,0.5506192303301606,0.25371428571428517,60.12940159751851,-178775 -2024-09-01 21:00:00+00:00,585,146.084,146.193,146.084,146.118,USD_JPY,H1,84.5661036691897,0.35329834812770855,0.2903041836224951,0.06299416450521345,145.49485,0.5480882828130308,0.24778571428571589,65.52991048888889,-179360 -2024-09-01 22:00:00+00:00,2279,146.114,146.45,146.11,146.448,USD_JPY,H1,85.73735199138804,0.37287366745596273,0.3068180803891886,0.06605558706677411,145.5787,0.559677265996186,0.2518571428571436,69.24445266169663,-177081 -2024-09-01 23:00:00+00:00,7687,146.446,146.602,146.36,146.408,USD_JPY,H1,83.82820784729445,0.38077030034898485,0.32160852438114784,0.059161775967837005,145.6592,0.5572571550101786,0.25942857142856973,73.16462939708435,-184768 -2024-09-02 00:00:00+00:00,11668,146.407,146.548,146.162,146.194,USD_JPY,H1,73.21981424148495,0.365546633238381,0.3303961461525945,0.0351504870857865,145.7265,0.5349645831560114,0.2734999999999985,75.11460270035863,-196436 -2024-09-02 01:00:00+00:00,9056,146.195,146.283,146.056,146.218,USD_JPY,H1,71.60831509846734,0.35136801503790593,0.33459051992965677,0.016777495108249163,145.79440000000002,0.5045110608248744,0.27314285714285397,75.46564425589008,-187380 -2024-09-02 02:00:00+00:00,8942,146.216,146.253,145.903,145.971,USD_JPY,H1,58.971612212104965,0.31655151342741306,0.33098271862920803,-0.014431205201794972,145.84525000000002,0.4650578769527942,0.2625714285714257,72.20230851665879,-196322 -2024-09-02 03:00:00+00:00,9120,145.97,146.015,145.828,145.952,USD_JPY,H1,59.57792207792131,0.2841505333801422,0.32161628157939487,-0.03746574819925269,145.8963,0.4124840156012298,0.25692857142856595,68.91533964498642,-205442 -2024-09-02 04:00:00+00:00,7021,145.953,145.953,145.776,145.935,USD_JPY,H1,59.32112068965501,0.25417084207950325,0.30812719367941654,-0.0539563515999133,145.93705,0.3698052794452515,0.24071428571427994,64.98840106333782,-212463 -2024-09-02 05:00:00+00:00,6844,145.931,146.219,145.929,146.11,USD_JPY,H1,54.627403846154394,0.24174606009660238,0.29485096696285373,-0.053104906866251356,145.98595,0.3189080835575571,0.2318571428571354,61.20115139980562,-205619 -2024-09-02 06:00:00+00:00,9242,146.11,146.298,146.064,146.162,USD_JPY,H1,47.786998616874456,0.23340475159039897,0.2825617238883628,-0.04915697229796384,146.02935,0.27595504490969325,0.22428571428570723,56.53792265555624,-196377 -2024-09-02 07:00:00+00:00,13551,146.159,146.479,146.127,146.475,USD_JPY,H1,59.51393005334885,0.24917831613296926,0.2758850423372841,-0.026706726204314857,146.0817,0.25433548083439256,0.23728571428570636,52.544093135163415,-182826 -2024-09-02 08:00:00+00:00,14185,146.476,146.848,146.434,146.704,USD_JPY,H1,66.46900269541787,0.2769646893086417,0.2761009717315556,0.0008637175770860872,146.1351,0.26760357556191805,0.2579285714285646,49.94061191961202,-168641 -2024-09-02 09:00:00+00:00,11816,146.702,146.747,146.6,146.68,USD_JPY,H1,63.78923766816158,0.2936638171322272,0.27961354081168993,0.014050276320537292,146.1892,0.2626309397153897,0.25585714285713834,46.916360225813705,-180457 -2024-09-02 10:00:00+00:00,6921,146.682,146.809,146.628,146.806,USD_JPY,H1,65.91029023746692,0.31345186523182633,0.28638120569571723,0.0270706595361091,146.25005000000002,0.25717830691681554,0.2597142857142834,43.938139701047284,-173536 -2024-09-02 11:00:00+00:00,6962,146.812,146.993,146.751,146.991,USD_JPY,H1,71.87969924812042,0.340141055449692,0.2971331756465122,0.04300787980317977,146.30180000000001,0.2960843762587639,0.269214285714282,41.07843184508365,-166574 -2024-09-02 12:00:00+00:00,8137,146.992,146.992,146.913,146.984,USD_JPY,H1,66.0287081339711,0.35661673376338854,0.30902988726988745,0.04758684649350109,146.33970000000002,0.33218385836670294,0.2505714285714252,37.5151237512498,-174711 -2024-09-02 13:00:00+00:00,8558,146.983,147.18,146.834,146.965,USD_JPY,H1,66.86856450636017,0.36394535086083124,0.3200129799880762,0.04393237087275503,146.38025,0.3569022975129694,0.2579999999999976,33.95637551799445,-183269 -2024-09-02 14:00:00+00:00,8897,146.966,147.018,146.919,146.962,USD_JPY,H1,76.6666666666662,0.36530030327782015,0.32907044464602503,0.03622985863179512,146.4237,0.3726412271618499,0.23749999999999716,33.800046701310144,-192166 -2024-09-02 15:00:00+00:00,4908,146.959,147.072,146.908,146.952,USD_JPY,H1,75.73632538569427,0.3614011884674255,0.3355365934103052,0.025864595057120354,146.4619,0.386123091870374,0.23300000000000004,35.56998661911591,-197074 -2024-09-02 16:00:00+00:00,4140,146.954,146.99,146.81,146.819,USD_JPY,H1,82.31707317073014,0.34361810776451307,0.33715289628114675,0.006465211483366318,146.49269999999999,0.38894243921561833,0.22085714285714378,39.57931069289595,-201214 -2024-09-02 17:00:00+00:00,883,146.828,146.896,146.824,146.894,USD_JPY,H1,84.42982456140247,0.331752524789124,0.3360728219827422,-0.0043202971936182055,146.5315,0.388301361495035,0.213000000000002,44.66395488242301,-200331 -2024-09-02 18:00:00+00:00,773,146.894,146.91,146.858,146.904,USD_JPY,H1,85.59882439382662,0.31947319311564115,0.33275289620932197,-0.013279703093680817,146.5543,0.39644261544259374,0.20407142857143054,49.99869736180931,-199558 -2024-09-02 19:00:00+00:00,659,146.904,146.904,146.86,146.89,USD_JPY,H1,82.49999999999764,0.3050951048459467,0.327221337936647,-0.022126233090700276,146.57840000000002,0.4016965861680111,0.1865000000000013,55.3115261994583,-200217 -2024-09-02 20:00:00+00:00,1280,146.912,146.932,146.855,146.914,USD_JPY,H1,82.08191126279635,0.2922678834968053,0.32023064704867865,-0.027962763551873326,146.6144,0.39767659430110996,0.17528571428571485,61.36575104438149,-198937 -2024-09-02 21:00:00+00:00,400,146.908,146.926,146.856,146.907,USD_JPY,H1,74.94226327944546,0.27832897351103725,0.3118503123411504,-0.033521338830113157,146.64884999999998,0.3913224911451984,0.15514285714285694,66.75487461448792,-199337 -2024-09-02 22:00:00+00:00,1055,146.904,146.967,146.85,146.953,USD_JPY,H1,68.22840409955984,0.2679058506047056,0.3030614199938615,-0.03515556938915587,146.69795,0.36232748704135526,0.13392857142857142,71.07254100674014,-198282 -2024-09-02 23:00:00+00:00,3250,146.952,146.964,146.714,146.75,USD_JPY,H1,54.06032482598557,0.2404927958990868,0.2905476951749066,-0.0500548992758198,146.73785,0.3169567917963274,0.14128571428571288,72.98996005092069,-201532 -2024-09-03 00:00:00+00:00,14896,146.75,147.212,146.667,147.127,USD_JPY,H1,64.4204851752017,0.24634874681748897,0.28170790550342306,-0.03535915868593409,146.79745,0.266023045049812,0.16728571428571115,75.41536112933987,-186636 -2024-09-03 01:00:00+00:00,12676,147.126,147.147,146.591,146.618,USD_JPY,H1,37.02157272094612,0.20752536082119377,0.2668713965669772,-0.059346035745783454,146.82285,0.21658941868688708,0.1897142857142821,75.70955455683482,-199312 -2024-09-03 02:00:00+00:00,13325,146.616,146.766,146.566,146.642,USD_JPY,H1,38.239339752407,0.17665774659820954,0.2488286665732237,-0.07217091997501415,146.84685000000002,0.1582424105533067,0.19835714285713987,76.28001453756372,-185987 -2024-09-03 03:00:00+00:00,13048,146.642,146.737,146.449,146.546,USD_JPY,H1,36.316133246244235,0.1428024050092631,0.2276234142604316,-0.08482100925116848,146.85039999999998,0.15004539654400398,0.19421428571428123,74.08406161194371,-199035 -2024-09-03 04:00:00+00:00,11989,146.546,146.577,146.396,146.536,USD_JPY,H1,36.15084525357658,0.11385246610046806,0.2048692246284389,-0.09101675852797084,146.842,0.16283055439651117,0.20007142857142565,70.59808319006045,-211024 -2024-09-03 05:00:00+00:00,10042,146.536,146.596,146.14,146.312,USD_JPY,H1,31.735159817352084,0.07200448016223504,0.17829627573519816,-0.10629179557296312,146.8236,0.19889785787200492,0.22092857142856864,68.08675239568905,-221066 -2024-09-03 06:00:00+00:00,13670,146.314,146.41,145.993,146.02,USD_JPY,H1,29.09471480900112,0.015103585422451715,0.14565773767264886,-0.13055415225019715,146.7843,0.26815354983107453,0.2378571428571397,65.28729784886784,-234736 -2024-09-03 07:00:00+00:00,18931,146.019,146.245,145.89,145.95,USD_JPY,H1,25.23609653725042,-0.03523305387992082,0.10947957936213494,-0.14471263324205574,146.73225,0.3216215289214928,0.25771428571428395,62.02398215605923,-253667 -2024-09-03 08:00:00+00:00,17632,145.95,146.02,145.61,145.812,USD_JPY,H1,23.156342182891123,-0.08527762251989657,0.07052813898572864,-0.1558057615056252,146.67365,0.37558169266568364,0.28328571428571286,59.007918018479245,-271299 -2024-09-03 09:00:00+00:00,12680,145.81,145.984,145.792,145.936,USD_JPY,H1,27.751865671642037,-0.11362276749400735,0.03369795768978144,-0.1473207251837888,146.62220000000002,0.403045720238171,0.29385714285714315,56.240902039971544,-258619 -2024-09-03 10:00:00+00:00,10317,145.934,146.068,145.864,146.036,USD_JPY,H1,30.225225225225273,-0.12655844782992176,0.0016466765858407992,-0.12820512441576257,146.5759,0.41496758271873424,0.30292857142857244,53.048296084774854,-248302 -2024-09-03 11:00:00+00:00,11474,146.036,146.238,145.894,146.176,USD_JPY,H1,34.466638334041036,-0.1240828874340707,-0.0234992362181415,-0.1005836512159292,146.5371,0.4142287570031388,0.32250000000000106,48.715732794640715,-236828 -2024-09-03 12:00:00+00:00,14547,146.18,146.29,145.875,145.884,USD_JPY,H1,29.43439784532471,-0.14402274310759822,-0.04760393759603285,-0.09641880551156537,146.49034999999998,0.43307253248316774,0.3437857142857134,44.26788876383123,-251375 -2024-09-03 13:00:00+00:00,20568,145.886,145.924,145.284,145.438,USD_JPY,H1,26.917663617170675,-0.19358219991042347,-0.07679959005891097,-0.1167826098515125,146.41754999999998,0.481335584293284,0.37164285714285733,43.53765562362498,-271943 -2024-09-03 14:00:00+00:00,25678,145.428,145.688,145.132,145.567,USD_JPY,H1,19.930609097918165,-0.2199141709108119,-0.10542250622929117,-0.11449166468152072,146.35070000000002,0.502594227846531,0.37242857142857133,43.79785370990934,-246265 -2024-09-03 15:00:00+00:00,16214,145.568,145.92,145.568,145.826,USD_JPY,H1,33.10580204778128,-0.2173775194619907,-0.1278135088758311,-0.08956401058615959,146.29749999999999,0.49880272439561896,0.3579285714285711,44.38571149453177,-230051 -2024-09-03 16:00:00+00:00,11304,145.832,145.924,145.712,145.768,USD_JPY,H1,31.62321278385174,-0.21753965841844547,-0.14575873878435397,-0.0717809196340915,146.24020000000002,0.49000060147235275,0.35878571428571604,45.237189034619355,-241355 -2024-09-03 17:00:00+00:00,10591,145.767,145.908,145.736,145.9,USD_JPY,H1,36.61971830985921,-0.2046576914080731,-0.15753852930909779,-0.04711916209897532,146.18985,0.4691718655707248,0.3505000000000028,48.66153174467563,-230764 -2024-09-03 18:00:00+00:00,9568,145.901,145.91,145.77,145.806,USD_JPY,H1,35.3883106485188,-0.1997312763269008,-0.16597707871265838,-0.03375419761424242,146.1325,0.44018447086455575,0.3475714285714296,51.48387715388002,-240332 -2024-09-03 19:00:00+00:00,9186,145.806,145.835,145.566,145.634,USD_JPY,H1,36.140637775960215,-0.2073162072310879,-0.17424490441634427,-0.03307130281474363,146.07670000000002,0.42836336023304,0.33421428571428585,52.31293350742673,-249518 -2024-09-03 20:00:00+00:00,7923,145.633,145.716,145.451,145.485,USD_JPY,H1,38.38471558836292,-0.22278227893971803,-0.18395237932101904,-0.03882989961869898,145.9946,0.3698206392726039,0.32335714285714395,52.891261410864175,-257441 -2024-09-03 21:00:00+00:00,386,145.504,145.556,145.43,145.444,USD_JPY,H1,38.87423043095853,-0.23563139746994466,-0.19428818295080416,-0.0413432145191405,145.9359,0.3586669617379711,0.3070000000000001,52.91256535761749,-257827 -2024-09-03 22:00:00+00:00,4029,145.443,145.56,145.272,145.342,USD_JPY,H1,39.499553172475316,-0.2511498647233452,-0.2056605193053124,-0.04548934541803282,145.87089999999998,0.3413470066015424,0.29828571428571543,51.86186452846425,-261856 -2024-09-03 23:00:00+00:00,10101,145.337,145.402,145.092,145.369,USD_JPY,H1,36.75852405417989,-0.25829225513868437,-0.21618686647198682,-0.04210538866669755,145.81205,0.3195980163792464,0.3067142857142845,50.71699286928644,-251755 -2024-09-04 00:00:00+00:00,18828,145.367,145.556,144.89,145.176,USD_JPY,H1,30.752014324081884,-0.27634065497818483,-0.2282176241732264,-0.04812303080495842,145.74405,0.30163510103866387,0.33971428571428575,50.79701329680273,-270583 -2024-09-04 01:00:00+00:00,12543,145.177,145.538,145.148,145.408,USD_JPY,H1,33.49097162510742,-0.26882483542249247,-0.23633906642307964,-0.03248576899941283,145.69885,0.2789258106785321,0.34300000000000147,53.11119346594338,-258040 -2024-09-04 02:00:00+00:00,11235,145.407,145.508,145.22,145.448,USD_JPY,H1,39.48891031822623,-0.25668195872876254,-0.24040764488421623,-0.016274313844546306,145.67025,0.273536464363112,0.3339285714285743,56.052891821291254,-246805 -2024-09-04 03:00:00+00:00,8553,145.449,145.552,145.272,145.315,USD_JPY,H1,46.50766609880781,-0.25485284498034844,-0.2432966849034427,-0.011556160076905742,145.6385,0.2761962497732481,0.3082142857142876,56.977899076270795,-255358 -2024-09-04 04:00:00+00:00,8086,145.316,145.542,145.214,145.252,USD_JPY,H1,40.70796460176994,-0.2555411137531678,-0.24574557067338773,-0.009795543079780061,145.6105,0.28589683448346875,0.2919285714285747,56.14723432955376,-263444 -2024-09-04 05:00:00+00:00,10604,145.252,145.258,145.033,145.17,USD_JPY,H1,28.392621870882962,-0.25970951676603704,-0.2485383598919176,-0.011171156874119431,145.5722,0.2912545639473884,0.2827857142857206,59.54989582956745,-274048 -2024-09-04 06:00:00+00:00,16566,145.171,145.318,144.856,144.878,USD_JPY,H1,24.600456621004696,-0.2833091542631223,-0.2554925187661585,-0.027816635496963782,145.5143,0.3087760386957496,0.3006428571428635,63.02936675945551,-290614 -2024-09-04 07:00:00+00:00,16501,144.878,145.048,144.756,144.985,USD_JPY,H1,23.50897510133295,-0.2900346918546859,-0.26240095338386404,-0.027633738470821845,145.45475,0.288635423782199,0.3092142857142924,66.42824114111326,-274113 -2024-09-04 08:00:00+00:00,12190,144.986,145.232,144.921,145.208,USD_JPY,H1,33.89008620689664,-0.27420957524574874,-0.264762677756241,-0.009446897489507722,145.42095,0.27498123853462536,0.32142857142857956,68.27439316559605,-261923 -2024-09-04 09:00:00+00:00,8907,145.207,145.271,145.072,145.108,USD_JPY,H1,35.257847533632955,-0.26666329214478424,-0.2651428006339497,-0.001520491510834554,145.40445,0.28366779582478213,0.316428571428578,69.62673545724631,-270830 -2024-09-04 10:00:00+00:00,9437,145.108,145.192,144.936,145.07,USD_JPY,H1,37.59713090257006,-0.2607434031950788,-0.26426292114617556,0.003519517951096729,145.3796,0.29036862228736987,0.31578571428571983,71.07056505197038,-280267 -2024-09-04 11:00:00+00:00,10245,145.07,145.094,144.864,144.892,USD_JPY,H1,34.751381215470076,-0.26733330896732355,-0.26487699871040515,-0.0024563102569183926,145.3329,0.2899026877899982,0.3232142857142902,72.7499289946495,-290512 -2024-09-04 12:00:00+00:00,15721,144.896,145.218,144.886,145.078,USD_JPY,H1,43.030623020063324,-0.25461220028211073,-0.26282403902474627,0.008211838742635535,145.2984,0.27612781168827466,0.32635714285714607,73.42401148463321,-274791 -2024-09-04 13:00:00+00:00,18505,145.078,145.151,144.75,144.794,USD_JPY,H1,36.63412366341305,-0.26439922680759764,-0.2631390765813166,-0.0012601502262810649,145.2431,0.2595562812270561,0.3328571428571487,73.80658354393003,-293296 -2024-09-04 14:00:00+00:00,30355,144.794,144.795,144.0,144.122,USD_JPY,H1,29.961977186312694,-0.32266086608760247,-0.27504343448257373,-0.04761743160502874,145.1589,0.33072773023318724,0.34207142857143175,74.36625245417727,-323651 -2024-09-04 15:00:00+00:00,20316,144.121,144.42,144.035,144.31,USD_JPY,H1,28.770301624130553,-0.3496332516649261,-0.28996139791904424,-0.05967185374588185,145.09269999999998,0.3616845237259637,0.34171428571428714,73.64876302744958,-303335 -2024-09-04 16:00:00+00:00,13591,144.31,144.374,144.012,144.05,USD_JPY,H1,25.089094796864032,-0.3875217788076668,-0.30947347409676873,-0.07804830471089808,145.02095,0.4177547095296778,0.3470000000000003,72.22371802978377,-316926 -2024-09-04 17:00:00+00:00,11885,144.048,144.084,143.946,144.076,USD_JPY,H1,27.04705446461631,-0.41071624561402587,-0.3297220284002202,-0.08099421721380567,144.95255,0.4551604083551322,0.33685714285714347,72.25013274882899,-305041 -2024-09-04 18:00:00+00:00,11532,144.077,144.128,143.858,143.891,USD_JPY,H1,25.87734845799328,-0.4389658564097374,-0.35157079400212365,-0.08739506240761374,144.88000000000002,0.5029489876477397,0.3327142857142848,72.51537012314,-316573 -2024-09-04 19:00:00+00:00,12066,143.884,143.948,143.796,143.823,USD_JPY,H1,26.006412540078387,-0.46152078388317364,-0.37356079197833364,-0.08795999190484,144.80270000000002,0.5411886624700902,0.3274999999999985,69.75521603348844,-328639 -2024-09-04 20:00:00+00:00,8505,143.824,143.876,143.711,143.735,USD_JPY,H1,28.04456396465629,-0.4809524702639578,-0.3950391276354585,-0.08591334262849931,144.73065000000003,0.5831685027472434,0.306285714285711,66.84518755661604,-337144 -2024-09-04 21:00:00+00:00,476,143.688,143.69,143.604,143.656,USD_JPY,H1,24.19417475728072,-0.4969977804453549,-0.4154308581974378,-0.08156692224791712,144.64305000000002,0.6071598657653372,0.29157142857142404,64.12619244765195,-337620 -2024-09-04 22:00:00+00:00,3150,143.654,143.749,143.513,143.624,USD_JPY,H1,16.778523489932226,-0.5064578065938008,-0.4336362478767104,-0.0728215587170904,144.55185,0.616799402233734,0.28621428571428,64.42261952218401,-340770 -2024-09-04 23:00:00+00:00,10431,143.618,143.687,143.186,143.338,USD_JPY,H1,15.56420233462967,-0.5309127238714098,-0.4530915430756503,-0.07782118079575945,144.453,0.6457959592755523,0.30778571428571005,65.76812594408652,-351201 -2024-09-05 00:00:00+00:00,16688,143.338,143.806,143.3,143.72,USD_JPY,H1,26.835964310226274,-0.5135493374208693,-0.46518310194469414,-0.048366235476175135,144.3764,0.6368314987957909,0.3256428571428529,66.23008919258763,-334513 -2024-09-05 01:00:00+00:00,15250,143.72,143.842,143.432,143.708,USD_JPY,H1,28.457059679766857,-0.4950503954733563,-0.4711565606504266,-0.02389383482292967,144.3033,0.6247365002145862,0.3384999999999983,66.32570835612022,-349763 -2024-09-05 02:00:00+00:00,11594,143.708,143.908,143.61,143.832,USD_JPY,H1,26.805658972449137,-0.46502358459736115,-0.4699299654398136,0.004906380842452429,144.251,0.6178381664832334,0.3360714285714254,68.06386161408865,-338169 -2024-09-05 03:00:00+00:00,9030,143.832,143.88,143.678,143.762,USD_JPY,H1,29.126213592232375,-0.44178293693559567,-0.46430055973897005,0.022517622803374382,144.18985,0.6016789907067608,0.3218571428571388,69.98217282707655,-347199 -2024-09-05 04:00:00+00:00,8190,143.768,143.856,143.49,143.578,USD_JPY,H1,36.29032258064454,-0.4332179515944574,-0.4580840381100676,0.024866086515610175,144.10835,0.5658352256571613,0.29121428571428154,70.18390088411563,-355389 -2024-09-05 05:00:00+00:00,9520,143.58,143.6,143.321,143.403,USD_JPY,H1,26.99137493657986,-0.43553065024067905,-0.4535733605361899,0.018042710295510855,144.0231,0.5348924042956369,0.28364285714285337,70.87691887723426,-364909 -2024-09-05 06:00:00+00:00,15895,143.407,143.455,143.05,143.24,USD_JPY,H1,28.388473852721006,-0.44538213037381524,-0.45193511450371504,0.006552984129899797,143.9316,0.5018853297047825,0.28671428571428237,72.01118230657957,-380804 -2024-09-05 07:00:00+00:00,16900,143.24,143.74,143.228,143.612,USD_JPY,H1,39.54954954954945,-0.41834973298099953,-0.445218038199172,0.02686830521817246,143.8676,0.45211461048586155,0.3134285714285677,70.8167259400071,-363904 -2024-09-05 08:00:00+00:00,14536,143.611,143.751,143.528,143.574,USD_JPY,H1,42.35407621804181,-0.3954343249612293,-0.4352612955515835,0.03982697059035417,143.79240000000001,0.3547999287423796,0.3100714285714271,69.3406922095381,-378440 -2024-09-05 09:00:00+00:00,12057,143.576,143.648,143.429,143.608,USD_JPY,H1,44.727807748896325,-0.3702620329233639,-0.4222614430259396,0.051999410102575694,143.73309999999998,0.26677881625764827,0.3148571428571399,68.09415844416722,-366383 -2024-09-05 10:00:00+00:00,8506,143.607,143.647,143.47,143.494,USD_JPY,H1,44.1646489104112,-0.3554146584444311,-0.40889208610963795,0.053477427665206856,143.70170000000002,0.25530726578307456,0.3157142857142828,66.79641153307948,-374889 -2024-09-05 11:00:00+00:00,9794,143.494,143.573,143.418,143.453,USD_JPY,H1,44.992599901331836,-0.3430024458647267,-0.39571415806065574,0.05271171219592902,143.65885,0.21686213778251365,0.3206428571428554,65.3575643055722,-384683 -2024-09-05 12:00:00+00:00,21374,143.452,143.606,142.851,143.1,USD_JPY,H1,38.84156729131153,-0.35752846226679935,-0.38807701890188445,0.0305485566350851,143.61135,0.2303023812370488,0.3577142857142844,63.466734645016274,-406057 -2024-09-05 13:00:00+00:00,20052,143.1,143.272,143.038,143.194,USD_JPY,H1,46.66048237476788,-0.3573362704192107,-0.38192886920534974,0.024592598786139064,143.56725,0.22089885149722815,0.3386428571428541,60.10569644145844,-386005 -2024-09-05 14:00:00+00:00,24108,143.243,144.232,143.243,143.921,USD_JPY,H1,54.01839264294277,-0.2951191825566184,-0.3645669318756035,0.06944774931898512,143.56875,0.22330174879264117,0.37664285714285484,55.17368959341594,-361897 -2024-09-05 15:00:00+00:00,17721,143.92,144.028,143.414,143.436,USD_JPY,H1,45.42703429724282,-0.28169987801976504,-0.3479935211044358,0.06629364308467078,143.5494,0.21678279200279962,0.3912142857142819,50.99993152057415,-379618 -2024-09-05 16:00:00+00:00,11482,143.434,143.546,143.371,143.435,USD_JPY,H1,43.037530690985626,-0.268055694943655,-0.33200595587227966,0.06395026092862466,143.53439999999998,0.21362051932551718,0.38242857142856834,46.120581346617634,-391100 -2024-09-05 17:00:00+00:00,11992,143.434,143.452,143.194,143.352,USD_JPY,H1,42.84217877094965,-0.26093212478494365,-0.31779118965481246,0.0568590648698688,143.5192,0.2153214487153023,0.3864285714285692,40.683260473424056,-403092 -2024-09-05 18:00:00+00:00,9737,143.352,143.487,143.205,143.42,USD_JPY,H1,47.12518195050911,-0.24695289318157165,-0.3036235303601643,0.056670637178592664,143.50900000000001,0.21492716015329993,0.38042857142856895,36.68251525331234,-393355 -2024-09-05 19:00:00+00:00,10113,143.42,143.51,143.313,143.46,USD_JPY,H1,51.09070034443202,-0.22999534257286314,-0.2888978928027041,0.05890255022984098,143.5151,0.21152277459314126,0.3745714285714265,33.03540736588356,-383242 -2024-09-05 20:00:00+00:00,8859,143.462,143.49,143.379,143.454,USD_JPY,H1,54.35667752443001,-0.21456711525752326,-0.274031737293668,0.05946462203614472,143.5018,0.20625829479451216,0.35357142857142776,30.285680441736705,-392101 -2024-09-05 21:00:00+00:00,317,143.441,143.464,143.424,143.429,USD_JPY,H1,45.66145092460895,-0.20202856547763304,-0.259631102930461,0.05760253745282795,143.48785,0.20094468330972118,0.31985714285714145,28.64059606036323,-392418 -2024-09-05 22:00:00+00:00,2463,143.433,143.46,143.324,143.415,USD_JPY,H1,46.187050359711755,-0.19101940464750555,-0.2459087632738699,0.05488935862636435,143.467,0.18430095514177175,0.3136428571428545,26.661531300877453,-394881 -2024-09-05 23:00:00+00:00,5082,143.414,143.482,143.348,143.394,USD_JPY,H1,44.83590733590737,-0.18189234810367338,-0.2331054802398306,0.05121313213615722,143.4486,0.17120360289742773,0.30757142857142533,25.214034354230144,-399963 -2024-09-06 00:00:00+00:00,13118,143.39,143.424,143.154,143.179,USD_JPY,H1,42.751955821445065,-0.18981967020630464,-0.22444831823312544,0.03462864802682081,143.42865,0.1784262414696877,0.3142142857142837,22.962022187011492,-413081 -2024-09-06 01:00:00+00:00,8904,143.18,143.367,143.102,143.28,USD_JPY,H1,46.126287505597816,-0.1858103679197427,-0.2167207281704489,0.030910360250706204,143.4225,0.18145102271682118,0.32207142857142557,20.840788208485712,-404177 -2024-09-06 02:00:00+00:00,5864,143.28,143.312,143.172,143.201,USD_JPY,H1,52.57784583971411,-0.18685367390122565,-0.21074731731660426,0.023893643415378613,143.42055,0.1837110072132058,0.2781428571428555,21.476198866138116,-410041 -2024-09-06 03:00:00+00:00,5639,143.199,143.228,142.988,143.033,USD_JPY,H1,46.040334481062466,-0.19894340167704172,-0.20838653418869174,0.009443132511650021,143.39159999999998,0.19708731691053005,0.27857142857142897,20.260104171782505,-415680 -2024-09-06 04:00:00+00:00,7337,143.032,143.033,142.89,142.996,USD_JPY,H1,15.562174236783676,-0.2090998162970834,-0.20852919061037006,-0.0005706256867133441,143.3627,0.2108317112933939,0.21464285714285683,27.37222142869195,-423017 -2024-09-06 05:00:00+00:00,11735,142.996,143.006,142.412,142.606,USD_JPY,H1,16.746794871794876,-0.24578532842051004,-0.21598041817239805,-0.029804910248111993,143.3126,0.26225467726983054,0.21321428571428466,33.789868745823576,-434752 -2024-09-06 06:00:00+00:00,15853,142.604,142.658,142.254,142.395,USD_JPY,H1,14.334705075446053,-0.2885584752018815,-0.23049602957829474,-0.058062445623586756,143.25764999999998,0.32891100614035174,0.22957142857142848,40.523975779522345,-450605 -2024-09-06 07:00:00+00:00,19194,142.395,142.542,142.06,142.525,USD_JPY,H1,22.524916943521575,-0.3084114138459313,-0.24607910643182207,-0.06233230741410922,143.21125,0.3635368474223739,0.24557142857142772,47.73929819093669,-431411 -2024-09-06 08:00:00+00:00,14590,142.526,142.729,142.484,142.616,USD_JPY,H1,23.691099476440996,-0.3131917912583049,-0.2595016433971187,-0.0536901478611862,143.18705,0.3867036774722546,0.2429285714285722,52.86953610909126,-416821 -2024-09-06 09:00:00+00:00,9425,142.615,142.896,142.595,142.804,USD_JPY,H1,30.429594272076045,-0.2983708129773106,-0.26727547731315704,-0.031095335664153567,143.16755,0.3960548173940475,0.25035714285714256,56.22052000013515,-407396 -2024-09-06 10:00:00+00:00,9310,142.807,142.962,142.798,142.855,USD_JPY,H1,32.597327135385626,-0.27929032215340044,-0.26967844628120574,-0.009611875872194697,143.11425,0.3593496866956182,0.2541428571428546,57.80913355054952,-398086 -2024-09-06 11:00:00+00:00,10052,142.853,143.129,142.827,143.06,USD_JPY,H1,40.29458179905305,-0.24480514760870165,-0.2647037865467049,0.019898638938003255,143.09545,0.35137796033956353,0.27285714285714036,59.180146543380786,-388034 -2024-09-06 12:00:00+00:00,27725,143.066,144.089,141.983,142.989,USD_JPY,H1,39.12155260469883,-0.2206608638758496,-0.25589520201253385,0.03523433813668425,143.07315,0.3427408526349834,0.413571428571426,58.309151791198026,-415759 -2024-09-06 13:00:00+00:00,30073,142.99,143.894,142.794,143.52,USD_JPY,H1,52.55267423014598,-0.15687077418346007,-0.2360903164467191,0.07921954226325903,143.08155,0.3518717581310623,0.48257142857142654,56.60359481697427,-385686 -2024-09-06 14:00:00+00:00,29404,143.521,143.544,142.214,142.44,USD_JPY,H1,38.91389138913885,-0.19125892870727057,-0.22712403889882943,0.03586511019155886,143.03255000000001,0.370026951310862,0.5582857142857124,56.76925456684665,-415090 -2024-09-06 15:00:00+00:00,34833,142.441,142.756,141.768,142.141,USD_JPY,H1,33.87142452563002,-0.2398734779358449,-0.22967392670623255,-0.010199551229612358,142.96660000000003,0.4056598782249361,0.6099285714285705,57.63378206093069,-449923 -2024-09-06 16:00:00+00:00,22303,142.142,142.666,142.076,142.448,USD_JPY,H1,39.98403830806088,-0.25073817060280135,-0.23388677548554632,-0.01685139511725503,142.9163,0.4044114761780023,0.6420714285714268,54.921870094749224,-427620 -2024-09-06 17:00:00+00:00,17055,142.448,142.696,142.234,142.426,USD_JPY,H1,41.59977857735961,-0.2581479649076641,-0.2387390133699699,-0.01940895153769423,142.86615,0.3996483025718069,0.6579285714285683,54.68464984225931,-444675 -2024-09-06 18:00:00+00:00,15836,142.426,142.483,142.248,142.361,USD_JPY,H1,41.27986816808554,-0.2661966873413064,-0.2442305481642372,-0.021966139177069216,142.81345,0.39290088138163853,0.6644999999999978,48.33800830924755,-460511 -2024-09-06 19:00:00+00:00,6788,142.359,142.479,142.358,142.42,USD_JPY,H1,47.1903323262839,-0.2647625332669179,-0.24833694518477334,-0.01642558808214456,142.76475,0.37720452006668403,0.6307142857142846,41.16996337244014,-453723 -2024-09-06 20:00:00+00:00,7475,142.416,142.438,142.253,142.314,USD_JPY,H1,48.73634945397791,-0.2690775118893498,-0.25248505852568864,-0.016592453363661164,142.72150000000002,0.3767969576934288,0.6150714285714278,33.87904974910743,-461198 -2024-09-08 21:00:00+00:00,797,142.308,142.375,142.086,142.162,USD_JPY,H1,44.375581035017106,-0.28151713887967844,-0.2582914745964866,-0.023225664283191838,142.66559999999998,0.37248559132924886,0.6012857142857128,26.538532981550894,-461995 -2024-09-08 22:00:00+00:00,5186,142.176,142.316,141.956,142.15,USD_JPY,H1,42.59847522236334,-0.2890123778164764,-0.26443565524048457,-0.024576722575991805,142.61305,0.36707413199422523,0.609499999999999,21.4623676593605,-467181 -2024-09-08 23:00:00+00:00,12445,142.148,142.53,142.092,142.492,USD_JPY,H1,45.27559055118095,-0.26430907638163603,-0.2644103394687149,0.00010126308707886222,142.58599999999998,0.35420674896281756,0.6192857142857134,17.328038097694737,-454736 -2024-09-09 00:00:00+00:00,16618,142.491,142.744,142.419,142.7,USD_JPY,H1,47.75946805435097,-0.22534997609639618,-0.25659826679425113,0.031248290697854952,142.5712,0.34215272053376394,0.6307857142857135,13.331351103415694,-438118 -2024-09-09 01:00:00+00:00,15486,142.701,142.985,142.617,142.96,USD_JPY,H1,48.57712009106441,-0.17151763284050503,-0.23958214000350192,0.06806450716299689,142.58890000000002,0.3530312196724948,0.6355000000000014,10.234925551636099,-422632 -2024-09-09 02:00:00+00:00,11193,142.961,142.988,142.704,142.821,USD_JPY,H1,47.654941373534285,-0.13847499772157335,-0.21936071154711623,0.08088571382554288,142.61020000000002,0.35356747284357326,0.5053571428571441,13.76046249135035,-433825 -2024-09-09 03:00:00+00:00,11078,142.823,142.961,142.642,142.762,USD_JPY,H1,37.81350482315114,-0.11571538333814146,-0.19863164590532129,0.08291626256717982,142.62205,0.3545319337712118,0.4495714285714314,16.57139963391847,-444903 -2024-09-09 04:00:00+00:00,12955,142.762,143.1,142.742,142.976,USD_JPY,H1,61.94295900178241,-0.07949385772903383,-0.1748040882700638,0.09531023054102997,142.64005,0.36324045604216104,0.3801428571428594,16.169232812058272,-431948 -2024-09-09 05:00:00+00:00,14165,142.976,143.072,142.775,142.916,USD_JPY,H1,69.32668329177048,-0.05499558145146466,-0.15084238690634397,0.09584680545487931,142.64565,0.366747478677442,0.33078571428571635,16.064079959399496,-446113 -2024-09-09 06:00:00+00:00,14915,142.912,143.058,142.797,143.005,USD_JPY,H1,65.58477895914902,-0.028075329878419097,-0.126288975500759,0.09821364562233989,142.65315,0.3727388354224362,0.30728571428571577,16.203089780194894,-431198 -2024-09-09 07:00:00+00:00,16303,143.01,143.36,143.01,143.159,USD_JPY,H1,69.09848879624832,0.005620882378252645,-0.09990700392495667,0.10552788630320932,142.6581,0.37903046671111634,0.2996428571428607,17.65152179532785,-414895 -2024-09-09 08:00:00+00:00,14041,143.162,143.438,143.098,143.382,USD_JPY,H1,74.57871930669273,0.04974616682576993,-0.06997636977481135,0.11972253660058128,142.67775,0.40629466550968285,0.30714285714285794,19.421162334366354,-400854 -2024-09-09 09:00:00+00:00,11795,143.382,143.576,143.266,143.49,USD_JPY,H1,75.16462841016038,0.09236573536068704,-0.03750794874771168,0.12987368410839872,142.67625,0.4030640375666326,0.32064285714285745,22.573730307036858,-389059 -2024-09-09 10:00:00+00:00,11472,143.49,143.78,143.475,143.671,USD_JPY,H1,80.82689686506141,0.1391432806759667,-0.002177702862976,0.1413209835389427,142.7378,0.45564859493245713,0.32921428571428635,26.88117555253506,-377587 -2024-09-09 11:00:00+00:00,10434,143.67,143.796,143.54,143.611,USD_JPY,H1,84.35277382645751,0.1694203514423407,0.03214190799808734,0.13727844344425336,142.8113,0.47256078412806773,0.3268571428571444,32.39852903058604,-388021 -2024-09-09 12:00:00+00:00,12828,143.597,143.701,143.095,143.234,USD_JPY,H1,71.90784155214243,0.16113691285255527,0.05794090896898092,0.10319600388357435,142.85060000000001,0.47343975325168697,0.34442857142857164,35.05617938325774,-400849 -2024-09-09 13:00:00+00:00,17271,143.233,143.234,142.726,142.794,USD_JPY,H1,55.87091757387287,0.11771100611863972,0.06989492839891268,0.04781607771972704,142.869,0.46310769460373,0.34942857142857314,35.68781765859361,-418120 -2024-09-09 14:00:00+00:00,17335,142.794,142.996,142.654,142.741,USD_JPY,H1,50.8481588746385,0.07811850362205064,0.07153964344354027,0.006578860178510365,142.888,0.4487412804737728,0.35064285714286064,35.83842546532697,-435455 -2024-09-09 15:00:00+00:00,13065,142.742,143.012,142.716,142.928,USD_JPY,H1,49.31740614334447,0.06112587626864752,0.06945689000856173,-0.008331013739914211,142.9134,0.43502442757941134,0.34550000000000125,36.09813735268456,-422390 -2024-09-09 16:00:00+00:00,8746,142.928,142.955,142.826,142.882,USD_JPY,H1,51.35495335406505,0.043446457387574355,0.06425480348436426,-0.0208083460967899,142.9418,0.4117519181067267,0.33442857142857463,32.81607601606851,-431136 -2024-09-09 17:00:00+00:00,9635,142.884,142.918,142.714,142.816,USD_JPY,H1,51.195748449955786,0.023834987239808925,0.0561708402354532,-0.032335852995644274,142.97449999999998,0.370462371072235,0.3262142857142883,30.654165786525585,-440771 -2024-09-09 18:00:00+00:00,7800,142.817,142.899,142.764,142.812,USD_JPY,H1,45.9960937500002,0.00787916319541182,0.04651250482744492,-0.0386333416320331,143.0076,0.3189042752952989,0.3102857142857159,31.588840510675233,-448571 -2024-09-09 19:00:00+00:00,7977,142.814,142.967,142.782,142.96,USD_JPY,H1,51.02996254681677,0.007094638223918537,0.03862893150673964,-0.031534293282821105,143.031,0.29538289150044844,0.30228571428571627,31.04345493406426,-440594 -2024-09-09 20:00:00+00:00,5872,142.958,143.17,142.952,143.166,USD_JPY,H1,53.57301375943201,0.02283217976221863,0.03546958115783544,-0.01263740139561681,143.05429999999998,0.28613359037101144,0.29921428571428726,29.24387271790087,-434722 -2024-09-09 21:00:00+00:00,307,143.176,143.182,143.138,143.142,USD_JPY,H1,49.599623174752786,0.03298743675364335,0.03497315227699702,-0.001985715523353672,143.0634,0.28587067367071745,0.27699999999999897,27.800035613084184,-435029 -2024-09-09 22:00:00+00:00,2784,143.144,143.152,142.854,143.045,USD_JPY,H1,41.56234351527217,0.03283001773834826,0.03454452536926727,-0.0017145076309190085,143.0746,0.28020582653271053,0.27399999999999886,27.464539716388384,-437813 -2024-09-09 23:00:00+00:00,6554,143.058,143.301,143.056,143.189,USD_JPY,H1,42.59714707329005,0.043819731982864596,0.03639956669198674,0.007420165290877856,143.09595000000002,0.2712585627303334,0.27014285714285585,26.73724856161192,-431259 -2024-09-10 00:00:00+00:00,15861,143.187,143.488,143.118,143.472,USD_JPY,H1,45.339578454332845,0.07450603537122902,0.04402086042783519,0.030485174943393825,143.12075,0.28216901889298013,0.27478571428571286,25.086032147875407,-415398 -2024-09-10 01:00:00+00:00,12139,143.471,143.548,143.354,143.424,USD_JPY,H1,45.595854922280104,0.09386987950318826,0.05399066424290581,0.03987921526028245,143.14614999999998,0.28561130646562766,0.2703571428571406,22.048740088170746,-427537 -2024-09-10 02:00:00+00:00,10563,143.425,143.433,143.192,143.406,USD_JPY,H1,54.87528344671198,0.10653534280311305,0.06449959995494726,0.04203574284816579,143.1662,0.2892332148830637,0.24428571428571136,20.179693798916396,-438100 -2024-09-10 03:00:00+00:00,8618,143.406,143.429,143.175,143.236,USD_JPY,H1,64.79250334671951,0.1016830950431995,0.0719362989725977,0.029746796070601794,143.17005,0.28964451435659494,0.22614285714285284,18.964425288019516,-446718 -2024-09-10 04:00:00+00:00,6503,143.237,143.282,143.052,143.082,USD_JPY,H1,60.68965517241317,0.08443779443308586,0.07443659806469534,0.010001196368390516,143.15505000000002,0.2858334948918396,0.21814285714285322,18.93126304233466,-453221 -2024-09-10 05:00:00+00:00,7500,143.081,143.188,143.03,143.157,USD_JPY,H1,57.72083614295375,0.07594717094156067,0.07473871264006841,0.0012084583014922573,143.1384,0.274780563094738,0.20828571428571,19.19034241532348,-445721 -2024-09-10 06:00:00+00:00,9309,143.157,143.454,143.092,143.4,USD_JPY,H1,65.41666666666637,0.08781409360841508,0.07735378883373775,0.010460304774677326,143.12485,0.2529491887022863,0.2249285714285654,19.45282634513296,-436412 -2024-09-10 07:00:00+00:00,12399,143.406,143.614,143.34,143.603,USD_JPY,H1,71.65657677490343,0.11230454192454431,0.08434393945189907,0.027960602472645243,143.12445,0.2521450031062696,0.2299285714285649,20.655205540612776,-424013 -2024-09-10 08:00:00+00:00,11219,143.612,143.714,143.442,143.513,USD_JPY,H1,68.4182869153961,0.12303290408760859,0.09208173237904098,0.030951171708567607,143.1384,0.26586925944497825,0.23971428571427925,21.42482157263734,-435232 -2024-09-10 09:00:00+00:00,10228,143.516,143.522,143.156,143.162,USD_JPY,H1,54.79582146248797,0.10203623166165698,0.09407263223556418,0.007963599426092802,143.1568,0.2532127459209499,0.25264285714284945,21.181166354041686,-445460 -2024-09-10 10:00:00+00:00,8945,143.162,143.216,142.952,143.044,USD_JPY,H1,46.97720515361789,0.07500993581041371,0.0902600929505341,-0.015250157140120388,143.17194999999998,0.2354682847390038,0.25592857142856523,21.577893053650996,-454405 -2024-09-10 11:00:00+00:00,10828,143.044,143.192,142.997,143.125,USD_JPY,H1,49.59036144578324,0.059442211872152484,0.08409651673485778,-0.024654304862705298,143.1818,0.22875097920310908,0.26671428571428024,20.832277328710084,-443577 -2024-09-10 12:00:00+00:00,13245,143.126,143.194,142.756,142.868,USD_JPY,H1,46.04026845637608,0.02606644853736384,0.072490503095359,-0.046424054557995156,143.18110000000001,0.22973598110155755,0.2767142857142813,18.71880818124642,-456822 -2024-09-10 13:00:00+00:00,14893,142.872,143.115,142.828,143.008,USD_JPY,H1,45.943523083819386,0.010788383833073567,0.060150079242901916,-0.04936169540982835,143.19070000000002,0.21735445211642465,0.2789285714285675,17.05386214338152,-441929 -2024-09-10 14:00:00+00:00,19629,143.008,143.048,142.534,142.719,USD_JPY,H1,33.16942333482349,-0.02435868548039366,0.04324832629824281,-0.06760701177863647,143.18605,0.22667748352897257,0.28921428571428215,17.111552614489433,-461558 -2024-09-10 15:00:00+00:00,16035,142.718,142.731,142.258,142.289,USD_JPY,H1,28.331424207712956,-0.08591996559232484,0.01741466792012928,-0.10333463351245412,143.15249999999997,0.29976824374835553,0.3091428571428533,18.273493433007502,-477593 -2024-09-10 16:00:00+00:00,11111,142.288,142.476,142.194,142.464,USD_JPY,H1,33.03314121037492,-0.11921247889262077,-0.009910761442420729,-0.10930171745020004,143.1174,0.3369029845704732,0.3120714285714265,20.0742934517037,-466482 -2024-09-10 17:00:00+00:00,10232,142.464,142.573,142.326,142.396,USD_JPY,H1,34.29319371727779,-0.1493623114909326,-0.0378010714521231,-0.11156124003880949,143.0801,0.3733599786318174,0.3115714285714282,22.858317111492575,-476714 -2024-09-10 18:00:00+00:00,9809,142.402,142.463,142.222,142.35,USD_JPY,H1,35.73655494933783,-0.1749513562731977,-0.06523112841633802,-0.10972022785685967,143.04534999999998,0.4075742456891772,0.31235714285714017,25.33230353867011,-486523 -2024-09-10 19:00:00+00:00,8147,142.35,142.392,142.294,142.31,USD_JPY,H1,33.26748320821815,-0.19619688872342067,-0.09142428047775455,-0.10477260824566612,143.0014,0.43755846522013564,0.3080714285714257,27.925112090662328,-494670 -2024-09-10 20:00:00+00:00,8502,142.309,142.495,142.306,142.458,USD_JPY,H1,30.665024630542007,-0.19880011911916995,-0.11289944820603764,-0.0859006709131323,142.9507,0.43890414966242647,0.2957142857142827,31.214727712240734,-486168 -2024-09-10 21:00:00+00:00,222,142.443,142.456,142.372,142.432,USD_JPY,H1,24.08145196989821,-0.20064823274412902,-0.13044920511365593,-0.07019902763047309,142.9011,0.4386542697617453,0.28214285714285225,34.82483913200893,-486390 -2024-09-10 22:00:00+00:00,1978,142.424,142.473,142.34,142.448,USD_JPY,H1,25.629290617849676,-0.1985332421911039,-0.14406601252914553,-0.05446722966195838,142.8532,0.4328863470158016,0.27221428571428213,38.9849620853883,-484412 -2024-09-10 23:00:00+00:00,6000,142.444,142.474,142.214,142.237,USD_JPY,H1,27.38386308068513,-0.2114456200519328,-0.15754193403370298,-0.05390368601822981,142.80325,0.4438875953743919,0.26464285714285396,44.566948518784635,-490412 -2024-09-11 00:00:00+00:00,15705,142.238,142.298,142.026,142.292,USD_JPY,H1,31.029263370333567,-0.21476505432977433,-0.16898655809291727,-0.045778496236857064,142.76375000000002,0.4528365424402463,0.26521428571428124,50.41848797286542,-474707 -2024-09-11 01:00:00+00:00,18020,142.292,142.429,141.504,141.833,USD_JPY,H1,22.627118644068915,-0.25153367031009566,-0.18549598053635294,-0.06603768977374272,142.69755,0.4877531164329684,0.3173571428571397,56.15623692922322,-492727 -2024-09-11 02:00:00+00:00,12761,141.834,141.904,141.561,141.834,USD_JPY,H1,25.42775665399374,-0.27739473786945723,-0.20387573200297382,-0.07351900586648341,142.61925,0.4946994701308172,0.31057142857142545,61.90439177439335,-479966 -2024-09-11 03:00:00+00:00,12039,141.836,141.963,141.254,141.4,USD_JPY,H1,16.472060050042742,-0.3291161470641839,-0.22892381501521586,-0.10019233204896805,142.50910000000002,0.5091773447227692,0.34071428571428236,67.42152494065101,-492005 -2024-09-11 04:00:00+00:00,13806,141.4,141.4,140.898,141.094,USD_JPY,H1,16.356107660456573,-0.3902982637031869,-0.2611987047528101,-0.12909955895037678,142.38815,0.544256351615004,0.33985714285713947,71.14695569645939,-505811 -2024-09-11 05:00:00+00:00,14855,141.09,141.294,140.71,141.286,USD_JPY,H1,26.963711529629066,-0.4184688876944165,-0.2926527413411314,-0.12581614635328509,142.29435,0.5651272120033269,0.34778571428571226,73.9670591027854,-490956 -2024-09-11 06:00:00+00:00,14310,141.29,141.454,141.151,141.376,USD_JPY,H1,23.99617590822281,-0.42859152600439643,-0.3198404982737844,-0.10875102773061202,142.21095,0.5717142711631761,0.34928571428571126,75.86001821114341,-476646 -2024-09-11 07:00:00+00:00,18543,141.376,141.55,141.17,141.39,USD_JPY,H1,25.318940137390072,-0.4305213249537587,-0.3419766636097793,-0.08854466134397943,142.1242,0.5571661001124489,0.358785714285712,78.2955423683646,-458103 -2024-09-11 08:00:00+00:00,14244,141.388,141.7,141.334,141.534,USD_JPY,H1,30.898876404494786,-0.4156398702849913,-0.35670930494482167,-0.058930565340169605,142.0575,0.5431083539837409,0.3677142857142834,79.77030238329387,-443859 -2024-09-11 09:00:00+00:00,12382,141.536,141.58,141.292,141.571,USD_JPY,H1,32.67698077824704,-0.39629240727916226,-0.3646259254116898,-0.03166648186747245,141.98565,0.5044199664840252,0.38128571428571384,80.60022183957707,-431477 -2024-09-11 10:00:00+00:00,11678,141.572,141.694,141.492,141.581,USD_JPY,H1,28.020050125313716,-0.3758202649551663,-0.36686479332038513,-0.008955471634781165,141.92874999999998,0.4809824238589649,0.3822142857142857,80.41470276874236,-419799 -2024-09-11 11:00:00+00:00,11919,141.585,141.825,141.508,141.69,USD_JPY,H1,32.14629451395648,-0.3468028284909792,-0.36285240035450395,0.016049571863524736,141.8988,0.47599310030170744,0.3988571428571431,77.98288695526237,-407880 -2024-09-11 12:00:00+00:00,23498,141.692,142.55,141.691,142.292,USD_JPY,H1,47.07207207207201,-0.2720934087143121,-0.3447006020264656,0.07260719331215348,141.8902,0.46670712100626977,0.4507857142857148,72.16436677864571,-384382 -2024-09-11 13:00:00+00:00,21094,142.299,142.497,141.784,141.815,USD_JPY,H1,42.79863481228683,-0.24851088998656223,-0.3254626596184849,0.07695176963192268,141.86115,0.4513977443895469,0.48314285714285987,66.28296560475336,-405476 -2024-09-11 14:00:00+00:00,25424,141.813,141.954,141.248,141.428,USD_JPY,H1,36.7565910484366,-0.25807431958750726,-0.31198499161228943,0.05391067202478217,141.81504999999999,0.44589230167435023,0.5141428571428618,61.12275399875758,-430900 -2024-09-11 15:00:00+00:00,17689,141.43,141.824,141.382,141.728,USD_JPY,H1,48.3080889461813,-0.23869439326813335,-0.29732687194345825,0.058632478675324895,141.78595,0.4306204183412033,0.4796428571428614,55.16775628702221,-413211 -2024-09-11 16:00:00+00:00,17020,141.723,142.036,141.723,141.95,USD_JPY,H1,51.744885679903504,-0.20308112457612992,-0.2784777224699926,0.07539659789386266,141.76055000000002,0.4029890261763764,0.4775000000000042,48.90588323270416,-396191 -2024-09-11 17:00:00+00:00,15387,141.949,142.324,141.898,142.206,USD_JPY,H1,62.809917355371574,-0.1524430237538752,-0.2532707827267691,0.10082775897289392,141.74925,0.38597993874459857,0.45728571428571946,43.87259286785973,-380804 -2024-09-11 18:00:00+00:00,10429,142.206,142.256,142.096,142.202,USD_JPY,H1,69.47960618846706,-0.1113511439215813,-0.22488685496573155,0.11353571104415025,141.73695,0.3659403855067396,0.4328571428571471,39.936202443419,-391233 -2024-09-11 19:00:00+00:00,10214,142.203,142.414,142.194,142.376,USD_JPY,H1,69.28520877565474,-0.06400735039005667,-0.19271095405059657,0.1287036036605399,141.7439,0.3770874391934521,0.40685714285714675,37.10853786424547,-381019 -2024-09-11 20:00:00+00:00,10760,142.376,142.46,142.356,142.362,USD_JPY,H1,67.92727272727254,-0.027302015282543834,-0.15962916629698604,0.1323271510144422,141.7474,0.3827251864934338,0.39264285714286223,35.20533888995167,-391779 -2024-09-11 21:00:00+00:00,515,142.332,142.341,142.27,142.294,USD_JPY,H1,66.1198288159776,-0.0036576414486546582,-0.12843486132731977,0.12477721987866511,141.77044999999998,0.4015700076052583,0.37057142857143177,32.73029738423832,-392294 -2024-09-11 22:00:00+00:00,2463,142.296,142.475,142.229,142.46,USD_JPY,H1,66.38358103326289,0.02815100063142495,-0.09711768893557084,0.12526868956699577,141.80175,0.4301626221959606,0.3620000000000029,31.225024693241302,-389831 -2024-09-11 23:00:00+00:00,6903,142.458,142.678,142.444,142.64,USD_JPY,H1,68.00269450993602,0.06711046664136688,-0.0642720578201833,0.1313825244615502,141.86375,0.45769087184068286,0.35814285714285987,30.58311394169956,-382928 -2024-09-12 00:00:00+00:00,15764,142.643,142.953,142.612,142.686,USD_JPY,H1,68.38602329450949,0.10053898882418366,-0.03130984849130991,0.13184883731549357,141.94334999999998,0.4552035142984981,0.36807142857143205,30.233746789955468,-367164 -2024-09-12 01:00:00+00:00,18784,142.688,142.71,142.258,142.546,USD_JPY,H1,64.09749670619226,0.11441559180133254,-0.00216476043278142,0.11658035223411396,142.00635,0.4465477253428297,0.37771428571429055,29.141989805856916,-385948 -2024-09-12 02:00:00+00:00,13380,142.541,142.636,142.346,142.533,USD_JPY,H1,54.92439722108674,0.1229466557657588,0.022857522806926624,0.10008913295883218,142.0642,0.43539330067445836,0.3370000000000033,28.502796700419598,-399328 -2024-09-12 03:00:00+00:00,8752,142.534,142.612,142.352,142.596,USD_JPY,H1,69.2080668962125,0.1332550773246055,0.0449370337104624,0.08831804361414311,142.1245,0.42035843096447884,0.3046428571428582,28.210049337823442,-390576 -2024-09-12 04:00:00+00:00,8518,142.596,142.846,142.58,142.786,USD_JPY,H1,86.98257080610007,0.1549695947587395,0.06694354592011782,0.08802604883862168,142.18710000000002,0.4210163016708406,0.2732142857142849,30.463592866797836,-382058 -2024-09-12 05:00:00+00:00,12117,142.786,142.916,142.615,142.835,USD_JPY,H1,84.9211356466875,0.17412518995917026,0.08837987472792833,0.08574531523124193,142.2503,0.41852813520360316,0.26314285714285496,33.8653037921821,-369941 -2024-09-12 06:00:00+00:00,13452,142.834,142.842,142.468,142.577,USD_JPY,H1,69.33991363355938,0.1665676056864811,0.10401742091963889,0.06255018476684221,142.3001,0.3931866972629319,0.26750000000000035,36.45389727923226,-383393 -2024-09-12 07:00:00+00:00,16653,142.58,143.044,142.552,142.766,USD_JPY,H1,68.01801801801773,0.17382513817153722,0.11797896437001856,0.055846173801518656,142.3539,0.37865911618911996,0.27221428571428624,37.434652458443615,-366740 -2024-09-12 08:00:00+00:00,16774,142.766,142.766,142.536,142.582,USD_JPY,H1,60.957324106112665,0.1628522631877729,0.12695362413356945,0.03589863905420346,142.3684,0.3817042668425435,0.27721428571428575,37.3888069023004,-383514 -2024-09-12 09:00:00+00:00,12636,142.586,142.713,142.522,142.679,USD_JPY,H1,59.14302957151449,0.1601373068536418,0.13359036067758392,0.02654694617605788,142.4116,0.36427005592243167,0.2751428571428574,35.754679048451415,-370878 -2024-09-12 10:00:00+00:00,10832,142.678,142.779,142.59,142.622,USD_JPY,H1,57.647058823529896,0.1516382691918352,0.1371999423804342,0.014438326811401003,142.47129999999999,0.28346337359214163,0.28121428571428453,34.357617864449885,-381710 -2024-09-12 11:00:00+00:00,12023,142.623,142.644,142.372,142.568,USD_JPY,H1,58.12574139976261,0.13894371524946791,0.13754869695424096,0.0013950182952269519,142.51330000000002,0.22340124383566265,0.29557142857142693,32.86982798815105,-393733 -2024-09-12 12:00:00+00:00,23029,142.568,142.629,141.962,142.101,USD_JPY,H1,40.96628082536488,0.09016087423765384,0.12807113241092355,-0.037910258173269706,142.52085,0.20516983327035773,0.32564285714285696,30.59173144651396,-416762 -2024-09-12 13:00:00+00:00,22762,142.098,142.439,141.909,142.011,USD_JPY,H1,33.42119135477161,0.04373373812600789,0.11120365355394043,-0.06746991542793254,142.5111,0.2246299646317705,0.34678571428571353,28.742071320213615,-439524 -2024-09-12 14:00:00+00:00,19088,142.014,142.667,142.008,142.484,USD_JPY,H1,45.65404475043046,0.04459300484049322,0.097881523811251,-0.05328851897075777,142.52519999999998,0.21274264155742653,0.3694999999999981,26.868022789895125,-420436 -2024-09-12 15:00:00+00:00,16942,142.482,142.56,142.196,142.244,USD_JPY,H1,43.770627062706595,0.025612737966184795,0.08342776664223776,-0.05781502867605297,142.51860000000002,0.21955347019268978,0.36321428571428427,25.897364711539563,-437378 -2024-09-12 16:00:00+00:00,14651,142.241,142.658,142.212,142.52,USD_JPY,H1,49.75809452921517,0.03246736946960027,0.07323568720771026,-0.04076831773810999,142.5265,0.21644265062718132,0.37435714285714183,26.10808885581623,-422727 -2024-09-12 17:00:00+00:00,15300,142.518,142.57,142.241,142.274,USD_JPY,H1,44.390243902439096,0.01784387712075386,0.06215732519031898,-0.04431344806956512,142.52550000000002,0.21761639344205552,0.3792857142857124,26.013188782432213,-438027 -2024-09-12 18:00:00+00:00,15381,142.274,142.372,141.912,142.026,USD_JPY,H1,37.02185792349766,-0.013600099814880195,0.047005840189279155,-0.06060594000415935,142.5038,0.2444729238261973,0.39314285714285646,24.994950665136788,-453408 -2024-09-12 19:00:00+00:00,15584,142.027,142.095,141.751,141.884,USD_JPY,H1,34.26017874875869,-0.049408342715253184,0.02772300360837269,-0.07713134632362587,142.46599999999998,0.2783974817638054,0.3962142857142855,24.385389919557944,-468992 -2024-09-12 20:00:00+00:00,16802,141.882,141.93,141.728,141.816,USD_JPY,H1,36.55951960438037,-0.08232467726440973,0.005713467433816205,-0.08803814469822593,142.4225,0.3085494926769994,0.3839285714285694,24.74293123019539,-485794 -2024-09-12 21:00:00+00:00,190,141.834,141.864,141.826,141.838,USD_JPY,H1,32.582582582582916,-0.10542066954917573,-0.016513359962782182,-0.08890730958639355,142.38709999999998,0.33325964266787467,0.3522142857142825,27.24359415328292,-485604 -2024-09-12 22:00:00+00:00,2476,141.836,141.878,141.698,141.844,USD_JPY,H1,35.15687851971066,-0.12183581256945786,-0.03757785048411732,-0.08425796208534053,142.35264999999998,0.3524435415173967,0.3486428571428531,29.815948223575123,-483128 -2024-09-12 23:00:00+00:00,8441,141.842,141.844,141.428,141.514,USD_JPY,H1,28.576682603898817,-0.1596330236244512,-0.0619888851121841,-0.0976441385122671,142.29855,0.3937465755363796,0.36471428571428127,33.191731758088785,-491569 -2024-09-13 00:00:00+00:00,17238,141.516,141.563,141.162,141.198,USD_JPY,H1,26.091336467427993,-0.2126350206204961,-0.09211811221384651,-0.1205169084066496,142.21914999999998,0.44681366357453867,0.3798571428571376,37.16075168399791,-508807 -2024-09-13 01:00:00+00:00,14712,141.198,141.295,141.005,141.227,USD_JPY,H1,27.294277006434243,-0.24942422031119804,-0.12357933383331683,-0.12584488647788122,142.13875,0.4740094241332912,0.38114285714285195,41.75111425591643,-494095 -2024-09-13 02:00:00+00:00,12370,141.229,141.292,140.778,141.042,USD_JPY,H1,30.1759640584053,-0.2901630608630512,-0.1568960792392637,-0.1332669816237875,142.062,0.521233355113352,0.3702142857142811,47.04252807602676,-506465 -2024-09-13 03:00:00+00:00,8961,141.044,141.135,140.818,140.979,USD_JPY,H1,30.484114977307485,-0.3237998953596559,-0.19027684246334214,-0.13352305289631378,141.97265,0.5467417628270972,0.3549999999999938,51.29384515108119,-515426 -2024-09-13 04:00:00+00:00,8235,140.98,141.024,140.646,140.961,USD_JPY,H1,15.212425765189565,-0.34789941075888464,-0.22180135612245067,-0.12609805463643398,141.8916,0.5712567308902774,0.33492857142856686,57.336357923284616,-523661 -2024-09-13 05:00:00+00:00,8526,140.96,141.178,140.746,140.866,USD_JPY,H1,16.29158512720163,-0.37039447939636716,-0.251519980777234,-0.11887449861913318,141.80095,0.5834497655350894,0.33978571428570853,61.91152413543248,-532187 -2024-09-13 06:00:00+00:00,16253,140.87,141.174,140.833,141.092,USD_JPY,H1,14.192577733199158,-0.3657693111847209,-0.2743698468587314,-0.0913994643259895,141.72445000000002,0.5702862138828316,0.3322857142857093,68.10268809152646,-515934 -2024-09-13 07:00:00+00:00,16359,141.088,141.414,140.821,140.914,USD_JPY,H1,14.693665628244489,-0.3721767228572901,-0.29393122205844313,-0.07824550079884696,141.64175,0.5613783670642414,0.35114285714285287,72.7832166499265,-532293 -2024-09-13 08:00:00+00:00,18231,140.914,140.974,140.411,140.7,USD_JPY,H1,14.9577167019021,-0.3900266696336985,-0.3131503115734942,-0.07687635806020426,141.5717,0.5878421825063364,0.3584999999999943,75.21676733523437,-550524 -2024-09-13 09:00:00+00:00,15765,140.699,140.736,140.364,140.578,USD_JPY,H1,15.117521367521022,-0.4092991160296151,-0.33238007246471846,-0.07691904356489665,141.50005,0.6180355529348474,0.3604999999999937,76.73605659632517,-566289 -2024-09-13 10:00:00+00:00,14041,140.577,140.718,140.366,140.698,USD_JPY,H1,20.945945945945752,-0.41016158410585035,-0.34793637479294487,-0.06222520931290548,141.41075,0.5970553949937981,0.3712142857142778,78.50956746760677,-552248 -2024-09-13 11:00:00+00:00,13362,140.698,140.98,140.6,140.837,USD_JPY,H1,25.47770700636893,-0.39507478178265387,-0.3573640561908867,-0.03771072559176719,141.3404,0.5762368299272983,0.394928571428563,76.64942656207123,-538886 -2024-09-13 12:00:00+00:00,15847,140.838,141.02,140.702,140.732,USD_JPY,H1,24.018691588784662,-0.38712842917294665,-0.36331693078729865,-0.023811498385648,141.251,0.519502596068846,0.4047857142857083,74.20405450609333,-554733 -2024-09-13 13:00:00+00:00,18588,140.73,140.732,140.284,140.362,USD_JPY,H1,23.577981651375538,-0.4060066038613286,-0.37185486540210466,-0.034151738459223924,141.15540000000001,0.49676748765962075,0.40707142857142337,71.74764222863284,-573321 -2024-09-13 14:00:00+00:00,20692,140.365,140.774,140.285,140.642,USD_JPY,H1,37.03358208955183,-0.39383415834527113,-0.376250723990738,-0.017583434354533134,141.08620000000002,0.4644545867048998,0.41335714285713926,67.91132206270365,-552629 -2024-09-13 15:00:00+00:00,12689,140.642,140.678,140.342,140.666,USD_JPY,H1,36.88639551192119,-0.37789467358661,-0.37657951390991246,-0.0013151596766975415,141.02530000000002,0.43313728218232367,0.416642857142853,63.5563437478611,-539940 -2024-09-13 16:00:00+00:00,12080,140.666,140.944,140.59,140.814,USD_JPY,H1,44.576593720266146,-0.3492937134641636,-0.3711223538207627,0.021828640356599094,140.9752,0.39295045885056185,0.40521428571427975,57.861761512588025,-527860 -2024-09-13 17:00:00+00:00,9676,140.814,140.965,140.774,140.912,USD_JPY,H1,48.43238184370596,-0.31508733486720075,-0.3599153500300504,0.04482801516284962,140.9289,0.33642765696933885,0.39621428571428147,52.16493522480404,-518184 -2024-09-13 18:00:00+00:00,8965,140.912,141.011,140.84,140.934,USD_JPY,H1,49.36945352638918,-0.2829417409822099,-0.3445206282204823,0.06157888723827237,140.8834,0.25871146284097013,0.38142857142856557,45.299927623086546,-509219 -2024-09-13 19:00:00+00:00,5131,140.93,140.968,140.887,140.932,USD_JPY,H1,51.61132812499937,-0.2546915834827814,-0.32655481927294217,0.07186323579016074,140.8543,0.21268585669198053,0.3563571428571371,39.82213870045776,-514350 -2024-09-13 20:00:00+00:00,6921,140.932,140.943,140.804,140.822,USD_JPY,H1,43.01242236024814,-0.23843072978968394,-0.30893000137629056,0.07049927158660663,140.8355,0.1967251621583151,0.34192857142856575,33.466497519229044,-521271 -2024-09-15 21:00:00+00:00,425,140.805,140.934,140.688,140.787,USD_JPY,H1,46.45053102291828,-0.22576560818066582,-0.2922971227371656,0.0665315145564998,140.81350000000003,0.17391997541167653,0.3171428571428529,30.268771321941276,-521696 -2024-09-15 22:00:00+00:00,4722,140.765,140.787,140.457,140.698,USD_JPY,H1,49.939903846154415,-0.22036967976129063,-0.27791163414199066,0.05754195438070003,140.7963,0.16700554656653166,0.3004999999999975,26.313632409505573,-526418 -2024-09-15 23:00:00+00:00,5729,140.691,140.902,140.691,140.849,USD_JPY,H1,58.00354400472516,-0.20158518108786438,-0.26264634353116545,0.061061162443301065,140.7898,0.16197452676518975,0.2889999999999974,21.689494592123364,-520689 -2024-09-16 00:00:00+00:00,11598,140.85,140.852,140.424,140.529,USD_JPY,H1,45.53618594822989,-0.21009777977860722,-0.2521366307806538,0.04203885100204657,140.76819999999998,0.1666788906367436,0.29442857142857043,18.130799384480763,-532287 -2024-09-16 01:00:00+00:00,9842,140.526,140.588,140.447,140.544,USD_JPY,H1,41.7184850197857,-0.21317633681800885,-0.24434457198812481,0.031168235170115965,140.75209999999998,0.17219508506541564,0.2773571428571415,17.63245536002472,-522445 -2024-09-16 02:00:00+00:00,7755,140.545,140.563,140.477,140.536,USD_JPY,H1,44.13875598086129,-0.2137971283808895,-0.23823508326667778,0.024437954885788288,140.7243,0.15879185301442442,0.26078571428571096,17.9903447303593,-530200 -2024-09-16 03:00:00+00:00,10199,140.536,140.545,140.05,140.124,USD_JPY,H1,43.05717619603268,-0.24471316589165326,-0.2395306997916729,-0.005182466099980354,140.6848,0.20160555536009084,0.2641428571428516,18.090149944528005,-540399 -2024-09-16 04:00:00+00:00,11363,140.124,140.303,139.951,140.22,USD_JPY,H1,36.209150326797484,-0.25848825891696947,-0.24332221161673223,-0.01516604730023724,140.66080000000002,0.2267086234618663,0.2543571428571373,19.464858708865478,-529036 -2024-09-16 05:00:00+00:00,8502,140.218,140.292,140.07,140.196,USD_JPY,H1,34.64052287581704,-0.26824950548763127,-0.24830767039091206,-0.019941835096719207,140.64170000000001,0.24904303148424098,0.24621428571428186,21.59789949998892,-537538 -2024-09-16 06:00:00+00:00,14311,140.194,140.234,139.723,139.853,USD_JPY,H1,22.144927536232245,-0.3002020547325799,-0.2586865472592456,-0.04151550747333427,140.59945,0.30449293044111847,0.25742857142856834,27.658309999824553,-551849 -2024-09-16 07:00:00+00:00,17283,139.858,139.935,139.579,139.876,USD_JPY,H1,18.606060606060126,-0.3199802394147184,-0.27094528569034015,-0.04903495372437827,140.5514,0.3389128749306081,0.269214285714282,34.023133767048385,-534566 -2024-09-16 08:00:00+00:00,14901,139.877,139.948,139.734,139.854,USD_JPY,H1,17.272727272727295,-0.33358445545439963,-0.2834731196431521,-0.05011133581124755,140.5075,0.3697497730740725,0.2722857142857111,39.811563996209706,-549467 -2024-09-16 09:00:00+00:00,12034,139.851,140.276,139.829,140.209,USD_JPY,H1,31.952071892161754,-0.312122408699679,-0.2892029774544575,-0.0229194312452215,140.49984999999998,0.37447117442838956,0.2984285714285692,43.883391499613154,-537433 -2024-09-16 10:00:00+00:00,12321,140.207,140.234,140.024,140.128,USD_JPY,H1,32.421479229989345,-0.2982120027385804,-0.2910047825112821,-0.0072072202272983055,140.47415,0.3817687746788653,0.3034999999999976,48.20649830404882,-549754 -2024-09-16 11:00:00+00:00,12250,140.126,140.169,139.879,139.888,USD_JPY,H1,29.37127122533245,-0.30306040829341896,-0.2934159076677095,-0.009644500625709485,140.43525,0.4003749393462608,0.30664285714285555,51.01910384049501,-562004 -2024-09-16 12:00:00+00:00,17087,139.886,140.448,139.754,140.241,USD_JPY,H1,40.64674580433899,-0.27524579260796145,-0.2897818846557599,0.014536092047798432,140.4066,0.39226513583706946,0.33264285714285585,52.6308790817184,-544917 -2024-09-16 13:00:00+00:00,17518,140.24,140.482,140.213,140.46,USD_JPY,H1,42.25408203902863,-0.23284692513237815,-0.27839489275108353,0.04554796761870539,140.38400000000001,0.37422017154771825,0.3367857142857145,55.43631563844591,-527399 -2024-09-16 14:00:00+00:00,15283,140.459,140.71,140.326,140.447,USD_JPY,H1,48.13974591651558,-0.19801195004316696,-0.26231830420950025,0.06430635416633329,140.35965000000002,0.3517164340075991,0.33364285714285863,55.446402301968476,-542682 -2024-09-16 15:00:00+00:00,14666,140.45,140.913,140.428,140.8,USD_JPY,H1,55.0354051927616,-0.1403035000440127,-0.23791534337640274,0.09761184333239004,140.35305,0.34150109417017005,0.3582142857142888,53.385037591817756,-528016 -2024-09-16 16:00:00+00:00,9976,140.798,140.86,140.602,140.642,USD_JPY,H1,51.96879643387805,-0.10609541528631894,-0.21155135775838602,0.10545594247206708,140.34405,0.330692650203089,0.3705000000000049,50.99037012915861,-537992 -2024-09-16 17:00:00+00:00,8262,140.642,140.77,140.602,140.68,USD_JPY,H1,61.99309749784316,-0.07505380568656506,-0.18425184734402184,0.10919804165745678,140.3387,0.3239460805579408,0.3471428571428642,48.97660794460152,-529730 -2024-09-16 18:00:00+00:00,8230,140.679,140.746,140.616,140.716,USD_JPY,H1,60.98317094774152,-0.04700634738833287,-0.15680274735288405,0.10979639996455118,140.3396,0.32502006408254724,0.33128571428572073,46.990898914255546,-521500 -2024-09-16 19:00:00+00:00,6913,140.716,140.886,140.696,140.7,USD_JPY,H1,61.19999999999965,-0.025772511429465794,-0.13059670016820038,0.10482418873873459,140.33215,0.3142587392803814,0.3290000000000057,45.27888196153018,-528413 -2024-09-16 20:00:00+00:00,8530,140.7,140.72,140.576,140.608,USD_JPY,H1,68.88444222111022,-0.016181642670460405,-0.1077136886686524,0.091532045998192,140.33610000000002,0.317344557810595,0.3027857142857207,42.470422661267364,-536943 -2024-09-16 21:00:00+00:00,170,140.613,140.668,140.611,140.632,USD_JPY,H1,68.89999999999974,-0.006568493156493105,-0.08748464956622055,0.08091615640972745,140.3405,0.3209681898542775,0.2816428571428641,40.838619976523105,-536773 -2024-09-16 22:00:00+00:00,2255,140.63,140.87,140.628,140.868,USD_JPY,H1,72.89972899728927,0.01986424213973237,-0.06601487122502997,0.08587911336476234,140.3571,0.339652748295518,0.2836428571428655,39.23068150741399,-534518 -2024-09-16 23:00:00+00:00,8945,140.867,141.247,140.758,140.797,USD_JPY,H1,65.23316062176121,0.034683459341721345,-0.04587520511167971,0.08055866445340105,140.39075,0.34856440536572253,0.28664285714286564,40.12488441488062,-543463 -2024-09-17 00:00:00+00:00,13324,140.796,140.848,140.474,140.665,USD_JPY,H1,63.5537607269056,0.03536878952169786,-0.029626406185004197,0.06499519570670206,140.41299999999998,0.3512835111620581,0.2983571428571525,39.104201865908166,-556787 -2024-09-17 01:00:00+00:00,13084,140.665,140.672,140.341,140.445,USD_JPY,H1,64.20193778684285,0.017952808443084223,-0.020110563259386517,0.03806337170247074,140.42545,0.3475808841174322,0.30128571428572165,38.1110633208473,-569871 -2024-09-17 02:00:00+00:00,10538,140.448,140.592,140.322,140.578,USD_JPY,H1,59.678345778287785,0.01471290522258073,-0.013145869562993068,0.027858774785573796,140.4617,0.32156919522827027,0.2710000000000069,38.238841043666795,-559333 -2024-09-17 03:00:00+00:00,9594,140.579,140.668,140.462,140.598,USD_JPY,H1,54.47470817120623,0.013602292668394966,-0.007796237116715461,0.021398529785110428,140.4978,0.29147512298628425,0.26650000000000773,38.07926712328121,-549739 -2024-09-17 04:00:00+00:00,9381,140.598,140.754,140.576,140.68,USD_JPY,H1,57.23153320918676,0.01911845328640993,-0.0024132990360903827,0.021531752322500312,140.5391,0.25118684585488366,0.2517857142857208,39.28132724870789,-540358 -2024-09-17 05:00:00+00:00,8825,140.68,140.806,140.507,140.704,USD_JPY,H1,46.25585023400934,0.025136887351408177,0.00309673824140933,0.022040149109998845,140.56385,0.24113509525198126,0.23850000000000598,40.05293922363929,-531533 -2024-09-17 06:00:00+00:00,10898,140.703,140.726,140.518,140.682,USD_JPY,H1,51.74520069807986,0.02781073868607109,0.008039538330341683,0.019771200355729407,140.59154999999998,0.21926011338171883,0.23492857142857662,41.00336643113792,-542431 -2024-09-17 07:00:00+00:00,15488,140.682,140.7,140.352,140.6,USD_JPY,H1,46.638655462184424,0.02304739441910897,0.01104110954809514,0.012006284871013828,140.62715,0.14385053447119206,0.2477857142857179,40.651188214503726,-557919 -2024-09-17 08:00:00+00:00,10724,140.6,140.696,140.438,140.576,USD_JPY,H1,44.05772495755468,0.017138251253555836,0.012260537889187281,0.004877713364368555,140.6439,0.1126381722448027,0.2569285714285761,39.639726622493846,-568643 -2024-09-17 09:00:00+00:00,9826,140.576,140.654,140.476,140.644,USD_JPY,H1,47.72357723577308,0.017737774400188755,0.013355985191387577,0.004381789208801178,140.6531,0.10401108217445247,0.2560714285714332,37.717021517987746,-558817 -2024-09-17 10:00:00+00:00,8089,140.644,140.683,140.578,140.67,USD_JPY,H1,52.66323024054908,0.02007942046211042,0.014700672245532145,0.005378748216578275,140.66424999999998,0.09201537316854978,0.2532857142857178,35.219388536548394,-550728 -2024-09-17 11:00:00+00:00,10676,140.668,140.742,140.483,140.608,USD_JPY,H1,49.001663893510774,0.01673934919477915,0.015108407635381547,0.001630941559397605,140.65465,0.08698534331683473,0.26750000000000235,30.60504638414498,-561404 -2024-09-17 12:00:00+00:00,19435,140.609,141.133,140.544,140.974,USD_JPY,H1,53.978978978978795,0.04312830362414388,0.020712386833134016,0.022415916791009866,140.67125,0.11240803237079984,0.2922857142857152,26.489172972454867,-541969 -2024-09-17 13:00:00+00:00,20606,140.972,141.667,140.872,141.584,USD_JPY,H1,71.03153393907007,0.11197288839215958,0.03896448714493913,0.07300840124722044,140.71644999999998,0.2330858153568516,0.3141428571428569,22.836974979086964,-521363 -2024-09-17 14:00:00+00:00,20548,141.586,141.903,141.531,141.7,USD_JPY,H1,77.89757412398927,0.17388847032276544,0.0659492837805044,0.10793918654226105,140.76565,0.32046089744992085,0.313999999999997,23.10352159408809,-500815 -2024-09-17 15:00:00+00:00,15077,141.696,141.815,141.584,141.776,USD_JPY,H1,88.89538281706626,0.22647887245844345,0.0980552015160922,0.12842367094235124,140.81945,0.3913416160834321,0.3068571428571403,24.564290395433268,-485738 -2024-09-17 16:00:00+00:00,11145,141.779,141.999,141.69,141.737,USD_JPY,H1,85.8379715522566,0.2619901120524162,0.130842183623357,0.13114792842905917,140.8759,0.437893990962512,0.30964285714285367,27.135409752267066,-496883 -2024-09-17 17:00:00+00:00,13039,141.738,142.008,141.722,141.905,USD_JPY,H1,87.02549575070756,0.3002283754146333,0.16471942198161227,0.13550895343302105,140.93955,0.48999489519920447,0.31535714285713823,29.522745962593067,-483844 -2024-09-17 18:00:00+00:00,12820,141.908,141.99,141.798,141.81,USD_JPY,H1,81.77727784026948,0.3191873751950993,0.1956130126243097,0.12357436257078963,140.98665,0.5266578110623705,0.31635714285713895,32.18220917960394,-496664 -2024-09-17 19:00:00+00:00,11814,141.81,142.298,141.783,142.226,USD_JPY,H1,85.06912442396268,0.363589014622022,0.22920821302385214,0.13438080159816984,141.05810000000002,0.592404547012982,0.33178571428571096,36.80043923547089,-484850 -2024-09-17 20:00:00+00:00,9719,142.226,142.469,142.199,142.406,USD_JPY,H1,87.02749140893505,0.40859213366448444,0.26508499715197864,0.1435071365125058,141.14515,0.6560917999438121,0.3362142857142812,41.17409555376106,-475131 -2024-09-17 21:00:00+00:00,329,142.38,142.398,142.338,142.356,USD_JPY,H1,88.24041811846656,0.4352060630149879,0.2991092103245805,0.1360968526904074,141.2407,0.6871766875802844,0.3156428571428539,47.620065300042086,-475460 -2024-09-17 22:00:00+00:00,2798,142.355,142.377,142.012,142.05,USD_JPY,H1,78.58805275407323,0.42668756250026263,0.32462488075971696,0.10206268174054567,141.3143,0.6912795229872009,0.32328571428571096,51.93993396950136,-478258 -2024-09-17 23:00:00+00:00,7082,142.046,142.106,141.894,142.012,USD_JPY,H1,76.84458398744101,0.41211964827931524,0.34212383426363663,0.06999581401567861,141.385,0.6864558098680741,0.3257142857142818,55.86097319999533,-485340 -2024-09-18 00:00:00+00:00,14116,142.014,142.027,141.571,141.652,USD_JPY,H1,67.03678001387905,0.3672915713451914,0.3471573816799476,0.02013418966524383,141.4336,0.6680779500349026,0.3507857142857103,57.53195323788946,-499456 -2024-09-18 01:00:00+00:00,13715,141.65,141.766,141.472,141.521,USD_JPY,H1,65.4693324296843,0.3175340572646803,0.34123271679689415,-0.02369865953221384,141.47445,0.6457220743655624,0.3532857142857101,59.896649096124804,-513171 -2024-09-18 02:00:00+00:00,8990,141.52,141.628,141.382,141.472,USD_JPY,H1,59.45330296127583,0.2710227962925842,0.3271907326960322,-0.05616793640344803,141.51395,0.6182746344779779,0.3287857142857088,60.30467472111558,-522161 -2024-09-18 03:00:00+00:00,7941,141.47,141.472,141.297,141.394,USD_JPY,H1,45.480494766888796,0.22527154856464904,0.3068068958697556,-0.08153534730510659,141.55365,0.5808600043828394,0.28449999999999626,59.43010451865065,-530102 -2024-09-18 04:00:00+00:00,8145,141.394,141.558,141.225,141.319,USD_JPY,H1,40.75691411935981,0.18087645078847459,0.28162080685349944,-0.10074435606502485,141.5908,0.5371575873420349,0.28171428571428286,57.13553508709537,-538247 -2024-09-18 05:00:00+00:00,9683,141.318,141.547,141.283,141.537,USD_JPY,H1,44.57557875624154,0.16142301007167248,0.25758124749713407,-0.09615823742546159,141.63545,0.48929696876156475,0.2840714285714268,53.8151393009489,-528564 -2024-09-18 06:00:00+00:00,10591,141.534,141.706,141.444,141.549,USD_JPY,H1,45.68014705882389,0.14529939685971272,0.23512487736964982,-0.0898254805099371,141.6794,0.43441229501528233,0.2807142857142842,50.26384292707185,-517973 -2024-09-18 07:00:00+00:00,12583,141.55,141.93,141.533,141.88,USD_JPY,H1,49.46558358272755,0.15741566118808237,0.21958303413333635,-0.062167372945253985,141.743,0.3551878672027141,0.2886428571428569,45.77466306769287,-505390 -2024-09-18 08:00:00+00:00,12935,141.882,142.0,141.652,141.713,USD_JPY,H1,47.98838656159255,0.1517926128848046,0.20602494988363002,-0.0542323369988254,141.77995,0.30601366921261836,0.2997857142857145,41.060975302372526,-518325 -2024-09-18 09:00:00+00:00,10839,141.714,141.814,141.57,141.649,USD_JPY,H1,35.988343856241116,0.14055184725819458,0.19293032935854293,-0.052378482100348345,141.78320000000002,0.3041626295564008,0.28042857142857053,37.17994826811762,-529164 -2024-09-18 10:00:00+00:00,10802,141.648,141.71,141.553,141.609,USD_JPY,H1,29.23397602918206,0.12695236595803294,0.17973473667844095,-0.052782370720408006,141.77865,0.3061468987915809,0.272357142857144,34.30017057549113,-539966 -2024-09-18 11:00:00+00:00,12585,141.61,141.914,141.564,141.85,USD_JPY,H1,38.00947867298569,0.134075822307409,0.17060295380423457,-0.03652713149682557,141.78235,0.3065600781811793,0.2930714285714292,28.746319463264403,-527381 -2024-09-18 12:00:00+00:00,14122,141.848,142.062,141.814,141.926,USD_JPY,H1,46.70212765957383,0.14419162631551785,0.16532068830649121,-0.021129061990973363,141.79180000000002,0.30799822275248684,0.28471428571428703,24.123450992831156,-513259 -2024-09-18 13:00:00+00:00,13505,141.922,141.922,141.677,141.764,USD_JPY,H1,43.81237524950112,0.13755082744648917,0.1597667161344908,-0.022215888688001645,141.78474999999997,0.3068824349859062,0.287071428571431,20.249994771847298,-526764 -2024-09-18 14:00:00+00:00,14408,141.762,142.068,141.696,142.004,USD_JPY,H1,59.34182590233591,0.1499256906978701,0.15779851104716666,-0.007872820349296566,141.79444999999998,0.3107639948286425,0.2810714285714328,20.033578336001597,-512356 -2024-09-18 15:00:00+00:00,11662,142.003,142.038,141.864,141.938,USD_JPY,H1,61.462341946124724,0.1526475842344439,0.15676832568462212,-0.004120741450178211,141.78005,0.2960383109235064,0.2725000000000059,20.402719040339854,-524018 -2024-09-18 16:00:00+00:00,9292,141.936,141.994,141.844,141.884,USD_JPY,H1,61.293859649122474,0.1487328559883565,0.155161231745369,-0.006428375757012494,141.75394999999997,0.25858959041539303,0.26564285714286484,22.47725248522051,-533310 -2024-09-18 17:00:00+00:00,10359,141.885,142.068,141.812,141.993,USD_JPY,H1,66.14555256064695,0.15266595658198412,0.15466217671269203,-0.0019962201307079097,141.73579999999998,0.2246160700010633,0.27142857142857835,26.19404634166735,-522951 -2024-09-18 18:00:00+00:00,34856,141.987,141.987,140.442,141.138,USD_JPY,H1,46.565464895635905,0.08580253446496044,0.14089024826314572,-0.05508771379818528,141.69019999999998,0.24874963095968133,0.35800000000000615,26.575906450495392,-557807 -2024-09-18 19:00:00+00:00,31810,141.129,142.714,141.129,142.442,USD_JPY,H1,62.1607094866974,0.13646164779814285,0.14000452817014514,-0.0035428803720022883,141.7117,0.2927235267503661,0.45235714285714884,25.17052868995616,-525997 -2024-09-18 20:00:00+00:00,16307,142.442,142.492,142.204,142.28,USD_JPY,H1,59.44200464996136,0.16167364089056946,0.14433835071423,0.017335290176339446,141.7431,0.31852751671205065,0.4542142857142904,24.115736006277817,-542304 -2024-09-18 21:00:00+00:00,693,142.248,142.248,142.122,142.124,USD_JPY,H1,53.30086580086585,0.16713974783317553,0.14889863013801913,0.018241117695156406,141.77325,0.32487339632491186,0.43485714285714444,24.880258001005313,-542997 -2024-09-18 22:00:00+00:00,3213,142.123,142.214,141.883,142.112,USD_JPY,H1,55.63400169443671,0.16856031882426237,0.1528309678752678,0.01572935094899458,141.80525,0.325158402625059,0.433642857142857,26.64804677604061,-546210 -2024-09-18 23:00:00+00:00,9400,142.11,142.76,142.11,142.705,USD_JPY,H1,62.97297297297323,0.2150572297851454,0.1652762202572433,0.0497810095279021,141.87079999999997,0.3673030585196487,0.4626428571428554,25.190636643244055,-536810 -2024-09-19 00:00:00+00:00,21169,142.704,143.594,142.704,143.488,USD_JPY,H1,69.52004986494916,0.31149717734953697,0.19452041167570205,0.11697676567383491,141.97925,0.4941203640477209,0.5149999999999965,23.103220231205817,-515641 -2024-09-19 01:00:00+00:00,16829,143.49,143.946,143.42,143.732,USD_JPY,H1,69.53903654485066,0.4029701029074033,0.23621034992204232,0.166759752985361,142.089,0.6187674505427793,0.5275714285714262,22.72050135990448,-498812 -2024-09-19 02:00:00+00:00,16600,143.734,143.766,143.174,143.206,USD_JPY,H1,62.153437143942305,0.42808455908055976,0.27458519175374585,0.1534993673268139,142.17185,0.6526624237922846,0.5521428571428524,22.96832444401539,-515412 -2024-09-19 03:00:00+00:00,14611,143.206,143.326,142.952,143.172,USD_JPY,H1,63.701829505644085,0.44017042008138674,0.30770223741927405,0.1324681826621127,142.23645000000002,0.6853756921795698,0.5613571428571374,23.156935652023403,-530023 -2024-09-19 04:00:00+00:00,10859,143.174,143.299,143.058,143.178,USD_JPY,H1,61.96982055464927,0.44510184485321247,0.33518215890606173,0.10991968594715074,142.3097,0.704506628379646,0.5519999999999945,20.878228975635214,-519164 -2024-09-19 05:00:00+00:00,12456,143.178,143.2,142.554,142.576,USD_JPY,H1,55.86397058823531,0.3958703190208439,0.3473197909290182,0.048550528091825695,142.35605,0.6890759239043898,0.5857142857142789,18.482171315516997,-531620 -2024-09-19 06:00:00+00:00,15542,142.575,142.761,142.112,142.25,USD_JPY,H1,53.20378151260516,0.3267815700750134,0.34321214675821726,-0.016430576683203857,142.3881,0.6670558170912825,0.6213571428571356,16.07106136474031,-547162 -2024-09-19 07:00:00+00:00,19620,142.25,142.549,142.044,142.51,USD_JPY,H1,54.40900562851779,0.28966894260946674,0.33250350592846717,-0.04283456331900043,142.4211,0.6552554262589055,0.6391428571428496,12.964062838611762,-527542 -2024-09-19 08:00:00+00:00,15572,142.512,142.919,142.456,142.793,USD_JPY,H1,65.63976563976559,0.279866525733496,0.321976109889473,-0.04210958415597699,142.46445,0.6494303150979291,0.5618571428571377,12.473340174130172,-511970 -2024-09-19 09:00:00+00:00,14273,142.79,142.981,142.686,142.762,USD_JPY,H1,53.98208063713278,0.2665242729021031,0.310885742491999,-0.0443614695898959,142.51435,0.6308532463092217,0.46971428571427915,12.483696512029917,-526243 -2024-09-19 10:00:00+00:00,13660,142.76,143.175,142.728,142.832,USD_JPY,H1,57.03005603667843,0.25861767284442294,0.3004321285624838,-0.04181445571806086,142.55575000000002,0.6227150125057755,0.48107142857142343,12.709873029295375,-512583 -2024-09-19 11:00:00+00:00,15376,142.828,143.256,142.764,142.922,USD_JPY,H1,60.33678756476683,0.25665532040218864,0.29167676693042477,-0.03502144652823613,142.60495,0.6100826928076074,0.5072142857142816,12.409782762646405,-497207 -2024-09-19 12:00:00+00:00,22088,142.924,143.762,142.713,143.758,USD_JPY,H1,67.57045260461152,0.31888247651829715,0.29711790884799927,0.021764567670297885,142.69865,0.6368499182534815,0.5584999999999971,12.59380014806674,-475119 -2024-09-19 13:00:00+00:00,23285,143.762,143.77,143.282,143.334,USD_JPY,H1,56.965669988925676,0.3301785962500787,0.30373004632841516,0.026448549921663567,142.7657,0.6291929751345161,0.5469285714285702,13.692827472354386,-498404 -2024-09-19 14:00:00+00:00,22846,143.336,143.34,142.804,142.915,USD_JPY,H1,43.09804866297276,0.30184161203709436,0.30335235947015105,-0.0015107474330566806,142.85455000000002,0.4993041973965884,0.521642857142857,13.568860967386803,-521250 -2024-09-19 15:00:00+00:00,16633,142.919,142.988,142.733,142.888,USD_JPY,H1,39.273004575495825,0.27404663452509226,0.2974912144811393,-0.02344457995604704,142.87685000000002,0.48977785239414046,0.502285714285713,14.248623879918052,-537883 -2024-09-19 16:00:00+00:00,12228,142.884,143.137,142.856,143.04,USD_JPY,H1,47.668539325842744,0.26127226029743156,0.29024742364439776,-0.028975163346966204,142.91485,0.4701216275560349,0.4800714285714288,14.731824430557415,-525655 -2024-09-19 17:00:00+00:00,11018,143.037,143.118,142.902,142.922,USD_JPY,H1,46.56970362239298,0.2388732803721325,0.2799725949899447,-0.04109931461781219,142.95475000000002,0.43176746599999793,0.46878571428571547,14.938553602675691,-536673 -2024-09-19 18:00:00+00:00,13245,142.918,142.933,142.534,142.663,USD_JPY,H1,43.3923530921223,0.19794105073978585,0.26356628613991295,-0.0656252354001271,142.9823,0.3907987905510263,0.4800714285714288,16.080003216732432,-549918 -2024-09-19 19:00:00+00:00,11776,142.664,142.746,142.572,142.638,USD_JPY,H1,50.93373493975921,0.16162159959489486,0.24317734883090933,-0.08155574923601447,142.97895,0.39357825071131225,0.44635714285714456,15.605277744990149,-561694 -2024-09-19 20:00:00+00:00,12720,142.638,142.678,142.532,142.636,USD_JPY,H1,56.4419225634178,0.13116480340337944,0.22077483974540335,-0.08961003634202391,142.93635,0.38150398695744037,0.4104285714285721,15.629143805515655,-574414 -2024-09-19 21:00:00+00:00,163,142.604,142.659,142.597,142.642,USD_JPY,H1,52.40700218818388,0.10628651802934996,0.19787717540219268,-0.09159065737284272,142.88185,0.3371348745579452,0.3787857142857141,15.661840130156707,-574251 -2024-09-19 22:00:00+00:00,3076,142.642,142.673,142.522,142.666,USD_JPY,H1,47.442609746274485,0.08749827144822575,0.1758013946113993,-0.08830312316317354,142.85485,0.3313827925859545,0.356499999999999,14.512440699682424,-571175 -2024-09-19 23:00:00+00:00,7880,142.662,142.934,142.651,142.866,USD_JPY,H1,51.960784313725725,0.08773541989381783,0.158188199667883,-0.07045277977406517,142.83955,0.3229253579404464,0.3556428571428561,14.850801250429154,-563295 -2024-09-20 00:00:00+00:00,13338,142.866,142.899,142.412,142.412,USD_JPY,H1,43.08300395256945,0.05070486189654844,0.1366915321136161,-0.08598667021706766,142.80125,0.3260810158627913,0.3584999999999984,14.802142362147606,-576633 -2024-09-20 01:00:00+00:00,14222,142.408,142.482,142.143,142.399,USD_JPY,H1,41.162554917201916,0.02007744623605845,0.11336871493810458,-0.09329126870204613,142.7924,0.3348014965079716,0.34757142857142753,15.450467693712486,-590855 -2024-09-20 02:00:00+00:00,11019,142.399,142.784,142.304,142.47,USD_JPY,H1,20.64721969006378,0.0015166226133089822,0.09099829647314546,-0.08948167385983648,142.80339999999998,0.31929797988516684,0.30692857142856916,15.801140830099914,-579836 -2024-09-20 03:00:00+00:00,13212,142.47,142.488,141.954,142.294,USD_JPY,H1,23.278520041110156,-0.027082502704956823,0.067382136637525,-0.09446463934248182,142.79260000000002,0.33309906849524284,0.31021428571428294,17.471340480743645,-593048 -2024-09-20 04:00:00+00:00,7672,142.294,142.309,142.104,142.19,USD_JPY,H1,27.774371551195756,-0.05747688860722633,0.04241033158857474,-0.09988722019580107,142.76245,0.3593188694719789,0.28657142857142454,18.697736399604306,-600720 -2024-09-20 05:00:00+00:00,7652,142.189,142.376,142.146,142.282,USD_JPY,H1,32.134433962264595,-0.07329611529866042,0.019269042211127706,-0.09256515750978814,142.73845,0.3750370472375376,0.28478571428571187,18.397694652103144,-593068 -2024-09-20 06:00:00+00:00,21585,142.286,143.047,141.739,142.984,USD_JPY,H1,48.753339269813395,-0.028854812959508536,0.009644271177000457,-0.038499084136508994,142.74605,0.3785561871118672,0.3581428571428538,17.713590748520417,-571483 -2024-09-20 07:00:00+00:00,20081,142.982,143.65,142.82,143.632,USD_JPY,H1,62.78818443804032,0.05798500867896905,0.019312418677394177,0.03867259000157487,142.78154999999998,0.426215595877495,0.40199999999999697,18.843327136250927,-551402 -2024-09-20 08:00:00+00:00,18988,143.634,143.881,143.48,143.809,USD_JPY,H1,71.26948775055618,0.13948076627403339,0.04334608819672202,0.09613467807731137,142.78410000000002,0.4324717087926749,0.4021428571428548,20.858225683045763,-532414 -2024-09-20 09:00:00+00:00,14903,143.808,143.95,143.646,143.94,USD_JPY,H1,73.24999999999953,0.2121913368539481,0.07711513792816724,0.13507619892578085,142.8144,0.490378843839229,0.41142857142856876,23.99339668342291,-517511 -2024-09-20 10:00:00+00:00,13573,143.94,144.272,143.775,144.258,USD_JPY,H1,76.0269576379973,0.2921076945805794,0.12011364925864967,0.17199404532192972,142.88155,0.5872610353524297,0.4364999999999973,26.624279078424298,-503938 -2024-09-20 11:00:00+00:00,13220,144.26,144.427,144.212,144.218,USD_JPY,H1,75.01587301587242,0.3482004797558602,0.1657310153580918,0.18246946439776843,142.94805,0.6589563897887435,0.4474285714285701,29.22747526777864,-517158 -2024-09-20 12:00:00+00:00,16553,144.218,144.29,143.577,143.668,USD_JPY,H1,63.628944504896594,0.3443050780583121,0.20144582789813587,0.14285925016017625,142.97944999999999,0.678248555170508,0.48757142857142605,31.485654210482306,-533711 -2024-09-20 13:00:00+00:00,20634,143.67,144.094,143.468,144.081,USD_JPY,H1,65.62098225764942,0.37027528951401223,0.23521172022131115,0.13506356929270108,143.0374,0.7212324539224932,0.5120714285714273,32.717838499511124,-513077 -2024-09-20 14:00:00+00:00,19674,144.08,144.447,144.032,144.422,USD_JPY,H1,76.61546610169472,0.41360493906461215,0.27089036398997135,0.1427145750746408,143.12535,0.7781755501182638,0.50692857142857,34.64970066644599,-493403 -2024-09-20 15:00:00+00:00,19281,144.426,144.497,143.846,143.912,USD_JPY,H1,67.70418909431321,0.4021554629112245,0.297143383774222,0.1050120791370025,143.18905,0.7882606084297635,0.5292142857142851,35.81399915460433,-512684 -2024-09-20 16:00:00+00:00,15878,143.913,143.936,143.65,143.757,USD_JPY,H1,64.769336699564,0.3762374350085622,0.31296219402109005,0.06327524098747217,143.2451,0.7867190965028331,0.5153571428571431,35.28611331782796,-528562 -2024-09-20 17:00:00+00:00,12219,143.756,144.157,143.742,143.979,USD_JPY,H1,69.13468089938672,0.36935308340380857,0.3242403718976338,0.045112711506174796,143.31195000000002,0.7895739340484575,0.5068571428571451,35.296684172341465,-516343 -2024-09-20 18:00:00+00:00,11904,143.976,143.985,143.8,143.874,USD_JPY,H1,69.11898274296081,0.3513741403128847,0.329667125580684,0.021707014732200713,143.37235,0.7837426588005031,0.505428571428575,36.31194259506124,-528247 -2024-09-20 19:00:00+00:00,9815,143.876,143.926,143.72,143.923,USD_JPY,H1,68.81449208897024,0.3371926419901854,0.3311722288625843,0.006020413127601099,143.4252,0.783439152215311,0.5037142857142872,37.554347152984164,-518432 -2024-09-20 20:00:00+00:00,10354,143.92,144.052,143.88,143.92,USD_JPY,H1,62.77990169306349,0.3219998140508835,0.3293377459002441,-0.007337931849360602,143.5006,0.7527602120217459,0.4225714285714304,39.29144619999367,-528786 -2024-09-22 21:00:00+00:00,279,143.942,144.093,143.815,143.899,USD_JPY,H1,54.39868204283351,0.3047518740522719,0.3244205715306497,-0.019668697478377795,143.57559999999998,0.710782030370767,0.38314285714285745,38.27139814171121,-529065 -2024-09-22 22:00:00+00:00,4216,143.882,144.045,143.698,143.928,USD_JPY,H1,52.06096293730514,0.2900789652322544,0.3175522502709706,-0.02747328503871621,143.6485,0.6646945083533131,0.3792857142857124,35.227122340477486,-524849 -2024-09-22 23:00:00+00:00,7293,143.926,144.094,143.81,144.082,USD_JPY,H1,52.43986254295523,0.2875622535899822,0.31155425093477296,-0.02399199734479074,143.7379,0.5888419410508956,0.3778571428571403,32.28352250267995,-517556 -2024-09-23 00:00:00+00:00,11941,144.087,144.26,144.028,144.126,USD_JPY,H1,47.4962063732928,0.2858233797552714,0.30640807669887266,-0.020584696943601266,143.83470000000003,0.46764720166498003,0.3589285714285698,29.314388040384355,-505615 -2024-09-23 01:00:00+00:00,11834,144.128,144.462,144.128,144.377,USD_JPY,H1,52.79241306638602,0.3012265597451176,0.30537177330812165,-0.004145213563004069,143.93945000000002,0.30940902491538036,0.3675714285714256,26.02241578043647,-493781 -2024-09-23 02:00:00+00:00,8061,144.378,144.452,144.307,144.361,USD_JPY,H1,64.98054474708107,0.3085854436716602,0.30601450738082936,0.0025709362908308275,144.00830000000002,0.2281456366915654,0.3269999999999982,25.28048635177626,-501842 -2024-09-23 03:00:00+00:00,6596,144.359,144.406,144.263,144.319,USD_JPY,H1,56.127703398557976,0.30748388043838304,0.3063083819923401,0.0011754984460429219,144.04265,0.22008282523303757,0.2924999999999979,25.456282058660324,-508438 -2024-09-23 04:00:00+00:00,6531,144.32,144.354,144.185,144.26,USD_JPY,H1,45.12048192771082,0.2984101898090046,0.30472874355567303,-0.006318553746668454,144.0652,0.21797769070901393,0.2749285714285707,22.88552458730365,-514969 -2024-09-23 05:00:00+00:00,6391,144.259,144.32,144.102,144.116,USD_JPY,H1,57.88253477588877,0.276413307523228,0.29906565634918403,-0.022652348825956015,144.074,0.2162026339109199,0.24399999999999775,20.661818898103053,-521360 -2024-09-23 06:00:00+00:00,12464,144.116,144.197,143.868,143.994,USD_JPY,H1,59.39730372720003,0.24629708000560413,0.28851194108046807,-0.04221486107486394,144.0608,0.21240319148281295,0.24707142857142678,19.075405460850284,-533824 -2024-09-23 07:00:00+00:00,22336,143.996,144.046,143.546,143.667,USD_JPY,H1,38.57979502196186,0.1938094706398772,0.2695714469923499,-0.07576197635247273,144.03325,0.22622459139537113,0.2531428571428539,17.79365283684979,-556160 -2024-09-23 08:00:00+00:00,18653,143.666,143.746,143.437,143.59,USD_JPY,H1,39.38714499252665,0.14433559469077295,0.2445242765320345,-0.10018868184126156,144.02935,0.23341092624132567,0.2619999999999964,17.278259023583427,-574813 -2024-09-23 09:00:00+00:00,13851,143.588,143.748,143.518,143.63,USD_JPY,H1,38.97667419112096,0.10712004407889708,0.21704343004140703,-0.10992338596250995,144.0068,0.24939666136356783,0.2637142857142822,16.809017734157635,-560962 -2024-09-23 10:00:00+00:00,11922,143.626,143.67,143.28,143.372,USD_JPY,H1,32.70202020202076,0.056160623581519076,0.18486686874942942,-0.12870624516791035,143.9543,0.2672698418889626,0.27928571428571,18.4505652336447,-572884 -2024-09-23 11:00:00+00:00,13337,143.374,143.645,143.166,143.611,USD_JPY,H1,42.008879023306974,0.034660671641034924,0.15482562932775054,-0.12016495768671562,143.93925,0.27803499867565545,0.2936428571428544,21.54981772887174,-559547 -2024-09-23 12:00:00+00:00,15238,143.611,143.88,143.457,143.774,USD_JPY,H1,46.02272727272732,0.030423835543615496,0.12994527057092353,-0.09952143502730804,143.9401,0.27747392473821203,0.2990714285714274,23.52942335554866,-544309 -2024-09-23 13:00:00+00:00,19540,143.773,144.21,143.482,144.06,USD_JPY,H1,49.468085106383185,0.04957248150097371,0.11387071275693357,-0.06429823125595986,143.94415,0.27866019197913583,0.3307857142857143,24.226880363809606,-524769 -2024-09-23 14:00:00+00:00,21998,144.064,144.348,143.71,143.773,USD_JPY,H1,42.36261358719143,0.041115466436224324,0.09931966349279173,-0.0582041970565674,143.9391,0.28090453513069674,0.3597857142857147,24.5486010766347,-546767 -2024-09-23 15:00:00+00:00,16607,143.772,143.944,143.574,143.594,USD_JPY,H1,32.51451540866405,0.01974184532923573,0.08340409986008053,-0.0636622545308448,143.92265,0.2913365344030848,0.36221428571428554,26.233577322188097,-563374 -2024-09-23 16:00:00+00:00,15716,143.59,143.63,143.316,143.347,USD_JPY,H1,29.473684210526216,-0.016932551211311875,0.06333676964580205,-0.08026932085711393,143.894,0.31851728857320133,0.3742857142857129,27.40406575932594,-579090 -2024-09-23 17:00:00+00:00,11810,143.344,143.408,143.253,143.408,USD_JPY,H1,31.699477701887687,-0.04060699236174514,0.042548017244292614,-0.08315500960603775,143.86944999999997,0.3365247272747192,0.3751428571428558,28.28138360555555,-567280 -2024-09-23 18:00:00+00:00,9964,143.408,143.439,143.293,143.322,USD_JPY,H1,31.35930047694707,-0.06555298480313354,0.02092781683480738,-0.08648080163794092,143.83915,0.3575972852008637,0.3734999999999969,30.614115600979343,-577244 -2024-09-23 19:00:00+00:00,9843,143.322,143.514,143.322,143.49,USD_JPY,H1,37.6771653543303,-0.07094881381217988,0.0025524907054099294,-0.07350130451758981,143.80955,0.3609233005906659,0.37164285714285533,31.90349940170227,-567401 -2024-09-23 20:00:00+00:00,9831,143.49,143.647,143.49,143.604,USD_JPY,H1,42.29857819905217,-0.06527376458777212,-0.011012760353226481,-0.05426100423454564,143.78345,0.3556708227734525,0.3593571428571392,32.304036247683264,-557570 -2024-09-23 21:00:00+00:00,201,143.536,143.594,143.536,143.592,USD_JPY,H1,48.3085250338297,-0.06104090534259399,-0.021018389351099984,-0.040022515991494007,143.7442,0.32903952724258556,0.32778571428571013,30.52734385060429,-557771 -2024-09-23 22:00:00+00:00,1871,143.588,143.705,143.556,143.631,USD_JPY,H1,50.9407985314364,-0.053917828665106526,-0.027598277213901293,-0.026319551451205233,143.7077,0.2958306947590249,0.31635714285713895,29.10488886379289,-555900 -2024-09-23 23:00:00+00:00,5296,143.625,143.782,143.518,143.632,USD_JPY,H1,50.04672897196284,-0.04764285031478721,-0.03160719183407848,-0.01603565848070873,143.67335,0.25866504954525604,0.31878571428571184,28.16274789187353,-550604 -2024-09-24 00:00:00+00:00,14529,143.624,143.734,143.412,143.553,USD_JPY,H1,54.61499235084108,-0.04848561257233541,-0.03498287598172987,-0.013502736590605545,143.638,0.21963821919200824,0.3139285714285701,26.482900809429616,-565133 -2024-09-24 01:00:00+00:00,14782,143.552,143.912,143.524,143.63,USD_JPY,H1,50.52807115063941,-0.04245090365651549,-0.036476481516687,-0.005974422139828496,143.6137,0.18867239767797897,0.30742857142856955,25.778529697014783,-550351 -2024-09-24 02:00:00+00:00,12412,143.63,143.715,143.378,143.668,USD_JPY,H1,46.83393070489857,-0.03420774534743032,-0.036022734282835665,0.001814988935405347,143.59740000000002,0.166915484328658,0.30128571428571355,25.252969924303557,-537939 -2024-09-24 03:00:00+00:00,10496,143.67,143.859,143.57,143.775,USD_JPY,H1,40.468227424749124,-0.01882398604149671,-0.03258298463456787,0.013758998593071163,143.6028,0.17098310154500235,0.2699285714285712,25.297138295559883,-527443 -2024-09-24 04:00:00+00:00,9593,143.776,143.944,143.752,143.844,USD_JPY,H1,52.77995301487863,-0.0010523913027213894,-0.026276865968198577,0.025224474665477187,143.6155,0.17921715720052048,0.23807142857142644,25.017525608309665,-517850 -2024-09-24 05:00:00+00:00,12825,143.842,144.198,143.84,144.094,USD_JPY,H1,68.5459940652825,0.03282623581512212,-0.01445624561153444,0.04728248142665656,143.6387,0.20878649372364882,0.23721428571428557,25.191999786936776,-505025 -2024-09-24 06:00:00+00:00,13923,144.098,144.47,144.074,144.428,USD_JPY,H1,87.66550522648113,0.08563910622578419,0.005562824755929284,0.0800762814698549,143.6915,0.2640128584657305,0.24307142857142797,27.172234094158853,-491102 -2024-09-24 07:00:00+00:00,16559,144.43,144.682,144.24,144.455,USD_JPY,H1,87.36616702355524,0.1281946131717575,0.03008918243909493,0.09810543073266258,143.73370000000003,0.31331741088180676,0.2635714285714264,29.82111314911192,-474543 -2024-09-24 08:00:00+00:00,14864,144.454,144.638,144.217,144.29,USD_JPY,H1,82.70270270270132,0.14691252188245585,0.053453850327767116,0.09345867155468873,143.7595,0.33714911578934764,0.2832142857142839,32.55823250770989,-489407 -2024-09-24 09:00:00+00:00,10354,144.29,144.48,144.213,144.27,USD_JPY,H1,79.27927927927884,0.1583078917055616,0.07442465860332602,0.08388323310223557,143.77,0.3500245103653677,0.288571428571426,35.669431361235986,-499761 -2024-09-24 10:00:00+00:00,8965,144.268,144.36,143.878,143.939,USD_JPY,H1,60.81342801807527,0.13902725106322578,0.08734517709530598,0.051682073967919795,143.7783,0.3520616123765402,0.31178571428571494,37.57577881503938,-508726 -2024-09-24 11:00:00+00:00,10746,143.936,144.168,143.829,143.977,USD_JPY,H1,62.22222222222158,0.12536831892393252,0.0949498054610313,0.030418513462901225,143.79745,0.3519256013836176,0.3318571428571439,39.690234283559846,-497980 -2024-09-24 12:00:00+00:00,15888,143.981,144.124,143.786,143.969,USD_JPY,H1,60.9455958549216,0.11260000093528788,0.09847984455588261,0.014120156379405266,143.82855,0.337199062656872,0.3453571428571434,40.454654234742875,-513868 -2024-09-24 13:00:00+00:00,16418,143.97,144.21,143.902,144.098,USD_JPY,H1,63.93540669856415,0.11160374039224052,0.10110462372315421,0.010499116669086317,143.86305,0.3270519795543965,0.34850000000000136,41.00583656726725,-497450 -2024-09-24 14:00:00+00:00,19982,144.1,144.1,143.432,143.674,USD_JPY,H1,52.99950421417959,0.07572799506201022,0.09602929799092542,-0.020301302928915202,143.88065,0.3051407396836855,0.37321428571428733,39.4816069397835,-517432 -2024-09-24 15:00:00+00:00,12964,143.672,143.87,143.6,143.778,USD_JPY,H1,53.62035225048902,0.055053516583200235,0.08783414170938039,-0.03278062512618016,143.89505000000003,0.2922588028731561,0.36478571428571627,36.93741546927036,-504468 -2024-09-24 16:00:00+00:00,9700,143.778,143.795,143.402,143.464,USD_JPY,H1,45.60344827586199,0.013179739808265367,0.07290326132915739,-0.059723521520892026,143.88805,0.3011384494739413,0.36878571428571505,35.60278860536123,-514168 -2024-09-24 17:00:00+00:00,8869,143.464,143.71,143.435,143.474,USD_JPY,H1,43.22986954565878,-0.01897982592490166,0.05452664387834558,-0.07350646980324724,143.88215,0.3083144796845153,0.3677857142857143,34.61736894833935,-505299 -2024-09-24 18:00:00+00:00,9215,143.475,143.498,143.275,143.384,USD_JPY,H1,39.75044563279866,-0.05113925975089728,0.03339346315249701,-0.0845327229033943,143.8698,0.3234782347903819,0.3700000000000005,34.76508094526169,-514514 -2024-09-24 19:00:00+00:00,8362,143.385,143.436,143.222,143.241,USD_JPY,H1,30.042115114647444,-0.08716002118435995,0.009282766285125619,-0.09644278746948556,143.85025000000002,0.34938455282320324,0.3597142857142858,34.64806304840707,-522876 -2024-09-24 20:00:00+00:00,5754,143.246,143.261,143.115,143.224,USD_JPY,H1,16.923076923077616,-0.1157442642312958,-0.015722639818158666,-0.10002162441313714,143.8338,0.3711816975465413,0.34185714285714297,34.24091667828716,-528630 -2024-09-24 21:00:00+00:00,430,143.217,143.264,143.174,143.191,USD_JPY,H1,15.388828039430592,-0.13945278212580092,-0.04046866827968712,-0.0989841138461138,143.81185,0.39601718126443924,0.31671428571428756,34.940105595461816,-529060 -2024-09-24 22:00:00+00:00,3211,143.192,143.253,142.892,143.047,USD_JPY,H1,15.56786703601135,-0.1679258057511106,-0.06596009577397183,-0.10196570997713877,143.7808,0.4307144126041882,0.3124285714285731,35.98822647899766,-532271 -2024-09-24 23:00:00+00:00,6593,143.044,143.154,142.935,142.952,USD_JPY,H1,14.94680851063842,-0.19589839342620508,-0.09194775530441848,-0.10395063812178659,143.73965,0.46891770960666074,0.30900000000000155,37.1228299575068,-538864 -2024-09-25 00:00:00+00:00,13859,142.95,143.312,142.91,143.176,USD_JPY,H1,28.482797518330315,-0.19771283227791514,-0.11310077069911782,-0.08461206157879732,143.70625,0.4846210537637522,0.30328571428571494,38.80622609344651,-525005 -2024-09-25 01:00:00+00:00,13925,143.168,143.476,143.1,143.45,USD_JPY,H1,36.884021901443035,-0.17502371363147518,-0.1254853592855893,-0.04953835434588588,143.67405000000002,0.47886219033240845,0.30592857142857255,39.58424932136935,-511080 -2024-09-25 02:00:00+00:00,9313,143.451,143.494,143.247,143.35,USD_JPY,H1,35.26891956211308,-0.16322997436569153,-0.13303428230160974,-0.03019569206408179,143.62015000000002,0.4492880068722992,0.29942857142857193,40.603352346931594,-520393 -2024-09-25 03:00:00+00:00,8699,143.348,143.454,143.284,143.298,USD_JPY,H1,30.2371541501968,-0.15627784275443446,-0.13768299439217468,-0.018594848362259775,143.5623,0.4087985090651212,0.2895714285714287,42.131547331502375,-529092 -2024-09-25 04:00:00+00:00,9063,143.299,143.398,143.224,143.254,USD_JPY,H1,37.22627737226189,-0.1525600434264618,-0.1406584041990321,-0.011901639227429678,143.5105,0.37606305457160893,0.25428571428571445,43.46008814862729,-538155 -2024-09-25 05:00:00+00:00,10852,143.255,143.378,143.18,143.262,USD_JPY,H1,33.33333333333333,-0.14727048505352514,-0.14198082036993073,-0.005289664683594403,143.46009999999998,0.3341252364685615,0.24914285714285508,45.73025869671761,-527303 -2024-09-25 06:00:00+00:00,11311,143.262,143.74,143.226,143.682,USD_JPY,H1,56.59008464328879,-0.10794367453280529,-0.13517339120250565,0.027229716669700366,143.44725,0.3193534380306247,0.2577857142857129,45.99425327172564,-515992 -2024-09-25 07:00:00+00:00,13991,143.686,143.91,143.576,143.882,USD_JPY,H1,61.06290672451238,-0.059947527548985136,-0.12012821847180155,0.060180690922816416,143.4425,0.31167349643812714,0.2619999999999984,47.13233920038842,-502001 -2024-09-25 08:00:00+00:00,12985,143.883,144.066,143.883,143.94,USD_JPY,H1,65.34216335540884,-0.01703376535311918,-0.09950932784806509,0.0824755624949459,143.44105,0.30915240231259267,0.25921428571428506,48.864577580410696,-489016 -2024-09-25 09:00:00+00:00,11746,143.939,144.261,143.907,144.185,USD_JPY,H1,74.66039707418967,0.036326404633427956,-0.07234218135176648,0.10866858598519444,143.4454,0.3193273192243747,0.2692142857142841,50.04349366385461,-477270 -2024-09-25 10:00:00+00:00,10150,144.186,144.298,144.068,144.284,USD_JPY,H1,76.55310621242516,0.08561626539631106,-0.04075049200215097,0.12636675739846204,143.4759,0.36776821928885445,0.2752142857142843,50.02354435002051,-467120 -2024-09-25 11:00:00+00:00,11811,144.28,144.444,144.263,144.308,USD_JPY,H1,78.10770005032695,0.12517252365330478,-0.007565888871059825,0.1327384125243646,143.5024,0.4076180358116711,0.28171428571428286,48.42610114253604,-455309 -2024-09-25 12:00:00+00:00,13960,144.305,144.412,144.144,144.201,USD_JPY,H1,79.58974358974366,0.14620181404092136,0.023187651711336417,0.12301416232958495,143.53924999999998,0.4362704224905869,0.27507142857142647,47.907421784710614,-469269 -2024-09-25 13:00:00+00:00,17730,144.202,144.212,143.86,144.058,USD_JPY,H1,77.67767767767768,0.14960422885698677,0.04847096714046649,0.10113326171652028,143.56844999999998,0.4509695373808033,0.28457142857142514,45.15291037447862,-486999 -2024-09-25 14:00:00+00:00,15627,144.056,144.398,144.048,144.358,USD_JPY,H1,78.49566055930592,0.17449667090539833,0.07367610789345286,0.10082056301194547,143.61714999999998,0.48155616982675786,0.2808571428571379,44.21153382385881,-471372 -2024-09-25 15:00:00+00:00,13492,144.36,144.608,144.31,144.406,USD_JPY,H1,75.86580086580115,0.19583979022073095,0.09810884435890849,0.09773094586182246,143.6754,0.5036166461479606,0.27528571428570914,44.73549184781711,-457880 -2024-09-25 16:00:00+00:00,10498,144.405,144.54,144.376,144.532,USD_JPY,H1,81.53681963713984,0.2203810969182598,0.12256329487077877,0.09781780204748103,143.7408,0.5263290545332966,0.26935714285713785,45.85462707442107,-447382 -2024-09-25 17:00:00+00:00,9571,144.532,144.744,144.486,144.553,USD_JPY,H1,84.04774823657036,0.23877236459389906,0.14580510881540285,0.09296725577849621,143.8089,0.5393982904601717,0.2756428571428517,46.5432725305087,-437811 -2024-09-25 18:00:00+00:00,10804,144.551,144.72,144.519,144.68,USD_JPY,H1,87.01973001038432,0.2605914789882888,0.16876238284998005,0.09182909613830878,143.89055,0.5415887422681273,0.2775714285714222,49.167318193178836,-427007 -2024-09-25 19:00:00+00:00,9587,144.679,144.77,144.61,144.76,USD_JPY,H1,87.48748748748743,0.28109828965068573,0.1912295642101212,0.08986872544056454,143.98095,0.527390445060664,0.2748571428571377,51.11556769358895,-417420 -2024-09-25 20:00:00+00:00,5932,144.76,144.844,144.743,144.759,USD_JPY,H1,84.10386320455963,0.29388170780896417,0.2117599929298898,0.08212171487907435,144.0601,0.5189460878239768,0.24535714285713692,54.87685036578372,-423352 -2024-09-25 21:00:00+00:00,639,144.709,144.738,144.669,144.674,USD_JPY,H1,77.04918032786945,0.29376750029410914,0.22816149440273367,0.06560600589137547,144.1213,0.5153710058267933,0.22642857142856446,57.26552568225399,-423991 -2024-09-25 22:00:00+00:00,3573,144.67,144.687,144.562,144.652,USD_JPY,H1,74.92997198879519,0.2885752579358041,0.24024424710934775,0.04833101082645633,144.1864,0.4946299413806741,0.2222142857142789,57.075923420085665,-427564 -2024-09-25 23:00:00+00:00,5047,144.658,144.768,144.614,144.72,USD_JPY,H1,71.38289368505174,0.28664315628262216,0.24952402894400263,0.03711912733861952,144.2575,0.46128464778145284,0.20792857142856544,55.68242700716167,-422517 -2024-09-26 00:00:00+00:00,10951,144.712,144.728,144.444,144.496,USD_JPY,H1,57.70348837209364,0.26399386688160575,0.25241799653152325,0.011575870350082507,144.31959999999998,0.3983934050990195,0.21178571428571047,52.38274827484561,-433468 -2024-09-26 01:00:00+00:00,9331,144.494,144.949,144.476,144.816,USD_JPY,H1,65.19138755980893,0.26876728553460794,0.2556878543321402,0.01307943120246774,144.3973,0.3262851674375631,0.23264285714285546,49.12043007543196,-424137 -2024-09-26 02:00:00+00:00,6873,144.812,144.948,144.765,144.838,USD_JPY,H1,70.06931316950235,0.2711992541597681,0.2587901342976658,0.012409119862102302,144.4551,0.2936632334842752,0.22657142857142837,45.26181924840518,-417264 -2024-09-26 03:00:00+00:00,5658,144.838,145.042,144.792,144.93,USD_JPY,H1,78.3854166666671,0.27735308423180527,0.26250272428449367,0.014850359947311598,144.5075,0.279161809266982,0.21928571428571583,45.89055224712058,-411606 -2024-09-26 04:00:00+00:00,8453,144.93,144.966,144.628,144.692,USD_JPY,H1,61.329715061058536,0.2600279871744817,0.26200777686249127,-0.001979789688009548,144.5451,0.24755688334231193,0.21842857142857497,44.693630179324266,-420059 -2024-09-26 05:00:00+00:00,9617,144.694,144.87,144.638,144.72,USD_JPY,H1,60.79779917469042,0.24572452951218793,0.2587511273924306,-0.013026597880242685,144.57185,0.2351942701273947,0.21371428571428908,42.625932206529576,-410442 -2024-09-26 06:00:00+00:00,11973,144.724,144.857,144.616,144.836,USD_JPY,H1,60.52631578947384,0.2409713985287567,0.25519518161969584,-0.014223783090939135,144.59945,0.2320041911277334,0.21921428571428894,39.57811383346974,-398469 -2024-09-26 07:00:00+00:00,17116,144.838,145.172,144.717,145.026,USD_JPY,H1,64.66212027278405,0.24965801786049724,0.2540877488678561,-0.004429731007358884,144.63535000000002,0.23994720354779506,0.23328571428571568,36.937203579193714,-381353 -2024-09-26 08:00:00+00:00,14737,145.026,145.199,144.678,144.828,USD_JPY,H1,54.39429928741082,0.23782379633564688,0.2508349583614143,-0.013011162025767409,144.66670000000002,0.220372435868222,0.25614285714286006,33.85218133500161,-396090 -2024-09-26 09:00:00+00:00,11707,144.825,144.968,144.704,144.704,USD_JPY,H1,48.379629629630124,0.21594998976965485,0.24385796464306242,-0.02790797487340757,144.699,0.16744614205941832,0.26357142857143046,30.39841970470883,-407797 -2024-09-26 10:00:00+00:00,10758,144.705,144.747,144.338,144.364,USD_JPY,H1,40.44508950169375,0.1692289163658529,0.22893215498762054,-0.05970323862176763,144.6993,0.16680720029282536,0.285571428571432,26.887140846454635,-418555 -2024-09-26 11:00:00+00:00,8864,144.363,144.438,144.156,144.168,USD_JPY,H1,38.38383838383851,0.11506022448125464,0.20615776888634735,-0.09109754440509271,144.6874,0.19494814416044703,0.3007857142857172,24.573070527602834,-427419 -2024-09-26 12:00:00+00:00,15052,144.166,144.724,144.109,144.566,USD_JPY,H1,48.31636648394706,0.1030584262869354,0.18553790036646498,-0.08247947407952957,144.6891,0.19366571841850264,0.33578571428571585,22.400863868021386,-412367 -2024-09-26 13:00:00+00:00,18110,144.566,144.708,144.312,144.578,USD_JPY,H1,47.15772618094483,0.09343811800039248,0.1671179438932505,-0.07367982589285801,144.69035,0.19281987085313937,0.3530714285714294,20.282899650039553,-394257 -2024-09-26 14:00:00+00:00,19437,144.574,145.216,144.554,144.835,USD_JPY,H1,56.69695772421964,0.10533744207219797,0.15476184352904,-0.049424401456842015,144.6981,0.19547860285665672,0.38007142857142845,21.457988106474776,-374820 -2024-09-26 15:00:00+00:00,13004,144.833,144.951,144.612,144.676,USD_JPY,H1,47.04641350210943,0.10077608694814444,0.1439646922128609,-0.04318860526471646,144.69389999999999,0.1949804037819939,0.37049999999999883,22.072638459215373,-387824 -2024-09-26 16:00:00+00:00,10160,144.679,144.906,144.679,144.858,USD_JPY,H1,50.395256916996246,0.11057244875181027,0.13728624352065077,-0.026713794768840504,144.69885,0.19795408150709862,0.37385714285714144,21.923328942651192,-377664 -2024-09-26 17:00:00+00:00,10797,144.858,144.86,144.536,144.716,USD_JPY,H1,45.852713178294664,0.105659940777457,0.13096098297201203,-0.025301042194555035,144.70094999999998,0.19789935630878164,0.3791428571428566,18.594036751466483,-388461 -2024-09-26 18:00:00+00:00,7974,144.718,144.775,144.565,144.624,USD_JPY,H1,48.603122432210135,0.09326797651516472,0.12342238168064257,-0.03015440516547785,144.69955,0.19836236768005372,0.36999999999999844,17.959161699699546,-396435 -2024-09-26 19:00:00+00:00,7741,144.624,144.69,144.512,144.664,USD_JPY,H1,48.855273916598314,0.0856871728736337,0.1158753399192408,-0.030188167045607103,144.69675,0.19845372645331777,0.36614285714285544,17.78863812392789,-388694 -2024-09-26 20:00:00+00:00,6561,144.663,144.9,144.662,144.808,USD_JPY,H1,49.43411479385571,0.09025848428984773,0.1107519687933622,-0.020493484503514472,144.71235,0.19405676724008145,0.36592857142857077,18.964963947252027,-382133 -2024-09-26 21:00:00+00:00,314,144.822,144.838,144.76,144.804,USD_JPY,H1,45.1486013986013,0.09249232104849625,0.10710003924438902,-0.014607718195892766,144.71175,0.19373771598705303,0.3390000000000007,18.424773593410972,-382447 -2024-09-26 22:00:00+00:00,2173,144.797,144.974,144.787,144.878,USD_JPY,H1,51.155268022180756,0.09909156841155209,0.10549834507782165,-0.006406776666269556,144.71375,0.19530970673075485,0.31514285714285556,18.730450232999043,-380274 -2024-09-26 23:00:00+00:00,6896,144.876,145.147,144.874,145.086,USD_JPY,H1,58.496441281138715,0.11972526285939011,0.10834372863413534,0.011381534225254772,144.72155,0.20715630372946214,0.3157857142857137,19.4753505122141,-373378 -2024-09-27 00:00:00+00:00,15701,145.085,145.475,144.937,145.463,USD_JPY,H1,74.04814004376318,0.164600946397087,0.11959517218672569,0.04500577421036131,144.76010000000002,0.26502371287392484,0.32499999999999674,23.453837380090583,-357677 -2024-09-27 01:00:00+00:00,14003,145.466,145.579,145.269,145.306,USD_JPY,H1,75.3339269813001,0.18535994693061753,0.13274812713550405,0.05261181979511348,144.7894,0.2914340946825765,0.3269999999999982,28.43760259116947,-371680 -2024-09-27 02:00:00+00:00,11567,145.314,145.347,144.968,145.092,USD_JPY,H1,62.75460717749775,0.18244053199902055,0.14268660810820735,0.0397539238908132,144.8022,0.29910930930331836,0.31014285714285805,31.89179428205745,-383247 -2024-09-27 03:00:00+00:00,9240,145.092,145.267,144.986,145.256,USD_JPY,H1,65.31165311653112,0.19115676779901491,0.15238064004636886,0.03877612775264605,144.8137,0.3122974458771836,0.3019285714285737,35.792001687400514,-374007 -2024-09-27 04:00:00+00:00,8076,145.257,145.804,145.257,145.792,USD_JPY,H1,69.19374247894095,0.2385651375249438,0.16961753954208386,0.06894759798285993,144.8619,0.38137326648016573,0.29378571428571626,37.54422753543839,-365931 -2024-09-27 05:00:00+00:00,17359,145.787,146.494,145.76,146.258,USD_JPY,H1,78.25000000000057,0.3101635452871676,0.1977267406911006,0.112436804596067,144.93959999999998,0.49026753165642817,0.32200000000000273,40.19529142146898,-348572 -2024-09-27 06:00:00+00:00,25311,146.258,146.352,143.133,143.178,USD_JPY,H1,35.25798525798514,0.1170265309095555,0.1815866987347916,-0.0645601678252361,144.8803,0.6185072096473945,0.535500000000001,39.70101216354538,-373883 -2024-09-27 07:00:00+00:00,20479,143.179,143.474,142.778,143.192,USD_JPY,H1,36.31956912028723,-0.034508469311163026,0.1383676651256007,-0.17287613443676372,144.8315,0.7094782738162287,0.5620714285714286,40.38790974656302,-353404 -2024-09-27 08:00:00+00:00,17551,143.19,143.775,142.949,143.146,USD_JPY,H1,36.62201303403323,-0.15650872909310465,0.07939238628185963,-0.23590111537496428,144.7605,0.8024117921460074,0.6060714285714275,39.7254423774188,-370955 -2024-09-27 09:00:00+00:00,16448,143.14,143.497,143.068,143.134,USD_JPY,H1,36.08078602620089,-0.25126666790691843,0.013260575444104014,-0.26452724335102246,144.6883,0.8808299973177456,0.6239999999999993,39.200061658517996,-387403 -2024-09-27 10:00:00+00:00,12087,143.134,143.334,142.964,143.228,USD_JPY,H1,35.4939405067942,-0.31514520495016995,-0.05242058063475078,-0.26272462431541915,144.60795000000002,0.9381729430209942,0.6334285714285711,38.38685740679363,-375316 -2024-09-27 11:00:00+00:00,11703,143.23,143.372,143.088,143.11,USD_JPY,H1,34.7661870503599,-0.3710141988735245,-0.11613930428250553,-0.254874894591019,144.52965,0.9957754595054598,0.648142857142858,38.62724751658359,-387019 -2024-09-27 12:00:00+00:00,18251,143.108,143.232,142.5,142.52,USD_JPY,H1,30.59578670177784,-0.4576236476867166,-0.18443617296334774,-0.27318747472336885,144.41275000000002,1.0881508638948494,0.6870714285714306,38.93577542052042,-405270 -2024-09-27 13:00:00+00:00,17815,142.522,142.998,142.5,142.545,USD_JPY,H1,28.440522653996055,-0.5182706671535868,-0.25120307180139556,-0.26706759535219127,144.3042,1.16208164400427,0.7031428571428587,39.126549506924974,-387455 -2024-09-27 14:00:00+00:00,20204,142.549,143.08,142.388,142.859,USD_JPY,H1,27.667238421955687,-0.5348314867683541,-0.3079287547947873,-0.2269027319735668,144.21595,1.2028214845301135,0.7141428571428605,37.17953993522734,-367251 -2024-09-27 15:00:00+00:00,17698,142.859,143.09,142.558,142.599,USD_JPY,H1,27.186920613517728,-0.5624522829136254,-0.3588334604185549,-0.20361882249507046,144.1127,1.2500395404123537,0.730000000000004,34.004856113706865,-384949 -2024-09-27 16:00:00+00:00,13492,142.6,142.708,142.412,142.512,USD_JPY,H1,27.781605235962942,-0.5846229661281654,-0.40399136156047705,-0.1806316045676884,143.99790000000002,1.2876865383372937,0.7240714285714306,33.167638745366865,-398441 -2024-09-27 17:00:00+00:00,12646,142.514,142.608,142.286,142.328,USD_JPY,H1,24.871266735324767,-0.6100088522235296,-0.4451948596930876,-0.16481399253044204,143.8741,1.3246019421793436,0.7270000000000019,32.29627517003501,-411087 -2024-09-27 18:00:00+00:00,12281,142.329,142.417,142.074,142.17,USD_JPY,H1,16.758443465492377,-0.63555039999369,-0.48326596775320807,-0.15228443224048194,143.7387,1.3546472486897971,0.7123571428571438,32.59486820446332,-423368 -2024-09-27 19:00:00+00:00,8045,142.169,142.266,142.068,142.162,USD_JPY,H1,8.95791583166384,-0.6489570211812179,-0.51640417843881,-0.13255284274240786,143.5925,1.3593650026713648,0.6740714285714274,34.03841547819021,-431413 -2024-09-27 20:00:00+00:00,7363,142.172,142.284,142.134,142.215,USD_JPY,H1,25.47121752419845,-0.6478373423830419,-0.5426908112276565,-0.10514653115538541,143.43009999999998,1.3175106471008668,0.4548571428571425,37.09567595211414,-424050 -2024-09-29 21:00:00+00:00,483,142.293,142.327,142.209,142.286,USD_JPY,H1,27.57425742574287,-0.6339135217590695,-0.5609353533339392,-0.07297816842513027,143.2791,1.2631371930165205,0.413571428571428,38.99302284979643,-423567 -2024-09-29 22:00:00+00:00,5331,142.288,142.714,142.256,142.678,USD_JPY,H1,40.10989010989039,-0.5845098044979977,-0.565650243566751,-0.018859560931246744,143.15839999999997,1.1942436672649352,0.38728571428571407,40.773294380458815,-418236 -2024-09-29 23:00:00+00:00,9228,142.68,142.956,142.586,142.791,USD_JPY,H1,43.04823672476718,-0.5301278630028605,-0.5585457674539729,0.028417904451112364,143.03515,1.088924784731293,0.3830714285714265,41.79170614289286,-409008 -2024-09-30 00:00:00+00:00,15346,142.79,142.844,142.456,142.687,USD_JPY,H1,39.07953169156233,-0.4897758819111857,-0.5447917903454155,0.055015908434229766,142.8799,0.8756447789526125,0.38435714285714084,42.44647882824012,-424354 -2024-09-30 01:00:00+00:00,13853,142.687,142.848,142.414,142.47,USD_JPY,H1,37.577639751552475,-0.46989013168942506,-0.5298114586142174,0.05992132692479235,142.69050000000001,0.3704430490516829,0.39507142857142696,43.52756202539513,-438207 -2024-09-30 02:00:00+00:00,10858,142.471,142.552,142.268,142.524,USD_JPY,H1,50.09803921568604,-0.4446475623510935,-0.5127786793615927,0.06813111701049923,142.6578,0.35362879729292024,0.36307142857142644,42.51602817977914,-427349 -2024-09-30 03:00:00+00:00,8421,142.522,142.528,142.336,142.452,USD_JPY,H1,47.77192141830406,-0.4255470016176446,-0.4953323438128031,0.06978534219515853,142.62079999999997,0.33289932089701146,0.34121428571428275,41.35601220917612,-435770 -2024-09-30 04:00:00+00:00,8749,142.452,142.502,142.082,142.128,USD_JPY,H1,32.570338578921806,-0.4315787901983299,-0.48258163308990853,0.05100284289157864,142.56990000000002,0.32612701749130685,0.32178571428571195,40.04458657458293,-444519 -2024-09-30 05:00:00+00:00,13907,142.128,142.158,141.656,141.708,USD_JPY,H1,30.261408949933525,-0.46489054717525846,-0.4790434159069785,0.014152868731720059,142.4986,0.35122393510441,0.3196428571428527,39.70180155757623,-458426 -2024-09-30 06:00:00+00:00,13978,141.707,142.082,141.646,142.054,USD_JPY,H1,40.89825119236884,-0.4580904644970758,-0.474852825624998,0.016762361127922176,142.43990000000002,0.31958342945082363,0.32964285714285374,39.17891491033028,-444448 -2024-09-30 07:00:00+00:00,14781,142.048,142.432,141.923,142.365,USD_JPY,H1,50.69996216420745,-0.4227332434301445,-0.4644289091860273,0.041695665755882794,142.40265,0.2780914795728751,0.3429999999999954,36.78747601221078,-429667 -2024-09-30 08:00:00+00:00,15564,142.374,142.582,142.341,142.54,USD_JPY,H1,56.95488721804528,-0.3762541301335034,-0.4467939533755226,0.07053982324201918,142.40365,0.278571218259554,0.33571428571428086,33.002548348617275,-414103 -2024-09-30 09:00:00+00:00,11575,142.541,142.604,142.451,142.534,USD_JPY,H1,56.99774266365665,-0.33602970655198305,-0.4246411040108147,0.08861139745883162,142.4031,0.2782881693884203,0.3324999999999981,27.55163252573836,-425678 -2024-09-30 10:00:00+00:00,10362,142.534,142.798,142.534,142.604,USD_JPY,H1,57.27102803738334,-0.29510140082228986,-0.39873316337310977,0.1036317625508199,142.39034999999998,0.2616452549389178,0.3406428571428555,24.24456855032522,-415316 -2024-09-30 11:00:00+00:00,11668,142.604,142.614,142.404,142.56,USD_JPY,H1,55.17371601208456,-0.26318205700761155,-0.3716229421000101,0.10844088509239858,142.3884,0.26014943066274765,0.347214285714285,21.328644649363515,-426984 -2024-09-30 12:00:00+00:00,12317,142.554,143.002,142.545,142.948,USD_JPY,H1,55.105900151286065,-0.2042232314319108,-0.3381429999663903,0.1339197685344795,142.4102,0.28784564569903137,0.34714285714285814,18.960453514259036,-414667 -2024-09-30 13:00:00+00:00,15825,142.95,143.142,142.746,143.131,USD_JPY,H1,56.263817243920414,-0.1411047985001801,-0.2987353596731483,0.1576305611729682,142.45035000000001,0.3288578759739558,0.3490000000000017,17.254404842861977,-398842 -2024-09-30 14:00:00+00:00,19706,143.139,143.193,142.824,143.036,USD_JPY,H1,56.45101663585923,-0.0976233504937909,-0.25851295783727685,0.16088960734348595,142.49365,0.3465388676624017,0.3476428571428585,16.05870954331316,-418548 -2024-09-30 15:00:00+00:00,14499,143.035,143.372,143.0,143.263,USD_JPY,H1,64.60405156537749,-0.04433591002734261,-0.21567754827529,0.1713416382479474,142.5487,0.37717734201194514,0.3432142857142862,15.196449537275143,-404049 -2024-09-30 16:00:00+00:00,10865,143.258,143.322,143.076,143.114,USD_JPY,H1,60.49822064056934,-0.013967278208582457,-0.1753354942619485,0.16136821605336604,142.59365,0.38870842469976485,0.34050000000000175,16.092583766742624,-414914 -2024-09-30 17:00:00+00:00,10420,143.113,143.127,142.944,143.096,USD_JPY,H1,61.683599419448456,0.008549083224437481,-0.1385585787646713,0.14710766198910877,142.63415,0.39707433675114295,0.33985714285714763,16.419519432024057,-425334 -2024-09-30 18:00:00+00:00,20014,143.098,143.915,143.092,143.689,USD_JPY,H1,75.80165289256205,0.07339752499419205,-0.09616735801289862,0.16956488300709066,142.6847,0.46199636585625053,0.36864285714285927,18.549380523127343,-405320 -2024-09-30 19:00:00+00:00,13900,143.689,143.912,143.645,143.729,USD_JPY,H1,88.20415879016986,0.12655915287655262,-0.05162205583500837,0.17818120871156098,142.73160000000001,0.5176181685183515,0.35185714285714603,21.400223210880856,-391420 -2024-09-30 20:00:00+00:00,11396,143.728,143.744,143.608,143.626,USD_JPY,H1,82.72273105745158,0.15855120716756232,-0.009587403234494231,0.16813861040205655,142.77855,0.5546226288979512,0.3304285714285738,24.41181223389326,-402816 -2024-09-30 21:00:00+00:00,299,143.646,143.659,143.584,143.62,USD_JPY,H1,79.92370052455826,0.1813307231258534,0.0285962220375753,0.1527345010882781,142.83605,0.5799831644212919,0.299428571428574,28.770919154669553,-403115 -2024-09-30 22:00:00+00:00,2760,143.608,143.706,143.54,143.56,USD_JPY,H1,75.73158425832446,0.1923251504649386,0.06134200772304796,0.13098314274189063,142.88785000000001,0.5966702584577651,0.2940714285714319,33.196268573466,-405875 -2024-09-30 23:00:00+00:00,7618,143.552,143.736,143.372,143.716,USD_JPY,H1,77.72045028142547,0.21119172287632182,0.09131195075370274,0.11987977212261908,142.95105,0.6147432048054973,0.30914285714285733,36.60115766116973,-398257 -2024-10-01 00:00:00+00:00,14319,143.715,144.124,143.684,143.966,USD_JPY,H1,79.45501730103744,0.24350950214019917,0.12175146103100204,0.12175804110919713,143.04295,0.622561556848233,0.32171428571428506,39.77232058888354,-383938 -2024-10-01 01:00:00+00:00,12550,143.966,144.133,143.684,143.718,USD_JPY,H1,73.0127186009532,0.24627118672427173,0.146655406169656,0.09961578055461573,143.14345,0.5542026491059748,0.3387857142857139,44.139415267107005,-396488 -2024-10-01 02:00:00+00:00,8500,143.712,144.03,143.658,144.013,USD_JPY,H1,71.97688815517895,0.26916115399981777,0.17115655573568836,0.09800459826412941,143.2414,0.5238020316699769,0.3327142857142848,47.892342864269736,-387988 -2024-10-01 03:00:00+00:00,8748,144.014,144.334,143.955,144.28,USD_JPY,H1,72.91583566015103,0.30532667076556663,0.197990578741664,0.10733609202390262,143.33715,0.5301566079076607,0.33149999999999935,52.154152422698836,-379240 -2024-10-01 04:00:00+00:00,7731,144.282,144.398,144.226,144.279,USD_JPY,H1,75.75631993369167,0.33010219904909377,0.22441290280314996,0.10568929624594381,143.4241,0.5351183734887266,0.3174285714285706,55.85625724202301,-386971 -2024-10-01 05:00:00+00:00,8557,144.277,144.417,144.226,144.264,USD_JPY,H1,72.73966378918632,0.3445547958632744,0.24844128141517485,0.09611351444809957,143.5106,0.5233591299562835,0.3044999999999983,58.73736802857219,-395528 -2024-10-01 06:00:00+00:00,16090,144.264,144.53,144.186,144.336,USD_JPY,H1,78.76647834274902,0.3576950948388742,0.2702920440999147,0.08740305073895949,143.59720000000002,0.5085356272396061,0.3114999999999973,61.40132688345741,-379438 -2024-10-01 07:00:00+00:00,22205,144.336,144.352,143.882,144.172,USD_JPY,H1,73.70044052863352,0.35083128241419104,0.28639989176277,0.06443139065142106,143.67780000000002,0.4610197620648041,0.3319999999999957,63.6349728671035,-401643 -2024-10-01 08:00:00+00:00,20274,144.168,144.226,143.702,143.81,USD_JPY,H1,52.96714075527232,0.3125780814272048,0.2916355296956569,0.020942551731547854,143.7209,0.42833593550620735,0.3106428571428544,60.777567018166124,-421917 -2024-10-01 09:00:00+00:00,16374,143.808,143.841,143.623,143.733,USD_JPY,H1,50.096339113679925,0.2729030312928842,0.2878890300151024,-0.01498599872221823,143.751,0.4052293696995666,0.30714285714285594,55.71168182499357,-438291 -2024-10-01 10:00:00+00:00,13453,143.733,143.796,143.675,143.74,USD_JPY,H1,52.87878787878792,0.23926698880828212,0.27816462177373835,-0.03889763296545623,143.7862,0.36879042681352747,0.3060714285714263,50.773646802372085,-424838 -2024-10-01 11:00:00+00:00,15726,143.737,143.79,143.562,143.755,USD_JPY,H1,53.39366515837076,0.21138385593502562,0.26480846860599583,-0.053424612670970206,143.81080000000003,0.3478696972686581,0.3169999999999971,45.86259040523736,-409112 -2024-10-01 12:00:00+00:00,15071,143.756,144.07,143.68,144.038,USD_JPY,H1,60.80470162748641,0.2097046623057679,0.25378770734595024,-0.044083045040182345,143.85700000000003,0.30972432558140284,0.33299999999999635,41.87398641663342,-394041 -2024-10-01 13:00:00+00:00,21217,144.04,144.072,143.182,143.536,USD_JPY,H1,46.48162627052378,0.16595367399443717,0.23622090067564763,-0.07026722668121047,143.879,0.26525995187256984,0.3705714285714277,38.09189951900705,-415258 -2024-10-01 14:00:00+00:00,27330,143.536,143.878,142.971,143.606,USD_JPY,H1,42.43061396131188,0.1353686697733849,0.2160504544951951,-0.0806817847218102,143.87485,0.2690116950383889,0.40392857142856947,36.05951119121374,-387928 -2024-10-01 15:00:00+00:00,17519,143.608,143.921,143.532,143.671,USD_JPY,H1,48.92938496583151,0.11504858191045741,0.19585007997824758,-0.08080149806779016,143.87195,0.27097222126815657,0.399642857142853,33.226363957867115,-370409 -2024-10-01 16:00:00+00:00,17694,143.672,143.72,143.276,143.637,USD_JPY,H1,40.279214064115685,0.09510493948897647,0.17570105188039337,-0.0805961123914169,143.8725,0.2704574097496205,0.4047857142857083,31.487452384642022,-388103 -2024-10-01 17:00:00+00:00,17278,143.637,143.856,143.323,143.824,USD_JPY,H1,37.702265372168675,0.09331314056058204,0.1592234696164311,-0.06591032905584907,143.8827,0.264208071839872,0.41578571428570804,30.248810148538418,-370825 -2024-10-01 18:00:00+00:00,12119,143.824,143.92,143.598,143.669,USD_JPY,H1,34.810756972112,0.07848123951342245,0.14307502359582938,-0.06459378408240693,143.88815,0.2582583925657019,0.42649999999999216,28.99397080415471,-382944 -2024-10-01 19:00:00+00:00,12833,143.668,143.747,143.511,143.562,USD_JPY,H1,33.28571428571452,0.05743081858457799,0.12594618259357912,-0.06851536400900113,143.88045,0.2658455179909241,0.429714285714279,28.184048704864033,-395777 -2024-10-01 20:00:00+00:00,16473,143.564,143.594,143.504,143.569,USD_JPY,H1,31.15479115479053,0.04084224585020024,0.10892539524490334,-0.0680831493947031,143.8606,0.27382330061944415,0.41157142857142254,27.711132483859462,-379304 -2024-10-01 21:00:00+00:00,256,143.581,143.654,143.562,143.641,USD_JPY,H1,36.33556356150256,0.03312365187480282,0.09376504657088323,-0.06064139469608042,143.85674999999998,0.2764624033904652,0.3845714285714215,27.298033013497555,-379048 -2024-10-01 22:00:00+00:00,2747,143.647,143.649,143.429,143.518,USD_JPY,H1,41.431924882628955,0.01688687708639236,0.07838941267398507,-0.06150253558759271,143.832,0.2837979265603357,0.3628571428571356,29.583235856341336,-381795 -2024-10-01 23:00:00+00:00,7376,143.519,143.765,143.511,143.73,USD_JPY,H1,49.91843393148411,0.020884995105888038,0.06688852916036565,-0.046003534054477616,143.80450000000002,0.26406328978979576,0.3654285714285623,31.44611268606138,-374419 -2024-10-02 00:00:00+00:00,12747,143.731,143.884,143.652,143.816,USD_JPY,H1,51.98123044838358,0.030639816971842038,0.05963878672266093,-0.028998969750818893,143.78135000000003,0.23942063285272916,0.373357142857135,32.58292892928047,-361672 -2024-10-02 01:00:00+00:00,12972,143.817,143.913,143.563,143.899,USD_JPY,H1,53.625377643504684,0.044554394593603774,0.0566219082968495,-0.012067513703245727,143.7631,0.2131655891154134,0.3820714285714238,34.04141311880772,-348700 -2024-10-02 02:00:00+00:00,8862,143.9,144.028,143.86,144.004,USD_JPY,H1,49.05973451327376,0.06332445518506802,0.05796241767449321,0.005362037510574812,143.7465,0.17586762355378172,0.36621428571428033,35.42603086477896,-339838 -2024-10-02 03:00:00+00:00,9021,144.007,144.188,143.883,144.135,USD_JPY,H1,70.84203201113459,0.087758839350073,0.06392170200960917,0.023837137340463832,143.74464999999998,0.17129115706344408,0.3244285714285634,35.352012813033205,-330817 -2024-10-02 04:00:00+00:00,11179,144.134,144.15,143.58,143.732,USD_JPY,H1,53.55932203389853,0.07375433874602777,0.0658882293568929,0.007866109389134873,143.74075,0.1706115546889665,0.3003571428571356,33.40356350445502,-341996 -2024-10-02 05:00:00+00:00,16744,143.734,143.858,143.532,143.715,USD_JPY,H1,51.27758420441383,0.06058552102211934,0.06482768768993818,-0.0042421666678188474,143.73985,0.1707020410068671,0.2958571428571365,31.98355623357519,-358740 -2024-10-02 06:00:00+00:00,15183,143.712,144.024,143.656,143.896,USD_JPY,H1,56.9288389513107,0.0640163843891628,0.06466542702978312,-0.0006490426406203231,143.74765,0.1742367640936474,0.29042857142856554,30.633923121178743,-343557 -2024-10-02 07:00:00+00:00,16069,143.9,144.187,143.9,144.067,USD_JPY,H1,56.55693470048573,0.07961587694865102,0.06765551701355671,0.011960359935094311,143.76325000000003,0.18832694824573482,0.27314285714285397,28.65946907582467,-327488 -2024-10-02 08:00:00+00:00,13285,144.066,144.329,143.948,144.328,USD_JPY,H1,66.81980602348162,0.11175091098300527,0.07647459580744642,0.03527631517555885,143.77775,0.21922396013836706,0.2773571428571415,26.95197548054626,-314203 -2024-10-02 09:00:00+00:00,12129,144.326,144.411,144.204,144.264,USD_JPY,H1,68.31941544885231,0.1305490041896178,0.08728947748388069,0.0432595267057371,143.81415,0.2367121891418352,0.2752857142857112,25.727343679099302,-326332 -2024-10-02 10:00:00+00:00,16098,144.264,144.858,144.077,144.796,USD_JPY,H1,75.13314215485521,0.18622786349178,0.10707715468546056,0.07915070880631944,143.87365,0.3174336689336674,0.32464285714285424,24.99326097161393,-310234 -2024-10-02 11:00:00+00:00,14312,144.797,144.89,144.622,144.698,USD_JPY,H1,71.42278070531106,0.2199109827343193,0.1296439202952323,0.090267062439087,143.925,0.36275756724550906,0.3372142857142819,25.026306099155363,-324546 -2024-10-02 12:00:00+00:00,18634,144.698,145.446,144.678,145.369,USD_JPY,H1,80.69651741293603,0.2973218484344784,0.16317950592308153,0.13414234251139687,144.0116,0.4786202097965462,0.37635714285713917,26.54847608724052,-305912 -2024-10-02 13:00:00+00:00,19521,145.37,145.754,145.299,145.746,USD_JPY,H1,81.69811320754798,0.3846571779894816,0.20747504033636158,0.17718213765312005,144.1077,0.6130473579754564,0.3907142857142816,29.01521375415294,-286391 -2024-10-02 14:00:00+00:00,20630,145.746,146.266,145.578,146.191,USD_JPY,H1,83.55467646227814,0.4841973116523377,0.26281949459955684,0.22137781705278087,144.2338,0.7598604857852995,0.4232857142857093,32.50683726339584,-265761 -2024-10-02 15:00:00+00:00,15779,146.192,146.258,146.029,146.05,USD_JPY,H1,79.89991659716509,0.5454188145317858,0.3193393585860026,0.22607945594578316,144.3582,0.8431810444072412,0.41464285714285154,36.417046876679834,-281540 -2024-10-02 16:00:00+00:00,10519,146.049,146.168,145.912,146.034,USD_JPY,H1,78.9338654503995,0.5858924271634578,0.37264997230149366,0.21324245486196414,144.48145000000002,0.8999938289061069,0.42092857142856743,39.032543000609266,-292059 -2024-10-02 17:00:00+00:00,8007,146.032,146.194,145.971,146.172,USD_JPY,H1,78.97581792318678,0.6219342327619017,0.4225068243935753,0.19942740836832645,144.608,0.9520364322783097,0.41507142857142504,43.73093747133567,-284052 -2024-10-02 18:00:00+00:00,6651,146.172,146.376,146.172,146.33,USD_JPY,H1,89.72477064220226,0.6556885336408982,0.4691431662430399,0.18654536739785826,144.7486,0.9894951078128686,0.3889285714285689,49.76140500073989,-277401 -2024-10-02 19:00:00+00:00,6693,146.329,146.48,146.3,146.441,USD_JPY,H1,90.51724137931062,0.6835166778208475,0.5120178685586014,0.17149880926224603,144.88415,1.0275701166838989,0.3784999999999964,55.6679274244036,-270708 -2024-10-02 20:00:00+00:00,7709,146.444,146.518,146.376,146.474,USD_JPY,H1,90.08084577114458,0.7001624696675606,0.5496467887803933,0.15051568088716727,145.01705,1.0537036672548572,0.3623571428571393,60.993320743200094,-262999 -2024-10-02 21:00:00+00:00,605,146.386,146.41,146.319,146.374,USD_JPY,H1,86.67726550079527,0.6972477770156615,0.5791669864274469,0.11808079058821463,145.14079999999998,1.0607974458011526,0.3480714285714238,65.88118404129094,-263604 -2024-10-02 22:00:00+00:00,5531,146.368,146.91,146.286,146.598,USD_JPY,H1,86.51866151866197,0.704887288162837,0.604311046774525,0.100576241388312,145.2705,1.0729989699154692,0.36542857142856633,70.61821394787832,-258073 -2024-10-02 23:00:00+00:00,8973,146.598,146.796,146.434,146.577,USD_JPY,H1,87.732463295269,0.7011645429002158,0.6236817459996631,0.07748279690055271,145.39260000000002,1.0759236619212795,0.376499999999995,74.5819764726391,-267046 -2024-10-03 00:00:00+00:00,14371,146.576,147.061,146.462,146.992,USD_JPY,H1,87.24559023066473,0.7233627961229558,0.6436179560243217,0.07974484009863414,145.55559999999997,1.0578958957678843,0.3634999999999958,77.43639588674942,-252675 -2024-10-03 01:00:00+00:00,14163,146.994,147.244,146.799,146.802,USD_JPY,H1,84.60526315789426,0.7173544441336901,0.6583652536461955,0.058989190487494625,145.70995,0.9987612577423898,0.3761428571428545,80.3948558664861,-266838 -2024-10-03 02:00:00+00:00,10407,146.798,146.924,146.683,146.784,USD_JPY,H1,79.63971512358557,0.7030361689952542,0.6672994367160072,0.03573673227924701,145.85435,0.9290373781326268,0.3384999999999983,81.05922317518238,-277245 -2024-10-03 03:00:00+00:00,9589,146.785,146.966,146.774,146.852,USD_JPY,H1,76.61212704523527,0.6892308403939751,0.6716857174516008,0.017545122942374314,145.9936,0.8526112460025523,0.3197142857142857,81.31076324284683,-267656 -2024-10-03 04:00:00+00:00,9212,146.852,146.936,146.678,146.723,USD_JPY,H1,65.0964812712827,0.6602696189497408,0.6694024977512288,-0.009132878801488054,146.11335,0.7706105764227191,0.2890000000000015,79.88564596650734,-276868 -2024-10-03 05:00:00+00:00,13466,146.722,146.816,146.534,146.56,USD_JPY,H1,64.29372197309353,0.6170519141834632,0.6589323810376757,-0.04188046685421254,146.22814999999997,0.6406736811810043,0.2927857142857156,77.23096580978324,-290334 -2024-10-03 06:00:00+00:00,13905,146.557,146.778,146.476,146.73,USD_JPY,H1,67.95665634674901,0.5897212119969879,0.6450901472295382,-0.055368935232550265,146.32485,0.5531048510767083,0.2960714285714293,75.47394935934145,-276429 -2024-10-03 07:00:00+00:00,16956,146.726,146.864,146.302,146.453,USD_JPY,H1,56.76456427539736,0.5394909329392306,0.6239703043714767,-0.08447937143224615,146.4126,0.3992331332766285,0.32028571428571695,72.78995500039284,-293385 -2024-10-03 08:00:00+00:00,14660,146.461,146.792,146.392,146.755,USD_JPY,H1,59.56776226924781,0.5180798489715812,0.6027922132914976,-0.08471236431991636,146.4819,0.32121822385667387,0.3342857142857168,67.84848269505441,-278725 -2024-10-03 09:00:00+00:00,13314,146.754,146.989,146.75,146.924,USD_JPY,H1,60.596752961825466,0.5088822208035424,0.5840102147939066,-0.07512799399036418,146.5408,0.2851556545779738,0.33850000000000435,62.96763616672645,-265411 -2024-10-03 10:00:00+00:00,10534,146.923,146.946,146.82,146.834,USD_JPY,H1,57.70547945205505,0.4886973871014675,0.5649476492554188,-0.07625026215395136,146.57295000000002,0.279839705002297,0.33735714285714785,57.83830380506403,-275945 -2024-10-03 11:00:00+00:00,11839,146.836,146.994,146.584,146.669,USD_JPY,H1,56.1432736359853,0.45415146454737965,0.542788412313811,-0.08863694776643138,146.6039,0.25178163047216945,0.3601428571428613,52.19044991058199,-287784 -2024-10-03 12:00:00+00:00,18413,146.67,146.856,146.524,146.772,USD_JPY,H1,53.81578947368377,0.43012657975947377,0.5202560458029436,-0.09012946604346983,146.64079999999998,0.21529969313581132,0.33928571428571835,48.15675648016511,-269371 -2024-10-03 13:00:00+00:00,18432,146.78,146.79,146.472,146.655,USD_JPY,H1,51.64141414141424,0.39706860358933227,0.49561855736022137,-0.0985499537708891,146.66495000000003,0.18488815245188217,0.3361428571428604,43.63963838757147,-287803 -2024-10-03 14:00:00+00:00,28395,146.66,147.18,146.626,146.777,USD_JPY,H1,44.83917426788263,0.3763756752100278,0.4717699809301827,-0.09539430572015489,146.6873,0.1685639343684228,0.33292857142857357,38.507510032808064,-259408 -2024-10-03 15:00:00+00:00,16279,146.776,146.848,146.604,146.835,USD_JPY,H1,50.84572014351655,0.3605008660785245,0.44951615795985106,-0.08901529188132656,146.707,0.16112303233480257,0.31857142857143117,34.431010098884414,-243129 -2024-10-03 16:00:00+00:00,12274,146.834,146.93,146.708,146.72,USD_JPY,H1,48.437500000000156,0.33478127640478306,0.4265691816488375,-0.09178790524405445,146.7193,0.15150233616873263,0.31721428571428795,30.32236164934257,-255403 -2024-10-03 17:00:00+00:00,11761,146.718,146.718,146.58,146.654,USD_JPY,H1,45.16129032258038,0.3055504722284752,0.4023654397647651,-0.09681496753628988,146.7333,0.12921182107967635,0.3133571428571429,27.18018016460241,-267164 -2024-10-03 18:00:00+00:00,8629,146.653,146.886,146.652,146.87,USD_JPY,H1,53.44585091420517,0.2963975575919733,0.38117186333020675,-0.08477430573823347,146.7469,0.1285342058565888,0.3116428571428571,24.15542911705117,-258535 -2024-10-03 19:00:00+00:00,7832,146.866,146.884,146.762,146.864,USD_JPY,H1,57.692307692307864,0.2853700882033934,0.3620115083048441,-0.0766414201014507,146.76125,0.1245259958971204,0.3002142857142839,21.373580535972355,-266367 -2024-10-03 20:00:00+00:00,5531,146.865,146.972,146.86,146.955,USD_JPY,H1,55.930416447022246,0.28073751146641257,0.3457567089371578,-0.06501919747074525,146.7594,0.1211464532202629,0.2866428571428555,18.85207426667632,-260836 -2024-10-03 21:00:00+00:00,103,146.896,146.896,146.794,146.865,USD_JPY,H1,62.046783625731116,0.2667292247184605,0.3299512120934184,-0.06322198737495788,146.76255,0.12311546771635092,0.25378571428571,17.97371396287382,-260939 -2024-10-03 22:00:00+00:00,1850,146.824,146.904,146.815,146.86,USD_JPY,H1,53.71549893842949,0.2523155616000281,0.3144240819947403,-0.06210852039471221,146.76635,0.12497127026251403,0.23157142857142382,18.2162232962928,-262789 -2024-10-03 23:00:00+00:00,4943,146.856,146.864,146.724,146.848,USD_JPY,H1,46.974522292993896,0.23719014962293272,0.2989772955203788,-0.061787145897446105,146.76615,0.12483010547592738,0.22449999999999598,16.7360744961182,-267732 -2024-10-04 00:00:00+00:00,13333,146.848,146.933,146.62,146.648,USD_JPY,H1,43.19180087847712,0.2066823180212225,0.28051830002054756,-0.07383598199932506,146.7624,0.1272967522282397,0.23785714285713766,15.460973921311908,-281065 -2024-10-04 01:00:00+00:00,11955,146.648,146.682,146.526,146.554,USD_JPY,H1,45.55984555984526,0.17292624120483424,0.25899988825740494,-0.0860736470525707,146.7621,0.12780490877429013,0.21971428571427915,15.542446122202282,-293020 -2024-10-04 02:00:00+00:00,8352,146.553,146.57,146.392,146.412,USD_JPY,H1,36.50674662668752,0.13318086773097093,0.23383608415211815,-0.10065521642114722,146.7462,0.14988262064001678,0.2087142857142794,13.490580242899208,-301372 -2024-10-04 03:00:00+00:00,7860,146.407,146.496,146.356,146.375,USD_JPY,H1,38.83572567783131,0.0975720324710494,0.2065832738159044,-0.10901124134485501,146.74230000000003,0.15867049595214103,0.19599999999999593,12.065539949500595,-309232 -2024-10-04 04:00:00+00:00,10102,146.376,146.386,146.153,146.232,USD_JPY,H1,28.62745098039369,0.05715403296574095,0.17669742564587174,-0.11954339268013078,146.71615000000003,0.19532948539474398,0.17307142857142463,14.141483835974388,-319334 -2024-10-04 05:00:00+00:00,11504,146.233,146.308,145.916,146.086,USD_JPY,H1,22.52384446074909,0.013189457479057864,0.14399583201250896,-0.1308063745334511,146.67425,0.234374166600597,0.18364285714285294,15.71001482920118,-330838 -2024-10-04 06:00:00+00:00,13055,146.086,146.239,145.951,146.224,USD_JPY,H1,32.10678210678171,-0.010397482944739522,0.11311716902105927,-0.12351465196579879,146.64375,0.25155241678563883,0.18835714285713884,18.795438909061797,-317783 -2024-10-04 07:00:00+00:00,17689,146.226,146.344,146.179,146.306,USD_JPY,H1,37.58915834522179,-0.022217479197649936,0.08605023937731743,-0.10826771857496736,146.62560000000002,0.26249238579656653,0.19028571428571134,19.946244364470836,-300094 -2024-10-04 08:00:00+00:00,17781,146.304,146.414,146.252,146.339,USD_JPY,H1,28.219852337981607,-0.028592490743960752,0.0631216933530618,-0.09171418409702255,146.60395,0.26758913413361834,0.18514285714285197,23.203777569579547,-282313 -2024-10-04 09:00:00+00:00,15400,146.34,146.478,146.34,146.476,USD_JPY,H1,35.62962962962938,-0.022332542630749685,0.0460308461562995,-0.06836338878704919,146.59499999999997,0.268782635660624,0.18635714285713942,26.51420028030201,-266913 -2024-10-04 10:00:00+00:00,14243,146.477,146.566,146.416,146.497,USD_JPY,H1,32.10937500000007,-0.015498309292695467,0.03372501506650051,-0.04922332435919598,146.58100000000002,0.26608249605398576,0.18907142857142592,29.217513418397452,-252670 -2024-10-04 11:00:00+00:00,16223,146.496,146.632,146.445,146.59,USD_JPY,H1,39.282930631332476,-0.0025484306455894057,0.02647032592408253,-0.029018756569671934,146.56875000000002,0.25932724189814294,0.1951428571428571,30.56155155797331,-236447 -2024-10-04 12:00:00+00:00,52464,146.592,148.695,146.473,148.644,USD_JPY,H1,76.77070828331325,0.17147837946990308,0.05547193663324664,0.11600644283665643,146.66495,0.5319506778395011,0.34749999999999864,32.39281996098286,-183983 -2024-10-04 13:00:00+00:00,38943,148.646,148.811,148.324,148.41,USD_JPY,H1,71.97523916713537,0.2872033346376668,0.10181821623413068,0.1853851184035361,146.75275,0.659639524741733,0.3722857142857115,36.04333227846361,-222926 -2024-10-04 14:00:00+00:00,33554,148.41,148.57,148.312,148.5,USD_JPY,H1,76.88734030197459,0.38177754926041985,0.15781008283938852,0.22396746642103132,146.83425,0.7668682639023869,0.36835714285713955,40.07593764486826,-189372 -2024-10-04 15:00:00+00:00,26661,148.502,148.764,148.428,148.698,USD_JPY,H1,80.21420518602035,0.46731828665133435,0.2197117236017777,0.24760656304955664,146.92595,0.8729307246112816,0.38121428571428495,44.0992467532527,-162711 -2024-10-04 16:00:00+00:00,19745,148.699,149.006,148.672,148.94,USD_JPY,H1,84.64912280701746,0.5483166616824064,0.2854327112179035,0.26288395046450297,147.0252,0.9823895464749551,0.3923571428571425,49.1567503794082,-142966 -2024-10-04 17:00:00+00:00,14762,148.939,148.956,148.792,148.796,USD_JPY,H1,82.23701731025292,0.5940411246077701,0.3471543938958768,0.24688673071189332,147.12175,1.0578111897350986,0.39407142857142624,54.23543051955009,-157728 -2024-10-04 18:00:00+00:00,13618,148.795,148.888,148.759,148.872,USD_JPY,H1,85.79175704989157,0.6291581126592121,0.4035551376485439,0.22560297501066817,147.22235,1.125138133027323,0.3866428571428559,57.15598259999216,-144110 -2024-10-04 19:00:00+00:00,9816,148.872,148.896,148.77,148.77,USD_JPY,H1,86.82766190998865,0.6413647772275795,0.45111706556435105,0.1902477116632284,147.31844999999998,1.1725626220390057,0.3676428571428545,60.5278025718358,-153926 -2024-10-04 20:00:00+00:00,10802,148.77,148.77,148.644,148.702,USD_JPY,H1,84.66703973139285,0.6381949015791406,0.48853263276730896,0.14966226881183164,147.42115,1.2003710073284988,0.3560714285714255,62.58457642172426,-164728 -2024-10-06 21:00:00+00:00,879,148.723,148.887,148.7,148.79,USD_JPY,H1,84.69273743016693,0.6354584474206035,0.5179177956979679,0.11754065172263561,147.53295,1.2193340924124687,0.3576428571428555,65.85111535272867,-163849 -2024-10-06 22:00:00+00:00,6952,148.778,149.135,148.777,148.942,USD_JPY,H1,85.18518518518465,0.6381981662716782,0.54197386981271,0.09622429645896824,147.65945000000002,1.228126192501873,0.37164285714285733,68.32191495955456,-156897 -2024-10-06 23:00:00+00:00,11266,148.941,149.118,148.775,148.796,USD_JPY,H1,81.28371089536058,0.6214250324225361,0.5578641023346752,0.0635609300878609,147.78050000000002,1.2140939224805471,0.38621428571428446,71.34814234426148,-168163 -2024-10-07 00:00:00+00:00,23548,148.796,148.797,148.358,148.428,USD_JPY,H1,73.81011097410546,0.5718457961313561,0.5606604410940115,0.011185355037344635,147.8903,1.1649879195101054,0.4068571428571407,72.78613722059562,-191711 -2024-10-07 01:00:00+00:00,19328,148.428,148.574,148.326,148.388,USD_JPY,H1,72.46376811594168,0.5232940207336583,0.5531871570219409,-0.029893136288282607,148.0054,1.0885525589779363,0.41121428571428403,74.81866502498467,-211039 -2024-10-07 02:00:00+00:00,14420,148.388,148.588,148.223,148.586,USD_JPY,H1,48.64864864864886,0.4950862876358997,0.5415669831447327,-0.04648069550883305,148.12349999999998,1.0104388051341227,0.27857142857142697,72.06317879434778,-196619 -2024-10-07 03:00:00+00:00,11580,148.586,148.65,148.36,148.408,USD_JPY,H1,49.952153110047625,0.4531447726717488,0.523882541050136,-0.07073776837838719,148.22859999999997,0.9163847387683082,0.2644999999999982,68.66516517043644,-208199 -2024-10-07 04:00:00+00:00,10742,148.409,148.546,148.338,148.54,USD_JPY,H1,50.93808630393974,0.42565048291157837,0.5042361294224245,-0.0785856465108461,148.33865,0.8026148237088676,0.26092857142857084,64.9077391881034,-197457 -2024-10-07 05:00:00+00:00,12601,148.54,148.616,148.402,148.435,USD_JPY,H1,43.55076017655724,0.390882586570541,0.4815654208520478,-0.09068283428150681,148.43660000000003,0.6722920261280522,0.2522142857142861,60.45538576682471,-210058 -2024-10-07 06:00:00+00:00,18735,148.436,148.547,148.338,148.387,USD_JPY,H1,35.013550135502115,0.3553592195048054,0.4563241805825994,-0.10096496107779396,148.53109999999998,0.49467489587215696,0.24328571428571472,57.14178735825847,-228793 -2024-10-07 07:00:00+00:00,30238,148.387,148.45,148.152,148.275,USD_JPY,H1,35.63154991726515,0.3145433710116947,0.4279680186684185,-0.11342464765672378,148.61534999999998,0.20585106388134697,0.25285714285714433,54.06506423052871,-259031 -2024-10-07 08:00:00+00:00,21972,148.277,148.36,148.062,148.322,USD_JPY,H1,34.58520179372208,0.28272989004400984,0.39892039294353676,-0.11619050289952693,148.59925,0.21584201697193925,0.2649285714285717,50.50261873150827,-237059 -2024-10-07 09:00:00+00:00,18787,148.319,148.488,148.212,148.347,USD_JPY,H1,37.60984182776833,0.25657710706312287,0.370451735767454,-0.11387462870433113,148.5961,0.21918314854544813,0.2756428571428598,45.19455016089061,-218272 -2024-10-07 10:00:00+00:00,16251,148.348,148.647,148.292,148.639,USD_JPY,H1,48.36872087001588,0.25645652658448626,0.34765269393086046,-0.0911961673463742,148.60305,0.21817701040547718,0.2920000000000016,39.385038852382515,-202021 -2024-10-07 11:00:00+00:00,21019,148.64,148.686,148.162,148.274,USD_JPY,H1,38.31521739130484,0.22432266408318924,0.32298668796132624,-0.098664023878137,148.58184999999997,0.22880611759383448,0.3160714285714294,34.59829011611873,-223040 -2024-10-07 12:00:00+00:00,28070,148.274,148.276,148.028,148.171,USD_JPY,H1,32.144511347846276,0.18837365313109444,0.2960640809952799,-0.10769042786418548,148.5434,0.2300630119081782,0.3082142857142876,31.589131277713562,-251110 -2024-10-07 13:00:00+00:00,32875,148.17,148.237,147.844,147.923,USD_JPY,H1,30.694383016364853,0.13827828952895516,0.264506922702015,-0.12622863317305982,148.49975,0.26042816460942103,0.31178571428571694,28.985204537459197,-283985 -2024-10-07 14:00:00+00:00,28615,147.923,148.246,147.886,148.223,USD_JPY,H1,45.32603739170131,0.12138558825057544,0.23588265581172707,-0.11449706756115163,148.4673,0.25189745193265944,0.3061428571428613,26.877152336328656,-255370 -2024-10-07 15:00:00+00:00,21613,148.224,148.277,147.998,148.128,USD_JPY,H1,44.217081850533575,0.0991889067560976,0.2085439060006012,-0.10935499924450359,148.4352,0.2521990858858553,0.3083571428571454,24.59388085300475,-276983 -2024-10-07 16:00:00+00:00,14865,148.129,148.198,147.993,148.004,USD_JPY,H1,36.61453541858313,0.07077624852820463,0.18099037450612188,-0.11021412597791724,148.4003,0.26146089568844094,0.29692857142857626,25.920201216314968,-291848 -2024-10-07 17:00:00+00:00,11587,148.004,148.05,147.886,148.022,USD_JPY,H1,40.417080436941696,0.049144949363551405,0.15462128947760778,-0.10547634011405638,148.3619,0.2575826693569461,0.2879285714285779,28.319723207642426,-280261 -2024-10-07 18:00:00+00:00,16593,148.022,148.108,147.952,148.104,USD_JPY,H1,38.900203665988634,0.038178604441242214,0.13133275247033466,-0.09315414802909244,148.32,0.22425455455163248,0.28421428571429275,30.270747216597403,-263668 -2024-10-07 19:00:00+00:00,14482,148.103,148.164,148.026,148.076,USD_JPY,H1,40.487546369899505,0.02691803671646653,0.11044980931956104,-0.08353177260309451,148.28400000000002,0.20033550799440092,0.27878571428571775,32.52607269049372,-278150 -2024-10-07 20:00:00+00:00,12148,148.076,148.212,148.066,148.183,USD_JPY,H1,44.75847893114082,0.026324508878303732,0.09362474923130959,-0.06730024035300586,148.27175,0.19854944359734913,0.2742857142857166,32.43724857187829,-266002 -2024-10-07 21:00:00+00:00,684,148.182,148.187,148.154,148.162,USD_JPY,H1,46.954177897574255,0.023884286111950814,0.07967665660743783,-0.05579237049548702,148.26045,0.19801554291771697,0.2553571428571461,31.328807412469008,-266686 -2024-10-07 22:00:00+00:00,7288,148.163,148.181,147.57,147.696,USD_JPY,H1,36.23570800351844,-0.01547354410229218,0.060646616465491826,-0.076120160567784,148.21595,0.21980960056385151,0.27771428571429013,31.869965322246262,-273974 -2024-10-07 23:00:00+00:00,13623,147.69,148.164,147.688,148.132,USD_JPY,H1,45.996275605214215,-0.011352487499749486,0.046246795672443566,-0.05759928317219305,148.20215000000002,0.21574406736980656,0.29200000000000365,34.111106782461604,-260351 -2024-10-08 00:00:00+00:00,20036,148.135,148.193,147.743,147.822,USD_JPY,H1,34.88716241213501,-0.03272371110173822,0.030452694317607214,-0.06317640541934544,148.16625,0.2163038493341116,0.29878571428571987,38.67383569998526,-280387 -2024-10-08 01:00:00+00:00,22383,147.822,147.944,147.75,147.844,USD_JPY,H1,40.8898305084747,-0.047339641717542236,0.014894227110577325,-0.06223386882811956,148.1367,0.21801909615744383,0.2752142857142904,41.97881582861595,-258004 -2024-10-08 02:00:00+00:00,22845,147.845,147.858,147.51,147.694,USD_JPY,H1,40.09140008309118,-0.07021719827730522,-0.0021280579669991848,-0.06808914031030602,148.10205000000002,0.23083771349896479,0.28235714285714714,43.64849417020635,-280849 -2024-10-08 03:00:00+00:00,15911,147.692,147.965,147.69,147.918,USD_JPY,H1,49.895090222408825,-0.06947206796624528,-0.015596859966848403,-0.05387520799939687,148.0842,0.2305628353096286,0.2739285714285761,43.55747183041313,-264938 -2024-10-08 04:00:00+00:00,11751,147.918,148.107,147.903,148.082,USD_JPY,H1,46.86248331108111,-0.055013950851133586,-0.023480278143705444,-0.03153367270742814,148.0722,0.22367754039825954,0.2627857142857185,43.49776330730343,-253187 -2024-10-08 05:00:00+00:00,16961,148.082,148.166,147.842,147.974,USD_JPY,H1,46.59292035398246,-0.05167481122134632,-0.02911918475923362,-0.022555626462112698,148.05355,0.21493854072523305,0.2660000000000033,44.18068600881954,-270148 -2024-10-08 06:00:00+00:00,21439,147.978,148.13,147.843,147.992,USD_JPY,H1,49.72144846796657,-0.0470338920102904,-0.03270212620944498,-0.014331765800845421,148.0212,0.16509633543243496,0.27185714285714574,45.2134596087098,-248709 -2024-10-08 07:00:00+00:00,31363,147.992,148.064,147.347,147.592,USD_JPY,H1,41.52208201892797,-0.07477067733483977,-0.04111583643452394,-0.033654840900315834,147.9871,0.17990169822923413,0.3113571428571435,46.30279968297629,-280072 -2024-10-08 08:00:00+00:00,18712,147.592,147.856,147.532,147.84,USD_JPY,H1,45.11472982975555,-0.07586621367360635,-0.048065911882340426,-0.027800301791265927,147.97055,0.17729976838063038,0.3233571428571419,47.92108923909541,-261360 -2024-10-08 09:00:00+00:00,15216,147.841,147.956,147.722,147.826,USD_JPY,H1,45.34970238095236,-0.07697677674619285,-0.05384808485511092,-0.023128691891081937,147.96570000000003,0.17997546608948856,0.330214285714285,49.129435685414684,-276576 -2024-10-08 10:00:00+00:00,17225,147.826,148.0,147.781,147.878,USD_JPY,H1,44.20812761108984,-0.07282149964638052,-0.05764276781336484,-0.015178731833015678,147.94845,0.17028906530516041,0.3354285714285713,50.93957375681526,-259351 -2024-10-08 11:00:00+00:00,17947,147.879,148.004,147.812,147.856,USD_JPY,H1,44.19134396355328,-0.07049105178020909,-0.06021242460673369,-0.0102786271734754,147.93485,0.16600230649744196,0.34678571428571153,53.2311717341075,-277298 -2024-10-08 12:00:00+00:00,24372,147.854,148.18,147.854,148.04,USD_JPY,H1,57.31292517006797,-0.053183822804925285,-0.058806704246372014,0.00562288144144673,147.93665000000001,0.16698385511102073,0.3264285714285669,50.324702040044734,-252926 -2024-10-08 13:00:00+00:00,27116,148.041,148.288,147.954,148.254,USD_JPY,H1,52.863849765257925,-0.02194671950172733,-0.05143470729744308,0.02948798779571575,147.94825,0.18071841275828124,0.31628571428571,46.87298729983474,-225810 -2024-10-08 14:00:00+00:00,23903,148.255,148.338,148.114,148.312,USD_JPY,H1,63.045793397231435,0.007403680174576266,-0.03966702980303921,0.04707070997761548,147.95864999999998,0.19553119948759254,0.30014285714285094,42.43514429173117,-201907 -2024-10-08 15:00:00+00:00,20951,148.312,148.362,148.176,148.228,USD_JPY,H1,59.89690721649523,0.023613780431787745,-0.027010867756073823,0.05062464818786157,147.96625,0.20313849948514454,0.29957142857142366,38.30279278048853,-222858 -2024-10-08 16:00:00+00:00,16705,148.229,148.272,148.042,148.152,USD_JPY,H1,62.27224008574478,0.029982220457441144,-0.015612250113370828,0.04559447057081197,147.9647,0.20150933104793856,0.2911428571428506,34.65090191661624,-239563 -2024-10-08 17:00:00+00:00,15092,148.152,148.297,148.152,148.249,USD_JPY,H1,59.51696377228258,0.04236795300795393,-0.004016209489105877,0.0463841624970598,147.96904999999998,0.20686061280721688,0.28185714285713664,31.97861553905301,-224471 -2024-10-08 18:00:00+00:00,18791,148.248,148.368,148.205,148.353,USD_JPY,H1,58.07027992852919,0.059885345142902224,0.008764101437295743,0.05112124370560648,148.0019,0.21328431722272784,0.27892857142856337,29.974584803746065,-205680 -2024-10-08 19:00:00+00:00,18089,148.354,148.382,148.262,148.285,USD_JPY,H1,59.48749237339841,0.06750284217005742,0.02051184958384808,0.04699099258620934,148.00955,0.22080748336509465,0.2643571428571363,28.08709325120115,-223769 -2024-10-08 20:00:00+00:00,19524,148.286,148.326,148.16,148.198,USD_JPY,H1,56.030444964871606,0.06576153252274253,0.02956178617162697,0.03619974635111556,148.02835,0.22000389344538168,0.2557142857142785,25.48213729316012,-243293 -2024-10-08 21:00:00+00:00,164,148.208,148.238,148.204,148.234,USD_JPY,H1,73.8839285714275,0.06651963428026875,0.036953355793355326,0.02956627848691342,148.04784999999998,0.22008784723286665,0.20735714285713616,28.532077791632098,-243129 -2024-10-08 22:00:00+00:00,2050,148.234,148.309,148.193,148.204,USD_JPY,H1,66.16341030195312,0.06396236774520503,0.04235515818372527,0.02160720956147976,148.07335,0.20602791705233883,0.19249999999999343,28.590407146997357,-245179 -2024-10-08 23:00:00+00:00,7451,148.204,148.32,148.112,148.146,USD_JPY,H1,63.67521367521253,0.05660311484459157,0.045204749515898535,0.011398365328693039,148.08474999999999,0.20326903995678935,0.19064285714285184,27.545163556928888,-252630 -2024-10-09 00:00:00+00:00,13901,148.146,148.236,148.01,148.227,USD_JPY,H1,64.55379482902376,0.056653807132221345,0.0474945610391631,0.009159246093058244,148.092,0.20573667373796853,0.1911428571428522,25.17159508192007,-238729 -2024-10-09 01:00:00+00:00,15595,148.23,148.435,148.16,148.176,USD_JPY,H1,63.02931596091047,0.05197951981187998,0.04839155279370648,0.003587967018173502,148.1021,0.2045940524287313,0.19707142857142554,24.01699470370813,-254324 -2024-10-09 02:00:00+00:00,13608,148.176,148.297,148.078,148.274,USD_JPY,H1,60.24518388791508,0.05554263350890665,0.049821768936746516,0.005720864572160131,148.1162,0.2063169763017578,0.18942857142856845,24.63886886987267,-240716 -2024-10-09 03:00:00+00:00,11031,148.274,148.349,148.186,148.324,USD_JPY,H1,53.57873210634001,0.06168988630847139,0.052195392411091494,0.009494493897379892,148.1528,0.1701966663501781,0.17721428571428127,24.426104209533857,-229685 -2024-10-09 04:00:00+00:00,7183,148.323,148.372,148.28,148.338,USD_JPY,H1,51.391862955030994,0.06691990048125263,0.05514029402512372,0.011779606456128904,148.1777,0.15801835328094796,0.1677857142857115,23.91448411926238,-222502 -2024-10-09 05:00:00+00:00,16771,148.338,148.615,148.316,148.595,USD_JPY,H1,66.57633242998884,0.09075629448580003,0.06226349411725898,0.028492800368541044,148.21615000000003,0.16145792176303847,0.17585714285714005,24.651917918817265,-205731 -2024-10-09 06:00:00+00:00,14707,148.594,148.656,148.427,148.442,USD_JPY,H1,62.246621621621635,0.09619214398239251,0.06904922409028569,0.02714291989210682,148.24435,0.14797982606141308,0.17578571428571316,26.03263969905464,-220438 -2024-10-09 07:00:00+00:00,22054,148.441,148.565,148.266,148.546,USD_JPY,H1,62.46851385390354,0.1076510899528671,0.07676959726280197,0.030881492690065127,148.27884999999998,0.1322745449322954,0.18678571428571292,26.38529715183068,-198384 -2024-10-09 08:00:00+00:00,17347,148.546,148.731,148.483,148.722,USD_JPY,H1,64.60807600950046,0.12944198961687903,0.08730407573361738,0.04213791388326164,148.31295,0.15364191956514422,0.19285714285714203,27.554791666353566,-181037 -2024-10-09 09:00:00+00:00,12809,148.722,148.76,148.562,148.62,USD_JPY,H1,62.91441788743231,0.13690275727822154,0.09722381204253822,0.03967894523568333,148.33125,0.1674291286841116,0.1984285714285688,28.252468001904052,-193846 -2024-10-09 10:00:00+00:00,12471,148.621,148.698,148.508,148.603,USD_JPY,H1,66.50366748166181,0.13983181732879757,0.1057454130997901,0.034086404229007466,148.3458,0.1779800697753036,0.20014285714285457,30.028233624862605,-206317 -2024-10-09 11:00:00+00:00,13471,148.602,148.739,148.511,148.724,USD_JPY,H1,68.67378048780357,0.15018556161538754,0.1146334428029096,0.03555211881247794,148.3706,0.19449242976857986,0.2135714285714272,25.09049979109206,-192846 -2024-10-09 12:00:00+00:00,16713,148.722,148.918,148.674,148.912,USD_JPY,H1,74.08163265306025,0.17158310415771894,0.12602337507387149,0.04555972908384745,148.4086,0.22185424322600594,0.22271428571428536,23.49162887958291,-176133 -2024-10-09 13:00:00+00:00,18235,148.911,149.128,148.815,149.118,USD_JPY,H1,80.03708281829401,0.2028252459882367,0.14138374925674455,0.06144149673149216,148.45205,0.26903188516882937,0.23021428571428462,24.423478466505394,-157898 -2024-10-09 14:00:00+00:00,16922,149.118,149.18,149.034,149.148,USD_JPY,H1,79.38736439055481,0.2273844711148172,0.1585838936283591,0.0688005774864581,148.4918,0.30933878545207294,0.22450000000000006,27.48965707023584,-140976 -2024-10-09 15:00:00+00:00,13674,149.143,149.268,149.074,149.201,USD_JPY,H1,82.66411727214829,0.2482626734662574,0.17651964959593877,0.07174302387031864,148.53760000000003,0.34307930643055184,0.21871428571428453,29.31707825155332,-127302 -2024-10-09 16:00:00+00:00,10057,149.202,149.3,149.194,149.242,USD_JPY,H1,82.01058201058225,0.265061690425739,0.19422805776189883,0.07083363266384018,148.5898,0.3672600684384581,0.21064285714285802,33.48363627083934,-117245 -2024-10-09 17:00:00+00:00,9644,149.24,149.298,149.172,149.189,USD_JPY,H1,78.5478547854787,0.27097474712704184,0.20957739563492744,0.061397351492114394,148.63755,0.3804128608651995,0.20800000000000246,37.73827755740689,-126889 -2024-10-09 18:00:00+00:00,11763,149.186,149.364,149.157,149.361,USD_JPY,H1,80.57381948595375,0.28624025027335165,0.2249099665626123,0.06133028371073934,148.6954,0.3985530935722378,0.2162142857142868,42.2669216814264,-115126 -2024-10-09 19:00:00+00:00,10890,149.362,149.362,149.234,149.324,USD_JPY,H1,75.0860289057137,0.29198683820536075,0.238325340891162,0.05366149731419875,148.7543,0.40012893971337377,0.2039999999999996,44.94683218022544,-126016 -2024-10-09 20:00:00+00:00,6683,149.326,149.361,149.3,149.314,USD_JPY,H1,83.28244274809173,0.29236394455432446,0.2491330616237945,0.04323088293052996,148.80865,0.39855664257875956,0.19199999999999712,46.20539461564922,-132699 -2024-10-09 21:00:00+00:00,1172,149.243,149.248,149.091,149.18,USD_JPY,H1,73.65671641791144,0.27863815671315706,0.25503408064166705,0.02360407607149001,148.85885,0.3773421279877257,0.18185714285713825,48.42108577069337,-133871 -2024-10-09 22:00:00+00:00,2543,149.176,149.306,149.158,149.232,USD_JPY,H1,70.97039473684256,0.2688571188693629,0.2577986882872062,0.01105843058215672,148.90675,0.35957999984880756,0.17471428571428355,49.84240055958867,-131328 -2024-10-09 23:00:00+00:00,5933,149.232,149.299,149.142,149.166,USD_JPY,H1,73.13559322033964,0.2528650565259909,0.25681196193496314,-0.0039469054089722455,148.94885,0.3362973738520683,0.17178571428571437,50.92933296729965,-137261 -2024-10-10 00:00:00+00:00,14203,149.168,149.293,149.005,149.216,USD_JPY,H1,75.2679307502068,0.24144261387490928,0.2537380923229524,-0.012295478448043129,148.99275,0.3085202159663296,0.1787857142857153,50.917165498686366,-123058 -2024-10-10 01:00:00+00:00,11162,149.216,149.217,149.066,149.095,USD_JPY,H1,65.29266281945635,0.22008950223801094,0.24700837430596412,-0.02691887206795318,149.01775,0.2945344005946653,0.17328571428571543,51.42408390717536,-134220 -2024-10-10 02:00:00+00:00,10281,149.094,149.224,149.073,149.215,USD_JPY,H1,63.23144104803502,0.2104243634656484,0.239691572137901,-0.029267208672252576,149.0564,0.2641573294699693,0.16664285714285704,50.60402527709688,-123939 -2024-10-10 03:00:00+00:00,7779,149.216,149.226,149.146,149.226,USD_JPY,H1,55.684210526316065,0.20133145572700073,0.23201954885572096,-0.03068809312872023,149.0904,0.2374135631676323,0.15000000000000163,47.30420226824687,-116160 -2024-10-10 04:00:00+00:00,8973,149.23,149.548,149.23,149.4,USD_JPY,H1,61.51736745886705,0.20579334902890878,0.22677430889035854,-0.020980959861449766,149.1243,0.23034164551867248,0.1625714285714293,44.91806476848147,-107187 -2024-10-10 05:00:00+00:00,10334,149.4,149.476,149.205,149.261,USD_JPY,H1,52.542372881356016,0.19585559194035795,0.22059056550035844,-0.024734973560000484,149.15635,0.19893301564336507,0.16807142857142918,41.92861491502788,-117521 -2024-10-10 06:00:00+00:00,16678,149.262,149.263,149.052,149.118,USD_JPY,H1,45.163806552262315,0.174430219954246,0.21135849639113596,-0.03692827643688995,149.1821,0.15112312852832152,0.17557142857142846,37.393302474241175,-134199 -2024-10-10 07:00:00+00:00,21069,149.12,149.188,148.903,149.02,USD_JPY,H1,43.63225320271353,0.14783848725909365,0.1986544945647275,-0.05081600730563385,149.1969,0.11377859375680946,0.18692857142857072,33.93923479198544,-155268 -2024-10-10 08:00:00+00:00,16101,149.02,149.214,148.985,149.072,USD_JPY,H1,38.02816901408497,0.12946788771435536,0.1848171731946531,-0.055349285480297744,149.2049,0.09709404002215392,0.1884999999999987,30.726219483594246,-139167 -2024-10-10 09:00:00+00:00,13859,149.07,149.101,148.831,148.884,USD_JPY,H1,33.79970544918942,0.09860239932217496,0.16757421842015746,-0.0689718190979825,149.1932,0.11960575579093766,0.19864285714285757,28.7536968350399,-153026 -2024-10-10 10:00:00+00:00,10805,148.884,148.938,148.778,148.845,USD_JPY,H1,33.093006488825026,0.07018525144428622,0.1480964250249832,-0.07791117358069699,149.17804999999998,0.14261005898444534,0.20571428571428743,27.097179059287708,-163831 -2024-10-10 11:00:00+00:00,14636,148.846,149.094,148.845,148.956,USD_JPY,H1,41.788856304984705,0.055975973175918625,0.1296723346551703,-0.07369636147925168,149.1658,0.1508211208765681,0.2122857142857169,23.838356185926184,-149195 -2024-10-10 12:00:00+00:00,57411,148.956,149.611,148.246,148.612,USD_JPY,H1,31.280193236714894,0.016763849482174464,0.10709063762057114,-0.09032678813839667,149.1343,0.19374918669375676,0.2992142857142852,23.547847407568945,-206606 -2024-10-10 13:00:00+00:00,46017,148.612,148.772,148.402,148.564,USD_JPY,H1,31.62393162393157,-0.017978000699315544,0.08207690995659381,-0.10005491065590935,149.10305,0.23123864974067224,0.3144285714285705,23.06726320190379,-252623 -2024-10-10 14:00:00+00:00,37228,148.565,148.878,148.348,148.718,USD_JPY,H1,35.70608495981568,-0.03270762120394011,0.05912000372448703,-0.09182762492842714,149.0709,0.23808532300112217,0.331714285714282,22.26192234253886,-215395 -2024-10-10 15:00:00+00:00,23585,148.718,148.828,148.443,148.571,USD_JPY,H1,35.180995475112866,-0.055601681471614484,0.03617566668526673,-0.09177734815688121,149.03325,0.25489912860835584,0.34842857142856637,21.59544324293405,-238980 -2024-10-10 16:00:00+00:00,23067,148.57,148.964,148.44,148.92,USD_JPY,H1,42.613920881321434,-0.0450645300406336,0.019927627340086664,-0.06499215738072026,149.01354999999998,0.24716720843013607,0.37507142857142484,21.18171015908195,-215913 -2024-10-10 17:00:00+00:00,22475,148.921,149.082,148.73,148.814,USD_JPY,H1,40.15296367112776,-0.04475121162556661,0.006991859546956008,-0.05174307117252262,148.99525,0.24774326158332488,0.3944999999999957,21.59178593478637,-238388 -2024-10-10 18:00:00+00:00,11521,148.815,148.841,148.632,148.753,USD_JPY,H1,33.65336028297034,-0.04886184578327857,-0.004178881519090907,-0.04468296426418766,148.97129999999999,0.24680273387739954,0.3864285714285671,22.262044576330982,-249909 -2024-10-10 19:00:00+00:00,10004,148.754,148.758,148.495,148.569,USD_JPY,H1,32.905138339920285,-0.06620366062725225,-0.016583837340723176,-0.04961982328652907,148.94144999999997,0.2578695048945255,0.3858571428571399,24.05115406719696,-259913 -2024-10-10 20:00:00+00:00,7341,148.568,148.596,148.514,148.582,USD_JPY,H1,35.85005279831003,-0.07799905789102013,-0.028866881450782568,-0.04913217644023756,148.90975,0.261288885248623,0.3766428571428528,26.162800740389656,-252572 -2024-10-10 21:00:00+00:00,584,148.575,148.575,148.524,148.546,USD_JPY,H1,37.06331877729184,-0.08922338272284946,-0.04093818170519595,-0.04828520101765352,148.8823,0.26951146831702727,0.35992857142856644,26.927562959157836,-253156 -2024-10-10 22:00:00+00:00,1615,148.544,148.667,148.532,148.664,USD_JPY,H1,39.251844046364006,-0.08758747331506811,-0.05026804002717038,-0.03731943328789773,148.85475000000002,0.2617630255676535,0.35321428571428115,26.949401092735805,-251541 -2024-10-10 23:00:00+00:00,6079,148.656,148.75,148.564,148.708,USD_JPY,H1,44.98289623717242,-0.08179765855607002,-0.0565739637329503,-0.025223694823119716,148.82885,0.24838113216874308,0.3472142857142809,25.07603246583028,-245462 -2024-10-11 00:00:00+00:00,17096,148.712,148.764,148.417,148.464,USD_JPY,H1,40.27565084226633,-0.09579369931688575,-0.0644179108497374,-0.03137578846714835,148.78204999999997,0.22186635967211307,0.36057142857142466,23.446486785345126,-262558 -2024-10-11 01:00:00+00:00,12669,148.463,148.799,148.405,148.762,USD_JPY,H1,45.479962721342275,-0.08189551245638427,-0.06791343117106678,-0.013982081285317485,148.75709999999998,0.1910948785465681,0.3709285714285682,24.616331356245563,-249889 -2024-10-11 02:00:00+00:00,9756,148.764,148.782,148.64,148.666,USD_JPY,H1,51.4225500526871,-0.07773145708182483,-0.0698770363532184,-0.007854420728606426,148.7345,0.17193373869433293,0.2835714285714285,24.812592599523175,-259645 -2024-10-11 03:00:00+00:00,8901,148.666,148.736,148.58,148.711,USD_JPY,H1,53.87862796833822,-0.06999344837433341,-0.0699003187574414,-9.312961689200705e-05,148.71904999999998,0.15826875036936391,0.2682857142857123,23.05134752025415,-250744 -2024-10-11 04:00:00+00:00,7366,148.71,148.766,148.676,148.714,USD_JPY,H1,49.88532110091769,-0.06289394356508637,-0.0684990437189704,0.005605100153884032,148.70114999999998,0.1347462624274794,0.23685714285714304,21.788356982019785,-243378 -2024-10-11 05:00:00+00:00,7829,148.714,148.734,148.604,148.695,USD_JPY,H1,53.83663366336616,-0.05813058289041351,-0.06642535155325903,0.008294768662845522,148.6917,0.1276904562078702,0.21864285714285764,19.962708067107688,-251207 -2024-10-11 06:00:00+00:00,11644,148.696,148.862,148.662,148.693,USD_JPY,H1,41.05594956658887,-0.05389569252830029,-0.06391941974826729,0.010023727219966999,148.6841,0.12250409220330506,0.19549999999999962,18.892738954896537,-262851 -2024-10-11 07:00:00+00:00,15576,148.692,148.811,148.662,148.776,USD_JPY,H1,48.47512038523346,-0.04334247993659801,-0.05980403178593344,0.016461551849335426,148.6751,0.10712358812535462,0.1809999999999994,19.387570903047184,-247275 -2024-10-11 08:00:00+00:00,9901,148.776,148.827,148.67,148.736,USD_JPY,H1,49.30612244897977,-0.037771245228697126,-0.055397474474486175,0.01762622924578905,148.6813,0.10686740419900696,0.17728571428571424,16.919547321760476,-257176 -2024-10-11 09:00:00+00:00,9318,148.736,148.957,148.726,148.941,USD_JPY,H1,64.92776886035324,-0.016622599856646048,-0.04764249955091815,0.0310198996942721,148.70015,0.11778002456079831,0.17499999999999918,16.324683678754937,-247858 -2024-10-11 10:00:00+00:00,8967,148.94,149.085,148.907,149.062,USD_JPY,H1,67.72525849335315,0.00978870463549697,-0.03615625871363513,0.0459449633491321,148.71735,0.14295206217582304,0.1818571428571423,16.690134945593222,-238891 -2024-10-11 11:00:00+00:00,9487,149.062,149.144,148.998,149.008,USD_JPY,H1,66.83673469387767,0.026062077617780233,-0.023712591447352056,0.04977466906513229,148.73919999999998,0.15248489131836082,0.18864285714285853,17.765356903258507,-248378 -2024-10-11 12:00:00+00:00,26037,149.007,149.264,148.788,149.062,USD_JPY,H1,65.21406727828781,0.04282255983903838,-0.01040556119007397,0.05322812102911235,148.74630000000002,0.16420208978851614,0.213000000000002,16.940589044457262,-222341 -2024-10-11 13:00:00+00:00,21426,149.062,149.178,148.974,149.092,USD_JPY,H1,64.83771251932004,0.0578591477919872,0.0032473806063382637,0.05461176718564893,148.7602,0.18112879969906165,0.21428571428571633,17.133072766793383,-200915 -2024-10-11 14:00:00+00:00,22344,149.09,149.286,148.996,149.263,USD_JPY,H1,82.71908271908214,0.0826216124526411,0.01912222697559883,0.06349938547704227,148.78570000000002,0.21313403239438863,0.21021428571428658,17.90901019985656,-178571 -2024-10-11 15:00:00+00:00,14373,149.263,149.27,149.066,149.125,USD_JPY,H1,67.10650329877416,0.09007230000784716,0.0333122415820485,0.05676005842579866,148.81350000000003,0.21954558326957382,0.19664285714285817,17.610129970641854,-192944 -2024-10-11 16:00:00+00:00,8570,149.122,149.133,148.979,149.006,USD_JPY,H1,65.68265682656796,0.08539039082737077,0.04372787143111295,0.04166251939625781,148.8347,0.21646443727991485,0.19749999999999904,15.012210457264695,-201514 -2024-10-11 17:00:00+00:00,7662,149.006,149.107,148.956,149.034,USD_JPY,H1,65.13589503280116,0.08298273673065637,0.05157884449102164,0.03140389223963473,148.8591,0.20960436409834163,0.19714285714285854,15.154045893773693,-193852 -2024-10-11 18:00:00+00:00,6594,149.032,149.11,149.032,149.11,USD_JPY,H1,67.36842105263158,0.0862134039001603,0.05850575637284937,0.027707647527310933,148.88139999999999,0.21147188434913217,0.19628571428571565,15.681335696005203,-187258 -2024-10-11 19:00:00+00:00,4835,149.109,149.15,149.085,149.142,USD_JPY,H1,69.38421509106657,0.09031477101126484,0.06486755930053247,0.025447211710732373,148.90310000000002,0.21498026831539227,0.19164285714285864,17.257047512681442,-182423 -2024-10-11 20:00:00+00:00,4196,149.141,149.178,149.11,149.128,USD_JPY,H1,68.6695278969938,0.09138205554549472,0.07017045854952492,0.021211596995969806,148.9363,0.19383120702730622,0.18221428571428686,18.017877389562507,-186619 -2024-10-13 21:00:00+00:00,1637,149.077,149.218,149.074,149.132,USD_JPY,H1,66.39042357274272,0.09149594450482823,0.07443555574058558,0.01706038876424265,148.9548,0.19397682980684325,0.1818571428571423,18.078906585930536,-184982 -2024-10-13 22:00:00+00:00,4633,149.144,149.342,149.144,149.341,USD_JPY,H1,74.10358565737025,0.10721484959259442,0.08099141451098735,0.02622343508160707,148.98854999999998,0.199720455892695,0.1856428571428564,19.825659558039565,-180349 -2024-10-13 23:00:00+00:00,5813,149.339,149.394,149.23,149.308,USD_JPY,H1,66.94367497691466,0.11567593079135463,0.08792831776706081,0.02774761302429382,149.0184,0.2006661012385007,0.18085714285714363,18.892402721167837,-186162 -2024-10-14 00:00:00+00:00,10039,149.308,149.371,149.146,149.222,USD_JPY,H1,57.633587786259156,0.11412633992665633,0.09316792219897992,0.020958417727676412,149.0438,0.1920747112782691,0.1842142857142883,16.539351135133824,-196201 -2024-10-14 01:00:00+00:00,10033,149.222,149.28,149.147,149.214,USD_JPY,H1,60.279441117763525,0.11097351130126754,0.09672904001943744,0.014244471281830096,149.06975,0.1769328968164021,0.1832857142857165,14.6642456304755,-206234 -2024-10-14 02:00:00+00:00,9489,149.214,149.322,149.19,149.32,USD_JPY,H1,62.23908918405948,0.11569453148024422,0.10052213831159881,0.01517239316864541,149.1011,0.16154318300662598,0.15871428571428833,15.90465454317796,-196745 -2024-10-14 03:00:00+00:00,5898,149.321,149.356,149.258,149.329,USD_JPY,H1,61.471442400773704,0.11879282898252086,0.10417627644578323,0.014616552536737631,149.12875,0.14987464051903546,0.15114285714285813,18.27574430461886,-190847 -2024-10-14 04:00:00+00:00,3892,149.328,149.335,149.264,149.29,USD_JPY,H1,51.498335183129015,0.11675539450160954,0.1066921000569485,0.010063294444661045,149.15645,0.1220847310476638,0.13550000000000142,18.869534467503655,-194739 -2024-10-14 05:00:00+00:00,6517,149.29,149.322,149.17,149.224,USD_JPY,H1,55.97104945717622,0.10856361085413369,0.10706640221638555,0.001497208637748132,149.17059999999998,0.11176309520476028,0.13178571428571623,18.579862902272218,-201256 -2024-10-14 06:00:00+00:00,8194,149.223,149.246,149.178,149.214,USD_JPY,H1,64.44444444444322,0.10011063379866414,0.10567524853284128,-0.005564614734177145,149.1782,0.10912648372308628,0.12564285714286022,20.358221804519022,-209450 -2024-10-14 07:00:00+00:00,12929,149.214,149.397,149.189,149.358,USD_JPY,H1,69.37799043062114,0.10383424854097711,0.10530704853446846,-0.0014727999934913416,149.19570000000002,0.10845765594928332,0.12971428571428792,23.21789019530502,-196521 -2024-10-14 08:00:00+00:00,11692,149.358,149.47,149.328,149.427,USD_JPY,H1,69.11942098914145,0.1110725877431662,0.10646015637620801,0.004612431366958186,149.21395,0.11527106487410353,0.13428571428571598,26.597179088807987,-184829 -2024-10-14 09:00:00+00:00,8737,149.426,149.433,149.344,149.398,USD_JPY,H1,65.49636803873999,0.1131644764315638,0.10780102038727918,0.00536345604428462,149.22925,0.11849533625013207,0.13600000000000176,29.06585054951085,-193566 -2024-10-14 10:00:00+00:00,9090,149.399,149.542,149.396,149.521,USD_JPY,H1,71.01604278074801,0.12332576270961226,0.1109059688517458,0.012419793857866457,149.24214999999998,0.13522545492778873,0.1415714285714326,32.60787421538966,-184476 -2024-10-14 11:00:00+00:00,13046,149.52,149.728,149.512,149.64,USD_JPY,H1,74.19047619047504,0.13937434013300276,0.1165996431079972,0.022774697025005564,149.2679,0.15873377240709202,0.14671428571429196,36.25721273867755,-171430 -2024-10-14 12:00:00+00:00,10421,149.64,149.8,149.63,149.743,USD_JPY,H1,71.29237288135485,0.1585762245515525,0.12499495939670827,0.03358126515484425,149.30474999999998,0.17898864261978642,0.14385714285714965,39.03890893943928,-161009 -2024-10-14 13:00:00+00:00,15326,149.744,149.886,149.692,149.788,USD_JPY,H1,75.10460251046075,0.17540304311819455,0.13507657614100552,0.04032646697718903,149.34244999999999,0.19741766432351454,0.14600000000000485,42.419861320391156,-145683 -2024-10-14 14:00:00+00:00,13277,149.788,149.963,149.788,149.842,USD_JPY,H1,83.54978354978252,0.1908952452075141,0.14624030995430726,0.04465493525320685,149.37905,0.2187556855866894,0.14242857142857343,48.063572083282665,-132406 -2024-10-14 15:00:00+00:00,7651,149.84,149.9,149.802,149.828,USD_JPY,H1,83.01075268817102,0.19974075687059667,0.15694039933756515,0.04280035753303152,149.41334999999998,0.23295137843210062,0.13992857142857368,53.265841078654624,-140057 -2024-10-14 16:00:00+00:00,4825,149.828,149.943,149.802,149.934,USD_JPY,H1,83.01075268817102,0.2128505935653493,0.168122438183122,0.0447281553822273,149.45365,0.25007688812974377,0.14057142857143187,57.67693556494726,-135232 -2024-10-14 17:00:00+00:00,4499,149.934,149.939,149.852,149.874,USD_JPY,H1,77.77777777777649,0.21590986056477846,0.1776799226594533,0.03822993790532517,149.49075,0.2548413076445735,0.1397857142857179,61.08447163855633,-139731 -2024-10-14 18:00:00+00:00,3629,149.876,149.916,149.834,149.903,USD_JPY,H1,81.56539649845506,0.2181596012559055,0.18577585837874372,0.03238374287716178,149.51885000000001,0.26809960340368194,0.14057142857143187,64.86783561203681,-136102 -2024-10-14 19:00:00+00:00,10809,149.902,149.982,149.71,149.766,USD_JPY,H1,76.00767754318622,0.20650729437565474,0.18992214557812592,0.016585148797528815,149.54175,0.2687013358202272,0.14914285714285874,69.4448838226256,-146911 -2024-10-14 20:00:00+00:00,3045,149.765,149.794,149.712,149.752,USD_JPY,H1,75.71701720841371,0.19390782551650432,0.19071928156580162,0.003188543950702699,149.56824999999998,0.2615467905769517,0.15014285714285944,72.54462162090921,-149956 -2024-10-14 21:00:00+00:00,426,149.827,149.827,149.762,149.77,USD_JPY,H1,72.39130434782672,0.1832625684271818,0.18922793893807768,-0.005965370510895879,149.59605000000002,0.2512579875202797,0.14064285714285876,73.98234599233278,-149530 -2024-10-14 22:00:00+00:00,1708,149.772,149.788,149.712,149.734,USD_JPY,H1,67.3055242390088,0.16996201009877154,0.18537475317021648,-0.01541274307144494,149.61675,0.2442752706921678,0.1359285714285749,74.09995177353723,-151238 -2024-10-14 23:00:00+00:00,6449,149.732,149.842,149.668,149.72,USD_JPY,H1,68.46330275229343,0.15648764662097392,0.17959733186036797,-0.02310968523939405,149.6363,0.23552340363803992,0.14200000000000404,74.11704755763706,-157687 -2024-10-15 00:00:00+00:00,14500,149.72,149.747,149.527,149.58,USD_JPY,H1,53.31833520810041,0.13297938296605594,0.17027374208150559,-0.03729435911544965,149.65079999999998,0.22159650381579335,0.14728571428571918,71.59585269512039,-172187 -2024-10-15 01:00:00+00:00,7129,149.582,149.6,149.444,149.522,USD_JPY,H1,42.874396135266274,0.10841901249037278,0.15790279616327904,-0.04948378367290626,149.6657,0.20039253578452088,0.14300000000000473,67.10663694749967,-179316 -2024-10-15 02:00:00+00:00,8573,149.523,149.714,149.505,149.622,USD_JPY,H1,42.66666666666823,0.09591822066479949,0.14550588106358314,-0.04958766039878365,149.6861,0.17053164539874335,0.14578571428571813,62.41540771104538,-170743 -2024-10-15 03:00:00+00:00,8245,149.623,149.724,149.571,149.714,USD_JPY,H1,45.756880733944314,0.09237009919846173,0.13487872469055887,-0.042508625492097135,149.7039,0.15206158717100737,0.14285714285714693,58.323117149705105,-162498 -2024-10-15 04:00:00+00:00,7077,149.714,149.757,149.666,149.678,USD_JPY,H1,40.39812646369946,0.08566578637783095,0.1250361370280133,-0.03937035065018235,149.71644999999998,0.13768364761040686,0.13685714285714873,53.41169214315368,-169575 -2024-10-15 05:00:00+00:00,11620,149.68,149.706,149.445,149.638,USD_JPY,H1,39.204545454545524,0.07624598816931893,0.11527810725627444,-0.0390321190869555,149.72845,0.11743821434163425,0.1485000000000046,49.819396639094464,-181195 -2024-10-15 06:00:00+00:00,16415,149.638,149.64,149.306,149.312,USD_JPY,H1,21.72727272727323,0.0419912062319554,0.10062072705141063,-0.05862952081945523,149.71800000000002,0.14331672682464555,0.1622857142857157,47.24892947419881,-197610 -2024-10-15 07:00:00+00:00,19417,149.312,149.34,149.17,149.233,USD_JPY,H1,21.358355674709955,0.00837288754905785,0.08217115915094007,-0.07379827160188222,149.69765,0.17934274002093067,0.16821428571428904,45.07569384777317,-217027 -2024-10-15 08:00:00+00:00,16954,149.234,149.244,149.036,149.152,USD_JPY,H1,17.933390264731358,-0.024523207003653624,0.06083228592002134,-0.08535549292367496,149.6681,0.2163483788470231,0.17721428571428938,43.550348183801965,-233981 -2024-10-15 09:00:00+00:00,14274,149.154,149.167,148.846,148.906,USD_JPY,H1,16.406250000000597,-0.0696409653340595,0.03473763566920517,-0.10437860100326468,149.624,0.27307700856826495,0.18071428571428985,42.59759530446777,-248255 -2024-10-15 10:00:00+00:00,13517,148.906,149.186,148.876,149.146,USD_JPY,H1,29.88047808764864,-0.08505070801078318,0.010779966933207503,-0.09583067494399068,149.5892,0.2877854829338479,0.19700000000000273,41.569113784527566,-234738 -2024-10-15 11:00:00+00:00,12926,149.144,149.373,149.143,149.356,USD_JPY,H1,37.80918727915153,-0.07940249263771193,-0.0072565249809763855,-0.07214596765673555,149.5656,0.28652241572647397,0.20807142857143138,39.62841683904692,-221812 -2024-10-15 12:00:00+00:00,21784,149.354,149.416,149.0,149.084,USD_JPY,H1,33.19544984488091,-0.0957703866600923,-0.024959297316799568,-0.07081108934329274,149.5231,0.2919897077817739,0.23235714285714387,38.91411242385783,-243596 -2024-10-15 13:00:00+00:00,22528,149.084,149.249,149.073,149.188,USD_JPY,H1,36.85770750988099,-0.09920653853905037,-0.039808745561249734,-0.05939779297780064,149.4888,0.28887560604211926,0.23249999999999968,38.42511259498057,-221068 -2024-10-15 14:00:00+00:00,24415,149.187,149.348,148.938,149.23,USD_JPY,H1,40.9138110072683,-0.09741769413037105,-0.051330535275074,-0.046087158855297045,149.45514999999997,0.27704289517352754,0.24607142857142808,40.141216080714436,-196653 -2024-10-15 15:00:00+00:00,17810,149.231,149.318,149.169,149.222,USD_JPY,H1,42.00426439232433,-0.09554418134143816,-0.06017326448834684,-0.03537091685309132,149.42795,0.2715682476551572,0.24557142857142772,43.41496282286379,-214463 -2024-10-15 16:00:00+00:00,11493,149.223,149.483,149.223,149.449,USD_JPY,H1,45.68147778332481,-0.07487924475364593,-0.06311446054140667,-0.011764784212239268,149.4128,0.2607762904498338,0.24928571428571292,46.63779558184968,-202970 -2024-10-15 17:00:00+00:00,11496,149.45,149.544,149.424,149.434,USD_JPY,H1,42.73104880581497,-0.05903202384010342,-0.06229797320114602,0.0032659493610426027,149.396,0.24701310422878292,0.24692857142857097,48.807059398245705,-214466 -2024-10-15 18:00:00+00:00,11099,149.432,149.457,149.238,149.278,USD_JPY,H1,40.22482893450604,-0.05838782484698868,-0.06151594353031456,0.003128118683325881,149.3732,0.2349218458566393,0.2560714285714271,51.16596534349519,-225565 -2024-10-15 19:00:00+00:00,10839,149.278,149.292,149.166,149.242,USD_JPY,H1,40.30362389813859,-0.06008951709060284,-0.06123065824237222,0.00114114115176938,149.3493,0.22172721499889322,0.2464285714285706,51.6472325316088,-236404 -2024-10-15 20:00:00+00:00,5924,149.243,149.251,149.184,149.218,USD_JPY,H1,47.29885057471196,-0.06265250084737772,-0.06151502676337332,-0.0011374740840044,149.33120000000002,0.216620113702767,0.22735714285714437,50.6345438489771,-242328 -2024-10-15 21:00:00+00:00,514,149.274,149.305,149.201,149.208,USD_JPY,H1,49.25194494314763,-0.06474426873830907,-0.06216087515836048,-0.0025833935799485924,149.31550000000001,0.21341891095988366,0.22264285714285847,48.33730923341754,-242842 -2024-10-15 22:00:00+00:00,1566,149.21,149.265,149.165,149.232,USD_JPY,H1,52.47831474597321,-0.06373076188663163,-0.062474852504014716,-0.0012559093826169099,149.296,0.20141995923024106,0.21492857142857247,45.3017658724336,-241276 -2024-10-15 23:00:00+00:00,5951,149.23,149.337,149.067,149.091,USD_JPY,H1,56.12988734261125,-0.07345829057106812,-0.0646715401174254,-0.008786750453642717,149.26485,0.18045622731355845,0.21128571428571416,41.61683759234786,-247227 -2024-10-16 00:00:00+00:00,17540,149.09,149.285,149.032,149.272,USD_JPY,H1,54.344827586207174,-0.06580369577318379,-0.06489797124857707,-0.0009057245246067158,149.24455,0.15214967518995345,0.20721428571428444,38.44562892488249,-229687 -2024-10-16 01:00:00+00:00,18008,149.271,149.3,148.859,149.029,USD_JPY,H1,38.97505057316218,-0.07844122183439595,-0.06760662136574086,-0.010834600468655087,149.2141,0.12834078802495966,0.22228571428571392,38.944145155538514,-247695 -2024-10-16 02:00:00+00:00,11388,149.026,149.116,148.954,149.092,USD_JPY,H1,50.31397174254356,-0.08242285938280247,-0.07056986896915318,-0.01185299041364929,149.2031,0.1289348671853596,0.20414285714285743,38.18820156199245,-236307 -2024-10-16 03:00:00+00:00,9427,149.092,149.2,149.036,149.174,USD_JPY,H1,49.44089456869082,-0.07806177359441335,-0.07206824989420521,-0.005993523700208142,149.20015,0.1288897018355529,0.20328571428571454,36.708145342316755,-226880 -2024-10-16 04:00:00+00:00,7496,149.174,149.286,149.136,149.268,USD_JPY,H1,51.45705521472437,-0.06625680012953694,-0.07090595994127157,0.004649159811734624,149.20595,0.12921849092589355,0.18471428571428458,33.618228978498614,-219384 -2024-10-16 05:00:00+00:00,10478,149.266,149.374,149.189,149.36,USD_JPY,H1,54.971181556196136,-0.048913794706862745,-0.06650752689438981,0.017593732187527064,149.22865000000002,0.11255561187980427,0.18728571428571325,30.33382323732349,-208906 -2024-10-16 06:00:00+00:00,18591,149.36,149.376,149.169,149.267,USD_JPY,H1,42.743221690589564,-0.0421873512024149,-0.06164349175599483,0.01945614055357993,149.2347,0.11112207595995789,0.18342857142857025,28.171967172876748,-227497 -2024-10-16 07:00:00+00:00,16767,149.266,149.488,149.17,149.452,USD_JPY,H1,50.63202247191013,-0.02167874331485109,-0.05365054206776609,0.031971798752915,149.2395,0.11846807243605319,0.19757142857142793,25.92226618010969,-210730 -2024-10-16 08:00:00+00:00,12886,149.451,149.491,149.31,149.466,USD_JPY,H1,57.33229329173225,-0.00424688535949258,-0.043769810726111386,0.039522925366618805,149.2586,0.12279310788742126,0.19485714285714348,23.351989915402307,-197844 -2024-10-16 09:00:00+00:00,12020,149.466,149.472,149.18,149.275,USD_JPY,H1,51.14822546972913,-0.005777516472960542,-0.03617135187548122,0.030393835402520678,149.26295,0.12169654874416365,0.2067142857142861,20.55723047072235,-209864 -2024-10-16 10:00:00+00:00,9441,149.276,149.391,149.215,149.382,USD_JPY,H1,55.39473684210574,0.0016247242953681962,-0.028612136641311337,0.030236860936679533,149.27055000000001,0.12424994960263648,0.214499999999999,18.396744468041277,-200423 -2024-10-16 11:00:00+00:00,12881,149.384,149.423,149.148,149.17,USD_JPY,H1,48.896631823460794,-0.00950599560744081,-0.024790908434537233,0.015284912827096424,149.26794999999998,0.12585307840761414,0.22671428571428415,17.070424698950653,-213304 -2024-10-16 12:00:00+00:00,16859,149.172,149.482,149.146,149.452,USD_JPY,H1,55.5555555555554,0.004377411826027355,-0.018957244382424316,0.02333465620845167,149.2681,0.12608180292525747,0.24357142857142833,16.04543017262512,-196445 -2024-10-16 13:00:00+00:00,18332,149.452,149.54,149.206,149.312,USD_JPY,H1,55.583628094997444,0.004036749139146423,-0.014358445678110168,0.018395194817256592,149.262,0.12045877205796288,0.24814285714285841,16.970909198353258,-214777 -2024-10-16 14:00:00+00:00,17852,149.314,149.748,149.296,149.63,USD_JPY,H1,58.459357277882724,0.02909136670197654,-0.005668483202092827,0.03475984990406937,149.27960000000002,0.145939569243624,0.262357142857145,19.033705399150904,-196925 -2024-10-16 15:00:00+00:00,14151,149.629,149.744,149.544,149.716,USD_JPY,H1,67.53445635528307,0.05524992614067514,0.006515198666460768,0.048734727474214375,149.3033,0.1750888796177649,0.2451428571428583,20.88633957009235,-182774 -2024-10-16 16:00:00+00:00,8711,149.716,149.775,149.694,149.746,USD_JPY,H1,66.97819314641697,0.07750805759670243,0.0207137704525091,0.05679428714419333,149.3297,0.19963574718806396,0.23935714285714482,22.489619461419828,-174063 -2024-10-16 17:00:00+00:00,5679,149.745,149.792,149.722,149.755,USD_JPY,H1,65.67728008634586,0.09478143058822752,0.035527302479652786,0.059254128108574736,149.35705000000002,0.21864931662518527,0.23264285714285954,24.385415436713608,-168384 -2024-10-16 18:00:00+00:00,7639,149.754,149.804,149.744,149.776,USD_JPY,H1,64.26966292134813,0.10890978343812208,0.05020379867134665,0.058705984766775424,149.38425,0.2354645743333494,0.22621428571428787,27.606374556527417,-160745 -2024-10-16 19:00:00+00:00,6607,149.776,149.808,149.72,149.722,USD_JPY,H1,60.39035591274354,0.11443017631552266,0.06304907420018185,0.051381102115340804,149.4158,0.2363760607207235,0.21928571428571583,30.20172681041655,-167352 -2024-10-16 20:00:00+00:00,5044,149.72,149.73,149.604,149.648,USD_JPY,H1,61.05629715612278,0.11154808895375368,0.07274887715089622,0.03879921180285746,149.4346,0.23927178991747228,0.2135000000000003,30.850548540065567,-172396 -2024-10-16 21:00:00+00:00,838,149.598,149.616,149.576,149.589,USD_JPY,H1,54.28929242329359,0.1033122873004686,0.0788615591808107,0.0244507281196579,149.4626,0.22140898089010705,0.19364285714285806,30.753968554687933,-173234 -2024-10-16 22:00:00+00:00,1976,149.586,149.668,149.525,149.578,USD_JPY,H1,53.51317440401484,0.09480489526669089,0.08205022639798674,0.012754668868704147,149.4869,0.2046280064638694,0.19092857142857156,30.705984390212677,-175210 -2024-10-16 23:00:00+00:00,5825,149.578,149.664,149.528,149.566,USD_JPY,H1,60.28268551236722,0.08610189700357296,0.082860560519104,0.0032413364844689624,149.50650000000002,0.19142773812631864,0.179785714285714,32.95634028112073,-181035 -2024-10-17 00:00:00+00:00,15258,149.567,149.622,149.438,149.548,USD_JPY,H1,56.25942684766191,0.07686619298542041,0.08166168701236728,-0.004795494026946873,149.5205,0.18312592727404584,0.1803571428571453,33.418033885109644,-196293 -2024-10-17 01:00:00+00:00,14054,149.548,149.571,149.296,149.382,USD_JPY,H1,58.281250000000675,0.055512109290475564,0.07643177146798893,-0.02091966217751337,149.5216,0.18217469920231918,0.1803571428571453,33.229091439159006,-210347 -2024-10-17 02:00:00+00:00,11669,149.382,149.424,149.242,149.415,USD_JPY,H1,48.20562560620723,0.04078156383954479,0.0693017299423001,-0.028520166102755318,149.529,0.17411611364107504,0.16935714285714557,33.558095768163405,-198678 -2024-10-17 03:00:00+00:00,10959,149.418,149.571,149.418,149.558,USD_JPY,H1,61.895551257252556,0.04018319844246321,0.06347802364233272,-0.023294825199869515,149.5343,0.17326010254743185,0.15664285714286003,31.877534764824155,-187719 -2024-10-17 04:00:00+00:00,9128,149.558,149.578,149.393,149.544,USD_JPY,H1,44.10958904109688,0.03813965634000738,0.05841035018186766,-0.020270693841860282,149.5382,0.17251806916200657,0.13757142857143176,30.771271023225403,-196847 -2024-10-17 05:00:00+00:00,10216,149.542,149.565,149.456,149.514,USD_JPY,H1,35.01483679525187,0.0337107882388068,0.053470437793255485,-0.019759649554448686,149.55015,0.16123577857497057,0.1310714285714332,27.495205666086623,-207063 -2024-10-17 06:00:00+00:00,13534,149.516,149.649,149.44,149.634,USD_JPY,H1,42.67015706806086,0.03942935837898176,0.05066222191040074,-0.011232863531418981,149.56275,0.1571997973685259,0.14021428571428934,24.850278093037584,-193529 -2024-10-17 07:00:00+00:00,14297,149.634,149.796,149.634,149.774,USD_JPY,H1,51.061452513966806,0.05462847335058996,0.05145547219843859,0.0031730011521513696,149.59295,0.13409677368910566,0.14678571428571882,21.173614057257733,-179232 -2024-10-17 08:00:00+00:00,13019,149.774,149.872,149.732,149.834,USD_JPY,H1,53.10492505353291,0.0707003899426013,0.05530445574727113,0.015395934195330176,149.61205,0.14003739154119405,0.15250000000000544,17.550326072281813,-166213 -2024-10-17 09:00:00+00:00,8951,149.834,149.834,149.612,149.642,USD_JPY,H1,46.26865671641725,0.06717040562071475,0.05767764572195985,0.009492759898754893,149.62855,0.12096562138069189,0.16207142857143506,15.129418862642222,-175164 -2024-10-17 10:00:00+00:00,9071,149.641,149.641,149.552,149.622,USD_JPY,H1,48.722986247545016,0.06204383208512354,0.058550882994592594,0.003492949090530946,149.62815,0.12097380089665853,0.1594285714285795,13.555755126635288,-184235 -2024-10-17 11:00:00+00:00,8694,149.624,149.652,149.49,149.528,USD_JPY,H1,47.10351377018002,0.04982165815172834,0.05680503802601975,-0.006983379874291408,149.61875,0.12109234179007682,0.16814285714286217,13.40589652547681,-192929 -2024-10-17 12:00:00+00:00,34022,149.53,150.083,149.466,149.834,USD_JPY,H1,59.495548961424454,0.06408836907968407,0.058261704236752615,0.005826664842931456,149.62314999999998,0.1273942388113376,0.20200000000000426,14.059097843940348,-158907 -2024-10-17 13:00:00+00:00,34498,149.832,149.956,149.638,149.785,USD_JPY,H1,57.90613718411536,0.0706268079083543,0.060734724971072955,0.00989208293728134,149.62465000000003,0.12919233918222972,0.2150000000000034,12.439931430585649,-193405 -2024-10-17 14:00:00+00:00,22839,149.786,150.048,149.728,150.022,USD_JPY,H1,64.77556109725667,0.09385063539053817,0.067357907054966,0.026492728335572174,149.63695,0.1537388334951734,0.22471428571428678,13.44473457446215,-170566 -2024-10-17 15:00:00+00:00,15493,150.022,150.151,149.923,150.128,USD_JPY,H1,74.15803108808255,0.11943225936784074,0.07777277751754096,0.04165948185029979,149.65725,0.18844680242857803,0.22135714285714414,16.64121143011211,-155073 -2024-10-17 16:00:00+00:00,12423,150.126,150.3,150.118,150.211,USD_JPY,H1,74.96863237139301,0.14473487348834624,0.091165196711702,0.05356967677664423,149.68540000000002,0.2254161998062585,0.22135714285714414,20.304506836770223,-142650 -2024-10-17 17:00:00+00:00,8515,150.212,150.26,150.144,150.253,USD_JPY,H1,73.27528466175471,0.1662598859931279,0.1061841345679872,0.06007575142514071,149.7186,0.25713694892720534,0.21849999999999983,24.443308136944516,-134135 -2024-10-17 18:00:00+00:00,8860,150.254,150.282,150.191,150.276,USD_JPY,H1,74.36750998668379,0.18306427030893246,0.12156016171617626,0.06150410859275621,149.7535,0.2831063589954739,0.21178571428571452,26.811684734726004,-125275 -2024-10-17 19:00:00+00:00,7565,150.277,150.322,150.197,150.22,USD_JPY,H1,73.10209424083659,0.18967665949870138,0.1351834612726813,0.054493198226020084,149.78619999999998,0.29770306643853706,0.21292857142857105,29.17650958979477,-132840 -2024-10-17 20:00:00+00:00,4560,150.218,150.249,150.19,150.221,USD_JPY,H1,70.8303761532997,0.19277552100638218,0.1467018732194215,0.046073647786960686,149.81985,0.30724416396947646,0.20221428571428493,31.932222121486593,-128280 -2024-10-17 21:00:00+00:00,261,150.235,150.235,150.166,150.168,USD_JPY,H1,64.90166414523404,0.188778611691788,0.1551172209138948,0.03366139077789321,149.85915,0.2984333258495184,0.19557142857142853,35.28827582213542,-128541 -2024-10-17 22:00:00+00:00,1270,150.167,150.23,150.13,150.214,USD_JPY,H1,64.52599388379133,0.18716532249442253,0.16152684123000033,0.025638481264422197,149.8991,0.28918358761540813,0.19271428571428423,38.234463042452596,-127271 -2024-10-17 23:00:00+00:00,4581,150.214,150.287,150.07,150.108,USD_JPY,H1,69.06710310965606,0.17531257087259178,0.16428398715851864,0.011028583714073142,149.9266,0.28107695140181865,0.1923571428571417,41.43298967922939,-131852 -2024-10-18 00:00:00+00:00,16905,150.108,150.152,149.9,150.052,USD_JPY,H1,67.09062003179474,0.15956112648660792,0.16333941502413651,-0.0037782885375285957,149.952,0.2672983745376163,0.20399999999999757,43.85200745229475,-148757 -2024-10-18 01:00:00+00:00,12216,150.054,150.066,149.874,150.016,USD_JPY,H1,70.33333333333255,0.14253009596779975,0.1591775512128692,-0.016647455245069442,149.9771,0.2467869099552215,0.20614285714285682,46.39114351220254,-160973 -2024-10-18 02:00:00+00:00,10383,150.017,150.096,149.906,149.925,USD_JPY,H1,54.61928934010188,0.12030316213150627,0.15140267339659663,-0.031099511265090363,149.99165,0.23372662276351336,0.17564285714285738,44.91514600286788,-171356 -2024-10-18 03:00:00+00:00,8339,149.924,149.974,149.856,149.894,USD_JPY,H1,55.63598759048642,0.09904498705026299,0.1409311361273299,-0.04188614907706692,149.99765,0.22934443754003847,0.1613571428571439,44.67047109425391,-179695 -2024-10-18 04:00:00+00:00,7909,149.894,150.018,149.864,149.902,USD_JPY,H1,41.869918699186684,0.08189918051027689,0.12912474500391932,-0.04722556449364243,150.00105,0.22728546270467978,0.14950000000000127,43.01397113163161,-171786 -2024-10-18 05:00:00+00:00,11548,149.902,149.92,149.77,149.889,USD_JPY,H1,31.472868217055606,0.06649549526659371,0.11659889505645421,-0.0501033997898605,150.0134,0.21301134138094238,0.14392857142857046,41.04251241228123,-183334 -2024-10-18 06:00:00+00:00,15296,149.893,150.015,149.796,149.958,USD_JPY,H1,29.952456418380592,0.05917357098431353,0.10511383024202607,-0.04594025925771254,150.03019999999998,0.1928093139787273,0.146571428571426,38.9446931960988,-168038 -2024-10-18 07:00:00+00:00,13834,149.958,150.138,149.922,150.095,USD_JPY,H1,39.11845730027594,0.06369145286018352,0.09682935476565757,-0.033137901905474054,150.05855,0.15256628405613235,0.15371428571428478,35.6952342185671,-154204 -2024-10-18 08:00:00+00:00,11410,150.094,150.158,149.888,149.923,USD_JPY,H1,29.828571428569617,0.052784477659116646,0.08802037934434939,-0.035235901685232746,150.06300000000002,0.14686334492765105,0.16649999999999718,32.616540271254,-165614 -2024-10-18 09:00:00+00:00,11592,149.922,149.949,149.84,149.922,USD_JPY,H1,31.829268292681405,0.04355782212940085,0.07912786790135969,-0.03557004577195884,150.06985,0.1360082330293828,0.16535714285714068,30.159065617835445,-177206 -2024-10-18 10:00:00+00:00,14392,149.924,149.982,149.582,149.943,USD_JPY,H1,33.45238095238041,0.03750778919726372,0.0708038521605405,-0.03329606296327678,150.0659,0.13859365056914136,0.18971428571428411,29.094884289194876,-162814 -2024-10-18 11:00:00+00:00,10502,149.94,150.101,149.918,150.008,USD_JPY,H1,40.610328638497265,0.03752548089772745,0.06414817790797789,-0.02662269701025044,150.05990000000003,0.1383610455490839,0.19785714285713954,27.564289104206743,-152312 -2024-10-18 12:00:00+00:00,17398,150.009,150.083,149.788,149.866,USD_JPY,H1,31.645569620253013,0.02578406578103909,0.05647535548259013,-0.030691289701551043,150.04265,0.1400275442044221,0.21178571428571047,27.052173010183083,-169710 -2024-10-18 13:00:00+00:00,15756,149.865,149.925,149.691,149.738,USD_JPY,H1,30.92783505154557,0.00608028965504559,0.04639634231708122,-0.04031605266203563,150.01690000000002,0.14651204361872514,0.2129999999999959,26.01185612763178,-185466 -2024-10-18 14:00:00+00:00,14954,149.736,149.75,149.594,149.605,USD_JPY,H1,28.653295128939064,-0.020036119442551126,0.03310984996515475,-0.05314596940770588,149.98335,0.16024102726828057,0.2061428571428548,25.85686828143753,-200420 -2024-10-18 15:00:00+00:00,11502,149.604,149.652,149.514,149.582,USD_JPY,H1,29.013539651836894,-0.04210411951115134,0.018067056069893533,-0.06017117558104487,149.95145,0.1735985916718385,0.20228571428570977,25.550271470004667,-211922 -2024-10-18 16:00:00+00:00,8124,149.582,149.634,149.366,149.42,USD_JPY,H1,27.149321266967036,-0.07183712105194218,8.622064552639072e-05,-0.07192334169746857,149.91140000000001,0.19871889688129987,0.20785714285713652,28.71057288173618,-220046 -2024-10-18 17:00:00+00:00,8530,149.42,149.653,149.414,149.595,USD_JPY,H1,38.03042433947127,-0.08035343711893006,-0.0160017109073649,-0.06435172621156515,149.88275000000002,0.20106869074698214,0.21649999999999434,30.91867311939259,-211516 -2024-10-18 18:00:00+00:00,8982,149.596,149.598,149.458,149.53,USD_JPY,H1,35.75803981623345,-0.09129524102192477,-0.031060416930276877,-0.06023482409164789,149.84855,0.19992853322781332,0.21549999999999564,33.744969387404055,-220498 -2024-10-18 19:00:00+00:00,7194,149.53,149.572,149.464,149.525,USD_JPY,H1,35.97842835130987,-0.09922633819923021,-0.044693601184067545,-0.05453273701516267,149.8194,0.20259277271524545,0.21249999999999755,35.10782720040608,-227692 -2024-10-18 20:00:00+00:00,4596,149.526,149.565,149.457,149.533,USD_JPY,H1,32.82134195634586,-0.1036711996549684,-0.056489120878247714,-0.04718207877672069,149.79345,0.20446167438723742,0.20457142857142685,36.65946812704704,-223096 -2024-10-20 21:00:00+00:00,1241,149.517,149.613,149.48,149.544,USD_JPY,H1,25.2025202520268,-0.10509470991624426,-0.06621023868584702,-0.03888447123039723,149.76985,0.20466205129565318,0.19864285714285554,40.25191585654948,-221855 -2024-10-20 22:00:00+00:00,2854,149.548,149.647,149.526,149.573,USD_JPY,H1,31.921487603306943,-0.1026989449082123,-0.07350797993032009,-0.02919096497789221,149.75225,0.20574994398791063,0.18799999999999834,42.90904496077936,-219001 -2024-10-20 23:00:00+00:00,4663,149.572,149.628,149.48,149.604,USD_JPY,H1,34.06813627254667,-0.09717862822205348,-0.07824210958866677,-0.018936518633386704,149.73775,0.20545299751484708,0.1907857142857117,44.82667040453974,-214338 -2024-10-21 00:00:00+00:00,17902,149.604,149.617,149.254,149.386,USD_JPY,H1,26.694560669456365,-0.10913645841696962,-0.08442097935432734,-0.02471547906264228,149.71195,0.21587581098104022,0.18814285714285411,45.50694251338356,-232240 -2024-10-21 01:00:00+00:00,17853,149.388,149.414,149.092,149.206,USD_JPY,H1,19.38931297709982,-0.13162038283275024,-0.09386086005001192,-0.03775952278273832,149.6778,0.23916072547294753,0.19807142857142424,49.071339057038344,-250093 -2024-10-21 02:00:00+00:00,11451,149.207,149.288,149.098,149.226,USD_JPY,H1,23.063973063974117,-0.14614060415183872,-0.10431680887037728,-0.041823795281461434,149.6412,0.24979772865308472,0.19057142857142498,52.06576207359116,-238642 -2024-10-21 03:00:00+00:00,10009,149.224,149.244,149.087,149.226,USD_JPY,H1,25.849056603774912,-0.15585142593573664,-0.11462373228344916,-0.041227693652287484,149.59775,0.2421697696769801,0.18507142857142508,54.7652630606991,-248651 -2024-10-21 04:00:00+00:00,9933,149.226,149.358,149.204,149.322,USD_JPY,H1,36.16813294232784,-0.15402541535689807,-0.12250406889813895,-0.03152134645875912,149.5677,0.23691750724686403,0.18492857142856728,55.820449240459915,-238718 -2024-10-21 05:00:00+00:00,13177,149.322,149.373,149.2,149.364,USD_JPY,H1,39.539347408830274,-0.14748907754889728,-0.1275010706282906,-0.019988006920606677,149.53979999999999,0.22558289403699905,0.18742857142856906,56.095300753294524,-225541 -2024-10-21 06:00:00+00:00,14186,149.366,149.646,149.304,149.634,USD_JPY,H1,59.30434782608662,-0.11914876641671412,-0.12583060978597532,0.006681843369261198,149.52435,0.20626943921908295,0.19271428571428423,53.64370758724797,-211355 -2024-10-21 07:00:00+00:00,14508,149.635,149.857,149.62,149.837,USD_JPY,H1,60.27164685908255,-0.07939326605483643,-0.11654314103974756,0.037149874984911124,149.51579999999998,0.18789207422276819,0.1925714285714264,52.58128667410045,-196847 -2024-10-21 08:00:00+00:00,9720,149.84,149.952,149.824,149.95,USD_JPY,H1,67.12887438825359,-0.03832678268238965,-0.10089986936827598,0.06257308668588633,149.51999999999998,0.19685714825451747,0.19171428571428148,51.38906563896914,-187127 -2024-10-21 09:00:00+00:00,11095,149.95,150.094,149.825,150.062,USD_JPY,H1,70.14253563390787,0.003219057939134018,-0.08007608390679398,0.083295141845928,149.5362,0.2267961291278167,0.20321428571428157,51.01055795268436,-176032 -2024-10-21 10:00:00+00:00,10097,150.062,150.078,149.896,149.944,USD_JPY,H1,64.24116424116332,0.02631942813619048,-0.058796981498197086,0.08511640963438757,149.55315000000002,0.24420812409011214,0.20849999999999674,49.74127074243785,-186129 -2024-10-21 11:00:00+00:00,11403,149.944,149.96,149.86,149.923,USD_JPY,H1,63.04198210598676,0.04244285859672914,-0.038549013479211844,0.08099187207594098,149.5702,0.25785116061314567,0.20614285714285277,47.25590455413546,-197532 -2024-10-21 12:00:00+00:00,15585,149.924,150.03,149.746,149.922,USD_JPY,H1,62.24561403508677,0.05451172452904984,-0.019936865877559506,0.07444859040660935,149.5953,0.2667405796257459,0.2177857142857107,44.37942056609904,-213117 -2024-10-21 13:00:00+00:00,15880,149.923,150.147,149.922,150.132,USD_JPY,H1,66.45885286782945,0.0800983092392471,7.016914580181347e-05,0.08002814009344529,149.62214999999998,0.29249278439716464,0.22328571428571056,42.2296792970539,-197237 -2024-10-21 14:00:00+00:00,13992,150.132,150.278,150.094,150.24,USD_JPY,H1,78.58099062918276,0.10784736211203949,0.02162560773904935,0.08622175437299014,149.65765000000002,0.32228873533601937,0.21049999999999613,42.1323906977742,-183245 -2024-10-21 15:00:00+00:00,16371,150.24,150.486,150.194,150.472,USD_JPY,H1,90.94437257438484,0.14686616579172096,0.04667371934958368,0.10019244644213729,149.70499999999998,0.3680860882976778,0.20835714285714094,41.98206011253131,-166874 -2024-10-21 16:00:00+00:00,8805,150.472,150.561,150.44,150.518,USD_JPY,H1,91.09414758269644,0.17943228074543072,0.07322543162875308,0.10620684911667763,149.75425,0.4076333330186243,0.20342857142857035,42.06390144139199,-158069 -2024-10-21 17:00:00+00:00,7379,150.517,150.797,150.504,150.75,USD_JPY,H1,92.23946784922326,0.22140935336446432,0.10286221597589534,0.11854713738856898,149.81455,0.46064742480283616,0.21314285714285575,42.59541161473368,-150690 -2024-10-21 18:00:00+00:00,7585,150.75,150.834,150.714,150.776,USD_JPY,H1,91.92618223760024,0.25384826378262915,0.13305942553724212,0.12078883824538703,149.8747,0.5039530157493725,0.2107142857142849,44.976150394411526,-143105 -2024-10-21 19:00:00+00:00,7217,150.776,150.838,150.726,150.777,USD_JPY,H1,91.73065564087338,0.2764502789104597,0.16173759621188566,0.11471268269857404,149.93335,0.5379040488481487,0.20635714285714155,47.93271019696273,-135888 -2024-10-21 20:00:00+00:00,5035,150.778,150.886,150.762,150.822,USD_JPY,H1,90.46321525885489,0.2945977234817292,0.18830962166585435,0.10628810181587484,150.00515000000001,0.5565153116340877,0.19078571428571373,52.735251466851096,-130853 -2024-10-21 21:00:00+00:00,2216,150.794,150.82,150.67,150.734,USD_JPY,H1,83.14855875831468,0.29843862480129246,0.210335422292942,0.08810320250835046,150.08155,0.5458127184871274,0.1845714285714288,55.29950039541955,-133069 -2024-10-21 22:00:00+00:00,2324,150.729,150.775,150.64,150.685,USD_JPY,H1,78.51047323506549,0.2941380360938126,0.22709594505311614,0.06704209104069647,150.15449999999998,0.5224472272310599,0.1850714285714312,57.31118148283906,-135393 -2024-10-21 23:00:00+00:00,7087,150.684,150.806,150.602,150.621,USD_JPY,H1,72.52215954875066,0.282311215470088,0.23813899913651052,0.04417221633357746,150.22424999999998,0.4836418721582558,0.1804285714285742,58.08392801440477,-142480 -2024-10-22 00:00:00+00:00,15647,150.622,150.766,150.584,150.633,USD_JPY,H1,80.35242290749017,0.2707852310444423,0.2446682455180969,0.026116985526345393,150.2898,0.441967205236876,0.1804285714285722,58.75475962619616,-126833 -2024-10-22 01:00:00+00:00,15444,150.632,150.709,150.495,150.663,USD_JPY,H1,82.34265734265759,0.26106219218053184,0.24794703485058392,0.013115157329947918,150.35475000000002,0.3912979581904205,0.18857142857142964,59.40736740446702,-111389 -2024-10-22 02:00:00+00:00,9501,150.662,150.846,150.634,150.836,USD_JPY,H1,84.72644376899748,0.26426992877225075,0.2512116136349173,0.013058315137333465,150.41485,0.36627919675961046,0.18342857142857433,62.29321745777014,-101888 -2024-10-22 03:00:00+00:00,9615,150.836,150.986,150.814,150.926,USD_JPY,H1,83.19397993311048,0.2709509767712177,0.2551594862621774,0.01579149050904033,150.4693,0.3566744202830512,0.17964285714286024,64.51247193923001,-92273 -2024-10-22 04:00:00+00:00,13450,150.926,151.108,150.848,150.873,USD_JPY,H1,77.73882559158642,0.2688697354396936,0.25790153609768063,0.010968199342012985,150.51545,0.34548371502505176,0.1850714285714312,64.7555331332619,-105723 -2024-10-22 05:00:00+00:00,15839,150.873,150.995,150.784,150.849,USD_JPY,H1,70.20364415862784,0.26226056077322824,0.25877334103279015,0.0034872197404380856,150.5548,0.3358015704490083,0.17928571428571768,62.103334304745495,-121562 -2024-10-22 06:00:00+00:00,16248,150.852,150.88,150.664,150.829,USD_JPY,H1,67.14443219404757,0.252498266538538,0.2575183261339397,-0.0050200595954016936,150.59904999999998,0.30825817525388455,0.1860714285714319,58.12726001791558,-137810 -2024-10-22 07:00:00+00:00,20379,150.83,151.066,150.693,151.006,USD_JPY,H1,65.02347417840471,0.25609193041120193,0.2572330469893922,-0.001141116578190271,150.65320000000003,0.2767631706188069,0.19178571428571647,53.62406637799977,-117431 -2024-10-22 08:00:00+00:00,16630,151.004,151.034,150.788,150.987,USD_JPY,H1,62.485207100591644,0.25447338295634836,0.25668111418278344,-0.0022077312264350835,150.70645000000002,0.22657831800514333,0.2007857142857148,48.80295782705209,-134061 -2024-10-22 09:00:00+00:00,14550,150.988,151.024,150.806,150.887,USD_JPY,H1,55.82627118644165,0.24232810067169908,0.2538105114805666,-0.011482410808867527,150.7442,0.1848927426790674,0.20835714285714296,43.90834267618767,-148611 -2024-10-22 10:00:00+00:00,13479,150.886,150.906,150.75,150.847,USD_JPY,H1,51.33120340788113,0.2268601091304845,0.2484204310105502,-0.021560321880065708,150.77455,0.14280073522103334,0.21064285714285802,38.50054840409735,-162090 -2024-10-22 11:00:00+00:00,12992,150.846,150.939,150.784,150.866,USD_JPY,H1,57.58620689655247,0.21367168146565518,0.2414706811015712,-0.027798999635916005,150.79425,0.1249239241371245,0.21100000000000055,35.13916850750143,-149098 -2024-10-22 12:00:00+00:00,16971,150.866,150.927,150.767,150.916,USD_JPY,H1,63.26061997703873,0.2048924668397376,0.23415503824920447,-0.029262571409466864,150.81414999999998,0.1093287051475113,0.21278571428571322,32.36578216937477,-132127 -2024-10-22 13:00:00+00:00,22907,150.916,150.956,150.606,150.923,USD_JPY,H1,68.55036855036954,0.19623761245375704,0.226571553090115,-0.03033394063635797,150.8228,0.1108197207454213,0.22321428571428367,29.404724745575443,-109220 -2024-10-22 14:00:00+00:00,22177,150.922,151.072,150.855,150.979,USD_JPY,H1,70.16317016317161,0.1916876540322221,0.21959477327853644,-0.027907119246314338,150.83295,0.11550505790160549,0.22571428571428548,27.321505460520903,-87043 -2024-10-22 15:00:00+00:00,16612,150.98,151.15,150.9,151.108,USD_JPY,H1,73.24973876698132,0.19622899539390914,0.214921617701611,-0.018692622307701856,150.8495,0.12988476666421306,0.22828571428571415,26.695096628776376,-70431 -2024-10-22 16:00:00+00:00,10587,151.11,151.199,151.048,151.062,USD_JPY,H1,63.61445783132644,0.19388128283802075,0.21071355072889297,-0.01683226789087222,150.8615,0.1380409930757497,0.22392857142857078,24.293736084558464,-81018 -2024-10-22 17:00:00+00:00,13513,151.062,151.118,150.952,150.981,USD_JPY,H1,53.34957369062173,0.18337089513369165,0.20524501960985272,-0.021874124476161078,150.87385,0.1370794140976939,0.22349999999999934,20.313215760507266,-94531 -2024-10-22 18:00:00+00:00,9603,150.98,151.072,150.9,151.064,USD_JPY,H1,61.222091656874795,0.17966764670282487,0.20012954502844718,-0.020461898325622313,150.89280000000002,0.13578915537250613,0.2172142857142855,17.22196789341804,-84928 -2024-10-22 19:00:00+00:00,9135,151.066,151.128,151.052,151.118,USD_JPY,H1,65.26674233825278,0.1790264389954075,0.19590892382183928,-0.016882484826431787,150.91765,0.12872339778722586,0.20757142857142696,14.453579143705861,-75793 -2024-10-22 20:00:00+00:00,6285,151.118,151.157,151.085,151.094,USD_JPY,H1,64.97175141242877,0.17456935103098203,0.19164100926366784,-0.017071658232685805,150.9407,0.11568382492150167,0.1972857142857123,13.784502340301389,-82078 -2024-10-22 21:00:00+00:00,541,151.064,151.092,151.039,151.05,USD_JPY,H1,52.925531914894435,0.16557796472233122,0.18642840035540054,-0.02085043563306932,150.96005,0.0977679717283886,0.17442857142857196,13.410893619704874,-82619 -2024-10-22 22:00:00+00:00,1517,151.049,151.083,151.034,151.07,USD_JPY,H1,55.511288180611096,0.1582419445121559,0.18079110918675162,-0.022549164674595723,150.97175,0.09612923034899147,0.16035714285714522,13.116311501143285,-81102 -2024-10-22 23:00:00+00:00,3909,151.07,151.162,151.051,151.156,USD_JPY,H1,68.20027063599555,0.15755142218779383,0.17614317178696007,-0.018591749599166235,150.98325,0.10381809740391658,0.15271428571429016,12.213892371484864,-77193 -2024-10-23 00:00:00+00:00,12421,151.155,151.48,151.138,151.472,USD_JPY,H1,80.78817733990189,0.18042293407398802,0.17699912424436565,0.0034238098296223707,151.0132,0.14753540157216558,0.1660000000000029,14.366728836467487,-64772 -2024-10-23 01:00:00+00:00,15166,151.471,151.81,151.427,151.649,USD_JPY,H1,83.37595907928409,0.21040576607515504,0.18368045261052351,0.026725313464631528,151.0532,0.19984825817629434,0.1822857142857178,16.588168320152892,-49606 -2024-10-23 02:00:00+00:00,12477,151.648,151.792,151.639,151.745,USD_JPY,H1,84.00328137817931,0.2391569220182248,0.19477574649206378,0.044381175526161026,151.09900000000002,0.2455087092064228,0.18178571428571746,18.778852376447464,-37129 -2024-10-23 03:00:00+00:00,10222,151.744,151.834,151.72,151.754,USD_JPY,H1,84.02948402948427,0.2596752701557534,0.20775565122480172,0.051919618930951705,151.1364,0.2844770640675597,0.1649285714285753,23.36638361900444,-26907 -2024-10-23 04:00:00+00:00,14528,151.752,152.137,151.733,152.073,USD_JPY,H1,86.8598382749329,0.29823893014776104,0.2258523070093936,0.07238662313836744,151.1907,0.35045430662677274,0.178285714285717,27.466615040524772,-12379 -2024-10-23 05:00:00+00:00,14637,152.074,152.27,152.022,152.17,USD_JPY,H1,86.57024793388449,0.3327917813648753,0.24724020188048995,0.08555157948438535,151.25485,0.4051014525064908,0.17814285714286118,30.622769315100253,2258 -2024-10-23 06:00:00+00:00,19521,152.173,152.382,152.118,152.291,USD_JPY,H1,90.24230517354275,0.365723026262998,0.2709367667569916,0.09478625950600644,151.32704999999999,0.4542805155661322,0.18621428571428972,34.25547394464645,21779 -2024-10-23 07:00:00+00:00,19731,152.288,152.556,152.273,152.374,USD_JPY,H1,95.55264879005983,0.39397715800640754,0.2955448450068748,0.09843231299953276,151.40245,0.4968786227747874,0.19457142857143392,40.32306805032003,41510 -2024-10-23 08:00:00+00:00,16740,152.372,152.553,152.319,152.415,USD_JPY,H1,95.42703429724376,0.41489447309876937,0.3194147706252537,0.09547970247351567,151.47740000000002,0.5314900999050237,0.1990000000000062,45.954604814980605,58250 -2024-10-23 09:00:00+00:00,14500,152.414,152.76,152.405,152.726,USD_JPY,H1,96.10091743119354,0.45136365759447017,0.345804548019097,0.10555910957537318,151.56755,0.5829261463399356,0.21892857142857736,52.49290219097869,72750 -2024-10-23 10:00:00+00:00,12959,152.725,152.878,152.604,152.825,USD_JPY,H1,97.58108851017133,0.4826900710017412,0.37318165261562586,0.10950841838611536,151.65985,0.6291455588273659,0.23335714285714662,58.250585922366874,85709 -2024-10-23 11:00:00+00:00,14809,152.824,153.08,152.764,153.058,USD_JPY,H1,100.0,0.520319710326504,0.4026092641578015,0.11771044616870252,151.75735,0.6875133893301334,0.2521428571428593,64.3155001628405,100518 -2024-10-23 12:00:00+00:00,20620,153.059,153.19,152.912,153.069,USD_JPY,H1,100.0,0.54474954500742,0.43103732032772524,0.11371222467969477,151.8577,0.7260683670745689,0.268500000000001,70.7112727575928,121138 -2024-10-23 13:00:00+00:00,21188,153.07,153.085,152.84,153.072,USD_JPY,H1,100.0,0.5579210730907107,0.4564140708803224,0.10150700221038833,151.96224999999998,0.743520705465587,0.27807142857142864,77.30706021346855,142326 -2024-10-23 14:00:00+00:00,19374,153.071,153.109,152.924,153.026,USD_JPY,H1,97.20534629404662,0.5582130557987739,0.4767738678640127,0.08143918793476118,152.06035,0.7481864582431152,0.2668571428571442,81.48265279452313,122952 -2024-10-23 15:00:00+00:00,16484,153.025,153.053,152.762,152.82,USD_JPY,H1,84.95522388059655,0.5356473664014061,0.4885485675714914,0.04709879882991469,152.14545,0.7319793263428362,0.2602857142857147,83.20281013120072,106468 -2024-10-23 16:00:00+00:00,13203,152.822,152.938,152.818,152.858,USD_JPY,H1,84.41558441558401,0.5148947907607067,0.4938178122093345,0.02107697855137214,152.23364999999998,0.7043726790809159,0.25792857142857073,85.29488242898171,119671 -2024-10-23 17:00:00+00:00,12282,152.858,152.912,152.766,152.776,USD_JPY,H1,80.23668639053267,0.4862265928568945,0.4922995683388465,-0.006072975481952014,152.31995,0.655777519625643,0.2602142857142858,85.47852396071168,107389 -2024-10-23 18:00:00+00:00,14991,152.78,152.78,152.47,152.662,USD_JPY,H1,69.8316498316496,0.4491306931561212,0.48366579330230147,-0.034535100146180275,152.39955,0.5893233831975369,0.25350000000000045,82.73140153393571,92398 -2024-10-23 19:00:00+00:00,11760,152.664,152.699,152.556,152.591,USD_JPY,H1,64.42769019876667,0.40928483791299186,0.46878960222443955,-0.05950476431144769,152.4713,0.5122712172117058,0.24599999999999916,79.19184935976378,80638 -2024-10-23 20:00:00+00:00,12903,152.59,152.77,152.556,152.764,USD_JPY,H1,65.65188616810079,0.3872029303816191,0.45247226785587547,-0.06526933747425634,152.5359,0.45823596539743133,0.2424285714285698,75.41332022831016,93541 -2024-10-23 21:00:00+00:00,417,152.694,152.71,152.664,152.694,USD_JPY,H1,60.68090787716899,0.35990567598659595,0.4339589494820196,-0.07405327349542362,152.58814999999998,0.4086838019592149,0.22607142857142598,69.55387001345547,93124 -2024-10-23 22:00:00+00:00,3034,152.693,152.836,152.686,152.753,USD_JPY,H1,61.14775725593612,0.33912400173423407,0.4149919599324625,-0.07586795819822845,152.63855,0.3582778214631485,0.22007142857142575,63.96224379508674,96158 -2024-10-23 23:00:00+00:00,6761,152.752,152.805,152.608,152.77,USD_JPY,H1,51.80032733224258,0.32033352758514866,0.39606027346299977,-0.07572674587785111,152.68935,0.292190866756059,0.20878571428571238,57.83677315721182,102919 -2024-10-24 00:00:00+00:00,21912,152.769,152.769,152.517,152.642,USD_JPY,H1,42.685851318945666,0.2917502953875726,0.3751982778479143,-0.08344798246034174,152.71779999999998,0.2542585919159724,0.20721428571428646,53.079654975757386,81007 -2024-10-24 01:00:00+00:00,17625,152.64,152.795,152.608,152.68,USD_JPY,H1,32.102272727275036,0.26906257448763427,0.3539711371758583,-0.08490856268822405,152.7433,0.21964567156408218,0.19799999999999937,49.72816093114775,98632 -2024-10-24 02:00:00+00:00,16303,152.68,152.697,152.343,152.432,USD_JPY,H1,25.36736272235339,0.22843757863171277,0.3288644254670292,-0.10042684683531644,152.75035,0.20621635925970286,0.20342857142857237,48.30763024232449,82329 -2024-10-24 03:00:00+00:00,11752,152.432,152.519,152.354,152.398,USD_JPY,H1,24.546827794563555,0.19129335021318639,0.30135021041626064,-0.11005686020307426,152.75155,0.2039686443524123,0.19771428571428576,47.256952392344324,70577 -2024-10-24 04:00:00+00:00,12039,152.398,152.4,152.107,152.215,USD_JPY,H1,22.245037645449955,0.1454134749540401,0.27016286332381656,-0.12474938836977645,152.74155000000002,0.2251410025669064,0.20542857142857177,46.85514872282618,58538 -2024-10-24 05:00:00+00:00,15416,152.217,152.39,152.202,152.384,USD_JPY,H1,34.6910112359555,0.12129205160340462,0.2403887009797342,-0.11909664937632958,152.72445,0.2389486786671815,0.1980714285714283,47.901215118437065,73954 -2024-10-24 06:00:00+00:00,22128,152.384,152.388,152.05,152.056,USD_JPY,H1,26.60443407234598,0.07484601277764114,0.2072801633393156,-0.13243415056167446,152.686,0.2802235949058623,0.21364285714285813,48.66234348282658,51826 -2024-10-24 07:00:00+00:00,26464,152.057,152.32,152.026,152.13,USD_JPY,H1,31.066822977725423,0.04350685400788734,0.17452550147302995,-0.1310186474651426,152.6396,0.2919690682693433,0.2242142857142844,49.8559016309627,78290 -2024-10-24 08:00:00+00:00,20698,152.132,152.249,151.92,152.01,USD_JPY,H1,30.957943925233394,0.008884927860520975,0.14139738675052818,-0.1325124588900072,152.58665000000002,0.30570113971973567,0.22557142857142765,53.53907659308771,57592 -2024-10-24 09:00:00+00:00,16796,152.009,152.078,151.828,151.99,USD_JPY,H1,31.908488862131293,-0.01993720718780878,0.10913046796286079,-0.12906767515066958,152.53255,0.31098324118753007,0.23321428571428474,57.12293596382295,40796 -2024-10-24 10:00:00+00:00,12365,151.991,151.992,151.821,151.854,USD_JPY,H1,21.982758620689665,-0.05314045023493463,0.0766762843233017,-0.12981673455823634,152.47395,0.32328567696534505,0.2301428571428557,61.66341435553053,28431 -2024-10-24 11:00:00+00:00,15545,151.854,152.076,151.767,152.052,USD_JPY,H1,31.678082191780447,-0.06275392612386099,0.04879024223386917,-0.11154416835773016,152.43554999999998,0.3256215877434065,0.2483571428571411,65.88048666067996,43976 -2024-10-24 12:00:00+00:00,30694,152.056,152.336,151.839,152.052,USD_JPY,H1,29.297105729473955,-0.06957070722060621,0.025118052342974095,-0.0946887595635803,152.39525,0.32042108394427304,0.27314285714285597,68.28093738561044,13282 -2024-10-24 13:00:00+00:00,28987,152.052,152.342,151.945,152.206,USD_JPY,H1,34.590163934425036,-0.06183376127395945,0.007727689619587388,-0.06956145089354684,152.36675,0.30995107845586867,0.2874285714285715,70.91624285161456,42269 -2024-10-24 14:00:00+00:00,28114,152.2,152.286,151.85,151.93,USD_JPY,H1,32.002022244690934,-0.07708448725568928,-0.009234745755467946,-0.06784974150022134,152.33015,0.3164033526405587,0.30057142857142843,72.17483392909709,14155 -2024-10-24 15:00:00+00:00,19448,151.928,151.98,151.784,151.872,USD_JPY,H1,29.77977977977872,-0.09278138667434632,-0.025944073939243622,-0.0668373127351027,152.2942,0.32590935127165493,0.30121428571428666,72.04997270001643,-5293 -2024-10-24 16:00:00+00:00,14053,151.872,151.884,151.662,151.693,USD_JPY,H1,30.844997407982646,-0.11830139178383092,-0.04441553750816109,-0.07388585427566983,152.24065000000002,0.3325735810691083,0.2917857142857128,69.55345269759535,-19346 -2024-10-24 17:00:00+00:00,13006,151.694,151.788,151.555,151.627,USD_JPY,H1,30.341662417133165,-0.14221249103732703,-0.06397492821399428,-0.07823756282333275,152.1873,0.3414839288562649,0.29664285714285654,67.51723805862116,-32352 -2024-10-24 18:00:00+00:00,13024,151.628,151.853,151.617,151.822,USD_JPY,H1,40.040547389761116,-0.14377004753464462,-0.07993395207812436,-0.06383609545652026,152.14075,0.3232811835956457,0.2925714285714288,63.56874679288942,-19328 -2024-10-24 19:00:00+00:00,12898,151.824,151.902,151.822,151.844,USD_JPY,H1,35.213581599123,-0.14159696447657666,-0.09226655455781482,-0.049330409918761836,152.09445,0.293341452708989,0.2848571428571428,59.19623240917643,-6430 -2024-10-24 20:00:00+00:00,8107,151.844,151.868,151.811,151.826,USD_JPY,H1,42.414248021107106,-0.13971666334018096,-0.10175657631428806,-0.0379600870258929,152.05365,0.26890582871970825,0.26478571428571385,53.96536651540585,-14537 -2024-10-24 21:00:00+00:00,641,151.853,151.866,151.811,151.828,USD_JPY,H1,39.542936288088406,-0.13649173608700949,-0.10870360826883235,-0.027788127818177133,152.01105,0.22897999793907445,0.24771428571428697,48.61769812504212,-13896 -2024-10-24 22:00:00+00:00,1568,151.836,151.848,151.683,151.696,USD_JPY,H1,39.21703296703271,-0.14293953683065297,-0.11555079398119648,-0.027388742849456485,151.97425,0.2165735258236234,0.23600000000000218,43.55204205492134,-15464 -2024-10-24 23:00:00+00:00,8372,151.695,151.82,151.584,151.79,USD_JPY,H1,43.464052287580905,-0.13886371648075624,-0.12021337848110844,-0.018650337999647798,151.94385,0.19562027524673237,0.23500000000000146,39.34657844138296,-7092 -2024-10-25 00:00:00+00:00,16840,151.791,152.108,151.752,152.008,USD_JPY,H1,54.776674937965254,-0.11669760405300167,-0.1195102235954871,0.002812619542485434,151.9335,0.18574586482102382,0.24821428571428733,33.879460783467195,9748 -2024-10-25 01:00:00+00:00,12146,152.008,152.068,151.797,151.85,USD_JPY,H1,43.57506361323162,-0.11060509313037414,-0.11772919750246452,0.0071241043720903785,151.9068,0.15308979127553105,0.24550000000000288,29.264850648105156,-2398 -2024-10-25 02:00:00+00:00,10311,151.85,151.892,151.74,151.835,USD_JPY,H1,43.163201008192,-0.10576788265674963,-0.11533693453332156,0.009569051876571921,151.89575,0.1496919204060965,0.22085714285714378,27.917143748779786,-12709 -2024-10-25 03:00:00+00:00,8320,151.836,151.907,151.82,151.855,USD_JPY,H1,37.92154163799018,-0.09917727179953317,-0.11210500198656388,0.012927730187030709,151.882,0.13931259807426713,0.19871428571428648,26.75068272548115,-4389 -2024-10-25 04:00:00+00:00,10809,151.854,151.874,151.612,151.705,USD_JPY,H1,41.52223059532783,-0.10484927444076675,-0.11065385647740446,0.005804582036637709,151.86675,0.14124367701938892,0.18628571428571458,26.060298950101583,-15198 -2024-10-25 05:00:00+00:00,15225,151.704,151.751,151.45,151.734,USD_JPY,H1,44.68412942989184,-0.10578489731418017,-0.10968006464475961,0.0038951673305794438,151.85395,0.14108619046538207,0.19378571428571587,25.334949443240124,27 -2024-10-25 06:00:00+00:00,15550,151.73,152.006,151.678,151.864,USD_JPY,H1,56.84547638110476,-0.09494203891230768,-0.10673245949826923,0.011790420585961553,151.85444999999999,0.1411040955167997,0.2013571428571461,22.821393703877963,15577 -2024-10-25 07:00:00+00:00,19072,151.865,152.044,151.823,151.957,USD_JPY,H1,62.93103448275847,-0.07794615795455684,-0.10097519918952676,0.02302904123496992,151.8497,0.13559541205956624,0.2005000000000032,19.28197724228595,34649 -2024-10-25 08:00:00+00:00,15565,151.958,152.06,151.922,151.964,USD_JPY,H1,56.525735294117666,-0.06318361694258101,-0.09341688274013762,0.030233265797556613,151.8453,0.12999761124531714,0.19350000000000225,17.30333530784051,50214 -2024-10-25 09:00:00+00:00,11005,151.964,152.098,151.91,152.002,USD_JPY,H1,57.15579710145007,-0.047866143307089715,-0.08430673485352805,0.03644059154643833,151.83509999999998,0.10599349524725198,0.2012142857142903,15.835865728915582,61219 -2024-10-25 10:00:00+00:00,10148,151.998,152.027,151.864,151.897,USD_JPY,H1,52.98068849706121,-0.04369585891112138,-0.07618455966504671,0.032488700753925334,151.83345,0.10468724088037855,0.2087857142857185,15.242762473127303,51071 -2024-10-25 11:00:00+00:00,13349,151.898,151.94,151.7,151.796,USD_JPY,H1,48.7596899224802,-0.04798756362754375,-0.07054516045754612,0.02255759683000237,151.82965,0.10459358681648695,0.22200000000000436,15.525690592573568,37722 -2024-10-25 12:00:00+00:00,19648,151.796,152.096,151.796,151.918,USD_JPY,H1,58.67187500000032,-0.04107094978851933,-0.06465031832374077,0.02357936853522144,151.8409,0.1011663038503522,0.23164285714286084,14.595620725848155,57370 -2024-10-25 13:00:00+00:00,20500,151.92,152.166,151.838,152.018,USD_JPY,H1,58.86469673405942,-0.02720669735293768,-0.057161594129580155,0.029954896776642474,151.86045000000001,0.09526278051040973,0.23821428571429035,14.449209598708597,77870 -2024-10-25 14:00:00+00:00,23603,152.018,152.116,151.909,152.03,USD_JPY,H1,51.018518518518135,-0.015077078523319187,-0.04874469100832796,0.033667612485008776,151.87085,0.10196246720739019,0.22757142857143517,14.682151655055675,101473 -2024-10-25 15:00:00+00:00,16328,152.032,152.144,151.924,152.084,USD_JPY,H1,61.9877049180336,-0.0010943050411640343,-0.039214613814895175,0.03812030877373114,151.88285000000002,0.11224094141430972,0.22392857142857686,15.103716789837415,117801 -2024-10-25 16:00:00+00:00,11039,152.082,152.23,152.053,152.197,USD_JPY,H1,66.85288640595904,0.018887575094936437,-0.027594176032928852,0.04648175112786529,151.9014,0.13137707876318316,0.22571428571429156,13.370837676006007,128840 -2024-10-25 17:00:00+00:00,10076,152.196,152.298,152.101,152.165,USD_JPY,H1,64.2725598526703,0.03177494471611908,-0.015720351883119266,0.047495296599238346,151.91825,0.1425995035171294,0.23357142857143337,11.994105048861387,118764 -2024-10-25 18:00:00+00:00,10901,152.164,152.282,152.096,152.247,USD_JPY,H1,76.62082514734632,0.04805108963626026,-0.0029660635792433613,0.05101715321550362,151.94580000000002,0.15041332521885314,0.2281428571428624,11.600136882289453,129665 -2024-10-25 19:00:00+00:00,9559,152.248,152.382,152.242,152.254,USD_JPY,H1,76.10441767068083,0.06081386882280526,0.009789922901166363,0.0510239459216389,151.969,0.1605595478426683,0.2166428571428623,12.826315788155634,139224 -2024-10-25 20:00:00+00:00,14291,152.254,152.358,152.182,152.304,USD_JPY,H1,74.01746724890677,0.07410876569178981,0.022653691459291053,0.05145507423249876,151.98380000000003,0.17713081690719695,0.2057857142857204,14.495017456857369,153515 -2024-10-27 21:00:00+00:00,1190,153.207,153.225,152.757,152.946,USD_JPY,H1,83.75426621160285,0.13489412630775632,0.04510177842898411,0.08979234787877222,152.0386,0.27568066954628134,0.25578571428571956,19.235927991689163,154705 -2024-10-27 22:00:00+00:00,15734,152.941,153.238,152.676,152.957,USD_JPY,H1,83.79850238257184,0.18185822221704484,0.07245306718659625,0.10940515503044859,152.0947,0.3389657799581806,0.28607142857143436,23.175864291799005,170439 -2024-10-27 23:00:00+00:00,13883,152.956,153.042,152.77,152.96,USD_JPY,H1,83.40306834030551,0.2168203119212535,0.1013265161335277,0.11549379578772581,152.14995,0.38479625160067815,0.29207142857143253,27.652150080216725,184322 -2024-10-28 00:00:00+00:00,25406,152.959,153.484,152.77,153.468,USD_JPY,H1,92.75993467610188,0.2822655923229149,0.13751433137140515,0.14475126095150978,152.23809999999997,0.47000346021549444,0.33142857142857657,32.748192724041715,209728 -2024-10-28 01:00:00+00:00,19189,153.469,153.882,153.443,153.852,USD_JPY,H1,98.49056603773536,0.3609561613860137,0.18220269737432687,0.17875346401168685,152.344,0.5768983308986988,0.3456428571428611,38.32511803719819,228917 -2024-10-28 02:00:00+00:00,13770,153.854,153.862,153.532,153.576,USD_JPY,H1,86.45558487247067,0.39647776208920504,0.22505771031730254,0.1714200517719025,152.4296,0.6267837199244243,0.3477857142857163,44.961341016810216,215147 -2024-10-28 03:00:00+00:00,10705,153.578,153.7,153.494,153.634,USD_JPY,H1,86.20071684587737,0.424416591562192,0.26492948656628046,0.15948710499591157,152.51345,0.6708561281827615,0.3390714285714296,50.49923206755109,225852 -2024-10-28 04:00:00+00:00,11508,153.634,153.657,153.379,153.647,USD_JPY,H1,86.20689655172339,0.4425063685959003,0.3004448629722044,0.1420615056236959,152.5976,0.7030881804278774,0.344142857142858,55.42023623430725,237360 -2024-10-28 05:00:00+00:00,10286,153.646,153.748,153.496,153.539,USD_JPY,H1,81.8102317446428,0.4430210785955353,0.3289601060968706,0.1140609724986647,152.67445,0.7183937840288069,0.34642857142857103,60.83237695558247,227074 -2024-10-28 06:00:00+00:00,13419,153.54,153.564,153.234,153.414,USD_JPY,H1,76.4680295780767,0.4284041581838949,0.34884891651427546,0.07955524166961941,152.75029999999998,0.7120446541177751,0.3573571428571419,64.79300841458574,213655 -2024-10-28 07:00:00+00:00,15304,153.415,153.532,153.162,153.336,USD_JPY,H1,74.96801705756975,0.4058478341214027,0.3602487000357009,0.045599134085701765,152.82729999999998,0.6862146434070665,0.36971428571428483,68.0552676157278,198351 -2024-10-28 08:00:00+00:00,19921,153.338,153.432,153.167,153.18,USD_JPY,H1,69.28482844150474,0.3711060094670984,0.36242016192198045,0.00868584754511792,152.8904,0.6555374974100523,0.3753571428571405,69.89317020356093,178430 -2024-10-28 09:00:00+00:00,16795,153.18,153.191,152.904,152.931,USD_JPY,H1,62.720781661030074,0.31979425500043135,0.35389498053767066,-0.03410072553723931,152.93604999999997,0.622547692094176,0.3858571428571399,68.50192888212948,161635 -2024-10-28 10:00:00+00:00,17330,152.931,152.932,152.458,152.537,USD_JPY,H1,53.87687188019975,0.24451815956356882,0.33201961634285027,-0.08750145677928145,152.9614,0.5933494931632634,0.40714285714285225,67.57081218646594,144305 -2024-10-28 11:00:00+00:00,13807,152.536,152.736,152.467,152.732,USD_JPY,H1,45.81704456606725,0.1983101855367977,0.3052777301816398,-0.1069675446448421,152.99380000000002,0.5596524861444792,0.3605714285714226,63.68913838867989,158112 -2024-10-28 12:00:00+00:00,17930,152.731,152.732,152.41,152.624,USD_JPY,H1,43.72881355932207,0.15123202713365913,0.2744685895720437,-0.12323656243838454,153.01515,0.5352693640493981,0.3434285714285648,60.317763592844734,140182 -2024-10-28 13:00:00+00:00,17724,152.624,152.768,152.58,152.758,USD_JPY,H1,46.37473079684139,0.12331344687893875,0.2442375610334227,-0.12092411415448395,153.0448,0.5010274285856737,0.3374285714285646,56.48747819909589,157906 -2024-10-28 14:00:00+00:00,14170,152.76,153.068,152.745,152.952,USD_JPY,H1,39.56310679611672,0.11551041737021706,0.21849213230078157,-0.10298171493056452,153.08004999999997,0.4654831643577582,0.3094999999999938,52.417338962749604,172076 -2024-10-28 15:00:00+00:00,15746,152.955,153.238,152.839,153.213,USD_JPY,H1,36.39846743294992,0.12890108750019635,0.20057392334066454,-0.07167283584046819,153.128,0.42340412446786596,0.3066428571428515,48.21339384843348,187822 -2024-10-28 16:00:00+00:00,12020,153.214,153.284,153.134,153.262,USD_JPY,H1,42.60131950989644,0.14183222691826813,0.18882558405618527,-0.046993357137917136,153.1759,0.3769155845539651,0.2937857142857102,43.69653522224562,199842 -2024-10-28 17:00:00+00:00,10138,153.257,153.308,153.202,153.28,USD_JPY,H1,41.498559077810135,0.15178303726668219,0.18141707469828466,-0.029634037431602478,153.1926,0.3735777802274806,0.2866428571428535,39.23556416526624,209980 -2024-10-28 18:00:00+00:00,8008,153.28,153.379,153.234,153.262,USD_JPY,H1,40.776233828462075,0.15641363754235726,0.17641638726709918,-0.02000274972474192,153.20785,0.369658772220711,0.27714285714285075,34.8025779508805,201972 -2024-10-28 19:00:00+00:00,8437,153.261,153.268,153.2,153.231,USD_JPY,H1,42.338308457711584,0.15578617465243383,0.17229034474416613,-0.0165041700917323,153.2214,0.3650334375250172,0.2639999999999958,30.88091025473944,193535 -2024-10-28 20:00:00+00:00,6212,153.232,153.302,153.204,153.298,USD_JPY,H1,47.028688524590535,0.15886396099620015,0.16960506799457295,-0.010741106998372801,153.21290000000002,0.3609453814721144,0.24742857142856728,27.324337282501638,199747 -2024-10-28 21:00:00+00:00,269,153.291,153.312,153.248,153.258,USD_JPY,H1,47.962382445141,0.15627403336242196,0.16693886106814276,-0.010664827705720803,153.1832,0.328576931608012,0.22557142857142562,23.826673096343963,199478 -2024-10-28 22:00:00+00:00,2332,153.264,153.36,153.25,153.305,USD_JPY,H1,53.46260387811633,0.15621327486456948,0.16479374382742812,-0.008580468962858634,153.16965,0.31690647381018106,0.214499999999999,20.06623193054125,201810 -2024-10-28 23:00:00+00:00,4901,153.306,153.326,153.138,153.139,USD_JPY,H1,56.03948896631816,0.14114329855019037,0.16006365477198056,-0.018920356221790197,153.14489999999998,0.29746576978769024,0.20742857142856913,17.838614540975573,196909 -2024-10-29 00:00:00+00:00,14831,153.14,153.248,152.898,153.02,USD_JPY,H1,66.68970283344862,0.11823498891865825,0.15169792160131612,-0.033462932682657875,153.11354999999998,0.27386809634442266,0.19857142857142662,18.24604350067497,182078 -2024-10-29 01:00:00+00:00,16561,153.021,153.137,152.866,152.94,USD_JPY,H1,57.80780780780761,0.09255770941908281,0.13986987916486945,-0.04731216974578664,153.0836,0.2571342880480803,0.19871428571428446,18.91336115007636,165517 -2024-10-29 02:00:00+00:00,13885,152.942,153.058,152.852,152.997,USD_JPY,H1,64.55893832943048,0.07593240258131573,0.12708238384815873,-0.051149981266843,153.06275,0.24558027412094618,0.19042857142856917,19.973045840640992,179402 -2024-10-29 03:00:00+00:00,11689,152.998,153.166,152.948,153.04,USD_JPY,H1,61.848739495797595,0.06547175018613416,0.11476025711575383,-0.04928850692961967,153.04795000000001,0.2370159832172638,0.1925714285714264,21.19683278166283,191091 -2024-10-29 04:00:00+00:00,10934,153.042,153.05,152.873,152.928,USD_JPY,H1,48.916967509025234,0.047595492609445955,0.10132730421449225,-0.053731811605046295,153.03535,0.23632388008921212,0.1821428571428559,19.70826496709947,180157 -2024-10-29 05:00:00+00:00,12790,152.928,152.958,152.756,152.833,USD_JPY,H1,29.83014861995794,0.025469131344408424,0.0861556696404755,-0.06068653829606707,153.03045,0.23959471808032298,0.16807142857142715,19.19917070831886,167367 -2024-10-29 06:00:00+00:00,12082,152.836,153.074,152.836,153.001,USD_JPY,H1,37.70028275212092,0.021245126007471526,0.07317356091387471,-0.051928434906403184,153.05365,0.20992687319619616,0.17457142857142774,18.407118730663804,179449 -2024-10-29 07:00:00+00:00,15589,153.0,153.28,153.0,153.166,USD_JPY,H1,45.2814569536422,0.030856003580993274,0.06471004944729843,-0.03385404586630515,153.07535000000001,0.19695879207130146,0.18699999999999964,16.547156127860937,195038 -2024-10-29 08:00:00+00:00,22261,153.166,153.452,153.158,153.396,USD_JPY,H1,54.71830985915447,0.05638183639695171,0.06304440683722909,-0.006662570440277377,153.11395000000002,0.17864444983954322,0.19764285714285887,15.563736843686696,217299 -2024-10-29 09:00:00+00:00,14521,153.398,153.443,153.328,153.412,USD_JPY,H1,56.441281138790444,0.07701453348758491,0.06583843216730026,0.011176101320284654,153.14665,0.1696917561053498,0.20100000000000154,14.183911568924838,231820 -2024-10-29 10:00:00+00:00,11610,153.412,153.49,153.318,153.344,USD_JPY,H1,51.6358463726882,0.08687759208004309,0.07004626414984882,0.016831327930194262,153.16625000000002,0.16866125342219493,0.20628571428571668,13.961348605269952,220210 -2024-10-29 11:00:00+00:00,13438,153.343,153.677,153.323,153.675,USD_JPY,H1,62.286387743075835,0.12001956001341796,0.08004092332256266,0.0399786366908553,153.18935,0.20345108680413118,0.2269999999999998,14.891489194252118,233648 -2024-10-29 12:00:00+00:00,15513,153.678,153.868,153.656,153.766,USD_JPY,H1,63.23951751866688,0.15187700429154916,0.09440813951635997,0.057468864775189185,153.21454999999997,0.2407227002300405,0.23428571428571235,16.549933666568297,249161 -2024-10-29 13:00:00+00:00,16745,153.765,153.814,153.627,153.666,USD_JPY,H1,65.7313432835816,0.16712854035799296,0.10895221968468657,0.058176320673306386,153.23385000000002,0.2608765134085175,0.23421428571428343,18.43058233945181,232416 -2024-10-29 14:00:00+00:00,34298,153.666,153.668,152.974,153.384,USD_JPY,H1,59.902067464634705,0.1546774242806066,0.11809726060387059,0.03658016367673601,153.23995,0.2629871869718255,0.2587857142857136,16.934514804886618,198118 -2024-10-29 15:00:00+00:00,19565,153.387,153.756,153.374,153.494,USD_JPY,H1,64.82869379014977,0.15193449944189297,0.12486470837147506,0.027069791070417903,153.2531,0.2690221864961491,0.26671428571428635,16.162122315580614,217683 -2024-10-29 16:00:00+00:00,14762,153.496,153.584,153.354,153.549,USD_JPY,H1,64.7909967845656,0.15244150135521295,0.13038006696822266,0.022061434386990292,153.26565,0.2769644238712822,0.2684285714285721,15.04662884235877,232445 -2024-10-29 17:00:00+00:00,14058,153.55,153.6,153.31,153.414,USD_JPY,H1,59.550561797752415,0.14033226922057906,0.13237050741869394,0.007961761801885126,153.27345,0.2789273579943969,0.27357142857142946,13.090087796919892,218387 -2024-10-29 18:00:00+00:00,9639,153.412,153.556,153.38,153.423,USD_JPY,H1,63.34231805929877,0.129963699665268,0.13188914586800876,-0.001925446202740766,153.27935,0.2808710651674041,0.2735000000000006,13.419754086744472,228026 -2024-10-29 19:00:00+00:00,8773,153.422,153.51,153.376,153.424,USD_JPY,H1,66.78023850085125,0.12043888078673604,0.12959909285175422,-0.009160212065018186,153.29360000000003,0.2806052480769025,0.26864285714285685,12.180140237847969,236799 -2024-10-29 20:00:00+00:00,5245,153.426,153.45,153.34,153.366,USD_JPY,H1,61.05390672319788,0.10697711236863938,0.12507469675513128,-0.018097584386491894,153.3109,0.2734233078000738,0.25928571428571195,10.938873116306784,231554 -2024-10-29 21:00:00+00:00,408,153.367,153.424,153.358,153.374,USD_JPY,H1,56.96117804551508,0.09584920705682975,0.11922959881547097,-0.02338039175864122,153.3326,0.2592948737714771,0.24399999999999775,11.450804429505798,231962 -2024-10-29 22:00:00+00:00,2884,153.374,153.392,153.204,153.258,USD_JPY,H1,45.00000000000102,0.0767849028147225,0.11074065961532129,-0.033955756800598785,153.34565,0.24783000856058637,0.23642857142856752,13.45928546356827,229078 -2024-10-29 23:00:00+00:00,6206,153.254,153.357,153.162,153.268,USD_JPY,H1,44.75982532751081,0.06177116128242233,0.1009467599487415,-0.03917559866631917,153.35705,0.23808257631158808,0.2421428571428521,15.394423789659243,235284 -2024-10-30 00:00:00+00:00,14169,153.27,153.308,153.072,153.252,USD_JPY,H1,46.52042360060574,0.04802796023821543,0.0903630000066363,-0.04233503976842087,153.37325,0.2174839074168489,0.24671428571428017,17.853947719414823,221115 -2024-10-30 01:00:00+00:00,11704,153.252,153.316,153.11,153.218,USD_JPY,H1,27.70731707316979,0.03400091713820075,0.0790905834329492,-0.04508966629474845,153.39249999999998,0.1811523057542361,0.23614285714285188,20.930732573785463,209411 -2024-10-30 02:00:00+00:00,11242,153.217,153.444,153.202,153.313,USD_JPY,H1,27.988338192420215,0.030201941294734524,0.06931285500530626,-0.03911091371057174,153.40810000000002,0.15756165037718275,0.2382857142857091,24.088565774072475,220653 -2024-10-30 03:00:00+00:00,9432,153.312,153.4,153.286,153.34,USD_JPY,H1,32.94979079498023,0.029035200206067202,0.06125732404545845,-0.03222212383939125,153.4168,0.1480041250709586,0.23307142857142488,27.164546062404806,230085 -2024-10-30 04:00:00+00:00,7978,153.34,153.374,153.193,153.359,USD_JPY,H1,48.19624819624994,0.02930587086072478,0.05486703340851172,-0.02556116254778694,153.41495,0.14850818685962036,0.19642857142856535,30.713498702397146,238063 -2024-10-30 05:00:00+00:00,8529,153.36,153.37,153.192,153.23,USD_JPY,H1,31.46067415730387,0.01889336643503725,0.04767230001381683,-0.02877893357877958,153.40585000000002,0.15416678421043595,0.18185714285713622,35.74136718834348,229534 -2024-10-30 06:00:00+00:00,11483,153.23,153.468,153.196,153.276,USD_JPY,H1,30.58321479374304,0.014189628022506895,0.04097576561555485,-0.026786137593047953,153.40245,0.15633717773854577,0.18485714285713634,38.603915450891506,241017 -2024-10-30 07:00:00+00:00,12753,153.275,153.382,153.26,153.331,USD_JPY,H1,43.33868378812232,0.014730122109256172,0.03572663691429511,-0.02099651480503894,153.38525,0.14313956195213615,0.1728571428571379,41.21607601759725,253770 -2024-10-30 08:00:00+00:00,19487,153.332,153.364,152.804,152.856,USD_JPY,H1,23.96694214875997,-0.022906016393790196,0.02400010625267805,-0.04690612264646825,153.33975,0.15944306849309609,0.20028571428570835,45.242780192965085,234283 -2024-10-30 09:00:00+00:00,21320,152.857,153.196,152.838,153.058,USD_JPY,H1,35.81395348837147,-0.03601802215666794,0.011996480570808852,-0.04801450272747679,153.30935,0.1517408715225846,0.2162857142857096,48.66128275165762,255603 -2024-10-30 10:00:00+00:00,14310,153.058,153.058,152.834,152.898,USD_JPY,H1,33.1896551724131,-0.05864403211722902,-0.002131621966798721,-0.05651241015043029,153.28505,0.17611404046321763,0.22442857142856706,52.60574969560719,241293 -2024-10-30 11:00:00+00:00,13540,152.898,153.049,152.782,153.036,USD_JPY,H1,38.896189224704685,-0.06469410793116026,-0.014644119159671029,-0.05004998877148923,153.26215000000002,0.17728724086789144,0.23878571428570947,56.29630884609666,254833 -2024-10-30 12:00:00+00:00,29306,153.036,153.499,152.991,153.358,USD_JPY,H1,52.8935185185183,-0.043010331341719166,-0.020317361596080656,-0.02269296974563851,153.25259999999997,0.1657939113408224,0.26164285714285185,53.90846514132103,284139 -2024-10-30 13:00:00+00:00,25025,153.36,153.434,152.868,152.942,USD_JPY,H1,42.36176194939112,-0.05871665644866653,-0.02799722056659783,-0.030719435882068696,153.22899999999998,0.17495082011438187,0.2881428571428525,51.86622151903365,259114 -2024-10-30 14:00:00+00:00,25501,152.943,153.331,152.907,153.262,USD_JPY,H1,50.20508613617701,-0.044825980604258575,-0.03136297257412998,-0.013463008030128593,153.22095,0.16916279137267431,0.3015714285714231,49.086055498449504,284615 -2024-10-30 15:00:00+00:00,17921,153.262,153.388,153.154,153.16,USD_JPY,H1,48.8427773343976,-0.04156888721502128,-0.03340415550230824,-0.008164731712713036,153.20774999999998,0.16265975947784433,0.3035714285714245,45.16057666528449,266694 -2024-10-30 16:00:00+00:00,14206,153.158,153.221,153.004,153.084,USD_JPY,H1,45.39605950944948,-0.04460599197028614,-0.03564452279590382,-0.00896146917438232,153.19365,0.1604271518090764,0.3017857142857118,41.09375098632073,252488 -2024-10-30 17:00:00+00:00,10595,153.084,153.262,153.084,153.232,USD_JPY,H1,47.92944785276066,-0.03467089179883942,-0.035449796596490946,0.0007789047976515251,153.18655,0.1550784096604733,0.30635714285713994,36.11835854024965,263083 -2024-10-30 18:00:00+00:00,7594,153.234,153.266,153.168,153.244,USD_JPY,H1,47.78931180315246,-0.025534606572790608,-0.03346675859175088,0.007932152018960269,153.18585,0.15477021162348387,0.3004285714285686,32.21370752512501,270677 -2024-10-30 19:00:00+00:00,10571,153.245,153.433,153.239,153.302,USD_JPY,H1,51.42292490118584,-0.013458775052981764,-0.029465161883997056,0.016006386831015292,153.18755,0.15590262644451217,0.3015714285714251,27.228913166485096,281248 -2024-10-30 20:00:00+00:00,7176,153.301,153.432,153.269,153.41,USD_JPY,H1,52.58487654320965,0.004771107477438363,-0.022617908011709972,0.027389015489148336,153.19545,0.16317393846895567,0.2937857142857102,23.975254257628784,288424 -2024-10-30 21:00:00+00:00,728,153.384,153.388,153.268,153.336,USD_JPY,H1,50.09574875526664,0.013096273477259501,-0.015475071713916077,0.02857134519117558,153.20135,0.16613858351486147,0.2936428571428524,21.166681723499128,287696 -2024-10-30 22:00:00+00:00,3136,153.334,153.342,153.244,153.302,USD_JPY,H1,60.27649769585255,0.016757343437490135,-0.009028588683634835,0.02578593212112497,153.2008,0.165767306743384,0.2606428571428531,19.906798146542304,284560 -2024-10-30 23:00:00+00:00,3785,153.306,153.362,153.205,153.24,USD_JPY,H1,54.48275862069012,0.014488867270301853,-0.004325097492847497,0.01881396476314935,153.19580000000002,0.1628297786863643,0.24628571428570872,18.058537937469932,280775 -2024-10-31 00:00:00+00:00,12471,153.24,153.584,153.161,153.528,USD_JPY,H1,64.5968489341985,0.03552081480574998,0.0036440849668719984,0.03187672983887798,153.20424999999997,0.17562695958288885,0.26049999999999535,17.152246969604533,293246 -2024-10-31 01:00:00+00:00,10287,153.528,153.559,153.394,153.495,USD_JPY,H1,61.17876278616699,0.04896156213629865,0.012707580400757331,0.03625398173554132,153.2175,0.1872815217955045,0.2532142857142808,16.4010690126477,282959 -2024-10-31 02:00:00+00:00,11140,153.494,153.628,153.178,153.408,USD_JPY,H1,51.37513751375094,0.05199392472135855,0.020564849264877574,0.03142907545648098,153.2241,0.1917248301898216,0.24907142857142414,16.75857667352619,271819 -2024-10-31 03:00:00+00:00,12806,153.407,153.414,152.948,153.052,USD_JPY,H1,53.12855517633641,0.0253783236159677,0.0215275441350956,0.003850779480872101,153.21015,0.19367750592353802,0.24192857142856536,17.359514861995258,259013 -2024-10-31 04:00:00+00:00,9614,153.05,153.083,152.824,152.92,USD_JPY,H1,39.10828025477641,-0.006293481507810839,0.015963339006514313,-0.022256820514325152,153.21335,0.18796255922175029,0.23014285714285165,18.90553832269324,249399 -2024-10-31 05:00:00+00:00,8823,152.92,153.087,152.832,152.842,USD_JPY,H1,39.715394566623644,-0.03725807547650106,0.005319056109911238,-0.0425771315864123,153.20255,0.20296524847919495,0.23164285714285068,20.586357588279924,240576 -2024-10-31 06:00:00+00:00,22445,152.842,152.968,152.056,152.176,USD_JPY,H1,28.745318352059243,-0.1142216966715921,-0.018589094446389433,-0.09563260222520267,153.16645,0.30067406288230647,0.2812857142857053,23.506639862295582,218131 -2024-10-31 07:00:00+00:00,29857,152.178,152.585,152.053,152.25,USD_JPY,H1,26.18816682832184,-0.1673160244264693,-0.04833448044240541,-0.11898154398406391,153.12714999999997,0.3634387336852106,0.30657142857142056,27.184614522003553,247988 -2024-10-31 08:00:00+00:00,23586,152.251,152.444,151.922,152.401,USD_JPY,H1,30.849613811903865,-0.1949618250956746,-0.07765994937305926,-0.11730187572261536,153.07930000000002,0.3932239351090121,0.3368571428571353,31.57845794115703,271574 -2024-10-31 09:00:00+00:00,16693,152.402,152.574,152.304,152.558,USD_JPY,H1,33.826086956521635,-0.2018756367299943,-0.10250308684444627,-0.09937254988554804,153.0601,0.40932587710636664,0.3422857142857083,35.38169940340021,288267 -2024-10-31 10:00:00+00:00,14858,152.558,152.567,152.249,152.468,USD_JPY,H1,29.360210341805114,-0.21217135083972494,-0.124436739643502,-0.08773461119622293,153.0204,0.4268429268421076,0.353357142857139,39.70848732580021,273409 -2024-10-31 11:00:00+00:00,13580,152.467,152.85,152.467,152.718,USD_JPY,H1,37.42880390561383,-0.19787686644320956,-0.1391247650034435,-0.05875210143976606,152.9983,0.4306599708713176,0.3721428571428516,42.86100327472679,286989 -2024-10-31 12:00:00+00:00,29232,152.72,152.986,152.561,152.693,USD_JPY,H1,37.56635361372006,-0.18641677905057463,-0.14858316781286973,-0.0378336112377049,152.97875,0.4354134000371356,0.3954999999999923,42.26902944695269,257757 -2024-10-31 13:00:00+00:00,28433,152.694,152.995,152.56,152.968,USD_JPY,H1,44.891059353868805,-0.1533763484261499,-0.14954180393552577,-0.00383454449062412,152.96554999999998,0.4313142064914472,0.4153571428571366,42.25989743854272,286190 -2024-10-31 14:00:00+00:00,32022,152.968,153.05,152.47,152.587,USD_JPY,H1,32.92196007259503,-0.15613525493489533,-0.15086049413539968,-0.005274760799495654,152.9327,0.43400158862820887,0.4265714285714231,42.58756459386723,254168 -2024-10-31 15:00:00+00:00,30484,152.586,152.711,152.08,152.358,USD_JPY,H1,30.735343951202736,-0.1747852784966426,-0.15564545100764826,-0.019139827488994343,152.8855,0.44296435639561377,0.45985714285713797,42.98169095935351,223684 -2024-10-31 16:00:00+00:00,21144,152.358,152.512,152.23,152.444,USD_JPY,H1,33.661016949152184,-0.18054486643251266,-0.16062533409262114,-0.01991953233989152,152.8372,0.43536404607619406,0.4478571428571395,46.13584576536131,244828 -2024-10-31 17:00:00+00:00,12279,152.444,152.49,152.158,152.176,USD_JPY,H1,34.69601677148805,-0.20437879012663984,-0.1693760252994249,-0.035002764827214955,152.7792,0.4426237085296787,0.438285714285714,48.342003731584825,232549 -2024-10-31 18:00:00+00:00,17158,152.176,152.178,151.833,152.05,USD_JPY,H1,34.76890756302514,-0.23077427119608274,-0.18165567447875647,-0.04911859671732627,152.71660000000003,0.4532012913820307,0.444428571428572,50.09862261523276,215391 -2024-10-31 19:00:00+00:00,19452,152.05,152.148,151.911,151.936,USD_JPY,H1,34.3360995850618,-0.2579186022767601,-0.1969082600383572,-0.061010342238402904,152.6514,0.4675132871567493,0.44314285714285767,51.622105008280144,195939 -2024-10-31 20:00:00+00:00,14715,151.938,152.098,151.913,152.042,USD_JPY,H1,47.12692967409967,-0.26779044455048506,-0.2110846969407828,-0.05670574760970226,152.57710000000003,0.43801801210809227,0.391214285714288,49.62163391515036,210654 -2024-10-31 21:00:00+00:00,305,152.028,152.066,152.006,152.066,USD_JPY,H1,45.9684487291848,-0.2705585210378558,-0.22297946176019742,-0.0475790592776584,152.50565,0.394829513487101,0.3575000000000017,47.55644166463379,210959 -2024-10-31 22:00:00+00:00,2458,152.066,152.144,152.022,152.065,USD_JPY,H1,42.120075046903615,-0.26972372602327255,-0.23232831461281245,-0.0373954114104601,152.4385,0.34425136162910264,0.32892857142857473,44.24382666781768,208501 -2024-10-31 23:00:00+00:00,11597,152.066,152.068,151.787,151.982,USD_JPY,H1,36.005830903789615,-0.27261699231073067,-0.24038605015239609,-0.03223094215833458,152.385,0.3265800457761931,0.32971428571428874,42.41205367796591,196904 -2024-11-01 00:00:00+00:00,18956,151.981,152.169,151.876,152.034,USD_JPY,H1,39.25742574257377,-0.26762890188282995,-0.24583462049848287,-0.02179428138434708,152.34070000000003,0.3098524436331172,0.32792857142857407,39.688858604057444,215860 -2024-11-01 01:00:00+00:00,17325,152.036,152.292,151.92,152.118,USD_JPY,H1,33.8187702265365,-0.2539700971101695,-0.24746171582082022,-0.006508381289349274,152.30450000000002,0.28984996115790745,0.3271428571428621,39.56502289500564,233185 -2024-11-01 02:00:00+00:00,13334,152.116,152.357,152.114,152.3,USD_JPY,H1,40.22874191944274,-0.22585598970010778,-0.24314057059667774,0.01728458089656995,152.3107,0.2882785750369895,0.31414285714286294,40.654331913992586,246519 -2024-11-01 03:00:00+00:00,10934,152.3,152.429,152.246,152.418,USD_JPY,H1,35.16720604099255,-0.1918423045246982,-0.23288091738228184,0.041038612857583645,152.3191,0.288863817821523,0.29614285714286226,41.35273978903583,257453 -2024-11-01 04:00:00+00:00,8810,152.419,152.542,152.419,152.485,USD_JPY,H1,46.68831168831241,-0.15766243944966618,-0.2178372217957587,0.060174782346092526,152.3233,0.29072198690069334,0.26357142857143245,39.753982802429974,266263 -2024-11-01 05:00:00+00:00,12795,152.486,152.652,152.409,152.54,USD_JPY,H1,56.661786237188636,-0.12469915553674582,-0.19920960854395614,0.07451045300721032,152.3224,0.28998410116874174,0.23585714285714637,36.52024848604135,279058 -2024-11-01 06:00:00+00:00,12704,152.541,152.57,152.336,152.398,USD_JPY,H1,48.382559774965074,-0.10877978317719794,-0.1811236434706045,0.07234386029340656,152.3189,0.28855317850506035,0.2324285714285728,33.57321709030946,266354 -2024-11-01 07:00:00+00:00,16840,152.398,152.58,152.206,152.546,USD_JPY,H1,64.20890937020026,-0.08326141699035361,-0.16155119817455435,0.07828978118420074,152.3103,0.27841753949606146,0.2354285714285729,31.185980282735557,283194 -2024-11-01 08:00:00+00:00,16985,152.547,152.694,152.524,152.64,USD_JPY,H1,73.22834645669226,-0.054820971493683146,-0.14020515283838011,0.08538418134469697,152.30765,0.2748121415460748,0.2229285714285721,29.331752877487677,300179 -2024-11-01 09:00:00+00:00,13757,152.64,152.836,152.562,152.776,USD_JPY,H1,82.50773993808059,-0.021064827910862505,-0.1163770878528766,0.0953122599420141,152.29805000000002,0.253019548826747,0.22557142857142967,28.01796015673593,313936 -2024-11-01 10:00:00+00:00,12212,152.777,152.849,152.67,152.671,USD_JPY,H1,74.36096049573891,-0.0027537202273322237,-0.09365241432776773,0.09089869410043551,152.30225000000002,0.25870179435846097,0.22514285714285823,28.5688031747747,301724 -2024-11-01 11:00:00+00:00,11447,152.67,152.802,152.589,152.676,USD_JPY,H1,73.9779874213827,0.012022831037256765,-0.07251736525476284,0.0845401962920196,152.31815,0.27175168131780203,0.23607142857142907,28.491546950617558,313171 -2024-11-01 12:00:00+00:00,36414,152.672,152.834,151.793,152.038,USD_JPY,H1,49.29282346778452,-0.02743169809772894,-0.06350023182335605,0.036068533725627114,152.29784999999998,0.276969934686182,0.301714285714285,28.926960014391764,276757 -2024-11-01 13:00:00+00:00,30962,152.035,152.49,151.97,152.428,USD_JPY,H1,60.0631768953069,-0.02691964316821327,-0.0561841140923275,0.02926447092411423,152.31045,0.27686695928034377,0.31878571428571384,26.334887558611182,307719 -2024-11-01 14:00:00+00:00,32907,152.343,152.964,152.222,152.899,USD_JPY,H1,66.4136622390894,0.011360965601852513,-0.0426750981534915,0.05403606375534401,152.3529,0.2990306972169653,0.35085714285714126,25.448936927252515,340626 -2024-11-01 15:00:00+00:00,21636,152.9,153.073,152.803,152.946,USD_JPY,H1,65.93533487297935,0.04497271360574473,-0.025145535801644255,0.07011824940738898,152.4034,0.3100021052292682,0.3435714285714267,23.4388654779656,362262 -2024-11-01 16:00:00+00:00,15500,152.944,153.046,152.832,152.896,USD_JPY,H1,62.08434712084306,0.06680559066171554,-0.006755310508972297,0.07356090117068784,152.44609999999997,0.316352884216218,0.3414999999999984,20.583165990672168,346762 -2024-11-01 17:00:00+00:00,13138,152.896,153.068,152.86,152.913,USD_JPY,H1,60.46511627906982,0.08450592920229383,0.01149693743328093,0.0730089917690129,152.48845,0.31946937499942757,0.3432857142857131,18.073107533479813,359900 -2024-11-01 18:00:00+00:00,11268,152.914,152.961,152.852,152.961,USD_JPY,H1,60.144927536231855,0.10123974510500489,0.029445498967625723,0.07179424613737917,152.53325,0.31978658588186065,0.34221428571428547,16.25320398319443,371168 -2024-11-01 19:00:00+00:00,7931,152.96,153.024,152.94,152.968,USD_JPY,H1,59.31244560487373,0.11375495989938145,0.04630739115397687,0.06744756874540458,152.58255,0.3060380909979099,0.33085714285714324,15.463475681110536,379099 -2024-11-01 20:00:00+00:00,5675,152.968,153.095,152.944,152.999,USD_JPY,H1,63.740283493369816,0.12473690926935888,0.06199329477705327,0.0627436144923056,152.6308,0.29068785933159313,0.32492857142857395,15.460377634380633,384774 -2024-11-03 22:00:00+00:00,1760,152.334,152.576,152.33,152.44,USD_JPY,H1,47.95996920708249,0.08732690482398198,0.06706001678643901,0.020266888037542966,152.64690000000002,0.2688910755495271,0.32842857142857235,15.673037396399875,383014 -2024-11-03 23:00:00+00:00,12138,152.437,152.486,152.184,152.294,USD_JPY,H1,43.47169811320803,0.045375170232034634,0.06272304747555814,-0.017347877243523505,152.6466,0.26930151363670957,0.33785714285714413,15.784812038292879,370876 -2024-11-04 00:00:00+00:00,13823,152.292,152.292,152.003,152.074,USD_JPY,H1,37.16166788588143,-0.005559951402489105,0.049066447699948695,-0.0546263991024378,152.6294,0.2944789153110629,0.3389285714285738,16.133548958268754,357053 -2024-11-04 01:00:00+00:00,19645,152.074,152.087,151.704,151.79,USD_JPY,H1,34.87813250944035,-0.06805829511728234,0.025641499136502488,-0.09369979425378483,152.59465,0.34847249757006116,0.35350000000000087,16.98969080878147,337408 -2024-11-04 02:00:00+00:00,17894,151.788,151.97,151.776,151.816,USD_JPY,H1,35.34423994546718,-0.11417456674433879,-0.0023217140396657662,-0.11185285270467302,152.55845,0.3896239043305818,0.35214285714285765,18.04578006428482,355302 -2024-11-04 03:00:00+00:00,16199,151.816,151.816,151.598,151.738,USD_JPY,H1,43.68155012636882,-0.15522663634681066,-0.03290269850109475,-0.12232393784571591,152.52545,0.4298067466400716,0.2933571428571428,18.2819397748193,339103 -2024-11-04 04:00:00+00:00,10314,151.74,151.863,151.692,151.821,USD_JPY,H1,35.31688437348842,-0.1789998916040645,-0.0621221371216887,-0.11687775448237578,152.4892,0.4576535807612241,0.2684285714285701,20.089913718217908,349417 -2024-11-04 05:00:00+00:00,11976,151.822,151.966,151.818,151.855,USD_JPY,H1,17.975460122699502,-0.19287352587565465,-0.08827241487248189,-0.10460111100317276,152.44995,0.47728105753133854,0.2259999999999991,22.967203698976057,361393 -2024-11-04 06:00:00+00:00,14469,151.854,152.156,151.802,152.147,USD_JPY,H1,28.693333333333484,-0.1782517461638804,-0.10626828113076159,-0.07198346503311881,152.4185,0.47538543916795456,0.23199999999999932,25.391233919600705,375862 -2024-11-04 07:00:00+00:00,19774,152.148,152.278,152.086,152.178,USD_JPY,H1,30.65732758620743,-0.16229164244484195,-0.11747295339357766,-0.04481868905126429,152.39385,0.47438417418821,0.23042857142856935,27.29093903491268,395636 -2024-11-04 08:00:00+00:00,25280,152.178,152.227,151.968,152.089,USD_JPY,H1,28.630705394190528,-0.15503752537216542,-0.12498586778929523,-0.030051657582870192,152.3645,0.4741675808405434,0.23407142857142763,29.712046197692214,370356 -2024-11-04 09:00:00+00:00,17456,152.092,152.148,151.802,151.886,USD_JPY,H1,24.195871339413884,-0.1637810231029846,-0.1327448988520331,-0.03103612425095148,152.3569,0.4808472675602506,0.25099999999999867,32.85408237461323,352900 -2024-11-04 10:00:00+00:00,14270,151.885,152.012,151.754,151.81,USD_JPY,H1,23.094795539033953,-0.17482756949490863,-0.14116143298060824,-0.03366613651430039,152.326,0.49566627141135666,0.26342857142857057,36.54919716417334,338630 -2024-11-04 11:00:00+00:00,14002,151.81,151.818,151.535,151.554,USD_JPY,H1,19.604543542280453,-0.20191158653136654,-0.1533114636907599,-0.048600122840606635,152.25875,0.5049866986095779,0.27285714285714235,40.332725606472074,324628 -2024-11-04 12:00:00+00:00,13559,151.556,151.826,151.546,151.808,USD_JPY,H1,34.74903474903465,-0.20056816299549496,-0.1627628035517069,-0.037805359443788045,152.20184999999998,0.4872765641635323,0.2626428571428566,42.58778736082544,338187 -2024-11-04 13:00:00+00:00,17221,151.808,152.066,151.728,151.833,USD_JPY,H1,38.18554587391062,-0.1952356441227039,-0.16925737166590632,-0.02597827245679757,152.14870000000002,0.4650431898264583,0.2652142857142853,42.400631119763936,355408 -2024-11-04 14:00:00+00:00,23073,151.832,151.97,151.625,151.822,USD_JPY,H1,42.76693455797914,-0.18971032997311,-0.17334796332734706,-0.016362366645762932,152.09415,0.433595891760093,0.2692142857142841,41.0297031939401,332335 -2024-11-04 15:00:00+00:00,18054,151.822,152.11,151.702,151.994,USD_JPY,H1,56.25766871165669,-0.16949864133766823,-0.1725780989294113,0.003079457591743079,152.04579999999999,0.38278406718145963,0.2710000000000008,38.109981529530494,350389 -2024-11-04 16:00:00+00:00,15952,151.992,152.159,151.93,152.024,USD_JPY,H1,56.36474908200735,-0.1493385019071809,-0.16793017952496525,0.018591677617784352,151.9986,0.31534565827541633,0.2735000000000006,35.30080669747876,366341 -2024-11-04 17:00:00+00:00,11214,152.023,152.116,151.894,152.012,USD_JPY,H1,58.73724489795931,-0.13279892255960135,-0.16090392813189247,0.02810500557229112,151.94924999999998,0.21027372507334344,0.2737857142857162,34.48200150616925,355127 -2024-11-04 18:00:00+00:00,11095,152.012,152.2,151.988,152.066,USD_JPY,H1,57.95971410006519,-0.1140194923293052,-0.151527040971375,0.037507548642069816,151.93055,0.17857431737124368,0.2767142857142874,33.55129691144802,366222 -2024-11-04 19:00:00+00:00,9890,152.064,152.174,152.064,152.15,USD_JPY,H1,59.28256765261222,-0.0913060413815856,-0.13948284105341713,0.04817679967183153,151.92335,0.16557913510610753,0.27400000000000296,30.14859187861681,376112 -2024-11-04 20:00:00+00:00,10312,152.15,152.182,152.105,152.15,USD_JPY,H1,50.115651503470104,-0.07247007791679039,-0.12608028842609179,0.0536102105093014,151.92714999999998,0.1700307324647332,0.25421428571428756,27.034064279525097,365800 -2024-11-04 21:00:00+00:00,5322,152.151,152.198,152.133,152.134,USD_JPY,H1,48.28393135725387,-0.05816304012626006,-0.11249683876612544,0.054333798639865385,151.94435,0.17280328786893848,0.24514285714286035,25.378450378279087,360478 -2024-11-04 22:00:00+00:00,1023,152.14,152.157,152.113,152.12,USD_JPY,H1,51.28417564208807,-0.04740780493278862,-0.09947903199945808,0.05207122706666946,151.95955,0.17428303502734757,0.22978571428571723,22.822085319280884,359455 -2024-11-04 23:00:00+00:00,2478,152.116,152.296,152.112,152.282,USD_JPY,H1,66.98113207547239,-0.025518001804783808,-0.08468682596052324,0.05916882415573943,151.98674999999997,0.18023518986816914,0.21821428571428822,21.032883946327154,361933 -2024-11-05 00:00:00+00:00,13537,152.282,152.4,152.112,152.282,USD_JPY,H1,71.65137614678932,-0.00807706770956429,-0.06936487431033145,0.06128780660076716,152.00979999999998,0.18726328210504195,0.22035714285714544,19.739861702794013,348396 -2024-11-05 01:00:00+00:00,12386,152.282,152.448,152.224,152.274,USD_JPY,H1,92.75534441805154,0.005041351512716119,-0.05448362914572193,0.05952498065843805,152.03074999999998,0.1924008630124821,0.2161428571428599,20.19356184597759,336010 -2024-11-05 02:00:00+00:00,10958,152.272,152.296,152.167,152.256,USD_JPY,H1,86.96369636963618,0.01382596655571433,-0.040821710005434685,0.054647676561149015,152.0362,0.1973473026859779,0.20535714285714488,20.992577014072886,325052 -2024-11-05 03:00:00+00:00,8120,152.258,152.42,152.229,152.386,USD_JPY,H1,88.888888888888,0.03092130920694558,-0.026473106162958636,0.057394415369904216,152.0466,0.2102708528580693,0.19485714285714348,23.063138406936485,333172 -2024-11-05 04:00:00+00:00,9344,152.386,152.5,152.386,152.466,USD_JPY,H1,91.28205128205006,0.050344482974082894,-0.01110958833555033,0.06145407130963322,152.06545,0.23022356979251452,0.17835714285714385,26.960303012123298,342516 -2024-11-05 05:00:00+00:00,8877,152.466,152.546,152.356,152.429,USD_JPY,H1,83.7209302325563,0.06203677600564106,0.003519684532687948,0.058517091472953114,152.0926,0.2397672994332833,0.16278571428571403,31.64745508148057,333639 -2024-11-05 06:00:00+00:00,11942,152.43,152.448,152.266,152.353,USD_JPY,H1,73.80607814761164,0.06442775458015149,0.015701298542180657,0.04872645603797083,152.11975,0.23680791123808748,0.15942857142857342,35.00294526686249,321697 -2024-11-05 07:00:00+00:00,12495,152.352,152.367,152.179,152.275,USD_JPY,H1,67.37120211360592,0.05934458674445864,0.024429956182636256,0.03491463056182238,152.1558,0.19781958815190348,0.15700000000000053,37.06882599455258,309202 -2024-11-05 08:00:00+00:00,14415,152.274,152.387,152.171,152.189,USD_JPY,H1,57.79467680608261,0.04782535739462901,0.02910903642503481,0.018716320969594198,152.17485000000002,0.18011670919241676,0.1572857142857162,38.66784198471305,294787 -2024-11-05 09:00:00+00:00,12282,152.19,152.246,152.088,152.188,USD_JPY,H1,52.6912181303102,0.03817552975704075,0.030922335091436,0.007253194665604749,152.1926,0.1611486400609527,0.16071428571428775,40.030871731843355,282505 -2024-11-05 10:00:00+00:00,10624,152.187,152.273,152.142,152.257,USD_JPY,H1,56.90322580645101,0.0356843482203999,0.031874737717228784,0.003809610503171114,152.21435,0.13586962591456658,0.16457142857143076,41.70452204317758,293129 -2024-11-05 11:00:00+00:00,6115,152.256,152.264,152.144,152.158,USD_JPY,H1,51.39860139860135,0.02542847267778825,0.03058548470934068,-0.00515701203155243,152.22255,0.12649671301687387,0.16850000000000268,42.65214325431526,287014 -2024-11-05 12:00:00+00:00,8434,152.158,152.34,152.085,152.293,USD_JPY,H1,58.835546475995116,0.02787269015661309,0.030042925798795164,-0.0021702356421820744,152.236,0.1183104746169885,0.1835714285714301,44.72914068118477,295448 -2024-11-05 13:00:00+00:00,12985,152.292,152.324,151.962,152.052,USD_JPY,H1,39.13043478260893,0.01024496664112462,0.026083333967261056,-0.015838367326136436,152.238,0.114604583282536,0.19628571428571767,43.845715959087556,282463 -2024-11-05 14:00:00+00:00,16044,152.054,152.118,151.774,151.835,USD_JPY,H1,32.47058823529527,-0.020993220918228417,0.016668022990163164,-0.03766124390839158,152.22645,0.1413668147013871,0.20028571428571645,42.83825461231104,266419 -2024-11-05 15:00:00+00:00,28488,151.846,152.241,151.804,152.044,USD_JPY,H1,42.20867208672166,-0.02855598073350052,0.0076232222454304275,-0.036179202978930944,152.22115,0.14628532855839818,0.21550000000000175,38.867096771184265,294907 -2024-11-05 16:00:00+00:00,16127,152.045,152.096,151.903,151.963,USD_JPY,H1,40.4808317089023,-0.04061733408462942,-0.002024889020581542,-0.03859244506404788,152.2118,0.15667922303346418,0.22007142857143183,34.9476439640088,278780 -2024-11-05 17:00:00+00:00,11157,151.964,151.964,151.598,151.684,USD_JPY,H1,29.206161137442066,-0.07186064700550787,-0.01599204061756681,-0.05586860638794106,152.1893,0.1958536241386052,0.23257142857143265,33.73540860543194,267623 -2024-11-05 18:00:00+00:00,15258,151.687,151.7,151.367,151.556,USD_JPY,H1,23.79032258064639,-0.10573092753321589,-0.03393981800069663,-0.07179110953251927,152.16109999999998,0.24161472154470245,0.24821428571428936,32.35817570740307,252365 -2024-11-05 19:00:00+00:00,11013,151.557,151.632,151.338,151.455,USD_JPY,H1,22.944444444445764,-0.139119541308105,-0.0549757626621783,-0.0841437786459267,152.11975,0.28644277004169105,0.2556428571428618,31.67119819111723,241352 -2024-11-05 20:00:00+00:00,9578,151.451,151.549,151.393,151.532,USD_JPY,H1,27.207107162688374,-0.15755085362394539,-0.07549078085453173,-0.08206007276941366,152.08225,0.31203405260127476,0.25378571428571817,32.08853270668516,250930 -2024-11-05 21:00:00+00:00,5265,151.534,151.656,151.508,151.62,USD_JPY,H1,31.91606847045891,-0.16317594613778397,-0.09302781391118217,-0.0701481322266018,152.04955,0.3248854818216825,0.2509285714285759,31.8636812126633,256195 -2024-11-05 22:00:00+00:00,399,151.596,151.67,151.529,151.61,USD_JPY,H1,33.314121037464986,-0.16652123575818223,-0.10772649828058219,-0.05879473747760004,152.01725,0.33522794677420326,0.2455714285714318,32.01630969546978,255796 -2024-11-05 23:00:00+00:00,13331,151.6,151.916,151.401,151.443,USD_JPY,H1,30.40504997369908,-0.18056644858603477,-0.12229448834167271,-0.058271960244362056,151.9701,0.34675198171701427,0.2710714285714297,30.785913837595892,242465 -2024-11-06 00:00:00+00:00,52589,151.444,152.926,151.284,152.915,USD_JPY,H1,59.957627118643856,-0.07208829398010153,-0.11225324946935848,0.04016495548925696,151.99255,0.3921157824223825,0.37900000000000084,31.422210968096124,295054 -2024-11-06 01:00:00+00:00,56502,152.914,153.124,152.644,152.932,USD_JPY,H1,62.01117318435764,0.015079357565639384,-0.08678672806235892,0.1018660856279983,152.0177,0.4353321901400485,0.40471428571428547,32.47484084995116,351556 -2024-11-06 02:00:00+00:00,56574,152.931,154.114,152.874,154.05,USD_JPY,H1,70.8917954815697,0.1723864423087207,-0.034952093988143,0.2073385362968637,152.10255,0.6272158593286262,0.4750714285714293,34.04665070012248,408130 -2024-11-06 03:00:00+00:00,66983,154.05,154.336,153.588,153.942,USD_JPY,H1,73.20726915520662,0.2850528312976337,0.029048891069012345,0.2560039402286214,152.1859,0.7500697441142468,0.5026428571428576,38.10557578854972,341147 -2024-11-06 04:00:00+00:00,51012,153.942,154.094,153.446,153.558,USD_JPY,H1,70.32318943146949,0.33944327473571434,0.09112776780235275,0.24831550693336157,152.25435,0.8104069331832798,0.5243571428571434,41.568620216621994,290135 -2024-11-06 05:00:00+00:00,53758,153.562,153.774,153.132,153.746,USD_JPY,H1,70.17543859649112,0.393185721591891,0.1515393585602604,0.24164636303163062,152.33225000000002,0.875925908597112,0.5389999999999995,44.494241875944276,343893 -2024-11-06 06:00:00+00:00,45360,153.742,154.384,153.662,154.048,USD_JPY,H1,73.48501914845698,0.45490204637562215,0.21221189612333277,0.24269015025228938,152.42180000000002,0.9557424559412885,0.5767857142857115,48.28188694024805,389253 -2024-11-06 07:00:00+00:00,51160,154.05,154.138,153.692,153.94,USD_JPY,H1,76.42924086223056,0.4894558387688335,0.2676606846524329,0.22179515411640055,152.51090000000002,1.0113043635686847,0.582499999999998,50.67718548748324,338093 -2024-11-06 08:00:00+00:00,44599,153.942,154.146,153.813,153.902,USD_JPY,H1,78.07563427477214,0.5079187149883921,0.31571229071962476,0.19220642426876738,152.59135,1.0560659007968398,0.582499999999998,52.38913753685938,293494 -2024-11-06 09:00:00+00:00,27135,153.901,154.034,153.8,153.998,USD_JPY,H1,80.46968607716224,0.5242538035935809,0.357420593294416,0.16683321029916487,152.68865,1.0927668540692175,0.5782142857142816,53.684729953180515,320629 -2024-11-06 10:00:00+00:00,23438,154.0,154.183,153.876,153.996,USD_JPY,H1,80.0634455832112,0.5309180034570034,0.3921200753269335,0.13879792813006986,152.79670000000002,1.1106090837131777,0.5889999999999945,55.20768561855289,297191 -2024-11-06 11:00:00+00:00,27732,153.996,154.254,153.938,154.22,USD_JPY,H1,80.70382616910709,0.5479578409174053,0.4232876284450279,0.12467021247237742,152.90550000000002,1.1392073652487313,0.600999999999995,57.985124025570876,324923 -2024-11-06 12:00:00+00:00,29635,154.222,154.462,154.116,154.408,USD_JPY,H1,81.70897552130518,0.5700607581194959,0.4526422543799215,0.11741850373957435,153.02775,1.1636687390297455,0.615642857142851,60.784859478077216,354558 -2024-11-06 13:00:00+00:00,32130,154.412,154.442,154.06,154.303,USD_JPY,H1,82.87356321839067,0.5725053712195063,0.4766148777478385,0.09589049347166778,153.1587,1.1517952623190382,0.6061428571428523,65.45155989417586,322428 -2024-11-06 14:00:00+00:00,28415,154.302,154.478,154.208,154.288,USD_JPY,H1,73.72969236087138,0.5666998074520393,0.4946318636886787,0.07206794376336062,153.2953,1.1130681683317822,0.5081428571428533,67.56399901355222,294013 -2024-11-06 15:00:00+00:00,33923,154.288,154.367,153.982,154.354,USD_JPY,H1,74.16723317471146,0.5609581286319667,0.5078971166773363,0.05306101195463042,153.44025000000002,1.0476395962684562,0.5013571428571392,68.28007294790984,327936 -2024-11-06 16:00:00+00:00,22055,154.354,154.668,154.206,154.585,USD_JPY,H1,63.01703163017037,0.568494327520682,0.5200165588460055,0.04847776867467646,153.59290000000001,0.9748527500069638,0.44578571428571123,66.87658724270177,349991 -2024-11-06 17:00:00+00:00,13958,154.584,154.688,154.462,154.666,USD_JPY,H1,67.85009861932946,0.5743817274759806,0.5308895925720005,0.04349213490398007,153.7452,0.8841208300289985,0.40849999999999553,64.46587357992921,363949 -2024-11-06 18:00:00+00:00,16366,154.666,154.7,154.357,154.428,USD_JPY,H1,73.11370882040458,0.5534629470708694,0.5354042634717744,0.018058683599095016,153.8861,0.7384836455352377,0.38671428571428074,62.06508728936477,347583 -2024-11-06 19:00:00+00:00,13964,154.428,154.562,154.38,154.446,USD_JPY,H1,70.44392523364533,0.53220221658745,0.5347638540949096,-0.0025616375074595243,154.03625,0.4732671299617719,0.3538571428571394,62.62206594289517,361547 -2024-11-06 20:00:00+00:00,8975,154.446,154.574,154.407,154.562,USD_JPY,H1,66.8414154652695,0.5187335278430112,0.5315577888445299,-0.012824261001518678,154.1186,0.40647617912633754,0.3142142857142837,61.48195181125434,370522 -2024-11-06 21:00:00+00:00,3385,154.562,154.665,154.562,154.626,USD_JPY,H1,73.14439946019007,0.5073750562871737,0.5267212423330587,-0.019346186045885005,154.2033,0.3116330669358283,0.2897142857142825,59.48913182832039,373907 -2024-11-06 22:00:00+00:00,582,154.59,154.598,154.52,154.526,USD_JPY,H1,70.2072538860121,0.48471670898518937,0.5183203356634849,-0.03360362667829553,154.2271,0.3174316171489083,0.2714999999999971,56.41117970585206,373325 -2024-11-06 23:00:00+00:00,7701,154.525,154.551,154.22,154.312,USD_JPY,H1,59.44645006016956,0.4443693803698352,0.503530144604755,-0.05916076423491978,154.2456,0.31065082782597586,0.27842857142856914,51.53168092940569,365624 -2024-11-07 00:00:00+00:00,20801,154.314,154.714,154.226,154.582,USD_JPY,H1,65.18134715025928,0.4292326484874991,0.48867064538130384,-0.059437996893804745,154.2968,0.2735264058985799,0.29135714285714137,46.83007625555457,386425 -2024-11-07 01:00:00+00:00,20308,154.582,154.677,154.38,154.514,USD_JPY,H1,58.28635851183836,0.40705734403852034,0.47234798511274717,-0.06529064107422683,154.3352,0.24449961788296912,0.28999999999999815,41.69116149328852,366117 -2024-11-07 02:00:00+00:00,16441,154.514,154.53,154.33,154.44,USD_JPY,H1,50.9638554216871,0.3791415659769086,0.4537067012855795,-0.07456513530867087,154.3548,0.23582299336066714,0.27957142857142764,36.96396077618214,349676 -2024-11-07 03:00:00+00:00,11563,154.442,154.528,154.278,154.321,USD_JPY,H1,50.53763440860219,0.34345665078933507,0.43165669118633065,-0.08820004039699558,154.37385,0.215022954680949,0.27014285714285585,32.492551164973456,338113 -2024-11-07 04:00:00+00:00,14055,154.324,154.376,153.935,154.177,USD_JPY,H1,46.92179700499111,0.3000971685108311,0.40534478665123075,-0.10524761814039962,154.3876,0.1906759168072274,0.28235714285714103,30.08357412581071,324058 -2024-11-07 05:00:00+00:00,13128,154.176,154.29,153.992,154.01,USD_JPY,H1,40.9663865546211,0.24938421608740668,0.37415267253846596,-0.12476845645105927,154.3882,0.1894000499854425,0.2761428571428561,27.730998844048848,310930 -2024-11-07 06:00:00+00:00,17126,154.008,154.202,153.934,153.936,USD_JPY,H1,31.425300515168374,0.2009067266834279,0.3395034833674584,-0.1385967566840305,154.3852,0.19628915295059288,0.26228571428571207,28.98034309268565,293804 -2024-11-07 07:00:00+00:00,24345,153.938,154.01,153.652,154.004,USD_JPY,H1,30.91118800461291,0.16606075376938634,0.304814937447844,-0.13875418367845765,154.37439999999998,0.2112305798927572,0.27171428571428385,31.460800127383784,318149 -2024-11-07 08:00:00+00:00,22532,154.002,154.074,153.818,154.041,USD_JPY,H1,37.377690802347985,0.13981891454878337,0.27181573286803185,-0.13199681831924848,154.35605,0.2237292712837647,0.2654999999999989,33.01917806451715,340681 -2024-11-07 09:00:00+00:00,14709,154.044,154.136,153.899,153.95,USD_JPY,H1,34.55790784557847,0.11040643180271559,0.23953387265496862,-0.12912744085225303,154.3384,0.24136375690007936,0.2694285714285688,32.29293388263393,325972 -2024-11-07 10:00:00+00:00,11999,153.948,154.044,153.882,154.02,USD_JPY,H1,32.62820512820478,0.09168831646832132,0.20996476141763917,-0.11827644494931785,154.325,0.2515342395603648,0.26907142857142624,33.16943585288593,337971 -2024-11-07 11:00:00+00:00,11010,154.021,154.102,153.987,154.068,USD_JPY,H1,31.930051813471536,0.07980730512122136,0.18393327015835564,-0.10412596503713428,154.3107,0.2578492215221996,0.2699285714285712,34.23010363362102,348981 -2024-11-07 12:00:00+00:00,20375,154.068,154.11,153.741,153.766,USD_JPY,H1,28.235967926689142,0.045498167397710176,0.15624624960622657,-0.1107480822085164,154.26975,0.2763633906129837,0.2907142857142852,36.04371081117673,328606 -2024-11-07 13:00:00+00:00,27459,153.764,153.79,153.451,153.503,USD_JPY,H1,27.465181058495304,-0.002880765774818883,0.12442084653001749,-0.1273016123048364,154.2116,0.3090239983653837,0.2912857142857145,39.58749519882345,301147 -2024-11-07 14:00:00+00:00,22853,153.504,153.561,153.086,153.226,USD_JPY,H1,12.375138734739764,-0.06284852520312256,0.08696697218338947,-0.14981549738651204,154.1515,0.3746408104154808,0.2903571428571427,44.688484158891434,278294 -2024-11-07 15:00:00+00:00,24750,153.224,153.29,152.856,152.964,USD_JPY,H1,11.172344689379202,-0.13001587489534927,0.04357040276764172,-0.173586277662991,154.07739999999998,0.4519180642866804,0.300142857142857,50.13628813485094,253544 -2024-11-07 16:00:00+00:00,17910,152.964,153.232,152.928,153.136,USD_JPY,H1,18.863419293218996,-0.16743740670665375,0.001368840872782634,-0.16880624757943638,154.0061,0.4828692641928661,0.3075714285714294,55.452181258120994,271454 -2024-11-07 17:00:00+00:00,11376,153.136,153.204,152.959,153.016,USD_JPY,H1,18.85441527446325,-0.2044208016391167,-0.039789087629597236,-0.16463171400951945,153.92559999999997,0.5076524297783798,0.3072142857142869,60.960991083074084,260078 -2024-11-07 18:00:00+00:00,9491,153.016,153.031,152.868,152.974,USD_JPY,H1,19.819367787255672,-0.23441724152479537,-0.07871471840863686,-0.1557025231161585,153.848,0.5292067549264049,0.2873571428571446,64.87317218877071,250587 -2024-11-07 19:00:00+00:00,40190,152.968,153.474,152.872,153.088,USD_JPY,H1,26.23711340206225,-0.2461532871158738,-0.11220243215008427,-0.13395085496578954,153.7868,0.5433100888236005,0.30907142857142844,66.99644698285411,290777 -2024-11-07 20:00:00+00:00,24671,153.086,153.15,152.692,152.854,USD_JPY,H1,24.238095238095667,-0.2712096956317396,-0.14400388484641535,-0.12720581078532422,153.7004,0.5475786316872636,0.32264285714285684,66.72812839249416,266106 -2024-11-07 21:00:00+00:00,6122,152.856,152.966,152.802,152.91,USD_JPY,H1,23.802681992337583,-0.28328283967545076,-0.17185967581222245,-0.11142316386322831,153.6202,0.5395490904804033,0.30878571428571483,64.9194060464799,272228 -2024-11-07 22:00:00+00:00,378,152.928,152.94,152.88,152.94,USD_JPY,H1,23.5463719365692,-0.28712039880170437,-0.19491182041011884,-0.09220857839158553,153.5452,0.5236135175632143,0.294785714285715,64.3823591381646,272606 -2024-11-07 23:00:00+00:00,6264,152.939,153.193,152.924,153.175,USD_JPY,H1,32.58426966292204,-0.2681085673615371,-0.2095511698004025,-0.058557397561134594,153.48790000000002,0.49623677496477514,0.29707142857143004,63.24037038874103,278870 -2024-11-08 00:00:00+00:00,17531,153.172,153.242,152.972,153.136,USD_JPY,H1,29.854147675478387,-0.25326900065078917,-0.21829473597047985,-0.034974264680309314,153.43585000000002,0.4742616727037504,0.304785714285714,61.68891629568338,261339 -2024-11-08 01:00:00+00:00,17132,153.134,153.37,153.052,153.096,USD_JPY,H1,27.767612076852572,-0.24194718626884537,-0.22302522603015296,-0.018921960238692415,153.39015,0.45984199515861646,0.31928571428571423,59.56358804150976,244207 -2024-11-08 02:00:00+00:00,13236,153.096,153.19,152.962,153.13,USD_JPY,H1,33.42022940563079,-0.22760733527135812,-0.223941647878394,-0.0036656873929641343,153.34985,0.4445507815238662,0.3092142857142863,56.59886312727207,257443 -2024-11-08 03:00:00+00:00,12053,153.131,153.132,152.733,152.814,USD_JPY,H1,32.521562658548916,-0.2389865706975911,-0.2269506324422334,-0.012035938255357703,153.29035000000002,0.4318443036749693,0.3135000000000007,53.46112014684791,245390 -2024-11-08 04:00:00+00:00,14096,152.816,152.841,152.55,152.738,USD_JPY,H1,36.2146892655366,-0.25124111046801545,-0.23180872804738983,-0.019432382420625616,153.2252,0.41039295672827947,0.30035714285714377,48.05953106079069,231294 -2024-11-08 05:00:00+00:00,10545,152.738,152.918,152.712,152.808,USD_JPY,H1,45.057034220532046,-0.2523950534736912,-0.2359259931326501,-0.016469060341041064,153.1681,0.3827557830502155,0.28407142857143086,43.025457613685056,241839 -2024-11-08 06:00:00+00:00,14653,152.806,152.956,152.664,152.766,USD_JPY,H1,37.223756906077,-0.2537732703189022,-0.23949544856990054,-0.014277821749001635,153.1054,0.3356739332421562,0.28321428571428797,37.62702693350793,227186 -2024-11-08 07:00:00+00:00,17754,152.766,152.901,152.614,152.64,USD_JPY,H1,37.07015130673968,-0.26201234881222035,-0.24399882861836453,-0.018013520193855825,153.034,0.2644658966875523,0.2862142857142881,31.923003788831988,209432 -2024-11-08 08:00:00+00:00,28251,152.64,152.748,152.322,152.352,USD_JPY,H1,31.705882352941174,-0.2884559305513221,-0.25289024900495605,-0.03556568154636608,152.96329999999998,0.24689995840012724,0.3050000000000007,25.788261765083394,181181 -2024-11-08 09:00:00+00:00,16581,152.352,152.449,152.252,152.282,USD_JPY,H1,25.664251207729222,-0.311470634984488,-0.26460632620086244,-0.046864308783625575,152.90225,0.2571691793864302,0.27607142857143124,24.892222408064306,164600 -2024-11-08 10:00:00+00:00,18954,152.28,152.4,152.142,152.179,USD_JPY,H1,27.8688524590157,-0.3341690998824731,-0.2785188809371846,-0.05565021894528854,152.8499,0.2920030460996131,0.2617857142857178,23.577494911356386,145646 -2024-11-08 11:00:00+00:00,12727,152.177,152.45,152.142,152.426,USD_JPY,H1,35.897435897435486,-0.32844089887794325,-0.2885032845253363,-0.039937614352606954,152.823,0.3054117151870688,0.2720714285714304,23.022902532684135,158373 -2024-11-08 12:00:00+00:00,14207,152.425,152.55,152.36,152.376,USD_JPY,H1,33.755760368663445,-0.32419867987007933,-0.2956423635942849,-0.028556316275794413,152.78500000000003,0.3116349078223338,0.28135714285714436,21.255210638112143,144166 -2024-11-08 13:00:00+00:00,22779,152.374,152.823,152.332,152.744,USD_JPY,H1,38.46976993044343,-0.28782430680271887,-0.29407875223597174,0.006254445433252875,152.7714,0.30692282586436326,0.2972142857142878,20.426406195292508,166945 -2024-11-08 14:00:00+00:00,21396,152.744,152.86,152.535,152.717,USD_JPY,H1,38.71836295099617,-0.25819966343880196,-0.2869029344765378,0.028703271037735845,152.75854999999999,0.30335327240471033,0.30114285714286176,19.935233945205372,145549 -2024-11-08 15:00:00+00:00,24121,152.72,152.792,152.382,152.424,USD_JPY,H1,34.07582938388579,-0.2554202458352961,-0.28060639674828947,0.025186150912993366,152.72535,0.30173032135658956,0.30771428571428927,20.876801775045344,121428 -2024-11-08 16:00:00+00:00,17323,152.426,152.721,152.409,152.593,USD_JPY,H1,38.04008908685912,-0.23685038593697527,-0.27185519458602664,0.03500480864905137,152.7123,0.3015174080417936,0.3137142857142895,21.944172587702386,138751 -2024-11-08 17:00:00+00:00,15435,152.592,152.815,152.575,152.656,USD_JPY,H1,46.03413654618493,-0.21457655968120548,-0.2603994676050624,0.045822907923856904,152.6996,0.29808165604076803,0.3023571428571472,21.895704340948093,154186 -2024-11-08 18:00:00+00:00,11549,152.656,152.816,152.546,152.696,USD_JPY,H1,48.92638036809809,-0.19148935609410955,-0.24661744530287183,0.055128089208762276,152.6874,0.29266873672713545,0.30085714285714815,21.820811514506158,165735 -2024-11-08 19:00:00+00:00,9353,152.695,152.796,152.66,152.678,USD_JPY,H1,46.586134453781526,-0.17265477372706073,-0.23182491098770963,0.0591701372606489,152.66254999999998,0.2692512962086565,0.29585714285714665,22.07165982751489,156382 -2024-11-08 20:00:00+00:00,7443,152.676,152.757,152.496,152.516,USD_JPY,H1,43.824110671936594,-0.16885383570473778,-0.21923069593111527,0.050376860226377496,152.63155,0.24661187806900098,0.2936428571428605,22.844169707181045,148939 -2024-11-08 21:00:00+00:00,5835,152.52,152.664,152.437,152.638,USD_JPY,H1,49.95049504950542,-0.1542194388415794,-0.2062284445132081,0.052009005671628694,152.60864999999998,0.2211656380573336,0.28935714285714403,23.784082524162958,154774 -2024-11-10 22:00:00+00:00,1078,152.692,152.795,152.666,152.686,USD_JPY,H1,59.382022471910346,-0.1371671969819488,-0.19241619500695625,0.05524899802500746,152.58645,0.18548527387824262,0.2701428571428579,24.2650919304287,155852 -2024-11-10 23:00:00+00:00,5348,152.693,152.95,152.688,152.91,USD_JPY,H1,66.23578076525325,-0.10437507362206588,-0.17480797072997817,0.07043289710791228,152.59125,0.19278236293103929,0.2749285714285707,23.476845490733346,161200 -2024-11-11 00:00:00+00:00,13378,152.91,153.149,152.875,153.148,USD_JPY,H1,73.4171097148384,-0.05850802456663473,-0.1515479814973095,0.09303995693067477,152.61175,0.2278233098476633,0.2760714285714272,24.373324339968217,174578 -2024-11-11 01:00:00+00:00,10908,153.15,153.228,153.034,153.222,USD_JPY,H1,70.99156118143529,-0.01600241035433214,-0.12443886726871403,0.10843645691438189,152.63245,0.2627272900386175,0.2679285714285718,25.31870662696204,185486 -2024-11-11 02:00:00+00:00,11801,153.223,153.436,153.132,153.392,USD_JPY,H1,75.1984126984126,0.031043326254746262,-0.09334242856402199,0.12438575481876825,152.66375,0.312121244128555,0.27607142857142924,27.2269042022938,197287 -2024-11-11 03:00:00+00:00,7908,153.392,153.462,153.306,153.448,USD_JPY,H1,70.6572769953053,0.0720159879712412,-0.06027074525696935,0.13228673322821055,152.70415,0.3578307854788832,0.25214285714285517,28.560790441840545,205195 -2024-11-11 04:00:00+00:00,7771,153.449,153.646,153.446,153.575,USD_JPY,H1,73.78048780487734,0.11342743532210875,-0.02553110914115373,0.13895854446326247,152.76529999999997,0.3968559462691501,0.24321428571428175,30.264299834989657,212966 -2024-11-11 05:00:00+00:00,9400,153.574,153.672,153.471,153.528,USD_JPY,H1,85.4300385109111,0.140830393385329,0.0077411913641428146,0.13308920202118618,152.82760000000002,0.4144053951904901,0.22828571428571007,32.15883337971395,203566 -2024-11-11 06:00:00+00:00,8761,153.528,153.592,153.396,153.4,USD_JPY,H1,76.59854976928209,0.15048421644470977,0.03628979638025621,0.11419442006445357,152.88865,0.4036232316679145,0.21999999999999684,33.506894522537905,194805 -2024-11-11 07:00:00+00:00,16287,153.398,153.67,153.316,153.64,USD_JPY,H1,79.04368358913824,0.1754781323294594,0.06412746357009685,0.11135066875936256,152.94935,0.42128341190007085,0.22814285714285226,35.30867341254597,211092 -2024-11-11 08:00:00+00:00,14530,153.643,153.858,153.613,153.764,USD_JPY,H1,80.03374578177775,0.2029522472553822,0.09189242030715393,0.11105982694822826,153.01875,0.4359328623890596,0.22635714285713757,38.48147326676192,225622 -2024-11-11 09:00:00+00:00,13188,153.766,153.857,153.598,153.626,USD_JPY,H1,74.97365648050604,0.2111561578411454,0.11574516781395223,0.09541099002719315,153.06285,0.4510269305593079,0.23514285714285116,41.00748449352631,212434 -2024-11-11 10:00:00+00:00,8836,153.626,153.752,153.556,153.69,USD_JPY,H1,82.6111111111116,0.2202827982391966,0.13665269389900112,0.0836301043401955,153.1115,0.4640467875518724,0.23049999999999418,43.916525827107705,221270 -2024-11-11 11:00:00+00:00,9393,153.691,153.78,153.686,153.758,USD_JPY,H1,82.07331042382637,0.23034745612099528,0.15539164634339997,0.0749558097775953,153.1782,0.455826444332851,0.2209999999999955,47.319466374412094,230663 -2024-11-11 12:00:00+00:00,6777,153.757,153.854,153.74,153.792,USD_JPY,H1,81.92840646651308,0.23832008031760665,0.17197733313824132,0.06634274717936534,153.23815,0.45365118467082666,0.21792857142856853,51.641188090147764,237440 -2024-11-11 13:00:00+00:00,10754,153.794,153.954,153.718,153.771,USD_JPY,H1,78.15565729234768,0.2401753262799673,0.18561693176658653,0.054558394513380765,153.29389999999998,0.4468049026561385,0.21592857142857116,54.683585791488504,226686 -2024-11-11 14:00:00+00:00,13657,153.767,153.914,153.644,153.846,USD_JPY,H1,75.54904831625184,0.24487473179146946,0.19746849177156311,0.04740624001990634,153.35139999999998,0.43975249017671075,0.2156428571428555,55.141410131419484,240343 -2024-11-11 15:00:00+00:00,10926,153.846,153.949,153.802,153.861,USD_JPY,H1,74.44529456771184,0.24696258816896943,0.2073673110510444,0.03959527711792504,153.41055,0.423675207634453,0.21228571428571286,55.39081143471795,251269 -2024-11-11 16:00:00+00:00,8463,153.86,153.911,153.77,153.824,USD_JPY,H1,68.39863713799082,0.2428324176593435,0.21446033237270423,0.02837208528663926,153.47594999999998,0.37666758692234564,0.20064285714285493,54.27071652296478,242806 -2024-11-11 17:00:00+00:00,5766,153.823,153.913,153.774,153.878,USD_JPY,H1,68.34470989761094,0.24113690039217772,0.21979564597659895,0.02134125441557877,153.53795,0.33073243675549835,0.19942857142857154,53.70960224457366,248572 -2024-11-11 18:00:00+00:00,5500,153.877,153.88,153.748,153.808,USD_JPY,H1,60.44843049327418,0.23147645922398397,0.22213180862607598,0.009344650597907983,153.59404999999998,0.26778417760384315,0.19457142857142987,51.30931305491295,243072 -2024-11-11 19:00:00+00:00,5003,153.812,153.814,153.726,153.766,USD_JPY,H1,60.72072072072112,0.21791940179332414,0.22128932725952563,-0.00336992546620149,153.63685,0.21612186495560684,0.1865000000000013,47.175191629285045,238069 -2024-11-11 20:00:00+00:00,6267,153.767,153.769,153.63,153.648,USD_JPY,H1,61.27272727272719,0.19540125820185494,0.21611171344799152,-0.020710455246136572,153.66185000000002,0.18297462431582026,0.18242857142857158,43.69875610884761,231802 -2024-11-11 21:00:00+00:00,2624,153.648,153.736,153.629,153.732,USD_JPY,H1,54.87288135593295,0.1822328977447114,0.2093359503073355,-0.027103052562624103,153.68735,0.15123396821998633,0.16478571428571545,41.88030829961708,234426 -2024-11-11 22:00:00+00:00,1036,153.72,153.742,153.705,153.734,USD_JPY,H1,48.1751824817517,0.16999862219859097,0.20146848468558662,-0.03146986248699565,153.70445,0.13448908187505823,0.1499285714285707,39.026097850468894,235462 -2024-11-11 23:00:00+00:00,4538,153.736,153.776,153.474,153.526,USD_JPY,H1,44.39461883408082,0.14188346475134495,0.18955148069873828,-0.04766801594739334,153.70835,0.12761631427807116,0.15300000000000175,38.00795189602831,230924 -2024-11-12 00:00:00+00:00,13444,153.527,153.815,153.488,153.767,USD_JPY,H1,53.601496725912114,0.1374640853866822,0.1791340016363271,-0.04166991624964489,153.71795000000003,0.12423385201194824,0.16235714285714462,35.35043136540354,244368 -2024-11-12 01:00:00+00:00,14424,153.768,153.968,153.743,153.961,USD_JPY,H1,58.493723849372756,0.14791084986865144,0.17288937128279197,-0.02497852141414053,153.7396,0.12708571490586676,0.17171428571428748,30.901824502683098,258792 -2024-11-12 02:00:00+00:00,13253,153.958,154.061,153.739,153.812,USD_JPY,H1,50.76335877862636,0.14252400323923098,0.16681629767407977,-0.024292294434848788,153.7602,0.09954930006634959,0.18657142857143022,26.379037644870493,245539 -2024-11-12 03:00:00+00:00,10576,153.816,153.818,153.578,153.658,USD_JPY,H1,46.08454608454605,0.12439443390576344,0.1583319249204165,-0.03393749101465307,153.7611,0.09848104272031596,0.18685714285714386,23.84081992219429,234963 -2024-11-12 04:00:00+00:00,11426,153.658,153.658,153.484,153.504,USD_JPY,H1,38.76478318002558,0.09648785469687482,0.14596311087570818,-0.04947525617883336,153.7481,0.11401380334943674,0.18000000000000074,22.520152790882207,223537 -2024-11-12 05:00:00+00:00,12693,153.504,153.618,153.408,153.615,USD_JPY,H1,42.39802224969154,0.08237884985001642,0.13324625867056983,-0.050867408820553406,153.74755,0.11465852040546984,0.1844999999999999,22.001643061408746,236230 -2024-11-12 06:00:00+00:00,10408,153.616,153.832,153.61,153.784,USD_JPY,H1,48.85714285714228,0.0838674773933974,0.12337050241513535,-0.039503025021737956,153.75225,0.11410054424198407,0.19028571428571336,20.67583690525219,246638 -2024-11-12 07:00:00+00:00,14424,153.784,153.894,153.704,153.822,USD_JPY,H1,48.385236447520704,0.08710936532744995,0.11611827499759828,-0.029008909670148325,153.75545,0.1151628023210106,0.19392857142856965,19.074827592948406,261062 -2024-11-12 08:00:00+00:00,18073,153.822,153.95,153.709,153.939,USD_JPY,H1,53.67770915216164,0.09798994002989048,0.11249260800405672,-0.014502667974166245,153.7628,0.1221003038339233,0.20171428571428254,18.41565378494524,279135 -2024-11-12 09:00:00+00:00,15869,153.938,154.168,153.888,154.106,USD_JPY,H1,58.91920251836299,0.11871984966819582,0.11373805633688455,0.004981793331311268,153.77955000000003,0.14425287550376367,0.21542857142856878,18.732869902160303,295004 -2024-11-12 10:00:00+00:00,11442,154.107,154.124,153.979,154.05,USD_JPY,H1,60.900216919739975,0.12914106263644953,0.11681865759679756,0.01232240503965197,153.78975,0.1559378671359627,0.21585714285713817,19.610861147797387,283562 -2024-11-12 11:00:00+00:00,10992,154.05,154.141,153.932,154.074,USD_JPY,H1,59.58520179372222,0.13774866752456205,0.12100465958235046,0.01674400794221159,153.8004,0.16787664640125943,0.22314285714285273,19.409488991536815,294554 -2024-11-12 12:00:00+00:00,12975,154.075,154.192,154.0,154.078,USD_JPY,H1,59.630459126539584,0.14324182044231293,0.12545209175434296,0.017789728687969963,153.81310000000002,0.17899541301564534,0.23421428571428343,19.74273799484369,307529 -2024-11-12 13:00:00+00:00,15490,154.078,154.398,154.054,154.383,USD_JPY,H1,72.75624004248526,0.17024367164063392,0.13441040773160118,0.03583326390903274,153.83835,0.2196373266298572,0.23721428571428152,20.50728713518197,323019 -2024-11-12 14:00:00+00:00,14205,154.384,154.496,154.292,154.416,USD_JPY,H1,69.3731343283581,0.19209134797392835,0.14594659578006663,0.046144752193861716,153.86875,0.2545218168432061,0.2284285714285679,22.16745464391345,337224 -2024-11-12 15:00:00+00:00,16181,154.416,154.55,154.328,154.522,USD_JPY,H1,67.67485822306182,0.2154752385715426,0.15985232433836183,0.055622914233180776,153.90654999999998,0.29185855890675844,0.2282142857142832,24.82899063878275,353405 -2024-11-12 16:00:00+00:00,13565,154.52,154.77,154.46,154.744,USD_JPY,H1,78.0722891566262,0.2490497940132741,0.1776918182733443,0.0713579757399298,153.96134999999998,0.3397259382856605,0.22735714285714032,27.978917852537702,366970 -2024-11-12 17:00:00+00:00,13589,154.741,154.926,154.712,154.787,USD_JPY,H1,86.44286636539816,0.275946670282309,0.19734278867513724,0.07860388160717177,154.01409999999998,0.3815691838861434,0.2254999999999967,30.748873313462266,380559 -2024-11-12 18:00:00+00:00,9609,154.786,154.86,154.721,154.732,USD_JPY,H1,92.34482758620753,0.2894875657035243,0.21577174408081468,0.07371582162270962,154.064,0.4073941580169818,0.22299999999999898,34.31801644557599,370950 -2024-11-12 19:00:00+00:00,8766,154.732,154.765,154.668,154.75,USD_JPY,H1,91.82019159911626,0.29823342319079416,0.2322640799028106,0.06596934328798357,154.1252,0.4142001295930467,0.21492857142856842,37.433275439154094,379716 -2024-11-12 20:00:00+00:00,8938,154.752,154.786,154.547,154.581,USD_JPY,H1,79.36624907885032,0.2882054377669192,0.24345235147563232,0.04475308629128688,154.1659,0.4171324287854417,0.21614285714285586,41.04983396494931,370778 -2024-11-12 21:00:00+00:00,4502,154.582,154.674,154.512,154.63,USD_JPY,H1,79.5321637426899,0.2809731934859201,0.25095651987768985,0.030016673608230238,154.19935,0.42655391155197364,0.21414285714285647,44.61174635638364,375280 -2024-11-12 22:00:00+00:00,1574,154.614,154.658,154.538,154.54,USD_JPY,H1,72.40865026099908,0.264925444337166,0.2537503047695851,0.011175139567580927,154.23575,0.42280515294292353,0.20549999999999866,48.47171365618656,373706 -2024-11-12 23:00:00+00:00,4284,154.532,154.672,154.509,154.661,USD_JPY,H1,71.42857142857143,0.2589857497694936,0.2547973937695668,0.0041883559999268405,154.2859,0.4099590351645756,0.19714285714285648,50.808985907744216,377990 -2024-11-13 00:00:00+00:00,13805,154.662,154.935,154.656,154.934,USD_JPY,H1,79.23280423280322,0.27315851613647624,0.2584696182429487,0.014688897893527564,154.35739999999998,0.3906595502447147,0.2067142857142861,53.70843467807795,391795 -2024-11-13 01:00:00+00:00,16992,154.934,154.944,154.596,154.605,USD_JPY,H1,64.61199779856815,0.2549046035620677,0.2577566153067725,-0.002852011744704841,154.4069,0.3524967935466166,0.21664285714285622,56.77086344471826,374803 -2024-11-13 02:00:00+00:00,11660,154.604,154.81,154.54,154.74,USD_JPY,H1,66.9917864476382,0.24846744010847033,0.2558987802671121,-0.007431340158641775,154.4547,0.32751699029884274,0.222214285714285,59.0498570015324,386463 -2024-11-13 03:00:00+00:00,9369,154.742,154.901,154.692,154.805,USD_JPY,H1,62.35362997658031,0.24577772583444357,0.2538745693805784,-0.008096843546134824,154.50385,0.30018998806505304,0.2125714285714285,58.766837243920826,395832 -2024-11-13 04:00:00+00:00,9611,154.806,154.893,154.752,154.851,USD_JPY,H1,62.638001162114676,0.24453902974133257,0.25200746145272923,-0.007468431711396661,154.54945,0.27834444297412053,0.20807142857142732,57.94295524356808,405443 -2024-11-13 05:00:00+00:00,11093,154.85,154.936,154.774,154.916,USD_JPY,H1,61.7261904761902,0.24596695696476445,0.2507993605551363,-0.004832403590371848,154.58995,0.26920379188678284,0.20378571428571288,57.333966426169596,416536 -2024-11-13 06:00:00+00:00,15211,154.914,155.158,154.895,155.046,USD_JPY,H1,59.50881612090627,0.25465303149064766,0.25157009474223857,0.003082936748409093,154.63975,0.2558554021893406,0.2004285714285682,56.406162761440974,431747 -2024-11-13 07:00:00+00:00,14445,155.046,155.122,154.927,155.114,USD_JPY,H1,60.1363918164906,0.26398083311073606,0.2540522424159381,0.009928590694797956,154.69175,0.24001510366528814,0.19907142857142698,53.5373848736745,446192 -2024-11-13 08:00:00+00:00,16691,155.114,155.24,154.966,155.01,USD_JPY,H1,58.363417569193174,0.2599843149144192,0.25523865691563435,0.004745657998784847,154.73835,0.2020553011538806,0.20871428571428347,50.252066001166604,429501 -2024-11-13 09:00:00+00:00,13723,155.01,155.066,154.792,154.895,USD_JPY,H1,54.12166003411048,0.2447165663000419,0.2531342387925159,-0.008417672492473993,154.76395,0.18649946377292953,0.22135714285714211,45.71818894476754,415778 -2024-11-13 10:00:00+00:00,10958,154.896,155.002,154.873,154.994,USD_JPY,H1,62.226169330965234,0.23786329811156293,0.2500800506563253,-0.0122167525447624,154.79285,0.1741155922406921,0.2135000000000003,43.330355951773804,426736 -2024-11-13 11:00:00+00:00,8882,154.996,155.036,154.802,154.82,USD_JPY,H1,55.237045203969004,0.2159028937119274,0.24324461926744576,-0.027341725555518365,154.80775,0.16205030891438796,0.21864285714285764,41.04763677455803,417854 -2024-11-13 12:00:00+00:00,13263,154.818,154.963,154.75,154.927,USD_JPY,H1,60.567995630802756,0.20477262936788065,0.23555022128753272,-0.03077759191965207,154.81689999999998,0.16342192724195656,0.22528571428571606,38.564317865598795,431117 -2024-11-13 13:00:00+00:00,35653,154.928,155.072,154.414,154.512,USD_JPY,H1,46.4941176470588,0.1606133324673351,0.2205628435234932,-0.05994951105615809,154.80315000000002,0.17706920291016306,0.26064285714285923,35.62914057648389,395464 -2024-11-13 14:00:00+00:00,33329,154.51,154.886,154.341,154.838,USD_JPY,H1,47.796143250688615,0.1501909393690255,0.20648846269259968,-0.05629752332357418,154.80845000000002,0.17641263676030539,0.2796428571428586,33.82572417883125,428793 -2024-11-13 15:00:00+00:00,28473,154.838,155.143,154.8,154.987,USD_JPY,H1,59.55955955955973,0.1521997090000582,0.1956307119540914,-0.04343100295403321,154.8203,0.18019904196341746,0.2792857142857161,30.173318631467843,457266 -2024-11-13 16:00:00+00:00,18834,154.986,155.303,154.982,155.284,USD_JPY,H1,62.592592592592375,0.175731369434601,0.19165084345019334,-0.01591947401559235,154.85545,0.19868050917136768,0.28292857142857236,27.441046372778413,476100 -2024-11-13 17:00:00+00:00,13048,155.286,155.435,155.22,155.414,USD_JPY,H1,63.685393258426735,0.20253558921172043,0.19382779260249877,0.008707796609221663,154.89465,0.22715894618069868,0.2833571428571438,25.23410832629066,489148 -2024-11-13 18:00:00+00:00,9137,155.414,155.619,155.405,155.596,USD_JPY,H1,65.77721304531994,0.23574646693779755,0.20221152746955856,0.03353493946823899,154.94745,0.26064504495884566,0.28857142857143003,24.1158073647619,498285 -2024-11-13 19:00:00+00:00,10456,155.598,155.628,155.43,155.546,USD_JPY,H1,63.42710997442443,0.25509121197177365,0.2127874643700016,0.04230374760177205,154.99169999999998,0.28357011569329515,0.29114285714285665,22.930255025917198,487829 -2024-11-13 20:00:00+00:00,10126,155.547,155.598,155.503,155.593,USD_JPY,H1,62.085726911179755,0.2710896166340149,0.22444789482280425,0.046641721811210624,155.02465,0.3132467120651546,0.2791428571428603,20.74061883080706,497955 -2024-11-13 21:00:00+00:00,6918,155.59,155.596,155.432,155.477,USD_JPY,H1,57.85374296841201,0.27128107764707465,0.23381453138765834,0.03746654625941631,155.06825,0.3124471955197047,0.27692857142857413,18.573163704487445,491037 -2024-11-13 22:00:00+00:00,1976,155.475,155.492,155.376,155.417,USD_JPY,H1,58.97662108513491,0.2635532356755732,0.23976227224524133,0.02379096343033188,155.1021,0.3116850468168826,0.26564285714285873,16.7670052744267,489061 -2024-11-13 23:00:00+00:00,5894,155.415,155.48,155.346,155.42,USD_JPY,H1,62.18097447795787,0.25473451919449985,0.24275672163509304,0.011977797559406811,155.13285000000002,0.3111679652853483,0.25564285714285767,15.317731385629175,494955 -2024-11-14 00:00:00+00:00,13494,155.422,155.776,155.408,155.724,USD_JPY,H1,65.46610169491512,0.26917302315723646,0.24803998193952173,0.021133041217714726,155.17649999999998,0.33019906274996574,0.2727142857142866,14.254963997785609,508449 -2024-11-14 01:00:00+00:00,13856,155.724,155.921,155.707,155.87,USD_JPY,H1,72.51286449399687,0.2890644661689521,0.2562448787854078,0.03281958738354429,155.2242,0.35829811167590303,0.2712857142857144,14.348621535299817,522305 -2024-11-14 02:00:00+00:00,10271,155.87,156.064,155.836,156.01,USD_JPY,H1,72.89640591966189,0.3125228392844974,0.26750047088522577,0.04502236839927165,155.2724,0.3959289409784191,0.272357142857142,15.45463764343984,532576 -2024-11-14 03:00:00+00:00,9387,156.01,156.01,155.812,155.946,USD_JPY,H1,85.60079443892778,0.3222349795968853,0.2784473726275577,0.0437876069693276,155.314,0.42130561477532297,0.23949999999999655,19.98771933230331,523189 -2024-11-14 04:00:00+00:00,10017,155.945,156.138,155.944,156.057,USD_JPY,H1,83.87993329627595,0.3350267136923435,0.28976324084051486,0.045263472851828634,155.36635,0.44587539856030217,0.21442857142857008,23.194515567701423,533206 -2024-11-14 05:00:00+00:00,10384,156.056,156.134,155.954,156.022,USD_JPY,H1,80.7121661721072,0.33843873654558365,0.29949833998152864,0.03894039656405501,155.42270000000002,0.45430642335825394,0.20278571428571215,28.04836450468446,522822 -2024-11-14 06:00:00+00:00,10361,156.02,156.043,155.816,155.923,USD_JPY,H1,71.48621385339692,0.32935768622775186,0.3054702092307733,0.023887476996978574,155.46914999999998,0.45565779806367007,0.19607142857142687,31.050350141568625,512461 -2024-11-14 07:00:00+00:00,13689,155.922,155.964,155.702,155.838,USD_JPY,H1,64.70180305131807,0.3117089124889958,0.3067179498824178,0.004990962606577998,155.52005,0.4357507103469874,0.1994285714285695,32.58347829032553,498772 -2024-11-14 08:00:00+00:00,13651,155.837,155.96,155.742,155.948,USD_JPY,H1,62.84671532846752,0.30310421611258676,0.30599520312845163,-0.0028909870158648765,155.5711,0.4222125805171449,0.19971428571428515,32.61927015226795,512423 -2024-11-14 09:00:00+00:00,14189,155.95,156.148,155.933,156.11,USD_JPY,H1,69.02834008097275,0.30583154269962165,0.30596247104268565,-0.00013092834306399626,155.651,0.3574799221299607,0.20092857142857262,33.53330185657347,526612 -2024-11-14 10:00:00+00:00,11485,156.11,156.244,156.054,156.056,USD_JPY,H1,65.54734721289556,0.30017538498063345,0.30480505383027523,-0.004629668849641777,155.71189999999999,0.31262267485167683,0.2077142857142848,35.866738515309216,515127 -2024-11-14 11:00:00+00:00,12627,156.058,156.144,155.896,155.922,USD_JPY,H1,64.76443264764404,0.2816336615827595,0.3001707753807721,-0.018537113798012594,155.75865000000002,0.26476171509278074,0.21371428571428502,38.03256607278323,502500 -2024-11-14 12:00:00+00:00,11500,155.924,156.032,155.858,155.998,USD_JPY,H1,69.07419566644748,0.26995984796238304,0.2941285898970943,-0.024168741934711246,155.79435,0.24477514384040963,0.21785714285714367,39.47012963760546,514000 -2024-11-14 13:00:00+00:00,24443,156.002,156.196,155.778,156.022,USD_JPY,H1,69.49481865284973,0.2596517621007308,0.2872332243378216,-0.027581462237090792,155.82475,0.23249875492601801,0.2381428571428594,42.24194065484523,538443 -2024-11-14 14:00:00+00:00,22095,156.023,156.034,155.52,155.8,USD_JPY,H1,52.59917920656712,0.2309072303048083,0.27596802553121896,-0.045060795226410655,155.83495,0.22632800484917873,0.24857142857142783,41.466700361457754,516348 -2024-11-14 15:00:00+00:00,22453,155.8,156.078,155.652,155.954,USD_JPY,H1,52.857142857143025,0.21804006459231573,0.26438243334343836,-0.04634236875112263,155.85535,0.21711269809429587,0.26371428571428623,39.429170373617005,538801 -2024-11-14 16:00:00+00:00,12337,155.956,156.042,155.718,155.972,USD_JPY,H1,48.590504451039216,0.20691006222963892,0.2528879591206785,-0.045977896891039594,155.8743,0.2094124864073148,0.2705714285714314,37.47106856848988,551138 -2024-11-14 17:00:00+00:00,11641,155.972,156.044,155.675,155.744,USD_JPY,H1,43.32010582010588,0.1776439912932517,0.2378391655551932,-0.060195174261941486,155.88764999999998,0.19039910296712792,0.2827857142857186,33.60183980577315,539497 -2024-11-14 18:00:00+00:00,9998,155.743,155.948,155.698,155.893,USD_JPY,H1,44.70967741935529,0.1645763403739693,0.22318660051894842,-0.05861026014497914,155.91145,0.15491473882581014,0.28678571428571736,29.76142870302689,549495 -2024-11-14 19:00:00+00:00,9188,155.894,156.002,155.851,155.925,USD_JPY,H1,46.864899806076984,0.15501534503405878,0.2095523494219705,-0.05453700438791173,155.9367,0.10307947873895822,0.2847142857142911,25.817976322074195,558683 -2024-11-14 20:00:00+00:00,28433,155.924,156.421,155.886,156.302,USD_JPY,H1,60.383561643835264,0.1758320541548244,0.2028082903685413,-0.02697623621371692,155.96560000000002,0.11995192015001492,0.30671428571429055,23.713250632991855,587116 -2024-11-14 21:00:00+00:00,16219,156.302,156.372,156.238,156.278,USD_JPY,H1,62.47165532879805,0.18822312763518312,0.19989125782186967,-0.011668130186686554,155.986,0.1364034263743429,0.2975714285714344,23.441023541746553,570897 -2024-11-14 22:00:00+00:00,816,156.277,156.306,156.226,156.302,USD_JPY,H1,60.54827175208539,0.19770077064524116,0.19945316038654398,-0.0017523897413028178,156.00060000000002,0.15364497693453646,0.2877142857142912,23.901159579032818,571713 -2024-11-14 23:00:00+00:00,6644,156.305,156.542,156.266,156.482,USD_JPY,H1,60.96698113207506,0.21723224855179524,0.20300897801959425,0.014223270532200988,156.0274,0.18679129921808701,0.2920714285714346,23.767690082055648,578357 -2024-11-15 00:00:00+00:00,17045,156.483,156.751,156.438,156.633,USD_JPY,H1,66.09035136642487,0.2421046913725604,0.2108281206901875,0.03127657068237291,156.0562,0.23081266039903262,0.3008571428571502,23.57403107635904,595402 -2024-11-15 01:00:00+00:00,17310,156.632,156.648,156.332,156.554,USD_JPY,H1,68.18181818181833,0.2525306258746127,0.21916862172707258,0.03336200414754015,156.0828,0.2559501596024719,0.3057142857142919,24.296749620235264,578092 -2024-11-15 02:00:00+00:00,12976,156.55,156.558,156.324,156.393,USD_JPY,H1,60.833790455293716,0.24497794634348224,0.22433048665035454,0.0206474596931277,156.1063,0.26201066669838835,0.3100000000000043,25.115720714397856,565116 -2024-11-15 03:00:00+00:00,9703,156.394,156.518,156.276,156.508,USD_JPY,H1,62.69592476489066,0.24544262253596116,0.22855291382747586,0.0168897087084853,156.13979999999998,0.26864917445896225,0.2974285714285746,24.409078596198263,574819 -2024-11-15 04:00:00+00:00,10801,156.508,156.553,156.306,156.358,USD_JPY,H1,65.14657980455972,0.23104380619065523,0.22905109230011175,0.0019927138905434794,156.1603,0.2688860255331144,0.2783571428571463,28.478657965929354,564018 -2024-11-15 05:00:00+00:00,10910,156.359,156.457,156.331,156.457,USD_JPY,H1,64.07386681589189,0.2250271403224815,0.22824630190458572,-0.003219161582104224,156.17765,0.27655536704757155,0.25692857142857406,33.17312061603344,574928 -2024-11-15 06:00:00+00:00,14145,156.456,156.507,156.039,156.102,USD_JPY,H1,53.06026365348386,0.1894297281428976,0.22048298715224812,-0.03105325900935052,156.17995000000002,0.27568030204851135,0.26721428571428874,34.649012185996426,560783 -2024-11-15 07:00:00+00:00,16661,156.101,156.176,155.76,155.778,USD_JPY,H1,50.76576576576558,0.13353512055894612,0.20309341383358775,-0.06955829327464164,156.17275,0.2845108220875158,0.2705714285714314,34.63992756738719,544122 -2024-11-15 08:00:00+00:00,19602,155.776,155.781,155.39,155.52,USD_JPY,H1,41.99227136109942,0.06764008475320793,0.1760027480175118,-0.10836266326430388,156.14884999999998,0.31806177402415997,0.28064285714286136,33.6148030334056,524520 -2024-11-15 09:00:00+00:00,17138,155.52,155.732,155.266,155.368,USD_JPY,H1,38.62801143323778,0.0031167366461204438,0.14142554574323354,-0.1383088090971131,156.11615,0.3623281843135691,0.3031428571428612,33.59898275180475,507382 -2024-11-15 10:00:00+00:00,15381,155.368,155.462,155.22,155.307,USD_JPY,H1,26.676043131739647,-0.05233735929701311,0.10267296473518421,-0.15501032403219733,156.09150000000002,0.39980080565270865,0.2822142857142893,35.50974114149984,492001 -2024-11-15 11:00:00+00:00,11540,155.308,155.514,155.259,155.494,USD_JPY,H1,32.92682926829322,-0.08027048450264829,0.06608427488761771,-0.146354759390266,156.0685,0.42080705666297274,0.2908571428571471,36.28454272880106,503541 -2024-11-15 12:00:00+00:00,13778,155.493,155.63,155.372,155.398,USD_JPY,H1,30.91216216216266,-0.10889876795999953,0.031087666318094266,-0.1399864342780938,156.03979999999999,0.4465232474533078,0.3035714285714306,36.484702114978695,489763 -2024-11-15 13:00:00+00:00,36188,155.393,155.723,155.17,155.329,USD_JPY,H1,24.45724412937585,-0.13559159667491372,-0.002248186280507332,-0.1333434103944064,156.01905000000002,0.47001707414719823,0.32335714285714595,38.2338213264239,453575 -2024-11-15 14:00:00+00:00,34471,155.328,155.782,155.12,155.558,USD_JPY,H1,26.98072805139158,-0.1366917719168157,-0.029136903407769008,-0.10755486850904669,156.00230000000002,0.48059569394917956,0.34828571428571664,40.59430327878453,488046 -2024-11-15 15:00:00+00:00,31193,155.56,155.603,154.843,154.952,USD_JPY,H1,22.012578616352073,-0.18433787192779505,-0.060177097111774214,-0.12416077481602084,155.95364999999998,0.5350007648693812,0.38000000000000356,42.80998352731859,456853 -2024-11-15 16:00:00+00:00,26404,154.952,155.02,154.53,154.6,USD_JPY,H1,20.63544055027829,-0.2476464930539919,-0.09767097630021776,-0.14997551675377413,155.86854999999997,0.6071707879823288,0.3982857142857199,45.09342233568379,430449 -2024-11-15 17:00:00+00:00,15281,154.6,154.613,154.186,154.284,USD_JPY,H1,15.826674861708284,-0.31963305954258203,-0.14206339294869064,-0.1775696665938914,155.76885,0.6939140910652354,0.4115000000000058,48.44528379432664,415168 -2024-11-15 18:00:00+00:00,14671,154.285,154.308,153.862,153.926,USD_JPY,H1,14.875794338532287,-0.4009486536912732,-0.19384044509720716,-0.20710820859406603,155.65005,0.7940037435214221,0.4257142857142924,49.78165623764636,400497 -2024-11-15 19:00:00+00:00,15106,153.925,154.347,153.915,154.218,USD_JPY,H1,19.370725034199666,-0.43679478980561726,-0.24243131403888918,-0.19436347576672808,155.53685000000002,0.8297348514273606,0.44757142857143606,50.77035753647982,415603 -2024-11-15 20:00:00+00:00,13933,154.217,154.424,154.176,154.292,USD_JPY,H1,23.177237700059422,-0.453998517076883,-0.28474475464648796,-0.16925376243039503,155.4198,0.8320814484356978,0.43185714285715043,53.72625420600823,429536 -2024-11-15 21:00:00+00:00,5857,154.292,154.482,154.288,154.346,USD_JPY,H1,26.93298969072194,-0.4579957561973629,-0.319394954956663,-0.1386008012406999,155.3094,0.8200675453497087,0.416000000000007,57.559670779744074,435393 -2024-11-17 22:00:00+00:00,2284,154.407,154.589,154.325,154.578,USD_JPY,H1,34.69785575048736,-0.43740104888493647,-0.34299617374231767,-0.0944048751426188,155.21865,0.7938497322269309,0.4069285714285777,60.64188280403018,437677 -2024-11-17 23:00:00+00:00,8790,154.57,154.752,154.394,154.642,USD_JPY,H1,37.859531772575295,-0.41117555399475236,-0.3566320497928046,-0.05454350420194776,155.12535,0.7423204922040472,0.3992142857142917,62.121873962985305,446467 -2024-11-18 00:00:00+00:00,23206,154.644,154.662,153.838,154.272,USD_JPY,H1,34.31342831160967,-0.41545842205522376,-0.3683973242452884,-0.04706109780993534,155.02105,0.7056525516655976,0.44078571428572183,62.19555812949487,423261 -2024-11-18 01:00:00+00:00,33693,154.272,155.147,154.096,154.601,USD_JPY,H1,37.02412089508864,-0.38783436230713164,-0.3722847318576571,-0.01554963044947455,154.92825,0.6242139372534546,0.4976428571428621,61.38168450312144,456954 -2024-11-18 02:00:00+00:00,16673,154.6,154.926,154.589,154.739,USD_JPY,H1,40.539764570772455,-0.3507632686320221,-0.36798043921253015,0.017217170580508034,154.8601,0.560472347773927,0.5032857142857198,62.32697426614282,473627 -2024-11-18 03:00:00+00:00,11701,154.74,154.894,154.622,154.656,USD_JPY,H1,40.377466399771244,-0.3243427448850298,-0.35925290034703006,0.03491015546200027,154.804,0.5183286906649817,0.4832142857142888,61.368675443851494,461926 -2024-11-18 04:00:00+00:00,13250,154.656,154.696,154.416,154.65,USD_JPY,H1,36.133170433720544,-0.3004253232042515,-0.3474873849184744,0.04706206171422289,154.7605,0.4908554830605389,0.4559285714285742,59.97289749263659,448676 -2024-11-18 05:00:00+00:00,15015,154.65,154.764,154.417,154.596,USD_JPY,H1,43.46069066862619,-0.2825706444149887,-0.3345040368177773,0.0519333924027886,154.7219,0.47050072989259234,0.4264285714285734,57.68695551507236,433661 -2024-11-18 06:00:00+00:00,18276,154.598,154.63,154.296,154.588,USD_JPY,H1,49.74768713204373,-0.26599993431611324,-0.32080321631744446,0.05480328200133122,154.68595,0.450484356277153,0.4152857142857158,54.76639911457182,415385 -2024-11-18 07:00:00+00:00,20111,154.588,154.768,154.476,154.57,USD_JPY,H1,56.87499999999989,-0.25142174339174517,-0.3069269217323046,0.05550517834055946,154.63975,0.4086948256505135,0.4056428571428593,50.24159133982126,395274 -2024-11-18 08:00:00+00:00,22901,154.568,154.956,154.504,154.955,USD_JPY,H1,74.41860465116272,-0.20642262807044176,-0.2868260629999321,0.08040343492949031,154.61759999999998,0.37614560448929474,0.40607142857143075,44.9521036909796,418175 -2024-11-18 09:00:00+00:00,20140,154.956,154.974,154.556,154.778,USD_JPY,H1,64.05622489959792,-0.18293417443612725,-0.26604768528717115,0.0831135108510439,154.59005,0.3397121807892072,0.405071428571428,39.76241337216148,398035 -2024-11-18 10:00:00+00:00,17790,154.78,155.053,154.776,155.002,USD_JPY,H1,66.57329598506024,-0.144577874016818,-0.24175372303310053,0.09717584901628254,154.56225,0.27241625944146897,0.4071428571428543,35.10883436822429,415825 -2024-11-18 11:00:00+00:00,14350,155.002,155.127,154.951,155.059,USD_JPY,H1,66.62004662004595,-0.10833202184767288,-0.215069382796015,0.10673736094834213,154.5676,0.2813767655609936,0.405857142857142,31.02588053183437,430175 -2024-11-18 12:00:00+00:00,14708,155.058,155.282,155.032,155.27,USD_JPY,H1,66.29001883239127,-0.061867812634261554,-0.18442906876366433,0.12256125612940277,154.6011,0.32233978474463193,0.4048571428571413,28.106784768959354,444883 -2024-11-18 13:00:00+00:00,18827,155.27,155.36,154.868,154.906,USD_JPY,H1,55.445544554455445,-0.05379622065640888,-0.15830249914221323,0.10450627848580435,154.6322,0.32013345899190715,0.41442857142857087,25.706559129530397,426056 -2024-11-18 14:00:00+00:00,22049,154.905,154.987,154.585,154.803,USD_JPY,H1,62.3087621696797,-0.055075785680514855,-0.13765715644987356,0.0825813707693587,154.67605,0.27522440124360364,0.38428571428571195,22.86777611306684,404007 -2024-11-18 15:00:00+00:00,21089,154.803,155.056,154.754,154.995,USD_JPY,H1,59.75247524752442,-0.04013441029277942,-0.11815260721845473,0.07801819692567531,154.7149,0.2616701217543371,0.3307857142857143,22.077573948818507,425096 -2024-11-18 16:00:00+00:00,17654,154.996,155.069,154.79,154.8,USD_JPY,H1,51.468464130958225,-0.043526387863153104,-0.10322736334739441,0.0597009754842413,154.7403,0.24240551059402837,0.3266428571428577,18.890391167029936,407442 -2024-11-18 17:00:00+00:00,13429,154.799,154.854,154.643,154.703,USD_JPY,H1,51.123864179818156,-0.05342578467340786,-0.0932670476125971,0.03984126293918924,154.75815,0.2243111736383659,0.32228571428571634,16.360122074930473,394013 -2024-11-18 18:00:00+00:00,11303,154.704,154.792,154.593,154.631,USD_JPY,H1,49.55957348168742,-0.06631647123788298,-0.08787693233765428,0.021560461099771305,154.7608,0.22237559499775544,0.31650000000000283,12.967948339020325,382710 -2024-11-18 19:00:00+00:00,11535,154.63,154.758,154.574,154.74,USD_JPY,H1,53.25497287522601,-0.06696511203637101,-0.08369456827739763,0.01672945624102662,154.7657,0.22069342867684727,0.30485714285714494,10.334014730103755,394245 -2024-11-18 20:00:00+00:00,7447,154.742,154.743,154.592,154.594,USD_JPY,H1,50.12765957446808,-0.07835689486097408,-0.08262703359411291,0.004270138733138834,154.7818,0.19275880753477984,0.29178571428571487,8.111778995481972,386798 -2024-11-18 21:00:00+00:00,6427,154.594,154.688,154.569,154.685,USD_JPY,H1,52.37309120924481,-0.07912986550866208,-0.08192759997702276,0.0027977344683606797,154.786,0.18949961807523605,0.27942857142857186,7.592465403747555,393225 -2024-11-18 22:00:00+00:00,773,154.663,154.669,154.632,154.65,USD_JPY,H1,42.64351181862052,-0.08162572723534822,-0.08186722542868785,0.00024149819333962874,154.78154999999998,0.19169369066331968,0.2497857142857153,9.010961793985443,392452 -2024-11-18 23:00:00+00:00,3069,154.65,154.66,154.432,154.616,USD_JPY,H1,45.80310880829087,-0.08536321745157238,-0.08256642383326476,-0.002796793618307619,154.77955,0.19327468178493362,0.2362142857142889,11.44531717865141,389383 -2024-11-19 00:00:00+00:00,15072,154.621,154.621,154.3,154.377,USD_JPY,H1,33.93316195372792,-0.10638417739366446,-0.0873299745453447,-0.019054202848319754,154.76590000000002,0.21167052348821297,0.23935714285714685,14.911989853478875,374311 -2024-11-19 01:00:00+00:00,15344,154.378,154.406,154.042,154.116,USD_JPY,H1,28.059562587250852,-0.142461747976256,-0.09835632923152696,-0.044105418744729036,154.74190000000002,0.2547721169326675,0.25278571428571744,19.420070008617877,358967 -2024-11-19 02:00:00+00:00,13114,154.115,154.252,153.974,154.157,USD_JPY,H1,21.879737241031435,-0.16583349988027862,-0.1118517633612773,-0.05398173651900132,154.72035,0.28491942995574304,0.2547857142857189,25.240915484635796,372081 -2024-11-19 03:00:00+00:00,11597,154.156,154.218,153.951,154.18,USD_JPY,H1,27.83882783882831,-0.18042010322525925,-0.12556543133407372,-0.054854671891185536,154.70085,0.30814987380195,0.23871428571428868,31.496184263252474,383678 -2024-11-19 04:00:00+00:00,9537,154.173,154.474,154.113,154.42,USD_JPY,H1,39.21126760563356,-0.17064698501150133,-0.13458174206955925,-0.03606524294194208,154.6741,0.3081475893615977,0.23578571428571746,34.354322497302434,393215 -2024-11-19 05:00:00+00:00,9431,154.424,154.522,154.299,154.424,USD_JPY,H1,32.01008191556423,-0.16072620025695983,-0.1398106337070394,-0.02091556654992044,154.65640000000002,0.31200816451507,0.23014285714285773,36.838823712458336,402646 -2024-11-19 06:00:00+00:00,10775,154.422,154.583,154.342,154.512,USD_JPY,H1,40.270270270270025,-0.1441019250190152,-0.14066889196943455,-0.003433033049580647,154.6319,0.3025366267305245,0.22742857142857126,40.18334276782834,413421 -2024-11-19 07:00:00+00:00,16451,154.512,154.657,154.446,154.529,USD_JPY,H1,43.78571428571407,-0.12807889541642226,-0.1381508926588321,0.010071997242409841,154.6054,0.285912095412039,0.22742857142857126,41.92140208683325,429872 -2024-11-19 08:00:00+00:00,38882,154.53,154.576,153.28,153.752,USD_JPY,H1,29.12114014251793,-0.17604855717601708,-0.14573042556226912,-0.030318131613747967,154.5295,0.30127369963575823,0.30578571428571266,46.37349474424924,390990 -2024-11-19 09:00:00+00:00,45948,153.752,154.083,153.348,153.766,USD_JPY,H1,25.771144278606073,-0.21050856502557735,-0.15868605345493078,-0.05182251157064657,154.4725,0.33251442388579006,0.34514285714285464,50.6595510111569,436938 -2024-11-19 10:00:00+00:00,27070,153.76,153.829,153.438,153.78,USD_JPY,H1,28.328008519701513,-0.23399137955127003,-0.17374711867419865,-0.06024426087707138,154.42135000000002,0.3567949838675475,0.3622857142857145,54.698713641615036,464008 -2024-11-19 11:00:00+00:00,20063,153.778,154.182,153.726,154.083,USD_JPY,H1,35.59808612440145,-0.22555208746112498,-0.18410811243158393,-0.04144397502954106,154.37575,0.3373713984808828,0.3863571428571423,56.7643015806561,484071 -2024-11-19 12:00:00+00:00,19580,154.081,154.212,153.966,153.977,USD_JPY,H1,34.42850532160993,-0.22482555277557026,-0.1922516005003812,-0.032573952275189055,154.3346,0.3330652535831948,0.4012857142857119,57.12816688061412,464491 -2024-11-19 13:00:00+00:00,29779,153.975,154.014,153.411,153.474,USD_JPY,H1,28.28897338402969,-0.26181957200739703,-0.20616519480178438,-0.05565437720561264,154.27315,0.37255226053336327,0.42807142857142616,57.12564651339834,434712 -2024-11-19 14:00:00+00:00,41317,153.473,154.137,153.444,154.053,USD_JPY,H1,44.54545454545428,-0.24163175719462515,-0.21325850728035253,-0.02837324991427262,154.24425000000002,0.36568707860688326,0.45464285714285574,55.45611902157994,476029 -2024-11-19 15:00:00+00:00,29329,154.052,154.24,153.85,153.962,USD_JPY,H1,47.249999999999545,-0.23032071416815825,-0.2166709486579137,-0.01364976551024455,154.20535,0.3512718657542624,0.45649999999999935,51.87603413788558,446700 -2024-11-19 16:00:00+00:00,19548,153.96,154.496,153.918,154.348,USD_JPY,H1,53.03656597774248,-0.18804202559564942,-0.21094516404546085,0.022903138449811428,154.19305000000003,0.3411066317103355,0.4779285714285696,45.92277250869033,466248 -2024-11-19 17:00:00+00:00,13292,154.349,154.759,154.258,154.726,USD_JPY,H1,57.79999999999989,-0.12262092172150574,-0.19328031558066983,0.07065939385916409,154.1951,0.34432678784601356,0.4946428571428539,39.33717654000651,479540 -2024-11-19 18:00:00+00:00,9825,154.727,154.799,154.58,154.589,USD_JPY,H1,52.487488960847955,-0.08089645661530653,-0.17080354378759718,0.08990708717229065,154.19205000000002,0.3403322640982509,0.48449999999999704,36.26206408825392,469715 -2024-11-19 19:00:00+00:00,9666,154.588,154.707,154.564,154.696,USD_JPY,H1,53.88571428571416,-0.038748839149064906,-0.14439260285989075,0.10564376371082584,154.19605,0.34600022434878197,0.4787857142857125,33.163901725086056,479381 -2024-11-19 20:00:00+00:00,7270,154.694,154.736,154.636,154.689,USD_JPY,H1,52.58847616262054,-0.0058440238788932675,-0.11668288706369126,0.11083886318479799,154.21165,0.36128400766821833,0.46871428571428453,30.572807683026685,472111 -2024-11-19 21:00:00+00:00,4123,154.688,154.73,154.624,154.656,USD_JPY,H1,51.848617176128236,0.017370221975255618,-0.08987226525590189,0.10724248723115751,154.23864999999998,0.37372340952694943,0.46121428571428325,29.350850930637836,467988 -2024-11-19 22:00:00+00:00,1273,154.658,154.674,154.552,154.586,USD_JPY,H1,65.2859237536657,0.029776024602028883,-0.06594260728431574,0.09571863188634462,154.26010000000002,0.3810303068303529,0.37735714285714195,27.681695009282322,466715 -2024-11-19 23:00:00+00:00,5015,154.586,154.762,154.53,154.722,USD_JPY,H1,66.77192982456157,0.05000534546798008,-0.04275301673385658,0.09275836220183666,154.28719999999998,0.394084228222623,0.3414285714285715,25.940289547894746,471730 -2024-11-20 00:00:00+00:00,14357,154.722,154.942,154.589,154.923,USD_JPY,H1,68.81791241356599,0.08131885502999125,-0.01793864238108701,0.09925749741107827,154.31234999999998,0.41831117539481644,0.338714285714285,24.34080182898686,486087 -2024-11-20 01:00:00+00:00,11438,154.924,154.995,154.696,154.776,USD_JPY,H1,62.02707393266248,0.09319902514235423,0.004288891123601236,0.088910134018753,154.32995,0.4304838740022929,0.32750000000000057,23.68483426168113,474649 -2024-11-20 02:00:00+00:00,9732,154.776,154.911,154.728,154.869,USD_JPY,H1,65.55090655509062,0.10886355699508954,0.0252038242978989,0.08365973269719064,154.3478,0.44556712529593484,0.3230000000000014,23.298829125042783,484381 -2024-11-20 03:00:00+00:00,7832,154.866,154.987,154.822,154.956,USD_JPY,H1,80.2202283849922,0.12683589896525405,0.04553023923136993,0.08130565973388412,154.36915000000002,0.4645330734215006,0.2917142857142859,26.63660555212962,492213 -2024-11-20 04:00:00+00:00,7779,154.954,155.142,154.944,155.055,USD_JPY,H1,75.40567951318509,0.1473688062186227,0.06589795262882048,0.08147085358980222,154.4343,0.4647950425356645,0.2563571428571428,30.620858921929862,499992 -2024-11-20 05:00:00+00:00,8796,155.054,155.191,154.99,155.19,USD_JPY,H1,80.45634920634998,0.17254565599014882,0.08722749330108615,0.08531816268906267,154.5055,0.46609932303567175,0.24285714285714124,35.388913026725426,508788 -2024-11-20 06:00:00+00:00,11906,155.19,155.462,155.16,155.36,USD_JPY,H1,78.11111111111184,0.20386602938964415,0.11055520051879775,0.09331082887084641,154.5845,0.47053849329394154,0.22314285714285478,41.07108378626104,520694 -2024-11-20 07:00:00+00:00,15586,155.36,155.682,155.326,155.658,USD_JPY,H1,77.09302325581451,0.2498536036554242,0.13841488114612305,0.11143872250930115,154.66325,0.5121467588678827,0.21278571428571322,47.414390731345534,536280 -2024-11-20 08:00:00+00:00,13121,155.658,155.748,155.58,155.634,USD_JPY,H1,82.51400124455584,0.28112189000435706,0.16695628291776984,0.11416560708658721,154.7461,0.529037149216047,0.2091428571428549,53.26354241366403,523159 -2024-11-20 09:00:00+00:00,13055,155.634,155.852,155.6,155.756,USD_JPY,H1,82.67570900123397,0.31214836061954543,0.19599469845812498,0.11615366216142045,154.86020000000002,0.4844426640218442,0.21692857142856983,59.169218135406076,536214 -2024-11-20 10:00:00+00:00,10020,155.758,155.85,155.668,155.752,USD_JPY,H1,82.82890673255262,0.332580514399325,0.223311861646365,0.10926865275296002,154.94514999999998,0.4844103604965024,0.22278571428571223,64.97394336310944,526194 -2024-11-20 11:00:00+00:00,10304,155.751,155.868,155.714,155.84,USD_JPY,H1,85.36439665472022,0.35181846377781767,0.24901318207265555,0.10280528170516212,155.03905,0.4654507125116638,0.22621428571428379,70.67381500650006,536498 -2024-11-20 12:00:00+00:00,11284,155.839,155.89,155.684,155.69,USD_JPY,H1,81.47092360319296,0.35091579205123935,0.2693937040683723,0.08152208798286703,155.10615,0.4572446396783785,0.232214285714282,74.8874696903746,525214 -2024-11-20 13:00:00+00:00,13248,155.693,155.79,155.63,155.732,USD_JPY,H1,80.42168674698826,0.3495599575981885,0.28542695477433555,0.06413300282385292,155.15645,0.4684213661909513,0.22707142857142465,78.65229041171752,538462 -2024-11-20 14:00:00+00:00,19372,155.734,155.842,155.39,155.602,USD_JPY,H1,71.36563876652029,0.3341437345070801,0.2951703107208845,0.038973423786195616,155.2071,0.4584963869330128,0.23414285714285452,79.86217485240812,519090 -2024-11-20 15:00:00+00:00,24590,155.6,155.61,155.058,155.532,USD_JPY,H1,75.00000000000047,0.3126735456521317,0.298670957707134,0.014002587944997702,155.2489,0.44742254841561035,0.2522142857142841,79.36507775054024,494500 -2024-11-20 16:00:00+00:00,16858,155.532,155.614,155.234,155.384,USD_JPY,H1,66.43267389916988,0.28048267352190237,0.29503330087008767,-0.014550627348185297,155.28365000000002,0.42822550317284513,0.26628571428571285,78.63208387482858,477642 -2024-11-20 17:00:00+00:00,11725,155.383,155.442,155.184,155.22,USD_JPY,H1,58.02919708029225,0.23898289993243793,0.2838232206825577,-0.04484032075011979,155.31185,0.40251620103296903,0.2729285714285713,73.05237622773545,465917 -2024-11-20 18:00:00+00:00,12833,155.219,155.444,155.2,155.342,USD_JPY,H1,58.60827834433131,0.21347757418647006,0.2697540913833402,-0.05627651719687016,155.34965,0.364463596462978,0.276214285714285,66.77964960256142,478750 -2024-11-20 19:00:00+00:00,9687,155.344,155.378,155.24,155.369,USD_JPY,H1,55.74085952533683,0.19321582240044677,0.25444643758676155,-0.061230615186314785,155.382,0.3331934794166088,0.27171428571428385,60.4996213191398,488437 -2024-11-20 20:00:00+00:00,8344,155.368,155.521,155.368,155.478,USD_JPY,H1,53.93858477970613,0.1838344975265045,0.24032404957471015,-0.05648955204820566,155.40975,0.3156008263105644,0.2610714285714266,54.7698165327315,496781 -2024-11-20 21:00:00+00:00,9765,155.479,155.546,155.354,155.43,USD_JPY,H1,40.865384615385544,0.17056041681303213,0.22637132302237456,-0.055810906209342426,155.44245,0.27813844998032194,0.24935714285713978,50.547707150243795,487016 -2024-11-20 22:00:00+00:00,1516,155.43,155.431,155.333,155.348,USD_JPY,H1,39.05053598774998,0.15167547703106266,0.2114321538241122,-0.05975667679304955,155.4664,0.24478377136960988,0.2443571428571423,47.04040825495594,485500 -2024-11-20 23:00:00+00:00,3586,155.346,155.374,155.236,155.278,USD_JPY,H1,30.94098883572562,0.12956704299071475,0.19505913165743272,-0.06549208866671796,155.4825,0.21863993469115717,0.23621428571428485,44.80679992066007,481914 -2024-11-21 00:00:00+00:00,15582,155.278,155.303,154.927,155.077,USD_JPY,H1,26.740179186767705,0.09473488477686942,0.17499428228132008,-0.08025939750445066,155.4836,0.21642001072395403,0.2500714285714289,43.238482833931826,466332 -2024-11-21 01:00:00+00:00,12662,155.078,155.092,154.88,155.042,USD_JPY,H1,21.459227467811587,0.06357310971156949,0.15271004776736996,-0.08913693805580047,155.4762,0.22914362306009858,0.25421428571428756,41.780324581544185,453670 -2024-11-21 02:00:00+00:00,10763,155.04,155.088,154.876,154.966,USD_JPY,H1,22.658610271903967,0.032371455632386414,0.12864232934037326,-0.09627087370798684,155.45649999999998,0.2551231900363609,0.254642857142859,39.82803078410165,442907 -2024-11-21 03:00:00+00:00,10425,154.964,155.037,154.891,154.927,USD_JPY,H1,19.530658591976135,0.004445698668547493,0.1038030032060081,-0.09935730453746061,155.41995,0.2762263516708887,0.25364285714286033,38.38700227170333,432482 -2024-11-21 04:00:00+00:00,9234,154.926,155.11,154.862,155.058,USD_JPY,H1,29.425113464447875,-0.007033976430392386,0.08163560727872801,-0.0886695837091204,155.39114999999998,0.2826864126265434,0.2390714285714312,38.23670911138777,441716 -2024-11-21 05:00:00+00:00,12030,155.058,155.268,155.032,155.19,USD_JPY,H1,37.64450867052015,-0.0054179500671125425,0.06422489580955991,-0.06964284587667245,155.36285,0.27238213769672176,0.21650000000000041,37.285441691347856,453746 -2024-11-21 06:00:00+00:00,18685,155.185,155.185,154.558,154.762,USD_JPY,H1,31.310096153846757,-0.03823253966777429,0.04373340871409308,-0.08196594838186737,155.31335,0.2874778297892557,0.23414285714285857,38.83132460191346,435061 -2024-11-21 07:00:00+00:00,27604,154.762,155.048,154.61,154.907,USD_JPY,H1,40.48632218845043,-0.05193932593985551,0.024598861783303366,-0.07653818772315887,155.2667,0.2728468048851396,0.2469999999999999,40.57298483213268,462665 -2024-11-21 08:00:00+00:00,32484,154.906,155.039,154.405,154.442,USD_JPY,H1,27.364185110664152,-0.09918037699705451,-0.0001569859727682081,-0.0990233910242863,155.2043,0.310986054838987,0.27485714285714175,43.65294693731123,430181 -2024-11-21 09:00:00+00:00,26901,154.443,154.451,154.084,154.398,USD_JPY,H1,25.785536159601534,-0.1385723072897349,-0.027840050236161547,-0.11073225705357337,155.1376,0.33405079977526175,0.2912142857142856,47.55661904263896,403280 -2024-11-21 10:00:00+00:00,15394,154.398,154.438,154.2,154.403,USD_JPY,H1,21.72540768016846,-0.16745689874653635,-0.05576341993823651,-0.11169347880829984,155.07765,0.35335225824849925,0.2972857142857147,51.95131745184759,418674 -2024-11-21 11:00:00+00:00,13713,154.402,154.59,154.304,154.536,USD_JPY,H1,27.492447129909763,-0.17756924933237883,-0.08012458581706497,-0.09744466351531386,155.02785,0.3561230235226223,0.30400000000000205,53.99601369554489,432387 -2024-11-21 12:00:00+00:00,14178,154.536,154.718,154.302,154.443,USD_JPY,H1,27.34101151727637,-0.1908872533602448,-0.10227711932570094,-0.08861013403454387,154.9808,0.3685377363933749,0.32671428571428657,54.50919945499858,418209 -2024-11-21 13:00:00+00:00,24433,154.442,154.697,154.106,154.254,USD_JPY,H1,25.8034026465033,-0.2142231567625572,-0.1246663268130722,-0.08955682994948501,154.9325,0.39768706288733535,0.35907142857142965,53.715524876486064,393776 -2024-11-21 14:00:00+00:00,27241,154.255,154.546,153.962,154.1,USD_JPY,H1,26.389560173997523,-0.24234988271297198,-0.14820303799305218,-0.0941468447199198,154.8704,0.4263173268185538,0.3739285714285724,51.94538669141053,366535 -2024-11-21 15:00:00+00:00,24821,154.101,154.354,153.908,154.322,USD_JPY,H1,34.04255319148979,-0.24391526762894955,-0.16734548392023166,-0.07656978370871789,154.81805,0.42615248998985616,0.39064285714285873,49.947388933322166,391356 -2024-11-21 16:00:00+00:00,23690,154.324,154.67,154.308,154.656,USD_JPY,H1,43.83452665075589,-0.21571817298899987,-0.1770200217339853,-0.03869815125501458,154.77695,0.3978531168901458,0.40135714285714486,46.445917471720044,415046 -2024-11-21 17:00:00+00:00,17158,154.656,154.696,154.406,154.443,USD_JPY,H1,40.99702380952433,-0.20815955840799916,-0.18324792906878806,-0.024911629339211094,154.7276,0.3730242548740806,0.41164285714285753,42.98551792085239,397888 -2024-11-21 18:00:00+00:00,11446,154.444,154.702,154.434,154.552,USD_JPY,H1,40.51012753188305,-0.19117022153216112,-0.1848323875614627,-0.0063378339706984255,154.68779999999998,0.3447388943107442,0.41307142857142765,41.11846422020917,409334 -2024-11-21 19:00:00+00:00,11004,154.551,154.65,154.482,154.508,USD_JPY,H1,36.7726920093098,-0.17919088099941405,-0.18370408624905296,0.004513205249638913,154.6493,0.3172580055611217,0.408214285714286,43.1058560546984,398330 -2024-11-21 20:00:00+00:00,9474,154.508,154.594,154.454,154.506,USD_JPY,H1,44.052044609665465,-0.1679228406276536,-0.1805478371247731,0.012624996497119484,154.62075,0.30207229439313055,0.37342857142857,41.35026520080523,388856 -2024-11-21 21:00:00+00:00,6031,154.506,154.571,154.452,154.544,USD_JPY,H1,41.1246943765282,-0.15414961423232398,-0.17526819254628329,0.021118578313959302,154.59584999999998,0.2855967482637473,0.35064285714285653,40.156328774124056,394887 -2024-11-21 22:00:00+00:00,675,154.523,154.553,154.476,154.514,USD_JPY,H1,52.23602484472056,-0.14399509652395182,-0.169013573341817,0.025018476817865176,154.57325,0.2723405134208975,0.3108571428571431,37.49921727688095,394212 -2024-11-21 23:00:00+00:00,8015,154.508,154.548,154.113,154.16,USD_JPY,H1,43.80208333333339,-0.16263762428494033,-0.16773838353044165,0.005100759245501324,154.53490000000002,0.2739035365882329,0.31571428571428684,34.26472729866857,386197 -2024-11-22 00:00:00+00:00,20161,154.16,154.42,153.967,154.333,USD_JPY,H1,48.32375478927221,-0.16158960330810146,-0.16650862748597361,0.0049190241778721555,154.49865,0.2477571550566833,0.3310714285714279,30.534581727925737,406358 -2024-11-22 01:00:00+00:00,15157,154.332,154.444,154.224,154.415,USD_JPY,H1,47.02994599901795,-0.15238571675010348,-0.1636840453387996,0.011298328588696116,154.4599,0.1871236292362416,0.326357142857142,28.465317847140152,421515 -2024-11-22 02:00:00+00:00,10149,154.416,154.497,154.348,154.394,USD_JPY,H1,48.75318066157744,-0.14511331882857803,-0.1599699000367553,0.01485658120817726,154.4415,0.17344755005045243,0.3072857142857138,27.733256512347342,411366 -2024-11-22 03:00:00+00:00,11459,154.394,154.485,154.188,154.268,USD_JPY,H1,50.368033648791005,-0.14781314018546254,-0.15753854806649675,0.00972540788103421,154.40955000000002,0.13852473648572025,0.286285714285715,26.684463699372305,399907 -2024-11-22 04:00:00+00:00,10721,154.268,154.45,154.268,154.426,USD_JPY,H1,58.5519412381951,-0.13563991600429404,-0.1531588216540562,0.017518905649762162,154.40875,0.13837358847286435,0.2575714285714282,25.654779637176393,410628 -2024-11-22 05:00:00+00:00,12529,154.425,154.734,154.425,154.706,USD_JPY,H1,59.775967413441755,-0.10222055328677015,-0.142971167980599,0.040750614693828846,154.42415,0.15343377617428086,0.24778571428571183,22.428961233506183,423157 -2024-11-22 06:00:00+00:00,13402,154.71,154.956,154.681,154.906,USD_JPY,H1,56.83060109289624,-0.058917969353814215,-0.12616052825524204,0.06724255890142783,154.44930000000002,0.187276631828549,0.24157142857142486,21.241562272570803,436559 -2024-11-22 07:00:00+00:00,17463,154.906,154.93,154.658,154.73,USD_JPY,H1,58.00334634690398,-0.03835989967012665,-0.10860040253821897,0.07024050286809232,154.459,0.1967862853255356,0.24028571428571258,20.412886740120626,419096 -2024-11-22 08:00:00+00:00,28279,154.73,154.871,154.4,154.514,USD_JPY,H1,49.00000000000046,-0.03904676929494144,-0.09468967588956347,0.055642906594622024,154.46255,0.19712258405586613,0.2547857142857128,20.455280078785346,390817 -2024-11-22 09:00:00+00:00,31886,154.512,154.824,154.25,154.5,USD_JPY,H1,49.78609625668424,-0.04025674670134549,-0.08380309005191988,0.04354634335057439,154.47485,0.19100462239554775,0.2837857142857132,20.496438501295195,358931 -2024-11-22 10:00:00+00:00,20136,154.5,154.555,154.252,154.328,USD_JPY,H1,45.637254901960894,-0.05446676607442669,-0.07793582525642125,0.02346905918199456,154.48625,0.1734519120000947,0.2954285714285711,21.85666322053095,338795 -2024-11-22 11:00:00+00:00,14633,154.328,154.47,154.278,154.316,USD_JPY,H1,44.339622641509244,-0.0659365332063544,-0.07553596684640787,0.009599433640053473,154.48595,0.17375587074569068,0.3006428571428574,22.921933948722945,324162 -2024-11-22 12:00:00+00:00,14259,154.316,154.55,154.294,154.498,USD_JPY,H1,49.6306555863338,-0.05965288599395535,-0.07235935067591737,0.012706464681962015,154.47805,0.16914816764770754,0.3134285714285718,24.23548193360458,338421 -2024-11-22 13:00:00+00:00,21414,154.498,154.569,154.192,154.276,USD_JPY,H1,52.85152409046253,-0.07175939731195058,-0.072239360003124,0.0004799626911734245,154.4697,0.17499055609895886,0.30928571428571316,24.38465494665713,317007 -2024-11-22 14:00:00+00:00,26562,154.278,155.028,154.272,154.88,USD_JPY,H1,61.09533468559855,-0.03224444866009435,-0.06424037773451807,0.031995929074423723,154.48610000000002,0.1970847800144141,0.3309285714285721,24.79123417247376,343569 -2024-11-22 15:00:00+00:00,31926,154.885,154.916,154.6,154.898,USD_JPY,H1,60.058309037901154,0.0005179122342156006,-0.05128871974077134,0.05180663197498694,154.50560000000002,0.2175924243739863,0.33778571428571524,23.949620266595424,375495 -2024-11-22 16:00:00+00:00,20270,154.899,154.922,154.714,154.734,USD_JPY,H1,56.68238993710711,0.0130979053880651,-0.03841139471500405,0.05150930010306915,154.517,0.22350674071484505,0.3420000000000008,22.395029425529042,355225 -2024-11-22 17:00:00+00:00,10745,154.734,154.828,154.674,154.756,USD_JPY,H1,60.00000000000023,0.02455974725629062,-0.025817166320745117,0.050376913577035734,154.5276,0.22979336252551888,0.33178571428571296,21.65107403851861,365970 -2024-11-22 18:00:00+00:00,8457,154.758,154.808,154.708,154.745,USD_JPY,H1,56.95595290013136,0.03238244675699775,-0.014177243705196546,0.0465596904621943,154.53915,0.23482407185798995,0.32592857142857057,21.267304612212758,357513 -2024-11-22 19:00:00+00:00,8309,154.744,154.818,154.662,154.804,USD_JPY,H1,52.36486486486525,0.04284886435149815,-0.0027720220938576064,0.04562088644535576,154.57135,0.2240017093163915,0.3149999999999998,21.4963297225083,365822 -2024-11-22 20:00:00+00:00,7882,154.805,154.89,154.744,154.84,USD_JPY,H1,48.2704402515722,0.05343253780185364,0.008468889885284643,0.044963647916569,154.5967,0.22429634998997186,0.3057857142857147,21.67590976330391,373704 -2024-11-22 21:00:00+00:00,3745,154.842,154.859,154.75,154.762,USD_JPY,H1,50.88397790055282,0.054893449618504064,0.01775380183192853,0.03713964778657554,154.61405,0.2229180814557509,0.29414285714285676,21.386580268451972,369959 -2024-11-24 22:00:00+00:00,2395,154.249,154.4,154.2,154.256,USD_JPY,H1,43.85714285714244,0.015047799906540149,0.017212601446850856,-0.002164801540310707,154.60715,0.23203703762411,0.28635714285714187,21.390958767511353,367564 -2024-11-24 23:00:00+00:00,12377,154.256,154.396,154.054,154.152,USD_JPY,H1,42.054794520547425,-0.024638082915146242,0.008842464574451436,-0.03348054748959768,154.60135,0.24218832925919773,0.2697857142857113,20.762119171567406,355187 -2024-11-25 00:00:00+00:00,20293,154.152,154.216,153.818,154.216,USD_JPY,H1,47.31027857829019,-0.0503448220727023,-0.002994992754979312,-0.04734982931772299,154.59085,0.25443337973637864,0.2765714285714255,21.00248115202979,375480 -2024-11-25 01:00:00+00:00,17381,154.218,154.237,153.648,153.771,USD_JPY,H1,39.16500994035747,-0.1054102750073298,-0.023478049205449412,-0.08193222580188039,154.5441,0.31163185092903206,0.3049285714285678,21.81205627833307,358099 -2024-11-25 02:00:00+00:00,12823,153.77,153.806,153.549,153.764,USD_JPY,H1,34.31623931623956,-0.14790987175086912,-0.04836441371453336,-0.09954545803633576,154.487,0.34470048018482957,0.30499999999999666,23.853509101073023,345276 -2024-11-25 03:00:00+00:00,12681,153.764,153.962,153.63,153.946,USD_JPY,H1,42.826086956521415,-0.16500317550435284,-0.07169216607249726,-0.09331100943185558,154.44779999999997,0.35985736938783225,0.3017857142857118,25.73713647143241,357957 -2024-11-25 04:00:00+00:00,10917,153.948,154.17,153.94,154.095,USD_JPY,H1,28.726287262872702,-0.16462894710033993,-0.0902795222780658,-0.07434942482227413,154.42685,0.3679070641909927,0.2642142857142825,28.375996489235312,368874 -2024-11-25 05:00:00+00:00,12148,154.096,154.402,154.094,154.267,USD_JPY,H1,34.21710855427709,-0.1487388371302245,-0.10197138524849754,-0.04676745188172697,154.4152,0.36915573662292117,0.26364285714285324,29.426359415893838,381022 -2024-11-25 06:00:00+00:00,15066,154.266,154.482,154.184,154.297,USD_JPY,H1,38.28418230562977,-0.1322011288957583,-0.1080173339779497,-0.0241837949178086,154.41365,0.3696059459072993,0.2700714285714249,30.304466569775737,396088 -2024-11-25 07:00:00+00:00,20363,154.298,154.56,154.155,154.54,USD_JPY,H1,44.822627037391975,-0.09835305402378935,-0.10608447798711765,0.007731423963328293,154.42485,0.36988494297487445,0.2879999999999967,30.05267394587088,416451 -2024-11-25 08:00:00+00:00,20543,154.541,154.726,154.483,154.698,USD_JPY,H1,48.94760412001799,-0.05810908591581665,-0.09648939957285746,0.03838031365704081,154.43485,0.37463965492129514,0.2982142857142825,29.024421800159462,436994 -2024-11-25 09:00:00+00:00,18849,154.698,154.703,154.356,154.425,USD_JPY,H1,42.25582345729494,-0.047694477444764516,-0.08673041514723887,0.03903593770247435,154.4423,0.3727914754892573,0.3118571428571398,29.786715576182246,418145 -2024-11-25 10:00:00+00:00,14986,154.426,154.485,154.346,154.425,USD_JPY,H1,41.39361260887626,-0.0389913571048055,-0.07718260353875218,0.03819124643394668,154.41955000000002,0.3582753241316239,0.31135714285714144,30.38982614102847,403159 -2024-11-25 11:00:00+00:00,9733,154.427,154.512,154.318,154.508,USD_JPY,H1,44.74337748344396,-0.025107244506756388,-0.06676753173235303,0.04166028722559664,154.40005,0.3410638888868651,0.31742857142856856,31.258091533355866,412892 -2024-11-25 12:00:00+00:00,14411,154.508,154.566,154.132,154.201,USD_JPY,H1,48.75958502480817,-0.038433284556617764,-0.06110068229720598,0.022667397740588215,154.3734,0.33435411418284655,0.3225714285714259,29.594413687909263,398481 -2024-11-25 13:00:00+00:00,24899,154.202,154.202,153.755,153.928,USD_JPY,H1,45.30595138306816,-0.07021370585431441,-0.06292328700862768,-0.007290418845686736,154.332,0.33574583116487194,0.3300714285714272,28.67991584412016,373582 -2024-11-25 14:00:00+00:00,32385,153.926,154.026,153.626,153.75,USD_JPY,H1,40.679999999999836,-0.10851217033709304,-0.07204106367432075,-0.036471106662772285,154.28225,0.34492056673241156,0.330214285714285,26.660918223949505,341197 -2024-11-25 15:00:00+00:00,25465,153.749,154.393,153.643,154.37,USD_JPY,H1,61.1962616822434,-0.08782279441521723,-0.07519740982250006,-0.01262538459271717,154.26055000000002,0.3233454198111592,0.34171428571428514,24.488794007084287,366662 -2024-11-25 16:00:00+00:00,20285,154.37,154.522,154.282,154.294,USD_JPY,H1,59.657434402332385,-0.07667501790186293,-0.07549293143837264,-0.0011820864634902867,154.23325,0.2935216077173958,0.3404999999999977,22.338441311152557,346377 -2024-11-25 17:00:00+00:00,12790,154.295,154.389,154.227,154.321,USD_JPY,H1,57.24217844727694,-0.06491336943241777,-0.07337701903718166,0.008463649604763895,154.21120000000002,0.2670839804593464,0.3283571428571414,20.690880708636406,359167 -2024-11-25 18:00:00+00:00,13421,154.322,154.342,154.1,154.11,USD_JPY,H1,50.282912108638534,-0.0717905580169429,-0.07305972683313391,0.0012691688161910186,154.2039,0.26778937125067964,0.32921428571428635,16.375945984305506,345746 -2024-11-25 19:00:00+00:00,11162,154.112,154.202,153.995,154.138,USD_JPY,H1,47.427203829278184,-0.07412692448042435,-0.07327316636259201,-0.0008537581178323372,154.20319999999998,0.26795042744014985,0.3220000000000007,15.239792001090276,356908 -2024-11-25 20:00:00+00:00,8805,154.138,154.179,154.08,154.141,USD_JPY,H1,46.854838709677246,-0.07487334351046115,-0.07359320179216584,-0.0012801417182953106,154.19945,0.26828646804073425,0.3077857142857141,14.912543501658975,365713 -2024-11-25 21:00:00+00:00,4950,154.14,154.268,154.14,154.175,USD_JPY,H1,41.96389255834472,-0.07189263655666878,-0.07325308874506643,0.0013604521883976567,154.21965,0.24883333565624907,0.28800000000000076,14.981944328265424,370663 -2024-11-25 22:00:00+00:00,833,154.253,154.26,154.063,154.114,USD_JPY,H1,36.56853725850945,-0.07360413240132857,-0.07332329747631885,-0.0002808349250097153,154.23715,0.226397711275306,0.28471428571428703,16.825463001503206,369830 -2024-11-25 23:00:00+00:00,15892,154.123,154.493,153.882,154.386,USD_JPY,H1,49.10262310170234,-0.05240824871947325,-0.06914028772494973,0.016732039005476484,154.25915000000003,0.2178326916821294,0.30357142857142855,16.937424487118086,385722 -2024-11-26 00:00:00+00:00,29459,154.386,154.418,153.936,154.018,USD_JPY,H1,41.991341991341685,-0.06456066750186551,-0.06822436368033288,0.003663696178467374,154.25529999999998,0.2215355739217554,0.3280714285714278,16.550414723237868,356263 -2024-11-26 01:00:00+00:00,23263,154.016,154.114,153.84,154.054,USD_JPY,H1,40.898155573375846,-0.0704742643541465,-0.06867434381509561,-0.0017999205390508838,154.24465,0.22601799529468608,0.3337857142857144,16.30014885908587,379526 -2024-11-26 02:00:00+00:00,12021,154.054,154.224,153.9,153.984,USD_JPY,H1,45.19273371732411,-0.07988834434547698,-0.07091714392117189,-0.00897120042430509,154.22899999999998,0.23293301496385624,0.32592857142857057,16.022924661573782,367505 -2024-11-26 03:00:00+00:00,10879,153.986,154.07,153.724,153.742,USD_JPY,H1,45.8221024258758,-0.10565848286466917,-0.07786541170987135,-0.027793071154797816,154.1891,0.24489587473060118,0.31871428571428495,15.842002971434928,356626 -2024-11-26 04:00:00+00:00,9745,153.739,153.916,153.669,153.842,USD_JPY,H1,52.14152700186249,-0.11666746907923198,-0.08562582318374348,-0.031041645895488496,154.1463,0.22529141359341862,0.30778571428571205,16.364260095926102,366371 -2024-11-26 05:00:00+00:00,10322,153.836,153.845,153.546,153.719,USD_JPY,H1,30.28467595396711,-0.13377516518377774,-0.09525569158375034,-0.0385194736000274,154.11100000000002,0.23444873749399772,0.27557142857142686,16.531846803180695,356049 -2024-11-26 06:00:00+00:00,11684,153.718,154.065,153.604,154.054,USD_JPY,H1,43.71727748691084,-0.11893048076217383,-0.09999064941943504,-0.018939831342738786,154.09245,0.22267854453606542,0.29135714285714137,15.448860850768057,367733 -2024-11-26 07:00:00+00:00,17464,154.053,154.222,154.03,154.037,USD_JPY,H1,42.52631578947404,-0.10730082224651483,-0.101452683984851,-0.005848138261663832,154.0689,0.20018804314369637,0.2934999999999986,14.692467716905677,350269 -2024-11-26 08:00:00+00:00,21109,154.036,154.056,153.789,153.969,USD_JPY,H1,45.987478656800945,-0.1023909664608027,-0.10164034048004134,-0.0007506259807613658,154.0573,0.19884775976873978,0.2952857142857133,14.794922193111622,329160 -2024-11-26 09:00:00+00:00,15679,153.968,154.122,153.883,153.926,USD_JPY,H1,44.01805869074469,-0.10080756416189729,-0.10147378521641254,0.000666221054515248,154.05720000000002,0.19891669768442752,0.2975714285714283,14.246016159269686,313481 -2024-11-26 10:00:00+00:00,10179,153.926,153.984,153.71,153.768,USD_JPY,H1,40.321743642968976,-0.11102219125919532,-0.10338346642496911,-0.007638724834226215,154.05810000000002,0.19748921352768886,0.31007142857142916,12.655758363250671,303302 -2024-11-26 11:00:00+00:00,10167,153.77,153.872,153.717,153.78,USD_JPY,H1,39.63254593175858,-0.11680262911309569,-0.10606729896259443,-0.010735330150501265,154.0286,0.1924483252220586,0.31199999999999967,11.471475126146288,313469 -2024-11-26 12:00:00+00:00,21474,153.78,153.806,153.066,153.258,USD_JPY,H1,31.910397295013112,-0.16164140373808777,-0.11718211991769312,-0.04445928382039466,153.9768,0.24851275512458504,0.35078571428571437,10.96156434747697,291995 -2024-11-26 13:00:00+00:00,20274,153.256,153.486,152.988,153.432,USD_JPY,H1,28.96825396825406,-0.1810490886580851,-0.12995551366577152,-0.051093574992313595,153.93234999999999,0.26280176136264455,0.34271428571428586,13.184846902707887,312269 -2024-11-26 14:00:00+00:00,19314,153.431,153.682,153.398,153.523,USD_JPY,H1,37.569060773480814,-0.1869320430694188,-0.14135081954650097,-0.045581223522917824,153.903,0.27443818206519005,0.3285714285714282,14.8254977657342,331583 -2024-11-26 15:00:00+00:00,22663,153.522,153.724,153.376,153.466,USD_JPY,H1,35.38767395626279,-0.1939579242398679,-0.15187224048517436,-0.04208568375469354,153.86939999999998,0.28508307189385684,0.3338571428571413,15.871077411630242,308920 -2024-11-26 16:00:00+00:00,14723,153.466,153.684,153.413,153.49,USD_JPY,H1,37.436419125127394,-0.19533765536496617,-0.16056532346113273,-0.03477233190383344,153.83685,0.28956978521929433,0.3300714285714272,18.427573449223928,323643 -2024-11-26 17:00:00+00:00,13595,153.491,153.52,153.254,153.328,USD_JPY,H1,39.02439024390292,-0.20711564806569527,-0.16987538838204524,-0.03724025968365002,153.7945,0.2992864320456174,0.3243571428571426,20.117482343278386,310048 -2024-11-26 18:00:00+00:00,13215,153.328,153.489,153.264,153.393,USD_JPY,H1,37.87142085359231,-0.2087979426538027,-0.17765989923639675,-0.031138043417405947,153.75844999999998,0.3021854562772144,0.3227857142857147,21.27788984712244,323263 -2024-11-26 19:00:00+00:00,16322,153.392,153.418,153.083,153.113,USD_JPY,H1,34.910358565737056,-0.23007269832652355,-0.18814245905442212,-0.04193023927210143,153.6948,0.2970703620109829,0.32535714285714334,22.5883899342309,306941 -2024-11-26 20:00:00+00:00,9653,153.112,153.144,153.026,153.066,USD_JPY,H1,21.279069767441385,-0.24786833085269677,-0.20008763341407707,-0.04778069743861971,153.6472,0.3180848281197578,0.3008571428571441,25.675093471203322,297288 -2024-11-26 21:00:00+00:00,7471,153.065,153.157,153.01,153.109,USD_JPY,H1,23.42497136311549,-0.255555868235291,-0.21118128037831985,-0.044374587856971126,153.59995,0.3245971551678133,0.29764285714285926,30.025225269746613,304759 -2024-11-26 22:00:00+00:00,859,153.089,153.126,153.046,153.084,USD_JPY,H1,24.016441573693356,-0.26066085201671285,-0.22107719470599846,-0.03958365731071439,153.55495000000002,0.33087706014835583,0.2842857142857156,34.478847047936746,303900 -2024-11-26 23:00:00+00:00,5775,153.082,153.238,152.936,152.938,USD_JPY,H1,22.64673311184916,-0.2733367127911208,-0.23152909832302296,-0.04180761446809786,153.51475,0.3549226564904415,0.28878571428571476,38.10798937851974,298125 -2024-11-27 00:00:00+00:00,15721,152.932,153.018,152.762,152.914,USD_JPY,H1,24.46172248803782,-0.2820675243632138,-0.24163678353106113,-0.04043074083215267,153.46835,0.37021903543091816,0.2875000000000004,42.319757202342196,282404 -2024-11-27 01:00:00+00:00,16913,152.914,153.035,152.507,152.552,USD_JPY,H1,19.634025717111427,-0.3145709519554032,-0.25622361721592957,-0.05834733473947362,153.41,0.41757180282086603,0.3141428571428569,46.58691945829956,265491 -2024-11-27 02:00:00+00:00,11284,152.552,152.755,152.527,152.637,USD_JPY,H1,30.41009463722378,-0.32967111941991334,-0.2709131176567263,-0.05875800176318702,153.33915,0.4227327480813281,0.27757142857142825,47.711327412607716,276775 -2024-11-27 03:00:00+00:00,10691,152.634,152.657,152.382,152.452,USD_JPY,H1,19.29824561403602,-0.3525026338787711,-0.2872310209011353,-0.06527161297763584,153.2599,0.4334552608312969,0.2616428571428579,47.82221483549548,266084 -2024-11-27 04:00:00+00:00,10430,152.452,152.47,152.252,152.314,USD_JPY,H1,13.207547169811875,-0.37738199553308505,-0.30526121582752525,-0.0721207797055598,153.17715,0.4486669465557133,0.256928571428572,50.90666544843781,255654 -2024-11-27 05:00:00+00:00,11146,152.314,152.48,152.234,152.438,USD_JPY,H1,19.941520467836312,-0.3826819854840835,-0.32074536975883694,-0.06193661572524656,153.10275,0.4412659867208602,0.24964285714285747,54.853546098656224,266800 -2024-11-27 06:00:00+00:00,12952,152.438,152.466,152.069,152.082,USD_JPY,H1,15.523996082272404,-0.4108722113946044,-0.33877073808599045,-0.07210147330861394,153.01845,0.4677404222595101,0.25864285714285984,58.555880910821976,253848 -2024-11-27 07:00:00+00:00,19154,152.081,152.17,151.842,151.952,USD_JPY,H1,15.771144278607181,-0.4386466366932211,-0.35874591780743664,-0.07990071888578448,152.92704999999998,0.4892055293879405,0.26307142857142807,62.33586908953155,234694 -2024-11-27 08:00:00+00:00,28911,151.952,151.96,151.43,151.83,USD_JPY,H1,12.191582002903175,-0.4651405979762444,-0.3800248538411982,-0.08511574413504619,152.85565,0.5399391071753071,0.2848571428571428,66.44834791469518,205783 -2024-11-27 09:00:00+00:00,20097,151.83,151.896,151.355,151.474,USD_JPY,H1,11.759216052263469,-0.5089960878934221,-0.405819100651643,-0.1031769872417791,152.75775000000002,0.6036834195470422,0.29957142857142777,70.39210414617156,185686 -2024-11-27 10:00:00+00:00,19530,151.472,151.494,151.222,151.4,USD_JPY,H1,11.612903225806804,-0.5434584109009677,-0.43334696270150797,-0.11011144819945973,152.6516,0.6471297274841269,0.3105714285714275,73.13564492563232,166156 -2024-11-27 11:00:00+00:00,13405,151.398,151.617,151.366,151.488,USD_JPY,H1,13.40857787810367,-0.5572456051558845,-0.45812669119238325,-0.09911891396350125,152.55270000000002,0.6669590928699392,0.3179999999999958,74.0208878362409,179561 -2024-11-27 12:00:00+00:00,15811,151.488,151.594,151.308,151.486,USD_JPY,H1,13.549270072992528,-0.5618567048695127,-0.4788726939278092,-0.08298401094170349,152.4525,0.6692639711956906,0.33271428571428074,74.89054379824317,163750 -2024-11-27 13:00:00+00:00,23983,151.486,151.636,151.296,151.334,USD_JPY,H1,13.512283894449482,-0.571191820544044,-0.4973365192510562,-0.07385530129298784,152.3528,0.6804066585764368,0.33542857142856725,76.55790752787854,139767 -2024-11-27 14:00:00+00:00,22821,151.333,151.492,151.0,151.373,USD_JPY,H1,15.183009489380453,-0.5688852380036735,-0.5116462630015797,-0.05723897500209385,152.2518,0.6676779557645184,0.3522857142857094,78.2955509942954,162588 -2024-11-27 15:00:00+00:00,29112,151.38,151.806,150.933,151.104,USD_JPY,H1,15.849056603773235,-0.582053753244054,-0.5257277610500746,-0.05632599219397938,152.15135,0.6822585769131534,0.37692857142856845,77.53741679310492,133476 -2024-11-27 16:00:00+00:00,24390,151.106,151.376,150.455,150.704,USD_JPY,H1,10.308008213551616,-0.6176467067430167,-0.5441115501886631,-0.07353515655435361,152.03325,0.7190397013288551,0.42642857142856727,78.80999286176359,109086 -2024-11-27 17:00:00+00:00,17570,150.705,150.869,150.533,150.762,USD_JPY,H1,13.388214904678406,-0.6338674343363095,-0.5620627270181924,-0.07180470731811717,151.9159,0.7257214849139968,0.43078571428571066,79.62854348953361,126656 -2024-11-27 18:00:00+00:00,9567,150.762,150.886,150.677,150.859,USD_JPY,H1,17.909131010145046,-0.6316145293528166,-0.5759730874851172,-0.05564144186769937,151.80464999999998,0.7075461878040579,0.4301428571428545,78.01876456652262,136223 -2024-11-27 19:00:00+00:00,9674,150.858,151.061,150.856,151.024,USD_JPY,H1,19.367417677642393,-0.6094891533190037,-0.5826763006518946,-0.02681285266710909,151.70895000000002,0.6748712528148211,0.4272142857142853,75.09244388895385,145897 -2024-11-27 20:00:00+00:00,9295,151.022,151.19,151.022,151.094,USD_JPY,H1,25.568743818001195,-0.5796246660752047,-0.5820659737365566,0.002441307661351866,151.61795,0.6246671092264525,0.41085714285714153,71.18903083412917,155192 -2024-11-27 21:00:00+00:00,4766,151.094,151.198,151.091,151.117,USD_JPY,H1,28.198433420364594,-0.5477863963990046,-0.5752100582690463,0.027423661870041638,151.5462,0.5933629048254213,0.395071428571429,66.71445908609365,159958 -2024-11-27 22:00:00+00:00,1237,151.108,151.156,150.926,150.961,USD_JPY,H1,27.706516162133596,-0.5290437475484566,-0.5659767961249283,0.03693304857647173,151.4624,0.547803114825167,0.3736428571428588,61.37769862661166,158721 -2024-11-27 23:00:00+00:00,5368,150.954,151.382,150.928,151.342,USD_JPY,H1,46.65653495440772,-0.4779371850866312,-0.548368873917269,0.07043168883063777,151.4069,0.49605070833899084,0.3674285714285738,54.963418004202644,164089 -2024-11-28 00:00:00+00:00,14147,151.344,151.714,151.284,151.688,USD_JPY,H1,56.41139804096162,-0.40484871381212884,-0.519664841896241,0.11481612808411212,151.3756,0.45374771564612204,0.3787142857142892,49.85682495478007,178236 -2024-11-28 01:00:00+00:00,15028,151.688,151.75,151.41,151.431,USD_JPY,H1,48.81987577639771,-0.36347343046244873,-0.48842655960948256,0.12495312914703383,151.32525,0.37944042938776157,0.385071428571434,45.40330241414428,163208 -2024-11-28 02:00:00+00:00,10137,151.43,151.62,151.342,151.446,USD_JPY,H1,49.17627677100506,-0.32571816937124254,-0.4558848815618346,0.13016671219059206,151.29344999999998,0.3369531397706067,0.3845000000000048,41.06540856745237,173345 -2024-11-28 03:00:00+00:00,8764,151.444,151.719,151.416,151.628,USD_JPY,H1,55.98047192839707,-0.27790743011897234,-0.4202893912732622,0.14238196115428986,151.27725,0.310364620001384,0.38185714285714717,36.42296210625837,182109 -2024-11-28 04:00:00+00:00,8210,151.628,151.656,151.534,151.627,USD_JPY,H1,55.24793388429825,-0.2373616095638056,-0.3837038349313709,0.1463422253675653,151.2671,0.294236728862559,0.3554285714285775,32.82334581022617,173899 -2024-11-28 05:00:00+00:00,8365,151.628,151.666,151.482,151.543,USD_JPY,H1,59.82102908277445,-0.20959082013098396,-0.34888123197129356,0.1392904118403096,151.27055000000001,0.29718016417683063,0.3062142857142902,30.101775595738168,165534 -2024-11-28 06:00:00+00:00,12041,151.542,151.652,151.362,151.548,USD_JPY,H1,72.93478260869722,-0.18504571934877845,-0.3161141294467905,0.13106841009801207,151.27794999999998,0.3023705420787969,0.2611428571428616,29.085020569501943,177575 -2024-11-28 07:00:00+00:00,13888,151.547,151.778,151.538,151.757,USD_JPY,H1,74.98744349573252,-0.14703407948411495,-0.2822981194542554,0.13526403997014047,151.2914,0.31779510112020437,0.2542857142857165,28.061521621828234,191463 -2024-11-28 08:00:00+00:00,18927,151.757,151.92,151.692,151.836,USD_JPY,H1,74.75924987329113,-0.10927528381253637,-0.24769355232591161,0.13841826851337524,151.30890000000002,0.338065378263213,0.25564285714285767,27.586805419557884,210390 -2024-11-28 09:00:00+00:00,14883,151.836,151.95,151.792,151.892,USD_JPY,H1,73.2832618025767,-0.07397964294378312,-0.2129507704494859,0.13897112750570279,151.33679999999998,0.36239577083231694,0.252285714285713,27.58435294668766,225273 -2024-11-28 10:00:00+00:00,9062,151.892,151.954,151.843,151.854,USD_JPY,H1,70.74235807860482,-0.04851462923812733,-0.1800635422072142,0.13154891296908688,151.36084999999997,0.380436075937987,0.2482142857142853,28.04262809890242,216211 -2024-11-28 11:00:00+00:00,7751,151.854,151.9,151.762,151.832,USD_JPY,H1,69.52484980884905,-0.029765520161191716,-0.15000393779800972,0.120238417636818,151.39725,0.3892916475119101,0.25042857142857144,28.436431335428484,208460 -2024-11-28 12:00:00+00:00,9356,151.832,151.847,151.641,151.764,USD_JPY,H1,73.03499713138416,-0.02016134045521767,-0.12403541832945132,0.10387407787423365,151.45025,0.361076005239188,0.24871428571428567,29.806182174053266,199104 -2024-11-28 13:00:00+00:00,9715,151.766,151.774,151.558,151.57,USD_JPY,H1,57.32647814910011,-0.02788272284561799,-0.10480487923268467,0.07692215638706668,151.49065000000002,0.3232361487757254,0.2317142857142857,30.79479628843041,189389 -2024-11-28 14:00:00+00:00,8538,151.57,151.607,151.48,151.525,USD_JPY,H1,43.50597609561776,-0.03720423072590506,-0.09128474953132874,0.05408051880542368,151.52395,0.2870146658304205,0.21007142857142874,31.07170600593083,180851 -2024-11-28 15:00:00+00:00,9367,151.526,151.573,151.405,151.523,USD_JPY,H1,54.59999999999949,-0.04424297073779826,-0.08187639377262264,0.03763342303482438,151.5489,0.26185289156862873,0.19778571428571468,32.29213750567826,171484 -2024-11-28 16:00:00+00:00,5188,151.522,151.574,151.467,151.484,USD_JPY,H1,51.85546875000064,-0.05236457079567458,-0.07597402917723303,0.02360945838155845,151.5684,0.23978551815659785,0.18557142857142953,33.19963220970324,166296 -2024-11-28 17:00:00+00:00,5315,151.484,151.55,151.46,151.496,USD_JPY,H1,42.27166276346703,-0.0571736355612984,-0.0722139504540461,0.015040314892747708,151.58735000000001,0.21603393369362084,0.17035714285714423,35.05831579456804,171611 -2024-11-28 18:00:00+00:00,4480,151.497,151.558,151.462,151.536,USD_JPY,H1,44.90481522956265,-0.05709898675303293,-0.06919095771384348,0.01209197096081055,151.61610000000002,0.15903223765155833,0.16850000000000062,35.01517034772904,176091 -2024-11-28 19:00:00+00:00,674,151.536,151.551,151.474,151.502,USD_JPY,H1,47.56820877817326,-0.05910205122802381,-0.06717317641667955,0.008071125188655742,151.62410000000003,0.14817162872779147,0.16085714285714353,35.970017188651795,175417 -2024-11-28 20:00:00+00:00,986,151.501,151.526,151.451,151.451,USD_JPY,H1,44.544431946006156,-0.06406625215595341,-0.06655179156453432,0.002485539408580914,151.61225000000002,0.1522141409912948,0.14550000000000246,33.97708067368056,174431 -2024-11-28 21:00:00+00:00,1521,151.454,151.558,151.434,151.554,USD_JPY,H1,37.03703703703664,-0.05900895941110207,-0.06504322513384787,0.006034265722745805,151.6184,0.14689752956198573,0.13721428571428923,33.43533163457473,175952 -2024-11-28 22:00:00+00:00,280,151.551,151.557,151.534,151.536,USD_JPY,H1,29.224376731300566,-0.055810123677531465,-0.0631966048425846,0.007386481165053138,151.62290000000002,0.14265560288165616,0.12257142857143322,35.22876519097856,175672 -2024-11-28 23:00:00+00:00,8327,151.539,151.539,150.982,151.186,USD_JPY,H1,15.255905511811264,-0.08058812845976604,-0.0666749095660209,-0.013913218893745138,151.6008,0.17286276875879913,0.15107142857143327,38.66455767258834,167345 -2024-11-29 00:00:00+00:00,22200,151.187,151.21,150.524,150.582,USD_JPY,H1,9.797724399494257,-0.1472650481215112,-0.08279293727711896,-0.06447211084439224,151.54855,0.2856585143538622,0.19214285714286103,42.65420625074429,145145 -2024-11-29 01:00:00+00:00,33608,150.58,150.62,149.85,149.943,USD_JPY,H1,7.048658481127887,-0.2488009248009746,-0.11599453478189009,-0.1328063900190845,151.46855,0.45884150168091836,0.23728571428571854,47.3263753591811,111537 -2024-11-29 02:00:00+00:00,21010,149.942,150.398,149.942,150.163,USD_JPY,H1,15.950659293917496,-0.3079666296090977,-0.15438895374733164,-0.15357767586176607,151.3993,0.543013627803621,0.2551428571428594,51.672624168399864,132547 -2024-11-29 03:00:00+00:00,12984,150.164,150.377,150.054,150.1,USD_JPY,H1,16.891891891891902,-0.35583757634358903,-0.19467867826658314,-0.1611588980770059,151.31645,0.6080755211764161,0.26278571428571645,57.66930087473749,119563 -2024-11-29 04:00:00+00:00,15130,150.1,150.136,149.76,150.013,USD_JPY,H1,16.578249336870016,-0.3962283457071578,-0.2349886117546981,-0.16123973395245972,151.2253,0.6604720879245938,0.2805714285714304,63.052350733346785,104433 -2024-11-29 05:00:00+00:00,14450,150.014,150.276,149.932,150.104,USD_JPY,H1,19.82135261590848,-0.4160988533770933,-0.27121066007917716,-0.14488819329791613,151.13590000000002,0.685996079458593,0.29314285714286015,66.75486785100927,118883 -2024-11-29 06:00:00+00:00,12274,150.106,150.206,149.967,150.002,USD_JPY,H1,19.304059652030034,-0.43506179980366255,-0.30398088802407425,-0.1310809117795883,151.04330000000002,0.7085859974408334,0.3025714285714299,70.79639786128635,106609 -2024-11-29 07:00:00+00:00,18982,150.004,150.015,149.532,149.998,USD_JPY,H1,18.869492934330893,-0.44527992820277973,-0.3322406960598153,-0.11303923214296441,150.9516,0.7197300224686528,0.33064285714285646,73.92017729878125,87627 -2024-11-29 08:00:00+00:00,19296,149.997,150.274,149.991,150.188,USD_JPY,H1,23.63067292644773,-0.43305447406302733,-0.3524034516604577,-0.0806510224025696,150.87279999999998,0.712339259785706,0.34399999999999814,76.58938507843469,106923 -2024-11-29 09:00:00+00:00,16694,150.188,150.308,149.928,150.162,USD_JPY,H1,23.70486656200967,-0.42061510715510053,-0.3660457827593863,-0.054569324395714214,150.8024,0.7093786309754065,0.3656428571428551,79.48592776851301,90229 -2024-11-29 10:00:00+00:00,14448,150.16,150.368,149.94,149.962,USD_JPY,H1,22.395253985910514,-0.4220302458209062,-0.3772426753716903,-0.044787570449215885,150.72425,0.7116739255409847,0.3908571428571394,82.73381764216548,75781 -2024-11-29 11:00:00+00:00,10471,149.96,150.076,149.83,150.042,USD_JPY,H1,21.727748691099833,-0.41194774482320895,-0.3841836892619941,-0.027764055561214862,150.65019999999998,0.7011611121861641,0.3995714285714241,85.00291368815203,86252 -2024-11-29 12:00:00+00:00,10589,150.043,150.262,150.0,150.156,USD_JPY,H1,25.090252707581655,-0.390259771166086,-0.3853989056428125,-0.004860865523273528,150.5838,0.6806244501074834,0.416642857142853,83.90053347918422,96841 -2024-11-29 13:00:00+00:00,13742,150.156,150.236,149.94,149.969,USD_JPY,H1,26.658995013425653,-0.38373774313083686,-0.3850666731404174,0.0013289300095805645,150.50745,0.6581883808724872,0.39799999999999613,80.9601202707479,83099 -2024-11-29 14:00:00+00:00,15790,149.968,150.16,149.876,149.94,USD_JPY,H1,34.202755905512205,-0.37656820272562186,-0.3833669790574583,0.006798776331836454,150.42765000000003,0.6227169057568563,0.36928571428570933,77.21463702111494,67309 -2024-11-29 15:00:00+00:00,18218,149.942,150.351,149.916,150.18,USD_JPY,H1,57.256582976117116,-0.3475143667645568,-0.37619645659887807,0.028682089834321245,150.36155,0.5706630008198713,0.3453571428571373,70.64590123054845,85527 -2024-11-29 16:00:00+00:00,16689,150.179,150.532,150.152,150.418,USD_JPY,H1,57.72259236826121,-0.30180535720231205,-0.3613182367195649,0.05951287951725287,150.3099,0.5104383977259797,0.3399285714285684,63.77031926255591,102216 -2024-11-29 17:00:00+00:00,16404,150.42,150.45,149.584,149.602,USD_JPY,H1,39.64226289517513,-0.3276480949275822,-0.3545842083611684,0.026936113433586206,150.2123,0.44207776165123763,0.3787142857142811,58.226276811629425,85812 -2024-11-29 18:00:00+00:00,17653,149.601,149.689,149.466,149.648,USD_JPY,H1,42.27676682183664,-0.34049185702087925,-0.35176573809311057,0.011273881072231318,150.11790000000002,0.3325537391936162,0.3677857142857083,52.2582912899115,103465 -2024-11-29 19:00:00+00:00,29534,149.649,149.699,149.48,149.606,USD_JPY,H1,39.23941227311996,-0.35002481185725287,-0.35141755284593906,0.001392740988686192,150.03889999999998,0.24035410276228983,0.3588571428571368,47.726177981905,73931 -2024-11-29 20:00:00+00:00,34921,149.608,149.672,149.542,149.649,USD_JPY,H1,42.17294900221729,-0.350074564941508,-0.35114895526505285,0.0010743903235448382,149.99225,0.21898951543960374,0.3510714285714239,43.394561976706036,108852 -2024-11-29 21:00:00+00:00,13702,149.65,149.77,149.612,149.73,USD_JPY,H1,44.253859348199015,-0.3396625530851054,-0.3488516748290634,0.009189121743957973,149.98160000000001,0.2265592521053997,0.32785714285714107,37.22059187975144,122554 -2024-12-01 22:00:00+00:00,4793,149.696,149.735,149.502,149.615,USD_JPY,H1,37.30615861763452,-0.3368079847863896,-0.3464429368205287,0.009634952034139055,149.9542,0.23639031055657148,0.32428571428571373,33.76656047237084,117761 -2024-12-01 23:00:00+00:00,14534,149.611,150.07,149.544,149.868,USD_JPY,H1,44.08212560386453,-0.3105508958368546,-0.3392645286237939,0.028713632786939336,149.9426,0.23454421640988385,0.3347142857142842,28.73853749729472,132295 -2024-12-02 00:00:00+00:00,19370,149.87,150.294,149.806,150.206,USD_JPY,H1,54.65293668954998,-0.259477097989361,-0.32330704249690734,0.06382994450754631,149.95225,0.24146153116033092,0.33899999999999864,24.511852742000364,151665 -2024-12-02 01:00:00+00:00,19709,150.205,150.556,150.148,150.535,USD_JPY,H1,58.58585858585856,-0.19025999599500665,-0.2966976331965272,0.10643763720152055,149.97379999999998,0.2729036073874226,0.3505714285714297,21.145326573522343,171374 -2024-12-02 02:00:00+00:00,14961,150.534,150.69,150.476,150.596,USD_JPY,H1,57.8069552874379,-0.12899577083140912,-0.2631572607235036,0.13416148989209448,150.00349999999997,0.3064007523332613,0.34714285714285814,18.391201659966836,186335 -2024-12-02 03:00:00+00:00,11235,150.597,150.746,150.502,150.529,USD_JPY,H1,60.37805782060798,-0.08487142609260445,-0.22750009379732378,0.14262866770471933,150.03005,0.32813419507543967,0.3434285714285729,16.545230514933003,175100 -2024-12-02 04:00:00+00:00,13819,150.528,150.684,150.436,150.579,USD_JPY,H1,61.750643618977776,-0.04534527080045336,-0.19106912919794972,0.14572385839749635,150.0496,0.34902290677193076,0.34085714285714425,15.308521592531056,188919 -2024-12-02 05:00:00+00:00,14477,150.578,150.754,150.516,150.724,USD_JPY,H1,60.36585365853639,-0.002293778525398693,-0.15331405906343953,0.15102028053804084,150.0777,0.3798138186269696,0.3267857142857155,16.516610317825556,203396 -2024-12-02 06:00:00+00:00,16882,150.724,150.729,150.254,150.332,USD_JPY,H1,48.45212383009334,0.0001915077701539758,-0.12261294569672083,0.12280445346687481,150.0962,0.38288030282807545,0.3335714285714297,16.617371502244524,186514 -2024-12-02 07:00:00+00:00,23761,150.331,150.449,149.99,150.252,USD_JPY,H1,65.91576885406522,-0.004245279408763736,-0.09893941243912942,0.09469413303036568,150.1067,0.3841929476585698,0.3045000000000024,16.347009002838117,162753 -2024-12-02 08:00:00+00:00,21577,150.252,150.379,150.075,150.218,USD_JPY,H1,64.0394088669951,-0.01038526617963953,-0.08122858318723145,0.07084331700759192,150.1098,0.3848612326527671,0.31028571428571794,16.810518319608704,141176 -2024-12-02 09:00:00+00:00,15452,150.217,150.442,150.049,150.348,USD_JPY,H1,67.51652502360766,-0.004707076143347422,-0.06592428177845465,0.06121720563510723,150.12875,0.38688892391961205,0.3227142857142878,16.962991177982023,156628 -2024-12-02 10:00:00+00:00,14534,150.349,150.39,150.162,150.174,USD_JPY,H1,61.67185415740344,-0.014085051742910082,-0.05555643577134574,0.04147138402843566,150.14045,0.38441075547567866,0.3297142857142867,16.852037675884187,142094 -2024-12-02 11:00:00+00:00,12373,150.172,150.242,150.077,150.151,USD_JPY,H1,59.607485166591054,-0.02310671294779354,-0.0490664912066353,0.025959778258841763,150.139,0.3843084013477091,0.330214285714285,17.687938151915038,129721 -2024-12-02 12:00:00+00:00,13975,150.15,150.172,149.92,150.136,USD_JPY,H1,62.4581539933041,-0.031108222861064405,-0.04547483753752112,0.014366614676456717,150.1249,0.3786650929377596,0.3315714285714283,16.84098838062739,115746 -2024-12-02 13:00:00+00:00,18767,150.134,150.356,150.044,150.08,USD_JPY,H1,55.5966209081313,-0.04148993891436703,-0.044677857812890305,0.0031879188985232745,150.1488,0.3584708165162386,0.3162857142857141,16.982151918264695,96979 -2024-12-02 14:00:00+00:00,23229,150.08,150.096,149.831,149.995,USD_JPY,H1,43.57099329677093,-0.05593156899695373,-0.04692860004970299,-0.009002968947250736,150.16615,0.3409243278888785,0.30035714285714377,18.13017734057954,73750 -2024-12-02 15:00:00+00:00,36062,150.002,150.243,149.722,149.872,USD_JPY,H1,26.898954703833866,-0.07642080545483054,-0.0528270411307285,-0.02359376432410204,150.17945000000003,0.3226189661915554,0.3084285714285703,18.839213329896218,37688 -2024-12-02 16:00:00+00:00,29157,149.872,149.949,149.079,149.267,USD_JPY,H1,16.422435573522506,-0.139864841933786,-0.07023460129134002,-0.069630240642446,150.16035,0.3642922879099738,0.35528571428571354,21.76172728156057,8531 -2024-12-02 17:00:00+00:00,13773,149.268,149.63,149.216,149.598,USD_JPY,H1,29.246544806064165,-0.1615732483838599,-0.088502330709844,-0.0730709176740159,150.15375,0.37357686094118425,0.3674285714285698,24.469965868345458,22304 -2024-12-02 18:00:00+00:00,11464,149.599,149.792,149.544,149.654,USD_JPY,H1,29.435304579813206,-0.17227273208820293,-0.10525641098551577,-0.06701632110268715,150.1557,0.37070744597911365,0.3674285714285698,26.147882541772937,33768 -2024-12-02 19:00:00+00:00,10655,149.652,149.688,149.492,149.527,USD_JPY,H1,23.17346481398532,-0.18882335057921296,-0.12196979890425522,-0.06685355167495774,150.13865,0.3918736738973414,0.36442857142856966,28.59016990974073,23113 -2024-12-02 20:00:00+00:00,17952,149.526,149.652,149.227,149.542,USD_JPY,H1,28.694714131608364,-0.19844194511685487,-0.13726422814677514,-0.06117771697007973,150.10545,0.4134033935122229,0.36085714285713827,32.47664007263039,41065 -2024-12-02 21:00:00+00:00,8334,149.54,149.616,149.506,149.59,USD_JPY,H1,31.833150384193914,-0.19988737451112115,-0.14978885741964434,-0.05009851709147681,150.0582,0.4157218958807699,0.3359285714285676,34.99454499463035,49399 -2024-12-02 22:00:00+00:00,638,149.592,149.61,149.532,149.546,USD_JPY,H1,31.659388646289074,-0.20225188615034995,-0.16028146316578548,-0.041970422984564465,150.0057,0.41049804150936753,0.3197857142857105,36.79150365815564,48761 -2024-12-02 23:00:00+00:00,5755,149.553,149.829,149.498,149.514,USD_JPY,H1,25.951557093426032,-0.20435226551271057,-0.1690956236351705,-0.035256641877540074,149.95495,0.40510420683908493,0.3153571428571403,37.564738393922894,43006 -2024-12-03 00:00:00+00:00,16414,149.513,149.933,149.498,149.871,USD_JPY,H1,42.09702660406905,-0.175190428654048,-0.170314584638946,-0.004875844015101993,149.91955000000002,0.3777095061422715,0.3301428571428561,37.68042277501838,59420 -2024-12-03 01:00:00+00:00,17185,149.874,149.976,149.597,149.876,USD_JPY,H1,42.75934702474983,-0.14994750315332794,-0.1662411683418224,0.016293665188494455,149.87715,0.326820935164413,0.3454285714285703,38.08869885493636,76605 -2024-12-03 02:00:00+00:00,11398,149.876,150.001,149.791,149.864,USD_JPY,H1,42.82700421940957,-0.12941874382195806,-0.15887668343784955,0.029457939615891493,149.85375,0.3087973061625999,0.3424285714285702,38.10304371924561,65207 -2024-12-03 03:00:00+00:00,11192,149.865,150.141,149.848,150.093,USD_JPY,H1,50.314161430642265,-0.09359229427374771,-0.1458198056050292,0.05222751133128148,149.8458,0.29992395523672705,0.34107142857142697,38.874973094967345,76399 -2024-12-03 04:00:00+00:00,8784,150.094,150.222,150.048,150.146,USD_JPY,H1,53.70643102601821,-0.06022863956476954,-0.12870157239697727,0.06847293283220773,149.8422,0.29562255447497504,0.33457142857142635,37.42336565804065,85183 -2024-12-03 05:00:00+00:00,10504,150.147,150.238,149.99,150.027,USD_JPY,H1,53.81210034431804,-0.042895535282070796,-0.11154036497399597,0.06864482969192517,149.82615,0.27468896760664735,0.3150714285714266,35.7534989632238,74679 -2024-12-03 06:00:00+00:00,10648,150.028,150.168,149.964,150.112,USD_JPY,H1,77.9246530072702,-0.022046003034603245,-0.09364149258611744,0.0715954895515142,149.82305000000002,0.27088013950349277,0.2674999999999983,34.68996733259598,85327 -2024-12-03 07:00:00+00:00,14007,150.11,150.134,149.874,150.009,USD_JPY,H1,65.99221789883168,-0.01367618713658203,-0.07764843149621035,0.06397224435962832,149.81595,0.2635948795097011,0.25649999999999856,31.532869380571135,71320 -2024-12-03 08:00:00+00:00,18277,150.01,150.186,149.824,149.92,USD_JPY,H1,60.09104704097074,-0.014062500183598559,-0.064931245233688,0.05086874505008944,149.80515,0.254043567499603,0.264642857142856,28.846999111194936,53043 -2024-12-03 09:00:00+00:00,14061,149.92,149.958,149.776,149.818,USD_JPY,H1,61.252900232019726,-0.022341662825169806,-0.05641332875198436,0.03407166592681456,149.79205,0.24574429902581874,0.2636428571428553,25.716073885232912,38982 -2024-12-03 10:00:00+00:00,9458,149.817,150.084,149.77,150.05,USD_JPY,H1,66.82119205298088,-0.01006645791105143,-0.04714395458379778,0.03707749667274635,149.7948,0.24842802617238402,0.25571428571428456,25.584211715931627,48440 -2024-12-03 11:00:00+00:00,9660,150.05,150.11,149.682,149.737,USD_JPY,H1,54.14084507042234,-0.025303075623185123,-0.042775778791675254,0.01747270316849013,149.78805,0.24805378762743294,0.27842857142857114,24.928588351717355,38780 -2024-12-03 12:00:00+00:00,10591,149.738,149.876,149.598,149.685,USD_JPY,H1,53.89792484576593,-0.04110039063272097,-0.0424407011598844,0.0013403105271634283,149.80895,0.2175791386055955,0.29271428571428465,23.96783079613225,28189 -2024-12-03 13:00:00+00:00,21308,149.683,149.702,148.801,148.853,USD_JPY,H1,37.204800619434586,-0.11937919423695575,-0.057828399775298675,-0.06155079446165708,149.7717,0.30271249166315445,0.33342857142856985,23.994770838374027,6881 -2024-12-03 14:00:00+00:00,29947,148.852,149.078,148.644,148.824,USD_JPY,H1,26.78492239467822,-0.18166168487576329,-0.0825950567953916,-0.09906662808037169,149.73020000000002,0.3692737680457841,0.33335714285714096,25.707523795145786,-23066 -2024-12-03 15:00:00+00:00,37059,148.822,149.253,148.757,149.153,USD_JPY,H1,35.98293912369084,-0.2021432751497514,-0.10650470046626356,-0.09563857468348783,149.7115,0.3890457285777492,0.3417142857142831,27.119164688193052,13993 -2024-12-03 16:00:00+00:00,22616,149.154,149.52,149.082,149.126,USD_JPY,H1,35.77486507324562,-0.2180403242230966,-0.12881182521763018,-0.08922849900546642,149.69070000000002,0.4091841818961559,0.357999999999998,28.03567343137494,-8623 -2024-12-03 17:00:00+00:00,17335,149.127,149.514,149.086,149.21,USD_JPY,H1,31.97223356472034,-0.2213096324803132,-0.1473113866701668,-0.07399824581014641,149.6717,0.42270521018079527,0.36764285714285655,29.35463368499209,8712 -2024-12-03 18:00:00+00:00,12878,149.207,149.215,148.979,149.042,USD_JPY,H1,28.471138845553824,-0.23475071863646235,-0.1647992530634259,-0.06995146557303644,149.6465,0.44502720198142603,0.3720714285714268,31.985726288372597,-4166 -2024-12-03 19:00:00+00:00,10307,149.042,149.542,148.965,149.509,USD_JPY,H1,41.105769230769056,-0.20535270102507752,-0.17290994265575627,-0.032442758369321256,149.64625,0.44510695045744025,0.3955714285714273,32.68732509598506,6141 -2024-12-03 20:00:00+00:00,7432,149.509,149.524,149.404,149.456,USD_JPY,H1,38.611111111110766,-0.1842077846511927,-0.17516951105484357,-0.009038273596349122,149.6255,0.44374927721596896,0.38957142857142707,30.693661042058917,-1291 -2024-12-03 21:00:00+00:00,3994,149.46,149.598,149.446,149.596,USD_JPY,H1,42.92080905039441,-0.15437392954740403,-0.17101039475335567,0.016636465205951634,149.6115,0.4398298115577574,0.3818571428571431,30.144511184585905,2703 -2024-12-03 22:00:00+00:00,554,149.608,149.63,149.584,149.601,USD_JPY,H1,44.36992587363228,-0.12884171908663689,-0.16257665962001192,0.03373494053337503,149.59835,0.4357963400225078,0.3592857142857144,30.23300108046058,3257 -2024-12-03 23:00:00+00:00,4418,149.608,149.7,149.576,149.614,USD_JPY,H1,46.282798833819065,-0.10633253175600998,-0.15132783404721153,0.04499530229120155,149.5744,0.42005919379625495,0.35514285714285776,29.914387074811096,7675 -2024-12-04 00:00:00+00:00,15365,149.614,149.92,149.522,149.874,USD_JPY,H1,46.82539682539649,-0.06674462109231172,-0.1344111914562316,0.06766657036391988,149.5608,0.4047012673150655,0.361142857142858,26.287556669630096,23040 -2024-12-04 01:00:00+00:00,15170,149.873,150.082,149.683,149.928,USD_JPY,H1,53.80023875845617,-0.03066013699861969,-0.11366098056470922,0.08300084356608953,149.55585000000002,0.3992679188584651,0.35907142857142765,23.682549767417978,38210 -2024-12-04 02:00:00+00:00,13315,149.928,149.957,149.69,149.778,USD_JPY,H1,51.7809268479508,-0.01400522624717837,-0.09372982970120305,0.07972460345402468,149.53915,0.38136545185903387,0.35828571428571365,22.077784234610913,24895 -2024-12-04 03:00:00+00:00,13309,149.778,149.944,149.625,149.938,USD_JPY,H1,77.97833935018049,0.011966629483964653,-0.07259053786416951,0.08455716734813416,149.5356,0.37706782857374976,0.3167142857142835,23.91509584091759,38204 -2024-12-04 04:00:00+00:00,14330,149.938,150.172,149.88,149.971,USD_JPY,H1,79.51621204323214,0.03481105628773662,-0.05111021903378828,0.08592127532152491,149.53815,0.3799655489619543,0.30657142857142666,26.236279315329885,52534 -2024-12-04 05:00:00+00:00,13981,149.972,150.109,149.884,150.1,USD_JPY,H1,77.16580608146889,0.06260300257233098,-0.02836757471256443,0.09097057728489541,149.55225000000002,0.39579937432211004,0.2872142857142868,29.154783989003786,66515 -2024-12-04 06:00:00+00:00,13721,150.098,150.17,149.862,150.008,USD_JPY,H1,74.39159292035421,0.07632486359219115,-0.007429087051613315,0.08375395064380446,149.55014999999997,0.3931218205167465,0.2779285714285708,32.93507255958069,52794 -2024-12-04 07:00:00+00:00,16478,150.006,150.44,149.98,150.384,USD_JPY,H1,77.95238095238088,0.11620011238449024,0.017296752835607394,0.09890335954888285,149.58249999999998,0.43382102783003706,0.28021428571428586,36.38275842674163,69272 -2024-12-04 08:00:00+00:00,18484,150.383,150.546,150.298,150.44,USD_JPY,H1,85.16096579476903,0.15058442283563522,0.04395428683561296,0.10663013600002226,149.62025,0.474181385989746,0.28107142857142875,40.17310649284165,87756 -2024-12-04 09:00:00+00:00,17810,150.439,150.78,150.432,150.626,USD_JPY,H1,82.71821909783313,0.19064524244450354,0.07329247795739108,0.11735276448711246,149.7089,0.48870375266816707,0.26471428571428696,45.43785030748508,105566 -2024-12-04 10:00:00+00:00,14341,150.624,150.894,150.616,150.867,USD_JPY,H1,87.22955145118773,0.2390844003438417,0.10645086243468121,0.1326335379091605,149.81105,0.5071722924095157,0.2760000000000003,50.74336395759815,119907 -2024-12-04 11:00:00+00:00,14098,150.866,151.05,150.778,150.892,USD_JPY,H1,86.40449438202282,0.27630500097330923,0.14042169014240682,0.1358833108309024,149.898,0.5366302264851966,0.2845714285714292,56.575904447663554,134005 -2024-12-04 12:00:00+00:00,13367,150.893,151.228,150.86,151.174,USD_JPY,H1,88.23529411764747,0.324813391768771,0.17730003046767967,0.14751336130109133,150.00039999999998,0.5755521284899572,0.3075714285714294,62.37324473638116,147372 -2024-12-04 13:00:00+00:00,24317,151.172,151.232,150.8,151.075,USD_JPY,H1,84.08772748483396,0.35121952824076175,0.21208393002229609,0.13913559821846566,150.09365,0.5916109385478676,0.3295714285714289,68.08155424448648,123055 -2024-12-04 14:00:00+00:00,19596,151.074,151.134,150.809,150.864,USD_JPY,H1,73.63896848137564,0.3510736861234989,0.23988188124253668,0.1111918048809622,150.18474999999998,0.5606177865619809,0.3243571428571426,74.04853061109098,103459 -2024-12-04 15:00:00+00:00,30835,150.862,150.862,150.284,150.396,USD_JPY,H1,59.33014354066961,0.30962524929518054,0.2538305548530655,0.055794694442115045,150.2291,0.5390148811335533,0.3371428571428571,76.14923978702214,72624 -2024-12-04 16:00:00+00:00,16583,150.396,150.447,150.053,150.188,USD_JPY,H1,57.98908807482455,0.2570303173151842,0.25447050734548926,0.0025598099696949594,150.26569999999998,0.5076995692432685,0.3462142857142863,76.90967219276459,56041 -2024-12-04 17:00:00+00:00,11776,150.188,150.245,149.994,150.17,USD_JPY,H1,54.78547854785476,0.21145844391418223,0.24586809465922788,-0.03440965074504565,150.2944,0.4834963016016618,0.34135714285714464,74.12724264793924,44265 -2024-12-04 18:00:00+00:00,8144,150.17,150.434,150.042,150.428,USD_JPY,H1,58.62589656474129,0.19392539844145062,0.23547955541567242,-0.041554156974221795,150.33575000000002,0.4556345343866261,0.34850000000000136,69.80699135125016,52409 -2024-12-04 19:00:00+00:00,16954,150.43,150.598,150.222,150.444,USD_JPY,H1,56.782334384857926,0.17925505912870676,0.2242346561582793,-0.04497959702957255,150.37725,0.42307170908848996,0.3592857142857144,65.99206876531115,69363 -2024-12-04 20:00:00+00:00,10166,150.443,150.673,150.44,150.52,USD_JPY,H1,60.15873015873001,0.17178108890786348,0.21374394270819616,-0.04196285380033268,150.40955000000002,0.4069821507524791,0.3539285714285723,62.44030043530463,79529 -2024-12-04 21:00:00+00:00,6305,150.519,150.662,150.487,150.626,USD_JPY,H1,55.37777777777806,0.17242363544241357,0.20547988125503966,-0.03305624581262609,150.44445,0.3932091280725779,0.3335714285714297,57.915926076991624,85834 -2024-12-04 22:00:00+00:00,686,150.577,150.601,150.466,150.537,USD_JPY,H1,52.12439772229537,0.16386239827784266,0.19715638465960028,-0.03329398638175762,150.4824,0.36079304459931266,0.3255000000000012,52.02194799986272,85148 -2024-12-04 23:00:00+00:00,5504,150.534,150.778,150.514,150.547,USD_JPY,H1,48.12529663027986,0.15608521932239228,0.18894215159215869,-0.03285693226976641,150.51285000000001,0.3373674047209294,0.3194999999999989,45.96973435420369,90652 -2024-12-05 00:00:00+00:00,15698,150.546,150.546,150.194,150.224,USD_JPY,H1,35.31292827775272,0.12244685724249393,0.17564309272222572,-0.05319623547973179,150.5255,0.32029188986848495,0.32478571428571407,40.23502503541952,74954 -2024-12-05 01:00:00+00:00,17331,150.224,150.682,150.185,150.543,USD_JPY,H1,42.97221103503864,0.12014390282388376,0.16454325474255735,-0.044399351918673585,150.54765,0.3042328185345207,0.3408571428571402,34.55388254389687,92285 -2024-12-05 02:00:00+00:00,12432,150.539,150.568,150.218,150.338,USD_JPY,H1,32.6267664172903,0.10061715616743072,0.15175803502753202,-0.051140878860101296,150.56415,0.28152596866254226,0.3395714285714279,29.493004981863045,79853 -2024-12-05 03:00:00+00:00,8506,150.339,150.348,150.198,150.29,USD_JPY,H1,33.33333333333374,0.08034272894462902,0.13747497381095142,-0.0571322448663224,150.55945000000003,0.28544913360085655,0.319428571428572,24.78193025065658,71347 -2024-12-05 04:00:00+00:00,8479,150.29,150.429,150.235,150.392,USD_JPY,H1,39.49243098842399,0.07167937167383798,0.12431585338352874,-0.05263648170969076,150.55705,0.28670532732333537,0.31007142857142916,19.78206886089082,79826 -2024-12-05 05:00:00+00:00,14258,150.394,150.4,149.785,149.934,USD_JPY,H1,39.669051878354665,0.02753936957654446,0.1049605566221319,-0.07742118704558744,150.52245,0.31799478228050526,0.3127142857142867,18.168527196988432,65568 -2024-12-05 06:00:00+00:00,14702,149.934,149.934,149.662,149.783,USD_JPY,H1,40.706746213859795,-0.01940267616436131,0.08008791006483326,-0.09949058622919457,150.46825,0.34721536996002755,0.304,17.224816028244863,50866 -2024-12-05 07:00:00+00:00,14013,149.784,150.025,149.712,149.79,USD_JPY,H1,41.236162361623975,-0.05540111455212582,0.05299010514144145,-0.10839121969356727,150.41315,0.36348825721938144,0.3084285714285723,15.660517962717872,64879 -2024-12-05 08:00:00+00:00,16462,149.789,150.214,149.656,150.19,USD_JPY,H1,44.84848484848499,-0.051064835630256766,0.03217911698710181,-0.08324395261735858,150.36395,0.3189490100800339,0.3202857142857149,14.19640851452661,81341 -2024-12-05 09:00:00+00:00,11774,150.19,150.316,150.108,150.31,USD_JPY,H1,47.224523612262175,-0.03751288108313133,0.018240717373055184,-0.05575359845618652,150.3257,0.27153541976851103,0.30828571428571444,12.595275949802415,93115 -2024-12-05 10:00:00+00:00,9878,150.31,150.352,150.091,150.122,USD_JPY,H1,42.12193190815538,-0.04146490665357305,0.006299592567729537,-0.04776449922130259,150.2886,0.24334260011535253,0.3102857142857139,11.132054266971258,83237 -2024-12-05 11:00:00+00:00,10417,150.122,150.238,150.043,150.16,USD_JPY,H1,40.52074857607805,-0.041057349403558874,-0.0031717958265281452,-0.03788555357703073,150.27679999999998,0.24358238632055568,0.311714285714284,10.51853760486617,93654 -2024-12-05 12:00:00+00:00,13889,150.158,150.507,150.148,150.404,USD_JPY,H1,47.455032529659235,-0.020805760681696484,-0.006698588797561814,-0.01410717188413467,150.2876,0.24422560747531832,0.3277142857142853,10.300038044657882,107543 -2024-12-05 13:00:00+00:00,25426,150.401,150.696,150.197,150.608,USD_JPY,H1,51.086569291058176,0.011571475618126215,-0.003044575914424208,0.014616051532550422,150.3095,0.25261901828516153,0.34450000000000053,10.309254022209307,132969 -2024-12-05 14:00:00+00:00,22142,150.607,150.618,150.275,150.49,USD_JPY,H1,55.11145272867057,0.027393282113791884,0.0030429956912190106,0.02435028642257287,150.3126,0.2545229593188341,0.34385714285714236,11.412448588843768,110827 -2024-12-05 15:00:00+00:00,22035,150.488,150.505,150.176,150.252,USD_JPY,H1,44.22848076160263,0.020491355213067663,0.006532667595588742,0.013958687617478921,150.303,0.2529218726454981,0.3318571428571439,11.475800204721732,88792 -2024-12-05 16:00:00+00:00,15026,150.252,150.341,150.1,150.203,USD_JPY,H1,47.14587737843572,0.010941511000680748,0.007414436276607143,0.0035270747240736047,150.28715,0.24850146135195403,0.324071428571429,10.378178414888865,73766 -2024-12-05 17:00:00+00:00,10379,150.204,150.22,150.074,150.133,USD_JPY,H1,46.71135316296645,-0.002249295843796517,0.005481689852526411,-0.007730985696322928,150.2625,0.2373202366319948,0.32378571428571334,9.372086496399685,63387 -2024-12-05 18:00:00+00:00,6861,150.134,150.351,150.121,150.158,USD_JPY,H1,44.93506493506469,-0.010564038575552104,0.002272544166910708,-0.012836582742462813,150.24354999999997,0.2292418797948467,0.326357142857142,8.880945690177027,70248 -2024-12-05 19:00:00+00:00,9015,150.157,150.157,149.92,150.022,USD_JPY,H1,52.21327967806828,-0.027807053096751133,-0.00374337528582166,-0.024063677810929475,150.21729999999997,0.22262857900249897,0.29935714285714304,9.866007576236457,61233 -2024-12-05 20:00:00+00:00,6223,150.022,150.112,149.953,150.083,USD_JPY,H1,57.90305584826176,-0.03613355104815241,-0.01022141043828781,-0.025912140609864603,150.21025,0.22462878729894936,0.2912857142857145,12.224526038024393,67456 -2024-12-05 21:00:00+00:00,5175,150.084,150.128,150.05,150.097,USD_JPY,H1,58.05774278215277,-0.04112857307791273,-0.016402842966212798,-0.024725730111699935,150.18795,0.2116179464063781,0.2744999999999972,14.947452028447518,72631 -2024-12-05 22:00:00+00:00,1440,150.129,150.129,150.038,150.077,USD_JPY,H1,46.29508196721308,-0.046168791784083396,-0.02235603272978692,-0.023812759054296476,150.1749,0.20991850543827936,0.2411428571428534,16.8571910110685,71191 -2024-12-05 23:00:00+00:00,4186,150.082,150.236,150.059,150.122,USD_JPY,H1,43.517241379310704,-0.04600179741674992,-0.027085185667179525,-0.0189166117495704,150.16649999999998,0.20842630902515022,0.2389285714285673,18.54283888619799,75377 -2024-12-06 00:00:00+00:00,14713,150.124,150.277,149.864,150.103,USD_JPY,H1,49.25839188134249,-0.04686239388203717,-0.031040627310151052,-0.015821766571886116,150.15205,0.20188518748387918,0.2497857142857092,18.593652149716156,60664 -2024-12-06 01:00:00+00:00,13412,150.102,150.224,150.022,150.046,USD_JPY,H1,45.61538461538459,-0.05154961454420004,-0.035142424756960854,-0.016407189787239186,150.15765,0.19701303050450397,0.25028571428570956,18.518007659115927,47252 -2024-12-06 02:00:00+00:00,10934,150.045,150.046,149.818,149.832,USD_JPY,H1,27.48031496063051,-0.0717057035012374,-0.042455080505816166,-0.02925062299542123,150.1601,0.1923584646575629,0.24092857142856466,20.354979381602966,36318 -2024-12-06 03:00:00+00:00,8257,149.826,149.926,149.768,149.88,USD_JPY,H1,17.324955116697154,-0.08285129224535126,-0.05053432285372318,-0.03231696939162808,150.1646,0.18412106994884317,0.21657142857142123,24.129583258575398,44575 -2024-12-06 04:00:00+00:00,7623,149.882,150.024,149.832,149.978,USD_JPY,H1,26.599634369288097,-0.08282175303065742,-0.056991808889110034,-0.025829944141547385,150.154,0.1886291264530932,0.20578571428570822,25.452449882944908,52198 -2024-12-06 05:00:00+00:00,7943,149.98,150.07,149.874,149.939,USD_JPY,H1,32.51396648044731,-0.08496588324103982,-0.062586623759496,-0.022379259481543817,150.13545,0.1907112655825824,0.1962857142857075,26.941704703403264,44255 -2024-12-06 06:00:00+00:00,9692,149.938,150.021,149.772,149.865,USD_JPY,H1,31.630434782609925,-0.0915806190669457,-0.06838542282098595,-0.023195196245959754,150.1226,0.2000927152967464,0.19685714285713476,29.044129503369167,34563 -2024-12-06 07:00:00+00:00,13199,149.864,150.172,149.82,150.093,USD_JPY,H1,48.14471243042582,-0.0775314164340557,-0.07021462154359989,-0.007316794890455808,150.11925000000002,0.19999444065715033,0.2115714285714217,29.870120314393137,47762 -2024-12-06 08:00:00+00:00,14205,150.094,150.421,150.094,150.368,USD_JPY,H1,57.90662650602404,-0.04370333555149841,-0.0649123643451796,0.02120902879368118,150.11745000000002,0.19744245658465742,0.21857142857142264,29.768982308576017,61967 -2024-12-06 09:00:00+00:00,9618,150.37,150.608,150.362,150.575,USD_JPY,H1,69.7641172265895,-0.00018898915573117847,-0.05196768930728991,0.051778700151558735,150.11579999999998,0.19321997275826994,0.21921428571427878,29.26128778529436,71585 -2024-12-06 10:00:00+00:00,9820,150.576,150.7,150.496,150.574,USD_JPY,H1,68.33457804331606,0.033825829121923334,-0.03480898562144726,0.0686348147433706,150.11999999999998,0.20247339001011422,0.22242857142856362,27.92073427780673,61765 -2024-12-06 11:00:00+00:00,9464,150.572,150.622,150.478,150.511,USD_JPY,H1,64.91354466858706,0.05506449496201071,-0.016834289504755667,0.07189878446676638,150.13295,0.21897091246171335,0.22714285714285154,26.643974012220877,52301 -2024-12-06 12:00:00+00:00,11478,150.512,150.661,150.37,150.408,USD_JPY,H1,61.25084976206599,0.06286043549243914,-0.0008953445053167062,0.06375577999775585,150.1432,0.22707072855718546,0.24142857142856705,25.64956001195619,40823 -2024-12-06 13:00:00+00:00,36415,150.41,150.591,149.652,149.663,USD_JPY,H1,39.42883463841537,0.008821808438028711,0.0010480860833523772,0.007773722354676334,150.11970000000002,0.2512185250860224,0.29585714285714054,25.775671193300408,4408 -2024-12-06 14:00:00+00:00,38440,149.662,149.891,149.362,149.658,USD_JPY,H1,39.6847473342601,-0.03401554105974469,-0.005964639345267037,-0.028050901714477654,150.09470000000002,0.2712839064018912,0.3041428571428558,27.580784102753313,-34032 -2024-12-06 15:00:00+00:00,26087,149.657,150.048,149.64,149.869,USD_JPY,H1,46.17048896581584,-0.05035801669407647,-0.014843314815028923,-0.035514701879047546,150.08705,0.27556534706714525,0.3188571428571428,28.575578781758477,-7945 -2024-12-06 16:00:00+00:00,18905,149.87,150.118,149.678,149.794,USD_JPY,H1,49.12523020257868,-0.06857097604637374,-0.02558884706129789,-0.042982128985075856,150.07260000000002,0.2832587434967721,0.33400000000000113,26.916250666950955,-26850 -2024-12-06 17:00:00+00:00,11837,149.795,150.043,149.794,149.962,USD_JPY,H1,51.78883071553218,-0.06865724361816206,-0.034202526372670725,-0.03445471724549133,150.06585,0.28425345895037735,0.34050000000000175,23.4016709461086,-15013 -2024-12-06 18:00:00+00:00,7677,149.964,150.048,149.882,149.99,USD_JPY,H1,50.27002700270028,-0.06570879520725725,-0.04050378013958803,-0.02520501506766922,150.0615,0.2847391234076044,0.33864285714285813,21.236035850030554,-7336 -2024-12-06 19:00:00+00:00,7330,149.99,150.134,149.97,149.974,USD_JPY,H1,50.795816280127255,-0.06392629237586789,-0.045188282586844,-0.018738009789023888,150.0541,0.2850070912856893,0.3363571428571431,19.712957548836265,-14666 -2024-12-06 20:00:00+00:00,6771,149.973,150.058,149.954,149.962,USD_JPY,H1,52.26953673373841,-0.06275850477430822,-0.04870232702433685,-0.014056177749971373,150.04704999999998,0.28547734259613167,0.3259999999999995,17.828478343900862,-21437 -2024-12-06 21:00:00+00:00,4699,149.96,150.094,149.948,150.042,USD_JPY,H1,48.71794871794905,-0.05474660845089829,-0.049911183309649144,-0.004835425141249149,150.04685,0.28547951807618693,0.31128571428571256,17.712365668022326,-16738 -2024-12-08 22:00:00+00:00,1716,149.979,150.1,149.968,150.002,USD_JPY,H1,39.56670467502903,-0.05103647191887717,-0.05013624103149475,-0.0009002308873824194,150.05535,0.28124521512463024,0.2972857142857127,19.533090435657186,-18454 -2024-12-08 23:00:00+00:00,4984,150.004,150.048,149.856,149.896,USD_JPY,H1,29.46158499697573,-0.0560038980329125,-0.051309772431778304,-0.004694125601134198,150.05615,0.28074248826052595,0.2934285714285697,21.935641016143194,-23438 -2024-12-09 00:00:00+00:00,13100,149.896,149.974,149.69,149.846,USD_JPY,H1,28.613396004700775,-0.06324613902785359,-0.053697045750993364,-0.009549093276860224,150.04955,0.28420664735173085,0.2991428571428563,25.082798774571852,-36538 -2024-12-09 01:00:00+00:00,11964,149.846,150.053,149.752,149.913,USD_JPY,H1,32.47362250879341,-0.06285477639963233,-0.05552859188072116,-0.0073261845189111705,150.04825,0.28479778140576456,0.3103571428571407,27.844299680045232,-24574 -2024-12-09 02:00:00+00:00,9763,149.912,149.997,149.861,149.91,USD_JPY,H1,34.49564134495721,-0.06207117574902554,-0.05683710865438204,-0.005234067094643503,150.0505,0.28344840796494186,0.2992857142857141,31.3349509346714,-34337 -2024-12-09 03:00:00+00:00,7967,149.911,150.038,149.88,149.982,USD_JPY,H1,67.0953912111448,-0.05500629004555435,-0.05647094493261651,0.0014646548870621556,150.04495,0.2836590753536413,0.2434999999999994,31.07203712831923,-26370 -2024-12-09 04:00:00+00:00,8247,149.982,150.0,149.842,149.896,USD_JPY,H1,61.73570019723786,-0.05570466973608745,-0.0563176898933107,0.0006130201572232472,150.02135,0.2748657614544217,0.21699999999999875,28.974745831777025,-34617 -2024-12-09 05:00:00+00:00,8884,149.896,149.991,149.86,149.966,USD_JPY,H1,55.55555555555556,-0.050032976676106955,-0.05506074724986996,0.005027770573763003,149.99089999999998,0.24208130426057942,0.19721428571428337,29.56647908574772,-25733 -2024-12-09 06:00:00+00:00,9640,149.966,150.192,149.944,150.142,USD_JPY,H1,67.8644763860348,-0.03097928010004125,-0.05024445381990422,0.01926517371986297,149.9693,0.20351622198073102,0.18349999999999916,29.043881798814983,-16093 -2024-12-09 07:00:00+00:00,11847,150.142,150.352,150.112,150.346,USD_JPY,H1,69.00990099009776,0.0005753742555612007,-0.04008048820481114,0.04065586246037234,149.96105,0.18267903252723555,0.18285714285714302,29.96005949341653,-4246 -2024-12-09 08:00:00+00:00,15537,150.346,150.525,150.314,150.422,USD_JPY,H1,70.41587901701115,0.03135380289023715,-0.02579362998580148,0.05714743287603863,149.96175,0.18449957204010872,0.18607142857142986,31.387755177074666,11291 -2024-12-09 09:00:00+00:00,13408,150.421,150.492,150.349,150.42,USD_JPY,H1,71.36015325670348,0.05495110392436686,-0.009644683203767813,0.06459578712813467,149.9996,0.19719757652747147,0.18457142857143083,32.391443806103716,-2117 -2024-12-09 10:00:00+00:00,9974,150.419,150.485,150.354,150.458,USD_JPY,H1,73.17757009345668,0.07584413346475571,0.007453080129936894,0.06839105333481882,150.0396,0.20523296128765126,0.18650000000000336,33.860679256952174,7857 -2024-12-09 11:00:00+00:00,7850,150.46,150.505,150.388,150.491,USD_JPY,H1,71.94525904203209,0.09398147417630298,0.024758758939210115,0.06922271523709286,150.0707,0.22426537377097047,0.18442857142857502,34.77641623418186,15707 -2024-12-09 12:00:00+00:00,9274,150.49,150.847,150.438,150.766,USD_JPY,H1,80.36565977742214,0.12905794938703252,0.0456185970287746,0.08343935235825792,150.1193,0.26310336167624704,0.2042142857142904,35.86218168112209,24981 -2024-12-09 13:00:00+00:00,13140,150.765,150.952,150.742,150.877,USD_JPY,H1,88.83610451306313,0.16392347327709444,0.06927957227843856,0.09464390099865588,150.16505,0.30973239294785604,0.20550000000000473,36.82176044307156,38121 -2024-12-09 14:00:00+00:00,13637,150.876,150.949,150.7,150.932,USD_JPY,H1,92.82334384857788,0.19375915754108064,0.09417548933096698,0.09958366821011366,150.21215,0.3506348039878467,0.203000000000007,38.2227428738842,51758 -2024-12-09 15:00:00+00:00,15392,150.932,151.245,150.926,151.025,USD_JPY,H1,92.96754250386152,0.2223454154967044,0.11980947456411448,0.10253594093258991,150.2647,0.3896510044146743,0.20428571428572337,40.33919715618182,67150 -2024-12-09 16:00:00+00:00,10607,151.027,151.25,150.97,151.24,USD_JPY,H1,94.15670650730286,0.2593592026072713,0.14771942017274586,0.11163978243452544,150.3286,0.4390569319029085,0.21457142857143602,42.29346192579091,77757 -2024-12-09 17:00:00+00:00,6848,151.241,151.348,151.202,151.329,USD_JPY,H1,94.22193040052402,0.29250266313428597,0.1766760687650539,0.11582659436923207,150.39294999999998,0.48658265644940785,0.21371428571429313,46.88952495569364,84605 -2024-12-09 18:00:00+00:00,4732,151.33,151.338,151.234,151.272,USD_JPY,H1,96.0508701472541,0.3105893896083387,0.20345873293371086,0.10713065667462784,150.45645,0.5149211973226574,0.20985714285715013,53.47243286877502,79873 -2024-12-09 19:00:00+00:00,5156,151.271,151.316,151.185,151.24,USD_JPY,H1,93.74999999999952,0.31866771502691904,0.22650052935235251,0.09216718567456653,150.52365,0.5255204212364317,0.20985714285715013,57.69731495773563,74717 -2024-12-09 20:00:00+00:00,5295,151.24,151.299,151.166,151.222,USD_JPY,H1,91.60246533127841,0.31992944901554665,0.24518631328499135,0.0747431357305553,150.59245,0.5221956151721767,0.20164285714286376,63.45161300401354,69422 -2024-12-09 21:00:00+00:00,5316,151.222,151.254,151.135,151.216,USD_JPY,H1,89.54545454545394,0.3167934349152972,0.25950773761105256,0.057285697304244654,150.6576,0.5141855491223033,0.19300000000000597,67.11880089167003,64106 -2024-12-09 22:00:00+00:00,1147,151.219,151.296,151.179,151.25,USD_JPY,H1,89.13043478260805,0.31343851292888303,0.2702938926746187,0.043144620254264354,150.7246,0.49871417822023906,0.18628571428571863,69.6991974799649,65253 -2024-12-09 23:00:00+00:00,4446,151.244,151.434,151.199,151.391,USD_JPY,H1,90.55973266499588,0.318485927179637,0.2799322995756224,0.038553627604014595,150.79505,0.48768901596698067,0.1928571428571461,73.14131593254203,69699 -2024-12-10 00:00:00+00:00,14052,151.391,151.494,151.228,151.445,USD_JPY,H1,90.68425391591096,0.32311867706638964,0.28856957507377584,0.034549101992613795,150.8725,0.4595847667992414,0.2025000000000026,76.40058400047283,83751 -2024-12-10 01:00:00+00:00,10997,151.446,151.551,151.283,151.315,USD_JPY,H1,81.45038167938932,0.3126956899170352,0.29339479804242774,0.019300891874607484,150.93995,0.4165155553806166,0.21328571428571763,79.79471597860211,72754 -2024-12-10 02:00:00+00:00,12856,151.314,151.314,151.038,151.202,USD_JPY,H1,68.9895470383279,0.291951803234042,0.2931061990807506,-0.0011543958467085669,150.99295,0.37500771568259583,0.2037857142857149,78.72469940399574,59898 -2024-12-10 03:00:00+00:00,10361,151.202,151.276,151.034,151.072,USD_JPY,H1,58.354755784061595,0.2620020139156338,0.28688536204772724,-0.02488334813209342,151.02925,0.342846885389877,0.20607142857142996,75.87318881697868,49537 -2024-12-10 04:00:00+00:00,10747,151.071,151.148,150.954,151.132,USD_JPY,H1,58.53242320819188,0.24033762611443876,0.2775758148610696,-0.03723818874663082,151.06475,0.31203371525073803,0.20214285714285601,71.36040215597356,60284 -2024-12-10 05:00:00+00:00,10116,151.131,151.299,150.898,150.936,USD_JPY,H1,46.50980392156862,0.20498988494694004,0.2630586288782437,-0.05806874393130368,151.09055,0.2750595102701677,0.2079999999999984,65.86528435700247,50168 -2024-12-10 06:00:00+00:00,12279,150.938,151.276,150.902,151.224,USD_JPY,H1,49.406528189910226,0.19793407765106963,0.2500337186328089,-0.05209964098173925,151.12885,0.23236184912109012,0.21471428571428572,60.33441503252807,62447 -2024-12-10 07:00:00+00:00,12129,151.226,151.584,151.182,151.556,USD_JPY,H1,57.13387806411084,0.21663469498165,0.2433539139025771,-0.0267192189209271,151.1821,0.19798216288797857,0.23300000000000004,55.90505204070819,74576 -2024-12-10 08:00:00+00:00,16869,151.554,151.786,151.504,151.636,USD_JPY,H1,61.27633209417646,0.23519917072519547,0.2417229652671008,-0.006523794541905326,151.2256,0.19732191166182028,0.24571428571428758,51.90381010971421,91445 -2024-12-10 09:00:00+00:00,14626,151.636,151.67,151.414,151.598,USD_JPY,H1,61.04938271604986,0.24403231644191692,0.24218483550206404,0.0018474809398528746,151.26165,0.1961404638486893,0.254642857142859,48.08700495770161,76819 -2024-12-10 10:00:00+00:00,9747,151.598,151.612,151.471,151.593,USD_JPY,H1,61.54324828873639,0.24777301674487262,0.24330247175062578,0.0044705449942468445,151.2947,0.19334019643838452,0.2552142857142862,45.15096702522264,67072 -2024-12-10 11:00:00+00:00,9053,151.594,151.736,151.579,151.706,USD_JPY,H1,64.29404900816772,0.25689438573726875,0.2460208545479544,0.010873531189314362,151.32875,0.2030646448300199,0.25792857142857073,43.315684620152446,76125 -2024-12-10 12:00:00+00:00,9737,151.706,151.801,151.552,151.785,USD_JPY,H1,65.20750426378626,0.2674151804095004,0.2502997197202636,0.017115460689236806,151.356,0.2258208418449575,0.2673571428571425,41.76084847885033,85862 -2024-12-10 13:00:00+00:00,13793,151.786,151.841,151.53,151.682,USD_JPY,H1,58.45438698431134,0.26439397759818917,0.2531185712958487,0.011275406302340474,151.37365,0.23711229291982897,0.27278571428571546,39.671846955426766,72069 -2024-12-10 14:00:00+00:00,15987,151.68,151.827,151.586,151.827,USD_JPY,H1,60.540838852097195,0.2705808531437697,0.2566110276654329,0.01396982547833675,151.40140000000002,0.2562908298276461,0.2710000000000008,37.33871886234285,88056 -2024-12-10 15:00:00+00:00,16549,151.826,152.173,151.751,152.127,USD_JPY,H1,70.48435923309789,0.29627620175477887,0.2645440624833021,0.03173213927147678,151.44575,0.2999229505988517,0.28200000000000053,35.68290115899263,104605 -2024-12-10 16:00:00+00:00,12325,152.128,152.184,151.974,152.053,USD_JPY,H1,71.89912506433302,0.307128384264729,0.2730609268395875,0.0340674574251415,151.4873,0.3238974983754626,0.2772857142857167,39.1686150118727,92280 -2024-12-10 17:00:00+00:00,7863,152.052,152.153,151.989,152.113,USD_JPY,H1,77.78964228510333,0.3169170926783522,0.28183216000734046,0.03508493267101176,151.53215,0.3457218649073381,0.27171428571428585,43.33457298831021,100143 -2024-12-10 18:00:00+00:00,7788,152.11,152.124,151.88,151.92,USD_JPY,H1,69.64107676968993,0.305578706476183,0.286581469301109,0.01899723717507401,151.56564999999998,0.349384613105759,0.27528571428571524,47.52733173970342,92355 -2024-12-10 19:00:00+00:00,5429,151.92,151.955,151.844,151.93,USD_JPY,H1,77.30769230769113,0.29401069783941125,0.2880673150087695,0.005943382830641775,151.5926,0.3559305668264812,0.2545714285714301,52.006902948143605,97784 -2024-12-10 20:00:00+00:00,6147,151.93,151.948,151.832,151.932,USD_JPY,H1,73.07692307692187,0.28175643810590145,0.28680513962819587,-0.005048701522294419,151.61695,0.36190962448682645,0.23614285714285796,56.32756438694368,103931 -2024-12-10 21:00:00+00:00,4496,151.934,151.985,151.897,151.97,USD_JPY,H1,66.69354838709538,0.2719759618120463,0.283839304064966,-0.011863342252919684,151.6497,0.36278253596543486,0.21371428571428705,58.96911260658556,108427 -2024-12-10 22:00:00+00:00,295,151.944,151.958,151.934,151.943,USD_JPY,H1,62.93176074136473,0.25905990817085467,0.27888342488614376,-0.01982351671528909,151.68675,0.352341621727511,0.19528571428571492,60.04948465067901,108132 -2024-12-10 23:00:00+00:00,3407,151.944,151.953,151.787,151.844,USD_JPY,H1,59.85576923076764,0.23809080736168653,0.2707249013812523,-0.032634094019565796,151.72535,0.32247060654553666,0.18885714285714325,60.64608658248862,104725 -2024-12-11 00:00:00+00:00,10670,151.843,151.873,151.706,151.731,USD_JPY,H1,55.08849557522113,0.20993449410823928,0.25856681992664976,-0.04863232581841048,151.7553,0.29071474530633434,0.19071428571428686,59.219435743979275,94055 -2024-12-11 01:00:00+00:00,10527,151.73,151.828,151.696,151.706,USD_JPY,H1,50.0,0.18348798664061405,0.24355105326944262,-0.06006306662882857,151.79379999999998,0.21852606729165727,0.1889285714285742,56.29301418092273,83528 -2024-12-11 02:00:00+00:00,8918,151.707,151.724,151.444,151.446,USD_JPY,H1,38.30227743271282,0.13993601655468524,0.22282804592649116,-0.08289202937180593,151.8049,0.19210027529960938,0.19114285714286033,54.311414632479114,74610 -2024-12-11 03:00:00+00:00,6695,151.444,151.642,151.416,151.548,USD_JPY,H1,45.372928176796265,0.1123561423671049,0.20073366521461392,-0.08837752284750902,151.80450000000002,0.192653356498622,0.1850714285714312,53.08000278761356,81305 -2024-12-11 04:00:00+00:00,6366,151.546,151.616,151.465,151.547,USD_JPY,H1,39.263803680982036,0.08938779487118609,0.17846449114592836,-0.08907669627474227,151.80005,0.19771177182339555,0.17864285714286154,52.174932423651704,74939 -2024-12-11 05:00:00+00:00,6729,151.547,151.766,151.534,151.754,USD_JPY,H1,34.599504541700824,0.08688680700549867,0.16014895431784243,-0.07326214731234376,151.80784999999997,0.1923249100697798,0.16507142857143314,52.83861892191646,81668 -2024-12-11 06:00:00+00:00,7553,151.754,151.793,151.625,151.763,USD_JPY,H1,37.34729493891881,0.08465512925312169,0.1450501893048983,-0.06039506005177661,151.81635,0.18598168410581856,0.16207142857143303,51.23647802845718,89221 -2024-12-11 07:00:00+00:00,20053,151.764,151.794,151.422,151.654,USD_JPY,H1,30.79497907949859,0.07324677626473886,0.1306895066968664,-0.05744273043212755,151.81374999999997,0.18795852700918786,0.1769285714285778,50.03476065879642,69168 -2024-12-11 08:00:00+00:00,16816,151.658,151.719,151.468,151.626,USD_JPY,H1,35.728155339807074,0.06124026863835752,0.11679965908516464,-0.05555939044680712,151.8058,0.19254516894998044,0.17742857142857815,48.728778769784775,52352 -2024-12-11 09:00:00+00:00,32125,151.626,152.728,151.004,152.679,USD_JPY,H1,68.0656054027977,0.1351355658696889,0.12046684044206948,0.014668725427619406,151.85565000000003,0.27162770086192195,0.2926428571428638,45.274078014584966,84477 -2024-12-11 10:00:00+00:00,16546,152.68,152.8,152.489,152.598,USD_JPY,H1,65.47397769516776,0.18502919685298025,0.13337931172425166,0.05164988512872859,151.8942,0.31808565543166195,0.30657142857143477,42.23275929878964,67931 -2024-12-11 11:00:00+00:00,11199,152.597,152.711,152.514,152.555,USD_JPY,H1,63.56050069541042,0.21858085421192186,0.1504196202217857,0.06816123399013616,151.91559999999998,0.34760025434830455,0.31435714285714766,39.76248036092931,56732 -2024-12-11 12:00:00+00:00,12207,152.554,152.706,152.53,152.656,USD_JPY,H1,65.97938144329866,0.2504337953995446,0.17042245525733749,0.0800113401422071,151.94575,0.3843535755441637,0.32521428571428956,38.11788622705534,68939 -2024-12-11 13:00:00+00:00,30892,152.656,152.866,152.054,152.299,USD_JPY,H1,59.140216954600476,0.2440572245875785,0.1851494091233857,0.0589078154641928,151.95504999999997,0.390809480413369,0.37135714285714777,35.84963794792726,38047 -2024-12-11 14:00:00+00:00,26798,152.3,152.333,151.92,152.135,USD_JPY,H1,57.95275590551167,0.2231974357794968,0.1927590144546079,0.030438421324888887,151.9658,0.39274681811426554,0.388928571428577,34.87558298729765,11249 -2024-12-11 15:00:00+00:00,25616,152.136,152.524,152.082,152.463,USD_JPY,H1,63.31340133661625,0.23047597804350062,0.20030240717238645,0.030173570871114164,151.99245,0.4079778728287503,0.41107142857143436,35.36998529456422,36865 -2024-12-11 16:00:00+00:00,14038,152.461,152.559,152.244,152.344,USD_JPY,H1,66.61732050333063,0.2240591552811395,0.2050537567941371,0.019005398487002417,152.01305,0.4151042322902464,0.4135714285714341,35.89906910477764,22827 -2024-12-11 17:00:00+00:00,7832,152.344,152.545,152.318,152.497,USD_JPY,H1,67.23574282600794,0.22868347755814966,0.20977970094693962,0.018903776611210038,152.0394,0.4287304882557997,0.413642857142861,36.017054518865315,30659 -2024-12-11 18:00:00+00:00,11847,152.498,152.697,152.318,152.68,USD_JPY,H1,69.30153321976147,0.2442987331591553,0.21668350738938277,0.027615225769772517,152.07625000000002,0.4510982942040485,0.4299285714285738,36.39018710903902,42506 -2024-12-11 19:00:00+00:00,9039,152.682,152.722,152.532,152.645,USD_JPY,H1,66.12377850162882,0.25095685383615773,0.22353817667873777,0.02741867715741997,152.1163,0.4647444232356158,0.4269285714285737,34.21853802045931,33467 -2024-12-11 20:00:00+00:00,5402,152.648,152.65,152.524,152.594,USD_JPY,H1,64.81283422459855,0.24924504691549032,0.2286795507260883,0.02056549618940201,152.15945,0.4671449087497156,0.4239285714285736,32.18285034593987,28065 -2024-12-11 21:00:00+00:00,3842,152.593,152.598,152.458,152.466,USD_JPY,H1,64.37677053824378,0.23485266204124855,0.22991417298912037,0.004938489052128181,152.19745,0.45916050110047846,0.4073571428571451,30.182300366563947,24223 -2024-12-11 22:00:00+00:00,856,152.428,152.452,152.373,152.423,USD_JPY,H1,64.03663261711853,0.21746999398263256,0.22742533718782282,-0.009955343205190259,152.2463,0.4257629807427173,0.395071428571431,27.972624839843043,23367 -2024-12-11 23:00:00+00:00,4028,152.429,152.454,152.236,152.258,USD_JPY,H1,39.21066119938525,0.18821041081440626,0.21958235191313952,-0.03137194109873326,152.2818,0.392798140180012,0.2875000000000024,28.38533134629276,19339 -2024-12-12 00:00:00+00:00,13023,152.259,152.344,152.098,152.187,USD_JPY,H1,39.412673879443716,0.1574775703171838,0.2071613955939484,-0.0496838252767646,152.3138,0.35393228609361643,0.2828571428571434,29.505523633300747,6316 -2024-12-12 01:00:00+00:00,13183,152.19,152.2,151.952,151.98,USD_JPY,H1,36.342042755344316,0.11509169733139402,0.18874745594143755,-0.07365575861004353,152.3251,0.3383851589107453,0.2864999999999997,31.026093502062572,-6867 -2024-12-12 02:00:00+00:00,8160,151.98,152.322,151.956,152.32,USD_JPY,H1,42.83276450511934,0.10769431311371136,0.17253682737589232,-0.06484251426218096,152.35295000000002,0.3115447885052462,0.30007142857143015,31.6816043629839,1293 -2024-12-12 03:00:00+00:00,7399,152.321,152.416,152.208,152.357,USD_JPY,H1,51.43280632411045,0.10362292305012488,0.15875404651073882,-0.05513112346061394,152.3881,0.2646664036949794,0.256928571428572,31.468873587971125,8692 -2024-12-12 04:00:00+00:00,6683,152.356,152.394,152.186,152.194,USD_JPY,H1,51.45823035096382,0.08624935051540206,0.14425310731167146,-0.0580037567962694,152.41649999999998,0.2015290235924921,0.242285714285714,30.870045874404465,2009 -2024-12-12 05:00:00+00:00,12302,152.193,152.61,152.185,152.495,USD_JPY,H1,50.80160320641306,0.09566607459203169,0.13453570076774352,-0.038869626175711824,152.4073,0.1929314303679235,0.24107142857142858,29.8731329512622,14311 -2024-12-12 06:00:00+00:00,13311,152.496,152.775,152.459,152.482,USD_JPY,H1,53.65079365079365,0.10091660115244849,0.12781188084468453,-0.02689527969223604,152.4015,0.1885915943391497,0.2411428571428575,28.50715729824746,1000 -2024-12-12 07:00:00+00:00,14994,152.484,152.588,152.27,152.573,USD_JPY,H1,52.07877461706758,0.11113947408549052,0.12447739949284574,-0.01333792540735522,152.4024,0.18940388475595474,0.24764285714285808,26.302046188670932,15994 -2024-12-12 08:00:00+00:00,18008,152.574,152.664,152.366,152.504,USD_JPY,H1,44.86581096849453,0.1123780272485817,0.12205752504399293,-0.009679497795411232,152.3948,0.1815803721789196,0.24185714285714255,24.098747218777014,-2014 -2024-12-12 09:00:00+00:00,12900,152.505,152.629,152.446,152.527,USD_JPY,H1,46.53349001175036,0.11390250021401016,0.12042652007799638,-0.006524019863986222,152.4062,0.182404582071428,0.2413571428571422,22.465512927649844,10886 -2024-12-12 10:00:00+00:00,10422,152.527,152.542,152.202,152.321,USD_JPY,H1,42.649434571890474,0.09736580524142369,0.11581437711068185,-0.018448571869258162,152.4155,0.17231198749463303,0.2566428571428564,21.82861676027968,464 -2024-12-12 11:00:00+00:00,10683,152.322,152.346,152.167,152.188,USD_JPY,H1,42.53490870032202,0.07269043675586317,0.10718958903971812,-0.034499152283854945,152.40175000000002,0.17915822904441217,0.25942857142856973,20.46493549318647,-10219 -2024-12-12 12:00:00+00:00,12046,152.188,152.366,152.12,152.276,USD_JPY,H1,46.14577871001615,0.05954944507337245,0.097661560246449,-0.03811211517307654,152.39835,0.1809481678696343,0.2713571428571413,19.565715639892865,1827 -2024-12-12 13:00:00+00:00,31397,152.276,152.388,151.802,152.032,USD_JPY,H1,44.31017119838904,0.029110782700229265,0.08395140473720505,-0.05484062203697579,152.3751,0.19678625856650736,0.2976428571428552,19.30900139344248,-29570 -2024-12-12 14:00:00+00:00,31233,152.032,152.403,151.875,152.248,USD_JPY,H1,51.4312529328948,0.02216185026887274,0.0715934938435386,-0.049431643574665854,152.3535,0.1849083698613488,0.3177857142857131,17.57898328329743,1663 -2024-12-12 15:00:00+00:00,23845,152.246,152.38,152.11,152.288,USD_JPY,H1,57.84114052953177,0.019655856480540024,0.061205966370938884,-0.04155010989039886,152.33565000000002,0.17207350780076108,0.31935714285714106,15.003583249193285,25508 -2024-12-12 16:00:00+00:00,13964,152.288,152.316,152.044,152.078,USD_JPY,H1,43.402399127590556,0.0007163359172466244,0.04910804028020044,-0.048391704362953814,152.30985,0.1699694321820624,0.3126428571428538,14.216699972612641,11544 -2024-12-12 17:00:00+00:00,10531,152.079,152.303,152.042,152.266,USD_JPY,H1,47.70780856423161,0.0008666678301381125,0.03945976579018798,-0.038593097960049866,152.29985000000002,0.16613921708983873,0.31642857142856784,16.345733573835474,22075 -2024-12-12 18:00:00+00:00,11255,152.266,152.523,152.24,152.48,USD_JPY,H1,57.023575638506706,0.018045797758134086,0.035176972183777196,-0.01713117442564311,152.30270000000002,0.16883006087551145,0.3217857142857099,17.570418336945686,33330 -2024-12-12 19:00:00+00:00,8154,152.481,152.55,152.436,152.54,USD_JPY,H1,51.25348189415004,0.03608590470736317,0.03535875868849439,0.0007271460188687795,152.3168,0.17650185620759073,0.29957142857142366,19.827949067730476,41484 -2024-12-12 20:00:00+00:00,5506,152.54,152.678,152.526,152.664,USD_JPY,H1,54.77439664218218,0.05970039414381745,0.040227085779559,0.019473308364258445,152.34065,0.18976835597373345,0.28785714285713687,21.68950265993234,46990 -2024-12-12 21:00:00+00:00,3658,152.663,152.692,152.603,152.649,USD_JPY,H1,52.07650273224024,0.07632484718786259,0.04744663806121972,0.028878209126642865,152.3741,0.18163899993516835,0.2714999999999951,23.43856910700604,43332 -2024-12-12 22:00:00+00:00,1004,152.626,152.633,152.552,152.58,USD_JPY,H1,52.07650273224105,0.08297563122874863,0.05455243669472551,0.028423194534023116,152.3871,0.18679425772362995,0.2559999999999982,25.67825769194619,42328 -2024-12-12 23:00:00+00:00,4724,152.58,152.648,152.458,152.596,USD_JPY,H1,51.892484914975796,0.08851712150320168,0.061345373656420746,0.027171747846780933,152.39905,0.19233016426697586,0.25649999999999856,27.659852228125057,47052 -2024-12-13 00:00:00+00:00,14568,152.601,152.954,152.556,152.823,USD_JPY,H1,63.61171366594391,0.1099582649204649,0.07106795190922957,0.03889031301123533,152.4305,0.20783761369386405,0.2606428571428552,26.39763396590676,61620 -2024-12-13 01:00:00+00:00,12082,152.823,152.956,152.698,152.768,USD_JPY,H1,66.42129105322806,0.12111633153034518,0.0810776278334527,0.04003870369689248,152.44415,0.2208539109496862,0.26628571428571085,25.4584502289537,49538 -2024-12-13 02:00:00+00:00,10118,152.768,152.918,152.645,152.908,USD_JPY,H1,67.38173817381717,0.1396462545833117,0.0927913531834245,0.0468549013998872,152.46545,0.24402361292714594,0.26821428571428135,24.615457886690702,59656 -2024-12-13 03:00:00+00:00,7930,152.909,153.05,152.88,152.903,USD_JPY,H1,77.5807473084233,0.15217372985748057,0.10466782851823572,0.047505901339244844,152.48194999999998,0.2621611547015796,0.23849999999999585,26.24862738586125,51726 -2024-12-13 04:00:00+00:00,7308,152.902,153.089,152.89,152.952,USD_JPY,H1,74.92917847025562,0.16416336171207035,0.11656693515700264,0.04759642655506771,152.50435,0.2824951373270868,0.21499999999999733,28.46829226131382,59034 -2024-12-13 05:00:00+00:00,6359,152.952,153.035,152.882,152.894,USD_JPY,H1,71.18881118881174,0.16705935975528519,0.12666542007665915,0.040393939678626034,152.5227,0.29565682450543423,0.20664285714285516,31.101327643911368,52675 -2024-12-13 06:00:00+00:00,7815,152.894,153.0,152.673,152.712,USD_JPY,H1,72.61055634807435,0.15290597520501592,0.1319135311023305,0.020992444102685415,152.54225,0.2945427991111771,0.21057142857142708,31.54389526273066,44860 -2024-12-13 07:00:00+00:00,12982,152.712,152.896,152.712,152.798,USD_JPY,H1,70.46153846153913,0.1469350217801093,0.13491782923788628,0.012017192542223026,152.57274999999998,0.28742630631333543,0.2050714285714272,31.649576160702058,57842 -2024-12-13 08:00:00+00:00,13438,152.798,153.186,152.798,153.163,USD_JPY,H1,73.53549276361214,0.16969926030157012,0.14187411545062306,0.02782514485094706,152.6171,0.30699389670420396,0.2125714285714285,33.46214977640796,71280 -2024-12-13 09:00:00+00:00,10897,153.164,153.48,153.12,153.411,USD_JPY,H1,76.5710799267852,0.20538407099158462,0.15457610655881537,0.05080796443276925,152.68605,0.32310279850725204,0.2301428571428557,34.78765049867342,82177 -2024-12-13 10:00:00+00:00,9503,153.41,153.503,153.366,153.47,USD_JPY,H1,75.60355781448601,0.23570824949808866,0.17080253514667004,0.06490571435141862,152.74714999999998,0.35030351874541804,0.2290714285714261,35.60116141671378,91680 -2024-12-13 11:00:00+00:00,7333,153.469,153.628,153.448,153.628,USD_JPY,H1,78.50902737332538,0.26938436371833063,0.19051890086100215,0.07886546285732848,152.81414999999998,0.3843543149960131,0.23557142857142463,37.53271888882379,99013 -2024-12-13 12:00:00+00:00,11128,153.628,153.668,153.32,153.454,USD_JPY,H1,73.98463227222854,0.27881853453229155,0.20817882759526005,0.0706397069370315,152.88295,0.36847187635787176,0.2546428571428529,38.10067902269336,87885 -2024-12-13 13:00:00+00:00,11847,153.454,153.534,153.261,153.302,USD_JPY,H1,68.02860061287001,0.270907203579867,0.22072450279218145,0.050182700787685525,152.93474999999998,0.34950865885431226,0.26057142857142424,38.83146905229881,76038 -2024-12-13 14:00:00+00:00,11795,153.302,153.63,153.301,153.599,USD_JPY,H1,69.1321499013803,0.28531391347664226,0.23364238492907363,0.051671528547568624,152.9907,0.36221483881300826,0.2556428571428536,41.3595378826932,87833 -2024-12-13 15:00:00+00:00,12216,153.6,153.69,153.458,153.663,USD_JPY,H1,71.96858124693195,0.2984551942963094,0.2466049468025208,0.05185024749378861,153.04685,0.37547111106701336,0.25378571428571206,43.833675661708526,100049 -2024-12-13 16:00:00+00:00,8367,153.664,153.777,153.556,153.75,USD_JPY,H1,71.21975806451636,0.31229004172715236,0.2597419657874471,0.05254807593970523,153.10115000000002,0.3951993866973769,0.25007142857142484,46.93648934516609,108416 -2024-12-13 17:00:00+00:00,6142,153.75,153.802,153.685,153.69,USD_JPY,H1,69.29867582148113,0.3147841239965601,0.2707503974292697,0.04403372656729038,153.15320000000003,0.40102429376963306,0.24628571428570872,46.71847079688086,102274 -2024-12-13 18:00:00+00:00,5611,153.691,153.744,153.662,153.7,USD_JPY,H1,68.69999999999976,0.31394861439005695,0.27939004082142715,0.03455857356862979,153.2092,0.39492179103668784,0.23792857142856455,46.14539990395393,107885 -2024-12-13 19:00:00+00:00,5361,153.7,153.75,153.684,153.688,USD_JPY,H1,70.31729785056243,0.30875898590184647,0.28526382983751103,0.023495156064335443,153.2638,0.3809208509912787,0.2317142857142796,45.65625237952979,102524 -2024-12-13 20:00:00+00:00,3822,153.689,153.73,153.65,153.656,USD_JPY,H1,76.16407982261725,0.29862171018146455,0.28793540590630173,0.010686304275162817,153.30545,0.3756912891191176,0.21407142857142145,47.87385285396522,98702 -2024-12-13 21:00:00+00:00,2079,153.656,153.699,153.6,153.649,USD_JPY,H1,74.66666666666713,0.2867178991733965,0.2876919045597207,-0.0009740053863241949,153.34949999999998,0.3607084403373159,0.20799999999999436,48.96095224974625,96623 -2024-12-15 22:00:00+00:00,1933,153.62,153.738,153.509,153.62,USD_JPY,H1,66.45068394528471,0.27181072075765655,0.2845156677993079,-0.012704947041651371,153.3851,0.34981211495992837,0.19664285714285207,48.05333875954877,94690 -2024-12-15 23:00:00+00:00,4916,153.606,153.657,153.432,153.46,USD_JPY,H1,51.883166794773565,0.24427021663416326,0.276466577566279,-0.03219636093211575,153.41295,0.33108108004271963,0.1869999999999976,44.631175849720066,89774 -2024-12-16 00:00:00+00:00,12160,153.46,153.9,153.324,153.812,USD_JPY,H1,60.727728983689474,0.24798896449598828,0.27077105495222087,-0.022782090456232584,153.45595,0.3238310922366183,0.218357142857142,42.29209422909009,101934 -2024-12-16 01:00:00+00:00,10696,153.813,153.938,153.704,153.908,USD_JPY,H1,59.1383812010447,0.25573454798319517,0.26776375355841575,-0.01202920557522058,153.50665,0.31031533619559476,0.222214285714285,39.18706179505131,112630 -2024-12-16 02:00:00+00:00,8272,153.907,153.974,153.849,153.877,USD_JPY,H1,65.22678185745198,0.2564157367781945,0.26549415020237155,-0.009078413424177034,153.56490000000002,0.2582782872557174,0.20628571428571263,37.917840307079736,104358 -2024-12-16 03:00:00+00:00,6950,153.876,153.886,153.752,153.818,USD_JPY,H1,69.90740740740915,0.24932076233807265,0.26225947262951177,-0.012938710291439115,153.61589999999998,0.1907533264783649,0.19635714285714048,36.065073245452325,97408 -2024-12-16 04:00:00+00:00,5707,153.817,153.894,153.729,153.744,USD_JPY,H1,56.75675675675754,0.23501762552788819,0.25681110320918704,-0.021793477681298856,153.64495,0.1598951876583247,0.18464285714285364,33.93297922676317,91701 -2024-12-16 05:00:00+00:00,6597,153.744,153.774,153.606,153.662,USD_JPY,H1,49.95417048579263,0.21459189012924185,0.24836726059319802,-0.03377537046395618,153.6575,0.1501176730873211,0.18007142857142558,31.45516191363647,85104 -2024-12-16 06:00:00+00:00,7551,153.662,153.774,153.546,153.652,USD_JPY,H1,45.16765285995968,0.19534560866162565,0.23776293020688355,-0.0424173215452579,153.6666,0.1435249473436848,0.18057142857142797,29.537332547133634,77553 -2024-12-16 07:00:00+00:00,10280,153.653,153.692,153.478,153.53,USD_JPY,H1,42.565055762081506,0.16830825869513433,0.22387199590453372,-0.05556373720939939,153.6617,0.14655306200719437,0.1875,28.489306499107823,67273 -2024-12-16 08:00:00+00:00,16804,153.529,153.725,153.442,153.699,USD_JPY,H1,49.959514170041444,0.1586885883943694,0.21083531440250086,-0.05214672600813147,153.67395000000002,0.1382844036740661,0.20185714285714237,27.783854136741883,84077 -2024-12-16 09:00:00+00:00,10532,153.7,153.83,153.644,153.806,USD_JPY,H1,54.43609022556493,0.15787900524253473,0.20024405257050765,-0.042365047327972916,153.69915,0.1099565822665431,0.21042857142857127,26.123725504233338,94609 -2024-12-16 10:00:00+00:00,8142,153.805,153.848,153.65,153.831,USD_JPY,H1,56.61375661375621,0.1574398274997293,0.191683207556352,-0.034243380056622696,153.71075000000002,0.11106701383715532,0.2188571428571444,22.63995472652567,102751 -2024-12-16 11:00:00+00:00,6444,153.832,153.862,153.744,153.806,USD_JPY,H1,55.85384041759954,0.15330725431093128,0.18400801690726787,-0.030700762596336584,153.7179,0.11242583513062619,0.2202142857142856,19.567794622295782,96307 -2024-12-16 12:00:00+00:00,9237,153.806,154.096,153.782,154.082,USD_JPY,H1,64.54659949622216,0.1703394860939227,0.18127431074459882,-0.010934824650676134,153.7345,0.13882571422888138,0.2262857142857127,18.66369210656532,105544 -2024-12-16 13:00:00+00:00,9635,154.084,154.102,153.972,154.028,USD_JPY,H1,69.16329284750394,0.17743494420201955,0.18050643743608297,-0.003071493234063416,153.7514,0.15297553978754072,0.21949999999999648,20.20242958856287,95909 -2024-12-16 14:00:00+00:00,13399,154.027,154.364,154.014,154.305,USD_JPY,H1,67.51954513148618,0.20306887925306683,0.18501892579947976,0.018049953453587064,153.78164999999998,0.1960341739398603,0.2033571428571394,20.989363927516116,109308 -2024-12-16 15:00:00+00:00,14381,154.306,154.48,154.228,154.24,USD_JPY,H1,62.06395348837335,0.21565308615348044,0.1911457578702799,0.02450732828320054,153.80925,0.21959744865910874,0.20464285714285374,22.625712470213394,94927 -2024-12-16 16:00:00+00:00,10783,154.239,154.314,154.126,154.177,USD_JPY,H1,60.65340909090858,0.21802928146112777,0.1965224625884495,0.021506818872678274,153.83530000000002,0.23106392367925316,0.20914285714285288,22.03130115111875,84144 -2024-12-16 17:00:00+00:00,8444,154.174,154.252,154.056,154.154,USD_JPY,H1,62.244897959183234,0.2155715509305196,0.20033228025686353,0.015239270673656075,153.86055000000002,0.23714651807820777,0.21357142857142516,21.983307580961938,75700 -2024-12-16 18:00:00+00:00,5547,154.154,154.205,154.045,154.059,USD_JPY,H1,61.30653266331673,0.20361097514810922,0.2009880192351127,0.002622955912996522,153.8825,0.2340055104722731,0.21321428571428466,22.842546942838105,70153 -2024-12-16 19:00:00+00:00,5554,154.06,154.138,154.008,154.126,USD_JPY,H1,66.83599419448488,0.19726453001771915,0.200243321391634,-0.002978791373914852,153.91580000000002,0.21752449344207467,0.21049999999999816,24.547053587706703,75707 -2024-12-16 20:00:00+00:00,2939,154.128,154.164,154.09,154.153,USD_JPY,H1,67.9569892473126,0.19219806126864114,0.19863426936703543,-0.0064362080983942915,153.93284999999997,0.2222725389314832,0.1994999999999964,25.727014523734113,78646 -2024-12-16 21:00:00+00:00,2352,154.154,154.218,154.128,154.156,USD_JPY,H1,74.52978056426386,0.18627763063884117,0.19616294162139658,-0.009885310982555406,153.94525,0.22766546899693382,0.19064285714285387,27.136817675058598,80998 -2024-12-16 22:00:00+00:00,703,154.156,154.185,154.104,154.136,USD_JPY,H1,69.38775510204042,0.17792085301559268,0.19251452390023582,-0.01459367088464314,153.95819999999998,0.23092185961337286,0.17621428571428258,28.60517852923161,80295 -2024-12-16 23:00:00+00:00,2622,154.139,154.264,154.068,154.095,USD_JPY,H1,63.61922714420325,0.16607527678070255,0.18722667447632918,-0.021151397695626628,153.97205000000002,0.23037668806807401,0.17692857142856763,30.871755387236373,77673 -2024-12-17 00:00:00+00:00,12104,154.092,154.348,154.011,154.152,USD_JPY,H1,64.68435498627636,0.15944896745955361,0.18167113307297408,-0.02222216561342047,153.99245000000002,0.22716177283342728,0.18685714285713978,33.65880835742589,89777 -2024-12-17 01:00:00+00:00,10800,154.153,154.238,153.972,154.096,USD_JPY,H1,62.90035587188582,0.14797309585512153,0.17493152562940356,-0.026958429774282033,154.01415,0.21429867864370689,0.1974285714285681,36.42777165845943,78977 -2024-12-17 02:00:00+00:00,9883,154.097,154.113,153.802,154.006,USD_JPY,H1,45.94882729211129,0.13011623809259731,0.1659684681220423,-0.03585223002944499,154.03185000000002,0.19671011930474486,0.19721428571428337,36.33526935605953,69094 -2024-12-17 03:00:00+00:00,6900,154.008,154.086,153.872,154.047,USD_JPY,H1,51.0270270270273,0.11791367160523691,0.1563575088186812,-0.0384438372134443,154.0577,0.15731533864747543,0.2032142857142836,35.43525771926009,75994 -2024-12-17 04:00:00+00:00,7871,154.052,154.206,154.002,154.066,USD_JPY,H1,32.08395802098923,0.1085251802364553,0.14679104310223604,-0.038265862865780736,154.07604999999998,0.1327607562699848,0.1927857142857111,33.49161976684148,83865 -2024-12-17 05:00:00+00:00,9314,154.066,154.26,154.03,154.135,USD_JPY,H1,42.175856929953845,0.10543704391920983,0.13852024326563078,-0.033083199346420955,154.0925,0.11698380448022791,0.19121428571428314,31.735897426692937,93179 -2024-12-17 06:00:00+00:00,9748,154.136,154.174,154.032,154.142,USD_JPY,H1,47.15447154471563,0.10237440670289288,0.1312910759530832,-0.02891666925019032,154.10805,0.09980268683841534,0.18792857142856942,30.742041181877674,102927 -2024-12-17 07:00:00+00:00,10916,154.144,154.168,153.926,154.071,USD_JPY,H1,43.74057315233782,0.09314442704109638,0.12366174617068584,-0.030517319129589465,154.12130000000002,0.0710367583510888,0.19121428571428517,29.21172962835698,92011 -2024-12-17 08:00:00+00:00,14608,154.072,154.165,153.812,153.863,USD_JPY,H1,37.37113402061839,0.06825889394943374,0.11258117572643542,-0.044322281777001676,154.11034999999998,0.09137964465933353,0.20499999999999627,28.347188562988354,77403 -2024-12-17 09:00:00+00:00,12413,153.855,153.914,153.71,153.796,USD_JPY,H1,28.737113402060558,0.04263907293517377,0.09859275516818308,-0.05595368223300931,154.09875,0.11424759578327488,0.21028571428570939,27.25524769522119,64990 -2024-12-17 10:00:00+00:00,9973,153.796,153.886,153.712,153.842,USD_JPY,H1,30.440251572328776,0.025750163901989254,0.08402423691494433,-0.05827407301295508,154.0756,0.11712808996142408,0.21742857142856817,25.760940009977933,74963 -2024-12-17 11:00:00+00:00,9437,153.843,153.933,153.687,153.914,USD_JPY,H1,35.9953703703689,0.017968253247460098,0.07081304018144749,-0.05284478693398739,154.0593,0.11572067087825129,0.2285714285714237,23.49630153245227,84400 -2024-12-17 12:00:00+00:00,8481,153.916,153.938,153.814,153.822,USD_JPY,H1,33.226495726495216,0.0043275169426806315,0.05751593553369412,-0.05318841859101349,154.04154999999997,0.12366996608146609,0.23164285714285274,20.909675966168958,75919 -2024-12-17 13:00:00+00:00,19368,153.823,154.001,153.66,153.776,USD_JPY,H1,33.049946865036844,-0.010078501722830424,0.04399704808238921,-0.054075549805219635,154.02265,0.13403034803645647,0.2419999999999963,20.02611073267287,56551 -2024-12-17 14:00:00+00:00,19306,153.776,153.779,153.553,153.56,USD_JPY,H1,23.09090909090895,-0.038481182993820084,0.027501401867147352,-0.06598258486096743,153.9977,0.1688338017572038,0.23407142857142357,20.260835847406472,37245 -2024-12-17 15:00:00+00:00,18178,153.562,153.578,153.416,153.512,USD_JPY,H1,23.26007326007273,-0.06412452378455669,0.009176216736806547,-0.07330074052136323,153.96699999999998,0.19764215399757132,0.2266428571428532,21.17465704924598,19067 -2024-12-17 16:00:00+00:00,12774,153.511,153.646,153.4,153.42,USD_JPY,H1,23.21755027422232,-0.09082372783674941,-0.010823772177904645,-0.07999995565884477,153.93035,0.22710240557003616,0.2219999999999942,23.286470577641687,6293 -2024-12-17 17:00:00+00:00,10024,153.422,153.425,153.244,153.274,USD_JPY,H1,17.764804003335854,-0.1223536030589969,-0.0331297383541231,-0.0892238647048738,153.88625000000002,0.2636700240129773,0.21964285714285228,25.86533735070241,-3731 -2024-12-17 18:00:00+00:00,9902,153.275,153.396,153.16,153.277,USD_JPY,H1,16.65257819103806,-0.1454228374575166,-0.0555883581748018,-0.0898344792827148,153.8433,0.28953976180864527,0.2219285714285673,30.800554678234057,6171 -2024-12-17 19:00:00+00:00,6886,153.276,153.348,153.228,153.342,USD_JPY,H1,16.36980491942424,-0.15665459845396867,-0.07580160623063517,-0.0808529922233335,153.80564999999999,0.30369917159262694,0.21407142857142553,36.409048127540665,13057 -2024-12-17 20:00:00+00:00,5988,153.343,153.568,153.33,153.522,USD_JPY,H1,27.07100591715917,-0.14931019925228384,-0.0905033248349649,-0.05880687441731894,153.77415,0.29851250081327296,0.22092857142856864,39.818473992609086,19045 -2024-12-17 21:00:00+00:00,3482,153.519,153.599,153.454,153.49,USD_JPY,H1,27.87509520182762,-0.14440720615405667,-0.10128410109878326,-0.043123105055273406,153.74385,0.2948573740581863,0.21399999999999458,42.988196514425184,15563 -2024-12-17 22:00:00+00:00,617,153.451,153.522,153.428,153.45,USD_JPY,H1,31.96506550218264,-0.14211104681896813,-0.10944949024282023,-0.0326615565761479,153.71605,0.29505083858928727,0.19549999999999557,45.08881408425606,14946 -2024-12-17 23:00:00+00:00,3212,153.453,153.599,153.394,153.574,USD_JPY,H1,40.76539101497586,-0.12880082458411835,-0.11331975711107986,-0.015481067473038485,153.6924,0.28594338781727524,0.19557142857142448,45.61632646539147,18158 -2024-12-18 00:00:00+00:00,11378,153.574,153.768,153.546,153.69,USD_JPY,H1,44.02515723270363,-0.10765121087212037,-0.11218604786328797,0.004534836991167593,153.67360000000002,0.2721134438052509,0.19899999999999604,44.706871223041915,29536 -2024-12-18 01:00:00+00:00,9257,153.69,153.79,153.581,153.592,USD_JPY,H1,37.5963020030824,-0.09767187009066447,-0.10928321230876327,0.0116113422180988,153.64645000000002,0.24983099020725671,0.19635714285714048,43.8903095136077,20279 -2024-12-18 02:00:00+00:00,7997,153.588,153.752,153.577,153.688,USD_JPY,H1,44.85407066052158,-0.08108210885060885,-0.10364299161713239,0.022560882766523543,153.62375000000003,0.2214480751410979,0.1999999999999988,43.32798632548802,28276 -2024-12-18 03:00:00+00:00,6109,153.686,153.728,153.568,153.619,USD_JPY,H1,44.07547169811263,-0.07266469353314164,-0.09744733200033426,0.024782638467192614,153.60115000000002,0.194871151721182,0.18707142857142653,40.48657805999905,22167 -2024-12-18 04:00:00+00:00,7475,153.618,153.656,153.352,153.444,USD_JPY,H1,45.48286604361304,-0.07920187875700435,-0.09379824135166828,0.01459636259466393,153.5802,0.18762689736606566,0.1926428571428553,36.79130268619043,14692 -2024-12-18 05:00:00+00:00,6864,153.444,153.466,153.338,153.358,USD_JPY,H1,44.175491679273726,-0.09028141841949378,-0.0930948767652334,0.0028134583457396223,153.5583,0.1866722711752127,0.19021428571428448,32.47306147687693,7828 -2024-12-18 06:00:00+00:00,7951,153.358,153.496,153.334,153.474,USD_JPY,H1,52.00594353640436,-0.08867956011039269,-0.09221181343426527,0.0035322533238725806,153.5399,0.1750088418349873,0.18421428571428627,29.267031383967606,15779 -2024-12-18 07:00:00+00:00,10796,153.472,153.649,153.352,153.577,USD_JPY,H1,61.62701458173488,-0.07819742542250196,-0.08940893583191262,0.011211510409410652,153.52304999999998,0.1517756220782623,0.1924999999999995,27.86128717782562,26575 -2024-12-18 08:00:00+00:00,9520,153.578,153.622,153.52,153.566,USD_JPY,H1,61.02212051868904,-0.06997128086166526,-0.08552140483786316,0.0155501239761979,153.51024999999998,0.135117443980237,0.18292857142857194,25.772131272100214,17055 -2024-12-18 09:00:00+00:00,7562,153.566,153.744,153.536,153.635,USD_JPY,H1,61.14068441064629,-0.05722462878847523,-0.07986204962798557,0.02263742083951034,153.5032,0.12371937679304078,0.18921428571428578,23.167755482757027,24617 -2024-12-18 10:00:00+00:00,6550,153.634,153.7,153.552,153.578,USD_JPY,H1,52.348993288591245,-0.051132811593987526,-0.07411620202118598,0.02298339042719845,153.5041,0.12421877976655231,0.1827857142857141,22.15033723835044,18067 -2024-12-18 11:00:00+00:00,6098,153.58,153.701,153.562,153.664,USD_JPY,H1,56.98234349919698,-0.03891691138068154,-0.06707634389308509,0.02815943251240355,153.51170000000002,0.12927453440914655,0.18235714285714266,21.55953176722543,24165 -2024-12-18 12:00:00+00:00,7593,153.664,153.833,153.634,153.826,USD_JPY,H1,63.74269005848061,-0.015979474901513413,-0.05685697009477076,0.04087749519325735,153.53199999999998,0.14503357137462008,0.18985714285714397,22.225192305735707,31758 -2024-12-18 13:00:00+00:00,12740,153.828,153.955,153.81,153.849,USD_JPY,H1,60.85240726124715,0.004008311227750028,-0.044683913830266604,0.04869222505801663,153.56075,0.14815598992964502,0.18557142857143155,24.19593123311226,44498 -2024-12-18 14:00:00+00:00,12767,153.849,153.904,153.705,153.782,USD_JPY,H1,53.77668308702883,0.014277849520141217,-0.03289156116018504,0.047169410680326256,153.586,0.1400638951353604,0.18392857142857263,25.44136976078644,31731 -2024-12-18 15:00:00+00:00,11876,153.784,154.057,153.68,154.024,USD_JPY,H1,65.85903083700535,0.04146591684872192,-0.018020065558403648,0.05948598240712556,153.6201,0.1592402685930586,0.19592857142857106,27.21567632958672,43607 -2024-12-18 16:00:00+00:00,9768,154.024,154.093,153.966,154.002,USD_JPY,H1,62.18944099379062,0.06053957738424742,-0.002308136969873434,0.06284771435412086,153.6441,0.17866401865701642,0.19249999999999748,29.1325444852996,33839 -2024-12-18 17:00:00+00:00,7773,154.002,154.022,153.742,153.826,USD_JPY,H1,57.41935483870985,0.060753532762390705,0.010304196976579395,0.05044933578581131,153.6609,0.17920758320586427,0.20107142857142637,30.035659220396525,26066 -2024-12-18 18:00:00+00:00,8109,153.826,153.84,153.72,153.771,USD_JPY,H1,62.823529411765435,0.05584134928074036,0.019411627437411587,0.03642972184332877,153.67695,0.17361223424202418,0.18792857142856942,31.95604023929972,17957 -2024-12-18 19:00:00+00:00,42143,153.766,154.664,153.761,154.648,USD_JPY,H1,81.21974830590577,0.12131651778622654,0.039792605507174575,0.08152391227905197,153.73065,0.2760004337995197,0.24328571428571064,36.350186894394675,60100 -2024-12-18 20:00:00+00:00,30837,154.652,154.778,154.332,154.686,USD_JPY,H1,80.48289738430672,0.17426354134138933,0.06668679267401753,0.1075767486673718,153.78045,0.3485903152393093,0.26357142857142435,41.00098894297454,90937 -2024-12-18 21:00:00+00:00,12998,154.68,154.874,154.502,154.836,USD_JPY,H1,80.93366093366177,0.22572615476676106,0.09849466509256624,0.12723148967419481,153.84265,0.41739067586588235,0.2689285714285664,43.50055546935344,103935 -2024-12-18 22:00:00+00:00,1248,154.778,154.826,154.74,154.748,USD_JPY,H1,77.98295454545433,0.2564535452878829,0.13008644113162957,0.12636710415625332,153.89565,0.4616701117565681,0.26778571428570785,45.253308935604764,102687 -2024-12-18 23:00:00+00:00,8748,154.75,154.772,154.435,154.666,USD_JPY,H1,74.2588235294119,0.27106385358459306,0.15828192362222226,0.1127819299623708,153.948,0.4872986763619697,0.2769999999999929,44.441401389869114,93939 -2024-12-19 00:00:00+00:00,18039,154.666,154.896,154.537,154.822,USD_JPY,H1,77.96762589928034,0.2918660740041332,0.18499875369860447,0.10686732030552876,154.01690000000002,0.5092127980210494,0.2920714285714204,44.55549707448248,111978 -2024-12-19 01:00:00+00:00,14761,154.823,154.861,154.633,154.644,USD_JPY,H1,71.15716753022463,0.29063857064048193,0.20612671708697997,0.08451185355350196,154.0812,0.5027854622370561,0.2984285714285631,44.76266950187125,97217 -2024-12-19 02:00:00+00:00,15109,154.644,155.281,154.464,155.09,USD_JPY,H1,74.30769230769229,0.3219430785961208,0.22928998938880815,0.09265308920731266,154.16199999999998,0.5292240595887124,0.3425714285714199,44.53555286990424,112326 -2024-12-19 03:00:00+00:00,12912,155.09,155.444,154.954,155.26,USD_JPY,H1,75.6825627957771,0.3563617890617081,0.25470434932338815,0.10165743973831998,154.24615,0.5639726826953674,0.36721428571427495,44.20141875498207,125238 -2024-12-19 04:00:00+00:00,7968,155.254,155.356,155.146,155.308,USD_JPY,H1,77.96920821114298,0.3830959720297642,0.28038267386466337,0.10271329816510083,154.33325,0.5874311493679679,0.36799999999999095,46.14095074283081,133206 -2024-12-19 05:00:00+00:00,9797,155.31,155.477,155.199,155.23,USD_JPY,H1,73.51794071762804,0.393453568691001,0.3029968528299309,0.09045671586107012,154.41299999999998,0.5958557755429356,0.3609285714285631,47.34453395601799,123409 -2024-12-19 06:00:00+00:00,23057,155.228,156.15,154.915,156.108,USD_JPY,H1,80.78947368420978,0.4671245795373977,0.3358223981714243,0.13130218136597344,154.5395,0.672841304497214,0.44007142857142256,49.10680044065638,146466 -2024-12-19 07:00:00+00:00,35196,156.11,156.78,156.107,156.478,USD_JPY,H1,86.69064748201399,0.5490363449636106,0.3784651875298616,0.17057115743374907,154.6802,0.7676671839073382,0.4681428571428512,53.83229606753077,181662 -2024-12-19 08:00:00+00:00,26115,156.479,157.072,156.433,156.875,USD_JPY,H1,89.2315470171888,0.638624920782263,0.43049713418034186,0.2081277866019211,154.83265,0.8831646013870568,0.5052142857142802,57.27414064161782,207777 -2024-12-19 09:00:00+00:00,22440,156.874,157.149,156.72,157.042,USD_JPY,H1,86.87615526802183,0.7148595608592245,0.4873696195161184,0.22748994134310613,154.9923,0.9793529603968653,0.47135714285713803,58.286332609839135,230217 -2024-12-19 10:00:00+00:00,15513,157.039,157.066,156.823,156.954,USD_JPY,H1,84.40533980582504,0.7594210644994632,0.5417799085127873,0.21764115598667588,155.1509,1.0286392083905416,0.45685714285713785,59.075742292508394,214704 -2024-12-19 11:00:00+00:00,13961,156.954,157.064,156.674,156.7,USD_JPY,H1,77.41176470588172,0.765417444109346,0.5865074156320991,0.1789100284772469,155.2847,1.0481972544308606,0.4581428571428522,59.18186188919405,200743 -2024-12-19 12:00:00+00:00,18410,156.701,156.98,156.689,156.94,USD_JPY,H1,80.85585585585578,0.7805380555517161,0.6253135436160224,0.15522451193569364,155.4316,1.0647149062378234,0.4727857142857102,59.423306554994596,219153 -2024-12-19 13:00:00+00:00,26346,156.942,157.05,156.4,156.91,USD_JPY,H1,82.0571428571426,0.7810965054789563,0.6564701359886093,0.124626369490347,155.5858,1.0430446627097665,0.4951428571428543,61.61605405666664,192807 -2024-12-19 14:00:00+00:00,26260,156.91,157.35,156.874,157.176,USD_JPY,H1,82.60387811634315,0.793852026014747,0.6839465139938368,0.10990551202091026,155.75605,1.0085538617702936,0.5034999999999984,63.7677337346268,219067 -2024-12-19 15:00:00+00:00,25418,157.176,157.736,157.154,157.714,USD_JPY,H1,88.66498740554121,0.8377162996423522,0.7147004711235398,0.12301582851881232,155.90935,1.0628217791319712,0.5287857142857136,66.25498539552167,244485 -2024-12-19 16:00:00+00:00,20577,157.714,157.808,157.591,157.73,USD_JPY,H1,87.28813559321993,0.8638126245683111,0.7445229018124941,0.11928972275581695,156.06154999999998,1.0958557566854408,0.4859285714285692,68.02403857185901,265062 -2024-12-19 17:00:00+00:00,14961,157.73,157.77,157.527,157.696,USD_JPY,H1,85.78143360752041,0.8717021939596634,0.7699587602419281,0.10174343371773531,156.20454999999998,1.1139680367179507,0.46828571428571514,69.34148897324785,250101 -2024-12-19 18:00:00+00:00,13060,157.694,157.733,157.528,157.54,USD_JPY,H1,81.77676537585394,0.8555051079390807,0.7870680297813587,0.06843707815772204,156.34415,1.0966383213630977,0.4679285714285726,70.39870979350187,237041 -2024-12-19 19:00:00+00:00,11085,157.542,157.558,157.35,157.424,USD_JPY,H1,80.90140845070437,0.8238121760661556,0.794416859038318,0.029395317027837597,156.48205000000002,1.0467809540572492,0.4629285714285731,70.70376834319107,225956 -2024-12-19 20:00:00+00:00,7808,157.424,157.442,157.31,157.33,USD_JPY,H1,72.0896601590747,0.7820947829911802,0.7919524438288905,-0.009857660837710336,156.60745,0.9859007890133692,0.3841428571428582,69.17484262968024,218148 -2024-12-19 21:00:00+00:00,5114,157.331,157.458,157.331,157.434,USD_JPY,H1,69.11999999999999,0.748793751003717,0.7833207052638558,-0.03452695426013874,156.74695000000003,0.8857601834692564,0.3452142857142856,64.88014759332256,223262 -2024-12-19 22:00:00+00:00,2097,157.411,157.454,157.392,157.446,USD_JPY,H1,63.49881796690315,0.715127201714381,0.7696820045539609,-0.05455480283957981,156.86475000000002,0.8069599138864724,0.304,59.242583677911334,225359 -2024-12-19 23:00:00+00:00,8783,157.448,157.676,157.416,157.654,USD_JPY,H1,64.19294990723564,0.6971932704852577,0.7551842577402204,-0.057990987254962656,156.98445,0.7303075397528336,0.29192857142857065,54.53957662787406,234142 -2024-12-20 00:00:00+00:00,19458,157.654,157.929,157.606,157.74,USD_JPY,H1,68.24512534818948,0.6820576460694383,0.740558935406064,-0.058501289336625684,157.10605,0.6323836672622207,0.29764285714285726,51.02548956215883,253600 -2024-12-20 01:00:00+00:00,20345,157.74,157.783,157.146,157.28,USD_JPY,H1,62.28813559322068,0.6257313574693342,0.717593419818718,-0.09186206234938388,157.20855,0.4529925612136497,0.3152857142857154,47.01167676073531,233255 -2024-12-20 02:00:00+00:00,16957,157.278,157.38,156.882,156.974,USD_JPY,H1,50.70074196207732,0.5500599762872866,0.6840867311124318,-0.13402675482514514,157.25185,0.37732776131943435,0.33007142857142924,42.30137409411659,216298 -2024-12-20 03:00:00+00:00,16148,156.974,157.156,156.836,157.07,USD_JPY,H1,53.21027287319416,0.49216291152885105,0.6457019671957157,-0.15353905566686465,157.28145,0.3341801397123555,0.3064999999999998,37.98614274560079,232446 -2024-12-20 04:00:00+00:00,10712,157.068,157.312,157.057,157.297,USD_JPY,H1,52.46636771300467,0.45930153131604357,0.6084218800197814,-0.1491203487037378,157.30255,0.3201962350435968,0.29071428571428726,33.09802991845879,243158 -2024-12-20 05:00:00+00:00,11303,157.298,157.32,156.967,157.034,USD_JPY,H1,34.389348025711485,0.40734117324257113,0.5682057386643393,-0.1608645654217682,157.30215,0.3205436623338692,0.27435714285714347,29.418076273524953,231855 -2024-12-20 06:00:00+00:00,15699,157.038,157.138,156.868,156.984,USD_JPY,H1,33.137432188065446,0.35800082235036257,0.5261647554015441,-0.1681639330511815,157.30365,0.31889468231656054,0.2781428571428596,26.577218427454884,216156 -2024-12-20 07:00:00+00:00,15309,156.988,157.058,156.767,156.829,USD_JPY,H1,31.41877411058742,0.3028993984621309,0.48151168401366146,-0.17861228555153058,157.3101,0.3071301626848805,0.2815714285714291,24.21962036992004,200847 -2024-12-20 08:00:00+00:00,20075,156.83,156.964,156.736,156.889,USD_JPY,H1,35.44926240500706,0.26106324700029404,0.437421996610988,-0.17635874961069398,157.30755,0.3105573046354185,0.283214285714286,21.86414813285491,220922 -2024-12-20 09:00:00+00:00,17906,156.89,156.917,156.623,156.724,USD_JPY,H1,34.689413823271906,0.21214816255582036,0.39236722979995453,-0.18021906724413417,157.29825,0.32551382457388656,0.28935714285714403,20.146608495530955,203016 -2024-12-20 10:00:00+00:00,11702,156.722,156.774,156.638,156.742,USD_JPY,H1,36.696832579185234,0.17284263300467728,0.3484623104408991,-0.1756196774362218,157.27655,0.3477958377058745,0.28964285714285765,19.36181657625845,214718 -2024-12-20 11:00:00+00:00,8603,156.743,156.844,156.676,156.776,USD_JPY,H1,34.62616822429989,0.1427902365414866,0.3073278956610166,-0.16453765911953,157.22965000000002,0.348943710570226,0.2925000000000019,19.78364162097614,223321 -2024-12-20 12:00:00+00:00,12667,156.777,156.822,156.594,156.736,USD_JPY,H1,33.62546125461306,0.114426789323403,0.2687476743934939,-0.1543208850700909,157.17995000000002,0.3446898644000623,0.3043571428571446,21.55631818196984,210654 -2024-12-20 13:00:00+00:00,26343,156.737,156.799,156.35,156.521,USD_JPY,H1,23.95402298850668,0.07374970914602841,0.22974808134400082,-0.1559983721979724,157.1212,0.3521577995415531,0.3178571428571461,24.35964890747382,184311 -2024-12-20 14:00:00+00:00,26036,156.52,156.664,156.32,156.592,USD_JPY,H1,23.425925925927373,0.04670356702249023,0.19313917847969872,-0.1464356114572085,157.07379999999998,0.35659288298974545,0.31935714285714517,27.696782599718812,210347 -2024-12-20 15:00:00+00:00,28894,156.592,156.781,156.402,156.504,USD_JPY,H1,28.299776286354685,0.017961392230290585,0.1581036212298171,-0.14014222899952652,157.0278,0.36819068284751716,0.30092857142857504,30.681339254238896,181453 -2024-12-20 16:00:00+00:00,19791,156.506,156.587,156.102,156.109,USD_JPY,H1,26.95791156100327,-0.03627206542432759,0.11922848389898819,-0.15550054932331578,156.96675,0.41384269511985217,0.30000000000000326,34.339352314510876,161662 -2024-12-20 17:00:00+00:00,15118,156.11,156.164,155.954,156.074,USD_JPY,H1,22.577092511015067,-0.08114133207197938,0.07915452070479467,-0.16029585277677405,156.89875,0.4436837274322608,0.2921428571428594,37.749684300776835,146544 -2024-12-20 18:00:00+00:00,10831,156.074,156.216,156.027,156.088,USD_JPY,H1,12.289457267624655,-0.1142538192509619,0.040472852713643356,-0.15472667196460527,156.83085,0.4591682726622969,0.28742857142857353,42.391230121144886,157375 -2024-12-20 19:00:00+00:00,9276,156.088,156.113,155.979,156.006,USD_JPY,H1,13.853727144868046,-0.14543592380144332,0.003291097410626019,-0.14872702121206935,156.74845,0.4514818262806165,0.2717857142857168,45.490190261295915,148099 -2024-12-20 20:00:00+00:00,8043,156.007,156.358,155.998,156.358,USD_JPY,H1,31.844547563805747,-0.1401291860697711,-0.025392959285453404,-0.11473622678431769,156.67935,0.39381164010558145,0.27821428571428847,45.9531713915904,156142 -2024-12-20 21:00:00+00:00,8596,156.36,156.474,156.295,156.418,USD_JPY,H1,37.3848987108661,-0.12958824698003468,-0.04623201682436966,-0.08335623015566503,156.63625,0.37113167969343525,0.27021428571428885,45.315874133977445,164738 -2024-12-22 22:00:00+00:00,449,156.4,156.552,156.385,156.542,USD_JPY,H1,39.751919669226396,-0.10996114943699808,-0.05897784334689535,-0.05098330609010274,156.61465,0.3629203587978237,0.2658571428571455,44.0722144374486,165187 -2024-12-22 23:00:00+00:00,8354,156.538,156.568,156.411,156.568,USD_JPY,H1,44.980694980695894,-0.09125660122595036,-0.06543359492270635,-0.02582300630324401,156.58955,0.34677043443513794,0.25607142857143117,42.464414716150905,173541 -2024-12-23 00:00:00+00:00,11583,156.567,156.656,156.428,156.612,USD_JPY,H1,45.88607594936734,-0.07205210788418981,-0.06675729751500305,-0.0052948103691867615,156.5553,0.30446693708388595,0.2626428571428607,40.6415913074715,185124 -2024-12-23 01:00:00+00:00,9251,156.611,156.695,156.35,156.458,USD_JPY,H1,40.64705882352916,-0.0684696460593841,-0.06709976722387925,-0.0013698788355048508,156.5265,0.28331004030055923,0.2752857142857173,39.726558133263104,175873 -2024-12-23 02:00:00+00:00,9639,156.458,156.562,156.337,156.558,USD_JPY,H1,44.94318181818187,-0.05690538513044885,-0.06506089080519317,0.008155505674744323,156.5052,0.2623416013086443,0.2750714285714326,38.3385353133757,185512 -2024-12-23 03:00:00+00:00,6328,156.558,156.613,156.488,156.518,USD_JPY,H1,49.905362776025676,-0.0503874555122934,-0.06212620374661322,0.01173874823431982,156.48964999999998,0.2511154640867039,0.25192857142857455,35.38309549495615,179184 -2024-12-23 04:00:00+00:00,6768,156.521,156.63,156.488,156.578,USD_JPY,H1,49.55527318932623,-0.03992027469450932,-0.05768501793619244,0.017764743241683124,156.4741,0.2341400615202899,0.23750000000000324,31.071724885258465,185952 -2024-12-23 05:00:00+00:00,4520,156.578,156.662,156.556,156.651,USD_JPY,H1,54.71456061578015,-0.025441198273739474,-0.05123625400370185,0.02579505572996238,156.47045,0.23058129628873808,0.2180000000000015,27.961978646670026,190472 -2024-12-23 06:00:00+00:00,6318,156.652,156.663,156.52,156.614,USD_JPY,H1,71.02414654454664,-0.016758831297124743,-0.04434076946238643,0.027581938165261687,156.46405000000001,0.22433937516811256,0.19357142857143117,26.77627601687956,184154 -2024-12-23 07:00:00+00:00,9381,156.614,156.814,156.613,156.797,USD_JPY,H1,76.79762787249835,0.004832867403024466,-0.03450604208930425,0.03933890949232872,156.4651,0.22591985068831527,0.19292857142857503,27.456687253203274,193535 -2024-12-23 08:00:00+00:00,13208,156.798,156.802,156.464,156.569,USD_JPY,H1,65.38707613563653,0.0035063308586984476,-0.026903567499703712,0.03040989835840216,156.45675,0.21833939656625212,0.2035714285714302,25.651993998442034,180327 -2024-12-23 09:00:00+00:00,11595,156.57,156.766,156.488,156.697,USD_JPY,H1,71.4729645742697,0.012637889624699028,-0.018995276074823167,0.031633165699522195,156.46554999999998,0.22452440375691882,0.21385714285714488,24.61473795741596,191922 -2024-12-23 10:00:00+00:00,9958,156.696,156.832,156.658,156.824,USD_JPY,H1,66.83526011560704,0.029779277380129088,-0.009240365383832716,0.039019642763961804,156.47715,0.2370452488190348,0.2005714285714301,24.877741513582833,201880 -2024-12-23 11:00:00+00:00,7641,156.824,156.883,156.752,156.846,USD_JPY,H1,65.89895988112912,0.044624760352292014,0.00153265976339223,0.043092100588899784,156.49425,0.25100846596818216,0.19714285714285854,25.81048690680919,209521 -2024-12-23 12:00:00+00:00,9416,156.848,157.189,156.848,157.143,USD_JPY,H1,69.78275181040148,0.07943960016973506,0.017114047844660796,0.062325552325074265,156.54595,0.27300481485705647,0.2097142857142862,28.264797225197434,218937 -2024-12-23 13:00:00+00:00,11979,157.14,157.258,157.108,157.21,USD_JPY,H1,70.57692307692291,0.11115561882817815,0.035922362041364266,0.07523325678681389,156.60275,0.28743894086341915,0.20921428571428585,31.41639032669059,230916 -2024-12-23 14:00:00+00:00,12732,157.207,157.235,157.046,157.174,USD_JPY,H1,68.10567010309292,0.13186582582463302,0.05511105479801802,0.076754771026615,156.65705,0.28765759522942225,0.2064285714285725,34.00943318553752,218184 -2024-12-23 15:00:00+00:00,16275,157.178,157.271,157.082,157.133,USD_JPY,H1,73.45378735232805,0.14331837175265605,0.07275251818894563,0.07056585356371042,156.7134,0.26271325170147114,0.19528571428571492,36.88236496146527,201909 -2024-12-23 16:00:00+00:00,8572,157.134,157.216,157.029,157.032,USD_JPY,H1,66.45833333333366,0.14260092629166365,0.08672219980948924,0.055878726482174415,156.7471,0.25790959245976175,0.19257142857142842,39.61132062450124,193337 -2024-12-23 17:00:00+00:00,8075,157.03,157.176,156.982,157.162,USD_JPY,H1,71.0457516339867,0.1507841137363073,0.09953458259485286,0.05124953114145443,156.7843,0.2615729947204339,0.19749999999999904,41.60810767341203,201412 -2024-12-23 18:00:00+00:00,6832,157.162,157.21,157.074,157.134,USD_JPY,H1,68.55807743658096,0.15324348721873093,0.11027636351962847,0.042967123699102466,156.81390000000002,0.2661663310367746,0.1970714285714276,43.42200774006724,194580 -2024-12-23 19:00:00+00:00,4948,157.135,157.158,157.06,157.101,USD_JPY,H1,65.43209876543142,0.15079150362555538,0.11837939154081387,0.03241211208474151,156.84054999999998,0.266931979288889,0.19649999999999831,45.378092514069905,189632 -2024-12-23 20:00:00+00:00,5414,157.1,157.158,157.05,157.144,USD_JPY,H1,68.10109289617456,0.1505822115952924,0.12481995555170958,0.025762256043582815,156.86714999999998,0.26945330127336736,0.19399999999999654,45.572062000808224,195046 -2024-12-23 21:00:00+00:00,4423,157.142,157.184,157.132,157.173,USD_JPY,H1,64.35114503816779,0.1510155900718928,0.13005908245574624,0.020956507616146564,156.9029,0.25956195891256606,0.1833571428571393,43.07864277795064,199469 -2024-12-23 22:00:00+00:00,1209,157.129,157.191,157.118,157.158,USD_JPY,H1,76.84594348222328,0.1484375750313518,0.13373478097086736,0.014702794060484442,156.93290000000002,0.2521690952908939,0.16442857142856887,43.92773889065302,198260 -2024-12-23 23:00:00+00:00,5343,157.164,157.244,157.107,157.19,USD_JPY,H1,74.62537462537355,0.14727887293372532,0.13644359936343894,0.01083527357028638,156.9665,0.23836890911021655,0.15435714285714092,43.97210537077045,203603 -2024-12-24 00:00:00+00:00,8523,157.19,157.394,157.166,157.316,USD_JPY,H1,74.5999999999988,0.15474394823689863,0.14010366913813088,0.01464027909876775,157.0034,0.232102608862902,0.15821428571428392,45.03555141691554,212126 -2024-12-24 01:00:00+00:00,7797,157.315,157.315,157.058,157.136,USD_JPY,H1,62.5215889464586,0.14447021580224373,0.14097697847095347,0.0034932373312902554,157.02765,0.21827029956586763,0.16721428571428426,45.04367774061735,204329 -2024-12-24 02:00:00+00:00,4957,157.135,157.182,157.06,157.127,USD_JPY,H1,49.08045977011549,0.1340566622901349,0.13959291523478978,-0.005536252944654874,157.05329999999998,0.1961205590258318,0.15142857142856972,42.05302430428409,199372 -2024-12-24 03:00:00+00:00,5838,157.128,157.141,157.05,157.09,USD_JPY,H1,42.857142857142854,0.12141861709073964,0.13595805560597976,-0.014539438515240116,157.06795,0.18668393635681277,0.14721428571428216,38.431711716009886,193534 -2024-12-24 04:00:00+00:00,6972,157.089,157.094,156.937,157.016,USD_JPY,H1,41.00227790432758,0.10423019287935631,0.1296124830606551,-0.025382290181298783,157.0903,0.1461657674265213,0.14492857142856508,36.261972034444334,186562 -2024-12-24 05:00:00+00:00,7688,157.02,157.053,156.89,157.006,USD_JPY,H1,42.502951593860445,0.08877794949003714,0.12144557634653151,-0.03266762685649437,157.10575,0.11552437650730721,0.1430714285714235,34.03388251003884,178874 -2024-12-24 06:00:00+00:00,7820,157.008,157.146,156.908,157.086,USD_JPY,H1,53.26876513317184,0.08204154285181176,0.11356476964758756,-0.03152322679577581,157.11885,0.09490897294968849,0.14671428571427977,30.678141435128413,186694 -2024-12-24 07:00:00+00:00,5445,157.09,157.146,157.013,157.142,USD_JPY,H1,48.67021276595683,0.08029602149306925,0.1069110200166839,-0.026614998523614652,157.13365000000002,0.06990766458289772,0.1423571428571364,28.373421998466547,192139 -2024-12-24 08:00:00+00:00,6679,157.142,157.182,156.986,157.058,USD_JPY,H1,45.29702970297083,0.0713125387021023,0.09979132375376759,-0.02847878505166529,157.1294,0.07186566407327732,0.14664285714285086,26.018744172279742,185460 -2024-12-24 09:00:00+00:00,5973,157.059,157.102,157.006,157.092,USD_JPY,H1,49.443757725588036,0.06617376969262523,0.09306781294153912,-0.026894043248913896,157.1235,0.06971181270474006,0.14649999999999505,24.33418570939637,191433 -2024-12-24 10:00:00+00:00,4067,157.09,157.098,157.023,157.09,USD_JPY,H1,46.484375000000135,0.06123400742373519,0.08670105183797834,-0.025467044414243148,157.1193,0.06903629853045629,0.14414285714285516,22.49159470664921,187366 -2024-12-24 11:00:00+00:00,4434,157.092,157.172,157.066,157.142,USD_JPY,H1,48.040455120100894,0.06081414801167284,0.08152367107271724,-0.0207095230610444,157.11975,0.06915952184735812,0.14799999999999816,21.69379783484124,191800 -2024-12-24 12:00:00+00:00,6260,157.142,157.155,157.074,157.136,USD_JPY,H1,48.593350383632334,0.05931352712747184,0.07708164228366818,-0.017768115156196335,157.12495,0.06605458260570563,0.1485714285714254,19.534198272100472,185540 -2024-12-24 13:00:00+00:00,5766,157.138,157.198,157.101,157.192,USD_JPY,H1,50.12406947890878,0.061929125840663346,0.07405113899506721,-0.012122013154403866,157.12645,0.06726966540139531,0.1457142857142831,17.395800106651414,191306 -2024-12-24 14:00:00+00:00,7278,157.193,157.298,157.188,157.28,USD_JPY,H1,47.65625,0.07029258208783062,0.07329942761361989,-0.0030068455257892673,157.13375,0.07554494994486048,0.13728571428571204,14.479760580442505,198584 -2024-12-24 15:00:00+00:00,7461,157.282,157.348,157.181,157.334,USD_JPY,H1,65.42056074766356,0.08035178476481519,0.07470989904385895,0.005641885720956238,157.14540000000002,0.08728260204691203,0.13085714285714037,15.201013815363222,206045 -2024-12-24 16:00:00+00:00,6940,157.336,157.38,157.276,157.3,USD_JPY,H1,62.96851574212849,0.08460498589619192,0.07668891641432556,0.007916069481866364,157.1532,0.09387258996322917,0.12957142857142603,18.102764422390965,199105 -2024-12-24 17:00:00+00:00,3417,157.3,157.352,157.265,157.308,USD_JPY,H1,67.08463949843161,0.08761128323962453,0.07887338977938535,0.008737893460239177,157.15995,0.1000234050983317,0.12928571428571445,21.445254083114598,202522 -2024-12-24 18:00:00+00:00,6481,157.309,157.358,157.239,157.341,USD_JPY,H1,77.21943048576318,0.09160070385638619,0.08141885259478551,0.010181851261600677,157.16910000000001,0.10789610006659661,0.12657142857142997,26.192143830004138,209003 -2024-12-24 19:00:00+00:00,4166,157.341,157.386,157.302,157.309,USD_JPY,H1,74.47495961227654,0.091129729082013,0.08336102789223102,0.007768701189781985,157.17505,0.1123005717242263,0.12092857142857229,31.46294105009988,204837 -2024-12-24 20:00:00+00:00,896,157.31,157.324,157.153,157.191,USD_JPY,H1,57.990867579907764,0.08030911090739323,0.08275064449526345,-0.0024415335878702205,157.1688,0.1074153766758873,0.11614285714285952,34.19014055465196,203941 -2024-12-24 21:00:00+00:00,194,157.2,157.274,157.153,157.21,USD_JPY,H1,55.48387096774262,0.07243188457789529,0.08068689251178982,-0.008255007933894526,157.17249999999999,0.10750055074084502,0.11528571428571865,36.51938958444094,204135 -2024-12-25 22:00:00+00:00,181,157.257,157.292,157.217,157.25,USD_JPY,H1,66.66666666666666,0.06862571711661758,0.07827465743275538,-0.009648940316137805,157.17865,0.1082760968378268,0.1071428571428612,38.67122727342462,204316 -2024-12-25 23:00:00+00:00,5730,157.248,157.274,157.11,157.13,USD_JPY,H1,52.870090634439734,0.05528896805583372,0.07367751955737106,-0.018388551501537342,157.18064999999999,0.10691328256368382,0.11200000000000289,38.43694024283906,198586 -2024-12-26 00:00:00+00:00,8489,157.13,157.373,157.077,157.328,USD_JPY,H1,63.86946386946377,0.06000474622126717,0.07094296489015028,-0.010938218668883115,157.19625,0.10435610838365864,0.12778571428571542,39.03330889476299,207075 -2024-12-26 01:00:00+00:00,7328,157.329,157.478,157.244,157.42,USD_JPY,H1,65.47884187082366,0.07035466078139052,0.07082530406839833,-0.0004706432870078131,157.21695,0.10568397522881294,0.13692857142857356,39.415961955987726,214403 -2024-12-26 02:00:00+00:00,3863,157.42,157.478,157.363,157.424,USD_JPY,H1,66.07142857142891,0.07798089400336039,0.07225642205539075,0.005724471947969642,157.23385000000002,0.11055423764962821,0.13935714285714645,39.41636259701324,218266 -2024-12-26 03:00:00+00:00,3091,157.422,157.442,157.334,157.372,USD_JPY,H1,60.089686098655136,0.07891904374702108,0.07358894639371683,0.005330097353304253,157.24535,0.11244333070573437,0.14014285714286043,38.85128112675913,215175 -2024-12-26 04:00:00+00:00,4106,157.37,157.466,157.358,157.43,USD_JPY,H1,58.70069605568484,0.08338147965733356,0.07554745304644017,0.007834026610893385,157.26395,0.11057337401596382,0.1400000000000026,38.071462974809535,219281 -2024-12-26 05:00:00+00:00,4896,157.43,157.433,157.314,157.35,USD_JPY,H1,50.9009009009004,0.07954570745422984,0.07634710392799811,0.003198603526231733,157.27685,0.10433058535870465,0.13657142857143104,35.325759430233894,214385 -2024-12-26 06:00:00+00:00,6119,157.35,157.422,157.334,157.375,USD_JPY,H1,54.26621160409483,0.07762827102777692,0.07660333734795388,0.0010249336798230368,157.2911,0.09664688842020251,0.13542857142857453,32.93660779976042,220504 -2024-12-26 07:00:00+00:00,5904,157.374,157.448,157.34,157.376,USD_JPY,H1,53.899082568807835,0.07532112543981384,0.07634689496632588,-0.0010257695265120381,157.3028,0.09168343700073961,0.13692857142857356,30.12870525065743,226408 -2024-12-26 08:00:00+00:00,7896,157.376,157.419,157.342,157.344,USD_JPY,H1,50.17221584385681,0.0701024657861069,0.07509800913028208,-0.0049955433441751795,157.3132,0.08316856686884713,0.13392857142857345,25.093145572240783,218512 -2024-12-26 09:00:00+00:00,6791,157.344,157.464,157.309,157.432,USD_JPY,H1,56.63430420711907,0.07223482684619853,0.07452537267346537,-0.0022905458272668433,157.3252,0.08206775114617239,0.13900000000000187,18.4661520622086,225303 -2024-12-26 10:00:00+00:00,4840,157.434,157.456,157.403,157.443,USD_JPY,H1,65.36585365853622,0.07395978406597692,0.07441225495196768,-0.00045247088599076335,157.33335000000002,0.0853699533565226,0.13057142857142878,17.4898621265051,230143 -2024-12-26 11:00:00+00:00,3441,157.441,157.591,157.436,157.59,USD_JPY,H1,70.04219409282601,0.08619489545964143,0.07676878305350243,0.009426112406138998,157.34615,0.10287052408529838,0.13299999999999962,17.69391339438626,233584 -2024-12-26 12:00:00+00:00,4603,157.59,157.666,157.584,157.656,USD_JPY,H1,70.84188911704243,0.10006348819871391,0.08142772408254473,0.018635764116169184,157.36395,0.12324663970790188,0.13299999999999962,18.410573403883465,238187 -2024-12-26 13:00:00+00:00,6750,157.654,157.846,157.597,157.839,USD_JPY,H1,84.18514946962293,0.12438716070712985,0.09001961140746176,0.03436754929966809,157.39050000000003,0.16174199724562846,0.13907142857142876,23.545646278993566,244937 -2024-12-26 14:00:00+00:00,6939,157.84,157.948,157.833,157.935,USD_JPY,H1,82.45989304812724,0.14968477123983348,0.10195264337393611,0.04773212786589737,157.4202,0.20176030591139726,0.12614285714285853,27.767309058004372,251876 -2024-12-26 15:00:00+00:00,8457,157.934,158.077,157.883,158.074,USD_JPY,H1,83.29938900203602,0.17888734620146352,0.1173395839394416,0.06154776226202191,157.45845,0.24701000936341666,0.12328571428571422,31.803767391337743,260333 -2024-12-26 16:00:00+00:00,8719,158.074,158.087,157.986,158.014,USD_JPY,H1,78.42003853564457,0.19494192947684041,0.1328600530469214,0.062081876429919025,157.4996,0.26778868336113126,0.12228571428571351,35.95020705653558,251614 -2024-12-26 17:00:00+00:00,7463,158.014,158.078,157.944,158.043,USD_JPY,H1,83.05418719211644,0.2076121365503525,0.14781046974760761,0.059801666802744874,157.54125000000002,0.28462586243683796,0.12414285714285711,40.53393580871114,259077 -2024-12-26 18:00:00+00:00,8822,158.042,158.073,157.87,157.932,USD_JPY,H1,73.50187265917363,0.20631828583532297,0.1595120329651507,0.04680625287017226,157.57535,0.2887202752794203,0.1309285714285713,44.6347168406637,250255 -2024-12-26 19:00:00+00:00,6563,157.934,158.026,157.919,157.985,USD_JPY,H1,80.4995196926018,0.20718129982398636,0.16904588633691783,0.03813541348706853,157.6181,0.2825405233899576,0.13007142857142842,48.968390310051504,256818 -2024-12-26 20:00:00+00:00,6214,157.984,157.986,157.89,157.972,USD_JPY,H1,79.00874635568324,0.20445937289406402,0.17612858364834708,0.028330789245716942,157.65030000000002,0.284429641636937,0.1306428571428577,52.35569528335786,250604 -2024-12-26 21:00:00+00:00,4473,157.971,158.046,157.95,158.023,USD_JPY,H1,79.98146431881152,0.204065163784918,0.1817158996756613,0.022349264109256722,157.68045,0.2906246403319293,0.1297857142857148,56.287324921283336,255077 -2024-12-26 22:00:00+00:00,872,157.91,157.918,157.876,157.892,USD_JPY,H1,73.25976230899731,0.19098063911209806,0.18356884756294867,0.0074117915491493935,157.70385000000002,0.2877157359721283,0.1317857142857142,59.51336079017657,254205 -2024-12-26 23:00:00+00:00,6293,157.894,157.898,157.674,157.77,USD_JPY,H1,63.94389438943933,0.1688206196207318,0.18061920197450532,-0.011798582353773512,157.72375,0.2771241171478107,0.13671428571428482,60.72929300594307,247912 -2024-12-27 00:00:00+00:00,10769,157.769,157.953,157.658,157.916,USD_JPY,H1,67.55753526354795,0.16118162292951865,0.176731686165508,-0.015550063235989342,157.74805,0.27125623444638836,0.15400000000000041,60.70153190150135,258681 -2024-12-27 01:00:00+00:00,9209,157.916,157.951,157.684,157.744,USD_JPY,H1,55.612244897958995,0.13963902867936895,0.16931315466828017,-0.029674125988911226,157.76775,0.2546235352948661,0.16200000000000006,58.74503079346649,249472 -2024-12-27 02:00:00+00:00,10134,157.751,157.768,157.508,157.604,USD_JPY,H1,48.20193637621049,0.11000150864089164,0.15745082546280248,-0.047449316821910836,157.7792,0.24080667063186895,0.17471428571428557,56.133674697013994,239338 -2024-12-27 03:00:00+00:00,5267,157.605,157.718,157.597,157.65,USD_JPY,H1,42.78074866310185,0.08919716663194777,0.14380009369663152,-0.054602927064683754,157.79289999999997,0.22385824929788903,0.1655714285714274,53.20338464112315,244605 -2024-12-27 04:00:00+00:00,4698,157.65,157.674,157.552,157.576,USD_JPY,H1,36.05283605283577,0.06597784264619122,0.12823564348654348,-0.06225780084035226,157.8045,0.20455098448165165,0.16607142857142776,51.788396214862914,239907 -2024-12-27 05:00:00+00:00,5830,157.577,157.773,157.562,157.762,USD_JPY,H1,38.305847076461355,0.06187178718562336,0.11496287222635947,-0.053091085040736105,157.821,0.18532844241567703,0.16728571428571318,50.780900444390845,245737 -2024-12-27 06:00:00+00:00,7174,157.761,157.818,157.662,157.756,USD_JPY,H1,39.92187499999963,0.05747106809616298,0.10346451140032017,-0.045993443304157194,157.83665,0.16367949262226272,0.1712142857142851,49.23459177610563,238563 -2024-12-27 07:00:00+00:00,8293,157.759,157.854,157.732,157.815,USD_JPY,H1,41.2977099236638,0.05807482301926825,0.0943865737241098,-0.03631175070484155,157.8479,0.15323353346698823,0.1703571428571422,47.23407084019988,246856 -2024-12-27 08:00:00+00:00,10415,157.814,157.918,157.782,157.85,USD_JPY,H1,46.67747163695321,0.06067805182775032,0.08764486934483791,-0.026966817517087585,157.8576,0.14643604671934302,0.1655714285714274,45.19239623133428,257271 -2024-12-27 09:00:00+00:00,6377,157.849,157.9,157.755,157.88,USD_JPY,H1,45.66473988439215,0.06441929318111761,0.08299975411209384,-0.018580460930976234,157.85965000000002,0.1464489402303118,0.1682857142857139,42.26415702867638,263648 -2024-12-27 10:00:00+00:00,6130,157.883,157.884,157.708,157.76,USD_JPY,H1,41.95751138087918,0.05704369260973863,0.0778085418116228,-0.020764849201884178,157.8509,0.14693711504851975,0.17399999999999846,39.85493336977726,257518 -2024-12-27 11:00:00+00:00,6088,157.759,157.79,157.628,157.656,USD_JPY,H1,36.61560904449297,0.04231872130611691,0.07071057771052162,-0.02839185640440471,157.83,0.14321423036401743,0.17871428571428435,38.40476208453587,251430 -2024-12-27 12:00:00+00:00,8108,157.656,157.799,157.582,157.795,USD_JPY,H1,46.48295866569931,0.041388117335401375,0.06484608563549757,-0.023457968300096194,157.81905,0.13662606474688266,0.18671428571428603,37.825123332483564,259538 -2024-12-27 13:00:00+00:00,8795,157.797,157.872,157.686,157.798,USD_JPY,H1,51.1111111111108,0.04042666844284781,0.05996220219696762,-0.01953553375411981,157.8068,0.12606497902521197,0.18400000000000155,37.34581210776599,268333 -2024-12-27 14:00:00+00:00,10632,157.798,157.893,157.691,157.816,USD_JPY,H1,45.583038869258104,0.04064859118014397,0.056099479993602895,-0.015450888813458928,157.80100000000002,0.12262308527306057,0.17735714285714316,36.93676482548711,278965 -2024-12-27 15:00:00+00:00,12886,157.817,157.878,157.532,157.574,USD_JPY,H1,42.92845257903528,0.02105438715742025,0.04909046142636637,-0.028036074268946116,157.78045,0.12458751939592953,0.1829999999999988,38.315101084350225,266079 -2024-12-27 16:00:00+00:00,14256,157.574,157.739,157.352,157.734,USD_JPY,H1,55.319148936170116,0.01822639953667249,0.0429176490484276,-0.02469124951175511,157.76855,0.11642773900695445,0.19207142857142806,40.014911988095356,280335 -2024-12-27 17:00:00+00:00,9427,157.732,157.848,157.678,157.827,USD_JPY,H1,56.973995271867445,0.023221834881837822,0.038978486215109645,-0.015756651333271823,157.75875000000002,0.10112622383488754,0.19557142857143056,38.12029937845879,289762 -2024-12-27 18:00:00+00:00,6626,157.826,157.858,157.77,157.834,USD_JPY,H1,60.73211314475942,0.02742940576615638,0.03666867012531899,-0.009239264359162613,157.75584999999998,0.09788353708010067,0.1931428571428577,34.34378446416795,296388 -2024-12-27 19:00:00+00:00,5043,157.834,157.946,157.832,157.944,USD_JPY,H1,58.081705150976745,0.039188278615483796,0.037172591823351954,0.002015686792131842,157.76455,0.10655587854441925,0.1862142857142877,30.203509355984075,301431 -2024-12-27 20:00:00+00:00,5256,157.944,157.946,157.852,157.909,USD_JPY,H1,56.62337662337658,0.04516245787220896,0.03877056503312336,0.006391892839085603,157.7642,0.10604249391414018,0.1817857142857154,26.959302244583473,296175 -2024-12-27 21:00:00+00:00,3543,157.908,157.926,157.816,157.843,USD_JPY,H1,51.20481927710812,0.0440634534964488,0.03982914272578845,0.004234310770660353,157.76915000000002,0.10735248135174873,0.1809285714285705,24.92977772227616,292632 -2024-12-29 22:00:00+00:00,937,157.747,157.797,157.705,157.705,USD_JPY,H1,44.2687747035577,0.031691715555382416,0.03820165729170724,-0.006509941736324826,157.7742,0.10138441689542317,0.17778571428571258,25.298695794621207,291695 -2024-12-29 23:00:00+00:00,3435,157.706,157.906,157.704,157.904,USD_JPY,H1,50.8368200836821,0.037512243202030504,0.03806377447377189,-0.0005515312717413873,157.7869,0.1009152327439445,0.18185714285714027,24.91927764060359,295130 -2024-12-30 00:00:00+00:00,8596,157.905,157.992,157.698,157.944,USD_JPY,H1,56.794682422452404,0.04483587890010199,0.039418195359037914,0.005417683541064075,157.80530000000002,0.09373091378933077,0.19028571428571134,23.519347422716567,303726 -2024-12-30 01:00:00+00:00,4414,157.944,157.96,157.732,157.798,USD_JPY,H1,55.08595988538703,0.03841609628292986,0.03921777554381631,-0.0008016792608864509,157.8071,0.09319978534985221,0.19499999999999723,20.79352207231688,299312 -2024-12-30 02:00:00+00:00,3954,157.8,157.832,157.701,157.806,USD_JPY,H1,50.43478260869662,0.03358673843433735,0.03809156812192052,-0.004504829687583173,157.8096,0.09242430752156189,0.1888571428571392,18.092397754615256,303266 -2024-12-30 03:00:00+00:00,2832,157.806,157.852,157.8,157.818,USD_JPY,H1,50.78492935635838,0.03037756361354127,0.03654876722024467,-0.006171203606703403,157.80975,0.09243596639835763,0.17928571428570958,17.93469663842928,306098 -2024-12-30 04:00:00+00:00,3060,157.816,157.826,157.76,157.795,USD_JPY,H1,49.17904612978827,0.025682311960622428,0.03437547616832023,-0.0086931642076978,157.80700000000002,0.09199256257005728,0.16957142857142418,17.830401572152955,303038 -2024-12-30 05:00:00+00:00,6797,157.797,157.962,157.772,157.857,USD_JPY,H1,62.87534121929013,0.026656889019307073,0.0328317587385176,-0.006174869719210524,157.80585000000002,0.09117206110481108,0.15842857142856864,16.416991633396986,309835 -2024-12-30 06:00:00+00:00,8422,157.862,158.074,157.822,157.874,USD_JPY,H1,57.32217573221716,0.028472789689004685,0.03195996492861501,-0.0034871752396103267,157.81154999999998,0.09171665457323125,0.14878571428571213,17.497024949989925,318257 -2024-12-30 07:00:00+00:00,8010,157.876,157.898,157.81,157.894,USD_JPY,H1,53.793884484711704,0.031166469248631756,0.03180126579261836,-0.0006347965439866057,157.82345,0.08571585549951016,0.1429285714285677,19.361729918477362,326267 -2024-12-30 08:00:00+00:00,9046,157.892,157.935,157.814,157.9,USD_JPY,H1,53.74149659863969,0.03340036099189092,0.032121084832472876,0.001279276159418044,157.82869999999997,0.08708622460296192,0.14528571428571166,21.736222435984512,335313 -2024-12-30 09:00:00+00:00,7465,157.9,157.986,157.852,157.876,USD_JPY,H1,45.72864321608139,0.03285540026661238,0.03226794791930078,0.0005874523473115983,157.8326,0.08738505225556092,0.1467142857142818,23.817876388898124,327848 -2024-12-30 10:00:00+00:00,6489,157.877,157.882,157.76,157.784,USD_JPY,H1,42.672919109027035,0.024714984880517932,0.030757355311544214,-0.006042370431026282,157.83100000000002,0.08799581323664817,0.14871428571428322,24.44242235928328,321359 -2024-12-30 11:00:00+00:00,7526,157.783,157.783,157.56,157.638,USD_JPY,H1,39.013933547696375,0.006408790662021602,0.025887642381639694,-0.019478851719618093,157.8342,0.07884601908866481,0.15678571428571178,23.081219256257192,313833 -2024-12-30 12:00:00+00:00,10733,157.638,157.653,157.488,157.559,USD_JPY,H1,41.64759725400395,-0.014308698149193333,0.017848374275473092,-0.03215707242466642,157.82545,0.09794760946447229,0.161999999999998,20.827385252720365,303100 -2024-12-30 13:00:00+00:00,14294,157.558,157.648,157.453,157.461,USD_JPY,H1,21.34540750323613,-0.03819495065769729,0.006639709288839016,-0.04483465994653631,157.80715,0.12740415381890102,0.16149999999999767,19.740167529318622,288806 -2024-12-30 14:00:00+00:00,20005,157.462,157.552,157.065,157.089,USD_JPY,H1,11.312217194572241,-0.08614919463835236,-0.01191807149659926,-0.07423112314175309,157.7699,0.2046398376345873,0.1752857142857128,22.258691039079558,268801 -2024-12-30 15:00:00+00:00,31398,157.09,157.28,156.668,157.177,USD_JPY,H1,20.343839541548363,-0.1157184832883047,-0.03267815385494035,-0.08304032943336434,157.73155,0.2392396893003781,0.20271428571428324,25.780356258181467,300199 -2024-12-30 16:00:00+00:00,15298,157.175,157.297,157.008,157.262,USD_JPY,H1,25.800711743772865,-0.1307859489452028,-0.05229971287299284,-0.07848623607220995,157.6992,0.25706186023822397,0.2139999999999966,29.225581135032275,315497 -2024-12-30 17:00:00+00:00,8930,157.262,157.356,157.117,157.15,USD_JPY,H1,22.712418300654363,-0.1500349781755972,-0.07184676593351372,-0.07818821224208347,157.66455,0.2821407776450408,0.22735714285714032,31.9811230069535,306567 -2024-12-30 18:00:00+00:00,7056,157.151,157.153,156.946,156.974,USD_JPY,H1,20.188816267248527,-0.17744621215183543,-0.09296665517717806,-0.08447955697465737,157.628,0.3212614937359832,0.23742857142856824,34.55592358129462,299511 -2024-12-30 19:00:00+00:00,5476,156.974,157.102,156.922,157.09,USD_JPY,H1,23.200559049616558,-0.18764650985798426,-0.11190262611333932,-0.07574388374464494,157.5873,0.3356931712921246,0.23671428571428318,38.34405278291261,304987 -2024-12-30 20:00:00+00:00,5890,157.09,157.116,156.802,156.826,USD_JPY,H1,18.772348033374016,-0.21455960339005742,-0.13243402156868295,-0.08212558182137447,157.5314,0.3649769134580464,0.24114285714285547,40.58351634627089,299097 -2024-12-30 21:00:00+00:00,4642,156.826,156.882,156.761,156.86,USD_JPY,H1,19.44444444444585,-0.23048798603323917,-0.1520448144615942,-0.07844317157164496,157.4845,0.3884290221546843,0.2434999999999994,43.53760451162685,303739 -2024-12-30 22:00:00+00:00,767,156.887,156.926,156.866,156.887,USD_JPY,H1,20.431990659662134,-0.23818699823479506,-0.16927325121623438,-0.06891374701856068,157.43855000000002,0.40249752858266,0.23957142857142547,46.29016609010633,304506 -2024-12-30 23:00:00+00:00,4108,156.886,157.068,156.868,157.009,USD_JPY,H1,26.062948647156233,-0.23177241237294766,-0.18177308344757703,-0.04999932892537062,157.3981,0.40300762692188374,0.24428571428571338,48.59991030166861,308614 -2024-12-31 00:00:00+00:00,6623,157.01,157.049,156.694,156.695,USD_JPY,H1,23.216920806689856,-0.24915389168492652,-0.19524924509504693,-0.05390464658987959,157.3431,0.4206641240370796,0.26092857142857084,52.08293472087009,301991 -2024-12-31 01:00:00+00:00,11957,156.696,156.746,156.368,156.444,USD_JPY,H1,22.07670720299349,-0.27995529124061136,-0.21219045432415984,-0.06776483691645152,157.27245,0.44760573286532923,0.2720000000000015,57.129132304381,290034 -2024-12-31 02:00:00+00:00,9545,156.446,156.51,156.374,156.393,USD_JPY,H1,22.369668246445755,-0.30496544426867445,-0.23074545231306276,-0.07421999195561169,157.1984,0.4650166267419423,0.2699285714285732,61.802305921654,280489 -2024-12-31 03:00:00+00:00,6666,156.392,156.486,156.33,156.442,USD_JPY,H1,25.278990781174485,-0.31717607192007335,-0.2480315762344649,-0.06914449568560846,157.12579999999997,0.4640460049664443,0.2671428571428578,66.44029574376368,287155 -2024-12-31 04:00:00+00:00,6159,156.441,156.464,156.146,156.231,USD_JPY,H1,27.421052631579244,-0.33996016968774256,-0.26641729492512045,-0.07354287476262211,157.04235,0.46754895886500325,0.25507142857143045,68.16203876266631,280996 -2024-12-31 05:00:00+00:00,6088,156.23,156.242,156.138,156.238,USD_JPY,H1,24.18911489829661,-0.3533783640107231,-0.283809508742241,-0.06956885526848211,156.96044999999998,0.4571820407773465,0.21878571428571547,68.51896548658029,287084 -2024-12-31 06:00:00+00:00,6091,156.237,156.382,156.147,156.361,USD_JPY,H1,25.740441572428722,-0.3500521246454298,-0.2970580319228787,-0.05299409272255107,156.8893,0.4323225038748619,0.2149285714285745,68.09174106253975,293175 -2024-12-31 07:00:00+00:00,8562,156.36,156.366,156.066,156.208,USD_JPY,H1,25.18440463645956,-0.35566202685612325,-0.3087788309095276,-0.046883195946595624,156.81779999999998,0.4200579659106244,0.21928571428571786,68.5438509084873,284613 -2024-12-31 08:00:00+00:00,11101,156.208,156.26,156.02,156.152,USD_JPY,H1,26.884139482564862,-0.3604713573419076,-0.31911733619600363,-0.041354021145903974,156.74745,0.4070080142604832,0.22164285714285978,68.4479464480668,273512 -2024-12-31 09:00:00+00:00,8691,156.151,156.674,156.132,156.643,USD_JPY,H1,39.61913608917793,-0.32096332444797326,-0.3194865338463976,-0.0014767906015756838,156.70655,0.37104085104729384,0.24750000000000227,64.79986085309396,282203 -2024-12-31 10:00:00+00:00,13296,156.644,156.966,156.612,156.836,USD_JPY,H1,50.240153698367415,-0.27095602432370924,-0.3097804319418599,0.03882440761815065,156.6939,0.3615059000589971,0.25035714285714455,59.551653334064554,295499 -2024-12-31 11:00:00+00:00,7571,156.837,156.84,156.636,156.806,USD_JPY,H1,48.70067372473528,-0.23108186013149634,-0.2940407175797872,0.06295885744829088,156.67535,0.34453191356049456,0.2562857142857159,54.545872446774936,287928 -2024-12-31 12:00:00+00:00,10449,156.806,156.896,156.556,156.896,USD_JPY,H1,50.21018215786983,-0.1900285194095943,-0.2732382779457487,0.08320975853615437,156.65705,0.32062217063662446,0.2758571428571445,49.112558366838314,298377 -2024-12-31 13:00:00+00:00,14484,156.896,157.089,156.83,157.012,USD_JPY,H1,50.07025761124155,-0.14644509269689365,-0.2478796408959777,0.10143454819908404,156.65015,0.3107893642570657,0.280071428571428,44.50782403574154,312861 -2024-12-31 14:00:00+00:00,18399,157.01,157.066,156.686,156.776,USD_JPY,H1,51.96888672824542,-0.12945585418751193,-0.22419488355428455,0.09473902936677261,156.64024999999998,0.302985994966479,0.2818571428571407,39.93137466054918,294462 -2024-12-31 15:00:00+00:00,25712,156.777,157.196,156.706,157.16,USD_JPY,H1,66.34703196347053,-0.08403743821367016,-0.19616339448616169,0.11212595627249153,156.64375,0.30880327154072024,0.2898571428571403,37.18332876191819,320174 -2024-12-31 16:00:00+00:00,15574,157.156,157.424,157.104,157.372,USD_JPY,H1,70.82092726499366,-0.03058383665907627,-0.1630474829207446,0.13246364626166834,156.67104999999998,0.3474763869123365,0.30299999999999727,35.01712687743802,335748 -2024-12-31 17:00:00+00:00,13986,157.372,157.55,157.312,157.372,USD_JPY,H1,70.19982623805383,0.01164429944958556,-0.1281091264466786,0.13975342589626416,156.69665,0.3795134384814285,0.3088571428571417,33.31454662540124,321762 -2024-12-31 18:00:00+00:00,8180,157.372,157.399,157.236,157.298,USD_JPY,H1,74.64203233256345,0.038693188999729955,-0.0947486633573969,0.13344185235712686,156.7172,0.40088856568039294,0.29778571428571304,32.43343013996418,313582 -2024-12-31 19:00:00+00:00,5566,157.3,157.316,157.236,157.31,USD_JPY,H1,74.70046082949297,0.0604016558666558,-0.06371859951258638,0.12412025537924218,156.73225,0.41771658421096786,0.2960714285714293,32.22085964812931,319148 -2024-12-31 20:00:00+00:00,5184,157.311,157.382,157.3,157.348,USD_JPY,H1,73.66906474820158,0.079752715026018,-0.03502433660486551,0.1147770516308835,156.7649,0.43959884822016215,0.2851428571428564,32.85120428708273,324332 -2024-12-31 21:00:00+00:00,3361,157.348,157.352,157.198,157.203,USD_JPY,H1,73.95281656234903,0.08243798684571857,-0.011531871914748693,0.09396985876046726,156.80285,0.44318503619131955,0.27471428571428397,32.73659730132895,320971 -2025-01-01 22:00:00+00:00,890,157.236,157.292,157.198,157.264,USD_JPY,H1,76.70509125840529,0.08846846491704241,0.008468195451609529,0.08000026946543289,156.84640000000002,0.443585676752235,0.26428571428571346,33.185276470516506,321861 -2025-01-01 23:00:00+00:00,7007,157.262,157.782,157.248,157.7,USD_JPY,H1,76.07301430685692,0.1269656375949637,0.032167683880280365,0.09479795371468334,156.9093,0.4715351301182084,0.26371428571428623,36.36097850001348,328868 -2025-01-02 00:00:00+00:00,12088,157.704,157.778,157.296,157.438,USD_JPY,H1,64.36068702290015,0.13478005336719434,0.052690157777663164,0.08208989558953117,156.96965,0.45717395916178355,0.27285714285714235,39.64760800812832,316780 -2025-01-02 01:00:00+00:00,10351,157.437,157.668,157.42,157.512,USD_JPY,H1,66.49532710280337,0.14526963776572188,0.07120605377527492,0.07406358399044696,157.03335,0.43822792374089303,0.2760000000000003,42.252593591047194,327131 -2025-01-02 02:00:00+00:00,5373,157.512,157.512,157.268,157.29,USD_JPY,H1,58.67077464788726,0.1341230769638173,0.08378945841298341,0.0503336185508339,157.0798,0.41163941807694204,0.26914285714285924,44.862904321971996,321758 -2025-01-02 03:00:00+00:00,3877,157.29,157.305,157.132,157.158,USD_JPY,H1,53.1905594405591,0.11333163386302658,0.08969789350299204,0.023633740360034544,157.12730000000002,0.356920173869136,0.2630000000000032,45.8713327958202,317881 -2025-01-02 04:00:00+00:00,4699,157.158,157.159,156.996,157.023,USD_JPY,H1,55.64700502972064,0.0849812823297782,0.08875457126834926,-0.0037732889385710677,157.17085000000003,0.2755076223782281,0.24750000000000227,46.80616445412896,313182 -2025-01-02 05:00:00+00:00,5409,157.022,157.212,156.976,157.21,USD_JPY,H1,51.256281407035424,0.07671839970592487,0.08634733695586438,-0.009628937249939518,157.1992,0.24591581783654878,0.22935714285714376,45.48938140113142,318591 -2025-01-02 06:00:00+00:00,9978,157.211,157.214,156.662,156.666,USD_JPY,H1,34.7975882859604,0.02597433611512656,0.07427273678771683,-0.048298400672590266,157.1907,0.261570177740627,0.2459285714285723,43.82096805568319,308613 -2025-01-02 07:00:00+00:00,14686,156.666,156.75,156.438,156.672,USD_JPY,H1,34.96563573883164,-0.013599780215173496,0.056698233387138766,-0.07029801360231226,157.184,0.27339175667912735,0.25121428571428744,43.12682937171602,323299 -2025-01-02 08:00:00+00:00,19029,156.673,156.831,156.464,156.783,USD_JPY,H1,39.11205073995757,-0.03559545790739094,0.03823949512823283,-0.07383495303562376,157.17835,0.28072617767251506,0.26578571428571457,41.14530672002894,342328 -2025-01-02 09:00:00+00:00,11633,156.782,156.924,156.752,156.794,USD_JPY,H1,39.08629441624412,-0.051545399598950326,0.020282516182796202,-0.07182791578174652,157.16745,0.29154876361845833,0.272357142857142,38.61968066462611,353961 -2025-01-02 10:00:00+00:00,13089,156.798,157.169,156.792,157.136,USD_JPY,H1,46.02698650674635,-0.036172329418803884,0.008991547062476185,-0.04516387648128007,157.18545,0.27685156100449787,0.2934285714285717,35.39236562807151,367050 -2025-01-02 11:00:00+00:00,12041,157.134,157.289,157.054,157.206,USD_JPY,H1,50.057848052448634,-0.018131635352659714,0.0035669105794490052,-0.02169854593210872,157.18775,0.27682007739989156,0.2992142857142852,31.505639969950288,379091 -2025-01-02 12:00:00+00:00,12080,157.206,157.219,157.018,157.08,USD_JPY,H1,46.53875094055684,-0.013841842162918283,8.516003097554757e-05,-0.01392700219389383,157.17315,0.2742795874537027,0.30685714285714233,27.427443637220005,367011 -2025-01-02 13:00:00+00:00,22477,157.08,157.242,156.719,156.83,USD_JPY,H1,32.40291262135976,-0.03026617123464348,-0.005985106222148259,-0.02428106501249522,157.14605,0.2803080025690929,0.3060714285714263,26.41798594519306,344534 -2025-01-02 14:00:00+00:00,23625,156.826,157.12,156.634,157.031,USD_JPY,H1,41.55951887183779,-0.026755133655655072,-0.010139111708849622,-0.016616021946805448,157.1327,0.2790455725637307,0.30635714285714194,26.084231910022822,368159 -2025-01-02 15:00:00+00:00,27952,157.032,157.188,156.784,157.152,USD_JPY,H1,42.676973148901176,-0.014046997277233686,-0.010920688822526437,-0.003126308454707249,157.1248,0.27598161645306146,0.3174999999999975,25.242621424775074,396111 -2025-01-02 16:00:00+00:00,22882,157.151,157.753,157.134,157.66,USD_JPY,H1,56.741982507288775,0.03659381609364232,-0.0014177878392926868,0.038011603932935005,157.1404,0.29725983669980566,0.34428571428571175,22.365051696434023,418993 -2025-01-02 17:00:00+00:00,14555,157.66,157.851,157.49,157.568,USD_JPY,H1,57.58136094674616,0.06851361214100393,0.012568492156766638,0.05594511998423729,157.15865,0.3121374992043553,0.3577142857142824,21.572311594083494,404438 -2025-01-02 18:00:00+00:00,10938,157.568,157.636,157.464,157.502,USD_JPY,H1,59.08918406072144,0.08747626018788424,0.02755004576299016,0.05992621442489408,157.17055,0.3207823454406462,0.35835714285714054,21.10732729699908,393500 -2025-01-02 19:00:00+00:00,8172,157.502,157.679,157.474,157.622,USD_JPY,H1,58.02180685358282,0.11090880483786236,0.0442217975779646,0.06668700725989776,157.16665,0.3144176362555141,0.35614285714285643,20.91449066151853,401672 -2025-01-02 20:00:00+00:00,4629,157.622,157.657,157.564,157.631,USD_JPY,H1,73.73339891785628,0.12872166683041542,0.06112177142845476,0.06759989540196065,157.1763,0.3259349466721819,0.32335714285714395,21.805510875895774,406301 -2025-01-02 21:00:00+00:00,5434,157.63,157.637,157.502,157.54,USD_JPY,H1,70.49102927289944,0.13395143999460402,0.07568770514168462,0.0582637348529194,157.1777,0.3275091159664821,0.31071428571428533,22.096556505585124,400867 -2025-01-02 22:00:00+00:00,6610,157.505,157.517,157.456,157.469,USD_JPY,H1,66.50625601540003,0.1308585108213265,0.086721866277613,0.044136644543713494,157.18665,0.3331369680209738,0.28885714285714365,22.627421580999563,394257 -2025-01-02 23:00:00+00:00,3228,157.466,157.566,157.354,157.359,USD_JPY,H1,62.976573265962834,0.11816908185855368,0.09301130939380113,0.02515777246475255,157.1967,0.3352523165885751,0.2917142857142859,22.85658467055265,391029 -2025-01-03 00:00:00+00:00,9747,157.363,157.403,157.176,157.214,USD_JPY,H1,51.96969696969711,0.09531361378961378,0.09347177027296366,0.0018418435166501212,157.20625,0.3327549872916838,0.2809999999999998,22.208753346348875,381282 -2025-01-03 01:00:00+00:00,7024,157.214,157.41,157.187,157.282,USD_JPY,H1,51.9211324570279,0.08174521443316962,0.09112645910500486,-0.009381244671835237,157.20985000000002,0.33318688842768657,0.2801428571428569,22.522840282021892,388306 -2025-01-03 02:00:00+00:00,7040,157.282,157.361,157.25,157.314,USD_JPY,H1,56.21019108280217,0.07273583927428717,0.08744833513886133,-0.014712495864574154,157.24225,0.30807857420357987,0.27371428571428524,22.83066905128128,395346 -2025-01-03 03:00:00+00:00,7312,157.313,157.463,157.185,157.312,USD_JPY,H1,64.7310513447438,0.0646887694002487,0.08289642199113881,-0.018207652590890105,157.27425,0.2774447076050916,0.25621428571428495,21.24024473574635,388034 -2025-01-03 04:00:00+00:00,5777,157.313,157.39,157.252,157.286,USD_JPY,H1,58.726899383983685,0.0555728169986196,0.07743170099263497,-0.021858883994015366,157.29940000000002,0.25222137308573495,0.2313571428571391,20.657211306115805,382257 -2025-01-03 05:00:00+00:00,6016,157.287,157.358,157.242,157.302,USD_JPY,H1,55.53097345132778,0.04907373386919289,0.07176010756794655,-0.022686373698753662,157.3248,0.22247071951444752,0.21078571428571177,20.642380670826764,388273 -2025-01-03 06:00:00+00:00,4592,157.301,157.301,157.132,157.174,USD_JPY,H1,25.102459016392487,0.03321178858121243,0.06405044377059974,-0.030838655189387304,157.3267,0.22093035337245423,0.1786428571428534,23.81226476767429,383681 -2025-01-03 07:00:00+00:00,12622,157.171,157.269,157.04,157.14,USD_JPY,H1,26.68845315903944,0.017693605935903634,0.054779076203660515,-0.03708547026775688,157.32340000000002,0.22330823632301575,0.16921428571428368,28.470332250976956,371059 -2025-01-03 08:00:00+00:00,12034,157.138,157.428,157.13,157.334,USD_JPY,H1,41.96940726577402,0.020809632570632175,0.047985187477054846,-0.02717555490642267,157.33610000000002,0.21583470768457488,0.17821428571428402,30.12817944804882,383093 -2025-01-03 09:00:00+00:00,11101,157.331,157.338,157.09,157.256,USD_JPY,H1,31.772908366533002,0.016791594947477506,0.04174646897113938,-0.024954874023661873,157.35739999999998,0.1815594436200467,0.181285714285711,32.5930465046195,371992 -2025-01-03 10:00:00+00:00,8207,157.256,157.383,157.169,157.374,USD_JPY,H1,38.45462713387218,0.02286530797837827,0.03797023677258716,-0.01510492879420889,157.37455,0.16450387130064548,0.18992857142856678,32.96804980110803,380199 -2025-01-03 11:00:00+00:00,7353,157.374,157.391,157.202,157.247,USD_JPY,H1,37.249782419495865,0.017232287612529262,0.03382264694057558,-0.016590359328046318,157.3793,0.15901972730734723,0.1937857142857098,32.03943887077232,372846 -2025-01-03 12:00:00+00:00,8307,157.246,157.258,157.062,157.168,USD_JPY,H1,36.99222126188452,0.0063205789200537765,0.02832223333647122,-0.022001654416417445,157.3547,0.15117264438291433,0.20342857142856627,32.09530636084288,364539 -2025-01-03 13:00:00+00:00,11048,157.168,157.242,157.026,157.185,USD_JPY,H1,41.82330827067633,-0.0009443846301451231,0.02246890974314795,-0.023413294373293075,157.33554999999998,0.14692944059979704,0.2037142857142799,32.5896770818564,375587 -2025-01-03 14:00:00+00:00,11260,157.186,157.314,157.119,157.136,USD_JPY,H1,45.97107438016509,-0.010534377330344569,0.015868252328449448,-0.026402629658794016,157.31725,0.1478964342091958,0.20142857142856485,32.60281386234761,364327 -2025-01-03 15:00:00+00:00,19114,157.162,157.498,157.162,157.4,USD_JPY,H1,55.068728522336606,0.003131974569214435,0.013320996776602445,-0.01018902220738801,157.30615,0.13120986600098022,0.211357142857137,33.5622775509707,383441 -2025-01-03 16:00:00+00:00,8661,157.4,157.404,157.202,157.206,USD_JPY,H1,45.927601809954666,-0.0016722451626378643,0.010322348388754383,-0.011994593551392247,157.28490000000002,0.10823361667283181,0.2178571428571376,35.14160499236699,374780 -2025-01-03 17:00:00+00:00,9308,157.206,157.214,156.875,157.17,USD_JPY,H1,44.77941176470515,-0.008288972927914529,0.006600084125420602,-0.01488905705333513,157.2664,0.0928657207685067,0.22221428571428095,34.58832839273343,365472 -2025-01-03 18:00:00+00:00,5510,157.169,157.243,157.107,157.168,USD_JPY,H1,45.583832335329575,-0.01353810182749271,0.0025724469348379396,-0.01611054876233065,157.25135,0.08206626006592824,0.22207142857142514,33.007328742170714,359962 -2025-01-03 19:00:00+00:00,4123,157.167,157.232,157.11,157.206,USD_JPY,H1,46.46539027982315,-0.014465047810602982,-0.0008350520142502448,-0.013629995796352738,157.24370000000002,0.07855946449826279,0.22249999999999456,31.71787999628128,364085 -2025-01-03 20:00:00+00:00,4540,157.206,157.356,157.141,157.342,USD_JPY,H1,56.149341142020546,-0.004177440842255464,-0.001503529779851289,-0.0026739110624041753,157.2501,0.08118264002363851,0.22578571428571031,28.70421737845978,368625 -2025-01-03 21:00:00+00:00,2999,157.341,157.382,157.278,157.292,USD_JPY,H1,55.499276410998974,-5.8347737763142504e-05,-0.0012144933714336597,0.0011561456336705172,157.25060000000002,0.08141989921743086,0.2168571428571389,24.284827510481616,365626 -2025-01-05 22:00:00+00:00,1126,157.249,157.394,157.198,157.348,USD_JPY,H1,50.56270096463061,0.007636763358192411,0.0005557579744915544,0.007081005383700856,157.2523,0.08314989628217483,0.20957142857142433,22.192682019641175,366752 -2025-01-05 23:00:00+00:00,5867,157.351,157.529,157.346,157.511,USD_JPY,H1,59.59367945823905,0.026581516913608993,0.0057609097623150425,0.02082060715129395,157.26225,0.10071997392018776,0.20492857142856735,19.21450677393141,372619 -2025-01-06 00:00:00+00:00,13416,157.51,157.83,157.502,157.594,USD_JPY,H1,58.50077279752693,0.04774243189959293,0.01415721418977062,0.03358521770982231,157.27765,0.12513078416800147,0.2130714285714248,18.283971109712596,386035 -2025-01-06 01:00:00+00:00,9978,157.593,157.674,157.488,157.62,USD_JPY,H1,65.6328583403176,0.06585149712336147,0.02449607077648879,0.04135542634687268,157.29355,0.146727629835152,0.2128571428571401,17.692684463979433,396013 -2025-01-06 02:00:00+00:00,8230,157.62,157.78,157.57,157.718,USD_JPY,H1,72.68976897689666,0.08710673059357532,0.0370182027399061,0.05008852785366922,157.32075,0.17169736990051004,0.2138571428571408,17.871550557870254,404243 -2025-01-06 03:00:00+00:00,7876,157.716,157.786,157.656,157.719,USD_JPY,H1,72.32441471571823,0.10284679407487829,0.05018392100690054,0.05266287306797775,157.34969999999998,0.1876853749994301,0.2077142857142848,18.695142718614704,412119 -2025-01-06 04:00:00+00:00,5766,157.719,157.756,157.662,157.72,USD_JPY,H1,75.43554006968601,0.11408648148531597,0.06296443310258362,0.05112204838273235,157.369,0.20503093473723139,0.20049999999999915,21.52368303343235,417885 -2025-01-06 05:00:00+00:00,6341,157.72,157.808,157.676,157.78,USD_JPY,H1,70.1271186440672,0.1263786983284092,0.07564728614774874,0.05073141218066046,157.3952,0.22256154675501758,0.18407142857142844,22.75368063836578,424226 -2025-01-06 06:00:00+00:00,6762,157.781,157.794,157.63,157.652,USD_JPY,H1,75.39863325740265,0.12435831325302615,0.08538949156880422,0.03896882168422193,157.4091,0.22973346109487547,0.18135714285714397,22.611091409277176,417464 -2025-01-06 07:00:00+00:00,7608,157.65,157.698,157.535,157.665,USD_JPY,H1,78.94736842105229,0.12239523875518898,0.09279064100608117,0.029604597749107814,157.43,0.23319790553658612,0.1687857142857163,25.389365935265,425072 -2025-01-06 08:00:00+00:00,12091,157.664,157.767,157.62,157.668,USD_JPY,H1,79.20560747663376,0.11970171612861691,0.09817285603058833,0.021528860098028582,157.45499999999998,0.2304165563983273,0.16957142857143026,28.157909706935566,437163 -2025-01-06 09:00:00+00:00,11441,157.668,157.768,157.59,157.74,USD_JPY,H1,79.99999999999872,0.12197087400090822,0.10293245962465232,0.019038414376255905,157.48275,0.22960695819587756,0.1735714285714311,30.647229037670513,448604 -2025-01-06 10:00:00+00:00,8253,157.738,157.918,157.686,157.904,USD_JPY,H1,80.61002178649031,0.1354413438552342,0.10943423647076869,0.026007107384465517,157.52115,0.23276287343990146,0.17478571428571651,34.26786785558358,456857 -2025-01-06 11:00:00+00:00,29091,157.905,157.966,157.168,157.203,USD_JPY,H1,47.16379859783309,0.08853141175987389,0.10525367152858975,-0.016722259768715858,157.5113,0.24213895529848745,0.22435714285714425,33.54040621980262,427766 -2025-01-06 12:00:00+00:00,23961,157.202,157.215,156.62,156.788,USD_JPY,H1,35.47717842323644,0.017664297875910506,0.0877357967980539,-0.0700714989221434,157.4904,0.28425459305527767,0.25285714285714433,34.39935641080174,403805 -2025-01-06 13:00:00+00:00,23973,156.789,156.816,156.237,156.613,USD_JPY,H1,26.85567010309319,-0.05201978619697911,0.059784680199047306,-0.11180446639602643,157.46255000000002,0.33926196599048747,0.2811428571428597,36.806051727641595,379832 -2025-01-06 14:00:00+00:00,34583,156.614,157.423,156.468,157.293,USD_JPY,H1,44.067796610169815,-0.05177774624044673,0.037472194911148504,-0.08924994115159524,157.46880000000002,0.33467039557301737,0.3259285714285746,36.84031490437096,414415 -2025-01-06 15:00:00+00:00,20769,157.292,157.659,157.196,157.535,USD_JPY,H1,48.45622956774414,-0.03169321070481601,0.023639113787955603,-0.05533232449277162,157.48525,0.32911266266378686,0.34571428571428797,36.227197604077865,435184 -2025-01-06 16:00:00+00:00,14855,157.532,157.614,157.348,157.546,USD_JPY,H1,46.77419354838718,-0.014718794422435622,0.015967532145877362,-0.030686326568312983,157.49544999999998,0.32759706876359584,0.3497142857142868,34.76792242285479,450039 -2025-01-06 17:00:00+00:00,8880,157.545,157.604,157.468,157.512,USD_JPY,H1,46.16524638755108,-0.0039642654897988905,0.011981172618742111,-0.015945438108541002,157.50645,0.32408080131087796,0.35014285714286025,33.07582092668755,441159 -2025-01-06 18:00:00+00:00,8428,157.51,157.673,157.434,157.538,USD_JPY,H1,46.6593245227609,0.006580898380349254,0.010901117771063541,-0.0043202193907142875,157.51595,0.32196951063464185,0.3605000000000039,31.35389365567527,449587 -2025-01-06 19:00:00+00:00,8812,157.538,157.594,157.474,157.548,USD_JPY,H1,45.66192969334333,0.015565503710149642,0.011833994958880763,0.0037315087512688784,157.51780000000002,0.3220458613783822,0.359642857142861,30.183561339691657,458399 -2025-01-06 20:00:00+00:00,6008,157.548,157.642,157.492,157.628,USD_JPY,H1,49.543031226199524,0.028809106134275453,0.015229017193959702,0.013580088940315751,157.5195,0.3225586033892437,0.35864285714286026,29.431793692482156,464407 -2025-01-06 21:00:00+00:00,3631,157.628,157.666,157.591,157.65,USD_JPY,H1,49.71537001897559,0.04061182477272496,0.02030557870971275,0.020306246063012207,157.52100000000002,0.32311982458752603,0.35235714285714437,26.304913322670465,468038 -2025-01-06 22:00:00+00:00,705,157.557,157.648,157.545,157.628,USD_JPY,H1,49.24642049736208,0.0476411704322004,0.025772697054210283,0.021868473377990114,157.5165,0.32085059646507663,0.3492142857142885,23.38264345853324,467333 -2025-01-06 23:00:00+00:00,3888,157.626,157.813,157.621,157.742,USD_JPY,H1,50.037091988130214,0.06169959030293626,0.03295807570395548,0.028741514598980777,157.51765,0.32165481250851946,0.35021428571428714,20.23047619531956,471221 -2025-01-07 00:00:00+00:00,18281,157.741,158.225,157.737,158.105,USD_JPY,H1,53.47150259067344,0.10096815754863542,0.04656009207289147,0.05440806547574395,157.5369,0.34507038182073446,0.36850000000000144,16.562096262402587,489502 -2025-01-07 01:00:00+00:00,13721,158.106,158.42,158.044,158.312,USD_JPY,H1,73.0945439400248,0.14709631527622946,0.06666733671355907,0.0804289785626704,157.5635,0.38319494830951506,0.33835714285714247,18.442793076461832,503223 -2025-01-07 02:00:00+00:00,8342,158.313,158.318,158.142,158.28,USD_JPY,H1,86.96729435084112,0.17900759195424598,0.08913538776169645,0.08987220419254953,157.5949,0.41522028394507965,0.3084285714285723,22.024478622632834,494881 -2025-01-07 03:00:00+00:00,6545,158.281,158.311,158.088,158.125,USD_JPY,H1,87.83783783783696,0.18960465952866912,0.109229242115091,0.08037541741357812,157.61790000000002,0.4317200481665473,0.28300000000000125,26.577307500637556,488336 -2025-01-07 04:00:00+00:00,6314,158.126,158.156,158.015,158.085,USD_JPY,H1,79.16053019145738,0.19255558529746963,0.12589451075156674,0.06666107454590289,157.63875000000002,0.44415737785691883,0.22485714285714462,31.53659856870265,482022 -2025-01-07 05:00:00+00:00,9497,158.086,158.156,157.787,157.866,USD_JPY,H1,62.39700374531866,0.17520311306171266,0.13575623121359592,0.03944688184811673,157.64505,0.44655623502710323,0.21814285714285933,34.352001243448306,472525 -2025-01-07 06:00:00+00:00,10831,157.866,157.866,157.682,157.758,USD_JPY,H1,57.40223463687189,0.15099586999309622,0.138804158969496,0.012191711023600227,157.63774999999998,0.443281646822871,0.21228571428571893,35.9268736740284,461694 -2025-01-07 07:00:00+00:00,17090,157.759,157.796,157.455,157.496,USD_JPY,H1,49.51807228915691,0.10940904570864518,0.13292513631732583,-0.02351609060868065,157.6524,0.4328769607484911,0.22692857142857292,35.95004122593134,444604 -2025-01-07 08:00:00+00:00,19475,157.498,157.604,157.402,157.43,USD_JPY,H1,46.82352941176467,0.07031499197341873,0.12040310744854442,-0.05008811547512569,157.6845,0.3867498171190458,0.22428571428571736,35.60952687532496,425129 -2025-01-07 09:00:00+00:00,12937,157.432,157.686,157.364,157.608,USD_JPY,H1,51.605995717344776,0.05308386734355963,0.10693925942754746,-0.05385539208398783,157.73425,0.29470518272651497,0.23871428571428868,35.30738895561607,438066 -2025-01-07 10:00:00+00:00,10939,157.61,157.784,157.563,157.748,USD_JPY,H1,53.11203319502078,0.050146845284899655,0.09558077659901791,-0.045433931314118256,157.757,0.27580580504099045,0.2437857142857171,35.4418575720256,449005 -2025-01-07 11:00:00+00:00,8293,157.748,157.853,157.623,157.714,USD_JPY,H1,51.64948453608226,0.04456203489382915,0.08537702825798016,-0.04081499336415101,157.76595,0.27108660004857343,0.2548571428571478,36.03018103981335,440712 -2025-01-07 12:00:00+00:00,9651,157.716,157.854,157.684,157.744,USD_JPY,H1,52.97741273100651,0.04207180413277456,0.07671598343293905,-0.03464417930016449,157.77585000000002,0.266202786749635,0.25964285714286256,36.53031711668476,450363 -2025-01-07 13:00:00+00:00,10632,157.744,157.784,157.582,157.674,USD_JPY,H1,48.21428571428614,0.03405727229284139,0.06818424120491952,-0.03412696891207813,157.78395,0.26014762507309813,0.26035714285714967,36.476058433220636,439731 -2025-01-07 14:00:00+00:00,13220,157.673,157.84,157.536,157.766,USD_JPY,H1,39.62033067973048,0.0347289949562537,0.06149319195518636,-0.026764196998932663,157.79535,0.2537187159655019,0.24721428571429271,37.74717851929678,452951 -2025-01-07 15:00:00+00:00,32268,157.765,158.428,157.765,157.942,USD_JPY,H1,38.45193508114825,0.048899387413825934,0.05897443104691428,-0.010075043633088344,157.81504999999999,0.24874981616420444,0.2677142857142952,36.332619577390325,485219 -2025-01-07 16:00:00+00:00,26166,157.943,158.047,157.614,157.834,USD_JPY,H1,36.71036948748492,0.05082890415505403,0.05734532566854223,-0.006516421513488198,157.82535000000001,0.24483104268614728,0.28607142857143636,31.651426031916426,459053 -2025-01-07 17:00:00+00:00,15908,157.831,157.854,157.624,157.699,USD_JPY,H1,37.153196622436724,0.04099215625538477,0.05407469178591075,-0.013082535530525977,157.8278,0.2432238734595821,0.28657142857143675,24.319273040025507,443145 -2025-01-07 18:00:00+00:00,11737,157.7,157.917,157.586,157.844,USD_JPY,H1,43.16505955757172,0.04438510697497122,0.052136774823722844,-0.007751667848751621,157.83859999999999,0.23863744795831915,0.3001428571428631,18.017205479123806,454882 -2025-01-07 19:00:00+00:00,7090,157.844,157.87,157.758,157.782,USD_JPY,H1,47.38480697384787,0.04159171956752061,0.0500277637724824,-0.008436044204961787,157.84060000000002,0.23795187481076027,0.2817857142857199,15.535626291464329,447792 -2025-01-07 20:00:00+00:00,6878,157.779,157.877,157.741,157.876,USD_JPY,H1,53.70603015075379,0.046427763968296176,0.04930776381164516,-0.002879999843348982,157.82915,0.2299341495885279,0.2783571428571463,14.351654941184007,454670 -2025-01-07 21:00:00+00:00,4042,157.876,158.098,157.876,158.066,USD_JPY,H1,68.75000000000071,0.06484429147354831,0.05241506934402579,0.012429222129522521,157.81685000000002,0.20830803984190988,0.26985714285714835,16.89170253329015,458712 -2025-01-07 22:00:00+00:00,1172,158.041,158.06,157.994,158.036,USD_JPY,H1,70.41778975741326,0.07614106611188731,0.0571602686975981,0.018980797414289215,157.80464999999998,0.18567013049358885,0.2601428571428609,20.350999617121705,457540 -2025-01-07 23:00:00+00:00,5706,158.037,158.245,158.037,158.224,USD_JPY,H1,70.61579651941167,0.09912126201245997,0.06555246736057048,0.033568794651889486,157.8096,0.19570853728960177,0.2520714285714324,23.889552584777512,463246 -2025-01-08 00:00:00+00:00,13738,158.224,158.232,157.903,158.17,USD_JPY,H1,64.98579545454609,0.11168840966089988,0.07477965582063636,0.036908753840263514,157.81385,0.20279838961687005,0.2597857142857184,26.023645033883692,449508 -2025-01-08 01:00:00+00:00,8793,158.17,158.172,157.932,157.972,USD_JPY,H1,58.206106870229746,0.10446679132667214,0.08071708292184351,0.023749708404828623,157.81914999999998,0.20559881089570026,0.26050000000000345,28.034190221574622,440715 -2025-01-08 02:00:00+00:00,6095,157.97,158.145,157.934,158.104,USD_JPY,H1,60.75268817204392,0.10814823802971318,0.08620331394341746,0.021944924086295725,157.83645,0.2145449222734419,0.2634285714285746,29.817818392469288,446810 -2025-01-08 03:00:00+00:00,5607,158.105,158.214,158.076,158.198,USD_JPY,H1,65.42991755005963,0.1172986793152404,0.09242238701778206,0.024876292297458344,157.87155,0.2133360272327364,0.25885714285714656,33.71089200664886,452417 -2025-01-08 04:00:00+00:00,4170,158.198,158.262,158.162,158.227,USD_JPY,H1,64.09785932721809,0.12544448169774114,0.09902680595377389,0.02641767574396725,157.91140000000001,0.20057165667871296,0.24428571428571746,36.69769636694708,456587 -2025-01-08 05:00:00+00:00,6027,158.225,158.267,158.1,158.176,USD_JPY,H1,57.74834437086062,0.12632857779007622,0.10448716032103436,0.021841417469041863,157.93980000000002,0.19549952211469454,0.20885714285714535,37.58658440909436,450560 -2025-01-08 06:00:00+00:00,6942,158.176,158.176,157.992,158.054,USD_JPY,H1,57.217847769029234,0.11584941002431037,0.10675961026168956,0.00908979976262081,157.9551,0.19163476772161298,0.19107142857143142,39.233058135103654,443618 -2025-01-08 07:00:00+00:00,12747,158.05,158.135,157.93,158.114,USD_JPY,H1,64.32022084196042,0.11110533943835321,0.1076287560970223,0.0034765833413309133,157.9751,0.18593629353185193,0.1892857142857147,40.34361875021033,456365 -2025-01-08 08:00:00+00:00,12780,158.115,158.286,158.1,158.248,USD_JPY,H1,64.04728789986146,0.11681177599422199,0.10946536007646225,0.007346415917759738,158.00029999999998,0.1871166537069484,0.17892857142857313,41.74469699095107,469145 -2025-01-08 09:00:00+00:00,10080,158.249,158.25,158.054,158.165,USD_JPY,H1,63.12542837559956,0.11333035989417795,0.1102383600400054,0.00309199985417255,158.02485,0.17378761233116172,0.18492857142857336,42.079118953350886,459065 -2025-01-08 10:00:00+00:00,8222,158.163,158.35,158.15,158.328,USD_JPY,H1,64.79057591623067,0.12231408961756074,0.11265350595551647,0.009660583662044267,158.05294999999998,0.17516082081091655,0.18950000000000142,42.52657012225414,467287 -2025-01-08 11:00:00+00:00,13833,158.327,158.554,158.315,158.374,USD_JPY,H1,61.12716763005788,0.1316282472114665,0.11644845420670649,0.015179793004759995,158.07455,0.1869952081846237,0.19071428571428686,40.67507535663206,481120 -2025-01-08 12:00:00+00:00,11961,158.374,158.55,158.352,158.509,USD_JPY,H1,65.88314304902624,0.14819485789374198,0.1227977349441136,0.025397122949628384,158.1083,0.20163518382890713,0.20014285714285865,38.62059995720892,493081 -2025-01-08 13:00:00+00:00,28651,158.508,158.51,158.18,158.22,USD_JPY,H1,49.874213836478276,0.1364314348340656,0.125524474922104,0.010906959911961611,158.13434999999998,0.1782748542939391,0.2087857142857144,34.12434115038559,464430 -2025-01-08 14:00:00+00:00,19331,158.219,158.468,158.146,158.351,USD_JPY,H1,55.4289142171571,0.13611044600003197,0.1276416691376896,0.008468776862342375,158.1597,0.17070106215519457,0.20828571428571405,31.55851833566108,483761 -2025-01-08 15:00:00+00:00,15099,158.352,158.42,158.219,158.372,USD_JPY,H1,63.422818791946675,0.13598305650327802,0.1293099466108073,0.006673109892470719,158.18919999999997,0.1519430640937512,0.20549999999999866,28.427068589120292,498860 -2025-01-08 16:00:00+00:00,12106,158.374,158.446,158.29,158.324,USD_JPY,H1,57.82361308677107,0.13050452562686132,0.1295488624140181,0.0009556632128432108,158.2116,0.13546970914059153,0.20157142857142674,25.442217490667975,486754 -2025-01-08 17:00:00+00:00,9777,158.323,158.499,158.312,158.394,USD_JPY,H1,57.091172214182386,0.13030904387895248,0.129700898707005,0.0006081451719474884,158.228,0.13676333761539278,0.20507142857142518,21.369029623439236,496531 -2025-01-08 18:00:00+00:00,10803,158.393,158.504,158.272,158.465,USD_JPY,H1,58.35674157303382,0.13433470297809436,0.13062765956122288,0.003707043416871475,158.24945,0.1386937083152835,0.21449999999999697,17.28628797807335,507334 -2025-01-08 19:00:00+00:00,9617,158.464,158.524,158.354,158.47,USD_JPY,H1,60.667634252540644,0.13635668998762185,0.1317734656465027,0.0045832243411191576,158.26175,0.1469786504007394,0.21471428571428167,16.039676252772882,516951 -2025-01-08 20:00:00+00:00,5594,158.469,158.469,158.333,158.362,USD_JPY,H1,61.290322580645096,0.12777156083566865,0.13097308468433588,-0.0032015238486672315,158.27135,0.14694083123542037,0.2112857142857101,15.052828453007026,511357 -2025-01-08 21:00:00+00:00,4117,158.365,158.436,158.343,158.354,USD_JPY,H1,59.14634146341529,0.11895105724559585,0.12856867919658788,-0.009617621950992028,158.29045000000002,0.12981058058393966,0.20328571428571252,15.570881028030469,507240 -2025-01-08 22:00:00+00:00,1198,158.316,158.338,158.246,158.314,USD_JPY,H1,52.709359605911466,0.10749395548987195,0.1243537344552447,-0.016859778965372746,158.30095,0.12220581211938344,0.1965714285714252,14.237928274584243,506042 -2025-01-08 23:00:00+00:00,5258,158.308,158.4,158.181,158.192,USD_JPY,H1,51.07398568019155,0.08756039764151069,0.1169950670924979,-0.029434669450987216,158.30065,0.12247890254402734,0.19821428571428207,13.224625467968414,500784 -2025-01-09 00:00:00+00:00,10595,158.192,158.33,158.099,158.264,USD_JPY,H1,47.2555746140654,0.07668868824302422,0.10893379132260317,-0.03224510307957895,158.3025,0.12158406227779046,0.20042857142857023,13.3291342613332,511379 -2025-01-09 01:00:00+00:00,8083,158.264,158.289,158.074,158.112,USD_JPY,H1,39.701257861635135,0.05517166591383216,0.09818136624084897,-0.043009700327016814,158.2993,0.12585584899512234,0.19871428571428243,17.10540859781649,503296 -2025-01-09 02:00:00+00:00,5361,158.104,158.14,157.99,158.091,USD_JPY,H1,31.951640759931664,0.036009649377660935,0.08574702286821137,-0.049737373490550435,158.30115,0.12228150219438778,0.19528571428570882,20.802880190252107,497935 -2025-01-09 03:00:00+00:00,6434,158.09,158.098,157.916,157.976,USD_JPY,H1,37.60162601626028,0.011412517910542874,0.07088012187667768,-0.059467603966134805,158.29425,0.13646818595889382,0.18471428571428256,26.5560716102625,491501 -2025-01-09 04:00:00+00:00,7641,157.976,157.98,157.764,157.93,USD_JPY,H1,26.5850945494999,-0.011658311790597509,0.05437243514322264,-0.06603074693382015,158.27835,0.15883300561796604,0.17714285714285236,31.824540127597007,483860 -2025-01-09 05:00:00+00:00,8993,157.931,158.148,157.896,158.06,USD_JPY,H1,34.52380952380865,-0.019230519541736157,0.03965184420623088,-0.058882363747967036,158.2731,0.16441407927275134,0.18078571428571064,34.44424100296023,492853 -2025-01-09 06:00:00+00:00,8583,158.06,158.199,158.034,158.148,USD_JPY,H1,41.60305343511352,-0.017924066702391883,0.028136662024506324,-0.046060728726898204,158.2641,0.16616792391067592,0.18142857142856883,36.63281375531344,501436 -2025-01-09 07:00:00+00:00,10979,158.149,158.206,158.028,158.194,USD_JPY,H1,40.234374999998906,-0.013026714002620565,0.019903986819080947,-0.03293070082170151,158.2551,0.16477094145298724,0.1807857142857127,39.43989427577633,512415 -2025-01-09 08:00:00+00:00,12967,158.192,158.287,158.066,158.136,USD_JPY,H1,33.728981206725095,-0.013668084804777436,0.01318957249430927,-0.026857657299086707,158.23645,0.15536086173105457,0.1799999999999987,41.19028924201233,499448 -2025-01-09 09:00:00+00:00,9318,158.136,158.178,158.014,158.085,USD_JPY,H1,31.78807947019841,-0.018083197714673815,0.006935018452512655,-0.02501821616718647,158.2297,0.15900317769058891,0.17957142857142724,43.41535627978864,490130 -2025-01-09 10:00:00+00:00,7715,158.084,158.104,157.958,157.994,USD_JPY,H1,32.30769230769194,-0.028595514692909774,-0.00017108817657183074,-0.028424426516337944,158.21185,0.16460903438116878,0.18028571428571435,45.06681629088636,482415 -2025-01-09 11:00:00+00:00,8884,157.994,158.022,157.825,157.91,USD_JPY,H1,30.107526881719423,-0.04320664036310973,-0.00877819861387941,-0.03442844174923032,158.18875,0.1731472980772743,0.1877142857142847,46.552429169578375,473531 -2025-01-09 12:00:00+00:00,10399,157.91,157.934,157.651,157.748,USD_JPY,H1,27.14054927302037,-0.06708479705216064,-0.020439518301535658,-0.04664527875062498,158.15995,0.1958784464375908,0.20135714285714204,49.58662120083282,463132 -2025-01-09 13:00:00+00:00,12391,157.748,157.846,157.574,157.66,USD_JPY,H1,27.906976744185215,-0.0920481984803132,-0.034761254337291166,-0.05728694414302204,158.12324999999998,0.2173079006237678,0.20514285714285613,52.49200763770399,450741 -2025-01-09 14:00:00+00:00,9951,157.659,157.866,157.656,157.821,USD_JPY,H1,32.869296210362734,-0.0977141318102781,-0.047351829831888556,-0.05036230197838955,158.09105000000002,0.21164231864611305,0.20364285714285504,53.21221302875792,460692 -2025-01-09 15:00:00+00:00,9496,157.821,157.98,157.818,157.974,USD_JPY,H1,44.667697063369005,-0.08883457380028403,-0.05564837862556765,-0.03318619517471638,158.06625,0.19315302766074816,0.19985714285714096,49.31560769583742,470188 -2025-01-09 16:00:00+00:00,6927,157.968,158.033,157.924,158.014,USD_JPY,H1,47.067783701447105,-0.0776744121252193,-0.06005358532549798,-0.017620826799721323,158.04885,0.18035937075964512,0.19692857142856976,44.59510863058639,477115 -2025-01-09 17:00:00+00:00,5732,158.013,158.138,157.986,158.108,USD_JPY,H1,55.10835913312724,-0.06054694172883046,-0.06015225660616448,-0.0003946851226659803,158.03655,0.16629348656347434,0.19478571428571254,39.00493024926072,482847 -2025-01-09 18:00:00+00:00,3234,158.109,158.166,158.063,158.076,USD_JPY,H1,55.712050078246776,-0.04899069635578712,-0.057919944556089016,0.008929248200301894,158.02465,0.1534107918037311,0.18671428571428603,33.79366715867689,479613 -2025-01-09 19:00:00+00:00,2581,158.074,158.126,158.06,158.113,USD_JPY,H1,52.23628691983111,-0.03642679247258229,-0.05362131413938768,0.017194521666805386,158.0207,0.14985083808048286,0.17342857142857124,31.17262126445622,482194 -2025-01-09 20:00:00+00:00,2460,158.112,158.13,158.083,158.122,USD_JPY,H1,48.824593128391435,-0.025450209174096017,-0.047987093146329346,0.02253688397223333,158.0136,0.14080759545058127,0.16499999999999812,29.207736364482447,484654 -2025-01-09 21:00:00+00:00,1693,158.125,158.152,158.084,158.117,USD_JPY,H1,46.38497652582187,-0.01695915149949201,-0.041781504816961884,0.024822353317469875,158.01385,0.1409958099031988,0.1571428571428543,26.603425986719365,482961 -2025-01-09 22:00:00+00:00,866,158.134,158.193,158.118,158.137,USD_JPY,H1,50.0486854917237,-0.008517905156139705,-0.03512878488479745,0.026610879728657742,158.01614999999998,0.14268562237069896,0.14678571428571274,25.42945585340985,483827 -2025-01-09 23:00:00+00:00,3409,158.146,158.162,158.012,158.047,USD_JPY,H1,48.21763602251371,-0.008986810099059994,-0.02990038992764996,0.020913579828589966,158.0197,0.14251725653500494,0.14578571428571405,24.144268438085486,480418 -2025-01-10 00:00:00+00:00,12608,158.039,158.234,157.954,158.008,USD_JPY,H1,50.69033530572037,-0.012362883087348564,-0.026392888559589683,0.01403000547224112,158.02360000000002,0.14099249696257543,0.15535714285714164,21.713540049168877,467810 -2025-01-10 01:00:00+00:00,10536,158.008,158.173,157.936,158.132,USD_JPY,H1,60.53130929791253,-0.0049753290686851415,-0.02210937666140878,0.017134047592723637,158.02720000000002,0.142877422582981,0.15821428571428392,19.153421631936826,478346 -2025-01-10 02:00:00+00:00,6462,158.132,158.284,158.106,158.264,USD_JPY,H1,75.19531249999953,0.011399254040753704,-0.015407650520976281,0.026806904561729985,158.033,0.1502058236650907,0.15071428571428466,19.030814449529398,484808 -2025-01-10 03:00:00+00:00,3722,158.264,158.276,158.184,158.232,USD_JPY,H1,79.54545454545242,0.021545730789853224,-0.00801697425881038,0.029562705048663603,158.03490000000002,0.15257126027830428,0.13785714285714334,20.004271541097747,481086 -2025-01-10 04:00:00+00:00,5669,158.232,158.411,158.229,158.386,USD_JPY,H1,79.39646201872824,0.041534614501671285,0.0018933434932859533,0.03964127100838533,158.0474,0.1704802504066368,0.13585714285714193,21.795728960611335,486755 -2025-01-10 05:00:00+00:00,6055,158.386,158.425,158.354,158.413,USD_JPY,H1,76.28742514969895,0.05887593804226299,0.013289862403081361,0.04558607563918163,158.06380000000001,0.18905265206393498,0.12935714285714336,24.287001515490545,492810 -2025-01-10 06:00:00+00:00,7056,158.412,158.426,158.305,158.327,USD_JPY,H1,67.7639046538001,0.06493109536845054,0.0236181089961552,0.04131298637229534,158.08044999999998,0.19707531953091,0.13021428571428625,26.517889910452876,485754 -2025-01-10 07:00:00+00:00,8722,158.331,158.447,158.264,158.39,USD_JPY,H1,66.58823529411505,0.07396085002147856,0.03368665720121987,0.040274192820258695,158.10444999999999,0.20431953171910316,0.13242857142857037,28.527942250277015,494476 -2025-01-10 08:00:00+00:00,18567,158.391,158.428,157.75,157.827,USD_JPY,H1,40.98479362780648,0.0352809045215281,0.034005506665281515,0.001275397856246585,158.10840000000002,0.19772293211466857,0.17349999999999813,29.830705617383238,475909 -2025-01-10 09:00:00+00:00,15082,157.826,157.951,157.622,157.933,USD_JPY,H1,43.793103448275815,0.013029882781950164,0.029810381888615248,-0.016780499106665084,158.12205,0.17301794093108605,0.19228571428571076,32.22469918037108,490991 -2025-01-10 10:00:00+00:00,9752,157.934,158.132,157.864,158.079,USD_JPY,H1,48.6452425960931,0.00709498104546924,0.02526730171998605,-0.01817232067451681,158.13494999999998,0.15839041534611933,0.2080714285714253,33.01567572980529,500743 -2025-01-10 11:00:00+00:00,7713,158.08,158.174,157.992,157.994,USD_JPY,H1,46.31073785242987,-0.004416352007865498,0.01933057097441574,-0.02374692298228124,158.13595,0.15738068994719034,0.21621428571428478,33.81455327530715,493030 -2025-01-10 12:00:00+00:00,8776,157.995,158.029,157.894,157.994,USD_JPY,H1,45.65877352762602,-0.013384873892874793,0.012787482000957634,-0.026172355893832426,158.13495,0.1582574434595677,0.22042857142856828,34.87672174219894,484254 -2025-01-10 13:00:00+00:00,36981,157.992,158.88,157.902,158.551,USD_JPY,H1,61.92052980132426,0.024174089005128963,0.0150648034017919,0.009109285603337063,158.15709999999999,0.18330615744634127,0.27957142857142564,35.38959933655498,521235 -2025-01-10 14:00:00+00:00,42505,158.552,158.658,157.765,157.969,USD_JPY,H1,49.26608957470803,0.006897788267053784,0.013431400374844277,-0.006533612107790493,158.15175,0.18731534764402555,0.3233571428571399,36.188462802322455,478730 -2025-01-10 15:00:00+00:00,40422,157.991,158.165,157.228,157.557,USD_JPY,H1,40.23769100169758,-0.03958247912908064,0.0028286244740592936,-0.04241110360313993,158.12394999999998,0.2298080377180576,0.37335714285713906,35.94648660913174,438308 -2025-01-10 16:00:00+00:00,21891,157.559,157.876,157.542,157.69,USD_JPY,H1,40.2579769178546,-0.06493787405051421,-0.010724675230855407,-0.0542131988196588,158.10235,0.24946263825274154,0.3844999999999966,34.26785707520455,460199 -2025-01-10 17:00:00+00:00,13805,157.69,157.804,157.58,157.671,USD_JPY,H1,40.43641322877595,-0.08557884871487431,-0.025695509927659187,-0.05988333878721512,158.08004999999997,0.2673754456501811,0.3939285714285664,31.34154910644318,446394 -2025-01-10 18:00:00+00:00,8765,157.672,157.96,157.665,157.897,USD_JPY,H1,41.863560732113136,-0.082746804948016,-0.03710576893173055,-0.045641036016285455,158.06805000000003,0.2700572015231562,0.40199999999999697,27.962907705551906,455159 -2025-01-10 19:00:00+00:00,7560,157.898,157.986,157.808,157.875,USD_JPY,H1,41.033333333333154,-0.08133996946179423,-0.045952609037743286,-0.03538736042405094,158.05945000000003,0.2734798125712128,0.40964285714285403,24.862136584974422,447599 -2025-01-10 20:00:00+00:00,5694,157.876,157.939,157.811,157.818,USD_JPY,H1,41.433860652978964,-0.08385780525506448,-0.05353364828120753,-0.030324156973856944,158.04995,0.27861300738475586,0.4101428571428544,22.65208935734699,441905 -2025-01-10 21:00:00+00:00,6355,157.816,157.818,157.686,157.742,USD_JPY,H1,39.142091152815105,-0.09093750218420382,-0.061014419061806796,-0.029923083122397026,158.03045,0.2861150808030053,0.40649999999999814,21.922130490260283,435550 -2025-01-12 22:00:00+00:00,2050,157.79,157.842,157.68,157.727,USD_JPY,H1,47.94745484400669,-0.09664452966788417,-0.06814044118302227,-0.028504088484861898,158.0036,0.28823353103040833,0.36964285714285594,19.782944781454834,433500 -2025-01-12 23:00:00+00:00,5378,157.726,157.932,157.702,157.913,USD_JPY,H1,49.60254372019114,-0.08517687849794697,-0.07154772864600721,-0.013629149851939762,157.98765,0.2837202615804827,0.3625714285714281,17.949116645037794,438878 -2025-01-13 00:00:00+00:00,8532,157.909,157.966,157.788,157.794,USD_JPY,H1,44.27480916030542,-0.08471445232777342,-0.07418107338236045,-0.010533378945412966,157.95805,0.2705492415336481,0.35614285714285643,16.815746844918145,430346 -2025-01-13 01:00:00+00:00,12195,157.793,157.87,157.269,157.448,USD_JPY,H1,40.072727272727406,-0.11098788535880999,-0.08154243577765036,-0.029445449581159633,157.9098,0.27119144527275924,0.3860714285714266,17.011899241557792,418151 -2025-01-13 02:00:00+00:00,8811,157.449,157.654,157.4,157.517,USD_JPY,H1,41.53955303299032,-0.12480339117675499,-0.09019462685747129,-0.0346087643192837,157.8693,0.2660413699322153,0.39457142857142663,15.965323721504122,426962 -2025-01-13 03:00:00+00:00,9371,157.51,157.644,157.411,157.417,USD_JPY,H1,25.99491955969542,-0.1421824525307045,-0.10059219199211794,-0.041590260538586554,157.82065,0.2545266555984042,0.3413571428571406,20.98278027897762,417591 -2025-01-13 04:00:00+00:00,6983,157.417,157.586,157.408,157.544,USD_JPY,H1,38.85684320922967,-0.14404715926062295,-0.10928318544581894,-0.034763973814804006,157.8065,0.2619143089871236,0.29028571428571376,26.64707254530182,424574 -2025-01-13 05:00:00+00:00,7725,157.545,157.548,157.284,157.407,USD_JPY,H1,45.40441176470659,-0.15479532368706828,-0.11838561309406881,-0.03640971059299947,157.78019999999998,0.27464304103512965,0.2422142857142871,32.637713795912795,416849 -2025-01-13 06:00:00+00:00,9242,157.408,157.599,157.248,157.532,USD_JPY,H1,45.13546798029594,-0.1514806909877109,-0.1250046286727972,-0.026476062314913673,157.75285000000002,0.27052663550068085,0.24342857142857252,32.61765282510762,426091 -2025-01-13 07:00:00+00:00,15775,157.531,157.551,157.298,157.465,USD_JPY,H1,43.83971291866061,-0.15250221020062327,-0.13050414497836244,-0.021998065222260832,157.7264,0.27156668268931056,0.24550000000000086,33.37062901558423,410316 -2025-01-13 08:00:00+00:00,18976,157.464,157.67,157.386,157.606,USD_JPY,H1,40.8317580340265,-0.14031676559307016,-0.132466669101304,-0.007850096491766156,157.707,0.26522879892357304,0.24471428571428483,34.579285331838356,429292 -2025-01-13 09:00:00+00:00,19253,157.606,157.617,157.037,157.113,USD_JPY,H1,31.48688046647223,-0.16849834870004088,-0.13967300502105137,-0.028825343678989507,157.63510000000002,0.21443779613204403,0.27342857142856963,37.27619917405981,410039 -2025-01-13 10:00:00+00:00,12522,157.112,157.435,157.012,157.431,USD_JPY,H1,41.6558861578267,-0.16329020613486023,-0.14439644524381315,-0.01889376089104708,157.60819999999998,0.20382954692444027,0.2944999999999993,40.16263124133716,422561 -2025-01-13 11:00:00+00:00,8663,157.432,157.475,157.222,157.315,USD_JPY,H1,40.94955489614262,-0.1666024567617228,-0.1488376475473951,-0.017764809214327715,157.5961,0.21396012906846382,0.3031428571428551,42.16233440266935,413898 -2025-01-13 12:00:00+00:00,13095,157.316,157.463,156.924,157.034,USD_JPY,H1,36.79999999999991,-0.1897148758367564,-0.15701309320526735,-0.03270178263148904,157.5633,0.24660027316633162,0.3300714285714252,46.58482577823946,400803 -2025-01-13 13:00:00+00:00,18860,157.034,157.206,156.912,157.2,USD_JPY,H1,36.31477927063307,-0.1924187383503977,-0.16409422223429343,-0.02832451611610426,157.53975,0.2580001784769054,0.33464285714285325,50.97946101725211,419663 -2025-01-13 14:00:00+00:00,20976,157.2,157.429,157.104,157.356,USD_JPY,H1,41.71082513247516,-0.17989989857224487,-0.16725535750188372,-0.012644541070361143,157.5127,0.24668541652411696,0.34514285714285264,54.40754365703585,440639 -2025-01-13 15:00:00+00:00,19089,157.355,157.586,157.311,157.521,USD_JPY,H1,51.48313693620437,-0.15487915631214833,-0.16478011726393665,0.009900960951788329,157.49499999999998,0.2315578817928749,0.3218571428571388,53.75793871292568,459728 -2025-01-13 16:00:00+00:00,13968,157.523,157.792,157.466,157.514,USD_JPY,H1,49.93747394747841,-0.13406941059486144,-0.1586379759301216,0.024568565335260167,157.4798,0.2188694876413649,0.3269999999999961,53.204332903467844,445760 -2025-01-13 17:00:00+00:00,9949,157.513,157.572,157.308,157.334,USD_JPY,H1,48.325937878176724,-0.1305965965930227,-0.15302970006270183,0.02243310346967914,157.45940000000002,0.21205247610056616,0.3292142857142823,47.357112667425746,435811 -2025-01-13 18:00:00+00:00,5780,157.332,157.528,157.296,157.482,USD_JPY,H1,48.75999999999976,-0.1145811828127421,-0.1453399966127099,0.03075881379996781,157.44715000000002,0.20264806799591906,0.33307142857142324,41.590684061874505,441591 -2025-01-13 19:00:00+00:00,7137,157.482,157.822,157.482,157.815,USD_JPY,H1,57.56676557863479,-0.07416362292437384,-0.1311047218750427,0.05694109895066887,157.44225,0.19167897364123962,0.3384999999999942,35.85903275156143,448728 -2025-01-13 20:00:00+00:00,6342,157.815,157.816,157.612,157.655,USD_JPY,H1,52.251922372757065,-0.05441580679615754,-0.11576693885926569,0.061351132063108146,157.4353,0.1804445095906705,0.32799999999999485,34.68891003807404,442386 -2025-01-13 21:00:00+00:00,6813,157.654,157.7,157.468,157.477,USD_JPY,H1,50.21111893033076,-0.05252317812824003,-0.10311818671306056,0.05059500858482052,157.43675,0.18066831338801778,0.3264999999999958,32.475692587134795,435573 -2025-01-13 22:00:00+00:00,1942,157.491,157.499,157.205,157.348,USD_JPY,H1,45.44169611307451,-0.060732392953866565,-0.09464102796122176,0.03390863500735519,157.4283,0.18066954419411277,0.32721428571428085,30.898967871021664,433631 -2025-01-13 23:00:00+00:00,7878,157.338,157.458,157.12,157.309,USD_JPY,H1,54.12457912457908,-0.06958311804001482,-0.08962944597698039,0.020046327936965563,157.4229,0.18262844071283185,0.3099285714285673,27.04731237983389,425753 -2025-01-14 00:00:00+00:00,14541,157.31,157.582,157.146,157.54,USD_JPY,H1,52.38095238095197,-0.0572971263777049,-0.0831629820571253,0.025865855679420402,157.4227,0.18249098027989116,0.31085714285713906,23.05444870984554,440294 -2025-01-14 01:00:00+00:00,21613,157.54,158.036,157.172,157.44,USD_JPY,H1,52.74967003959529,-0.0549955987063413,-0.0775295053869685,0.0225339066806272,157.42435,0.18249074234440285,0.35449999999999754,20.93048826622203,418681 -2025-01-14 02:00:00+00:00,9726,157.44,157.736,157.439,157.694,USD_JPY,H1,64.69278717720415,-0.03230356877915597,-0.06848431806540599,0.03618074928625002,157.43245,0.19092089155168188,0.33721428571428397,20.49789598863246,428407 -2025-01-14 03:00:00+00:00,6921,157.694,157.756,157.524,157.559,USD_JPY,H1,58.103837471783685,-0.02492601178457221,-0.05977265680923924,0.03484664502466703,157.43715,0.19291101709104724,0.3327857142857137,19.393991221018897,421486 -2025-01-14 04:00:00+00:00,5388,157.558,157.588,157.466,157.488,USD_JPY,H1,53.09859154929598,-0.024525635087599085,-0.052723252464911205,0.02819761737731212,157.43125,0.18924472457180086,0.3182857142857135,18.995263276851485,416098 -2025-01-14 05:00:00+00:00,10721,157.487,157.723,157.354,157.583,USD_JPY,H1,51.504854368932364,-0.016354107645952354,-0.04544942350111943,0.02909531585516708,157.45475,0.1763903789277377,0.3249999999999988,21.413849523231313,426819 -2025-01-14 06:00:00+00:00,8065,157.582,157.701,157.46,157.484,USD_JPY,H1,49.30297397769513,-0.017662978081744996,-0.03989213441724455,0.02222915633549955,157.4574,0.17641291273110551,0.3189285714285696,23.76317723056127,418754 -2025-01-14 07:00:00+00:00,15432,157.484,157.556,157.298,157.527,USD_JPY,H1,54.789081885855836,-0.015056959442176776,-0.034925099422230994,0.01986813998005422,157.46800000000002,0.173755423964913,0.3184999999999982,25.50274777317282,434186 -2025-01-14 08:00:00+00:00,15279,157.526,157.733,157.39,157.696,USD_JPY,H1,55.255402750491264,0.0006378638160811079,-0.027812506774568573,0.02845037059064968,157.5011,0.14785195294220912,0.32642857142857096,27.772034319220854,449465 -2025-01-14 09:00:00+00:00,15280,157.698,158.03,157.682,157.941,USD_JPY,H1,53.234086242299995,0.03247126820568269,-0.01575575177851832,0.04822701998420101,157.53815000000003,0.1607123205882038,0.32700000000000023,30.292136642123047,464745 -2025-01-14 10:00:00+00:00,8503,157.942,157.984,157.83,157.832,USD_JPY,H1,54.66526093832356,0.04834677001286991,-0.002935247420240676,0.05128201743311059,157.56195,0.1674233445629599,0.32342857142857084,32.91282911803584,456242 -2025-01-14 11:00:00+00:00,6943,157.833,157.957,157.832,157.94,USD_JPY,H1,62.67104542966616,0.06884926550267778,0.011421655164343018,0.05742761033833477,157.5829,0.18708959291832156,0.3157857142857137,36.96219879759924,463185 -2025-01-14 12:00:00+00:00,11361,157.942,158.136,157.843,157.863,USD_JPY,H1,64.50704225352094,0.07798541706304718,0.024734407544083854,0.053251009518963326,157.60035,0.1963705613306137,0.31571428571428684,42.585655902133894,451824 -2025-01-14 13:00:00+00:00,28094,157.862,157.928,157.394,157.78,USD_JPY,H1,62.94667399670187,0.0776335652420812,0.03531423908368332,0.04231932615839788,157.62265,0.18974394793606877,0.3297142857142867,46.09215233585943,423730 -2025-01-14 14:00:00+00:00,22884,157.779,157.919,157.625,157.812,USD_JPY,H1,58.395061728395795,0.07902589141949079,0.04405656955084482,0.03496932186864597,157.63915,0.1912119999797854,0.31957142857142984,49.39524032090045,446614 -2025-01-14 15:00:00+00:00,21725,157.812,158.154,157.746,157.966,USD_JPY,H1,65.71087216248559,0.09150106558789162,0.05354546875825418,0.037955596829637436,157.64669999999998,0.20123908270998928,0.28700000000000003,50.94044504007552,468339 -2025-01-14 16:00:00+00:00,19026,157.966,158.082,157.833,157.953,USD_JPY,H1,59.03698534542972,0.09919527822026453,0.06267543065065626,0.03651984756960827,157.6616,0.21259756890590809,0.2835714285714285,47.9639409351035,449313 -2025-01-14 17:00:00+00:00,9385,157.954,158.198,157.904,158.134,USD_JPY,H1,69.43881000676114,0.1185318234083752,0.07384670920220004,0.04468511420617516,157.69445000000002,0.23240832372421047,0.28800000000000076,45.2358646686245,458698 -2025-01-14 18:00:00+00:00,5892,158.133,158.142,157.978,158.009,USD_JPY,H1,66.99282452707081,0.12235923831747186,0.08354921502525442,0.038810023292217444,157.7275,0.2274951705432977,0.29100000000000087,43.39974730516054,452806 -2025-01-14 19:00:00+00:00,4695,158.008,158.079,157.911,157.941,USD_JPY,H1,61.88579017264312,0.11853901651326737,0.09054717532285701,0.027991841190410358,157.7591,0.20948505785054045,0.27664285714285847,40.70457262511879,448111 -2025-01-14 20:00:00+00:00,4381,157.94,157.99,157.872,157.985,USD_JPY,H1,67.26395589248818,0.11770506476909759,0.09597875321210514,0.02172631155699245,157.78135,0.20861959207968908,0.2678571428571449,38.51155375951463,452492 -2025-01-14 21:00:00+00:00,5456,157.984,158.024,157.927,157.977,USD_JPY,H1,65.88983050847489,0.11507213887529133,0.0997974303447424,0.015274708530548936,157.8082,0.19658414560887252,0.2563571428571448,37.38466725316369,447036 -2025-01-14 22:00:00+00:00,941,158.035,158.064,157.944,157.958,USD_JPY,H1,60.34755134281186,0.1101822722761483,0.10187439873102358,0.008307873545124717,157.82139999999998,0.197374183747619,0.2404285714285724,35.09083039780119,446095 -2025-01-14 23:00:00+00:00,2674,157.96,158.072,157.912,158.049,USD_JPY,H1,54.85611510791376,0.11235480104005546,0.10397047919282996,0.008384321847225498,157.84589999999997,0.193461243200221,0.2269999999999998,33.0269120080691,448769 -2025-01-15 00:00:00+00:00,10529,158.054,158.085,157.898,157.974,USD_JPY,H1,56.58627087198478,0.10679362213952004,0.10453510778216799,0.002258514357352054,157.8702,0.175862565926547,0.22935714285714376,30.781884000845956,438240 -2025-01-15 01:00:00+00:00,9421,157.976,158.04,157.83,157.902,USD_JPY,H1,48.176583493281676,0.09547596206488151,0.1027232786387107,-0.007247316573829182,157.88615,0.16239402208845277,0.23542857142857088,27.879542972758006,428819 -2025-01-15 02:00:00+00:00,5937,157.901,157.976,157.879,157.95,USD_JPY,H1,54.294175715695275,0.08934986414814716,0.10004859574059799,-0.010698731592450827,157.90945,0.13229929183710817,0.22142857142857103,23.728218272757537,434756 -2025-01-15 03:00:00+00:00,5203,157.95,157.957,157.844,157.89,USD_JPY,H1,55.55555555555459,0.0787456579267598,0.09578800817783036,-0.01704235025107055,157.9276,0.09735469598911414,0.191357142857143,21.09714430414297,429553 -2025-01-15 04:00:00+00:00,8799,157.888,157.938,157.588,157.608,USD_JPY,H1,41.77419354838684,0.04704440623848427,0.08603928778996114,-0.03899488155147687,157.9232,0.1095923546583071,0.1953571428571418,19.11230977233296,420754 -2025-01-15 05:00:00+00:00,14964,157.608,157.608,157.196,157.324,USD_JPY,H1,26.56934306569366,-0.0009841460100403765,0.06863460102996084,-0.06961874704000122,157.89235,0.17288398144896733,0.19564285714285745,22.328598045875946,405790 -2025-01-15 06:00:00+00:00,9782,157.324,157.446,157.286,157.346,USD_JPY,H1,27.99129804205934,-0.036847152518021176,0.04753825032036444,-0.08438540283838561,157.86804999999998,0.21162714851598552,0.1892857142857147,26.30102245463206,415572 -2025-01-15 07:00:00+00:00,14444,157.348,157.349,156.842,156.886,USD_JPY,H1,12.364294330519343,-0.10122019576482444,0.017786561103326666,-0.1190067568681511,157.81535,0.3038900900508167,0.20449999999999793,31.84177686798322,401128 -2025-01-15 08:00:00+00:00,15722,156.884,157.223,156.721,157.111,USD_JPY,H1,24.459613196814814,-0.13255269180416462,-0.012281289478171593,-0.12027140232599304,157.77775,0.3418369686661609,0.22864285714285668,36.726656260964845,416850 -2025-01-15 09:00:00+00:00,14332,157.112,157.126,156.711,156.867,USD_JPY,H1,22.23371251292663,-0.17505475916485125,-0.04483598341550753,-0.1302187757493437,157.7321,0.39788783131021926,0.2462857142857128,42.488475875354865,402518 -2025-01-15 10:00:00+00:00,9049,156.868,156.93,156.75,156.791,USD_JPY,H1,19.633774160732145,-0.21242185172192762,-0.07835315707679155,-0.13406869464513607,157.68105,0.44927678432822526,0.25071428571428506,48.30469259272023,393469 -2025-01-15 11:00:00+00:00,8378,156.79,157.064,156.717,157.014,USD_JPY,H1,27.922971114168064,-0.22148812820711328,-0.1069801513028559,-0.11450797690425737,157.63344999999998,0.4675573114203313,0.2685714285714259,52.09844544074959,401847 -2025-01-15 12:00:00+00:00,8700,157.014,157.056,156.857,156.981,USD_JPY,H1,27.744874715262085,-0.2286997336789227,-0.13132406777806926,-0.09737566590085345,157.58485000000002,0.4828602581868553,0.2742142857142836,56.950387361928314,393147 -2025-01-15 13:00:00+00:00,32064,156.982,157.094,156.252,156.4,USD_JPY,H1,19.292364990689023,-0.27809116550238855,-0.16067748732293313,-0.11741367817945542,157.49815,0.5322194121041259,0.32292857142856846,61.97793095254673,361083 -2025-01-15 14:00:00+00:00,29284,156.398,156.464,155.936,156.286,USD_JPY,H1,19.01615271659334,-0.32271304325004735,-0.19308459850835596,-0.12962844474169138,157.41199999999998,0.5822730413866882,0.34728571428570987,67.41626116503097,331799 -2025-01-15 15:00:00+00:00,24049,156.285,156.53,156.078,156.294,USD_JPY,H1,19.77443609022599,-0.35335738572186415,-0.2251391559510576,-0.12821822977080655,157.32965000000002,0.618837983634521,0.3645714285714255,72.03826473226208,355848 -2025-01-15 16:00:00+00:00,19651,156.294,156.74,156.288,156.601,USD_JPY,H1,26.892771497088077,-0.3488495926645214,-0.2498812432937504,-0.09896834937077104,157.26045000000002,0.619079237755879,0.38992857142856757,74.22730500403246,375499 -2025-01-15 17:00:00+00:00,10033,156.601,156.612,156.48,156.55,USD_JPY,H1,26.975945017182312,-0.34541072810205264,-0.2689871402554109,-0.07642358784664177,157.1891,0.6143632475895673,0.39128571428571085,78.47446388318417,365466 -2025-01-15 18:00:00+00:00,6969,156.548,156.576,156.405,156.5,USD_JPY,H1,29.312920089619027,-0.3427687603895322,-0.2837434642822351,-0.059025296107297065,157.1162,0.6047515888356996,0.3784999999999964,82.20765421401465,358497 -2025-01-15 19:00:00+00:00,6274,156.501,156.568,156.434,156.464,USD_JPY,H1,32.30452674897096,-0.33966444083824854,-0.2949276595934378,-0.04473678124481073,157.03695,0.5794009133663875,0.35864285714285415,80.94976685118023,352223 -2025-01-15 20:00:00+00:00,5078,156.464,156.511,156.406,156.444,USD_JPY,H1,31.425041186161337,-0.3349569034024853,-0.30293350835524735,-0.032023395047237946,156.96044999999998,0.5493960775148726,0.35471428571428226,81.0004366579342,347145 -2025-01-15 21:00:00+00:00,4652,156.442,156.557,156.442,156.466,USD_JPY,H1,39.44723618090504,-0.32569650337842404,-0.3074861073598827,-0.018210396018541353,156.88865,0.512462812503727,0.3267142857142825,78.08892947757386,351797 -2025-01-15 22:00:00+00:00,2203,156.419,156.454,156.344,156.378,USD_JPY,H1,30.22126281705401,-0.3217495061700788,-0.3103387871219219,-0.011410719048156881,156.81005,0.458859280675856,0.2987142857142828,75.6700732319151,349594 -2025-01-15 23:00:00+00:00,3535,156.382,156.41,156.218,156.222,USD_JPY,H1,31.728045325780002,-0.327434912845348,-0.31375801226660716,-0.013676900578740825,156.72665,0.4000581898321937,0.2827857142857125,73.5250661834903,346059 -2025-01-16 00:00:00+00:00,13261,156.221,156.532,156.166,156.186,USD_JPY,H1,32.46376811594284,-0.3310296341682033,-0.31721233664692644,-0.013817297521276861,156.65555,0.35948098183967586,0.29607142857142726,70.67268707087534,332798 -2025-01-16 01:00:00+00:00,18558,156.184,156.184,155.48,155.555,USD_JPY,H1,15.799343647445454,-0.38040977612578786,-0.32985182454269873,-0.05055795158308912,156.5671,0.4015248435509266,0.32157142857142923,70.57132578942603,314240 -2025-01-16 02:00:00+00:00,20478,155.554,155.78,155.206,155.732,USD_JPY,H1,22.573561703996774,-0.40064310927058955,-0.3440100814882769,-0.05663302778231266,156.4864,0.39892479173680323,0.34835714285714353,70.18615452190177,334718 -2025-01-16 03:00:00+00:00,10739,155.73,155.862,155.704,155.778,USD_JPY,H1,32.14695752009163,-0.40826018670009034,-0.3568601025306396,-0.051400084169450744,156.43099999999998,0.41703502312739305,0.2995000000000009,68.34152762366007,345457 -2025-01-16 04:00:00+00:00,7875,155.778,155.973,155.607,155.955,USD_JPY,H1,40.83102493074841,-0.3954557865471031,-0.3645792393339323,-0.03087654721317079,156.37320000000003,0.39747924141639357,0.28792857142857387,65.15869686343395,353332 -2025-01-16 05:00:00+00:00,8835,155.954,156.12,155.95,156.114,USD_JPY,H1,45.39877300613483,-0.36823346977143956,-0.3653100854214338,-0.0029233843500057755,156.33555,0.3836665870108058,0.267785714285718,61.96090873328764,362167 -2025-01-16 06:00:00+00:00,9584,156.113,156.314,156.032,156.1,USD_JPY,H1,34.93686109440792,-0.3438258601064774,-0.36101324035844257,0.017187380251965145,156.301,0.37141096544349456,0.2556428571428597,59.93943983472961,352583 -2025-01-16 07:00:00+00:00,11270,156.1,156.246,156.026,156.188,USD_JPY,H1,39.35294117647019,-0.31376490256153033,-0.35156357279906014,0.03779867023752981,156.2597,0.3317626132755868,0.26192857142857356,56.6599065543586,363853 -2025-01-16 08:00:00+00:00,13687,156.187,156.236,155.86,155.898,USD_JPY,H1,34.484536082474335,-0.309771105025618,-0.3432050792443717,0.033433974218753715,156.20555,0.2940793797045812,0.2765714285714296,53.74570725049472,350166 -2025-01-16 09:00:00+00:00,10448,155.898,155.935,155.612,155.684,USD_JPY,H1,31.586402266289127,-0.32018313140028454,-0.3386006896755543,0.018417558275269752,156.16975,0.3121859895859109,0.2900714285714291,51.67380006037798,339718 -2025-01-16 10:00:00+00:00,8321,155.683,155.77,155.632,155.668,USD_JPY,H1,31.646168401135753,-0.3259682445838905,-0.33607420065722154,0.010105956073331035,156.13885,0.3301422779237311,0.29242857142857304,49.36789990797392,331397 -2025-01-16 11:00:00+00:00,7724,155.664,155.88,155.646,155.783,USD_JPY,H1,34.52650657000382,-0.3176122136640913,-0.3323818032585955,0.014769589594504196,156.1133,0.33720103325843315,0.30092857142857504,47.832613452966605,339121 -2025-01-16 12:00:00+00:00,10821,155.784,156.203,155.782,156.11,USD_JPY,H1,44.521668029436306,-0.28136048330054564,-0.32217753926698556,0.04081705596643992,156.08874999999998,0.3170996647063206,0.32314285714285923,44.96334824697076,349942 -2025-01-16 13:00:00+00:00,24465,156.108,156.368,155.846,155.91,USD_JPY,H1,43.73493975903593,-0.2657061591319234,-0.3108832632399732,0.04517710410804976,156.05675000000002,0.299930847273703,0.3467142857142867,41.04054317649942,325477 -2025-01-16 14:00:00+00:00,20311,155.912,156.178,155.898,156.125,USD_JPY,H1,48.85724990633183,-0.23326238767069185,-0.2953590881261169,0.062096700455425036,156.038,0.28194512341943145,0.34057142857142864,38.098996506565705,345788 -2025-01-16 15:00:00+00:00,30411,156.125,156.198,155.391,155.428,USD_JPY,H1,47.67824497257753,-0.2607863571791995,-0.2884445419367334,0.0276581847575339,155.9862,0.29445106820547823,0.3479285714285721,32.88402072687447,315377 -2025-01-16 16:00:00+00:00,23746,155.428,155.558,155.102,155.442,USD_JPY,H1,44.3623639191293,-0.278261987339107,-0.28640803101720813,0.008146043678101123,155.9361,0.29768402532845306,0.33949999999999897,27.527631270412844,339123 -2025-01-16 17:00:00+00:00,14618,155.442,155.515,155.172,155.27,USD_JPY,H1,40.58561897702049,-0.30250344131238194,-0.2896271130762429,-0.012876328236139045,155.8763,0.3056549654154154,0.35271428571428487,23.635210560763806,324505 -2025-01-16 18:00:00+00:00,7977,155.27,155.387,155.152,155.354,USD_JPY,H1,38.464491362764015,-0.3113478460912802,-0.29397125967925036,-0.017376586412029826,155.8251,0.3029451748018345,0.343357142857142,21.424494646067046,332482 -2025-01-16 19:00:00+00:00,8071,155.353,155.38,155.172,155.294,USD_JPY,H1,33.63926576217111,-0.31951542423897195,-0.2990800925911947,-0.020435331647777222,155.77870000000001,0.30994211681829376,0.3460714285714265,20.31163052780844,324411 -2025-01-16 20:00:00+00:00,5417,155.295,155.316,155.171,155.208,USD_JPY,H1,32.69976726144327,-0.3291337213719032,-0.3050908183473364,-0.024042903024566797,155.7298,0.31930839735261773,0.3362857142857142,20.105116584967096,318994 -2025-01-16 21:00:00+00:00,3289,155.206,155.24,155.102,155.122,USD_JPY,H1,29.309006211180815,-0.33977901147463285,-0.31202845697279574,-0.02775055450183711,155.70815,0.34539760077321136,0.3304285714285718,20.68671227224998,315705 -2025-01-16 22:00:00+00:00,1429,155.164,155.245,155.123,155.18,USD_JPY,H1,34.6843003412973,-0.33962043236454065,-0.31754685205114475,-0.022073580313395902,155.68054999999998,0.3648957276998007,0.3123571428571442,20.566142490211494,317134 -2025-01-16 23:00:00+00:00,3181,155.18,155.406,155.175,155.368,USD_JPY,H1,43.18377911993095,-0.32062872015731614,-0.3181632256723791,-0.0024654944849370475,155.66005,0.3706051203794361,0.3057857142857147,18.187481366143345,320315 -2025-01-17 00:00:00+00:00,14568,155.368,155.487,154.978,155.188,USD_JPY,H1,40.33037872683295,-0.31645425936639526,-0.3178214324111823,0.0013671730447870623,155.62169999999998,0.3780863309781225,0.33228571428571335,16.729160790885835,305747 -2025-01-17 01:00:00+00:00,11261,155.188,155.376,155.145,155.217,USD_JPY,H1,38.188647746244634,-0.3072639637682073,-0.31570993868258734,0.008445974914380039,155.57684999999998,0.3697245453874532,0.33207142857142663,16.76439840746031,317008 -2025-01-17 02:00:00+00:00,9137,155.217,155.468,155.163,155.437,USD_JPY,H1,35.29925731760619,-0.27901214854148293,-0.30837038065436645,0.02935823211288352,155.5437,0.34952013719391833,0.32378571428571135,19.911299516923293,326145 -2025-01-17 03:00:00+00:00,6725,155.436,155.464,155.35,155.448,USD_JPY,H1,39.000000000000384,-0.2528204169701951,-0.2972603879175322,0.04443997094733709,155.50670000000002,0.315209053418012,0.2946428571428551,25.582504467467324,332870 -2025-01-17 04:00:00+00:00,5344,155.446,155.498,155.364,155.39,USD_JPY,H1,31.085949562532207,-0.23404546583066121,-0.28461740350015796,0.05057193766949675,155.4813,0.302217958971823,0.2842142857142826,30.710729446661073,327526 -2025-01-17 05:00:00+00:00,8065,155.389,155.693,155.366,155.565,USD_JPY,H1,54.82054890921871,-0.20270844752099038,-0.26823561230432447,0.06552716478333409,155.47535,0.2991732951226877,0.24992857142856703,32.721614682246404,335591 -2025-01-17 06:00:00+00:00,7826,155.56,155.742,155.521,155.645,USD_JPY,H1,56.82582380632132,-0.16946481838922978,-0.24848145352130552,0.07901663513207574,155.47420000000002,0.29843708671191144,0.2331428571428538,33.59580873035478,343417 -2025-01-17 07:00:00+00:00,11374,155.641,155.776,155.529,155.616,USD_JPY,H1,62.87202380952346,-0.14380140732146174,-0.22754544428133677,0.08374403695987503,155.46585,0.291600352842248,0.2262857142857127,34.70549667805815,332043 -2025-01-17 08:00:00+00:00,10984,155.616,155.726,155.41,155.704,USD_JPY,H1,62.98219584569672,-0.11503604073195106,-0.20504356357145964,0.09000752283950858,155.44555,0.25640520457980875,0.2320714285714262,34.30723553662445,343027 -2025-01-17 09:00:00+00:00,12684,155.706,155.848,155.409,155.735,USD_JPY,H1,66.71721000758103,-0.08871518610220619,-0.18177788807760897,0.09306270197540278,155.4368,0.2423204924080415,0.24857142857142783,34.14246724660483,355711 -2025-01-17 10:00:00+00:00,9059,155.734,155.784,155.61,155.776,USD_JPY,H1,72.29199372056512,-0.06381177935691085,-0.15818466633346934,0.09437288697655849,155.41935,0.19881392381830523,0.2506428571428541,32.58783988038595,364770 -2025-01-17 11:00:00+00:00,8455,155.778,155.808,155.636,155.696,USD_JPY,H1,72.63406940062926,-0.04995512986295125,-0.13653875903936571,0.08658362917641446,155.43275,0.20823591754705711,0.25307142857142495,31.70357343339953,356315 -2025-01-17 12:00:00+00:00,9531,155.696,155.755,155.589,155.721,USD_JPY,H1,71.9028340080958,-0.036535189320829886,-0.11653804509565856,0.08000285577482867,155.44670000000002,0.21800436979887408,0.256142857142854,30.801120126290012,365846 -2025-01-17 13:00:00+00:00,12312,155.718,155.722,155.554,155.687,USD_JPY,H1,64.75485661424582,-0.02831688616876704,-0.09889381331028026,0.07057692714151322,155.46755000000002,0.22014575910384648,0.25164285714285484,30.58444517616075,353534 -2025-01-17 14:00:00+00:00,22762,155.686,156.197,155.654,156.046,USD_JPY,H1,84.04761904761793,0.0070828315277822185,-0.07769848434266777,0.08478131587044999,155.50215,0.25325112872163796,0.2540714285714277,33.687187705837296,376296 -2025-01-17 15:00:00+00:00,21293,156.048,156.146,155.776,156.108,USD_JPY,H1,84.45475638050917,0.039682806001991366,-0.05422222627373594,0.0939050322757273,155.54285,0.28183464261467134,0.26399999999999785,35.714601961982076,397589 -2025-01-17 16:00:00+00:00,15179,156.106,156.376,156.102,156.308,USD_JPY,H1,84.21052631578806,0.08072628678945648,-0.027232523661097463,0.10795881045055394,155.59785,0.31805449299544913,0.26178571428571373,36.30294139861474,412768 -2025-01-17 17:00:00+00:00,8297,156.308,156.345,156.225,156.259,USD_JPY,H1,80.93058733790835,0.10805407046294135,-0.00017520483628969893,0.10822927529923106,155.6547,0.3299172304315981,0.2622142857142852,35.12744972691838,404471 -2025-01-17 18:00:00+00:00,5446,156.26,156.29,156.124,156.188,USD_JPY,H1,80.13595166163121,0.12256952410496069,0.02437374095196038,0.09819578315300032,155.70510000000002,0.33057587709119673,0.26450000000000023,33.26943861881871,399025 -2025-01-17 19:00:00+00:00,5341,156.189,156.232,156.13,156.148,USD_JPY,H1,74.51640033641723,0.12935434363529907,0.04536986148862812,0.08398448214667095,155.7441,0.33469796280242825,0.24842857142857205,34.491036899071396,393684 -2025-01-17 20:00:00+00:00,4683,156.148,156.198,156.104,156.151,USD_JPY,H1,72.75179856115119,0.13343527809769284,0.06298294481044107,0.07045233328725177,155.79225000000002,0.3194060070767902,0.2393571428571428,36.38650742209172,398367 -2025-01-17 21:00:00+00:00,3517,156.152,156.324,156.126,156.298,USD_JPY,H1,77.7235772357721,0.14683845719957844,0.07975404728826854,0.0670844099113099,155.84629999999999,0.30820586078124745,0.23585714285714232,37.975146346872585,401884 -2025-01-19 22:00:00+00:00,1114,156.265,156.357,156.265,156.314,USD_JPY,H1,76.33851468048326,0.15694250399224074,0.095191738629063,0.06175076536317775,155.89015,0.30929346903602595,0.21985714285714306,41.86909906527102,402998 -2025-01-19 23:00:00+00:00,5453,156.307,156.587,156.272,156.309,USD_JPY,H1,75.35335689045917,0.16267140100652,0.1086876711045544,0.053983729901965594,155.9332,0.3043940659026847,0.21099999999999852,45.1271673485928,397545 -2025-01-20 00:00:00+00:00,10178,156.315,156.362,155.986,155.986,USD_JPY,H1,57.42574257425678,0.13953966617717128,0.11485807011907778,0.024681596058093502,155.963,0.276293131882053,0.22542857142857184,46.67109269922882,387367 -2025-01-20 01:00:00+00:00,10960,155.987,156.112,155.866,155.928,USD_JPY,H1,58.3333333333335,0.11519953585585085,0.11492636326643241,0.0002731725894184467,155.98115,0.2602278909946294,0.23071428571428498,46.596281182202056,376407 -2025-01-20 02:00:00+00:00,8138,155.928,156.055,155.888,155.938,USD_JPY,H1,57.87944807552621,0.09561453875676307,0.11106399836449854,-0.015449459607735472,155.99579999999997,0.24828095288866925,0.2307857142857139,47.41983043718602,384545 -2025-01-20 03:00:00+00:00,6341,155.94,155.967,155.71,155.744,USD_JPY,H1,51.85426154847072,0.06370475996106961,0.10159215068381276,-0.03788739072274315,156.0022,0.23946884203200464,0.23714285714285666,48.55547159308126,378204 -2025-01-20 04:00:00+00:00,6247,155.744,156.031,155.73,155.974,USD_JPY,H1,47.44318181818165,0.05632581919570612,0.09253888438619144,-0.036213065190485325,156.0157,0.2291618825403023,0.21985714285714306,44.611307900771884,384451 -2025-01-20 05:00:00+00:00,5977,155.974,156.066,155.896,156.064,USD_JPY,H1,48.467966573815715,0.0570821953003815,0.08544754656902946,-0.028365351268647962,156.03215,0.21955895381171076,0.20557142857143162,40.0831888969542,390428 -2025-01-20 06:00:00+00:00,7804,156.062,156.2,156.013,156.198,USD_JPY,H1,45.98540145985448,0.06771374700289812,0.08190078665580319,-0.014187039652905076,156.05325,0.21385013810451337,0.19935714285714465,35.76251080445415,398232 -2025-01-20 07:00:00+00:00,8675,156.2,156.287,155.962,155.992,USD_JPY,H1,41.257367387033455,0.058838595237006075,0.07728834837204378,-0.018449753135037703,156.06805,0.19743739177923292,0.2140000000000027,31.110563818763328,389557 -2025-01-20 08:00:00+00:00,9981,155.992,156.184,155.95,156.156,USD_JPY,H1,49.012345679012896,0.06429722453455611,0.07469012360454624,-0.010392899069990136,156.0898,0.180420444602286,0.21885714285714641,27.955540797105098,399538 -2025-01-20 09:00:00+00:00,8932,156.157,156.363,156.132,156.283,USD_JPY,H1,53.95430579964826,0.0779722506276812,0.07534654900917324,0.0026257016185079612,156.1196,0.1582464433423205,0.22807142857143145,26.09606828532938,408470 -2025-01-20 10:00:00+00:00,6923,156.284,156.408,156.233,156.376,USD_JPY,H1,56.26043405676113,0.09521653317210621,0.07932054584175985,0.01589598733034636,156.1361,0.16712362266164196,0.23385714285714496,24.990326747410222,415393 -2025-01-20 11:00:00+00:00,6021,156.374,156.462,156.318,156.342,USD_JPY,H1,51.30641330166305,0.10492967153970767,0.08444237098134941,0.020487300558358262,156.14780000000002,0.17313566323300664,0.22999999999999993,23.265633400860597,409372 -2025-01-20 12:00:00+00:00,7388,156.342,156.46,156.282,156.376,USD_JPY,H1,51.82138660399565,0.11405615121188362,0.09036512702745625,0.023691024184427367,156.1512,0.17707019122363976,0.23614285714285593,19.923530083132253,416760 -2025-01-20 13:00:00+00:00,34018,156.378,156.473,155.721,155.724,USD_JPY,H1,37.547892720306436,0.06789534581301382,0.08587117078456777,-0.01797582497155395,156.12445,0.19898306589935455,0.2673571428571425,17.56241386511879,382742 -2025-01-20 14:00:00+00:00,31265,155.723,155.92,155.413,155.55,USD_JPY,H1,40.09090909090953,0.017075394622310114,0.07211201555211624,-0.05503662092980613,156.09255,0.2359630825026913,0.27671428571428336,17.373328966255453,351477 -2025-01-20 15:00:00+00:00,22684,155.551,155.935,155.528,155.693,USD_JPY,H1,44.857768052516725,-0.01152799043734376,0.05538401435422424,-0.066912004791568,156.06980000000001,0.25174205676896855,0.2882142857142855,17.546351428910505,374161 -2025-01-20 16:00:00+00:00,11422,155.692,155.728,155.6,155.684,USD_JPY,H1,44.43957968476382,-0.03452462556452929,0.03740228637047354,-0.07192691193500284,156.04645,0.2651167518163121,0.2854285714285721,17.16411954036436,362739 -2025-01-20 17:00:00+00:00,19142,155.685,156.067,155.632,155.827,USD_JPY,H1,51.8584863412449,-0.04074108185432124,0.021773612725514584,-0.06251469457983583,156.0229,0.2625021102450382,0.2981428571428576,16.20300088988134,381881 -2025-01-20 18:00:00+00:00,6492,155.83,155.903,155.694,155.698,USD_JPY,H1,43.52720450281479,-0.055437837273899504,0.006331322725631767,-0.06176915999953127,155.9921,0.2626873065851937,0.2915714285714281,16.19567015007183,375389 -2025-01-20 19:00:00+00:00,7612,155.698,155.778,155.596,155.643,USD_JPY,H1,39.9618502622798,-0.07070808340299095,-0.009076558500092778,-0.06163152490289817,155.9588,0.26261390508927024,0.292428571428569,16.290155346468847,367777 -2025-01-20 20:00:00+00:00,7295,155.644,155.65,155.49,155.61,USD_JPY,H1,35.270541082164556,-0.08449863996105478,-0.024160974792285177,-0.0603376651687696,155.94,0.2737851635458156,0.2904999999999985,16.8964347287367,360482 -2025-01-20 21:00:00+00:00,18372,155.612,155.728,155.512,155.644,USD_JPY,H1,40.46052631578981,-0.09162800888876177,-0.037654381611580495,-0.053973627277181274,155.92579999999998,0.28169105882137857,0.2827142857142836,17.928942351093436,378854 -2025-01-20 22:00:00+00:00,1758,155.583,155.663,155.567,155.65,USD_JPY,H1,34.813925570227795,-0.09569087048294023,-0.04926167938585245,-0.04642919109708778,155.91140000000001,0.28831788010514653,0.27285714285714036,18.218774417994773,380612 -2025-01-20 23:00:00+00:00,9689,155.644,155.658,155.166,155.28,USD_JPY,H1,23.72970141435333,-0.12729919941875778,-0.06486918339243353,-0.06243001602632425,155.8882,0.3194810924129479,0.29149999999999715,19.883185043946394,370923 -2025-01-21 00:00:00+00:00,29099,155.28,156.244,154.9,156.024,USD_JPY,H1,43.12499999999986,-0.09126242921837502,-0.07014783255762183,-0.021114596660753188,155.89069999999998,0.32038218951236963,0.37499999999999795,18.924841165101345,400022 -2025-01-21 01:00:00+00:00,31694,156.023,156.194,155.468,155.547,USD_JPY,H1,36.76323676323643,-0.10003974681961836,-0.07612621541002114,-0.02391353140959722,155.86485,0.32646290591072996,0.4165714285714281,18.597811270574713,368328 -2025-01-21 02:00:00+00:00,20900,155.548,155.584,154.953,155.142,USD_JPY,H1,31.713100177830313,-0.13808420081690542,-0.088517812491398,-0.049566388325507416,155.81205,0.3539810394697429,0.4489285714285712,19.661944063505466,347428 -2025-01-21 03:00:00+00:00,16368,155.141,155.247,154.775,155.191,USD_JPY,H1,40.382533381450926,-0.1624086681844119,-0.10329598363000078,-0.05911268455441113,155.772,0.3771074117387183,0.4289285714285711,18.693002231267904,363796 -2025-01-21 04:00:00+00:00,10152,155.192,155.194,154.954,155.066,USD_JPY,H1,41.10947832476107,-0.18958699825086,-0.12055418655417263,-0.06903281169668737,155.7175,0.3969333100406589,0.4098571428571428,17.004667685712402,353644 -2025-01-21 05:00:00+00:00,10396,155.065,155.331,155.006,155.312,USD_JPY,H1,43.25663716814163,-0.18909609447672437,-0.13426256813868298,-0.054833526338041394,155.66895000000002,0.3832728140479558,0.4039999999999984,15.295493967703234,364040 -2025-01-21 06:00:00+00:00,10830,155.318,155.553,155.318,155.52,USD_JPY,H1,47.288359788360005,-0.16996394941747894,-0.14140284439444217,-0.02856110502303677,155.62615,0.34615881279036637,0.4120714285714249,13.733750868924602,374870 -2025-01-21 07:00:00+00:00,13203,155.52,155.751,155.498,155.678,USD_JPY,H1,47.548535702533705,-0.14043347736912892,-0.14120897098937954,0.0007754936202506169,155.59295,0.303045502035592,0.39907142857142575,13.504176118018416,388073 -2025-01-21 08:00:00+00:00,13254,155.678,155.776,155.614,155.746,USD_JPY,H1,50.80591000671594,-0.11027218471167544,-0.13502161373383872,0.02474942902216329,155.56145,0.24444426226979926,0.39571428571428313,13.354708429374663,401327 -2025-01-21 09:00:00+00:00,14758,155.748,155.958,155.706,155.9,USD_JPY,H1,54.17614559636017,-0.07309997895771403,-0.1226372867786138,0.04953730782089977,155.57025,0.2536005717426677,0.40071428571428463,13.759900275105633,416085 -2025-01-21 10:00:00+00:00,11180,155.9,156.003,155.809,155.983,USD_JPY,H1,55.964182922929155,-0.03652232511672082,-0.10541429444623521,0.06889196932951439,155.5919,0.26974937683709976,0.4031428571428555,13.61924882561683,427265 -2025-01-21 11:00:00+00:00,10582,155.984,156.056,155.872,155.912,USD_JPY,H1,54.235145385587856,-0.013112227946550092,-0.08695388114629819,0.0738416531997481,155.60285000000002,0.27837635919136205,0.40085714285714047,13.37015223024898,416683 -2025-01-21 12:00:00+00:00,11664,155.911,155.955,155.716,155.821,USD_JPY,H1,52.63157894736828,-0.0018808158850447398,-0.0699392680940475,0.06805845220900276,155.60970000000003,0.282138469156003,0.4110714285714262,12.711398711465046,405019 -2025-01-21 13:00:00+00:00,14147,155.82,155.84,155.46,155.492,USD_JPY,H1,53.30423940149606,-0.01930485696638584,-0.05981238586851517,0.04050752890212933,155.59295,0.27847923004626723,0.4030714285714266,10.364208061061168,390872 -2025-01-21 14:00:00+00:00,21164,155.492,155.678,155.332,155.584,USD_JPY,H1,41.392801251956364,-0.02539714149489214,-0.05292933699379057,0.027532195498898432,155.58725,0.27738039146118476,0.33178571428571296,11.320624617382748,412036 -2025-01-21 15:00:00+00:00,23011,155.584,155.736,155.253,155.333,USD_JPY,H1,45.40772532188853,-0.04990366479790964,-0.05232420255461439,0.002420537756704748,155.57175,0.2827112856623168,0.3144285714285705,11.9130279880326,389025 -2025-01-21 16:00:00+00:00,14927,155.334,155.578,155.306,155.496,USD_JPY,H1,58.47701149425299,-0.05553238060741705,-0.052965838165174924,-0.00256654244224213,155.56605,0.28304853124656637,0.2887857142857127,10.065002563226903,403952 -2025-01-21 17:00:00+00:00,8694,155.497,155.583,155.42,155.576,USD_JPY,H1,59.084473808399856,-0.052927729112212774,-0.0529582163545825,3.0487242369724166e-05,155.56265,0.2824707297156657,0.2667142857142843,10.003932469343113,412646 -2025-01-21 18:00:00+00:00,7660,155.575,155.597,155.426,155.51,USD_JPY,H1,60.77669902912577,-0.055548840002160205,-0.053476341084098045,-0.00207249891806216,155.55565,0.2819263201409264,0.26178571428571573,10.874232281606934,404986 -2025-01-21 19:00:00+00:00,6346,155.51,155.592,155.475,155.556,USD_JPY,H1,56.55913978494608,-0.053299866027032294,-0.0534410460726849,0.0001411800456526044,155.56945000000002,0.27437728057087957,0.24692857142857502,11.581491264728113,411332 -2025-01-21 20:00:00+00:00,4730,155.556,155.596,155.52,155.522,USD_JPY,H1,50.0593119810196,-0.053642694211418984,-0.053481375700431724,-0.00016131851098726002,155.54435,0.2527127087150441,0.23514285714286132,11.648856485810038,406602 -2025-01-21 21:00:00+00:00,3031,155.52,155.562,155.472,155.519,USD_JPY,H1,44.80731548007886,-0.05353929527657897,-0.053492959615661174,-4.633566091779423e-05,155.54295,0.25277480614131315,0.2235000000000034,13.671445173056862,403571 -2025-01-21 22:00:00+00:00,2574,155.492,155.532,155.445,155.484,USD_JPY,H1,41.25500667556768,-0.05564017308802249,-0.05392240231013344,-0.0017177707778890522,155.56005,0.23517887366807338,0.21814285714286136,15.981238507035645,400997 -2025-01-21 23:00:00+00:00,9243,155.484,155.839,155.484,155.742,USD_JPY,H1,45.06866416978738,-0.03607088734955255,-0.05035209931801726,0.014281211968464713,155.5876,0.22154966174605717,0.22550000000000278,16.924186536449902,410240 -2025-01-22 00:00:00+00:00,15451,155.743,155.766,155.353,155.43,USD_JPY,H1,34.89896231567471,-0.045216650519080304,-0.049325009558229875,0.004108359039149571,155.6058,0.1890067110721864,0.24114285714285952,18.389952852722452,394789 -2025-01-22 01:00:00+00:00,11719,155.431,155.722,155.406,155.688,USD_JPY,H1,44.44995044598568,-0.03128564843802906,-0.045717137334189716,0.014431488896160659,155.6246,0.17653340220334934,0.2505714285714313,20.803746387880615,406508 -2025-01-22 02:00:00+00:00,8542,155.689,155.768,155.632,155.742,USD_JPY,H1,48.00605754669339,-0.015706821754179146,-0.0397150742181876,0.024008252464008457,155.63569999999999,0.1765896521639586,0.24321428571428783,22.73131677118516,415050 -2025-01-22 03:00:00+00:00,6425,155.742,155.96,155.68,155.922,USD_JPY,H1,61.73580786026224,0.011036781166268383,-0.029564703141296406,0.040601484307564786,155.6479,0.1877422364750531,0.2360714285714311,23.323660973614913,421475 -2025-01-22 04:00:00+00:00,6050,155.922,155.928,155.718,155.794,USD_JPY,H1,55.62098501070695,0.02165314492256698,-0.01932113352852373,0.04097427845109071,155.6503,0.18936211478157491,0.22635714285714567,24.15728555738602,415425 -2025-01-22 05:00:00+00:00,5999,155.793,155.956,155.788,155.832,USD_JPY,H1,65.0755287009067,0.03275538837925751,-0.008905829146967482,0.041661217526224995,155.6469,0.18520767856317263,0.20385714285714382,26.334170421724867,421424 -2025-01-22 06:00:00+00:00,10176,155.833,155.978,155.684,155.888,USD_JPY,H1,62.661498708010654,0.045547682957817415,0.0019848732739894976,0.04356280968382792,155.64215,0.17717825543434487,0.2054285714285738,27.81010165940714,431600 -2025-01-22 07:00:00+00:00,11598,155.887,156.075,155.802,156.048,USD_JPY,H1,64.49631449631514,0.06781460682464058,0.015150819984119714,0.052663786840520865,155.64894999999999,0.1902105412121891,0.2132857142857156,28.839902228821337,443198 -2025-01-22 08:00:00+00:00,16647,156.048,156.118,155.548,155.722,USD_JPY,H1,55.614406779661635,0.05848168840893209,0.02381699366908219,0.0346646947398499,155.644,0.18675427139149783,0.24178571428571363,27.463995419743533,426551 -2025-01-22 09:00:00+00:00,10139,155.721,155.826,155.652,155.672,USD_JPY,H1,53.06553911205046,0.04651451086490965,0.028356497108247683,0.01815801375666197,155.653,0.18334982378767722,0.24585714285714136,27.448764939744763,416412 -2025-01-22 10:00:00+00:00,8121,155.674,155.787,155.632,155.766,USD_JPY,H1,56.25000000000027,0.044107012665278944,0.03150660021965394,0.012600412445625007,155.66209999999998,0.18425922811662213,0.25149999999999906,27.911242849247447,424533 -2025-01-22 11:00:00+00:00,6418,155.767,155.898,155.716,155.873,USD_JPY,H1,58.60894941634235,0.05025376464374176,0.03525603310447151,0.014997731539270254,155.6891,0.17269836798313265,0.2580714285714265,27.407956462759746,430951 -2025-01-22 12:00:00+00:00,7973,155.874,156.054,155.804,155.814,USD_JPY,H1,57.9326923076922,0.049790350784746806,0.03816289664052657,0.011627454144220235,155.70499999999998,0.16857389442909168,0.2697142857142824,27.3715804508827,422978 -2025-01-22 13:00:00+00:00,11913,155.815,155.97,155.744,155.89,USD_JPY,H1,53.89884088514227,0.05492254390622975,0.041514826093667204,0.013407717812562545,155.72070000000002,0.1705378796904416,0.26049999999999734,26.531961250069504,434891 -2025-01-22 14:00:00+00:00,17296,155.892,156.191,155.812,156.156,USD_JPY,H1,69.60043196544301,0.07953696821618905,0.049119254518171576,0.030417713698017476,155.753,0.18873624031786795,0.2580714285714265,26.925153034957606,452187 -2025-01-22 15:00:00+00:00,17188,156.157,156.426,156.051,156.402,USD_JPY,H1,69.40217391304371,0.11753930101494348,0.06280326381752596,0.054736037197417514,155.7953,0.23208575998601877,0.26228571428571207,27.29976152676093,469375 -2025-01-22 16:00:00+00:00,12276,156.401,156.648,156.378,156.622,USD_JPY,H1,71.93419740777726,0.16352358681439227,0.08294732841689922,0.08057625839749305,155.8503,0.28760830452269026,0.27185714285714163,29.202770874720496,481651 -2025-01-22 17:00:00+00:00,7690,156.622,156.712,156.562,156.617,USD_JPY,H1,68.97870016384454,0.19728878410094808,0.10581561955370901,0.09147316454723907,155.9052,0.32358527711761276,0.2625714285714257,31.730853513938488,473961 -2025-01-22 18:00:00+00:00,6943,156.619,156.63,156.501,156.579,USD_JPY,H1,72.54451464675446,0.2184633542360075,0.12834516649016872,0.09011818774583877,155.95995,0.3407489390475725,0.2567857142857101,32.64987625683717,467018 -2025-01-22 19:00:00+00:00,4808,156.578,156.59,156.47,156.522,USD_JPY,H1,69.60227272727212,0.22801649774083899,0.14827943274030278,0.0797370650005362,155.99894999999998,0.3586572142823853,0.2533571428571406,31.949505271839346,462210 -2025-01-22 20:00:00+00:00,4780,156.522,156.565,156.446,156.55,USD_JPY,H1,69.11085450346377,0.23513629395984026,0.16565080498421028,0.06948548897562998,156.05495000000002,0.35253196568611056,0.2408571428571398,33.91329905381526,466990 -2025-01-22 21:00:00+00:00,3558,156.548,156.594,156.516,156.528,USD_JPY,H1,65.05646173149204,0.23627988024014712,0.17977662003539766,0.05650326020474947,156.09695,0.356528654623125,0.22692857142856887,35.17128316349006,463432 -2025-01-22 22:00:00+00:00,790,156.496,156.496,156.424,156.434,USD_JPY,H1,76.13803230543125,0.22698462869061586,0.18921822176644132,0.037766406924174545,156.13155,0.35383693462417654,0.19135714285714098,39.98406540873741,462642 -2025-01-22 23:00:00+00:00,3464,156.432,156.52,156.404,156.438,USD_JPY,H1,79.10334346504395,0.21743439310407098,0.19486145603396726,0.022572937070103716,156.15735,0.35655504851289804,0.18721428571428436,43.1476264853426,466106 -2025-01-23 00:00:00+00:00,10790,156.44,156.463,156.312,156.39,USD_JPY,H1,74.56692913385677,0.20364507014474498,0.19661817885612282,0.007026891288622161,156.18715,0.3494236269073712,0.1869285714285687,45.91566673305231,455316 -2025-01-23 01:00:00+00:00,9082,156.392,156.564,156.285,156.554,USD_JPY,H1,75.65938206480666,0.20360334907809374,0.19801521290051702,0.005588136177576725,156.22325,0.3480943421561441,0.19385714285714073,47.701234196899854,464398 -2025-01-23 02:00:00+00:00,7337,156.554,156.614,156.451,156.494,USD_JPY,H1,75.60240963855277,0.1964640707600438,0.1977049844724224,-0.0012409137123786107,156.25355,0.34372379898473865,0.1876428571428558,48.33343949695268,457061 -2025-01-23 03:00:00+00:00,5683,156.494,156.561,156.48,156.502,USD_JPY,H1,74.2857142857132,0.1892698889352289,0.1960179653649837,-0.006748076429754807,156.27625,0.3444252076615793,0.17728571428571424,51.67131116659498,462744 -2025-01-23 04:00:00+00:00,4720,156.502,156.616,156.478,156.589,USD_JPY,H1,70.0277520814044,0.18841667082250524,0.194497706456488,-0.006081035633982768,156.31959999999998,0.32500856667107225,0.16007142857142956,52.2902048844226,467464 -2025-01-23 05:00:00+00:00,7950,156.59,156.755,156.59,156.702,USD_JPY,H1,65.82278481012563,0.1946152415795268,0.1945212134810958,9.402809843100934e-05,156.3711,0.2974257801963325,0.1451428571428579,51.67398163093482,475414 -2025-01-23 06:00:00+00:00,8429,156.704,156.724,156.484,156.61,USD_JPY,H1,49.26829268292684,0.18991480280990913,0.1935999313468585,-0.003685128536949356,156.4133,0.26518019690519684,0.14299999999999866,48.30556062414291,466985 -2025-01-23 07:00:00+00:00,11179,156.614,156.692,156.526,156.61,USD_JPY,H1,49.57055214724071,0.18406785160510708,0.19169351539850824,-0.007625663793401155,156.45015,0.2357182249371825,0.14414285714285718,44.5911742221277,455806 -2025-01-23 08:00:00+00:00,11695,156.61,156.636,156.45,156.49,USD_JPY,H1,45.03901895206278,0.16781661802181702,0.18691813592317,-0.019101517901352977,156.48395,0.1820570977213128,0.14821428571428694,41.38387678351347,444111 -2025-01-23 09:00:00+00:00,12169,156.49,156.552,156.352,156.381,USD_JPY,H1,42.571127502635136,0.1444765732711062,0.17842982339275723,-0.03395325012165104,156.5085,0.12042009794304366,0.1539285714285715,39.018612804672344,431942 -2025-01-23 10:00:00+00:00,8880,156.381,156.408,156.204,156.406,USD_JPY,H1,42.38900634249464,0.12653805874253976,0.16805147046271374,-0.041513411720173976,156.52100000000002,0.09137660641074404,0.15999999999999862,36.913225456445446,440822 -2025-01-23 11:00:00+00:00,6762,156.406,156.557,156.367,156.548,USD_JPY,H1,50.938086303940445,0.12236927318602397,0.1589150310073758,-0.03654575782135183,156.5283,0.08710133233127959,0.16799999999999823,33.98993265943865,447584 -2025-01-23 12:00:00+00:00,8043,156.548,156.598,156.37,156.401,USD_JPY,H1,48.52546916890139,0.10598211329775609,0.14832844746545187,-0.04234633416769579,156.51725000000002,0.08859421086697253,0.1791428571428558,29.250712092354092,439541 -2025-01-23 13:00:00+00:00,16696,156.402,156.424,156.104,156.208,USD_JPY,H1,41.207951070336925,0.07653938559843709,0.13397063509204893,-0.057431249493611836,156.49679999999998,0.1091718104600782,0.1937142857142829,26.595383294167647,422845 -2025-01-23 14:00:00+00:00,14795,156.206,156.405,156.137,156.25,USD_JPY,H1,44.62365591397911,0.05594990508646447,0.11836648909093204,-0.062416584004467576,156.48035,0.12034873663503506,0.2020714285714271,24.194364718379223,437640 -2025-01-23 15:00:00+00:00,17062,156.25,156.477,156.151,156.17,USD_JPY,H1,34.23645320197008,0.03279917357326667,0.10125302598739898,-0.06845385241413231,156.46275,0.13833212318322072,0.20542857142856974,22.03304339098096,420578 -2025-01-23 16:00:00+00:00,31149,156.169,156.396,155.862,156.004,USD_JPY,H1,31.49546827794545,0.00104519106488965,0.08121145900289713,-0.08016626793800748,156.43545,0.17037311218909224,0.23192857142856838,21.713580494314222,389429 -2025-01-23 17:00:00+00:00,9743,156.002,156.133,155.88,155.918,USD_JPY,H1,29.172610556347777,-0.030705595128978302,0.05882804817652204,-0.08953364330550034,156.40495,0.20417961001641785,0.24421428571428244,20.671555925788248,379686 -2025-01-23 18:00:00+00:00,6090,155.917,156.004,155.877,156.0,USD_JPY,H1,28.91911238367922,-0.04869033536488132,0.03732437146824137,-0.08601470683312269,156.38325,0.2231142909601663,0.24342857142856644,20.561495889853372,385776 -2025-01-23 19:00:00+00:00,5425,156.002,156.038,155.744,155.804,USD_JPY,H1,19.66216216216209,-0.07786139583043905,0.014287218008505288,-0.09214861383894433,156.35155,0.2573401343074598,0.2525714285714246,22.317873929512096,380351 -2025-01-23 20:00:00+00:00,5118,155.804,155.976,155.754,155.974,USD_JPY,H1,29.589216944800157,-0.08626765236806477,-0.005823756066808723,-0.08044389630125605,156.33075000000002,0.2705421214195955,0.2512857142857123,26.21677468673233,385469 -2025-01-23 21:00:00+00:00,3092,155.974,156.076,155.956,156.073,USD_JPY,H1,33.796016898008375,-0.08397320774807326,-0.021453646403061633,-0.06251956134501163,156.3067,0.2710306061355522,0.24799999999999858,29.564123899001725,388561 -2025-01-23 22:00:00+00:00,726,156.064,156.064,156.014,156.032,USD_JPY,H1,35.48795944233214,-0.08448926158996528,-0.03406076944044237,-0.05042849214952291,156.28360000000004,0.27389978956792393,0.23828571428571113,32.648611332582696,387835 -2025-01-23 23:00:00+00:00,3610,156.034,156.18,155.956,156.139,USD_JPY,H1,42.32233502538099,-0.075395124154511,-0.04232764038325609,-0.0330674837712549,156.26545,0.2706739104124686,0.23999999999999894,33.910189182395975,391445 -2025-01-24 00:00:00+00:00,10763,156.138,156.278,156.004,156.245,USD_JPY,H1,45.141822570911195,-0.05895504355231651,-0.04565312101706818,-0.013301922535248333,156.24825,0.2597407360975494,0.2450000000000005,32.974620396650536,402208 -2025-01-24 01:00:00+00:00,7894,156.244,156.357,156.138,156.312,USD_JPY,H1,42.541087231353,-0.04005805682922414,-0.04453410817949937,0.004476051350275227,156.22875000000002,0.23757655273520184,0.2470714285714288,33.50649968625082,410102 -2025-01-24 02:00:00+00:00,13903,156.311,156.377,155.896,155.982,USD_JPY,H1,38.13031161473066,-0.05112100960366206,-0.045851488464331916,-0.005269521139330144,156.19735,0.22574141585137136,0.2651428571428584,35.766439567072794,396199 -2025-01-24 03:00:00+00:00,25817,155.984,156.416,155.43,155.488,USD_JPY,H1,32.57502420135533,-0.0986133969956029,-0.05640387017058611,-0.04220952682501679,156.14124999999999,0.2552787691690264,0.3127142857142867,37.44079741937596,370382 -2025-01-24 04:00:00+00:00,18452,155.486,155.519,155.005,155.234,USD_JPY,H1,27.69973661106245,-0.1549608412827581,-0.07611526439302052,-0.07884557688973759,156.07845,0.3129466870503595,0.33028571428571596,40.194998881524825,351930 -2025-01-24 05:00:00+00:00,12964,155.234,155.472,155.106,155.356,USD_JPY,H1,32.45689655172403,-0.187609570097095,-0.09841412553383543,-0.08919544456325958,156.0272,0.34325402591112464,0.3331428571428603,43.43879103357916,364894 -2025-01-24 06:00:00+00:00,28067,155.355,155.746,154.841,155.366,USD_JPY,H1,35.25878003696903,-0.21025333688785963,-0.12078196780464028,-0.08947136908321936,155.9752,0.36115743758813085,0.359642857142861,42.99860321055707,392961 -2025-01-24 07:00:00+00:00,23876,155.367,155.642,155.224,155.386,USD_JPY,H1,37.32125834127706,-0.22400268879644614,-0.14142611200300145,-0.08257657679344468,155.9171,0.3576092986971592,0.37142857142857466,43.13780450799508,416837 -2025-01-24 08:00:00+00:00,25057,155.385,155.453,154.94,155.383,USD_JPY,H1,34.72015849430417,-0.23246155210034658,-0.1596332000224705,-0.07282835207787608,155.8662,0.35755685597048054,0.39900000000000496,43.408926322759484,391780 -2025-01-24 09:00:00+00:00,19952,155.382,155.628,155.122,155.587,USD_JPY,H1,44.64726196349242,-0.22016622788433438,-0.17173980559484328,-0.048426422289491095,155.83515000000003,0.35325066020560264,0.4141428571428593,41.056352251717286,411732 -2025-01-24 10:00:00+00:00,13926,155.584,155.97,155.55,155.911,USD_JPY,H1,48.55570839064676,-0.18217796842296252,-0.17382743816046714,-0.008350530262495381,155.8182,0.34018889487878057,0.42828571428571494,37.59400246040976,425658 -2025-01-24 11:00:00+00:00,12340,155.913,156.11,155.903,156.1,USD_JPY,H1,50.594451783355076,-0.1352620617973912,-0.16611436288785197,0.030852301090460776,155.81470000000002,0.3367213590975916,0.43450000000000194,35.16707753483414,437998 -2025-01-24 12:00:00+00:00,12648,156.101,156.476,156.064,156.458,USD_JPY,H1,58.23029366306015,-0.06840473254035828,-0.14657243681835325,0.07816770427799496,155.8374,0.36432625631562693,0.4603571428571464,31.89260645608021,450646 -2025-01-24 13:00:00+00:00,14701,156.462,156.579,156.243,156.309,USD_JPY,H1,53.231939163497906,-0.0271301328940865,-0.1226839760334999,0.0955538431394134,155.85695,0.3790712299248742,0.4683571428571461,29.848445730121217,435945 diff --git a/indicators_directory/USD_JPY_Histogram.csv b/indicators_directory/USD_JPY_Histogram.csv deleted file mode 100644 index 3d59dfb..0000000 --- a/indicators_directory/USD_JPY_Histogram.csv +++ /dev/null @@ -1,5001 +0,0 @@ -time,Histogram -2024-04-05 03:00:00+00:00,0.0 -2024-04-05 04:00:00+00:00,-0.002807977207976364 -2024-04-05 05:00:00+00:00,-0.006456529411261727 -2024-04-05 06:00:00+00:00,-0.00340601584506021 -2024-04-05 07:00:00+00:00,0.0035635570725604344 -2024-04-05 08:00:00+00:00,0.012488406542792182 -2024-04-05 09:00:00+00:00,0.017802865375101742 -2024-04-05 10:00:00+00:00,0.014919277839452736 -2024-04-05 11:00:00+00:00,0.014672591692509982 -2024-04-05 12:00:00+00:00,0.03162966411325161 -2024-04-05 13:00:00+00:00,0.03766797021222421 -2024-04-05 14:00:00+00:00,0.03352460166968141 -2024-04-05 15:00:00+00:00,0.033032087482409885 -2024-04-05 16:00:00+00:00,0.02992824722457406 -2024-04-05 17:00:00+00:00,0.02623943923863333 -2024-04-05 18:00:00+00:00,0.0198924820087171 -2024-04-05 19:00:00+00:00,0.020335488293792392 -2024-04-05 20:00:00+00:00,0.017689526678575 -2024-04-07 21:00:00+00:00,0.013524935816447009 -2024-04-07 22:00:00+00:00,0.014594846632040623 -2024-04-07 23:00:00+00:00,0.01285743019059632 -2024-04-08 00:00:00+00:00,0.01223018617602345 -2024-04-08 01:00:00+00:00,0.014728854055531385 -2024-04-08 02:00:00+00:00,0.014172086164351602 -2024-04-08 03:00:00+00:00,0.012207657278020964 -2024-04-08 04:00:00+00:00,0.010967712570523577 -2024-04-08 05:00:00+00:00,0.00830733291115078 -2024-04-08 06:00:00+00:00,0.0033455556164137534 -2024-04-08 07:00:00+00:00,0.006128259170572692 -2024-04-08 08:00:00+00:00,0.009010340029618105 -2024-04-08 09:00:00+00:00,0.007188217034649377 -2024-04-08 10:00:00+00:00,0.003390172790713769 -2024-04-08 11:00:00+00:00,0.003969533678012047 -2024-04-08 12:00:00+00:00,0.0006161118348774336 -2024-04-08 13:00:00+00:00,-0.01147349840785726 -2024-04-08 14:00:00+00:00,-0.014721894464575405 -2024-04-08 15:00:00+00:00,-0.018606714669639077 -2024-04-08 16:00:00+00:00,-0.0179218689177858 -2024-04-08 17:00:00+00:00,-0.021387841274705555 -2024-04-08 18:00:00+00:00,-0.0233321492998384 -2024-04-08 19:00:00+00:00,-0.02008327458967632 -2024-04-08 20:00:00+00:00,-0.016703381284704777 -2024-04-08 21:00:00+00:00,-0.01618845447812159 -2024-04-08 22:00:00+00:00,-0.01675733541881866 -2024-04-08 23:00:00+00:00,-0.015129533814685583 -2024-04-09 00:00:00+00:00,-0.009048677403131103 -2024-04-09 01:00:00+00:00,-0.00660137300989324 -2024-04-09 02:00:00+00:00,-0.00616184852102053 -2024-04-09 03:00:00+00:00,-0.007308846399009909 -2024-04-09 04:00:00+00:00,-0.005927306050850449 -2024-04-09 05:00:00+00:00,-0.005125822932939346 -2024-04-09 06:00:00+00:00,-0.003441887455119426 -2024-04-09 07:00:00+00:00,-0.0033912607626417693 -2024-04-09 08:00:00+00:00,-0.004678373259049393 -2024-04-09 09:00:00+00:00,-0.008767984482002153 -2024-04-09 10:00:00+00:00,-0.01406069110591645 -2024-04-09 11:00:00+00:00,-0.015011650246849403 -2024-04-09 12:00:00+00:00,-0.018964628149445988 -2024-04-09 13:00:00+00:00,-0.020783525230477724 -2024-04-09 14:00:00+00:00,-0.02858876901461272 -2024-04-09 15:00:00+00:00,-0.027227371128760867 -2024-04-09 16:00:00+00:00,-0.029064282806440224 -2024-04-09 17:00:00+00:00,-0.02731879420739086 -2024-04-09 18:00:00+00:00,-0.021761721260692597 -2024-04-09 19:00:00+00:00,-0.017312033524050426 -2024-04-09 20:00:00+00:00,-0.010814623205476975 -2024-04-09 21:00:00+00:00,-0.00743402679936523 -2024-04-09 22:00:00+00:00,-0.005209996812555235 -2024-04-09 23:00:00+00:00,-0.0017734276991080156 -2024-04-10 00:00:00+00:00,-0.0029860196160838674 -2024-04-10 01:00:00+00:00,-0.0034684546091704304 -2024-04-10 02:00:00+00:00,-0.0012902454689146178 -2024-04-10 03:00:00+00:00,1.928805178928565e-05 -2024-04-10 04:00:00+00:00,0.0028854612205582945 -2024-04-10 05:00:00+00:00,0.0064428445526122785 -2024-04-10 06:00:00+00:00,0.006530872064004479 -2024-04-10 07:00:00+00:00,0.010168464577088613 -2024-04-10 08:00:00+00:00,0.012753743205516765 -2024-04-10 09:00:00+00:00,0.014131952956525192 -2024-04-10 10:00:00+00:00,0.012670790129760731 -2024-04-10 11:00:00+00:00,0.011647481424915928 -2024-04-10 12:00:00+00:00,0.044940522582874134 -2024-04-10 13:00:00+00:00,0.08162117797004159 -2024-04-10 14:00:00+00:00,0.10631851178722446 -2024-04-10 15:00:00+00:00,0.1242015535899458 -2024-04-10 16:00:00+00:00,0.129955953070104 -2024-04-10 17:00:00+00:00,0.11525751202644477 -2024-04-10 18:00:00+00:00,0.11058363049945596 -2024-04-10 19:00:00+00:00,0.10012438033817872 -2024-04-10 20:00:00+00:00,0.09816532846505685 -2024-04-10 21:00:00+00:00,0.08048080056655571 -2024-04-10 22:00:00+00:00,0.05751252892816355 -2024-04-10 23:00:00+00:00,0.040027398464217656 -2024-04-11 00:00:00+00:00,0.01704026099212058 -2024-04-11 01:00:00+00:00,-0.00267710559991019 -2024-04-11 02:00:00+00:00,-0.016305894347541094 -2024-04-11 03:00:00+00:00,-0.018793653026206558 -2024-04-11 04:00:00+00:00,-0.025165638778172628 -2024-04-11 05:00:00+00:00,-0.02553976956506554 -2024-04-11 06:00:00+00:00,-0.014290983216808273 -2024-04-11 07:00:00+00:00,-0.01092853052233378 -2024-04-11 08:00:00+00:00,-0.003598327711096083 -2024-04-11 09:00:00+00:00,-0.00583590850062049 -2024-04-11 10:00:00+00:00,-0.01508850974267284 -2024-04-11 11:00:00+00:00,-0.02158152645168157 -2024-04-11 12:00:00+00:00,-0.042292647645398 -2024-04-11 13:00:00+00:00,-0.03665466410562995 -2024-04-11 14:00:00+00:00,-0.02435004844188915 -2024-04-11 15:00:00+00:00,-0.022432514892637145 -2024-04-11 16:00:00+00:00,-0.0192252225701125 -2024-04-11 17:00:00+00:00,-0.02177943187308415 -2024-04-11 18:00:00+00:00,-0.019720277532018382 -2024-04-11 19:00:00+00:00,-0.02178867936237494 -2024-04-11 20:00:00+00:00,-0.01907466757600229 -2024-04-11 21:00:00+00:00,-0.02207731415753289 -2024-04-11 22:00:00+00:00,-0.023477551316038348 -2024-04-11 23:00:00+00:00,-0.026937399648798876 -2024-04-12 00:00:00+00:00,-0.04337930874876095 -2024-04-12 01:00:00+00:00,-0.04466115743375054 -2024-04-12 02:00:00+00:00,-0.039462868702684895 -2024-04-12 03:00:00+00:00,-0.0334487622683807 -2024-04-12 04:00:00+00:00,-0.027098532340791986 -2024-04-12 05:00:00+00:00,-0.024701630721635254 -2024-04-12 06:00:00+00:00,-0.018533999510121663 -2024-04-12 07:00:00+00:00,-0.016601971444932834 -2024-04-12 08:00:00+00:00,-0.011580770819743541 -2024-04-12 09:00:00+00:00,-0.009072127207795017 -2024-04-12 10:00:00+00:00,-0.009972212608983608 -2024-04-12 11:00:00+00:00,-0.017789053113902387 -2024-04-12 12:00:00+00:00,-0.042382033262823304 -2024-04-12 13:00:00+00:00,-0.05108764663205943 -2024-04-12 14:00:00+00:00,-0.05500615431801962 -2024-04-12 15:00:00+00:00,-0.04270224401193253 -2024-04-12 16:00:00+00:00,-0.03417981004829317 -2024-04-12 17:00:00+00:00,-0.025779865350199223 -2024-04-12 18:00:00+00:00,-0.01400921617517717 -2024-04-12 19:00:00+00:00,-0.0046038592706808545 -2024-04-12 20:00:00+00:00,0.005899674901246408 -2024-04-14 21:00:00+00:00,0.0037639333755941327 -2024-04-14 22:00:00+00:00,0.008359946390953096 -2024-04-14 23:00:00+00:00,0.012001348017201548 -2024-04-15 00:00:00+00:00,0.023377742880115543 -2024-04-15 01:00:00+00:00,0.03588938176662915 -2024-04-15 02:00:00+00:00,0.05028941958269621 -2024-04-15 03:00:00+00:00,0.053835484558316646 -2024-04-15 04:00:00+00:00,0.05965109367046767 -2024-04-15 05:00:00+00:00,0.06185351653597321 -2024-04-15 06:00:00+00:00,0.061981556586042735 -2024-04-15 07:00:00+00:00,0.06002325646064316 -2024-04-15 08:00:00+00:00,0.05187298846787275 -2024-04-15 09:00:00+00:00,0.043213984319716625 -2024-04-15 10:00:00+00:00,0.037527152635012995 -2024-04-15 11:00:00+00:00,0.02951238340864823 -2024-04-15 12:00:00+00:00,0.038834695629160504 -2024-04-15 13:00:00+00:00,0.051873132114517856 -2024-04-15 14:00:00+00:00,0.053739322449572136 -2024-04-15 15:00:00+00:00,0.04544704123703622 -2024-04-15 16:00:00+00:00,0.03852158794717009 -2024-04-15 17:00:00+00:00,0.022070531276037808 -2024-04-15 18:00:00+00:00,0.010544290199898498 -2024-04-15 19:00:00+00:00,0.001791572868861585 -2024-04-15 20:00:00+00:00,-0.0030449280390193734 -2024-04-15 21:00:00+00:00,-0.010718479738274611 -2024-04-15 22:00:00+00:00,-0.020573179696908972 -2024-04-15 23:00:00+00:00,-0.02555171895490843 -2024-04-16 00:00:00+00:00,-0.024346777154022697 -2024-04-16 01:00:00+00:00,-0.019720546676421896 -2024-04-16 02:00:00+00:00,-0.02055033527165978 -2024-04-16 03:00:00+00:00,-0.019731735882972473 -2024-04-16 04:00:00+00:00,-0.025280747558669242 -2024-04-16 05:00:00+00:00,-0.024389155306404314 -2024-04-16 06:00:00+00:00,-0.013963549119781454 -2024-04-16 07:00:00+00:00,-0.015945855323390656 -2024-04-16 08:00:00+00:00,-0.010695425365903705 -2024-04-16 09:00:00+00:00,-0.004863940181832949 -2024-04-16 10:00:00+00:00,-0.0003668596285804626 -2024-04-16 11:00:00+00:00,0.00216548641400674 -2024-04-16 12:00:00+00:00,0.0036477779019997436 -2024-04-16 13:00:00+00:00,-0.0021235043641723295 -2024-04-16 14:00:00+00:00,-0.006007310358911527 -2024-04-16 15:00:00+00:00,-0.010788231287234301 -2024-04-16 16:00:00+00:00,-0.014260792543983158 -2024-04-16 17:00:00+00:00,-0.00974263331955047 -2024-04-16 18:00:00+00:00,-0.011343509756696124 -2024-04-16 19:00:00+00:00,-0.01430865089839456 -2024-04-16 20:00:00+00:00,-0.01060180547959394 -2024-04-16 21:00:00+00:00,-0.013094069656277768 -2024-04-16 22:00:00+00:00,-0.01439736287692453 -2024-04-16 23:00:00+00:00,-0.01510956750529771 -2024-04-17 00:00:00+00:00,-0.016400599172259722 -2024-04-17 01:00:00+00:00,-0.018268458436013518 -2024-04-17 02:00:00+00:00,-0.019911584634475316 -2024-04-17 03:00:00+00:00,-0.023260682160222368 -2024-04-17 04:00:00+00:00,-0.02534448553156654 -2024-04-17 05:00:00+00:00,-0.028382755329077025 -2024-04-17 06:00:00+00:00,-0.039261971694134576 -2024-04-17 07:00:00+00:00,-0.03620791480101662 -2024-04-17 08:00:00+00:00,-0.036304593515312636 -2024-04-17 09:00:00+00:00,-0.03324668325661964 -2024-04-17 10:00:00+00:00,-0.028296062536638744 -2024-04-17 11:00:00+00:00,-0.02426868475040367 -2024-04-17 12:00:00+00:00,-0.021231056960977324 -2024-04-17 13:00:00+00:00,-0.01713773830279508 -2024-04-17 14:00:00+00:00,-0.014217510475181612 -2024-04-17 15:00:00+00:00,-0.014578303064573826 -2024-04-17 16:00:00+00:00,-0.03621636991510344 -2024-04-17 17:00:00+00:00,-0.045850695487769835 -2024-04-17 18:00:00+00:00,-0.047351758302407336 -2024-04-17 19:00:00+00:00,-0.04707840866918422 -2024-04-17 20:00:00+00:00,-0.040622142135081765 -2024-04-17 21:00:00+00:00,-0.038513613128955904 -2024-04-17 22:00:00+00:00,-0.03838710206977134 -2024-04-17 23:00:00+00:00,-0.03227444306230172 -2024-04-18 00:00:00+00:00,-0.029931871868708326 -2024-04-18 01:00:00+00:00,-0.03058125831475711 -2024-04-18 02:00:00+00:00,-0.03466146232056193 -2024-04-18 03:00:00+00:00,-0.028218518006057847 -2024-04-18 04:00:00+00:00,-0.018644185459391907 -2024-04-18 05:00:00+00:00,-0.011587080717355008 -2024-04-18 06:00:00+00:00,-0.006642714378989445 -2024-04-18 07:00:00+00:00,-0.0028837173225201435 -2024-04-18 08:00:00+00:00,0.0057492403778597045 -2024-04-18 09:00:00+00:00,0.015567455991816886 -2024-04-18 10:00:00+00:00,0.023280963938841583 -2024-04-18 11:00:00+00:00,0.02270846332716888 -2024-04-18 12:00:00+00:00,0.021515579119106995 -2024-04-18 13:00:00+00:00,0.029902900651594906 -2024-04-18 14:00:00+00:00,0.04104291798523928 -2024-04-18 15:00:00+00:00,0.04480681686570901 -2024-04-18 16:00:00+00:00,0.04537115092394422 -2024-04-18 17:00:00+00:00,0.0445628783488384 -2024-04-18 18:00:00+00:00,0.03887839054116025 -2024-04-18 19:00:00+00:00,0.034686565161021206 -2024-04-18 20:00:00+00:00,0.03233680835334978 -2024-04-18 21:00:00+00:00,0.02563896369525786 -2024-04-18 22:00:00+00:00,0.022379722580353874 -2024-04-18 23:00:00+00:00,0.0167368889810406 -2024-04-19 00:00:00+00:00,0.012793338232049895 -2024-04-19 01:00:00+00:00,-0.01575371995209654 -2024-04-19 02:00:00+00:00,-0.054743236225063385 -2024-04-19 03:00:00+00:00,-0.05043742227338628 -2024-04-19 04:00:00+00:00,-0.044505125100826395 -2024-04-19 05:00:00+00:00,-0.03763528906584935 -2024-04-19 06:00:00+00:00,-0.025857299760391333 -2024-04-19 07:00:00+00:00,-0.013731263286537686 -2024-04-19 08:00:00+00:00,-0.009266661808311712 -2024-04-19 09:00:00+00:00,-0.001137818269626405 -2024-04-19 10:00:00+00:00,0.006949637197294432 -2024-04-19 11:00:00+00:00,0.016485883928726137 -2024-04-19 12:00:00+00:00,0.017458251546772677 -2024-04-19 13:00:00+00:00,0.020055942326236545 -2024-04-19 14:00:00+00:00,0.021193031485460354 -2024-04-19 15:00:00+00:00,0.01798821402882752 -2024-04-19 16:00:00+00:00,0.016975301456768992 -2024-04-19 17:00:00+00:00,0.018180270436711273 -2024-04-19 18:00:00+00:00,0.014735718892116927 -2024-04-19 19:00:00+00:00,0.01331024614493511 -2024-04-19 20:00:00+00:00,0.013960493731300143 -2024-04-21 21:00:00+00:00,0.003401412322770525 -2024-04-21 22:00:00+00:00,0.005762882450401241 -2024-04-21 23:00:00+00:00,0.006768398109764283 -2024-04-22 00:00:00+00:00,0.009089508670474374 -2024-04-22 01:00:00+00:00,0.00622159027686018 -2024-04-22 02:00:00+00:00,0.006172492556409177 -2024-04-22 03:00:00+00:00,0.007431958802049991 -2024-04-22 04:00:00+00:00,0.00930101002368694 -2024-04-22 05:00:00+00:00,0.009965153394122295 -2024-04-22 06:00:00+00:00,0.00643421959078036 -2024-04-22 07:00:00+00:00,0.002231219770562079 -2024-04-22 08:00:00+00:00,0.003119090882464988 -2024-04-22 09:00:00+00:00,0.006059268273259734 -2024-04-22 10:00:00+00:00,0.006288792395512811 -2024-04-22 11:00:00+00:00,0.006069319375777461 -2024-04-22 12:00:00+00:00,0.004162106973792823 -2024-04-22 13:00:00+00:00,0.001670451148776217 -2024-04-22 14:00:00+00:00,-0.0008692600802360367 -2024-04-22 15:00:00+00:00,-0.00024072656340178022 -2024-04-22 16:00:00+00:00,0.001064848003638999 -2024-04-22 17:00:00+00:00,0.00253245841288581 -2024-04-22 18:00:00+00:00,0.0017853049675401744 -2024-04-22 19:00:00+00:00,0.00300359691077514 -2024-04-22 20:00:00+00:00,0.0030856453674363987 -2024-04-22 21:00:00+00:00,0.0014231018727301203 -2024-04-22 22:00:00+00:00,-0.0008022846718983984 -2024-04-22 23:00:00+00:00,-0.002623786688905963 -2024-04-23 00:00:00+00:00,-0.005686117017812471 -2024-04-23 01:00:00+00:00,-0.011713935828023617 -2024-04-23 02:00:00+00:00,-0.01287601233372887 -2024-04-23 03:00:00+00:00,-0.014025136347784309 -2024-04-23 04:00:00+00:00,-0.015329207543915015 -2024-04-23 05:00:00+00:00,-0.013946754819836232 -2024-04-23 06:00:00+00:00,-0.013218559827460674 -2024-04-23 07:00:00+00:00,-0.0085688851797582 -2024-04-23 08:00:00+00:00,-0.004110587686456953 -2024-04-23 09:00:00+00:00,-0.0017834787335703484 -2024-04-23 10:00:00+00:00,-0.003016066363749313 -2024-04-23 11:00:00+00:00,-0.0036641547995206226 -2024-04-23 12:00:00+00:00,-0.003648294591958194 -2024-04-23 13:00:00+00:00,-0.014504526950239113 -2024-04-23 14:00:00+00:00,-0.010959910498052172 -2024-04-23 15:00:00+00:00,-0.0069738874248460835 -2024-04-23 16:00:00+00:00,-0.0037977055425110623 -2024-04-23 17:00:00+00:00,-0.0065200098259203705 -2024-04-23 18:00:00+00:00,-0.007740207413599435 -2024-04-23 19:00:00+00:00,-0.0039806121961377915 -2024-04-23 20:00:00+00:00,-0.0007977624063017809 -2024-04-23 21:00:00+00:00,-0.002289585608782634 -2024-04-23 22:00:00+00:00,-0.003181827167069131 -2024-04-23 23:00:00+00:00,-0.0058140383318349125 -2024-04-24 00:00:00+00:00,-0.00440781473114411 -2024-04-24 01:00:00+00:00,-0.0032782082645601215 -2024-04-24 02:00:00+00:00,-0.0016079122306784377 -2024-04-24 03:00:00+00:00,0.0017851888959882212 -2024-04-24 04:00:00+00:00,0.003268192896059662 -2024-04-24 05:00:00+00:00,0.006085318845522138 -2024-04-24 06:00:00+00:00,0.010725816465379297 -2024-04-24 07:00:00+00:00,0.011391316814920765 -2024-04-24 08:00:00+00:00,0.010844687080837974 -2024-04-24 09:00:00+00:00,0.011967326916650395 -2024-04-24 10:00:00+00:00,0.011688852424484183 -2024-04-24 11:00:00+00:00,0.010201055130494241 -2024-04-24 12:00:00+00:00,0.00992455017178595 -2024-04-24 13:00:00+00:00,0.011164946537528482 -2024-04-24 14:00:00+00:00,0.012244553846342536 -2024-04-24 15:00:00+00:00,0.01920155713781821 -2024-04-24 16:00:00+00:00,0.021967269859259515 -2024-04-24 17:00:00+00:00,0.03327045592720812 -2024-04-24 18:00:00+00:00,0.03668432332804006 -2024-04-24 19:00:00+00:00,0.038336900912299396 -2024-04-24 20:00:00+00:00,0.039604975055204356 -2024-04-24 21:00:00+00:00,0.03058356970703288 -2024-04-24 22:00:00+00:00,0.021897895169694842 -2024-04-24 23:00:00+00:00,0.017082758734154144 -2024-04-25 00:00:00+00:00,0.018927595762516458 -2024-04-25 01:00:00+00:00,0.019318606819715076 -2024-04-25 02:00:00+00:00,0.020201665732854562 -2024-04-25 03:00:00+00:00,0.020279712998466523 -2024-04-25 04:00:00+00:00,0.026312283333772224 -2024-04-25 05:00:00+00:00,0.03199940054797057 -2024-04-25 06:00:00+00:00,0.0330146027655103 -2024-04-25 07:00:00+00:00,0.02822891409340844 -2024-04-25 08:00:00+00:00,0.025226922129449048 -2024-04-25 09:00:00+00:00,0.018145922730230385 -2024-04-25 10:00:00+00:00,0.0055196014364269075 -2024-04-25 11:00:00+00:00,-0.0034237061426825866 -2024-04-25 12:00:00+00:00,-0.0025620027770620335 -2024-04-25 13:00:00+00:00,-0.005166690670325158 -2024-04-25 14:00:00+00:00,-0.01330569898290418 -2024-04-25 15:00:00+00:00,-0.022286724902630672 -2024-04-25 16:00:00+00:00,-0.028529755428385123 -2024-04-25 17:00:00+00:00,-0.029090579251366683 -2024-04-25 18:00:00+00:00,-0.02682383299926963 -2024-04-25 19:00:00+00:00,-0.0231615985651841 -2024-04-25 20:00:00+00:00,-0.019976425198606082 -2024-04-25 21:00:00+00:00,-0.020976948369422557 -2024-04-25 22:00:00+00:00,-0.02335200730435602 -2024-04-25 23:00:00+00:00,-0.02143309238698715 -2024-04-26 00:00:00+00:00,-0.019171976082385953 -2024-04-26 01:00:00+00:00,-0.020344998393030778 -2024-04-26 02:00:00+00:00,-0.022541527501700437 -2024-04-26 03:00:00+00:00,0.00044165239827480274 -2024-04-26 04:00:00+00:00,0.030343043551302462 -2024-04-26 05:00:00+00:00,0.04060781488555357 -2024-04-26 06:00:00+00:00,0.06141898392754064 -2024-04-26 07:00:00+00:00,0.0907365541039458 -2024-04-26 08:00:00+00:00,0.09390305794144443 -2024-04-26 09:00:00+00:00,0.09772078482308033 -2024-04-26 10:00:00+00:00,0.1013961933776942 -2024-04-26 11:00:00+00:00,0.09638996516864506 -2024-04-26 12:00:00+00:00,0.08706989803909354 -2024-04-26 13:00:00+00:00,0.08056917208969322 -2024-04-26 14:00:00+00:00,0.09086221559736951 -2024-04-26 15:00:00+00:00,0.11246622066502193 -2024-04-26 16:00:00+00:00,0.11896630799307828 -2024-04-26 17:00:00+00:00,0.11679164729853375 -2024-04-26 18:00:00+00:00,0.10711310020502063 -2024-04-26 19:00:00+00:00,0.1020566037627712 -2024-04-26 20:00:00+00:00,0.11850052155070517 -2024-04-28 21:00:00+00:00,0.0920222815782532 -2024-04-28 22:00:00+00:00,0.08474719568827205 -2024-04-28 23:00:00+00:00,0.06940247367854735 -2024-04-29 00:00:00+00:00,0.050858609103860974 -2024-04-29 01:00:00+00:00,0.0938985304453741 -2024-04-29 02:00:00+00:00,0.12341759573142919 -2024-04-29 03:00:00+00:00,0.13178431568968896 -2024-04-29 04:00:00+00:00,-0.07282928079618811 -2024-04-29 05:00:00+00:00,-0.17176685454058116 -2024-04-29 06:00:00+00:00,-0.21497283328879102 -2024-04-29 07:00:00+00:00,-0.3294930024222884 -2024-04-29 08:00:00+00:00,-0.36791504155799476 -2024-04-29 09:00:00+00:00,-0.3848884021955786 -2024-04-29 10:00:00+00:00,-0.36814401403799507 -2024-04-29 11:00:00+00:00,-0.3177964258688919 -2024-04-29 12:00:00+00:00,-0.25825753991935035 -2024-04-29 13:00:00+00:00,-0.18898083048788536 -2024-04-29 14:00:00+00:00,-0.13728698607956732 -2024-04-29 15:00:00+00:00,-0.0947987469514327 -2024-04-29 16:00:00+00:00,-0.11899534475788269 -2024-04-29 17:00:00+00:00,-0.10954821165308176 -2024-04-29 18:00:00+00:00,-0.11467819501365625 -2024-04-29 19:00:00+00:00,-0.09573989168625574 -2024-04-29 20:00:00+00:00,-0.0570023000298919 -2024-04-29 21:00:00+00:00,-0.03155965542216463 -2024-04-29 22:00:00+00:00,-0.014116399096923582 -2024-04-29 23:00:00+00:00,0.004003984808796046 -2024-04-30 00:00:00+00:00,0.047882630298538786 -2024-04-30 01:00:00+00:00,0.07741695774620372 -2024-04-30 02:00:00+00:00,0.0848763132266826 -2024-04-30 03:00:00+00:00,0.08787057747012689 -2024-04-30 04:00:00+00:00,0.08777278759331428 -2024-04-30 05:00:00+00:00,0.08847764500194868 -2024-04-30 06:00:00+00:00,0.0854902827823514 -2024-04-30 07:00:00+00:00,0.08225644455250676 -2024-04-30 08:00:00+00:00,0.08108378223584568 -2024-04-30 09:00:00+00:00,0.07565519018057376 -2024-04-30 10:00:00+00:00,0.06830938273832672 -2024-04-30 11:00:00+00:00,0.06241636152291733 -2024-04-30 12:00:00+00:00,0.08714815931328712 -2024-04-30 13:00:00+00:00,0.09613943452390013 -2024-04-30 14:00:00+00:00,0.09036243059189936 -2024-04-30 15:00:00+00:00,0.09469877570972227 -2024-04-30 16:00:00+00:00,0.08629605820719266 -2024-04-30 17:00:00+00:00,0.08189499135704342 -2024-04-30 18:00:00+00:00,0.08196066747122804 -2024-04-30 19:00:00+00:00,0.07685000876398856 -2024-04-30 20:00:00+00:00,0.07458653653105043 -2024-04-30 21:00:00+00:00,0.06135656767195857 -2024-04-30 22:00:00+00:00,0.04684829942568264 -2024-04-30 23:00:00+00:00,0.035830195370368356 -2024-05-01 00:00:00+00:00,0.025006692683509413 -2024-05-01 01:00:00+00:00,0.018516977450614536 -2024-05-01 02:00:00+00:00,0.01612649417847778 -2024-05-01 03:00:00+00:00,0.013649728080712187 -2024-05-01 04:00:00+00:00,0.005410199852170894 -2024-05-01 05:00:00+00:00,0.0012534963836224877 -2024-05-01 06:00:00+00:00,-0.0002567626578098281 -2024-05-01 07:00:00+00:00,-0.009282087367498637 -2024-05-01 08:00:00+00:00,-0.012184969918942468 -2024-05-01 09:00:00+00:00,-0.01796278611796648 -2024-05-01 10:00:00+00:00,-0.023411836948108417 -2024-05-01 11:00:00+00:00,-0.02991125704889583 -2024-05-01 12:00:00+00:00,-0.040616839269524696 -2024-05-01 13:00:00+00:00,-0.05745313226530563 -2024-05-01 14:00:00+00:00,-0.0641635166388913 -2024-05-01 15:00:00+00:00,-0.06785822641795028 -2024-05-01 16:00:00+00:00,-0.07027168932562228 -2024-05-01 17:00:00+00:00,-0.06776635057893823 -2024-05-01 18:00:00+00:00,-0.09750986877965258 -2024-05-01 19:00:00+00:00,-0.08901481119258912 -2024-05-01 20:00:00+00:00,-0.2736474189541055 -2024-05-01 21:00:00+00:00,-0.38548666050111813 -2024-05-01 22:00:00+00:00,-0.3611026201676304 -2024-05-01 23:00:00+00:00,-0.30693015314548294 -2024-05-02 00:00:00+00:00,-0.23609949637750244 -2024-05-02 01:00:00+00:00,-0.1726169955733869 -2024-05-02 02:00:00+00:00,-0.1370324398701384 -2024-05-02 03:00:00+00:00,-0.09655522831284191 -2024-05-02 04:00:00+00:00,-0.06984654160487835 -2024-05-02 05:00:00+00:00,-0.05402970124733031 -2024-05-02 06:00:00+00:00,-0.05410577342159967 -2024-05-02 07:00:00+00:00,-0.04321135103820323 -2024-05-02 08:00:00+00:00,-0.05258923488937117 -2024-05-02 09:00:00+00:00,-0.043812369227239745 -2024-05-02 10:00:00+00:00,-0.04265145667017112 -2024-05-02 11:00:00+00:00,-0.05784253644594617 -2024-05-02 12:00:00+00:00,-0.07380298492882942 -2024-05-02 13:00:00+00:00,-0.08273137208849213 -2024-05-02 14:00:00+00:00,-0.10038021248879236 -2024-05-02 15:00:00+00:00,-0.11895855966853763 -2024-05-02 16:00:00+00:00,-0.12015423749115484 -2024-05-02 17:00:00+00:00,-0.13353934232087972 -2024-05-02 18:00:00+00:00,-0.14972945153473893 -2024-05-02 19:00:00+00:00,-0.1370039464858107 -2024-05-02 20:00:00+00:00,-0.08468388587530606 -2024-05-02 21:00:00+00:00,-0.036389294732042554 -2024-05-02 22:00:00+00:00,-0.026762260067502153 -2024-05-02 23:00:00+00:00,-0.021138046072748717 -2024-05-03 00:00:00+00:00,-0.008824360989671431 -2024-05-03 01:00:00+00:00,-0.012854347351930473 -2024-05-03 02:00:00+00:00,0.004702069445320145 -2024-05-03 03:00:00+00:00,0.020626033166960767 -2024-05-03 04:00:00+00:00,0.03087979336821589 -2024-05-03 05:00:00+00:00,0.04737395870657923 -2024-05-03 06:00:00+00:00,0.08059147823578872 -2024-05-03 07:00:00+00:00,0.10487983075654483 -2024-05-03 08:00:00+00:00,0.11440115680200047 -2024-05-03 09:00:00+00:00,0.1114818584906152 -2024-05-03 10:00:00+00:00,0.11266168338050475 -2024-05-03 11:00:00+00:00,0.1197935566452738 -2024-05-03 12:00:00+00:00,0.0595544593376619 -2024-05-03 13:00:00+00:00,0.0443499554689768 -2024-05-03 14:00:00+00:00,0.06125910819108893 -2024-05-03 15:00:00+00:00,0.07123284425607124 -2024-05-03 16:00:00+00:00,0.07987582623678535 -2024-05-03 17:00:00+00:00,0.08756012608653113 -2024-05-03 18:00:00+00:00,0.0942964222698392 -2024-05-03 19:00:00+00:00,0.09489270194543786 -2024-05-03 20:00:00+00:00,0.10032747353190913 -2024-05-05 21:00:00+00:00,0.09239075350692783 -2024-05-05 22:00:00+00:00,0.11220786508063862 -2024-05-05 23:00:00+00:00,0.14908321541978803 -2024-05-06 00:00:00+00:00,0.1519387353026177 -2024-05-06 01:00:00+00:00,0.1579918185630244 -2024-05-06 02:00:00+00:00,0.16824345953345268 -2024-05-06 03:00:00+00:00,0.17790837040336893 -2024-05-06 04:00:00+00:00,0.17691219387033652 -2024-05-06 05:00:00+00:00,0.16773413888846572 -2024-05-06 06:00:00+00:00,0.1387209717750148 -2024-05-06 07:00:00+00:00,0.1209441033183221 -2024-05-06 08:00:00+00:00,0.09905989811356872 -2024-05-06 09:00:00+00:00,0.08318084211877223 -2024-05-06 10:00:00+00:00,0.07055979975021434 -2024-05-06 11:00:00+00:00,0.05473802330061554 -2024-05-06 12:00:00+00:00,0.02657427753536043 -2024-05-06 13:00:00+00:00,0.023999478353039436 -2024-05-06 14:00:00+00:00,0.02911967908669813 -2024-05-06 15:00:00+00:00,0.025645556586022536 -2024-05-06 16:00:00+00:00,0.02443883094344558 -2024-05-06 17:00:00+00:00,0.02166139303831756 -2024-05-06 18:00:00+00:00,0.01812332563255495 -2024-05-06 19:00:00+00:00,0.015656663610295246 -2024-05-06 20:00:00+00:00,0.009807011373488952 -2024-05-06 21:00:00+00:00,0.004801604563618694 -2024-05-06 22:00:00+00:00,0.0040229561457134355 -2024-05-06 23:00:00+00:00,0.02060326958594111 -2024-05-07 00:00:00+00:00,0.00930384292879051 -2024-05-07 01:00:00+00:00,0.02743268850735181 -2024-05-07 02:00:00+00:00,0.048315673636891265 -2024-05-07 03:00:00+00:00,0.05778615516508018 -2024-05-07 04:00:00+00:00,0.05462519345524383 -2024-05-07 05:00:00+00:00,0.052331308749188093 -2024-05-07 06:00:00+00:00,0.034116909434646514 -2024-05-07 07:00:00+00:00,0.0042482030146308025 -2024-05-07 08:00:00+00:00,0.0018798899635764366 -2024-05-07 09:00:00+00:00,0.008571860642849372 -2024-05-07 10:00:00+00:00,0.005192243492106757 -2024-05-07 11:00:00+00:00,0.004216848102535087 -2024-05-07 12:00:00+00:00,-0.005676203742457836 -2024-05-07 13:00:00+00:00,-0.013862450183629721 -2024-05-07 14:00:00+00:00,-0.018922730574893798 -2024-05-07 15:00:00+00:00,-0.011887398787752801 -2024-05-07 16:00:00+00:00,-0.014205074141878549 -2024-05-07 17:00:00+00:00,-0.007170191904135675 -2024-05-07 18:00:00+00:00,0.001991918226907724 -2024-05-07 19:00:00+00:00,-0.0007610321106074625 -2024-05-07 20:00:00+00:00,-0.0006252365539958782 -2024-05-07 21:00:00+00:00,-0.007108456246131267 -2024-05-07 22:00:00+00:00,-0.003982574363887215 -2024-05-07 23:00:00+00:00,-0.0014342646206035037 -2024-05-08 00:00:00+00:00,0.006173853219112013 -2024-05-08 01:00:00+00:00,0.024517667156807643 -2024-05-08 02:00:00+00:00,0.034852115941731765 -2024-05-08 03:00:00+00:00,0.03769455366109478 -2024-05-08 04:00:00+00:00,0.03637203715999027 -2024-05-08 05:00:00+00:00,0.0315958076827865 -2024-05-08 06:00:00+00:00,0.030704447497585885 -2024-05-08 07:00:00+00:00,0.030565533790014976 -2024-05-08 08:00:00+00:00,0.03338856256185985 -2024-05-08 09:00:00+00:00,0.028781884114362638 -2024-05-08 10:00:00+00:00,0.021481193666531395 -2024-05-08 11:00:00+00:00,0.02022855196297546 -2024-05-08 12:00:00+00:00,0.023743535585676934 -2024-05-08 13:00:00+00:00,0.02413717175724922 -2024-05-08 14:00:00+00:00,0.01758479914758715 -2024-05-08 15:00:00+00:00,-0.0004206393172789813 -2024-05-08 16:00:00+00:00,-0.006407952166553876 -2024-05-08 17:00:00+00:00,-0.012447457170889464 -2024-05-08 18:00:00+00:00,-0.013835102962352186 -2024-05-08 19:00:00+00:00,-0.015010755045107127 -2024-05-08 20:00:00+00:00,-0.02399871704731965 -2024-05-08 21:00:00+00:00,-0.03065656710592729 -2024-05-08 22:00:00+00:00,-0.03173363561934808 -2024-05-08 23:00:00+00:00,-0.04673384684198381 -2024-05-09 00:00:00+00:00,-0.03970129576270767 -2024-05-09 01:00:00+00:00,-0.038410141255641905 -2024-05-09 02:00:00+00:00,-0.03610285106713268 -2024-05-09 03:00:00+00:00,-0.037664569450423235 -2024-05-09 04:00:00+00:00,-0.03701635795328789 -2024-05-09 05:00:00+00:00,-0.03301808785642782 -2024-05-09 06:00:00+00:00,-0.021948993849475795 -2024-05-09 07:00:00+00:00,-0.010296796920657492 -2024-05-09 08:00:00+00:00,-0.0033337177785723315 -2024-05-09 09:00:00+00:00,0.003779049126809597 -2024-05-09 10:00:00+00:00,0.00696655437288074 -2024-05-09 11:00:00+00:00,0.00457519664149722 -2024-05-09 12:00:00+00:00,-0.009877155477624633 -2024-05-09 13:00:00+00:00,-0.023450857345824055 -2024-05-09 14:00:00+00:00,-0.03787863369988359 -2024-05-09 15:00:00+00:00,-0.038469721720668426 -2024-05-09 16:00:00+00:00,-0.041565301962892154 -2024-05-09 17:00:00+00:00,-0.04731380918713188 -2024-05-09 18:00:00+00:00,-0.05635810090075316 -2024-05-09 19:00:00+00:00,-0.0609305155186584 -2024-05-09 20:00:00+00:00,-0.05842860021507089 -2024-05-09 21:00:00+00:00,-0.0548091344234459 -2024-05-09 22:00:00+00:00,-0.0576377875937699 -2024-05-09 23:00:00+00:00,-0.05452806105818729 -2024-05-10 00:00:00+00:00,-0.04122560798161458 -2024-05-10 01:00:00+00:00,-0.021180661489630655 -2024-05-10 02:00:00+00:00,-0.003081395723819689 -2024-05-10 03:00:00+00:00,0.0064110007164388735 -2024-05-10 04:00:00+00:00,0.00827348220886856 -2024-05-10 05:00:00+00:00,0.0057477308415892145 -2024-05-10 06:00:00+00:00,0.006717319677589567 -2024-05-10 07:00:00+00:00,0.007833234879397976 -2024-05-10 08:00:00+00:00,0.00960268960507063 -2024-05-10 09:00:00+00:00,0.00975259611592183 -2024-05-10 10:00:00+00:00,0.011090932928884543 -2024-05-10 11:00:00+00:00,0.01071746496338967 -2024-05-10 12:00:00+00:00,0.01500981120688999 -2024-05-10 13:00:00+00:00,0.004608972567515086 -2024-05-10 14:00:00+00:00,0.012464508796180551 -2024-05-10 15:00:00+00:00,0.015049073507255706 -2024-05-10 16:00:00+00:00,0.013841020032133847 -2024-05-10 17:00:00+00:00,0.012648862189338944 -2024-05-10 18:00:00+00:00,0.011245062334206968 -2024-05-10 19:00:00+00:00,0.0046511559969041535 -2024-05-10 20:00:00+00:00,-0.0006487801816256744 -2024-05-12 21:00:00+00:00,-0.00875124831241414 -2024-05-12 22:00:00+00:00,-0.008848219626196224 -2024-05-12 23:00:00+00:00,-0.005752962599235481 -2024-05-13 00:00:00+00:00,0.0021295875210481513 -2024-05-13 01:00:00+00:00,0.0007245646735393879 -2024-05-13 02:00:00+00:00,-0.0066849974453991115 -2024-05-13 03:00:00+00:00,-0.010306852153412677 -2024-05-13 04:00:00+00:00,-0.009682030967525207 -2024-05-13 05:00:00+00:00,-0.007044339093295118 -2024-05-13 06:00:00+00:00,-0.005181765474808371 -2024-05-13 07:00:00+00:00,-0.0017210492879194406 -2024-05-13 08:00:00+00:00,-0.0003717546774709493 -2024-05-13 09:00:00+00:00,0.0011158807765036319 -2024-05-13 10:00:00+00:00,0.0006951680498622978 -2024-05-13 11:00:00+00:00,-7.743024374971819e-06 -2024-05-13 12:00:00+00:00,-0.008508784805978893 -2024-05-13 13:00:00+00:00,-0.008541343849659863 -2024-05-13 14:00:00+00:00,-0.0034363007172052984 -2024-05-13 15:00:00+00:00,0.01605247097845059 -2024-05-13 16:00:00+00:00,0.029777666913195902 -2024-05-13 17:00:00+00:00,0.03693319787324039 -2024-05-13 18:00:00+00:00,0.03715045355578578 -2024-05-13 19:00:00+00:00,0.03579466528262033 -2024-05-13 20:00:00+00:00,0.0326127832822274 -2024-05-13 21:00:00+00:00,0.02723009154447774 -2024-05-13 22:00:00+00:00,0.022985517506250802 -2024-05-13 23:00:00+00:00,0.01822042393005835 -2024-05-14 00:00:00+00:00,0.01748549298725792 -2024-05-14 01:00:00+00:00,0.023487229036762647 -2024-05-14 02:00:00+00:00,0.02625946369528437 -2024-05-14 03:00:00+00:00,0.023483815178043654 -2024-05-14 04:00:00+00:00,0.01923737059788999 -2024-05-14 05:00:00+00:00,0.01501363128825045 -2024-05-14 06:00:00+00:00,0.01226767277001578 -2024-05-14 07:00:00+00:00,0.00941522784899615 -2024-05-14 08:00:00+00:00,0.00534775670478696 -2024-05-14 09:00:00+00:00,-0.005279094796724837 -2024-05-14 10:00:00+00:00,-0.008152403093508481 -2024-05-14 11:00:00+00:00,-0.009315254694641867 -2024-05-14 12:00:00+00:00,-0.0024953451953369787 -2024-05-14 13:00:00+00:00,-0.013998178193260546 -2024-05-14 14:00:00+00:00,-0.01911967979425419 -2024-05-14 15:00:00+00:00,-0.015206924185494311 -2024-05-14 16:00:00+00:00,-0.014353691590147044 -2024-05-14 17:00:00+00:00,-0.012877415090067013 -2024-05-14 18:00:00+00:00,-0.01667461977654644 -2024-05-14 19:00:00+00:00,-0.017605036995764906 -2024-05-14 20:00:00+00:00,-0.020287314758494296 -2024-05-14 21:00:00+00:00,-0.022157699521019744 -2024-05-14 22:00:00+00:00,-0.022285754655970172 -2024-05-14 23:00:00+00:00,-0.01666937293539547 -2024-05-15 00:00:00+00:00,-0.0213658966766493 -2024-05-15 01:00:00+00:00,-0.02406279206299515 -2024-05-15 02:00:00+00:00,-0.020715267657751946 -2024-05-15 03:00:00+00:00,-0.022259053454174407 -2024-05-15 04:00:00+00:00,-0.024950062449849472 -2024-05-15 05:00:00+00:00,-0.0336505144323405 -2024-05-15 06:00:00+00:00,-0.03658648985947547 -2024-05-15 07:00:00+00:00,-0.04703165052328731 -2024-05-15 08:00:00+00:00,-0.07997198063276872 -2024-05-15 09:00:00+00:00,-0.08502529541329297 -2024-05-15 10:00:00+00:00,-0.08930782785574048 -2024-05-15 11:00:00+00:00,-0.091083759233805 -2024-05-15 12:00:00+00:00,-0.12232237899099306 -2024-05-15 13:00:00+00:00,-0.09512550853935922 -2024-05-15 14:00:00+00:00,-0.09926457587555843 -2024-05-15 15:00:00+00:00,-0.11392197886315769 -2024-05-15 16:00:00+00:00,-0.11844490904516974 -2024-05-15 17:00:00+00:00,-0.12810640942714405 -2024-05-15 18:00:00+00:00,-0.11523750727187443 -2024-05-15 19:00:00+00:00,-0.09478544054577726 -2024-05-15 20:00:00+00:00,-0.0786689677505703 -2024-05-15 21:00:00+00:00,-0.067530952476827 -2024-05-15 22:00:00+00:00,-0.07040939125940693 -2024-05-15 23:00:00+00:00,-0.0820807904573514 -2024-05-16 00:00:00+00:00,-0.1222047050791139 -2024-05-16 01:00:00+00:00,-0.11006967269273715 -2024-05-16 02:00:00+00:00,-0.09862256200427083 -2024-05-16 03:00:00+00:00,-0.08447195148844844 -2024-05-16 04:00:00+00:00,-0.06930374470562889 -2024-05-16 05:00:00+00:00,-0.03639360296641064 -2024-05-16 06:00:00+00:00,0.0023569774189260984 -2024-05-16 07:00:00+00:00,0.03417992316357121 -2024-05-16 08:00:00+00:00,0.07567761032932546 -2024-05-16 09:00:00+00:00,0.09938482336555404 -2024-05-16 10:00:00+00:00,0.1128970937035888 -2024-05-16 11:00:00+00:00,0.1321363416975328 -2024-05-16 12:00:00+00:00,0.16833349239193562 -2024-05-16 13:00:00+00:00,0.194881766241302 -2024-05-16 14:00:00+00:00,0.19350768522537573 -2024-05-16 15:00:00+00:00,0.18179388589647258 -2024-05-16 16:00:00+00:00,0.16718139930285722 -2024-05-16 17:00:00+00:00,0.14960541822388967 -2024-05-16 18:00:00+00:00,0.13662358224602628 -2024-05-16 19:00:00+00:00,0.12778385122099575 -2024-05-16 20:00:00+00:00,0.11450106338544319 -2024-05-16 21:00:00+00:00,0.09835824690929645 -2024-05-16 22:00:00+00:00,0.0839804871987075 -2024-05-16 23:00:00+00:00,0.07139896360587766 -2024-05-17 00:00:00+00:00,0.06235462750342262 -2024-05-17 01:00:00+00:00,0.07653625530458473 -2024-05-17 02:00:00+00:00,0.08412740191775699 -2024-05-17 03:00:00+00:00,0.07812742351504948 -2024-05-17 04:00:00+00:00,0.07012701821861955 -2024-05-17 05:00:00+00:00,0.05953690331037276 -2024-05-17 06:00:00+00:00,0.038617137339655716 -2024-05-17 07:00:00+00:00,0.03322759003058251 -2024-05-17 08:00:00+00:00,0.029227312533570943 -2024-05-17 09:00:00+00:00,0.021454563852984 -2024-05-17 10:00:00+00:00,0.014100935583382906 -2024-05-17 11:00:00+00:00,0.00800153096650763 -2024-05-17 12:00:00+00:00,-0.0022432952350319446 -2024-05-17 13:00:00+00:00,-0.013331692121243327 -2024-05-17 14:00:00+00:00,-0.04309955822181055 -2024-05-17 15:00:00+00:00,-0.049922908209361155 -2024-05-17 16:00:00+00:00,-0.05018990061514089 -2024-05-17 17:00:00+00:00,-0.0468572826255835 -2024-05-17 18:00:00+00:00,-0.04267657363302746 -2024-05-17 19:00:00+00:00,-0.03917108904472287 -2024-05-17 20:00:00+00:00,-0.03816165406931987 -2024-05-19 21:00:00+00:00,-0.036066108538721914 -2024-05-19 22:00:00+00:00,-0.03050948274827972 -2024-05-19 23:00:00+00:00,-0.02217563949678321 -2024-05-20 00:00:00+00:00,-0.009807079330189927 -2024-05-20 01:00:00+00:00,-0.0028746961501859847 -2024-05-20 02:00:00+00:00,-0.002386800236933523 -2024-05-20 03:00:00+00:00,-0.008447209290352059 -2024-05-20 04:00:00+00:00,-0.009851087855576798 -2024-05-20 05:00:00+00:00,-0.015068787095205802 -2024-05-20 06:00:00+00:00,-0.015732012980700136 -2024-05-20 07:00:00+00:00,-0.01691611321208003 -2024-05-20 08:00:00+00:00,-0.02049586022764359 -2024-05-20 09:00:00+00:00,-0.020492639320925835 -2024-05-20 10:00:00+00:00,-0.02036694607888158 -2024-05-20 11:00:00+00:00,-0.016997592680276 -2024-05-20 12:00:00+00:00,0.011432749909426138 -2024-05-20 13:00:00+00:00,0.02335811562863476 -2024-05-20 14:00:00+00:00,0.03466237555510013 -2024-05-20 17:00:00+00:00,0.03980033474800797 -2024-05-20 18:00:00+00:00,0.0462016418658773 -2024-05-20 19:00:00+00:00,0.04835904920889755 -2024-05-20 20:00:00+00:00,0.04520807625294737 -2024-05-20 21:00:00+00:00,0.037005159637760465 -2024-05-20 22:00:00+00:00,0.031086863914256163 -2024-05-20 23:00:00+00:00,0.033094048949557725 -2024-05-21 00:00:00+00:00,0.0329958161020672 -2024-05-21 01:00:00+00:00,0.03329478809016123 -2024-05-21 02:00:00+00:00,0.027369395829760945 -2024-05-21 03:00:00+00:00,0.023534520852168395 -2024-05-21 04:00:00+00:00,0.01643482503445895 -2024-05-21 05:00:00+00:00,0.005070815707318932 -2024-05-21 06:00:00+00:00,-0.012147062146932452 -2024-05-21 07:00:00+00:00,-0.02482854249044153 -2024-05-21 08:00:00+00:00,-0.03158406977220399 -2024-05-21 09:00:00+00:00,-0.04453766363123707 -2024-05-21 10:00:00+00:00,-0.04515165176111818 -2024-05-21 11:00:00+00:00,-0.04376754312921888 -2024-05-21 12:00:00+00:00,-0.040784780015006614 -2024-05-21 13:00:00+00:00,-0.05013748992410347 -2024-05-21 14:00:00+00:00,-0.060682234621997885 -2024-05-21 15:00:00+00:00,-0.05660498092504844 -2024-05-21 16:00:00+00:00,-0.04931888915516861 -2024-05-21 17:00:00+00:00,-0.036270588271925454 -2024-05-21 18:00:00+00:00,-0.027104299527360383 -2024-05-21 19:00:00+00:00,-0.023151170166847826 -2024-05-21 20:00:00+00:00,-0.018152775018853408 -2024-05-21 21:00:00+00:00,-0.016931843624256378 -2024-05-21 22:00:00+00:00,-0.013509093678470759 -2024-05-21 23:00:00+00:00,-0.005536404253421175 -2024-05-22 00:00:00+00:00,-0.00047790763916424894 -2024-05-22 01:00:00+00:00,0.0015326789182279268 -2024-05-22 02:00:00+00:00,0.005353062773875532 -2024-05-22 03:00:00+00:00,0.007861702733405578 -2024-05-22 04:00:00+00:00,0.01131327148327567 -2024-05-22 05:00:00+00:00,0.009150267161033829 -2024-05-22 06:00:00+00:00,0.011984621784473223 -2024-05-22 07:00:00+00:00,0.014456808731411627 -2024-05-22 08:00:00+00:00,0.019666515405903327 -2024-05-22 09:00:00+00:00,0.019126542664231458 -2024-05-22 10:00:00+00:00,0.016435301525831156 -2024-05-22 11:00:00+00:00,0.02347594514089886 -2024-05-22 12:00:00+00:00,0.0238131302007194 -2024-05-22 13:00:00+00:00,0.015090441780737679 -2024-05-22 14:00:00+00:00,0.01374796118967267 -2024-05-22 15:00:00+00:00,0.010177984861531167 -2024-05-22 16:00:00+00:00,0.006013980369234825 -2024-05-22 17:00:00+00:00,0.002639492407617794 -2024-05-22 18:00:00+00:00,0.008482305361423442 -2024-05-22 19:00:00+00:00,0.015692390676313533 -2024-05-22 20:00:00+00:00,0.026408972963025315 -2024-05-22 21:00:00+00:00,0.022810788985816233 -2024-05-22 22:00:00+00:00,0.021226022034051967 -2024-05-22 23:00:00+00:00,0.01761940505338841 -2024-05-23 00:00:00+00:00,0.017553127736738686 -2024-05-23 01:00:00+00:00,0.012075031977138023 -2024-05-23 02:00:00+00:00,0.00620872219736085 -2024-05-23 03:00:00+00:00,0.0026898940066788363 -2024-05-23 04:00:00+00:00,-0.0029444883916879133 -2024-05-23 05:00:00+00:00,-0.0073691662283498355 -2024-05-23 06:00:00+00:00,-0.01557320472388063 -2024-05-23 07:00:00+00:00,-0.013810424053748938 -2024-05-23 08:00:00+00:00,-0.013009143693140199 -2024-05-23 09:00:00+00:00,-0.01863027447717576 -2024-05-23 10:00:00+00:00,-0.019196697072630345 -2024-05-23 11:00:00+00:00,-0.027115212731064695 -2024-05-23 12:00:00+00:00,-0.021104576297071048 -2024-05-23 13:00:00+00:00,0.004665323416104622 -2024-05-23 14:00:00+00:00,0.013633911186183595 -2024-05-23 15:00:00+00:00,0.021781365704345537 -2024-05-23 16:00:00+00:00,0.02447016617378761 -2024-05-23 17:00:00+00:00,0.017222915497088556 -2024-05-23 18:00:00+00:00,0.00785384096823405 -2024-05-23 19:00:00+00:00,-0.0005211975176539624 -2024-05-23 20:00:00+00:00,-0.0024722884377050003 -2024-05-23 21:00:00+00:00,-0.0030970364284969576 -2024-05-23 22:00:00+00:00,-0.0015742959959176156 -2024-05-23 23:00:00+00:00,-0.0026108476830205285 -2024-05-24 00:00:00+00:00,-0.0010430775386944258 -2024-05-24 01:00:00+00:00,0.002970670652122684 -2024-05-24 02:00:00+00:00,0.0023014720252071408 -2024-05-24 03:00:00+00:00,0.00013091663827083377 -2024-05-24 04:00:00+00:00,-0.0005697384677764705 -2024-05-24 05:00:00+00:00,-0.0018426844384195756 -2024-05-24 06:00:00+00:00,-0.006083743334458061 -2024-05-24 07:00:00+00:00,-0.008438997003202636 -2024-05-24 08:00:00+00:00,-0.012213723563359508 -2024-05-24 09:00:00+00:00,-0.015184627013999863 -2024-05-24 10:00:00+00:00,-0.019631161777458633 -2024-05-24 11:00:00+00:00,-0.018853530500317933 -2024-05-24 12:00:00+00:00,-0.015309828175243859 -2024-05-24 13:00:00+00:00,-0.012991255849280237 -2024-05-24 14:00:00+00:00,-0.017084641716844345 -2024-05-24 15:00:00+00:00,-0.024496673707581823 -2024-05-24 16:00:00+00:00,-0.0278007952125851 -2024-05-24 17:00:00+00:00,-0.026506692276803134 -2024-05-24 18:00:00+00:00,-0.023359018865817482 -2024-05-24 19:00:00+00:00,-0.0235009308427145 -2024-05-24 20:00:00+00:00,-0.018687563219236272 -2024-05-26 21:00:00+00:00,-0.019657256569011686 -2024-05-26 22:00:00+00:00,-0.023198759751374937 -2024-05-26 23:00:00+00:00,-0.024029366913255117 -2024-05-27 00:00:00+00:00,-0.025870504588466167 -2024-05-27 01:00:00+00:00,-0.027296096326459275 -2024-05-27 02:00:00+00:00,-0.031898075895736455 -2024-05-27 03:00:00+00:00,-0.03453940144246177 -2024-05-27 04:00:00+00:00,-0.029863417028562156 -2024-05-27 05:00:00+00:00,-0.025692102666718994 -2024-05-27 06:00:00+00:00,-0.017785249597075423 -2024-05-27 07:00:00+00:00,-0.006251728097464618 -2024-05-27 08:00:00+00:00,0.004220402067280686 -2024-05-27 09:00:00+00:00,0.007406009125604202 -2024-05-27 10:00:00+00:00,0.0069894080340996805 -2024-05-27 11:00:00+00:00,0.007958528141226339 -2024-05-27 12:00:00+00:00,0.004749471699036532 -2024-05-27 13:00:00+00:00,0.002461350357504638 -2024-05-27 14:00:00+00:00,-0.004751163934055901 -2024-05-27 15:00:00+00:00,0.00020824412513635246 -2024-05-27 16:00:00+00:00,0.005580196952339765 -2024-05-27 17:00:00+00:00,0.007214975304852687 -2024-05-27 18:00:00+00:00,0.0080644821862659 -2024-05-27 19:00:00+00:00,0.009060877284135512 -2024-05-27 20:00:00+00:00,0.010267907812232567 -2024-05-27 21:00:00+00:00,0.010307747761053533 -2024-05-27 22:00:00+00:00,0.011760233918647202 -2024-05-27 23:00:00+00:00,0.006783797664579334 -2024-05-28 00:00:00+00:00,0.007149174682238227 -2024-05-28 01:00:00+00:00,-0.00040466014366013266 -2024-05-28 02:00:00+00:00,-0.006781606982828141 -2024-05-28 03:00:00+00:00,-0.016474575290704858 -2024-05-28 04:00:00+00:00,-0.019531630339330086 -2024-05-28 05:00:00+00:00,-0.01082180209965622 -2024-05-28 06:00:00+00:00,-0.0016780395993238884 -2024-05-28 07:00:00+00:00,0.004964762043564264 -2024-05-28 08:00:00+00:00,0.007510666967011161 -2024-05-28 09:00:00+00:00,0.0134646332510697 -2024-05-28 10:00:00+00:00,0.011766886751940911 -2024-05-28 11:00:00+00:00,0.0061011864462315515 -2024-05-28 12:00:00+00:00,-0.005469875400796138 -2024-05-28 13:00:00+00:00,-0.0029563107542608207 -2024-05-28 14:00:00+00:00,0.0015593430309507259 -2024-05-28 15:00:00+00:00,0.006898142418574423 -2024-05-28 16:00:00+00:00,0.013797453515164261 -2024-05-28 17:00:00+00:00,0.02562134378267507 -2024-05-28 18:00:00+00:00,0.03538640431132812 -2024-05-28 19:00:00+00:00,0.03854596974100826 -2024-05-28 20:00:00+00:00,0.0416514562491669 -2024-05-28 21:00:00+00:00,0.03897700122030062 -2024-05-28 22:00:00+00:00,0.03873001409287817 -2024-05-28 23:00:00+00:00,0.03973773776373338 -2024-05-29 00:00:00+00:00,0.04419647018063701 -2024-05-29 01:00:00+00:00,0.03580569852778126 -2024-05-29 02:00:00+00:00,0.03095126517762309 -2024-05-29 03:00:00+00:00,0.02702946712116952 -2024-05-29 04:00:00+00:00,0.018475524549491612 -2024-05-29 05:00:00+00:00,0.009211440468781404 -2024-05-29 06:00:00+00:00,-0.005904327763716313 -2024-05-29 07:00:00+00:00,-0.012650058719032506 -2024-05-29 08:00:00+00:00,-0.02040419509442047 -2024-05-29 09:00:00+00:00,-0.02125362983747915 -2024-05-29 10:00:00+00:00,-0.016661278648170283 -2024-05-29 11:00:00+00:00,-0.011222139236245654 -2024-05-29 12:00:00+00:00,-0.012659378869301421 -2024-05-29 13:00:00+00:00,-0.004390153196277391 -2024-05-29 14:00:00+00:00,0.010305228424049379 -2024-05-29 15:00:00+00:00,0.026575296950003602 -2024-05-29 16:00:00+00:00,0.03832400257222454 -2024-05-29 17:00:00+00:00,0.03964326311089514 -2024-05-29 18:00:00+00:00,0.039626720450751274 -2024-05-29 19:00:00+00:00,0.037726207149156865 -2024-05-29 20:00:00+00:00,0.032105793385773906 -2024-05-29 21:00:00+00:00,0.02169493197832778 -2024-05-29 22:00:00+00:00,0.015159584595457659 -2024-05-29 23:00:00+00:00,0.00810667541649554 -2024-05-30 00:00:00+00:00,-0.014618528368092354 -2024-05-30 01:00:00+00:00,-0.023988935118225252 -2024-05-30 02:00:00+00:00,-0.03675973508808253 -2024-05-30 03:00:00+00:00,-0.04159120742497156 -2024-05-30 04:00:00+00:00,-0.05584027481545473 -2024-05-30 05:00:00+00:00,-0.07677713665592806 -2024-05-30 06:00:00+00:00,-0.10076087830212316 -2024-05-30 07:00:00+00:00,-0.0965771100005536 -2024-05-30 08:00:00+00:00,-0.09069210939195582 -2024-05-30 09:00:00+00:00,-0.08409787578090411 -2024-05-30 10:00:00+00:00,-0.07517094797405441 -2024-05-30 11:00:00+00:00,-0.0774591939284474 -2024-05-30 12:00:00+00:00,-0.07977954001609054 -2024-05-30 13:00:00+00:00,-0.07103135057463968 -2024-05-30 14:00:00+00:00,-0.06974602093051528 -2024-05-30 15:00:00+00:00,-0.06117659557166266 -2024-05-30 16:00:00+00:00,-0.04796852375378355 -2024-05-30 17:00:00+00:00,-0.03256373250990455 -2024-05-30 18:00:00+00:00,-0.015111416762230795 -2024-05-30 19:00:00+00:00,-0.0010852494062815188 -2024-05-30 20:00:00+00:00,0.00750796659352107 -2024-05-30 21:00:00+00:00,0.011909242861019409 -2024-05-30 22:00:00+00:00,0.016360839303169394 -2024-05-30 23:00:00+00:00,0.03174141692032434 -2024-05-31 00:00:00+00:00,0.024886040397346737 -2024-05-31 01:00:00+00:00,0.01639396924444901 -2024-05-31 02:00:00+00:00,0.019792114943983558 -2024-05-31 03:00:00+00:00,0.021293645642755335 -2024-05-31 04:00:00+00:00,0.01599085046815253 -2024-05-31 05:00:00+00:00,0.019109215004945154 -2024-05-31 06:00:00+00:00,0.02921330563013913 -2024-05-31 07:00:00+00:00,0.04833270630500888 -2024-05-31 08:00:00+00:00,0.0682888735709564 -2024-05-31 09:00:00+00:00,0.08010106383830443 -2024-05-31 10:00:00+00:00,0.07783832506950578 -2024-05-31 11:00:00+00:00,0.06784361862362291 -2024-05-31 12:00:00+00:00,0.03856627632229358 -2024-05-31 13:00:00+00:00,0.007711926012673044 -2024-05-31 14:00:00+00:00,0.017418854173329938 -2024-05-31 15:00:00+00:00,0.024686291456408632 -2024-05-31 16:00:00+00:00,0.026924219131925286 -2024-05-31 17:00:00+00:00,0.02927721986106709 -2024-05-31 18:00:00+00:00,0.031895175241114126 -2024-05-31 19:00:00+00:00,0.031597471088499814 -2024-05-31 20:00:00+00:00,0.031585677711766236 -2024-06-02 21:00:00+00:00,0.024725590393921054 -2024-06-02 22:00:00+00:00,0.02274704286889502 -2024-06-02 23:00:00+00:00,0.012775750029318605 -2024-06-03 00:00:00+00:00,-0.0007543826421294447 -2024-06-03 01:00:00+00:00,-0.011592170059248896 -2024-06-03 02:00:00+00:00,-0.007256723913806835 -2024-06-03 03:00:00+00:00,0.007207908994716836 -2024-06-03 04:00:00+00:00,0.014610734254087127 -2024-06-03 05:00:00+00:00,0.017931798103241914 -2024-06-03 06:00:00+00:00,0.008396336244283598 -2024-06-03 07:00:00+00:00,-0.006100094921184324 -2024-06-03 08:00:00+00:00,-0.020762334742065458 -2024-06-03 09:00:00+00:00,-0.028713699416760274 -2024-06-03 10:00:00+00:00,-0.053802190582318235 -2024-06-03 11:00:00+00:00,-0.05960378100168186 -2024-06-03 12:00:00+00:00,-0.06512972910567055 -2024-06-03 13:00:00+00:00,-0.07298039932429093 -2024-06-03 14:00:00+00:00,-0.10353591915466939 -2024-06-03 15:00:00+00:00,-0.12733934956734438 -2024-06-03 16:00:00+00:00,-0.13337493305367143 -2024-06-03 17:00:00+00:00,-0.12165473019702935 -2024-06-03 18:00:00+00:00,-0.10450334487017576 -2024-06-03 19:00:00+00:00,-0.08601270789278709 -2024-06-03 20:00:00+00:00,-0.07811347316882888 -2024-06-03 21:00:00+00:00,-0.06541014624015293 -2024-06-03 22:00:00+00:00,-0.049255288865503094 -2024-06-03 23:00:00+00:00,-0.03862780598225901 -2024-06-04 00:00:00+00:00,-0.00895948500319746 -2024-06-04 01:00:00+00:00,0.016940901112802553 -2024-06-04 02:00:00+00:00,0.028744804336200885 -2024-06-04 03:00:00+00:00,0.037538411550635004 -2024-06-04 04:00:00+00:00,0.03726165345463531 -2024-06-04 05:00:00+00:00,0.03046353540964905 -2024-06-04 06:00:00+00:00,0.010675147720585337 -2024-06-04 07:00:00+00:00,-0.03640866192401243 -2024-06-04 08:00:00+00:00,-0.0676723114638649 -2024-06-04 09:00:00+00:00,-0.09143902589328157 -2024-06-04 10:00:00+00:00,-0.11326447396796907 -2024-06-04 11:00:00+00:00,-0.12257915730819713 -2024-06-04 12:00:00+00:00,-0.10318209779691367 -2024-06-04 13:00:00+00:00,-0.09790520007888659 -2024-06-04 14:00:00+00:00,-0.08627960251037825 -2024-06-04 15:00:00+00:00,-0.07172572387670861 -2024-06-04 16:00:00+00:00,-0.060913694113240546 -2024-06-04 17:00:00+00:00,-0.05887379296454015 -2024-06-04 18:00:00+00:00,-0.04398917227741184 -2024-06-04 19:00:00+00:00,-0.024286452970299965 -2024-06-04 20:00:00+00:00,0.0010962686830691681 -2024-06-04 21:00:00+00:00,0.017218823449853538 -2024-06-04 22:00:00+00:00,0.03169446430917 -2024-06-04 23:00:00+00:00,0.05949538031691293 -2024-06-05 00:00:00+00:00,0.08454651676299446 -2024-06-05 01:00:00+00:00,0.10802748332991696 -2024-06-05 02:00:00+00:00,0.12789845233298586 -2024-06-05 03:00:00+00:00,0.13715362630595151 -2024-06-05 04:00:00+00:00,0.14457320766137433 -2024-06-05 05:00:00+00:00,0.14782638092860387 -2024-06-05 06:00:00+00:00,0.1602136588332864 -2024-06-05 07:00:00+00:00,0.17692858967171868 -2024-06-05 08:00:00+00:00,0.18601442092681347 -2024-06-05 09:00:00+00:00,0.16957092813583183 -2024-06-05 10:00:00+00:00,0.1526626268967379 -2024-06-05 11:00:00+00:00,0.139000835010037 -2024-06-05 12:00:00+00:00,0.11973222933485174 -2024-06-05 13:00:00+00:00,0.07854128043313242 -2024-06-05 14:00:00+00:00,0.08423855069267192 -2024-06-05 15:00:00+00:00,0.07594832124325206 -2024-06-05 16:00:00+00:00,0.06010974885622827 -2024-06-05 17:00:00+00:00,0.044572904351134174 -2024-06-05 18:00:00+00:00,0.030831500727645622 -2024-06-05 19:00:00+00:00,0.018801702859277097 -2024-06-05 20:00:00+00:00,0.010027916912883073 -2024-06-05 21:00:00+00:00,-0.0005437666098084826 -2024-06-05 22:00:00+00:00,-0.019664121006257695 -2024-06-05 23:00:00+00:00,-0.03020430951814862 -2024-06-06 00:00:00+00:00,-0.05337999828404444 -2024-06-06 01:00:00+00:00,-0.06648239184758116 -2024-06-06 02:00:00+00:00,-0.07192212187960256 -2024-06-06 03:00:00+00:00,-0.0775982772476996 -2024-06-06 04:00:00+00:00,-0.06737669385046068 -2024-06-06 05:00:00+00:00,-0.04680717099756583 -2024-06-06 06:00:00+00:00,-0.021935901145933308 -2024-06-06 07:00:00+00:00,0.008143065843493016 -2024-06-06 08:00:00+00:00,0.01863948561084082 -2024-06-06 09:00:00+00:00,0.011674349534661205 -2024-06-06 10:00:00+00:00,0.010376668554172339 -2024-06-06 11:00:00+00:00,0.018546839756765666 -2024-06-06 12:00:00+00:00,0.02784111027087842 -2024-06-06 13:00:00+00:00,0.02229211691848805 -2024-06-06 14:00:00+00:00,0.01016862138241846 -2024-06-06 15:00:00+00:00,-0.001698045263823042 -2024-06-06 16:00:00+00:00,-0.021201727698463152 -2024-06-06 17:00:00+00:00,-0.03542311478979226 -2024-06-06 18:00:00+00:00,-0.048443028975554144 -2024-06-06 19:00:00+00:00,-0.058704410729932696 -2024-06-06 20:00:00+00:00,-0.06197020818866744 -2024-06-06 21:00:00+00:00,-0.06117704443703267 -2024-06-06 22:00:00+00:00,-0.0569761345634917 -2024-06-06 23:00:00+00:00,-0.04766642607799562 -2024-06-07 00:00:00+00:00,-0.032981303919109514 -2024-06-07 01:00:00+00:00,-0.027491709385385595 -2024-06-07 02:00:00+00:00,-0.01395092183018827 -2024-06-07 03:00:00+00:00,-0.008294827405519602 -2024-06-07 04:00:00+00:00,-0.014814427465749819 -2024-06-07 05:00:00+00:00,-0.021825311296946752 -2024-06-07 06:00:00+00:00,-0.03453426327081077 -2024-06-07 07:00:00+00:00,-0.03634892141121532 -2024-06-07 08:00:00+00:00,-0.03881539296964802 -2024-06-07 09:00:00+00:00,-0.029411105442325808 -2024-06-07 10:00:00+00:00,-0.01541748175347181 -2024-06-07 11:00:00+00:00,-0.00396828750881309 -2024-06-07 12:00:00+00:00,0.08008926849696438 -2024-06-07 13:00:00+00:00,0.14061152291348128 -2024-06-07 14:00:00+00:00,0.16584983132075315 -2024-06-07 15:00:00+00:00,0.15565699197364669 -2024-06-07 16:00:00+00:00,0.14507033537425107 -2024-06-07 17:00:00+00:00,0.1262925061754981 -2024-06-07 18:00:00+00:00,0.10894835241965295 -2024-06-07 19:00:00+00:00,0.09788619964561507 -2024-06-07 20:00:00+00:00,0.0861404994850094 -2024-06-09 21:00:00+00:00,0.07157778524557243 -2024-06-09 22:00:00+00:00,0.06631577931515786 -2024-06-09 23:00:00+00:00,0.05258518111591873 -2024-06-10 00:00:00+00:00,0.04001778679942403 -2024-06-10 01:00:00+00:00,0.031937944278308456 -2024-06-10 02:00:00+00:00,0.027787389910949645 -2024-06-10 03:00:00+00:00,0.032380378797809195 -2024-06-10 04:00:00+00:00,0.0295031802698405 -2024-06-10 05:00:00+00:00,0.019921413871292204 -2024-06-10 06:00:00+00:00,0.012848372370494021 -2024-06-10 07:00:00+00:00,-0.0013728607450655406 -2024-06-10 08:00:00+00:00,-0.015624387813125806 -2024-06-10 09:00:00+00:00,-0.02994183243459314 -2024-06-10 10:00:00+00:00,-0.044375252596709824 -2024-06-10 11:00:00+00:00,-0.04991875676413535 -2024-06-10 12:00:00+00:00,-0.0469331526668893 -2024-06-10 13:00:00+00:00,-0.04981930006544627 -2024-06-10 14:00:00+00:00,-0.05063258358047357 -2024-06-10 15:00:00+00:00,-0.04807407069118355 -2024-06-10 16:00:00+00:00,-0.04221419646758967 -2024-06-10 17:00:00+00:00,-0.03743167505025968 -2024-06-10 18:00:00+00:00,-0.029150209676813255 -2024-06-10 19:00:00+00:00,-0.028233106482263542 -2024-06-10 20:00:00+00:00,-0.026491068509826077 -2024-06-10 21:00:00+00:00,-0.026177449320117868 -2024-06-10 22:00:00+00:00,-0.02492901749743781 -2024-06-10 23:00:00+00:00,-0.023613831122880957 -2024-06-11 00:00:00+00:00,-0.011805830967689085 -2024-06-11 01:00:00+00:00,-0.004670775274963235 -2024-06-11 02:00:00+00:00,0.0032563140750966335 -2024-06-11 03:00:00+00:00,0.002450024249430971 -2024-06-11 04:00:00+00:00,0.0034817181693970467 -2024-06-11 05:00:00+00:00,0.0036888761389153035 -2024-06-11 06:00:00+00:00,0.0023388810695043893 -2024-06-11 07:00:00+00:00,0.004098843652172196 -2024-06-11 08:00:00+00:00,-0.003908349614153539 -2024-06-11 09:00:00+00:00,-0.008355187470183906 -2024-06-11 10:00:00+00:00,-0.02142258328408156 -2024-06-11 11:00:00+00:00,-0.02939523437185286 -2024-06-11 12:00:00+00:00,-0.047219005666822675 -2024-06-11 13:00:00+00:00,-0.04120207567755543 -2024-06-11 14:00:00+00:00,-0.024675731354189462 -2024-06-11 15:00:00+00:00,-0.013540478190290306 -2024-06-11 16:00:00+00:00,-0.003082422549821079 -2024-06-11 17:00:00+00:00,-0.013756406057266551 -2024-06-11 18:00:00+00:00,-0.027256720593616807 -2024-06-11 19:00:00+00:00,-0.030335330464507565 -2024-06-11 20:00:00+00:00,-0.027991462522275357 -2024-06-11 21:00:00+00:00,-0.026583745238834403 -2024-06-11 22:00:00+00:00,-0.023542375951862274 -2024-06-11 23:00:00+00:00,-0.02277372419579235 -2024-06-12 00:00:00+00:00,-0.017163824775188782 -2024-06-12 01:00:00+00:00,-0.015922063825581867 -2024-06-12 02:00:00+00:00,-0.011575747930178397 -2024-06-12 03:00:00+00:00,-0.008739715584827619 -2024-06-12 04:00:00+00:00,-0.003086172138890536 -2024-06-12 05:00:00+00:00,0.00047020942793298687 -2024-06-12 06:00:00+00:00,0.005204969337298075 -2024-06-12 07:00:00+00:00,0.006142463370757849 -2024-06-12 08:00:00+00:00,0.0085934549722598 -2024-06-12 09:00:00+00:00,0.01012192935301328 -2024-06-12 10:00:00+00:00,0.01096899273478106 -2024-06-12 11:00:00+00:00,0.010936649905175538 -2024-06-12 12:00:00+00:00,-0.06484732705080239 -2024-06-12 13:00:00+00:00,-0.1335744848334937 -2024-06-12 14:00:00+00:00,-0.169465347718203 -2024-06-12 15:00:00+00:00,-0.17606176891396333 -2024-06-12 16:00:00+00:00,-0.1755476467003937 -2024-06-12 17:00:00+00:00,-0.15795062471842067 -2024-06-12 18:00:00+00:00,-0.09249259634230789 -2024-06-12 19:00:00+00:00,-0.02980440340304316 -2024-06-12 20:00:00+00:00,0.006039963258551301 -2024-06-12 21:00:00+00:00,0.02150709317294841 -2024-06-12 22:00:00+00:00,0.045167975368353735 -2024-06-12 23:00:00+00:00,0.059091908529998294 -2024-06-13 00:00:00+00:00,0.06592067734854223 -2024-06-13 01:00:00+00:00,0.07060208991742797 -2024-06-13 02:00:00+00:00,0.08163610066831006 -2024-06-13 03:00:00+00:00,0.08593175507076395 -2024-06-13 04:00:00+00:00,0.08743360935427825 -2024-06-13 05:00:00+00:00,0.0867787199556121 -2024-06-13 06:00:00+00:00,0.08677837009792727 -2024-06-13 07:00:00+00:00,0.09043665967137361 -2024-06-13 08:00:00+00:00,0.08692810827316581 -2024-06-13 09:00:00+00:00,0.07533952794436438 -2024-06-13 10:00:00+00:00,0.06333428633623664 -2024-06-13 11:00:00+00:00,0.05436084967131542 -2024-06-13 12:00:00+00:00,0.03346667124682477 -2024-06-13 13:00:00+00:00,0.028073109229533155 -2024-06-13 14:00:00+00:00,0.007214358218819106 -2024-06-13 15:00:00+00:00,-0.017729612297692834 -2024-06-13 16:00:00+00:00,-0.028314595759883487 -2024-06-13 17:00:00+00:00,-0.028386780007590588 -2024-06-13 18:00:00+00:00,-0.030161376103362378 -2024-06-13 19:00:00+00:00,-0.01956716575334458 -2024-06-13 20:00:00+00:00,-0.01596253466190152 -2024-06-13 21:00:00+00:00,-0.01312617314661614 -2024-06-13 22:00:00+00:00,-0.006167610549072763 -2024-06-13 23:00:00+00:00,0.0008541451389059707 -2024-06-14 00:00:00+00:00,0.009842906123529581 -2024-06-14 01:00:00+00:00,0.01791164898351571 -2024-06-14 02:00:00+00:00,0.02621629447811679 -2024-06-14 03:00:00+00:00,0.06084948717201434 -2024-06-14 04:00:00+00:00,0.0869286914001978 -2024-06-14 05:00:00+00:00,0.11080368544784983 -2024-06-14 06:00:00+00:00,0.10690412371609564 -2024-06-14 07:00:00+00:00,0.07936646046136137 -2024-06-14 08:00:00+00:00,0.044848790085441376 -2024-06-14 09:00:00+00:00,-0.005929722067728821 -2024-06-14 10:00:00+00:00,-0.04782366667023619 -2024-06-14 11:00:00+00:00,-0.06639991219821839 -2024-06-14 12:00:00+00:00,-0.06387525560691962 -2024-06-14 13:00:00+00:00,-0.0584501859402306 -2024-06-14 14:00:00+00:00,-0.046444404753708354 -2024-06-14 15:00:00+00:00,-0.04340954754342859 -2024-06-14 16:00:00+00:00,-0.03833570745400344 -2024-06-14 17:00:00+00:00,-0.033821735906605394 -2024-06-14 18:00:00+00:00,-0.03211565828233265 -2024-06-14 19:00:00+00:00,-0.028292874004850345 -2024-06-14 20:00:00+00:00,-0.01836533037640259 -2024-06-16 21:00:00+00:00,-0.015619916324173519 -2024-06-16 22:00:00+00:00,-0.002487289144486163 -2024-06-16 23:00:00+00:00,0.007921510055868705 -2024-06-17 00:00:00+00:00,0.006997257208379522 -2024-06-17 01:00:00+00:00,0.0076813718711693305 -2024-06-17 02:00:00+00:00,0.0045338855224806435 -2024-06-17 03:00:00+00:00,-0.003157947214046379 -2024-06-17 04:00:00+00:00,-0.0073526293101144405 -2024-06-17 05:00:00+00:00,-0.005672560993350971 -2024-06-17 06:00:00+00:00,-0.011298276486824195 -2024-06-17 07:00:00+00:00,-0.0017818855757223973 -2024-06-17 08:00:00+00:00,0.010093443582401516 -2024-06-17 09:00:00+00:00,0.016866737421374824 -2024-06-17 10:00:00+00:00,0.018197952152656363 -2024-06-17 11:00:00+00:00,0.03132315515610623 -2024-06-17 12:00:00+00:00,0.040232162035628294 -2024-06-17 13:00:00+00:00,0.04274893357757552 -2024-06-17 14:00:00+00:00,0.03911527914377032 -2024-06-17 15:00:00+00:00,0.03102599309624894 -2024-06-17 16:00:00+00:00,0.021646060649276377 -2024-06-17 17:00:00+00:00,0.011325192876451284 -2024-06-17 18:00:00+00:00,0.00041924829744974246 -2024-06-17 19:00:00+00:00,-0.005560151881989425 -2024-06-17 20:00:00+00:00,-0.010359184959664508 -2024-06-17 21:00:00+00:00,-0.013505026245363039 -2024-06-17 22:00:00+00:00,-0.0173973356367991 -2024-06-17 23:00:00+00:00,-0.020492740817267915 -2024-06-18 00:00:00+00:00,-0.02313495917609884 -2024-06-18 01:00:00+00:00,-0.03015203256088171 -2024-06-18 02:00:00+00:00,-0.029965779248724192 -2024-06-18 03:00:00+00:00,-0.02980095774343937 -2024-06-18 04:00:00+00:00,-0.023782879676962923 -2024-06-18 05:00:00+00:00,-0.011677023517090317 -2024-06-18 06:00:00+00:00,0.0040194453095103305 -2024-06-18 07:00:00+00:00,0.0235595158569486 -2024-06-18 08:00:00+00:00,0.035432371213042116 -2024-06-18 09:00:00+00:00,0.03701008760152247 -2024-06-18 10:00:00+00:00,0.03573319252423593 -2024-06-18 11:00:00+00:00,0.03092949913615453 -2024-06-18 12:00:00+00:00,0.009290901846854216 -2024-06-18 13:00:00+00:00,-0.007682628176404818 -2024-06-18 14:00:00+00:00,-0.008188996223902276 -2024-06-18 15:00:00+00:00,-0.01862287423229686 -2024-06-18 16:00:00+00:00,-0.03188173952463909 -2024-06-18 17:00:00+00:00,-0.029997666610327628 -2024-06-18 18:00:00+00:00,-0.03192676293500653 -2024-06-18 19:00:00+00:00,-0.027520418945850902 -2024-06-18 20:00:00+00:00,-0.024672090697989917 -2024-06-18 21:00:00+00:00,-0.023659189886859354 -2024-06-18 22:00:00+00:00,-0.02041353710732416 -2024-06-18 23:00:00+00:00,-0.017359860818993926 -2024-06-19 00:00:00+00:00,-0.01397266482444634 -2024-06-19 01:00:00+00:00,-0.01894607264491366 -2024-06-19 02:00:00+00:00,-0.017113398634334857 -2024-06-19 03:00:00+00:00,-0.013688395507050408 -2024-06-19 04:00:00+00:00,-0.011328226953768485 -2024-06-19 05:00:00+00:00,-0.013690075853699597 -2024-06-19 06:00:00+00:00,-0.02230273318464017 -2024-06-19 07:00:00+00:00,-0.021695056536630564 -2024-06-19 08:00:00+00:00,-0.01688610276530782 -2024-06-19 09:00:00+00:00,-0.009657476344587971 -2024-06-19 10:00:00+00:00,-0.005864042978511777 -2024-06-19 11:00:00+00:00,0.0014620102975672804 -2024-06-19 12:00:00+00:00,0.004552187196698268 -2024-06-19 13:00:00+00:00,0.006601925897431304 -2024-06-19 14:00:00+00:00,0.007877040277779067 -2024-06-19 15:00:00+00:00,0.010624003412251459 -2024-06-19 16:00:00+00:00,0.01170020700684918 -2024-06-19 17:00:00+00:00,0.012156668691121485 -2024-06-19 18:00:00+00:00,0.01676792396451839 -2024-06-19 19:00:00+00:00,0.017704515857323213 -2024-06-19 20:00:00+00:00,0.021992039809281015 -2024-06-19 21:00:00+00:00,0.01808560644056227 -2024-06-19 22:00:00+00:00,0.014439968736449357 -2024-06-19 23:00:00+00:00,0.00811656124595482 -2024-06-20 00:00:00+00:00,0.00814970103702918 -2024-06-20 01:00:00+00:00,0.008828170939104311 -2024-06-20 02:00:00+00:00,0.009919251215734663 -2024-06-20 03:00:00+00:00,0.009785154866540496 -2024-06-20 04:00:00+00:00,0.012824563905546843 -2024-06-20 05:00:00+00:00,0.010580743337590424 -2024-06-20 06:00:00+00:00,0.009713877727590706 -2024-06-20 07:00:00+00:00,0.01771057142188895 -2024-06-20 08:00:00+00:00,0.03169665379374635 -2024-06-20 09:00:00+00:00,0.03931397340316062 -2024-06-20 10:00:00+00:00,0.0391320403993006 -2024-06-20 11:00:00+00:00,0.036853829218857714 -2024-06-20 12:00:00+00:00,0.03993417878911165 -2024-06-20 13:00:00+00:00,0.04905628787514721 -2024-06-20 14:00:00+00:00,0.0523131412802067 -2024-06-20 15:00:00+00:00,0.05345451643603222 -2024-06-20 16:00:00+00:00,0.055385720278876366 -2024-06-20 17:00:00+00:00,0.054010712110947545 -2024-06-20 18:00:00+00:00,0.04317338182971439 -2024-06-20 19:00:00+00:00,0.03925558803502757 -2024-06-20 20:00:00+00:00,0.03436623003077127 -2024-06-20 21:00:00+00:00,0.02649318848562071 -2024-06-20 22:00:00+00:00,0.017357637067667325 -2024-06-20 23:00:00+00:00,0.01144389722925801 -2024-06-21 00:00:00+00:00,0.01574684184310096 -2024-06-21 01:00:00+00:00,0.006280837525688476 -2024-06-21 02:00:00+00:00,-0.002143625354271511 -2024-06-21 03:00:00+00:00,-0.013680726030514595 -2024-06-21 04:00:00+00:00,-0.022384644603948678 -2024-06-21 05:00:00+00:00,-0.024338250128757788 -2024-06-21 06:00:00+00:00,-0.025540614022663194 -2024-06-21 07:00:00+00:00,-0.03891440485200798 -2024-06-21 08:00:00+00:00,-0.04342809497094319 -2024-06-21 09:00:00+00:00,-0.04084031349315864 -2024-06-21 10:00:00+00:00,-0.03231241571085866 -2024-06-21 11:00:00+00:00,-0.03338975382493739 -2024-06-21 12:00:00+00:00,-0.03180332291581406 -2024-06-21 13:00:00+00:00,-0.01643261418699421 -2024-06-21 14:00:00+00:00,0.019955946881090675 -2024-06-21 15:00:00+00:00,0.03233770804452571 -2024-06-21 16:00:00+00:00,0.03903288644195546 -2024-06-21 17:00:00+00:00,0.04599967224630486 -2024-06-21 18:00:00+00:00,0.04385980572279341 -2024-06-21 19:00:00+00:00,0.042852765943772436 -2024-06-21 20:00:00+00:00,0.05170062417892762 -2024-06-23 21:00:00+00:00,0.0464878455828569 -2024-06-23 22:00:00+00:00,0.0382453939008747 -2024-06-23 23:00:00+00:00,0.04057427189671492 -2024-06-24 00:00:00+00:00,0.03131791273152559 -2024-06-24 01:00:00+00:00,0.01483109915901798 -2024-06-24 02:00:00+00:00,0.002300959434938965 -2024-06-24 03:00:00+00:00,-0.008246325445743385 -2024-06-24 04:00:00+00:00,-0.013469122669144767 -2024-06-24 05:00:00+00:00,-0.02066610208158437 -2024-06-24 06:00:00+00:00,-0.028867533855083144 -2024-06-24 07:00:00+00:00,-0.033820473171981585 -2024-06-24 08:00:00+00:00,-0.031103729291029614 -2024-06-24 09:00:00+00:00,-0.038967540397127076 -2024-06-24 10:00:00+00:00,-0.05238763053594339 -2024-06-24 11:00:00+00:00,-0.0625961583506271 -2024-06-24 12:00:00+00:00,-0.07190081850207916 -2024-06-24 13:00:00+00:00,-0.07207391942987965 -2024-06-24 14:00:00+00:00,-0.05218266929840376 -2024-06-24 15:00:00+00:00,-0.038699668836250284 -2024-06-24 16:00:00+00:00,-0.028320207977190107 -2024-06-24 17:00:00+00:00,-0.022599164856309598 -2024-06-24 18:00:00+00:00,-0.023556297701071635 -2024-06-24 19:00:00+00:00,-0.02323463404997715 -2024-06-24 20:00:00+00:00,-0.024181334144856056 -2024-06-24 21:00:00+00:00,-0.025754460664370385 -2024-06-24 22:00:00+00:00,-0.023430905465725016 -2024-06-24 23:00:00+00:00,-0.017967574521510793 -2024-06-25 00:00:00+00:00,-0.03375609704088796 -2024-06-25 01:00:00+00:00,-0.04211297873406063 -2024-06-25 02:00:00+00:00,-0.05031938182922337 -2024-06-25 03:00:00+00:00,-0.04327234157968648 -2024-06-25 04:00:00+00:00,-0.04027342136293385 -2024-06-25 05:00:00+00:00,-0.0350270589869474 -2024-06-25 06:00:00+00:00,-0.02831196198269991 -2024-06-25 07:00:00+00:00,-0.022240131636844566 -2024-06-25 08:00:00+00:00,-0.01792399427641484 -2024-06-25 09:00:00+00:00,-0.01655295716901662 -2024-06-25 10:00:00+00:00,-0.015530372405514296 -2024-06-25 11:00:00+00:00,-0.011936422335423774 -2024-06-25 12:00:00+00:00,0.004084652589472283 -2024-06-25 13:00:00+00:00,0.01185704366072523 -2024-06-25 14:00:00+00:00,0.01983226071932866 -2024-06-25 15:00:00+00:00,0.02351463423020929 -2024-06-25 16:00:00+00:00,0.02853548933520572 -2024-06-25 17:00:00+00:00,0.029153078985195303 -2024-06-25 18:00:00+00:00,0.024103989111386462 -2024-06-25 19:00:00+00:00,0.016478690027228737 -2024-06-25 20:00:00+00:00,0.01411024713917279 -2024-06-25 21:00:00+00:00,0.010470007996401194 -2024-06-25 22:00:00+00:00,0.00811412559943224 -2024-06-25 23:00:00+00:00,0.0076893412643117 -2024-06-26 00:00:00+00:00,0.00784149747720568 -2024-06-26 01:00:00+00:00,0.011137397417352125 -2024-06-26 02:00:00+00:00,0.015695032808100987 -2024-06-26 03:00:00+00:00,0.01745029008406279 -2024-06-26 04:00:00+00:00,0.011828965732654989 -2024-06-26 05:00:00+00:00,0.011233058012152838 -2024-06-26 06:00:00+00:00,0.010155013295821413 -2024-06-26 07:00:00+00:00,0.013211560810378081 -2024-06-26 08:00:00+00:00,0.017711984586766746 -2024-06-26 09:00:00+00:00,0.020671312615114817 -2024-06-26 10:00:00+00:00,0.041097222551178814 -2024-06-26 11:00:00+00:00,0.05120385470618685 -2024-06-26 12:00:00+00:00,0.057004030373263265 -2024-06-26 13:00:00+00:00,0.06662714939100112 -2024-06-26 14:00:00+00:00,0.07454394484098384 -2024-06-26 15:00:00+00:00,0.07908326058424209 -2024-06-26 16:00:00+00:00,0.07317404198665906 -2024-06-26 17:00:00+00:00,0.0641135779008761 -2024-06-26 18:00:00+00:00,0.057427323699510924 -2024-06-26 19:00:00+00:00,0.05436332417885731 -2024-06-26 20:00:00+00:00,0.049266797483271896 -2024-06-26 21:00:00+00:00,0.037307611741324964 -2024-06-26 22:00:00+00:00,0.021652750609165494 -2024-06-26 23:00:00+00:00,0.004006090783367666 -2024-06-27 00:00:00+00:00,-0.005676757203294802 -2024-06-27 01:00:00+00:00,-0.026248652445398923 -2024-06-27 02:00:00+00:00,-0.042424161937591326 -2024-06-27 03:00:00+00:00,-0.05426128519282153 -2024-06-27 04:00:00+00:00,-0.06665551081783777 -2024-06-27 05:00:00+00:00,-0.06864171467996064 -2024-06-27 06:00:00+00:00,-0.06697086922395504 -2024-06-27 07:00:00+00:00,-0.05566759075095756 -2024-06-27 08:00:00+00:00,-0.04683357435077401 -2024-06-27 09:00:00+00:00,-0.04430701293148584 -2024-06-27 10:00:00+00:00,-0.044871856684814915 -2024-06-27 11:00:00+00:00,-0.03684017202659269 -2024-06-27 12:00:00+00:00,-0.04047764580016559 -2024-06-27 13:00:00+00:00,-0.03378777832281171 -2024-06-27 14:00:00+00:00,-0.02408950134037649 -2024-06-27 15:00:00+00:00,-0.010789305851613432 -2024-06-27 16:00:00+00:00,-0.0020306205649235215 -2024-06-27 17:00:00+00:00,0.00393755886055934 -2024-06-27 18:00:00+00:00,0.009175037892955457 -2024-06-27 19:00:00+00:00,0.014552506295714862 -2024-06-27 20:00:00+00:00,0.013384704720863325 -2024-06-27 21:00:00+00:00,0.009038613659117817 -2024-06-27 22:00:00+00:00,0.0036734727327166344 -2024-06-27 23:00:00+00:00,-0.001738423622075963 -2024-06-28 00:00:00+00:00,0.020613450500556255 -2024-06-28 01:00:00+00:00,0.02896265869947663 -2024-06-28 02:00:00+00:00,0.023500521995157037 -2024-06-28 03:00:00+00:00,0.02097401782376404 -2024-06-28 04:00:00+00:00,0.020499786073244375 -2024-06-28 05:00:00+00:00,0.011845001524841026 -2024-06-28 06:00:00+00:00,0.004105460335262906 -2024-06-28 07:00:00+00:00,-0.002600244020849657 -2024-06-28 08:00:00+00:00,-0.008747232540084388 -2024-06-28 09:00:00+00:00,-0.027858836845913823 -2024-06-28 10:00:00+00:00,-0.05383960036644328 -2024-06-28 11:00:00+00:00,-0.05628445875354274 -2024-06-28 12:00:00+00:00,-0.0644617613267011 -2024-06-28 13:00:00+00:00,-0.06952996402672243 -2024-06-28 14:00:00+00:00,-0.046762038883464495 -2024-06-28 15:00:00+00:00,-0.02697067233282826 -2024-06-28 16:00:00+00:00,-0.015700751642730125 -2024-06-28 17:00:00+00:00,-0.011411811091355889 -2024-06-28 18:00:00+00:00,-0.00805963033428101 -2024-06-28 19:00:00+00:00,-0.0021972489401555426 -2024-06-28 20:00:00+00:00,0.0019367396381034171 -2024-06-30 21:00:00+00:00,0.0016392148231311743 -2024-06-30 22:00:00+00:00,0.0004266761569755584 -2024-06-30 23:00:00+00:00,0.005723158354782321 -2024-07-01 00:00:00+00:00,0.013149414885787532 -2024-07-01 01:00:00+00:00,0.012301562303491095 -2024-07-01 02:00:00+00:00,0.008964408389987966 -2024-07-01 03:00:00+00:00,0.01583633086514928 -2024-07-01 04:00:00+00:00,0.02015920595361574 -2024-07-01 05:00:00+00:00,0.019165674513747337 -2024-07-01 06:00:00+00:00,0.008466556186798022 -2024-07-01 07:00:00+00:00,0.007669607139366777 -2024-07-01 08:00:00+00:00,0.005955864411717873 -2024-07-01 09:00:00+00:00,0.007700450929189945 -2024-07-01 10:00:00+00:00,0.011439828561319948 -2024-07-01 11:00:00+00:00,0.01122962680296788 -2024-07-01 12:00:00+00:00,0.0258239166258441 -2024-07-01 13:00:00+00:00,0.03559938616903477 -2024-07-01 14:00:00+00:00,0.05567317876046533 -2024-07-01 15:00:00+00:00,0.058239662930038114 -2024-07-01 16:00:00+00:00,0.0532670505415721 -2024-07-01 17:00:00+00:00,0.04504851560253184 -2024-07-01 18:00:00+00:00,0.03754872502036127 -2024-07-01 19:00:00+00:00,0.026531216276399094 -2024-07-01 20:00:00+00:00,0.01676156847907126 -2024-07-01 21:00:00+00:00,0.006907822883910758 -2024-07-01 22:00:00+00:00,-0.0019872869702052265 -2024-07-01 23:00:00+00:00,-0.004067126984068387 -2024-07-02 00:00:00+00:00,-0.005968955252364849 -2024-07-02 01:00:00+00:00,-0.0008812354056497718 -2024-07-02 02:00:00+00:00,-0.00048413798500029914 -2024-07-02 03:00:00+00:00,0.0011652209288152138 -2024-07-02 04:00:00+00:00,0.0017234606054246093 -2024-07-02 05:00:00+00:00,0.00233042788683413 -2024-07-02 06:00:00+00:00,-0.0007706175589063946 -2024-07-02 07:00:00+00:00,-0.00520182559645832 -2024-07-02 08:00:00+00:00,-0.013413489707591014 -2024-07-02 09:00:00+00:00,-0.014407703461952248 -2024-07-02 10:00:00+00:00,-0.019280952047299266 -2024-07-02 11:00:00+00:00,-0.02181885911468509 -2024-07-02 12:00:00+00:00,-0.03043218580807852 -2024-07-02 13:00:00+00:00,-0.04411947648411359 -2024-07-02 14:00:00+00:00,-0.04766069977141628 -2024-07-02 15:00:00+00:00,-0.04212322820452802 -2024-07-02 16:00:00+00:00,-0.03491874246769605 -2024-07-02 17:00:00+00:00,-0.032647260794067684 -2024-07-02 18:00:00+00:00,-0.03229981999810694 -2024-07-02 19:00:00+00:00,-0.03316674401054778 -2024-07-02 20:00:00+00:00,-0.03199342717057683 -2024-07-02 21:00:00+00:00,-0.031125356201244424 -2024-07-02 22:00:00+00:00,-0.03125280179147054 -2024-07-02 23:00:00+00:00,-0.025799809782907114 -2024-07-03 00:00:00+00:00,-0.01669325348197826 -2024-07-03 01:00:00+00:00,-0.005863682619340435 -2024-07-03 02:00:00+00:00,0.0017900764079583735 -2024-07-03 03:00:00+00:00,0.005069647882556802 -2024-07-03 04:00:00+00:00,0.012188760396958008 -2024-07-03 05:00:00+00:00,0.02539777704289896 -2024-07-03 06:00:00+00:00,0.02839942839260748 -2024-07-03 07:00:00+00:00,0.025674668651905486 -2024-07-03 08:00:00+00:00,0.02697550835401019 -2024-07-03 09:00:00+00:00,0.02703223415362324 -2024-07-03 10:00:00+00:00,0.029818377045569666 -2024-07-03 11:00:00+00:00,0.027910935975874282 -2024-07-03 12:00:00+00:00,0.018439334494035564 -2024-07-03 13:00:00+00:00,0.0026389885934027385 -2024-07-03 14:00:00+00:00,-0.03155824790109216 -2024-07-03 15:00:00+00:00,-0.042619416534663015 -2024-07-03 16:00:00+00:00,-0.044373588115593124 -2024-07-03 17:00:00+00:00,-0.04597244636558122 -2024-07-03 18:00:00+00:00,-0.034649464496726116 -2024-07-03 19:00:00+00:00,-0.02352767484625442 -2024-07-03 20:00:00+00:00,-0.015358822739214444 -2024-07-03 21:00:00+00:00,-0.018049418153894638 -2024-07-03 22:00:00+00:00,-0.017089677285470048 -2024-07-03 23:00:00+00:00,-0.016852766923740062 -2024-07-04 00:00:00+00:00,-0.025275399720436117 -2024-07-04 01:00:00+00:00,-0.03390402320550913 -2024-07-04 02:00:00+00:00,-0.03268714259015787 -2024-07-04 03:00:00+00:00,-0.02439513373305595 -2024-07-04 04:00:00+00:00,-0.020088676564856946 -2024-07-04 05:00:00+00:00,-0.017311533477030166 -2024-07-04 06:00:00+00:00,-0.022746639117715423 -2024-07-04 07:00:00+00:00,-0.029099384260350247 -2024-07-04 08:00:00+00:00,-0.033585778042312636 -2024-07-04 09:00:00+00:00,-0.033655033455685296 -2024-07-04 10:00:00+00:00,-0.04376654309282732 -2024-07-04 11:00:00+00:00,-0.051054778990463456 -2024-07-04 12:00:00+00:00,-0.04356675395819248 -2024-07-04 13:00:00+00:00,-0.03438570571464966 -2024-07-04 14:00:00+00:00,-0.032140719056958686 -2024-07-04 15:00:00+00:00,-0.022800372650354978 -2024-07-04 16:00:00+00:00,-0.01557695767112631 -2024-07-04 17:00:00+00:00,-0.007662301049456199 -2024-07-04 18:00:00+00:00,0.004691595801097848 -2024-07-04 19:00:00+00:00,0.011447680320207584 -2024-07-04 20:00:00+00:00,0.018909779619029538 -2024-07-04 21:00:00+00:00,0.02242342535868709 -2024-07-04 22:00:00+00:00,0.025971117808016933 -2024-07-04 23:00:00+00:00,0.03318785823685537 -2024-07-05 00:00:00+00:00,0.018573978281140796 -2024-07-05 01:00:00+00:00,0.0053598126386655565 -2024-07-05 02:00:00+00:00,-0.005594552586075371 -2024-07-05 03:00:00+00:00,-0.03362700312673071 -2024-07-05 04:00:00+00:00,-0.04701352796101241 -2024-07-05 05:00:00+00:00,-0.04945410825187008 -2024-07-05 06:00:00+00:00,-0.04147480887466312 -2024-07-05 07:00:00+00:00,-0.03328714976658689 -2024-07-05 08:00:00+00:00,-0.027300584866458644 -2024-07-05 09:00:00+00:00,-0.023455766553211466 -2024-07-05 10:00:00+00:00,-0.011847883547238147 -2024-07-05 11:00:00+00:00,-0.0013802640970238256 -2024-07-05 12:00:00+00:00,0.014464113276641433 -2024-07-05 13:00:00+00:00,0.045387063040206316 -2024-07-05 14:00:00+00:00,0.044341904540803945 -2024-07-05 15:00:00+00:00,0.027872169331751948 -2024-07-05 16:00:00+00:00,0.026912800265865663 -2024-07-05 17:00:00+00:00,0.023602441747258007 -2024-07-05 18:00:00+00:00,0.013067043239300538 -2024-07-05 19:00:00+00:00,0.009757539034203705 -2024-07-05 20:00:00+00:00,0.01017107070599027 -2024-07-07 21:00:00+00:00,0.007002044125883483 -2024-07-07 22:00:00+00:00,0.007162207398607859 -2024-07-07 23:00:00+00:00,-0.0005712333243763079 -2024-07-08 00:00:00+00:00,-0.006208493372478099 -2024-07-08 01:00:00+00:00,-0.021326516588449446 -2024-07-08 02:00:00+00:00,-0.03133495307080586 -2024-07-08 03:00:00+00:00,-0.027589166547098143 -2024-07-08 04:00:00+00:00,-0.019567944346610078 -2024-07-08 05:00:00+00:00,-0.0023505406194245793 -2024-07-08 06:00:00+00:00,0.01845729085642353 -2024-07-08 07:00:00+00:00,0.03559635929203074 -2024-07-08 08:00:00+00:00,0.057816442498268825 -2024-07-08 09:00:00+00:00,0.06603402019040118 -2024-07-08 10:00:00+00:00,0.06195820227343393 -2024-07-08 11:00:00+00:00,0.061481476817598746 -2024-07-08 12:00:00+00:00,0.03806511292410262 -2024-07-08 13:00:00+00:00,0.019535610993603642 -2024-07-08 14:00:00+00:00,0.004357744329732387 -2024-07-08 15:00:00+00:00,0.005276590799219369 -2024-07-08 16:00:00+00:00,0.0028226419458233475 -2024-07-08 17:00:00+00:00,0.0008657858967215694 -2024-07-08 18:00:00+00:00,0.004043613436022379 -2024-07-08 19:00:00+00:00,0.006307262832806644 -2024-07-08 20:00:00+00:00,0.01035377219960832 -2024-07-08 21:00:00+00:00,0.010559513484623126 -2024-07-08 22:00:00+00:00,0.009088895144509914 -2024-07-08 23:00:00+00:00,0.01262280427965414 -2024-07-09 00:00:00+00:00,0.01633527145767976 -2024-07-09 01:00:00+00:00,0.02337396415191692 -2024-07-09 02:00:00+00:00,0.028246156836668555 -2024-07-09 03:00:00+00:00,0.032780813131213386 -2024-07-09 04:00:00+00:00,0.028112277596212192 -2024-07-09 05:00:00+00:00,0.019706730748581897 -2024-07-09 06:00:00+00:00,0.00833353201673008 -2024-07-09 07:00:00+00:00,0.006654112819088041 -2024-07-09 08:00:00+00:00,0.013293239263904535 -2024-07-09 09:00:00+00:00,0.0160887347211221 -2024-07-09 10:00:00+00:00,0.014887914162783789 -2024-07-09 11:00:00+00:00,0.01944377520990148 -2024-07-09 12:00:00+00:00,0.02158108095722539 -2024-07-09 13:00:00+00:00,0.014127864036509542 -2024-07-09 14:00:00+00:00,0.030250493022208037 -2024-07-09 15:00:00+00:00,0.04051622551689851 -2024-07-09 16:00:00+00:00,0.03907762842090021 -2024-07-09 17:00:00+00:00,0.03539474521055738 -2024-07-09 18:00:00+00:00,0.029907036671867337 -2024-07-09 19:00:00+00:00,0.022614161852659992 -2024-07-09 20:00:00+00:00,0.017583853943644034 -2024-07-09 21:00:00+00:00,0.010940598178850625 -2024-07-09 22:00:00+00:00,0.007821658366312434 -2024-07-09 23:00:00+00:00,0.004377022472205283 -2024-07-10 00:00:00+00:00,0.009578046249095001 -2024-07-10 01:00:00+00:00,0.01569155963602953 -2024-07-10 02:00:00+00:00,0.015894263393878644 -2024-07-10 03:00:00+00:00,0.00921826835324574 -2024-07-10 04:00:00+00:00,0.004303384305201302 -2024-07-10 05:00:00+00:00,0.003484328113027957 -2024-07-10 06:00:00+00:00,-0.006921721527206659 -2024-07-10 07:00:00+00:00,-0.005991389024859878 -2024-07-10 08:00:00+00:00,-0.0053297771363671614 -2024-07-10 09:00:00+00:00,-0.0009662517780610058 -2024-07-10 10:00:00+00:00,-0.0017841933764383283 -2024-07-10 11:00:00+00:00,-0.007398275289256975 -2024-07-10 12:00:00+00:00,-0.013792793503371953 -2024-07-10 13:00:00+00:00,-0.008567376151519604 -2024-07-10 14:00:00+00:00,-0.0018015256196816098 -2024-07-10 15:00:00+00:00,0.006281261864559337 -2024-07-10 16:00:00+00:00,0.006774242597613139 -2024-07-10 17:00:00+00:00,0.009297286792717296 -2024-07-10 18:00:00+00:00,0.011152388306949174 -2024-07-10 19:00:00+00:00,0.008126569113797777 -2024-07-10 20:00:00+00:00,0.0030112093572249865 -2024-07-10 21:00:00+00:00,-0.010108666843576058 -2024-07-10 22:00:00+00:00,-0.017706893363911597 -2024-07-10 23:00:00+00:00,-0.02249048794017508 -2024-07-11 00:00:00+00:00,-0.027250066680983523 -2024-07-11 01:00:00+00:00,-0.02874736682922975 -2024-07-11 02:00:00+00:00,-0.024482132770794265 -2024-07-11 03:00:00+00:00,-0.02226116388328167 -2024-07-11 04:00:00+00:00,-0.017430494807782707 -2024-07-11 05:00:00+00:00,-0.013857962124836393 -2024-07-11 06:00:00+00:00,-0.009187532684136038 -2024-07-11 07:00:00+00:00,-0.012540603496630595 -2024-07-11 08:00:00+00:00,-0.021356469380179044 -2024-07-11 09:00:00+00:00,-0.025235918761926927 -2024-07-11 10:00:00+00:00,-0.026909150952728257 -2024-07-11 11:00:00+00:00,-0.027816335921087086 -2024-07-11 12:00:00+00:00,-0.21148057028800557 -2024-07-11 13:00:00+00:00,-0.31834122772931045 -2024-07-11 14:00:00+00:00,-0.37105460311153504 -2024-07-11 15:00:00+00:00,-0.3814341555805897 -2024-07-11 16:00:00+00:00,-0.3662912803265931 -2024-07-11 17:00:00+00:00,-0.31896453550376735 -2024-07-11 18:00:00+00:00,-0.27287536666726775 -2024-07-11 19:00:00+00:00,-0.21959191615052553 -2024-07-11 20:00:00+00:00,-0.16473011801826232 -2024-07-11 21:00:00+00:00,-0.1134855179366866 -2024-07-11 22:00:00+00:00,-0.04906683181039173 -2024-07-11 23:00:00+00:00,-0.06255512981356248 -2024-07-12 00:00:00+00:00,-0.011067096538580845 -2024-07-12 01:00:00+00:00,0.04586215253745074 -2024-07-12 02:00:00+00:00,0.08179789611827881 -2024-07-12 03:00:00+00:00,0.10110108355179714 -2024-07-12 04:00:00+00:00,0.1054184536974736 -2024-07-12 05:00:00+00:00,0.10357783473496551 -2024-07-12 06:00:00+00:00,0.10820401781615097 -2024-07-12 07:00:00+00:00,0.11524561818123547 -2024-07-12 08:00:00+00:00,0.11085254578622544 -2024-07-12 09:00:00+00:00,0.11133161723227758 -2024-07-12 10:00:00+00:00,0.10571493778558938 -2024-07-12 11:00:00+00:00,0.09160854254171008 -2024-07-12 12:00:00+00:00,0.07130765545469153 -2024-07-12 13:00:00+00:00,0.02696603330375863 -2024-07-12 14:00:00+00:00,-0.03707316347151213 -2024-07-12 15:00:00+00:00,-0.060175285220856856 -2024-07-12 16:00:00+00:00,-0.06954471245720062 -2024-07-12 17:00:00+00:00,-0.0616160598531445 -2024-07-12 18:00:00+00:00,-0.053203694414782565 -2024-07-12 19:00:00+00:00,-0.04646713451766621 -2024-07-12 20:00:00+00:00,-0.03241278605520109 -2024-07-14 21:00:00+00:00,-7.569200440460389e-05 -2024-07-14 22:00:00+00:00,0.035771550344131375 -2024-07-14 23:00:00+00:00,0.057371573678444865 -2024-07-15 00:00:00+00:00,0.06067380250727289 -2024-07-15 01:00:00+00:00,0.059471145741649634 -2024-07-15 02:00:00+00:00,0.057988936660089085 -2024-07-15 03:00:00+00:00,0.053851969710360326 -2024-07-15 04:00:00+00:00,0.05331440984072805 -2024-07-15 05:00:00+00:00,0.05091904122847751 -2024-07-15 06:00:00+00:00,0.05987701058232531 -2024-07-15 07:00:00+00:00,0.05383841614126289 -2024-07-15 08:00:00+00:00,0.04331661762586403 -2024-07-15 09:00:00+00:00,0.04645591000001015 -2024-07-15 10:00:00+00:00,0.04812315761065861 -2024-07-15 11:00:00+00:00,0.059711129636978555 -2024-07-15 12:00:00+00:00,0.056862554035022606 -2024-07-15 13:00:00+00:00,0.05277091082510996 -2024-07-15 14:00:00+00:00,0.04473965118402798 -2024-07-15 15:00:00+00:00,0.04138664750190388 -2024-07-15 16:00:00+00:00,0.02790088672780522 -2024-07-15 17:00:00+00:00,0.03314962945406602 -2024-07-15 18:00:00+00:00,0.03243168899043131 -2024-07-15 19:00:00+00:00,0.0366168666224351 -2024-07-15 20:00:00+00:00,0.050847586189817995 -2024-07-15 21:00:00+00:00,0.056983422329233535 -2024-07-15 22:00:00+00:00,0.06257179272228794 -2024-07-15 23:00:00+00:00,0.06565837988565021 -2024-07-16 00:00:00+00:00,0.07905461884889974 -2024-07-16 01:00:00+00:00,0.0947756125243468 -2024-07-16 02:00:00+00:00,0.11104121948475458 -2024-07-16 03:00:00+00:00,0.11205581441961993 -2024-07-16 04:00:00+00:00,0.10773383999849133 -2024-07-16 05:00:00+00:00,0.10508962056034331 -2024-07-16 06:00:00+00:00,0.0879522046477925 -2024-07-16 07:00:00+00:00,0.06740642253780676 -2024-07-16 08:00:00+00:00,0.04864718370229694 -2024-07-16 09:00:00+00:00,0.02990188152776635 -2024-07-16 10:00:00+00:00,0.017376687957814815 -2024-07-16 11:00:00+00:00,0.002283363630983387 -2024-07-16 12:00:00+00:00,0.018211411697839713 -2024-07-16 13:00:00+00:00,0.018883211083305013 -2024-07-16 14:00:00+00:00,0.014445487997340023 -2024-07-16 15:00:00+00:00,0.009174724371977569 -2024-07-16 16:00:00+00:00,0.0023608648849206826 -2024-07-16 17:00:00+00:00,-0.0073658002059004 -2024-07-16 18:00:00+00:00,-0.021199456621511556 -2024-07-16 19:00:00+00:00,-0.027516415738280467 -2024-07-16 20:00:00+00:00,-0.02949400566389279 -2024-07-16 21:00:00+00:00,-0.0351540910846216 -2024-07-16 22:00:00+00:00,-0.03661896329829274 -2024-07-16 23:00:00+00:00,-0.03446447447227944 -2024-07-17 00:00:00+00:00,-0.023949334894421824 -2024-07-17 01:00:00+00:00,-0.01736973929062937 -2024-07-17 02:00:00+00:00,-0.016497803065692748 -2024-07-17 03:00:00+00:00,-0.017552164411804527 -2024-07-17 04:00:00+00:00,-0.0277596411007445 -2024-07-17 05:00:00+00:00,-0.05363566505880109 -2024-07-17 06:00:00+00:00,-0.07189930447647891 -2024-07-17 07:00:00+00:00,-0.12696438261854515 -2024-07-17 08:00:00+00:00,-0.20747204644564424 -2024-07-17 09:00:00+00:00,-0.2350328447432271 -2024-07-17 10:00:00+00:00,-0.2182373599041599 -2024-07-17 11:00:00+00:00,-0.2087400652162002 -2024-07-17 12:00:00+00:00,-0.18603410956911476 -2024-07-17 13:00:00+00:00,-0.17757731883724032 -2024-07-17 14:00:00+00:00,-0.14579847504479898 -2024-07-17 15:00:00+00:00,-0.11049951806836572 -2024-07-17 16:00:00+00:00,-0.09539735964872287 -2024-07-17 17:00:00+00:00,-0.06672499470400434 -2024-07-17 18:00:00+00:00,-0.06408324538238125 -2024-07-17 19:00:00+00:00,-0.04954200041485424 -2024-07-17 20:00:00+00:00,-0.031701713467198245 -2024-07-17 21:00:00+00:00,-0.01712385009055739 -2024-07-17 22:00:00+00:00,-0.00333762999508852 -2024-07-17 23:00:00+00:00,-0.021012258525298422 -2024-07-18 00:00:00+00:00,-0.022331797955435606 -2024-07-18 01:00:00+00:00,0.01582064143463724 -2024-07-18 02:00:00+00:00,0.047193519407375595 -2024-07-18 03:00:00+00:00,0.07664924842846671 -2024-07-18 04:00:00+00:00,0.08939991311309531 -2024-07-18 05:00:00+00:00,0.07708719798375563 -2024-07-18 06:00:00+00:00,0.07493442770030284 -2024-07-18 07:00:00+00:00,0.08145302863386261 -2024-07-18 08:00:00+00:00,0.0986229030364964 -2024-07-18 09:00:00+00:00,0.10909094311366263 -2024-07-18 10:00:00+00:00,0.1069667089927569 -2024-07-18 11:00:00+00:00,0.10945333588913336 -2024-07-18 12:00:00+00:00,0.10392022723051875 -2024-07-18 13:00:00+00:00,0.10707068323125768 -2024-07-18 14:00:00+00:00,0.11646717708968107 -2024-07-18 15:00:00+00:00,0.13195614701658606 -2024-07-18 16:00:00+00:00,0.14727925589166224 -2024-07-18 17:00:00+00:00,0.15312698573699315 -2024-07-18 18:00:00+00:00,0.15557105972972382 -2024-07-18 19:00:00+00:00,0.15482472888815005 -2024-07-18 20:00:00+00:00,0.14602137138227153 -2024-07-18 21:00:00+00:00,0.13229669995863258 -2024-07-18 22:00:00+00:00,0.11067233489484563 -2024-07-18 23:00:00+00:00,0.08478648221973967 -2024-07-19 00:00:00+00:00,0.06556200626533742 -2024-07-19 01:00:00+00:00,0.0646451759835592 -2024-07-19 02:00:00+00:00,0.05697972913304905 -2024-07-19 03:00:00+00:00,0.045292529557856565 -2024-07-19 04:00:00+00:00,0.04065611302851374 -2024-07-19 05:00:00+00:00,0.05271473195163795 -2024-07-19 06:00:00+00:00,0.02330342901092239 -2024-07-19 07:00:00+00:00,0.00544523838029759 -2024-07-19 08:00:00+00:00,-0.011395518560475965 -2024-07-19 09:00:00+00:00,-0.01622367791060192 -2024-07-19 10:00:00+00:00,-0.014445032291177606 -2024-07-19 11:00:00+00:00,-0.013372010490183717 -2024-07-19 12:00:00+00:00,-0.00045022297066199535 -2024-07-19 13:00:00+00:00,-0.004390749564816165 -2024-07-19 14:00:00+00:00,-0.019066577629140963 -2024-07-19 15:00:00+00:00,-0.025682228556554415 -2024-07-19 16:00:00+00:00,-0.02837220219044495 -2024-07-19 17:00:00+00:00,-0.030055217758267416 -2024-07-19 18:00:00+00:00,-0.025972585362586675 -2024-07-19 19:00:00+00:00,-0.02257912623136238 -2024-07-19 20:00:00+00:00,-0.022232944778760644 -2024-07-21 21:00:00+00:00,-0.0252958358965627 -2024-07-21 22:00:00+00:00,-0.037105741544853466 -2024-07-21 23:00:00+00:00,-0.033591876080758004 -2024-07-22 00:00:00+00:00,-0.030408927935589553 -2024-07-22 01:00:00+00:00,-0.02031954364704827 -2024-07-22 02:00:00+00:00,-0.01334005418605122 -2024-07-22 03:00:00+00:00,-0.013623036020731144 -2024-07-22 04:00:00+00:00,-0.016114674238541876 -2024-07-22 05:00:00+00:00,-0.04349966436996448 -2024-07-22 06:00:00+00:00,-0.09675888205436281 -2024-07-22 07:00:00+00:00,-0.10240486142138504 -2024-07-22 08:00:00+00:00,-0.1015462187391515 -2024-07-22 09:00:00+00:00,-0.10242303246578173 -2024-07-22 10:00:00+00:00,-0.08764323254969406 -2024-07-22 11:00:00+00:00,-0.07249585067071321 -2024-07-22 12:00:00+00:00,-0.06272467139628529 -2024-07-22 13:00:00+00:00,-0.04807706629432276 -2024-07-22 14:00:00+00:00,-0.03447744010627264 -2024-07-22 15:00:00+00:00,-0.009788373835147371 -2024-07-22 16:00:00+00:00,0.006284249980048756 -2024-07-22 17:00:00+00:00,0.021204791121505667 -2024-07-22 18:00:00+00:00,0.025893537453476195 -2024-07-22 19:00:00+00:00,0.028969797686959606 -2024-07-22 20:00:00+00:00,0.02838302097425574 -2024-07-22 21:00:00+00:00,0.021190609351523032 -2024-07-22 22:00:00+00:00,0.021801468971445262 -2024-07-22 23:00:00+00:00,0.012926398908154071 -2024-07-23 00:00:00+00:00,-0.008542244831092727 -2024-07-23 01:00:00+00:00,-0.017805559134582566 -2024-07-23 02:00:00+00:00,-0.026742201340172286 -2024-07-23 03:00:00+00:00,-0.05281361323466362 -2024-07-23 04:00:00+00:00,-0.06375933983606652 -2024-07-23 05:00:00+00:00,-0.06565418436956526 -2024-07-23 06:00:00+00:00,-0.04490691339925801 -2024-07-23 07:00:00+00:00,-0.06315610637278607 -2024-07-23 08:00:00+00:00,-0.07194464986439375 -2024-07-23 09:00:00+00:00,-0.0764761910592271 -2024-07-23 10:00:00+00:00,-0.06688721425940578 -2024-07-23 11:00:00+00:00,-0.04867035553048393 -2024-07-23 12:00:00+00:00,-0.040631616151365235 -2024-07-23 13:00:00+00:00,-0.027558670984836442 -2024-07-23 14:00:00+00:00,-0.022865697274282476 -2024-07-23 15:00:00+00:00,-0.013663469657102412 -2024-07-23 16:00:00+00:00,-0.020274217404470524 -2024-07-23 17:00:00+00:00,-0.027213732809190427 -2024-07-23 18:00:00+00:00,-0.03176370637608239 -2024-07-23 19:00:00+00:00,-0.029591088253402786 -2024-07-23 20:00:00+00:00,-0.026569846572674305 -2024-07-23 21:00:00+00:00,-0.02190198890028 -2024-07-23 22:00:00+00:00,-0.012121058498153592 -2024-07-23 23:00:00+00:00,0.005229683094659432 -2024-07-24 00:00:00+00:00,0.02263831947428052 -2024-07-24 01:00:00+00:00,-0.0019795191086828257 -2024-07-24 02:00:00+00:00,-0.014246567510868946 -2024-07-24 03:00:00+00:00,-0.03149855954734626 -2024-07-24 04:00:00+00:00,-0.06647035813202962 -2024-07-24 05:00:00+00:00,-0.08056950731541401 -2024-07-24 06:00:00+00:00,-0.0852582211167009 -2024-07-24 07:00:00+00:00,-0.08016239162770755 -2024-07-24 08:00:00+00:00,-0.05210654454733532 -2024-07-24 09:00:00+00:00,-0.03373086407820536 -2024-07-24 10:00:00+00:00,-0.0304137718820901 -2024-07-24 11:00:00+00:00,-0.047105776264295685 -2024-07-24 12:00:00+00:00,-0.07542052636038649 -2024-07-24 13:00:00+00:00,-0.10904489535731499 -2024-07-24 14:00:00+00:00,-0.1310310645034069 -2024-07-24 15:00:00+00:00,-0.1264024919655552 -2024-07-24 16:00:00+00:00,-0.10632320880273916 -2024-07-24 17:00:00+00:00,-0.06058593106916188 -2024-07-24 18:00:00+00:00,-0.012258164332427324 -2024-07-24 19:00:00+00:00,0.024721691305213178 -2024-07-24 20:00:00+00:00,0.04397862062209845 -2024-07-24 21:00:00+00:00,0.05210234712848183 -2024-07-24 22:00:00+00:00,0.04702361476381589 -2024-07-24 23:00:00+00:00,0.06631208704891367 -2024-07-25 00:00:00+00:00,0.036659327035613365 -2024-07-25 01:00:00+00:00,-0.0036908340689433272 -2024-07-25 02:00:00+00:00,-0.038411458445576474 -2024-07-25 03:00:00+00:00,-0.07407770465854058 -2024-07-25 04:00:00+00:00,-0.06834826913349601 -2024-07-25 05:00:00+00:00,-0.048559839352027456 -2024-07-25 06:00:00+00:00,-0.021588163132051696 -2024-07-25 07:00:00+00:00,-0.04023555840916537 -2024-07-25 08:00:00+00:00,-0.011931657986883892 -2024-07-25 09:00:00+00:00,-0.013985482315392872 -2024-07-25 10:00:00+00:00,-0.015399194654391102 -2024-07-25 11:00:00+00:00,0.022562467081992277 -2024-07-25 12:00:00+00:00,0.10141426484965088 -2024-07-25 13:00:00+00:00,0.1589641407827338 -2024-07-25 14:00:00+00:00,0.19065728784574232 -2024-07-25 15:00:00+00:00,0.2261288961974775 -2024-07-25 16:00:00+00:00,0.2431505922212845 -2024-07-25 17:00:00+00:00,0.24480049225431988 -2024-07-25 18:00:00+00:00,0.21983388609824547 -2024-07-25 19:00:00+00:00,0.20317920895294223 -2024-07-25 20:00:00+00:00,0.18269925281813051 -2024-07-25 21:00:00+00:00,0.16373357136402983 -2024-07-25 22:00:00+00:00,0.14187080190830226 -2024-07-25 23:00:00+00:00,0.10848500953547235 -2024-07-26 00:00:00+00:00,0.09605547223465116 -2024-07-26 01:00:00+00:00,0.06171093557307898 -2024-07-26 02:00:00+00:00,0.05836717061168087 -2024-07-26 03:00:00+00:00,0.04245987662704283 -2024-07-26 04:00:00+00:00,0.025094890115037197 -2024-07-26 05:00:00+00:00,0.010349697003876383 -2024-07-26 06:00:00+00:00,-0.0003448227629620215 -2024-07-26 07:00:00+00:00,0.010568073873747495 -2024-07-26 08:00:00+00:00,0.040937323363964336 -2024-07-26 09:00:00+00:00,0.051183648576251406 -2024-07-26 10:00:00+00:00,0.07739201753811006 -2024-07-26 11:00:00+00:00,0.09169697345715294 -2024-07-26 12:00:00+00:00,0.06963007855827574 -2024-07-26 13:00:00+00:00,0.02448774099086623 -2024-07-26 14:00:00+00:00,-0.0255958175698065 -2024-07-26 15:00:00+00:00,-0.033207166691521156 -2024-07-26 16:00:00+00:00,-0.04276010944928087 -2024-07-26 17:00:00+00:00,-0.050825782593430624 -2024-07-26 18:00:00+00:00,-0.054102087284817205 -2024-07-26 19:00:00+00:00,-0.05235837278602219 -2024-07-26 20:00:00+00:00,-0.04954626349149704 -2024-07-28 21:00:00+00:00,-0.050502413300026645 -2024-07-28 22:00:00+00:00,-0.027043240930654876 -2024-07-28 23:00:00+00:00,-0.0030423115804090323 -2024-07-29 00:00:00+00:00,-0.019775276005049684 -2024-07-29 01:00:00+00:00,-0.043184450869194264 -2024-07-29 02:00:00+00:00,-0.05719957991706487 -2024-07-29 03:00:00+00:00,-0.056931153073194136 -2024-07-29 04:00:00+00:00,-0.060102645988024825 -2024-07-29 05:00:00+00:00,-0.06059591884723002 -2024-07-29 06:00:00+00:00,-0.05950183738185862 -2024-07-29 07:00:00+00:00,-0.038380723659122096 -2024-07-29 08:00:00+00:00,-0.01810740713565767 -2024-07-29 09:00:00+00:00,-0.002960752954503529 -2024-07-29 10:00:00+00:00,0.006015543534627771 -2024-07-29 11:00:00+00:00,0.021744389931311878 -2024-07-29 12:00:00+00:00,0.03432211010008198 -2024-07-29 13:00:00+00:00,0.059184344487292574 -2024-07-29 14:00:00+00:00,0.06388754907321789 -2024-07-29 15:00:00+00:00,0.058435096793268984 -2024-07-29 16:00:00+00:00,0.05053515885525234 -2024-07-29 17:00:00+00:00,0.046633180707008975 -2024-07-29 18:00:00+00:00,0.040931889188690215 -2024-07-29 19:00:00+00:00,0.035520937588233124 -2024-07-29 20:00:00+00:00,0.03164337499432743 -2024-07-29 21:00:00+00:00,0.026624439275630227 -2024-07-29 22:00:00+00:00,0.02166689038979909 -2024-07-29 23:00:00+00:00,0.005215867117672801 -2024-07-30 00:00:00+00:00,0.0020034813655934874 -2024-07-30 01:00:00+00:00,0.0016366949501407935 -2024-07-30 02:00:00+00:00,0.0023669779595972135 -2024-07-30 03:00:00+00:00,0.0054004646264168635 -2024-07-30 04:00:00+00:00,0.029808789692797877 -2024-07-30 05:00:00+00:00,0.0573325114399072 -2024-07-30 06:00:00+00:00,0.0954462183165313 -2024-07-30 07:00:00+00:00,0.1033928241883525 -2024-07-30 08:00:00+00:00,0.08712035875401358 -2024-07-30 09:00:00+00:00,0.07999866650954451 -2024-07-30 10:00:00+00:00,0.06501888396835959 -2024-07-30 11:00:00+00:00,0.06049275677279087 -2024-07-30 12:00:00+00:00,0.05578968003594778 -2024-07-30 13:00:00+00:00,0.00999650634427482 -2024-07-30 14:00:00+00:00,-0.005119813043180932 -2024-07-30 15:00:00+00:00,-0.07212689005424486 -2024-07-30 16:00:00+00:00,-0.14341127460997605 -2024-07-30 17:00:00+00:00,-0.18414821177050414 -2024-07-30 18:00:00+00:00,-0.19756743770568508 -2024-07-30 19:00:00+00:00,-0.19526340387746952 -2024-07-30 20:00:00+00:00,-0.21660343372840926 -2024-07-30 21:00:00+00:00,-0.22287951689327234 -2024-07-30 22:00:00+00:00,-0.2020289567114335 -2024-07-30 23:00:00+00:00,-0.19154809910995957 -2024-07-31 00:00:00+00:00,-0.19118958871147895 -2024-07-31 01:00:00+00:00,-0.17576259200255728 -2024-07-31 02:00:00+00:00,-0.12500619266551305 -2024-07-31 03:00:00+00:00,-0.03910177115036806 -2024-07-31 04:00:00+00:00,-0.04630502786819546 -2024-07-31 05:00:00+00:00,-0.02471884089757903 -2024-07-31 06:00:00+00:00,-0.04832163727762823 -2024-07-31 07:00:00+00:00,-0.1406373327287303 -2024-07-31 08:00:00+00:00,-0.1875151909522746 -2024-07-31 09:00:00+00:00,-0.23634151375097673 -2024-07-31 10:00:00+00:00,-0.2433410122079105 -2024-07-31 11:00:00+00:00,-0.250452861272882 -2024-07-31 12:00:00+00:00,-0.22695245057138214 -2024-07-31 13:00:00+00:00,-0.2269715511172481 -2024-07-31 14:00:00+00:00,-0.16941903851062778 -2024-07-31 15:00:00+00:00,-0.12085135811942294 -2024-07-31 16:00:00+00:00,-0.06538005185953955 -2024-07-31 17:00:00+00:00,-0.0025331624161064603 -2024-07-31 18:00:00+00:00,0.019719630345099826 -2024-07-31 19:00:00+00:00,-0.0014666890337318161 -2024-07-31 20:00:00+00:00,0.004968635339482108 -2024-07-31 21:00:00+00:00,0.009733238199102323 -2024-07-31 22:00:00+00:00,0.037939966368763955 -2024-07-31 23:00:00+00:00,0.03632536062617342 -2024-08-01 00:00:00+00:00,0.018573874531586987 -2024-08-01 01:00:00+00:00,-0.0034897068134651654 -2024-08-01 02:00:00+00:00,0.027855545764876144 -2024-08-01 03:00:00+00:00,0.04029853731494526 -2024-08-01 04:00:00+00:00,0.060507661911781585 -2024-08-01 05:00:00+00:00,0.08170680146066323 -2024-08-01 06:00:00+00:00,0.11429048141008702 -2024-08-01 07:00:00+00:00,0.12459959381511088 -2024-08-01 08:00:00+00:00,0.12018684809175273 -2024-08-01 09:00:00+00:00,0.13305226833586303 -2024-08-01 10:00:00+00:00,0.14498444346795902 -2024-08-01 11:00:00+00:00,0.18160478526146784 -2024-08-01 12:00:00+00:00,0.22128238787633836 -2024-08-01 13:00:00+00:00,0.21900188103905605 -2024-08-01 14:00:00+00:00,0.1779178862857923 -2024-08-01 15:00:00+00:00,0.14693544097105626 -2024-08-01 16:00:00+00:00,0.11227798003658918 -2024-08-01 17:00:00+00:00,0.07789907027262882 -2024-08-01 18:00:00+00:00,0.0426390606252936 -2024-08-01 19:00:00+00:00,0.03487087705963393 -2024-08-01 20:00:00+00:00,0.0031164815678738633 -2024-08-01 21:00:00+00:00,-0.01559397925709477 -2024-08-01 22:00:00+00:00,-0.024984744101201384 -2024-08-01 23:00:00+00:00,-0.03347319844899449 -2024-08-02 00:00:00+00:00,-0.023324973514916914 -2024-08-02 01:00:00+00:00,-0.005803523275858147 -2024-08-02 02:00:00+00:00,0.013008974545278107 -2024-08-02 03:00:00+00:00,0.02159547045337623 -2024-08-02 04:00:00+00:00,0.013764335814584416 -2024-08-02 05:00:00+00:00,-0.010104398002545756 -2024-08-02 06:00:00+00:00,-0.027370862869843693 -2024-08-02 07:00:00+00:00,-0.011260408042493897 -2024-08-02 08:00:00+00:00,-0.006574744410504096 -2024-08-02 09:00:00+00:00,-0.012471446813495823 -2024-08-02 10:00:00+00:00,-0.018664571000047425 -2024-08-02 11:00:00+00:00,-0.005148087353384012 -2024-08-02 12:00:00+00:00,-0.09344263249850593 -2024-08-02 13:00:00+00:00,-0.16438291153968787 -2024-08-02 14:00:00+00:00,-0.2226498401351349 -2024-08-02 15:00:00+00:00,-0.2239732688550372 -2024-08-02 16:00:00+00:00,-0.2172331657340154 -2024-08-02 17:00:00+00:00,-0.197319998111118 -2024-08-02 18:00:00+00:00,-0.19118709286818103 -2024-08-02 19:00:00+00:00,-0.16568881299777238 -2024-08-02 20:00:00+00:00,-0.13743564674897524 -2024-08-04 21:00:00+00:00,-0.10996377605095442 -2024-08-04 22:00:00+00:00,-0.09080813447309932 -2024-08-04 23:00:00+00:00,-0.11346385387496905 -2024-08-05 00:00:00+00:00,-0.11939838551458648 -2024-08-05 01:00:00+00:00,-0.13532899864058023 -2024-08-05 02:00:00+00:00,-0.12881217999045513 -2024-08-05 03:00:00+00:00,-0.15907263976889163 -2024-08-05 04:00:00+00:00,-0.2378133009220713 -2024-08-05 05:00:00+00:00,-0.29849175551254414 -2024-08-05 06:00:00+00:00,-0.3044848471039818 -2024-08-05 07:00:00+00:00,-0.23613765202086645 -2024-08-05 08:00:00+00:00,-0.2388565971073442 -2024-08-05 09:00:00+00:00,-0.22359217173802848 -2024-08-05 10:00:00+00:00,-0.18483843066826067 -2024-08-05 11:00:00+00:00,-0.1429916657724073 -2024-08-05 12:00:00+00:00,-0.1004358464598516 -2024-08-05 13:00:00+00:00,-0.024593093889466733 -2024-08-05 14:00:00+00:00,0.03245562205569108 -2024-08-05 15:00:00+00:00,0.16260077979973042 -2024-08-05 16:00:00+00:00,0.26218999928002984 -2024-08-05 17:00:00+00:00,0.3121116972335851 -2024-08-05 18:00:00+00:00,0.30281315776258766 -2024-08-05 19:00:00+00:00,0.30948154241309744 -2024-08-05 20:00:00+00:00,0.3362070204973422 -2024-08-05 21:00:00+00:00,0.3367690972775349 -2024-08-05 22:00:00+00:00,0.3718277387942601 -2024-08-05 23:00:00+00:00,0.4478399502457314 -2024-08-06 00:00:00+00:00,0.4297715028218323 -2024-08-06 01:00:00+00:00,0.3862708539100336 -2024-08-06 02:00:00+00:00,0.37532721619346576 -2024-08-06 03:00:00+00:00,0.35515179392981266 -2024-08-06 04:00:00+00:00,0.3374154421338452 -2024-08-06 05:00:00+00:00,0.33304721575732343 -2024-08-06 06:00:00+00:00,0.2995773517312086 -2024-08-06 07:00:00+00:00,0.24159986187543708 -2024-08-06 08:00:00+00:00,0.16883555789238003 -2024-08-06 09:00:00+00:00,0.10325158336506855 -2024-08-06 10:00:00+00:00,0.06534571808241772 -2024-08-06 11:00:00+00:00,0.05402895644810321 -2024-08-06 12:00:00+00:00,0.00809170493212974 -2024-08-06 13:00:00+00:00,-0.03462769960380935 -2024-08-06 14:00:00+00:00,-0.05393039320312547 -2024-08-06 15:00:00+00:00,-0.02493795779150293 -2024-08-06 16:00:00+00:00,0.010589571457903138 -2024-08-06 17:00:00+00:00,0.02950041252770777 -2024-08-06 18:00:00+00:00,0.018047631930242253 -2024-08-06 19:00:00+00:00,-0.007856726186743601 -2024-08-06 20:00:00+00:00,-0.050122399072949 -2024-08-06 21:00:00+00:00,-0.060235658708087746 -2024-08-06 22:00:00+00:00,-0.0634412162933416 -2024-08-06 23:00:00+00:00,-0.0511555212188569 -2024-08-07 00:00:00+00:00,-0.04155773721919108 -2024-08-07 01:00:00+00:00,0.09498621922414437 -2024-08-07 02:00:00+00:00,0.1814485806921917 -2024-08-07 03:00:00+00:00,0.24408297290059477 -2024-08-07 04:00:00+00:00,0.3007062755589419 -2024-08-07 05:00:00+00:00,0.27702851414214047 -2024-08-07 06:00:00+00:00,0.22034965273167761 -2024-08-07 07:00:00+00:00,0.1768536099228245 -2024-08-07 08:00:00+00:00,0.1697264115358577 -2024-08-07 09:00:00+00:00,0.176446806009104 -2024-08-07 10:00:00+00:00,0.14265454443139503 -2024-08-07 11:00:00+00:00,0.11006020207385103 -2024-08-07 12:00:00+00:00,0.06576224138624209 -2024-08-07 13:00:00+00:00,0.04399783241069888 -2024-08-07 14:00:00+00:00,0.02629338991914898 -2024-08-07 15:00:00+00:00,0.018128319667995996 -2024-08-07 16:00:00+00:00,-0.008304566737659558 -2024-08-07 17:00:00+00:00,-0.03903919328784822 -2024-08-07 18:00:00+00:00,-0.07325881798229794 -2024-08-07 19:00:00+00:00,-0.09544895960830646 -2024-08-07 20:00:00+00:00,-0.11822729482786487 -2024-08-07 21:00:00+00:00,-0.1286788476733282 -2024-08-07 22:00:00+00:00,-0.14632600230567083 -2024-08-07 23:00:00+00:00,-0.16882006276714517 -2024-08-08 00:00:00+00:00,-0.19521319023636374 -2024-08-08 01:00:00+00:00,-0.18080401184823064 -2024-08-08 02:00:00+00:00,-0.15092810521008998 -2024-08-08 03:00:00+00:00,-0.13989406177131947 -2024-08-08 04:00:00+00:00,-0.14322674498132876 -2024-08-08 05:00:00+00:00,-0.15034055951801573 -2024-08-08 06:00:00+00:00,-0.1334540386039648 -2024-08-08 07:00:00+00:00,-0.13765206172063807 -2024-08-08 08:00:00+00:00,-0.11298636521345992 -2024-08-08 09:00:00+00:00,-0.09621765276983839 -2024-08-08 10:00:00+00:00,-0.08218656619724313 -2024-08-08 11:00:00+00:00,-0.06563325863208375 -2024-08-08 12:00:00+00:00,0.006027782169763223 -2024-08-08 13:00:00+00:00,0.055043569226822374 -2024-08-08 14:00:00+00:00,0.0934249370215389 -2024-08-08 15:00:00+00:00,0.09968627816452955 -2024-08-08 16:00:00+00:00,0.10791524448431156 -2024-08-08 17:00:00+00:00,0.11414743690957704 -2024-08-08 18:00:00+00:00,0.10169335997031871 -2024-08-08 19:00:00+00:00,0.08337267638581186 -2024-08-08 20:00:00+00:00,0.07458973916850895 -2024-08-08 21:00:00+00:00,0.05969466079522465 -2024-08-08 22:00:00+00:00,0.049654404812572356 -2024-08-08 23:00:00+00:00,0.0653425764999164 -2024-08-09 00:00:00+00:00,0.05687381846407852 -2024-08-09 01:00:00+00:00,0.020942386792826756 -2024-08-09 02:00:00+00:00,0.021006955786925963 -2024-08-09 03:00:00+00:00,0.0013345632774608984 -2024-08-09 04:00:00+00:00,-0.0350410405118447 -2024-08-09 05:00:00+00:00,-0.049904856664251845 -2024-08-09 06:00:00+00:00,-0.0466273298460661 -2024-08-09 07:00:00+00:00,-0.04372333344401094 -2024-08-09 08:00:00+00:00,-0.04104221897528426 -2024-08-09 09:00:00+00:00,-0.0370161835845175 -2024-08-09 10:00:00+00:00,-0.04012343452275624 -2024-08-09 11:00:00+00:00,-0.049425702063548294 -2024-08-09 12:00:00+00:00,-0.06915817293244425 -2024-08-09 13:00:00+00:00,-0.08996027551026846 -2024-08-09 14:00:00+00:00,-0.10330879423663934 -2024-08-09 15:00:00+00:00,-0.10983780234397503 -2024-08-09 16:00:00+00:00,-0.10122522547344491 -2024-08-09 17:00:00+00:00,-0.08551276979636899 -2024-08-09 18:00:00+00:00,-0.07631748115971007 -2024-08-09 19:00:00+00:00,-0.0644951727933327 -2024-08-09 20:00:00+00:00,-0.05481756526790223 -2024-08-11 21:00:00+00:00,-0.036336676008175015 -2024-08-11 22:00:00+00:00,-0.007990991990685967 -2024-08-11 23:00:00+00:00,0.01600793149793455 -2024-08-12 00:00:00+00:00,0.016970177340610085 -2024-08-12 01:00:00+00:00,0.02401746435851898 -2024-08-12 02:00:00+00:00,0.025711546265128907 -2024-08-12 03:00:00+00:00,0.04266532769146384 -2024-08-12 04:00:00+00:00,0.04637196397232882 -2024-08-12 05:00:00+00:00,0.051175832131419366 -2024-08-12 06:00:00+00:00,0.053171891667613255 -2024-08-12 07:00:00+00:00,0.05101244434962088 -2024-08-12 08:00:00+00:00,0.05581798953089438 -2024-08-12 09:00:00+00:00,0.053058924817230874 -2024-08-12 10:00:00+00:00,0.054261414160528446 -2024-08-12 11:00:00+00:00,0.06139782645903438 -2024-08-12 12:00:00+00:00,0.07122892480509108 -2024-08-12 13:00:00+00:00,0.0764553381968826 -2024-08-12 14:00:00+00:00,0.08102773173997335 -2024-08-12 15:00:00+00:00,0.05713277886337176 -2024-08-12 16:00:00+00:00,0.025834819426968997 -2024-08-12 17:00:00+00:00,-0.007819398827308255 -2024-08-12 18:00:00+00:00,-0.022469867238237157 -2024-08-12 19:00:00+00:00,-0.039131818617574754 -2024-08-12 20:00:00+00:00,-0.047987048893729345 -2024-08-12 21:00:00+00:00,-0.05207759393087935 -2024-08-12 22:00:00+00:00,-0.0569329285508538 -2024-08-12 23:00:00+00:00,-0.06494658000383714 -2024-08-13 00:00:00+00:00,-0.05203550568051246 -2024-08-13 01:00:00+00:00,-0.03824607150597062 -2024-08-13 02:00:00+00:00,-0.024733245776864025 -2024-08-13 03:00:00+00:00,-0.00872726692745611 -2024-08-13 04:00:00+00:00,0.016063228985122496 -2024-08-13 05:00:00+00:00,0.02613349141028405 -2024-08-13 06:00:00+00:00,0.04547141483550897 -2024-08-13 07:00:00+00:00,0.05258908326677972 -2024-08-13 08:00:00+00:00,0.05270306946319911 -2024-08-13 09:00:00+00:00,0.05213024684698568 -2024-08-13 10:00:00+00:00,0.024872916538083822 -2024-08-13 11:00:00+00:00,-0.006250382853217981 -2024-08-13 12:00:00+00:00,-0.02296241211077535 -2024-08-13 13:00:00+00:00,-0.054219311176157636 -2024-08-13 14:00:00+00:00,-0.07687612182551443 -2024-08-13 15:00:00+00:00,-0.08965257445514177 -2024-08-13 16:00:00+00:00,-0.1083809144001503 -2024-08-13 17:00:00+00:00,-0.10427537691747917 -2024-08-13 18:00:00+00:00,-0.11046918004466967 -2024-08-13 19:00:00+00:00,-0.09848268007380812 -2024-08-13 20:00:00+00:00,-0.08392894014235175 -2024-08-13 21:00:00+00:00,-0.07037990924595333 -2024-08-13 22:00:00+00:00,-0.05864863968515349 -2024-08-13 23:00:00+00:00,-0.03979498819276793 -2024-08-14 00:00:00+00:00,-0.015396456848384851 -2024-08-14 01:00:00+00:00,-0.012825681184408896 -2024-08-14 02:00:00+00:00,-0.03540119605311187 -2024-08-14 03:00:00+00:00,-0.026461250770111716 -2024-08-14 04:00:00+00:00,-0.01247151847632047 -2024-08-14 05:00:00+00:00,0.01201940835577256 -2024-08-14 06:00:00+00:00,0.03469727028196118 -2024-08-14 07:00:00+00:00,0.061990788176951694 -2024-08-14 08:00:00+00:00,0.05805824041187488 -2024-08-14 09:00:00+00:00,0.052624205015246575 -2024-08-14 10:00:00+00:00,0.03237410012674023 -2024-08-14 11:00:00+00:00,0.020162648690196225 -2024-08-14 12:00:00+00:00,0.039047107073890065 -2024-08-14 13:00:00+00:00,0.02669278608591895 -2024-08-14 14:00:00+00:00,0.0053647722647058305 -2024-08-14 15:00:00+00:00,-0.001081386248273336 -2024-08-14 16:00:00+00:00,0.0002897845648250283 -2024-08-14 17:00:00+00:00,0.01842206956913297 -2024-08-14 18:00:00+00:00,0.03145313925246508 -2024-08-14 19:00:00+00:00,0.04442494522014792 -2024-08-14 20:00:00+00:00,0.048920229240744975 -2024-08-14 21:00:00+00:00,0.04507510232766277 -2024-08-14 22:00:00+00:00,0.042738237089580806 -2024-08-14 23:00:00+00:00,0.03798947811704992 -2024-08-15 00:00:00+00:00,0.030104448378206715 -2024-08-15 01:00:00+00:00,0.04197731442256691 -2024-08-15 02:00:00+00:00,0.04330742971347917 -2024-08-15 03:00:00+00:00,0.037542031526117854 -2024-08-15 04:00:00+00:00,0.022823461647057952 -2024-08-15 05:00:00+00:00,0.003404222663363571 -2024-08-15 06:00:00+00:00,-0.00786788408058741 -2024-08-15 07:00:00+00:00,-0.011893067280088543 -2024-08-15 08:00:00+00:00,-0.006606851606469455 -2024-08-15 09:00:00+00:00,-0.0009795337534278317 -2024-08-15 10:00:00+00:00,-0.006982177558533642 -2024-08-15 11:00:00+00:00,-0.011775012750348209 -2024-08-15 12:00:00+00:00,0.09627706964374755 -2024-08-15 13:00:00+00:00,0.16604511185869356 -2024-08-15 14:00:00+00:00,0.1972517383880814 -2024-08-15 15:00:00+00:00,0.19709792397816733 -2024-08-15 16:00:00+00:00,0.19299269885409925 -2024-08-15 17:00:00+00:00,0.18127217921741084 -2024-08-15 18:00:00+00:00,0.15604532062108822 -2024-08-15 19:00:00+00:00,0.1312331155021515 -2024-08-15 20:00:00+00:00,0.12057356521744089 -2024-08-15 21:00:00+00:00,0.10509253611959346 -2024-08-15 22:00:00+00:00,0.08307718100354106 -2024-08-15 23:00:00+00:00,0.05907968647249695 -2024-08-16 00:00:00+00:00,0.03151700527161816 -2024-08-16 01:00:00+00:00,-0.006607503101593193 -2024-08-16 02:00:00+00:00,-0.03746826509690365 -2024-08-16 03:00:00+00:00,-0.05549986231750281 -2024-08-16 04:00:00+00:00,-0.07258730703338112 -2024-08-16 05:00:00+00:00,-0.07972548571100957 -2024-08-16 06:00:00+00:00,-0.07483870312178215 -2024-08-16 07:00:00+00:00,-0.07449822924607852 -2024-08-16 08:00:00+00:00,-0.09319266720197295 -2024-08-16 09:00:00+00:00,-0.10545846929116826 -2024-08-16 10:00:00+00:00,-0.13131869467227097 -2024-08-16 11:00:00+00:00,-0.16264071498635313 -2024-08-16 12:00:00+00:00,-0.19939395222203357 -2024-08-16 13:00:00+00:00,-0.20870756836324791 -2024-08-16 14:00:00+00:00,-0.19009453711848565 -2024-08-16 15:00:00+00:00,-0.16090185265520823 -2024-08-16 16:00:00+00:00,-0.14340859897234323 -2024-08-16 17:00:00+00:00,-0.14149660956377408 -2024-08-16 18:00:00+00:00,-0.1375773878412704 -2024-08-16 19:00:00+00:00,-0.12565492013688548 -2024-08-16 20:00:00+00:00,-0.11684053036305266 -2024-08-18 21:00:00+00:00,-0.0996400707666707 -2024-08-18 22:00:00+00:00,-0.07115710700786834 -2024-08-18 23:00:00+00:00,-0.041847390918102856 -2024-08-19 00:00:00+00:00,-0.02896825987250712 -2024-08-19 01:00:00+00:00,-0.043972120601967424 -2024-08-19 02:00:00+00:00,-0.05361247550983117 -2024-08-19 03:00:00+00:00,-0.11197692217991273 -2024-08-19 04:00:00+00:00,-0.15780750227225404 -2024-08-19 05:00:00+00:00,-0.22480110423746708 -2024-08-19 06:00:00+00:00,-0.22362416960007409 -2024-08-19 07:00:00+00:00,-0.19331116148423644 -2024-08-19 08:00:00+00:00,-0.1619029233253665 -2024-08-19 09:00:00+00:00,-0.11730106304110743 -2024-08-19 10:00:00+00:00,-0.07383947771756683 -2024-08-19 11:00:00+00:00,-0.057963881223483726 -2024-08-19 12:00:00+00:00,-0.02906337707413309 -2024-08-19 13:00:00+00:00,0.006679751318726446 -2024-08-19 14:00:00+00:00,0.03154869159220508 -2024-08-19 15:00:00+00:00,0.053842279043554986 -2024-08-19 16:00:00+00:00,0.0744428367136643 -2024-08-19 17:00:00+00:00,0.09030757933427891 -2024-08-19 18:00:00+00:00,0.10714429734359748 -2024-08-19 19:00:00+00:00,0.114720398647082 -2024-08-19 20:00:00+00:00,0.11513150776202274 -2024-08-19 21:00:00+00:00,0.11204413284445441 -2024-08-19 22:00:00+00:00,0.10973369782736442 -2024-08-19 23:00:00+00:00,0.11052540475940181 -2024-08-20 00:00:00+00:00,0.08450538376399797 -2024-08-20 01:00:00+00:00,0.06582605774083383 -2024-08-20 02:00:00+00:00,0.09533474210662549 -2024-08-20 03:00:00+00:00,0.11518341137144378 -2024-08-20 04:00:00+00:00,0.11452790523516981 -2024-08-20 05:00:00+00:00,0.13225621790369826 -2024-08-20 06:00:00+00:00,0.12236867361956148 -2024-08-20 07:00:00+00:00,0.07971231835639382 -2024-08-20 08:00:00+00:00,0.047161856730754015 -2024-08-20 09:00:00+00:00,0.022161525044658348 -2024-08-20 10:00:00+00:00,0.003983146263663653 -2024-08-20 11:00:00+00:00,-0.011592026558128438 -2024-08-20 12:00:00+00:00,-0.03292514208023507 -2024-08-20 13:00:00+00:00,-0.04773939137670938 -2024-08-20 14:00:00+00:00,-0.08642793050279399 -2024-08-20 15:00:00+00:00,-0.09899035082032734 -2024-08-20 16:00:00+00:00,-0.1195012413589987 -2024-08-20 17:00:00+00:00,-0.11875760787957756 -2024-08-20 18:00:00+00:00,-0.11684098718005007 -2024-08-20 19:00:00+00:00,-0.11025808683007948 -2024-08-20 20:00:00+00:00,-0.10256731575046307 -2024-08-20 21:00:00+00:00,-0.09869114516861854 -2024-08-20 22:00:00+00:00,-0.08850494818249466 -2024-08-20 23:00:00+00:00,-0.0617410197349883 -2024-08-21 00:00:00+00:00,-0.03076273956709763 -2024-08-21 01:00:00+00:00,-0.009035265054321784 -2024-08-21 02:00:00+00:00,0.006988122384030293 -2024-08-21 03:00:00+00:00,0.0254088887877974 -2024-08-21 04:00:00+00:00,0.051328669891077316 -2024-08-21 05:00:00+00:00,0.06739032086810526 -2024-08-21 06:00:00+00:00,0.09491227024268928 -2024-08-21 07:00:00+00:00,0.12221465255967262 -2024-08-21 08:00:00+00:00,0.12814142145968724 -2024-08-21 09:00:00+00:00,0.13251206318972159 -2024-08-21 10:00:00+00:00,0.13371695723949376 -2024-08-21 11:00:00+00:00,0.12191214158564859 -2024-08-21 12:00:00+00:00,0.09118978393739392 -2024-08-21 13:00:00+00:00,0.06583973487835154 -2024-08-21 14:00:00+00:00,0.04114289665810636 -2024-08-21 15:00:00+00:00,-0.0041521925865214 -2024-08-21 16:00:00+00:00,-0.03214945798264712 -2024-08-21 17:00:00+00:00,-0.05503905814702481 -2024-08-21 18:00:00+00:00,-0.08622926731276903 -2024-08-21 19:00:00+00:00,-0.08320195715602549 -2024-08-21 20:00:00+00:00,-0.05767574868076869 -2024-08-21 21:00:00+00:00,-0.04433467982640027 -2024-08-21 22:00:00+00:00,-0.05039742476022413 -2024-08-21 23:00:00+00:00,-0.03506805170772259 -2024-08-22 00:00:00+00:00,-0.008458166022226377 -2024-08-22 01:00:00+00:00,0.0285051595933708 -2024-08-22 02:00:00+00:00,0.04091813610818229 -2024-08-22 03:00:00+00:00,0.03668891866590818 -2024-08-22 04:00:00+00:00,0.025230025427167846 -2024-08-22 05:00:00+00:00,0.026949852815327302 -2024-08-22 06:00:00+00:00,0.035119007359360965 -2024-08-22 07:00:00+00:00,0.031123046019642636 -2024-08-22 08:00:00+00:00,0.05320885606852127 -2024-08-22 09:00:00+00:00,0.06362356559247835 -2024-08-22 10:00:00+00:00,0.07777453829819404 -2024-08-22 11:00:00+00:00,0.0978793012362706 -2024-08-22 12:00:00+00:00,0.10971740540532708 -2024-08-22 13:00:00+00:00,0.12667157803526277 -2024-08-22 14:00:00+00:00,0.1275307108435346 -2024-08-22 15:00:00+00:00,0.10488345797339578 -2024-08-22 16:00:00+00:00,0.10699688270206775 -2024-08-22 17:00:00+00:00,0.10123698706196738 -2024-08-22 18:00:00+00:00,0.08538040198883506 -2024-08-22 19:00:00+00:00,0.07442576896267439 -2024-08-22 20:00:00+00:00,0.06324678859419189 -2024-08-22 21:00:00+00:00,0.048157094244464654 -2024-08-22 22:00:00+00:00,0.029829700820032362 -2024-08-22 23:00:00+00:00,0.01700278170304853 -2024-08-23 00:00:00+00:00,-0.0024004410206943105 -2024-08-23 01:00:00+00:00,-0.053493256743158885 -2024-08-23 02:00:00+00:00,-0.07697583897567539 -2024-08-23 03:00:00+00:00,-0.0844905820285744 -2024-08-23 04:00:00+00:00,-0.07949595654214008 -2024-08-23 05:00:00+00:00,-0.07950487312139728 -2024-08-23 06:00:00+00:00,-0.09006253981716827 -2024-08-23 07:00:00+00:00,-0.06888463365420412 -2024-08-23 08:00:00+00:00,-0.04568034497711772 -2024-08-23 09:00:00+00:00,-0.015936485025306812 -2024-08-23 10:00:00+00:00,-0.004548842038354775 -2024-08-23 11:00:00+00:00,0.003681361377134734 -2024-08-23 12:00:00+00:00,0.005408380924599519 -2024-08-23 13:00:00+00:00,0.021208322650483086 -2024-08-23 14:00:00+00:00,-0.035266501169585344 -2024-08-23 15:00:00+00:00,-0.09117921234257936 -2024-08-23 16:00:00+00:00,-0.12273237355029631 -2024-08-23 17:00:00+00:00,-0.16395087647477222 -2024-08-23 18:00:00+00:00,-0.18782463302517313 -2024-08-23 19:00:00+00:00,-0.19570129262613167 -2024-08-23 20:00:00+00:00,-0.17941825735634234 -2024-08-25 21:00:00+00:00,-0.1790695251393201 -2024-08-25 22:00:00+00:00,-0.1768948890028763 -2024-08-25 23:00:00+00:00,-0.16218235694459132 -2024-08-26 00:00:00+00:00,-0.15469098614419785 -2024-08-26 01:00:00+00:00,-0.13683250397782132 -2024-08-26 02:00:00+00:00,-0.10263432257548288 -2024-08-26 03:00:00+00:00,-0.06945381994185024 -2024-08-26 04:00:00+00:00,-0.036131002554993685 -2024-08-26 05:00:00+00:00,-0.008595438137295686 -2024-08-26 06:00:00+00:00,-0.004873473970295583 -2024-08-26 07:00:00+00:00,0.009584736872941091 -2024-08-26 08:00:00+00:00,0.020738889026008733 -2024-08-26 09:00:00+00:00,0.037550247952096605 -2024-08-26 10:00:00+00:00,0.0542602287798325 -2024-08-26 11:00:00+00:00,0.07226828649670047 -2024-08-26 12:00:00+00:00,0.07109119898403204 -2024-08-26 13:00:00+00:00,0.10035528953559103 -2024-08-26 14:00:00+00:00,0.09996671819641739 -2024-08-26 15:00:00+00:00,0.12079863324507106 -2024-08-26 16:00:00+00:00,0.12733471029321053 -2024-08-26 17:00:00+00:00,0.1312975225378738 -2024-08-26 18:00:00+00:00,0.1279712407081515 -2024-08-26 19:00:00+00:00,0.12704275345604601 -2024-08-26 20:00:00+00:00,0.11678254190124496 -2024-08-26 21:00:00+00:00,0.10458267938486226 -2024-08-26 22:00:00+00:00,0.08391013343614336 -2024-08-26 23:00:00+00:00,0.07636937205606527 -2024-08-27 00:00:00+00:00,0.08991649419979353 -2024-08-27 01:00:00+00:00,0.08506969649285656 -2024-08-27 02:00:00+00:00,0.08904814936565053 -2024-08-27 03:00:00+00:00,0.08480869077168195 -2024-08-27 04:00:00+00:00,0.06510888620290531 -2024-08-27 05:00:00+00:00,0.059258406935110544 -2024-08-27 06:00:00+00:00,0.054282838377283774 -2024-08-27 07:00:00+00:00,0.05886340812983876 -2024-08-27 08:00:00+00:00,0.06223080756426555 -2024-08-27 09:00:00+00:00,0.04601233159802677 -2024-08-27 10:00:00+00:00,0.02923977444760785 -2024-08-27 11:00:00+00:00,0.0006795402928936878 -2024-08-27 12:00:00+00:00,-0.02726395387531909 -2024-08-27 13:00:00+00:00,-0.04767794874771834 -2024-08-27 14:00:00+00:00,-0.06372542023057085 -2024-08-27 15:00:00+00:00,-0.0701783362798912 -2024-08-27 16:00:00+00:00,-0.07911763831295661 -2024-08-27 17:00:00+00:00,-0.07990431256359207 -2024-08-27 18:00:00+00:00,-0.08473891738860304 -2024-08-27 19:00:00+00:00,-0.08566525116990317 -2024-08-27 20:00:00+00:00,-0.08287706537251152 -2024-08-27 21:00:00+00:00,-0.07676069341862102 -2024-08-27 22:00:00+00:00,-0.07285210418489257 -2024-08-27 23:00:00+00:00,-0.05932570457222516 -2024-08-28 00:00:00+00:00,-0.037600749135760725 -2024-08-28 01:00:00+00:00,-0.004770313071058657 -2024-08-28 02:00:00+00:00,0.022334031726055706 -2024-08-28 03:00:00+00:00,0.037357672111473283 -2024-08-28 04:00:00+00:00,0.04214975668100257 -2024-08-28 05:00:00+00:00,0.04643575452430758 -2024-08-28 06:00:00+00:00,0.05632816249953754 -2024-08-28 07:00:00+00:00,0.062131474726218626 -2024-08-28 08:00:00+00:00,0.04929066390607517 -2024-08-28 09:00:00+00:00,0.0348975206576804 -2024-08-28 10:00:00+00:00,0.0329060944606119 -2024-08-28 11:00:00+00:00,0.024677332416704816 -2024-08-28 12:00:00+00:00,0.042844734103167366 -2024-08-28 13:00:00+00:00,0.06067994217816955 -2024-08-28 14:00:00+00:00,0.04615448251285052 -2024-08-28 15:00:00+00:00,0.033508789140878945 -2024-08-28 16:00:00+00:00,0.040752048222632266 -2024-08-28 17:00:00+00:00,0.03599329002279588 -2024-08-28 18:00:00+00:00,0.03211180452065707 -2024-08-28 19:00:00+00:00,0.030697355722569125 -2024-08-28 20:00:00+00:00,0.020494918457782396 -2024-08-28 21:00:00+00:00,0.004251374207908304 -2024-08-28 22:00:00+00:00,-0.017170413409146268 -2024-08-28 23:00:00+00:00,-0.021275153498856364 -2024-08-29 00:00:00+00:00,-0.023579614966155953 -2024-08-29 01:00:00+00:00,-0.011307076205812852 -2024-08-29 02:00:00+00:00,-0.0063423123803681425 -2024-08-29 03:00:00+00:00,-0.007160990977024051 -2024-08-29 04:00:00+00:00,0.001664875002088978 -2024-08-29 05:00:00+00:00,0.003241943182476767 -2024-08-29 06:00:00+00:00,0.0015257147111041106 -2024-08-29 07:00:00+00:00,0.009382798971089228 -2024-08-29 08:00:00+00:00,0.010873080414365029 -2024-08-29 09:00:00+00:00,3.7389599647455474e-05 -2024-08-29 10:00:00+00:00,-0.00921302229043594 -2024-08-29 11:00:00+00:00,-0.008412324892683537 -2024-08-29 12:00:00+00:00,0.04346541259373404 -2024-08-29 13:00:00+00:00,0.07188909344107612 -2024-08-29 14:00:00+00:00,0.08370308920879402 -2024-08-29 15:00:00+00:00,0.06278981799357342 -2024-08-29 16:00:00+00:00,0.04656763965506175 -2024-08-29 17:00:00+00:00,0.023308636252666937 -2024-08-29 18:00:00+00:00,0.001400109316206724 -2024-08-29 19:00:00+00:00,-0.00447678904278162 -2024-08-29 20:00:00+00:00,-0.004390511766210581 -2024-08-29 21:00:00+00:00,-0.004709295608330388 -2024-08-29 22:00:00+00:00,-0.01182773867246395 -2024-08-29 23:00:00+00:00,-0.017511091951711022 -2024-08-30 00:00:00+00:00,-0.031785036893228424 -2024-08-30 01:00:00+00:00,-0.03766770419726076 -2024-08-30 02:00:00+00:00,-0.03987499736457452 -2024-08-30 03:00:00+00:00,-0.038231873146546275 -2024-08-30 04:00:00+00:00,-0.032706572752774915 -2024-08-30 05:00:00+00:00,-0.02738817124898303 -2024-08-30 06:00:00+00:00,-0.017182777740842307 -2024-08-30 07:00:00+00:00,-0.011876799552930972 -2024-08-30 08:00:00+00:00,0.0036365862433786547 -2024-08-30 09:00:00+00:00,0.013430525048765095 -2024-08-30 10:00:00+00:00,0.028668249517798575 -2024-08-30 11:00:00+00:00,0.04466701135485672 -2024-08-30 12:00:00+00:00,0.06492479710662707 -2024-08-30 13:00:00+00:00,0.07094298788894071 -2024-08-30 14:00:00+00:00,0.06940961173679605 -2024-08-30 15:00:00+00:00,0.08706068489022512 -2024-08-30 16:00:00+00:00,0.10942215848029341 -2024-08-30 17:00:00+00:00,0.11148875815367287 -2024-08-30 18:00:00+00:00,0.10117447833360138 -2024-08-30 19:00:00+00:00,0.09336575315018997 -2024-08-30 20:00:00+00:00,0.08221859480700733 -2024-09-01 21:00:00+00:00,0.06299416450521345 -2024-09-01 22:00:00+00:00,0.06605558706677411 -2024-09-01 23:00:00+00:00,0.059161775967837005 -2024-09-02 00:00:00+00:00,0.0351504870857865 -2024-09-02 01:00:00+00:00,0.016777495108249163 -2024-09-02 02:00:00+00:00,-0.014431205201794972 -2024-09-02 03:00:00+00:00,-0.03746574819925269 -2024-09-02 04:00:00+00:00,-0.0539563515999133 -2024-09-02 05:00:00+00:00,-0.053104906866251356 -2024-09-02 06:00:00+00:00,-0.04915697229796384 -2024-09-02 07:00:00+00:00,-0.026706726204314857 -2024-09-02 08:00:00+00:00,0.0008637175770860872 -2024-09-02 09:00:00+00:00,0.014050276320537292 -2024-09-02 10:00:00+00:00,0.0270706595361091 -2024-09-02 11:00:00+00:00,0.04300787980317977 -2024-09-02 12:00:00+00:00,0.04758684649350109 -2024-09-02 13:00:00+00:00,0.04393237087275503 -2024-09-02 14:00:00+00:00,0.03622985863179512 -2024-09-02 15:00:00+00:00,0.025864595057120354 -2024-09-02 16:00:00+00:00,0.006465211483366318 -2024-09-02 17:00:00+00:00,-0.0043202971936182055 -2024-09-02 18:00:00+00:00,-0.013279703093680817 -2024-09-02 19:00:00+00:00,-0.022126233090700276 -2024-09-02 20:00:00+00:00,-0.027962763551873326 -2024-09-02 21:00:00+00:00,-0.033521338830113157 -2024-09-02 22:00:00+00:00,-0.03515556938915587 -2024-09-02 23:00:00+00:00,-0.0500548992758198 -2024-09-03 00:00:00+00:00,-0.03535915868593409 -2024-09-03 01:00:00+00:00,-0.059346035745783454 -2024-09-03 02:00:00+00:00,-0.07217091997501415 -2024-09-03 03:00:00+00:00,-0.08482100925116848 -2024-09-03 04:00:00+00:00,-0.09101675852797084 -2024-09-03 05:00:00+00:00,-0.10629179557296312 -2024-09-03 06:00:00+00:00,-0.13055415225019715 -2024-09-03 07:00:00+00:00,-0.14471263324205574 -2024-09-03 08:00:00+00:00,-0.1558057615056252 -2024-09-03 09:00:00+00:00,-0.1473207251837888 -2024-09-03 10:00:00+00:00,-0.12820512441576257 -2024-09-03 11:00:00+00:00,-0.1005836512159292 -2024-09-03 12:00:00+00:00,-0.09641880551156537 -2024-09-03 13:00:00+00:00,-0.1167826098515125 -2024-09-03 14:00:00+00:00,-0.11449166468152072 -2024-09-03 15:00:00+00:00,-0.08956401058615959 -2024-09-03 16:00:00+00:00,-0.0717809196340915 -2024-09-03 17:00:00+00:00,-0.04711916209897532 -2024-09-03 18:00:00+00:00,-0.03375419761424242 -2024-09-03 19:00:00+00:00,-0.03307130281474363 -2024-09-03 20:00:00+00:00,-0.03882989961869898 -2024-09-03 21:00:00+00:00,-0.0413432145191405 -2024-09-03 22:00:00+00:00,-0.04548934541803282 -2024-09-03 23:00:00+00:00,-0.04210538866669755 -2024-09-04 00:00:00+00:00,-0.04812303080495842 -2024-09-04 01:00:00+00:00,-0.03248576899941283 -2024-09-04 02:00:00+00:00,-0.016274313844546306 -2024-09-04 03:00:00+00:00,-0.011556160076905742 -2024-09-04 04:00:00+00:00,-0.009795543079780061 -2024-09-04 05:00:00+00:00,-0.011171156874119431 -2024-09-04 06:00:00+00:00,-0.027816635496963782 -2024-09-04 07:00:00+00:00,-0.027633738470821845 -2024-09-04 08:00:00+00:00,-0.009446897489507722 -2024-09-04 09:00:00+00:00,-0.001520491510834554 -2024-09-04 10:00:00+00:00,0.003519517951096729 -2024-09-04 11:00:00+00:00,-0.0024563102569183926 -2024-09-04 12:00:00+00:00,0.008211838742635535 -2024-09-04 13:00:00+00:00,-0.0012601502262810649 -2024-09-04 14:00:00+00:00,-0.04761743160502874 -2024-09-04 15:00:00+00:00,-0.05967185374588185 -2024-09-04 16:00:00+00:00,-0.07804830471089808 -2024-09-04 17:00:00+00:00,-0.08099421721380567 -2024-09-04 18:00:00+00:00,-0.08739506240761374 -2024-09-04 19:00:00+00:00,-0.08795999190484 -2024-09-04 20:00:00+00:00,-0.08591334262849931 -2024-09-04 21:00:00+00:00,-0.08156692224791712 -2024-09-04 22:00:00+00:00,-0.0728215587170904 -2024-09-04 23:00:00+00:00,-0.07782118079575945 -2024-09-05 00:00:00+00:00,-0.048366235476175135 -2024-09-05 01:00:00+00:00,-0.02389383482292967 -2024-09-05 02:00:00+00:00,0.004906380842452429 -2024-09-05 03:00:00+00:00,0.022517622803374382 -2024-09-05 04:00:00+00:00,0.024866086515610175 -2024-09-05 05:00:00+00:00,0.018042710295510855 -2024-09-05 06:00:00+00:00,0.006552984129899797 -2024-09-05 07:00:00+00:00,0.02686830521817246 -2024-09-05 08:00:00+00:00,0.03982697059035417 -2024-09-05 09:00:00+00:00,0.051999410102575694 -2024-09-05 10:00:00+00:00,0.053477427665206856 -2024-09-05 11:00:00+00:00,0.05271171219592902 -2024-09-05 12:00:00+00:00,0.0305485566350851 -2024-09-05 13:00:00+00:00,0.024592598786139064 -2024-09-05 14:00:00+00:00,0.06944774931898512 -2024-09-05 15:00:00+00:00,0.06629364308467078 -2024-09-05 16:00:00+00:00,0.06395026092862466 -2024-09-05 17:00:00+00:00,0.0568590648698688 -2024-09-05 18:00:00+00:00,0.056670637178592664 -2024-09-05 19:00:00+00:00,0.05890255022984098 -2024-09-05 20:00:00+00:00,0.05946462203614472 -2024-09-05 21:00:00+00:00,0.05760253745282795 -2024-09-05 22:00:00+00:00,0.05488935862636435 -2024-09-05 23:00:00+00:00,0.05121313213615722 -2024-09-06 00:00:00+00:00,0.03462864802682081 -2024-09-06 01:00:00+00:00,0.030910360250706204 -2024-09-06 02:00:00+00:00,0.023893643415378613 -2024-09-06 03:00:00+00:00,0.009443132511650021 -2024-09-06 04:00:00+00:00,-0.0005706256867133441 -2024-09-06 05:00:00+00:00,-0.029804910248111993 -2024-09-06 06:00:00+00:00,-0.058062445623586756 -2024-09-06 07:00:00+00:00,-0.06233230741410922 -2024-09-06 08:00:00+00:00,-0.0536901478611862 -2024-09-06 09:00:00+00:00,-0.031095335664153567 -2024-09-06 10:00:00+00:00,-0.009611875872194697 -2024-09-06 11:00:00+00:00,0.019898638938003255 -2024-09-06 12:00:00+00:00,0.03523433813668425 -2024-09-06 13:00:00+00:00,0.07921954226325903 -2024-09-06 14:00:00+00:00,0.03586511019155886 -2024-09-06 15:00:00+00:00,-0.010199551229612358 -2024-09-06 16:00:00+00:00,-0.01685139511725503 -2024-09-06 17:00:00+00:00,-0.01940895153769423 -2024-09-06 18:00:00+00:00,-0.021966139177069216 -2024-09-06 19:00:00+00:00,-0.01642558808214456 -2024-09-06 20:00:00+00:00,-0.016592453363661164 -2024-09-08 21:00:00+00:00,-0.023225664283191838 -2024-09-08 22:00:00+00:00,-0.024576722575991805 -2024-09-08 23:00:00+00:00,0.00010126308707886222 -2024-09-09 00:00:00+00:00,0.031248290697854952 -2024-09-09 01:00:00+00:00,0.06806450716299689 -2024-09-09 02:00:00+00:00,0.08088571382554288 -2024-09-09 03:00:00+00:00,0.08291626256717982 -2024-09-09 04:00:00+00:00,0.09531023054102997 -2024-09-09 05:00:00+00:00,0.09584680545487931 -2024-09-09 06:00:00+00:00,0.09821364562233989 -2024-09-09 07:00:00+00:00,0.10552788630320932 -2024-09-09 08:00:00+00:00,0.11972253660058128 -2024-09-09 09:00:00+00:00,0.12987368410839872 -2024-09-09 10:00:00+00:00,0.1413209835389427 -2024-09-09 11:00:00+00:00,0.13727844344425336 -2024-09-09 12:00:00+00:00,0.10319600388357435 -2024-09-09 13:00:00+00:00,0.04781607771972704 -2024-09-09 14:00:00+00:00,0.006578860178510365 -2024-09-09 15:00:00+00:00,-0.008331013739914211 -2024-09-09 16:00:00+00:00,-0.0208083460967899 -2024-09-09 17:00:00+00:00,-0.032335852995644274 -2024-09-09 18:00:00+00:00,-0.0386333416320331 -2024-09-09 19:00:00+00:00,-0.031534293282821105 -2024-09-09 20:00:00+00:00,-0.01263740139561681 -2024-09-09 21:00:00+00:00,-0.001985715523353672 -2024-09-09 22:00:00+00:00,-0.0017145076309190085 -2024-09-09 23:00:00+00:00,0.007420165290877856 -2024-09-10 00:00:00+00:00,0.030485174943393825 -2024-09-10 01:00:00+00:00,0.03987921526028245 -2024-09-10 02:00:00+00:00,0.04203574284816579 -2024-09-10 03:00:00+00:00,0.029746796070601794 -2024-09-10 04:00:00+00:00,0.010001196368390516 -2024-09-10 05:00:00+00:00,0.0012084583014922573 -2024-09-10 06:00:00+00:00,0.010460304774677326 -2024-09-10 07:00:00+00:00,0.027960602472645243 -2024-09-10 08:00:00+00:00,0.030951171708567607 -2024-09-10 09:00:00+00:00,0.007963599426092802 -2024-09-10 10:00:00+00:00,-0.015250157140120388 -2024-09-10 11:00:00+00:00,-0.024654304862705298 -2024-09-10 12:00:00+00:00,-0.046424054557995156 -2024-09-10 13:00:00+00:00,-0.04936169540982835 -2024-09-10 14:00:00+00:00,-0.06760701177863647 -2024-09-10 15:00:00+00:00,-0.10333463351245412 -2024-09-10 16:00:00+00:00,-0.10930171745020004 -2024-09-10 17:00:00+00:00,-0.11156124003880949 -2024-09-10 18:00:00+00:00,-0.10972022785685967 -2024-09-10 19:00:00+00:00,-0.10477260824566612 -2024-09-10 20:00:00+00:00,-0.0859006709131323 -2024-09-10 21:00:00+00:00,-0.07019902763047309 -2024-09-10 22:00:00+00:00,-0.05446722966195838 -2024-09-10 23:00:00+00:00,-0.05390368601822981 -2024-09-11 00:00:00+00:00,-0.045778496236857064 -2024-09-11 01:00:00+00:00,-0.06603768977374272 -2024-09-11 02:00:00+00:00,-0.07351900586648341 -2024-09-11 03:00:00+00:00,-0.10019233204896805 -2024-09-11 04:00:00+00:00,-0.12909955895037678 -2024-09-11 05:00:00+00:00,-0.12581614635328509 -2024-09-11 06:00:00+00:00,-0.10875102773061202 -2024-09-11 07:00:00+00:00,-0.08854466134397943 -2024-09-11 08:00:00+00:00,-0.058930565340169605 -2024-09-11 09:00:00+00:00,-0.03166648186747245 -2024-09-11 10:00:00+00:00,-0.008955471634781165 -2024-09-11 11:00:00+00:00,0.016049571863524736 -2024-09-11 12:00:00+00:00,0.07260719331215348 -2024-09-11 13:00:00+00:00,0.07695176963192268 -2024-09-11 14:00:00+00:00,0.05391067202478217 -2024-09-11 15:00:00+00:00,0.058632478675324895 -2024-09-11 16:00:00+00:00,0.07539659789386266 -2024-09-11 17:00:00+00:00,0.10082775897289392 -2024-09-11 18:00:00+00:00,0.11353571104415025 -2024-09-11 19:00:00+00:00,0.1287036036605399 -2024-09-11 20:00:00+00:00,0.1323271510144422 -2024-09-11 21:00:00+00:00,0.12477721987866511 -2024-09-11 22:00:00+00:00,0.12526868956699577 -2024-09-11 23:00:00+00:00,0.1313825244615502 -2024-09-12 00:00:00+00:00,0.13184883731549357 -2024-09-12 01:00:00+00:00,0.11658035223411396 -2024-09-12 02:00:00+00:00,0.10008913295883218 -2024-09-12 03:00:00+00:00,0.08831804361414311 -2024-09-12 04:00:00+00:00,0.08802604883862168 -2024-09-12 05:00:00+00:00,0.08574531523124193 -2024-09-12 06:00:00+00:00,0.06255018476684221 -2024-09-12 07:00:00+00:00,0.055846173801518656 -2024-09-12 08:00:00+00:00,0.03589863905420346 -2024-09-12 09:00:00+00:00,0.02654694617605788 -2024-09-12 10:00:00+00:00,0.014438326811401003 -2024-09-12 11:00:00+00:00,0.0013950182952269519 -2024-09-12 12:00:00+00:00,-0.037910258173269706 -2024-09-12 13:00:00+00:00,-0.06746991542793254 -2024-09-12 14:00:00+00:00,-0.05328851897075777 -2024-09-12 15:00:00+00:00,-0.05781502867605297 -2024-09-12 16:00:00+00:00,-0.04076831773810999 -2024-09-12 17:00:00+00:00,-0.04431344806956512 -2024-09-12 18:00:00+00:00,-0.06060594000415935 -2024-09-12 19:00:00+00:00,-0.07713134632362587 -2024-09-12 20:00:00+00:00,-0.08803814469822593 -2024-09-12 21:00:00+00:00,-0.08890730958639355 -2024-09-12 22:00:00+00:00,-0.08425796208534053 -2024-09-12 23:00:00+00:00,-0.0976441385122671 -2024-09-13 00:00:00+00:00,-0.1205169084066496 -2024-09-13 01:00:00+00:00,-0.12584488647788122 -2024-09-13 02:00:00+00:00,-0.1332669816237875 -2024-09-13 03:00:00+00:00,-0.13352305289631378 -2024-09-13 04:00:00+00:00,-0.12609805463643398 -2024-09-13 05:00:00+00:00,-0.11887449861913318 -2024-09-13 06:00:00+00:00,-0.0913994643259895 -2024-09-13 07:00:00+00:00,-0.07824550079884696 -2024-09-13 08:00:00+00:00,-0.07687635806020426 -2024-09-13 09:00:00+00:00,-0.07691904356489665 -2024-09-13 10:00:00+00:00,-0.06222520931290548 -2024-09-13 11:00:00+00:00,-0.03771072559176719 -2024-09-13 12:00:00+00:00,-0.023811498385648 -2024-09-13 13:00:00+00:00,-0.034151738459223924 -2024-09-13 14:00:00+00:00,-0.017583434354533134 -2024-09-13 15:00:00+00:00,-0.0013151596766975415 -2024-09-13 16:00:00+00:00,0.021828640356599094 -2024-09-13 17:00:00+00:00,0.04482801516284962 -2024-09-13 18:00:00+00:00,0.06157888723827237 -2024-09-13 19:00:00+00:00,0.07186323579016074 -2024-09-13 20:00:00+00:00,0.07049927158660663 -2024-09-15 21:00:00+00:00,0.0665315145564998 -2024-09-15 22:00:00+00:00,0.05754195438070003 -2024-09-15 23:00:00+00:00,0.061061162443301065 -2024-09-16 00:00:00+00:00,0.04203885100204657 -2024-09-16 01:00:00+00:00,0.031168235170115965 -2024-09-16 02:00:00+00:00,0.024437954885788288 -2024-09-16 03:00:00+00:00,-0.005182466099980354 -2024-09-16 04:00:00+00:00,-0.01516604730023724 -2024-09-16 05:00:00+00:00,-0.019941835096719207 -2024-09-16 06:00:00+00:00,-0.04151550747333427 -2024-09-16 07:00:00+00:00,-0.04903495372437827 -2024-09-16 08:00:00+00:00,-0.05011133581124755 -2024-09-16 09:00:00+00:00,-0.0229194312452215 -2024-09-16 10:00:00+00:00,-0.0072072202272983055 -2024-09-16 11:00:00+00:00,-0.009644500625709485 -2024-09-16 12:00:00+00:00,0.014536092047798432 -2024-09-16 13:00:00+00:00,0.04554796761870539 -2024-09-16 14:00:00+00:00,0.06430635416633329 -2024-09-16 15:00:00+00:00,0.09761184333239004 -2024-09-16 16:00:00+00:00,0.10545594247206708 -2024-09-16 17:00:00+00:00,0.10919804165745678 -2024-09-16 18:00:00+00:00,0.10979639996455118 -2024-09-16 19:00:00+00:00,0.10482418873873459 -2024-09-16 20:00:00+00:00,0.091532045998192 -2024-09-16 21:00:00+00:00,0.08091615640972745 -2024-09-16 22:00:00+00:00,0.08587911336476234 -2024-09-16 23:00:00+00:00,0.08055866445340105 -2024-09-17 00:00:00+00:00,0.06499519570670206 -2024-09-17 01:00:00+00:00,0.03806337170247074 -2024-09-17 02:00:00+00:00,0.027858774785573796 -2024-09-17 03:00:00+00:00,0.021398529785110428 -2024-09-17 04:00:00+00:00,0.021531752322500312 -2024-09-17 05:00:00+00:00,0.022040149109998845 -2024-09-17 06:00:00+00:00,0.019771200355729407 -2024-09-17 07:00:00+00:00,0.012006284871013828 -2024-09-17 08:00:00+00:00,0.004877713364368555 -2024-09-17 09:00:00+00:00,0.004381789208801178 -2024-09-17 10:00:00+00:00,0.005378748216578275 -2024-09-17 11:00:00+00:00,0.001630941559397605 -2024-09-17 12:00:00+00:00,0.022415916791009866 -2024-09-17 13:00:00+00:00,0.07300840124722044 -2024-09-17 14:00:00+00:00,0.10793918654226105 -2024-09-17 15:00:00+00:00,0.12842367094235124 -2024-09-17 16:00:00+00:00,0.13114792842905917 -2024-09-17 17:00:00+00:00,0.13550895343302105 -2024-09-17 18:00:00+00:00,0.12357436257078963 -2024-09-17 19:00:00+00:00,0.13438080159816984 -2024-09-17 20:00:00+00:00,0.1435071365125058 -2024-09-17 21:00:00+00:00,0.1360968526904074 -2024-09-17 22:00:00+00:00,0.10206268174054567 -2024-09-17 23:00:00+00:00,0.06999581401567861 -2024-09-18 00:00:00+00:00,0.02013418966524383 -2024-09-18 01:00:00+00:00,-0.02369865953221384 -2024-09-18 02:00:00+00:00,-0.05616793640344803 -2024-09-18 03:00:00+00:00,-0.08153534730510659 -2024-09-18 04:00:00+00:00,-0.10074435606502485 -2024-09-18 05:00:00+00:00,-0.09615823742546159 -2024-09-18 06:00:00+00:00,-0.0898254805099371 -2024-09-18 07:00:00+00:00,-0.062167372945253985 -2024-09-18 08:00:00+00:00,-0.0542323369988254 -2024-09-18 09:00:00+00:00,-0.052378482100348345 -2024-09-18 10:00:00+00:00,-0.052782370720408006 -2024-09-18 11:00:00+00:00,-0.03652713149682557 -2024-09-18 12:00:00+00:00,-0.021129061990973363 -2024-09-18 13:00:00+00:00,-0.022215888688001645 -2024-09-18 14:00:00+00:00,-0.007872820349296566 -2024-09-18 15:00:00+00:00,-0.004120741450178211 -2024-09-18 16:00:00+00:00,-0.006428375757012494 -2024-09-18 17:00:00+00:00,-0.0019962201307079097 -2024-09-18 18:00:00+00:00,-0.05508771379818528 -2024-09-18 19:00:00+00:00,-0.0035428803720022883 -2024-09-18 20:00:00+00:00,0.017335290176339446 -2024-09-18 21:00:00+00:00,0.018241117695156406 -2024-09-18 22:00:00+00:00,0.01572935094899458 -2024-09-18 23:00:00+00:00,0.0497810095279021 -2024-09-19 00:00:00+00:00,0.11697676567383491 -2024-09-19 01:00:00+00:00,0.166759752985361 -2024-09-19 02:00:00+00:00,0.1534993673268139 -2024-09-19 03:00:00+00:00,0.1324681826621127 -2024-09-19 04:00:00+00:00,0.10991968594715074 -2024-09-19 05:00:00+00:00,0.048550528091825695 -2024-09-19 06:00:00+00:00,-0.016430576683203857 -2024-09-19 07:00:00+00:00,-0.04283456331900043 -2024-09-19 08:00:00+00:00,-0.04210958415597699 -2024-09-19 09:00:00+00:00,-0.0443614695898959 -2024-09-19 10:00:00+00:00,-0.04181445571806086 -2024-09-19 11:00:00+00:00,-0.03502144652823613 -2024-09-19 12:00:00+00:00,0.021764567670297885 -2024-09-19 13:00:00+00:00,0.026448549921663567 -2024-09-19 14:00:00+00:00,-0.0015107474330566806 -2024-09-19 15:00:00+00:00,-0.02344457995604704 -2024-09-19 16:00:00+00:00,-0.028975163346966204 -2024-09-19 17:00:00+00:00,-0.04109931461781219 -2024-09-19 18:00:00+00:00,-0.0656252354001271 -2024-09-19 19:00:00+00:00,-0.08155574923601447 -2024-09-19 20:00:00+00:00,-0.08961003634202391 -2024-09-19 21:00:00+00:00,-0.09159065737284272 -2024-09-19 22:00:00+00:00,-0.08830312316317354 -2024-09-19 23:00:00+00:00,-0.07045277977406517 -2024-09-20 00:00:00+00:00,-0.08598667021706766 -2024-09-20 01:00:00+00:00,-0.09329126870204613 -2024-09-20 02:00:00+00:00,-0.08948167385983648 -2024-09-20 03:00:00+00:00,-0.09446463934248182 -2024-09-20 04:00:00+00:00,-0.09988722019580107 -2024-09-20 05:00:00+00:00,-0.09256515750978814 -2024-09-20 06:00:00+00:00,-0.038499084136508994 -2024-09-20 07:00:00+00:00,0.03867259000157487 -2024-09-20 08:00:00+00:00,0.09613467807731137 -2024-09-20 09:00:00+00:00,0.13507619892578085 -2024-09-20 10:00:00+00:00,0.17199404532192972 -2024-09-20 11:00:00+00:00,0.18246946439776843 -2024-09-20 12:00:00+00:00,0.14285925016017625 -2024-09-20 13:00:00+00:00,0.13506356929270108 -2024-09-20 14:00:00+00:00,0.1427145750746408 -2024-09-20 15:00:00+00:00,0.1050120791370025 -2024-09-20 16:00:00+00:00,0.06327524098747217 -2024-09-20 17:00:00+00:00,0.045112711506174796 -2024-09-20 18:00:00+00:00,0.021707014732200713 -2024-09-20 19:00:00+00:00,0.006020413127601099 -2024-09-20 20:00:00+00:00,-0.007337931849360602 -2024-09-22 21:00:00+00:00,-0.019668697478377795 -2024-09-22 22:00:00+00:00,-0.02747328503871621 -2024-09-22 23:00:00+00:00,-0.02399199734479074 -2024-09-23 00:00:00+00:00,-0.020584696943601266 -2024-09-23 01:00:00+00:00,-0.004145213563004069 -2024-09-23 02:00:00+00:00,0.0025709362908308275 -2024-09-23 03:00:00+00:00,0.0011754984460429219 -2024-09-23 04:00:00+00:00,-0.006318553746668454 -2024-09-23 05:00:00+00:00,-0.022652348825956015 -2024-09-23 06:00:00+00:00,-0.04221486107486394 -2024-09-23 07:00:00+00:00,-0.07576197635247273 -2024-09-23 08:00:00+00:00,-0.10018868184126156 -2024-09-23 09:00:00+00:00,-0.10992338596250995 -2024-09-23 10:00:00+00:00,-0.12870624516791035 -2024-09-23 11:00:00+00:00,-0.12016495768671562 -2024-09-23 12:00:00+00:00,-0.09952143502730804 -2024-09-23 13:00:00+00:00,-0.06429823125595986 -2024-09-23 14:00:00+00:00,-0.0582041970565674 -2024-09-23 15:00:00+00:00,-0.0636622545308448 -2024-09-23 16:00:00+00:00,-0.08026932085711393 -2024-09-23 17:00:00+00:00,-0.08315500960603775 -2024-09-23 18:00:00+00:00,-0.08648080163794092 -2024-09-23 19:00:00+00:00,-0.07350130451758981 -2024-09-23 20:00:00+00:00,-0.05426100423454564 -2024-09-23 21:00:00+00:00,-0.040022515991494007 -2024-09-23 22:00:00+00:00,-0.026319551451205233 -2024-09-23 23:00:00+00:00,-0.01603565848070873 -2024-09-24 00:00:00+00:00,-0.013502736590605545 -2024-09-24 01:00:00+00:00,-0.005974422139828496 -2024-09-24 02:00:00+00:00,0.001814988935405347 -2024-09-24 03:00:00+00:00,0.013758998593071163 -2024-09-24 04:00:00+00:00,0.025224474665477187 -2024-09-24 05:00:00+00:00,0.04728248142665656 -2024-09-24 06:00:00+00:00,0.0800762814698549 -2024-09-24 07:00:00+00:00,0.09810543073266258 -2024-09-24 08:00:00+00:00,0.09345867155468873 -2024-09-24 09:00:00+00:00,0.08388323310223557 -2024-09-24 10:00:00+00:00,0.051682073967919795 -2024-09-24 11:00:00+00:00,0.030418513462901225 -2024-09-24 12:00:00+00:00,0.014120156379405266 -2024-09-24 13:00:00+00:00,0.010499116669086317 -2024-09-24 14:00:00+00:00,-0.020301302928915202 -2024-09-24 15:00:00+00:00,-0.03278062512618016 -2024-09-24 16:00:00+00:00,-0.059723521520892026 -2024-09-24 17:00:00+00:00,-0.07350646980324724 -2024-09-24 18:00:00+00:00,-0.0845327229033943 -2024-09-24 19:00:00+00:00,-0.09644278746948556 -2024-09-24 20:00:00+00:00,-0.10002162441313714 -2024-09-24 21:00:00+00:00,-0.0989841138461138 -2024-09-24 22:00:00+00:00,-0.10196570997713877 -2024-09-24 23:00:00+00:00,-0.10395063812178659 -2024-09-25 00:00:00+00:00,-0.08461206157879732 -2024-09-25 01:00:00+00:00,-0.04953835434588588 -2024-09-25 02:00:00+00:00,-0.03019569206408179 -2024-09-25 03:00:00+00:00,-0.018594848362259775 -2024-09-25 04:00:00+00:00,-0.011901639227429678 -2024-09-25 05:00:00+00:00,-0.005289664683594403 -2024-09-25 06:00:00+00:00,0.027229716669700366 -2024-09-25 07:00:00+00:00,0.060180690922816416 -2024-09-25 08:00:00+00:00,0.0824755624949459 -2024-09-25 09:00:00+00:00,0.10866858598519444 -2024-09-25 10:00:00+00:00,0.12636675739846204 -2024-09-25 11:00:00+00:00,0.1327384125243646 -2024-09-25 12:00:00+00:00,0.12301416232958495 -2024-09-25 13:00:00+00:00,0.10113326171652028 -2024-09-25 14:00:00+00:00,0.10082056301194547 -2024-09-25 15:00:00+00:00,0.09773094586182246 -2024-09-25 16:00:00+00:00,0.09781780204748103 -2024-09-25 17:00:00+00:00,0.09296725577849621 -2024-09-25 18:00:00+00:00,0.09182909613830878 -2024-09-25 19:00:00+00:00,0.08986872544056454 -2024-09-25 20:00:00+00:00,0.08212171487907435 -2024-09-25 21:00:00+00:00,0.06560600589137547 -2024-09-25 22:00:00+00:00,0.04833101082645633 -2024-09-25 23:00:00+00:00,0.03711912733861952 -2024-09-26 00:00:00+00:00,0.011575870350082507 -2024-09-26 01:00:00+00:00,0.01307943120246774 -2024-09-26 02:00:00+00:00,0.012409119862102302 -2024-09-26 03:00:00+00:00,0.014850359947311598 -2024-09-26 04:00:00+00:00,-0.001979789688009548 -2024-09-26 05:00:00+00:00,-0.013026597880242685 -2024-09-26 06:00:00+00:00,-0.014223783090939135 -2024-09-26 07:00:00+00:00,-0.004429731007358884 -2024-09-26 08:00:00+00:00,-0.013011162025767409 -2024-09-26 09:00:00+00:00,-0.02790797487340757 -2024-09-26 10:00:00+00:00,-0.05970323862176763 -2024-09-26 11:00:00+00:00,-0.09109754440509271 -2024-09-26 12:00:00+00:00,-0.08247947407952957 -2024-09-26 13:00:00+00:00,-0.07367982589285801 -2024-09-26 14:00:00+00:00,-0.049424401456842015 -2024-09-26 15:00:00+00:00,-0.04318860526471646 -2024-09-26 16:00:00+00:00,-0.026713794768840504 -2024-09-26 17:00:00+00:00,-0.025301042194555035 -2024-09-26 18:00:00+00:00,-0.03015440516547785 -2024-09-26 19:00:00+00:00,-0.030188167045607103 -2024-09-26 20:00:00+00:00,-0.020493484503514472 -2024-09-26 21:00:00+00:00,-0.014607718195892766 -2024-09-26 22:00:00+00:00,-0.006406776666269556 -2024-09-26 23:00:00+00:00,0.011381534225254772 -2024-09-27 00:00:00+00:00,0.04500577421036131 -2024-09-27 01:00:00+00:00,0.05261181979511348 -2024-09-27 02:00:00+00:00,0.0397539238908132 -2024-09-27 03:00:00+00:00,0.03877612775264605 -2024-09-27 04:00:00+00:00,0.06894759798285993 -2024-09-27 05:00:00+00:00,0.112436804596067 -2024-09-27 06:00:00+00:00,-0.0645601678252361 -2024-09-27 07:00:00+00:00,-0.17287613443676372 -2024-09-27 08:00:00+00:00,-0.23590111537496428 -2024-09-27 09:00:00+00:00,-0.26452724335102246 -2024-09-27 10:00:00+00:00,-0.26272462431541915 -2024-09-27 11:00:00+00:00,-0.254874894591019 -2024-09-27 12:00:00+00:00,-0.27318747472336885 -2024-09-27 13:00:00+00:00,-0.26706759535219127 -2024-09-27 14:00:00+00:00,-0.2269027319735668 -2024-09-27 15:00:00+00:00,-0.20361882249507046 -2024-09-27 16:00:00+00:00,-0.1806316045676884 -2024-09-27 17:00:00+00:00,-0.16481399253044204 -2024-09-27 18:00:00+00:00,-0.15228443224048194 -2024-09-27 19:00:00+00:00,-0.13255284274240786 -2024-09-27 20:00:00+00:00,-0.10514653115538541 -2024-09-29 21:00:00+00:00,-0.07297816842513027 -2024-09-29 22:00:00+00:00,-0.018859560931246744 -2024-09-29 23:00:00+00:00,0.028417904451112364 -2024-09-30 00:00:00+00:00,0.055015908434229766 -2024-09-30 01:00:00+00:00,0.05992132692479235 -2024-09-30 02:00:00+00:00,0.06813111701049923 -2024-09-30 03:00:00+00:00,0.06978534219515853 -2024-09-30 04:00:00+00:00,0.05100284289157864 -2024-09-30 05:00:00+00:00,0.014152868731720059 -2024-09-30 06:00:00+00:00,0.016762361127922176 -2024-09-30 07:00:00+00:00,0.041695665755882794 -2024-09-30 08:00:00+00:00,0.07053982324201918 -2024-09-30 09:00:00+00:00,0.08861139745883162 -2024-09-30 10:00:00+00:00,0.1036317625508199 -2024-09-30 11:00:00+00:00,0.10844088509239858 -2024-09-30 12:00:00+00:00,0.1339197685344795 -2024-09-30 13:00:00+00:00,0.1576305611729682 -2024-09-30 14:00:00+00:00,0.16088960734348595 -2024-09-30 15:00:00+00:00,0.1713416382479474 -2024-09-30 16:00:00+00:00,0.16136821605336604 -2024-09-30 17:00:00+00:00,0.14710766198910877 -2024-09-30 18:00:00+00:00,0.16956488300709066 -2024-09-30 19:00:00+00:00,0.17818120871156098 -2024-09-30 20:00:00+00:00,0.16813861040205655 -2024-09-30 21:00:00+00:00,0.1527345010882781 -2024-09-30 22:00:00+00:00,0.13098314274189063 -2024-09-30 23:00:00+00:00,0.11987977212261908 -2024-10-01 00:00:00+00:00,0.12175804110919713 -2024-10-01 01:00:00+00:00,0.09961578055461573 -2024-10-01 02:00:00+00:00,0.09800459826412941 -2024-10-01 03:00:00+00:00,0.10733609202390262 -2024-10-01 04:00:00+00:00,0.10568929624594381 -2024-10-01 05:00:00+00:00,0.09611351444809957 -2024-10-01 06:00:00+00:00,0.08740305073895949 -2024-10-01 07:00:00+00:00,0.06443139065142106 -2024-10-01 08:00:00+00:00,0.020942551731547854 -2024-10-01 09:00:00+00:00,-0.01498599872221823 -2024-10-01 10:00:00+00:00,-0.03889763296545623 -2024-10-01 11:00:00+00:00,-0.053424612670970206 -2024-10-01 12:00:00+00:00,-0.044083045040182345 -2024-10-01 13:00:00+00:00,-0.07026722668121047 -2024-10-01 14:00:00+00:00,-0.0806817847218102 -2024-10-01 15:00:00+00:00,-0.08080149806779016 -2024-10-01 16:00:00+00:00,-0.0805961123914169 -2024-10-01 17:00:00+00:00,-0.06591032905584907 -2024-10-01 18:00:00+00:00,-0.06459378408240693 -2024-10-01 19:00:00+00:00,-0.06851536400900113 -2024-10-01 20:00:00+00:00,-0.0680831493947031 -2024-10-01 21:00:00+00:00,-0.06064139469608042 -2024-10-01 22:00:00+00:00,-0.06150253558759271 -2024-10-01 23:00:00+00:00,-0.046003534054477616 -2024-10-02 00:00:00+00:00,-0.028998969750818893 -2024-10-02 01:00:00+00:00,-0.012067513703245727 -2024-10-02 02:00:00+00:00,0.005362037510574812 -2024-10-02 03:00:00+00:00,0.023837137340463832 -2024-10-02 04:00:00+00:00,0.007866109389134873 -2024-10-02 05:00:00+00:00,-0.0042421666678188474 -2024-10-02 06:00:00+00:00,-0.0006490426406203231 -2024-10-02 07:00:00+00:00,0.011960359935094311 -2024-10-02 08:00:00+00:00,0.03527631517555885 -2024-10-02 09:00:00+00:00,0.0432595267057371 -2024-10-02 10:00:00+00:00,0.07915070880631944 -2024-10-02 11:00:00+00:00,0.090267062439087 -2024-10-02 12:00:00+00:00,0.13414234251139687 -2024-10-02 13:00:00+00:00,0.17718213765312005 -2024-10-02 14:00:00+00:00,0.22137781705278087 -2024-10-02 15:00:00+00:00,0.22607945594578316 -2024-10-02 16:00:00+00:00,0.21324245486196414 -2024-10-02 17:00:00+00:00,0.19942740836832645 -2024-10-02 18:00:00+00:00,0.18654536739785826 -2024-10-02 19:00:00+00:00,0.17149880926224603 -2024-10-02 20:00:00+00:00,0.15051568088716727 -2024-10-02 21:00:00+00:00,0.11808079058821463 -2024-10-02 22:00:00+00:00,0.100576241388312 -2024-10-02 23:00:00+00:00,0.07748279690055271 -2024-10-03 00:00:00+00:00,0.07974484009863414 -2024-10-03 01:00:00+00:00,0.058989190487494625 -2024-10-03 02:00:00+00:00,0.03573673227924701 -2024-10-03 03:00:00+00:00,0.017545122942374314 -2024-10-03 04:00:00+00:00,-0.009132878801488054 -2024-10-03 05:00:00+00:00,-0.04188046685421254 -2024-10-03 06:00:00+00:00,-0.055368935232550265 -2024-10-03 07:00:00+00:00,-0.08447937143224615 -2024-10-03 08:00:00+00:00,-0.08471236431991636 -2024-10-03 09:00:00+00:00,-0.07512799399036418 -2024-10-03 10:00:00+00:00,-0.07625026215395136 -2024-10-03 11:00:00+00:00,-0.08863694776643138 -2024-10-03 12:00:00+00:00,-0.09012946604346983 -2024-10-03 13:00:00+00:00,-0.0985499537708891 -2024-10-03 14:00:00+00:00,-0.09539430572015489 -2024-10-03 15:00:00+00:00,-0.08901529188132656 -2024-10-03 16:00:00+00:00,-0.09178790524405445 -2024-10-03 17:00:00+00:00,-0.09681496753628988 -2024-10-03 18:00:00+00:00,-0.08477430573823347 -2024-10-03 19:00:00+00:00,-0.0766414201014507 -2024-10-03 20:00:00+00:00,-0.06501919747074525 -2024-10-03 21:00:00+00:00,-0.06322198737495788 -2024-10-03 22:00:00+00:00,-0.06210852039471221 -2024-10-03 23:00:00+00:00,-0.061787145897446105 -2024-10-04 00:00:00+00:00,-0.07383598199932506 -2024-10-04 01:00:00+00:00,-0.0860736470525707 -2024-10-04 02:00:00+00:00,-0.10065521642114722 -2024-10-04 03:00:00+00:00,-0.10901124134485501 -2024-10-04 04:00:00+00:00,-0.11954339268013078 -2024-10-04 05:00:00+00:00,-0.1308063745334511 -2024-10-04 06:00:00+00:00,-0.12351465196579879 -2024-10-04 07:00:00+00:00,-0.10826771857496736 -2024-10-04 08:00:00+00:00,-0.09171418409702255 -2024-10-04 09:00:00+00:00,-0.06836338878704919 -2024-10-04 10:00:00+00:00,-0.04922332435919598 -2024-10-04 11:00:00+00:00,-0.029018756569671934 -2024-10-04 12:00:00+00:00,0.11600644283665643 -2024-10-04 13:00:00+00:00,0.1853851184035361 -2024-10-04 14:00:00+00:00,0.22396746642103132 -2024-10-04 15:00:00+00:00,0.24760656304955664 -2024-10-04 16:00:00+00:00,0.26288395046450297 -2024-10-04 17:00:00+00:00,0.24688673071189332 -2024-10-04 18:00:00+00:00,0.22560297501066817 -2024-10-04 19:00:00+00:00,0.1902477116632284 -2024-10-04 20:00:00+00:00,0.14966226881183164 -2024-10-06 21:00:00+00:00,0.11754065172263561 -2024-10-06 22:00:00+00:00,0.09622429645896824 -2024-10-06 23:00:00+00:00,0.0635609300878609 -2024-10-07 00:00:00+00:00,0.011185355037344635 -2024-10-07 01:00:00+00:00,-0.029893136288282607 -2024-10-07 02:00:00+00:00,-0.04648069550883305 -2024-10-07 03:00:00+00:00,-0.07073776837838719 -2024-10-07 04:00:00+00:00,-0.0785856465108461 -2024-10-07 05:00:00+00:00,-0.09068283428150681 -2024-10-07 06:00:00+00:00,-0.10096496107779396 -2024-10-07 07:00:00+00:00,-0.11342464765672378 -2024-10-07 08:00:00+00:00,-0.11619050289952693 -2024-10-07 09:00:00+00:00,-0.11387462870433113 -2024-10-07 10:00:00+00:00,-0.0911961673463742 -2024-10-07 11:00:00+00:00,-0.098664023878137 -2024-10-07 12:00:00+00:00,-0.10769042786418548 -2024-10-07 13:00:00+00:00,-0.12622863317305982 -2024-10-07 14:00:00+00:00,-0.11449706756115163 -2024-10-07 15:00:00+00:00,-0.10935499924450359 -2024-10-07 16:00:00+00:00,-0.11021412597791724 -2024-10-07 17:00:00+00:00,-0.10547634011405638 -2024-10-07 18:00:00+00:00,-0.09315414802909244 -2024-10-07 19:00:00+00:00,-0.08353177260309451 -2024-10-07 20:00:00+00:00,-0.06730024035300586 -2024-10-07 21:00:00+00:00,-0.05579237049548702 -2024-10-07 22:00:00+00:00,-0.076120160567784 -2024-10-07 23:00:00+00:00,-0.05759928317219305 -2024-10-08 00:00:00+00:00,-0.06317640541934544 -2024-10-08 01:00:00+00:00,-0.06223386882811956 -2024-10-08 02:00:00+00:00,-0.06808914031030602 -2024-10-08 03:00:00+00:00,-0.05387520799939687 -2024-10-08 04:00:00+00:00,-0.03153367270742814 -2024-10-08 05:00:00+00:00,-0.022555626462112698 -2024-10-08 06:00:00+00:00,-0.014331765800845421 -2024-10-08 07:00:00+00:00,-0.033654840900315834 -2024-10-08 08:00:00+00:00,-0.027800301791265927 -2024-10-08 09:00:00+00:00,-0.023128691891081937 -2024-10-08 10:00:00+00:00,-0.015178731833015678 -2024-10-08 11:00:00+00:00,-0.0102786271734754 -2024-10-08 12:00:00+00:00,0.00562288144144673 -2024-10-08 13:00:00+00:00,0.02948798779571575 -2024-10-08 14:00:00+00:00,0.04707070997761548 -2024-10-08 15:00:00+00:00,0.05062464818786157 -2024-10-08 16:00:00+00:00,0.04559447057081197 -2024-10-08 17:00:00+00:00,0.0463841624970598 -2024-10-08 18:00:00+00:00,0.05112124370560648 -2024-10-08 19:00:00+00:00,0.04699099258620934 -2024-10-08 20:00:00+00:00,0.03619974635111556 -2024-10-08 21:00:00+00:00,0.02956627848691342 -2024-10-08 22:00:00+00:00,0.02160720956147976 -2024-10-08 23:00:00+00:00,0.011398365328693039 -2024-10-09 00:00:00+00:00,0.009159246093058244 -2024-10-09 01:00:00+00:00,0.003587967018173502 -2024-10-09 02:00:00+00:00,0.005720864572160131 -2024-10-09 03:00:00+00:00,0.009494493897379892 -2024-10-09 04:00:00+00:00,0.011779606456128904 -2024-10-09 05:00:00+00:00,0.028492800368541044 -2024-10-09 06:00:00+00:00,0.02714291989210682 -2024-10-09 07:00:00+00:00,0.030881492690065127 -2024-10-09 08:00:00+00:00,0.04213791388326164 -2024-10-09 09:00:00+00:00,0.03967894523568333 -2024-10-09 10:00:00+00:00,0.034086404229007466 -2024-10-09 11:00:00+00:00,0.03555211881247794 -2024-10-09 12:00:00+00:00,0.04555972908384745 -2024-10-09 13:00:00+00:00,0.06144149673149216 -2024-10-09 14:00:00+00:00,0.0688005774864581 -2024-10-09 15:00:00+00:00,0.07174302387031864 -2024-10-09 16:00:00+00:00,0.07083363266384018 -2024-10-09 17:00:00+00:00,0.061397351492114394 -2024-10-09 18:00:00+00:00,0.06133028371073934 -2024-10-09 19:00:00+00:00,0.05366149731419875 -2024-10-09 20:00:00+00:00,0.04323088293052996 -2024-10-09 21:00:00+00:00,0.02360407607149001 -2024-10-09 22:00:00+00:00,0.01105843058215672 -2024-10-09 23:00:00+00:00,-0.0039469054089722455 -2024-10-10 00:00:00+00:00,-0.012295478448043129 -2024-10-10 01:00:00+00:00,-0.02691887206795318 -2024-10-10 02:00:00+00:00,-0.029267208672252576 -2024-10-10 03:00:00+00:00,-0.03068809312872023 -2024-10-10 04:00:00+00:00,-0.020980959861449766 -2024-10-10 05:00:00+00:00,-0.024734973560000484 -2024-10-10 06:00:00+00:00,-0.03692827643688995 -2024-10-10 07:00:00+00:00,-0.05081600730563385 -2024-10-10 08:00:00+00:00,-0.055349285480297744 -2024-10-10 09:00:00+00:00,-0.0689718190979825 -2024-10-10 10:00:00+00:00,-0.07791117358069699 -2024-10-10 11:00:00+00:00,-0.07369636147925168 -2024-10-10 12:00:00+00:00,-0.09032678813839667 -2024-10-10 13:00:00+00:00,-0.10005491065590935 -2024-10-10 14:00:00+00:00,-0.09182762492842714 -2024-10-10 15:00:00+00:00,-0.09177734815688121 -2024-10-10 16:00:00+00:00,-0.06499215738072026 -2024-10-10 17:00:00+00:00,-0.05174307117252262 -2024-10-10 18:00:00+00:00,-0.04468296426418766 -2024-10-10 19:00:00+00:00,-0.04961982328652907 -2024-10-10 20:00:00+00:00,-0.04913217644023756 -2024-10-10 21:00:00+00:00,-0.04828520101765352 -2024-10-10 22:00:00+00:00,-0.03731943328789773 -2024-10-10 23:00:00+00:00,-0.025223694823119716 -2024-10-11 00:00:00+00:00,-0.03137578846714835 -2024-10-11 01:00:00+00:00,-0.013982081285317485 -2024-10-11 02:00:00+00:00,-0.007854420728606426 -2024-10-11 03:00:00+00:00,-9.312961689200705e-05 -2024-10-11 04:00:00+00:00,0.005605100153884032 -2024-10-11 05:00:00+00:00,0.008294768662845522 -2024-10-11 06:00:00+00:00,0.010023727219966999 -2024-10-11 07:00:00+00:00,0.016461551849335426 -2024-10-11 08:00:00+00:00,0.01762622924578905 -2024-10-11 09:00:00+00:00,0.0310198996942721 -2024-10-11 10:00:00+00:00,0.0459449633491321 -2024-10-11 11:00:00+00:00,0.04977466906513229 -2024-10-11 12:00:00+00:00,0.05322812102911235 -2024-10-11 13:00:00+00:00,0.05461176718564893 -2024-10-11 14:00:00+00:00,0.06349938547704227 -2024-10-11 15:00:00+00:00,0.05676005842579866 -2024-10-11 16:00:00+00:00,0.04166251939625781 -2024-10-11 17:00:00+00:00,0.03140389223963473 -2024-10-11 18:00:00+00:00,0.027707647527310933 -2024-10-11 19:00:00+00:00,0.025447211710732373 -2024-10-11 20:00:00+00:00,0.021211596995969806 -2024-10-13 21:00:00+00:00,0.01706038876424265 -2024-10-13 22:00:00+00:00,0.02622343508160707 -2024-10-13 23:00:00+00:00,0.02774761302429382 -2024-10-14 00:00:00+00:00,0.020958417727676412 -2024-10-14 01:00:00+00:00,0.014244471281830096 -2024-10-14 02:00:00+00:00,0.01517239316864541 -2024-10-14 03:00:00+00:00,0.014616552536737631 -2024-10-14 04:00:00+00:00,0.010063294444661045 -2024-10-14 05:00:00+00:00,0.001497208637748132 -2024-10-14 06:00:00+00:00,-0.005564614734177145 -2024-10-14 07:00:00+00:00,-0.0014727999934913416 -2024-10-14 08:00:00+00:00,0.004612431366958186 -2024-10-14 09:00:00+00:00,0.00536345604428462 -2024-10-14 10:00:00+00:00,0.012419793857866457 -2024-10-14 11:00:00+00:00,0.022774697025005564 -2024-10-14 12:00:00+00:00,0.03358126515484425 -2024-10-14 13:00:00+00:00,0.04032646697718903 -2024-10-14 14:00:00+00:00,0.04465493525320685 -2024-10-14 15:00:00+00:00,0.04280035753303152 -2024-10-14 16:00:00+00:00,0.0447281553822273 -2024-10-14 17:00:00+00:00,0.03822993790532517 -2024-10-14 18:00:00+00:00,0.03238374287716178 -2024-10-14 19:00:00+00:00,0.016585148797528815 -2024-10-14 20:00:00+00:00,0.003188543950702699 -2024-10-14 21:00:00+00:00,-0.005965370510895879 -2024-10-14 22:00:00+00:00,-0.01541274307144494 -2024-10-14 23:00:00+00:00,-0.02310968523939405 -2024-10-15 00:00:00+00:00,-0.03729435911544965 -2024-10-15 01:00:00+00:00,-0.04948378367290626 -2024-10-15 02:00:00+00:00,-0.04958766039878365 -2024-10-15 03:00:00+00:00,-0.042508625492097135 -2024-10-15 04:00:00+00:00,-0.03937035065018235 -2024-10-15 05:00:00+00:00,-0.0390321190869555 -2024-10-15 06:00:00+00:00,-0.05862952081945523 -2024-10-15 07:00:00+00:00,-0.07379827160188222 -2024-10-15 08:00:00+00:00,-0.08535549292367496 -2024-10-15 09:00:00+00:00,-0.10437860100326468 -2024-10-15 10:00:00+00:00,-0.09583067494399068 -2024-10-15 11:00:00+00:00,-0.07214596765673555 -2024-10-15 12:00:00+00:00,-0.07081108934329274 -2024-10-15 13:00:00+00:00,-0.05939779297780064 -2024-10-15 14:00:00+00:00,-0.046087158855297045 -2024-10-15 15:00:00+00:00,-0.03537091685309132 -2024-10-15 16:00:00+00:00,-0.011764784212239268 -2024-10-15 17:00:00+00:00,0.0032659493610426027 -2024-10-15 18:00:00+00:00,0.003128118683325881 -2024-10-15 19:00:00+00:00,0.00114114115176938 -2024-10-15 20:00:00+00:00,-0.0011374740840044 -2024-10-15 21:00:00+00:00,-0.0025833935799485924 -2024-10-15 22:00:00+00:00,-0.0012559093826169099 -2024-10-15 23:00:00+00:00,-0.008786750453642717 -2024-10-16 00:00:00+00:00,-0.0009057245246067158 -2024-10-16 01:00:00+00:00,-0.010834600468655087 -2024-10-16 02:00:00+00:00,-0.01185299041364929 -2024-10-16 03:00:00+00:00,-0.005993523700208142 -2024-10-16 04:00:00+00:00,0.004649159811734624 -2024-10-16 05:00:00+00:00,0.017593732187527064 -2024-10-16 06:00:00+00:00,0.01945614055357993 -2024-10-16 07:00:00+00:00,0.031971798752915 -2024-10-16 08:00:00+00:00,0.039522925366618805 -2024-10-16 09:00:00+00:00,0.030393835402520678 -2024-10-16 10:00:00+00:00,0.030236860936679533 -2024-10-16 11:00:00+00:00,0.015284912827096424 -2024-10-16 12:00:00+00:00,0.02333465620845167 -2024-10-16 13:00:00+00:00,0.018395194817256592 -2024-10-16 14:00:00+00:00,0.03475984990406937 -2024-10-16 15:00:00+00:00,0.048734727474214375 -2024-10-16 16:00:00+00:00,0.05679428714419333 -2024-10-16 17:00:00+00:00,0.059254128108574736 -2024-10-16 18:00:00+00:00,0.058705984766775424 -2024-10-16 19:00:00+00:00,0.051381102115340804 -2024-10-16 20:00:00+00:00,0.03879921180285746 -2024-10-16 21:00:00+00:00,0.0244507281196579 -2024-10-16 22:00:00+00:00,0.012754668868704147 -2024-10-16 23:00:00+00:00,0.0032413364844689624 -2024-10-17 00:00:00+00:00,-0.004795494026946873 -2024-10-17 01:00:00+00:00,-0.02091966217751337 -2024-10-17 02:00:00+00:00,-0.028520166102755318 -2024-10-17 03:00:00+00:00,-0.023294825199869515 -2024-10-17 04:00:00+00:00,-0.020270693841860282 -2024-10-17 05:00:00+00:00,-0.019759649554448686 -2024-10-17 06:00:00+00:00,-0.011232863531418981 -2024-10-17 07:00:00+00:00,0.0031730011521513696 -2024-10-17 08:00:00+00:00,0.015395934195330176 -2024-10-17 09:00:00+00:00,0.009492759898754893 -2024-10-17 10:00:00+00:00,0.003492949090530946 -2024-10-17 11:00:00+00:00,-0.006983379874291408 -2024-10-17 12:00:00+00:00,0.005826664842931456 -2024-10-17 13:00:00+00:00,0.00989208293728134 -2024-10-17 14:00:00+00:00,0.026492728335572174 -2024-10-17 15:00:00+00:00,0.04165948185029979 -2024-10-17 16:00:00+00:00,0.05356967677664423 -2024-10-17 17:00:00+00:00,0.06007575142514071 -2024-10-17 18:00:00+00:00,0.06150410859275621 -2024-10-17 19:00:00+00:00,0.054493198226020084 -2024-10-17 20:00:00+00:00,0.046073647786960686 -2024-10-17 21:00:00+00:00,0.03366139077789321 -2024-10-17 22:00:00+00:00,0.025638481264422197 -2024-10-17 23:00:00+00:00,0.011028583714073142 -2024-10-18 00:00:00+00:00,-0.0037782885375285957 -2024-10-18 01:00:00+00:00,-0.016647455245069442 -2024-10-18 02:00:00+00:00,-0.031099511265090363 -2024-10-18 03:00:00+00:00,-0.04188614907706692 -2024-10-18 04:00:00+00:00,-0.04722556449364243 -2024-10-18 05:00:00+00:00,-0.0501033997898605 -2024-10-18 06:00:00+00:00,-0.04594025925771254 -2024-10-18 07:00:00+00:00,-0.033137901905474054 -2024-10-18 08:00:00+00:00,-0.035235901685232746 -2024-10-18 09:00:00+00:00,-0.03557004577195884 -2024-10-18 10:00:00+00:00,-0.03329606296327678 -2024-10-18 11:00:00+00:00,-0.02662269701025044 -2024-10-18 12:00:00+00:00,-0.030691289701551043 -2024-10-18 13:00:00+00:00,-0.04031605266203563 -2024-10-18 14:00:00+00:00,-0.05314596940770588 -2024-10-18 15:00:00+00:00,-0.06017117558104487 -2024-10-18 16:00:00+00:00,-0.07192334169746857 -2024-10-18 17:00:00+00:00,-0.06435172621156515 -2024-10-18 18:00:00+00:00,-0.06023482409164789 -2024-10-18 19:00:00+00:00,-0.05453273701516267 -2024-10-18 20:00:00+00:00,-0.04718207877672069 -2024-10-20 21:00:00+00:00,-0.03888447123039723 -2024-10-20 22:00:00+00:00,-0.02919096497789221 -2024-10-20 23:00:00+00:00,-0.018936518633386704 -2024-10-21 00:00:00+00:00,-0.02471547906264228 -2024-10-21 01:00:00+00:00,-0.03775952278273832 -2024-10-21 02:00:00+00:00,-0.041823795281461434 -2024-10-21 03:00:00+00:00,-0.041227693652287484 -2024-10-21 04:00:00+00:00,-0.03152134645875912 -2024-10-21 05:00:00+00:00,-0.019988006920606677 -2024-10-21 06:00:00+00:00,0.006681843369261198 -2024-10-21 07:00:00+00:00,0.037149874984911124 -2024-10-21 08:00:00+00:00,0.06257308668588633 -2024-10-21 09:00:00+00:00,0.083295141845928 -2024-10-21 10:00:00+00:00,0.08511640963438757 -2024-10-21 11:00:00+00:00,0.08099187207594098 -2024-10-21 12:00:00+00:00,0.07444859040660935 -2024-10-21 13:00:00+00:00,0.08002814009344529 -2024-10-21 14:00:00+00:00,0.08622175437299014 -2024-10-21 15:00:00+00:00,0.10019244644213729 -2024-10-21 16:00:00+00:00,0.10620684911667763 -2024-10-21 17:00:00+00:00,0.11854713738856898 -2024-10-21 18:00:00+00:00,0.12078883824538703 -2024-10-21 19:00:00+00:00,0.11471268269857404 -2024-10-21 20:00:00+00:00,0.10628810181587484 -2024-10-21 21:00:00+00:00,0.08810320250835046 -2024-10-21 22:00:00+00:00,0.06704209104069647 -2024-10-21 23:00:00+00:00,0.04417221633357746 -2024-10-22 00:00:00+00:00,0.026116985526345393 -2024-10-22 01:00:00+00:00,0.013115157329947918 -2024-10-22 02:00:00+00:00,0.013058315137333465 -2024-10-22 03:00:00+00:00,0.01579149050904033 -2024-10-22 04:00:00+00:00,0.010968199342012985 -2024-10-22 05:00:00+00:00,0.0034872197404380856 -2024-10-22 06:00:00+00:00,-0.0050200595954016936 -2024-10-22 07:00:00+00:00,-0.001141116578190271 -2024-10-22 08:00:00+00:00,-0.0022077312264350835 -2024-10-22 09:00:00+00:00,-0.011482410808867527 -2024-10-22 10:00:00+00:00,-0.021560321880065708 -2024-10-22 11:00:00+00:00,-0.027798999635916005 -2024-10-22 12:00:00+00:00,-0.029262571409466864 -2024-10-22 13:00:00+00:00,-0.03033394063635797 -2024-10-22 14:00:00+00:00,-0.027907119246314338 -2024-10-22 15:00:00+00:00,-0.018692622307701856 -2024-10-22 16:00:00+00:00,-0.01683226789087222 -2024-10-22 17:00:00+00:00,-0.021874124476161078 -2024-10-22 18:00:00+00:00,-0.020461898325622313 -2024-10-22 19:00:00+00:00,-0.016882484826431787 -2024-10-22 20:00:00+00:00,-0.017071658232685805 -2024-10-22 21:00:00+00:00,-0.02085043563306932 -2024-10-22 22:00:00+00:00,-0.022549164674595723 -2024-10-22 23:00:00+00:00,-0.018591749599166235 -2024-10-23 00:00:00+00:00,0.0034238098296223707 -2024-10-23 01:00:00+00:00,0.026725313464631528 -2024-10-23 02:00:00+00:00,0.044381175526161026 -2024-10-23 03:00:00+00:00,0.051919618930951705 -2024-10-23 04:00:00+00:00,0.07238662313836744 -2024-10-23 05:00:00+00:00,0.08555157948438535 -2024-10-23 06:00:00+00:00,0.09478625950600644 -2024-10-23 07:00:00+00:00,0.09843231299953276 -2024-10-23 08:00:00+00:00,0.09547970247351567 -2024-10-23 09:00:00+00:00,0.10555910957537318 -2024-10-23 10:00:00+00:00,0.10950841838611536 -2024-10-23 11:00:00+00:00,0.11771044616870252 -2024-10-23 12:00:00+00:00,0.11371222467969477 -2024-10-23 13:00:00+00:00,0.10150700221038833 -2024-10-23 14:00:00+00:00,0.08143918793476118 -2024-10-23 15:00:00+00:00,0.04709879882991469 -2024-10-23 16:00:00+00:00,0.02107697855137214 -2024-10-23 17:00:00+00:00,-0.006072975481952014 -2024-10-23 18:00:00+00:00,-0.034535100146180275 -2024-10-23 19:00:00+00:00,-0.05950476431144769 -2024-10-23 20:00:00+00:00,-0.06526933747425634 -2024-10-23 21:00:00+00:00,-0.07405327349542362 -2024-10-23 22:00:00+00:00,-0.07586795819822845 -2024-10-23 23:00:00+00:00,-0.07572674587785111 -2024-10-24 00:00:00+00:00,-0.08344798246034174 -2024-10-24 01:00:00+00:00,-0.08490856268822405 -2024-10-24 02:00:00+00:00,-0.10042684683531644 -2024-10-24 03:00:00+00:00,-0.11005686020307426 -2024-10-24 04:00:00+00:00,-0.12474938836977645 -2024-10-24 05:00:00+00:00,-0.11909664937632958 -2024-10-24 06:00:00+00:00,-0.13243415056167446 -2024-10-24 07:00:00+00:00,-0.1310186474651426 -2024-10-24 08:00:00+00:00,-0.1325124588900072 -2024-10-24 09:00:00+00:00,-0.12906767515066958 -2024-10-24 10:00:00+00:00,-0.12981673455823634 -2024-10-24 11:00:00+00:00,-0.11154416835773016 -2024-10-24 12:00:00+00:00,-0.0946887595635803 -2024-10-24 13:00:00+00:00,-0.06956145089354684 -2024-10-24 14:00:00+00:00,-0.06784974150022134 -2024-10-24 15:00:00+00:00,-0.0668373127351027 -2024-10-24 16:00:00+00:00,-0.07388585427566983 -2024-10-24 17:00:00+00:00,-0.07823756282333275 -2024-10-24 18:00:00+00:00,-0.06383609545652026 -2024-10-24 19:00:00+00:00,-0.049330409918761836 -2024-10-24 20:00:00+00:00,-0.0379600870258929 -2024-10-24 21:00:00+00:00,-0.027788127818177133 -2024-10-24 22:00:00+00:00,-0.027388742849456485 -2024-10-24 23:00:00+00:00,-0.018650337999647798 -2024-10-25 00:00:00+00:00,0.002812619542485434 -2024-10-25 01:00:00+00:00,0.0071241043720903785 -2024-10-25 02:00:00+00:00,0.009569051876571921 -2024-10-25 03:00:00+00:00,0.012927730187030709 -2024-10-25 04:00:00+00:00,0.005804582036637709 -2024-10-25 05:00:00+00:00,0.0038951673305794438 -2024-10-25 06:00:00+00:00,0.011790420585961553 -2024-10-25 07:00:00+00:00,0.02302904123496992 -2024-10-25 08:00:00+00:00,0.030233265797556613 -2024-10-25 09:00:00+00:00,0.03644059154643833 -2024-10-25 10:00:00+00:00,0.032488700753925334 -2024-10-25 11:00:00+00:00,0.02255759683000237 -2024-10-25 12:00:00+00:00,0.02357936853522144 -2024-10-25 13:00:00+00:00,0.029954896776642474 -2024-10-25 14:00:00+00:00,0.033667612485008776 -2024-10-25 15:00:00+00:00,0.03812030877373114 -2024-10-25 16:00:00+00:00,0.04648175112786529 -2024-10-25 17:00:00+00:00,0.047495296599238346 -2024-10-25 18:00:00+00:00,0.05101715321550362 -2024-10-25 19:00:00+00:00,0.0510239459216389 -2024-10-25 20:00:00+00:00,0.05145507423249876 -2024-10-27 21:00:00+00:00,0.08979234787877222 -2024-10-27 22:00:00+00:00,0.10940515503044859 -2024-10-27 23:00:00+00:00,0.11549379578772581 -2024-10-28 00:00:00+00:00,0.14475126095150978 -2024-10-28 01:00:00+00:00,0.17875346401168685 -2024-10-28 02:00:00+00:00,0.1714200517719025 -2024-10-28 03:00:00+00:00,0.15948710499591157 -2024-10-28 04:00:00+00:00,0.1420615056236959 -2024-10-28 05:00:00+00:00,0.1140609724986647 -2024-10-28 06:00:00+00:00,0.07955524166961941 -2024-10-28 07:00:00+00:00,0.045599134085701765 -2024-10-28 08:00:00+00:00,0.00868584754511792 -2024-10-28 09:00:00+00:00,-0.03410072553723931 -2024-10-28 10:00:00+00:00,-0.08750145677928145 -2024-10-28 11:00:00+00:00,-0.1069675446448421 -2024-10-28 12:00:00+00:00,-0.12323656243838454 -2024-10-28 13:00:00+00:00,-0.12092411415448395 -2024-10-28 14:00:00+00:00,-0.10298171493056452 -2024-10-28 15:00:00+00:00,-0.07167283584046819 -2024-10-28 16:00:00+00:00,-0.046993357137917136 -2024-10-28 17:00:00+00:00,-0.029634037431602478 -2024-10-28 18:00:00+00:00,-0.02000274972474192 -2024-10-28 19:00:00+00:00,-0.0165041700917323 -2024-10-28 20:00:00+00:00,-0.010741106998372801 -2024-10-28 21:00:00+00:00,-0.010664827705720803 -2024-10-28 22:00:00+00:00,-0.008580468962858634 -2024-10-28 23:00:00+00:00,-0.018920356221790197 -2024-10-29 00:00:00+00:00,-0.033462932682657875 -2024-10-29 01:00:00+00:00,-0.04731216974578664 -2024-10-29 02:00:00+00:00,-0.051149981266843 -2024-10-29 03:00:00+00:00,-0.04928850692961967 -2024-10-29 04:00:00+00:00,-0.053731811605046295 -2024-10-29 05:00:00+00:00,-0.06068653829606707 -2024-10-29 06:00:00+00:00,-0.051928434906403184 -2024-10-29 07:00:00+00:00,-0.03385404586630515 -2024-10-29 08:00:00+00:00,-0.006662570440277377 -2024-10-29 09:00:00+00:00,0.011176101320284654 -2024-10-29 10:00:00+00:00,0.016831327930194262 -2024-10-29 11:00:00+00:00,0.0399786366908553 -2024-10-29 12:00:00+00:00,0.057468864775189185 -2024-10-29 13:00:00+00:00,0.058176320673306386 -2024-10-29 14:00:00+00:00,0.03658016367673601 -2024-10-29 15:00:00+00:00,0.027069791070417903 -2024-10-29 16:00:00+00:00,0.022061434386990292 -2024-10-29 17:00:00+00:00,0.007961761801885126 -2024-10-29 18:00:00+00:00,-0.001925446202740766 -2024-10-29 19:00:00+00:00,-0.009160212065018186 -2024-10-29 20:00:00+00:00,-0.018097584386491894 -2024-10-29 21:00:00+00:00,-0.02338039175864122 -2024-10-29 22:00:00+00:00,-0.033955756800598785 -2024-10-29 23:00:00+00:00,-0.03917559866631917 -2024-10-30 00:00:00+00:00,-0.04233503976842087 -2024-10-30 01:00:00+00:00,-0.04508966629474845 -2024-10-30 02:00:00+00:00,-0.03911091371057174 -2024-10-30 03:00:00+00:00,-0.03222212383939125 -2024-10-30 04:00:00+00:00,-0.02556116254778694 -2024-10-30 05:00:00+00:00,-0.02877893357877958 -2024-10-30 06:00:00+00:00,-0.026786137593047953 -2024-10-30 07:00:00+00:00,-0.02099651480503894 -2024-10-30 08:00:00+00:00,-0.04690612264646825 -2024-10-30 09:00:00+00:00,-0.04801450272747679 -2024-10-30 10:00:00+00:00,-0.05651241015043029 -2024-10-30 11:00:00+00:00,-0.05004998877148923 -2024-10-30 12:00:00+00:00,-0.02269296974563851 -2024-10-30 13:00:00+00:00,-0.030719435882068696 -2024-10-30 14:00:00+00:00,-0.013463008030128593 -2024-10-30 15:00:00+00:00,-0.008164731712713036 -2024-10-30 16:00:00+00:00,-0.00896146917438232 -2024-10-30 17:00:00+00:00,0.0007789047976515251 -2024-10-30 18:00:00+00:00,0.007932152018960269 -2024-10-30 19:00:00+00:00,0.016006386831015292 -2024-10-30 20:00:00+00:00,0.027389015489148336 -2024-10-30 21:00:00+00:00,0.02857134519117558 -2024-10-30 22:00:00+00:00,0.02578593212112497 -2024-10-30 23:00:00+00:00,0.01881396476314935 -2024-10-31 00:00:00+00:00,0.03187672983887798 -2024-10-31 01:00:00+00:00,0.03625398173554132 -2024-10-31 02:00:00+00:00,0.03142907545648098 -2024-10-31 03:00:00+00:00,0.003850779480872101 -2024-10-31 04:00:00+00:00,-0.022256820514325152 -2024-10-31 05:00:00+00:00,-0.0425771315864123 -2024-10-31 06:00:00+00:00,-0.09563260222520267 -2024-10-31 07:00:00+00:00,-0.11898154398406391 -2024-10-31 08:00:00+00:00,-0.11730187572261536 -2024-10-31 09:00:00+00:00,-0.09937254988554804 -2024-10-31 10:00:00+00:00,-0.08773461119622293 -2024-10-31 11:00:00+00:00,-0.05875210143976606 -2024-10-31 12:00:00+00:00,-0.0378336112377049 -2024-10-31 13:00:00+00:00,-0.00383454449062412 -2024-10-31 14:00:00+00:00,-0.005274760799495654 -2024-10-31 15:00:00+00:00,-0.019139827488994343 -2024-10-31 16:00:00+00:00,-0.01991953233989152 -2024-10-31 17:00:00+00:00,-0.035002764827214955 -2024-10-31 18:00:00+00:00,-0.04911859671732627 -2024-10-31 19:00:00+00:00,-0.061010342238402904 -2024-10-31 20:00:00+00:00,-0.05670574760970226 -2024-10-31 21:00:00+00:00,-0.0475790592776584 -2024-10-31 22:00:00+00:00,-0.0373954114104601 -2024-10-31 23:00:00+00:00,-0.03223094215833458 -2024-11-01 00:00:00+00:00,-0.02179428138434708 -2024-11-01 01:00:00+00:00,-0.006508381289349274 -2024-11-01 02:00:00+00:00,0.01728458089656995 -2024-11-01 03:00:00+00:00,0.041038612857583645 -2024-11-01 04:00:00+00:00,0.060174782346092526 -2024-11-01 05:00:00+00:00,0.07451045300721032 -2024-11-01 06:00:00+00:00,0.07234386029340656 -2024-11-01 07:00:00+00:00,0.07828978118420074 -2024-11-01 08:00:00+00:00,0.08538418134469697 -2024-11-01 09:00:00+00:00,0.0953122599420141 -2024-11-01 10:00:00+00:00,0.09089869410043551 -2024-11-01 11:00:00+00:00,0.0845401962920196 -2024-11-01 12:00:00+00:00,0.036068533725627114 -2024-11-01 13:00:00+00:00,0.02926447092411423 -2024-11-01 14:00:00+00:00,0.05403606375534401 -2024-11-01 15:00:00+00:00,0.07011824940738898 -2024-11-01 16:00:00+00:00,0.07356090117068784 -2024-11-01 17:00:00+00:00,0.0730089917690129 -2024-11-01 18:00:00+00:00,0.07179424613737917 -2024-11-01 19:00:00+00:00,0.06744756874540458 -2024-11-01 20:00:00+00:00,0.0627436144923056 -2024-11-03 22:00:00+00:00,0.020266888037542966 -2024-11-03 23:00:00+00:00,-0.017347877243523505 -2024-11-04 00:00:00+00:00,-0.0546263991024378 -2024-11-04 01:00:00+00:00,-0.09369979425378483 -2024-11-04 02:00:00+00:00,-0.11185285270467302 -2024-11-04 03:00:00+00:00,-0.12232393784571591 -2024-11-04 04:00:00+00:00,-0.11687775448237578 -2024-11-04 05:00:00+00:00,-0.10460111100317276 -2024-11-04 06:00:00+00:00,-0.07198346503311881 -2024-11-04 07:00:00+00:00,-0.04481868905126429 -2024-11-04 08:00:00+00:00,-0.030051657582870192 -2024-11-04 09:00:00+00:00,-0.03103612425095148 -2024-11-04 10:00:00+00:00,-0.03366613651430039 -2024-11-04 11:00:00+00:00,-0.048600122840606635 -2024-11-04 12:00:00+00:00,-0.037805359443788045 -2024-11-04 13:00:00+00:00,-0.02597827245679757 -2024-11-04 14:00:00+00:00,-0.016362366645762932 -2024-11-04 15:00:00+00:00,0.003079457591743079 -2024-11-04 16:00:00+00:00,0.018591677617784352 -2024-11-04 17:00:00+00:00,0.02810500557229112 -2024-11-04 18:00:00+00:00,0.037507548642069816 -2024-11-04 19:00:00+00:00,0.04817679967183153 -2024-11-04 20:00:00+00:00,0.0536102105093014 -2024-11-04 21:00:00+00:00,0.054333798639865385 -2024-11-04 22:00:00+00:00,0.05207122706666946 -2024-11-04 23:00:00+00:00,0.05916882415573943 -2024-11-05 00:00:00+00:00,0.06128780660076716 -2024-11-05 01:00:00+00:00,0.05952498065843805 -2024-11-05 02:00:00+00:00,0.054647676561149015 -2024-11-05 03:00:00+00:00,0.057394415369904216 -2024-11-05 04:00:00+00:00,0.06145407130963322 -2024-11-05 05:00:00+00:00,0.058517091472953114 -2024-11-05 06:00:00+00:00,0.04872645603797083 -2024-11-05 07:00:00+00:00,0.03491463056182238 -2024-11-05 08:00:00+00:00,0.018716320969594198 -2024-11-05 09:00:00+00:00,0.007253194665604749 -2024-11-05 10:00:00+00:00,0.003809610503171114 -2024-11-05 11:00:00+00:00,-0.00515701203155243 -2024-11-05 12:00:00+00:00,-0.0021702356421820744 -2024-11-05 13:00:00+00:00,-0.015838367326136436 -2024-11-05 14:00:00+00:00,-0.03766124390839158 -2024-11-05 15:00:00+00:00,-0.036179202978930944 -2024-11-05 16:00:00+00:00,-0.03859244506404788 -2024-11-05 17:00:00+00:00,-0.05586860638794106 -2024-11-05 18:00:00+00:00,-0.07179110953251927 -2024-11-05 19:00:00+00:00,-0.0841437786459267 -2024-11-05 20:00:00+00:00,-0.08206007276941366 -2024-11-05 21:00:00+00:00,-0.0701481322266018 -2024-11-05 22:00:00+00:00,-0.05879473747760004 -2024-11-05 23:00:00+00:00,-0.058271960244362056 -2024-11-06 00:00:00+00:00,0.04016495548925696 -2024-11-06 01:00:00+00:00,0.1018660856279983 -2024-11-06 02:00:00+00:00,0.2073385362968637 -2024-11-06 03:00:00+00:00,0.2560039402286214 -2024-11-06 04:00:00+00:00,0.24831550693336157 -2024-11-06 05:00:00+00:00,0.24164636303163062 -2024-11-06 06:00:00+00:00,0.24269015025228938 -2024-11-06 07:00:00+00:00,0.22179515411640055 -2024-11-06 08:00:00+00:00,0.19220642426876738 -2024-11-06 09:00:00+00:00,0.16683321029916487 -2024-11-06 10:00:00+00:00,0.13879792813006986 -2024-11-06 11:00:00+00:00,0.12467021247237742 -2024-11-06 12:00:00+00:00,0.11741850373957435 -2024-11-06 13:00:00+00:00,0.09589049347166778 -2024-11-06 14:00:00+00:00,0.07206794376336062 -2024-11-06 15:00:00+00:00,0.05306101195463042 -2024-11-06 16:00:00+00:00,0.04847776867467646 -2024-11-06 17:00:00+00:00,0.04349213490398007 -2024-11-06 18:00:00+00:00,0.018058683599095016 -2024-11-06 19:00:00+00:00,-0.0025616375074595243 -2024-11-06 20:00:00+00:00,-0.012824261001518678 -2024-11-06 21:00:00+00:00,-0.019346186045885005 -2024-11-06 22:00:00+00:00,-0.03360362667829553 -2024-11-06 23:00:00+00:00,-0.05916076423491978 -2024-11-07 00:00:00+00:00,-0.059437996893804745 -2024-11-07 01:00:00+00:00,-0.06529064107422683 -2024-11-07 02:00:00+00:00,-0.07456513530867087 -2024-11-07 03:00:00+00:00,-0.08820004039699558 -2024-11-07 04:00:00+00:00,-0.10524761814039962 -2024-11-07 05:00:00+00:00,-0.12476845645105927 -2024-11-07 06:00:00+00:00,-0.1385967566840305 -2024-11-07 07:00:00+00:00,-0.13875418367845765 -2024-11-07 08:00:00+00:00,-0.13199681831924848 -2024-11-07 09:00:00+00:00,-0.12912744085225303 -2024-11-07 10:00:00+00:00,-0.11827644494931785 -2024-11-07 11:00:00+00:00,-0.10412596503713428 -2024-11-07 12:00:00+00:00,-0.1107480822085164 -2024-11-07 13:00:00+00:00,-0.1273016123048364 -2024-11-07 14:00:00+00:00,-0.14981549738651204 -2024-11-07 15:00:00+00:00,-0.173586277662991 -2024-11-07 16:00:00+00:00,-0.16880624757943638 -2024-11-07 17:00:00+00:00,-0.16463171400951945 -2024-11-07 18:00:00+00:00,-0.1557025231161585 -2024-11-07 19:00:00+00:00,-0.13395085496578954 -2024-11-07 20:00:00+00:00,-0.12720581078532422 -2024-11-07 21:00:00+00:00,-0.11142316386322831 -2024-11-07 22:00:00+00:00,-0.09220857839158553 -2024-11-07 23:00:00+00:00,-0.058557397561134594 -2024-11-08 00:00:00+00:00,-0.034974264680309314 -2024-11-08 01:00:00+00:00,-0.018921960238692415 -2024-11-08 02:00:00+00:00,-0.0036656873929641343 -2024-11-08 03:00:00+00:00,-0.012035938255357703 -2024-11-08 04:00:00+00:00,-0.019432382420625616 -2024-11-08 05:00:00+00:00,-0.016469060341041064 -2024-11-08 06:00:00+00:00,-0.014277821749001635 -2024-11-08 07:00:00+00:00,-0.018013520193855825 -2024-11-08 08:00:00+00:00,-0.03556568154636608 -2024-11-08 09:00:00+00:00,-0.046864308783625575 -2024-11-08 10:00:00+00:00,-0.05565021894528854 -2024-11-08 11:00:00+00:00,-0.039937614352606954 -2024-11-08 12:00:00+00:00,-0.028556316275794413 -2024-11-08 13:00:00+00:00,0.006254445433252875 -2024-11-08 14:00:00+00:00,0.028703271037735845 -2024-11-08 15:00:00+00:00,0.025186150912993366 -2024-11-08 16:00:00+00:00,0.03500480864905137 -2024-11-08 17:00:00+00:00,0.045822907923856904 -2024-11-08 18:00:00+00:00,0.055128089208762276 -2024-11-08 19:00:00+00:00,0.0591701372606489 -2024-11-08 20:00:00+00:00,0.050376860226377496 -2024-11-08 21:00:00+00:00,0.052009005671628694 -2024-11-10 22:00:00+00:00,0.05524899802500746 -2024-11-10 23:00:00+00:00,0.07043289710791228 -2024-11-11 00:00:00+00:00,0.09303995693067477 -2024-11-11 01:00:00+00:00,0.10843645691438189 -2024-11-11 02:00:00+00:00,0.12438575481876825 -2024-11-11 03:00:00+00:00,0.13228673322821055 -2024-11-11 04:00:00+00:00,0.13895854446326247 -2024-11-11 05:00:00+00:00,0.13308920202118618 -2024-11-11 06:00:00+00:00,0.11419442006445357 -2024-11-11 07:00:00+00:00,0.11135066875936256 -2024-11-11 08:00:00+00:00,0.11105982694822826 -2024-11-11 09:00:00+00:00,0.09541099002719315 -2024-11-11 10:00:00+00:00,0.0836301043401955 -2024-11-11 11:00:00+00:00,0.0749558097775953 -2024-11-11 12:00:00+00:00,0.06634274717936534 -2024-11-11 13:00:00+00:00,0.054558394513380765 -2024-11-11 14:00:00+00:00,0.04740624001990634 -2024-11-11 15:00:00+00:00,0.03959527711792504 -2024-11-11 16:00:00+00:00,0.02837208528663926 -2024-11-11 17:00:00+00:00,0.02134125441557877 -2024-11-11 18:00:00+00:00,0.009344650597907983 -2024-11-11 19:00:00+00:00,-0.00336992546620149 -2024-11-11 20:00:00+00:00,-0.020710455246136572 -2024-11-11 21:00:00+00:00,-0.027103052562624103 -2024-11-11 22:00:00+00:00,-0.03146986248699565 -2024-11-11 23:00:00+00:00,-0.04766801594739334 -2024-11-12 00:00:00+00:00,-0.04166991624964489 -2024-11-12 01:00:00+00:00,-0.02497852141414053 -2024-11-12 02:00:00+00:00,-0.024292294434848788 -2024-11-12 03:00:00+00:00,-0.03393749101465307 -2024-11-12 04:00:00+00:00,-0.04947525617883336 -2024-11-12 05:00:00+00:00,-0.050867408820553406 -2024-11-12 06:00:00+00:00,-0.039503025021737956 -2024-11-12 07:00:00+00:00,-0.029008909670148325 -2024-11-12 08:00:00+00:00,-0.014502667974166245 -2024-11-12 09:00:00+00:00,0.004981793331311268 -2024-11-12 10:00:00+00:00,0.01232240503965197 -2024-11-12 11:00:00+00:00,0.01674400794221159 -2024-11-12 12:00:00+00:00,0.017789728687969963 -2024-11-12 13:00:00+00:00,0.03583326390903274 -2024-11-12 14:00:00+00:00,0.046144752193861716 -2024-11-12 15:00:00+00:00,0.055622914233180776 -2024-11-12 16:00:00+00:00,0.0713579757399298 -2024-11-12 17:00:00+00:00,0.07860388160717177 -2024-11-12 18:00:00+00:00,0.07371582162270962 -2024-11-12 19:00:00+00:00,0.06596934328798357 -2024-11-12 20:00:00+00:00,0.04475308629128688 -2024-11-12 21:00:00+00:00,0.030016673608230238 -2024-11-12 22:00:00+00:00,0.011175139567580927 -2024-11-12 23:00:00+00:00,0.0041883559999268405 -2024-11-13 00:00:00+00:00,0.014688897893527564 -2024-11-13 01:00:00+00:00,-0.002852011744704841 -2024-11-13 02:00:00+00:00,-0.007431340158641775 -2024-11-13 03:00:00+00:00,-0.008096843546134824 -2024-11-13 04:00:00+00:00,-0.007468431711396661 -2024-11-13 05:00:00+00:00,-0.004832403590371848 -2024-11-13 06:00:00+00:00,0.003082936748409093 -2024-11-13 07:00:00+00:00,0.009928590694797956 -2024-11-13 08:00:00+00:00,0.004745657998784847 -2024-11-13 09:00:00+00:00,-0.008417672492473993 -2024-11-13 10:00:00+00:00,-0.0122167525447624 -2024-11-13 11:00:00+00:00,-0.027341725555518365 -2024-11-13 12:00:00+00:00,-0.03077759191965207 -2024-11-13 13:00:00+00:00,-0.05994951105615809 -2024-11-13 14:00:00+00:00,-0.05629752332357418 -2024-11-13 15:00:00+00:00,-0.04343100295403321 -2024-11-13 16:00:00+00:00,-0.01591947401559235 -2024-11-13 17:00:00+00:00,0.008707796609221663 -2024-11-13 18:00:00+00:00,0.03353493946823899 -2024-11-13 19:00:00+00:00,0.04230374760177205 -2024-11-13 20:00:00+00:00,0.046641721811210624 -2024-11-13 21:00:00+00:00,0.03746654625941631 -2024-11-13 22:00:00+00:00,0.02379096343033188 -2024-11-13 23:00:00+00:00,0.011977797559406811 -2024-11-14 00:00:00+00:00,0.021133041217714726 -2024-11-14 01:00:00+00:00,0.03281958738354429 -2024-11-14 02:00:00+00:00,0.04502236839927165 -2024-11-14 03:00:00+00:00,0.0437876069693276 -2024-11-14 04:00:00+00:00,0.045263472851828634 -2024-11-14 05:00:00+00:00,0.03894039656405501 -2024-11-14 06:00:00+00:00,0.023887476996978574 -2024-11-14 07:00:00+00:00,0.004990962606577998 -2024-11-14 08:00:00+00:00,-0.0028909870158648765 -2024-11-14 09:00:00+00:00,-0.00013092834306399626 -2024-11-14 10:00:00+00:00,-0.004629668849641777 -2024-11-14 11:00:00+00:00,-0.018537113798012594 -2024-11-14 12:00:00+00:00,-0.024168741934711246 -2024-11-14 13:00:00+00:00,-0.027581462237090792 -2024-11-14 14:00:00+00:00,-0.045060795226410655 -2024-11-14 15:00:00+00:00,-0.04634236875112263 -2024-11-14 16:00:00+00:00,-0.045977896891039594 -2024-11-14 17:00:00+00:00,-0.060195174261941486 -2024-11-14 18:00:00+00:00,-0.05861026014497914 -2024-11-14 19:00:00+00:00,-0.05453700438791173 -2024-11-14 20:00:00+00:00,-0.02697623621371692 -2024-11-14 21:00:00+00:00,-0.011668130186686554 -2024-11-14 22:00:00+00:00,-0.0017523897413028178 -2024-11-14 23:00:00+00:00,0.014223270532200988 -2024-11-15 00:00:00+00:00,0.03127657068237291 -2024-11-15 01:00:00+00:00,0.03336200414754015 -2024-11-15 02:00:00+00:00,0.0206474596931277 -2024-11-15 03:00:00+00:00,0.0168897087084853 -2024-11-15 04:00:00+00:00,0.0019927138905434794 -2024-11-15 05:00:00+00:00,-0.003219161582104224 -2024-11-15 06:00:00+00:00,-0.03105325900935052 -2024-11-15 07:00:00+00:00,-0.06955829327464164 -2024-11-15 08:00:00+00:00,-0.10836266326430388 -2024-11-15 09:00:00+00:00,-0.1383088090971131 -2024-11-15 10:00:00+00:00,-0.15501032403219733 -2024-11-15 11:00:00+00:00,-0.146354759390266 -2024-11-15 12:00:00+00:00,-0.1399864342780938 -2024-11-15 13:00:00+00:00,-0.1333434103944064 -2024-11-15 14:00:00+00:00,-0.10755486850904669 -2024-11-15 15:00:00+00:00,-0.12416077481602084 -2024-11-15 16:00:00+00:00,-0.14997551675377413 -2024-11-15 17:00:00+00:00,-0.1775696665938914 -2024-11-15 18:00:00+00:00,-0.20710820859406603 -2024-11-15 19:00:00+00:00,-0.19436347576672808 -2024-11-15 20:00:00+00:00,-0.16925376243039503 -2024-11-15 21:00:00+00:00,-0.1386008012406999 -2024-11-17 22:00:00+00:00,-0.0944048751426188 -2024-11-17 23:00:00+00:00,-0.05454350420194776 -2024-11-18 00:00:00+00:00,-0.04706109780993534 -2024-11-18 01:00:00+00:00,-0.01554963044947455 -2024-11-18 02:00:00+00:00,0.017217170580508034 -2024-11-18 03:00:00+00:00,0.03491015546200027 -2024-11-18 04:00:00+00:00,0.04706206171422289 -2024-11-18 05:00:00+00:00,0.0519333924027886 -2024-11-18 06:00:00+00:00,0.05480328200133122 -2024-11-18 07:00:00+00:00,0.05550517834055946 -2024-11-18 08:00:00+00:00,0.08040343492949031 -2024-11-18 09:00:00+00:00,0.0831135108510439 -2024-11-18 10:00:00+00:00,0.09717584901628254 -2024-11-18 11:00:00+00:00,0.10673736094834213 -2024-11-18 12:00:00+00:00,0.12256125612940277 -2024-11-18 13:00:00+00:00,0.10450627848580435 -2024-11-18 14:00:00+00:00,0.0825813707693587 -2024-11-18 15:00:00+00:00,0.07801819692567531 -2024-11-18 16:00:00+00:00,0.0597009754842413 -2024-11-18 17:00:00+00:00,0.03984126293918924 -2024-11-18 18:00:00+00:00,0.021560461099771305 -2024-11-18 19:00:00+00:00,0.01672945624102662 -2024-11-18 20:00:00+00:00,0.004270138733138834 -2024-11-18 21:00:00+00:00,0.0027977344683606797 -2024-11-18 22:00:00+00:00,0.00024149819333962874 -2024-11-18 23:00:00+00:00,-0.002796793618307619 -2024-11-19 00:00:00+00:00,-0.019054202848319754 -2024-11-19 01:00:00+00:00,-0.044105418744729036 -2024-11-19 02:00:00+00:00,-0.05398173651900132 -2024-11-19 03:00:00+00:00,-0.054854671891185536 -2024-11-19 04:00:00+00:00,-0.03606524294194208 -2024-11-19 05:00:00+00:00,-0.02091556654992044 -2024-11-19 06:00:00+00:00,-0.003433033049580647 -2024-11-19 07:00:00+00:00,0.010071997242409841 -2024-11-19 08:00:00+00:00,-0.030318131613747967 -2024-11-19 09:00:00+00:00,-0.05182251157064657 -2024-11-19 10:00:00+00:00,-0.06024426087707138 -2024-11-19 11:00:00+00:00,-0.04144397502954106 -2024-11-19 12:00:00+00:00,-0.032573952275189055 -2024-11-19 13:00:00+00:00,-0.05565437720561264 -2024-11-19 14:00:00+00:00,-0.02837324991427262 -2024-11-19 15:00:00+00:00,-0.01364976551024455 -2024-11-19 16:00:00+00:00,0.022903138449811428 -2024-11-19 17:00:00+00:00,0.07065939385916409 -2024-11-19 18:00:00+00:00,0.08990708717229065 -2024-11-19 19:00:00+00:00,0.10564376371082584 -2024-11-19 20:00:00+00:00,0.11083886318479799 -2024-11-19 21:00:00+00:00,0.10724248723115751 -2024-11-19 22:00:00+00:00,0.09571863188634462 -2024-11-19 23:00:00+00:00,0.09275836220183666 -2024-11-20 00:00:00+00:00,0.09925749741107827 -2024-11-20 01:00:00+00:00,0.088910134018753 -2024-11-20 02:00:00+00:00,0.08365973269719064 -2024-11-20 03:00:00+00:00,0.08130565973388412 -2024-11-20 04:00:00+00:00,0.08147085358980222 -2024-11-20 05:00:00+00:00,0.08531816268906267 -2024-11-20 06:00:00+00:00,0.09331082887084641 -2024-11-20 07:00:00+00:00,0.11143872250930115 -2024-11-20 08:00:00+00:00,0.11416560708658721 -2024-11-20 09:00:00+00:00,0.11615366216142045 -2024-11-20 10:00:00+00:00,0.10926865275296002 -2024-11-20 11:00:00+00:00,0.10280528170516212 -2024-11-20 12:00:00+00:00,0.08152208798286703 -2024-11-20 13:00:00+00:00,0.06413300282385292 -2024-11-20 14:00:00+00:00,0.038973423786195616 -2024-11-20 15:00:00+00:00,0.014002587944997702 -2024-11-20 16:00:00+00:00,-0.014550627348185297 -2024-11-20 17:00:00+00:00,-0.04484032075011979 -2024-11-20 18:00:00+00:00,-0.05627651719687016 -2024-11-20 19:00:00+00:00,-0.061230615186314785 -2024-11-20 20:00:00+00:00,-0.05648955204820566 -2024-11-20 21:00:00+00:00,-0.055810906209342426 -2024-11-20 22:00:00+00:00,-0.05975667679304955 -2024-11-20 23:00:00+00:00,-0.06549208866671796 -2024-11-21 00:00:00+00:00,-0.08025939750445066 -2024-11-21 01:00:00+00:00,-0.08913693805580047 -2024-11-21 02:00:00+00:00,-0.09627087370798684 -2024-11-21 03:00:00+00:00,-0.09935730453746061 -2024-11-21 04:00:00+00:00,-0.0886695837091204 -2024-11-21 05:00:00+00:00,-0.06964284587667245 -2024-11-21 06:00:00+00:00,-0.08196594838186737 -2024-11-21 07:00:00+00:00,-0.07653818772315887 -2024-11-21 08:00:00+00:00,-0.0990233910242863 -2024-11-21 09:00:00+00:00,-0.11073225705357337 -2024-11-21 10:00:00+00:00,-0.11169347880829984 -2024-11-21 11:00:00+00:00,-0.09744466351531386 -2024-11-21 12:00:00+00:00,-0.08861013403454387 -2024-11-21 13:00:00+00:00,-0.08955682994948501 -2024-11-21 14:00:00+00:00,-0.0941468447199198 -2024-11-21 15:00:00+00:00,-0.07656978370871789 -2024-11-21 16:00:00+00:00,-0.03869815125501458 -2024-11-21 17:00:00+00:00,-0.024911629339211094 -2024-11-21 18:00:00+00:00,-0.0063378339706984255 -2024-11-21 19:00:00+00:00,0.004513205249638913 -2024-11-21 20:00:00+00:00,0.012624996497119484 -2024-11-21 21:00:00+00:00,0.021118578313959302 -2024-11-21 22:00:00+00:00,0.025018476817865176 -2024-11-21 23:00:00+00:00,0.005100759245501324 -2024-11-22 00:00:00+00:00,0.0049190241778721555 -2024-11-22 01:00:00+00:00,0.011298328588696116 -2024-11-22 02:00:00+00:00,0.01485658120817726 -2024-11-22 03:00:00+00:00,0.00972540788103421 -2024-11-22 04:00:00+00:00,0.017518905649762162 -2024-11-22 05:00:00+00:00,0.040750614693828846 -2024-11-22 06:00:00+00:00,0.06724255890142783 -2024-11-22 07:00:00+00:00,0.07024050286809232 -2024-11-22 08:00:00+00:00,0.055642906594622024 -2024-11-22 09:00:00+00:00,0.04354634335057439 -2024-11-22 10:00:00+00:00,0.02346905918199456 -2024-11-22 11:00:00+00:00,0.009599433640053473 -2024-11-22 12:00:00+00:00,0.012706464681962015 -2024-11-22 13:00:00+00:00,0.0004799626911734245 -2024-11-22 14:00:00+00:00,0.031995929074423723 -2024-11-22 15:00:00+00:00,0.05180663197498694 -2024-11-22 16:00:00+00:00,0.05150930010306915 -2024-11-22 17:00:00+00:00,0.050376913577035734 -2024-11-22 18:00:00+00:00,0.0465596904621943 -2024-11-22 19:00:00+00:00,0.04562088644535576 -2024-11-22 20:00:00+00:00,0.044963647916569 -2024-11-22 21:00:00+00:00,0.03713964778657554 -2024-11-24 22:00:00+00:00,-0.002164801540310707 -2024-11-24 23:00:00+00:00,-0.03348054748959768 -2024-11-25 00:00:00+00:00,-0.04734982931772299 -2024-11-25 01:00:00+00:00,-0.08193222580188039 -2024-11-25 02:00:00+00:00,-0.09954545803633576 -2024-11-25 03:00:00+00:00,-0.09331100943185558 -2024-11-25 04:00:00+00:00,-0.07434942482227413 -2024-11-25 05:00:00+00:00,-0.04676745188172697 -2024-11-25 06:00:00+00:00,-0.0241837949178086 -2024-11-25 07:00:00+00:00,0.007731423963328293 -2024-11-25 08:00:00+00:00,0.03838031365704081 -2024-11-25 09:00:00+00:00,0.03903593770247435 -2024-11-25 10:00:00+00:00,0.03819124643394668 -2024-11-25 11:00:00+00:00,0.04166028722559664 -2024-11-25 12:00:00+00:00,0.022667397740588215 -2024-11-25 13:00:00+00:00,-0.007290418845686736 -2024-11-25 14:00:00+00:00,-0.036471106662772285 -2024-11-25 15:00:00+00:00,-0.01262538459271717 -2024-11-25 16:00:00+00:00,-0.0011820864634902867 -2024-11-25 17:00:00+00:00,0.008463649604763895 -2024-11-25 18:00:00+00:00,0.0012691688161910186 -2024-11-25 19:00:00+00:00,-0.0008537581178323372 -2024-11-25 20:00:00+00:00,-0.0012801417182953106 -2024-11-25 21:00:00+00:00,0.0013604521883976567 -2024-11-25 22:00:00+00:00,-0.0002808349250097153 -2024-11-25 23:00:00+00:00,0.016732039005476484 -2024-11-26 00:00:00+00:00,0.003663696178467374 -2024-11-26 01:00:00+00:00,-0.0017999205390508838 -2024-11-26 02:00:00+00:00,-0.00897120042430509 -2024-11-26 03:00:00+00:00,-0.027793071154797816 -2024-11-26 04:00:00+00:00,-0.031041645895488496 -2024-11-26 05:00:00+00:00,-0.0385194736000274 -2024-11-26 06:00:00+00:00,-0.018939831342738786 -2024-11-26 07:00:00+00:00,-0.005848138261663832 -2024-11-26 08:00:00+00:00,-0.0007506259807613658 -2024-11-26 09:00:00+00:00,0.000666221054515248 -2024-11-26 10:00:00+00:00,-0.007638724834226215 -2024-11-26 11:00:00+00:00,-0.010735330150501265 -2024-11-26 12:00:00+00:00,-0.04445928382039466 -2024-11-26 13:00:00+00:00,-0.051093574992313595 -2024-11-26 14:00:00+00:00,-0.045581223522917824 -2024-11-26 15:00:00+00:00,-0.04208568375469354 -2024-11-26 16:00:00+00:00,-0.03477233190383344 -2024-11-26 17:00:00+00:00,-0.03724025968365002 -2024-11-26 18:00:00+00:00,-0.031138043417405947 -2024-11-26 19:00:00+00:00,-0.04193023927210143 -2024-11-26 20:00:00+00:00,-0.04778069743861971 -2024-11-26 21:00:00+00:00,-0.044374587856971126 -2024-11-26 22:00:00+00:00,-0.03958365731071439 -2024-11-26 23:00:00+00:00,-0.04180761446809786 -2024-11-27 00:00:00+00:00,-0.04043074083215267 -2024-11-27 01:00:00+00:00,-0.05834733473947362 -2024-11-27 02:00:00+00:00,-0.05875800176318702 -2024-11-27 03:00:00+00:00,-0.06527161297763584 -2024-11-27 04:00:00+00:00,-0.0721207797055598 -2024-11-27 05:00:00+00:00,-0.06193661572524656 -2024-11-27 06:00:00+00:00,-0.07210147330861394 -2024-11-27 07:00:00+00:00,-0.07990071888578448 -2024-11-27 08:00:00+00:00,-0.08511574413504619 -2024-11-27 09:00:00+00:00,-0.1031769872417791 -2024-11-27 10:00:00+00:00,-0.11011144819945973 -2024-11-27 11:00:00+00:00,-0.09911891396350125 -2024-11-27 12:00:00+00:00,-0.08298401094170349 -2024-11-27 13:00:00+00:00,-0.07385530129298784 -2024-11-27 14:00:00+00:00,-0.05723897500209385 -2024-11-27 15:00:00+00:00,-0.05632599219397938 -2024-11-27 16:00:00+00:00,-0.07353515655435361 -2024-11-27 17:00:00+00:00,-0.07180470731811717 -2024-11-27 18:00:00+00:00,-0.05564144186769937 -2024-11-27 19:00:00+00:00,-0.02681285266710909 -2024-11-27 20:00:00+00:00,0.002441307661351866 -2024-11-27 21:00:00+00:00,0.027423661870041638 -2024-11-27 22:00:00+00:00,0.03693304857647173 -2024-11-27 23:00:00+00:00,0.07043168883063777 -2024-11-28 00:00:00+00:00,0.11481612808411212 -2024-11-28 01:00:00+00:00,0.12495312914703383 -2024-11-28 02:00:00+00:00,0.13016671219059206 -2024-11-28 03:00:00+00:00,0.14238196115428986 -2024-11-28 04:00:00+00:00,0.1463422253675653 -2024-11-28 05:00:00+00:00,0.1392904118403096 -2024-11-28 06:00:00+00:00,0.13106841009801207 -2024-11-28 07:00:00+00:00,0.13526403997014047 -2024-11-28 08:00:00+00:00,0.13841826851337524 -2024-11-28 09:00:00+00:00,0.13897112750570279 -2024-11-28 10:00:00+00:00,0.13154891296908688 -2024-11-28 11:00:00+00:00,0.120238417636818 -2024-11-28 12:00:00+00:00,0.10387407787423365 -2024-11-28 13:00:00+00:00,0.07692215638706668 -2024-11-28 14:00:00+00:00,0.05408051880542368 -2024-11-28 15:00:00+00:00,0.03763342303482438 -2024-11-28 16:00:00+00:00,0.02360945838155845 -2024-11-28 17:00:00+00:00,0.015040314892747708 -2024-11-28 18:00:00+00:00,0.01209197096081055 -2024-11-28 19:00:00+00:00,0.008071125188655742 -2024-11-28 20:00:00+00:00,0.002485539408580914 -2024-11-28 21:00:00+00:00,0.006034265722745805 -2024-11-28 22:00:00+00:00,0.007386481165053138 -2024-11-28 23:00:00+00:00,-0.013913218893745138 -2024-11-29 00:00:00+00:00,-0.06447211084439224 -2024-11-29 01:00:00+00:00,-0.1328063900190845 -2024-11-29 02:00:00+00:00,-0.15357767586176607 -2024-11-29 03:00:00+00:00,-0.1611588980770059 -2024-11-29 04:00:00+00:00,-0.16123973395245972 -2024-11-29 05:00:00+00:00,-0.14488819329791613 -2024-11-29 06:00:00+00:00,-0.1310809117795883 -2024-11-29 07:00:00+00:00,-0.11303923214296441 -2024-11-29 08:00:00+00:00,-0.0806510224025696 -2024-11-29 09:00:00+00:00,-0.054569324395714214 -2024-11-29 10:00:00+00:00,-0.044787570449215885 -2024-11-29 11:00:00+00:00,-0.027764055561214862 -2024-11-29 12:00:00+00:00,-0.004860865523273528 -2024-11-29 13:00:00+00:00,0.0013289300095805645 -2024-11-29 14:00:00+00:00,0.006798776331836454 -2024-11-29 15:00:00+00:00,0.028682089834321245 -2024-11-29 16:00:00+00:00,0.05951287951725287 -2024-11-29 17:00:00+00:00,0.026936113433586206 -2024-11-29 18:00:00+00:00,0.011273881072231318 -2024-11-29 19:00:00+00:00,0.001392740988686192 -2024-11-29 20:00:00+00:00,0.0010743903235448382 -2024-11-29 21:00:00+00:00,0.009189121743957973 -2024-12-01 22:00:00+00:00,0.009634952034139055 -2024-12-01 23:00:00+00:00,0.028713632786939336 -2024-12-02 00:00:00+00:00,0.06382994450754631 -2024-12-02 01:00:00+00:00,0.10643763720152055 -2024-12-02 02:00:00+00:00,0.13416148989209448 -2024-12-02 03:00:00+00:00,0.14262866770471933 -2024-12-02 04:00:00+00:00,0.14572385839749635 -2024-12-02 05:00:00+00:00,0.15102028053804084 -2024-12-02 06:00:00+00:00,0.12280445346687481 -2024-12-02 07:00:00+00:00,0.09469413303036568 -2024-12-02 08:00:00+00:00,0.07084331700759192 -2024-12-02 09:00:00+00:00,0.06121720563510723 -2024-12-02 10:00:00+00:00,0.04147138402843566 -2024-12-02 11:00:00+00:00,0.025959778258841763 -2024-12-02 12:00:00+00:00,0.014366614676456717 -2024-12-02 13:00:00+00:00,0.0031879188985232745 -2024-12-02 14:00:00+00:00,-0.009002968947250736 -2024-12-02 15:00:00+00:00,-0.02359376432410204 -2024-12-02 16:00:00+00:00,-0.069630240642446 -2024-12-02 17:00:00+00:00,-0.0730709176740159 -2024-12-02 18:00:00+00:00,-0.06701632110268715 -2024-12-02 19:00:00+00:00,-0.06685355167495774 -2024-12-02 20:00:00+00:00,-0.06117771697007973 -2024-12-02 21:00:00+00:00,-0.05009851709147681 -2024-12-02 22:00:00+00:00,-0.041970422984564465 -2024-12-02 23:00:00+00:00,-0.035256641877540074 -2024-12-03 00:00:00+00:00,-0.004875844015101993 -2024-12-03 01:00:00+00:00,0.016293665188494455 -2024-12-03 02:00:00+00:00,0.029457939615891493 -2024-12-03 03:00:00+00:00,0.05222751133128148 -2024-12-03 04:00:00+00:00,0.06847293283220773 -2024-12-03 05:00:00+00:00,0.06864482969192517 -2024-12-03 06:00:00+00:00,0.0715954895515142 -2024-12-03 07:00:00+00:00,0.06397224435962832 -2024-12-03 08:00:00+00:00,0.05086874505008944 -2024-12-03 09:00:00+00:00,0.03407166592681456 -2024-12-03 10:00:00+00:00,0.03707749667274635 -2024-12-03 11:00:00+00:00,0.01747270316849013 -2024-12-03 12:00:00+00:00,0.0013403105271634283 -2024-12-03 13:00:00+00:00,-0.06155079446165708 -2024-12-03 14:00:00+00:00,-0.09906662808037169 -2024-12-03 15:00:00+00:00,-0.09563857468348783 -2024-12-03 16:00:00+00:00,-0.08922849900546642 -2024-12-03 17:00:00+00:00,-0.07399824581014641 -2024-12-03 18:00:00+00:00,-0.06995146557303644 -2024-12-03 19:00:00+00:00,-0.032442758369321256 -2024-12-03 20:00:00+00:00,-0.009038273596349122 -2024-12-03 21:00:00+00:00,0.016636465205951634 -2024-12-03 22:00:00+00:00,0.03373494053337503 -2024-12-03 23:00:00+00:00,0.04499530229120155 -2024-12-04 00:00:00+00:00,0.06766657036391988 -2024-12-04 01:00:00+00:00,0.08300084356608953 -2024-12-04 02:00:00+00:00,0.07972460345402468 -2024-12-04 03:00:00+00:00,0.08455716734813416 -2024-12-04 04:00:00+00:00,0.08592127532152491 -2024-12-04 05:00:00+00:00,0.09097057728489541 -2024-12-04 06:00:00+00:00,0.08375395064380446 -2024-12-04 07:00:00+00:00,0.09890335954888285 -2024-12-04 08:00:00+00:00,0.10663013600002226 -2024-12-04 09:00:00+00:00,0.11735276448711246 -2024-12-04 10:00:00+00:00,0.1326335379091605 -2024-12-04 11:00:00+00:00,0.1358833108309024 -2024-12-04 12:00:00+00:00,0.14751336130109133 -2024-12-04 13:00:00+00:00,0.13913559821846566 -2024-12-04 14:00:00+00:00,0.1111918048809622 -2024-12-04 15:00:00+00:00,0.055794694442115045 -2024-12-04 16:00:00+00:00,0.0025598099696949594 -2024-12-04 17:00:00+00:00,-0.03440965074504565 -2024-12-04 18:00:00+00:00,-0.041554156974221795 -2024-12-04 19:00:00+00:00,-0.04497959702957255 -2024-12-04 20:00:00+00:00,-0.04196285380033268 -2024-12-04 21:00:00+00:00,-0.03305624581262609 -2024-12-04 22:00:00+00:00,-0.03329398638175762 -2024-12-04 23:00:00+00:00,-0.03285693226976641 -2024-12-05 00:00:00+00:00,-0.05319623547973179 -2024-12-05 01:00:00+00:00,-0.044399351918673585 -2024-12-05 02:00:00+00:00,-0.051140878860101296 -2024-12-05 03:00:00+00:00,-0.0571322448663224 -2024-12-05 04:00:00+00:00,-0.05263648170969076 -2024-12-05 05:00:00+00:00,-0.07742118704558744 -2024-12-05 06:00:00+00:00,-0.09949058622919457 -2024-12-05 07:00:00+00:00,-0.10839121969356727 -2024-12-05 08:00:00+00:00,-0.08324395261735858 -2024-12-05 09:00:00+00:00,-0.05575359845618652 -2024-12-05 10:00:00+00:00,-0.04776449922130259 -2024-12-05 11:00:00+00:00,-0.03788555357703073 -2024-12-05 12:00:00+00:00,-0.01410717188413467 -2024-12-05 13:00:00+00:00,0.014616051532550422 -2024-12-05 14:00:00+00:00,0.02435028642257287 -2024-12-05 15:00:00+00:00,0.013958687617478921 -2024-12-05 16:00:00+00:00,0.0035270747240736047 -2024-12-05 17:00:00+00:00,-0.007730985696322928 -2024-12-05 18:00:00+00:00,-0.012836582742462813 -2024-12-05 19:00:00+00:00,-0.024063677810929475 -2024-12-05 20:00:00+00:00,-0.025912140609864603 -2024-12-05 21:00:00+00:00,-0.024725730111699935 -2024-12-05 22:00:00+00:00,-0.023812759054296476 -2024-12-05 23:00:00+00:00,-0.0189166117495704 -2024-12-06 00:00:00+00:00,-0.015821766571886116 -2024-12-06 01:00:00+00:00,-0.016407189787239186 -2024-12-06 02:00:00+00:00,-0.02925062299542123 -2024-12-06 03:00:00+00:00,-0.03231696939162808 -2024-12-06 04:00:00+00:00,-0.025829944141547385 -2024-12-06 05:00:00+00:00,-0.022379259481543817 -2024-12-06 06:00:00+00:00,-0.023195196245959754 -2024-12-06 07:00:00+00:00,-0.007316794890455808 -2024-12-06 08:00:00+00:00,0.02120902879368118 -2024-12-06 09:00:00+00:00,0.051778700151558735 -2024-12-06 10:00:00+00:00,0.0686348147433706 -2024-12-06 11:00:00+00:00,0.07189878446676638 -2024-12-06 12:00:00+00:00,0.06375577999775585 -2024-12-06 13:00:00+00:00,0.007773722354676334 -2024-12-06 14:00:00+00:00,-0.028050901714477654 -2024-12-06 15:00:00+00:00,-0.035514701879047546 -2024-12-06 16:00:00+00:00,-0.042982128985075856 -2024-12-06 17:00:00+00:00,-0.03445471724549133 -2024-12-06 18:00:00+00:00,-0.02520501506766922 -2024-12-06 19:00:00+00:00,-0.018738009789023888 -2024-12-06 20:00:00+00:00,-0.014056177749971373 -2024-12-06 21:00:00+00:00,-0.004835425141249149 -2024-12-08 22:00:00+00:00,-0.0009002308873824194 -2024-12-08 23:00:00+00:00,-0.004694125601134198 -2024-12-09 00:00:00+00:00,-0.009549093276860224 -2024-12-09 01:00:00+00:00,-0.0073261845189111705 -2024-12-09 02:00:00+00:00,-0.005234067094643503 -2024-12-09 03:00:00+00:00,0.0014646548870621556 -2024-12-09 04:00:00+00:00,0.0006130201572232472 -2024-12-09 05:00:00+00:00,0.005027770573763003 -2024-12-09 06:00:00+00:00,0.01926517371986297 -2024-12-09 07:00:00+00:00,0.04065586246037234 -2024-12-09 08:00:00+00:00,0.05714743287603863 -2024-12-09 09:00:00+00:00,0.06459578712813467 -2024-12-09 10:00:00+00:00,0.06839105333481882 -2024-12-09 11:00:00+00:00,0.06922271523709286 -2024-12-09 12:00:00+00:00,0.08343935235825792 -2024-12-09 13:00:00+00:00,0.09464390099865588 -2024-12-09 14:00:00+00:00,0.09958366821011366 -2024-12-09 15:00:00+00:00,0.10253594093258991 -2024-12-09 16:00:00+00:00,0.11163978243452544 -2024-12-09 17:00:00+00:00,0.11582659436923207 -2024-12-09 18:00:00+00:00,0.10713065667462784 -2024-12-09 19:00:00+00:00,0.09216718567456653 -2024-12-09 20:00:00+00:00,0.0747431357305553 -2024-12-09 21:00:00+00:00,0.057285697304244654 -2024-12-09 22:00:00+00:00,0.043144620254264354 -2024-12-09 23:00:00+00:00,0.038553627604014595 -2024-12-10 00:00:00+00:00,0.034549101992613795 -2024-12-10 01:00:00+00:00,0.019300891874607484 -2024-12-10 02:00:00+00:00,-0.0011543958467085669 -2024-12-10 03:00:00+00:00,-0.02488334813209342 -2024-12-10 04:00:00+00:00,-0.03723818874663082 -2024-12-10 05:00:00+00:00,-0.05806874393130368 -2024-12-10 06:00:00+00:00,-0.05209964098173925 -2024-12-10 07:00:00+00:00,-0.0267192189209271 -2024-12-10 08:00:00+00:00,-0.006523794541905326 -2024-12-10 09:00:00+00:00,0.0018474809398528746 -2024-12-10 10:00:00+00:00,0.0044705449942468445 -2024-12-10 11:00:00+00:00,0.010873531189314362 -2024-12-10 12:00:00+00:00,0.017115460689236806 -2024-12-10 13:00:00+00:00,0.011275406302340474 -2024-12-10 14:00:00+00:00,0.01396982547833675 -2024-12-10 15:00:00+00:00,0.03173213927147678 -2024-12-10 16:00:00+00:00,0.0340674574251415 -2024-12-10 17:00:00+00:00,0.03508493267101176 -2024-12-10 18:00:00+00:00,0.01899723717507401 -2024-12-10 19:00:00+00:00,0.005943382830641775 -2024-12-10 20:00:00+00:00,-0.005048701522294419 -2024-12-10 21:00:00+00:00,-0.011863342252919684 -2024-12-10 22:00:00+00:00,-0.01982351671528909 -2024-12-10 23:00:00+00:00,-0.032634094019565796 -2024-12-11 00:00:00+00:00,-0.04863232581841048 -2024-12-11 01:00:00+00:00,-0.06006306662882857 -2024-12-11 02:00:00+00:00,-0.08289202937180593 -2024-12-11 03:00:00+00:00,-0.08837752284750902 -2024-12-11 04:00:00+00:00,-0.08907669627474227 -2024-12-11 05:00:00+00:00,-0.07326214731234376 -2024-12-11 06:00:00+00:00,-0.06039506005177661 -2024-12-11 07:00:00+00:00,-0.05744273043212755 -2024-12-11 08:00:00+00:00,-0.05555939044680712 -2024-12-11 09:00:00+00:00,0.014668725427619406 -2024-12-11 10:00:00+00:00,0.05164988512872859 -2024-12-11 11:00:00+00:00,0.06816123399013616 -2024-12-11 12:00:00+00:00,0.0800113401422071 -2024-12-11 13:00:00+00:00,0.0589078154641928 -2024-12-11 14:00:00+00:00,0.030438421324888887 -2024-12-11 15:00:00+00:00,0.030173570871114164 -2024-12-11 16:00:00+00:00,0.019005398487002417 -2024-12-11 17:00:00+00:00,0.018903776611210038 -2024-12-11 18:00:00+00:00,0.027615225769772517 -2024-12-11 19:00:00+00:00,0.02741867715741997 -2024-12-11 20:00:00+00:00,0.02056549618940201 -2024-12-11 21:00:00+00:00,0.004938489052128181 -2024-12-11 22:00:00+00:00,-0.009955343205190259 -2024-12-11 23:00:00+00:00,-0.03137194109873326 -2024-12-12 00:00:00+00:00,-0.0496838252767646 -2024-12-12 01:00:00+00:00,-0.07365575861004353 -2024-12-12 02:00:00+00:00,-0.06484251426218096 -2024-12-12 03:00:00+00:00,-0.05513112346061394 -2024-12-12 04:00:00+00:00,-0.0580037567962694 -2024-12-12 05:00:00+00:00,-0.038869626175711824 -2024-12-12 06:00:00+00:00,-0.02689527969223604 -2024-12-12 07:00:00+00:00,-0.01333792540735522 -2024-12-12 08:00:00+00:00,-0.009679497795411232 -2024-12-12 09:00:00+00:00,-0.006524019863986222 -2024-12-12 10:00:00+00:00,-0.018448571869258162 -2024-12-12 11:00:00+00:00,-0.034499152283854945 -2024-12-12 12:00:00+00:00,-0.03811211517307654 -2024-12-12 13:00:00+00:00,-0.05484062203697579 -2024-12-12 14:00:00+00:00,-0.049431643574665854 -2024-12-12 15:00:00+00:00,-0.04155010989039886 -2024-12-12 16:00:00+00:00,-0.048391704362953814 -2024-12-12 17:00:00+00:00,-0.038593097960049866 -2024-12-12 18:00:00+00:00,-0.01713117442564311 -2024-12-12 19:00:00+00:00,0.0007271460188687795 -2024-12-12 20:00:00+00:00,0.019473308364258445 -2024-12-12 21:00:00+00:00,0.028878209126642865 -2024-12-12 22:00:00+00:00,0.028423194534023116 -2024-12-12 23:00:00+00:00,0.027171747846780933 -2024-12-13 00:00:00+00:00,0.03889031301123533 -2024-12-13 01:00:00+00:00,0.04003870369689248 -2024-12-13 02:00:00+00:00,0.0468549013998872 -2024-12-13 03:00:00+00:00,0.047505901339244844 -2024-12-13 04:00:00+00:00,0.04759642655506771 -2024-12-13 05:00:00+00:00,0.040393939678626034 -2024-12-13 06:00:00+00:00,0.020992444102685415 -2024-12-13 07:00:00+00:00,0.012017192542223026 -2024-12-13 08:00:00+00:00,0.02782514485094706 -2024-12-13 09:00:00+00:00,0.05080796443276925 -2024-12-13 10:00:00+00:00,0.06490571435141862 -2024-12-13 11:00:00+00:00,0.07886546285732848 -2024-12-13 12:00:00+00:00,0.0706397069370315 -2024-12-13 13:00:00+00:00,0.050182700787685525 -2024-12-13 14:00:00+00:00,0.051671528547568624 -2024-12-13 15:00:00+00:00,0.05185024749378861 -2024-12-13 16:00:00+00:00,0.05254807593970523 -2024-12-13 17:00:00+00:00,0.04403372656729038 -2024-12-13 18:00:00+00:00,0.03455857356862979 -2024-12-13 19:00:00+00:00,0.023495156064335443 -2024-12-13 20:00:00+00:00,0.010686304275162817 -2024-12-13 21:00:00+00:00,-0.0009740053863241949 -2024-12-15 22:00:00+00:00,-0.012704947041651371 -2024-12-15 23:00:00+00:00,-0.03219636093211575 -2024-12-16 00:00:00+00:00,-0.022782090456232584 -2024-12-16 01:00:00+00:00,-0.01202920557522058 -2024-12-16 02:00:00+00:00,-0.009078413424177034 -2024-12-16 03:00:00+00:00,-0.012938710291439115 -2024-12-16 04:00:00+00:00,-0.021793477681298856 -2024-12-16 05:00:00+00:00,-0.03377537046395618 -2024-12-16 06:00:00+00:00,-0.0424173215452579 -2024-12-16 07:00:00+00:00,-0.05556373720939939 -2024-12-16 08:00:00+00:00,-0.05214672600813147 -2024-12-16 09:00:00+00:00,-0.042365047327972916 -2024-12-16 10:00:00+00:00,-0.034243380056622696 -2024-12-16 11:00:00+00:00,-0.030700762596336584 -2024-12-16 12:00:00+00:00,-0.010934824650676134 -2024-12-16 13:00:00+00:00,-0.003071493234063416 -2024-12-16 14:00:00+00:00,0.018049953453587064 -2024-12-16 15:00:00+00:00,0.02450732828320054 -2024-12-16 16:00:00+00:00,0.021506818872678274 -2024-12-16 17:00:00+00:00,0.015239270673656075 -2024-12-16 18:00:00+00:00,0.002622955912996522 -2024-12-16 19:00:00+00:00,-0.002978791373914852 -2024-12-16 20:00:00+00:00,-0.0064362080983942915 -2024-12-16 21:00:00+00:00,-0.009885310982555406 -2024-12-16 22:00:00+00:00,-0.01459367088464314 -2024-12-16 23:00:00+00:00,-0.021151397695626628 -2024-12-17 00:00:00+00:00,-0.02222216561342047 -2024-12-17 01:00:00+00:00,-0.026958429774282033 -2024-12-17 02:00:00+00:00,-0.03585223002944499 -2024-12-17 03:00:00+00:00,-0.0384438372134443 -2024-12-17 04:00:00+00:00,-0.038265862865780736 -2024-12-17 05:00:00+00:00,-0.033083199346420955 -2024-12-17 06:00:00+00:00,-0.02891666925019032 -2024-12-17 07:00:00+00:00,-0.030517319129589465 -2024-12-17 08:00:00+00:00,-0.044322281777001676 -2024-12-17 09:00:00+00:00,-0.05595368223300931 -2024-12-17 10:00:00+00:00,-0.05827407301295508 -2024-12-17 11:00:00+00:00,-0.05284478693398739 -2024-12-17 12:00:00+00:00,-0.05318841859101349 -2024-12-17 13:00:00+00:00,-0.054075549805219635 -2024-12-17 14:00:00+00:00,-0.06598258486096743 -2024-12-17 15:00:00+00:00,-0.07330074052136323 -2024-12-17 16:00:00+00:00,-0.07999995565884477 -2024-12-17 17:00:00+00:00,-0.0892238647048738 -2024-12-17 18:00:00+00:00,-0.0898344792827148 -2024-12-17 19:00:00+00:00,-0.0808529922233335 -2024-12-17 20:00:00+00:00,-0.05880687441731894 -2024-12-17 21:00:00+00:00,-0.043123105055273406 -2024-12-17 22:00:00+00:00,-0.0326615565761479 -2024-12-17 23:00:00+00:00,-0.015481067473038485 -2024-12-18 00:00:00+00:00,0.004534836991167593 -2024-12-18 01:00:00+00:00,0.0116113422180988 -2024-12-18 02:00:00+00:00,0.022560882766523543 -2024-12-18 03:00:00+00:00,0.024782638467192614 -2024-12-18 04:00:00+00:00,0.01459636259466393 -2024-12-18 05:00:00+00:00,0.0028134583457396223 -2024-12-18 06:00:00+00:00,0.0035322533238725806 -2024-12-18 07:00:00+00:00,0.011211510409410652 -2024-12-18 08:00:00+00:00,0.0155501239761979 -2024-12-18 09:00:00+00:00,0.02263742083951034 -2024-12-18 10:00:00+00:00,0.02298339042719845 -2024-12-18 11:00:00+00:00,0.02815943251240355 -2024-12-18 12:00:00+00:00,0.04087749519325735 -2024-12-18 13:00:00+00:00,0.04869222505801663 -2024-12-18 14:00:00+00:00,0.047169410680326256 -2024-12-18 15:00:00+00:00,0.05948598240712556 -2024-12-18 16:00:00+00:00,0.06284771435412086 -2024-12-18 17:00:00+00:00,0.05044933578581131 -2024-12-18 18:00:00+00:00,0.03642972184332877 -2024-12-18 19:00:00+00:00,0.08152391227905197 -2024-12-18 20:00:00+00:00,0.1075767486673718 -2024-12-18 21:00:00+00:00,0.12723148967419481 -2024-12-18 22:00:00+00:00,0.12636710415625332 -2024-12-18 23:00:00+00:00,0.1127819299623708 -2024-12-19 00:00:00+00:00,0.10686732030552876 -2024-12-19 01:00:00+00:00,0.08451185355350196 -2024-12-19 02:00:00+00:00,0.09265308920731266 -2024-12-19 03:00:00+00:00,0.10165743973831998 -2024-12-19 04:00:00+00:00,0.10271329816510083 -2024-12-19 05:00:00+00:00,0.09045671586107012 -2024-12-19 06:00:00+00:00,0.13130218136597344 -2024-12-19 07:00:00+00:00,0.17057115743374907 -2024-12-19 08:00:00+00:00,0.2081277866019211 -2024-12-19 09:00:00+00:00,0.22748994134310613 -2024-12-19 10:00:00+00:00,0.21764115598667588 -2024-12-19 11:00:00+00:00,0.1789100284772469 -2024-12-19 12:00:00+00:00,0.15522451193569364 -2024-12-19 13:00:00+00:00,0.124626369490347 -2024-12-19 14:00:00+00:00,0.10990551202091026 -2024-12-19 15:00:00+00:00,0.12301582851881232 -2024-12-19 16:00:00+00:00,0.11928972275581695 -2024-12-19 17:00:00+00:00,0.10174343371773531 -2024-12-19 18:00:00+00:00,0.06843707815772204 -2024-12-19 19:00:00+00:00,0.029395317027837597 -2024-12-19 20:00:00+00:00,-0.009857660837710336 -2024-12-19 21:00:00+00:00,-0.03452695426013874 -2024-12-19 22:00:00+00:00,-0.05455480283957981 -2024-12-19 23:00:00+00:00,-0.057990987254962656 -2024-12-20 00:00:00+00:00,-0.058501289336625684 -2024-12-20 01:00:00+00:00,-0.09186206234938388 -2024-12-20 02:00:00+00:00,-0.13402675482514514 -2024-12-20 03:00:00+00:00,-0.15353905566686465 -2024-12-20 04:00:00+00:00,-0.1491203487037378 -2024-12-20 05:00:00+00:00,-0.1608645654217682 -2024-12-20 06:00:00+00:00,-0.1681639330511815 -2024-12-20 07:00:00+00:00,-0.17861228555153058 -2024-12-20 08:00:00+00:00,-0.17635874961069398 -2024-12-20 09:00:00+00:00,-0.18021906724413417 -2024-12-20 10:00:00+00:00,-0.1756196774362218 -2024-12-20 11:00:00+00:00,-0.16453765911953 -2024-12-20 12:00:00+00:00,-0.1543208850700909 -2024-12-20 13:00:00+00:00,-0.1559983721979724 -2024-12-20 14:00:00+00:00,-0.1464356114572085 -2024-12-20 15:00:00+00:00,-0.14014222899952652 -2024-12-20 16:00:00+00:00,-0.15550054932331578 -2024-12-20 17:00:00+00:00,-0.16029585277677405 -2024-12-20 18:00:00+00:00,-0.15472667196460527 -2024-12-20 19:00:00+00:00,-0.14872702121206935 -2024-12-20 20:00:00+00:00,-0.11473622678431769 -2024-12-20 21:00:00+00:00,-0.08335623015566503 -2024-12-22 22:00:00+00:00,-0.05098330609010274 -2024-12-22 23:00:00+00:00,-0.02582300630324401 -2024-12-23 00:00:00+00:00,-0.0052948103691867615 -2024-12-23 01:00:00+00:00,-0.0013698788355048508 -2024-12-23 02:00:00+00:00,0.008155505674744323 -2024-12-23 03:00:00+00:00,0.01173874823431982 -2024-12-23 04:00:00+00:00,0.017764743241683124 -2024-12-23 05:00:00+00:00,0.02579505572996238 -2024-12-23 06:00:00+00:00,0.027581938165261687 -2024-12-23 07:00:00+00:00,0.03933890949232872 -2024-12-23 08:00:00+00:00,0.03040989835840216 -2024-12-23 09:00:00+00:00,0.031633165699522195 -2024-12-23 10:00:00+00:00,0.039019642763961804 -2024-12-23 11:00:00+00:00,0.043092100588899784 -2024-12-23 12:00:00+00:00,0.062325552325074265 -2024-12-23 13:00:00+00:00,0.07523325678681389 -2024-12-23 14:00:00+00:00,0.076754771026615 -2024-12-23 15:00:00+00:00,0.07056585356371042 -2024-12-23 16:00:00+00:00,0.055878726482174415 -2024-12-23 17:00:00+00:00,0.05124953114145443 -2024-12-23 18:00:00+00:00,0.042967123699102466 -2024-12-23 19:00:00+00:00,0.03241211208474151 -2024-12-23 20:00:00+00:00,0.025762256043582815 -2024-12-23 21:00:00+00:00,0.020956507616146564 -2024-12-23 22:00:00+00:00,0.014702794060484442 -2024-12-23 23:00:00+00:00,0.01083527357028638 -2024-12-24 00:00:00+00:00,0.01464027909876775 -2024-12-24 01:00:00+00:00,0.0034932373312902554 -2024-12-24 02:00:00+00:00,-0.005536252944654874 -2024-12-24 03:00:00+00:00,-0.014539438515240116 -2024-12-24 04:00:00+00:00,-0.025382290181298783 -2024-12-24 05:00:00+00:00,-0.03266762685649437 -2024-12-24 06:00:00+00:00,-0.03152322679577581 -2024-12-24 07:00:00+00:00,-0.026614998523614652 -2024-12-24 08:00:00+00:00,-0.02847878505166529 -2024-12-24 09:00:00+00:00,-0.026894043248913896 -2024-12-24 10:00:00+00:00,-0.025467044414243148 -2024-12-24 11:00:00+00:00,-0.0207095230610444 -2024-12-24 12:00:00+00:00,-0.017768115156196335 -2024-12-24 13:00:00+00:00,-0.012122013154403866 -2024-12-24 14:00:00+00:00,-0.0030068455257892673 -2024-12-24 15:00:00+00:00,0.005641885720956238 -2024-12-24 16:00:00+00:00,0.007916069481866364 -2024-12-24 17:00:00+00:00,0.008737893460239177 -2024-12-24 18:00:00+00:00,0.010181851261600677 -2024-12-24 19:00:00+00:00,0.007768701189781985 -2024-12-24 20:00:00+00:00,-0.0024415335878702205 -2024-12-24 21:00:00+00:00,-0.008255007933894526 -2024-12-25 22:00:00+00:00,-0.009648940316137805 -2024-12-25 23:00:00+00:00,-0.018388551501537342 -2024-12-26 00:00:00+00:00,-0.010938218668883115 -2024-12-26 01:00:00+00:00,-0.0004706432870078131 -2024-12-26 02:00:00+00:00,0.005724471947969642 -2024-12-26 03:00:00+00:00,0.005330097353304253 -2024-12-26 04:00:00+00:00,0.007834026610893385 -2024-12-26 05:00:00+00:00,0.003198603526231733 -2024-12-26 06:00:00+00:00,0.0010249336798230368 -2024-12-26 07:00:00+00:00,-0.0010257695265120381 -2024-12-26 08:00:00+00:00,-0.0049955433441751795 -2024-12-26 09:00:00+00:00,-0.0022905458272668433 -2024-12-26 10:00:00+00:00,-0.00045247088599076335 -2024-12-26 11:00:00+00:00,0.009426112406138998 -2024-12-26 12:00:00+00:00,0.018635764116169184 -2024-12-26 13:00:00+00:00,0.03436754929966809 -2024-12-26 14:00:00+00:00,0.04773212786589737 -2024-12-26 15:00:00+00:00,0.06154776226202191 -2024-12-26 16:00:00+00:00,0.062081876429919025 -2024-12-26 17:00:00+00:00,0.059801666802744874 -2024-12-26 18:00:00+00:00,0.04680625287017226 -2024-12-26 19:00:00+00:00,0.03813541348706853 -2024-12-26 20:00:00+00:00,0.028330789245716942 -2024-12-26 21:00:00+00:00,0.022349264109256722 -2024-12-26 22:00:00+00:00,0.0074117915491493935 -2024-12-26 23:00:00+00:00,-0.011798582353773512 -2024-12-27 00:00:00+00:00,-0.015550063235989342 -2024-12-27 01:00:00+00:00,-0.029674125988911226 -2024-12-27 02:00:00+00:00,-0.047449316821910836 -2024-12-27 03:00:00+00:00,-0.054602927064683754 -2024-12-27 04:00:00+00:00,-0.06225780084035226 -2024-12-27 05:00:00+00:00,-0.053091085040736105 -2024-12-27 06:00:00+00:00,-0.045993443304157194 -2024-12-27 07:00:00+00:00,-0.03631175070484155 -2024-12-27 08:00:00+00:00,-0.026966817517087585 -2024-12-27 09:00:00+00:00,-0.018580460930976234 -2024-12-27 10:00:00+00:00,-0.020764849201884178 -2024-12-27 11:00:00+00:00,-0.02839185640440471 -2024-12-27 12:00:00+00:00,-0.023457968300096194 -2024-12-27 13:00:00+00:00,-0.01953553375411981 -2024-12-27 14:00:00+00:00,-0.015450888813458928 -2024-12-27 15:00:00+00:00,-0.028036074268946116 -2024-12-27 16:00:00+00:00,-0.02469124951175511 -2024-12-27 17:00:00+00:00,-0.015756651333271823 -2024-12-27 18:00:00+00:00,-0.009239264359162613 -2024-12-27 19:00:00+00:00,0.002015686792131842 -2024-12-27 20:00:00+00:00,0.006391892839085603 -2024-12-27 21:00:00+00:00,0.004234310770660353 -2024-12-29 22:00:00+00:00,-0.006509941736324826 -2024-12-29 23:00:00+00:00,-0.0005515312717413873 -2024-12-30 00:00:00+00:00,0.005417683541064075 -2024-12-30 01:00:00+00:00,-0.0008016792608864509 -2024-12-30 02:00:00+00:00,-0.004504829687583173 -2024-12-30 03:00:00+00:00,-0.006171203606703403 -2024-12-30 04:00:00+00:00,-0.0086931642076978 -2024-12-30 05:00:00+00:00,-0.006174869719210524 -2024-12-30 06:00:00+00:00,-0.0034871752396103267 -2024-12-30 07:00:00+00:00,-0.0006347965439866057 -2024-12-30 08:00:00+00:00,0.001279276159418044 -2024-12-30 09:00:00+00:00,0.0005874523473115983 -2024-12-30 10:00:00+00:00,-0.006042370431026282 -2024-12-30 11:00:00+00:00,-0.019478851719618093 -2024-12-30 12:00:00+00:00,-0.03215707242466642 -2024-12-30 13:00:00+00:00,-0.04483465994653631 -2024-12-30 14:00:00+00:00,-0.07423112314175309 -2024-12-30 15:00:00+00:00,-0.08304032943336434 -2024-12-30 16:00:00+00:00,-0.07848623607220995 -2024-12-30 17:00:00+00:00,-0.07818821224208347 -2024-12-30 18:00:00+00:00,-0.08447955697465737 -2024-12-30 19:00:00+00:00,-0.07574388374464494 -2024-12-30 20:00:00+00:00,-0.08212558182137447 -2024-12-30 21:00:00+00:00,-0.07844317157164496 -2024-12-30 22:00:00+00:00,-0.06891374701856068 -2024-12-30 23:00:00+00:00,-0.04999932892537062 -2024-12-31 00:00:00+00:00,-0.05390464658987959 -2024-12-31 01:00:00+00:00,-0.06776483691645152 -2024-12-31 02:00:00+00:00,-0.07421999195561169 -2024-12-31 03:00:00+00:00,-0.06914449568560846 -2024-12-31 04:00:00+00:00,-0.07354287476262211 -2024-12-31 05:00:00+00:00,-0.06956885526848211 -2024-12-31 06:00:00+00:00,-0.05299409272255107 -2024-12-31 07:00:00+00:00,-0.046883195946595624 -2024-12-31 08:00:00+00:00,-0.041354021145903974 -2024-12-31 09:00:00+00:00,-0.0014767906015756838 -2024-12-31 10:00:00+00:00,0.03882440761815065 -2024-12-31 11:00:00+00:00,0.06295885744829088 -2024-12-31 12:00:00+00:00,0.08320975853615437 -2024-12-31 13:00:00+00:00,0.10143454819908404 -2024-12-31 14:00:00+00:00,0.09473902936677261 -2024-12-31 15:00:00+00:00,0.11212595627249153 -2024-12-31 16:00:00+00:00,0.13246364626166834 -2024-12-31 17:00:00+00:00,0.13975342589626416 -2024-12-31 18:00:00+00:00,0.13344185235712686 -2024-12-31 19:00:00+00:00,0.12412025537924218 -2024-12-31 20:00:00+00:00,0.1147770516308835 -2024-12-31 21:00:00+00:00,0.09396985876046726 -2025-01-01 22:00:00+00:00,0.08000026946543289 -2025-01-01 23:00:00+00:00,0.09479795371468334 -2025-01-02 00:00:00+00:00,0.08208989558953117 -2025-01-02 01:00:00+00:00,0.07406358399044696 -2025-01-02 02:00:00+00:00,0.0503336185508339 -2025-01-02 03:00:00+00:00,0.023633740360034544 -2025-01-02 04:00:00+00:00,-0.0037732889385710677 -2025-01-02 05:00:00+00:00,-0.009628937249939518 -2025-01-02 06:00:00+00:00,-0.048298400672590266 -2025-01-02 07:00:00+00:00,-0.07029801360231226 -2025-01-02 08:00:00+00:00,-0.07383495303562376 -2025-01-02 09:00:00+00:00,-0.07182791578174652 -2025-01-02 10:00:00+00:00,-0.04516387648128007 -2025-01-02 11:00:00+00:00,-0.02169854593210872 -2025-01-02 12:00:00+00:00,-0.01392700219389383 -2025-01-02 13:00:00+00:00,-0.02428106501249522 -2025-01-02 14:00:00+00:00,-0.016616021946805448 -2025-01-02 15:00:00+00:00,-0.003126308454707249 -2025-01-02 16:00:00+00:00,0.038011603932935005 -2025-01-02 17:00:00+00:00,0.05594511998423729 -2025-01-02 18:00:00+00:00,0.05992621442489408 -2025-01-02 19:00:00+00:00,0.06668700725989776 -2025-01-02 20:00:00+00:00,0.06759989540196065 -2025-01-02 21:00:00+00:00,0.0582637348529194 -2025-01-02 22:00:00+00:00,0.044136644543713494 -2025-01-02 23:00:00+00:00,0.02515777246475255 -2025-01-03 00:00:00+00:00,0.0018418435166501212 -2025-01-03 01:00:00+00:00,-0.009381244671835237 -2025-01-03 02:00:00+00:00,-0.014712495864574154 -2025-01-03 03:00:00+00:00,-0.018207652590890105 -2025-01-03 04:00:00+00:00,-0.021858883994015366 -2025-01-03 05:00:00+00:00,-0.022686373698753662 -2025-01-03 06:00:00+00:00,-0.030838655189387304 -2025-01-03 07:00:00+00:00,-0.03708547026775688 -2025-01-03 08:00:00+00:00,-0.02717555490642267 -2025-01-03 09:00:00+00:00,-0.024954874023661873 -2025-01-03 10:00:00+00:00,-0.01510492879420889 -2025-01-03 11:00:00+00:00,-0.016590359328046318 -2025-01-03 12:00:00+00:00,-0.022001654416417445 -2025-01-03 13:00:00+00:00,-0.023413294373293075 -2025-01-03 14:00:00+00:00,-0.026402629658794016 -2025-01-03 15:00:00+00:00,-0.01018902220738801 -2025-01-03 16:00:00+00:00,-0.011994593551392247 -2025-01-03 17:00:00+00:00,-0.01488905705333513 -2025-01-03 18:00:00+00:00,-0.01611054876233065 -2025-01-03 19:00:00+00:00,-0.013629995796352738 -2025-01-03 20:00:00+00:00,-0.0026739110624041753 -2025-01-03 21:00:00+00:00,0.0011561456336705172 -2025-01-05 22:00:00+00:00,0.007081005383700856 -2025-01-05 23:00:00+00:00,0.02082060715129395 -2025-01-06 00:00:00+00:00,0.03358521770982231 -2025-01-06 01:00:00+00:00,0.04135542634687268 -2025-01-06 02:00:00+00:00,0.05008852785366922 -2025-01-06 03:00:00+00:00,0.05266287306797775 -2025-01-06 04:00:00+00:00,0.05112204838273235 -2025-01-06 05:00:00+00:00,0.05073141218066046 -2025-01-06 06:00:00+00:00,0.03896882168422193 -2025-01-06 07:00:00+00:00,0.029604597749107814 -2025-01-06 08:00:00+00:00,0.021528860098028582 -2025-01-06 09:00:00+00:00,0.019038414376255905 -2025-01-06 10:00:00+00:00,0.026007107384465517 -2025-01-06 11:00:00+00:00,-0.016722259768715858 -2025-01-06 12:00:00+00:00,-0.0700714989221434 -2025-01-06 13:00:00+00:00,-0.11180446639602643 -2025-01-06 14:00:00+00:00,-0.08924994115159524 -2025-01-06 15:00:00+00:00,-0.05533232449277162 -2025-01-06 16:00:00+00:00,-0.030686326568312983 -2025-01-06 17:00:00+00:00,-0.015945438108541002 -2025-01-06 18:00:00+00:00,-0.0043202193907142875 -2025-01-06 19:00:00+00:00,0.0037315087512688784 -2025-01-06 20:00:00+00:00,0.013580088940315751 -2025-01-06 21:00:00+00:00,0.020306246063012207 -2025-01-06 22:00:00+00:00,0.021868473377990114 -2025-01-06 23:00:00+00:00,0.028741514598980777 -2025-01-07 00:00:00+00:00,0.05440806547574395 -2025-01-07 01:00:00+00:00,0.0804289785626704 -2025-01-07 02:00:00+00:00,0.08987220419254953 -2025-01-07 03:00:00+00:00,0.08037541741357812 -2025-01-07 04:00:00+00:00,0.06666107454590289 -2025-01-07 05:00:00+00:00,0.03944688184811673 -2025-01-07 06:00:00+00:00,0.012191711023600227 -2025-01-07 07:00:00+00:00,-0.02351609060868065 -2025-01-07 08:00:00+00:00,-0.05008811547512569 -2025-01-07 09:00:00+00:00,-0.05385539208398783 -2025-01-07 10:00:00+00:00,-0.045433931314118256 -2025-01-07 11:00:00+00:00,-0.04081499336415101 -2025-01-07 12:00:00+00:00,-0.03464417930016449 -2025-01-07 13:00:00+00:00,-0.03412696891207813 -2025-01-07 14:00:00+00:00,-0.026764196998932663 -2025-01-07 15:00:00+00:00,-0.010075043633088344 -2025-01-07 16:00:00+00:00,-0.006516421513488198 -2025-01-07 17:00:00+00:00,-0.013082535530525977 -2025-01-07 18:00:00+00:00,-0.007751667848751621 -2025-01-07 19:00:00+00:00,-0.008436044204961787 -2025-01-07 20:00:00+00:00,-0.002879999843348982 -2025-01-07 21:00:00+00:00,0.012429222129522521 -2025-01-07 22:00:00+00:00,0.018980797414289215 -2025-01-07 23:00:00+00:00,0.033568794651889486 -2025-01-08 00:00:00+00:00,0.036908753840263514 -2025-01-08 01:00:00+00:00,0.023749708404828623 -2025-01-08 02:00:00+00:00,0.021944924086295725 -2025-01-08 03:00:00+00:00,0.024876292297458344 -2025-01-08 04:00:00+00:00,0.02641767574396725 -2025-01-08 05:00:00+00:00,0.021841417469041863 -2025-01-08 06:00:00+00:00,0.00908979976262081 -2025-01-08 07:00:00+00:00,0.0034765833413309133 -2025-01-08 08:00:00+00:00,0.007346415917759738 -2025-01-08 09:00:00+00:00,0.00309199985417255 -2025-01-08 10:00:00+00:00,0.009660583662044267 -2025-01-08 11:00:00+00:00,0.015179793004759995 -2025-01-08 12:00:00+00:00,0.025397122949628384 -2025-01-08 13:00:00+00:00,0.010906959911961611 -2025-01-08 14:00:00+00:00,0.008468776862342375 -2025-01-08 15:00:00+00:00,0.006673109892470719 -2025-01-08 16:00:00+00:00,0.0009556632128432108 -2025-01-08 17:00:00+00:00,0.0006081451719474884 -2025-01-08 18:00:00+00:00,0.003707043416871475 -2025-01-08 19:00:00+00:00,0.0045832243411191576 -2025-01-08 20:00:00+00:00,-0.0032015238486672315 -2025-01-08 21:00:00+00:00,-0.009617621950992028 -2025-01-08 22:00:00+00:00,-0.016859778965372746 -2025-01-08 23:00:00+00:00,-0.029434669450987216 -2025-01-09 00:00:00+00:00,-0.03224510307957895 -2025-01-09 01:00:00+00:00,-0.043009700327016814 -2025-01-09 02:00:00+00:00,-0.049737373490550435 -2025-01-09 03:00:00+00:00,-0.059467603966134805 -2025-01-09 04:00:00+00:00,-0.06603074693382015 -2025-01-09 05:00:00+00:00,-0.058882363747967036 -2025-01-09 06:00:00+00:00,-0.046060728726898204 -2025-01-09 07:00:00+00:00,-0.03293070082170151 -2025-01-09 08:00:00+00:00,-0.026857657299086707 -2025-01-09 09:00:00+00:00,-0.02501821616718647 -2025-01-09 10:00:00+00:00,-0.028424426516337944 -2025-01-09 11:00:00+00:00,-0.03442844174923032 -2025-01-09 12:00:00+00:00,-0.04664527875062498 -2025-01-09 13:00:00+00:00,-0.05728694414302204 -2025-01-09 14:00:00+00:00,-0.05036230197838955 -2025-01-09 15:00:00+00:00,-0.03318619517471638 -2025-01-09 16:00:00+00:00,-0.017620826799721323 -2025-01-09 17:00:00+00:00,-0.0003946851226659803 -2025-01-09 18:00:00+00:00,0.008929248200301894 -2025-01-09 19:00:00+00:00,0.017194521666805386 -2025-01-09 20:00:00+00:00,0.02253688397223333 -2025-01-09 21:00:00+00:00,0.024822353317469875 -2025-01-09 22:00:00+00:00,0.026610879728657742 -2025-01-09 23:00:00+00:00,0.020913579828589966 -2025-01-10 00:00:00+00:00,0.01403000547224112 -2025-01-10 01:00:00+00:00,0.017134047592723637 -2025-01-10 02:00:00+00:00,0.026806904561729985 -2025-01-10 03:00:00+00:00,0.029562705048663603 -2025-01-10 04:00:00+00:00,0.03964127100838533 -2025-01-10 05:00:00+00:00,0.04558607563918163 -2025-01-10 06:00:00+00:00,0.04131298637229534 -2025-01-10 07:00:00+00:00,0.040274192820258695 -2025-01-10 08:00:00+00:00,0.001275397856246585 -2025-01-10 09:00:00+00:00,-0.016780499106665084 -2025-01-10 10:00:00+00:00,-0.01817232067451681 -2025-01-10 11:00:00+00:00,-0.02374692298228124 -2025-01-10 12:00:00+00:00,-0.026172355893832426 -2025-01-10 13:00:00+00:00,0.009109285603337063 -2025-01-10 14:00:00+00:00,-0.006533612107790493 -2025-01-10 15:00:00+00:00,-0.04241110360313993 -2025-01-10 16:00:00+00:00,-0.0542131988196588 -2025-01-10 17:00:00+00:00,-0.05988333878721512 -2025-01-10 18:00:00+00:00,-0.045641036016285455 -2025-01-10 19:00:00+00:00,-0.03538736042405094 -2025-01-10 20:00:00+00:00,-0.030324156973856944 -2025-01-10 21:00:00+00:00,-0.029923083122397026 -2025-01-12 22:00:00+00:00,-0.028504088484861898 -2025-01-12 23:00:00+00:00,-0.013629149851939762 -2025-01-13 00:00:00+00:00,-0.010533378945412966 -2025-01-13 01:00:00+00:00,-0.029445449581159633 -2025-01-13 02:00:00+00:00,-0.0346087643192837 -2025-01-13 03:00:00+00:00,-0.041590260538586554 -2025-01-13 04:00:00+00:00,-0.034763973814804006 -2025-01-13 05:00:00+00:00,-0.03640971059299947 -2025-01-13 06:00:00+00:00,-0.026476062314913673 -2025-01-13 07:00:00+00:00,-0.021998065222260832 -2025-01-13 08:00:00+00:00,-0.007850096491766156 -2025-01-13 09:00:00+00:00,-0.028825343678989507 -2025-01-13 10:00:00+00:00,-0.01889376089104708 -2025-01-13 11:00:00+00:00,-0.017764809214327715 -2025-01-13 12:00:00+00:00,-0.03270178263148904 -2025-01-13 13:00:00+00:00,-0.02832451611610426 -2025-01-13 14:00:00+00:00,-0.012644541070361143 -2025-01-13 15:00:00+00:00,0.009900960951788329 -2025-01-13 16:00:00+00:00,0.024568565335260167 -2025-01-13 17:00:00+00:00,0.02243310346967914 -2025-01-13 18:00:00+00:00,0.03075881379996781 -2025-01-13 19:00:00+00:00,0.05694109895066887 -2025-01-13 20:00:00+00:00,0.061351132063108146 -2025-01-13 21:00:00+00:00,0.05059500858482052 -2025-01-13 22:00:00+00:00,0.03390863500735519 -2025-01-13 23:00:00+00:00,0.020046327936965563 -2025-01-14 00:00:00+00:00,0.025865855679420402 -2025-01-14 01:00:00+00:00,0.0225339066806272 -2025-01-14 02:00:00+00:00,0.03618074928625002 -2025-01-14 03:00:00+00:00,0.03484664502466703 -2025-01-14 04:00:00+00:00,0.02819761737731212 -2025-01-14 05:00:00+00:00,0.02909531585516708 -2025-01-14 06:00:00+00:00,0.02222915633549955 -2025-01-14 07:00:00+00:00,0.01986813998005422 -2025-01-14 08:00:00+00:00,0.02845037059064968 -2025-01-14 09:00:00+00:00,0.04822701998420101 -2025-01-14 10:00:00+00:00,0.05128201743311059 -2025-01-14 11:00:00+00:00,0.05742761033833477 -2025-01-14 12:00:00+00:00,0.053251009518963326 -2025-01-14 13:00:00+00:00,0.04231932615839788 -2025-01-14 14:00:00+00:00,0.03496932186864597 -2025-01-14 15:00:00+00:00,0.037955596829637436 -2025-01-14 16:00:00+00:00,0.03651984756960827 -2025-01-14 17:00:00+00:00,0.04468511420617516 -2025-01-14 18:00:00+00:00,0.038810023292217444 -2025-01-14 19:00:00+00:00,0.027991841190410358 -2025-01-14 20:00:00+00:00,0.02172631155699245 -2025-01-14 21:00:00+00:00,0.015274708530548936 -2025-01-14 22:00:00+00:00,0.008307873545124717 -2025-01-14 23:00:00+00:00,0.008384321847225498 -2025-01-15 00:00:00+00:00,0.002258514357352054 -2025-01-15 01:00:00+00:00,-0.007247316573829182 -2025-01-15 02:00:00+00:00,-0.010698731592450827 -2025-01-15 03:00:00+00:00,-0.01704235025107055 -2025-01-15 04:00:00+00:00,-0.03899488155147687 -2025-01-15 05:00:00+00:00,-0.06961874704000122 -2025-01-15 06:00:00+00:00,-0.08438540283838561 -2025-01-15 07:00:00+00:00,-0.1190067568681511 -2025-01-15 08:00:00+00:00,-0.12027140232599304 -2025-01-15 09:00:00+00:00,-0.1302187757493437 -2025-01-15 10:00:00+00:00,-0.13406869464513607 -2025-01-15 11:00:00+00:00,-0.11450797690425737 -2025-01-15 12:00:00+00:00,-0.09737566590085345 -2025-01-15 13:00:00+00:00,-0.11741367817945542 -2025-01-15 14:00:00+00:00,-0.12962844474169138 -2025-01-15 15:00:00+00:00,-0.12821822977080655 -2025-01-15 16:00:00+00:00,-0.09896834937077104 -2025-01-15 17:00:00+00:00,-0.07642358784664177 -2025-01-15 18:00:00+00:00,-0.059025296107297065 -2025-01-15 19:00:00+00:00,-0.04473678124481073 -2025-01-15 20:00:00+00:00,-0.032023395047237946 -2025-01-15 21:00:00+00:00,-0.018210396018541353 -2025-01-15 22:00:00+00:00,-0.011410719048156881 -2025-01-15 23:00:00+00:00,-0.013676900578740825 -2025-01-16 00:00:00+00:00,-0.013817297521276861 -2025-01-16 01:00:00+00:00,-0.05055795158308912 -2025-01-16 02:00:00+00:00,-0.05663302778231266 -2025-01-16 03:00:00+00:00,-0.051400084169450744 -2025-01-16 04:00:00+00:00,-0.03087654721317079 -2025-01-16 05:00:00+00:00,-0.0029233843500057755 -2025-01-16 06:00:00+00:00,0.017187380251965145 -2025-01-16 07:00:00+00:00,0.03779867023752981 -2025-01-16 08:00:00+00:00,0.033433974218753715 -2025-01-16 09:00:00+00:00,0.018417558275269752 -2025-01-16 10:00:00+00:00,0.010105956073331035 -2025-01-16 11:00:00+00:00,0.014769589594504196 -2025-01-16 12:00:00+00:00,0.04081705596643992 -2025-01-16 13:00:00+00:00,0.04517710410804976 -2025-01-16 14:00:00+00:00,0.062096700455425036 -2025-01-16 15:00:00+00:00,0.0276581847575339 -2025-01-16 16:00:00+00:00,0.008146043678101123 -2025-01-16 17:00:00+00:00,-0.012876328236139045 -2025-01-16 18:00:00+00:00,-0.017376586412029826 -2025-01-16 19:00:00+00:00,-0.020435331647777222 -2025-01-16 20:00:00+00:00,-0.024042903024566797 -2025-01-16 21:00:00+00:00,-0.02775055450183711 -2025-01-16 22:00:00+00:00,-0.022073580313395902 -2025-01-16 23:00:00+00:00,-0.0024654944849370475 -2025-01-17 00:00:00+00:00,0.0013671730447870623 -2025-01-17 01:00:00+00:00,0.008445974914380039 -2025-01-17 02:00:00+00:00,0.02935823211288352 -2025-01-17 03:00:00+00:00,0.04443997094733709 -2025-01-17 04:00:00+00:00,0.05057193766949675 -2025-01-17 05:00:00+00:00,0.06552716478333409 -2025-01-17 06:00:00+00:00,0.07901663513207574 -2025-01-17 07:00:00+00:00,0.08374403695987503 -2025-01-17 08:00:00+00:00,0.09000752283950858 -2025-01-17 09:00:00+00:00,0.09306270197540278 -2025-01-17 10:00:00+00:00,0.09437288697655849 -2025-01-17 11:00:00+00:00,0.08658362917641446 -2025-01-17 12:00:00+00:00,0.08000285577482867 -2025-01-17 13:00:00+00:00,0.07057692714151322 -2025-01-17 14:00:00+00:00,0.08478131587044999 -2025-01-17 15:00:00+00:00,0.0939050322757273 -2025-01-17 16:00:00+00:00,0.10795881045055394 -2025-01-17 17:00:00+00:00,0.10822927529923106 -2025-01-17 18:00:00+00:00,0.09819578315300032 -2025-01-17 19:00:00+00:00,0.08398448214667095 -2025-01-17 20:00:00+00:00,0.07045233328725177 -2025-01-17 21:00:00+00:00,0.0670844099113099 -2025-01-19 22:00:00+00:00,0.06175076536317775 -2025-01-19 23:00:00+00:00,0.053983729901965594 -2025-01-20 00:00:00+00:00,0.024681596058093502 -2025-01-20 01:00:00+00:00,0.0002731725894184467 -2025-01-20 02:00:00+00:00,-0.015449459607735472 -2025-01-20 03:00:00+00:00,-0.03788739072274315 -2025-01-20 04:00:00+00:00,-0.036213065190485325 -2025-01-20 05:00:00+00:00,-0.028365351268647962 -2025-01-20 06:00:00+00:00,-0.014187039652905076 -2025-01-20 07:00:00+00:00,-0.018449753135037703 -2025-01-20 08:00:00+00:00,-0.010392899069990136 -2025-01-20 09:00:00+00:00,0.0026257016185079612 -2025-01-20 10:00:00+00:00,0.01589598733034636 -2025-01-20 11:00:00+00:00,0.020487300558358262 -2025-01-20 12:00:00+00:00,0.023691024184427367 -2025-01-20 13:00:00+00:00,-0.01797582497155395 -2025-01-20 14:00:00+00:00,-0.05503662092980613 -2025-01-20 15:00:00+00:00,-0.066912004791568 -2025-01-20 16:00:00+00:00,-0.07192691193500284 -2025-01-20 17:00:00+00:00,-0.06251469457983583 -2025-01-20 18:00:00+00:00,-0.06176915999953127 -2025-01-20 19:00:00+00:00,-0.06163152490289817 -2025-01-20 20:00:00+00:00,-0.0603376651687696 -2025-01-20 21:00:00+00:00,-0.053973627277181274 -2025-01-20 22:00:00+00:00,-0.04642919109708778 -2025-01-20 23:00:00+00:00,-0.06243001602632425 -2025-01-21 00:00:00+00:00,-0.021114596660753188 -2025-01-21 01:00:00+00:00,-0.02391353140959722 -2025-01-21 02:00:00+00:00,-0.049566388325507416 -2025-01-21 03:00:00+00:00,-0.05911268455441113 -2025-01-21 04:00:00+00:00,-0.06903281169668737 -2025-01-21 05:00:00+00:00,-0.054833526338041394 -2025-01-21 06:00:00+00:00,-0.02856110502303677 -2025-01-21 07:00:00+00:00,0.0007754936202506169 -2025-01-21 08:00:00+00:00,0.02474942902216329 -2025-01-21 09:00:00+00:00,0.04953730782089977 -2025-01-21 10:00:00+00:00,0.06889196932951439 -2025-01-21 11:00:00+00:00,0.0738416531997481 -2025-01-21 12:00:00+00:00,0.06805845220900276 -2025-01-21 13:00:00+00:00,0.04050752890212933 -2025-01-21 14:00:00+00:00,0.027532195498898432 -2025-01-21 15:00:00+00:00,0.002420537756704748 -2025-01-21 16:00:00+00:00,-0.00256654244224213 -2025-01-21 17:00:00+00:00,3.0487242369724166e-05 -2025-01-21 18:00:00+00:00,-0.00207249891806216 -2025-01-21 19:00:00+00:00,0.0001411800456526044 -2025-01-21 20:00:00+00:00,-0.00016131851098726002 -2025-01-21 21:00:00+00:00,-4.633566091779423e-05 -2025-01-21 22:00:00+00:00,-0.0017177707778890522 -2025-01-21 23:00:00+00:00,0.014281211968464713 -2025-01-22 00:00:00+00:00,0.004108359039149571 -2025-01-22 01:00:00+00:00,0.014431488896160659 -2025-01-22 02:00:00+00:00,0.024008252464008457 -2025-01-22 03:00:00+00:00,0.040601484307564786 -2025-01-22 04:00:00+00:00,0.04097427845109071 -2025-01-22 05:00:00+00:00,0.041661217526224995 -2025-01-22 06:00:00+00:00,0.04356280968382792 -2025-01-22 07:00:00+00:00,0.052663786840520865 -2025-01-22 08:00:00+00:00,0.0346646947398499 -2025-01-22 09:00:00+00:00,0.01815801375666197 -2025-01-22 10:00:00+00:00,0.012600412445625007 -2025-01-22 11:00:00+00:00,0.014997731539270254 -2025-01-22 12:00:00+00:00,0.011627454144220235 -2025-01-22 13:00:00+00:00,0.013407717812562545 -2025-01-22 14:00:00+00:00,0.030417713698017476 -2025-01-22 15:00:00+00:00,0.054736037197417514 -2025-01-22 16:00:00+00:00,0.08057625839749305 -2025-01-22 17:00:00+00:00,0.09147316454723907 -2025-01-22 18:00:00+00:00,0.09011818774583877 -2025-01-22 19:00:00+00:00,0.0797370650005362 -2025-01-22 20:00:00+00:00,0.06948548897562998 -2025-01-22 21:00:00+00:00,0.05650326020474947 -2025-01-22 22:00:00+00:00,0.037766406924174545 -2025-01-22 23:00:00+00:00,0.022572937070103716 -2025-01-23 00:00:00+00:00,0.007026891288622161 -2025-01-23 01:00:00+00:00,0.005588136177576725 -2025-01-23 02:00:00+00:00,-0.0012409137123786107 -2025-01-23 03:00:00+00:00,-0.006748076429754807 -2025-01-23 04:00:00+00:00,-0.006081035633982768 -2025-01-23 05:00:00+00:00,9.402809843100934e-05 -2025-01-23 06:00:00+00:00,-0.003685128536949356 -2025-01-23 07:00:00+00:00,-0.007625663793401155 -2025-01-23 08:00:00+00:00,-0.019101517901352977 -2025-01-23 09:00:00+00:00,-0.03395325012165104 -2025-01-23 10:00:00+00:00,-0.041513411720173976 -2025-01-23 11:00:00+00:00,-0.03654575782135183 -2025-01-23 12:00:00+00:00,-0.04234633416769579 -2025-01-23 13:00:00+00:00,-0.057431249493611836 -2025-01-23 14:00:00+00:00,-0.062416584004467576 -2025-01-23 15:00:00+00:00,-0.06845385241413231 -2025-01-23 16:00:00+00:00,-0.08016626793800748 -2025-01-23 17:00:00+00:00,-0.08953364330550034 -2025-01-23 18:00:00+00:00,-0.08601470683312269 -2025-01-23 19:00:00+00:00,-0.09214861383894433 -2025-01-23 20:00:00+00:00,-0.08044389630125605 -2025-01-23 21:00:00+00:00,-0.06251956134501163 -2025-01-23 22:00:00+00:00,-0.05042849214952291 -2025-01-23 23:00:00+00:00,-0.0330674837712549 -2025-01-24 00:00:00+00:00,-0.013301922535248333 -2025-01-24 01:00:00+00:00,0.004476051350275227 -2025-01-24 02:00:00+00:00,-0.005269521139330144 -2025-01-24 03:00:00+00:00,-0.04220952682501679 -2025-01-24 04:00:00+00:00,-0.07884557688973759 -2025-01-24 05:00:00+00:00,-0.08919544456325958 -2025-01-24 06:00:00+00:00,-0.08947136908321936 -2025-01-24 07:00:00+00:00,-0.08257657679344468 -2025-01-24 08:00:00+00:00,-0.07282835207787608 -2025-01-24 09:00:00+00:00,-0.048426422289491095 -2025-01-24 10:00:00+00:00,-0.008350530262495381 -2025-01-24 11:00:00+00:00,0.030852301090460776 -2025-01-24 12:00:00+00:00,0.07816770427799496 -2025-01-24 13:00:00+00:00,0.0955538431394134 diff --git a/indicators_directory/USD_JPY_MACD.csv b/indicators_directory/USD_JPY_MACD.csv deleted file mode 100644 index 2d312d6..0000000 --- a/indicators_directory/USD_JPY_MACD.csv +++ /dev/null @@ -1,5001 +0,0 @@ -time,MACD -2024-04-05 03:00:00+00:00,0.0 -2024-04-05 04:00:00+00:00,-0.0035099715099704554 -2024-04-05 05:00:00+00:00,-0.00877265606607125 -2024-04-05 06:00:00+00:00,-0.006573646461134786 -2024-04-05 07:00:00+00:00,0.001286815724625967 -2024-04-05 08:00:00+00:00,0.01333376683055576 -2024-04-05 09:00:00+00:00,0.023098942006640755 -2024-04-05 10:00:00+00:00,0.023945173930854935 -2024-04-05 11:00:00+00:00,0.027366635707039677 -2024-04-05 12:00:00+00:00,0.05223112415609421 -2024-04-05 13:00:00+00:00,0.06768642280812287 -2024-04-05 14:00:00+00:00,0.07192420468300043 -2024-04-05 15:00:00+00:00,0.07968971236633138 -2024-04-05 16:00:00+00:00,0.08406793391463907 -2024-04-05 17:00:00+00:00,0.08693898573835668 -2024-04-05 18:00:00+00:00,0.08556514901061973 -2024-04-05 19:00:00+00:00,0.09109202736914312 -2024-04-05 20:00:00+00:00,0.09286844742356948 -2024-04-07 21:00:00+00:00,0.09208509051555325 -2024-04-07 22:00:00+00:00,0.09680371298915702 -2024-04-07 23:00:00+00:00,0.0982806540953618 -2024-04-08 00:00:00+00:00,0.10071095662479479 -2024-04-08 01:00:00+00:00,0.10689183801818558 -2024-04-08 02:00:00+00:00,0.1098780916680937 -2024-04-08 03:00:00+00:00,0.11096557710126831 -2024-04-08 04:00:00+00:00,0.11246756053640183 -2024-04-08 05:00:00+00:00,0.11188401410481674 -2024-04-08 06:00:00+00:00,0.10775862571418315 -2024-04-08 07:00:00+00:00,0.11207339406098527 -2024-04-08 08:00:00+00:00,0.11720805992743522 -2024-04-08 09:00:00+00:00,0.11718299119112885 -2024-04-08 10:00:00+00:00,0.11423249014487169 -2024-04-08 11:00:00+00:00,0.11580423445167298 -2024-04-08 12:00:00+00:00,0.11260484056725772 -2024-04-08 13:00:00+00:00,0.09764685572255871 -2024-04-08 14:00:00+00:00,0.09071798604969672 -2024-04-08 15:00:00+00:00,0.08218148717722329 -2024-04-08 16:00:00+00:00,0.07838586569963013 -2024-04-08 17:00:00+00:00,0.069572933024034 -2024-04-08 18:00:00+00:00,0.061795587673941554 -2024-04-08 19:00:00+00:00,0.06002364373668456 -2024-04-08 20:00:00+00:00,0.059227691720479925 -2024-04-08 21:00:00+00:00,0.05569550490753272 -2024-04-08 22:00:00+00:00,0.050937290112130995 -2024-04-08 23:00:00+00:00,0.04878270826259268 -2024-04-09 00:00:00+00:00,0.052601395323364386 -2024-04-09 01:00:00+00:00,0.05339835646412894 -2024-04-09 02:00:00+00:00,0.05229741882274652 -2024-04-09 03:00:00+00:00,0.04932320934500467 -2024-04-09 04:00:00+00:00,0.04922292318045152 -2024-04-09 05:00:00+00:00,0.048742950565127785 -2024-04-09 06:00:00+00:00,0.04956641417916785 -2024-04-09 07:00:00+00:00,0.04876922568098507 -2024-04-09 08:00:00+00:00,0.046312519869815105 -2024-04-09 09:00:00+00:00,0.04003091252636182 -2024-04-09 10:00:00+00:00,0.031223033125968414 -2024-04-09 11:00:00+00:00,0.026519161423323112 -2024-04-09 12:00:00+00:00,0.017825026483365036 -2024-04-09 13:00:00+00:00,0.01081024809471387 -2024-04-09 14:00:00+00:00,-0.004142187943074305 -2024-04-09 15:00:00+00:00,-0.009587632839412663 -2024-04-09 16:00:00+00:00,-0.018690615218702078 -2024-04-09 17:00:00+00:00,-0.023774825171500424 -2024-04-09 18:00:00+00:00,-0.023658182539975314 -2024-04-09 19:00:00+00:00,-0.023536503184345747 -2024-04-09 20:00:00+00:00,-0.01974274866714154 -2024-04-09 21:00:00+00:00,-0.018220658960871106 -2024-04-09 22:00:00+00:00,-0.01729912817719992 -2024-04-09 23:00:00+00:00,-0.014305915988529705 -2024-04-10 00:00:00+00:00,-0.016265012809526525 -2024-04-10 01:00:00+00:00,-0.017614561454905697 -2024-04-10 02:00:00+00:00,-0.01575891368187854 -2024-04-10 03:00:00+00:00,-0.014444558148227316 -2024-04-10 04:00:00+00:00,-0.010857019674318735 -2024-04-10 05:00:00+00:00,-0.005688925204111683 -2024-04-10 06:00:00+00:00,-0.003968179676718364 -2024-04-10 07:00:00+00:00,0.0022115289806379224 -2024-04-10 08:00:00+00:00,0.007985243410445264 -2024-04-10 09:00:00+00:00,0.01289644140058499 -2024-04-10 10:00:00+00:00,0.014602976106260712 -2024-04-10 11:00:00+00:00,0.016491537757644892 -2024-04-10 12:00:00+00:00,0.06101970956132163 -2024-04-10 13:00:00+00:00,0.11810565944099949 -2024-04-10 14:00:00+00:00,0.16938262120498848 -2024-04-10 15:00:00+00:00,0.21831605140519628 -2024-04-10 16:00:00+00:00,0.2565594391528805 -2024-04-10 17:00:00+00:00,0.2706753761158325 -2024-04-10 18:00:00+00:00,0.29364740221370766 -2024-04-10 19:00:00+00:00,0.3082192471369751 -2024-04-10 20:00:00+00:00,0.3308015273801175 -2024-04-10 21:00:00+00:00,0.33323719962325526 -2024-04-10 22:00:00+00:00,0.32464706021690404 -2024-04-10 23:00:00+00:00,0.31716877936901255 -2024-04-11 00:00:00+00:00,0.29844170714494567 -2024-04-11 01:00:00+00:00,0.27805506415293735 -2024-04-11 02:00:00+00:00,0.26034980181842116 -2024-04-11 03:00:00+00:00,0.25316362988320407 -2024-04-11 04:00:00+00:00,0.24050023443669488 -2024-04-11 05:00:00+00:00,0.2337411612585356 -2024-04-11 06:00:00+00:00,0.24141720180259085 -2024-04-11 07:00:00+00:00,0.24204752186648193 -2024-04-11 08:00:00+00:00,0.24847814274994562 -2024-04-11 09:00:00+00:00,0.24478158483526613 -2024-04-11 10:00:00+00:00,0.2317568561575456 -2024-04-11 11:00:00+00:00,0.21986845783561648 -2024-04-11 12:00:00+00:00,0.18858417473055056 -2024-04-11 13:00:00+00:00,0.18505849224391113 -2024-04-11 14:00:00+00:00,0.19127559579717968 -2024-04-11 15:00:00+00:00,0.18758500062327244 -2024-04-11 16:00:00+00:00,0.18598598730326898 -2024-04-11 17:00:00+00:00,0.17798692003202632 -2024-04-11 18:00:00+00:00,0.1751160049900875 -2024-04-11 19:00:00+00:00,0.1676004333191372 -2024-04-11 20:00:00+00:00,0.1655457782115093 -2024-04-11 21:00:00+00:00,0.1570238030905955 -2024-04-11 22:00:00+00:00,0.14975417810308045 -2024-04-11 23:00:00+00:00,0.1395599798581202 -2024-04-12 00:00:00+00:00,0.1122732435709679 -2024-04-12 01:00:00+00:00,0.09982610552754068 -2024-04-12 02:00:00+00:00,0.09515867708293513 -2024-04-12 03:00:00+00:00,0.09281059295014416 -2024-04-12 04:00:00+00:00,0.09238618979253488 -2024-04-12 05:00:00+00:00,0.0886076837312828 -2024-04-12 06:00:00+00:00,0.09014181506526597 -2024-04-12 07:00:00+00:00,0.0879233502692216 -2024-04-12 08:00:00+00:00,0.09004935818947502 -2024-04-12 09:00:00+00:00,0.0902899699994748 -2024-04-12 10:00:00+00:00,0.08689683144604032 -2024-04-12 11:00:00+00:00,0.07463272766264595 -2024-04-12 12:00:00+00:00,0.039444239198019204 -2024-04-12 13:00:00+00:00,0.017966714170768228 -2024-04-12 14:00:00+00:00,0.00029666790530313847 -2024-04-12 15:00:00+00:00,0.0019250172084070982 -2024-04-12 16:00:00+00:00,0.001902498659973162 -2024-04-12 17:00:00+00:00,0.003857477020517308 -2024-04-12 18:00:00+00:00,0.01212582215174507 -2024-04-12 19:00:00+00:00,0.02038021423857117 -2024-04-12 20:00:00+00:00,0.03235866713581004 -2024-04-14 21:00:00+00:00,0.031163908954056296 -2024-04-14 22:00:00+00:00,0.037849908567153534 -2024-04-14 23:00:00+00:00,0.04449164719770238 -2024-04-15 00:00:00+00:00,0.06171247778064526 -2024-04-15 01:00:00+00:00,0.08319646210881615 -2024-04-15 02:00:00+00:00,0.11016885482055727 -2024-04-15 03:00:00+00:00,0.12717379093575687 -2024-04-15 04:00:00+00:00,0.1479021734655248 -2024-04-15 05:00:00+00:00,0.16556797546502366 -2024-04-15 06:00:00+00:00,0.18119140466160388 -2024-04-15 07:00:00+00:00,0.1942389186513651 -2024-04-15 08:00:00+00:00,0.1990568977755629 -2024-04-15 09:00:00+00:00,0.20120138970733592 -2024-04-15 10:00:00+00:00,0.20489634618138552 -2024-04-15 11:00:00+00:00,0.20425967280718282 -2024-04-15 12:00:00+00:00,0.22329065893498523 -2024-04-15 13:00:00+00:00,0.24929737844897204 -2024-04-15 14:00:00+00:00,0.2645983993964194 -2024-04-15 15:00:00+00:00,0.26766787849314255 -2024-04-15 16:00:00+00:00,0.270372822190069 -2024-04-15 17:00:00+00:00,0.25943939833794616 -2024-04-15 18:00:00+00:00,0.2505492298117815 -2024-04-15 19:00:00+00:00,0.24224440569796002 -2024-04-15 20:00:00+00:00,0.23664667278032425 -2024-04-15 21:00:00+00:00,0.22629350114650038 -2024-04-15 22:00:00+00:00,0.2112955062636388 -2024-04-15 23:00:00+00:00,0.19992903726691225 -2024-04-16 00:00:00+00:00,0.19504728477929234 -2024-04-16 01:00:00+00:00,0.19474337858778767 -2024-04-16 02:00:00+00:00,0.18877600617463486 -2024-04-16 03:00:00+00:00,0.18466167159257907 -2024-04-16 04:00:00+00:00,0.172792473027215 -2024-04-16 05:00:00+00:00,0.1675867764528789 -2024-04-16 06:00:00+00:00,0.1745214953595564 -2024-04-16 07:00:00+00:00,0.16855272532509957 -2024-04-16 08:00:00+00:00,0.17112929894111062 -2024-04-16 09:00:00+00:00,0.17574479907972318 -2024-04-16 10:00:00+00:00,0.18015016472583056 -2024-04-16 11:00:00+00:00,0.18322388237191944 -2024-04-16 12:00:00+00:00,0.18561811833541242 -2024-04-16 13:00:00+00:00,0.17931595997819727 -2024-04-16 14:00:00+00:00,0.17393032639373018 -2024-04-16 15:00:00+00:00,0.16645234764359884 -2024-04-16 16:00:00+00:00,0.1594145882508542 -2024-04-16 17:00:00+00:00,0.1614970891453993 -2024-04-16 18:00:00+00:00,0.1570603352690796 -2024-04-16 19:00:00+00:00,0.15051803140278253 -2024-04-16 20:00:00+00:00,0.15157442545168465 -2024-04-16 21:00:00+00:00,0.1458086438609314 -2024-04-16 22:00:00+00:00,0.1409060099210535 -2024-04-16 23:00:00+00:00,0.1364164134163559 -2024-04-17 00:00:00+00:00,0.13102523195632898 -2024-04-17 01:00:00+00:00,0.12459025808357183 -2024-04-17 02:00:00+00:00,0.1179692357264912 -2024-04-17 03:00:00+00:00,0.10880496766068859 -2024-04-17 04:00:00+00:00,0.10038504290645278 -2024-04-17 05:00:00+00:00,0.09025108427667305 -2024-04-17 06:00:00+00:00,0.06955637498808187 -2024-04-17 07:00:00+00:00,0.06355845318094566 -2024-04-17 08:00:00+00:00,0.05438562608782149 -2024-04-17 09:00:00+00:00,0.0491318655323596 -2024-04-17 10:00:00+00:00,0.04700847061818081 -2024-04-17 11:00:00+00:00,0.04496867721681497 -2024-04-17 12:00:00+00:00,0.042698540765996995 -2024-04-17 13:00:00+00:00,0.04250742484848047 -2024-04-17 14:00:00+00:00,0.04187327505729854 -2024-04-17 15:00:00+00:00,0.03786790670176288 -2024-04-17 16:00:00+00:00,0.007175747372457408 -2024-04-17 17:00:00+00:00,-0.013921252072151447 -2024-04-17 18:00:00+00:00,-0.027260254462390776 -2024-04-17 19:00:00+00:00,-0.03875650699646371 -2024-04-17 20:00:00+00:00,-0.042455775996131706 -2024-04-17 21:00:00+00:00,-0.04997565027224482 -2024-04-17 22:00:00+00:00,-0.05944591473050309 -2024-04-17 23:00:00+00:00,-0.0614018664886089 -2024-04-18 00:00:00+00:00,-0.06654226326219259 -2024-04-18 01:00:00+00:00,-0.07483696428693065 -2024-04-18 02:00:00+00:00,-0.08758253387287596 -2024-04-18 03:00:00+00:00,-0.08819421905988634 -2024-04-18 04:00:00+00:00,-0.08328093287806837 -2024-04-18 05:00:00+00:00,-0.07912059831537022 -2024-04-18 06:00:00+00:00,-0.07583691057175201 -2024-04-18 07:00:00+00:00,-0.07279884284591276 -2024-04-18 08:00:00+00:00,-0.06272857505106799 -2024-04-18 09:00:00+00:00,-0.049018495439156595 -2024-04-18 10:00:00+00:00,-0.035484746507421505 -2024-04-18 11:00:00+00:00,-0.030380131287301992 -2024-04-18 12:00:00+00:00,-0.026194120715587133 -2024-04-18 13:00:00+00:00,-0.010331074020200504 -2024-04-18 14:00:00+00:00,0.011069672809753683 -2024-04-18 15:00:00+00:00,0.026035275906650668 -2024-04-18 16:00:00+00:00,0.03794239769587193 -2024-04-18 17:00:00+00:00,0.04827484470797572 -2024-04-18 18:00:00+00:00,0.05230995453558762 -2024-04-18 19:00:00+00:00,0.05678977044570388 -2024-04-18 20:00:00+00:00,0.0625242157263699 -2024-04-18 21:00:00+00:00,0.06223611199209245 -2024-04-18 22:00:00+00:00,0.06457180152227693 -2024-04-18 23:00:00+00:00,0.06311319016822381 -2024-04-19 00:00:00+00:00,0.06236797397724558 -2024-04-19 01:00:00+00:00,0.02988248580507502 -2024-04-19 02:00:00+00:00,-0.02279283952415767 -2024-04-19 03:00:00+00:00,-0.031096381140827134 -2024-04-19 04:00:00+00:00,-0.03629036524347384 -2024-04-19 05:00:00+00:00,-0.03882935147495914 -2024-04-19 06:00:00+00:00,-0.03351568710959896 -2024-04-19 07:00:00+00:00,-0.024822466457379733 -2024-04-19 08:00:00+00:00,-0.022674530431231688 -2024-04-19 09:00:00+00:00,-0.014830141459952983 -2024-04-19 10:00:00+00:00,-0.005005276693708538 -2024-04-19 11:00:00+00:00,0.0086524410199047 -2024-04-19 12:00:00+00:00,0.013989371524644412 -2024-04-19 13:00:00+00:00,0.021601047885667413 -2024-04-19 14:00:00+00:00,0.028036394916256313 -2024-04-19 15:00:00+00:00,0.02932863096683036 -2024-04-19 16:00:00+00:00,0.03255954375896408 -2024-04-19 17:00:00+00:00,0.03830958034808418 -2024-04-19 18:00:00+00:00,0.03854895852651907 -2024-04-19 19:00:00+00:00,0.04045104731557103 -2024-04-19 20:00:00+00:00,0.0445914183347611 -2024-04-21 21:00:00+00:00,0.03488269000692412 -2024-04-21 22:00:00+00:00,0.03868488074715515 -2024-04-21 23:00:00+00:00,0.04138249593395926 -2024-04-22 00:00:00+00:00,0.045975983662287945 -2024-04-22 01:00:00+00:00,0.0446634628378888 -2024-04-22 02:00:00+00:00,0.04615748825654009 -2024-04-22 03:00:00+00:00,0.049274944202693405 -2024-04-22 04:00:00+00:00,0.053469247930252095 -2024-04-22 05:00:00+00:00,0.056624679649218024 -2024-04-22 06:00:00+00:00,0.054702300743571186 -2024-04-22 07:00:00+00:00,0.051057105865993435 -2024-04-22 08:00:00+00:00,0.052724749698512596 -2024-04-22 09:00:00+00:00,0.05717974415762228 -2024-04-22 10:00:00+00:00,0.058981466378753566 -2024-04-22 11:00:00+00:00,0.06027932320296259 -2024-04-22 12:00:00+00:00,0.05941263754442616 -2024-04-22 13:00:00+00:00,0.05733859450660361 -2024-04-22 14:00:00+00:00,0.054581568257532354 -2024-04-22 15:00:00+00:00,0.05514992013351616 -2024-04-22 16:00:00+00:00,0.0567217067014667 -2024-04-22 17:00:00+00:00,0.058822431713934975 -2024-04-22 18:00:00+00:00,0.05852160451047439 -2024-04-22 19:00:00+00:00,0.06049079568140314 -2024-04-22 20:00:00+00:00,0.061344255479923504 -2024-04-22 21:00:00+00:00,0.06003748745339976 -2024-04-22 22:00:00+00:00,0.05761152974079664 -2024-04-22 23:00:00+00:00,0.05513408105156259 -2024-04-23 00:00:00+00:00,0.05065022146820297 -2024-04-23 01:00:00+00:00,0.04169391870098593 -2024-04-23 02:00:00+00:00,0.03731283911184846 -2024-04-23 03:00:00+00:00,0.03265743101084695 -2024-04-23 04:00:00+00:00,0.02752105792873749 -2024-04-23 05:00:00+00:00,0.025416821947857215 -2024-04-23 06:00:00+00:00,0.022840376983367605 -2024-04-23 07:00:00+00:00,0.025347830336130528 -2024-04-23 08:00:00+00:00,0.02877848090781754 -2024-04-23 09:00:00+00:00,0.030659720177311556 -2024-04-23 10:00:00+00:00,0.02867311595619526 -2024-04-23 11:00:00+00:00,0.0271089888205438 -2024-04-23 12:00:00+00:00,0.026212775380116682 -2024-04-23 13:00:00+00:00,0.011730411284275988 -2024-04-23 14:00:00+00:00,0.012535050111949886 -2024-04-23 15:00:00+00:00,0.014777601328944456 -2024-04-23 16:00:00+00:00,0.017004356825651712 -2024-04-23 17:00:00+00:00,0.012652050085762312 -2024-04-23 18:00:00+00:00,0.00949680064468339 -2024-04-23 19:00:00+00:00,0.012261242813110584 -2024-04-23 20:00:00+00:00,0.01524465200137115 -2024-04-23 21:00:00+00:00,0.013180432396694641 -2024-04-23 22:00:00+00:00,0.011492734046640862 -2024-04-23 23:00:00+00:00,0.007407013298916354 -2024-04-24 00:00:00+00:00,0.00771128321682113 -2024-04-24 01:00:00+00:00,0.00802133761726509 -2024-04-24 02:00:00+00:00,0.009289655593477164 -2024-04-24 03:00:00+00:00,0.013129053944140878 -2024-04-24 04:00:00+00:00,0.015429106168227236 -2024-04-24 05:00:00+00:00,0.019767561829070246 -2024-04-24 06:00:00+00:00,0.027089513565272227 -2024-04-24 07:00:00+00:00,0.030602843118543888 -2024-04-24 08:00:00+00:00,0.03276738515467059 -2024-04-24 09:00:00+00:00,0.03688185671964561 -2024-04-24 10:00:00+00:00,0.03952559533360045 -2024-04-24 11:00:00+00:00,0.04058806182223407 -2024-04-24 12:00:00+00:00,0.042792694406472265 -2024-04-24 13:00:00+00:00,0.04682432740659692 -2024-04-24 14:00:00+00:00,0.05096507317699661 -2024-04-24 15:00:00+00:00,0.06272246575292684 -2024-04-24 16:00:00+00:00,0.07097999593918303 -2024-04-24 17:00:00+00:00,0.09060079598893367 -2024-04-24 18:00:00+00:00,0.10318574422177562 -2024-04-24 19:00:00+00:00,0.11442254703410981 -2024-04-24 20:00:00+00:00,0.12559186494081587 -2024-04-24 21:00:00+00:00,0.12421635201940262 -2024-04-24 22:00:00+00:00,0.1210051512744883 -2024-04-24 23:00:00+00:00,0.12046070452248614 -2024-04-25 00:00:00+00:00,0.12703744049147758 -2024-04-25 01:00:00+00:00,0.13225810325360499 -2024-04-25 02:00:00+00:00,0.13819157859995812 -2024-04-25 03:00:00+00:00,0.14333955411518673 -2024-04-25 04:00:00+00:00,0.1559501952839355 -2024-04-25 05:00:00+00:00,0.16963716263512651 -2024-04-25 06:00:00+00:00,0.17890601554404384 -2024-04-25 07:00:00+00:00,0.18117755539529412 -2024-04-25 08:00:00+00:00,0.18448229396369697 -2024-04-25 09:00:00+00:00,0.18193777524703592 -2024-04-25 10:00:00+00:00,0.17069135431233917 -2024-04-25 11:00:00+00:00,0.16089212019755905 -2024-04-25 12:00:00+00:00,0.1611133228689141 -2024-04-25 13:00:00+00:00,0.1572169623080697 -2024-04-25 14:00:00+00:00,0.14575152924976464 -2024-04-25 15:00:00+00:00,0.1311988221043805 -2024-04-25 16:00:00+00:00,0.11782335272152977 -2024-04-25 17:00:00+00:00,0.10998988408570654 -2024-04-25 18:00:00+00:00,0.10555067208798619 -2024-04-25 19:00:00+00:00,0.1034225068807757 -2024-04-25 20:00:00+00:00,0.10161357394770221 -2024-04-25 21:00:00+00:00,0.0953688136845301 -2024-04-25 22:00:00+00:00,0.08715575292350763 -2024-04-25 23:00:00+00:00,0.08371639474412973 -2024-04-26 00:00:00+00:00,0.08118451702813445 -2024-04-26 01:00:00+00:00,0.07492524511923193 -2024-04-26 02:00:00+00:00,0.06709333413513718 -2024-04-26 03:00:00+00:00,0.09018692713468113 -2024-04-26 04:00:00+00:00,0.12767407917553442 -2024-04-26 05:00:00+00:00,0.14809080423117393 -2024-04-26 06:00:00+00:00,0.18425671925504616 -2024-04-26 07:00:00+00:00,0.2362584279574378 -2024-04-26 08:00:00+00:00,0.26290069628029755 -2024-04-26 09:00:00+00:00,0.29114861936770353 -2024-04-26 10:00:00+00:00,0.32017307626674096 -2024-04-26 11:00:00+00:00,0.3392643393498531 -2024-04-26 12:00:00+00:00,0.351711746730075 -2024-04-26 13:00:00+00:00,0.365353313803098 -2024-04-26 14:00:00+00:00,0.39836191121011666 -2024-04-26 15:00:00+00:00,0.4480824714440246 -2024-04-26 16:00:00+00:00,0.4843241357703505 -2024-04-26 17:00:00+00:00,0.5113473869004395 -2024-04-26 18:00:00+00:00,0.5284471148581815 -2024-04-26 19:00:00+00:00,0.5489047693566249 -2024-04-26 20:00:00+00:00,0.5949738175322352 -2024-04-28 21:00:00+00:00,0.5915011479543466 -2024-04-28 22:00:00+00:00,0.6054128609864335 -2024-04-28 23:00:00+00:00,0.6074187573963457 -2024-04-29 00:00:00+00:00,0.6015895450976245 -2024-04-29 01:00:00+00:00,0.6681040990504812 -2024-04-29 02:00:00+00:00,0.7284775632693936 -2024-04-29 03:00:00+00:00,0.7697903621500757 -2024-04-29 04:00:00+00:00,0.5469694454651517 -2024-04-29 05:00:00+00:00,0.40509015808561344 -2024-04-29 06:00:00+00:00,0.3081409710152059 -2024-04-29 07:00:00+00:00,0.11124755127613639 -2024-04-29 08:00:00+00:00,-0.01915324824906861 -2024-04-29 09:00:00+00:00,-0.1323487094355471 -2024-04-29 10:00:00+00:00,-0.2076403247874623 -2024-04-29 11:00:00+00:00,-0.2367418430855821 -2024-04-29 12:00:00+00:00,-0.24176734211587814 -2024-04-29 13:00:00+00:00,-0.2197358403063845 -2024-04-29 14:00:00+00:00,-0.2023637424179583 -2024-04-29 15:00:00+00:00,-0.18357519002768186 -2024-04-29 16:00:00+00:00,-0.23752062402360252 -2024-04-29 17:00:00+00:00,-0.25546054383207206 -2024-04-29 18:00:00+00:00,-0.2892600759460606 -2024-04-29 19:00:00+00:00,-0.2942567455402241 -2024-04-29 20:00:00+00:00,-0.2697697288913332 -2024-04-29 21:00:00+00:00,-0.2522169981391471 -2024-04-29 22:00:00+00:00,-0.23830284158813697 -2024-04-29 23:00:00+00:00,-0.21918146148021833 -2024-04-30 00:00:00+00:00,-0.16333215841584092 -2024-04-30 01:00:00+00:00,-0.11444359153162509 -2024-04-30 02:00:00+00:00,-0.08576515774447557 -2024-04-30 03:00:00+00:00,-0.06080324913349955 -2024-04-30 04:00:00+00:00,-0.03895784211198361 -2024-04-30 05:00:00+00:00,-0.016133573452862038 -2024-04-30 06:00:00+00:00,0.0022516350231285287 -2024-04-30 07:00:00+00:00,0.01958190793141057 -2024-04-30 08:00:00+00:00,0.03868019117371091 -2024-04-30 09:00:00+00:00,0.05216539666358244 -2024-04-30 10:00:00+00:00,0.06189693490591708 -2024-04-30 11:00:00+00:00,0.07160800407123702 -2024-04-30 12:00:00+00:00,0.1181268416899286 -2024-04-30 13:00:00+00:00,0.15115297553151663 -2024-04-30 14:00:00+00:00,0.1679665792474907 -2024-04-30 15:00:00+00:00,0.19597761829274418 -2024-04-30 16:00:00+00:00,0.20914891534201274 -2024-04-30 17:00:00+00:00,0.22522159633112437 -2024-04-30 18:00:00+00:00,0.24577743931311602 -2024-04-30 19:00:00+00:00,0.25987928279687367 -2024-04-30 20:00:00+00:00,0.27626244469669814 -2024-04-30 21:00:00+00:00,0.27837161775559593 -2024-04-30 22:00:00+00:00,0.2755754243657407 -2024-04-30 23:00:00+00:00,0.2735148691530185 -2024-05-01 00:00:00+00:00,0.2689430396370369 -2024-05-01 01:00:00+00:00,0.2670825687667957 -2024-05-01 02:00:00+00:00,0.26872370903927845 -2024-05-01 03:00:00+00:00,0.2696593749616909 -2024-05-01 04:00:00+00:00,0.26277239669619235 -2024-05-01 05:00:00+00:00,0.2589290673235496 -2024-05-01 06:00:00+00:00,0.25735461761766487 -2024-05-01 07:00:00+00:00,0.24600877106610142 -2024-05-01 08:00:00+00:00,0.24005964603492203 -2024-05-01 09:00:00+00:00,0.22979113330640644 -2024-05-01 10:00:00+00:00,0.21848912323923741 -2024-05-01 11:00:00+00:00,0.20451188887622607 -2024-05-01 12:00:00+00:00,0.18365209683821604 -2024-05-01 13:00:00+00:00,0.1524525207761087 -2024-05-01 14:00:00+00:00,0.12970125724280024 -2024-05-01 15:00:00+00:00,0.1090419908592537 -2024-05-01 16:00:00+00:00,0.08906060562017615 -2024-05-01 17:00:00+00:00,0.07462435672212564 -2024-05-01 18:00:00+00:00,0.020503371326498154 -2024-05-01 19:00:00+00:00,0.006744726115414323 -2024-05-01 20:00:00+00:00,-0.24629973638462843 -2024-05-01 21:00:00+00:00,-0.45451064305692057 -2024-05-01 22:00:00+00:00,-0.5204022577653404 -2024-05-01 23:00:00+00:00,-0.5429623290295638 -2024-05-02 00:00:00+00:00,-0.5311565463559589 -2024-05-02 01:00:00+00:00,-0.5108282944451901 -2024-05-02 02:00:00+00:00,-0.5095018487094762 -2024-05-02 03:00:00+00:00,-0.49316344423039027 -2024-05-02 04:00:00+00:00,-0.4839163929236463 -2024-05-02 05:00:00+00:00,-0.48160697787793083 -2024-05-02 06:00:00+00:00,-0.4952094934076001 -2024-05-02 07:00:00+00:00,-0.4951179087837545 -2024-05-02 08:00:00+00:00,-0.5176431013572653 -2024-05-02 09:00:00+00:00,-0.5198193280019439 -2024-05-02 10:00:00+00:00,-0.529321279612418 -2024-05-02 11:00:00+00:00,-0.5589729934996797 -2024-05-02 12:00:00+00:00,-0.5933841882147703 -2024-05-02 13:00:00+00:00,-0.622995418396556 -2024-05-02 14:00:00+00:00,-0.6657393119190544 -2024-05-02 15:00:00+00:00,-0.7140572990159342 -2024-05-02 16:00:00+00:00,-0.7452915362113401 -2024-05-02 17:00:00+00:00,-0.792061476621285 -2024-05-02 18:00:00+00:00,-0.845683948718829 -2024-05-02 19:00:00+00:00,-0.8672094302913536 -2024-05-02 20:00:00+00:00,-0.8360603411496754 -2024-05-02 21:00:00+00:00,-0.7968630736894227 -2024-05-02 22:00:00+00:00,-0.7939266040417579 -2024-05-02 23:00:00+00:00,-0.7935869015651917 -2024-05-03 00:00:00+00:00,-0.7834793067295323 -2024-05-03 01:00:00+00:00,-0.7907228799297741 -2024-05-03 02:00:00+00:00,-0.7719909457711935 -2024-05-03 03:00:00+00:00,-0.7509104737578127 -2024-05-03 04:00:00+00:00,-0.7329367652145038 -2024-05-03 05:00:00+00:00,-0.7045991101994957 -2024-05-03 06:00:00+00:00,-0.651233721111339 -2024-05-03 07:00:00+00:00,-0.6007254109014468 -2024-05-03 08:00:00+00:00,-0.562603795655491 -2024-05-03 09:00:00+00:00,-0.5376526293442225 -2024-05-03 10:00:00+00:00,-0.5083073836092069 -2024-05-03 11:00:00+00:00,-0.4712271211831194 -2024-05-03 12:00:00+00:00,-0.5165776036563159 -2024-05-03 13:00:00+00:00,-0.5206946186577568 -2024-05-03 14:00:00+00:00,-0.4884706888878725 -2024-05-03 15:00:00+00:00,-0.4606887417588723 -2024-05-03 16:00:00+00:00,-0.4320768032189619 -2024-05-03 17:00:00+00:00,-0.40250247184758337 -2024-05-03 18:00:00+00:00,-0.37219207009681554 -2024-05-03 19:00:00+00:00,-0.34787261493485744 -2024-05-03 20:00:00+00:00,-0.3173559749654089 -2024-05-05 21:00:00+00:00,-0.3021950066136583 -2024-05-05 22:00:00+00:00,-0.2543259287697879 -2024-05-05 23:00:00+00:00,-0.18017977457569145 -2024-05-06 00:00:00+00:00,-0.13933957086720739 -2024-05-06 01:00:00+00:00,-0.09378853296604461 -2024-05-06 02:00:00+00:00,-0.04147602711225318 -2024-05-06 03:00:00+00:00,0.012665976358505304 -2024-05-06 04:00:00+00:00,0.055897848293056995 -2024-05-06 05:00:00+00:00,0.08865332803330261 -2024-05-06 06:00:00+00:00,0.0943204038636054 -2024-05-06 07:00:00+00:00,0.10677956123649324 -2024-05-06 08:00:00+00:00,0.10966033056013202 -2024-05-06 09:00:00+00:00,0.1145764850950286 -2024-05-06 10:00:00+00:00,0.1195953926640243 -2024-05-06 11:00:00+00:00,0.1174581220395794 -2024-05-06 12:00:00+00:00,0.09593794565816438 -2024-05-06 13:00:00+00:00,0.09936301606410325 -2024-05-06 14:00:00+00:00,0.11176313656943648 -2024-05-06 15:00:00+00:00,0.11470040321526653 -2024-05-06 16:00:00+00:00,0.11960338530855097 -2024-05-06 17:00:00+00:00,0.12224129566300235 -2024-05-06 18:00:00+00:00,0.12323405966537848 -2024-05-06 19:00:00+00:00,0.1246815635456926 -2024-05-06 20:00:00+00:00,0.12128366415225855 -2024-05-06 21:00:00+00:00,0.11747865848329297 -2024-05-06 22:00:00+00:00,0.11770574910181608 -2024-05-06 23:00:00+00:00,0.13943687993852905 -2024-05-07 00:00:00+00:00,0.13046341401357608 -2024-05-07 01:00:00+00:00,0.15545043171897532 -2024-05-07 02:00:00+00:00,0.1884123352577376 -2024-05-07 03:00:00+00:00,0.21232935557719657 -2024-05-07 04:00:00+00:00,0.22282469223117118 -2024-05-07 05:00:00+00:00,0.23361363471241248 -2024-05-07 06:00:00+00:00,0.22392846275653255 -2024-05-07 07:00:00+00:00,0.19512180709017457 -2024-05-07 08:00:00+00:00,0.19322346653001432 -2024-05-07 09:00:00+00:00,0.2020584023699996 -2024-05-07 10:00:00+00:00,0.19997684609228372 -2024-05-07 11:00:00+00:00,0.20005566272834585 -2024-05-07 12:00:00+00:00,0.1887435599477385 -2024-05-07 13:00:00+00:00,0.17709170096065918 -2024-05-07 14:00:00+00:00,0.16730073792567168 -2024-05-07 15:00:00+00:00,0.17136422001587448 -2024-05-07 16:00:00+00:00,0.16549527612627912 -2024-05-07 17:00:00+00:00,0.17073761038798807 -2024-05-07 18:00:00+00:00,0.1803977000757584 -2024-05-07 19:00:00+00:00,0.17745449171059136 -2024-05-07 20:00:00+00:00,0.17743397812870398 -2024-05-07 21:00:00+00:00,0.1691736443750358 -2024-05-07 22:00:00+00:00,0.17130388266630803 -2024-05-07 23:00:00+00:00,0.17349362625444087 -2024-05-08 00:00:00+00:00,0.18264520739893442 -2024-05-08 01:00:00+00:00,0.20711843812583197 -2024-05-08 02:00:00+00:00,0.22616591589618906 -2024-05-08 03:00:00+00:00,0.23843199203082577 -2024-05-08 04:00:00+00:00,0.24620248481971885 -2024-05-08 05:00:00+00:00,0.24932520726321172 -2024-05-08 06:00:00+00:00,0.2561099589524076 -2024-05-08 07:00:00+00:00,0.2636124286923405 -2024-05-08 08:00:00+00:00,0.27478259810465033 -2024-05-08 09:00:00+00:00,0.2773713906857438 -2024-05-08 10:00:00+00:00,0.2754409986545454 -2024-05-08 11:00:00+00:00,0.27924549494173334 -2024-05-08 12:00:00+00:00,0.28869636246085406 -2024-05-08 13:00:00+00:00,0.2951242915717387 -2024-05-08 14:00:00+00:00,0.29296811874897344 -2024-05-08 15:00:00+00:00,0.2748575204547876 -2024-05-08 16:00:00+00:00,0.26726821956387425 -2024-05-08 17:00:00+00:00,0.2581168502668163 -2024-05-08 18:00:00+00:00,0.2532704287347656 -2024-05-08 19:00:00+00:00,0.24834208789073386 -2024-05-08 20:00:00+00:00,0.23335444662669147 -2024-05-08 21:00:00+00:00,0.21903245479160205 -2024-05-08 22:00:00+00:00,0.21002197737334427 -2024-05-08 23:00:00+00:00,0.1833383044402126 -2024-05-09 00:00:00+00:00,0.18044553157881182 -2024-05-09 01:00:00+00:00,0.17213415077196714 -2024-05-09 02:00:00+00:00,0.1654157281936932 -2024-05-09 03:00:00+00:00,0.15443786744779686 -2024-05-09 04:00:00+00:00,0.14583198945661024 -2024-05-09 05:00:00+00:00,0.14157573758936337 -2024-05-09 06:00:00+00:00,0.14715758313394645 -2024-05-09 07:00:00+00:00,0.15623558083260036 -2024-05-09 08:00:00+00:00,0.16236523053004248 -2024-05-09 09:00:00+00:00,0.17042275971712684 -2024-05-09 10:00:00+00:00,0.17535190355641816 -2024-05-09 11:00:00+00:00,0.17410434498540894 -2024-05-09 12:00:00+00:00,0.15718270399688095 -2024-05-09 13:00:00+00:00,0.13774628779222553 -2024-05-09 14:00:00+00:00,0.11384885301319514 -2024-05-09 15:00:00+00:00,0.1036403345622432 -2024-05-09 16:00:00+00:00,0.09015342882929644 -2024-05-09 17:00:00+00:00,0.07257646930827377 -2024-05-09 18:00:00+00:00,0.04944265236946421 -2024-05-09 19:00:00+00:00,0.029637608871894372 -2024-05-09 20:00:00+00:00,0.017532374121714156 -2024-05-09 21:00:00+00:00,0.007449556307477678 -2024-05-09 22:00:00+00:00,-0.009788543761288793 -2024-05-09 23:00:00+00:00,-0.020310832490253006 -2024-05-10 00:00:00+00:00,-0.017314781409083935 -2024-05-10 01:00:00+00:00,-0.0025650002895076796 -2024-05-10 02:00:00+00:00,0.014763916545348366 -2024-05-10 03:00:00+00:00,0.025859063164716645 -2024-05-10 04:00:00+00:00,0.02978991520936347 -2024-05-10 05:00:00+00:00,0.02870109655248143 -2024-05-10 06:00:00+00:00,0.031350015307879175 -2024-05-10 07:00:00+00:00,0.03442423922953708 -2024-05-10 08:00:00+00:00,0.038594366356477394 -2024-05-10 09:00:00+00:00,0.04118242189630905 -2024-05-10 10:00:00+00:00,0.0452934919414929 -2024-05-10 11:00:00+00:00,0.04759939021684545 -2024-05-10 12:00:00+00:00,0.05564418926206827 -2024-05-10 13:00:00+00:00,0.04639559376457214 -2024-05-10 14:00:00+00:00,0.05736725719228275 -2024-05-10 15:00:00+00:00,0.06371409028017183 -2024-05-10 16:00:00+00:00,0.06596629181308344 -2024-05-10 17:00:00+00:00,0.06793634951762328 -2024-05-10 18:00:00+00:00,0.06934381524604305 -2024-05-10 19:00:00+00:00,0.06391269790796628 -2024-05-10 20:00:00+00:00,0.058450566684030036 -2024-05-12 21:00:00+00:00,0.04816028647513804 -2024-05-12 22:00:00+00:00,0.0458512602548069 -2024-05-12 23:00:00+00:00,0.04750827663195878 -2024-05-13 00:00:00+00:00,0.05592322363250446 -2024-05-13 01:00:00+00:00,0.054699341953380554 -2024-05-13 02:00:00+00:00,0.04561853047309228 -2024-05-13 03:00:00+00:00,0.039419962726725544 -2024-05-13 04:00:00+00:00,0.03762427617073172 -2024-05-13 05:00:00+00:00,0.03850088327163803 -2024-05-13 06:00:00+00:00,0.039068015521422694 -2024-05-13 07:00:00+00:00,0.04209846938633177 -2024-05-13 08:00:00+00:00,0.04335482532741253 -2024-05-13 09:00:00+00:00,0.04512143097551302 -2024-05-13 10:00:00+00:00,0.044874510261337264 -2024-05-13 11:00:00+00:00,0.044169663431006256 -2024-05-13 12:00:00+00:00,0.033541425447907613 -2024-05-13 13:00:00+00:00,0.03137353044181168 -2024-05-13 14:00:00+00:00,0.03561949839496492 -2024-05-13 15:00:00+00:00,0.05912138783523346 -2024-05-13 16:00:00+00:00,0.08029100049827775 -2024-05-13 17:00:00+00:00,0.09667983092663235 -2024-05-13 18:00:00+00:00,0.10618469999812419 -2024-05-13 19:00:00+00:00,0.11377757804561384 -2024-05-13 20:00:00+00:00,0.11874889186577775 -2024-05-13 21:00:00+00:00,0.12017372301414753 -2024-05-13 22:00:00+00:00,0.1216755283524833 -2024-05-13 23:00:00+00:00,0.12146554075880545 -2024-05-14 00:00:00+00:00,0.1251019830628195 -2024-05-14 01:00:00+00:00,0.1369755263715149 -2024-05-14 02:00:00+00:00,0.14631262695385772 -2024-05-14 03:00:00+00:00,0.14940793223112792 -2024-05-14 04:00:00+00:00,0.14997083030044678 -2024-05-14 05:00:00+00:00,0.14950049881286986 -2024-05-14 06:00:00+00:00,0.14982145848713913 -2024-05-14 07:00:00+00:00,0.14932282052836854 -2024-05-14 08:00:00+00:00,0.1465922885603561 -2024-05-14 09:00:00+00:00,0.1346456633596631 -2024-05-14 10:00:00+00:00,0.12973425428950236 -2024-05-14 11:00:00+00:00,0.12624258901470853 -2024-05-14 12:00:00+00:00,0.1324386622151792 -2024-05-14 13:00:00+00:00,0.11743628466894052 -2024-05-14 14:00:00+00:00,0.10753486311938332 -2024-05-14 15:00:00+00:00,0.10764588768176964 -2024-05-14 16:00:00+00:00,0.10491069737958014 -2024-05-14 17:00:00+00:00,0.10316762010714342 -2024-05-14 18:00:00+00:00,0.0952017604765274 -2024-05-14 19:00:00+00:00,0.08987008400836771 -2024-05-14 20:00:00+00:00,0.08211597755601474 -2024-05-14 21:00:00+00:00,0.07470616791323437 -2024-05-14 22:00:00+00:00,0.0690066741142914 -2024-05-14 23:00:00+00:00,0.07045571260101724 -2024-05-15 00:00:00+00:00,0.06041771469060109 -2024-05-15 01:00:00+00:00,0.05170512128850646 -2024-05-15 02:00:00+00:00,0.04987382877931168 -2024-05-15 03:00:00+00:00,0.04276527961934562 -2024-05-15 04:00:00+00:00,0.0338367550112082 -2024-05-15 05:00:00+00:00,0.01672367442063205 -2024-05-15 06:00:00+00:00,0.0046410765286282185 -2024-05-15 07:00:00+00:00,-0.01756199676600545 -2024-05-15 08:00:00+00:00,-0.07049532203367903 -2024-05-15 09:00:00+00:00,-0.09680496066752653 -2024-05-15 10:00:00+00:00,-0.12341445007390917 -2024-05-15 11:00:00+00:00,-0.14796132126042494 -2024-05-15 12:00:00+00:00,-0.20978053576536126 -2024-05-15 13:00:00+00:00,-0.20636504244856724 -2024-05-15 14:00:00+00:00,-0.23532025375365606 -2024-05-15 15:00:00+00:00,-0.2784581514570448 -2024-05-15 16:00:00+00:00,-0.3125923089003493 -2024-05-15 17:00:00+00:00,-0.3542804116391096 -2024-05-15 18:00:00+00:00,-0.3702208863018086 -2024-05-15 19:00:00+00:00,-0.37346517971215576 -2024-05-15 20:00:00+00:00,-0.37701594885459144 -2024-05-15 21:00:00+00:00,-0.3827606717000549 -2024-05-15 22:00:00+00:00,-0.4032414582974866 -2024-05-15 23:00:00+00:00,-0.43543305510976893 -2024-05-16 00:00:00+00:00,-0.5061081460013099 -2024-05-16 01:00:00+00:00,-0.5214905317881176 -2024-05-16 02:00:00+00:00,-0.534699061600719 -2024-05-16 03:00:00+00:00,-0.5416664389570087 -2024-05-16 04:00:00+00:00,-0.5438241683505964 -2024-05-16 05:00:00+00:00,-0.5200124273529809 -2024-05-16 06:00:00+00:00,-0.48067260261291267 -2024-05-16 07:00:00+00:00,-0.4403046760773748 -2024-05-16 08:00:00+00:00,-0.3798875863292892 -2024-05-16 09:00:00+00:00,-0.3313341674516721 -2024-05-16 10:00:00+00:00,-0.2895976236877402 -2024-05-16 11:00:00+00:00,-0.23732429026941304 -2024-05-16 12:00:00+00:00,-0.15904376647702634 -2024-05-16 13:00:00+00:00,-0.08377505106733452 -2024-05-16 14:00:00+00:00,-0.036772210776916836 -2024-05-16 15:00:00+00:00,-0.0030375386317018638 -2024-05-16 16:00:00+00:00,0.02414532460039709 -2024-05-16 17:00:00+00:00,0.04397069807740195 -2024-05-16 18:00:00+00:00,0.0651447576610451 -2024-05-16 19:00:00+00:00,0.08825098944126353 -2024-05-16 20:00:00+00:00,0.10359346745207176 -2024-05-16 21:00:00+00:00,0.11204021270324915 -2024-05-16 22:00:00+00:00,0.11865757479233707 -2024-05-16 23:00:00+00:00,0.12392579210097665 -2024-05-17 00:00:00+00:00,0.13047011287437726 -2024-05-17 01:00:00+00:00,0.16378580450168556 -2024-05-17 02:00:00+00:00,0.19240880159429707 -2024-05-17 03:00:00+00:00,0.20594067907035196 -2024-05-17 04:00:00+00:00,0.21547202832857693 -2024-05-17 05:00:00+00:00,0.21976613924792332 -2024-05-17 06:00:00+00:00,0.20850065761212022 -2024-05-17 07:00:00+00:00,0.21141800781069264 -2024-05-17 08:00:00+00:00,0.21472455844707383 -2024-05-17 09:00:00+00:00,0.2123154507297329 -2024-05-17 10:00:00+00:00,0.20848705635597753 -2024-05-17 11:00:00+00:00,0.20438803448072917 -2024-05-17 12:00:00+00:00,0.19358238447043163 -2024-05-17 13:00:00+00:00,0.17916106455390945 -2024-05-17 14:00:00+00:00,0.13861830889788962 -2024-05-17 15:00:00+00:00,0.11931423185799872 -2024-05-17 16:00:00+00:00,0.10649976429843377 -2024-05-17 17:00:00+00:00,0.09811806163159531 -2024-05-17 18:00:00+00:00,0.09162962721589452 -2024-05-17 19:00:00+00:00,0.0853423395430184 -2024-05-17 20:00:00+00:00,0.07681136100109143 -2024-05-19 21:00:00+00:00,0.06989037939700893 -2024-05-19 22:00:00+00:00,0.0678196345003812 -2024-05-19 23:00:00+00:00,0.07060956787768191 -2024-05-20 00:00:00+00:00,0.08052635821172771 -2024-05-20 01:00:00+00:00,0.08674006735418516 -2024-05-20 02:00:00+00:00,0.08663126320820425 -2024-05-20 03:00:00+00:00,0.0784590518321977 -2024-05-20 04:00:00+00:00,0.07459240130307876 -2024-05-20 05:00:00+00:00,0.06560750528964832 -2024-05-20 06:00:00+00:00,0.061011276158978944 -2024-05-20 07:00:00+00:00,0.05559814762457904 -2024-05-20 08:00:00+00:00,0.046894435552104596 -2024-05-20 09:00:00+00:00,0.041774496628590896 -2024-05-20 10:00:00+00:00,0.03680845335091476 -2024-05-20 11:00:00+00:00,0.03592840857945134 -2024-05-20 12:00:00+00:00,0.06721693864651002 -2024-05-20 13:00:00+00:00,0.08498183327287734 -2024-05-20 14:00:00+00:00,0.10495168708811775 -2024-05-20 17:00:00+00:00,0.12003972996802759 -2024-05-20 18:00:00+00:00,0.13799144755236625 -2024-05-20 19:00:00+00:00,0.1522386171976109 -2024-05-20 20:00:00+00:00,0.16038966330489757 -2024-05-20 21:00:00+00:00,0.1614380365991508 -2024-05-20 22:00:00+00:00,0.16329145685421054 -2024-05-20 23:00:00+00:00,0.17357215412690152 -2024-05-21 00:00:00+00:00,0.1817228753049278 -2024-05-21 01:00:00+00:00,0.19034554431556217 -2024-05-21 02:00:00+00:00,0.19126250101260212 -2024-05-21 03:00:00+00:00,0.19331125624805168 -2024-05-21 04:00:00+00:00,0.19032026668895696 -2024-05-21 05:00:00+00:00,0.1802239612886467 -2024-05-21 06:00:00+00:00,0.15996931789766222 -2024-05-21 07:00:00+00:00,0.14108070193154276 -2024-05-21 08:00:00+00:00,0.12642915720672931 -2024-05-21 09:00:00+00:00,0.10234114743988698 -2024-05-21 10:00:00+00:00,0.09043924636972633 -2024-05-21 11:00:00+00:00,0.08088146921932093 -2024-05-21 12:00:00+00:00,0.07366803732978155 -2024-05-21 13:00:00+00:00,0.05178095493965884 -2024-05-21 14:00:00+00:00,0.02606565158626495 -2024-05-21 15:00:00+00:00,0.015991660051952294 -2024-05-21 16:00:00+00:00,0.010948029533039971 -2024-05-21 17:00:00+00:00,0.014928683348301774 -2024-05-21 18:00:00+00:00,0.01731889721102675 -2024-05-21 19:00:00+00:00,0.015484234029827348 -2024-05-21 20:00:00+00:00,0.015944435423108416 -2024-05-21 21:00:00+00:00,0.012932405911641354 -2024-05-21 22:00:00+00:00,0.012977882437809285 -2024-05-21 23:00:00+00:00,0.019566470799503577 -2024-05-22 00:00:00+00:00,0.02450549050396944 -2024-05-22 01:00:00+00:00,0.026899246790918596 -2024-05-22 02:00:00+00:00,0.032057896340035086 -2024-05-22 03:00:00+00:00,0.03653196198291653 -2024-05-22 04:00:00+00:00,0.04281184860360554 -2024-05-22 05:00:00+00:00,0.04293641107162216 -2024-05-22 06:00:00+00:00,0.048766921141179864 -2024-05-22 07:00:00+00:00,0.05485331027097118 -2024-05-22 08:00:00+00:00,0.06497964579693871 -2024-05-22 09:00:00+00:00,0.0692213087213247 -2024-05-22 10:00:00+00:00,0.0706388929643822 -2024-05-22 11:00:00+00:00,0.08354852286467462 -2024-05-22 12:00:00+00:00,0.08983899047467503 -2024-05-22 13:00:00+00:00,0.08488891249987773 -2024-05-22 14:00:00+00:00,0.0869834222062309 -2024-05-22 15:00:00+00:00,0.08595794209347218 -2024-05-22 16:00:00+00:00,0.08329743269348455 -2024-05-22 17:00:00+00:00,0.08058281783377197 -2024-05-22 18:00:00+00:00,0.08854620712793349 -2024-05-22 19:00:00+00:00,0.09967939011190197 -2024-05-22 20:00:00+00:00,0.11699821563937007 -2024-05-22 21:00:00+00:00,0.11910272890861506 -2024-05-22 22:00:00+00:00,0.1228244674653638 -2024-05-22 23:00:00+00:00,0.12362270174804735 -2024-05-23 00:00:00+00:00,0.1279447063655823 -2024-05-23 01:00:00+00:00,0.12548536860026616 -2024-05-23 02:00:00+00:00,0.12117123936982921 -2024-05-23 03:00:00+00:00,0.11832488468081692 -2024-05-23 04:00:00+00:00,0.11195438018452819 -2024-05-23 05:00:00+00:00,0.10568741079077881 -2024-05-23 06:00:00+00:00,0.09359007111427786 -2024-05-23 07:00:00+00:00,0.09190024577097233 -2024-05-23 08:00:00+00:00,0.08944924020829603 -2024-05-23 09:00:00+00:00,0.07917054080496655 -2024-05-23 10:00:00+00:00,0.0738049439413544 -2024-05-23 11:00:00+00:00,0.05910762510015388 -2024-05-23 12:00:00+00:00,0.05984211745987977 -2024-05-23 13:00:00+00:00,0.08677834802708162 -2024-05-23 14:00:00+00:00,0.0991554135937065 -2024-05-23 15:00:00+00:00,0.11274820953795484 -2024-05-23 16:00:00+00:00,0.12155455155084383 -2024-05-23 17:00:00+00:00,0.11861302974841692 -2024-05-23 18:00:00+00:00,0.11120741546162094 -2024-05-23 19:00:00+00:00,0.10270207759631944 -2024-05-23 20:00:00+00:00,0.10013291456684215 -2024-05-23 21:00:00+00:00,0.09873390746892596 -2024-05-23 22:00:00+00:00,0.09986307390252591 -2024-05-23 23:00:00+00:00,0.09817381029466787 -2024-05-24 00:00:00+00:00,0.09948081105432038 -2024-05-24 01:00:00+00:00,0.10423722690816817 -2024-05-24 02:00:00+00:00,0.10414339628755442 -2024-05-24 03:00:00+00:00,0.10200557006018585 -2024-05-24 04:00:00+00:00,0.10116248033719444 -2024-05-24 05:00:00+00:00,0.09942886325694644 -2024-05-24 06:00:00+00:00,0.09366686852729345 -2024-05-24 07:00:00+00:00,0.08920186560774823 -2024-05-24 08:00:00+00:00,0.08237370815675149 -2024-05-24 09:00:00+00:00,0.07560664795261118 -2024-05-24 10:00:00+00:00,0.06625232274478776 -2024-05-24 11:00:00+00:00,0.062316571396848985 -2024-05-24 12:00:00+00:00,0.06203281667811211 -2024-05-24 13:00:00+00:00,0.061103575041755676 -2024-05-24 14:00:00+00:00,0.05273902874498049 -2024-05-24 15:00:00+00:00,0.03920282832734756 -2024-05-24 16:00:00+00:00,0.028948508019198016 -2024-05-24 17:00:00+00:00,0.023615937885779203 -2024-05-24 18:00:00+00:00,0.020923856580310485 -2024-05-24 19:00:00+00:00,0.014906711892734847 -2024-05-24 20:00:00+00:00,0.01504818871140401 -2024-05-26 21:00:00+00:00,0.009164181219375678 -2024-05-26 22:00:00+00:00,-0.00017701190083130314 -2024-05-26 23:00:00+00:00,-0.00701496079102526 -2024-05-27 00:00:00+00:00,-0.015323724613352852 -2024-05-27 01:00:00+00:00,-0.023573340432960777 -2024-05-27 02:00:00+00:00,-0.03614983897617208 -2024-05-27 03:00:00+00:00,-0.047426014883512835 -2024-05-27 04:00:00+00:00,-0.05021588472675376 -2024-05-27 05:00:00+00:00,-0.05246759603159035 -2024-05-27 06:00:00+00:00,-0.049007055361215635 -2024-05-27 07:00:00+00:00,-0.03903646588597098 -2024-05-27 08:00:00+00:00,-0.027509235204405513 -2024-05-27 09:00:00+00:00,-0.022472125864680947 -2024-05-27 10:00:00+00:00,-0.02114137494766055 -2024-05-27 11:00:00+00:00,-0.01818262280522731 -2024-05-27 12:00:00+00:00,-0.020204311322657986 -2024-05-27 13:00:00+00:00,-0.021877095074813724 -2024-05-27 14:00:00+00:00,-0.03027740034988824 -2024-05-27 15:00:00+00:00,-0.0252659312594119 -2024-05-27 16:00:00+00:00,-0.018498929194123548 -2024-05-27 17:00:00+00:00,-0.015060407015397459 -2024-05-27 18:00:00+00:00,-0.01219477958741777 -2024-05-27 19:00:00+00:00,-0.008933165168514279 -2024-05-27 20:00:00+00:00,-0.005159157687359084 -2024-05-27 21:00:00+00:00,-0.002542380798274735 -2024-05-27 22:00:00+00:00,0.001850163838980734 -2024-05-27 23:00:00+00:00,-0.0014303229989423016 -2024-05-28 00:00:00+00:00,0.0007223476892761482 -2024-05-28 01:00:00+00:00,-0.006932652172537246 -2024-05-28 02:00:00+00:00,-0.01500500075741229 -2024-05-28 03:00:00+00:00,-0.02881661288796522 -2024-05-28 04:00:00+00:00,-0.036756575521422974 -2024-05-28 05:00:00+00:00,-0.030752197806663162 -2024-05-28 06:00:00+00:00,-0.022027945206161803 -2024-05-28 07:00:00+00:00,-0.014143953052382585 -2024-05-28 08:00:00+00:00,-0.009720381387182897 -2024-05-28 09:00:00+00:00,-0.0004002567903569343 -2024-05-28 10:00:00+00:00,0.0008437183984995045 -2024-05-28 11:00:00+00:00,-0.0032966852956519688 -2024-05-28 12:00:00+00:00,-0.016235215992878693 -2024-05-28 13:00:00+00:00,-0.014460729034908582 -2024-05-28 14:00:00+00:00,-0.009555239491959355 -2024-05-28 15:00:00+00:00,-0.0024919044996920547 -2024-05-28 16:00:00+00:00,0.007856769975688849 -2024-05-28 17:00:00+00:00,0.02608599618886842 -2024-05-28 18:00:00+00:00,0.04469765779535351 -2024-05-28 19:00:00+00:00,0.057493715660285716 -2024-05-28 20:00:00+00:00,0.07101206623073608 -2024-05-28 21:00:00+00:00,0.07808186150694496 -2024-05-28 22:00:00+00:00,0.08751737790274206 -2024-05-28 23:00:00+00:00,0.09845953601453061 -2024-05-29 00:00:00+00:00,0.1139673859765935 -2024-05-29 01:00:00+00:00,0.11452803895568309 -2024-05-29 02:00:00+00:00,0.1174114218999307 -2024-05-29 03:00:00+00:00,0.12024699062376953 -2024-05-29 04:00:00+00:00,0.11631192918946454 -2024-05-29 05:00:00+00:00,0.1093507052259497 -2024-05-29 06:00:00+00:00,0.0927588550525229 -2024-05-29 07:00:00+00:00,0.0828506094174486 -2024-05-29 08:00:00+00:00,0.06999542426845551 -2024-05-29 09:00:00+00:00,0.06383258206602704 -2024-05-29 10:00:00+00:00,0.06425961359329335 -2024-05-29 11:00:00+00:00,0.06689321819615657 -2024-05-29 12:00:00+00:00,0.06229113384577545 -2024-05-29 13:00:00+00:00,0.06946282121973013 -2024-05-29 14:00:00+00:00,0.08673450994606924 -2024-05-29 15:00:00+00:00,0.10964840270952436 -2024-05-29 16:00:00+00:00,0.13097810897480144 -2024-05-29 17:00:00+00:00,0.14220818529119583 -2024-05-29 18:00:00+00:00,0.1520983227437398 -2024-05-29 19:00:00+00:00,0.1596293612294346 -2024-05-29 20:00:00+00:00,0.16203539581249515 -2024-05-29 21:00:00+00:00,0.15704826739963096 -2024-05-29 22:00:00+00:00,0.15430281616562525 -2024-05-29 23:00:00+00:00,0.14927657584078702 -2024-05-30 00:00:00+00:00,0.12289673996417605 -2024-05-30 01:00:00+00:00,0.10752909943448685 -2024-05-30 02:00:00+00:00,0.08556836569260895 -2024-05-30 03:00:00+00:00,0.07033909149947704 -2024-05-30 04:00:00+00:00,0.042129955405130204 -2024-05-30 05:00:00+00:00,0.0019988094006748724 -2024-05-30 06:00:00+00:00,-0.04717515182105103 -2024-05-30 07:00:00+00:00,-0.06713566101961987 -2024-05-30 08:00:00+00:00,-0.08392368775901105 -2024-05-30 09:00:00+00:00,-0.09835392309318536 -2024-05-30 10:00:00+00:00,-0.10821973227984927 -2024-05-30 11:00:00+00:00,-0.1298727767163541 -2024-05-30 12:00:00+00:00,-0.1521380078080199 -2024-05-30 13:00:00+00:00,-0.16114765601022896 -2024-05-30 14:00:00+00:00,-0.1772988315987334 -2024-05-30 15:00:00+00:00,-0.18402355513279645 -2024-05-30 16:00:00+00:00,-0.18280761425336323 -2024-05-30 17:00:00+00:00,-0.17554375613696038 -2024-05-30 18:00:00+00:00,-0.16186929457984434 -2024-05-30 19:00:00+00:00,-0.14811443957546544 -2024-05-30 20:00:00+00:00,-0.1376442319272826 -2024-05-30 21:00:00+00:00,-0.1302656449445294 -2024-05-30 22:00:00+00:00,-0.12172383867658709 -2024-05-30 23:00:00+00:00,-0.09840790682935108 -2024-05-31 00:00:00+00:00,-0.09904177325299202 -2024-05-31 01:00:00+00:00,-0.1034353520947775 -2024-05-31 02:00:00+00:00,-0.09508917765924707 -2024-05-31 03:00:00+00:00,-0.08826423554978646 -2024-05-31 04:00:00+00:00,-0.08956931810735114 -2024-05-31 05:00:00+00:00,-0.08167364981932224 -2024-05-31 06:00:00+00:00,-0.06426623278659349 -2024-05-31 07:00:00+00:00,-0.033063655535471526 -2024-05-31 08:00:00+00:00,0.003964730123215077 -2024-05-31 09:00:00+00:00,0.03580218635013921 -2024-05-31 10:00:00+00:00,0.05299902884871699 -2024-05-31 11:00:00+00:00,0.059965227058739856 -2024-05-31 12:00:00+00:00,0.04032945383798392 -2024-05-31 13:00:00+00:00,0.011403085031531646 -2024-05-31 14:00:00+00:00,0.025464726735521026 -2024-05-31 15:00:00+00:00,0.03890373688270188 -2024-05-31 16:00:00+00:00,0.047872719341199854 -2024-05-31 17:00:00+00:00,0.05754502503560843 -2024-05-31 18:00:00+00:00,0.068136774225934 -2024-05-31 19:00:00+00:00,0.07573843784544465 -2024-05-31 20:00:00+00:00,0.08362306389665264 -2024-06-02 21:00:00+00:00,0.08294437417728773 -2024-06-02 22:00:00+00:00,0.08665258736948545 -2024-06-02 23:00:00+00:00,0.07987523203723867 -2024-06-03 00:00:00+00:00,0.06615650370525827 -2024-06-03 01:00:00+00:00,0.0524206737733266 -2024-06-03 02:00:00+00:00,0.05494193894031696 -2024-06-03 03:00:00+00:00,0.07120854909751984 -2024-06-03 04:00:00+00:00,0.08226405792041191 -2024-06-03 05:00:00+00:00,0.0900680712953772 -2024-06-03 06:00:00+00:00,0.08263169349748978 -2024-06-03 07:00:00+00:00,0.06661023860172577 -2024-06-03 08:00:00+00:00,0.04675741509532827 -2024-06-03 09:00:00+00:00,0.031627625566443385 -2024-06-03 10:00:00+00:00,-0.006911413244694131 -2024-06-03 11:00:00+00:00,-0.027613948914478215 -2024-06-03 12:00:00+00:00,-0.04942232929488455 -2024-06-03 13:00:00+00:00,-0.07551809934457765 -2024-06-03 14:00:00+00:00,-0.13195759896362347 -2024-06-03 15:00:00+00:00,-0.18759586676813456 -2024-06-03 16:00:00+00:00,-0.2269751835178795 -2024-06-03 17:00:00+00:00,-0.24566866321049474 -2024-06-03 18:00:00+00:00,-0.2546431141011851 -2024-06-03 19:00:00+00:00,-0.2576556540969932 -2024-06-03 20:00:00+00:00,-0.2692847876652422 -2024-06-03 21:00:00+00:00,-0.2729339972966045 -2024-06-03 22:00:00+00:00,-0.26909296213833045 -2024-06-03 23:00:00+00:00,-0.2681224307506511 -2024-06-04 00:00:00+00:00,-0.24069398102238893 -2024-06-04 01:00:00+00:00,-0.2105583696281883 -2024-06-04 02:00:00+00:00,-0.19156826532073978 -2024-06-04 03:00:00+00:00,-0.17339005521864692 -2024-06-04 04:00:00+00:00,-0.1643513999509878 -2024-06-04 05:00:00+00:00,-0.1635336341435618 -2024-06-04 06:00:00+00:00,-0.1806532349024792 -2024-06-04 07:00:00+00:00,-0.23683921002808006 -2024-06-04 08:00:00+00:00,-0.2850209374338988 -2024-06-04 09:00:00+00:00,-0.33164740833663586 -2024-06-04 10:00:00+00:00,-0.38178897490331565 -2024-06-04 11:00:00+00:00,-0.42174844757059304 -2024-06-04 12:00:00+00:00,-0.428146912508538 -2024-06-04 13:00:00+00:00,-0.44734631481023257 -2024-06-04 14:00:00+00:00,-0.4572906178693188 -2024-06-04 15:00:00+00:00,-0.4606681702048263 -2024-06-04 16:00:00+00:00,-0.46508456396966835 -2024-06-04 17:00:00+00:00,-0.477763111062103 -2024-06-04 18:00:00+00:00,-0.4738757834443277 -2024-06-04 19:00:00+00:00,-0.4602446773797908 -2024-06-04 20:00:00+00:00,-0.43458788855565444 -2024-06-04 21:00:00+00:00,-0.41416062792640673 -2024-06-04 22:00:00+00:00,-0.3917613709897978 -2024-06-04 23:00:00+00:00,-0.3490866099028267 -2024-06-05 00:00:00+00:00,-0.30289884426599656 -2024-06-05 01:00:00+00:00,-0.2524110068665948 -2024-06-05 02:00:00+00:00,-0.2005654247802795 -2024-06-05 03:00:00+00:00,-0.157021844230826 -2024-06-05 04:00:00+00:00,-0.11345896096005958 -2024-06-05 05:00:00+00:00,-0.07324919246067907 -2024-06-05 06:00:00+00:00,-0.020808499847674966 -2024-06-05 07:00:00+00:00,0.040138578408686953 -2024-06-05 08:00:00+00:00,0.0957280148954851 -2024-06-05 09:00:00+00:00,0.12167725413846142 -2024-06-05 10:00:00+00:00,0.14293460962355198 -2024-06-05 11:00:00+00:00,0.1640230264893603 -2024-06-05 12:00:00+00:00,0.174687478147888 -2024-06-05 13:00:00+00:00,0.1531318493544518 -2024-06-05 14:00:00+00:00,0.17988875728715925 -2024-06-05 15:00:00+00:00,0.1905856081485524 -2024-06-05 16:00:00+00:00,0.1897744729755857 -2024-06-05 17:00:00+00:00,0.18538085455827513 -2024-06-05 18:00:00+00:00,0.179347326116698 -2024-06-05 19:00:00+00:00,0.17201795396314878 -2024-06-05 20:00:00+00:00,0.16575114724497553 -2024-06-05 21:00:00+00:00,0.15504352206983185 -2024-06-05 22:00:00+00:00,0.13100713742181824 -2024-06-05 23:00:00+00:00,0.11291587153039018 -2024-06-06 00:00:00+00:00,0.07639518319348326 -2024-06-06 01:00:00+00:00,0.046672191668051255 -2024-06-06 02:00:00+00:00,0.023251931166129225 -2024-06-06 03:00:00+00:00,-0.0018237935138927241 -2024-06-06 04:00:00+00:00,-0.008446383579268968 -2024-06-06 05:00:00+00:00,0.00042134652423442276 -2024-06-06 06:00:00+00:00,0.019808641089383627 -2024-06-06 07:00:00+00:00,0.05192337453968321 -2024-06-06 08:00:00+00:00,0.06707966570974122 -2024-06-06 09:00:00+00:00,0.06303311701722691 -2024-06-06 10:00:00+00:00,0.06432960317528114 -2024-06-06 11:00:00+00:00,0.07713648431706588 -2024-06-06 12:00:00+00:00,0.09339103239889823 -2024-06-06 13:00:00+00:00,0.09341506827612989 -2024-06-06 14:00:00+00:00,0.08383372808566492 -2024-06-06 15:00:00+00:00,0.07154255012346766 -2024-06-06 16:00:00+00:00,0.04673843576421177 -2024-06-06 17:00:00+00:00,0.023661269975434607 -2024-06-06 18:00:00+00:00,-0.001469401454215813 -2024-06-06 19:00:00+00:00,-0.026406885891077536 -2024-06-06 20:00:00+00:00,-0.04516523539697914 -2024-06-06 21:00:00+00:00,-0.059666332754602536 -2024-06-06 22:00:00+00:00,-0.0697094565219345 -2024-06-06 23:00:00+00:00,-0.07231635455593732 -2024-06-07 00:00:00+00:00,-0.0658765583768286 -2024-06-07 01:00:00+00:00,-0.06725989118945108 -2024-06-07 02:00:00+00:00,-0.05720683409180083 -2024-06-07 03:00:00+00:00,-0.05362444651851206 -2024-06-07 04:00:00+00:00,-0.06384765344517973 -2024-06-07 05:00:00+00:00,-0.07631486510061336 -2024-06-07 06:00:00+00:00,-0.09765738289218007 -2024-06-07 07:00:00+00:00,-0.10855927138538846 -2024-06-07 08:00:00+00:00,-0.12072959118623316 -2024-06-07 09:00:00+00:00,-0.11867808001949243 -2024-06-07 10:00:00+00:00,-0.10853882676900639 -2024-06-07 11:00:00+00:00,-0.09808170440155095 -2024-06-07 12:00:00+00:00,0.00599816872846759 -2024-06-07 13:00:00+00:00,0.10167330387335483 -2024-06-07 14:00:00+00:00,0.16837407011081496 -2024-06-07 15:00:00+00:00,0.1970954787571202 -2024-06-07 16:00:00+00:00,0.22277640600128734 -2024-06-07 17:00:00+00:00,0.23557170334640887 -2024-06-07 18:00:00+00:00,0.245464637695477 -2024-06-07 19:00:00+00:00,0.2588740348328429 -2024-06-07 20:00:00+00:00,0.2686634595434896 -2024-06-09 21:00:00+00:00,0.2719951916154457 -2024-06-09 22:00:00+00:00,0.28331213051382065 -2024-06-09 23:00:00+00:00,0.2827278275935612 -2024-06-10 00:00:00+00:00,0.2801648799769225 -2024-06-10 01:00:00+00:00,0.28006952352538406 -2024-06-10 02:00:00+00:00,0.2828658166357627 -2024-06-10 03:00:00+00:00,0.2955539002220746 -2024-06-10 04:00:00+00:00,0.3000524967615661 -2024-06-10 05:00:00+00:00,0.29545108383084084 -2024-06-10 06:00:00+00:00,0.2915901354226662 -2024-06-10 07:00:00+00:00,0.2770256871208403 -2024-06-10 08:00:00+00:00,0.2588680630994986 -2024-06-10 09:00:00+00:00,0.23706516036938297 -2024-06-10 10:00:00+00:00,0.21153792705808883 -2024-06-10 11:00:00+00:00,0.19351473369962946 -2024-06-10 12:00:00+00:00,0.18476704963015322 -2024-06-10 13:00:00+00:00,0.16942607721523473 -2024-06-10 14:00:00+00:00,0.15595464780508905 -2024-06-10 15:00:00+00:00,0.14649464302158322 -2024-06-10 16:00:00+00:00,0.1418009681282797 -2024-06-10 17:00:00+00:00,0.13722557078304476 -2024-06-10 18:00:00+00:00,0.13821948373728787 -2024-06-10 19:00:00+00:00,0.1320783103112717 -2024-06-10 20:00:00+00:00,0.12719758115625268 -2024-06-10 21:00:00+00:00,0.12096683801593144 -2024-06-10 22:00:00+00:00,0.11598301546425205 -2024-06-10 23:00:00+00:00,0.11139474405808869 -2024-06-11 00:00:00+00:00,0.1202512864713583 -2024-06-11 01:00:00+00:00,0.12621864834534335 -2024-06-11 02:00:00+00:00,0.1349598162141774 -2024-06-11 03:00:00+00:00,0.1347660324508695 -2024-06-11 04:00:00+00:00,0.13666815591318482 -2024-06-11 05:00:00+00:00,0.1377975329174319 -2024-06-11 06:00:00+00:00,0.1370322581153971 -2024-06-11 07:00:00+00:00,0.13981693161110798 -2024-06-11 08:00:00+00:00,0.13083265094124386 -2024-06-11 09:00:00+00:00,0.12429701621766753 -2024-06-11 10:00:00+00:00,0.1058739745827495 -2024-06-11 11:00:00+00:00,0.09055251490201499 -2024-06-11 12:00:00+00:00,0.060923992190339504 -2024-06-11 13:00:00+00:00,0.05664040326021791 -2024-06-11 14:00:00+00:00,0.06699781474503652 -2024-06-11 15:00:00+00:00,0.07474794836136311 -2024-06-11 16:00:00+00:00,0.08443539836437708 -2024-06-11 17:00:00+00:00,0.07032231334261496 -2024-06-11 18:00:00+00:00,0.050007818657860525 -2024-06-11 19:00:00+00:00,0.03934537617084288 -2024-06-11 20:00:00+00:00,0.03469137848250625 -2024-06-11 21:00:00+00:00,0.02945315945623861 -2024-06-11 22:00:00+00:00,0.026608934755245173 -2024-06-11 23:00:00+00:00,0.021684155462367016 -2024-06-12 00:00:00+00:00,0.023003098689173385 -2024-06-12 01:00:00+00:00,0.020264343682384833 -2024-06-12 02:00:00+00:00,0.02171672259524371 -2024-06-12 03:00:00+00:00,0.022367826044387584 -2024-06-12 04:00:00+00:00,0.027249826455602033 -2024-06-12 05:00:00+00:00,0.030923760379408805 -2024-06-12 06:00:00+00:00,0.03695976262309841 -2024-06-12 07:00:00+00:00,0.03943287249924765 -2024-06-12 08:00:00+00:00,0.04403222784381455 -2024-06-12 09:00:00+00:00,0.048091184562821354 -2024-06-12 10:00:00+00:00,0.0516804961282844 -2024-06-12 11:00:00+00:00,0.05438231577497277 -2024-06-12 12:00:00+00:00,-0.03761349294370575 -2024-06-12 13:00:00+00:00,-0.1397342719347705 -2024-06-12 14:00:00+00:00,-0.21799147174903055 -2024-06-12 15:00:00+00:00,-0.2686033351732817 -2024-06-12 16:00:00+00:00,-0.3119761246348105 -2024-06-12 17:00:00+00:00,-0.33386675883244266 -2024-06-12 18:00:00+00:00,-0.29153187954190685 -2024-06-12 19:00:00+00:00,-0.23629478745340293 -2024-06-12 20:00:00+00:00,-0.19894042997717065 -2024-06-12 21:00:00+00:00,-0.17809652676953647 -2024-06-12 22:00:00+00:00,-0.14314365073204272 -2024-06-12 23:00:00+00:00,-0.1144467404378986 -2024-06-13 00:00:00+00:00,-0.09113780228221913 -2024-06-13 01:00:00+00:00,-0.06880586723397641 -2024-06-13 02:00:00+00:00,-0.03736283131601681 -2024-06-13 03:00:00+00:00,-0.01158423814587195 -2024-06-13 04:00:00+00:00,0.011776018476211902 -2024-06-13 05:00:00+00:00,0.032815809066448764 -2024-06-13 06:00:00+00:00,0.054510051733245746 -2024-06-13 07:00:00+00:00,0.0807775062245355 -2024-06-13 08:00:00+00:00,0.09900098189461914 -2024-06-13 09:00:00+00:00,0.10624728355190882 -2024-06-13 10:00:00+00:00,0.11007561352784023 -2024-06-13 11:00:00+00:00,0.11469238928074788 -2024-06-13 12:00:00+00:00,0.10216487866796342 -2024-06-13 13:00:00+00:00,0.10378959395805509 -2024-06-13 14:00:00+00:00,0.08473443250204582 -2024-06-13 15:00:00+00:00,0.055358058911110675 -2024-06-13 16:00:00+00:00,0.037694426508949164 -2024-06-13 17:00:00+00:00,0.03052554725934442 -2024-06-13 18:00:00+00:00,0.02121060713773204 -2024-06-13 19:00:00+00:00,0.026913026049413702 -2024-06-13 20:00:00+00:00,0.026527023475381384 -2024-06-13 21:00:00+00:00,0.02608184170401273 -2024-06-13 22:00:00+00:00,0.031498501664287915 -2024-06-13 23:00:00+00:00,0.03873379363699314 -2024-06-14 00:00:00+00:00,0.05018328115249915 -2024-06-14 01:00:00+00:00,0.0627299362583642 -2024-06-14 02:00:00+00:00,0.07758865537249449 -2024-06-14 03:00:00+00:00,0.12743421985939563 -2024-06-14 04:00:00+00:00,0.17524559693762853 -2024-06-14 05:00:00+00:00,0.22682151234724302 -2024-06-14 06:00:00+00:00,0.24964798154451273 -2024-06-14 07:00:00+00:00,0.24195193340511878 -2024-06-14 08:00:00+00:00,0.21864646055055914 -2024-06-14 09:00:00+00:00,0.16638551788045675 -2024-06-14 10:00:00+00:00,0.11253565661039033 -2024-06-14 11:00:00+00:00,0.07735943303285353 -2024-06-14 12:00:00+00:00,0.0639152757224224 -2024-06-14 13:00:00+00:00,0.05472779890405377 -2024-06-14 14:00:00+00:00,0.05512247890214894 -2024-06-14 15:00:00+00:00,0.04730494922657158 -2024-06-14 16:00:00+00:00,0.04279486245249586 -2024-06-14 17:00:00+00:00,0.03885340002324256 -2024-06-14 18:00:00+00:00,0.03253056307693214 -2024-06-14 19:00:00+00:00,0.02928012885320186 -2024-06-14 20:00:00+00:00,0.034616339887548975 -2024-06-16 21:00:00+00:00,0.03345677485873466 -2024-06-16 22:00:00+00:00,0.04596757975230048 -2024-06-16 23:00:00+00:00,0.05835675646662253 -2024-06-17 00:00:00+00:00,0.05918181792122823 -2024-06-17 01:00:00+00:00,0.06178627555181038 -2024-06-17 02:00:00+00:00,0.059772260583741854 -2024-06-17 03:00:00+00:00,0.05129094104370324 -2024-06-17 04:00:00+00:00,0.04525810162010657 -2024-06-17 05:00:00+00:00,0.045520029688532304 -2024-06-17 06:00:00+00:00,0.03706974507335303 -2024-06-17 07:00:00+00:00,0.04614066459052424 -2024-06-17 08:00:00+00:00,0.06053935464424853 -2024-06-17 09:00:00+00:00,0.07152933283856555 -2024-06-17 10:00:00+00:00,0.07741003560801119 -2024-06-17 11:00:00+00:00,0.09836602740048761 -2024-06-17 12:00:00+00:00,0.11733307478891675 -2024-06-17 13:00:00+00:00,0.13053707972525785 -2024-06-17 14:00:00+00:00,0.13668224507739524 -2024-06-17 15:00:00+00:00,0.1363494573039361 -2024-06-17 16:00:00+00:00,0.13238104001928264 -2024-06-17 17:00:00+00:00,0.12489147046557036 -2024-06-17 18:00:00+00:00,0.11409033796093127 -2024-06-17 19:00:00+00:00,0.10672089981099475 -2024-06-17 20:00:00+00:00,0.09933207049340353 -2024-06-17 21:00:00+00:00,0.09280997264636426 -2024-06-17 22:00:00+00:00,0.08456832934572844 -2024-06-17 23:00:00+00:00,0.07634973896094266 -2024-06-18 00:00:00+00:00,0.06792378080808703 -2024-06-18 01:00:00+00:00,0.05336869928308374 -2024-06-18 02:00:00+00:00,0.04606350778306023 -2024-06-18 03:00:00+00:00,0.03877808985248521 -2024-06-18 04:00:00+00:00,0.03885044799972093 -2024-06-18 05:00:00+00:00,0.04803704828032096 -2024-06-18 06:00:00+00:00,0.06473837843429919 -2024-06-18 07:00:00+00:00,0.09016832794597462 -2024-06-18 08:00:00+00:00,0.11089927610532868 -2024-06-18 09:00:00+00:00,0.12172951439418966 -2024-06-18 10:00:00+00:00,0.12938591744796213 -2024-06-18 11:00:00+00:00,0.13231459884391938 -2024-06-18 12:00:00+00:00,0.11299872701633262 -2024-06-18 13:00:00+00:00,0.09410453994897239 -2024-06-18 14:00:00+00:00,0.09155092284549937 -2024-06-18 15:00:00+00:00,0.07646132627903057 -2024-06-18 16:00:00+00:00,0.055232026105528575 -2024-06-18 17:00:00+00:00,0.049616682367258136 -2024-06-18 18:00:00+00:00,0.03970589530882762 -2024-06-18 19:00:00+00:00,0.037232134561520525 -2024-06-18 20:00:00+00:00,0.033912440134884037 -2024-06-18 21:00:00+00:00,0.029010543474299766 -2024-06-18 22:00:00+00:00,0.02715281197700392 -2024-06-18 23:00:00+00:00,0.025866523060585678 -2024-06-19 00:00:00+00:00,0.02576055284902168 -2024-06-19 01:00:00+00:00,0.016050626867325946 -2024-06-19 02:00:00+00:00,0.013604951219321038 -2024-06-19 03:00:00+00:00,0.013607855469842889 -2024-06-19 04:00:00+00:00,0.013135967284682692 -2024-06-19 05:00:00+00:00,0.007351599421326682 -2024-06-19 06:00:00+00:00,-0.006836741205773933 -2024-06-19 07:00:00+00:00,-0.011652828691921968 -2024-06-19 08:00:00+00:00,-0.01106540061192618 -2024-06-19 09:00:00+00:00,-0.0062511432773533215 -2024-06-19 10:00:00+00:00,-0.003923720655905072 -2024-06-19 11:00:00+00:00,0.003767835194565805 -2024-06-19 12:00:00+00:00,0.00799605889287136 -2024-06-19 13:00:00+00:00,0.011696279067962223 -2024-06-19 14:00:00+00:00,0.014940653517754754 -2024-06-19 15:00:00+00:00,0.020343617505290013 -2024-06-19 16:00:00+00:00,0.02434487285160003 -2024-06-19 17:00:00+00:00,0.02784050170865271 -2024-06-19 18:00:00+00:00,0.03664373797317921 -2024-06-19 19:00:00+00:00,0.04200645883031484 -2024-06-19 20:00:00+00:00,0.051791992734592895 -2024-06-19 21:00:00+00:00,0.052406960976014716 -2024-06-19 22:00:00+00:00,0.052371315456014145 -2024-06-19 23:00:00+00:00,0.048077048277008316 -2024-06-20 00:00:00+00:00,0.05014761332733997 -2024-06-20 01:00:00+00:00,0.053033125964191186 -2024-06-20 02:00:00+00:00,0.056604019044755205 -2024-06-20 03:00:00+00:00,0.05891621141219616 -2024-06-20 04:00:00+00:00,0.06516176142758923 -2024-06-20 05:00:00+00:00,0.06556312669403042 -2024-06-20 06:00:00+00:00,0.06712473051592838 -2024-06-20 07:00:00+00:00,0.07954906706569886 -2024-06-20 08:00:00+00:00,0.10145931288599286 -2024-06-20 09:00:00+00:00,0.11890512584619728 -2024-06-20 10:00:00+00:00,0.12850620294216242 -2024-06-20 11:00:00+00:00,0.13544144906643396 -2024-06-20 12:00:00+00:00,0.1485053433339658 -2024-06-20 13:00:00+00:00,0.16989152438878818 -2024-06-20 14:00:00+00:00,0.18622666311389935 -2024-06-20 15:00:00+00:00,0.20073166737873294 -2024-06-20 16:00:00+00:00,0.2165093012912962 -2024-06-20 17:00:00+00:00,0.22863697115110426 -2024-06-20 18:00:00+00:00,0.22859298632729974 -2024-06-20 19:00:00+00:00,0.23448908954136982 -2024-06-20 20:00:00+00:00,0.23819128904480635 -2024-06-20 21:00:00+00:00,0.23694154462106098 -2024-06-20 22:00:00+00:00,0.23214540247002446 -2024-06-20 23:00:00+00:00,0.22909263693892967 -2024-06-21 00:00:00+00:00,0.23733229201354789 -2024-06-21 01:00:00+00:00,0.22943649707755753 -2024-06-21 02:00:00+00:00,0.2204761278590297 -2024-06-21 03:00:00+00:00,0.205518845675158 -2024-06-21 04:00:00+00:00,0.19121876595073672 -2024-06-21 05:00:00+00:00,0.1831805978937382 -2024-06-21 06:00:00+00:00,0.175593080494167 -2024-06-21 07:00:00+00:00,0.15249068845182023 -2024-06-21 08:00:00+00:00,0.13711997459014924 -2024-06-21 09:00:00+00:00,0.12949767769464415 -2024-06-21 10:00:00+00:00,0.12994747154922948 -2024-06-21 11:00:00+00:00,0.12052269497891643 -2024-06-21 12:00:00+00:00,0.11415829515908626 -2024-06-21 13:00:00+00:00,0.12542085034115757 -2024-06-21 14:00:00+00:00,0.16679839812951514 -2024-06-21 15:00:00+00:00,0.1872645863040816 -2024-06-21 16:00:00+00:00,0.20371798631200022 -2024-06-21 17:00:00+00:00,0.22218469017792586 -2024-06-21 18:00:00+00:00,0.23100977508511278 -2024-06-21 19:00:00+00:00,0.2407159267920349 -2024-06-21 20:00:00+00:00,0.262488941071922 -2024-06-23 21:00:00+00:00,0.26889812387156553 -2024-06-23 22:00:00+00:00,0.270217020664802 -2024-06-23 23:00:00+00:00,0.282689466634821 -2024-06-24 00:00:00+00:00,0.28126258565251305 -2024-06-24 01:00:00+00:00,0.26848354686975995 -2024-06-24 02:00:00+00:00,0.2565286470044157 -2024-06-24 03:00:00+00:00,0.24391978076229748 -2024-06-24 04:00:00+00:00,0.23532970287160992 -2024-06-24 05:00:00+00:00,0.22296619793877426 -2024-06-24 06:00:00+00:00,0.2075478827015047 -2024-06-24 07:00:00+00:00,0.19413982509161087 -2024-06-24 08:00:00+00:00,0.18908063664980546 -2024-06-24 09:00:00+00:00,0.17147494044442624 -2024-06-24 10:00:00+00:00,0.1449579426716241 -2024-06-24 11:00:00+00:00,0.11910037526928363 -2024-06-24 12:00:00+00:00,0.09182051049231177 -2024-06-24 13:00:00+00:00,0.07362892970704138 -2024-06-24 14:00:00+00:00,0.08047451251391635 -2024-06-24 15:00:00+00:00,0.08428259576700725 -2024-06-24 16:00:00+00:00,0.0875820046317699 -2024-06-24 17:00:00+00:00,0.08765325653857303 -2024-06-24 18:00:00+00:00,0.0808070492685431 -2024-06-24 19:00:00+00:00,0.07532005440714329 -2024-06-24 20:00:00+00:00,0.06832802077605038 -2024-06-24 21:00:00+00:00,0.06031627909044346 -2024-06-24 22:00:00+00:00,0.05678210792265759 -2024-06-24 23:00:00+00:00,0.05775354523649412 -2024-06-25 00:00:00+00:00,0.03352599845689497 -2024-06-25 01:00:00+00:00,0.014640872080207146 -2024-06-25 02:00:00+00:00,-0.006145376472261432 -2024-06-25 03:00:00+00:00,-0.009916421617646165 -2024-06-25 04:00:00+00:00,-0.016985856741627003 -2024-06-25 05:00:00+00:00,-0.020496259112377402 -2024-06-25 06:00:00+00:00,-0.020859152603804887 -2024-06-25 07:00:00+00:00,-0.020347355167160686 -2024-06-25 08:00:00+00:00,-0.02051221637583467 -2024-06-25 09:00:00+00:00,-0.0232794185606906 -2024-06-25 10:00:00+00:00,-0.026139426898566853 -2024-06-25 11:00:00+00:00,-0.025529582412332275 -2024-06-25 12:00:00+00:00,-0.008487344340068148 -2024-06-25 13:00:00+00:00,0.0022493076463661055 -2024-06-25 14:00:00+00:00,0.0151825898848017 -2024-06-25 15:00:00+00:00,0.02474362195323465 -2024-06-25 16:00:00+00:00,0.036898349392032515 -2024-06-25 17:00:00+00:00,0.04480420878832092 -2024-06-25 18:00:00+00:00,0.045781116192358695 -2024-06-25 19:00:00+00:00,0.042275489615008155 -2024-06-25 20:00:00+00:00,0.04343460851174541 -2024-06-25 21:00:00+00:00,0.04241187136807412 -2024-06-25 22:00:00+00:00,0.04208452037096322 -2024-06-25 23:00:00+00:00,0.043582071351920604 -2024-06-26 00:00:00+00:00,0.04569460193411601 -2024-06-26 01:00:00+00:00,0.05177485122860048 -2024-06-26 02:00:00+00:00,0.060256244821374594 -2024-06-26 03:00:00+00:00,0.0663740746183521 -2024-06-26 04:00:00+00:00,0.06370999170010805 -2024-06-26 05:00:00+00:00,0.06592234848264411 -2024-06-26 06:00:00+00:00,0.06738305709026804 -2024-06-26 07:00:00+00:00,0.07374249480741923 -2024-06-26 08:00:00+00:00,0.08267091473049959 -2024-06-26 09:00:00+00:00,0.09079807091262637 -2024-06-26 10:00:00+00:00,0.12149828648648509 -2024-06-26 11:00:00+00:00,0.14440588231803986 -2024-06-26 12:00:00+00:00,0.1644570655784321 -2024-06-26 13:00:00+00:00,0.19073697194392025 -2024-06-26 14:00:00+00:00,0.21728975360414893 -2024-06-26 15:00:00+00:00,0.2415998844934677 -2024-06-26 16:00:00+00:00,0.25398417639254944 -2024-06-26 17:00:00+00:00,0.26095210678198555 -2024-06-26 18:00:00+00:00,0.2686226835054981 -2024-06-26 19:00:00+00:00,0.27914951502955887 -2024-06-26 20:00:00+00:00,0.28636968770479143 -2024-06-26 21:00:00+00:00,0.2837374048981758 -2024-06-26 22:00:00+00:00,0.27349573141830774 -2024-06-26 23:00:00+00:00,0.2568505942883519 -2024-06-27 00:00:00+00:00,0.24574855700086573 -2024-06-27 01:00:00+00:00,0.2186144986474119 -2024-06-27 02:00:00+00:00,0.19183294867082168 -2024-06-27 03:00:00+00:00,0.16643050411738614 -2024-06-27 04:00:00+00:00,0.13737240078791046 -2024-06-27 05:00:00+00:00,0.11822576825579745 -2024-06-27 06:00:00+00:00,0.1031538964058143 -2024-06-27 07:00:00+00:00,0.10054027719107239 -2024-06-27 08:00:00+00:00,0.09766590000356246 -2024-06-27 09:00:00+00:00,0.08911570818997916 -2024-06-27 10:00:00+00:00,0.07733290026544637 -2024-06-27 11:00:00+00:00,0.07615454191702042 -2024-06-27 12:00:00+00:00,0.062397656693406134 -2024-06-27 13:00:00+00:00,0.06064057959005709 -2024-06-27 14:00:00+00:00,0.0643164812373982 -2024-06-27 15:00:00+00:00,0.07491935026325791 -2024-06-27 16:00:00+00:00,0.08317038040871694 -2024-06-27 17:00:00+00:00,0.09012294954933964 -2024-06-27 18:00:00+00:00,0.09765418805497461 -2024-06-27 19:00:00+00:00,0.10666978303166275 -2024-06-27 20:00:00+00:00,0.10884815763702704 -2024-06-27 21:00:00+00:00,0.10676171999006101 -2024-06-27 22:00:00+00:00,0.10231494724683898 -2024-06-27 23:00:00+00:00,0.0964684449865274 -2024-06-28 00:00:00+00:00,0.12397368173429868 -2024-06-28 01:00:00+00:00,0.13956355460808822 -2024-06-28 02:00:00+00:00,0.1399765484025579 -2024-06-28 03:00:00+00:00,0.14269354868710593 -2024-06-28 04:00:00+00:00,0.14734426345489737 -2024-06-28 05:00:00+00:00,0.14165072928770428 -2024-06-28 06:00:00+00:00,0.1349375531819419 -2024-06-28 07:00:00+00:00,0.1275817878206169 -2024-06-28 08:00:00+00:00,0.11924799116636109 -2024-06-28 09:00:00+00:00,0.09317167764905321 -2024-06-28 10:00:00+00:00,0.05373101403691294 -2024-06-28 11:00:00+00:00,0.0372150409614278 -2024-06-28 12:00:00+00:00,0.012922298056594173 -2024-06-28 13:00:00+00:00,-0.009528395650107768 -2024-06-28 14:00:00+00:00,0.0015490197722840549 -2024-06-28 15:00:00+00:00,0.014597718239713231 -2024-06-28 16:00:00+00:00,0.02194245101912884 -2024-06-28 17:00:00+00:00,0.023378438797664103 -2024-06-28 18:00:00+00:00,0.02471571197116873 -2024-06-28 19:00:00+00:00,0.03002878113025531 -2024-06-28 20:00:00+00:00,0.03464695461804013 -2024-06-30 21:00:00+00:00,0.034759233508850684 -2024-06-30 22:00:00+00:00,0.03365336388193896 -2024-06-30 23:00:00+00:00,0.0403806356684413 -2024-07-01 00:00:00+00:00,0.0510942459208934 -2024-07-01 01:00:00+00:00,0.053321783914469734 -2024-07-01 02:00:00+00:00,0.052225732098463595 -2024-07-01 03:00:00+00:00,0.06305673728991223 -2024-07-01 04:00:00+00:00,0.07241941386678263 -2024-07-01 05:00:00+00:00,0.07621730105535107 -2024-07-01 06:00:00+00:00,0.06763482177510127 -2024-07-01 07:00:00+00:00,0.06875527451251173 -2024-07-01 08:00:00+00:00,0.06853049788779231 -2024-07-01 09:00:00+00:00,0.07220019713756187 -2024-07-01 10:00:00+00:00,0.07879953191002187 -2024-07-01 11:00:00+00:00,0.08139673685241178 -2024-07-01 12:00:00+00:00,0.10244700583174904 -2024-07-01 13:00:00+00:00,0.1211223219171984 -2024-07-01 14:00:00+00:00,0.1551144091987453 -2024-07-01 15:00:00+00:00,0.17224080910082762 -2024-07-01 16:00:00+00:00,0.18058495934775465 -2024-07-01 17:00:00+00:00,0.18362855330934735 -2024-07-01 18:00:00+00:00,0.18551594398226712 -2024-07-01 19:00:00+00:00,0.1811312393074047 -2024-07-01 20:00:00+00:00,0.1755519836298447 -2024-07-01 21:00:00+00:00,0.1674251937556619 -2024-07-01 22:00:00+00:00,0.1580332621589946 -2024-07-01 23:00:00+00:00,0.15493664039911437 -2024-07-02 00:00:00+00:00,0.1515425733177267 -2024-07-02 01:00:00+00:00,0.15640998431302933 -2024-07-02 02:00:00+00:00,0.15668604723742874 -2024-07-02 03:00:00+00:00,0.15862671138344808 -2024-07-02 04:00:00+00:00,0.15961581621141363 -2024-07-02 05:00:00+00:00,0.16080539046453168 -2024-07-02 06:00:00+00:00,0.15751169062906456 -2024-07-02 07:00:00+00:00,0.15178002619239805 -2024-07-02 08:00:00+00:00,0.14021498965436763 -2024-07-02 09:00:00+00:00,0.13561885003451835 -2024-07-02 10:00:00+00:00,0.1259253634373465 -2024-07-02 11:00:00+00:00,0.11793274159128941 -2024-07-02 12:00:00+00:00,0.10171136844587636 -2024-07-02 13:00:00+00:00,0.0769942086488129 -2024-07-02 14:00:00+00:00,0.061537810418656136 -2024-07-02 15:00:00+00:00,0.05654447493441239 -2024-07-02 16:00:00+00:00,0.05501927505432036 -2024-07-02 17:00:00+00:00,0.04912894152943181 -2024-07-02 18:00:00+00:00,0.041401427325865825 -2024-07-02 19:00:00+00:00,0.03224281731078804 -2024-07-02 20:00:00+00:00,0.02541777735811479 -2024-07-02 21:00:00+00:00,0.018504509277136094 -2024-07-02 22:00:00+00:00,0.010563863239042348 -2024-07-02 23:00:00+00:00,0.009566902801878996 -2024-07-03 00:00:00+00:00,0.014500145732313285 -2024-07-03 01:00:00+00:00,0.023863795940116006 -2024-07-03 02:00:00+00:00,0.03196507406940441 -2024-07-03 03:00:00+00:00,0.03651205751464204 -2024-07-03 04:00:00+00:00,0.04667836012828275 -2024-07-03 05:00:00+00:00,0.06623682103494843 -2024-07-03 06:00:00+00:00,0.07633832948280883 -2024-07-03 07:00:00+00:00,0.08003223690508321 -2024-07-03 08:00:00+00:00,0.08807695369569046 -2024-07-03 09:00:00+00:00,0.09489173803370932 -2024-07-03 10:00:00+00:00,0.10513247518704816 -2024-07-03 11:00:00+00:00,0.11020276811132135 -2024-07-03 12:00:00+00:00,0.10534100025299153 -2024-07-03 13:00:00+00:00,0.0902004015007094 -2024-07-03 14:00:00+00:00,0.048113603030941476 -2024-07-03 15:00:00+00:00,0.026397580263704867 -2024-07-03 16:00:00+00:00,0.013550011653876481 -2024-07-03 17:00:00+00:00,0.00045804181249309295 -2024-07-03 18:00:00+00:00,0.003118657557166671 -2024-07-03 19:00:00+00:00,0.008358528496074769 -2024-07-03 20:00:00+00:00,0.012687674918311131 -2024-07-03 21:00:00+00:00,0.005484724965157284 -2024-07-03 22:00:00+00:00,0.002172046512214365 -2024-07-03 23:00:00+00:00,-0.0018042348569906608 -2024-07-04 00:00:00+00:00,-0.01654571758379575 -2024-07-04 01:00:00+00:00,-0.03365034687024604 -2024-07-04 02:00:00+00:00,-0.04060525190243425 -2024-07-04 03:00:00+00:00,-0.03841202647859632 -2024-07-04 04:00:00+00:00,-0.03912773845161155 -2024-07-04 05:00:00+00:00,-0.04067847873304231 -2024-07-04 06:00:00+00:00,-0.05180024415315643 -2024-07-04 07:00:00+00:00,-0.06542783536087882 -2024-07-04 08:00:00+00:00,-0.07831067365341937 -2024-07-04 09:00:00+00:00,-0.08679368743071336 -2024-07-04 10:00:00+00:00,-0.10784683284106222 -2024-07-04 11:00:00+00:00,-0.12789876348631424 -2024-07-04 12:00:00+00:00,-0.1313024269435914 -2024-07-04 13:00:00+00:00,-0.130717805128711 -2024-07-04 14:00:00+00:00,-0.13650799823525972 -2024-07-04 15:00:00+00:00,-0.13286774499124476 -2024-07-04 16:00:00+00:00,-0.1295385694297977 -2024-07-04 17:00:00+00:00,-0.12353948807049164 -2024-07-04 18:00:00+00:00,-0.11001269226966315 -2024-07-04 19:00:00+00:00,-0.10039468767050153 -2024-07-04 20:00:00+00:00,-0.08820514346692221 -2024-07-04 21:00:00+00:00,-0.07908564138759289 -2024-07-04 22:00:00+00:00,-0.06904516948625883 -2024-07-04 23:00:00+00:00,-0.05353146449820656 -2024-07-05 00:00:00+00:00,-0.06350184988363594 -2024-07-05 01:00:00+00:00,-0.07537606236644478 -2024-07-05 02:00:00+00:00,-0.08772906573770456 -2024-07-05 03:00:00+00:00,-0.12416826706004258 -2024-07-05 04:00:00+00:00,-0.1493081738845774 -2024-07-05 05:00:00+00:00,-0.1641122812384026 -2024-07-05 06:00:00+00:00,-0.16650168407986143 -2024-07-05 07:00:00+00:00,-0.16663581241343195 -2024-07-05 08:00:00+00:00,-0.16747439372991835 -2024-07-05 09:00:00+00:00,-0.16949351705497406 -2024-07-05 10:00:00+00:00,-0.1608476049358103 -2024-07-05 11:00:00+00:00,-0.15072505150985194 -2024-07-05 12:00:00+00:00,-0.13126464581702635 -2024-07-05 13:00:00+00:00,-0.08899493029340988 -2024-07-05 14:00:00+00:00,-0.07895461265761128 -2024-07-05 15:00:00+00:00,-0.0884563055337253 -2024-07-05 16:00:00+00:00,-0.08268747453314518 -2024-07-05 17:00:00+00:00,-0.08009722261493835 -2024-07-05 18:00:00+00:00,-0.0873658603130707 -2024-07-05 19:00:00+00:00,-0.08823597975961661 -2024-07-05 20:00:00+00:00,-0.08527968041133249 -2024-07-07 21:00:00+00:00,-0.08669819595996842 -2024-07-07 22:00:00+00:00,-0.08474748083759209 -2024-07-07 23:00:00+00:00,-0.09262372989167034 -2024-07-08 00:00:00+00:00,-0.09981311328289166 -2024-07-08 01:00:00+00:00,-0.12026276564597538 -2024-07-08 02:00:00+00:00,-0.13810494039603327 -2024-07-08 03:00:00+00:00,-0.1412564455091001 -2024-07-08 04:00:00+00:00,-0.13812720939526457 -2024-07-08 05:00:00+00:00,-0.12149744082293523 -2024-07-08 06:00:00+00:00,-0.09607528663298126 -2024-07-08 07:00:00+00:00,-0.07003712837436638 -2024-07-08 08:00:00+00:00,-0.033362934543561096 -2024-07-08 09:00:00+00:00,-0.00863685180382845 -2024-07-08 10:00:00+00:00,0.0027768808475627793 -2024-07-08 11:00:00+00:00,0.01767052459612728 -2024-07-08 12:00:00+00:00,0.0037704389336568056 -2024-07-08 13:00:00+00:00,-0.009875160248441262 -2024-07-08 14:00:00+00:00,-0.023963590829879422 -2024-07-08 15:00:00+00:00,-0.0217255966605876 -2024-07-08 16:00:00+00:00,-0.023473885027527785 -2024-07-08 17:00:00+00:00,-0.025214294602449172 -2024-07-08 18:00:00+00:00,-0.02102556370414277 -2024-07-08 19:00:00+00:00,-0.017185098599156845 -2024-07-08 20:00:00+00:00,-0.01055014618245309 -2024-07-08 21:00:00+00:00,-0.007704526526282507 -2024-07-08 22:00:00+00:00,-0.006902921080268243 -2024-07-08 23:00:00+00:00,-0.00021331087521048175 -2024-07-09 00:00:00+00:00,0.007582974167235079 -2024-07-09 01:00:00+00:00,0.02046515789945147 -2024-07-09 02:00:00+00:00,0.032398889793370245 -2024-07-09 03:00:00+00:00,0.045128749370718424 -2024-07-09 04:00:00+00:00,0.04748828323477028 -2024-07-09 05:00:00+00:00,0.04400941907428546 -2024-07-09 06:00:00+00:00,0.03471960334661617 -2024-07-09 07:00:00+00:00,0.03470371235374614 -2024-07-09 08:00:00+00:00,0.04466614861453877 -2024-07-09 09:00:00+00:00,0.05148382775203686 -2024-07-09 10:00:00+00:00,0.054004985734394495 -2024-07-09 11:00:00+00:00,0.06342179058398756 -2024-07-09 12:00:00+00:00,0.07095436657061782 -2024-07-09 13:00:00+00:00,0.06703311565902936 -2024-07-09 14:00:00+00:00,0.09071836790027987 -2024-07-09 15:00:00+00:00,0.11111315677419498 -2024-07-09 16:00:00+00:00,0.11944396678342173 -2024-07-09 17:00:00+00:00,0.12460976987571826 -2024-07-09 18:00:00+00:00,0.12659882050499505 -2024-07-09 19:00:00+00:00,0.12495948614895269 -2024-07-09 20:00:00+00:00,0.12432514172584774 -2024-07-09 21:00:00+00:00,0.12041703550576699 -2024-07-09 22:00:00+00:00,0.11925351028480691 -2024-07-09 23:00:00+00:00,0.11690313000875108 -2024-07-10 00:00:00+00:00,0.12449866534791454 -2024-07-10 01:00:00+00:00,0.13453506864385645 -2024-07-10 02:00:00+00:00,0.13871133825017523 -2024-07-10 03:00:00+00:00,0.13433991029785375 -2024-07-10 04:00:00+00:00,0.13050087232610963 -2024-07-10 05:00:00+00:00,0.1305528981621933 -2024-07-10 06:00:00+00:00,0.11841641814015702 -2024-07-10 07:00:00+00:00,0.11784890338628884 -2024-07-10 08:00:00+00:00,0.11717807099068978 -2024-07-10 09:00:00+00:00,0.1213000334044807 -2024-07-10 10:00:00+00:00,0.12003604346199381 -2024-07-10 11:00:00+00:00,0.11257239272686093 -2024-07-10 12:00:00+00:00,0.10272967613690298 -2024-07-10 13:00:00+00:00,0.10581324945087545 -2024-07-10 14:00:00+00:00,0.11212871857779305 -2024-07-10 15:00:00+00:00,0.12178182152817385 -2024-07-10 16:00:00+00:00,0.12396836291063096 -2024-07-10 17:00:00+00:00,0.12881572880391445 -2024-07-10 18:00:00+00:00,0.13345892739488363 -2024-07-10 19:00:00+00:00,0.1324647504801817 -2024-07-10 20:00:00+00:00,0.12810219306291515 -2024-07-10 21:00:00+00:00,0.1124551501512201 -2024-07-10 22:00:00+00:00,0.10043020028990668 -2024-07-10 23:00:00+00:00,0.09002398372859943 -2024-07-11 00:00:00+00:00,0.07845188831754513 -2024-07-11 01:00:00+00:00,0.06976774646199146 -2024-07-11 02:00:00+00:00,0.06791244732772839 -2024-07-11 03:00:00+00:00,0.06456812524442057 -2024-07-11 04:00:00+00:00,0.06504117061797388 -2024-07-11 05:00:00+00:00,0.06514921276971108 -2024-07-11 06:00:00+00:00,0.06752275903937743 -2024-07-11 07:00:00+00:00,0.06103453735272524 -2024-07-11 08:00:00+00:00,0.04687955412413203 -2024-07-11 09:00:00+00:00,0.03669112505190242 -2024-07-11 10:00:00+00:00,0.028290605122919033 -2024-07-11 11:00:00+00:00,0.020429336174288437 -2024-07-11 12:00:00+00:00,-0.21610504076463144 -2024-07-11 13:00:00+00:00,-0.4025510051382639 -2024-07-11 14:00:00+00:00,-0.5480280312983723 -2024-07-11 15:00:00+00:00,-0.6537661226625744 -2024-07-11 16:00:00+00:00,-0.7301960674902261 -2024-07-11 17:00:00+00:00,-0.7626104565433423 -2024-07-11 18:00:00+00:00,-0.7847401293736596 -2024-07-11 19:00:00+00:00,-0.7863546578945488 -2024-07-11 20:00:00+00:00,-0.7726753892668512 -2024-07-11 21:00:00+00:00,-0.7498021686694472 -2024-07-11 22:00:00+00:00,-0.6976501904957502 -2024-07-11 23:00:00+00:00,-0.7267772709523115 -2024-07-12 00:00:00+00:00,-0.6780560118119752 -2024-07-12 01:00:00+00:00,-0.6096612246015809 -2024-07-12 02:00:00+00:00,-0.5532760069911831 -2024-07-12 03:00:00+00:00,-0.5086975486697156 -2024-07-12 04:00:00+00:00,-0.47802556509967076 -2024-07-12 05:00:00+00:00,-0.45397172537843744 -2024-07-12 06:00:00+00:00,-0.42229453784321436 -2024-07-12 07:00:00+00:00,-0.386441532932821 -2024-07-12 08:00:00+00:00,-0.3631214688812747 -2024-07-12 09:00:00+00:00,-0.33480949312715325 -2024-07-12 10:00:00+00:00,-0.3139974381274442 -2024-07-12 11:00:00+00:00,-0.305201697735896 -2024-07-12 12:00:00+00:00,-0.30767567095924164 -2024-07-12 13:00:00+00:00,-0.34527578478423493 -2024-07-12 14:00:00+00:00,-0.4185832724273837 -2024-07-12 15:00:00+00:00,-0.4567292154819427 -2024-07-12 16:00:00+00:00,-0.4834848208325866 -2024-07-12 17:00:00+00:00,-0.49096018319181667 -2024-07-12 18:00:00+00:00,-0.4958487413571504 -2024-07-12 19:00:00+00:00,-0.5007289650894506 -2024-07-12 20:00:00+00:00,-0.49477781314078584 -2024-07-14 21:00:00+00:00,-0.4624596420910905 -2024-07-14 22:00:00+00:00,-0.4176695121565217 -2024-07-14 23:00:00+00:00,-0.381726595402597 -2024-07-15 00:00:00+00:00,-0.36325591594695084 -2024-07-15 01:00:00+00:00,-0.34959078627716167 -2024-07-15 02:00:00+00:00,-0.3365757611936999 -2024-07-15 03:00:00+00:00,-0.3272497357158386 -2024-07-15 04:00:00+00:00,-0.31445869312528885 -2024-07-15 05:00:00+00:00,-0.30412430143042 -2024-07-15 06:00:00+00:00,-0.2801970794309909 -2024-07-15 07:00:00+00:00,-0.27277606983673763 -2024-07-15 08:00:00+00:00,-0.2724687139456705 -2024-07-15 09:00:00+00:00,-0.2577154440715219 -2024-07-15 10:00:00+00:00,-0.24401740705820885 -2024-07-15 11:00:00+00:00,-0.21750165262264431 -2024-07-15 12:00:00+00:00,-0.20613458971584464 -2024-07-15 13:00:00+00:00,-0.19703350521947982 -2024-07-15 14:00:00+00:00,-0.19387985206455483 -2024-07-15 15:00:00+00:00,-0.18688619387120298 -2024-07-15 16:00:00+00:00,-0.19339673296335036 -2024-07-15 17:00:00+00:00,-0.1798605828735731 -2024-07-15 18:00:00+00:00,-0.1724706010896 -2024-07-15 19:00:00+00:00,-0.15913120680198745 -2024-07-15 20:00:00+00:00,-0.13218859068715005 -2024-07-15 21:00:00+00:00,-0.11180689896542617 -2024-07-15 22:00:00+00:00,-0.0905755803917998 -2024-07-15 23:00:00+00:00,-0.071074398257025 -2024-07-16 00:00:00+00:00,-0.037914504581550545 -2024-07-16 01:00:00+00:00,0.0015003922249832158 -2024-07-16 02:00:00+00:00,0.04552630405657965 -2024-07-16 03:00:00+00:00,0.07455485259634997 -2024-07-16 04:00:00+00:00,0.09716633817484421 -2024-07-16 05:00:00+00:00,0.12079452387678202 -2024-07-16 06:00:00+00:00,0.12564515912617935 -2024-07-16 07:00:00+00:00,0.1219509826506453 -2024-07-16 08:00:00+00:00,0.11535353974070972 -2024-07-16 09:00:00+00:00,0.10408370794812072 -2024-07-16 10:00:00+00:00,0.09590268636762289 -2024-07-16 11:00:00+00:00,0.08138020294853732 -2024-07-16 12:00:00+00:00,0.10186110393985359 -2024-07-16 13:00:00+00:00,0.10725370609614515 -2024-07-16 14:00:00+00:00,0.10642735500951517 -2024-07-16 15:00:00+00:00,0.10345027247714711 -2024-07-16 16:00:00+00:00,0.09722662921132041 -2024-07-16 17:00:00+00:00,0.08565851406902425 -2024-07-16 18:00:00+00:00,0.0665249934980352 -2024-07-16 19:00:00+00:00,0.05332893044669618 -2024-07-16 20:00:00+00:00,0.04397783910511066 -2024-07-16 21:00:00+00:00,0.029529230913226456 -2024-07-16 22:00:00+00:00,0.018909617874982132 -2024-07-16 23:00:00+00:00,0.012447988082925576 -2024-07-17 00:00:00+00:00,0.01697579393717774 -2024-07-17 01:00:00+00:00,0.019212954718312858 -2024-07-17 02:00:00+00:00,0.015960440176826296 -2024-07-17 03:00:00+00:00,0.010518037727763385 -2024-07-17 04:00:00+00:00,-0.006629349236362714 -2024-07-17 05:00:00+00:00,-0.04591428945911957 -2024-07-17 06:00:00+00:00,-0.08215275499591712 -2024-07-17 07:00:00+00:00,-0.16895892879261964 -2024-07-17 08:00:00+00:00,-0.3013346042311298 -2024-07-17 09:00:00+00:00,-0.38765361371451945 -2024-07-17 10:00:00+00:00,-0.42541746885149223 -2024-07-17 11:00:00+00:00,-0.4681051904675826 -2024-07-17 12:00:00+00:00,-0.4919077622127759 -2024-07-17 13:00:00+00:00,-0.5278453011902116 -2024-07-17 14:00:00+00:00,-0.53251607615897 -2024-07-17 15:00:00+00:00,-0.5248419986996282 -2024-07-17 16:00:00+00:00,-0.5335891801921662 -2024-07-17 17:00:00+00:00,-0.5215980639234488 -2024-07-17 18:00:00+00:00,-0.534977125947421 -2024-07-17 19:00:00+00:00,-0.5328213810836075 -2024-07-17 20:00:00+00:00,-0.5229065225027512 -2024-07-17 21:00:00+00:00,-0.5126096216487497 -2024-07-17 22:00:00+00:00,-0.4996578090520529 -2024-07-17 23:00:00+00:00,-0.5225855022135875 -2024-07-18 00:00:00+00:00,-0.5294879911325836 -2024-07-18 01:00:00+00:00,-0.4873803913838515 -2024-07-18 02:00:00+00:00,-0.4442091335592693 -2024-07-18 03:00:00+00:00,-0.3955910924310615 -2024-07-18 04:00:00+00:00,-0.3604904494681591 -2024-07-18 05:00:00+00:00,-0.3535313651015599 -2024-07-18 06:00:00+00:00,-0.336950528459937 -2024-07-18 07:00:00+00:00,-0.31006867036791164 -2024-07-18 08:00:00+00:00,-0.2682430702061538 -2024-07-18 09:00:00+00:00,-0.2305022943505719 -2024-07-18 10:00:00+00:00,-0.20588485122328848 -2024-07-18 11:00:00+00:00,-0.17603489035462871 -2024-07-18 12:00:00+00:00,-0.15558794220561367 -2024-07-18 13:00:00+00:00,-0.12566981539706035 -2024-07-18 14:00:00+00:00,-0.0871565272662167 -2024-07-18 15:00:00+00:00,-0.03867852058516519 -2024-07-18 16:00:00+00:00,0.013464402262826525 -2024-07-18 17:00:00+00:00,0.05759387854240572 -2024-07-18 18:00:00+00:00,0.09893071746756732 -2024-07-18 19:00:00+00:00,0.13689056884803108 -2024-07-18 20:00:00+00:00,0.16459255418772045 -2024-07-18 21:00:00+00:00,0.18394205775373962 -2024-07-18 22:00:00+00:00,0.1899857764136641 -2024-07-18 23:00:00+00:00,0.18529654429349307 -2024-07-19 00:00:00+00:00,0.1824625699054252 -2024-07-19 01:00:00+00:00,0.1977070336195368 -2024-07-19 02:00:00+00:00,0.2042865190522889 -2024-07-19 03:00:00+00:00,0.20392245186656055 -2024-07-19 04:00:00+00:00,0.20945006359434615 -2024-07-19 05:00:00+00:00,0.23468736550537983 -2024-07-19 06:00:00+00:00,0.2111019198173949 -2024-07-19 07:00:00+00:00,0.19460503878184454 -2024-07-19 08:00:00+00:00,0.17491540220095203 -2024-07-19 09:00:00+00:00,0.1660313233731756 -2024-07-19 10:00:00+00:00,0.16419871091980554 -2024-07-19 11:00:00+00:00,0.16192873009825348 -2024-07-19 12:00:00+00:00,0.1747379618751097 -2024-07-19 13:00:00+00:00,0.1696997478897515 -2024-07-19 14:00:00+00:00,0.1502572754181415 -2024-07-19 15:00:00+00:00,0.13722106735158945 -2024-07-19 16:00:00+00:00,0.12743804317008767 -2024-07-19 17:00:00+00:00,0.11824122316269836 -2024-07-19 18:00:00+00:00,0.11583070921773242 -2024-07-19 19:00:00+00:00,0.11357938679111612 -2024-07-19 20:00:00+00:00,0.10836733204902771 -2024-07-21 21:00:00+00:00,0.09898048195708498 -2024-07-21 22:00:00+00:00,0.07789414092258085 -2024-07-21 23:00:00+00:00,0.07301003736648681 -2024-07-22 00:00:00+00:00,0.0685907535277579 -2024-07-22 01:00:00+00:00,0.07360025190453712 -2024-07-22 02:00:00+00:00,0.07724472781902136 -2024-07-22 03:00:00+00:00,0.07355598697915866 -2024-07-22 04:00:00+00:00,0.06703568020171247 -2024-07-22 05:00:00+00:00,0.028775773977798735 -2024-07-22 06:00:00+00:00,-0.0486731642201903 -2024-07-22 07:00:00+00:00,-0.07992035894255878 -2024-07-22 08:00:00+00:00,-0.10444827094511311 -2024-07-22 09:00:00+00:00,-0.13093084278818878 -2024-07-22 10:00:00+00:00,-0.13806185100952462 -2024-07-22 11:00:00+00:00,-0.14103843179822206 -2024-07-22 12:00:00+00:00,-0.14694842037286548 -2024-07-22 13:00:00+00:00,-0.14432008184448364 -2024-07-22 14:00:00+00:00,-0.1393398156830017 -2024-07-22 15:00:00+00:00,-0.11709784287066327 -2024-07-22 16:00:00+00:00,-0.09945415656045498 -2024-07-22 17:00:00+00:00,-0.07923241763862165 -2024-07-22 18:00:00+00:00,-0.0680702869432821 -2024-07-22 19:00:00+00:00,-0.0577515772880588 -2024-07-22 20:00:00+00:00,-0.05124259875719872 -2024-07-22 21:00:00+00:00,-0.053137358042050664 -2024-07-22 22:00:00+00:00,-0.04707613117926712 -2024-07-22 23:00:00+00:00,-0.0527196015155198 -2024-07-23 00:00:00+00:00,-0.07632380646253978 -2024-07-23 01:00:00+00:00,-0.09003851054967527 -2024-07-23 02:00:00+00:00,-0.10566070309030806 -2024-07-23 03:00:00+00:00,-0.1449355182934653 -2024-07-23 04:00:00+00:00,-0.17182107985388484 -2024-07-23 05:00:00+00:00,-0.1901294704797749 -2024-07-23 06:00:00+00:00,-0.18060892785928218 -2024-07-23 07:00:00+00:00,-0.21464714742600677 -2024-07-23 08:00:00+00:00,-0.24142185338371291 -2024-07-23 09:00:00+00:00,-0.26507244234335303 -2024-07-23 10:00:00+00:00,-0.27220526910838316 -2024-07-23 11:00:00+00:00,-0.26615599926208233 -2024-07-23 12:00:00+00:00,-0.26827516392080497 -2024-07-23 13:00:00+00:00,-0.2620918865004853 -2024-07-23 14:00:00+00:00,-0.263115337108502 -2024-07-23 15:00:00+00:00,-0.25732897690559753 -2024-07-23 16:00:00+00:00,-0.2690082790040833 -2024-07-23 17:00:00+00:00,-0.28275122761110083 -2024-07-23 18:00:00+00:00,-0.2952421277720134 -2024-07-23 19:00:00+00:00,-0.30046728171268455 -2024-07-23 20:00:00+00:00,-0.3040885016751247 -2024-07-23 21:00:00+00:00,-0.3048961412278004 -2024-07-23 22:00:00+00:00,-0.2981454754502124 -2024-07-23 23:00:00+00:00,-0.27948731308373453 -2024-07-24 00:00:00+00:00,-0.2564190968355433 -2024-07-24 01:00:00+00:00,-0.2815318151956774 -2024-07-24 02:00:00+00:00,-0.2973605054755808 -2024-07-24 03:00:00+00:00,-0.3224871373988947 -2024-07-24 04:00:00+00:00,-0.37407652551658543 -2024-07-24 05:00:00+00:00,-0.4083180515288234 -2024-07-24 06:00:00+00:00,-0.4343213206092855 -2024-07-24 07:00:00+00:00,-0.4492660890272191 -2024-07-24 08:00:00+00:00,-0.4342368780836807 -2024-07-24 09:00:00+00:00,-0.4242939136341022 -2024-07-24 10:00:00+00:00,-0.4285802644085095 -2024-07-24 11:00:00+00:00,-0.45704871285678905 -2024-07-24 12:00:00+00:00,-0.5042185945429765 -2024-07-24 13:00:00+00:00,-0.5651041873792337 -2024-07-24 14:00:00+00:00,-0.6198481226511774 -2024-07-24 15:00:00+00:00,-0.6468201731047145 -2024-07-24 16:00:00+00:00,-0.6533216921425833 -2024-07-24 17:00:00+00:00,-0.6227308971762966 -2024-07-24 18:00:00+00:00,-0.577467671522669 -2024-07-24 19:00:00+00:00,-0.5343073930587252 -2024-07-24 20:00:00+00:00,-0.5040558085863154 -2024-07-24 21:00:00+00:00,-0.4829064952978115 -2024-07-24 22:00:00+00:00,-0.4762293239715234 -2024-07-24 23:00:00+00:00,-0.4403628299241973 -2024-07-25 00:00:00+00:00,-0.46085075817859433 -2024-07-25 01:00:00+00:00,-0.5021236278003869 -2024-07-25 02:00:00+00:00,-0.5464471167884142 -2024-07-25 03:00:00+00:00,-0.6006327891660135 -2024-07-25 04:00:00+00:00,-0.611990420924343 -2024-07-25 05:00:00+00:00,-0.6043419509808814 -2024-07-25 06:00:00+00:00,-0.5827673155439186 -2024-07-25 07:00:00+00:00,-0.6114736004233237 -2024-07-25 08:00:00+00:00,-0.5861526144977631 -2024-07-25 09:00:00+00:00,-0.5917028094051204 -2024-07-25 10:00:00+00:00,-0.5969663204077165 -2024-07-25 11:00:00+00:00,-0.553364041900835 -2024-07-25 12:00:00+00:00,-0.4491586779207637 -2024-07-25 13:00:00+00:00,-0.3518677667919974 -2024-07-25 14:00:00+00:00,-0.2725102977675533 -2024-07-25 15:00:00+00:00,-0.18050646536644877 -2024-07-25 16:00:00+00:00,-0.10269712128732067 -2024-07-25 17:00:00+00:00,-0.03984709819070531 -2024-07-25 18:00:00+00:00,-0.00985523282221834 -2024-07-25 19:00:00+00:00,0.024284892270713954 -2024-07-25 20:00:00+00:00,0.049479749340434864 -2024-07-25 21:00:00+00:00,0.07144746072734165 -2024-07-25 22:00:00+00:00,0.08505239174868962 -2024-07-25 23:00:00+00:00,0.0787878517597278 -2024-07-26 00:00:00+00:00,0.0903721825175694 -2024-07-26 01:00:00+00:00,0.07145537974926697 -2024-07-26 02:00:00+00:00,0.08270340744078908 -2024-07-26 03:00:00+00:00,0.07741108261291174 -2024-07-26 04:00:00+00:00,0.0663198186296654 -2024-07-26 05:00:00+00:00,0.0541620497694737 -2024-07-26 06:00:00+00:00,0.04338132431189479 -2024-07-26 07:00:00+00:00,0.05693623941704118 -2024-07-26 08:00:00+00:00,0.0975398197482491 -2024-07-26 09:00:00+00:00,0.12058205710459902 -2024-07-26 10:00:00+00:00,0.1661384304509852 -2024-07-26 11:00:00+00:00,0.20336762973431632 -2024-07-26 12:00:00+00:00,0.19870825447500806 -2024-07-26 13:00:00+00:00,0.1596878521553151 -2024-07-26 14:00:00+00:00,0.10320533920219077 -2024-07-26 15:00:00+00:00,0.08729219840759583 -2024-07-26 16:00:00+00:00,0.06704922828751592 -2024-07-26 17:00:00+00:00,0.04627710949500852 -2024-07-26 18:00:00+00:00,0.02947528298241764 -2024-07-26 19:00:00+00:00,0.018129404284707107 -2024-07-26 20:00:00+00:00,0.008554947706358007 -2024-07-28 21:00:00+00:00,-0.00502680542717826 -2024-07-28 22:00:00+00:00,0.011671556709529796 -2024-07-28 23:00:00+00:00,0.03491190816467338 -2024-07-29 00:00:00+00:00,0.01323512473877031 -2024-07-29 01:00:00+00:00,-0.020970162842672835 -2024-07-29 02:00:00+00:00,-0.04928518686980965 -2024-07-29 03:00:00+00:00,-0.06324954829423746 -2024-07-29 04:00:00+00:00,-0.08144670270607435 -2024-07-29 05:00:00+00:00,-0.09708895527708705 -2024-07-29 06:00:00+00:00,-0.11087033315718031 -2024-07-29 07:00:00+00:00,-0.09934440034922432 -2024-07-29 08:00:00+00:00,-0.08359793560967432 -2024-07-29 09:00:00+00:00,-0.06919146966714607 -2024-07-29 10:00:00+00:00,-0.05871128729435782 -2024-07-29 11:00:00+00:00,-0.03754634341484575 -2024-07-29 12:00:00+00:00,-0.01638809572105515 -2024-07-29 13:00:00+00:00,0.023270224787978577 -2024-07-29 14:00:00+00:00,0.043945316642208354 -2024-07-29 15:00:00+00:00,0.0531016385605767 -2024-07-29 16:00:00+00:00,0.05783549033637314 -2024-07-29 17:00:00+00:00,0.06559180736488202 -2024-07-29 18:00:00+00:00,0.07012348814373581 -2024-07-29 19:00:00+00:00,0.073592770940337 -2024-07-29 20:00:00+00:00,0.07762605209501316 -2024-07-29 21:00:00+00:00,0.07926322619522352 -2024-07-29 22:00:00+00:00,0.07972239990684216 -2024-07-29 23:00:00+00:00,0.06457534341413407 -2024-07-30 00:00:00+00:00,0.061863828003453136 -2024-07-30 01:00:00+00:00,0.06190621532553564 -2024-07-30 02:00:00+00:00,0.06322824282489137 -2024-07-30 03:00:00+00:00,0.06761184564831524 -2024-07-30 04:00:00+00:00,0.09947236813789573 -2024-07-30 05:00:00+00:00,0.14132921774498186 -2024-07-30 06:00:00+00:00,0.2033044792007388 -2024-07-30 07:00:00+00:00,0.23709929111964811 -2024-07-30 08:00:00+00:00,0.24260691537381263 -2024-07-30 09:00:00+00:00,0.25548488975672967 -2024-07-30 10:00:00+00:00,0.25675982820763465 -2024-07-30 11:00:00+00:00,0.26735689020526365 -2024-07-30 12:00:00+00:00,0.2766012334774075 -2024-07-30 13:00:00+00:00,0.23330718637180325 -2024-07-30 14:00:00+00:00,0.2169109137235523 -2024-07-30 15:00:00+00:00,0.1318721141989272 -2024-07-30 16:00:00+00:00,0.02473491099070202 -2024-07-30 17:00:00+00:00,-0.0620390791124521 -2024-07-30 18:00:00+00:00,-0.12485016447405428 -2024-07-30 19:00:00+00:00,-0.1713619816152061 -2024-07-30 20:00:00+00:00,-0.24685286989824817 -2024-07-30 21:00:00+00:00,-0.30884883228642934 -2024-07-30 22:00:00+00:00,-0.3385055112824489 -2024-07-30 23:00:00+00:00,-0.37591167845846485 -2024-07-31 00:00:00+00:00,-0.42335056523785397 -2024-07-31 01:00:00+00:00,-0.45186421652957165 -2024-07-31 02:00:00+00:00,-0.43235936535890573 -2024-07-31 03:00:00+00:00,-0.35623038663135276 -2024-07-31 04:00:00+00:00,-0.37500990031622905 -2024-07-31 05:00:00+00:00,-0.3596034235700074 -2024-07-31 06:00:00+00:00,-0.3952866292694637 -2024-07-31 07:00:00+00:00,-0.5227616579027483 -2024-07-31 08:00:00+00:00,-0.6165183138643613 -2024-07-31 09:00:00+00:00,-0.7244300151008076 -2024-07-31 10:00:00+00:00,-0.7922647666097191 -2024-07-31 11:00:00+00:00,-0.8619898309929113 -2024-07-31 12:00:00+00:00,-0.8952275329342569 -2024-07-31 13:00:00+00:00,-0.9519895212594349 -2024-07-31 14:00:00+00:00,-0.9367917682804716 -2024-07-31 15:00:00+00:00,-0.9184369274191226 -2024-07-31 16:00:00+00:00,-0.8793106341241241 -2024-07-31 17:00:00+00:00,-0.8170970352847178 -2024-07-31 18:00:00+00:00,-0.7899143349372366 -2024-07-31 19:00:00+00:00,-0.8114673265745012 -2024-07-31 20:00:00+00:00,-0.8037898433664168 -2024-07-31 21:00:00+00:00,-0.7965919309570211 -2024-07-31 22:00:00+00:00,-0.7589002111951686 -2024-07-31 23:00:00+00:00,-0.7514334767812159 -2024-08-01 00:00:00+00:00,-0.7645414942429056 -2024-08-01 01:00:00+00:00,-0.7874775022913241 -2024-08-01 02:00:00+00:00,-0.7491683632717638 -2024-08-01 03:00:00+00:00,-0.7266507373929585 -2024-08-01 04:00:00+00:00,-0.6913146973181767 -2024-08-01 05:00:00+00:00,-0.6496888574041293 -2024-08-01 06:00:00+00:00,-0.5885325571021838 -2024-08-01 07:00:00+00:00,-0.5470735462433822 -2024-08-01 08:00:00+00:00,-0.5214395799438023 -2024-08-01 09:00:00+00:00,-0.47531109261572624 -2024-08-01 10:00:00+00:00,-0.42713280661664044 -2024-08-01 11:00:00+00:00,-0.34511126850776463 -2024-08-01 12:00:00+00:00,-0.2501130689238096 -2024-08-01 13:00:00+00:00,-0.1976431055013279 -2024-08-01 14:00:00+00:00,-0.1942476286831436 -2024-08-01 15:00:00+00:00,-0.1884962137551156 -2024-08-01 16:00:00+00:00,-0.19508417968043545 -2024-08-01 17:00:00+00:00,-0.20998832187623862 -2024-08-01 18:00:00+00:00,-0.23458856636725045 -2024-08-01 19:00:00+00:00,-0.23363903066800162 -2024-08-01 20:00:00+00:00,-0.2646143057677932 -2024-08-01 21:00:00+00:00,-0.2872232614070356 -2024-08-01 22:00:00+00:00,-0.30286021227644255 -2024-08-01 23:00:00+00:00,-0.31971696623648427 -2024-08-02 00:00:00+00:00,-0.31539998468113595 -2024-08-02 01:00:00+00:00,-0.29932941526104173 -2024-08-02 02:00:00+00:00,-0.277264673803586 -2024-08-02 03:00:00+00:00,-0.2632793102821438 -2024-08-02 04:00:00+00:00,-0.26766936096728955 -2024-08-02 05:00:00+00:00,-0.29406419428505615 -2024-08-02 06:00:00+00:00,-0.318173374869815 -2024-08-02 07:00:00+00:00,-0.30487802205308867 -2024-08-02 08:00:00+00:00,-0.3018360445237249 -2024-08-02 09:00:00+00:00,-0.3108506086300906 -2024-08-02 10:00:00+00:00,-0.3217098755666541 -2024-08-02 11:00:00+00:00,-0.3094804137583367 -2024-08-02 12:00:00+00:00,-0.4211356170280851 -2024-08-02 13:00:00+00:00,-0.533171623954189 -2024-08-02 14:00:00+00:00,-0.6471010125834198 -2024-08-02 15:00:00+00:00,-0.7044177585170814 -2024-08-02 16:00:00+00:00,-0.7519859468295635 -2024-08-02 17:00:00+00:00,-0.7814027787344457 -2024-08-02 18:00:00+00:00,-0.8230666467085541 -2024-08-02 19:00:00+00:00,-0.8389905700875886 -2024-08-02 20:00:00+00:00,-0.8450963155260354 -2024-08-04 21:00:00+00:00,-0.8451153888407532 -2024-08-04 22:00:00+00:00,-0.848661780881173 -2024-08-04 23:00:00+00:00,-0.899683463751785 -2024-08-05 00:00:00+00:00,-0.935467591770049 -2024-08-05 01:00:00+00:00,-0.9852304545561879 -2024-08-05 02:00:00+00:00,-1.0109166809036765 -2024-08-05 03:00:00+00:00,-1.080945300624336 -2024-08-05 04:00:00+00:00,-1.2191392870080335 -2024-08-05 05:00:00+00:00,-1.3544406804766425 -2024-08-05 06:00:00+00:00,-1.4365549838440757 -2024-08-05 07:00:00+00:00,-1.4272422017661768 -2024-08-05 08:00:00+00:00,-1.4896752961294908 -2024-08-05 09:00:00+00:00,-1.5303089136946824 -2024-08-05 10:00:00+00:00,-1.5377647802919796 -2024-08-05 11:00:00+00:00,-1.5316659318392283 -2024-08-05 12:00:00+00:00,-1.5142190741416357 -2024-08-05 13:00:00+00:00,-1.4445245950436174 -2024-08-05 14:00:00+00:00,-1.3793619735845368 -2024-08-05 15:00:00+00:00,-1.208566620890565 -2024-08-05 16:00:00+00:00,-1.0434299015902582 -2024-08-05 17:00:00+00:00,-0.9154802793283068 -2024-08-05 18:00:00+00:00,-0.8490755293586574 -2024-08-05 19:00:00+00:00,-0.7650367591048735 -2024-08-05 20:00:00+00:00,-0.6542595258962933 -2024-08-05 21:00:00+00:00,-0.569505174796717 -2024-08-05 22:00:00+00:00,-0.4414895985814269 -2024-08-05 23:00:00+00:00,-0.2535173995685227 -2024-08-06 00:00:00+00:00,-0.16414297128696376 -2024-08-06 01:00:00+00:00,-0.11107590672125411 -2024-08-06 02:00:00+00:00,-0.028187740389455485 -2024-08-06 03:00:00+00:00,0.0404247858293445 -2024-08-06 04:00:00+00:00,0.10704229456683834 -2024-08-06 05:00:00+00:00,0.18593587212964735 -2024-08-06 06:00:00+00:00,0.2273603460363347 -2024-08-06 07:00:00+00:00,0.22978282164942243 -2024-08-06 08:00:00+00:00,0.1992274071394604 -2024-08-06 09:00:00+00:00,0.15945632845341606 -2024-08-06 10:00:00+00:00,0.13788689269136967 -2024-08-06 11:00:00+00:00,0.14007737016908095 -2024-08-06 12:00:00+00:00,0.09616304488613991 -2024-08-06 13:00:00+00:00,0.044786715449248504 -2024-08-06 14:00:00+00:00,0.012001423549151014 -2024-08-06 15:00:00+00:00,0.03475936951289782 -2024-08-06 16:00:00+00:00,0.07293429162677967 -2024-08-06 17:00:00+00:00,0.09922023582851125 -2024-08-06 18:00:00+00:00,0.0922793632136063 -2024-08-06 19:00:00+00:00,0.06441082354993455 -2024-08-06 20:00:00+00:00,0.009614550895491902 -2024-08-06 21:00:00+00:00,-0.015557623416668775 -2024-08-06 22:00:00+00:00,-0.03462348507525803 -2024-08-06 23:00:00+00:00,-0.03512667030548755 -2024-08-07 00:00:00+00:00,-0.0359183206106195 -2024-08-07 01:00:00+00:00,0.12437219063875204 -2024-08-07 02:00:00+00:00,0.2561966972798473 -2024-08-07 03:00:00+00:00,0.37985183271339906 -2024-08-07 04:00:00+00:00,0.5116517042614817 -2024-08-07 05:00:00+00:00,0.5572310713802153 -2024-08-07 06:00:00+00:00,0.5556396231526719 -2024-08-07 07:00:00+00:00,0.556356982824525 -2024-08-07 08:00:00+00:00,0.5916613873215226 -2024-08-07 09:00:00+00:00,0.642493483297045 -2024-08-07 10:00:00+00:00,0.6443648578271848 -2024-08-07 11:00:00+00:00,0.6392855659881036 -2024-08-07 12:00:00+00:00,0.6114281656470553 -2024-08-07 13:00:00+00:00,0.6006632147741868 -2024-08-07 14:00:00+00:00,0.5895321197624241 -2024-08-07 15:00:00+00:00,0.5858991294282703 -2024-08-07 16:00:00+00:00,0.5573901013381999 -2024-08-07 17:00:00+00:00,0.5168956764660493 -2024-08-07 18:00:00+00:00,0.46436134727602507 -2024-08-07 19:00:00+00:00,0.41830896574793996 -2024-08-07 20:00:00+00:00,0.36597380682141534 -2024-08-07 21:00:00+00:00,0.32335254205762 -2024-08-07 22:00:00+00:00,0.2691238868488597 -2024-08-07 23:00:00+00:00,0.20442481069559904 -2024-08-08 00:00:00+00:00,0.12922838566728956 -2024-08-08 01:00:00+00:00,0.09843656109336507 -2024-08-08 02:00:00+00:00,0.09058044142898325 -2024-08-08 03:00:00+00:00,0.06664096942492392 -2024-08-08 04:00:00+00:00,0.027501599969582458 -2024-08-08 05:00:00+00:00,-0.017197354446608415 -2024-08-08 06:00:00+00:00,-0.03367434318354867 -2024-08-08 07:00:00+00:00,-0.07228538173038146 -2024-08-08 08:00:00+00:00,-0.0758662765265683 -2024-08-08 09:00:00+00:00,-0.08315197727540635 -2024-08-08 10:00:00+00:00,-0.08966753225212187 -2024-08-08 11:00:00+00:00,-0.08952253934498344 -2024-08-08 12:00:00+00:00,-0.01635455300069566 -2024-08-08 13:00:00+00:00,0.04642212636306908 -2024-08-08 14:00:00+00:00,0.10815972841317034 -2024-08-08 15:00:00+00:00,0.13934263909729339 -2024-08-08 16:00:00+00:00,0.17455041653815329 -2024-08-08 17:00:00+00:00,0.20931946819081304 -2024-08-08 18:00:00+00:00,0.2222887312441344 -2024-08-08 19:00:00+00:00,0.2248112167560805 -2024-08-08 20:00:00+00:00,0.23467571433090484 -2024-08-08 21:00:00+00:00,0.2347043011564267 -2024-08-08 22:00:00+00:00,0.23707764637691753 -2024-08-08 23:00:00+00:00,0.2691014621892407 -2024-08-09 00:00:00+00:00,0.27485115876942245 -2024-08-09 01:00:00+00:00,0.2441553237963774 -2024-08-09 02:00:00+00:00,0.2494716317372081 -2024-08-09 03:00:00+00:00,0.2301328800471083 -2024-08-09 04:00:00+00:00,0.18499701612984154 -2024-08-09 05:00:00+00:00,0.15765698581137144 -2024-08-09 06:00:00+00:00,0.14927768016804066 -2024-08-09 07:00:00+00:00,0.1412508432090931 -2024-08-09 08:00:00+00:00,0.1336714029339987 -2024-08-09 09:00:00+00:00,0.12844339242863612 -2024-08-09 10:00:00+00:00,0.11530528285970831 -2024-08-09 11:00:00+00:00,0.0936465898030292 -2024-08-09 12:00:00+00:00,0.056624575701022195 -2024-08-09 13:00:00+00:00,0.013332404245630869 -2024-08-09 14:00:00+00:00,-0.02584331303989984 -2024-08-09 15:00:00+00:00,-0.05983177173322929 -2024-08-09 16:00:00+00:00,-0.07652550123106039 -2024-08-09 17:00:00+00:00,-0.0821912380030767 -2024-08-09 18:00:00+00:00,-0.0920753196563453 -2024-08-09 19:00:00+00:00,-0.0963768044883011 -2024-08-09 20:00:00+00:00,-0.10040358827984619 -2024-08-11 21:00:00+00:00,-0.09100686802216273 -2024-08-11 22:00:00+00:00,-0.06465893200234518 -2024-08-11 23:00:00+00:00,-0.03665802563924103 -2024-08-12 00:00:00+00:00,-0.03145323546141299 -2024-08-12 01:00:00+00:00,-0.018401582353874346 -2024-08-12 02:00:00+00:00,-0.010279613880982197 -2024-08-12 03:00:00+00:00,0.017340499468218695 -2024-08-12 04:00:00+00:00,0.032640126742165876 -2024-08-12 05:00:00+00:00,0.05023795293411126 -2024-08-12 06:00:00+00:00,0.06552698538720847 -2024-08-12 07:00:00+00:00,0.07612064915662131 -2024-08-12 08:00:00+00:00,0.09488069172061842 -2024-08-12 09:00:00+00:00,0.10538635821126263 -2024-08-12 10:00:00+00:00,0.12015420109469233 -2024-08-12 11:00:00+00:00,0.14264007000795687 -2024-08-12 12:00:00+00:00,0.17027839955528634 -2024-08-12 13:00:00+00:00,0.19461864749629854 -2024-08-12 14:00:00+00:00,0.21944797397438265 -2024-08-12 15:00:00+00:00,0.209836215813624 -2024-08-12 16:00:00+00:00,0.18499696123396348 -2024-08-12 17:00:00+00:00,0.14938789327285917 -2024-08-12 18:00:00+00:00,0.12911995805237098 -2024-08-12 19:00:00+00:00,0.10267505201863969 -2024-08-12 20:00:00+00:00,0.08182305951905278 -2024-08-12 21:00:00+00:00,0.06471311599918295 -2024-08-12 22:00:00+00:00,0.04562454924149506 -2024-08-12 23:00:00+00:00,0.02137425278755245 -2024-08-13 00:00:00+00:00,0.021276450690749016 -2024-08-13 01:00:00+00:00,0.02550436698879821 -2024-08-13 02:00:00+00:00,0.0328338812736888 -2024-08-13 03:00:00+00:00,0.046658043391232695 -2024-08-13 04:00:00+00:00,0.07546434655009193 -2024-08-13 05:00:00+00:00,0.0920679818278245 -2024-08-13 06:00:00+00:00,0.12277375896192666 -2024-08-13 07:00:00+00:00,0.14303869820989235 -2024-08-13 08:00:00+00:00,0.15632845177211152 -2024-08-13 09:00:00+00:00,0.16878819086764452 -2024-08-13 10:00:00+00:00,0.1477490896932636 -2024-08-13 11:00:00+00:00,0.11506319458865732 -2024-08-13 12:00:00+00:00,0.09261056230340614 -2024-08-13 13:00:00+00:00,0.047798835443984444 -2024-08-13 14:00:00+00:00,0.005922994338249055 -2024-08-13 15:00:00+00:00,-0.029266601905163725 -2024-08-13 16:00:00+00:00,-0.07509017045020983 -2024-08-13 17:00:00+00:00,-0.09705347719690849 -2024-08-13 18:00:00+00:00,-0.1308645753352664 -2024-08-13 19:00:00+00:00,-0.1434987453828569 -2024-08-13 20:00:00+00:00,-0.14992724048698847 -2024-08-13 21:00:00+00:00,-0.1539731869020784 -2024-08-13 22:00:00+00:00,-0.15690407726256694 -2024-08-13 23:00:00+00:00,-0.14799917281837338 -2024-08-14 00:00:00+00:00,-0.12744975568608652 -2024-08-14 01:00:00+00:00,-0.1280854003182128 -2024-08-14 02:00:00+00:00,-0.15951121420019376 -2024-08-14 03:00:00+00:00,-0.15718658160972154 -2024-08-14 04:00:00+00:00,-0.1463147289350104 -2024-08-14 05:00:00+00:00,-0.11881895001397424 -2024-08-14 06:00:00+00:00,-0.08746677051729534 -2024-08-14 07:00:00+00:00,-0.044675555578066906 -2024-08-14 08:00:00+00:00,-0.034093543240174995 -2024-08-14 09:00:00+00:00,-0.026371527382991644 -2024-08-14 10:00:00+00:00,-0.038528107239812925 -2024-08-14 11:00:00+00:00,-0.04569889650380787 -2024-08-14 12:00:00+00:00,-0.017052661351641518 -2024-08-14 13:00:00+00:00,-0.0227337858181329 -2024-08-14 14:00:00+00:00,-0.04272060657316956 -2024-08-14 15:00:00+00:00,-0.04943711164821707 -2024-08-14 16:00:00+00:00,-0.04799349469391245 -2024-08-14 17:00:00+00:00,-0.025255692297321275 -2024-08-14 18:00:00+00:00,-0.004361337800872889 -2024-08-14 19:00:00+00:00,0.019716704471846924 -2024-08-14 20:00:00+00:00,0.03644204580263022 -2024-08-14 21:00:00+00:00,0.04386569447146371 -2024-08-14 22:00:00+00:00,0.05221338850577695 -2024-08-14 23:00:00+00:00,0.05696199906250854 -2024-08-15 00:00:00+00:00,0.056603081418217016 -2024-08-15 01:00:00+00:00,0.07897027606821894 -2024-08-15 02:00:00+00:00,0.091127248787501 -2024-08-15 03:00:00+00:00,0.09474735848166915 -2024-08-15 04:00:00+00:00,0.08573465401437375 -2024-08-15 05:00:00+00:00,0.06716647069652026 -2024-08-15 06:00:00+00:00,0.053927392932422435 -2024-08-15 07:00:00+00:00,0.046928942912899174 -2024-08-15 08:00:00+00:00,0.0505634456849009 -2024-08-15 09:00:00+00:00,0.055945880099585565 -2024-08-15 10:00:00+00:00,0.04819769190484635 -2024-08-15 11:00:00+00:00,0.04046110352544474 -2024-08-15 12:00:00+00:00,0.1725824533304774 -2024-08-15 13:00:00+00:00,0.2838617735100968 -2024-08-15 14:00:00+00:00,0.364381334636505 -2024-08-15 15:00:00+00:00,0.4135020012211328 -2024-08-15 16:00:00+00:00,0.45764495081058953 -2024-08-15 17:00:00+00:00,0.4912424759782539 -2024-08-15 18:00:00+00:00,0.5050269475372033 -2024-08-15 19:00:00+00:00,0.5130230212938045 -2024-08-15 20:00:00+00:00,0.5325068623134541 -2024-08-15 21:00:00+00:00,0.5432989672455051 -2024-08-15 22:00:00+00:00,0.542052907380338 -2024-08-15 23:00:00+00:00,0.5328253344674181 -2024-08-16 00:00:00+00:00,0.5131419045844439 -2024-08-16 01:00:00+00:00,0.47336552043583424 -2024-08-16 02:00:00+00:00,0.43313769216629794 -2024-08-16 03:00:00+00:00,0.4012311293663231 -2024-08-16 04:00:00+00:00,0.36599685789209957 -2024-08-16 05:00:00+00:00,0.33892730778671876 -2024-08-16 06:00:00+00:00,0.32510441459550066 -2024-08-16 07:00:00+00:00,0.30682033115968466 -2024-08-16 08:00:00+00:00,0.264827726403297 -2024-08-16 09:00:00+00:00,0.2261973069913097 -2024-08-16 10:00:00+00:00,0.16750740794213925 -2024-08-16 11:00:00+00:00,0.09552520888146887 -2024-08-16 12:00:00+00:00,0.008923483590280057 -2024-08-16 13:00:00+00:00,-0.05256702464174623 -2024-08-16 14:00:00+00:00,-0.08147762767660538 -2024-08-16 15:00:00+00:00,-0.09251040637713004 -2024-08-16 16:00:00+00:00,-0.11086930243735083 -2024-08-16 17:00:00+00:00,-0.1443314654197252 -2024-08-16 18:00:00+00:00,-0.17480659065753912 -2024-08-16 19:00:00+00:00,-0.19429785298737556 -2024-08-16 20:00:00+00:00,-0.21469359580430591 -2024-08-18 21:00:00+00:00,-0.22240315389959164 -2024-08-18 22:00:00+00:00,-0.21170946689275638 -2024-08-18 23:00:00+00:00,-0.1928615985325166 -2024-08-19 00:00:00+00:00,-0.18722453245504767 -2024-08-19 01:00:00+00:00,-0.21322142333499983 -2024-08-19 02:00:00+00:00,-0.2362648971203214 -2024-08-19 03:00:00+00:00,-0.32262357433538114 -2024-08-19 04:00:00+00:00,-0.40790602999578596 -2024-08-19 05:00:00+00:00,-0.5310999080203658 -2024-08-19 06:00:00+00:00,-0.5858290157829913 -2024-08-19 07:00:00+00:00,-0.6038437980382128 -2024-08-19 08:00:00+00:00,-0.6129112907106844 -2024-08-19 09:00:00+00:00,-0.5976346961867023 -2024-08-19 10:00:00+00:00,-0.5726329802925534 -2024-08-19 11:00:00+00:00,-0.5712483541043412 -2024-08-19 12:00:00+00:00,-0.5496136942235239 -2024-08-19 13:00:00+00:00,-0.5122006280009828 -2024-08-19 14:00:00+00:00,-0.47944451482945283 -2024-08-19 15:00:00+00:00,-0.4436903576172142 -2024-08-19 16:00:00+00:00,-0.4044790907686888 -2024-08-19 17:00:00+00:00,-0.36603745331450455 -2024-08-19 18:00:00+00:00,-0.3224146609692866 -2024-08-19 19:00:00+00:00,-0.28615846000403167 -2024-08-19 20:00:00+00:00,-0.25696447394858524 -2024-08-19 21:00:00+00:00,-0.23204081565503998 -2024-08-19 22:00:00+00:00,-0.20691782621528887 -2024-08-19 23:00:00+00:00,-0.17849476809340104 -2024-08-20 00:00:00+00:00,-0.18338844314780545 -2024-08-20 01:00:00+00:00,-0.18561125473576112 -2024-08-20 02:00:00+00:00,-0.13226888484331312 -2024-08-20 03:00:00+00:00,-0.0836243627356339 -2024-08-20 04:00:00+00:00,-0.05564789256311542 -2024-08-20 05:00:00+00:00,-0.00485552541866241 -2024-08-20 06:00:00+00:00,0.01584909870209117 -2024-08-20 07:00:00+00:00,-0.0068791769719780405 -2024-08-20 08:00:00+00:00,-0.027639174414929357 -2024-08-20 09:00:00+00:00,-0.04709912483986045 -2024-08-20 10:00:00+00:00,-0.06428171705493924 -2024-08-20 11:00:00+00:00,-0.08275489651626344 -2024-08-20 12:00:00+00:00,-0.11231929755842884 -2024-08-20 13:00:00+00:00,-0.1390683946990805 -2024-08-20 14:00:00+00:00,-0.1993639164508636 -2024-08-20 15:00:00+00:00,-0.2366739244734788 -2024-08-20 16:00:00+00:00,-0.28706012535189984 -2024-08-20 17:00:00+00:00,-0.3160058938423731 -2024-08-20 18:00:00+00:00,-0.3432995199378581 -2024-08-20 19:00:00+00:00,-0.36428114129540745 -2024-08-20 20:00:00+00:00,-0.3822321991534068 -2024-08-20 21:00:00+00:00,-0.4030288148637169 -2024-08-20 22:00:00+00:00,-0.41496885492321667 -2024-08-20 23:00:00+00:00,-0.40364018140945745 -2024-08-21 00:00:00+00:00,-0.3803525861333412 -2024-08-21 01:00:00+00:00,-0.3608839278841458 -2024-08-21 02:00:00+00:00,-0.34311350984978617 -2024-08-21 03:00:00+00:00,-0.31834052124906975 -2024-08-21 04:00:00+00:00,-0.2795885726730205 -2024-08-21 05:00:00+00:00,-0.2466793414789663 -2024-08-21 06:00:00+00:00,-0.19542932454370998 -2024-08-21 07:00:00+00:00,-0.1375732790868085 -2024-08-21 08:00:00+00:00,-0.0996111548218721 -2024-08-21 09:00:00+00:00,-0.062112497294407376 -2024-08-21 10:00:00+00:00,-0.027478363934761774 -2024-08-21 11:00:00+00:00,-0.008805144192194803 -2024-08-21 12:00:00+00:00,-0.01673005585610099 -2024-08-21 13:00:00+00:00,-0.025620171195555486 -2024-08-21 14:00:00+00:00,-0.040031285251274085 -2024-08-21 15:00:00+00:00,-0.08636442264253219 -2024-08-21 16:00:00+00:00,-0.12239905253431971 -2024-08-21 17:00:00+00:00,-0.1590484172354536 -2024-08-21 18:00:00+00:00,-0.2117959432293901 -2024-08-21 19:00:00+00:00,-0.22956912236165294 -2024-08-21 20:00:00+00:00,-0.21846185105658833 -2024-08-21 21:00:00+00:00,-0.21620445215882 -2024-08-21 22:00:00+00:00,-0.2348665532826999 -2024-08-21 23:00:00+00:00,-0.22830419315712902 -2024-08-22 00:00:00+00:00,-0.20380884897718943 -2024-08-22 01:00:00+00:00,-0.15971923346324957 -2024-08-22 02:00:00+00:00,-0.1370767229213925 -2024-08-22 03:00:00+00:00,-0.1321337106971896 -2024-08-22 04:00:00+00:00,-0.13728509757913798 -2024-08-22 05:00:00+00:00,-0.1288278069871467 -2024-08-22 06:00:00+00:00,-0.11187890060327277 -2024-08-22 07:00:00+00:00,-0.10809410043808043 -2024-08-22 08:00:00+00:00,-0.0727060763720715 -2024-08-22 09:00:00+00:00,-0.04638547544999483 -2024-08-22 10:00:00+00:00,-0.01279086816973063 -2024-08-22 11:00:00+00:00,0.03178372007741359 -2024-08-22 12:00:00+00:00,0.07105117559780183 -2024-08-22 13:00:00+00:00,0.11967324273655322 -2024-08-22 14:00:00+00:00,0.1524150532557087 -2024-08-22 15:00:00+00:00,0.15598866487891883 -2024-08-22 16:00:00+00:00,0.18485131028310775 -2024-08-22 17:00:00+00:00,0.20440066140849922 -2024-08-22 18:00:00+00:00,0.20988917683257569 -2024-08-22 19:00:00+00:00,0.2175409860470836 -2024-08-22 20:00:00+00:00,0.2221737028271491 -2024-08-22 21:00:00+00:00,0.21912328203853804 -2024-08-22 22:00:00+00:00,0.20825331381911383 -2024-08-22 23:00:00+00:00,0.19967709012789214 -2024-08-23 00:00:00+00:00,0.1796737571489757 -2024-08-23 01:00:00+00:00,0.11520762724072142 -2024-08-23 02:00:00+00:00,0.0724810852642861 -2024-08-23 03:00:00+00:00,0.043843696704243484 -2024-08-23 04:00:00+00:00,0.028964333055142788 -2024-08-23 05:00:00+00:00,0.009079198195536264 -2024-08-23 06:00:00+00:00,-0.023994103454526794 -2024-08-23 07:00:00+00:00,-0.02003735570511367 -2024-08-23 08:00:00+00:00,-0.00825315327230669 -2024-08-23 09:00:00+00:00,0.017506585423177512 -2024-08-23 10:00:00+00:00,0.02775701790054086 -2024-08-23 11:00:00+00:00,0.03690756166031406 -2024-08-23 12:00:00+00:00,0.039986676438928725 -2024-08-23 13:00:00+00:00,0.06108869882743306 -2024-08-23 14:00:00+00:00,-0.004202750285031698 -2024-08-23 15:00:00+00:00,-0.08291026454367056 -2024-08-23 16:00:00+00:00,-0.1451465191389616 -2024-08-23 17:00:00+00:00,-0.22735274118213056 -2024-08-23 18:00:00+00:00,-0.29818265598882476 -2024-08-23 19:00:00+00:00,-0.35498463874631625 -2024-08-23 20:00:00+00:00,-0.3835561678156125 -2024-08-25 21:00:00+00:00,-0.4279748168834203 -2024-08-25 22:00:00+00:00,-0.4700239029976956 -2024-08-25 23:00:00+00:00,-0.49585696017555847 -2024-08-26 00:00:00+00:00,-0.5270383359112145 -2024-08-26 01:00:00+00:00,-0.5433879797392933 -2024-08-26 02:00:00+00:00,-0.5348483789808256 -2024-08-26 03:00:00+00:00,-0.5190313313326556 -2024-08-26 04:00:00+00:00,-0.4947412645845475 -2024-08-26 05:00:00+00:00,-0.46935455970117346 -2024-08-26 06:00:00+00:00,-0.4668509640267473 -2024-08-26 07:00:00+00:00,-0.4499965689652754 -2024-08-26 08:00:00+00:00,-0.4336576945557056 -2024-08-26 09:00:00+00:00,-0.40745877364159355 -2024-08-26 10:00:00+00:00,-0.3771837356188996 -2024-08-26 11:00:00+00:00,-0.34110860627785655 -2024-08-26 12:00:00+00:00,-0.324512894044517 -2024-08-26 13:00:00+00:00,-0.27015998110906025 -2024-08-26 14:00:00+00:00,-0.24555687289912953 -2024-08-26 15:00:00+00:00,-0.19452529953920816 -2024-08-26 16:00:00+00:00,-0.15615554491776606 -2024-08-26 17:00:00+00:00,-0.11936835203863438 -2024-08-26 18:00:00+00:00,-0.09070182369131885 -2024-08-26 19:00:00+00:00,-0.05986962257941286 -2024-08-26 20:00:00+00:00,-0.04093419865890269 -2024-08-26 21:00:00+00:00,-0.026988391329069827 -2024-08-26 22:00:00+00:00,-0.0266834039187529 -2024-08-26 23:00:00+00:00,-0.015131822284814689 -2024-08-27 00:00:00+00:00,0.02089442340886194 -2024-08-27 01:00:00+00:00,0.03731504982513911 -2024-08-27 02:00:00+00:00,0.06355554003934571 -2024-08-27 03:00:00+00:00,0.0805182541382976 -2024-08-27 04:00:00+00:00,0.07709567112024729 -2024-08-27 05:00:00+00:00,0.08605979358623017 -2024-08-27 06:00:00+00:00,0.09465493462272434 -2024-08-27 07:00:00+00:00,0.11395135640773901 -2024-08-27 08:00:00+00:00,0.1328764577332322 -2024-08-27 09:00:00+00:00,0.12816106466650012 -2024-08-27 10:00:00+00:00,0.11869845112798316 -2024-08-27 11:00:00+00:00,0.09030810204649242 -2024-08-27 12:00:00+00:00,0.055548619409449884 -2024-08-27 13:00:00+00:00,0.02321513735012104 -2024-08-27 14:00:00+00:00,-0.00876368919037418 -2024-08-27 15:00:00+00:00,-0.032761189309667316 -2024-08-27 16:00:00+00:00,-0.061479900920971886 -2024-08-27 17:00:00+00:00,-0.08224265331250535 -2024-08-27 18:00:00+00:00,-0.10826198748466709 -2024-08-27 19:00:00+00:00,-0.13060463405844303 -2024-08-27 20:00:00+00:00,-0.14853571460417925 -2024-08-27 21:00:00+00:00,-0.161609516004944 -2024-08-27 22:00:00+00:00,-0.1759139528174387 -2024-08-27 23:00:00+00:00,-0.1772189793478276 -2024-08-28 00:00:00+00:00,-0.16489421119530334 -2024-08-28 01:00:00+00:00,-0.13325635339836595 -2024-08-28 02:00:00+00:00,-0.10056850066973766 -2024-08-28 03:00:00+00:00,-0.07620544225645176 -2024-08-28 04:00:00+00:00,-0.060875918516671845 -2024-08-28 05:00:00+00:00,-0.04498098204228995 -2024-08-28 06:00:00+00:00,-0.021006533442175623 -2024-08-28 07:00:00+00:00,0.0003296474660601234 -2024-08-28 08:00:00+00:00,-0.00018849737756454488 -2024-08-28 09:00:00+00:00,-0.0058572604615392265 -2024-08-28 10:00:00+00:00,0.0003778369565452522 -2024-08-28 11:00:00+00:00,-0.0016815919831856263 -2024-08-28 12:00:00+00:00,0.027196993229068767 -2024-08-28 13:00:00+00:00,0.06020218684861334 -2024-08-28 14:00:00+00:00,0.057215347811506945 -2024-08-28 15:00:00+00:00,0.052946851724755106 -2024-08-28 16:00:00+00:00,0.07037812286216649 -2024-08-28 17:00:00+00:00,0.07461768716802908 -2024-08-28 18:00:00+00:00,0.07876415279605453 -2024-08-28 19:00:00+00:00,0.08502404292860888 -2024-08-28 20:00:00+00:00,0.07994533527826775 -2024-08-28 21:00:00+00:00,0.06476463458037074 -2024-08-28 22:00:00+00:00,0.0390502436110296 -2024-08-28 23:00:00+00:00,0.02962671514660542 -2024-08-29 00:00:00+00:00,0.02142734993776685 -2024-08-29 01:00:00+00:00,0.030873119646656733 -2024-08-29 02:00:00+00:00,0.03425230537700941 -2024-08-29 03:00:00+00:00,0.031643379036097485 -2024-08-29 04:00:00+00:00,0.040885463765732766 -2024-08-29 05:00:00+00:00,0.04327301774173975 -2024-08-29 06:00:00+00:00,0.04193821794814312 -2024-08-29 07:00:00+00:00,0.052141001950900545 -2024-08-29 08:00:00+00:00,0.0563495534977676 -2024-08-29 09:00:00+00:00,0.045523210082961896 -2024-08-29 10:00:00+00:00,0.03396954262026952 -2024-08-29 11:00:00+00:00,0.03266715879485105 -2024-08-29 12:00:00+00:00,0.09541124942970214 -2024-08-29 13:00:00+00:00,0.14180720363731325 -2024-08-29 14:00:00+00:00,0.17454697170722966 -2024-08-29 15:00:00+00:00,0.1693311549904024 -2024-08-29 16:00:00+00:00,0.16475088656565617 -2024-08-29 17:00:00+00:00,0.1473190422264281 -2024-08-29 18:00:00+00:00,0.1257605426190196 -2024-08-29 19:00:00+00:00,0.11876444699933586 -2024-08-29 20:00:00+00:00,0.11775309633435427 -2024-08-29 21:00:00+00:00,0.11625698859015188 -2024-08-29 22:00:00+00:00,0.10618161085790234 -2024-08-29 23:00:00+00:00,0.09612048459072753 -2024-08-30 00:00:00+00:00,0.07390028042590302 -2024-08-30 01:00:00+00:00,0.0586006870725555 -2024-08-30 02:00:00+00:00,0.046424644564098116 -2024-08-30 03:00:00+00:00,0.0385098004954898 -2024-08-30 04:00:00+00:00,0.03585845770106744 -2024-08-30 05:00:00+00:00,0.034329816392613566 -2024-08-30 06:00:00+00:00,0.04023951546554372 -2024-08-30 07:00:00+00:00,0.04257629376522232 -2024-08-30 08:00:00+00:00,0.05899882612237661 -2024-08-30 09:00:00+00:00,0.07215039618995434 -2024-08-30 10:00:00+00:00,0.09455518303843746 -2024-08-30 11:00:00+00:00,0.12172069771420979 -2024-08-30 12:00:00+00:00,0.15820968274263691 -2024-08-30 13:00:00+00:00,0.18196362049718573 -2024-08-30 14:00:00+00:00,0.1977826472792401 -2024-08-30 15:00:00+00:00,0.23719889165522545 -2024-08-30 16:00:00+00:00,0.2869159048653671 -2024-08-30 17:00:00+00:00,0.3168546940771648 -2024-08-30 18:00:00+00:00,0.3318340338404937 -2024-08-30 19:00:00+00:00,0.34736674694462977 -2024-08-30 20:00:00+00:00,0.356774237303199 -2024-09-01 21:00:00+00:00,0.35329834812770855 -2024-09-01 22:00:00+00:00,0.37287366745596273 -2024-09-01 23:00:00+00:00,0.38077030034898485 -2024-09-02 00:00:00+00:00,0.365546633238381 -2024-09-02 01:00:00+00:00,0.35136801503790593 -2024-09-02 02:00:00+00:00,0.31655151342741306 -2024-09-02 03:00:00+00:00,0.2841505333801422 -2024-09-02 04:00:00+00:00,0.25417084207950325 -2024-09-02 05:00:00+00:00,0.24174606009660238 -2024-09-02 06:00:00+00:00,0.23340475159039897 -2024-09-02 07:00:00+00:00,0.24917831613296926 -2024-09-02 08:00:00+00:00,0.2769646893086417 -2024-09-02 09:00:00+00:00,0.2936638171322272 -2024-09-02 10:00:00+00:00,0.31345186523182633 -2024-09-02 11:00:00+00:00,0.340141055449692 -2024-09-02 12:00:00+00:00,0.35661673376338854 -2024-09-02 13:00:00+00:00,0.36394535086083124 -2024-09-02 14:00:00+00:00,0.36530030327782015 -2024-09-02 15:00:00+00:00,0.3614011884674255 -2024-09-02 16:00:00+00:00,0.34361810776451307 -2024-09-02 17:00:00+00:00,0.331752524789124 -2024-09-02 18:00:00+00:00,0.31947319311564115 -2024-09-02 19:00:00+00:00,0.3050951048459467 -2024-09-02 20:00:00+00:00,0.2922678834968053 -2024-09-02 21:00:00+00:00,0.27832897351103725 -2024-09-02 22:00:00+00:00,0.2679058506047056 -2024-09-02 23:00:00+00:00,0.2404927958990868 -2024-09-03 00:00:00+00:00,0.24634874681748897 -2024-09-03 01:00:00+00:00,0.20752536082119377 -2024-09-03 02:00:00+00:00,0.17665774659820954 -2024-09-03 03:00:00+00:00,0.1428024050092631 -2024-09-03 04:00:00+00:00,0.11385246610046806 -2024-09-03 05:00:00+00:00,0.07200448016223504 -2024-09-03 06:00:00+00:00,0.015103585422451715 -2024-09-03 07:00:00+00:00,-0.03523305387992082 -2024-09-03 08:00:00+00:00,-0.08527762251989657 -2024-09-03 09:00:00+00:00,-0.11362276749400735 -2024-09-03 10:00:00+00:00,-0.12655844782992176 -2024-09-03 11:00:00+00:00,-0.1240828874340707 -2024-09-03 12:00:00+00:00,-0.14402274310759822 -2024-09-03 13:00:00+00:00,-0.19358219991042347 -2024-09-03 14:00:00+00:00,-0.2199141709108119 -2024-09-03 15:00:00+00:00,-0.2173775194619907 -2024-09-03 16:00:00+00:00,-0.21753965841844547 -2024-09-03 17:00:00+00:00,-0.2046576914080731 -2024-09-03 18:00:00+00:00,-0.1997312763269008 -2024-09-03 19:00:00+00:00,-0.2073162072310879 -2024-09-03 20:00:00+00:00,-0.22278227893971803 -2024-09-03 21:00:00+00:00,-0.23563139746994466 -2024-09-03 22:00:00+00:00,-0.2511498647233452 -2024-09-03 23:00:00+00:00,-0.25829225513868437 -2024-09-04 00:00:00+00:00,-0.27634065497818483 -2024-09-04 01:00:00+00:00,-0.26882483542249247 -2024-09-04 02:00:00+00:00,-0.25668195872876254 -2024-09-04 03:00:00+00:00,-0.25485284498034844 -2024-09-04 04:00:00+00:00,-0.2555411137531678 -2024-09-04 05:00:00+00:00,-0.25970951676603704 -2024-09-04 06:00:00+00:00,-0.2833091542631223 -2024-09-04 07:00:00+00:00,-0.2900346918546859 -2024-09-04 08:00:00+00:00,-0.27420957524574874 -2024-09-04 09:00:00+00:00,-0.26666329214478424 -2024-09-04 10:00:00+00:00,-0.2607434031950788 -2024-09-04 11:00:00+00:00,-0.26733330896732355 -2024-09-04 12:00:00+00:00,-0.25461220028211073 -2024-09-04 13:00:00+00:00,-0.26439922680759764 -2024-09-04 14:00:00+00:00,-0.32266086608760247 -2024-09-04 15:00:00+00:00,-0.3496332516649261 -2024-09-04 16:00:00+00:00,-0.3875217788076668 -2024-09-04 17:00:00+00:00,-0.41071624561402587 -2024-09-04 18:00:00+00:00,-0.4389658564097374 -2024-09-04 19:00:00+00:00,-0.46152078388317364 -2024-09-04 20:00:00+00:00,-0.4809524702639578 -2024-09-04 21:00:00+00:00,-0.4969977804453549 -2024-09-04 22:00:00+00:00,-0.5064578065938008 -2024-09-04 23:00:00+00:00,-0.5309127238714098 -2024-09-05 00:00:00+00:00,-0.5135493374208693 -2024-09-05 01:00:00+00:00,-0.4950503954733563 -2024-09-05 02:00:00+00:00,-0.46502358459736115 -2024-09-05 03:00:00+00:00,-0.44178293693559567 -2024-09-05 04:00:00+00:00,-0.4332179515944574 -2024-09-05 05:00:00+00:00,-0.43553065024067905 -2024-09-05 06:00:00+00:00,-0.44538213037381524 -2024-09-05 07:00:00+00:00,-0.41834973298099953 -2024-09-05 08:00:00+00:00,-0.3954343249612293 -2024-09-05 09:00:00+00:00,-0.3702620329233639 -2024-09-05 10:00:00+00:00,-0.3554146584444311 -2024-09-05 11:00:00+00:00,-0.3430024458647267 -2024-09-05 12:00:00+00:00,-0.35752846226679935 -2024-09-05 13:00:00+00:00,-0.3573362704192107 -2024-09-05 14:00:00+00:00,-0.2951191825566184 -2024-09-05 15:00:00+00:00,-0.28169987801976504 -2024-09-05 16:00:00+00:00,-0.268055694943655 -2024-09-05 17:00:00+00:00,-0.26093212478494365 -2024-09-05 18:00:00+00:00,-0.24695289318157165 -2024-09-05 19:00:00+00:00,-0.22999534257286314 -2024-09-05 20:00:00+00:00,-0.21456711525752326 -2024-09-05 21:00:00+00:00,-0.20202856547763304 -2024-09-05 22:00:00+00:00,-0.19101940464750555 -2024-09-05 23:00:00+00:00,-0.18189234810367338 -2024-09-06 00:00:00+00:00,-0.18981967020630464 -2024-09-06 01:00:00+00:00,-0.1858103679197427 -2024-09-06 02:00:00+00:00,-0.18685367390122565 -2024-09-06 03:00:00+00:00,-0.19894340167704172 -2024-09-06 04:00:00+00:00,-0.2090998162970834 -2024-09-06 05:00:00+00:00,-0.24578532842051004 -2024-09-06 06:00:00+00:00,-0.2885584752018815 -2024-09-06 07:00:00+00:00,-0.3084114138459313 -2024-09-06 08:00:00+00:00,-0.3131917912583049 -2024-09-06 09:00:00+00:00,-0.2983708129773106 -2024-09-06 10:00:00+00:00,-0.27929032215340044 -2024-09-06 11:00:00+00:00,-0.24480514760870165 -2024-09-06 12:00:00+00:00,-0.2206608638758496 -2024-09-06 13:00:00+00:00,-0.15687077418346007 -2024-09-06 14:00:00+00:00,-0.19125892870727057 -2024-09-06 15:00:00+00:00,-0.2398734779358449 -2024-09-06 16:00:00+00:00,-0.25073817060280135 -2024-09-06 17:00:00+00:00,-0.2581479649076641 -2024-09-06 18:00:00+00:00,-0.2661966873413064 -2024-09-06 19:00:00+00:00,-0.2647625332669179 -2024-09-06 20:00:00+00:00,-0.2690775118893498 -2024-09-08 21:00:00+00:00,-0.28151713887967844 -2024-09-08 22:00:00+00:00,-0.2890123778164764 -2024-09-08 23:00:00+00:00,-0.26430907638163603 -2024-09-09 00:00:00+00:00,-0.22534997609639618 -2024-09-09 01:00:00+00:00,-0.17151763284050503 -2024-09-09 02:00:00+00:00,-0.13847499772157335 -2024-09-09 03:00:00+00:00,-0.11571538333814146 -2024-09-09 04:00:00+00:00,-0.07949385772903383 -2024-09-09 05:00:00+00:00,-0.05499558145146466 -2024-09-09 06:00:00+00:00,-0.028075329878419097 -2024-09-09 07:00:00+00:00,0.005620882378252645 -2024-09-09 08:00:00+00:00,0.04974616682576993 -2024-09-09 09:00:00+00:00,0.09236573536068704 -2024-09-09 10:00:00+00:00,0.1391432806759667 -2024-09-09 11:00:00+00:00,0.1694203514423407 -2024-09-09 12:00:00+00:00,0.16113691285255527 -2024-09-09 13:00:00+00:00,0.11771100611863972 -2024-09-09 14:00:00+00:00,0.07811850362205064 -2024-09-09 15:00:00+00:00,0.06112587626864752 -2024-09-09 16:00:00+00:00,0.043446457387574355 -2024-09-09 17:00:00+00:00,0.023834987239808925 -2024-09-09 18:00:00+00:00,0.00787916319541182 -2024-09-09 19:00:00+00:00,0.007094638223918537 -2024-09-09 20:00:00+00:00,0.02283217976221863 -2024-09-09 21:00:00+00:00,0.03298743675364335 -2024-09-09 22:00:00+00:00,0.03283001773834826 -2024-09-09 23:00:00+00:00,0.043819731982864596 -2024-09-10 00:00:00+00:00,0.07450603537122902 -2024-09-10 01:00:00+00:00,0.09386987950318826 -2024-09-10 02:00:00+00:00,0.10653534280311305 -2024-09-10 03:00:00+00:00,0.1016830950431995 -2024-09-10 04:00:00+00:00,0.08443779443308586 -2024-09-10 05:00:00+00:00,0.07594717094156067 -2024-09-10 06:00:00+00:00,0.08781409360841508 -2024-09-10 07:00:00+00:00,0.11230454192454431 -2024-09-10 08:00:00+00:00,0.12303290408760859 -2024-09-10 09:00:00+00:00,0.10203623166165698 -2024-09-10 10:00:00+00:00,0.07500993581041371 -2024-09-10 11:00:00+00:00,0.059442211872152484 -2024-09-10 12:00:00+00:00,0.02606644853736384 -2024-09-10 13:00:00+00:00,0.010788383833073567 -2024-09-10 14:00:00+00:00,-0.02435868548039366 -2024-09-10 15:00:00+00:00,-0.08591996559232484 -2024-09-10 16:00:00+00:00,-0.11921247889262077 -2024-09-10 17:00:00+00:00,-0.1493623114909326 -2024-09-10 18:00:00+00:00,-0.1749513562731977 -2024-09-10 19:00:00+00:00,-0.19619688872342067 -2024-09-10 20:00:00+00:00,-0.19880011911916995 -2024-09-10 21:00:00+00:00,-0.20064823274412902 -2024-09-10 22:00:00+00:00,-0.1985332421911039 -2024-09-10 23:00:00+00:00,-0.2114456200519328 -2024-09-11 00:00:00+00:00,-0.21476505432977433 -2024-09-11 01:00:00+00:00,-0.25153367031009566 -2024-09-11 02:00:00+00:00,-0.27739473786945723 -2024-09-11 03:00:00+00:00,-0.3291161470641839 -2024-09-11 04:00:00+00:00,-0.3902982637031869 -2024-09-11 05:00:00+00:00,-0.4184688876944165 -2024-09-11 06:00:00+00:00,-0.42859152600439643 -2024-09-11 07:00:00+00:00,-0.4305213249537587 -2024-09-11 08:00:00+00:00,-0.4156398702849913 -2024-09-11 09:00:00+00:00,-0.39629240727916226 -2024-09-11 10:00:00+00:00,-0.3758202649551663 -2024-09-11 11:00:00+00:00,-0.3468028284909792 -2024-09-11 12:00:00+00:00,-0.2720934087143121 -2024-09-11 13:00:00+00:00,-0.24851088998656223 -2024-09-11 14:00:00+00:00,-0.25807431958750726 -2024-09-11 15:00:00+00:00,-0.23869439326813335 -2024-09-11 16:00:00+00:00,-0.20308112457612992 -2024-09-11 17:00:00+00:00,-0.1524430237538752 -2024-09-11 18:00:00+00:00,-0.1113511439215813 -2024-09-11 19:00:00+00:00,-0.06400735039005667 -2024-09-11 20:00:00+00:00,-0.027302015282543834 -2024-09-11 21:00:00+00:00,-0.0036576414486546582 -2024-09-11 22:00:00+00:00,0.02815100063142495 -2024-09-11 23:00:00+00:00,0.06711046664136688 -2024-09-12 00:00:00+00:00,0.10053898882418366 -2024-09-12 01:00:00+00:00,0.11441559180133254 -2024-09-12 02:00:00+00:00,0.1229466557657588 -2024-09-12 03:00:00+00:00,0.1332550773246055 -2024-09-12 04:00:00+00:00,0.1549695947587395 -2024-09-12 05:00:00+00:00,0.17412518995917026 -2024-09-12 06:00:00+00:00,0.1665676056864811 -2024-09-12 07:00:00+00:00,0.17382513817153722 -2024-09-12 08:00:00+00:00,0.1628522631877729 -2024-09-12 09:00:00+00:00,0.1601373068536418 -2024-09-12 10:00:00+00:00,0.1516382691918352 -2024-09-12 11:00:00+00:00,0.13894371524946791 -2024-09-12 12:00:00+00:00,0.09016087423765384 -2024-09-12 13:00:00+00:00,0.04373373812600789 -2024-09-12 14:00:00+00:00,0.04459300484049322 -2024-09-12 15:00:00+00:00,0.025612737966184795 -2024-09-12 16:00:00+00:00,0.03246736946960027 -2024-09-12 17:00:00+00:00,0.01784387712075386 -2024-09-12 18:00:00+00:00,-0.013600099814880195 -2024-09-12 19:00:00+00:00,-0.049408342715253184 -2024-09-12 20:00:00+00:00,-0.08232467726440973 -2024-09-12 21:00:00+00:00,-0.10542066954917573 -2024-09-12 22:00:00+00:00,-0.12183581256945786 -2024-09-12 23:00:00+00:00,-0.1596330236244512 -2024-09-13 00:00:00+00:00,-0.2126350206204961 -2024-09-13 01:00:00+00:00,-0.24942422031119804 -2024-09-13 02:00:00+00:00,-0.2901630608630512 -2024-09-13 03:00:00+00:00,-0.3237998953596559 -2024-09-13 04:00:00+00:00,-0.34789941075888464 -2024-09-13 05:00:00+00:00,-0.37039447939636716 -2024-09-13 06:00:00+00:00,-0.3657693111847209 -2024-09-13 07:00:00+00:00,-0.3721767228572901 -2024-09-13 08:00:00+00:00,-0.3900266696336985 -2024-09-13 09:00:00+00:00,-0.4092991160296151 -2024-09-13 10:00:00+00:00,-0.41016158410585035 -2024-09-13 11:00:00+00:00,-0.39507478178265387 -2024-09-13 12:00:00+00:00,-0.38712842917294665 -2024-09-13 13:00:00+00:00,-0.4060066038613286 -2024-09-13 14:00:00+00:00,-0.39383415834527113 -2024-09-13 15:00:00+00:00,-0.37789467358661 -2024-09-13 16:00:00+00:00,-0.3492937134641636 -2024-09-13 17:00:00+00:00,-0.31508733486720075 -2024-09-13 18:00:00+00:00,-0.2829417409822099 -2024-09-13 19:00:00+00:00,-0.2546915834827814 -2024-09-13 20:00:00+00:00,-0.23843072978968394 -2024-09-15 21:00:00+00:00,-0.22576560818066582 -2024-09-15 22:00:00+00:00,-0.22036967976129063 -2024-09-15 23:00:00+00:00,-0.20158518108786438 -2024-09-16 00:00:00+00:00,-0.21009777977860722 -2024-09-16 01:00:00+00:00,-0.21317633681800885 -2024-09-16 02:00:00+00:00,-0.2137971283808895 -2024-09-16 03:00:00+00:00,-0.24471316589165326 -2024-09-16 04:00:00+00:00,-0.25848825891696947 -2024-09-16 05:00:00+00:00,-0.26824950548763127 -2024-09-16 06:00:00+00:00,-0.3002020547325799 -2024-09-16 07:00:00+00:00,-0.3199802394147184 -2024-09-16 08:00:00+00:00,-0.33358445545439963 -2024-09-16 09:00:00+00:00,-0.312122408699679 -2024-09-16 10:00:00+00:00,-0.2982120027385804 -2024-09-16 11:00:00+00:00,-0.30306040829341896 -2024-09-16 12:00:00+00:00,-0.27524579260796145 -2024-09-16 13:00:00+00:00,-0.23284692513237815 -2024-09-16 14:00:00+00:00,-0.19801195004316696 -2024-09-16 15:00:00+00:00,-0.1403035000440127 -2024-09-16 16:00:00+00:00,-0.10609541528631894 -2024-09-16 17:00:00+00:00,-0.07505380568656506 -2024-09-16 18:00:00+00:00,-0.04700634738833287 -2024-09-16 19:00:00+00:00,-0.025772511429465794 -2024-09-16 20:00:00+00:00,-0.016181642670460405 -2024-09-16 21:00:00+00:00,-0.006568493156493105 -2024-09-16 22:00:00+00:00,0.01986424213973237 -2024-09-16 23:00:00+00:00,0.034683459341721345 -2024-09-17 00:00:00+00:00,0.03536878952169786 -2024-09-17 01:00:00+00:00,0.017952808443084223 -2024-09-17 02:00:00+00:00,0.01471290522258073 -2024-09-17 03:00:00+00:00,0.013602292668394966 -2024-09-17 04:00:00+00:00,0.01911845328640993 -2024-09-17 05:00:00+00:00,0.025136887351408177 -2024-09-17 06:00:00+00:00,0.02781073868607109 -2024-09-17 07:00:00+00:00,0.02304739441910897 -2024-09-17 08:00:00+00:00,0.017138251253555836 -2024-09-17 09:00:00+00:00,0.017737774400188755 -2024-09-17 10:00:00+00:00,0.02007942046211042 -2024-09-17 11:00:00+00:00,0.01673934919477915 -2024-09-17 12:00:00+00:00,0.04312830362414388 -2024-09-17 13:00:00+00:00,0.11197288839215958 -2024-09-17 14:00:00+00:00,0.17388847032276544 -2024-09-17 15:00:00+00:00,0.22647887245844345 -2024-09-17 16:00:00+00:00,0.2619901120524162 -2024-09-17 17:00:00+00:00,0.3002283754146333 -2024-09-17 18:00:00+00:00,0.3191873751950993 -2024-09-17 19:00:00+00:00,0.363589014622022 -2024-09-17 20:00:00+00:00,0.40859213366448444 -2024-09-17 21:00:00+00:00,0.4352060630149879 -2024-09-17 22:00:00+00:00,0.42668756250026263 -2024-09-17 23:00:00+00:00,0.41211964827931524 -2024-09-18 00:00:00+00:00,0.3672915713451914 -2024-09-18 01:00:00+00:00,0.3175340572646803 -2024-09-18 02:00:00+00:00,0.2710227962925842 -2024-09-18 03:00:00+00:00,0.22527154856464904 -2024-09-18 04:00:00+00:00,0.18087645078847459 -2024-09-18 05:00:00+00:00,0.16142301007167248 -2024-09-18 06:00:00+00:00,0.14529939685971272 -2024-09-18 07:00:00+00:00,0.15741566118808237 -2024-09-18 08:00:00+00:00,0.1517926128848046 -2024-09-18 09:00:00+00:00,0.14055184725819458 -2024-09-18 10:00:00+00:00,0.12695236595803294 -2024-09-18 11:00:00+00:00,0.134075822307409 -2024-09-18 12:00:00+00:00,0.14419162631551785 -2024-09-18 13:00:00+00:00,0.13755082744648917 -2024-09-18 14:00:00+00:00,0.1499256906978701 -2024-09-18 15:00:00+00:00,0.1526475842344439 -2024-09-18 16:00:00+00:00,0.1487328559883565 -2024-09-18 17:00:00+00:00,0.15266595658198412 -2024-09-18 18:00:00+00:00,0.08580253446496044 -2024-09-18 19:00:00+00:00,0.13646164779814285 -2024-09-18 20:00:00+00:00,0.16167364089056946 -2024-09-18 21:00:00+00:00,0.16713974783317553 -2024-09-18 22:00:00+00:00,0.16856031882426237 -2024-09-18 23:00:00+00:00,0.2150572297851454 -2024-09-19 00:00:00+00:00,0.31149717734953697 -2024-09-19 01:00:00+00:00,0.4029701029074033 -2024-09-19 02:00:00+00:00,0.42808455908055976 -2024-09-19 03:00:00+00:00,0.44017042008138674 -2024-09-19 04:00:00+00:00,0.44510184485321247 -2024-09-19 05:00:00+00:00,0.3958703190208439 -2024-09-19 06:00:00+00:00,0.3267815700750134 -2024-09-19 07:00:00+00:00,0.28966894260946674 -2024-09-19 08:00:00+00:00,0.279866525733496 -2024-09-19 09:00:00+00:00,0.2665242729021031 -2024-09-19 10:00:00+00:00,0.25861767284442294 -2024-09-19 11:00:00+00:00,0.25665532040218864 -2024-09-19 12:00:00+00:00,0.31888247651829715 -2024-09-19 13:00:00+00:00,0.3301785962500787 -2024-09-19 14:00:00+00:00,0.30184161203709436 -2024-09-19 15:00:00+00:00,0.27404663452509226 -2024-09-19 16:00:00+00:00,0.26127226029743156 -2024-09-19 17:00:00+00:00,0.2388732803721325 -2024-09-19 18:00:00+00:00,0.19794105073978585 -2024-09-19 19:00:00+00:00,0.16162159959489486 -2024-09-19 20:00:00+00:00,0.13116480340337944 -2024-09-19 21:00:00+00:00,0.10628651802934996 -2024-09-19 22:00:00+00:00,0.08749827144822575 -2024-09-19 23:00:00+00:00,0.08773541989381783 -2024-09-20 00:00:00+00:00,0.05070486189654844 -2024-09-20 01:00:00+00:00,0.02007744623605845 -2024-09-20 02:00:00+00:00,0.0015166226133089822 -2024-09-20 03:00:00+00:00,-0.027082502704956823 -2024-09-20 04:00:00+00:00,-0.05747688860722633 -2024-09-20 05:00:00+00:00,-0.07329611529866042 -2024-09-20 06:00:00+00:00,-0.028854812959508536 -2024-09-20 07:00:00+00:00,0.05798500867896905 -2024-09-20 08:00:00+00:00,0.13948076627403339 -2024-09-20 09:00:00+00:00,0.2121913368539481 -2024-09-20 10:00:00+00:00,0.2921076945805794 -2024-09-20 11:00:00+00:00,0.3482004797558602 -2024-09-20 12:00:00+00:00,0.3443050780583121 -2024-09-20 13:00:00+00:00,0.37027528951401223 -2024-09-20 14:00:00+00:00,0.41360493906461215 -2024-09-20 15:00:00+00:00,0.4021554629112245 -2024-09-20 16:00:00+00:00,0.3762374350085622 -2024-09-20 17:00:00+00:00,0.36935308340380857 -2024-09-20 18:00:00+00:00,0.3513741403128847 -2024-09-20 19:00:00+00:00,0.3371926419901854 -2024-09-20 20:00:00+00:00,0.3219998140508835 -2024-09-22 21:00:00+00:00,0.3047518740522719 -2024-09-22 22:00:00+00:00,0.2900789652322544 -2024-09-22 23:00:00+00:00,0.2875622535899822 -2024-09-23 00:00:00+00:00,0.2858233797552714 -2024-09-23 01:00:00+00:00,0.3012265597451176 -2024-09-23 02:00:00+00:00,0.3085854436716602 -2024-09-23 03:00:00+00:00,0.30748388043838304 -2024-09-23 04:00:00+00:00,0.2984101898090046 -2024-09-23 05:00:00+00:00,0.276413307523228 -2024-09-23 06:00:00+00:00,0.24629708000560413 -2024-09-23 07:00:00+00:00,0.1938094706398772 -2024-09-23 08:00:00+00:00,0.14433559469077295 -2024-09-23 09:00:00+00:00,0.10712004407889708 -2024-09-23 10:00:00+00:00,0.056160623581519076 -2024-09-23 11:00:00+00:00,0.034660671641034924 -2024-09-23 12:00:00+00:00,0.030423835543615496 -2024-09-23 13:00:00+00:00,0.04957248150097371 -2024-09-23 14:00:00+00:00,0.041115466436224324 -2024-09-23 15:00:00+00:00,0.01974184532923573 -2024-09-23 16:00:00+00:00,-0.016932551211311875 -2024-09-23 17:00:00+00:00,-0.04060699236174514 -2024-09-23 18:00:00+00:00,-0.06555298480313354 -2024-09-23 19:00:00+00:00,-0.07094881381217988 -2024-09-23 20:00:00+00:00,-0.06527376458777212 -2024-09-23 21:00:00+00:00,-0.06104090534259399 -2024-09-23 22:00:00+00:00,-0.053917828665106526 -2024-09-23 23:00:00+00:00,-0.04764285031478721 -2024-09-24 00:00:00+00:00,-0.04848561257233541 -2024-09-24 01:00:00+00:00,-0.04245090365651549 -2024-09-24 02:00:00+00:00,-0.03420774534743032 -2024-09-24 03:00:00+00:00,-0.01882398604149671 -2024-09-24 04:00:00+00:00,-0.0010523913027213894 -2024-09-24 05:00:00+00:00,0.03282623581512212 -2024-09-24 06:00:00+00:00,0.08563910622578419 -2024-09-24 07:00:00+00:00,0.1281946131717575 -2024-09-24 08:00:00+00:00,0.14691252188245585 -2024-09-24 09:00:00+00:00,0.1583078917055616 -2024-09-24 10:00:00+00:00,0.13902725106322578 -2024-09-24 11:00:00+00:00,0.12536831892393252 -2024-09-24 12:00:00+00:00,0.11260000093528788 -2024-09-24 13:00:00+00:00,0.11160374039224052 -2024-09-24 14:00:00+00:00,0.07572799506201022 -2024-09-24 15:00:00+00:00,0.055053516583200235 -2024-09-24 16:00:00+00:00,0.013179739808265367 -2024-09-24 17:00:00+00:00,-0.01897982592490166 -2024-09-24 18:00:00+00:00,-0.05113925975089728 -2024-09-24 19:00:00+00:00,-0.08716002118435995 -2024-09-24 20:00:00+00:00,-0.1157442642312958 -2024-09-24 21:00:00+00:00,-0.13945278212580092 -2024-09-24 22:00:00+00:00,-0.1679258057511106 -2024-09-24 23:00:00+00:00,-0.19589839342620508 -2024-09-25 00:00:00+00:00,-0.19771283227791514 -2024-09-25 01:00:00+00:00,-0.17502371363147518 -2024-09-25 02:00:00+00:00,-0.16322997436569153 -2024-09-25 03:00:00+00:00,-0.15627784275443446 -2024-09-25 04:00:00+00:00,-0.1525600434264618 -2024-09-25 05:00:00+00:00,-0.14727048505352514 -2024-09-25 06:00:00+00:00,-0.10794367453280529 -2024-09-25 07:00:00+00:00,-0.059947527548985136 -2024-09-25 08:00:00+00:00,-0.01703376535311918 -2024-09-25 09:00:00+00:00,0.036326404633427956 -2024-09-25 10:00:00+00:00,0.08561626539631106 -2024-09-25 11:00:00+00:00,0.12517252365330478 -2024-09-25 12:00:00+00:00,0.14620181404092136 -2024-09-25 13:00:00+00:00,0.14960422885698677 -2024-09-25 14:00:00+00:00,0.17449667090539833 -2024-09-25 15:00:00+00:00,0.19583979022073095 -2024-09-25 16:00:00+00:00,0.2203810969182598 -2024-09-25 17:00:00+00:00,0.23877236459389906 -2024-09-25 18:00:00+00:00,0.2605914789882888 -2024-09-25 19:00:00+00:00,0.28109828965068573 -2024-09-25 20:00:00+00:00,0.29388170780896417 -2024-09-25 21:00:00+00:00,0.29376750029410914 -2024-09-25 22:00:00+00:00,0.2885752579358041 -2024-09-25 23:00:00+00:00,0.28664315628262216 -2024-09-26 00:00:00+00:00,0.26399386688160575 -2024-09-26 01:00:00+00:00,0.26876728553460794 -2024-09-26 02:00:00+00:00,0.2711992541597681 -2024-09-26 03:00:00+00:00,0.27735308423180527 -2024-09-26 04:00:00+00:00,0.2600279871744817 -2024-09-26 05:00:00+00:00,0.24572452951218793 -2024-09-26 06:00:00+00:00,0.2409713985287567 -2024-09-26 07:00:00+00:00,0.24965801786049724 -2024-09-26 08:00:00+00:00,0.23782379633564688 -2024-09-26 09:00:00+00:00,0.21594998976965485 -2024-09-26 10:00:00+00:00,0.1692289163658529 -2024-09-26 11:00:00+00:00,0.11506022448125464 -2024-09-26 12:00:00+00:00,0.1030584262869354 -2024-09-26 13:00:00+00:00,0.09343811800039248 -2024-09-26 14:00:00+00:00,0.10533744207219797 -2024-09-26 15:00:00+00:00,0.10077608694814444 -2024-09-26 16:00:00+00:00,0.11057244875181027 -2024-09-26 17:00:00+00:00,0.105659940777457 -2024-09-26 18:00:00+00:00,0.09326797651516472 -2024-09-26 19:00:00+00:00,0.0856871728736337 -2024-09-26 20:00:00+00:00,0.09025848428984773 -2024-09-26 21:00:00+00:00,0.09249232104849625 -2024-09-26 22:00:00+00:00,0.09909156841155209 -2024-09-26 23:00:00+00:00,0.11972526285939011 -2024-09-27 00:00:00+00:00,0.164600946397087 -2024-09-27 01:00:00+00:00,0.18535994693061753 -2024-09-27 02:00:00+00:00,0.18244053199902055 -2024-09-27 03:00:00+00:00,0.19115676779901491 -2024-09-27 04:00:00+00:00,0.2385651375249438 -2024-09-27 05:00:00+00:00,0.3101635452871676 -2024-09-27 06:00:00+00:00,0.1170265309095555 -2024-09-27 07:00:00+00:00,-0.034508469311163026 -2024-09-27 08:00:00+00:00,-0.15650872909310465 -2024-09-27 09:00:00+00:00,-0.25126666790691843 -2024-09-27 10:00:00+00:00,-0.31514520495016995 -2024-09-27 11:00:00+00:00,-0.3710141988735245 -2024-09-27 12:00:00+00:00,-0.4576236476867166 -2024-09-27 13:00:00+00:00,-0.5182706671535868 -2024-09-27 14:00:00+00:00,-0.5348314867683541 -2024-09-27 15:00:00+00:00,-0.5624522829136254 -2024-09-27 16:00:00+00:00,-0.5846229661281654 -2024-09-27 17:00:00+00:00,-0.6100088522235296 -2024-09-27 18:00:00+00:00,-0.63555039999369 -2024-09-27 19:00:00+00:00,-0.6489570211812179 -2024-09-27 20:00:00+00:00,-0.6478373423830419 -2024-09-29 21:00:00+00:00,-0.6339135217590695 -2024-09-29 22:00:00+00:00,-0.5845098044979977 -2024-09-29 23:00:00+00:00,-0.5301278630028605 -2024-09-30 00:00:00+00:00,-0.4897758819111857 -2024-09-30 01:00:00+00:00,-0.46989013168942506 -2024-09-30 02:00:00+00:00,-0.4446475623510935 -2024-09-30 03:00:00+00:00,-0.4255470016176446 -2024-09-30 04:00:00+00:00,-0.4315787901983299 -2024-09-30 05:00:00+00:00,-0.46489054717525846 -2024-09-30 06:00:00+00:00,-0.4580904644970758 -2024-09-30 07:00:00+00:00,-0.4227332434301445 -2024-09-30 08:00:00+00:00,-0.3762541301335034 -2024-09-30 09:00:00+00:00,-0.33602970655198305 -2024-09-30 10:00:00+00:00,-0.29510140082228986 -2024-09-30 11:00:00+00:00,-0.26318205700761155 -2024-09-30 12:00:00+00:00,-0.2042232314319108 -2024-09-30 13:00:00+00:00,-0.1411047985001801 -2024-09-30 14:00:00+00:00,-0.0976233504937909 -2024-09-30 15:00:00+00:00,-0.04433591002734261 -2024-09-30 16:00:00+00:00,-0.013967278208582457 -2024-09-30 17:00:00+00:00,0.008549083224437481 -2024-09-30 18:00:00+00:00,0.07339752499419205 -2024-09-30 19:00:00+00:00,0.12655915287655262 -2024-09-30 20:00:00+00:00,0.15855120716756232 -2024-09-30 21:00:00+00:00,0.1813307231258534 -2024-09-30 22:00:00+00:00,0.1923251504649386 -2024-09-30 23:00:00+00:00,0.21119172287632182 -2024-10-01 00:00:00+00:00,0.24350950214019917 -2024-10-01 01:00:00+00:00,0.24627118672427173 -2024-10-01 02:00:00+00:00,0.26916115399981777 -2024-10-01 03:00:00+00:00,0.30532667076556663 -2024-10-01 04:00:00+00:00,0.33010219904909377 -2024-10-01 05:00:00+00:00,0.3445547958632744 -2024-10-01 06:00:00+00:00,0.3576950948388742 -2024-10-01 07:00:00+00:00,0.35083128241419104 -2024-10-01 08:00:00+00:00,0.3125780814272048 -2024-10-01 09:00:00+00:00,0.2729030312928842 -2024-10-01 10:00:00+00:00,0.23926698880828212 -2024-10-01 11:00:00+00:00,0.21138385593502562 -2024-10-01 12:00:00+00:00,0.2097046623057679 -2024-10-01 13:00:00+00:00,0.16595367399443717 -2024-10-01 14:00:00+00:00,0.1353686697733849 -2024-10-01 15:00:00+00:00,0.11504858191045741 -2024-10-01 16:00:00+00:00,0.09510493948897647 -2024-10-01 17:00:00+00:00,0.09331314056058204 -2024-10-01 18:00:00+00:00,0.07848123951342245 -2024-10-01 19:00:00+00:00,0.05743081858457799 -2024-10-01 20:00:00+00:00,0.04084224585020024 -2024-10-01 21:00:00+00:00,0.03312365187480282 -2024-10-01 22:00:00+00:00,0.01688687708639236 -2024-10-01 23:00:00+00:00,0.020884995105888038 -2024-10-02 00:00:00+00:00,0.030639816971842038 -2024-10-02 01:00:00+00:00,0.044554394593603774 -2024-10-02 02:00:00+00:00,0.06332445518506802 -2024-10-02 03:00:00+00:00,0.087758839350073 -2024-10-02 04:00:00+00:00,0.07375433874602777 -2024-10-02 05:00:00+00:00,0.06058552102211934 -2024-10-02 06:00:00+00:00,0.0640163843891628 -2024-10-02 07:00:00+00:00,0.07961587694865102 -2024-10-02 08:00:00+00:00,0.11175091098300527 -2024-10-02 09:00:00+00:00,0.1305490041896178 -2024-10-02 10:00:00+00:00,0.18622786349178 -2024-10-02 11:00:00+00:00,0.2199109827343193 -2024-10-02 12:00:00+00:00,0.2973218484344784 -2024-10-02 13:00:00+00:00,0.3846571779894816 -2024-10-02 14:00:00+00:00,0.4841973116523377 -2024-10-02 15:00:00+00:00,0.5454188145317858 -2024-10-02 16:00:00+00:00,0.5858924271634578 -2024-10-02 17:00:00+00:00,0.6219342327619017 -2024-10-02 18:00:00+00:00,0.6556885336408982 -2024-10-02 19:00:00+00:00,0.6835166778208475 -2024-10-02 20:00:00+00:00,0.7001624696675606 -2024-10-02 21:00:00+00:00,0.6972477770156615 -2024-10-02 22:00:00+00:00,0.704887288162837 -2024-10-02 23:00:00+00:00,0.7011645429002158 -2024-10-03 00:00:00+00:00,0.7233627961229558 -2024-10-03 01:00:00+00:00,0.7173544441336901 -2024-10-03 02:00:00+00:00,0.7030361689952542 -2024-10-03 03:00:00+00:00,0.6892308403939751 -2024-10-03 04:00:00+00:00,0.6602696189497408 -2024-10-03 05:00:00+00:00,0.6170519141834632 -2024-10-03 06:00:00+00:00,0.5897212119969879 -2024-10-03 07:00:00+00:00,0.5394909329392306 -2024-10-03 08:00:00+00:00,0.5180798489715812 -2024-10-03 09:00:00+00:00,0.5088822208035424 -2024-10-03 10:00:00+00:00,0.4886973871014675 -2024-10-03 11:00:00+00:00,0.45415146454737965 -2024-10-03 12:00:00+00:00,0.43012657975947377 -2024-10-03 13:00:00+00:00,0.39706860358933227 -2024-10-03 14:00:00+00:00,0.3763756752100278 -2024-10-03 15:00:00+00:00,0.3605008660785245 -2024-10-03 16:00:00+00:00,0.33478127640478306 -2024-10-03 17:00:00+00:00,0.3055504722284752 -2024-10-03 18:00:00+00:00,0.2963975575919733 -2024-10-03 19:00:00+00:00,0.2853700882033934 -2024-10-03 20:00:00+00:00,0.28073751146641257 -2024-10-03 21:00:00+00:00,0.2667292247184605 -2024-10-03 22:00:00+00:00,0.2523155616000281 -2024-10-03 23:00:00+00:00,0.23719014962293272 -2024-10-04 00:00:00+00:00,0.2066823180212225 -2024-10-04 01:00:00+00:00,0.17292624120483424 -2024-10-04 02:00:00+00:00,0.13318086773097093 -2024-10-04 03:00:00+00:00,0.0975720324710494 -2024-10-04 04:00:00+00:00,0.05715403296574095 -2024-10-04 05:00:00+00:00,0.013189457479057864 -2024-10-04 06:00:00+00:00,-0.010397482944739522 -2024-10-04 07:00:00+00:00,-0.022217479197649936 -2024-10-04 08:00:00+00:00,-0.028592490743960752 -2024-10-04 09:00:00+00:00,-0.022332542630749685 -2024-10-04 10:00:00+00:00,-0.015498309292695467 -2024-10-04 11:00:00+00:00,-0.0025484306455894057 -2024-10-04 12:00:00+00:00,0.17147837946990308 -2024-10-04 13:00:00+00:00,0.2872033346376668 -2024-10-04 14:00:00+00:00,0.38177754926041985 -2024-10-04 15:00:00+00:00,0.46731828665133435 -2024-10-04 16:00:00+00:00,0.5483166616824064 -2024-10-04 17:00:00+00:00,0.5940411246077701 -2024-10-04 18:00:00+00:00,0.6291581126592121 -2024-10-04 19:00:00+00:00,0.6413647772275795 -2024-10-04 20:00:00+00:00,0.6381949015791406 -2024-10-06 21:00:00+00:00,0.6354584474206035 -2024-10-06 22:00:00+00:00,0.6381981662716782 -2024-10-06 23:00:00+00:00,0.6214250324225361 -2024-10-07 00:00:00+00:00,0.5718457961313561 -2024-10-07 01:00:00+00:00,0.5232940207336583 -2024-10-07 02:00:00+00:00,0.4950862876358997 -2024-10-07 03:00:00+00:00,0.4531447726717488 -2024-10-07 04:00:00+00:00,0.42565048291157837 -2024-10-07 05:00:00+00:00,0.390882586570541 -2024-10-07 06:00:00+00:00,0.3553592195048054 -2024-10-07 07:00:00+00:00,0.3145433710116947 -2024-10-07 08:00:00+00:00,0.28272989004400984 -2024-10-07 09:00:00+00:00,0.25657710706312287 -2024-10-07 10:00:00+00:00,0.25645652658448626 -2024-10-07 11:00:00+00:00,0.22432266408318924 -2024-10-07 12:00:00+00:00,0.18837365313109444 -2024-10-07 13:00:00+00:00,0.13827828952895516 -2024-10-07 14:00:00+00:00,0.12138558825057544 -2024-10-07 15:00:00+00:00,0.0991889067560976 -2024-10-07 16:00:00+00:00,0.07077624852820463 -2024-10-07 17:00:00+00:00,0.049144949363551405 -2024-10-07 18:00:00+00:00,0.038178604441242214 -2024-10-07 19:00:00+00:00,0.02691803671646653 -2024-10-07 20:00:00+00:00,0.026324508878303732 -2024-10-07 21:00:00+00:00,0.023884286111950814 -2024-10-07 22:00:00+00:00,-0.01547354410229218 -2024-10-07 23:00:00+00:00,-0.011352487499749486 -2024-10-08 00:00:00+00:00,-0.03272371110173822 -2024-10-08 01:00:00+00:00,-0.047339641717542236 -2024-10-08 02:00:00+00:00,-0.07021719827730522 -2024-10-08 03:00:00+00:00,-0.06947206796624528 -2024-10-08 04:00:00+00:00,-0.055013950851133586 -2024-10-08 05:00:00+00:00,-0.05167481122134632 -2024-10-08 06:00:00+00:00,-0.0470338920102904 -2024-10-08 07:00:00+00:00,-0.07477067733483977 -2024-10-08 08:00:00+00:00,-0.07586621367360635 -2024-10-08 09:00:00+00:00,-0.07697677674619285 -2024-10-08 10:00:00+00:00,-0.07282149964638052 -2024-10-08 11:00:00+00:00,-0.07049105178020909 -2024-10-08 12:00:00+00:00,-0.053183822804925285 -2024-10-08 13:00:00+00:00,-0.02194671950172733 -2024-10-08 14:00:00+00:00,0.007403680174576266 -2024-10-08 15:00:00+00:00,0.023613780431787745 -2024-10-08 16:00:00+00:00,0.029982220457441144 -2024-10-08 17:00:00+00:00,0.04236795300795393 -2024-10-08 18:00:00+00:00,0.059885345142902224 -2024-10-08 19:00:00+00:00,0.06750284217005742 -2024-10-08 20:00:00+00:00,0.06576153252274253 -2024-10-08 21:00:00+00:00,0.06651963428026875 -2024-10-08 22:00:00+00:00,0.06396236774520503 -2024-10-08 23:00:00+00:00,0.05660311484459157 -2024-10-09 00:00:00+00:00,0.056653807132221345 -2024-10-09 01:00:00+00:00,0.05197951981187998 -2024-10-09 02:00:00+00:00,0.05554263350890665 -2024-10-09 03:00:00+00:00,0.06168988630847139 -2024-10-09 04:00:00+00:00,0.06691990048125263 -2024-10-09 05:00:00+00:00,0.09075629448580003 -2024-10-09 06:00:00+00:00,0.09619214398239251 -2024-10-09 07:00:00+00:00,0.1076510899528671 -2024-10-09 08:00:00+00:00,0.12944198961687903 -2024-10-09 09:00:00+00:00,0.13690275727822154 -2024-10-09 10:00:00+00:00,0.13983181732879757 -2024-10-09 11:00:00+00:00,0.15018556161538754 -2024-10-09 12:00:00+00:00,0.17158310415771894 -2024-10-09 13:00:00+00:00,0.2028252459882367 -2024-10-09 14:00:00+00:00,0.2273844711148172 -2024-10-09 15:00:00+00:00,0.2482626734662574 -2024-10-09 16:00:00+00:00,0.265061690425739 -2024-10-09 17:00:00+00:00,0.27097474712704184 -2024-10-09 18:00:00+00:00,0.28624025027335165 -2024-10-09 19:00:00+00:00,0.29198683820536075 -2024-10-09 20:00:00+00:00,0.29236394455432446 -2024-10-09 21:00:00+00:00,0.27863815671315706 -2024-10-09 22:00:00+00:00,0.2688571188693629 -2024-10-09 23:00:00+00:00,0.2528650565259909 -2024-10-10 00:00:00+00:00,0.24144261387490928 -2024-10-10 01:00:00+00:00,0.22008950223801094 -2024-10-10 02:00:00+00:00,0.2104243634656484 -2024-10-10 03:00:00+00:00,0.20133145572700073 -2024-10-10 04:00:00+00:00,0.20579334902890878 -2024-10-10 05:00:00+00:00,0.19585559194035795 -2024-10-10 06:00:00+00:00,0.174430219954246 -2024-10-10 07:00:00+00:00,0.14783848725909365 -2024-10-10 08:00:00+00:00,0.12946788771435536 -2024-10-10 09:00:00+00:00,0.09860239932217496 -2024-10-10 10:00:00+00:00,0.07018525144428622 -2024-10-10 11:00:00+00:00,0.055975973175918625 -2024-10-10 12:00:00+00:00,0.016763849482174464 -2024-10-10 13:00:00+00:00,-0.017978000699315544 -2024-10-10 14:00:00+00:00,-0.03270762120394011 -2024-10-10 15:00:00+00:00,-0.055601681471614484 -2024-10-10 16:00:00+00:00,-0.0450645300406336 -2024-10-10 17:00:00+00:00,-0.04475121162556661 -2024-10-10 18:00:00+00:00,-0.04886184578327857 -2024-10-10 19:00:00+00:00,-0.06620366062725225 -2024-10-10 20:00:00+00:00,-0.07799905789102013 -2024-10-10 21:00:00+00:00,-0.08922338272284946 -2024-10-10 22:00:00+00:00,-0.08758747331506811 -2024-10-10 23:00:00+00:00,-0.08179765855607002 -2024-10-11 00:00:00+00:00,-0.09579369931688575 -2024-10-11 01:00:00+00:00,-0.08189551245638427 -2024-10-11 02:00:00+00:00,-0.07773145708182483 -2024-10-11 03:00:00+00:00,-0.06999344837433341 -2024-10-11 04:00:00+00:00,-0.06289394356508637 -2024-10-11 05:00:00+00:00,-0.05813058289041351 -2024-10-11 06:00:00+00:00,-0.05389569252830029 -2024-10-11 07:00:00+00:00,-0.04334247993659801 -2024-10-11 08:00:00+00:00,-0.037771245228697126 -2024-10-11 09:00:00+00:00,-0.016622599856646048 -2024-10-11 10:00:00+00:00,0.00978870463549697 -2024-10-11 11:00:00+00:00,0.026062077617780233 -2024-10-11 12:00:00+00:00,0.04282255983903838 -2024-10-11 13:00:00+00:00,0.0578591477919872 -2024-10-11 14:00:00+00:00,0.0826216124526411 -2024-10-11 15:00:00+00:00,0.09007230000784716 -2024-10-11 16:00:00+00:00,0.08539039082737077 -2024-10-11 17:00:00+00:00,0.08298273673065637 -2024-10-11 18:00:00+00:00,0.0862134039001603 -2024-10-11 19:00:00+00:00,0.09031477101126484 -2024-10-11 20:00:00+00:00,0.09138205554549472 -2024-10-13 21:00:00+00:00,0.09149594450482823 -2024-10-13 22:00:00+00:00,0.10721484959259442 -2024-10-13 23:00:00+00:00,0.11567593079135463 -2024-10-14 00:00:00+00:00,0.11412633992665633 -2024-10-14 01:00:00+00:00,0.11097351130126754 -2024-10-14 02:00:00+00:00,0.11569453148024422 -2024-10-14 03:00:00+00:00,0.11879282898252086 -2024-10-14 04:00:00+00:00,0.11675539450160954 -2024-10-14 05:00:00+00:00,0.10856361085413369 -2024-10-14 06:00:00+00:00,0.10011063379866414 -2024-10-14 07:00:00+00:00,0.10383424854097711 -2024-10-14 08:00:00+00:00,0.1110725877431662 -2024-10-14 09:00:00+00:00,0.1131644764315638 -2024-10-14 10:00:00+00:00,0.12332576270961226 -2024-10-14 11:00:00+00:00,0.13937434013300276 -2024-10-14 12:00:00+00:00,0.1585762245515525 -2024-10-14 13:00:00+00:00,0.17540304311819455 -2024-10-14 14:00:00+00:00,0.1908952452075141 -2024-10-14 15:00:00+00:00,0.19974075687059667 -2024-10-14 16:00:00+00:00,0.2128505935653493 -2024-10-14 17:00:00+00:00,0.21590986056477846 -2024-10-14 18:00:00+00:00,0.2181596012559055 -2024-10-14 19:00:00+00:00,0.20650729437565474 -2024-10-14 20:00:00+00:00,0.19390782551650432 -2024-10-14 21:00:00+00:00,0.1832625684271818 -2024-10-14 22:00:00+00:00,0.16996201009877154 -2024-10-14 23:00:00+00:00,0.15648764662097392 -2024-10-15 00:00:00+00:00,0.13297938296605594 -2024-10-15 01:00:00+00:00,0.10841901249037278 -2024-10-15 02:00:00+00:00,0.09591822066479949 -2024-10-15 03:00:00+00:00,0.09237009919846173 -2024-10-15 04:00:00+00:00,0.08566578637783095 -2024-10-15 05:00:00+00:00,0.07624598816931893 -2024-10-15 06:00:00+00:00,0.0419912062319554 -2024-10-15 07:00:00+00:00,0.00837288754905785 -2024-10-15 08:00:00+00:00,-0.024523207003653624 -2024-10-15 09:00:00+00:00,-0.0696409653340595 -2024-10-15 10:00:00+00:00,-0.08505070801078318 -2024-10-15 11:00:00+00:00,-0.07940249263771193 -2024-10-15 12:00:00+00:00,-0.0957703866600923 -2024-10-15 13:00:00+00:00,-0.09920653853905037 -2024-10-15 14:00:00+00:00,-0.09741769413037105 -2024-10-15 15:00:00+00:00,-0.09554418134143816 -2024-10-15 16:00:00+00:00,-0.07487924475364593 -2024-10-15 17:00:00+00:00,-0.05903202384010342 -2024-10-15 18:00:00+00:00,-0.05838782484698868 -2024-10-15 19:00:00+00:00,-0.06008951709060284 -2024-10-15 20:00:00+00:00,-0.06265250084737772 -2024-10-15 21:00:00+00:00,-0.06474426873830907 -2024-10-15 22:00:00+00:00,-0.06373076188663163 -2024-10-15 23:00:00+00:00,-0.07345829057106812 -2024-10-16 00:00:00+00:00,-0.06580369577318379 -2024-10-16 01:00:00+00:00,-0.07844122183439595 -2024-10-16 02:00:00+00:00,-0.08242285938280247 -2024-10-16 03:00:00+00:00,-0.07806177359441335 -2024-10-16 04:00:00+00:00,-0.06625680012953694 -2024-10-16 05:00:00+00:00,-0.048913794706862745 -2024-10-16 06:00:00+00:00,-0.0421873512024149 -2024-10-16 07:00:00+00:00,-0.02167874331485109 -2024-10-16 08:00:00+00:00,-0.00424688535949258 -2024-10-16 09:00:00+00:00,-0.005777516472960542 -2024-10-16 10:00:00+00:00,0.0016247242953681962 -2024-10-16 11:00:00+00:00,-0.00950599560744081 -2024-10-16 12:00:00+00:00,0.004377411826027355 -2024-10-16 13:00:00+00:00,0.004036749139146423 -2024-10-16 14:00:00+00:00,0.02909136670197654 -2024-10-16 15:00:00+00:00,0.05524992614067514 -2024-10-16 16:00:00+00:00,0.07750805759670243 -2024-10-16 17:00:00+00:00,0.09478143058822752 -2024-10-16 18:00:00+00:00,0.10890978343812208 -2024-10-16 19:00:00+00:00,0.11443017631552266 -2024-10-16 20:00:00+00:00,0.11154808895375368 -2024-10-16 21:00:00+00:00,0.1033122873004686 -2024-10-16 22:00:00+00:00,0.09480489526669089 -2024-10-16 23:00:00+00:00,0.08610189700357296 -2024-10-17 00:00:00+00:00,0.07686619298542041 -2024-10-17 01:00:00+00:00,0.055512109290475564 -2024-10-17 02:00:00+00:00,0.04078156383954479 -2024-10-17 03:00:00+00:00,0.04018319844246321 -2024-10-17 04:00:00+00:00,0.03813965634000738 -2024-10-17 05:00:00+00:00,0.0337107882388068 -2024-10-17 06:00:00+00:00,0.03942935837898176 -2024-10-17 07:00:00+00:00,0.05462847335058996 -2024-10-17 08:00:00+00:00,0.0707003899426013 -2024-10-17 09:00:00+00:00,0.06717040562071475 -2024-10-17 10:00:00+00:00,0.06204383208512354 -2024-10-17 11:00:00+00:00,0.04982165815172834 -2024-10-17 12:00:00+00:00,0.06408836907968407 -2024-10-17 13:00:00+00:00,0.0706268079083543 -2024-10-17 14:00:00+00:00,0.09385063539053817 -2024-10-17 15:00:00+00:00,0.11943225936784074 -2024-10-17 16:00:00+00:00,0.14473487348834624 -2024-10-17 17:00:00+00:00,0.1662598859931279 -2024-10-17 18:00:00+00:00,0.18306427030893246 -2024-10-17 19:00:00+00:00,0.18967665949870138 -2024-10-17 20:00:00+00:00,0.19277552100638218 -2024-10-17 21:00:00+00:00,0.188778611691788 -2024-10-17 22:00:00+00:00,0.18716532249442253 -2024-10-17 23:00:00+00:00,0.17531257087259178 -2024-10-18 00:00:00+00:00,0.15956112648660792 -2024-10-18 01:00:00+00:00,0.14253009596779975 -2024-10-18 02:00:00+00:00,0.12030316213150627 -2024-10-18 03:00:00+00:00,0.09904498705026299 -2024-10-18 04:00:00+00:00,0.08189918051027689 -2024-10-18 05:00:00+00:00,0.06649549526659371 -2024-10-18 06:00:00+00:00,0.05917357098431353 -2024-10-18 07:00:00+00:00,0.06369145286018352 -2024-10-18 08:00:00+00:00,0.052784477659116646 -2024-10-18 09:00:00+00:00,0.04355782212940085 -2024-10-18 10:00:00+00:00,0.03750778919726372 -2024-10-18 11:00:00+00:00,0.03752548089772745 -2024-10-18 12:00:00+00:00,0.02578406578103909 -2024-10-18 13:00:00+00:00,0.00608028965504559 -2024-10-18 14:00:00+00:00,-0.020036119442551126 -2024-10-18 15:00:00+00:00,-0.04210411951115134 -2024-10-18 16:00:00+00:00,-0.07183712105194218 -2024-10-18 17:00:00+00:00,-0.08035343711893006 -2024-10-18 18:00:00+00:00,-0.09129524102192477 -2024-10-18 19:00:00+00:00,-0.09922633819923021 -2024-10-18 20:00:00+00:00,-0.1036711996549684 -2024-10-20 21:00:00+00:00,-0.10509470991624426 -2024-10-20 22:00:00+00:00,-0.1026989449082123 -2024-10-20 23:00:00+00:00,-0.09717862822205348 -2024-10-21 00:00:00+00:00,-0.10913645841696962 -2024-10-21 01:00:00+00:00,-0.13162038283275024 -2024-10-21 02:00:00+00:00,-0.14614060415183872 -2024-10-21 03:00:00+00:00,-0.15585142593573664 -2024-10-21 04:00:00+00:00,-0.15402541535689807 -2024-10-21 05:00:00+00:00,-0.14748907754889728 -2024-10-21 06:00:00+00:00,-0.11914876641671412 -2024-10-21 07:00:00+00:00,-0.07939326605483643 -2024-10-21 08:00:00+00:00,-0.03832678268238965 -2024-10-21 09:00:00+00:00,0.003219057939134018 -2024-10-21 10:00:00+00:00,0.02631942813619048 -2024-10-21 11:00:00+00:00,0.04244285859672914 -2024-10-21 12:00:00+00:00,0.05451172452904984 -2024-10-21 13:00:00+00:00,0.0800983092392471 -2024-10-21 14:00:00+00:00,0.10784736211203949 -2024-10-21 15:00:00+00:00,0.14686616579172096 -2024-10-21 16:00:00+00:00,0.17943228074543072 -2024-10-21 17:00:00+00:00,0.22140935336446432 -2024-10-21 18:00:00+00:00,0.25384826378262915 -2024-10-21 19:00:00+00:00,0.2764502789104597 -2024-10-21 20:00:00+00:00,0.2945977234817292 -2024-10-21 21:00:00+00:00,0.29843862480129246 -2024-10-21 22:00:00+00:00,0.2941380360938126 -2024-10-21 23:00:00+00:00,0.282311215470088 -2024-10-22 00:00:00+00:00,0.2707852310444423 -2024-10-22 01:00:00+00:00,0.26106219218053184 -2024-10-22 02:00:00+00:00,0.26426992877225075 -2024-10-22 03:00:00+00:00,0.2709509767712177 -2024-10-22 04:00:00+00:00,0.2688697354396936 -2024-10-22 05:00:00+00:00,0.26226056077322824 -2024-10-22 06:00:00+00:00,0.252498266538538 -2024-10-22 07:00:00+00:00,0.25609193041120193 -2024-10-22 08:00:00+00:00,0.25447338295634836 -2024-10-22 09:00:00+00:00,0.24232810067169908 -2024-10-22 10:00:00+00:00,0.2268601091304845 -2024-10-22 11:00:00+00:00,0.21367168146565518 -2024-10-22 12:00:00+00:00,0.2048924668397376 -2024-10-22 13:00:00+00:00,0.19623761245375704 -2024-10-22 14:00:00+00:00,0.1916876540322221 -2024-10-22 15:00:00+00:00,0.19622899539390914 -2024-10-22 16:00:00+00:00,0.19388128283802075 -2024-10-22 17:00:00+00:00,0.18337089513369165 -2024-10-22 18:00:00+00:00,0.17966764670282487 -2024-10-22 19:00:00+00:00,0.1790264389954075 -2024-10-22 20:00:00+00:00,0.17456935103098203 -2024-10-22 21:00:00+00:00,0.16557796472233122 -2024-10-22 22:00:00+00:00,0.1582419445121559 -2024-10-22 23:00:00+00:00,0.15755142218779383 -2024-10-23 00:00:00+00:00,0.18042293407398802 -2024-10-23 01:00:00+00:00,0.21040576607515504 -2024-10-23 02:00:00+00:00,0.2391569220182248 -2024-10-23 03:00:00+00:00,0.2596752701557534 -2024-10-23 04:00:00+00:00,0.29823893014776104 -2024-10-23 05:00:00+00:00,0.3327917813648753 -2024-10-23 06:00:00+00:00,0.365723026262998 -2024-10-23 07:00:00+00:00,0.39397715800640754 -2024-10-23 08:00:00+00:00,0.41489447309876937 -2024-10-23 09:00:00+00:00,0.45136365759447017 -2024-10-23 10:00:00+00:00,0.4826900710017412 -2024-10-23 11:00:00+00:00,0.520319710326504 -2024-10-23 12:00:00+00:00,0.54474954500742 -2024-10-23 13:00:00+00:00,0.5579210730907107 -2024-10-23 14:00:00+00:00,0.5582130557987739 -2024-10-23 15:00:00+00:00,0.5356473664014061 -2024-10-23 16:00:00+00:00,0.5148947907607067 -2024-10-23 17:00:00+00:00,0.4862265928568945 -2024-10-23 18:00:00+00:00,0.4491306931561212 -2024-10-23 19:00:00+00:00,0.40928483791299186 -2024-10-23 20:00:00+00:00,0.3872029303816191 -2024-10-23 21:00:00+00:00,0.35990567598659595 -2024-10-23 22:00:00+00:00,0.33912400173423407 -2024-10-23 23:00:00+00:00,0.32033352758514866 -2024-10-24 00:00:00+00:00,0.2917502953875726 -2024-10-24 01:00:00+00:00,0.26906257448763427 -2024-10-24 02:00:00+00:00,0.22843757863171277 -2024-10-24 03:00:00+00:00,0.19129335021318639 -2024-10-24 04:00:00+00:00,0.1454134749540401 -2024-10-24 05:00:00+00:00,0.12129205160340462 -2024-10-24 06:00:00+00:00,0.07484601277764114 -2024-10-24 07:00:00+00:00,0.04350685400788734 -2024-10-24 08:00:00+00:00,0.008884927860520975 -2024-10-24 09:00:00+00:00,-0.01993720718780878 -2024-10-24 10:00:00+00:00,-0.05314045023493463 -2024-10-24 11:00:00+00:00,-0.06275392612386099 -2024-10-24 12:00:00+00:00,-0.06957070722060621 -2024-10-24 13:00:00+00:00,-0.06183376127395945 -2024-10-24 14:00:00+00:00,-0.07708448725568928 -2024-10-24 15:00:00+00:00,-0.09278138667434632 -2024-10-24 16:00:00+00:00,-0.11830139178383092 -2024-10-24 17:00:00+00:00,-0.14221249103732703 -2024-10-24 18:00:00+00:00,-0.14377004753464462 -2024-10-24 19:00:00+00:00,-0.14159696447657666 -2024-10-24 20:00:00+00:00,-0.13971666334018096 -2024-10-24 21:00:00+00:00,-0.13649173608700949 -2024-10-24 22:00:00+00:00,-0.14293953683065297 -2024-10-24 23:00:00+00:00,-0.13886371648075624 -2024-10-25 00:00:00+00:00,-0.11669760405300167 -2024-10-25 01:00:00+00:00,-0.11060509313037414 -2024-10-25 02:00:00+00:00,-0.10576788265674963 -2024-10-25 03:00:00+00:00,-0.09917727179953317 -2024-10-25 04:00:00+00:00,-0.10484927444076675 -2024-10-25 05:00:00+00:00,-0.10578489731418017 -2024-10-25 06:00:00+00:00,-0.09494203891230768 -2024-10-25 07:00:00+00:00,-0.07794615795455684 -2024-10-25 08:00:00+00:00,-0.06318361694258101 -2024-10-25 09:00:00+00:00,-0.047866143307089715 -2024-10-25 10:00:00+00:00,-0.04369585891112138 -2024-10-25 11:00:00+00:00,-0.04798756362754375 -2024-10-25 12:00:00+00:00,-0.04107094978851933 -2024-10-25 13:00:00+00:00,-0.02720669735293768 -2024-10-25 14:00:00+00:00,-0.015077078523319187 -2024-10-25 15:00:00+00:00,-0.0010943050411640343 -2024-10-25 16:00:00+00:00,0.018887575094936437 -2024-10-25 17:00:00+00:00,0.03177494471611908 -2024-10-25 18:00:00+00:00,0.04805108963626026 -2024-10-25 19:00:00+00:00,0.06081386882280526 -2024-10-25 20:00:00+00:00,0.07410876569178981 -2024-10-27 21:00:00+00:00,0.13489412630775632 -2024-10-27 22:00:00+00:00,0.18185822221704484 -2024-10-27 23:00:00+00:00,0.2168203119212535 -2024-10-28 00:00:00+00:00,0.2822655923229149 -2024-10-28 01:00:00+00:00,0.3609561613860137 -2024-10-28 02:00:00+00:00,0.39647776208920504 -2024-10-28 03:00:00+00:00,0.424416591562192 -2024-10-28 04:00:00+00:00,0.4425063685959003 -2024-10-28 05:00:00+00:00,0.4430210785955353 -2024-10-28 06:00:00+00:00,0.4284041581838949 -2024-10-28 07:00:00+00:00,0.4058478341214027 -2024-10-28 08:00:00+00:00,0.3711060094670984 -2024-10-28 09:00:00+00:00,0.31979425500043135 -2024-10-28 10:00:00+00:00,0.24451815956356882 -2024-10-28 11:00:00+00:00,0.1983101855367977 -2024-10-28 12:00:00+00:00,0.15123202713365913 -2024-10-28 13:00:00+00:00,0.12331344687893875 -2024-10-28 14:00:00+00:00,0.11551041737021706 -2024-10-28 15:00:00+00:00,0.12890108750019635 -2024-10-28 16:00:00+00:00,0.14183222691826813 -2024-10-28 17:00:00+00:00,0.15178303726668219 -2024-10-28 18:00:00+00:00,0.15641363754235726 -2024-10-28 19:00:00+00:00,0.15578617465243383 -2024-10-28 20:00:00+00:00,0.15886396099620015 -2024-10-28 21:00:00+00:00,0.15627403336242196 -2024-10-28 22:00:00+00:00,0.15621327486456948 -2024-10-28 23:00:00+00:00,0.14114329855019037 -2024-10-29 00:00:00+00:00,0.11823498891865825 -2024-10-29 01:00:00+00:00,0.09255770941908281 -2024-10-29 02:00:00+00:00,0.07593240258131573 -2024-10-29 03:00:00+00:00,0.06547175018613416 -2024-10-29 04:00:00+00:00,0.047595492609445955 -2024-10-29 05:00:00+00:00,0.025469131344408424 -2024-10-29 06:00:00+00:00,0.021245126007471526 -2024-10-29 07:00:00+00:00,0.030856003580993274 -2024-10-29 08:00:00+00:00,0.05638183639695171 -2024-10-29 09:00:00+00:00,0.07701453348758491 -2024-10-29 10:00:00+00:00,0.08687759208004309 -2024-10-29 11:00:00+00:00,0.12001956001341796 -2024-10-29 12:00:00+00:00,0.15187700429154916 -2024-10-29 13:00:00+00:00,0.16712854035799296 -2024-10-29 14:00:00+00:00,0.1546774242806066 -2024-10-29 15:00:00+00:00,0.15193449944189297 -2024-10-29 16:00:00+00:00,0.15244150135521295 -2024-10-29 17:00:00+00:00,0.14033226922057906 -2024-10-29 18:00:00+00:00,0.129963699665268 -2024-10-29 19:00:00+00:00,0.12043888078673604 -2024-10-29 20:00:00+00:00,0.10697711236863938 -2024-10-29 21:00:00+00:00,0.09584920705682975 -2024-10-29 22:00:00+00:00,0.0767849028147225 -2024-10-29 23:00:00+00:00,0.06177116128242233 -2024-10-30 00:00:00+00:00,0.04802796023821543 -2024-10-30 01:00:00+00:00,0.03400091713820075 -2024-10-30 02:00:00+00:00,0.030201941294734524 -2024-10-30 03:00:00+00:00,0.029035200206067202 -2024-10-30 04:00:00+00:00,0.02930587086072478 -2024-10-30 05:00:00+00:00,0.01889336643503725 -2024-10-30 06:00:00+00:00,0.014189628022506895 -2024-10-30 07:00:00+00:00,0.014730122109256172 -2024-10-30 08:00:00+00:00,-0.022906016393790196 -2024-10-30 09:00:00+00:00,-0.03601802215666794 -2024-10-30 10:00:00+00:00,-0.05864403211722902 -2024-10-30 11:00:00+00:00,-0.06469410793116026 -2024-10-30 12:00:00+00:00,-0.043010331341719166 -2024-10-30 13:00:00+00:00,-0.05871665644866653 -2024-10-30 14:00:00+00:00,-0.044825980604258575 -2024-10-30 15:00:00+00:00,-0.04156888721502128 -2024-10-30 16:00:00+00:00,-0.04460599197028614 -2024-10-30 17:00:00+00:00,-0.03467089179883942 -2024-10-30 18:00:00+00:00,-0.025534606572790608 -2024-10-30 19:00:00+00:00,-0.013458775052981764 -2024-10-30 20:00:00+00:00,0.004771107477438363 -2024-10-30 21:00:00+00:00,0.013096273477259501 -2024-10-30 22:00:00+00:00,0.016757343437490135 -2024-10-30 23:00:00+00:00,0.014488867270301853 -2024-10-31 00:00:00+00:00,0.03552081480574998 -2024-10-31 01:00:00+00:00,0.04896156213629865 -2024-10-31 02:00:00+00:00,0.05199392472135855 -2024-10-31 03:00:00+00:00,0.0253783236159677 -2024-10-31 04:00:00+00:00,-0.006293481507810839 -2024-10-31 05:00:00+00:00,-0.03725807547650106 -2024-10-31 06:00:00+00:00,-0.1142216966715921 -2024-10-31 07:00:00+00:00,-0.1673160244264693 -2024-10-31 08:00:00+00:00,-0.1949618250956746 -2024-10-31 09:00:00+00:00,-0.2018756367299943 -2024-10-31 10:00:00+00:00,-0.21217135083972494 -2024-10-31 11:00:00+00:00,-0.19787686644320956 -2024-10-31 12:00:00+00:00,-0.18641677905057463 -2024-10-31 13:00:00+00:00,-0.1533763484261499 -2024-10-31 14:00:00+00:00,-0.15613525493489533 -2024-10-31 15:00:00+00:00,-0.1747852784966426 -2024-10-31 16:00:00+00:00,-0.18054486643251266 -2024-10-31 17:00:00+00:00,-0.20437879012663984 -2024-10-31 18:00:00+00:00,-0.23077427119608274 -2024-10-31 19:00:00+00:00,-0.2579186022767601 -2024-10-31 20:00:00+00:00,-0.26779044455048506 -2024-10-31 21:00:00+00:00,-0.2705585210378558 -2024-10-31 22:00:00+00:00,-0.26972372602327255 -2024-10-31 23:00:00+00:00,-0.27261699231073067 -2024-11-01 00:00:00+00:00,-0.26762890188282995 -2024-11-01 01:00:00+00:00,-0.2539700971101695 -2024-11-01 02:00:00+00:00,-0.22585598970010778 -2024-11-01 03:00:00+00:00,-0.1918423045246982 -2024-11-01 04:00:00+00:00,-0.15766243944966618 -2024-11-01 05:00:00+00:00,-0.12469915553674582 -2024-11-01 06:00:00+00:00,-0.10877978317719794 -2024-11-01 07:00:00+00:00,-0.08326141699035361 -2024-11-01 08:00:00+00:00,-0.054820971493683146 -2024-11-01 09:00:00+00:00,-0.021064827910862505 -2024-11-01 10:00:00+00:00,-0.0027537202273322237 -2024-11-01 11:00:00+00:00,0.012022831037256765 -2024-11-01 12:00:00+00:00,-0.02743169809772894 -2024-11-01 13:00:00+00:00,-0.02691964316821327 -2024-11-01 14:00:00+00:00,0.011360965601852513 -2024-11-01 15:00:00+00:00,0.04497271360574473 -2024-11-01 16:00:00+00:00,0.06680559066171554 -2024-11-01 17:00:00+00:00,0.08450592920229383 -2024-11-01 18:00:00+00:00,0.10123974510500489 -2024-11-01 19:00:00+00:00,0.11375495989938145 -2024-11-01 20:00:00+00:00,0.12473690926935888 -2024-11-03 22:00:00+00:00,0.08732690482398198 -2024-11-03 23:00:00+00:00,0.045375170232034634 -2024-11-04 00:00:00+00:00,-0.005559951402489105 -2024-11-04 01:00:00+00:00,-0.06805829511728234 -2024-11-04 02:00:00+00:00,-0.11417456674433879 -2024-11-04 03:00:00+00:00,-0.15522663634681066 -2024-11-04 04:00:00+00:00,-0.1789998916040645 -2024-11-04 05:00:00+00:00,-0.19287352587565465 -2024-11-04 06:00:00+00:00,-0.1782517461638804 -2024-11-04 07:00:00+00:00,-0.16229164244484195 -2024-11-04 08:00:00+00:00,-0.15503752537216542 -2024-11-04 09:00:00+00:00,-0.1637810231029846 -2024-11-04 10:00:00+00:00,-0.17482756949490863 -2024-11-04 11:00:00+00:00,-0.20191158653136654 -2024-11-04 12:00:00+00:00,-0.20056816299549496 -2024-11-04 13:00:00+00:00,-0.1952356441227039 -2024-11-04 14:00:00+00:00,-0.18971032997311 -2024-11-04 15:00:00+00:00,-0.16949864133766823 -2024-11-04 16:00:00+00:00,-0.1493385019071809 -2024-11-04 17:00:00+00:00,-0.13279892255960135 -2024-11-04 18:00:00+00:00,-0.1140194923293052 -2024-11-04 19:00:00+00:00,-0.0913060413815856 -2024-11-04 20:00:00+00:00,-0.07247007791679039 -2024-11-04 21:00:00+00:00,-0.05816304012626006 -2024-11-04 22:00:00+00:00,-0.04740780493278862 -2024-11-04 23:00:00+00:00,-0.025518001804783808 -2024-11-05 00:00:00+00:00,-0.00807706770956429 -2024-11-05 01:00:00+00:00,0.005041351512716119 -2024-11-05 02:00:00+00:00,0.01382596655571433 -2024-11-05 03:00:00+00:00,0.03092130920694558 -2024-11-05 04:00:00+00:00,0.050344482974082894 -2024-11-05 05:00:00+00:00,0.06203677600564106 -2024-11-05 06:00:00+00:00,0.06442775458015149 -2024-11-05 07:00:00+00:00,0.05934458674445864 -2024-11-05 08:00:00+00:00,0.04782535739462901 -2024-11-05 09:00:00+00:00,0.03817552975704075 -2024-11-05 10:00:00+00:00,0.0356843482203999 -2024-11-05 11:00:00+00:00,0.02542847267778825 -2024-11-05 12:00:00+00:00,0.02787269015661309 -2024-11-05 13:00:00+00:00,0.01024496664112462 -2024-11-05 14:00:00+00:00,-0.020993220918228417 -2024-11-05 15:00:00+00:00,-0.02855598073350052 -2024-11-05 16:00:00+00:00,-0.04061733408462942 -2024-11-05 17:00:00+00:00,-0.07186064700550787 -2024-11-05 18:00:00+00:00,-0.10573092753321589 -2024-11-05 19:00:00+00:00,-0.139119541308105 -2024-11-05 20:00:00+00:00,-0.15755085362394539 -2024-11-05 21:00:00+00:00,-0.16317594613778397 -2024-11-05 22:00:00+00:00,-0.16652123575818223 -2024-11-05 23:00:00+00:00,-0.18056644858603477 -2024-11-06 00:00:00+00:00,-0.07208829398010153 -2024-11-06 01:00:00+00:00,0.015079357565639384 -2024-11-06 02:00:00+00:00,0.1723864423087207 -2024-11-06 03:00:00+00:00,0.2850528312976337 -2024-11-06 04:00:00+00:00,0.33944327473571434 -2024-11-06 05:00:00+00:00,0.393185721591891 -2024-11-06 06:00:00+00:00,0.45490204637562215 -2024-11-06 07:00:00+00:00,0.4894558387688335 -2024-11-06 08:00:00+00:00,0.5079187149883921 -2024-11-06 09:00:00+00:00,0.5242538035935809 -2024-11-06 10:00:00+00:00,0.5309180034570034 -2024-11-06 11:00:00+00:00,0.5479578409174053 -2024-11-06 12:00:00+00:00,0.5700607581194959 -2024-11-06 13:00:00+00:00,0.5725053712195063 -2024-11-06 14:00:00+00:00,0.5666998074520393 -2024-11-06 15:00:00+00:00,0.5609581286319667 -2024-11-06 16:00:00+00:00,0.568494327520682 -2024-11-06 17:00:00+00:00,0.5743817274759806 -2024-11-06 18:00:00+00:00,0.5534629470708694 -2024-11-06 19:00:00+00:00,0.53220221658745 -2024-11-06 20:00:00+00:00,0.5187335278430112 -2024-11-06 21:00:00+00:00,0.5073750562871737 -2024-11-06 22:00:00+00:00,0.48471670898518937 -2024-11-06 23:00:00+00:00,0.4443693803698352 -2024-11-07 00:00:00+00:00,0.4292326484874991 -2024-11-07 01:00:00+00:00,0.40705734403852034 -2024-11-07 02:00:00+00:00,0.3791415659769086 -2024-11-07 03:00:00+00:00,0.34345665078933507 -2024-11-07 04:00:00+00:00,0.3000971685108311 -2024-11-07 05:00:00+00:00,0.24938421608740668 -2024-11-07 06:00:00+00:00,0.2009067266834279 -2024-11-07 07:00:00+00:00,0.16606075376938634 -2024-11-07 08:00:00+00:00,0.13981891454878337 -2024-11-07 09:00:00+00:00,0.11040643180271559 -2024-11-07 10:00:00+00:00,0.09168831646832132 -2024-11-07 11:00:00+00:00,0.07980730512122136 -2024-11-07 12:00:00+00:00,0.045498167397710176 -2024-11-07 13:00:00+00:00,-0.002880765774818883 -2024-11-07 14:00:00+00:00,-0.06284852520312256 -2024-11-07 15:00:00+00:00,-0.13001587489534927 -2024-11-07 16:00:00+00:00,-0.16743740670665375 -2024-11-07 17:00:00+00:00,-0.2044208016391167 -2024-11-07 18:00:00+00:00,-0.23441724152479537 -2024-11-07 19:00:00+00:00,-0.2461532871158738 -2024-11-07 20:00:00+00:00,-0.2712096956317396 -2024-11-07 21:00:00+00:00,-0.28328283967545076 -2024-11-07 22:00:00+00:00,-0.28712039880170437 -2024-11-07 23:00:00+00:00,-0.2681085673615371 -2024-11-08 00:00:00+00:00,-0.25326900065078917 -2024-11-08 01:00:00+00:00,-0.24194718626884537 -2024-11-08 02:00:00+00:00,-0.22760733527135812 -2024-11-08 03:00:00+00:00,-0.2389865706975911 -2024-11-08 04:00:00+00:00,-0.25124111046801545 -2024-11-08 05:00:00+00:00,-0.2523950534736912 -2024-11-08 06:00:00+00:00,-0.2537732703189022 -2024-11-08 07:00:00+00:00,-0.26201234881222035 -2024-11-08 08:00:00+00:00,-0.2884559305513221 -2024-11-08 09:00:00+00:00,-0.311470634984488 -2024-11-08 10:00:00+00:00,-0.3341690998824731 -2024-11-08 11:00:00+00:00,-0.32844089887794325 -2024-11-08 12:00:00+00:00,-0.32419867987007933 -2024-11-08 13:00:00+00:00,-0.28782430680271887 -2024-11-08 14:00:00+00:00,-0.25819966343880196 -2024-11-08 15:00:00+00:00,-0.2554202458352961 -2024-11-08 16:00:00+00:00,-0.23685038593697527 -2024-11-08 17:00:00+00:00,-0.21457655968120548 -2024-11-08 18:00:00+00:00,-0.19148935609410955 -2024-11-08 19:00:00+00:00,-0.17265477372706073 -2024-11-08 20:00:00+00:00,-0.16885383570473778 -2024-11-08 21:00:00+00:00,-0.1542194388415794 -2024-11-10 22:00:00+00:00,-0.1371671969819488 -2024-11-10 23:00:00+00:00,-0.10437507362206588 -2024-11-11 00:00:00+00:00,-0.05850802456663473 -2024-11-11 01:00:00+00:00,-0.01600241035433214 -2024-11-11 02:00:00+00:00,0.031043326254746262 -2024-11-11 03:00:00+00:00,0.0720159879712412 -2024-11-11 04:00:00+00:00,0.11342743532210875 -2024-11-11 05:00:00+00:00,0.140830393385329 -2024-11-11 06:00:00+00:00,0.15048421644470977 -2024-11-11 07:00:00+00:00,0.1754781323294594 -2024-11-11 08:00:00+00:00,0.2029522472553822 -2024-11-11 09:00:00+00:00,0.2111561578411454 -2024-11-11 10:00:00+00:00,0.2202827982391966 -2024-11-11 11:00:00+00:00,0.23034745612099528 -2024-11-11 12:00:00+00:00,0.23832008031760665 -2024-11-11 13:00:00+00:00,0.2401753262799673 -2024-11-11 14:00:00+00:00,0.24487473179146946 -2024-11-11 15:00:00+00:00,0.24696258816896943 -2024-11-11 16:00:00+00:00,0.2428324176593435 -2024-11-11 17:00:00+00:00,0.24113690039217772 -2024-11-11 18:00:00+00:00,0.23147645922398397 -2024-11-11 19:00:00+00:00,0.21791940179332414 -2024-11-11 20:00:00+00:00,0.19540125820185494 -2024-11-11 21:00:00+00:00,0.1822328977447114 -2024-11-11 22:00:00+00:00,0.16999862219859097 -2024-11-11 23:00:00+00:00,0.14188346475134495 -2024-11-12 00:00:00+00:00,0.1374640853866822 -2024-11-12 01:00:00+00:00,0.14791084986865144 -2024-11-12 02:00:00+00:00,0.14252400323923098 -2024-11-12 03:00:00+00:00,0.12439443390576344 -2024-11-12 04:00:00+00:00,0.09648785469687482 -2024-11-12 05:00:00+00:00,0.08237884985001642 -2024-11-12 06:00:00+00:00,0.0838674773933974 -2024-11-12 07:00:00+00:00,0.08710936532744995 -2024-11-12 08:00:00+00:00,0.09798994002989048 -2024-11-12 09:00:00+00:00,0.11871984966819582 -2024-11-12 10:00:00+00:00,0.12914106263644953 -2024-11-12 11:00:00+00:00,0.13774866752456205 -2024-11-12 12:00:00+00:00,0.14324182044231293 -2024-11-12 13:00:00+00:00,0.17024367164063392 -2024-11-12 14:00:00+00:00,0.19209134797392835 -2024-11-12 15:00:00+00:00,0.2154752385715426 -2024-11-12 16:00:00+00:00,0.2490497940132741 -2024-11-12 17:00:00+00:00,0.275946670282309 -2024-11-12 18:00:00+00:00,0.2894875657035243 -2024-11-12 19:00:00+00:00,0.29823342319079416 -2024-11-12 20:00:00+00:00,0.2882054377669192 -2024-11-12 21:00:00+00:00,0.2809731934859201 -2024-11-12 22:00:00+00:00,0.264925444337166 -2024-11-12 23:00:00+00:00,0.2589857497694936 -2024-11-13 00:00:00+00:00,0.27315851613647624 -2024-11-13 01:00:00+00:00,0.2549046035620677 -2024-11-13 02:00:00+00:00,0.24846744010847033 -2024-11-13 03:00:00+00:00,0.24577772583444357 -2024-11-13 04:00:00+00:00,0.24453902974133257 -2024-11-13 05:00:00+00:00,0.24596695696476445 -2024-11-13 06:00:00+00:00,0.25465303149064766 -2024-11-13 07:00:00+00:00,0.26398083311073606 -2024-11-13 08:00:00+00:00,0.2599843149144192 -2024-11-13 09:00:00+00:00,0.2447165663000419 -2024-11-13 10:00:00+00:00,0.23786329811156293 -2024-11-13 11:00:00+00:00,0.2159028937119274 -2024-11-13 12:00:00+00:00,0.20477262936788065 -2024-11-13 13:00:00+00:00,0.1606133324673351 -2024-11-13 14:00:00+00:00,0.1501909393690255 -2024-11-13 15:00:00+00:00,0.1521997090000582 -2024-11-13 16:00:00+00:00,0.175731369434601 -2024-11-13 17:00:00+00:00,0.20253558921172043 -2024-11-13 18:00:00+00:00,0.23574646693779755 -2024-11-13 19:00:00+00:00,0.25509121197177365 -2024-11-13 20:00:00+00:00,0.2710896166340149 -2024-11-13 21:00:00+00:00,0.27128107764707465 -2024-11-13 22:00:00+00:00,0.2635532356755732 -2024-11-13 23:00:00+00:00,0.25473451919449985 -2024-11-14 00:00:00+00:00,0.26917302315723646 -2024-11-14 01:00:00+00:00,0.2890644661689521 -2024-11-14 02:00:00+00:00,0.3125228392844974 -2024-11-14 03:00:00+00:00,0.3222349795968853 -2024-11-14 04:00:00+00:00,0.3350267136923435 -2024-11-14 05:00:00+00:00,0.33843873654558365 -2024-11-14 06:00:00+00:00,0.32935768622775186 -2024-11-14 07:00:00+00:00,0.3117089124889958 -2024-11-14 08:00:00+00:00,0.30310421611258676 -2024-11-14 09:00:00+00:00,0.30583154269962165 -2024-11-14 10:00:00+00:00,0.30017538498063345 -2024-11-14 11:00:00+00:00,0.2816336615827595 -2024-11-14 12:00:00+00:00,0.26995984796238304 -2024-11-14 13:00:00+00:00,0.2596517621007308 -2024-11-14 14:00:00+00:00,0.2309072303048083 -2024-11-14 15:00:00+00:00,0.21804006459231573 -2024-11-14 16:00:00+00:00,0.20691006222963892 -2024-11-14 17:00:00+00:00,0.1776439912932517 -2024-11-14 18:00:00+00:00,0.1645763403739693 -2024-11-14 19:00:00+00:00,0.15501534503405878 -2024-11-14 20:00:00+00:00,0.1758320541548244 -2024-11-14 21:00:00+00:00,0.18822312763518312 -2024-11-14 22:00:00+00:00,0.19770077064524116 -2024-11-14 23:00:00+00:00,0.21723224855179524 -2024-11-15 00:00:00+00:00,0.2421046913725604 -2024-11-15 01:00:00+00:00,0.2525306258746127 -2024-11-15 02:00:00+00:00,0.24497794634348224 -2024-11-15 03:00:00+00:00,0.24544262253596116 -2024-11-15 04:00:00+00:00,0.23104380619065523 -2024-11-15 05:00:00+00:00,0.2250271403224815 -2024-11-15 06:00:00+00:00,0.1894297281428976 -2024-11-15 07:00:00+00:00,0.13353512055894612 -2024-11-15 08:00:00+00:00,0.06764008475320793 -2024-11-15 09:00:00+00:00,0.0031167366461204438 -2024-11-15 10:00:00+00:00,-0.05233735929701311 -2024-11-15 11:00:00+00:00,-0.08027048450264829 -2024-11-15 12:00:00+00:00,-0.10889876795999953 -2024-11-15 13:00:00+00:00,-0.13559159667491372 -2024-11-15 14:00:00+00:00,-0.1366917719168157 -2024-11-15 15:00:00+00:00,-0.18433787192779505 -2024-11-15 16:00:00+00:00,-0.2476464930539919 -2024-11-15 17:00:00+00:00,-0.31963305954258203 -2024-11-15 18:00:00+00:00,-0.4009486536912732 -2024-11-15 19:00:00+00:00,-0.43679478980561726 -2024-11-15 20:00:00+00:00,-0.453998517076883 -2024-11-15 21:00:00+00:00,-0.4579957561973629 -2024-11-17 22:00:00+00:00,-0.43740104888493647 -2024-11-17 23:00:00+00:00,-0.41117555399475236 -2024-11-18 00:00:00+00:00,-0.41545842205522376 -2024-11-18 01:00:00+00:00,-0.38783436230713164 -2024-11-18 02:00:00+00:00,-0.3507632686320221 -2024-11-18 03:00:00+00:00,-0.3243427448850298 -2024-11-18 04:00:00+00:00,-0.3004253232042515 -2024-11-18 05:00:00+00:00,-0.2825706444149887 -2024-11-18 06:00:00+00:00,-0.26599993431611324 -2024-11-18 07:00:00+00:00,-0.25142174339174517 -2024-11-18 08:00:00+00:00,-0.20642262807044176 -2024-11-18 09:00:00+00:00,-0.18293417443612725 -2024-11-18 10:00:00+00:00,-0.144577874016818 -2024-11-18 11:00:00+00:00,-0.10833202184767288 -2024-11-18 12:00:00+00:00,-0.061867812634261554 -2024-11-18 13:00:00+00:00,-0.05379622065640888 -2024-11-18 14:00:00+00:00,-0.055075785680514855 -2024-11-18 15:00:00+00:00,-0.04013441029277942 -2024-11-18 16:00:00+00:00,-0.043526387863153104 -2024-11-18 17:00:00+00:00,-0.05342578467340786 -2024-11-18 18:00:00+00:00,-0.06631647123788298 -2024-11-18 19:00:00+00:00,-0.06696511203637101 -2024-11-18 20:00:00+00:00,-0.07835689486097408 -2024-11-18 21:00:00+00:00,-0.07912986550866208 -2024-11-18 22:00:00+00:00,-0.08162572723534822 -2024-11-18 23:00:00+00:00,-0.08536321745157238 -2024-11-19 00:00:00+00:00,-0.10638417739366446 -2024-11-19 01:00:00+00:00,-0.142461747976256 -2024-11-19 02:00:00+00:00,-0.16583349988027862 -2024-11-19 03:00:00+00:00,-0.18042010322525925 -2024-11-19 04:00:00+00:00,-0.17064698501150133 -2024-11-19 05:00:00+00:00,-0.16072620025695983 -2024-11-19 06:00:00+00:00,-0.1441019250190152 -2024-11-19 07:00:00+00:00,-0.12807889541642226 -2024-11-19 08:00:00+00:00,-0.17604855717601708 -2024-11-19 09:00:00+00:00,-0.21050856502557735 -2024-11-19 10:00:00+00:00,-0.23399137955127003 -2024-11-19 11:00:00+00:00,-0.22555208746112498 -2024-11-19 12:00:00+00:00,-0.22482555277557026 -2024-11-19 13:00:00+00:00,-0.26181957200739703 -2024-11-19 14:00:00+00:00,-0.24163175719462515 -2024-11-19 15:00:00+00:00,-0.23032071416815825 -2024-11-19 16:00:00+00:00,-0.18804202559564942 -2024-11-19 17:00:00+00:00,-0.12262092172150574 -2024-11-19 18:00:00+00:00,-0.08089645661530653 -2024-11-19 19:00:00+00:00,-0.038748839149064906 -2024-11-19 20:00:00+00:00,-0.0058440238788932675 -2024-11-19 21:00:00+00:00,0.017370221975255618 -2024-11-19 22:00:00+00:00,0.029776024602028883 -2024-11-19 23:00:00+00:00,0.05000534546798008 -2024-11-20 00:00:00+00:00,0.08131885502999125 -2024-11-20 01:00:00+00:00,0.09319902514235423 -2024-11-20 02:00:00+00:00,0.10886355699508954 -2024-11-20 03:00:00+00:00,0.12683589896525405 -2024-11-20 04:00:00+00:00,0.1473688062186227 -2024-11-20 05:00:00+00:00,0.17254565599014882 -2024-11-20 06:00:00+00:00,0.20386602938964415 -2024-11-20 07:00:00+00:00,0.2498536036554242 -2024-11-20 08:00:00+00:00,0.28112189000435706 -2024-11-20 09:00:00+00:00,0.31214836061954543 -2024-11-20 10:00:00+00:00,0.332580514399325 -2024-11-20 11:00:00+00:00,0.35181846377781767 -2024-11-20 12:00:00+00:00,0.35091579205123935 -2024-11-20 13:00:00+00:00,0.3495599575981885 -2024-11-20 14:00:00+00:00,0.3341437345070801 -2024-11-20 15:00:00+00:00,0.3126735456521317 -2024-11-20 16:00:00+00:00,0.28048267352190237 -2024-11-20 17:00:00+00:00,0.23898289993243793 -2024-11-20 18:00:00+00:00,0.21347757418647006 -2024-11-20 19:00:00+00:00,0.19321582240044677 -2024-11-20 20:00:00+00:00,0.1838344975265045 -2024-11-20 21:00:00+00:00,0.17056041681303213 -2024-11-20 22:00:00+00:00,0.15167547703106266 -2024-11-20 23:00:00+00:00,0.12956704299071475 -2024-11-21 00:00:00+00:00,0.09473488477686942 -2024-11-21 01:00:00+00:00,0.06357310971156949 -2024-11-21 02:00:00+00:00,0.032371455632386414 -2024-11-21 03:00:00+00:00,0.004445698668547493 -2024-11-21 04:00:00+00:00,-0.007033976430392386 -2024-11-21 05:00:00+00:00,-0.0054179500671125425 -2024-11-21 06:00:00+00:00,-0.03823253966777429 -2024-11-21 07:00:00+00:00,-0.05193932593985551 -2024-11-21 08:00:00+00:00,-0.09918037699705451 -2024-11-21 09:00:00+00:00,-0.1385723072897349 -2024-11-21 10:00:00+00:00,-0.16745689874653635 -2024-11-21 11:00:00+00:00,-0.17756924933237883 -2024-11-21 12:00:00+00:00,-0.1908872533602448 -2024-11-21 13:00:00+00:00,-0.2142231567625572 -2024-11-21 14:00:00+00:00,-0.24234988271297198 -2024-11-21 15:00:00+00:00,-0.24391526762894955 -2024-11-21 16:00:00+00:00,-0.21571817298899987 -2024-11-21 17:00:00+00:00,-0.20815955840799916 -2024-11-21 18:00:00+00:00,-0.19117022153216112 -2024-11-21 19:00:00+00:00,-0.17919088099941405 -2024-11-21 20:00:00+00:00,-0.1679228406276536 -2024-11-21 21:00:00+00:00,-0.15414961423232398 -2024-11-21 22:00:00+00:00,-0.14399509652395182 -2024-11-21 23:00:00+00:00,-0.16263762428494033 -2024-11-22 00:00:00+00:00,-0.16158960330810146 -2024-11-22 01:00:00+00:00,-0.15238571675010348 -2024-11-22 02:00:00+00:00,-0.14511331882857803 -2024-11-22 03:00:00+00:00,-0.14781314018546254 -2024-11-22 04:00:00+00:00,-0.13563991600429404 -2024-11-22 05:00:00+00:00,-0.10222055328677015 -2024-11-22 06:00:00+00:00,-0.058917969353814215 -2024-11-22 07:00:00+00:00,-0.03835989967012665 -2024-11-22 08:00:00+00:00,-0.03904676929494144 -2024-11-22 09:00:00+00:00,-0.04025674670134549 -2024-11-22 10:00:00+00:00,-0.05446676607442669 -2024-11-22 11:00:00+00:00,-0.0659365332063544 -2024-11-22 12:00:00+00:00,-0.05965288599395535 -2024-11-22 13:00:00+00:00,-0.07175939731195058 -2024-11-22 14:00:00+00:00,-0.03224444866009435 -2024-11-22 15:00:00+00:00,0.0005179122342156006 -2024-11-22 16:00:00+00:00,0.0130979053880651 -2024-11-22 17:00:00+00:00,0.02455974725629062 -2024-11-22 18:00:00+00:00,0.03238244675699775 -2024-11-22 19:00:00+00:00,0.04284886435149815 -2024-11-22 20:00:00+00:00,0.05343253780185364 -2024-11-22 21:00:00+00:00,0.054893449618504064 -2024-11-24 22:00:00+00:00,0.015047799906540149 -2024-11-24 23:00:00+00:00,-0.024638082915146242 -2024-11-25 00:00:00+00:00,-0.0503448220727023 -2024-11-25 01:00:00+00:00,-0.1054102750073298 -2024-11-25 02:00:00+00:00,-0.14790987175086912 -2024-11-25 03:00:00+00:00,-0.16500317550435284 -2024-11-25 04:00:00+00:00,-0.16462894710033993 -2024-11-25 05:00:00+00:00,-0.1487388371302245 -2024-11-25 06:00:00+00:00,-0.1322011288957583 -2024-11-25 07:00:00+00:00,-0.09835305402378935 -2024-11-25 08:00:00+00:00,-0.05810908591581665 -2024-11-25 09:00:00+00:00,-0.047694477444764516 -2024-11-25 10:00:00+00:00,-0.0389913571048055 -2024-11-25 11:00:00+00:00,-0.025107244506756388 -2024-11-25 12:00:00+00:00,-0.038433284556617764 -2024-11-25 13:00:00+00:00,-0.07021370585431441 -2024-11-25 14:00:00+00:00,-0.10851217033709304 -2024-11-25 15:00:00+00:00,-0.08782279441521723 -2024-11-25 16:00:00+00:00,-0.07667501790186293 -2024-11-25 17:00:00+00:00,-0.06491336943241777 -2024-11-25 18:00:00+00:00,-0.0717905580169429 -2024-11-25 19:00:00+00:00,-0.07412692448042435 -2024-11-25 20:00:00+00:00,-0.07487334351046115 -2024-11-25 21:00:00+00:00,-0.07189263655666878 -2024-11-25 22:00:00+00:00,-0.07360413240132857 -2024-11-25 23:00:00+00:00,-0.05240824871947325 -2024-11-26 00:00:00+00:00,-0.06456066750186551 -2024-11-26 01:00:00+00:00,-0.0704742643541465 -2024-11-26 02:00:00+00:00,-0.07988834434547698 -2024-11-26 03:00:00+00:00,-0.10565848286466917 -2024-11-26 04:00:00+00:00,-0.11666746907923198 -2024-11-26 05:00:00+00:00,-0.13377516518377774 -2024-11-26 06:00:00+00:00,-0.11893048076217383 -2024-11-26 07:00:00+00:00,-0.10730082224651483 -2024-11-26 08:00:00+00:00,-0.1023909664608027 -2024-11-26 09:00:00+00:00,-0.10080756416189729 -2024-11-26 10:00:00+00:00,-0.11102219125919532 -2024-11-26 11:00:00+00:00,-0.11680262911309569 -2024-11-26 12:00:00+00:00,-0.16164140373808777 -2024-11-26 13:00:00+00:00,-0.1810490886580851 -2024-11-26 14:00:00+00:00,-0.1869320430694188 -2024-11-26 15:00:00+00:00,-0.1939579242398679 -2024-11-26 16:00:00+00:00,-0.19533765536496617 -2024-11-26 17:00:00+00:00,-0.20711564806569527 -2024-11-26 18:00:00+00:00,-0.2087979426538027 -2024-11-26 19:00:00+00:00,-0.23007269832652355 -2024-11-26 20:00:00+00:00,-0.24786833085269677 -2024-11-26 21:00:00+00:00,-0.255555868235291 -2024-11-26 22:00:00+00:00,-0.26066085201671285 -2024-11-26 23:00:00+00:00,-0.2733367127911208 -2024-11-27 00:00:00+00:00,-0.2820675243632138 -2024-11-27 01:00:00+00:00,-0.3145709519554032 -2024-11-27 02:00:00+00:00,-0.32967111941991334 -2024-11-27 03:00:00+00:00,-0.3525026338787711 -2024-11-27 04:00:00+00:00,-0.37738199553308505 -2024-11-27 05:00:00+00:00,-0.3826819854840835 -2024-11-27 06:00:00+00:00,-0.4108722113946044 -2024-11-27 07:00:00+00:00,-0.4386466366932211 -2024-11-27 08:00:00+00:00,-0.4651405979762444 -2024-11-27 09:00:00+00:00,-0.5089960878934221 -2024-11-27 10:00:00+00:00,-0.5434584109009677 -2024-11-27 11:00:00+00:00,-0.5572456051558845 -2024-11-27 12:00:00+00:00,-0.5618567048695127 -2024-11-27 13:00:00+00:00,-0.571191820544044 -2024-11-27 14:00:00+00:00,-0.5688852380036735 -2024-11-27 15:00:00+00:00,-0.582053753244054 -2024-11-27 16:00:00+00:00,-0.6176467067430167 -2024-11-27 17:00:00+00:00,-0.6338674343363095 -2024-11-27 18:00:00+00:00,-0.6316145293528166 -2024-11-27 19:00:00+00:00,-0.6094891533190037 -2024-11-27 20:00:00+00:00,-0.5796246660752047 -2024-11-27 21:00:00+00:00,-0.5477863963990046 -2024-11-27 22:00:00+00:00,-0.5290437475484566 -2024-11-27 23:00:00+00:00,-0.4779371850866312 -2024-11-28 00:00:00+00:00,-0.40484871381212884 -2024-11-28 01:00:00+00:00,-0.36347343046244873 -2024-11-28 02:00:00+00:00,-0.32571816937124254 -2024-11-28 03:00:00+00:00,-0.27790743011897234 -2024-11-28 04:00:00+00:00,-0.2373616095638056 -2024-11-28 05:00:00+00:00,-0.20959082013098396 -2024-11-28 06:00:00+00:00,-0.18504571934877845 -2024-11-28 07:00:00+00:00,-0.14703407948411495 -2024-11-28 08:00:00+00:00,-0.10927528381253637 -2024-11-28 09:00:00+00:00,-0.07397964294378312 -2024-11-28 10:00:00+00:00,-0.04851462923812733 -2024-11-28 11:00:00+00:00,-0.029765520161191716 -2024-11-28 12:00:00+00:00,-0.02016134045521767 -2024-11-28 13:00:00+00:00,-0.02788272284561799 -2024-11-28 14:00:00+00:00,-0.03720423072590506 -2024-11-28 15:00:00+00:00,-0.04424297073779826 -2024-11-28 16:00:00+00:00,-0.05236457079567458 -2024-11-28 17:00:00+00:00,-0.0571736355612984 -2024-11-28 18:00:00+00:00,-0.05709898675303293 -2024-11-28 19:00:00+00:00,-0.05910205122802381 -2024-11-28 20:00:00+00:00,-0.06406625215595341 -2024-11-28 21:00:00+00:00,-0.05900895941110207 -2024-11-28 22:00:00+00:00,-0.055810123677531465 -2024-11-28 23:00:00+00:00,-0.08058812845976604 -2024-11-29 00:00:00+00:00,-0.1472650481215112 -2024-11-29 01:00:00+00:00,-0.2488009248009746 -2024-11-29 02:00:00+00:00,-0.3079666296090977 -2024-11-29 03:00:00+00:00,-0.35583757634358903 -2024-11-29 04:00:00+00:00,-0.3962283457071578 -2024-11-29 05:00:00+00:00,-0.4160988533770933 -2024-11-29 06:00:00+00:00,-0.43506179980366255 -2024-11-29 07:00:00+00:00,-0.44527992820277973 -2024-11-29 08:00:00+00:00,-0.43305447406302733 -2024-11-29 09:00:00+00:00,-0.42061510715510053 -2024-11-29 10:00:00+00:00,-0.4220302458209062 -2024-11-29 11:00:00+00:00,-0.41194774482320895 -2024-11-29 12:00:00+00:00,-0.390259771166086 -2024-11-29 13:00:00+00:00,-0.38373774313083686 -2024-11-29 14:00:00+00:00,-0.37656820272562186 -2024-11-29 15:00:00+00:00,-0.3475143667645568 -2024-11-29 16:00:00+00:00,-0.30180535720231205 -2024-11-29 17:00:00+00:00,-0.3276480949275822 -2024-11-29 18:00:00+00:00,-0.34049185702087925 -2024-11-29 19:00:00+00:00,-0.35002481185725287 -2024-11-29 20:00:00+00:00,-0.350074564941508 -2024-11-29 21:00:00+00:00,-0.3396625530851054 -2024-12-01 22:00:00+00:00,-0.3368079847863896 -2024-12-01 23:00:00+00:00,-0.3105508958368546 -2024-12-02 00:00:00+00:00,-0.259477097989361 -2024-12-02 01:00:00+00:00,-0.19025999599500665 -2024-12-02 02:00:00+00:00,-0.12899577083140912 -2024-12-02 03:00:00+00:00,-0.08487142609260445 -2024-12-02 04:00:00+00:00,-0.04534527080045336 -2024-12-02 05:00:00+00:00,-0.002293778525398693 -2024-12-02 06:00:00+00:00,0.0001915077701539758 -2024-12-02 07:00:00+00:00,-0.004245279408763736 -2024-12-02 08:00:00+00:00,-0.01038526617963953 -2024-12-02 09:00:00+00:00,-0.004707076143347422 -2024-12-02 10:00:00+00:00,-0.014085051742910082 -2024-12-02 11:00:00+00:00,-0.02310671294779354 -2024-12-02 12:00:00+00:00,-0.031108222861064405 -2024-12-02 13:00:00+00:00,-0.04148993891436703 -2024-12-02 14:00:00+00:00,-0.05593156899695373 -2024-12-02 15:00:00+00:00,-0.07642080545483054 -2024-12-02 16:00:00+00:00,-0.139864841933786 -2024-12-02 17:00:00+00:00,-0.1615732483838599 -2024-12-02 18:00:00+00:00,-0.17227273208820293 -2024-12-02 19:00:00+00:00,-0.18882335057921296 -2024-12-02 20:00:00+00:00,-0.19844194511685487 -2024-12-02 21:00:00+00:00,-0.19988737451112115 -2024-12-02 22:00:00+00:00,-0.20225188615034995 -2024-12-02 23:00:00+00:00,-0.20435226551271057 -2024-12-03 00:00:00+00:00,-0.175190428654048 -2024-12-03 01:00:00+00:00,-0.14994750315332794 -2024-12-03 02:00:00+00:00,-0.12941874382195806 -2024-12-03 03:00:00+00:00,-0.09359229427374771 -2024-12-03 04:00:00+00:00,-0.06022863956476954 -2024-12-03 05:00:00+00:00,-0.042895535282070796 -2024-12-03 06:00:00+00:00,-0.022046003034603245 -2024-12-03 07:00:00+00:00,-0.01367618713658203 -2024-12-03 08:00:00+00:00,-0.014062500183598559 -2024-12-03 09:00:00+00:00,-0.022341662825169806 -2024-12-03 10:00:00+00:00,-0.01006645791105143 -2024-12-03 11:00:00+00:00,-0.025303075623185123 -2024-12-03 12:00:00+00:00,-0.04110039063272097 -2024-12-03 13:00:00+00:00,-0.11937919423695575 -2024-12-03 14:00:00+00:00,-0.18166168487576329 -2024-12-03 15:00:00+00:00,-0.2021432751497514 -2024-12-03 16:00:00+00:00,-0.2180403242230966 -2024-12-03 17:00:00+00:00,-0.2213096324803132 -2024-12-03 18:00:00+00:00,-0.23475071863646235 -2024-12-03 19:00:00+00:00,-0.20535270102507752 -2024-12-03 20:00:00+00:00,-0.1842077846511927 -2024-12-03 21:00:00+00:00,-0.15437392954740403 -2024-12-03 22:00:00+00:00,-0.12884171908663689 -2024-12-03 23:00:00+00:00,-0.10633253175600998 -2024-12-04 00:00:00+00:00,-0.06674462109231172 -2024-12-04 01:00:00+00:00,-0.03066013699861969 -2024-12-04 02:00:00+00:00,-0.01400522624717837 -2024-12-04 03:00:00+00:00,0.011966629483964653 -2024-12-04 04:00:00+00:00,0.03481105628773662 -2024-12-04 05:00:00+00:00,0.06260300257233098 -2024-12-04 06:00:00+00:00,0.07632486359219115 -2024-12-04 07:00:00+00:00,0.11620011238449024 -2024-12-04 08:00:00+00:00,0.15058442283563522 -2024-12-04 09:00:00+00:00,0.19064524244450354 -2024-12-04 10:00:00+00:00,0.2390844003438417 -2024-12-04 11:00:00+00:00,0.27630500097330923 -2024-12-04 12:00:00+00:00,0.324813391768771 -2024-12-04 13:00:00+00:00,0.35121952824076175 -2024-12-04 14:00:00+00:00,0.3510736861234989 -2024-12-04 15:00:00+00:00,0.30962524929518054 -2024-12-04 16:00:00+00:00,0.2570303173151842 -2024-12-04 17:00:00+00:00,0.21145844391418223 -2024-12-04 18:00:00+00:00,0.19392539844145062 -2024-12-04 19:00:00+00:00,0.17925505912870676 -2024-12-04 20:00:00+00:00,0.17178108890786348 -2024-12-04 21:00:00+00:00,0.17242363544241357 -2024-12-04 22:00:00+00:00,0.16386239827784266 -2024-12-04 23:00:00+00:00,0.15608521932239228 -2024-12-05 00:00:00+00:00,0.12244685724249393 -2024-12-05 01:00:00+00:00,0.12014390282388376 -2024-12-05 02:00:00+00:00,0.10061715616743072 -2024-12-05 03:00:00+00:00,0.08034272894462902 -2024-12-05 04:00:00+00:00,0.07167937167383798 -2024-12-05 05:00:00+00:00,0.02753936957654446 -2024-12-05 06:00:00+00:00,-0.01940267616436131 -2024-12-05 07:00:00+00:00,-0.05540111455212582 -2024-12-05 08:00:00+00:00,-0.051064835630256766 -2024-12-05 09:00:00+00:00,-0.03751288108313133 -2024-12-05 10:00:00+00:00,-0.04146490665357305 -2024-12-05 11:00:00+00:00,-0.041057349403558874 -2024-12-05 12:00:00+00:00,-0.020805760681696484 -2024-12-05 13:00:00+00:00,0.011571475618126215 -2024-12-05 14:00:00+00:00,0.027393282113791884 -2024-12-05 15:00:00+00:00,0.020491355213067663 -2024-12-05 16:00:00+00:00,0.010941511000680748 -2024-12-05 17:00:00+00:00,-0.002249295843796517 -2024-12-05 18:00:00+00:00,-0.010564038575552104 -2024-12-05 19:00:00+00:00,-0.027807053096751133 -2024-12-05 20:00:00+00:00,-0.03613355104815241 -2024-12-05 21:00:00+00:00,-0.04112857307791273 -2024-12-05 22:00:00+00:00,-0.046168791784083396 -2024-12-05 23:00:00+00:00,-0.04600179741674992 -2024-12-06 00:00:00+00:00,-0.04686239388203717 -2024-12-06 01:00:00+00:00,-0.05154961454420004 -2024-12-06 02:00:00+00:00,-0.0717057035012374 -2024-12-06 03:00:00+00:00,-0.08285129224535126 -2024-12-06 04:00:00+00:00,-0.08282175303065742 -2024-12-06 05:00:00+00:00,-0.08496588324103982 -2024-12-06 06:00:00+00:00,-0.0915806190669457 -2024-12-06 07:00:00+00:00,-0.0775314164340557 -2024-12-06 08:00:00+00:00,-0.04370333555149841 -2024-12-06 09:00:00+00:00,-0.00018898915573117847 -2024-12-06 10:00:00+00:00,0.033825829121923334 -2024-12-06 11:00:00+00:00,0.05506449496201071 -2024-12-06 12:00:00+00:00,0.06286043549243914 -2024-12-06 13:00:00+00:00,0.008821808438028711 -2024-12-06 14:00:00+00:00,-0.03401554105974469 -2024-12-06 15:00:00+00:00,-0.05035801669407647 -2024-12-06 16:00:00+00:00,-0.06857097604637374 -2024-12-06 17:00:00+00:00,-0.06865724361816206 -2024-12-06 18:00:00+00:00,-0.06570879520725725 -2024-12-06 19:00:00+00:00,-0.06392629237586789 -2024-12-06 20:00:00+00:00,-0.06275850477430822 -2024-12-06 21:00:00+00:00,-0.05474660845089829 -2024-12-08 22:00:00+00:00,-0.05103647191887717 -2024-12-08 23:00:00+00:00,-0.0560038980329125 -2024-12-09 00:00:00+00:00,-0.06324613902785359 -2024-12-09 01:00:00+00:00,-0.06285477639963233 -2024-12-09 02:00:00+00:00,-0.06207117574902554 -2024-12-09 03:00:00+00:00,-0.05500629004555435 -2024-12-09 04:00:00+00:00,-0.05570466973608745 -2024-12-09 05:00:00+00:00,-0.050032976676106955 -2024-12-09 06:00:00+00:00,-0.03097928010004125 -2024-12-09 07:00:00+00:00,0.0005753742555612007 -2024-12-09 08:00:00+00:00,0.03135380289023715 -2024-12-09 09:00:00+00:00,0.05495110392436686 -2024-12-09 10:00:00+00:00,0.07584413346475571 -2024-12-09 11:00:00+00:00,0.09398147417630298 -2024-12-09 12:00:00+00:00,0.12905794938703252 -2024-12-09 13:00:00+00:00,0.16392347327709444 -2024-12-09 14:00:00+00:00,0.19375915754108064 -2024-12-09 15:00:00+00:00,0.2223454154967044 -2024-12-09 16:00:00+00:00,0.2593592026072713 -2024-12-09 17:00:00+00:00,0.29250266313428597 -2024-12-09 18:00:00+00:00,0.3105893896083387 -2024-12-09 19:00:00+00:00,0.31866771502691904 -2024-12-09 20:00:00+00:00,0.31992944901554665 -2024-12-09 21:00:00+00:00,0.3167934349152972 -2024-12-09 22:00:00+00:00,0.31343851292888303 -2024-12-09 23:00:00+00:00,0.318485927179637 -2024-12-10 00:00:00+00:00,0.32311867706638964 -2024-12-10 01:00:00+00:00,0.3126956899170352 -2024-12-10 02:00:00+00:00,0.291951803234042 -2024-12-10 03:00:00+00:00,0.2620020139156338 -2024-12-10 04:00:00+00:00,0.24033762611443876 -2024-12-10 05:00:00+00:00,0.20498988494694004 -2024-12-10 06:00:00+00:00,0.19793407765106963 -2024-12-10 07:00:00+00:00,0.21663469498165 -2024-12-10 08:00:00+00:00,0.23519917072519547 -2024-12-10 09:00:00+00:00,0.24403231644191692 -2024-12-10 10:00:00+00:00,0.24777301674487262 -2024-12-10 11:00:00+00:00,0.25689438573726875 -2024-12-10 12:00:00+00:00,0.2674151804095004 -2024-12-10 13:00:00+00:00,0.26439397759818917 -2024-12-10 14:00:00+00:00,0.2705808531437697 -2024-12-10 15:00:00+00:00,0.29627620175477887 -2024-12-10 16:00:00+00:00,0.307128384264729 -2024-12-10 17:00:00+00:00,0.3169170926783522 -2024-12-10 18:00:00+00:00,0.305578706476183 -2024-12-10 19:00:00+00:00,0.29401069783941125 -2024-12-10 20:00:00+00:00,0.28175643810590145 -2024-12-10 21:00:00+00:00,0.2719759618120463 -2024-12-10 22:00:00+00:00,0.25905990817085467 -2024-12-10 23:00:00+00:00,0.23809080736168653 -2024-12-11 00:00:00+00:00,0.20993449410823928 -2024-12-11 01:00:00+00:00,0.18348798664061405 -2024-12-11 02:00:00+00:00,0.13993601655468524 -2024-12-11 03:00:00+00:00,0.1123561423671049 -2024-12-11 04:00:00+00:00,0.08938779487118609 -2024-12-11 05:00:00+00:00,0.08688680700549867 -2024-12-11 06:00:00+00:00,0.08465512925312169 -2024-12-11 07:00:00+00:00,0.07324677626473886 -2024-12-11 08:00:00+00:00,0.06124026863835752 -2024-12-11 09:00:00+00:00,0.1351355658696889 -2024-12-11 10:00:00+00:00,0.18502919685298025 -2024-12-11 11:00:00+00:00,0.21858085421192186 -2024-12-11 12:00:00+00:00,0.2504337953995446 -2024-12-11 13:00:00+00:00,0.2440572245875785 -2024-12-11 14:00:00+00:00,0.2231974357794968 -2024-12-11 15:00:00+00:00,0.23047597804350062 -2024-12-11 16:00:00+00:00,0.2240591552811395 -2024-12-11 17:00:00+00:00,0.22868347755814966 -2024-12-11 18:00:00+00:00,0.2442987331591553 -2024-12-11 19:00:00+00:00,0.25095685383615773 -2024-12-11 20:00:00+00:00,0.24924504691549032 -2024-12-11 21:00:00+00:00,0.23485266204124855 -2024-12-11 22:00:00+00:00,0.21746999398263256 -2024-12-11 23:00:00+00:00,0.18821041081440626 -2024-12-12 00:00:00+00:00,0.1574775703171838 -2024-12-12 01:00:00+00:00,0.11509169733139402 -2024-12-12 02:00:00+00:00,0.10769431311371136 -2024-12-12 03:00:00+00:00,0.10362292305012488 -2024-12-12 04:00:00+00:00,0.08624935051540206 -2024-12-12 05:00:00+00:00,0.09566607459203169 -2024-12-12 06:00:00+00:00,0.10091660115244849 -2024-12-12 07:00:00+00:00,0.11113947408549052 -2024-12-12 08:00:00+00:00,0.1123780272485817 -2024-12-12 09:00:00+00:00,0.11390250021401016 -2024-12-12 10:00:00+00:00,0.09736580524142369 -2024-12-12 11:00:00+00:00,0.07269043675586317 -2024-12-12 12:00:00+00:00,0.05954944507337245 -2024-12-12 13:00:00+00:00,0.029110782700229265 -2024-12-12 14:00:00+00:00,0.02216185026887274 -2024-12-12 15:00:00+00:00,0.019655856480540024 -2024-12-12 16:00:00+00:00,0.0007163359172466244 -2024-12-12 17:00:00+00:00,0.0008666678301381125 -2024-12-12 18:00:00+00:00,0.018045797758134086 -2024-12-12 19:00:00+00:00,0.03608590470736317 -2024-12-12 20:00:00+00:00,0.05970039414381745 -2024-12-12 21:00:00+00:00,0.07632484718786259 -2024-12-12 22:00:00+00:00,0.08297563122874863 -2024-12-12 23:00:00+00:00,0.08851712150320168 -2024-12-13 00:00:00+00:00,0.1099582649204649 -2024-12-13 01:00:00+00:00,0.12111633153034518 -2024-12-13 02:00:00+00:00,0.1396462545833117 -2024-12-13 03:00:00+00:00,0.15217372985748057 -2024-12-13 04:00:00+00:00,0.16416336171207035 -2024-12-13 05:00:00+00:00,0.16705935975528519 -2024-12-13 06:00:00+00:00,0.15290597520501592 -2024-12-13 07:00:00+00:00,0.1469350217801093 -2024-12-13 08:00:00+00:00,0.16969926030157012 -2024-12-13 09:00:00+00:00,0.20538407099158462 -2024-12-13 10:00:00+00:00,0.23570824949808866 -2024-12-13 11:00:00+00:00,0.26938436371833063 -2024-12-13 12:00:00+00:00,0.27881853453229155 -2024-12-13 13:00:00+00:00,0.270907203579867 -2024-12-13 14:00:00+00:00,0.28531391347664226 -2024-12-13 15:00:00+00:00,0.2984551942963094 -2024-12-13 16:00:00+00:00,0.31229004172715236 -2024-12-13 17:00:00+00:00,0.3147841239965601 -2024-12-13 18:00:00+00:00,0.31394861439005695 -2024-12-13 19:00:00+00:00,0.30875898590184647 -2024-12-13 20:00:00+00:00,0.29862171018146455 -2024-12-13 21:00:00+00:00,0.2867178991733965 -2024-12-15 22:00:00+00:00,0.27181072075765655 -2024-12-15 23:00:00+00:00,0.24427021663416326 -2024-12-16 00:00:00+00:00,0.24798896449598828 -2024-12-16 01:00:00+00:00,0.25573454798319517 -2024-12-16 02:00:00+00:00,0.2564157367781945 -2024-12-16 03:00:00+00:00,0.24932076233807265 -2024-12-16 04:00:00+00:00,0.23501762552788819 -2024-12-16 05:00:00+00:00,0.21459189012924185 -2024-12-16 06:00:00+00:00,0.19534560866162565 -2024-12-16 07:00:00+00:00,0.16830825869513433 -2024-12-16 08:00:00+00:00,0.1586885883943694 -2024-12-16 09:00:00+00:00,0.15787900524253473 -2024-12-16 10:00:00+00:00,0.1574398274997293 -2024-12-16 11:00:00+00:00,0.15330725431093128 -2024-12-16 12:00:00+00:00,0.1703394860939227 -2024-12-16 13:00:00+00:00,0.17743494420201955 -2024-12-16 14:00:00+00:00,0.20306887925306683 -2024-12-16 15:00:00+00:00,0.21565308615348044 -2024-12-16 16:00:00+00:00,0.21802928146112777 -2024-12-16 17:00:00+00:00,0.2155715509305196 -2024-12-16 18:00:00+00:00,0.20361097514810922 -2024-12-16 19:00:00+00:00,0.19726453001771915 -2024-12-16 20:00:00+00:00,0.19219806126864114 -2024-12-16 21:00:00+00:00,0.18627763063884117 -2024-12-16 22:00:00+00:00,0.17792085301559268 -2024-12-16 23:00:00+00:00,0.16607527678070255 -2024-12-17 00:00:00+00:00,0.15944896745955361 -2024-12-17 01:00:00+00:00,0.14797309585512153 -2024-12-17 02:00:00+00:00,0.13011623809259731 -2024-12-17 03:00:00+00:00,0.11791367160523691 -2024-12-17 04:00:00+00:00,0.1085251802364553 -2024-12-17 05:00:00+00:00,0.10543704391920983 -2024-12-17 06:00:00+00:00,0.10237440670289288 -2024-12-17 07:00:00+00:00,0.09314442704109638 -2024-12-17 08:00:00+00:00,0.06825889394943374 -2024-12-17 09:00:00+00:00,0.04263907293517377 -2024-12-17 10:00:00+00:00,0.025750163901989254 -2024-12-17 11:00:00+00:00,0.017968253247460098 -2024-12-17 12:00:00+00:00,0.0043275169426806315 -2024-12-17 13:00:00+00:00,-0.010078501722830424 -2024-12-17 14:00:00+00:00,-0.038481182993820084 -2024-12-17 15:00:00+00:00,-0.06412452378455669 -2024-12-17 16:00:00+00:00,-0.09082372783674941 -2024-12-17 17:00:00+00:00,-0.1223536030589969 -2024-12-17 18:00:00+00:00,-0.1454228374575166 -2024-12-17 19:00:00+00:00,-0.15665459845396867 -2024-12-17 20:00:00+00:00,-0.14931019925228384 -2024-12-17 21:00:00+00:00,-0.14440720615405667 -2024-12-17 22:00:00+00:00,-0.14211104681896813 -2024-12-17 23:00:00+00:00,-0.12880082458411835 -2024-12-18 00:00:00+00:00,-0.10765121087212037 -2024-12-18 01:00:00+00:00,-0.09767187009066447 -2024-12-18 02:00:00+00:00,-0.08108210885060885 -2024-12-18 03:00:00+00:00,-0.07266469353314164 -2024-12-18 04:00:00+00:00,-0.07920187875700435 -2024-12-18 05:00:00+00:00,-0.09028141841949378 -2024-12-18 06:00:00+00:00,-0.08867956011039269 -2024-12-18 07:00:00+00:00,-0.07819742542250196 -2024-12-18 08:00:00+00:00,-0.06997128086166526 -2024-12-18 09:00:00+00:00,-0.05722462878847523 -2024-12-18 10:00:00+00:00,-0.051132811593987526 -2024-12-18 11:00:00+00:00,-0.03891691138068154 -2024-12-18 12:00:00+00:00,-0.015979474901513413 -2024-12-18 13:00:00+00:00,0.004008311227750028 -2024-12-18 14:00:00+00:00,0.014277849520141217 -2024-12-18 15:00:00+00:00,0.04146591684872192 -2024-12-18 16:00:00+00:00,0.06053957738424742 -2024-12-18 17:00:00+00:00,0.060753532762390705 -2024-12-18 18:00:00+00:00,0.05584134928074036 -2024-12-18 19:00:00+00:00,0.12131651778622654 -2024-12-18 20:00:00+00:00,0.17426354134138933 -2024-12-18 21:00:00+00:00,0.22572615476676106 -2024-12-18 22:00:00+00:00,0.2564535452878829 -2024-12-18 23:00:00+00:00,0.27106385358459306 -2024-12-19 00:00:00+00:00,0.2918660740041332 -2024-12-19 01:00:00+00:00,0.29063857064048193 -2024-12-19 02:00:00+00:00,0.3219430785961208 -2024-12-19 03:00:00+00:00,0.3563617890617081 -2024-12-19 04:00:00+00:00,0.3830959720297642 -2024-12-19 05:00:00+00:00,0.393453568691001 -2024-12-19 06:00:00+00:00,0.4671245795373977 -2024-12-19 07:00:00+00:00,0.5490363449636106 -2024-12-19 08:00:00+00:00,0.638624920782263 -2024-12-19 09:00:00+00:00,0.7148595608592245 -2024-12-19 10:00:00+00:00,0.7594210644994632 -2024-12-19 11:00:00+00:00,0.765417444109346 -2024-12-19 12:00:00+00:00,0.7805380555517161 -2024-12-19 13:00:00+00:00,0.7810965054789563 -2024-12-19 14:00:00+00:00,0.793852026014747 -2024-12-19 15:00:00+00:00,0.8377162996423522 -2024-12-19 16:00:00+00:00,0.8638126245683111 -2024-12-19 17:00:00+00:00,0.8717021939596634 -2024-12-19 18:00:00+00:00,0.8555051079390807 -2024-12-19 19:00:00+00:00,0.8238121760661556 -2024-12-19 20:00:00+00:00,0.7820947829911802 -2024-12-19 21:00:00+00:00,0.748793751003717 -2024-12-19 22:00:00+00:00,0.715127201714381 -2024-12-19 23:00:00+00:00,0.6971932704852577 -2024-12-20 00:00:00+00:00,0.6820576460694383 -2024-12-20 01:00:00+00:00,0.6257313574693342 -2024-12-20 02:00:00+00:00,0.5500599762872866 -2024-12-20 03:00:00+00:00,0.49216291152885105 -2024-12-20 04:00:00+00:00,0.45930153131604357 -2024-12-20 05:00:00+00:00,0.40734117324257113 -2024-12-20 06:00:00+00:00,0.35800082235036257 -2024-12-20 07:00:00+00:00,0.3028993984621309 -2024-12-20 08:00:00+00:00,0.26106324700029404 -2024-12-20 09:00:00+00:00,0.21214816255582036 -2024-12-20 10:00:00+00:00,0.17284263300467728 -2024-12-20 11:00:00+00:00,0.1427902365414866 -2024-12-20 12:00:00+00:00,0.114426789323403 -2024-12-20 13:00:00+00:00,0.07374970914602841 -2024-12-20 14:00:00+00:00,0.04670356702249023 -2024-12-20 15:00:00+00:00,0.017961392230290585 -2024-12-20 16:00:00+00:00,-0.03627206542432759 -2024-12-20 17:00:00+00:00,-0.08114133207197938 -2024-12-20 18:00:00+00:00,-0.1142538192509619 -2024-12-20 19:00:00+00:00,-0.14543592380144332 -2024-12-20 20:00:00+00:00,-0.1401291860697711 -2024-12-20 21:00:00+00:00,-0.12958824698003468 -2024-12-22 22:00:00+00:00,-0.10996114943699808 -2024-12-22 23:00:00+00:00,-0.09125660122595036 -2024-12-23 00:00:00+00:00,-0.07205210788418981 -2024-12-23 01:00:00+00:00,-0.0684696460593841 -2024-12-23 02:00:00+00:00,-0.05690538513044885 -2024-12-23 03:00:00+00:00,-0.0503874555122934 -2024-12-23 04:00:00+00:00,-0.03992027469450932 -2024-12-23 05:00:00+00:00,-0.025441198273739474 -2024-12-23 06:00:00+00:00,-0.016758831297124743 -2024-12-23 07:00:00+00:00,0.004832867403024466 -2024-12-23 08:00:00+00:00,0.0035063308586984476 -2024-12-23 09:00:00+00:00,0.012637889624699028 -2024-12-23 10:00:00+00:00,0.029779277380129088 -2024-12-23 11:00:00+00:00,0.044624760352292014 -2024-12-23 12:00:00+00:00,0.07943960016973506 -2024-12-23 13:00:00+00:00,0.11115561882817815 -2024-12-23 14:00:00+00:00,0.13186582582463302 -2024-12-23 15:00:00+00:00,0.14331837175265605 -2024-12-23 16:00:00+00:00,0.14260092629166365 -2024-12-23 17:00:00+00:00,0.1507841137363073 -2024-12-23 18:00:00+00:00,0.15324348721873093 -2024-12-23 19:00:00+00:00,0.15079150362555538 -2024-12-23 20:00:00+00:00,0.1505822115952924 -2024-12-23 21:00:00+00:00,0.1510155900718928 -2024-12-23 22:00:00+00:00,0.1484375750313518 -2024-12-23 23:00:00+00:00,0.14727887293372532 -2024-12-24 00:00:00+00:00,0.15474394823689863 -2024-12-24 01:00:00+00:00,0.14447021580224373 -2024-12-24 02:00:00+00:00,0.1340566622901349 -2024-12-24 03:00:00+00:00,0.12141861709073964 -2024-12-24 04:00:00+00:00,0.10423019287935631 -2024-12-24 05:00:00+00:00,0.08877794949003714 -2024-12-24 06:00:00+00:00,0.08204154285181176 -2024-12-24 07:00:00+00:00,0.08029602149306925 -2024-12-24 08:00:00+00:00,0.0713125387021023 -2024-12-24 09:00:00+00:00,0.06617376969262523 -2024-12-24 10:00:00+00:00,0.06123400742373519 -2024-12-24 11:00:00+00:00,0.06081414801167284 -2024-12-24 12:00:00+00:00,0.05931352712747184 -2024-12-24 13:00:00+00:00,0.061929125840663346 -2024-12-24 14:00:00+00:00,0.07029258208783062 -2024-12-24 15:00:00+00:00,0.08035178476481519 -2024-12-24 16:00:00+00:00,0.08460498589619192 -2024-12-24 17:00:00+00:00,0.08761128323962453 -2024-12-24 18:00:00+00:00,0.09160070385638619 -2024-12-24 19:00:00+00:00,0.091129729082013 -2024-12-24 20:00:00+00:00,0.08030911090739323 -2024-12-24 21:00:00+00:00,0.07243188457789529 -2024-12-25 22:00:00+00:00,0.06862571711661758 -2024-12-25 23:00:00+00:00,0.05528896805583372 -2024-12-26 00:00:00+00:00,0.06000474622126717 -2024-12-26 01:00:00+00:00,0.07035466078139052 -2024-12-26 02:00:00+00:00,0.07798089400336039 -2024-12-26 03:00:00+00:00,0.07891904374702108 -2024-12-26 04:00:00+00:00,0.08338147965733356 -2024-12-26 05:00:00+00:00,0.07954570745422984 -2024-12-26 06:00:00+00:00,0.07762827102777692 -2024-12-26 07:00:00+00:00,0.07532112543981384 -2024-12-26 08:00:00+00:00,0.0701024657861069 -2024-12-26 09:00:00+00:00,0.07223482684619853 -2024-12-26 10:00:00+00:00,0.07395978406597692 -2024-12-26 11:00:00+00:00,0.08619489545964143 -2024-12-26 12:00:00+00:00,0.10006348819871391 -2024-12-26 13:00:00+00:00,0.12438716070712985 -2024-12-26 14:00:00+00:00,0.14968477123983348 -2024-12-26 15:00:00+00:00,0.17888734620146352 -2024-12-26 16:00:00+00:00,0.19494192947684041 -2024-12-26 17:00:00+00:00,0.2076121365503525 -2024-12-26 18:00:00+00:00,0.20631828583532297 -2024-12-26 19:00:00+00:00,0.20718129982398636 -2024-12-26 20:00:00+00:00,0.20445937289406402 -2024-12-26 21:00:00+00:00,0.204065163784918 -2024-12-26 22:00:00+00:00,0.19098063911209806 -2024-12-26 23:00:00+00:00,0.1688206196207318 -2024-12-27 00:00:00+00:00,0.16118162292951865 -2024-12-27 01:00:00+00:00,0.13963902867936895 -2024-12-27 02:00:00+00:00,0.11000150864089164 -2024-12-27 03:00:00+00:00,0.08919716663194777 -2024-12-27 04:00:00+00:00,0.06597784264619122 -2024-12-27 05:00:00+00:00,0.06187178718562336 -2024-12-27 06:00:00+00:00,0.05747106809616298 -2024-12-27 07:00:00+00:00,0.05807482301926825 -2024-12-27 08:00:00+00:00,0.06067805182775032 -2024-12-27 09:00:00+00:00,0.06441929318111761 -2024-12-27 10:00:00+00:00,0.05704369260973863 -2024-12-27 11:00:00+00:00,0.04231872130611691 -2024-12-27 12:00:00+00:00,0.041388117335401375 -2024-12-27 13:00:00+00:00,0.04042666844284781 -2024-12-27 14:00:00+00:00,0.04064859118014397 -2024-12-27 15:00:00+00:00,0.02105438715742025 -2024-12-27 16:00:00+00:00,0.01822639953667249 -2024-12-27 17:00:00+00:00,0.023221834881837822 -2024-12-27 18:00:00+00:00,0.02742940576615638 -2024-12-27 19:00:00+00:00,0.039188278615483796 -2024-12-27 20:00:00+00:00,0.04516245787220896 -2024-12-27 21:00:00+00:00,0.0440634534964488 -2024-12-29 22:00:00+00:00,0.031691715555382416 -2024-12-29 23:00:00+00:00,0.037512243202030504 -2024-12-30 00:00:00+00:00,0.04483587890010199 -2024-12-30 01:00:00+00:00,0.03841609628292986 -2024-12-30 02:00:00+00:00,0.03358673843433735 -2024-12-30 03:00:00+00:00,0.03037756361354127 -2024-12-30 04:00:00+00:00,0.025682311960622428 -2024-12-30 05:00:00+00:00,0.026656889019307073 -2024-12-30 06:00:00+00:00,0.028472789689004685 -2024-12-30 07:00:00+00:00,0.031166469248631756 -2024-12-30 08:00:00+00:00,0.03340036099189092 -2024-12-30 09:00:00+00:00,0.03285540026661238 -2024-12-30 10:00:00+00:00,0.024714984880517932 -2024-12-30 11:00:00+00:00,0.006408790662021602 -2024-12-30 12:00:00+00:00,-0.014308698149193333 -2024-12-30 13:00:00+00:00,-0.03819495065769729 -2024-12-30 14:00:00+00:00,-0.08614919463835236 -2024-12-30 15:00:00+00:00,-0.1157184832883047 -2024-12-30 16:00:00+00:00,-0.1307859489452028 -2024-12-30 17:00:00+00:00,-0.1500349781755972 -2024-12-30 18:00:00+00:00,-0.17744621215183543 -2024-12-30 19:00:00+00:00,-0.18764650985798426 -2024-12-30 20:00:00+00:00,-0.21455960339005742 -2024-12-30 21:00:00+00:00,-0.23048798603323917 -2024-12-30 22:00:00+00:00,-0.23818699823479506 -2024-12-30 23:00:00+00:00,-0.23177241237294766 -2024-12-31 00:00:00+00:00,-0.24915389168492652 -2024-12-31 01:00:00+00:00,-0.27995529124061136 -2024-12-31 02:00:00+00:00,-0.30496544426867445 -2024-12-31 03:00:00+00:00,-0.31717607192007335 -2024-12-31 04:00:00+00:00,-0.33996016968774256 -2024-12-31 05:00:00+00:00,-0.3533783640107231 -2024-12-31 06:00:00+00:00,-0.3500521246454298 -2024-12-31 07:00:00+00:00,-0.35566202685612325 -2024-12-31 08:00:00+00:00,-0.3604713573419076 -2024-12-31 09:00:00+00:00,-0.32096332444797326 -2024-12-31 10:00:00+00:00,-0.27095602432370924 -2024-12-31 11:00:00+00:00,-0.23108186013149634 -2024-12-31 12:00:00+00:00,-0.1900285194095943 -2024-12-31 13:00:00+00:00,-0.14644509269689365 -2024-12-31 14:00:00+00:00,-0.12945585418751193 -2024-12-31 15:00:00+00:00,-0.08403743821367016 -2024-12-31 16:00:00+00:00,-0.03058383665907627 -2024-12-31 17:00:00+00:00,0.01164429944958556 -2024-12-31 18:00:00+00:00,0.038693188999729955 -2024-12-31 19:00:00+00:00,0.0604016558666558 -2024-12-31 20:00:00+00:00,0.079752715026018 -2024-12-31 21:00:00+00:00,0.08243798684571857 -2025-01-01 22:00:00+00:00,0.08846846491704241 -2025-01-01 23:00:00+00:00,0.1269656375949637 -2025-01-02 00:00:00+00:00,0.13478005336719434 -2025-01-02 01:00:00+00:00,0.14526963776572188 -2025-01-02 02:00:00+00:00,0.1341230769638173 -2025-01-02 03:00:00+00:00,0.11333163386302658 -2025-01-02 04:00:00+00:00,0.0849812823297782 -2025-01-02 05:00:00+00:00,0.07671839970592487 -2025-01-02 06:00:00+00:00,0.02597433611512656 -2025-01-02 07:00:00+00:00,-0.013599780215173496 -2025-01-02 08:00:00+00:00,-0.03559545790739094 -2025-01-02 09:00:00+00:00,-0.051545399598950326 -2025-01-02 10:00:00+00:00,-0.036172329418803884 -2025-01-02 11:00:00+00:00,-0.018131635352659714 -2025-01-02 12:00:00+00:00,-0.013841842162918283 -2025-01-02 13:00:00+00:00,-0.03026617123464348 -2025-01-02 14:00:00+00:00,-0.026755133655655072 -2025-01-02 15:00:00+00:00,-0.014046997277233686 -2025-01-02 16:00:00+00:00,0.03659381609364232 -2025-01-02 17:00:00+00:00,0.06851361214100393 -2025-01-02 18:00:00+00:00,0.08747626018788424 -2025-01-02 19:00:00+00:00,0.11090880483786236 -2025-01-02 20:00:00+00:00,0.12872166683041542 -2025-01-02 21:00:00+00:00,0.13395143999460402 -2025-01-02 22:00:00+00:00,0.1308585108213265 -2025-01-02 23:00:00+00:00,0.11816908185855368 -2025-01-03 00:00:00+00:00,0.09531361378961378 -2025-01-03 01:00:00+00:00,0.08174521443316962 -2025-01-03 02:00:00+00:00,0.07273583927428717 -2025-01-03 03:00:00+00:00,0.0646887694002487 -2025-01-03 04:00:00+00:00,0.0555728169986196 -2025-01-03 05:00:00+00:00,0.04907373386919289 -2025-01-03 06:00:00+00:00,0.03321178858121243 -2025-01-03 07:00:00+00:00,0.017693605935903634 -2025-01-03 08:00:00+00:00,0.020809632570632175 -2025-01-03 09:00:00+00:00,0.016791594947477506 -2025-01-03 10:00:00+00:00,0.02286530797837827 -2025-01-03 11:00:00+00:00,0.017232287612529262 -2025-01-03 12:00:00+00:00,0.0063205789200537765 -2025-01-03 13:00:00+00:00,-0.0009443846301451231 -2025-01-03 14:00:00+00:00,-0.010534377330344569 -2025-01-03 15:00:00+00:00,0.003131974569214435 -2025-01-03 16:00:00+00:00,-0.0016722451626378643 -2025-01-03 17:00:00+00:00,-0.008288972927914529 -2025-01-03 18:00:00+00:00,-0.01353810182749271 -2025-01-03 19:00:00+00:00,-0.014465047810602982 -2025-01-03 20:00:00+00:00,-0.004177440842255464 -2025-01-03 21:00:00+00:00,-5.8347737763142504e-05 -2025-01-05 22:00:00+00:00,0.007636763358192411 -2025-01-05 23:00:00+00:00,0.026581516913608993 -2025-01-06 00:00:00+00:00,0.04774243189959293 -2025-01-06 01:00:00+00:00,0.06585149712336147 -2025-01-06 02:00:00+00:00,0.08710673059357532 -2025-01-06 03:00:00+00:00,0.10284679407487829 -2025-01-06 04:00:00+00:00,0.11408648148531597 -2025-01-06 05:00:00+00:00,0.1263786983284092 -2025-01-06 06:00:00+00:00,0.12435831325302615 -2025-01-06 07:00:00+00:00,0.12239523875518898 -2025-01-06 08:00:00+00:00,0.11970171612861691 -2025-01-06 09:00:00+00:00,0.12197087400090822 -2025-01-06 10:00:00+00:00,0.1354413438552342 -2025-01-06 11:00:00+00:00,0.08853141175987389 -2025-01-06 12:00:00+00:00,0.017664297875910506 -2025-01-06 13:00:00+00:00,-0.05201978619697911 -2025-01-06 14:00:00+00:00,-0.05177774624044673 -2025-01-06 15:00:00+00:00,-0.03169321070481601 -2025-01-06 16:00:00+00:00,-0.014718794422435622 -2025-01-06 17:00:00+00:00,-0.0039642654897988905 -2025-01-06 18:00:00+00:00,0.006580898380349254 -2025-01-06 19:00:00+00:00,0.015565503710149642 -2025-01-06 20:00:00+00:00,0.028809106134275453 -2025-01-06 21:00:00+00:00,0.04061182477272496 -2025-01-06 22:00:00+00:00,0.0476411704322004 -2025-01-06 23:00:00+00:00,0.06169959030293626 -2025-01-07 00:00:00+00:00,0.10096815754863542 -2025-01-07 01:00:00+00:00,0.14709631527622946 -2025-01-07 02:00:00+00:00,0.17900759195424598 -2025-01-07 03:00:00+00:00,0.18960465952866912 -2025-01-07 04:00:00+00:00,0.19255558529746963 -2025-01-07 05:00:00+00:00,0.17520311306171266 -2025-01-07 06:00:00+00:00,0.15099586999309622 -2025-01-07 07:00:00+00:00,0.10940904570864518 -2025-01-07 08:00:00+00:00,0.07031499197341873 -2025-01-07 09:00:00+00:00,0.05308386734355963 -2025-01-07 10:00:00+00:00,0.050146845284899655 -2025-01-07 11:00:00+00:00,0.04456203489382915 -2025-01-07 12:00:00+00:00,0.04207180413277456 -2025-01-07 13:00:00+00:00,0.03405727229284139 -2025-01-07 14:00:00+00:00,0.0347289949562537 -2025-01-07 15:00:00+00:00,0.048899387413825934 -2025-01-07 16:00:00+00:00,0.05082890415505403 -2025-01-07 17:00:00+00:00,0.04099215625538477 -2025-01-07 18:00:00+00:00,0.04438510697497122 -2025-01-07 19:00:00+00:00,0.04159171956752061 -2025-01-07 20:00:00+00:00,0.046427763968296176 -2025-01-07 21:00:00+00:00,0.06484429147354831 -2025-01-07 22:00:00+00:00,0.07614106611188731 -2025-01-07 23:00:00+00:00,0.09912126201245997 -2025-01-08 00:00:00+00:00,0.11168840966089988 -2025-01-08 01:00:00+00:00,0.10446679132667214 -2025-01-08 02:00:00+00:00,0.10814823802971318 -2025-01-08 03:00:00+00:00,0.1172986793152404 -2025-01-08 04:00:00+00:00,0.12544448169774114 -2025-01-08 05:00:00+00:00,0.12632857779007622 -2025-01-08 06:00:00+00:00,0.11584941002431037 -2025-01-08 07:00:00+00:00,0.11110533943835321 -2025-01-08 08:00:00+00:00,0.11681177599422199 -2025-01-08 09:00:00+00:00,0.11333035989417795 -2025-01-08 10:00:00+00:00,0.12231408961756074 -2025-01-08 11:00:00+00:00,0.1316282472114665 -2025-01-08 12:00:00+00:00,0.14819485789374198 -2025-01-08 13:00:00+00:00,0.1364314348340656 -2025-01-08 14:00:00+00:00,0.13611044600003197 -2025-01-08 15:00:00+00:00,0.13598305650327802 -2025-01-08 16:00:00+00:00,0.13050452562686132 -2025-01-08 17:00:00+00:00,0.13030904387895248 -2025-01-08 18:00:00+00:00,0.13433470297809436 -2025-01-08 19:00:00+00:00,0.13635668998762185 -2025-01-08 20:00:00+00:00,0.12777156083566865 -2025-01-08 21:00:00+00:00,0.11895105724559585 -2025-01-08 22:00:00+00:00,0.10749395548987195 -2025-01-08 23:00:00+00:00,0.08756039764151069 -2025-01-09 00:00:00+00:00,0.07668868824302422 -2025-01-09 01:00:00+00:00,0.05517166591383216 -2025-01-09 02:00:00+00:00,0.036009649377660935 -2025-01-09 03:00:00+00:00,0.011412517910542874 -2025-01-09 04:00:00+00:00,-0.011658311790597509 -2025-01-09 05:00:00+00:00,-0.019230519541736157 -2025-01-09 06:00:00+00:00,-0.017924066702391883 -2025-01-09 07:00:00+00:00,-0.013026714002620565 -2025-01-09 08:00:00+00:00,-0.013668084804777436 -2025-01-09 09:00:00+00:00,-0.018083197714673815 -2025-01-09 10:00:00+00:00,-0.028595514692909774 -2025-01-09 11:00:00+00:00,-0.04320664036310973 -2025-01-09 12:00:00+00:00,-0.06708479705216064 -2025-01-09 13:00:00+00:00,-0.0920481984803132 -2025-01-09 14:00:00+00:00,-0.0977141318102781 -2025-01-09 15:00:00+00:00,-0.08883457380028403 -2025-01-09 16:00:00+00:00,-0.0776744121252193 -2025-01-09 17:00:00+00:00,-0.06054694172883046 -2025-01-09 18:00:00+00:00,-0.04899069635578712 -2025-01-09 19:00:00+00:00,-0.03642679247258229 -2025-01-09 20:00:00+00:00,-0.025450209174096017 -2025-01-09 21:00:00+00:00,-0.01695915149949201 -2025-01-09 22:00:00+00:00,-0.008517905156139705 -2025-01-09 23:00:00+00:00,-0.008986810099059994 -2025-01-10 00:00:00+00:00,-0.012362883087348564 -2025-01-10 01:00:00+00:00,-0.0049753290686851415 -2025-01-10 02:00:00+00:00,0.011399254040753704 -2025-01-10 03:00:00+00:00,0.021545730789853224 -2025-01-10 04:00:00+00:00,0.041534614501671285 -2025-01-10 05:00:00+00:00,0.05887593804226299 -2025-01-10 06:00:00+00:00,0.06493109536845054 -2025-01-10 07:00:00+00:00,0.07396085002147856 -2025-01-10 08:00:00+00:00,0.0352809045215281 -2025-01-10 09:00:00+00:00,0.013029882781950164 -2025-01-10 10:00:00+00:00,0.00709498104546924 -2025-01-10 11:00:00+00:00,-0.004416352007865498 -2025-01-10 12:00:00+00:00,-0.013384873892874793 -2025-01-10 13:00:00+00:00,0.024174089005128963 -2025-01-10 14:00:00+00:00,0.006897788267053784 -2025-01-10 15:00:00+00:00,-0.03958247912908064 -2025-01-10 16:00:00+00:00,-0.06493787405051421 -2025-01-10 17:00:00+00:00,-0.08557884871487431 -2025-01-10 18:00:00+00:00,-0.082746804948016 -2025-01-10 19:00:00+00:00,-0.08133996946179423 -2025-01-10 20:00:00+00:00,-0.08385780525506448 -2025-01-10 21:00:00+00:00,-0.09093750218420382 -2025-01-12 22:00:00+00:00,-0.09664452966788417 -2025-01-12 23:00:00+00:00,-0.08517687849794697 -2025-01-13 00:00:00+00:00,-0.08471445232777342 -2025-01-13 01:00:00+00:00,-0.11098788535880999 -2025-01-13 02:00:00+00:00,-0.12480339117675499 -2025-01-13 03:00:00+00:00,-0.1421824525307045 -2025-01-13 04:00:00+00:00,-0.14404715926062295 -2025-01-13 05:00:00+00:00,-0.15479532368706828 -2025-01-13 06:00:00+00:00,-0.1514806909877109 -2025-01-13 07:00:00+00:00,-0.15250221020062327 -2025-01-13 08:00:00+00:00,-0.14031676559307016 -2025-01-13 09:00:00+00:00,-0.16849834870004088 -2025-01-13 10:00:00+00:00,-0.16329020613486023 -2025-01-13 11:00:00+00:00,-0.1666024567617228 -2025-01-13 12:00:00+00:00,-0.1897148758367564 -2025-01-13 13:00:00+00:00,-0.1924187383503977 -2025-01-13 14:00:00+00:00,-0.17989989857224487 -2025-01-13 15:00:00+00:00,-0.15487915631214833 -2025-01-13 16:00:00+00:00,-0.13406941059486144 -2025-01-13 17:00:00+00:00,-0.1305965965930227 -2025-01-13 18:00:00+00:00,-0.1145811828127421 -2025-01-13 19:00:00+00:00,-0.07416362292437384 -2025-01-13 20:00:00+00:00,-0.05441580679615754 -2025-01-13 21:00:00+00:00,-0.05252317812824003 -2025-01-13 22:00:00+00:00,-0.060732392953866565 -2025-01-13 23:00:00+00:00,-0.06958311804001482 -2025-01-14 00:00:00+00:00,-0.0572971263777049 -2025-01-14 01:00:00+00:00,-0.0549955987063413 -2025-01-14 02:00:00+00:00,-0.03230356877915597 -2025-01-14 03:00:00+00:00,-0.02492601178457221 -2025-01-14 04:00:00+00:00,-0.024525635087599085 -2025-01-14 05:00:00+00:00,-0.016354107645952354 -2025-01-14 06:00:00+00:00,-0.017662978081744996 -2025-01-14 07:00:00+00:00,-0.015056959442176776 -2025-01-14 08:00:00+00:00,0.0006378638160811079 -2025-01-14 09:00:00+00:00,0.03247126820568269 -2025-01-14 10:00:00+00:00,0.04834677001286991 -2025-01-14 11:00:00+00:00,0.06884926550267778 -2025-01-14 12:00:00+00:00,0.07798541706304718 -2025-01-14 13:00:00+00:00,0.0776335652420812 -2025-01-14 14:00:00+00:00,0.07902589141949079 -2025-01-14 15:00:00+00:00,0.09150106558789162 -2025-01-14 16:00:00+00:00,0.09919527822026453 -2025-01-14 17:00:00+00:00,0.1185318234083752 -2025-01-14 18:00:00+00:00,0.12235923831747186 -2025-01-14 19:00:00+00:00,0.11853901651326737 -2025-01-14 20:00:00+00:00,0.11770506476909759 -2025-01-14 21:00:00+00:00,0.11507213887529133 -2025-01-14 22:00:00+00:00,0.1101822722761483 -2025-01-14 23:00:00+00:00,0.11235480104005546 -2025-01-15 00:00:00+00:00,0.10679362213952004 -2025-01-15 01:00:00+00:00,0.09547596206488151 -2025-01-15 02:00:00+00:00,0.08934986414814716 -2025-01-15 03:00:00+00:00,0.0787456579267598 -2025-01-15 04:00:00+00:00,0.04704440623848427 -2025-01-15 05:00:00+00:00,-0.0009841460100403765 -2025-01-15 06:00:00+00:00,-0.036847152518021176 -2025-01-15 07:00:00+00:00,-0.10122019576482444 -2025-01-15 08:00:00+00:00,-0.13255269180416462 -2025-01-15 09:00:00+00:00,-0.17505475916485125 -2025-01-15 10:00:00+00:00,-0.21242185172192762 -2025-01-15 11:00:00+00:00,-0.22148812820711328 -2025-01-15 12:00:00+00:00,-0.2286997336789227 -2025-01-15 13:00:00+00:00,-0.27809116550238855 -2025-01-15 14:00:00+00:00,-0.32271304325004735 -2025-01-15 15:00:00+00:00,-0.35335738572186415 -2025-01-15 16:00:00+00:00,-0.3488495926645214 -2025-01-15 17:00:00+00:00,-0.34541072810205264 -2025-01-15 18:00:00+00:00,-0.3427687603895322 -2025-01-15 19:00:00+00:00,-0.33966444083824854 -2025-01-15 20:00:00+00:00,-0.3349569034024853 -2025-01-15 21:00:00+00:00,-0.32569650337842404 -2025-01-15 22:00:00+00:00,-0.3217495061700788 -2025-01-15 23:00:00+00:00,-0.327434912845348 -2025-01-16 00:00:00+00:00,-0.3310296341682033 -2025-01-16 01:00:00+00:00,-0.38040977612578786 -2025-01-16 02:00:00+00:00,-0.40064310927058955 -2025-01-16 03:00:00+00:00,-0.40826018670009034 -2025-01-16 04:00:00+00:00,-0.3954557865471031 -2025-01-16 05:00:00+00:00,-0.36823346977143956 -2025-01-16 06:00:00+00:00,-0.3438258601064774 -2025-01-16 07:00:00+00:00,-0.31376490256153033 -2025-01-16 08:00:00+00:00,-0.309771105025618 -2025-01-16 09:00:00+00:00,-0.32018313140028454 -2025-01-16 10:00:00+00:00,-0.3259682445838905 -2025-01-16 11:00:00+00:00,-0.3176122136640913 -2025-01-16 12:00:00+00:00,-0.28136048330054564 -2025-01-16 13:00:00+00:00,-0.2657061591319234 -2025-01-16 14:00:00+00:00,-0.23326238767069185 -2025-01-16 15:00:00+00:00,-0.2607863571791995 -2025-01-16 16:00:00+00:00,-0.278261987339107 -2025-01-16 17:00:00+00:00,-0.30250344131238194 -2025-01-16 18:00:00+00:00,-0.3113478460912802 -2025-01-16 19:00:00+00:00,-0.31951542423897195 -2025-01-16 20:00:00+00:00,-0.3291337213719032 -2025-01-16 21:00:00+00:00,-0.33977901147463285 -2025-01-16 22:00:00+00:00,-0.33962043236454065 -2025-01-16 23:00:00+00:00,-0.32062872015731614 -2025-01-17 00:00:00+00:00,-0.31645425936639526 -2025-01-17 01:00:00+00:00,-0.3072639637682073 -2025-01-17 02:00:00+00:00,-0.27901214854148293 -2025-01-17 03:00:00+00:00,-0.2528204169701951 -2025-01-17 04:00:00+00:00,-0.23404546583066121 -2025-01-17 05:00:00+00:00,-0.20270844752099038 -2025-01-17 06:00:00+00:00,-0.16946481838922978 -2025-01-17 07:00:00+00:00,-0.14380140732146174 -2025-01-17 08:00:00+00:00,-0.11503604073195106 -2025-01-17 09:00:00+00:00,-0.08871518610220619 -2025-01-17 10:00:00+00:00,-0.06381177935691085 -2025-01-17 11:00:00+00:00,-0.04995512986295125 -2025-01-17 12:00:00+00:00,-0.036535189320829886 -2025-01-17 13:00:00+00:00,-0.02831688616876704 -2025-01-17 14:00:00+00:00,0.0070828315277822185 -2025-01-17 15:00:00+00:00,0.039682806001991366 -2025-01-17 16:00:00+00:00,0.08072628678945648 -2025-01-17 17:00:00+00:00,0.10805407046294135 -2025-01-17 18:00:00+00:00,0.12256952410496069 -2025-01-17 19:00:00+00:00,0.12935434363529907 -2025-01-17 20:00:00+00:00,0.13343527809769284 -2025-01-17 21:00:00+00:00,0.14683845719957844 -2025-01-19 22:00:00+00:00,0.15694250399224074 -2025-01-19 23:00:00+00:00,0.16267140100652 -2025-01-20 00:00:00+00:00,0.13953966617717128 -2025-01-20 01:00:00+00:00,0.11519953585585085 -2025-01-20 02:00:00+00:00,0.09561453875676307 -2025-01-20 03:00:00+00:00,0.06370475996106961 -2025-01-20 04:00:00+00:00,0.05632581919570612 -2025-01-20 05:00:00+00:00,0.0570821953003815 -2025-01-20 06:00:00+00:00,0.06771374700289812 -2025-01-20 07:00:00+00:00,0.058838595237006075 -2025-01-20 08:00:00+00:00,0.06429722453455611 -2025-01-20 09:00:00+00:00,0.0779722506276812 -2025-01-20 10:00:00+00:00,0.09521653317210621 -2025-01-20 11:00:00+00:00,0.10492967153970767 -2025-01-20 12:00:00+00:00,0.11405615121188362 -2025-01-20 13:00:00+00:00,0.06789534581301382 -2025-01-20 14:00:00+00:00,0.017075394622310114 -2025-01-20 15:00:00+00:00,-0.01152799043734376 -2025-01-20 16:00:00+00:00,-0.03452462556452929 -2025-01-20 17:00:00+00:00,-0.04074108185432124 -2025-01-20 18:00:00+00:00,-0.055437837273899504 -2025-01-20 19:00:00+00:00,-0.07070808340299095 -2025-01-20 20:00:00+00:00,-0.08449863996105478 -2025-01-20 21:00:00+00:00,-0.09162800888876177 -2025-01-20 22:00:00+00:00,-0.09569087048294023 -2025-01-20 23:00:00+00:00,-0.12729919941875778 -2025-01-21 00:00:00+00:00,-0.09126242921837502 -2025-01-21 01:00:00+00:00,-0.10003974681961836 -2025-01-21 02:00:00+00:00,-0.13808420081690542 -2025-01-21 03:00:00+00:00,-0.1624086681844119 -2025-01-21 04:00:00+00:00,-0.18958699825086 -2025-01-21 05:00:00+00:00,-0.18909609447672437 -2025-01-21 06:00:00+00:00,-0.16996394941747894 -2025-01-21 07:00:00+00:00,-0.14043347736912892 -2025-01-21 08:00:00+00:00,-0.11027218471167544 -2025-01-21 09:00:00+00:00,-0.07309997895771403 -2025-01-21 10:00:00+00:00,-0.03652232511672082 -2025-01-21 11:00:00+00:00,-0.013112227946550092 -2025-01-21 12:00:00+00:00,-0.0018808158850447398 -2025-01-21 13:00:00+00:00,-0.01930485696638584 -2025-01-21 14:00:00+00:00,-0.02539714149489214 -2025-01-21 15:00:00+00:00,-0.04990366479790964 -2025-01-21 16:00:00+00:00,-0.05553238060741705 -2025-01-21 17:00:00+00:00,-0.052927729112212774 -2025-01-21 18:00:00+00:00,-0.055548840002160205 -2025-01-21 19:00:00+00:00,-0.053299866027032294 -2025-01-21 20:00:00+00:00,-0.053642694211418984 -2025-01-21 21:00:00+00:00,-0.05353929527657897 -2025-01-21 22:00:00+00:00,-0.05564017308802249 -2025-01-21 23:00:00+00:00,-0.03607088734955255 -2025-01-22 00:00:00+00:00,-0.045216650519080304 -2025-01-22 01:00:00+00:00,-0.03128564843802906 -2025-01-22 02:00:00+00:00,-0.015706821754179146 -2025-01-22 03:00:00+00:00,0.011036781166268383 -2025-01-22 04:00:00+00:00,0.02165314492256698 -2025-01-22 05:00:00+00:00,0.03275538837925751 -2025-01-22 06:00:00+00:00,0.045547682957817415 -2025-01-22 07:00:00+00:00,0.06781460682464058 -2025-01-22 08:00:00+00:00,0.05848168840893209 -2025-01-22 09:00:00+00:00,0.04651451086490965 -2025-01-22 10:00:00+00:00,0.044107012665278944 -2025-01-22 11:00:00+00:00,0.05025376464374176 -2025-01-22 12:00:00+00:00,0.049790350784746806 -2025-01-22 13:00:00+00:00,0.05492254390622975 -2025-01-22 14:00:00+00:00,0.07953696821618905 -2025-01-22 15:00:00+00:00,0.11753930101494348 -2025-01-22 16:00:00+00:00,0.16352358681439227 -2025-01-22 17:00:00+00:00,0.19728878410094808 -2025-01-22 18:00:00+00:00,0.2184633542360075 -2025-01-22 19:00:00+00:00,0.22801649774083899 -2025-01-22 20:00:00+00:00,0.23513629395984026 -2025-01-22 21:00:00+00:00,0.23627988024014712 -2025-01-22 22:00:00+00:00,0.22698462869061586 -2025-01-22 23:00:00+00:00,0.21743439310407098 -2025-01-23 00:00:00+00:00,0.20364507014474498 -2025-01-23 01:00:00+00:00,0.20360334907809374 -2025-01-23 02:00:00+00:00,0.1964640707600438 -2025-01-23 03:00:00+00:00,0.1892698889352289 -2025-01-23 04:00:00+00:00,0.18841667082250524 -2025-01-23 05:00:00+00:00,0.1946152415795268 -2025-01-23 06:00:00+00:00,0.18991480280990913 -2025-01-23 07:00:00+00:00,0.18406785160510708 -2025-01-23 08:00:00+00:00,0.16781661802181702 -2025-01-23 09:00:00+00:00,0.1444765732711062 -2025-01-23 10:00:00+00:00,0.12653805874253976 -2025-01-23 11:00:00+00:00,0.12236927318602397 -2025-01-23 12:00:00+00:00,0.10598211329775609 -2025-01-23 13:00:00+00:00,0.07653938559843709 -2025-01-23 14:00:00+00:00,0.05594990508646447 -2025-01-23 15:00:00+00:00,0.03279917357326667 -2025-01-23 16:00:00+00:00,0.00104519106488965 -2025-01-23 17:00:00+00:00,-0.030705595128978302 -2025-01-23 18:00:00+00:00,-0.04869033536488132 -2025-01-23 19:00:00+00:00,-0.07786139583043905 -2025-01-23 20:00:00+00:00,-0.08626765236806477 -2025-01-23 21:00:00+00:00,-0.08397320774807326 -2025-01-23 22:00:00+00:00,-0.08448926158996528 -2025-01-23 23:00:00+00:00,-0.075395124154511 -2025-01-24 00:00:00+00:00,-0.05895504355231651 -2025-01-24 01:00:00+00:00,-0.04005805682922414 -2025-01-24 02:00:00+00:00,-0.05112100960366206 -2025-01-24 03:00:00+00:00,-0.0986133969956029 -2025-01-24 04:00:00+00:00,-0.1549608412827581 -2025-01-24 05:00:00+00:00,-0.187609570097095 -2025-01-24 06:00:00+00:00,-0.21025333688785963 -2025-01-24 07:00:00+00:00,-0.22400268879644614 -2025-01-24 08:00:00+00:00,-0.23246155210034658 -2025-01-24 09:00:00+00:00,-0.22016622788433438 -2025-01-24 10:00:00+00:00,-0.18217796842296252 -2025-01-24 11:00:00+00:00,-0.1352620617973912 -2025-01-24 12:00:00+00:00,-0.06840473254035828 -2025-01-24 13:00:00+00:00,-0.0271301328940865 diff --git a/indicators_directory/USD_JPY_OBV.csv b/indicators_directory/USD_JPY_OBV.csv deleted file mode 100644 index dc7569c..0000000 --- a/indicators_directory/USD_JPY_OBV.csv +++ /dev/null @@ -1,5001 +0,0 @@ -time,OBV -2024-04-05 03:00:00+00:00,-3572 -2024-04-05 04:00:00+00:00,-7035 -2024-04-05 05:00:00+00:00,-10650 -2024-04-05 06:00:00+00:00,-5252 -2024-04-05 07:00:00+00:00,1875 -2024-04-05 08:00:00+00:00,7466 -2024-04-05 09:00:00+00:00,11753 -2024-04-05 10:00:00+00:00,7702 -2024-04-05 11:00:00+00:00,11691 -2024-04-05 12:00:00+00:00,23654 -2024-04-05 13:00:00+00:00,14171 -2024-04-05 14:00:00+00:00,4104 -2024-04-05 15:00:00+00:00,11398 -2024-04-05 16:00:00+00:00,7053 -2024-04-05 17:00:00+00:00,10406 -2024-04-05 18:00:00+00:00,7010 -2024-04-05 19:00:00+00:00,9891 -2024-04-05 20:00:00+00:00,8358 -2024-04-07 21:00:00+00:00,8157 -2024-04-07 22:00:00+00:00,10803 -2024-04-07 23:00:00+00:00,8197 -2024-04-08 00:00:00+00:00,12593 -2024-04-08 01:00:00+00:00,18199 -2024-04-08 02:00:00+00:00,13877 -2024-04-08 03:00:00+00:00,10613 -2024-04-08 04:00:00+00:00,13026 -2024-04-08 05:00:00+00:00,10115 -2024-04-08 06:00:00+00:00,6176 -2024-04-08 07:00:00+00:00,10036 -2024-04-08 08:00:00+00:00,14021 -2024-04-08 09:00:00+00:00,10483 -2024-04-08 10:00:00+00:00,7941 -2024-04-08 11:00:00+00:00,10941 -2024-04-08 12:00:00+00:00,6173 -2024-04-08 13:00:00+00:00,-51 -2024-04-08 14:00:00+00:00,6241 -2024-04-08 15:00:00+00:00,2578 -2024-04-08 16:00:00+00:00,5393 -2024-04-08 17:00:00+00:00,2259 -2024-04-08 18:00:00+00:00,-479 -2024-04-08 19:00:00+00:00,1936 -2024-04-08 20:00:00+00:00,2824 -2024-04-08 21:00:00+00:00,1563 -2024-04-08 22:00:00+00:00,560 -2024-04-08 23:00:00+00:00,2759 -2024-04-09 00:00:00+00:00,7254 -2024-04-09 01:00:00+00:00,2523 -2024-04-09 02:00:00+00:00,-928 -2024-04-09 03:00:00+00:00,-3833 -2024-04-09 04:00:00+00:00,-1568 -2024-04-09 05:00:00+00:00,720 -2024-04-09 06:00:00+00:00,3883 -2024-04-09 07:00:00+00:00,205 -2024-04-09 08:00:00+00:00,-3278 -2024-04-09 09:00:00+00:00,-8088 -2024-04-09 10:00:00+00:00,-11484 -2024-04-09 11:00:00+00:00,-8269 -2024-04-09 12:00:00+00:00,-12984 -2024-04-09 13:00:00+00:00,-18352 -2024-04-09 14:00:00+00:00,-25334 -2024-04-09 15:00:00+00:00,-20196 -2024-04-09 16:00:00+00:00,-23073 -2024-04-09 17:00:00+00:00,-19989 -2024-04-09 18:00:00+00:00,-17654 -2024-04-09 19:00:00+00:00,-20482 -2024-04-09 20:00:00+00:00,-19598 -2024-04-09 21:00:00+00:00,-20696 -2024-04-09 22:00:00+00:00,-21753 -2024-04-09 23:00:00+00:00,-19772 -2024-04-10 00:00:00+00:00,-23864 -2024-04-10 01:00:00+00:00,-28404 -2024-04-10 02:00:00+00:00,-24048 -2024-04-10 03:00:00+00:00,-27201 -2024-04-10 04:00:00+00:00,-24829 -2024-04-10 05:00:00+00:00,-21630 -2024-04-10 06:00:00+00:00,-24560 -2024-04-10 07:00:00+00:00,-21909 -2024-04-10 08:00:00+00:00,-19101 -2024-04-10 09:00:00+00:00,-16445 -2024-04-10 10:00:00+00:00,-18900 -2024-04-10 11:00:00+00:00,-16533 -2024-04-10 12:00:00+00:00,258 -2024-04-10 13:00:00+00:00,14421 -2024-04-10 14:00:00+00:00,23266 -2024-04-10 15:00:00+00:00,29433 -2024-04-10 16:00:00+00:00,33572 -2024-04-10 17:00:00+00:00,22808 -2024-04-10 18:00:00+00:00,30649 -2024-04-10 19:00:00+00:00,25574 -2024-04-10 20:00:00+00:00,28862 -2024-04-10 21:00:00+00:00,27320 -2024-04-10 22:00:00+00:00,25280 -2024-04-10 23:00:00+00:00,29679 -2024-04-11 00:00:00+00:00,22113 -2024-04-11 01:00:00+00:00,15989 -2024-04-11 02:00:00+00:00,19571 -2024-04-11 03:00:00+00:00,22176 -2024-04-11 04:00:00+00:00,19215 -2024-04-11 05:00:00+00:00,22472 -2024-04-11 06:00:00+00:00,27835 -2024-04-11 07:00:00+00:00,20701 -2024-04-11 08:00:00+00:00,26557 -2024-04-11 09:00:00+00:00,21244 -2024-04-11 10:00:00+00:00,15920 -2024-04-11 11:00:00+00:00,21517 -2024-04-11 12:00:00+00:00,6217 -2024-04-11 13:00:00+00:00,18413 -2024-04-11 14:00:00+00:00,26736 -2024-04-11 15:00:00+00:00,20647 -2024-04-11 16:00:00+00:00,26176 -2024-04-11 17:00:00+00:00,20086 -2024-04-11 18:00:00+00:00,24445 -2024-04-11 19:00:00+00:00,19380 -2024-04-11 20:00:00+00:00,20456 -2024-04-11 21:00:00+00:00,19996 -2024-04-11 22:00:00+00:00,21340 -2024-04-11 23:00:00+00:00,18871 -2024-04-12 00:00:00+00:00,12729 -2024-04-12 01:00:00+00:00,18542 -2024-04-12 02:00:00+00:00,22013 -2024-04-12 03:00:00+00:00,24958 -2024-04-12 04:00:00+00:00,27716 -2024-04-12 05:00:00+00:00,24467 -2024-04-12 06:00:00+00:00,30086 -2024-04-12 07:00:00+00:00,23469 -2024-04-12 08:00:00+00:00,28006 -2024-04-12 09:00:00+00:00,23933 -2024-04-12 10:00:00+00:00,19496 -2024-04-12 11:00:00+00:00,14292 -2024-04-12 12:00:00+00:00,3481 -2024-04-12 13:00:00+00:00,14594 -2024-04-12 14:00:00+00:00,3439 -2024-04-12 15:00:00+00:00,11949 -2024-04-12 16:00:00+00:00,6295 -2024-04-12 17:00:00+00:00,12282 -2024-04-12 18:00:00+00:00,17553 -2024-04-12 19:00:00+00:00,20225 -2024-04-12 20:00:00+00:00,22780 -2024-04-14 21:00:00+00:00,22435 -2024-04-14 22:00:00+00:00,25665 -2024-04-14 23:00:00+00:00,28920 -2024-04-15 00:00:00+00:00,34058 -2024-04-15 01:00:00+00:00,39987 -2024-04-15 02:00:00+00:00,44190 -2024-04-15 03:00:00+00:00,41118 -2024-04-15 04:00:00+00:00,44306 -2024-04-15 05:00:00+00:00,48412 -2024-04-15 06:00:00+00:00,56405 -2024-04-15 07:00:00+00:00,63014 -2024-04-15 08:00:00+00:00,55476 -2024-04-15 09:00:00+00:00,59696 -2024-04-15 10:00:00+00:00,63827 -2024-04-15 11:00:00+00:00,58972 -2024-04-15 12:00:00+00:00,70697 -2024-04-15 13:00:00+00:00,79596 -2024-04-15 14:00:00+00:00,67128 -2024-04-15 15:00:00+00:00,59769 -2024-04-15 16:00:00+00:00,64850 -2024-04-15 17:00:00+00:00,59075 -2024-04-15 18:00:00+00:00,64033 -2024-04-15 19:00:00+00:00,67266 -2024-04-15 20:00:00+00:00,68978 -2024-04-15 21:00:00+00:00,68514 -2024-04-15 22:00:00+00:00,67332 -2024-04-15 23:00:00+00:00,69653 -2024-04-16 00:00:00+00:00,75541 -2024-04-16 01:00:00+00:00,81364 -2024-04-16 02:00:00+00:00,76975 -2024-04-16 03:00:00+00:00,79919 -2024-04-16 04:00:00+00:00,77653 -2024-04-16 05:00:00+00:00,81146 -2024-04-16 06:00:00+00:00,88450 -2024-04-16 07:00:00+00:00,82541 -2024-04-16 08:00:00+00:00,87903 -2024-04-16 09:00:00+00:00,92662 -2024-04-16 10:00:00+00:00,96407 -2024-04-16 11:00:00+00:00,101423 -2024-04-16 12:00:00+00:00,108188 -2024-04-16 13:00:00+00:00,95950 -2024-04-16 14:00:00+00:00,105056 -2024-04-16 15:00:00+00:00,98949 -2024-04-16 16:00:00+00:00,102856 -2024-04-16 17:00:00+00:00,110250 -2024-04-16 18:00:00+00:00,102893 -2024-04-16 19:00:00+00:00,99963 -2024-04-16 20:00:00+00:00,102160 -2024-04-16 21:00:00+00:00,101460 -2024-04-16 22:00:00+00:00,102753 -2024-04-16 23:00:00+00:00,105218 -2024-04-17 00:00:00+00:00,100896 -2024-04-17 01:00:00+00:00,96359 -2024-04-17 02:00:00+00:00,93745 -2024-04-17 03:00:00+00:00,91649 -2024-04-17 04:00:00+00:00,89802 -2024-04-17 05:00:00+00:00,86914 -2024-04-17 06:00:00+00:00,79474 -2024-04-17 07:00:00+00:00,85276 -2024-04-17 08:00:00+00:00,79943 -2024-04-17 09:00:00+00:00,84522 -2024-04-17 10:00:00+00:00,87493 -2024-04-17 11:00:00+00:00,90432 -2024-04-17 12:00:00+00:00,85545 -2024-04-17 13:00:00+00:00,91929 -2024-04-17 14:00:00+00:00,86773 -2024-04-17 15:00:00+00:00,82424 -2024-04-17 16:00:00+00:00,73681 -2024-04-17 17:00:00+00:00,81495 -2024-04-17 18:00:00+00:00,86370 -2024-04-17 19:00:00+00:00,82886 -2024-04-17 20:00:00+00:00,84752 -2024-04-17 21:00:00+00:00,84209 -2024-04-17 22:00:00+00:00,82276 -2024-04-17 23:00:00+00:00,84604 -2024-04-18 00:00:00+00:00,79922 -2024-04-18 01:00:00+00:00,74861 -2024-04-18 02:00:00+00:00,67814 -2024-04-18 03:00:00+00:00,71783 -2024-04-18 04:00:00+00:00,74268 -2024-04-18 05:00:00+00:00,71104 -2024-04-18 06:00:00+00:00,65769 -2024-04-18 07:00:00+00:00,61646 -2024-04-18 08:00:00+00:00,65732 -2024-04-18 09:00:00+00:00,68876 -2024-04-18 10:00:00+00:00,72306 -2024-04-18 11:00:00+00:00,67920 -2024-04-18 12:00:00+00:00,59552 -2024-04-18 13:00:00+00:00,67975 -2024-04-18 14:00:00+00:00,74176 -2024-04-18 15:00:00+00:00,69779 -2024-04-18 16:00:00+00:00,73229 -2024-04-18 17:00:00+00:00,75910 -2024-04-18 18:00:00+00:00,73873 -2024-04-18 19:00:00+00:00,75433 -2024-04-18 20:00:00+00:00,76770 -2024-04-18 21:00:00+00:00,76593 -2024-04-18 22:00:00+00:00,77567 -2024-04-18 23:00:00+00:00,75285 -2024-04-19 00:00:00+00:00,80308 -2024-04-19 01:00:00+00:00,65802 -2024-04-19 02:00:00+00:00,49601 -2024-04-19 03:00:00+00:00,61758 -2024-04-19 04:00:00+00:00,68183 -2024-04-19 05:00:00+00:00,73224 -2024-04-19 06:00:00+00:00,81999 -2024-04-19 07:00:00+00:00,88755 -2024-04-19 08:00:00+00:00,83244 -2024-04-19 09:00:00+00:00,87277 -2024-04-19 10:00:00+00:00,91398 -2024-04-19 11:00:00+00:00,95665 -2024-04-19 12:00:00+00:00,90582 -2024-04-19 13:00:00+00:00,96883 -2024-04-19 14:00:00+00:00,102892 -2024-04-19 15:00:00+00:00,98639 -2024-04-19 16:00:00+00:00,101871 -2024-04-19 17:00:00+00:00,104401 -2024-04-19 18:00:00+00:00,101725 -2024-04-19 19:00:00+00:00,104099 -2024-04-19 20:00:00+00:00,105577 -2024-04-21 21:00:00+00:00,104470 -2024-04-21 22:00:00+00:00,106093 -2024-04-21 23:00:00+00:00,108242 -2024-04-22 00:00:00+00:00,114215 -2024-04-22 01:00:00+00:00,109212 -2024-04-22 02:00:00+00:00,111759 -2024-04-22 03:00:00+00:00,113567 -2024-04-22 04:00:00+00:00,115912 -2024-04-22 05:00:00+00:00,118449 -2024-04-22 06:00:00+00:00,114544 -2024-04-22 07:00:00+00:00,110625 -2024-04-22 08:00:00+00:00,114287 -2024-04-22 09:00:00+00:00,117235 -2024-04-22 10:00:00+00:00,114978 -2024-04-22 11:00:00+00:00,118315 -2024-04-22 12:00:00+00:00,113773 -2024-04-22 13:00:00+00:00,109257 -2024-04-22 14:00:00+00:00,105700 -2024-04-22 15:00:00+00:00,108176 -2024-04-22 16:00:00+00:00,110730 -2024-04-22 17:00:00+00:00,113003 -2024-04-22 18:00:00+00:00,110779 -2024-04-22 19:00:00+00:00,112258 -2024-04-22 20:00:00+00:00,111296 -2024-04-22 21:00:00+00:00,110879 -2024-04-22 22:00:00+00:00,109760 -2024-04-22 23:00:00+00:00,111588 -2024-04-23 00:00:00+00:00,107629 -2024-04-23 01:00:00+00:00,102249 -2024-04-23 02:00:00+00:00,105263 -2024-04-23 03:00:00+00:00,102892 -2024-04-23 04:00:00+00:00,100865 -2024-04-23 05:00:00+00:00,103388 -2024-04-23 06:00:00+00:00,99688 -2024-04-23 07:00:00+00:00,104927 -2024-04-23 08:00:00+00:00,108146 -2024-04-23 09:00:00+00:00,105369 -2024-04-23 10:00:00+00:00,102859 -2024-04-23 11:00:00+00:00,106361 -2024-04-23 12:00:00+00:00,109570 -2024-04-23 13:00:00+00:00,103075 -2024-04-23 14:00:00+00:00,111903 -2024-04-23 15:00:00+00:00,115331 -2024-04-23 16:00:00+00:00,117989 -2024-04-23 17:00:00+00:00,113458 -2024-04-23 18:00:00+00:00,116067 -2024-04-23 19:00:00+00:00,117661 -2024-04-23 20:00:00+00:00,119270 -2024-04-23 21:00:00+00:00,118692 -2024-04-23 22:00:00+00:00,119586 -2024-04-23 23:00:00+00:00,117980 -2024-04-24 00:00:00+00:00,120914 -2024-04-24 01:00:00+00:00,124321 -2024-04-24 02:00:00+00:00,126179 -2024-04-24 03:00:00+00:00,128251 -2024-04-24 04:00:00+00:00,126567 -2024-04-24 05:00:00+00:00,128112 -2024-04-24 06:00:00+00:00,130955 -2024-04-24 07:00:00+00:00,126418 -2024-04-24 08:00:00+00:00,123837 -2024-04-24 09:00:00+00:00,125987 -2024-04-24 10:00:00+00:00,124587 -2024-04-24 11:00:00+00:00,122486 -2024-04-24 12:00:00+00:00,132866 -2024-04-24 13:00:00+00:00,138981 -2024-04-24 14:00:00+00:00,144579 -2024-04-24 15:00:00+00:00,149159 -2024-04-24 16:00:00+00:00,146063 -2024-04-24 17:00:00+00:00,150506 -2024-04-24 18:00:00+00:00,146964 -2024-04-24 19:00:00+00:00,149768 -2024-04-24 20:00:00+00:00,151549 -2024-04-24 21:00:00+00:00,150874 -2024-04-24 22:00:00+00:00,149723 -2024-04-24 23:00:00+00:00,151219 -2024-04-25 00:00:00+00:00,155207 -2024-04-25 01:00:00+00:00,158787 -2024-04-25 02:00:00+00:00,161866 -2024-04-25 03:00:00+00:00,164739 -2024-04-25 04:00:00+00:00,167305 -2024-04-25 05:00:00+00:00,171059 -2024-04-25 06:00:00+00:00,174786 -2024-04-25 07:00:00+00:00,171097 -2024-04-25 08:00:00+00:00,173988 -2024-04-25 09:00:00+00:00,171453 -2024-04-25 10:00:00+00:00,168364 -2024-04-25 11:00:00+00:00,171425 -2024-04-25 12:00:00+00:00,181000 -2024-04-25 13:00:00+00:00,168696 -2024-04-25 14:00:00+00:00,161791 -2024-04-25 15:00:00+00:00,157944 -2024-04-25 16:00:00+00:00,154720 -2024-04-25 17:00:00+00:00,159071 -2024-04-25 18:00:00+00:00,162974 -2024-04-25 19:00:00+00:00,165445 -2024-04-25 20:00:00+00:00,166987 -2024-04-25 21:00:00+00:00,166135 -2024-04-25 22:00:00+00:00,165457 -2024-04-25 23:00:00+00:00,167473 -2024-04-26 00:00:00+00:00,170727 -2024-04-26 01:00:00+00:00,167467 -2024-04-26 02:00:00+00:00,165048 -2024-04-26 03:00:00+00:00,173285 -2024-04-26 04:00:00+00:00,176277 -2024-04-26 05:00:00+00:00,173774 -2024-04-26 06:00:00+00:00,180298 -2024-04-26 07:00:00+00:00,188978 -2024-04-26 08:00:00+00:00,172962 -2024-04-26 09:00:00+00:00,177500 -2024-04-26 10:00:00+00:00,180341 -2024-04-26 11:00:00+00:00,174944 -2024-04-26 12:00:00+00:00,185618 -2024-04-26 13:00:00+00:00,193322 -2024-04-26 14:00:00+00:00,202694 -2024-04-26 15:00:00+00:00,210881 -2024-04-26 16:00:00+00:00,215955 -2024-04-26 17:00:00+00:00,219264 -2024-04-26 18:00:00+00:00,222880 -2024-04-26 19:00:00+00:00,225504 -2024-04-26 20:00:00+00:00,230254 -2024-04-28 21:00:00+00:00,229897 -2024-04-28 22:00:00+00:00,235515 -2024-04-28 23:00:00+00:00,231672 -2024-04-29 00:00:00+00:00,226830 -2024-04-29 01:00:00+00:00,239953 -2024-04-29 02:00:00+00:00,248274 -2024-04-29 03:00:00+00:00,251954 -2024-04-29 04:00:00+00:00,219004 -2024-04-29 05:00:00+00:00,240858 -2024-04-29 06:00:00+00:00,251882 -2024-04-29 07:00:00+00:00,220617 -2024-04-29 08:00:00+00:00,234008 -2024-04-29 09:00:00+00:00,223844 -2024-04-29 10:00:00+00:00,230861 -2024-04-29 11:00:00+00:00,238260 -2024-04-29 12:00:00+00:00,246605 -2024-04-29 13:00:00+00:00,255078 -2024-04-29 14:00:00+00:00,247529 -2024-04-29 15:00:00+00:00,253377 -2024-04-29 16:00:00+00:00,242902 -2024-04-29 17:00:00+00:00,250768 -2024-04-29 18:00:00+00:00,242675 -2024-04-29 19:00:00+00:00,248098 -2024-04-29 20:00:00+00:00,250987 -2024-04-29 21:00:00+00:00,250570 -2024-04-29 22:00:00+00:00,247072 -2024-04-29 23:00:00+00:00,250490 -2024-04-30 00:00:00+00:00,258356 -2024-04-30 01:00:00+00:00,265515 -2024-04-30 02:00:00+00:00,261482 -2024-04-30 03:00:00+00:00,265446 -2024-04-30 04:00:00+00:00,268619 -2024-04-30 05:00:00+00:00,273170 -2024-04-30 06:00:00+00:00,279772 -2024-04-30 07:00:00+00:00,286479 -2024-04-30 08:00:00+00:00,291882 -2024-04-30 09:00:00+00:00,286200 -2024-04-30 10:00:00+00:00,282136 -2024-04-30 11:00:00+00:00,284276 -2024-04-30 12:00:00+00:00,296139 -2024-04-30 13:00:00+00:00,287949 -2024-04-30 14:00:00+00:00,279596 -2024-04-30 15:00:00+00:00,284856 -2024-04-30 16:00:00+00:00,281993 -2024-04-30 17:00:00+00:00,284077 -2024-04-30 18:00:00+00:00,286218 -2024-04-30 19:00:00+00:00,288947 -2024-04-30 20:00:00+00:00,290728 -2024-04-30 21:00:00+00:00,290168 -2024-04-30 22:00:00+00:00,287346 -2024-04-30 23:00:00+00:00,291122 -2024-05-01 00:00:00+00:00,296351 -2024-05-01 01:00:00+00:00,300168 -2024-05-01 02:00:00+00:00,302158 -2024-05-01 03:00:00+00:00,304210 -2024-05-01 04:00:00+00:00,302179 -2024-05-01 05:00:00+00:00,304722 -2024-05-01 06:00:00+00:00,307864 -2024-05-01 07:00:00+00:00,304896 -2024-05-01 08:00:00+00:00,306964 -2024-05-01 09:00:00+00:00,304852 -2024-05-01 10:00:00+00:00,303026 -2024-05-01 11:00:00+00:00,300912 -2024-05-01 12:00:00+00:00,296037 -2024-05-01 13:00:00+00:00,291755 -2024-05-01 14:00:00+00:00,298521 -2024-05-01 15:00:00+00:00,294220 -2024-05-01 16:00:00+00:00,291977 -2024-05-01 17:00:00+00:00,294364 -2024-05-01 18:00:00+00:00,275400 -2024-05-01 19:00:00+00:00,285451 -2024-05-01 20:00:00+00:00,259145 -2024-05-01 21:00:00+00:00,256314 -2024-05-01 22:00:00+00:00,265039 -2024-05-01 23:00:00+00:00,273137 -2024-05-02 00:00:00+00:00,281524 -2024-05-02 01:00:00+00:00,288217 -2024-05-02 02:00:00+00:00,280598 -2024-05-02 03:00:00+00:00,285937 -2024-05-02 04:00:00+00:00,280030 -2024-05-02 05:00:00+00:00,273740 -2024-05-02 06:00:00+00:00,262847 -2024-05-02 07:00:00+00:00,271858 -2024-05-02 08:00:00+00:00,263656 -2024-05-02 09:00:00+00:00,269865 -2024-05-02 10:00:00+00:00,264266 -2024-05-02 11:00:00+00:00,257479 -2024-05-02 12:00:00+00:00,247223 -2024-05-02 13:00:00+00:00,237724 -2024-05-02 14:00:00+00:00,227182 -2024-05-02 15:00:00+00:00,216580 -2024-05-02 16:00:00+00:00,208557 -2024-05-02 17:00:00+00:00,201238 -2024-05-02 18:00:00+00:00,193723 -2024-05-02 19:00:00+00:00,198496 -2024-05-02 20:00:00+00:00,202546 -2024-05-02 21:00:00+00:00,203068 -2024-05-02 22:00:00+00:00,199452 -2024-05-02 23:00:00+00:00,192780 -2024-05-03 00:00:00+00:00,200495 -2024-05-03 01:00:00+00:00,192617 -2024-05-03 02:00:00+00:00,198384 -2024-05-03 03:00:00+00:00,194436 -2024-05-03 04:00:00+00:00,190701 -2024-05-03 05:00:00+00:00,194531 -2024-05-03 06:00:00+00:00,201730 -2024-05-03 07:00:00+00:00,208992 -2024-05-03 08:00:00+00:00,201581 -2024-05-03 09:00:00+00:00,196705 -2024-05-03 10:00:00+00:00,201655 -2024-05-03 11:00:00+00:00,207380 -2024-05-03 12:00:00+00:00,191998 -2024-05-03 13:00:00+00:00,207201 -2024-05-03 14:00:00+00:00,222745 -2024-05-03 15:00:00+00:00,215694 -2024-05-03 16:00:00+00:00,219880 -2024-05-03 17:00:00+00:00,223976 -2024-05-03 18:00:00+00:00,227858 -2024-05-03 19:00:00+00:00,225516 -2024-05-03 20:00:00+00:00,227264 -2024-05-05 21:00:00+00:00,226956 -2024-05-05 22:00:00+00:00,229162 -2024-05-05 23:00:00+00:00,233235 -2024-05-06 00:00:00+00:00,227419 -2024-05-06 01:00:00+00:00,232387 -2024-05-06 02:00:00+00:00,236661 -2024-05-06 03:00:00+00:00,240709 -2024-05-06 04:00:00+00:00,244590 -2024-05-06 05:00:00+00:00,239760 -2024-05-06 06:00:00+00:00,234136 -2024-05-06 07:00:00+00:00,240511 -2024-05-06 08:00:00+00:00,234767 -2024-05-06 09:00:00+00:00,238446 -2024-05-06 10:00:00+00:00,242890 -2024-05-06 11:00:00+00:00,239251 -2024-05-06 12:00:00+00:00,232269 -2024-05-06 13:00:00+00:00,239687 -2024-05-06 14:00:00+00:00,245752 -2024-05-06 15:00:00+00:00,241535 -2024-05-06 16:00:00+00:00,245568 -2024-05-06 17:00:00+00:00,249597 -2024-05-06 18:00:00+00:00,253192 -2024-05-06 19:00:00+00:00,256228 -2024-05-06 20:00:00+00:00,255017 -2024-05-06 21:00:00+00:00,255163 -2024-05-06 22:00:00+00:00,256191 -2024-05-06 23:00:00+00:00,260311 -2024-05-07 00:00:00+00:00,253138 -2024-05-07 01:00:00+00:00,260707 -2024-05-07 02:00:00+00:00,264598 -2024-05-07 03:00:00+00:00,267182 -2024-05-07 04:00:00+00:00,264175 -2024-05-07 05:00:00+00:00,267833 -2024-05-07 06:00:00+00:00,262856 -2024-05-07 07:00:00+00:00,257711 -2024-05-07 08:00:00+00:00,262040 -2024-05-07 09:00:00+00:00,265626 -2024-05-07 10:00:00+00:00,262903 -2024-05-07 11:00:00+00:00,266470 -2024-05-07 12:00:00+00:00,261552 -2024-05-07 13:00:00+00:00,256094 -2024-05-07 14:00:00+00:00,260657 -2024-05-07 15:00:00+00:00,264880 -2024-05-07 16:00:00+00:00,261911 -2024-05-07 17:00:00+00:00,266313 -2024-05-07 18:00:00+00:00,269870 -2024-05-07 19:00:00+00:00,266448 -2024-05-07 20:00:00+00:00,267634 -2024-05-07 21:00:00+00:00,266449 -2024-05-07 22:00:00+00:00,267370 -2024-05-07 23:00:00+00:00,269342 -2024-05-08 00:00:00+00:00,274245 -2024-05-08 01:00:00+00:00,280657 -2024-05-08 02:00:00+00:00,285980 -2024-05-08 03:00:00+00:00,282251 -2024-05-08 04:00:00+00:00,286069 -2024-05-08 05:00:00+00:00,282507 -2024-05-08 06:00:00+00:00,286919 -2024-05-08 07:00:00+00:00,291368 -2024-05-08 08:00:00+00:00,297321 -2024-05-08 09:00:00+00:00,292205 -2024-05-08 10:00:00+00:00,288424 -2024-05-08 11:00:00+00:00,292733 -2024-05-08 12:00:00+00:00,298560 -2024-05-08 13:00:00+00:00,304435 -2024-05-08 14:00:00+00:00,299209 -2024-05-08 15:00:00+00:00,293510 -2024-05-08 16:00:00+00:00,297602 -2024-05-08 17:00:00+00:00,294275 -2024-05-08 18:00:00+00:00,296796 -2024-05-08 19:00:00+00:00,298641 -2024-05-08 20:00:00+00:00,296827 -2024-05-08 21:00:00+00:00,297508 -2024-05-08 22:00:00+00:00,298671 -2024-05-08 23:00:00+00:00,296271 -2024-05-09 00:00:00+00:00,303991 -2024-05-09 01:00:00+00:00,299005 -2024-05-09 02:00:00+00:00,302235 -2024-05-09 03:00:00+00:00,298870 -2024-05-09 04:00:00+00:00,301944 -2024-05-09 05:00:00+00:00,304817 -2024-05-09 06:00:00+00:00,308882 -2024-05-09 07:00:00+00:00,313444 -2024-05-09 08:00:00+00:00,317090 -2024-05-09 09:00:00+00:00,320096 -2024-05-09 10:00:00+00:00,323483 -2024-05-09 11:00:00+00:00,318545 -2024-05-09 12:00:00+00:00,310974 -2024-05-09 13:00:00+00:00,304180 -2024-05-09 14:00:00+00:00,297857 -2024-05-09 15:00:00+00:00,301483 -2024-05-09 16:00:00+00:00,298301 -2024-05-09 17:00:00+00:00,295688 -2024-05-09 18:00:00+00:00,293451 -2024-05-09 19:00:00+00:00,291105 -2024-05-09 20:00:00+00:00,292315 -2024-05-09 21:00:00+00:00,291965 -2024-05-09 22:00:00+00:00,290429 -2024-05-09 23:00:00+00:00,292300 -2024-05-10 00:00:00+00:00,297464 -2024-05-10 01:00:00+00:00,302571 -2024-05-10 02:00:00+00:00,306177 -2024-05-10 03:00:00+00:00,303129 -2024-05-10 04:00:00+00:00,300884 -2024-05-10 05:00:00+00:00,297688 -2024-05-10 06:00:00+00:00,303637 -2024-05-10 07:00:00+00:00,308979 -2024-05-10 08:00:00+00:00,313735 -2024-05-10 09:00:00+00:00,309582 -2024-05-10 10:00:00+00:00,313135 -2024-05-10 11:00:00+00:00,309499 -2024-05-10 12:00:00+00:00,314217 -2024-05-10 13:00:00+00:00,308709 -2024-05-10 14:00:00+00:00,315969 -2024-05-10 15:00:00+00:00,311696 -2024-05-10 16:00:00+00:00,308628 -2024-05-10 17:00:00+00:00,310481 -2024-05-10 18:00:00+00:00,312480 -2024-05-10 19:00:00+00:00,311257 -2024-05-10 20:00:00+00:00,309786 -2024-05-12 21:00:00+00:00,309710 -2024-05-12 22:00:00+00:00,310871 -2024-05-12 23:00:00+00:00,312480 -2024-05-13 00:00:00+00:00,316013 -2024-05-13 01:00:00+00:00,310008 -2024-05-13 02:00:00+00:00,306827 -2024-05-13 03:00:00+00:00,309855 -2024-05-13 04:00:00+00:00,311812 -2024-05-13 05:00:00+00:00,313222 -2024-05-13 06:00:00+00:00,317472 -2024-05-13 07:00:00+00:00,322534 -2024-05-13 08:00:00+00:00,318863 -2024-05-13 09:00:00+00:00,321654 -2024-05-13 10:00:00+00:00,318946 -2024-05-13 11:00:00+00:00,316291 -2024-05-13 12:00:00+00:00,312957 -2024-05-13 13:00:00+00:00,316897 -2024-05-13 14:00:00+00:00,320453 -2024-05-13 15:00:00+00:00,326206 -2024-05-13 16:00:00+00:00,329624 -2024-05-13 17:00:00+00:00,331899 -2024-05-13 18:00:00+00:00,329099 -2024-05-13 19:00:00+00:00,331597 -2024-05-13 20:00:00+00:00,332987 -2024-05-13 21:00:00+00:00,331962 -2024-05-13 22:00:00+00:00,332894 -2024-05-13 23:00:00+00:00,331015 -2024-05-14 00:00:00+00:00,335833 -2024-05-14 01:00:00+00:00,339647 -2024-05-14 02:00:00+00:00,342529 -2024-05-14 03:00:00+00:00,340268 -2024-05-14 04:00:00+00:00,338290 -2024-05-14 05:00:00+00:00,340459 -2024-05-14 06:00:00+00:00,344340 -2024-05-14 07:00:00+00:00,347092 -2024-05-14 08:00:00+00:00,343452 -2024-05-14 09:00:00+00:00,340170 -2024-05-14 10:00:00+00:00,342776 -2024-05-14 11:00:00+00:00,344611 -2024-05-14 12:00:00+00:00,352037 -2024-05-14 13:00:00+00:00,343870 -2024-05-14 14:00:00+00:00,349673 -2024-05-14 15:00:00+00:00,354250 -2024-05-14 16:00:00+00:00,350792 -2024-05-14 17:00:00+00:00,352777 -2024-05-14 18:00:00+00:00,350928 -2024-05-14 19:00:00+00:00,352990 -2024-05-14 20:00:00+00:00,351850 -2024-05-14 21:00:00+00:00,351549 -2024-05-14 22:00:00+00:00,352546 -2024-05-14 23:00:00+00:00,353883 -2024-05-15 00:00:00+00:00,349515 -2024-05-15 01:00:00+00:00,345776 -2024-05-15 02:00:00+00:00,348094 -2024-05-15 03:00:00+00:00,345836 -2024-05-15 04:00:00+00:00,344137 -2024-05-15 05:00:00+00:00,340673 -2024-05-15 06:00:00+00:00,344467 -2024-05-15 07:00:00+00:00,339049 -2024-05-15 08:00:00+00:00,332275 -2024-05-15 09:00:00+00:00,337086 -2024-05-15 10:00:00+00:00,333225 -2024-05-15 11:00:00+00:00,328051 -2024-05-15 12:00:00+00:00,313299 -2024-05-15 13:00:00+00:00,325720 -2024-05-15 14:00:00+00:00,317920 -2024-05-15 15:00:00+00:00,309677 -2024-05-15 16:00:00+00:00,303443 -2024-05-15 17:00:00+00:00,298760 -2024-05-15 18:00:00+00:00,302054 -2024-05-15 19:00:00+00:00,304653 -2024-05-15 20:00:00+00:00,302591 -2024-05-15 21:00:00+00:00,301980 -2024-05-15 22:00:00+00:00,299130 -2024-05-15 23:00:00+00:00,293708 -2024-05-16 00:00:00+00:00,283231 -2024-05-16 01:00:00+00:00,293381 -2024-05-16 02:00:00+00:00,285664 -2024-05-16 03:00:00+00:00,280560 -2024-05-16 04:00:00+00:00,275888 -2024-05-16 05:00:00+00:00,280806 -2024-05-16 06:00:00+00:00,287876 -2024-05-16 07:00:00+00:00,295133 -2024-05-16 08:00:00+00:00,302169 -2024-05-16 09:00:00+00:00,297707 -2024-05-16 10:00:00+00:00,293266 -2024-05-16 11:00:00+00:00,298274 -2024-05-16 12:00:00+00:00,307617 -2024-05-16 13:00:00+00:00,317539 -2024-05-16 14:00:00+00:00,310577 -2024-05-16 15:00:00+00:00,305517 -2024-05-16 16:00:00+00:00,309691 -2024-05-16 17:00:00+00:00,305492 -2024-05-16 18:00:00+00:00,308982 -2024-05-16 19:00:00+00:00,311444 -2024-05-16 20:00:00+00:00,310182 -2024-05-16 21:00:00+00:00,309390 -2024-05-16 22:00:00+00:00,310504 -2024-05-16 23:00:00+00:00,312819 -2024-05-17 00:00:00+00:00,318467 -2024-05-17 01:00:00+00:00,326210 -2024-05-17 02:00:00+00:00,330209 -2024-05-17 03:00:00+00:00,326887 -2024-05-17 04:00:00+00:00,330528 -2024-05-17 05:00:00+00:00,327091 -2024-05-17 06:00:00+00:00,322293 -2024-05-17 07:00:00+00:00,326102 -2024-05-17 08:00:00+00:00,330583 -2024-05-17 09:00:00+00:00,327064 -2024-05-17 10:00:00+00:00,330340 -2024-05-17 11:00:00+00:00,332866 -2024-05-17 12:00:00+00:00,328546 -2024-05-17 13:00:00+00:00,323065 -2024-05-17 14:00:00+00:00,317073 -2024-05-17 15:00:00+00:00,323796 -2024-05-17 16:00:00+00:00,328476 -2024-05-17 17:00:00+00:00,332680 -2024-05-17 18:00:00+00:00,336040 -2024-05-17 19:00:00+00:00,333721 -2024-05-17 20:00:00+00:00,331874 -2024-05-19 21:00:00+00:00,332043 -2024-05-19 22:00:00+00:00,333215 -2024-05-19 23:00:00+00:00,335227 -2024-05-20 00:00:00+00:00,339911 -2024-05-20 01:00:00+00:00,335146 -2024-05-20 02:00:00+00:00,332599 -2024-05-20 03:00:00+00:00,329320 -2024-05-20 04:00:00+00:00,332045 -2024-05-20 05:00:00+00:00,329350 -2024-05-20 06:00:00+00:00,334376 -2024-05-20 07:00:00+00:00,328845 -2024-05-20 08:00:00+00:00,324844 -2024-05-20 09:00:00+00:00,328466 -2024-05-20 10:00:00+00:00,325577 -2024-05-20 11:00:00+00:00,328458 -2024-05-20 12:00:00+00:00,336677 -2024-05-20 13:00:00+00:00,330216 -2024-05-20 14:00:00+00:00,331827 -2024-05-20 17:00:00+00:00,333535 -2024-05-20 18:00:00+00:00,336285 -2024-05-20 19:00:00+00:00,338517 -2024-05-20 20:00:00+00:00,336923 -2024-05-20 21:00:00+00:00,336693 -2024-05-20 22:00:00+00:00,337546 -2024-05-20 23:00:00+00:00,339323 -2024-05-21 00:00:00+00:00,343737 -2024-05-21 01:00:00+00:00,347679 -2024-05-21 02:00:00+00:00,344573 -2024-05-21 03:00:00+00:00,347402 -2024-05-21 04:00:00+00:00,344245 -2024-05-21 05:00:00+00:00,340866 -2024-05-21 06:00:00+00:00,333269 -2024-05-21 07:00:00+00:00,326931 -2024-05-21 08:00:00+00:00,331397 -2024-05-21 09:00:00+00:00,326887 -2024-05-21 10:00:00+00:00,330529 -2024-05-21 11:00:00+00:00,334913 -2024-05-21 12:00:00+00:00,342048 -2024-05-21 13:00:00+00:00,330346 -2024-05-21 14:00:00+00:00,322710 -2024-05-21 15:00:00+00:00,326553 -2024-05-21 16:00:00+00:00,329498 -2024-05-21 17:00:00+00:00,332892 -2024-05-21 18:00:00+00:00,329726 -2024-05-21 19:00:00+00:00,326893 -2024-05-21 20:00:00+00:00,328300 -2024-05-21 21:00:00+00:00,328006 -2024-05-21 22:00:00+00:00,328788 -2024-05-21 23:00:00+00:00,330968 -2024-05-22 00:00:00+00:00,326351 -2024-05-22 01:00:00+00:00,322243 -2024-05-22 02:00:00+00:00,325722 -2024-05-22 03:00:00+00:00,328905 -2024-05-22 04:00:00+00:00,331237 -2024-05-22 05:00:00+00:00,328846 -2024-05-22 06:00:00+00:00,333498 -2024-05-22 07:00:00+00:00,337670 -2024-05-22 08:00:00+00:00,341878 -2024-05-22 09:00:00+00:00,336848 -2024-05-22 10:00:00+00:00,334050 -2024-05-22 11:00:00+00:00,339129 -2024-05-22 12:00:00+00:00,333818 -2024-05-22 13:00:00+00:00,326961 -2024-05-22 14:00:00+00:00,332643 -2024-05-22 15:00:00+00:00,328240 -2024-05-22 16:00:00+00:00,324150 -2024-05-22 17:00:00+00:00,328165 -2024-05-22 18:00:00+00:00,332778 -2024-05-22 19:00:00+00:00,335846 -2024-05-22 20:00:00+00:00,337850 -2024-05-22 21:00:00+00:00,337047 -2024-05-22 22:00:00+00:00,338623 -2024-05-22 23:00:00+00:00,336380 -2024-05-23 00:00:00+00:00,341008 -2024-05-23 01:00:00+00:00,334778 -2024-05-23 02:00:00+00:00,331594 -2024-05-23 03:00:00+00:00,334267 -2024-05-23 04:00:00+00:00,332114 -2024-05-23 05:00:00+00:00,329530 -2024-05-23 06:00:00+00:00,324511 -2024-05-23 07:00:00+00:00,330295 -2024-05-23 08:00:00+00:00,325710 -2024-05-23 09:00:00+00:00,321606 -2024-05-23 10:00:00+00:00,325031 -2024-05-23 11:00:00+00:00,320898 -2024-05-23 12:00:00+00:00,327358 -2024-05-23 13:00:00+00:00,336688 -2024-05-23 14:00:00+00:00,320834 -2024-05-23 15:00:00+00:00,327470 -2024-05-23 16:00:00+00:00,323171 -2024-05-23 17:00:00+00:00,319751 -2024-05-23 18:00:00+00:00,314921 -2024-05-23 19:00:00+00:00,311878 -2024-05-23 20:00:00+00:00,313576 -2024-05-23 21:00:00+00:00,314725 -2024-05-23 22:00:00+00:00,316021 -2024-05-23 23:00:00+00:00,313753 -2024-05-24 00:00:00+00:00,319659 -2024-05-24 01:00:00+00:00,324633 -2024-05-24 02:00:00+00:00,321250 -2024-05-24 03:00:00+00:00,318508 -2024-05-24 04:00:00+00:00,320743 -2024-05-24 05:00:00+00:00,323373 -2024-05-24 06:00:00+00:00,318811 -2024-05-24 07:00:00+00:00,321625 -2024-05-24 08:00:00+00:00,318636 -2024-05-24 09:00:00+00:00,315557 -2024-05-24 10:00:00+00:00,312938 -2024-05-24 11:00:00+00:00,316375 -2024-05-24 12:00:00+00:00,322918 -2024-05-24 13:00:00+00:00,316413 -2024-05-24 14:00:00+00:00,310277 -2024-05-24 15:00:00+00:00,305372 -2024-05-24 16:00:00+00:00,308839 -2024-05-24 17:00:00+00:00,311143 -2024-05-24 18:00:00+00:00,313095 -2024-05-24 19:00:00+00:00,311718 -2024-05-24 20:00:00+00:00,312731 -2024-05-26 21:00:00+00:00,312605 -2024-05-26 22:00:00+00:00,311280 -2024-05-26 23:00:00+00:00,312733 -2024-05-27 00:00:00+00:00,308358 -2024-05-27 01:00:00+00:00,303826 -2024-05-27 02:00:00+00:00,301249 -2024-05-27 03:00:00+00:00,298922 -2024-05-27 04:00:00+00:00,300907 -2024-05-27 05:00:00+00:00,298673 -2024-05-27 06:00:00+00:00,302466 -2024-05-27 07:00:00+00:00,305211 -2024-05-27 08:00:00+00:00,307270 -2024-05-27 09:00:00+00:00,305279 -2024-05-27 10:00:00+00:00,302900 -2024-05-27 11:00:00+00:00,305275 -2024-05-27 12:00:00+00:00,301486 -2024-05-27 13:00:00+00:00,297858 -2024-05-27 14:00:00+00:00,295955 -2024-05-27 15:00:00+00:00,297521 -2024-05-27 16:00:00+00:00,298597 -2024-05-27 17:00:00+00:00,298129 -2024-05-27 18:00:00+00:00,296883 -2024-05-27 19:00:00+00:00,297647 -2024-05-27 20:00:00+00:00,299227 -2024-05-27 21:00:00+00:00,298568 -2024-05-27 22:00:00+00:00,299110 -2024-05-27 23:00:00+00:00,297965 -2024-05-28 00:00:00+00:00,302733 -2024-05-28 01:00:00+00:00,298986 -2024-05-28 02:00:00+00:00,295530 -2024-05-28 03:00:00+00:00,292658 -2024-05-28 04:00:00+00:00,294949 -2024-05-28 05:00:00+00:00,298104 -2024-05-28 06:00:00+00:00,302482 -2024-05-28 07:00:00+00:00,306279 -2024-05-28 08:00:00+00:00,303153 -2024-05-28 09:00:00+00:00,306608 -2024-05-28 10:00:00+00:00,303944 -2024-05-28 11:00:00+00:00,300734 -2024-05-28 12:00:00+00:00,295506 -2024-05-28 13:00:00+00:00,301891 -2024-05-28 14:00:00+00:00,307607 -2024-05-28 15:00:00+00:00,310253 -2024-05-28 16:00:00+00:00,312147 -2024-05-28 17:00:00+00:00,315941 -2024-05-28 18:00:00+00:00,319540 -2024-05-28 19:00:00+00:00,317033 -2024-05-28 20:00:00+00:00,318418 -2024-05-28 21:00:00+00:00,317831 -2024-05-28 22:00:00+00:00,318827 -2024-05-28 23:00:00+00:00,320767 -2024-05-29 00:00:00+00:00,324582 -2024-05-29 01:00:00+00:00,320463 -2024-05-29 02:00:00+00:00,323160 -2024-05-29 03:00:00+00:00,325572 -2024-05-29 04:00:00+00:00,323622 -2024-05-29 05:00:00+00:00,321092 -2024-05-29 06:00:00+00:00,314314 -2024-05-29 07:00:00+00:00,318959 -2024-05-29 08:00:00+00:00,313470 -2024-05-29 09:00:00+00:00,317172 -2024-05-29 10:00:00+00:00,321137 -2024-05-29 11:00:00+00:00,324620 -2024-05-29 12:00:00+00:00,318936 -2024-05-29 13:00:00+00:00,324904 -2024-05-29 14:00:00+00:00,329758 -2024-05-29 15:00:00+00:00,335736 -2024-05-29 16:00:00+00:00,339074 -2024-05-29 17:00:00+00:00,335263 -2024-05-29 18:00:00+00:00,338121 -2024-05-29 19:00:00+00:00,341118 -2024-05-29 20:00:00+00:00,339469 -2024-05-29 21:00:00+00:00,339044 -2024-05-29 22:00:00+00:00,339906 -2024-05-29 23:00:00+00:00,337686 -2024-05-30 00:00:00+00:00,331236 -2024-05-30 01:00:00+00:00,336515 -2024-05-30 02:00:00+00:00,333582 -2024-05-30 03:00:00+00:00,337170 -2024-05-30 04:00:00+00:00,332977 -2024-05-30 05:00:00+00:00,327113 -2024-05-30 06:00:00+00:00,318272 -2024-05-30 07:00:00+00:00,325398 -2024-05-30 08:00:00+00:00,318663 -2024-05-30 09:00:00+00:00,313169 -2024-05-30 10:00:00+00:00,317265 -2024-05-30 11:00:00+00:00,312028 -2024-05-30 12:00:00+00:00,303404 -2024-05-30 13:00:00+00:00,314070 -2024-05-30 14:00:00+00:00,307505 -2024-05-30 15:00:00+00:00,313238 -2024-05-30 16:00:00+00:00,317056 -2024-05-30 17:00:00+00:00,319684 -2024-05-30 18:00:00+00:00,323176 -2024-05-30 19:00:00+00:00,326945 -2024-05-30 20:00:00+00:00,325243 -2024-05-30 21:00:00+00:00,324570 -2024-05-30 22:00:00+00:00,325548 -2024-05-30 23:00:00+00:00,328177 -2024-05-31 00:00:00+00:00,321992 -2024-05-31 01:00:00+00:00,314914 -2024-05-31 02:00:00+00:00,320638 -2024-05-31 03:00:00+00:00,314752 -2024-05-31 04:00:00+00:00,310869 -2024-05-31 05:00:00+00:00,315533 -2024-05-31 06:00:00+00:00,321854 -2024-05-31 07:00:00+00:00,328260 -2024-05-31 08:00:00+00:00,334347 -2024-05-31 09:00:00+00:00,339512 -2024-05-31 10:00:00+00:00,335255 -2024-05-31 11:00:00+00:00,331337 -2024-05-31 12:00:00+00:00,322014 -2024-05-31 13:00:00+00:00,313775 -2024-05-31 14:00:00+00:00,323425 -2024-05-31 15:00:00+00:00,331297 -2024-05-31 16:00:00+00:00,327616 -2024-05-31 17:00:00+00:00,330551 -2024-05-31 18:00:00+00:00,333830 -2024-05-31 19:00:00+00:00,336913 -2024-05-31 20:00:00+00:00,339428 -2024-06-02 21:00:00+00:00,338146 -2024-06-02 22:00:00+00:00,340148 -2024-06-02 23:00:00+00:00,338212 -2024-06-03 00:00:00+00:00,332892 -2024-06-03 01:00:00+00:00,328752 -2024-06-03 02:00:00+00:00,332291 -2024-06-03 03:00:00+00:00,336708 -2024-06-03 04:00:00+00:00,333388 -2024-06-03 05:00:00+00:00,336699 -2024-06-03 06:00:00+00:00,332307 -2024-06-03 07:00:00+00:00,328168 -2024-06-03 08:00:00+00:00,322372 -2024-06-03 09:00:00+00:00,327152 -2024-06-03 10:00:00+00:00,322630 -2024-06-03 11:00:00+00:00,327847 -2024-06-03 12:00:00+00:00,322053 -2024-06-03 13:00:00+00:00,315899 -2024-06-03 14:00:00+00:00,302465 -2024-06-03 15:00:00+00:00,294991 -2024-06-03 16:00:00+00:00,300669 -2024-06-03 17:00:00+00:00,305104 -2024-06-03 18:00:00+00:00,309758 -2024-06-03 19:00:00+00:00,313179 -2024-06-03 20:00:00+00:00,310511 -2024-06-03 21:00:00+00:00,311013 -2024-06-03 22:00:00+00:00,312194 -2024-06-03 23:00:00+00:00,309297 -2024-06-04 00:00:00+00:00,315764 -2024-06-04 01:00:00+00:00,320518 -2024-06-04 02:00:00+00:00,316209 -2024-06-04 03:00:00+00:00,319339 -2024-06-04 04:00:00+00:00,316658 -2024-06-04 05:00:00+00:00,312719 -2024-06-04 06:00:00+00:00,304596 -2024-06-04 07:00:00+00:00,294355 -2024-06-04 08:00:00+00:00,284182 -2024-06-04 09:00:00+00:00,273937 -2024-06-04 10:00:00+00:00,264639 -2024-06-04 11:00:00+00:00,256873 -2024-06-04 12:00:00+00:00,267240 -2024-06-04 13:00:00+00:00,258387 -2024-06-04 14:00:00+00:00,242693 -2024-06-04 15:00:00+00:00,233878 -2024-06-04 16:00:00+00:00,226717 -2024-06-04 17:00:00+00:00,220356 -2024-06-04 18:00:00+00:00,225775 -2024-06-04 19:00:00+00:00,229667 -2024-06-04 20:00:00+00:00,231129 -2024-06-04 21:00:00+00:00,230098 -2024-06-04 22:00:00+00:00,230897 -2024-06-04 23:00:00+00:00,233679 -2024-06-05 00:00:00+00:00,241586 -2024-06-05 01:00:00+00:00,248089 -2024-06-05 02:00:00+00:00,251925 -2024-06-05 03:00:00+00:00,255943 -2024-06-05 04:00:00+00:00,259355 -2024-06-05 05:00:00+00:00,264763 -2024-06-05 06:00:00+00:00,271278 -2024-06-05 07:00:00+00:00,278532 -2024-06-05 08:00:00+00:00,284676 -2024-06-05 09:00:00+00:00,278431 -2024-06-05 10:00:00+00:00,282314 -2024-06-05 11:00:00+00:00,286042 -2024-06-05 12:00:00+00:00,276501 -2024-06-05 13:00:00+00:00,264355 -2024-06-05 14:00:00+00:00,278440 -2024-06-05 15:00:00+00:00,269665 -2024-06-05 16:00:00+00:00,263060 -2024-06-05 17:00:00+00:00,259256 -2024-06-05 18:00:00+00:00,255590 -2024-06-05 19:00:00+00:00,252927 -2024-06-05 20:00:00+00:00,254897 -2024-06-05 21:00:00+00:00,254659 -2024-06-05 22:00:00+00:00,253008 -2024-06-05 23:00:00+00:00,256590 -2024-06-06 00:00:00+00:00,250284 -2024-06-06 01:00:00+00:00,243765 -2024-06-06 02:00:00+00:00,248935 -2024-06-06 03:00:00+00:00,244694 -2024-06-06 04:00:00+00:00,249861 -2024-06-06 05:00:00+00:00,255376 -2024-06-06 06:00:00+00:00,263396 -2024-06-06 07:00:00+00:00,269158 -2024-06-06 08:00:00+00:00,263833 -2024-06-06 09:00:00+00:00,259150 -2024-06-06 10:00:00+00:00,263143 -2024-06-06 11:00:00+00:00,266778 -2024-06-06 12:00:00+00:00,277734 -2024-06-06 13:00:00+00:00,265961 -2024-06-06 14:00:00+00:00,257974 -2024-06-06 15:00:00+00:00,251093 -2024-06-06 16:00:00+00:00,245845 -2024-06-06 17:00:00+00:00,241483 -2024-06-06 18:00:00+00:00,237760 -2024-06-06 19:00:00+00:00,232306 -2024-06-06 20:00:00+00:00,235447 -2024-06-06 21:00:00+00:00,233927 -2024-06-06 22:00:00+00:00,234846 -2024-06-06 23:00:00+00:00,237063 -2024-06-07 00:00:00+00:00,243144 -2024-06-07 01:00:00+00:00,236591 -2024-06-07 02:00:00+00:00,240839 -2024-06-07 03:00:00+00:00,236872 -2024-06-07 04:00:00+00:00,233467 -2024-06-07 05:00:00+00:00,229229 -2024-06-07 06:00:00+00:00,221405 -2024-06-07 07:00:00+00:00,229262 -2024-06-07 08:00:00+00:00,221535 -2024-06-07 09:00:00+00:00,226660 -2024-06-07 10:00:00+00:00,230254 -2024-06-07 11:00:00+00:00,235514 -2024-06-07 12:00:00+00:00,251443 -2024-06-07 13:00:00+00:00,264143 -2024-06-07 14:00:00+00:00,253355 -2024-06-07 15:00:00+00:00,244491 -2024-06-07 16:00:00+00:00,250591 -2024-06-07 17:00:00+00:00,245387 -2024-06-07 18:00:00+00:00,250505 -2024-06-07 19:00:00+00:00,254101 -2024-06-07 20:00:00+00:00,256671 -2024-06-09 21:00:00+00:00,256127 -2024-06-09 22:00:00+00:00,258466 -2024-06-09 23:00:00+00:00,255604 -2024-06-10 00:00:00+00:00,262082 -2024-06-10 01:00:00+00:00,267460 -2024-06-10 02:00:00+00:00,270233 -2024-06-10 03:00:00+00:00,274149 -2024-06-10 04:00:00+00:00,269485 -2024-06-10 05:00:00+00:00,265351 -2024-06-10 06:00:00+00:00,271916 -2024-06-10 07:00:00+00:00,263759 -2024-06-10 08:00:00+00:00,256121 -2024-06-10 09:00:00+00:00,249261 -2024-06-10 10:00:00+00:00,243459 -2024-06-10 11:00:00+00:00,247443 -2024-06-10 12:00:00+00:00,253340 -2024-06-10 13:00:00+00:00,247367 -2024-06-10 14:00:00+00:00,251172 -2024-06-10 15:00:00+00:00,255244 -2024-06-10 16:00:00+00:00,259542 -2024-06-10 17:00:00+00:00,264889 -2024-06-10 18:00:00+00:00,268977 -2024-06-10 19:00:00+00:00,265863 -2024-06-10 20:00:00+00:00,267339 -2024-06-10 21:00:00+00:00,266647 -2024-06-10 22:00:00+00:00,268804 -2024-06-10 23:00:00+00:00,270716 -2024-06-11 00:00:00+00:00,276368 -2024-06-11 01:00:00+00:00,280921 -2024-06-11 02:00:00+00:00,284098 -2024-06-11 03:00:00+00:00,281344 -2024-06-11 04:00:00+00:00,283967 -2024-06-11 05:00:00+00:00,287171 -2024-06-11 06:00:00+00:00,282774 -2024-06-11 07:00:00+00:00,287331 -2024-06-11 08:00:00+00:00,283117 -2024-06-11 09:00:00+00:00,290217 -2024-06-11 10:00:00+00:00,285185 -2024-06-11 11:00:00+00:00,290566 -2024-06-11 12:00:00+00:00,282595 -2024-06-11 13:00:00+00:00,290177 -2024-06-11 14:00:00+00:00,297666 -2024-06-11 15:00:00+00:00,303520 -2024-06-11 16:00:00+00:00,307599 -2024-06-11 17:00:00+00:00,301284 -2024-06-11 18:00:00+00:00,296202 -2024-06-11 19:00:00+00:00,300308 -2024-06-11 20:00:00+00:00,302456 -2024-06-11 21:00:00+00:00,301446 -2024-06-11 22:00:00+00:00,302261 -2024-06-11 23:00:00+00:00,300354 -2024-06-12 00:00:00+00:00,305676 -2024-06-12 01:00:00+00:00,300457 -2024-06-12 02:00:00+00:00,304106 -2024-06-12 03:00:00+00:00,300945 -2024-06-12 04:00:00+00:00,303273 -2024-06-12 05:00:00+00:00,306342 -2024-06-12 06:00:00+00:00,312103 -2024-06-12 07:00:00+00:00,307629 -2024-06-12 08:00:00+00:00,310736 -2024-06-12 09:00:00+00:00,314690 -2024-06-12 10:00:00+00:00,318923 -2024-06-12 11:00:00+00:00,323408 -2024-06-12 12:00:00+00:00,309731 -2024-06-12 13:00:00+00:00,295404 -2024-06-12 14:00:00+00:00,307560 -2024-06-12 15:00:00+00:00,315750 -2024-06-12 16:00:00+00:00,310581 -2024-06-12 17:00:00+00:00,315952 -2024-06-12 18:00:00+00:00,338187 -2024-06-12 19:00:00+00:00,349221 -2024-06-12 20:00:00+00:00,346035 -2024-06-12 21:00:00+00:00,345630 -2024-06-12 22:00:00+00:00,347260 -2024-06-12 23:00:00+00:00,344488 -2024-06-13 00:00:00+00:00,338375 -2024-06-13 01:00:00+00:00,343185 -2024-06-13 02:00:00+00:00,348135 -2024-06-13 03:00:00+00:00,351946 -2024-06-13 04:00:00+00:00,355394 -2024-06-13 05:00:00+00:00,359448 -2024-06-13 06:00:00+00:00,363964 -2024-06-13 07:00:00+00:00,369106 -2024-06-13 08:00:00+00:00,364851 -2024-06-13 09:00:00+00:00,361094 -2024-06-13 10:00:00+00:00,358868 -2024-06-13 11:00:00+00:00,362011 -2024-06-13 12:00:00+00:00,349025 -2024-06-13 13:00:00+00:00,361636 -2024-06-13 14:00:00+00:00,352712 -2024-06-13 15:00:00+00:00,344749 -2024-06-13 16:00:00+00:00,352911 -2024-06-13 17:00:00+00:00,360118 -2024-06-13 18:00:00+00:00,354157 -2024-06-13 19:00:00+00:00,358392 -2024-06-13 20:00:00+00:00,356120 -2024-06-13 21:00:00+00:00,356242 -2024-06-13 22:00:00+00:00,357562 -2024-06-13 23:00:00+00:00,360327 -2024-06-14 00:00:00+00:00,366736 -2024-06-14 01:00:00+00:00,371173 -2024-06-14 02:00:00+00:00,376072 -2024-06-14 03:00:00+00:00,389249 -2024-06-14 04:00:00+00:00,395571 -2024-06-14 05:00:00+00:00,400545 -2024-06-14 06:00:00+00:00,387927 -2024-06-14 07:00:00+00:00,372684 -2024-06-14 08:00:00+00:00,358450 -2024-06-14 09:00:00+00:00,345197 -2024-06-14 10:00:00+00:00,330551 -2024-06-14 11:00:00+00:00,341478 -2024-06-14 12:00:00+00:00,353106 -2024-06-14 13:00:00+00:00,362981 -2024-06-14 14:00:00+00:00,375565 -2024-06-14 15:00:00+00:00,368719 -2024-06-14 16:00:00+00:00,373581 -2024-06-14 17:00:00+00:00,377393 -2024-06-14 18:00:00+00:00,373818 -2024-06-14 19:00:00+00:00,376063 -2024-06-14 20:00:00+00:00,378239 -2024-06-16 21:00:00+00:00,377827 -2024-06-16 22:00:00+00:00,380215 -2024-06-16 23:00:00+00:00,382670 -2024-06-17 00:00:00+00:00,374626 -2024-06-17 01:00:00+00:00,379300 -2024-06-17 02:00:00+00:00,375202 -2024-06-17 03:00:00+00:00,371959 -2024-06-17 04:00:00+00:00,375433 -2024-06-17 05:00:00+00:00,379669 -2024-06-17 06:00:00+00:00,369858 -2024-06-17 07:00:00+00:00,376156 -2024-06-17 08:00:00+00:00,381151 -2024-06-17 09:00:00+00:00,385303 -2024-06-17 10:00:00+00:00,381549 -2024-06-17 11:00:00+00:00,385846 -2024-06-17 12:00:00+00:00,392906 -2024-06-17 13:00:00+00:00,386287 -2024-06-17 14:00:00+00:00,380033 -2024-06-17 15:00:00+00:00,375815 -2024-06-17 16:00:00+00:00,372302 -2024-06-17 17:00:00+00:00,368499 -2024-06-17 18:00:00+00:00,365394 -2024-06-17 19:00:00+00:00,368881 -2024-06-17 20:00:00+00:00,367754 -2024-06-17 21:00:00+00:00,368429 -2024-06-17 22:00:00+00:00,367744 -2024-06-17 23:00:00+00:00,365929 -2024-06-18 00:00:00+00:00,361039 -2024-06-18 01:00:00+00:00,355967 -2024-06-18 02:00:00+00:00,359511 -2024-06-18 03:00:00+00:00,357252 -2024-06-18 04:00:00+00:00,360730 -2024-06-18 05:00:00+00:00,364239 -2024-06-18 06:00:00+00:00,370158 -2024-06-18 07:00:00+00:00,376082 -2024-06-18 08:00:00+00:00,381327 -2024-06-18 09:00:00+00:00,376359 -2024-06-18 10:00:00+00:00,379924 -2024-06-18 11:00:00+00:00,376018 -2024-06-18 12:00:00+00:00,364882 -2024-06-18 13:00:00+00:00,356881 -2024-06-18 14:00:00+00:00,364181 -2024-06-18 15:00:00+00:00,358930 -2024-06-18 16:00:00+00:00,355093 -2024-06-18 17:00:00+00:00,360707 -2024-06-18 18:00:00+00:00,357167 -2024-06-18 19:00:00+00:00,359931 -2024-06-18 20:00:00+00:00,359033 -2024-06-18 21:00:00+00:00,357830 -2024-06-18 22:00:00+00:00,358633 -2024-06-18 23:00:00+00:00,360485 -2024-06-19 00:00:00+00:00,363220 -2024-06-19 01:00:00+00:00,359404 -2024-06-19 02:00:00+00:00,362123 -2024-06-19 03:00:00+00:00,364776 -2024-06-19 04:00:00+00:00,361823 -2024-06-19 05:00:00+00:00,359229 -2024-06-19 06:00:00+00:00,354828 -2024-06-19 07:00:00+00:00,360496 -2024-06-19 08:00:00+00:00,363786 -2024-06-19 09:00:00+00:00,366297 -2024-06-19 10:00:00+00:00,363408 -2024-06-19 11:00:00+00:00,365971 -2024-06-19 12:00:00+00:00,363614 -2024-06-19 13:00:00+00:00,365991 -2024-06-19 14:00:00+00:00,367064 -2024-06-19 15:00:00+00:00,369052 -2024-06-19 16:00:00+00:00,368058 -2024-06-19 17:00:00+00:00,369274 -2024-06-19 18:00:00+00:00,370012 -2024-06-19 19:00:00+00:00,368960 -2024-06-19 20:00:00+00:00,370444 -2024-06-19 21:00:00+00:00,369498 -2024-06-19 22:00:00+00:00,370641 -2024-06-19 23:00:00+00:00,369073 -2024-06-20 00:00:00+00:00,372358 -2024-06-20 01:00:00+00:00,375942 -2024-06-20 02:00:00+00:00,378235 -2024-06-20 03:00:00+00:00,380055 -2024-06-20 04:00:00+00:00,382510 -2024-06-20 05:00:00+00:00,380019 -2024-06-20 06:00:00+00:00,384407 -2024-06-20 07:00:00+00:00,390405 -2024-06-20 08:00:00+00:00,397248 -2024-06-20 09:00:00+00:00,400907 -2024-06-20 10:00:00+00:00,397628 -2024-06-20 11:00:00+00:00,401606 -2024-06-20 12:00:00+00:00,407774 -2024-06-20 13:00:00+00:00,412754 -2024-06-20 14:00:00+00:00,417995 -2024-06-20 15:00:00+00:00,422659 -2024-06-20 16:00:00+00:00,426159 -2024-06-20 17:00:00+00:00,430157 -2024-06-20 18:00:00+00:00,426185 -2024-06-20 19:00:00+00:00,429480 -2024-06-20 20:00:00+00:00,430968 -2024-06-20 21:00:00+00:00,430553 -2024-06-20 22:00:00+00:00,429174 -2024-06-20 23:00:00+00:00,431724 -2024-06-21 00:00:00+00:00,435448 -2024-06-21 01:00:00+00:00,429279 -2024-06-21 02:00:00+00:00,425547 -2024-06-21 03:00:00+00:00,422859 -2024-06-21 04:00:00+00:00,421044 -2024-06-21 05:00:00+00:00,423981 -2024-06-21 06:00:00+00:00,428192 -2024-06-21 07:00:00+00:00,419743 -2024-06-21 08:00:00+00:00,424597 -2024-06-21 09:00:00+00:00,428696 -2024-06-21 10:00:00+00:00,432518 -2024-06-21 11:00:00+00:00,428766 -2024-06-21 12:00:00+00:00,435237 -2024-06-21 13:00:00+00:00,442423 -2024-06-21 14:00:00+00:00,449360 -2024-06-21 15:00:00+00:00,443651 -2024-06-21 16:00:00+00:00,448730 -2024-06-21 17:00:00+00:00,453206 -2024-06-21 18:00:00+00:00,448886 -2024-06-21 19:00:00+00:00,451265 -2024-06-21 20:00:00+00:00,453403 -2024-06-23 21:00:00+00:00,452913 -2024-06-23 22:00:00+00:00,450884 -2024-06-23 23:00:00+00:00,453982 -2024-06-24 00:00:00+00:00,449199 -2024-06-24 01:00:00+00:00,443237 -2024-06-24 02:00:00+00:00,446350 -2024-06-24 03:00:00+00:00,443495 -2024-06-24 04:00:00+00:00,446533 -2024-06-24 05:00:00+00:00,443162 -2024-06-24 06:00:00+00:00,438125 -2024-06-24 07:00:00+00:00,443079 -2024-06-24 08:00:00+00:00,447031 -2024-06-24 09:00:00+00:00,441768 -2024-06-24 10:00:00+00:00,429666 -2024-06-24 11:00:00+00:00,422310 -2024-06-24 12:00:00+00:00,415005 -2024-06-24 13:00:00+00:00,422776 -2024-06-24 14:00:00+00:00,429528 -2024-06-24 15:00:00+00:00,424504 -2024-06-24 16:00:00+00:00,427575 -2024-06-24 17:00:00+00:00,424508 -2024-06-24 18:00:00+00:00,419793 -2024-06-24 19:00:00+00:00,425023 -2024-06-24 20:00:00+00:00,423052 -2024-06-24 21:00:00+00:00,422492 -2024-06-24 22:00:00+00:00,425129 -2024-06-24 23:00:00+00:00,428101 -2024-06-25 00:00:00+00:00,421923 -2024-06-25 01:00:00+00:00,430158 -2024-06-25 02:00:00+00:00,425814 -2024-06-25 03:00:00+00:00,429498 -2024-06-25 04:00:00+00:00,426380 -2024-06-25 05:00:00+00:00,430557 -2024-06-25 06:00:00+00:00,435320 -2024-06-25 07:00:00+00:00,442187 -2024-06-25 08:00:00+00:00,437061 -2024-06-25 09:00:00+00:00,433656 -2024-06-25 10:00:00+00:00,429803 -2024-06-25 11:00:00+00:00,433450 -2024-06-25 12:00:00+00:00,440673 -2024-06-25 13:00:00+00:00,434878 -2024-06-25 14:00:00+00:00,440643 -2024-06-25 15:00:00+00:00,434728 -2024-06-25 16:00:00+00:00,439687 -2024-06-25 17:00:00+00:00,436733 -2024-06-25 18:00:00+00:00,433608 -2024-06-25 19:00:00+00:00,429123 -2024-06-25 20:00:00+00:00,430539 -2024-06-25 21:00:00+00:00,429606 -2024-06-25 22:00:00+00:00,430653 -2024-06-25 23:00:00+00:00,432908 -2024-06-26 00:00:00+00:00,437708 -2024-06-26 01:00:00+00:00,442730 -2024-06-26 02:00:00+00:00,446869 -2024-06-26 03:00:00+00:00,449693 -2024-06-26 04:00:00+00:00,447312 -2024-06-26 05:00:00+00:00,450353 -2024-06-26 06:00:00+00:00,455046 -2024-06-26 07:00:00+00:00,458901 -2024-06-26 08:00:00+00:00,462272 -2024-06-26 09:00:00+00:00,469140 -2024-06-26 10:00:00+00:00,477804 -2024-06-26 11:00:00+00:00,487725 -2024-06-26 12:00:00+00:00,494461 -2024-06-26 13:00:00+00:00,507509 -2024-06-26 14:00:00+00:00,515869 -2024-06-26 15:00:00+00:00,522110 -2024-06-26 16:00:00+00:00,516253 -2024-06-26 17:00:00+00:00,521242 -2024-06-26 18:00:00+00:00,526020 -2024-06-26 19:00:00+00:00,529121 -2024-06-26 20:00:00+00:00,531006 -2024-06-26 21:00:00+00:00,530407 -2024-06-26 22:00:00+00:00,529112 -2024-06-26 23:00:00+00:00,526369 -2024-06-27 00:00:00+00:00,533425 -2024-06-27 01:00:00+00:00,527961 -2024-06-27 02:00:00+00:00,522948 -2024-06-27 03:00:00+00:00,520092 -2024-06-27 04:00:00+00:00,515898 -2024-06-27 05:00:00+00:00,519858 -2024-06-27 06:00:00+00:00,524962 -2024-06-27 07:00:00+00:00,531061 -2024-06-27 08:00:00+00:00,534878 -2024-06-27 09:00:00+00:00,531590 -2024-06-27 10:00:00+00:00,527932 -2024-06-27 11:00:00+00:00,532819 -2024-06-27 12:00:00+00:00,523909 -2024-06-27 13:00:00+00:00,533005 -2024-06-27 14:00:00+00:00,541243 -2024-06-27 15:00:00+00:00,546617 -2024-06-27 16:00:00+00:00,549828 -2024-06-27 17:00:00+00:00,554237 -2024-06-27 18:00:00+00:00,557485 -2024-06-27 19:00:00+00:00,561698 -2024-06-27 20:00:00+00:00,560191 -2024-06-27 21:00:00+00:00,559078 -2024-06-27 22:00:00+00:00,557688 -2024-06-27 23:00:00+00:00,555344 -2024-06-28 00:00:00+00:00,561145 -2024-06-28 01:00:00+00:00,550216 -2024-06-28 02:00:00+00:00,542168 -2024-06-28 03:00:00+00:00,546324 -2024-06-28 04:00:00+00:00,550010 -2024-06-28 05:00:00+00:00,545600 -2024-06-28 06:00:00+00:00,539406 -2024-06-28 07:00:00+00:00,531469 -2024-06-28 08:00:00+00:00,524859 -2024-06-28 09:00:00+00:00,518855 -2024-06-28 10:00:00+00:00,511702 -2024-06-28 11:00:00+00:00,518751 -2024-06-28 12:00:00+00:00,508756 -2024-06-28 13:00:00+00:00,499073 -2024-06-28 14:00:00+00:00,514694 -2024-06-28 15:00:00+00:00,524564 -2024-06-28 16:00:00+00:00,518630 -2024-06-28 17:00:00+00:00,513912 -2024-06-28 18:00:00+00:00,518291 -2024-06-28 19:00:00+00:00,521115 -2024-06-28 20:00:00+00:00,524115 -2024-06-30 21:00:00+00:00,523852 -2024-06-30 22:00:00+00:00,521353 -2024-06-30 23:00:00+00:00,523469 -2024-07-01 00:00:00+00:00,532713 -2024-07-01 01:00:00+00:00,522960 -2024-07-01 02:00:00+00:00,519020 -2024-07-01 03:00:00+00:00,523219 -2024-07-01 04:00:00+00:00,526186 -2024-07-01 05:00:00+00:00,521783 -2024-07-01 06:00:00+00:00,514928 -2024-07-01 07:00:00+00:00,522260 -2024-07-01 08:00:00+00:00,517063 -2024-07-01 09:00:00+00:00,520901 -2024-07-01 10:00:00+00:00,524929 -2024-07-01 11:00:00+00:00,521010 -2024-07-01 12:00:00+00:00,527870 -2024-07-01 13:00:00+00:00,536267 -2024-07-01 14:00:00+00:00,546850 -2024-07-01 15:00:00+00:00,539849 -2024-07-01 16:00:00+00:00,534771 -2024-07-01 17:00:00+00:00,528820 -2024-07-01 18:00:00+00:00,532684 -2024-07-01 19:00:00+00:00,528343 -2024-07-01 20:00:00+00:00,526299 -2024-07-01 21:00:00+00:00,525120 -2024-07-01 22:00:00+00:00,524058 -2024-07-01 23:00:00+00:00,525606 -2024-07-02 00:00:00+00:00,530583 -2024-07-02 01:00:00+00:00,534606 -2024-07-02 02:00:00+00:00,530079 -2024-07-02 03:00:00+00:00,532213 -2024-07-02 04:00:00+00:00,535466 -2024-07-02 05:00:00+00:00,539204 -2024-07-02 06:00:00+00:00,533783 -2024-07-02 07:00:00+00:00,527798 -2024-07-02 08:00:00+00:00,523432 -2024-07-02 09:00:00+00:00,527800 -2024-07-02 10:00:00+00:00,524944 -2024-07-02 11:00:00+00:00,527615 -2024-07-02 12:00:00+00:00,522221 -2024-07-02 13:00:00+00:00,513779 -2024-07-02 14:00:00+00:00,523045 -2024-07-02 15:00:00+00:00,528892 -2024-07-02 16:00:00+00:00,532550 -2024-07-02 17:00:00+00:00,529523 -2024-07-02 18:00:00+00:00,526342 -2024-07-02 19:00:00+00:00,523807 -2024-07-02 20:00:00+00:00,525072 -2024-07-02 21:00:00+00:00,523671 -2024-07-02 22:00:00+00:00,522207 -2024-07-02 23:00:00+00:00,524302 -2024-07-03 00:00:00+00:00,529011 -2024-07-03 01:00:00+00:00,532296 -2024-07-03 02:00:00+00:00,534988 -2024-07-03 03:00:00+00:00,532903 -2024-07-03 04:00:00+00:00,535304 -2024-07-03 05:00:00+00:00,539910 -2024-07-03 06:00:00+00:00,534266 -2024-07-03 07:00:00+00:00,528474 -2024-07-03 08:00:00+00:00,533469 -2024-07-03 09:00:00+00:00,537104 -2024-07-03 10:00:00+00:00,540007 -2024-07-03 11:00:00+00:00,536928 -2024-07-03 12:00:00+00:00,529825 -2024-07-03 13:00:00+00:00,522141 -2024-07-03 14:00:00+00:00,501882 -2024-07-03 15:00:00+00:00,512500 -2024-07-03 16:00:00+00:00,518601 -2024-07-03 17:00:00+00:00,514050 -2024-07-03 18:00:00+00:00,518622 -2024-07-03 19:00:00+00:00,521319 -2024-07-03 20:00:00+00:00,523674 -2024-07-03 21:00:00+00:00,521572 -2024-07-03 22:00:00+00:00,522226 -2024-07-03 23:00:00+00:00,520676 -2024-07-04 00:00:00+00:00,515031 -2024-07-04 01:00:00+00:00,507283 -2024-07-04 02:00:00+00:00,510823 -2024-07-04 03:00:00+00:00,513853 -2024-07-04 04:00:00+00:00,511501 -2024-07-04 05:00:00+00:00,508380 -2024-07-04 06:00:00+00:00,503597 -2024-07-04 07:00:00+00:00,498099 -2024-07-04 08:00:00+00:00,492587 -2024-07-04 09:00:00+00:00,496636 -2024-07-04 10:00:00+00:00,492461 -2024-07-04 11:00:00+00:00,486722 -2024-07-04 12:00:00+00:00,492176 -2024-07-04 13:00:00+00:00,495977 -2024-07-04 14:00:00+00:00,492092 -2024-07-04 15:00:00+00:00,495090 -2024-07-04 16:00:00+00:00,493840 -2024-07-04 17:00:00+00:00,495633 -2024-07-04 18:00:00+00:00,497235 -2024-07-04 19:00:00+00:00,494745 -2024-07-04 20:00:00+00:00,498281 -2024-07-04 21:00:00+00:00,495560 -2024-07-04 22:00:00+00:00,497144 -2024-07-04 23:00:00+00:00,499170 -2024-07-05 00:00:00+00:00,490475 -2024-07-05 01:00:00+00:00,481987 -2024-07-05 02:00:00+00:00,477283 -2024-07-05 03:00:00+00:00,469944 -2024-07-05 04:00:00+00:00,473888 -2024-07-05 05:00:00+00:00,477398 -2024-07-05 06:00:00+00:00,482681 -2024-07-05 07:00:00+00:00,475812 -2024-07-05 08:00:00+00:00,470691 -2024-07-05 09:00:00+00:00,465978 -2024-07-05 10:00:00+00:00,469869 -2024-07-05 11:00:00+00:00,474225 -2024-07-05 12:00:00+00:00,492115 -2024-07-05 13:00:00+00:00,510153 -2024-07-05 14:00:00+00:00,498134 -2024-07-05 15:00:00+00:00,487617 -2024-07-05 16:00:00+00:00,494772 -2024-07-05 17:00:00+00:00,488618 -2024-07-05 18:00:00+00:00,483233 -2024-07-05 19:00:00+00:00,485664 -2024-07-05 20:00:00+00:00,487432 -2024-07-07 21:00:00+00:00,486805 -2024-07-07 22:00:00+00:00,488465 -2024-07-07 23:00:00+00:00,484681 -2024-07-08 00:00:00+00:00,476959 -2024-07-08 01:00:00+00:00,468913 -2024-07-08 02:00:00+00:00,460451 -2024-07-08 03:00:00+00:00,465777 -2024-07-08 04:00:00+00:00,469414 -2024-07-08 05:00:00+00:00,473543 -2024-07-08 06:00:00+00:00,481742 -2024-07-08 07:00:00+00:00,490230 -2024-07-08 08:00:00+00:00,495669 -2024-07-08 09:00:00+00:00,490918 -2024-07-08 10:00:00+00:00,486074 -2024-07-08 11:00:00+00:00,491058 -2024-07-08 12:00:00+00:00,481959 -2024-07-08 13:00:00+00:00,472237 -2024-07-08 14:00:00+00:00,464157 -2024-07-08 15:00:00+00:00,471075 -2024-07-08 16:00:00+00:00,466145 -2024-07-08 17:00:00+00:00,461178 -2024-07-08 18:00:00+00:00,465553 -2024-07-08 19:00:00+00:00,469849 -2024-07-08 20:00:00+00:00,471183 -2024-07-08 21:00:00+00:00,470895 -2024-07-08 22:00:00+00:00,470005 -2024-07-08 23:00:00+00:00,472451 -2024-07-09 00:00:00+00:00,477926 -2024-07-09 01:00:00+00:00,482043 -2024-07-09 02:00:00+00:00,486714 -2024-07-09 03:00:00+00:00,490749 -2024-07-09 04:00:00+00:00,486838 -2024-07-09 05:00:00+00:00,483690 -2024-07-09 06:00:00+00:00,479061 -2024-07-09 07:00:00+00:00,484831 -2024-07-09 08:00:00+00:00,489627 -2024-07-09 09:00:00+00:00,485523 -2024-07-09 10:00:00+00:00,481192 -2024-07-09 11:00:00+00:00,486338 -2024-07-09 12:00:00+00:00,492712 -2024-07-09 13:00:00+00:00,485565 -2024-07-09 14:00:00+00:00,501006 -2024-07-09 15:00:00+00:00,510650 -2024-07-09 16:00:00+00:00,505060 -2024-07-09 17:00:00+00:00,499998 -2024-07-09 18:00:00+00:00,496131 -2024-07-09 19:00:00+00:00,492907 -2024-07-09 20:00:00+00:00,493957 -2024-07-09 21:00:00+00:00,493447 -2024-07-09 22:00:00+00:00,494487 -2024-07-09 23:00:00+00:00,492651 -2024-07-10 00:00:00+00:00,497156 -2024-07-10 01:00:00+00:00,501710 -2024-07-10 02:00:00+00:00,497236 -2024-07-10 03:00:00+00:00,494284 -2024-07-10 04:00:00+00:00,496816 -2024-07-10 05:00:00+00:00,499630 -2024-07-10 06:00:00+00:00,495255 -2024-07-10 07:00:00+00:00,500645 -2024-07-10 08:00:00+00:00,505242 -2024-07-10 09:00:00+00:00,510545 -2024-07-10 10:00:00+00:00,506309 -2024-07-10 11:00:00+00:00,501943 -2024-07-10 12:00:00+00:00,495861 -2024-07-10 13:00:00+00:00,501899 -2024-07-10 14:00:00+00:00,509326 -2024-07-10 15:00:00+00:00,515128 -2024-07-10 16:00:00+00:00,510136 -2024-07-10 17:00:00+00:00,515598 -2024-07-10 18:00:00+00:00,519654 -2024-07-10 19:00:00+00:00,516470 -2024-07-10 20:00:00+00:00,514658 -2024-07-10 21:00:00+00:00,514449 -2024-07-10 22:00:00+00:00,515543 -2024-07-10 23:00:00+00:00,517607 -2024-07-11 00:00:00+00:00,512235 -2024-07-11 01:00:00+00:00,516394 -2024-07-11 02:00:00+00:00,519650 -2024-07-11 03:00:00+00:00,515723 -2024-07-11 04:00:00+00:00,518549 -2024-07-11 05:00:00+00:00,521381 -2024-07-11 06:00:00+00:00,526177 -2024-07-11 07:00:00+00:00,520608 -2024-07-11 08:00:00+00:00,515162 -2024-07-11 09:00:00+00:00,520330 -2024-07-11 10:00:00+00:00,515891 -2024-07-11 11:00:00+00:00,511876 -2024-07-11 12:00:00+00:00,487420 -2024-07-11 13:00:00+00:00,457718 -2024-07-11 14:00:00+00:00,440977 -2024-07-11 15:00:00+00:00,453333 -2024-07-11 16:00:00+00:00,447545 -2024-07-11 17:00:00+00:00,455964 -2024-07-11 18:00:00+00:00,449428 -2024-07-11 19:00:00+00:00,455478 -2024-07-11 20:00:00+00:00,457601 -2024-07-11 21:00:00+00:00,457978 -2024-07-11 22:00:00+00:00,461833 -2024-07-11 23:00:00+00:00,442593 -2024-07-12 00:00:00+00:00,461886 -2024-07-12 01:00:00+00:00,473182 -2024-07-12 02:00:00+00:00,463557 -2024-07-12 03:00:00+00:00,456057 -2024-07-12 04:00:00+00:00,449004 -2024-07-12 05:00:00+00:00,440326 -2024-07-12 06:00:00+00:00,451226 -2024-07-12 07:00:00+00:00,459748 -2024-07-12 08:00:00+00:00,451402 -2024-07-12 09:00:00+00:00,458579 -2024-07-12 10:00:00+00:00,452282 -2024-07-12 11:00:00+00:00,445219 -2024-07-12 12:00:00+00:00,425751 -2024-07-12 13:00:00+00:00,404841 -2024-07-12 14:00:00+00:00,387447 -2024-07-12 15:00:00+00:00,396868 -2024-07-12 16:00:00+00:00,391203 -2024-07-12 17:00:00+00:00,395349 -2024-07-12 18:00:00+00:00,390536 -2024-07-12 19:00:00+00:00,387601 -2024-07-12 20:00:00+00:00,389595 -2024-07-14 21:00:00+00:00,389773 -2024-07-14 22:00:00+00:00,392595 -2024-07-14 23:00:00+00:00,387484 -2024-07-15 00:00:00+00:00,378037 -2024-07-15 01:00:00+00:00,369270 -2024-07-15 02:00:00+00:00,363090 -2024-07-15 03:00:00+00:00,357170 -2024-07-15 04:00:00+00:00,360343 -2024-07-15 05:00:00+00:00,355678 -2024-07-15 06:00:00+00:00,363423 -2024-07-15 07:00:00+00:00,353003 -2024-07-15 08:00:00+00:00,345452 -2024-07-15 09:00:00+00:00,352879 -2024-07-15 10:00:00+00:00,346905 -2024-07-15 11:00:00+00:00,352851 -2024-07-15 12:00:00+00:00,344760 -2024-07-15 13:00:00+00:00,334060 -2024-07-15 14:00:00+00:00,325138 -2024-07-15 15:00:00+00:00,333192 -2024-07-15 16:00:00+00:00,324365 -2024-07-15 17:00:00+00:00,331973 -2024-07-15 18:00:00+00:00,325624 -2024-07-15 19:00:00+00:00,329567 -2024-07-15 20:00:00+00:00,331237 -2024-07-15 21:00:00+00:00,331020 -2024-07-15 22:00:00+00:00,332292 -2024-07-15 23:00:00+00:00,335387 -2024-07-16 00:00:00+00:00,343210 -2024-07-16 01:00:00+00:00,351704 -2024-07-16 02:00:00+00:00,356878 -2024-07-16 03:00:00+00:00,352552 -2024-07-16 04:00:00+00:00,356995 -2024-07-16 05:00:00+00:00,361902 -2024-07-16 06:00:00+00:00,354786 -2024-07-16 07:00:00+00:00,345224 -2024-07-16 08:00:00+00:00,337551 -2024-07-16 09:00:00+00:00,331276 -2024-07-16 10:00:00+00:00,337090 -2024-07-16 11:00:00+00:00,332212 -2024-07-16 12:00:00+00:00,344899 -2024-07-16 13:00:00+00:00,334997 -2024-07-16 14:00:00+00:00,325491 -2024-07-16 15:00:00+00:00,317794 -2024-07-16 16:00:00+00:00,310422 -2024-07-16 17:00:00+00:00,303367 -2024-07-16 18:00:00+00:00,298400 -2024-07-16 19:00:00+00:00,303176 -2024-07-16 20:00:00+00:00,305459 -2024-07-16 21:00:00+00:00,303795 -2024-07-16 22:00:00+00:00,305759 -2024-07-16 23:00:00+00:00,308716 -2024-07-17 00:00:00+00:00,316284 -2024-07-17 01:00:00+00:00,309140 -2024-07-17 02:00:00+00:00,304450 -2024-07-17 03:00:00+00:00,300271 -2024-07-17 04:00:00+00:00,295328 -2024-07-17 05:00:00+00:00,288698 -2024-07-17 06:00:00+00:00,276476 -2024-07-17 07:00:00+00:00,259235 -2024-07-17 08:00:00+00:00,241918 -2024-07-17 09:00:00+00:00,259025 -2024-07-17 10:00:00+00:00,271666 -2024-07-17 11:00:00+00:00,259998 -2024-07-17 12:00:00+00:00,273821 -2024-07-17 13:00:00+00:00,256144 -2024-07-17 14:00:00+00:00,271020 -2024-07-17 15:00:00+00:00,283195 -2024-07-17 16:00:00+00:00,272532 -2024-07-17 17:00:00+00:00,282352 -2024-07-17 18:00:00+00:00,273893 -2024-07-17 19:00:00+00:00,280772 -2024-07-17 20:00:00+00:00,283158 -2024-07-17 21:00:00+00:00,282102 -2024-07-17 22:00:00+00:00,276914 -2024-07-17 23:00:00+00:00,263763 -2024-07-18 00:00:00+00:00,279851 -2024-07-18 01:00:00+00:00,290459 -2024-07-18 02:00:00+00:00,299584 -2024-07-18 03:00:00+00:00,305225 -2024-07-18 04:00:00+00:00,297651 -2024-07-18 05:00:00+00:00,288803 -2024-07-18 06:00:00+00:00,302066 -2024-07-18 07:00:00+00:00,316524 -2024-07-18 08:00:00+00:00,331055 -2024-07-18 09:00:00+00:00,341950 -2024-07-18 10:00:00+00:00,333597 -2024-07-18 11:00:00+00:00,341169 -2024-07-18 12:00:00+00:00,326679 -2024-07-18 13:00:00+00:00,343484 -2024-07-18 14:00:00+00:00,357147 -2024-07-18 15:00:00+00:00,370707 -2024-07-18 16:00:00+00:00,380773 -2024-07-18 17:00:00+00:00,389658 -2024-07-18 18:00:00+00:00,398052 -2024-07-18 19:00:00+00:00,404140 -2024-07-18 20:00:00+00:00,402272 -2024-07-18 21:00:00+00:00,402029 -2024-07-18 22:00:00+00:00,397792 -2024-07-18 23:00:00+00:00,392781 -2024-07-19 00:00:00+00:00,405174 -2024-07-19 01:00:00+00:00,415651 -2024-07-19 02:00:00+00:00,406627 -2024-07-19 03:00:00+00:00,400058 -2024-07-19 04:00:00+00:00,404663 -2024-07-19 05:00:00+00:00,413990 -2024-07-19 06:00:00+00:00,402280 -2024-07-19 07:00:00+00:00,419724 -2024-07-19 08:00:00+00:00,407849 -2024-07-19 09:00:00+00:00,416501 -2024-07-19 10:00:00+00:00,424074 -2024-07-19 11:00:00+00:00,431546 -2024-07-19 12:00:00+00:00,442462 -2024-07-19 13:00:00+00:00,428841 -2024-07-19 14:00:00+00:00,417192 -2024-07-19 15:00:00+00:00,427977 -2024-07-19 16:00:00+00:00,434765 -2024-07-19 17:00:00+00:00,428045 -2024-07-19 18:00:00+00:00,433220 -2024-07-19 19:00:00+00:00,435564 -2024-07-19 20:00:00+00:00,434376 -2024-07-21 21:00:00+00:00,434111 -2024-07-21 22:00:00+00:00,430536 -2024-07-21 23:00:00+00:00,436168 -2024-07-22 00:00:00+00:00,444544 -2024-07-22 01:00:00+00:00,453045 -2024-07-22 02:00:00+00:00,460045 -2024-07-22 03:00:00+00:00,455618 -2024-07-22 04:00:00+00:00,450071 -2024-07-22 05:00:00+00:00,441330 -2024-07-22 06:00:00+00:00,421425 -2024-07-22 07:00:00+00:00,436649 -2024-07-22 08:00:00+00:00,424729 -2024-07-22 09:00:00+00:00,413875 -2024-07-22 10:00:00+00:00,424170 -2024-07-22 11:00:00+00:00,434453 -2024-07-22 12:00:00+00:00,422298 -2024-07-22 13:00:00+00:00,434843 -2024-07-22 14:00:00+00:00,447795 -2024-07-22 15:00:00+00:00,458135 -2024-07-22 16:00:00+00:00,450349 -2024-07-22 17:00:00+00:00,457498 -2024-07-22 18:00:00+00:00,452159 -2024-07-22 19:00:00+00:00,456169 -2024-07-22 20:00:00+00:00,454727 -2024-07-22 21:00:00+00:00,454558 -2024-07-22 22:00:00+00:00,455844 -2024-07-22 23:00:00+00:00,451171 -2024-07-23 00:00:00+00:00,438426 -2024-07-23 01:00:00+00:00,449856 -2024-07-23 02:00:00+00:00,438922 -2024-07-23 03:00:00+00:00,428249 -2024-07-23 04:00:00+00:00,437944 -2024-07-23 05:00:00+00:00,445384 -2024-07-23 06:00:00+00:00,456782 -2024-07-23 07:00:00+00:00,440623 -2024-07-23 08:00:00+00:00,425570 -2024-07-23 09:00:00+00:00,414808 -2024-07-23 10:00:00+00:00,423488 -2024-07-23 11:00:00+00:00,432690 -2024-07-23 12:00:00+00:00,419167 -2024-07-23 13:00:00+00:00,431604 -2024-07-23 14:00:00+00:00,418263 -2024-07-23 15:00:00+00:00,427003 -2024-07-23 16:00:00+00:00,419709 -2024-07-23 17:00:00+00:00,409264 -2024-07-23 18:00:00+00:00,401086 -2024-07-23 19:00:00+00:00,406760 -2024-07-23 20:00:00+00:00,404417 -2024-07-23 21:00:00+00:00,404048 -2024-07-23 22:00:00+00:00,406018 -2024-07-23 23:00:00+00:00,410324 -2024-07-24 00:00:00+00:00,419225 -2024-07-24 01:00:00+00:00,402676 -2024-07-24 02:00:00+00:00,412136 -2024-07-24 03:00:00+00:00,399572 -2024-07-24 04:00:00+00:00,384956 -2024-07-24 05:00:00+00:00,395853 -2024-07-24 06:00:00+00:00,379994 -2024-07-24 07:00:00+00:00,394102 -2024-07-24 08:00:00+00:00,402488 -2024-07-24 09:00:00+00:00,392175 -2024-07-24 10:00:00+00:00,384938 -2024-07-24 11:00:00+00:00,376753 -2024-07-24 12:00:00+00:00,360780 -2024-07-24 13:00:00+00:00,343543 -2024-07-24 14:00:00+00:00,319925 -2024-07-24 15:00:00+00:00,334417 -2024-07-24 16:00:00+00:00,345010 -2024-07-24 17:00:00+00:00,354912 -2024-07-24 18:00:00+00:00,362500 -2024-07-24 19:00:00+00:00,368066 -2024-07-24 20:00:00+00:00,365779 -2024-07-24 21:00:00+00:00,364899 -2024-07-24 22:00:00+00:00,359916 -2024-07-24 23:00:00+00:00,368353 -2024-07-25 00:00:00+00:00,348120 -2024-07-25 01:00:00+00:00,333375 -2024-07-25 02:00:00+00:00,323086 -2024-07-25 03:00:00+00:00,311179 -2024-07-25 04:00:00+00:00,320297 -2024-07-25 05:00:00+00:00,330893 -2024-07-25 06:00:00+00:00,347494 -2024-07-25 07:00:00+00:00,330012 -2024-07-25 08:00:00+00:00,345307 -2024-07-25 09:00:00+00:00,333767 -2024-07-25 10:00:00+00:00,325004 -2024-07-25 11:00:00+00:00,334804 -2024-07-25 12:00:00+00:00,354997 -2024-07-25 13:00:00+00:00,376064 -2024-07-25 14:00:00+00:00,358711 -2024-07-25 15:00:00+00:00,373102 -2024-07-25 16:00:00+00:00,389141 -2024-07-25 17:00:00+00:00,405483 -2024-07-25 18:00:00+00:00,392784 -2024-07-25 19:00:00+00:00,402121 -2024-07-25 20:00:00+00:00,398692 -2024-07-25 21:00:00+00:00,399044 -2024-07-25 22:00:00+00:00,396306 -2024-07-25 23:00:00+00:00,383235 -2024-07-26 00:00:00+00:00,399025 -2024-07-26 01:00:00+00:00,383768 -2024-07-26 02:00:00+00:00,393199 -2024-07-26 03:00:00+00:00,387777 -2024-07-26 04:00:00+00:00,381873 -2024-07-26 05:00:00+00:00,374694 -2024-07-26 06:00:00+00:00,359771 -2024-07-26 07:00:00+00:00,373480 -2024-07-26 08:00:00+00:00,388256 -2024-07-26 09:00:00+00:00,377336 -2024-07-26 10:00:00+00:00,387727 -2024-07-26 11:00:00+00:00,399148 -2024-07-26 12:00:00+00:00,382020 -2024-07-26 13:00:00+00:00,363161 -2024-07-26 14:00:00+00:00,342667 -2024-07-26 15:00:00+00:00,357091 -2024-07-26 16:00:00+00:00,347073 -2024-07-26 17:00:00+00:00,338469 -2024-07-26 18:00:00+00:00,330169 -2024-07-26 19:00:00+00:00,334525 -2024-07-26 20:00:00+00:00,333256 -2024-07-28 21:00:00+00:00,332724 -2024-07-28 22:00:00+00:00,338779 -2024-07-28 23:00:00+00:00,347306 -2024-07-29 00:00:00+00:00,330785 -2024-07-29 01:00:00+00:00,312672 -2024-07-29 02:00:00+00:00,296582 -2024-07-29 03:00:00+00:00,307257 -2024-07-29 04:00:00+00:00,296022 -2024-07-29 05:00:00+00:00,286314 -2024-07-29 06:00:00+00:00,272065 -2024-07-29 07:00:00+00:00,288898 -2024-07-29 08:00:00+00:00,303042 -2024-07-29 09:00:00+00:00,315598 -2024-07-29 10:00:00+00:00,305023 -2024-07-29 11:00:00+00:00,315246 -2024-07-29 12:00:00+00:00,330579 -2024-07-29 13:00:00+00:00,346799 -2024-07-29 14:00:00+00:00,328626 -2024-07-29 15:00:00+00:00,315645 -2024-07-29 16:00:00+00:00,303970 -2024-07-29 17:00:00+00:00,311289 -2024-07-29 18:00:00+00:00,303807 -2024-07-29 19:00:00+00:00,310979 -2024-07-29 20:00:00+00:00,313252 -2024-07-29 21:00:00+00:00,311975 -2024-07-29 22:00:00+00:00,314394 -2024-07-29 23:00:00+00:00,308100 -2024-07-30 00:00:00+00:00,318789 -2024-07-30 01:00:00+00:00,331061 -2024-07-30 02:00:00+00:00,338945 -2024-07-30 03:00:00+00:00,347633 -2024-07-30 04:00:00+00:00,357087 -2024-07-30 05:00:00+00:00,368916 -2024-07-30 06:00:00+00:00,382884 -2024-07-30 07:00:00+00:00,370257 -2024-07-30 08:00:00+00:00,360793 -2024-07-30 09:00:00+00:00,368237 -2024-07-30 10:00:00+00:00,362816 -2024-07-30 11:00:00+00:00,368165 -2024-07-30 12:00:00+00:00,380260 -2024-07-30 13:00:00+00:00,361285 -2024-07-30 14:00:00+00:00,380353 -2024-07-30 15:00:00+00:00,358881 -2024-07-30 16:00:00+00:00,341607 -2024-07-30 17:00:00+00:00,325055 -2024-07-30 18:00:00+00:00,336367 -2024-07-30 19:00:00+00:00,344335 -2024-07-30 20:00:00+00:00,338458 -2024-07-30 21:00:00+00:00,337613 -2024-07-30 22:00:00+00:00,347532 -2024-07-30 23:00:00+00:00,334905 -2024-07-31 00:00:00+00:00,317859 -2024-07-31 01:00:00+00:00,330898 -2024-07-31 02:00:00+00:00,343797 -2024-07-31 03:00:00+00:00,358304 -2024-07-31 04:00:00+00:00,341347 -2024-07-31 05:00:00+00:00,355618 -2024-07-31 06:00:00+00:00,335292 -2024-07-31 07:00:00+00:00,310491 -2024-07-31 08:00:00+00:00,333632 -2024-07-31 09:00:00+00:00,317947 -2024-07-31 10:00:00+00:00,333568 -2024-07-31 11:00:00+00:00,317477 -2024-07-31 12:00:00+00:00,339772 -2024-07-31 13:00:00+00:00,319279 -2024-07-31 14:00:00+00:00,340132 -2024-07-31 15:00:00+00:00,322652 -2024-07-31 16:00:00+00:00,338718 -2024-07-31 17:00:00+00:00,351725 -2024-07-31 18:00:00+00:00,325217 -2024-07-31 19:00:00+00:00,300122 -2024-07-31 20:00:00+00:00,306721 -2024-07-31 21:00:00+00:00,306059 -2024-07-31 22:00:00+00:00,311235 -2024-07-31 23:00:00+00:00,300480 -2024-08-01 00:00:00+00:00,280455 -2024-08-01 01:00:00+00:00,259312 -2024-08-01 02:00:00+00:00,277631 -2024-08-01 03:00:00+00:00,262335 -2024-08-01 04:00:00+00:00,276600 -2024-08-01 05:00:00+00:00,292629 -2024-08-01 06:00:00+00:00,316352 -2024-08-01 07:00:00+00:00,294848 -2024-08-01 08:00:00+00:00,275286 -2024-08-01 09:00:00+00:00,291240 -2024-08-01 10:00:00+00:00,303468 -2024-08-01 11:00:00+00:00,315878 -2024-08-01 12:00:00+00:00,335483 -2024-08-01 13:00:00+00:00,316234 -2024-08-01 14:00:00+00:00,290974 -2024-08-01 15:00:00+00:00,309661 -2024-08-01 16:00:00+00:00,293311 -2024-08-01 17:00:00+00:00,277967 -2024-08-01 18:00:00+00:00,264154 -2024-08-01 19:00:00+00:00,276163 -2024-08-01 20:00:00+00:00,270391 -2024-08-01 21:00:00+00:00,268213 -2024-08-01 22:00:00+00:00,261194 -2024-08-01 23:00:00+00:00,249069 -2024-08-02 00:00:00+00:00,270716 -2024-08-02 01:00:00+00:00,289630 -2024-08-02 02:00:00+00:00,303103 -2024-08-02 03:00:00+00:00,292352 -2024-08-02 04:00:00+00:00,282246 -2024-08-02 05:00:00+00:00,269741 -2024-08-02 06:00:00+00:00,250876 -2024-08-02 07:00:00+00:00,270808 -2024-08-02 08:00:00+00:00,257819 -2024-08-02 09:00:00+00:00,248970 -2024-08-02 10:00:00+00:00,239669 -2024-08-02 11:00:00+00:00,250183 -2024-08-02 12:00:00+00:00,223543 -2024-08-02 13:00:00+00:00,193091 -2024-08-02 14:00:00+00:00,159888 -2024-08-02 15:00:00+00:00,186707 -2024-08-02 16:00:00+00:00,165512 -2024-08-02 17:00:00+00:00,148608 -2024-08-02 18:00:00+00:00,136619 -2024-08-02 19:00:00+00:00,146089 -2024-08-02 20:00:00+00:00,142399 -2024-08-04 21:00:00+00:00,142060 -2024-08-04 22:00:00+00:00,132705 -2024-08-04 23:00:00+00:00,114148 -2024-08-05 00:00:00+00:00,85977 -2024-08-05 01:00:00+00:00,60894 -2024-08-05 02:00:00+00:00,80339 -2024-08-05 03:00:00+00:00,60871 -2024-08-05 04:00:00+00:00,39487 -2024-08-05 05:00:00+00:00,13335 -2024-08-05 06:00:00+00:00,39112 -2024-08-05 07:00:00+00:00,62821 -2024-08-05 08:00:00+00:00,44498 -2024-08-05 09:00:00+00:00,24575 -2024-08-05 10:00:00+00:00,39874 -2024-08-05 11:00:00+00:00,23181 -2024-08-05 12:00:00+00:00,2838 -2024-08-05 13:00:00+00:00,24889 -2024-08-05 14:00:00+00:00,279 -2024-08-05 15:00:00+00:00,19436 -2024-08-05 16:00:00+00:00,38671 -2024-08-05 17:00:00+00:00,23991 -2024-08-05 18:00:00+00:00,10772 -2024-08-05 19:00:00+00:00,21575 -2024-08-05 20:00:00+00:00,30772 -2024-08-05 21:00:00+00:00,30298 -2024-08-05 22:00:00+00:00,37809 -2024-08-05 23:00:00+00:00,52661 -2024-08-06 00:00:00+00:00,31068 -2024-08-06 01:00:00+00:00,16952 -2024-08-06 02:00:00+00:00,28500 -2024-08-06 03:00:00+00:00,39204 -2024-08-06 04:00:00+00:00,49385 -2024-08-06 05:00:00+00:00,68786 -2024-08-06 06:00:00+00:00,49690 -2024-08-06 07:00:00+00:00,26307 -2024-08-06 08:00:00+00:00,3467 -2024-08-06 09:00:00+00:00,-16235 -2024-08-06 10:00:00+00:00,3606 -2024-08-06 11:00:00+00:00,23707 -2024-08-06 12:00:00+00:00,486 -2024-08-06 13:00:00+00:00,-25940 -2024-08-06 14:00:00+00:00,654 -2024-08-06 15:00:00+00:00,23732 -2024-08-06 16:00:00+00:00,41097 -2024-08-06 17:00:00+00:00,25672 -2024-08-06 18:00:00+00:00,12615 -2024-08-06 19:00:00+00:00,-3497 -2024-08-06 20:00:00+00:00,-13011 -2024-08-06 21:00:00+00:00,-11761 -2024-08-06 22:00:00+00:00,-5121 -2024-08-06 23:00:00+00:00,4976 -2024-08-07 00:00:00+00:00,-14950 -2024-08-07 01:00:00+00:00,7490 -2024-08-07 02:00:00+00:00,22492 -2024-08-07 03:00:00+00:00,34796 -2024-08-07 04:00:00+00:00,46882 -2024-08-07 05:00:00+00:00,27402 -2024-08-07 06:00:00+00:00,7865 -2024-08-07 07:00:00+00:00,29637 -2024-08-07 08:00:00+00:00,49980 -2024-08-07 09:00:00+00:00,69991 -2024-08-07 10:00:00+00:00,53321 -2024-08-07 11:00:00+00:00,67976 -2024-08-07 12:00:00+00:00,51316 -2024-08-07 13:00:00+00:00,69970 -2024-08-07 14:00:00+00:00,88294 -2024-08-07 15:00:00+00:00,104373 -2024-08-07 16:00:00+00:00,87348 -2024-08-07 17:00:00+00:00,70325 -2024-08-07 18:00:00+00:00,50371 -2024-08-07 19:00:00+00:00,66671 -2024-08-07 20:00:00+00:00,60938 -2024-08-07 21:00:00+00:00,62187 -2024-08-07 22:00:00+00:00,57183 -2024-08-07 23:00:00+00:00,43054 -2024-08-08 00:00:00+00:00,17267 -2024-08-08 01:00:00+00:00,40332 -2024-08-08 02:00:00+00:00,58054 -2024-08-08 03:00:00+00:00,42291 -2024-08-08 04:00:00+00:00,24140 -2024-08-08 05:00:00+00:00,3185 -2024-08-08 06:00:00+00:00,25994 -2024-08-08 07:00:00+00:00,3664 -2024-08-08 08:00:00+00:00,22723 -2024-08-08 09:00:00+00:00,5175 -2024-08-08 10:00:00+00:00,-11552 -2024-08-08 11:00:00+00:00,5735 -2024-08-08 12:00:00+00:00,30664 -2024-08-08 13:00:00+00:00,54138 -2024-08-08 14:00:00+00:00,73210 -2024-08-08 15:00:00+00:00,56296 -2024-08-08 16:00:00+00:00,68954 -2024-08-08 17:00:00+00:00,81965 -2024-08-08 18:00:00+00:00,71839 -2024-08-08 19:00:00+00:00,58917 -2024-08-08 20:00:00+00:00,63045 -2024-08-08 21:00:00+00:00,62475 -2024-08-08 22:00:00+00:00,68143 -2024-08-08 23:00:00+00:00,81562 -2024-08-09 00:00:00+00:00,59356 -2024-08-09 01:00:00+00:00,42522 -2024-08-09 02:00:00+00:00,56528 -2024-08-09 03:00:00+00:00,45145 -2024-08-09 04:00:00+00:00,31106 -2024-08-09 05:00:00+00:00,50383 -2024-08-09 06:00:00+00:00,65807 -2024-08-09 07:00:00+00:00,83808 -2024-08-09 08:00:00+00:00,102653 -2024-08-09 09:00:00+00:00,117949 -2024-08-09 10:00:00+00:00,104059 -2024-08-09 11:00:00+00:00,86325 -2024-08-09 12:00:00+00:00,66626 -2024-08-09 13:00:00+00:00,48279 -2024-08-09 14:00:00+00:00,29930 -2024-08-09 15:00:00+00:00,12110 -2024-08-09 16:00:00+00:00,25116 -2024-08-09 17:00:00+00:00,37908 -2024-08-09 18:00:00+00:00,27281 -2024-08-09 19:00:00+00:00,33082 -2024-08-09 20:00:00+00:00,29250 -2024-08-11 21:00:00+00:00,29371 -2024-08-11 22:00:00+00:00,37351 -2024-08-11 23:00:00+00:00,45918 -2024-08-12 00:00:00+00:00,35093 -2024-08-12 01:00:00+00:00,46350 -2024-08-12 02:00:00+00:00,36222 -2024-08-12 03:00:00+00:00,46742 -2024-08-12 04:00:00+00:00,37929 -2024-08-12 05:00:00+00:00,49905 -2024-08-12 06:00:00+00:00,63444 -2024-08-12 07:00:00+00:00,46316 -2024-08-12 08:00:00+00:00,59600 -2024-08-12 09:00:00+00:00,47984 -2024-08-12 10:00:00+00:00,57719 -2024-08-12 11:00:00+00:00,70327 -2024-08-12 12:00:00+00:00,81647 -2024-08-12 13:00:00+00:00,101608 -2024-08-12 14:00:00+00:00,122424 -2024-08-12 15:00:00+00:00,102867 -2024-08-12 16:00:00+00:00,87430 -2024-08-12 17:00:00+00:00,72570 -2024-08-12 18:00:00+00:00,85884 -2024-08-12 19:00:00+00:00,74564 -2024-08-12 20:00:00+00:00,80247 -2024-08-12 21:00:00+00:00,81328 -2024-08-12 22:00:00+00:00,75948 -2024-08-12 23:00:00+00:00,68598 -2024-08-13 00:00:00+00:00,85869 -2024-08-13 01:00:00+00:00,99916 -2024-08-13 02:00:00+00:00,111089 -2024-08-13 03:00:00+00:00,120598 -2024-08-13 04:00:00+00:00,132505 -2024-08-13 05:00:00+00:00,121821 -2024-08-13 06:00:00+00:00,134506 -2024-08-13 07:00:00+00:00,119193 -2024-08-13 08:00:00+00:00,105493 -2024-08-13 09:00:00+00:00,116466 -2024-08-13 10:00:00+00:00,102778 -2024-08-13 11:00:00+00:00,86542 -2024-08-13 12:00:00+00:00,106655 -2024-08-13 13:00:00+00:00,83180 -2024-08-13 14:00:00+00:00,63313 -2024-08-13 15:00:00+00:00,47980 -2024-08-13 16:00:00+00:00,34987 -2024-08-13 17:00:00+00:00,46689 -2024-08-13 18:00:00+00:00,33012 -2024-08-13 19:00:00+00:00,45246 -2024-08-13 20:00:00+00:00,54775 -2024-08-13 21:00:00+00:00,53801 -2024-08-13 22:00:00+00:00,49507 -2024-08-13 23:00:00+00:00,56619 -2024-08-14 00:00:00+00:00,71612 -2024-08-14 01:00:00+00:00,58193 -2024-08-14 02:00:00+00:00,39600 -2024-08-14 03:00:00+00:00,55463 -2024-08-14 04:00:00+00:00,65962 -2024-08-14 05:00:00+00:00,74473 -2024-08-14 06:00:00+00:00,90226 -2024-08-14 07:00:00+00:00,104327 -2024-08-14 08:00:00+00:00,89702 -2024-08-14 09:00:00+00:00,78253 -2024-08-14 10:00:00+00:00,67292 -2024-08-14 11:00:00+00:00,78104 -2024-08-14 12:00:00+00:00,98250 -2024-08-14 13:00:00+00:00,74825 -2024-08-14 14:00:00+00:00,52403 -2024-08-14 15:00:00+00:00,67566 -2024-08-14 16:00:00+00:00,79223 -2024-08-14 17:00:00+00:00,90107 -2024-08-14 18:00:00+00:00,100756 -2024-08-14 19:00:00+00:00,107867 -2024-08-14 20:00:00+00:00,103175 -2024-08-14 21:00:00+00:00,102893 -2024-08-14 22:00:00+00:00,105549 -2024-08-14 23:00:00+00:00,99656 -2024-08-15 00:00:00+00:00,86855 -2024-08-15 01:00:00+00:00,101117 -2024-08-15 02:00:00+00:00,89408 -2024-08-15 03:00:00+00:00,80947 -2024-08-15 04:00:00+00:00,72148 -2024-08-15 05:00:00+00:00,63760 -2024-08-15 06:00:00+00:00,74064 -2024-08-15 07:00:00+00:00,85941 -2024-08-15 08:00:00+00:00,96985 -2024-08-15 09:00:00+00:00,106397 -2024-08-15 10:00:00+00:00,97756 -2024-08-15 11:00:00+00:00,87211 -2024-08-15 12:00:00+00:00,107681 -2024-08-15 13:00:00+00:00,130742 -2024-08-15 14:00:00+00:00,110742 -2024-08-15 15:00:00+00:00,97802 -2024-08-15 16:00:00+00:00,106507 -2024-08-15 17:00:00+00:00,114527 -2024-08-15 18:00:00+00:00,106999 -2024-08-15 19:00:00+00:00,112752 -2024-08-15 20:00:00+00:00,116729 -2024-08-15 21:00:00+00:00,116952 -2024-08-15 22:00:00+00:00,112672 -2024-08-15 23:00:00+00:00,107378 -2024-08-16 00:00:00+00:00,93817 -2024-08-16 01:00:00+00:00,81480 -2024-08-16 02:00:00+00:00,69772 -2024-08-16 03:00:00+00:00,78801 -2024-08-16 04:00:00+00:00,71389 -2024-08-16 05:00:00+00:00,79407 -2024-08-16 06:00:00+00:00,89756 -2024-08-16 07:00:00+00:00,78881 -2024-08-16 08:00:00+00:00,66536 -2024-08-16 09:00:00+00:00,54337 -2024-08-16 10:00:00+00:00,41915 -2024-08-16 11:00:00+00:00,26412 -2024-08-16 12:00:00+00:00,10454 -2024-08-16 13:00:00+00:00,29258 -2024-08-16 14:00:00+00:00,49119 -2024-08-16 15:00:00+00:00,62291 -2024-08-16 16:00:00+00:00,52634 -2024-08-16 17:00:00+00:00,44879 -2024-08-16 18:00:00+00:00,35079 -2024-08-16 19:00:00+00:00,39111 -2024-08-16 20:00:00+00:00,36207 -2024-08-18 21:00:00+00:00,36311 -2024-08-18 22:00:00+00:00,41415 -2024-08-18 23:00:00+00:00,46832 -2024-08-19 00:00:00+00:00,32644 -2024-08-19 01:00:00+00:00,16510 -2024-08-19 02:00:00+00:00,6199 -2024-08-19 03:00:00+00:00,-9130 -2024-08-19 04:00:00+00:00,-21445 -2024-08-19 05:00:00+00:00,-35969 -2024-08-19 06:00:00+00:00,-15628 -2024-08-19 07:00:00+00:00,3884 -2024-08-19 08:00:00+00:00,-13305 -2024-08-19 09:00:00+00:00,1973 -2024-08-19 10:00:00+00:00,17008 -2024-08-19 11:00:00+00:00,2555 -2024-08-19 12:00:00+00:00,18354 -2024-08-19 13:00:00+00:00,36725 -2024-08-19 14:00:00+00:00,17575 -2024-08-19 15:00:00+00:00,29762 -2024-08-19 16:00:00+00:00,38535 -2024-08-19 17:00:00+00:00,45855 -2024-08-19 18:00:00+00:00,54376 -2024-08-19 19:00:00+00:00,46395 -2024-08-19 20:00:00+00:00,42031 -2024-08-19 21:00:00+00:00,41760 -2024-08-19 22:00:00+00:00,43464 -2024-08-19 23:00:00+00:00,50594 -2024-08-20 00:00:00+00:00,33325 -2024-08-20 01:00:00+00:00,16359 -2024-08-20 02:00:00+00:00,30059 -2024-08-20 03:00:00+00:00,42320 -2024-08-20 04:00:00+00:00,31831 -2024-08-20 05:00:00+00:00,43182 -2024-08-20 06:00:00+00:00,28762 -2024-08-20 07:00:00+00:00,9896 -2024-08-20 08:00:00+00:00,-7841 -2024-08-20 09:00:00+00:00,-20458 -2024-08-20 10:00:00+00:00,-32089 -2024-08-20 11:00:00+00:00,-43091 -2024-08-20 12:00:00+00:00,-60903 -2024-08-20 13:00:00+00:00,-80076 -2024-08-20 14:00:00+00:00,-101861 -2024-08-20 15:00:00+00:00,-85303 -2024-08-20 16:00:00+00:00,-97484 -2024-08-20 17:00:00+00:00,-88591 -2024-08-20 18:00:00+00:00,-95909 -2024-08-20 19:00:00+00:00,-101052 -2024-08-20 20:00:00+00:00,-104060 -2024-08-20 21:00:00+00:00,-105980 -2024-08-20 22:00:00+00:00,-111962 -2024-08-20 23:00:00+00:00,-100368 -2024-08-21 00:00:00+00:00,-83412 -2024-08-21 01:00:00+00:00,-101702 -2024-08-21 02:00:00+00:00,-112916 -2024-08-21 03:00:00+00:00,-101927 -2024-08-21 04:00:00+00:00,-91042 -2024-08-21 05:00:00+00:00,-101002 -2024-08-21 06:00:00+00:00,-87463 -2024-08-21 07:00:00+00:00,-69950 -2024-08-21 08:00:00+00:00,-85248 -2024-08-21 09:00:00+00:00,-71433 -2024-08-21 10:00:00+00:00,-60278 -2024-08-21 11:00:00+00:00,-72797 -2024-08-21 12:00:00+00:00,-89283 -2024-08-21 13:00:00+00:00,-108274 -2024-08-21 14:00:00+00:00,-140448 -2024-08-21 15:00:00+00:00,-162012 -2024-08-21 16:00:00+00:00,-176147 -2024-08-21 17:00:00+00:00,-187158 -2024-08-21 18:00:00+00:00,-201563 -2024-08-21 19:00:00+00:00,-189787 -2024-08-21 20:00:00+00:00,-184266 -2024-08-21 21:00:00+00:00,-185302 -2024-08-21 22:00:00+00:00,-189039 -2024-08-21 23:00:00+00:00,-180742 -2024-08-22 00:00:00+00:00,-166722 -2024-08-22 01:00:00+00:00,-154522 -2024-08-22 02:00:00+00:00,-164651 -2024-08-22 03:00:00+00:00,-172999 -2024-08-22 04:00:00+00:00,-184948 -2024-08-22 05:00:00+00:00,-175526 -2024-08-22 06:00:00+00:00,-162939 -2024-08-22 07:00:00+00:00,-177694 -2024-08-22 08:00:00+00:00,-164311 -2024-08-22 09:00:00+00:00,-175175 -2024-08-22 10:00:00+00:00,-164409 -2024-08-22 11:00:00+00:00,-153087 -2024-08-22 12:00:00+00:00,-135418 -2024-08-22 13:00:00+00:00,-115390 -2024-08-22 14:00:00+00:00,-134695 -2024-08-22 15:00:00+00:00,-149543 -2024-08-22 16:00:00+00:00,-138064 -2024-08-22 17:00:00+00:00,-150159 -2024-08-22 18:00:00+00:00,-160291 -2024-08-22 19:00:00+00:00,-154104 -2024-08-22 20:00:00+00:00,-151629 -2024-08-22 21:00:00+00:00,-152741 -2024-08-22 22:00:00+00:00,-155508 -2024-08-22 23:00:00+00:00,-149178 -2024-08-23 00:00:00+00:00,-166395 -2024-08-23 01:00:00+00:00,-183263 -2024-08-23 02:00:00+00:00,-168748 -2024-08-23 03:00:00+00:00,-159313 -2024-08-23 04:00:00+00:00,-149509 -2024-08-23 05:00:00+00:00,-158128 -2024-08-23 06:00:00+00:00,-171111 -2024-08-23 07:00:00+00:00,-155867 -2024-08-23 08:00:00+00:00,-143550 -2024-08-23 09:00:00+00:00,-134078 -2024-08-23 10:00:00+00:00,-141307 -2024-08-23 11:00:00+00:00,-133667 -2024-08-23 12:00:00+00:00,-147732 -2024-08-23 13:00:00+00:00,-131026 -2024-08-23 14:00:00+00:00,-161943 -2024-08-23 15:00:00+00:00,-182847 -2024-08-23 16:00:00+00:00,-198124 -2024-08-23 17:00:00+00:00,-209629 -2024-08-23 18:00:00+00:00,-221549 -2024-08-23 19:00:00+00:00,-227521 -2024-08-23 20:00:00+00:00,-222526 -2024-08-25 21:00:00+00:00,-222976 -2024-08-25 22:00:00+00:00,-230363 -2024-08-25 23:00:00+00:00,-216537 -2024-08-26 00:00:00+00:00,-236825 -2024-08-26 01:00:00+00:00,-219123 -2024-08-26 02:00:00+00:00,-206146 -2024-08-26 03:00:00+00:00,-194049 -2024-08-26 04:00:00+00:00,-184187 -2024-08-26 05:00:00+00:00,-174002 -2024-08-26 06:00:00+00:00,-188372 -2024-08-26 07:00:00+00:00,-174116 -2024-08-26 08:00:00+00:00,-185903 -2024-08-26 09:00:00+00:00,-177153 -2024-08-26 10:00:00+00:00,-168502 -2024-08-26 11:00:00+00:00,-156577 -2024-08-26 12:00:00+00:00,-171588 -2024-08-26 13:00:00+00:00,-153584 -2024-08-26 14:00:00+00:00,-171821 -2024-08-26 15:00:00+00:00,-158349 -2024-08-26 16:00:00+00:00,-168043 -2024-08-26 17:00:00+00:00,-159198 -2024-08-26 18:00:00+00:00,-166253 -2024-08-26 19:00:00+00:00,-162282 -2024-08-26 20:00:00+00:00,-165027 -2024-08-26 21:00:00+00:00,-165390 -2024-08-26 22:00:00+00:00,-168249 -2024-08-26 23:00:00+00:00,-161000 -2024-08-27 00:00:00+00:00,-149236 -2024-08-27 01:00:00+00:00,-159758 -2024-08-27 02:00:00+00:00,-151168 -2024-08-27 03:00:00+00:00,-158899 -2024-08-27 04:00:00+00:00,-167935 -2024-08-27 05:00:00+00:00,-158901 -2024-08-27 06:00:00+00:00,-146419 -2024-08-27 07:00:00+00:00,-129654 -2024-08-27 08:00:00+00:00,-117190 -2024-08-27 09:00:00+00:00,-129452 -2024-08-27 10:00:00+00:00,-141257 -2024-08-27 11:00:00+00:00,-154318 -2024-08-27 12:00:00+00:00,-168393 -2024-08-27 13:00:00+00:00,-185585 -2024-08-27 14:00:00+00:00,-205466 -2024-08-27 15:00:00+00:00,-191764 -2024-08-27 16:00:00+00:00,-200473 -2024-08-27 17:00:00+00:00,-191268 -2024-08-27 18:00:00+00:00,-199516 -2024-08-27 19:00:00+00:00,-206132 -2024-08-27 20:00:00+00:00,-210137 -2024-08-27 21:00:00+00:00,-210993 -2024-08-27 22:00:00+00:00,-215580 -2024-08-27 23:00:00+00:00,-208148 -2024-08-28 00:00:00+00:00,-195298 -2024-08-28 01:00:00+00:00,-182313 -2024-08-28 02:00:00+00:00,-171707 -2024-08-28 03:00:00+00:00,-180184 -2024-08-28 04:00:00+00:00,-188210 -2024-08-28 05:00:00+00:00,-176951 -2024-08-28 06:00:00+00:00,-164594 -2024-08-28 07:00:00+00:00,-151580 -2024-08-28 08:00:00+00:00,-162700 -2024-08-28 09:00:00+00:00,-173118 -2024-08-28 10:00:00+00:00,-162804 -2024-08-28 11:00:00+00:00,-172800 -2024-08-28 12:00:00+00:00,-159825 -2024-08-28 13:00:00+00:00,-142445 -2024-08-28 14:00:00+00:00,-159297 -2024-08-28 15:00:00+00:00,-175691 -2024-08-28 16:00:00+00:00,-164251 -2024-08-28 17:00:00+00:00,-174998 -2024-08-28 18:00:00+00:00,-163621 -2024-08-28 19:00:00+00:00,-155517 -2024-08-28 20:00:00+00:00,-165465 -2024-08-28 21:00:00+00:00,-165853 -2024-08-28 22:00:00+00:00,-171692 -2024-08-28 23:00:00+00:00,-164408 -2024-08-29 00:00:00+00:00,-176995 -2024-08-29 01:00:00+00:00,-165318 -2024-08-29 02:00:00+00:00,-173980 -2024-08-29 03:00:00+00:00,-181700 -2024-08-29 04:00:00+00:00,-172310 -2024-08-29 05:00:00+00:00,-182922 -2024-08-29 06:00:00+00:00,-194116 -2024-08-29 07:00:00+00:00,-181375 -2024-08-29 08:00:00+00:00,-199543 -2024-08-29 09:00:00+00:00,-212749 -2024-08-29 10:00:00+00:00,-224138 -2024-08-29 11:00:00+00:00,-211157 -2024-08-29 12:00:00+00:00,-191573 -2024-08-29 13:00:00+00:00,-212340 -2024-08-29 14:00:00+00:00,-232024 -2024-08-29 15:00:00+00:00,-247271 -2024-08-29 16:00:00+00:00,-235683 -2024-08-29 17:00:00+00:00,-245209 -2024-08-29 18:00:00+00:00,-259131 -2024-08-29 19:00:00+00:00,-245260 -2024-08-29 20:00:00+00:00,-234337 -2024-08-29 21:00:00+00:00,-233877 -2024-08-29 22:00:00+00:00,-236662 -2024-08-29 23:00:00+00:00,-241710 -2024-08-30 00:00:00+00:00,-252849 -2024-08-30 01:00:00+00:00,-242268 -2024-08-30 02:00:00+00:00,-234470 -2024-08-30 03:00:00+00:00,-229014 -2024-08-30 04:00:00+00:00,-221851 -2024-08-30 05:00:00+00:00,-215254 -2024-08-30 06:00:00+00:00,-206071 -2024-08-30 07:00:00+00:00,-215535 -2024-08-30 08:00:00+00:00,-206600 -2024-08-30 09:00:00+00:00,-198864 -2024-08-30 10:00:00+00:00,-190469 -2024-08-30 11:00:00+00:00,-180531 -2024-08-30 12:00:00+00:00,-164625 -2024-08-30 13:00:00+00:00,-181890 -2024-08-30 14:00:00+00:00,-202042 -2024-08-30 15:00:00+00:00,-184982 -2024-08-30 16:00:00+00:00,-172241 -2024-08-30 17:00:00+00:00,-181773 -2024-08-30 18:00:00+00:00,-188854 -2024-08-30 19:00:00+00:00,-183939 -2024-08-30 20:00:00+00:00,-178775 -2024-09-01 21:00:00+00:00,-179360 -2024-09-01 22:00:00+00:00,-177081 -2024-09-01 23:00:00+00:00,-184768 -2024-09-02 00:00:00+00:00,-196436 -2024-09-02 01:00:00+00:00,-187380 -2024-09-02 02:00:00+00:00,-196322 -2024-09-02 03:00:00+00:00,-205442 -2024-09-02 04:00:00+00:00,-212463 -2024-09-02 05:00:00+00:00,-205619 -2024-09-02 06:00:00+00:00,-196377 -2024-09-02 07:00:00+00:00,-182826 -2024-09-02 08:00:00+00:00,-168641 -2024-09-02 09:00:00+00:00,-180457 -2024-09-02 10:00:00+00:00,-173536 -2024-09-02 11:00:00+00:00,-166574 -2024-09-02 12:00:00+00:00,-174711 -2024-09-02 13:00:00+00:00,-183269 -2024-09-02 14:00:00+00:00,-192166 -2024-09-02 15:00:00+00:00,-197074 -2024-09-02 16:00:00+00:00,-201214 -2024-09-02 17:00:00+00:00,-200331 -2024-09-02 18:00:00+00:00,-199558 -2024-09-02 19:00:00+00:00,-200217 -2024-09-02 20:00:00+00:00,-198937 -2024-09-02 21:00:00+00:00,-199337 -2024-09-02 22:00:00+00:00,-198282 -2024-09-02 23:00:00+00:00,-201532 -2024-09-03 00:00:00+00:00,-186636 -2024-09-03 01:00:00+00:00,-199312 -2024-09-03 02:00:00+00:00,-185987 -2024-09-03 03:00:00+00:00,-199035 -2024-09-03 04:00:00+00:00,-211024 -2024-09-03 05:00:00+00:00,-221066 -2024-09-03 06:00:00+00:00,-234736 -2024-09-03 07:00:00+00:00,-253667 -2024-09-03 08:00:00+00:00,-271299 -2024-09-03 09:00:00+00:00,-258619 -2024-09-03 10:00:00+00:00,-248302 -2024-09-03 11:00:00+00:00,-236828 -2024-09-03 12:00:00+00:00,-251375 -2024-09-03 13:00:00+00:00,-271943 -2024-09-03 14:00:00+00:00,-246265 -2024-09-03 15:00:00+00:00,-230051 -2024-09-03 16:00:00+00:00,-241355 -2024-09-03 17:00:00+00:00,-230764 -2024-09-03 18:00:00+00:00,-240332 -2024-09-03 19:00:00+00:00,-249518 -2024-09-03 20:00:00+00:00,-257441 -2024-09-03 21:00:00+00:00,-257827 -2024-09-03 22:00:00+00:00,-261856 -2024-09-03 23:00:00+00:00,-251755 -2024-09-04 00:00:00+00:00,-270583 -2024-09-04 01:00:00+00:00,-258040 -2024-09-04 02:00:00+00:00,-246805 -2024-09-04 03:00:00+00:00,-255358 -2024-09-04 04:00:00+00:00,-263444 -2024-09-04 05:00:00+00:00,-274048 -2024-09-04 06:00:00+00:00,-290614 -2024-09-04 07:00:00+00:00,-274113 -2024-09-04 08:00:00+00:00,-261923 -2024-09-04 09:00:00+00:00,-270830 -2024-09-04 10:00:00+00:00,-280267 -2024-09-04 11:00:00+00:00,-290512 -2024-09-04 12:00:00+00:00,-274791 -2024-09-04 13:00:00+00:00,-293296 -2024-09-04 14:00:00+00:00,-323651 -2024-09-04 15:00:00+00:00,-303335 -2024-09-04 16:00:00+00:00,-316926 -2024-09-04 17:00:00+00:00,-305041 -2024-09-04 18:00:00+00:00,-316573 -2024-09-04 19:00:00+00:00,-328639 -2024-09-04 20:00:00+00:00,-337144 -2024-09-04 21:00:00+00:00,-337620 -2024-09-04 22:00:00+00:00,-340770 -2024-09-04 23:00:00+00:00,-351201 -2024-09-05 00:00:00+00:00,-334513 -2024-09-05 01:00:00+00:00,-349763 -2024-09-05 02:00:00+00:00,-338169 -2024-09-05 03:00:00+00:00,-347199 -2024-09-05 04:00:00+00:00,-355389 -2024-09-05 05:00:00+00:00,-364909 -2024-09-05 06:00:00+00:00,-380804 -2024-09-05 07:00:00+00:00,-363904 -2024-09-05 08:00:00+00:00,-378440 -2024-09-05 09:00:00+00:00,-366383 -2024-09-05 10:00:00+00:00,-374889 -2024-09-05 11:00:00+00:00,-384683 -2024-09-05 12:00:00+00:00,-406057 -2024-09-05 13:00:00+00:00,-386005 -2024-09-05 14:00:00+00:00,-361897 -2024-09-05 15:00:00+00:00,-379618 -2024-09-05 16:00:00+00:00,-391100 -2024-09-05 17:00:00+00:00,-403092 -2024-09-05 18:00:00+00:00,-393355 -2024-09-05 19:00:00+00:00,-383242 -2024-09-05 20:00:00+00:00,-392101 -2024-09-05 21:00:00+00:00,-392418 -2024-09-05 22:00:00+00:00,-394881 -2024-09-05 23:00:00+00:00,-399963 -2024-09-06 00:00:00+00:00,-413081 -2024-09-06 01:00:00+00:00,-404177 -2024-09-06 02:00:00+00:00,-410041 -2024-09-06 03:00:00+00:00,-415680 -2024-09-06 04:00:00+00:00,-423017 -2024-09-06 05:00:00+00:00,-434752 -2024-09-06 06:00:00+00:00,-450605 -2024-09-06 07:00:00+00:00,-431411 -2024-09-06 08:00:00+00:00,-416821 -2024-09-06 09:00:00+00:00,-407396 -2024-09-06 10:00:00+00:00,-398086 -2024-09-06 11:00:00+00:00,-388034 -2024-09-06 12:00:00+00:00,-415759 -2024-09-06 13:00:00+00:00,-385686 -2024-09-06 14:00:00+00:00,-415090 -2024-09-06 15:00:00+00:00,-449923 -2024-09-06 16:00:00+00:00,-427620 -2024-09-06 17:00:00+00:00,-444675 -2024-09-06 18:00:00+00:00,-460511 -2024-09-06 19:00:00+00:00,-453723 -2024-09-06 20:00:00+00:00,-461198 -2024-09-08 21:00:00+00:00,-461995 -2024-09-08 22:00:00+00:00,-467181 -2024-09-08 23:00:00+00:00,-454736 -2024-09-09 00:00:00+00:00,-438118 -2024-09-09 01:00:00+00:00,-422632 -2024-09-09 02:00:00+00:00,-433825 -2024-09-09 03:00:00+00:00,-444903 -2024-09-09 04:00:00+00:00,-431948 -2024-09-09 05:00:00+00:00,-446113 -2024-09-09 06:00:00+00:00,-431198 -2024-09-09 07:00:00+00:00,-414895 -2024-09-09 08:00:00+00:00,-400854 -2024-09-09 09:00:00+00:00,-389059 -2024-09-09 10:00:00+00:00,-377587 -2024-09-09 11:00:00+00:00,-388021 -2024-09-09 12:00:00+00:00,-400849 -2024-09-09 13:00:00+00:00,-418120 -2024-09-09 14:00:00+00:00,-435455 -2024-09-09 15:00:00+00:00,-422390 -2024-09-09 16:00:00+00:00,-431136 -2024-09-09 17:00:00+00:00,-440771 -2024-09-09 18:00:00+00:00,-448571 -2024-09-09 19:00:00+00:00,-440594 -2024-09-09 20:00:00+00:00,-434722 -2024-09-09 21:00:00+00:00,-435029 -2024-09-09 22:00:00+00:00,-437813 -2024-09-09 23:00:00+00:00,-431259 -2024-09-10 00:00:00+00:00,-415398 -2024-09-10 01:00:00+00:00,-427537 -2024-09-10 02:00:00+00:00,-438100 -2024-09-10 03:00:00+00:00,-446718 -2024-09-10 04:00:00+00:00,-453221 -2024-09-10 05:00:00+00:00,-445721 -2024-09-10 06:00:00+00:00,-436412 -2024-09-10 07:00:00+00:00,-424013 -2024-09-10 08:00:00+00:00,-435232 -2024-09-10 09:00:00+00:00,-445460 -2024-09-10 10:00:00+00:00,-454405 -2024-09-10 11:00:00+00:00,-443577 -2024-09-10 12:00:00+00:00,-456822 -2024-09-10 13:00:00+00:00,-441929 -2024-09-10 14:00:00+00:00,-461558 -2024-09-10 15:00:00+00:00,-477593 -2024-09-10 16:00:00+00:00,-466482 -2024-09-10 17:00:00+00:00,-476714 -2024-09-10 18:00:00+00:00,-486523 -2024-09-10 19:00:00+00:00,-494670 -2024-09-10 20:00:00+00:00,-486168 -2024-09-10 21:00:00+00:00,-486390 -2024-09-10 22:00:00+00:00,-484412 -2024-09-10 23:00:00+00:00,-490412 -2024-09-11 00:00:00+00:00,-474707 -2024-09-11 01:00:00+00:00,-492727 -2024-09-11 02:00:00+00:00,-479966 -2024-09-11 03:00:00+00:00,-492005 -2024-09-11 04:00:00+00:00,-505811 -2024-09-11 05:00:00+00:00,-490956 -2024-09-11 06:00:00+00:00,-476646 -2024-09-11 07:00:00+00:00,-458103 -2024-09-11 08:00:00+00:00,-443859 -2024-09-11 09:00:00+00:00,-431477 -2024-09-11 10:00:00+00:00,-419799 -2024-09-11 11:00:00+00:00,-407880 -2024-09-11 12:00:00+00:00,-384382 -2024-09-11 13:00:00+00:00,-405476 -2024-09-11 14:00:00+00:00,-430900 -2024-09-11 15:00:00+00:00,-413211 -2024-09-11 16:00:00+00:00,-396191 -2024-09-11 17:00:00+00:00,-380804 -2024-09-11 18:00:00+00:00,-391233 -2024-09-11 19:00:00+00:00,-381019 -2024-09-11 20:00:00+00:00,-391779 -2024-09-11 21:00:00+00:00,-392294 -2024-09-11 22:00:00+00:00,-389831 -2024-09-11 23:00:00+00:00,-382928 -2024-09-12 00:00:00+00:00,-367164 -2024-09-12 01:00:00+00:00,-385948 -2024-09-12 02:00:00+00:00,-399328 -2024-09-12 03:00:00+00:00,-390576 -2024-09-12 04:00:00+00:00,-382058 -2024-09-12 05:00:00+00:00,-369941 -2024-09-12 06:00:00+00:00,-383393 -2024-09-12 07:00:00+00:00,-366740 -2024-09-12 08:00:00+00:00,-383514 -2024-09-12 09:00:00+00:00,-370878 -2024-09-12 10:00:00+00:00,-381710 -2024-09-12 11:00:00+00:00,-393733 -2024-09-12 12:00:00+00:00,-416762 -2024-09-12 13:00:00+00:00,-439524 -2024-09-12 14:00:00+00:00,-420436 -2024-09-12 15:00:00+00:00,-437378 -2024-09-12 16:00:00+00:00,-422727 -2024-09-12 17:00:00+00:00,-438027 -2024-09-12 18:00:00+00:00,-453408 -2024-09-12 19:00:00+00:00,-468992 -2024-09-12 20:00:00+00:00,-485794 -2024-09-12 21:00:00+00:00,-485604 -2024-09-12 22:00:00+00:00,-483128 -2024-09-12 23:00:00+00:00,-491569 -2024-09-13 00:00:00+00:00,-508807 -2024-09-13 01:00:00+00:00,-494095 -2024-09-13 02:00:00+00:00,-506465 -2024-09-13 03:00:00+00:00,-515426 -2024-09-13 04:00:00+00:00,-523661 -2024-09-13 05:00:00+00:00,-532187 -2024-09-13 06:00:00+00:00,-515934 -2024-09-13 07:00:00+00:00,-532293 -2024-09-13 08:00:00+00:00,-550524 -2024-09-13 09:00:00+00:00,-566289 -2024-09-13 10:00:00+00:00,-552248 -2024-09-13 11:00:00+00:00,-538886 -2024-09-13 12:00:00+00:00,-554733 -2024-09-13 13:00:00+00:00,-573321 -2024-09-13 14:00:00+00:00,-552629 -2024-09-13 15:00:00+00:00,-539940 -2024-09-13 16:00:00+00:00,-527860 -2024-09-13 17:00:00+00:00,-518184 -2024-09-13 18:00:00+00:00,-509219 -2024-09-13 19:00:00+00:00,-514350 -2024-09-13 20:00:00+00:00,-521271 -2024-09-15 21:00:00+00:00,-521696 -2024-09-15 22:00:00+00:00,-526418 -2024-09-15 23:00:00+00:00,-520689 -2024-09-16 00:00:00+00:00,-532287 -2024-09-16 01:00:00+00:00,-522445 -2024-09-16 02:00:00+00:00,-530200 -2024-09-16 03:00:00+00:00,-540399 -2024-09-16 04:00:00+00:00,-529036 -2024-09-16 05:00:00+00:00,-537538 -2024-09-16 06:00:00+00:00,-551849 -2024-09-16 07:00:00+00:00,-534566 -2024-09-16 08:00:00+00:00,-549467 -2024-09-16 09:00:00+00:00,-537433 -2024-09-16 10:00:00+00:00,-549754 -2024-09-16 11:00:00+00:00,-562004 -2024-09-16 12:00:00+00:00,-544917 -2024-09-16 13:00:00+00:00,-527399 -2024-09-16 14:00:00+00:00,-542682 -2024-09-16 15:00:00+00:00,-528016 -2024-09-16 16:00:00+00:00,-537992 -2024-09-16 17:00:00+00:00,-529730 -2024-09-16 18:00:00+00:00,-521500 -2024-09-16 19:00:00+00:00,-528413 -2024-09-16 20:00:00+00:00,-536943 -2024-09-16 21:00:00+00:00,-536773 -2024-09-16 22:00:00+00:00,-534518 -2024-09-16 23:00:00+00:00,-543463 -2024-09-17 00:00:00+00:00,-556787 -2024-09-17 01:00:00+00:00,-569871 -2024-09-17 02:00:00+00:00,-559333 -2024-09-17 03:00:00+00:00,-549739 -2024-09-17 04:00:00+00:00,-540358 -2024-09-17 05:00:00+00:00,-531533 -2024-09-17 06:00:00+00:00,-542431 -2024-09-17 07:00:00+00:00,-557919 -2024-09-17 08:00:00+00:00,-568643 -2024-09-17 09:00:00+00:00,-558817 -2024-09-17 10:00:00+00:00,-550728 -2024-09-17 11:00:00+00:00,-561404 -2024-09-17 12:00:00+00:00,-541969 -2024-09-17 13:00:00+00:00,-521363 -2024-09-17 14:00:00+00:00,-500815 -2024-09-17 15:00:00+00:00,-485738 -2024-09-17 16:00:00+00:00,-496883 -2024-09-17 17:00:00+00:00,-483844 -2024-09-17 18:00:00+00:00,-496664 -2024-09-17 19:00:00+00:00,-484850 -2024-09-17 20:00:00+00:00,-475131 -2024-09-17 21:00:00+00:00,-475460 -2024-09-17 22:00:00+00:00,-478258 -2024-09-17 23:00:00+00:00,-485340 -2024-09-18 00:00:00+00:00,-499456 -2024-09-18 01:00:00+00:00,-513171 -2024-09-18 02:00:00+00:00,-522161 -2024-09-18 03:00:00+00:00,-530102 -2024-09-18 04:00:00+00:00,-538247 -2024-09-18 05:00:00+00:00,-528564 -2024-09-18 06:00:00+00:00,-517973 -2024-09-18 07:00:00+00:00,-505390 -2024-09-18 08:00:00+00:00,-518325 -2024-09-18 09:00:00+00:00,-529164 -2024-09-18 10:00:00+00:00,-539966 -2024-09-18 11:00:00+00:00,-527381 -2024-09-18 12:00:00+00:00,-513259 -2024-09-18 13:00:00+00:00,-526764 -2024-09-18 14:00:00+00:00,-512356 -2024-09-18 15:00:00+00:00,-524018 -2024-09-18 16:00:00+00:00,-533310 -2024-09-18 17:00:00+00:00,-522951 -2024-09-18 18:00:00+00:00,-557807 -2024-09-18 19:00:00+00:00,-525997 -2024-09-18 20:00:00+00:00,-542304 -2024-09-18 21:00:00+00:00,-542997 -2024-09-18 22:00:00+00:00,-546210 -2024-09-18 23:00:00+00:00,-536810 -2024-09-19 00:00:00+00:00,-515641 -2024-09-19 01:00:00+00:00,-498812 -2024-09-19 02:00:00+00:00,-515412 -2024-09-19 03:00:00+00:00,-530023 -2024-09-19 04:00:00+00:00,-519164 -2024-09-19 05:00:00+00:00,-531620 -2024-09-19 06:00:00+00:00,-547162 -2024-09-19 07:00:00+00:00,-527542 -2024-09-19 08:00:00+00:00,-511970 -2024-09-19 09:00:00+00:00,-526243 -2024-09-19 10:00:00+00:00,-512583 -2024-09-19 11:00:00+00:00,-497207 -2024-09-19 12:00:00+00:00,-475119 -2024-09-19 13:00:00+00:00,-498404 -2024-09-19 14:00:00+00:00,-521250 -2024-09-19 15:00:00+00:00,-537883 -2024-09-19 16:00:00+00:00,-525655 -2024-09-19 17:00:00+00:00,-536673 -2024-09-19 18:00:00+00:00,-549918 -2024-09-19 19:00:00+00:00,-561694 -2024-09-19 20:00:00+00:00,-574414 -2024-09-19 21:00:00+00:00,-574251 -2024-09-19 22:00:00+00:00,-571175 -2024-09-19 23:00:00+00:00,-563295 -2024-09-20 00:00:00+00:00,-576633 -2024-09-20 01:00:00+00:00,-590855 -2024-09-20 02:00:00+00:00,-579836 -2024-09-20 03:00:00+00:00,-593048 -2024-09-20 04:00:00+00:00,-600720 -2024-09-20 05:00:00+00:00,-593068 -2024-09-20 06:00:00+00:00,-571483 -2024-09-20 07:00:00+00:00,-551402 -2024-09-20 08:00:00+00:00,-532414 -2024-09-20 09:00:00+00:00,-517511 -2024-09-20 10:00:00+00:00,-503938 -2024-09-20 11:00:00+00:00,-517158 -2024-09-20 12:00:00+00:00,-533711 -2024-09-20 13:00:00+00:00,-513077 -2024-09-20 14:00:00+00:00,-493403 -2024-09-20 15:00:00+00:00,-512684 -2024-09-20 16:00:00+00:00,-528562 -2024-09-20 17:00:00+00:00,-516343 -2024-09-20 18:00:00+00:00,-528247 -2024-09-20 19:00:00+00:00,-518432 -2024-09-20 20:00:00+00:00,-528786 -2024-09-22 21:00:00+00:00,-529065 -2024-09-22 22:00:00+00:00,-524849 -2024-09-22 23:00:00+00:00,-517556 -2024-09-23 00:00:00+00:00,-505615 -2024-09-23 01:00:00+00:00,-493781 -2024-09-23 02:00:00+00:00,-501842 -2024-09-23 03:00:00+00:00,-508438 -2024-09-23 04:00:00+00:00,-514969 -2024-09-23 05:00:00+00:00,-521360 -2024-09-23 06:00:00+00:00,-533824 -2024-09-23 07:00:00+00:00,-556160 -2024-09-23 08:00:00+00:00,-574813 -2024-09-23 09:00:00+00:00,-560962 -2024-09-23 10:00:00+00:00,-572884 -2024-09-23 11:00:00+00:00,-559547 -2024-09-23 12:00:00+00:00,-544309 -2024-09-23 13:00:00+00:00,-524769 -2024-09-23 14:00:00+00:00,-546767 -2024-09-23 15:00:00+00:00,-563374 -2024-09-23 16:00:00+00:00,-579090 -2024-09-23 17:00:00+00:00,-567280 -2024-09-23 18:00:00+00:00,-577244 -2024-09-23 19:00:00+00:00,-567401 -2024-09-23 20:00:00+00:00,-557570 -2024-09-23 21:00:00+00:00,-557771 -2024-09-23 22:00:00+00:00,-555900 -2024-09-23 23:00:00+00:00,-550604 -2024-09-24 00:00:00+00:00,-565133 -2024-09-24 01:00:00+00:00,-550351 -2024-09-24 02:00:00+00:00,-537939 -2024-09-24 03:00:00+00:00,-527443 -2024-09-24 04:00:00+00:00,-517850 -2024-09-24 05:00:00+00:00,-505025 -2024-09-24 06:00:00+00:00,-491102 -2024-09-24 07:00:00+00:00,-474543 -2024-09-24 08:00:00+00:00,-489407 -2024-09-24 09:00:00+00:00,-499761 -2024-09-24 10:00:00+00:00,-508726 -2024-09-24 11:00:00+00:00,-497980 -2024-09-24 12:00:00+00:00,-513868 -2024-09-24 13:00:00+00:00,-497450 -2024-09-24 14:00:00+00:00,-517432 -2024-09-24 15:00:00+00:00,-504468 -2024-09-24 16:00:00+00:00,-514168 -2024-09-24 17:00:00+00:00,-505299 -2024-09-24 18:00:00+00:00,-514514 -2024-09-24 19:00:00+00:00,-522876 -2024-09-24 20:00:00+00:00,-528630 -2024-09-24 21:00:00+00:00,-529060 -2024-09-24 22:00:00+00:00,-532271 -2024-09-24 23:00:00+00:00,-538864 -2024-09-25 00:00:00+00:00,-525005 -2024-09-25 01:00:00+00:00,-511080 -2024-09-25 02:00:00+00:00,-520393 -2024-09-25 03:00:00+00:00,-529092 -2024-09-25 04:00:00+00:00,-538155 -2024-09-25 05:00:00+00:00,-527303 -2024-09-25 06:00:00+00:00,-515992 -2024-09-25 07:00:00+00:00,-502001 -2024-09-25 08:00:00+00:00,-489016 -2024-09-25 09:00:00+00:00,-477270 -2024-09-25 10:00:00+00:00,-467120 -2024-09-25 11:00:00+00:00,-455309 -2024-09-25 12:00:00+00:00,-469269 -2024-09-25 13:00:00+00:00,-486999 -2024-09-25 14:00:00+00:00,-471372 -2024-09-25 15:00:00+00:00,-457880 -2024-09-25 16:00:00+00:00,-447382 -2024-09-25 17:00:00+00:00,-437811 -2024-09-25 18:00:00+00:00,-427007 -2024-09-25 19:00:00+00:00,-417420 -2024-09-25 20:00:00+00:00,-423352 -2024-09-25 21:00:00+00:00,-423991 -2024-09-25 22:00:00+00:00,-427564 -2024-09-25 23:00:00+00:00,-422517 -2024-09-26 00:00:00+00:00,-433468 -2024-09-26 01:00:00+00:00,-424137 -2024-09-26 02:00:00+00:00,-417264 -2024-09-26 03:00:00+00:00,-411606 -2024-09-26 04:00:00+00:00,-420059 -2024-09-26 05:00:00+00:00,-410442 -2024-09-26 06:00:00+00:00,-398469 -2024-09-26 07:00:00+00:00,-381353 -2024-09-26 08:00:00+00:00,-396090 -2024-09-26 09:00:00+00:00,-407797 -2024-09-26 10:00:00+00:00,-418555 -2024-09-26 11:00:00+00:00,-427419 -2024-09-26 12:00:00+00:00,-412367 -2024-09-26 13:00:00+00:00,-394257 -2024-09-26 14:00:00+00:00,-374820 -2024-09-26 15:00:00+00:00,-387824 -2024-09-26 16:00:00+00:00,-377664 -2024-09-26 17:00:00+00:00,-388461 -2024-09-26 18:00:00+00:00,-396435 -2024-09-26 19:00:00+00:00,-388694 -2024-09-26 20:00:00+00:00,-382133 -2024-09-26 21:00:00+00:00,-382447 -2024-09-26 22:00:00+00:00,-380274 -2024-09-26 23:00:00+00:00,-373378 -2024-09-27 00:00:00+00:00,-357677 -2024-09-27 01:00:00+00:00,-371680 -2024-09-27 02:00:00+00:00,-383247 -2024-09-27 03:00:00+00:00,-374007 -2024-09-27 04:00:00+00:00,-365931 -2024-09-27 05:00:00+00:00,-348572 -2024-09-27 06:00:00+00:00,-373883 -2024-09-27 07:00:00+00:00,-353404 -2024-09-27 08:00:00+00:00,-370955 -2024-09-27 09:00:00+00:00,-387403 -2024-09-27 10:00:00+00:00,-375316 -2024-09-27 11:00:00+00:00,-387019 -2024-09-27 12:00:00+00:00,-405270 -2024-09-27 13:00:00+00:00,-387455 -2024-09-27 14:00:00+00:00,-367251 -2024-09-27 15:00:00+00:00,-384949 -2024-09-27 16:00:00+00:00,-398441 -2024-09-27 17:00:00+00:00,-411087 -2024-09-27 18:00:00+00:00,-423368 -2024-09-27 19:00:00+00:00,-431413 -2024-09-27 20:00:00+00:00,-424050 -2024-09-29 21:00:00+00:00,-423567 -2024-09-29 22:00:00+00:00,-418236 -2024-09-29 23:00:00+00:00,-409008 -2024-09-30 00:00:00+00:00,-424354 -2024-09-30 01:00:00+00:00,-438207 -2024-09-30 02:00:00+00:00,-427349 -2024-09-30 03:00:00+00:00,-435770 -2024-09-30 04:00:00+00:00,-444519 -2024-09-30 05:00:00+00:00,-458426 -2024-09-30 06:00:00+00:00,-444448 -2024-09-30 07:00:00+00:00,-429667 -2024-09-30 08:00:00+00:00,-414103 -2024-09-30 09:00:00+00:00,-425678 -2024-09-30 10:00:00+00:00,-415316 -2024-09-30 11:00:00+00:00,-426984 -2024-09-30 12:00:00+00:00,-414667 -2024-09-30 13:00:00+00:00,-398842 -2024-09-30 14:00:00+00:00,-418548 -2024-09-30 15:00:00+00:00,-404049 -2024-09-30 16:00:00+00:00,-414914 -2024-09-30 17:00:00+00:00,-425334 -2024-09-30 18:00:00+00:00,-405320 -2024-09-30 19:00:00+00:00,-391420 -2024-09-30 20:00:00+00:00,-402816 -2024-09-30 21:00:00+00:00,-403115 -2024-09-30 22:00:00+00:00,-405875 -2024-09-30 23:00:00+00:00,-398257 -2024-10-01 00:00:00+00:00,-383938 -2024-10-01 01:00:00+00:00,-396488 -2024-10-01 02:00:00+00:00,-387988 -2024-10-01 03:00:00+00:00,-379240 -2024-10-01 04:00:00+00:00,-386971 -2024-10-01 05:00:00+00:00,-395528 -2024-10-01 06:00:00+00:00,-379438 -2024-10-01 07:00:00+00:00,-401643 -2024-10-01 08:00:00+00:00,-421917 -2024-10-01 09:00:00+00:00,-438291 -2024-10-01 10:00:00+00:00,-424838 -2024-10-01 11:00:00+00:00,-409112 -2024-10-01 12:00:00+00:00,-394041 -2024-10-01 13:00:00+00:00,-415258 -2024-10-01 14:00:00+00:00,-387928 -2024-10-01 15:00:00+00:00,-370409 -2024-10-01 16:00:00+00:00,-388103 -2024-10-01 17:00:00+00:00,-370825 -2024-10-01 18:00:00+00:00,-382944 -2024-10-01 19:00:00+00:00,-395777 -2024-10-01 20:00:00+00:00,-379304 -2024-10-01 21:00:00+00:00,-379048 -2024-10-01 22:00:00+00:00,-381795 -2024-10-01 23:00:00+00:00,-374419 -2024-10-02 00:00:00+00:00,-361672 -2024-10-02 01:00:00+00:00,-348700 -2024-10-02 02:00:00+00:00,-339838 -2024-10-02 03:00:00+00:00,-330817 -2024-10-02 04:00:00+00:00,-341996 -2024-10-02 05:00:00+00:00,-358740 -2024-10-02 06:00:00+00:00,-343557 -2024-10-02 07:00:00+00:00,-327488 -2024-10-02 08:00:00+00:00,-314203 -2024-10-02 09:00:00+00:00,-326332 -2024-10-02 10:00:00+00:00,-310234 -2024-10-02 11:00:00+00:00,-324546 -2024-10-02 12:00:00+00:00,-305912 -2024-10-02 13:00:00+00:00,-286391 -2024-10-02 14:00:00+00:00,-265761 -2024-10-02 15:00:00+00:00,-281540 -2024-10-02 16:00:00+00:00,-292059 -2024-10-02 17:00:00+00:00,-284052 -2024-10-02 18:00:00+00:00,-277401 -2024-10-02 19:00:00+00:00,-270708 -2024-10-02 20:00:00+00:00,-262999 -2024-10-02 21:00:00+00:00,-263604 -2024-10-02 22:00:00+00:00,-258073 -2024-10-02 23:00:00+00:00,-267046 -2024-10-03 00:00:00+00:00,-252675 -2024-10-03 01:00:00+00:00,-266838 -2024-10-03 02:00:00+00:00,-277245 -2024-10-03 03:00:00+00:00,-267656 -2024-10-03 04:00:00+00:00,-276868 -2024-10-03 05:00:00+00:00,-290334 -2024-10-03 06:00:00+00:00,-276429 -2024-10-03 07:00:00+00:00,-293385 -2024-10-03 08:00:00+00:00,-278725 -2024-10-03 09:00:00+00:00,-265411 -2024-10-03 10:00:00+00:00,-275945 -2024-10-03 11:00:00+00:00,-287784 -2024-10-03 12:00:00+00:00,-269371 -2024-10-03 13:00:00+00:00,-287803 -2024-10-03 14:00:00+00:00,-259408 -2024-10-03 15:00:00+00:00,-243129 -2024-10-03 16:00:00+00:00,-255403 -2024-10-03 17:00:00+00:00,-267164 -2024-10-03 18:00:00+00:00,-258535 -2024-10-03 19:00:00+00:00,-266367 -2024-10-03 20:00:00+00:00,-260836 -2024-10-03 21:00:00+00:00,-260939 -2024-10-03 22:00:00+00:00,-262789 -2024-10-03 23:00:00+00:00,-267732 -2024-10-04 00:00:00+00:00,-281065 -2024-10-04 01:00:00+00:00,-293020 -2024-10-04 02:00:00+00:00,-301372 -2024-10-04 03:00:00+00:00,-309232 -2024-10-04 04:00:00+00:00,-319334 -2024-10-04 05:00:00+00:00,-330838 -2024-10-04 06:00:00+00:00,-317783 -2024-10-04 07:00:00+00:00,-300094 -2024-10-04 08:00:00+00:00,-282313 -2024-10-04 09:00:00+00:00,-266913 -2024-10-04 10:00:00+00:00,-252670 -2024-10-04 11:00:00+00:00,-236447 -2024-10-04 12:00:00+00:00,-183983 -2024-10-04 13:00:00+00:00,-222926 -2024-10-04 14:00:00+00:00,-189372 -2024-10-04 15:00:00+00:00,-162711 -2024-10-04 16:00:00+00:00,-142966 -2024-10-04 17:00:00+00:00,-157728 -2024-10-04 18:00:00+00:00,-144110 -2024-10-04 19:00:00+00:00,-153926 -2024-10-04 20:00:00+00:00,-164728 -2024-10-06 21:00:00+00:00,-163849 -2024-10-06 22:00:00+00:00,-156897 -2024-10-06 23:00:00+00:00,-168163 -2024-10-07 00:00:00+00:00,-191711 -2024-10-07 01:00:00+00:00,-211039 -2024-10-07 02:00:00+00:00,-196619 -2024-10-07 03:00:00+00:00,-208199 -2024-10-07 04:00:00+00:00,-197457 -2024-10-07 05:00:00+00:00,-210058 -2024-10-07 06:00:00+00:00,-228793 -2024-10-07 07:00:00+00:00,-259031 -2024-10-07 08:00:00+00:00,-237059 -2024-10-07 09:00:00+00:00,-218272 -2024-10-07 10:00:00+00:00,-202021 -2024-10-07 11:00:00+00:00,-223040 -2024-10-07 12:00:00+00:00,-251110 -2024-10-07 13:00:00+00:00,-283985 -2024-10-07 14:00:00+00:00,-255370 -2024-10-07 15:00:00+00:00,-276983 -2024-10-07 16:00:00+00:00,-291848 -2024-10-07 17:00:00+00:00,-280261 -2024-10-07 18:00:00+00:00,-263668 -2024-10-07 19:00:00+00:00,-278150 -2024-10-07 20:00:00+00:00,-266002 -2024-10-07 21:00:00+00:00,-266686 -2024-10-07 22:00:00+00:00,-273974 -2024-10-07 23:00:00+00:00,-260351 -2024-10-08 00:00:00+00:00,-280387 -2024-10-08 01:00:00+00:00,-258004 -2024-10-08 02:00:00+00:00,-280849 -2024-10-08 03:00:00+00:00,-264938 -2024-10-08 04:00:00+00:00,-253187 -2024-10-08 05:00:00+00:00,-270148 -2024-10-08 06:00:00+00:00,-248709 -2024-10-08 07:00:00+00:00,-280072 -2024-10-08 08:00:00+00:00,-261360 -2024-10-08 09:00:00+00:00,-276576 -2024-10-08 10:00:00+00:00,-259351 -2024-10-08 11:00:00+00:00,-277298 -2024-10-08 12:00:00+00:00,-252926 -2024-10-08 13:00:00+00:00,-225810 -2024-10-08 14:00:00+00:00,-201907 -2024-10-08 15:00:00+00:00,-222858 -2024-10-08 16:00:00+00:00,-239563 -2024-10-08 17:00:00+00:00,-224471 -2024-10-08 18:00:00+00:00,-205680 -2024-10-08 19:00:00+00:00,-223769 -2024-10-08 20:00:00+00:00,-243293 -2024-10-08 21:00:00+00:00,-243129 -2024-10-08 22:00:00+00:00,-245179 -2024-10-08 23:00:00+00:00,-252630 -2024-10-09 00:00:00+00:00,-238729 -2024-10-09 01:00:00+00:00,-254324 -2024-10-09 02:00:00+00:00,-240716 -2024-10-09 03:00:00+00:00,-229685 -2024-10-09 04:00:00+00:00,-222502 -2024-10-09 05:00:00+00:00,-205731 -2024-10-09 06:00:00+00:00,-220438 -2024-10-09 07:00:00+00:00,-198384 -2024-10-09 08:00:00+00:00,-181037 -2024-10-09 09:00:00+00:00,-193846 -2024-10-09 10:00:00+00:00,-206317 -2024-10-09 11:00:00+00:00,-192846 -2024-10-09 12:00:00+00:00,-176133 -2024-10-09 13:00:00+00:00,-157898 -2024-10-09 14:00:00+00:00,-140976 -2024-10-09 15:00:00+00:00,-127302 -2024-10-09 16:00:00+00:00,-117245 -2024-10-09 17:00:00+00:00,-126889 -2024-10-09 18:00:00+00:00,-115126 -2024-10-09 19:00:00+00:00,-126016 -2024-10-09 20:00:00+00:00,-132699 -2024-10-09 21:00:00+00:00,-133871 -2024-10-09 22:00:00+00:00,-131328 -2024-10-09 23:00:00+00:00,-137261 -2024-10-10 00:00:00+00:00,-123058 -2024-10-10 01:00:00+00:00,-134220 -2024-10-10 02:00:00+00:00,-123939 -2024-10-10 03:00:00+00:00,-116160 -2024-10-10 04:00:00+00:00,-107187 -2024-10-10 05:00:00+00:00,-117521 -2024-10-10 06:00:00+00:00,-134199 -2024-10-10 07:00:00+00:00,-155268 -2024-10-10 08:00:00+00:00,-139167 -2024-10-10 09:00:00+00:00,-153026 -2024-10-10 10:00:00+00:00,-163831 -2024-10-10 11:00:00+00:00,-149195 -2024-10-10 12:00:00+00:00,-206606 -2024-10-10 13:00:00+00:00,-252623 -2024-10-10 14:00:00+00:00,-215395 -2024-10-10 15:00:00+00:00,-238980 -2024-10-10 16:00:00+00:00,-215913 -2024-10-10 17:00:00+00:00,-238388 -2024-10-10 18:00:00+00:00,-249909 -2024-10-10 19:00:00+00:00,-259913 -2024-10-10 20:00:00+00:00,-252572 -2024-10-10 21:00:00+00:00,-253156 -2024-10-10 22:00:00+00:00,-251541 -2024-10-10 23:00:00+00:00,-245462 -2024-10-11 00:00:00+00:00,-262558 -2024-10-11 01:00:00+00:00,-249889 -2024-10-11 02:00:00+00:00,-259645 -2024-10-11 03:00:00+00:00,-250744 -2024-10-11 04:00:00+00:00,-243378 -2024-10-11 05:00:00+00:00,-251207 -2024-10-11 06:00:00+00:00,-262851 -2024-10-11 07:00:00+00:00,-247275 -2024-10-11 08:00:00+00:00,-257176 -2024-10-11 09:00:00+00:00,-247858 -2024-10-11 10:00:00+00:00,-238891 -2024-10-11 11:00:00+00:00,-248378 -2024-10-11 12:00:00+00:00,-222341 -2024-10-11 13:00:00+00:00,-200915 -2024-10-11 14:00:00+00:00,-178571 -2024-10-11 15:00:00+00:00,-192944 -2024-10-11 16:00:00+00:00,-201514 -2024-10-11 17:00:00+00:00,-193852 -2024-10-11 18:00:00+00:00,-187258 -2024-10-11 19:00:00+00:00,-182423 -2024-10-11 20:00:00+00:00,-186619 -2024-10-13 21:00:00+00:00,-184982 -2024-10-13 22:00:00+00:00,-180349 -2024-10-13 23:00:00+00:00,-186162 -2024-10-14 00:00:00+00:00,-196201 -2024-10-14 01:00:00+00:00,-206234 -2024-10-14 02:00:00+00:00,-196745 -2024-10-14 03:00:00+00:00,-190847 -2024-10-14 04:00:00+00:00,-194739 -2024-10-14 05:00:00+00:00,-201256 -2024-10-14 06:00:00+00:00,-209450 -2024-10-14 07:00:00+00:00,-196521 -2024-10-14 08:00:00+00:00,-184829 -2024-10-14 09:00:00+00:00,-193566 -2024-10-14 10:00:00+00:00,-184476 -2024-10-14 11:00:00+00:00,-171430 -2024-10-14 12:00:00+00:00,-161009 -2024-10-14 13:00:00+00:00,-145683 -2024-10-14 14:00:00+00:00,-132406 -2024-10-14 15:00:00+00:00,-140057 -2024-10-14 16:00:00+00:00,-135232 -2024-10-14 17:00:00+00:00,-139731 -2024-10-14 18:00:00+00:00,-136102 -2024-10-14 19:00:00+00:00,-146911 -2024-10-14 20:00:00+00:00,-149956 -2024-10-14 21:00:00+00:00,-149530 -2024-10-14 22:00:00+00:00,-151238 -2024-10-14 23:00:00+00:00,-157687 -2024-10-15 00:00:00+00:00,-172187 -2024-10-15 01:00:00+00:00,-179316 -2024-10-15 02:00:00+00:00,-170743 -2024-10-15 03:00:00+00:00,-162498 -2024-10-15 04:00:00+00:00,-169575 -2024-10-15 05:00:00+00:00,-181195 -2024-10-15 06:00:00+00:00,-197610 -2024-10-15 07:00:00+00:00,-217027 -2024-10-15 08:00:00+00:00,-233981 -2024-10-15 09:00:00+00:00,-248255 -2024-10-15 10:00:00+00:00,-234738 -2024-10-15 11:00:00+00:00,-221812 -2024-10-15 12:00:00+00:00,-243596 -2024-10-15 13:00:00+00:00,-221068 -2024-10-15 14:00:00+00:00,-196653 -2024-10-15 15:00:00+00:00,-214463 -2024-10-15 16:00:00+00:00,-202970 -2024-10-15 17:00:00+00:00,-214466 -2024-10-15 18:00:00+00:00,-225565 -2024-10-15 19:00:00+00:00,-236404 -2024-10-15 20:00:00+00:00,-242328 -2024-10-15 21:00:00+00:00,-242842 -2024-10-15 22:00:00+00:00,-241276 -2024-10-15 23:00:00+00:00,-247227 -2024-10-16 00:00:00+00:00,-229687 -2024-10-16 01:00:00+00:00,-247695 -2024-10-16 02:00:00+00:00,-236307 -2024-10-16 03:00:00+00:00,-226880 -2024-10-16 04:00:00+00:00,-219384 -2024-10-16 05:00:00+00:00,-208906 -2024-10-16 06:00:00+00:00,-227497 -2024-10-16 07:00:00+00:00,-210730 -2024-10-16 08:00:00+00:00,-197844 -2024-10-16 09:00:00+00:00,-209864 -2024-10-16 10:00:00+00:00,-200423 -2024-10-16 11:00:00+00:00,-213304 -2024-10-16 12:00:00+00:00,-196445 -2024-10-16 13:00:00+00:00,-214777 -2024-10-16 14:00:00+00:00,-196925 -2024-10-16 15:00:00+00:00,-182774 -2024-10-16 16:00:00+00:00,-174063 -2024-10-16 17:00:00+00:00,-168384 -2024-10-16 18:00:00+00:00,-160745 -2024-10-16 19:00:00+00:00,-167352 -2024-10-16 20:00:00+00:00,-172396 -2024-10-16 21:00:00+00:00,-173234 -2024-10-16 22:00:00+00:00,-175210 -2024-10-16 23:00:00+00:00,-181035 -2024-10-17 00:00:00+00:00,-196293 -2024-10-17 01:00:00+00:00,-210347 -2024-10-17 02:00:00+00:00,-198678 -2024-10-17 03:00:00+00:00,-187719 -2024-10-17 04:00:00+00:00,-196847 -2024-10-17 05:00:00+00:00,-207063 -2024-10-17 06:00:00+00:00,-193529 -2024-10-17 07:00:00+00:00,-179232 -2024-10-17 08:00:00+00:00,-166213 -2024-10-17 09:00:00+00:00,-175164 -2024-10-17 10:00:00+00:00,-184235 -2024-10-17 11:00:00+00:00,-192929 -2024-10-17 12:00:00+00:00,-158907 -2024-10-17 13:00:00+00:00,-193405 -2024-10-17 14:00:00+00:00,-170566 -2024-10-17 15:00:00+00:00,-155073 -2024-10-17 16:00:00+00:00,-142650 -2024-10-17 17:00:00+00:00,-134135 -2024-10-17 18:00:00+00:00,-125275 -2024-10-17 19:00:00+00:00,-132840 -2024-10-17 20:00:00+00:00,-128280 -2024-10-17 21:00:00+00:00,-128541 -2024-10-17 22:00:00+00:00,-127271 -2024-10-17 23:00:00+00:00,-131852 -2024-10-18 00:00:00+00:00,-148757 -2024-10-18 01:00:00+00:00,-160973 -2024-10-18 02:00:00+00:00,-171356 -2024-10-18 03:00:00+00:00,-179695 -2024-10-18 04:00:00+00:00,-171786 -2024-10-18 05:00:00+00:00,-183334 -2024-10-18 06:00:00+00:00,-168038 -2024-10-18 07:00:00+00:00,-154204 -2024-10-18 08:00:00+00:00,-165614 -2024-10-18 09:00:00+00:00,-177206 -2024-10-18 10:00:00+00:00,-162814 -2024-10-18 11:00:00+00:00,-152312 -2024-10-18 12:00:00+00:00,-169710 -2024-10-18 13:00:00+00:00,-185466 -2024-10-18 14:00:00+00:00,-200420 -2024-10-18 15:00:00+00:00,-211922 -2024-10-18 16:00:00+00:00,-220046 -2024-10-18 17:00:00+00:00,-211516 -2024-10-18 18:00:00+00:00,-220498 -2024-10-18 19:00:00+00:00,-227692 -2024-10-18 20:00:00+00:00,-223096 -2024-10-20 21:00:00+00:00,-221855 -2024-10-20 22:00:00+00:00,-219001 -2024-10-20 23:00:00+00:00,-214338 -2024-10-21 00:00:00+00:00,-232240 -2024-10-21 01:00:00+00:00,-250093 -2024-10-21 02:00:00+00:00,-238642 -2024-10-21 03:00:00+00:00,-248651 -2024-10-21 04:00:00+00:00,-238718 -2024-10-21 05:00:00+00:00,-225541 -2024-10-21 06:00:00+00:00,-211355 -2024-10-21 07:00:00+00:00,-196847 -2024-10-21 08:00:00+00:00,-187127 -2024-10-21 09:00:00+00:00,-176032 -2024-10-21 10:00:00+00:00,-186129 -2024-10-21 11:00:00+00:00,-197532 -2024-10-21 12:00:00+00:00,-213117 -2024-10-21 13:00:00+00:00,-197237 -2024-10-21 14:00:00+00:00,-183245 -2024-10-21 15:00:00+00:00,-166874 -2024-10-21 16:00:00+00:00,-158069 -2024-10-21 17:00:00+00:00,-150690 -2024-10-21 18:00:00+00:00,-143105 -2024-10-21 19:00:00+00:00,-135888 -2024-10-21 20:00:00+00:00,-130853 -2024-10-21 21:00:00+00:00,-133069 -2024-10-21 22:00:00+00:00,-135393 -2024-10-21 23:00:00+00:00,-142480 -2024-10-22 00:00:00+00:00,-126833 -2024-10-22 01:00:00+00:00,-111389 -2024-10-22 02:00:00+00:00,-101888 -2024-10-22 03:00:00+00:00,-92273 -2024-10-22 04:00:00+00:00,-105723 -2024-10-22 05:00:00+00:00,-121562 -2024-10-22 06:00:00+00:00,-137810 -2024-10-22 07:00:00+00:00,-117431 -2024-10-22 08:00:00+00:00,-134061 -2024-10-22 09:00:00+00:00,-148611 -2024-10-22 10:00:00+00:00,-162090 -2024-10-22 11:00:00+00:00,-149098 -2024-10-22 12:00:00+00:00,-132127 -2024-10-22 13:00:00+00:00,-109220 -2024-10-22 14:00:00+00:00,-87043 -2024-10-22 15:00:00+00:00,-70431 -2024-10-22 16:00:00+00:00,-81018 -2024-10-22 17:00:00+00:00,-94531 -2024-10-22 18:00:00+00:00,-84928 -2024-10-22 19:00:00+00:00,-75793 -2024-10-22 20:00:00+00:00,-82078 -2024-10-22 21:00:00+00:00,-82619 -2024-10-22 22:00:00+00:00,-81102 -2024-10-22 23:00:00+00:00,-77193 -2024-10-23 00:00:00+00:00,-64772 -2024-10-23 01:00:00+00:00,-49606 -2024-10-23 02:00:00+00:00,-37129 -2024-10-23 03:00:00+00:00,-26907 -2024-10-23 04:00:00+00:00,-12379 -2024-10-23 05:00:00+00:00,2258 -2024-10-23 06:00:00+00:00,21779 -2024-10-23 07:00:00+00:00,41510 -2024-10-23 08:00:00+00:00,58250 -2024-10-23 09:00:00+00:00,72750 -2024-10-23 10:00:00+00:00,85709 -2024-10-23 11:00:00+00:00,100518 -2024-10-23 12:00:00+00:00,121138 -2024-10-23 13:00:00+00:00,142326 -2024-10-23 14:00:00+00:00,122952 -2024-10-23 15:00:00+00:00,106468 -2024-10-23 16:00:00+00:00,119671 -2024-10-23 17:00:00+00:00,107389 -2024-10-23 18:00:00+00:00,92398 -2024-10-23 19:00:00+00:00,80638 -2024-10-23 20:00:00+00:00,93541 -2024-10-23 21:00:00+00:00,93124 -2024-10-23 22:00:00+00:00,96158 -2024-10-23 23:00:00+00:00,102919 -2024-10-24 00:00:00+00:00,81007 -2024-10-24 01:00:00+00:00,98632 -2024-10-24 02:00:00+00:00,82329 -2024-10-24 03:00:00+00:00,70577 -2024-10-24 04:00:00+00:00,58538 -2024-10-24 05:00:00+00:00,73954 -2024-10-24 06:00:00+00:00,51826 -2024-10-24 07:00:00+00:00,78290 -2024-10-24 08:00:00+00:00,57592 -2024-10-24 09:00:00+00:00,40796 -2024-10-24 10:00:00+00:00,28431 -2024-10-24 11:00:00+00:00,43976 -2024-10-24 12:00:00+00:00,13282 -2024-10-24 13:00:00+00:00,42269 -2024-10-24 14:00:00+00:00,14155 -2024-10-24 15:00:00+00:00,-5293 -2024-10-24 16:00:00+00:00,-19346 -2024-10-24 17:00:00+00:00,-32352 -2024-10-24 18:00:00+00:00,-19328 -2024-10-24 19:00:00+00:00,-6430 -2024-10-24 20:00:00+00:00,-14537 -2024-10-24 21:00:00+00:00,-13896 -2024-10-24 22:00:00+00:00,-15464 -2024-10-24 23:00:00+00:00,-7092 -2024-10-25 00:00:00+00:00,9748 -2024-10-25 01:00:00+00:00,-2398 -2024-10-25 02:00:00+00:00,-12709 -2024-10-25 03:00:00+00:00,-4389 -2024-10-25 04:00:00+00:00,-15198 -2024-10-25 05:00:00+00:00,27 -2024-10-25 06:00:00+00:00,15577 -2024-10-25 07:00:00+00:00,34649 -2024-10-25 08:00:00+00:00,50214 -2024-10-25 09:00:00+00:00,61219 -2024-10-25 10:00:00+00:00,51071 -2024-10-25 11:00:00+00:00,37722 -2024-10-25 12:00:00+00:00,57370 -2024-10-25 13:00:00+00:00,77870 -2024-10-25 14:00:00+00:00,101473 -2024-10-25 15:00:00+00:00,117801 -2024-10-25 16:00:00+00:00,128840 -2024-10-25 17:00:00+00:00,118764 -2024-10-25 18:00:00+00:00,129665 -2024-10-25 19:00:00+00:00,139224 -2024-10-25 20:00:00+00:00,153515 -2024-10-27 21:00:00+00:00,154705 -2024-10-27 22:00:00+00:00,170439 -2024-10-27 23:00:00+00:00,184322 -2024-10-28 00:00:00+00:00,209728 -2024-10-28 01:00:00+00:00,228917 -2024-10-28 02:00:00+00:00,215147 -2024-10-28 03:00:00+00:00,225852 -2024-10-28 04:00:00+00:00,237360 -2024-10-28 05:00:00+00:00,227074 -2024-10-28 06:00:00+00:00,213655 -2024-10-28 07:00:00+00:00,198351 -2024-10-28 08:00:00+00:00,178430 -2024-10-28 09:00:00+00:00,161635 -2024-10-28 10:00:00+00:00,144305 -2024-10-28 11:00:00+00:00,158112 -2024-10-28 12:00:00+00:00,140182 -2024-10-28 13:00:00+00:00,157906 -2024-10-28 14:00:00+00:00,172076 -2024-10-28 15:00:00+00:00,187822 -2024-10-28 16:00:00+00:00,199842 -2024-10-28 17:00:00+00:00,209980 -2024-10-28 18:00:00+00:00,201972 -2024-10-28 19:00:00+00:00,193535 -2024-10-28 20:00:00+00:00,199747 -2024-10-28 21:00:00+00:00,199478 -2024-10-28 22:00:00+00:00,201810 -2024-10-28 23:00:00+00:00,196909 -2024-10-29 00:00:00+00:00,182078 -2024-10-29 01:00:00+00:00,165517 -2024-10-29 02:00:00+00:00,179402 -2024-10-29 03:00:00+00:00,191091 -2024-10-29 04:00:00+00:00,180157 -2024-10-29 05:00:00+00:00,167367 -2024-10-29 06:00:00+00:00,179449 -2024-10-29 07:00:00+00:00,195038 -2024-10-29 08:00:00+00:00,217299 -2024-10-29 09:00:00+00:00,231820 -2024-10-29 10:00:00+00:00,220210 -2024-10-29 11:00:00+00:00,233648 -2024-10-29 12:00:00+00:00,249161 -2024-10-29 13:00:00+00:00,232416 -2024-10-29 14:00:00+00:00,198118 -2024-10-29 15:00:00+00:00,217683 -2024-10-29 16:00:00+00:00,232445 -2024-10-29 17:00:00+00:00,218387 -2024-10-29 18:00:00+00:00,228026 -2024-10-29 19:00:00+00:00,236799 -2024-10-29 20:00:00+00:00,231554 -2024-10-29 21:00:00+00:00,231962 -2024-10-29 22:00:00+00:00,229078 -2024-10-29 23:00:00+00:00,235284 -2024-10-30 00:00:00+00:00,221115 -2024-10-30 01:00:00+00:00,209411 -2024-10-30 02:00:00+00:00,220653 -2024-10-30 03:00:00+00:00,230085 -2024-10-30 04:00:00+00:00,238063 -2024-10-30 05:00:00+00:00,229534 -2024-10-30 06:00:00+00:00,241017 -2024-10-30 07:00:00+00:00,253770 -2024-10-30 08:00:00+00:00,234283 -2024-10-30 09:00:00+00:00,255603 -2024-10-30 10:00:00+00:00,241293 -2024-10-30 11:00:00+00:00,254833 -2024-10-30 12:00:00+00:00,284139 -2024-10-30 13:00:00+00:00,259114 -2024-10-30 14:00:00+00:00,284615 -2024-10-30 15:00:00+00:00,266694 -2024-10-30 16:00:00+00:00,252488 -2024-10-30 17:00:00+00:00,263083 -2024-10-30 18:00:00+00:00,270677 -2024-10-30 19:00:00+00:00,281248 -2024-10-30 20:00:00+00:00,288424 -2024-10-30 21:00:00+00:00,287696 -2024-10-30 22:00:00+00:00,284560 -2024-10-30 23:00:00+00:00,280775 -2024-10-31 00:00:00+00:00,293246 -2024-10-31 01:00:00+00:00,282959 -2024-10-31 02:00:00+00:00,271819 -2024-10-31 03:00:00+00:00,259013 -2024-10-31 04:00:00+00:00,249399 -2024-10-31 05:00:00+00:00,240576 -2024-10-31 06:00:00+00:00,218131 -2024-10-31 07:00:00+00:00,247988 -2024-10-31 08:00:00+00:00,271574 -2024-10-31 09:00:00+00:00,288267 -2024-10-31 10:00:00+00:00,273409 -2024-10-31 11:00:00+00:00,286989 -2024-10-31 12:00:00+00:00,257757 -2024-10-31 13:00:00+00:00,286190 -2024-10-31 14:00:00+00:00,254168 -2024-10-31 15:00:00+00:00,223684 -2024-10-31 16:00:00+00:00,244828 -2024-10-31 17:00:00+00:00,232549 -2024-10-31 18:00:00+00:00,215391 -2024-10-31 19:00:00+00:00,195939 -2024-10-31 20:00:00+00:00,210654 -2024-10-31 21:00:00+00:00,210959 -2024-10-31 22:00:00+00:00,208501 -2024-10-31 23:00:00+00:00,196904 -2024-11-01 00:00:00+00:00,215860 -2024-11-01 01:00:00+00:00,233185 -2024-11-01 02:00:00+00:00,246519 -2024-11-01 03:00:00+00:00,257453 -2024-11-01 04:00:00+00:00,266263 -2024-11-01 05:00:00+00:00,279058 -2024-11-01 06:00:00+00:00,266354 -2024-11-01 07:00:00+00:00,283194 -2024-11-01 08:00:00+00:00,300179 -2024-11-01 09:00:00+00:00,313936 -2024-11-01 10:00:00+00:00,301724 -2024-11-01 11:00:00+00:00,313171 -2024-11-01 12:00:00+00:00,276757 -2024-11-01 13:00:00+00:00,307719 -2024-11-01 14:00:00+00:00,340626 -2024-11-01 15:00:00+00:00,362262 -2024-11-01 16:00:00+00:00,346762 -2024-11-01 17:00:00+00:00,359900 -2024-11-01 18:00:00+00:00,371168 -2024-11-01 19:00:00+00:00,379099 -2024-11-01 20:00:00+00:00,384774 -2024-11-03 22:00:00+00:00,383014 -2024-11-03 23:00:00+00:00,370876 -2024-11-04 00:00:00+00:00,357053 -2024-11-04 01:00:00+00:00,337408 -2024-11-04 02:00:00+00:00,355302 -2024-11-04 03:00:00+00:00,339103 -2024-11-04 04:00:00+00:00,349417 -2024-11-04 05:00:00+00:00,361393 -2024-11-04 06:00:00+00:00,375862 -2024-11-04 07:00:00+00:00,395636 -2024-11-04 08:00:00+00:00,370356 -2024-11-04 09:00:00+00:00,352900 -2024-11-04 10:00:00+00:00,338630 -2024-11-04 11:00:00+00:00,324628 -2024-11-04 12:00:00+00:00,338187 -2024-11-04 13:00:00+00:00,355408 -2024-11-04 14:00:00+00:00,332335 -2024-11-04 15:00:00+00:00,350389 -2024-11-04 16:00:00+00:00,366341 -2024-11-04 17:00:00+00:00,355127 -2024-11-04 18:00:00+00:00,366222 -2024-11-04 19:00:00+00:00,376112 -2024-11-04 20:00:00+00:00,365800 -2024-11-04 21:00:00+00:00,360478 -2024-11-04 22:00:00+00:00,359455 -2024-11-04 23:00:00+00:00,361933 -2024-11-05 00:00:00+00:00,348396 -2024-11-05 01:00:00+00:00,336010 -2024-11-05 02:00:00+00:00,325052 -2024-11-05 03:00:00+00:00,333172 -2024-11-05 04:00:00+00:00,342516 -2024-11-05 05:00:00+00:00,333639 -2024-11-05 06:00:00+00:00,321697 -2024-11-05 07:00:00+00:00,309202 -2024-11-05 08:00:00+00:00,294787 -2024-11-05 09:00:00+00:00,282505 -2024-11-05 10:00:00+00:00,293129 -2024-11-05 11:00:00+00:00,287014 -2024-11-05 12:00:00+00:00,295448 -2024-11-05 13:00:00+00:00,282463 -2024-11-05 14:00:00+00:00,266419 -2024-11-05 15:00:00+00:00,294907 -2024-11-05 16:00:00+00:00,278780 -2024-11-05 17:00:00+00:00,267623 -2024-11-05 18:00:00+00:00,252365 -2024-11-05 19:00:00+00:00,241352 -2024-11-05 20:00:00+00:00,250930 -2024-11-05 21:00:00+00:00,256195 -2024-11-05 22:00:00+00:00,255796 -2024-11-05 23:00:00+00:00,242465 -2024-11-06 00:00:00+00:00,295054 -2024-11-06 01:00:00+00:00,351556 -2024-11-06 02:00:00+00:00,408130 -2024-11-06 03:00:00+00:00,341147 -2024-11-06 04:00:00+00:00,290135 -2024-11-06 05:00:00+00:00,343893 -2024-11-06 06:00:00+00:00,389253 -2024-11-06 07:00:00+00:00,338093 -2024-11-06 08:00:00+00:00,293494 -2024-11-06 09:00:00+00:00,320629 -2024-11-06 10:00:00+00:00,297191 -2024-11-06 11:00:00+00:00,324923 -2024-11-06 12:00:00+00:00,354558 -2024-11-06 13:00:00+00:00,322428 -2024-11-06 14:00:00+00:00,294013 -2024-11-06 15:00:00+00:00,327936 -2024-11-06 16:00:00+00:00,349991 -2024-11-06 17:00:00+00:00,363949 -2024-11-06 18:00:00+00:00,347583 -2024-11-06 19:00:00+00:00,361547 -2024-11-06 20:00:00+00:00,370522 -2024-11-06 21:00:00+00:00,373907 -2024-11-06 22:00:00+00:00,373325 -2024-11-06 23:00:00+00:00,365624 -2024-11-07 00:00:00+00:00,386425 -2024-11-07 01:00:00+00:00,366117 -2024-11-07 02:00:00+00:00,349676 -2024-11-07 03:00:00+00:00,338113 -2024-11-07 04:00:00+00:00,324058 -2024-11-07 05:00:00+00:00,310930 -2024-11-07 06:00:00+00:00,293804 -2024-11-07 07:00:00+00:00,318149 -2024-11-07 08:00:00+00:00,340681 -2024-11-07 09:00:00+00:00,325972 -2024-11-07 10:00:00+00:00,337971 -2024-11-07 11:00:00+00:00,348981 -2024-11-07 12:00:00+00:00,328606 -2024-11-07 13:00:00+00:00,301147 -2024-11-07 14:00:00+00:00,278294 -2024-11-07 15:00:00+00:00,253544 -2024-11-07 16:00:00+00:00,271454 -2024-11-07 17:00:00+00:00,260078 -2024-11-07 18:00:00+00:00,250587 -2024-11-07 19:00:00+00:00,290777 -2024-11-07 20:00:00+00:00,266106 -2024-11-07 21:00:00+00:00,272228 -2024-11-07 22:00:00+00:00,272606 -2024-11-07 23:00:00+00:00,278870 -2024-11-08 00:00:00+00:00,261339 -2024-11-08 01:00:00+00:00,244207 -2024-11-08 02:00:00+00:00,257443 -2024-11-08 03:00:00+00:00,245390 -2024-11-08 04:00:00+00:00,231294 -2024-11-08 05:00:00+00:00,241839 -2024-11-08 06:00:00+00:00,227186 -2024-11-08 07:00:00+00:00,209432 -2024-11-08 08:00:00+00:00,181181 -2024-11-08 09:00:00+00:00,164600 -2024-11-08 10:00:00+00:00,145646 -2024-11-08 11:00:00+00:00,158373 -2024-11-08 12:00:00+00:00,144166 -2024-11-08 13:00:00+00:00,166945 -2024-11-08 14:00:00+00:00,145549 -2024-11-08 15:00:00+00:00,121428 -2024-11-08 16:00:00+00:00,138751 -2024-11-08 17:00:00+00:00,154186 -2024-11-08 18:00:00+00:00,165735 -2024-11-08 19:00:00+00:00,156382 -2024-11-08 20:00:00+00:00,148939 -2024-11-08 21:00:00+00:00,154774 -2024-11-10 22:00:00+00:00,155852 -2024-11-10 23:00:00+00:00,161200 -2024-11-11 00:00:00+00:00,174578 -2024-11-11 01:00:00+00:00,185486 -2024-11-11 02:00:00+00:00,197287 -2024-11-11 03:00:00+00:00,205195 -2024-11-11 04:00:00+00:00,212966 -2024-11-11 05:00:00+00:00,203566 -2024-11-11 06:00:00+00:00,194805 -2024-11-11 07:00:00+00:00,211092 -2024-11-11 08:00:00+00:00,225622 -2024-11-11 09:00:00+00:00,212434 -2024-11-11 10:00:00+00:00,221270 -2024-11-11 11:00:00+00:00,230663 -2024-11-11 12:00:00+00:00,237440 -2024-11-11 13:00:00+00:00,226686 -2024-11-11 14:00:00+00:00,240343 -2024-11-11 15:00:00+00:00,251269 -2024-11-11 16:00:00+00:00,242806 -2024-11-11 17:00:00+00:00,248572 -2024-11-11 18:00:00+00:00,243072 -2024-11-11 19:00:00+00:00,238069 -2024-11-11 20:00:00+00:00,231802 -2024-11-11 21:00:00+00:00,234426 -2024-11-11 22:00:00+00:00,235462 -2024-11-11 23:00:00+00:00,230924 -2024-11-12 00:00:00+00:00,244368 -2024-11-12 01:00:00+00:00,258792 -2024-11-12 02:00:00+00:00,245539 -2024-11-12 03:00:00+00:00,234963 -2024-11-12 04:00:00+00:00,223537 -2024-11-12 05:00:00+00:00,236230 -2024-11-12 06:00:00+00:00,246638 -2024-11-12 07:00:00+00:00,261062 -2024-11-12 08:00:00+00:00,279135 -2024-11-12 09:00:00+00:00,295004 -2024-11-12 10:00:00+00:00,283562 -2024-11-12 11:00:00+00:00,294554 -2024-11-12 12:00:00+00:00,307529 -2024-11-12 13:00:00+00:00,323019 -2024-11-12 14:00:00+00:00,337224 -2024-11-12 15:00:00+00:00,353405 -2024-11-12 16:00:00+00:00,366970 -2024-11-12 17:00:00+00:00,380559 -2024-11-12 18:00:00+00:00,370950 -2024-11-12 19:00:00+00:00,379716 -2024-11-12 20:00:00+00:00,370778 -2024-11-12 21:00:00+00:00,375280 -2024-11-12 22:00:00+00:00,373706 -2024-11-12 23:00:00+00:00,377990 -2024-11-13 00:00:00+00:00,391795 -2024-11-13 01:00:00+00:00,374803 -2024-11-13 02:00:00+00:00,386463 -2024-11-13 03:00:00+00:00,395832 -2024-11-13 04:00:00+00:00,405443 -2024-11-13 05:00:00+00:00,416536 -2024-11-13 06:00:00+00:00,431747 -2024-11-13 07:00:00+00:00,446192 -2024-11-13 08:00:00+00:00,429501 -2024-11-13 09:00:00+00:00,415778 -2024-11-13 10:00:00+00:00,426736 -2024-11-13 11:00:00+00:00,417854 -2024-11-13 12:00:00+00:00,431117 -2024-11-13 13:00:00+00:00,395464 -2024-11-13 14:00:00+00:00,428793 -2024-11-13 15:00:00+00:00,457266 -2024-11-13 16:00:00+00:00,476100 -2024-11-13 17:00:00+00:00,489148 -2024-11-13 18:00:00+00:00,498285 -2024-11-13 19:00:00+00:00,487829 -2024-11-13 20:00:00+00:00,497955 -2024-11-13 21:00:00+00:00,491037 -2024-11-13 22:00:00+00:00,489061 -2024-11-13 23:00:00+00:00,494955 -2024-11-14 00:00:00+00:00,508449 -2024-11-14 01:00:00+00:00,522305 -2024-11-14 02:00:00+00:00,532576 -2024-11-14 03:00:00+00:00,523189 -2024-11-14 04:00:00+00:00,533206 -2024-11-14 05:00:00+00:00,522822 -2024-11-14 06:00:00+00:00,512461 -2024-11-14 07:00:00+00:00,498772 -2024-11-14 08:00:00+00:00,512423 -2024-11-14 09:00:00+00:00,526612 -2024-11-14 10:00:00+00:00,515127 -2024-11-14 11:00:00+00:00,502500 -2024-11-14 12:00:00+00:00,514000 -2024-11-14 13:00:00+00:00,538443 -2024-11-14 14:00:00+00:00,516348 -2024-11-14 15:00:00+00:00,538801 -2024-11-14 16:00:00+00:00,551138 -2024-11-14 17:00:00+00:00,539497 -2024-11-14 18:00:00+00:00,549495 -2024-11-14 19:00:00+00:00,558683 -2024-11-14 20:00:00+00:00,587116 -2024-11-14 21:00:00+00:00,570897 -2024-11-14 22:00:00+00:00,571713 -2024-11-14 23:00:00+00:00,578357 -2024-11-15 00:00:00+00:00,595402 -2024-11-15 01:00:00+00:00,578092 -2024-11-15 02:00:00+00:00,565116 -2024-11-15 03:00:00+00:00,574819 -2024-11-15 04:00:00+00:00,564018 -2024-11-15 05:00:00+00:00,574928 -2024-11-15 06:00:00+00:00,560783 -2024-11-15 07:00:00+00:00,544122 -2024-11-15 08:00:00+00:00,524520 -2024-11-15 09:00:00+00:00,507382 -2024-11-15 10:00:00+00:00,492001 -2024-11-15 11:00:00+00:00,503541 -2024-11-15 12:00:00+00:00,489763 -2024-11-15 13:00:00+00:00,453575 -2024-11-15 14:00:00+00:00,488046 -2024-11-15 15:00:00+00:00,456853 -2024-11-15 16:00:00+00:00,430449 -2024-11-15 17:00:00+00:00,415168 -2024-11-15 18:00:00+00:00,400497 -2024-11-15 19:00:00+00:00,415603 -2024-11-15 20:00:00+00:00,429536 -2024-11-15 21:00:00+00:00,435393 -2024-11-17 22:00:00+00:00,437677 -2024-11-17 23:00:00+00:00,446467 -2024-11-18 00:00:00+00:00,423261 -2024-11-18 01:00:00+00:00,456954 -2024-11-18 02:00:00+00:00,473627 -2024-11-18 03:00:00+00:00,461926 -2024-11-18 04:00:00+00:00,448676 -2024-11-18 05:00:00+00:00,433661 -2024-11-18 06:00:00+00:00,415385 -2024-11-18 07:00:00+00:00,395274 -2024-11-18 08:00:00+00:00,418175 -2024-11-18 09:00:00+00:00,398035 -2024-11-18 10:00:00+00:00,415825 -2024-11-18 11:00:00+00:00,430175 -2024-11-18 12:00:00+00:00,444883 -2024-11-18 13:00:00+00:00,426056 -2024-11-18 14:00:00+00:00,404007 -2024-11-18 15:00:00+00:00,425096 -2024-11-18 16:00:00+00:00,407442 -2024-11-18 17:00:00+00:00,394013 -2024-11-18 18:00:00+00:00,382710 -2024-11-18 19:00:00+00:00,394245 -2024-11-18 20:00:00+00:00,386798 -2024-11-18 21:00:00+00:00,393225 -2024-11-18 22:00:00+00:00,392452 -2024-11-18 23:00:00+00:00,389383 -2024-11-19 00:00:00+00:00,374311 -2024-11-19 01:00:00+00:00,358967 -2024-11-19 02:00:00+00:00,372081 -2024-11-19 03:00:00+00:00,383678 -2024-11-19 04:00:00+00:00,393215 -2024-11-19 05:00:00+00:00,402646 -2024-11-19 06:00:00+00:00,413421 -2024-11-19 07:00:00+00:00,429872 -2024-11-19 08:00:00+00:00,390990 -2024-11-19 09:00:00+00:00,436938 -2024-11-19 10:00:00+00:00,464008 -2024-11-19 11:00:00+00:00,484071 -2024-11-19 12:00:00+00:00,464491 -2024-11-19 13:00:00+00:00,434712 -2024-11-19 14:00:00+00:00,476029 -2024-11-19 15:00:00+00:00,446700 -2024-11-19 16:00:00+00:00,466248 -2024-11-19 17:00:00+00:00,479540 -2024-11-19 18:00:00+00:00,469715 -2024-11-19 19:00:00+00:00,479381 -2024-11-19 20:00:00+00:00,472111 -2024-11-19 21:00:00+00:00,467988 -2024-11-19 22:00:00+00:00,466715 -2024-11-19 23:00:00+00:00,471730 -2024-11-20 00:00:00+00:00,486087 -2024-11-20 01:00:00+00:00,474649 -2024-11-20 02:00:00+00:00,484381 -2024-11-20 03:00:00+00:00,492213 -2024-11-20 04:00:00+00:00,499992 -2024-11-20 05:00:00+00:00,508788 -2024-11-20 06:00:00+00:00,520694 -2024-11-20 07:00:00+00:00,536280 -2024-11-20 08:00:00+00:00,523159 -2024-11-20 09:00:00+00:00,536214 -2024-11-20 10:00:00+00:00,526194 -2024-11-20 11:00:00+00:00,536498 -2024-11-20 12:00:00+00:00,525214 -2024-11-20 13:00:00+00:00,538462 -2024-11-20 14:00:00+00:00,519090 -2024-11-20 15:00:00+00:00,494500 -2024-11-20 16:00:00+00:00,477642 -2024-11-20 17:00:00+00:00,465917 -2024-11-20 18:00:00+00:00,478750 -2024-11-20 19:00:00+00:00,488437 -2024-11-20 20:00:00+00:00,496781 -2024-11-20 21:00:00+00:00,487016 -2024-11-20 22:00:00+00:00,485500 -2024-11-20 23:00:00+00:00,481914 -2024-11-21 00:00:00+00:00,466332 -2024-11-21 01:00:00+00:00,453670 -2024-11-21 02:00:00+00:00,442907 -2024-11-21 03:00:00+00:00,432482 -2024-11-21 04:00:00+00:00,441716 -2024-11-21 05:00:00+00:00,453746 -2024-11-21 06:00:00+00:00,435061 -2024-11-21 07:00:00+00:00,462665 -2024-11-21 08:00:00+00:00,430181 -2024-11-21 09:00:00+00:00,403280 -2024-11-21 10:00:00+00:00,418674 -2024-11-21 11:00:00+00:00,432387 -2024-11-21 12:00:00+00:00,418209 -2024-11-21 13:00:00+00:00,393776 -2024-11-21 14:00:00+00:00,366535 -2024-11-21 15:00:00+00:00,391356 -2024-11-21 16:00:00+00:00,415046 -2024-11-21 17:00:00+00:00,397888 -2024-11-21 18:00:00+00:00,409334 -2024-11-21 19:00:00+00:00,398330 -2024-11-21 20:00:00+00:00,388856 -2024-11-21 21:00:00+00:00,394887 -2024-11-21 22:00:00+00:00,394212 -2024-11-21 23:00:00+00:00,386197 -2024-11-22 00:00:00+00:00,406358 -2024-11-22 01:00:00+00:00,421515 -2024-11-22 02:00:00+00:00,411366 -2024-11-22 03:00:00+00:00,399907 -2024-11-22 04:00:00+00:00,410628 -2024-11-22 05:00:00+00:00,423157 -2024-11-22 06:00:00+00:00,436559 -2024-11-22 07:00:00+00:00,419096 -2024-11-22 08:00:00+00:00,390817 -2024-11-22 09:00:00+00:00,358931 -2024-11-22 10:00:00+00:00,338795 -2024-11-22 11:00:00+00:00,324162 -2024-11-22 12:00:00+00:00,338421 -2024-11-22 13:00:00+00:00,317007 -2024-11-22 14:00:00+00:00,343569 -2024-11-22 15:00:00+00:00,375495 -2024-11-22 16:00:00+00:00,355225 -2024-11-22 17:00:00+00:00,365970 -2024-11-22 18:00:00+00:00,357513 -2024-11-22 19:00:00+00:00,365822 -2024-11-22 20:00:00+00:00,373704 -2024-11-22 21:00:00+00:00,369959 -2024-11-24 22:00:00+00:00,367564 -2024-11-24 23:00:00+00:00,355187 -2024-11-25 00:00:00+00:00,375480 -2024-11-25 01:00:00+00:00,358099 -2024-11-25 02:00:00+00:00,345276 -2024-11-25 03:00:00+00:00,357957 -2024-11-25 04:00:00+00:00,368874 -2024-11-25 05:00:00+00:00,381022 -2024-11-25 06:00:00+00:00,396088 -2024-11-25 07:00:00+00:00,416451 -2024-11-25 08:00:00+00:00,436994 -2024-11-25 09:00:00+00:00,418145 -2024-11-25 10:00:00+00:00,403159 -2024-11-25 11:00:00+00:00,412892 -2024-11-25 12:00:00+00:00,398481 -2024-11-25 13:00:00+00:00,373582 -2024-11-25 14:00:00+00:00,341197 -2024-11-25 15:00:00+00:00,366662 -2024-11-25 16:00:00+00:00,346377 -2024-11-25 17:00:00+00:00,359167 -2024-11-25 18:00:00+00:00,345746 -2024-11-25 19:00:00+00:00,356908 -2024-11-25 20:00:00+00:00,365713 -2024-11-25 21:00:00+00:00,370663 -2024-11-25 22:00:00+00:00,369830 -2024-11-25 23:00:00+00:00,385722 -2024-11-26 00:00:00+00:00,356263 -2024-11-26 01:00:00+00:00,379526 -2024-11-26 02:00:00+00:00,367505 -2024-11-26 03:00:00+00:00,356626 -2024-11-26 04:00:00+00:00,366371 -2024-11-26 05:00:00+00:00,356049 -2024-11-26 06:00:00+00:00,367733 -2024-11-26 07:00:00+00:00,350269 -2024-11-26 08:00:00+00:00,329160 -2024-11-26 09:00:00+00:00,313481 -2024-11-26 10:00:00+00:00,303302 -2024-11-26 11:00:00+00:00,313469 -2024-11-26 12:00:00+00:00,291995 -2024-11-26 13:00:00+00:00,312269 -2024-11-26 14:00:00+00:00,331583 -2024-11-26 15:00:00+00:00,308920 -2024-11-26 16:00:00+00:00,323643 -2024-11-26 17:00:00+00:00,310048 -2024-11-26 18:00:00+00:00,323263 -2024-11-26 19:00:00+00:00,306941 -2024-11-26 20:00:00+00:00,297288 -2024-11-26 21:00:00+00:00,304759 -2024-11-26 22:00:00+00:00,303900 -2024-11-26 23:00:00+00:00,298125 -2024-11-27 00:00:00+00:00,282404 -2024-11-27 01:00:00+00:00,265491 -2024-11-27 02:00:00+00:00,276775 -2024-11-27 03:00:00+00:00,266084 -2024-11-27 04:00:00+00:00,255654 -2024-11-27 05:00:00+00:00,266800 -2024-11-27 06:00:00+00:00,253848 -2024-11-27 07:00:00+00:00,234694 -2024-11-27 08:00:00+00:00,205783 -2024-11-27 09:00:00+00:00,185686 -2024-11-27 10:00:00+00:00,166156 -2024-11-27 11:00:00+00:00,179561 -2024-11-27 12:00:00+00:00,163750 -2024-11-27 13:00:00+00:00,139767 -2024-11-27 14:00:00+00:00,162588 -2024-11-27 15:00:00+00:00,133476 -2024-11-27 16:00:00+00:00,109086 -2024-11-27 17:00:00+00:00,126656 -2024-11-27 18:00:00+00:00,136223 -2024-11-27 19:00:00+00:00,145897 -2024-11-27 20:00:00+00:00,155192 -2024-11-27 21:00:00+00:00,159958 -2024-11-27 22:00:00+00:00,158721 -2024-11-27 23:00:00+00:00,164089 -2024-11-28 00:00:00+00:00,178236 -2024-11-28 01:00:00+00:00,163208 -2024-11-28 02:00:00+00:00,173345 -2024-11-28 03:00:00+00:00,182109 -2024-11-28 04:00:00+00:00,173899 -2024-11-28 05:00:00+00:00,165534 -2024-11-28 06:00:00+00:00,177575 -2024-11-28 07:00:00+00:00,191463 -2024-11-28 08:00:00+00:00,210390 -2024-11-28 09:00:00+00:00,225273 -2024-11-28 10:00:00+00:00,216211 -2024-11-28 11:00:00+00:00,208460 -2024-11-28 12:00:00+00:00,199104 -2024-11-28 13:00:00+00:00,189389 -2024-11-28 14:00:00+00:00,180851 -2024-11-28 15:00:00+00:00,171484 -2024-11-28 16:00:00+00:00,166296 -2024-11-28 17:00:00+00:00,171611 -2024-11-28 18:00:00+00:00,176091 -2024-11-28 19:00:00+00:00,175417 -2024-11-28 20:00:00+00:00,174431 -2024-11-28 21:00:00+00:00,175952 -2024-11-28 22:00:00+00:00,175672 -2024-11-28 23:00:00+00:00,167345 -2024-11-29 00:00:00+00:00,145145 -2024-11-29 01:00:00+00:00,111537 -2024-11-29 02:00:00+00:00,132547 -2024-11-29 03:00:00+00:00,119563 -2024-11-29 04:00:00+00:00,104433 -2024-11-29 05:00:00+00:00,118883 -2024-11-29 06:00:00+00:00,106609 -2024-11-29 07:00:00+00:00,87627 -2024-11-29 08:00:00+00:00,106923 -2024-11-29 09:00:00+00:00,90229 -2024-11-29 10:00:00+00:00,75781 -2024-11-29 11:00:00+00:00,86252 -2024-11-29 12:00:00+00:00,96841 -2024-11-29 13:00:00+00:00,83099 -2024-11-29 14:00:00+00:00,67309 -2024-11-29 15:00:00+00:00,85527 -2024-11-29 16:00:00+00:00,102216 -2024-11-29 17:00:00+00:00,85812 -2024-11-29 18:00:00+00:00,103465 -2024-11-29 19:00:00+00:00,73931 -2024-11-29 20:00:00+00:00,108852 -2024-11-29 21:00:00+00:00,122554 -2024-12-01 22:00:00+00:00,117761 -2024-12-01 23:00:00+00:00,132295 -2024-12-02 00:00:00+00:00,151665 -2024-12-02 01:00:00+00:00,171374 -2024-12-02 02:00:00+00:00,186335 -2024-12-02 03:00:00+00:00,175100 -2024-12-02 04:00:00+00:00,188919 -2024-12-02 05:00:00+00:00,203396 -2024-12-02 06:00:00+00:00,186514 -2024-12-02 07:00:00+00:00,162753 -2024-12-02 08:00:00+00:00,141176 -2024-12-02 09:00:00+00:00,156628 -2024-12-02 10:00:00+00:00,142094 -2024-12-02 11:00:00+00:00,129721 -2024-12-02 12:00:00+00:00,115746 -2024-12-02 13:00:00+00:00,96979 -2024-12-02 14:00:00+00:00,73750 -2024-12-02 15:00:00+00:00,37688 -2024-12-02 16:00:00+00:00,8531 -2024-12-02 17:00:00+00:00,22304 -2024-12-02 18:00:00+00:00,33768 -2024-12-02 19:00:00+00:00,23113 -2024-12-02 20:00:00+00:00,41065 -2024-12-02 21:00:00+00:00,49399 -2024-12-02 22:00:00+00:00,48761 -2024-12-02 23:00:00+00:00,43006 -2024-12-03 00:00:00+00:00,59420 -2024-12-03 01:00:00+00:00,76605 -2024-12-03 02:00:00+00:00,65207 -2024-12-03 03:00:00+00:00,76399 -2024-12-03 04:00:00+00:00,85183 -2024-12-03 05:00:00+00:00,74679 -2024-12-03 06:00:00+00:00,85327 -2024-12-03 07:00:00+00:00,71320 -2024-12-03 08:00:00+00:00,53043 -2024-12-03 09:00:00+00:00,38982 -2024-12-03 10:00:00+00:00,48440 -2024-12-03 11:00:00+00:00,38780 -2024-12-03 12:00:00+00:00,28189 -2024-12-03 13:00:00+00:00,6881 -2024-12-03 14:00:00+00:00,-23066 -2024-12-03 15:00:00+00:00,13993 -2024-12-03 16:00:00+00:00,-8623 -2024-12-03 17:00:00+00:00,8712 -2024-12-03 18:00:00+00:00,-4166 -2024-12-03 19:00:00+00:00,6141 -2024-12-03 20:00:00+00:00,-1291 -2024-12-03 21:00:00+00:00,2703 -2024-12-03 22:00:00+00:00,3257 -2024-12-03 23:00:00+00:00,7675 -2024-12-04 00:00:00+00:00,23040 -2024-12-04 01:00:00+00:00,38210 -2024-12-04 02:00:00+00:00,24895 -2024-12-04 03:00:00+00:00,38204 -2024-12-04 04:00:00+00:00,52534 -2024-12-04 05:00:00+00:00,66515 -2024-12-04 06:00:00+00:00,52794 -2024-12-04 07:00:00+00:00,69272 -2024-12-04 08:00:00+00:00,87756 -2024-12-04 09:00:00+00:00,105566 -2024-12-04 10:00:00+00:00,119907 -2024-12-04 11:00:00+00:00,134005 -2024-12-04 12:00:00+00:00,147372 -2024-12-04 13:00:00+00:00,123055 -2024-12-04 14:00:00+00:00,103459 -2024-12-04 15:00:00+00:00,72624 -2024-12-04 16:00:00+00:00,56041 -2024-12-04 17:00:00+00:00,44265 -2024-12-04 18:00:00+00:00,52409 -2024-12-04 19:00:00+00:00,69363 -2024-12-04 20:00:00+00:00,79529 -2024-12-04 21:00:00+00:00,85834 -2024-12-04 22:00:00+00:00,85148 -2024-12-04 23:00:00+00:00,90652 -2024-12-05 00:00:00+00:00,74954 -2024-12-05 01:00:00+00:00,92285 -2024-12-05 02:00:00+00:00,79853 -2024-12-05 03:00:00+00:00,71347 -2024-12-05 04:00:00+00:00,79826 -2024-12-05 05:00:00+00:00,65568 -2024-12-05 06:00:00+00:00,50866 -2024-12-05 07:00:00+00:00,64879 -2024-12-05 08:00:00+00:00,81341 -2024-12-05 09:00:00+00:00,93115 -2024-12-05 10:00:00+00:00,83237 -2024-12-05 11:00:00+00:00,93654 -2024-12-05 12:00:00+00:00,107543 -2024-12-05 13:00:00+00:00,132969 -2024-12-05 14:00:00+00:00,110827 -2024-12-05 15:00:00+00:00,88792 -2024-12-05 16:00:00+00:00,73766 -2024-12-05 17:00:00+00:00,63387 -2024-12-05 18:00:00+00:00,70248 -2024-12-05 19:00:00+00:00,61233 -2024-12-05 20:00:00+00:00,67456 -2024-12-05 21:00:00+00:00,72631 -2024-12-05 22:00:00+00:00,71191 -2024-12-05 23:00:00+00:00,75377 -2024-12-06 00:00:00+00:00,60664 -2024-12-06 01:00:00+00:00,47252 -2024-12-06 02:00:00+00:00,36318 -2024-12-06 03:00:00+00:00,44575 -2024-12-06 04:00:00+00:00,52198 -2024-12-06 05:00:00+00:00,44255 -2024-12-06 06:00:00+00:00,34563 -2024-12-06 07:00:00+00:00,47762 -2024-12-06 08:00:00+00:00,61967 -2024-12-06 09:00:00+00:00,71585 -2024-12-06 10:00:00+00:00,61765 -2024-12-06 11:00:00+00:00,52301 -2024-12-06 12:00:00+00:00,40823 -2024-12-06 13:00:00+00:00,4408 -2024-12-06 14:00:00+00:00,-34032 -2024-12-06 15:00:00+00:00,-7945 -2024-12-06 16:00:00+00:00,-26850 -2024-12-06 17:00:00+00:00,-15013 -2024-12-06 18:00:00+00:00,-7336 -2024-12-06 19:00:00+00:00,-14666 -2024-12-06 20:00:00+00:00,-21437 -2024-12-06 21:00:00+00:00,-16738 -2024-12-08 22:00:00+00:00,-18454 -2024-12-08 23:00:00+00:00,-23438 -2024-12-09 00:00:00+00:00,-36538 -2024-12-09 01:00:00+00:00,-24574 -2024-12-09 02:00:00+00:00,-34337 -2024-12-09 03:00:00+00:00,-26370 -2024-12-09 04:00:00+00:00,-34617 -2024-12-09 05:00:00+00:00,-25733 -2024-12-09 06:00:00+00:00,-16093 -2024-12-09 07:00:00+00:00,-4246 -2024-12-09 08:00:00+00:00,11291 -2024-12-09 09:00:00+00:00,-2117 -2024-12-09 10:00:00+00:00,7857 -2024-12-09 11:00:00+00:00,15707 -2024-12-09 12:00:00+00:00,24981 -2024-12-09 13:00:00+00:00,38121 -2024-12-09 14:00:00+00:00,51758 -2024-12-09 15:00:00+00:00,67150 -2024-12-09 16:00:00+00:00,77757 -2024-12-09 17:00:00+00:00,84605 -2024-12-09 18:00:00+00:00,79873 -2024-12-09 19:00:00+00:00,74717 -2024-12-09 20:00:00+00:00,69422 -2024-12-09 21:00:00+00:00,64106 -2024-12-09 22:00:00+00:00,65253 -2024-12-09 23:00:00+00:00,69699 -2024-12-10 00:00:00+00:00,83751 -2024-12-10 01:00:00+00:00,72754 -2024-12-10 02:00:00+00:00,59898 -2024-12-10 03:00:00+00:00,49537 -2024-12-10 04:00:00+00:00,60284 -2024-12-10 05:00:00+00:00,50168 -2024-12-10 06:00:00+00:00,62447 -2024-12-10 07:00:00+00:00,74576 -2024-12-10 08:00:00+00:00,91445 -2024-12-10 09:00:00+00:00,76819 -2024-12-10 10:00:00+00:00,67072 -2024-12-10 11:00:00+00:00,76125 -2024-12-10 12:00:00+00:00,85862 -2024-12-10 13:00:00+00:00,72069 -2024-12-10 14:00:00+00:00,88056 -2024-12-10 15:00:00+00:00,104605 -2024-12-10 16:00:00+00:00,92280 -2024-12-10 17:00:00+00:00,100143 -2024-12-10 18:00:00+00:00,92355 -2024-12-10 19:00:00+00:00,97784 -2024-12-10 20:00:00+00:00,103931 -2024-12-10 21:00:00+00:00,108427 -2024-12-10 22:00:00+00:00,108132 -2024-12-10 23:00:00+00:00,104725 -2024-12-11 00:00:00+00:00,94055 -2024-12-11 01:00:00+00:00,83528 -2024-12-11 02:00:00+00:00,74610 -2024-12-11 03:00:00+00:00,81305 -2024-12-11 04:00:00+00:00,74939 -2024-12-11 05:00:00+00:00,81668 -2024-12-11 06:00:00+00:00,89221 -2024-12-11 07:00:00+00:00,69168 -2024-12-11 08:00:00+00:00,52352 -2024-12-11 09:00:00+00:00,84477 -2024-12-11 10:00:00+00:00,67931 -2024-12-11 11:00:00+00:00,56732 -2024-12-11 12:00:00+00:00,68939 -2024-12-11 13:00:00+00:00,38047 -2024-12-11 14:00:00+00:00,11249 -2024-12-11 15:00:00+00:00,36865 -2024-12-11 16:00:00+00:00,22827 -2024-12-11 17:00:00+00:00,30659 -2024-12-11 18:00:00+00:00,42506 -2024-12-11 19:00:00+00:00,33467 -2024-12-11 20:00:00+00:00,28065 -2024-12-11 21:00:00+00:00,24223 -2024-12-11 22:00:00+00:00,23367 -2024-12-11 23:00:00+00:00,19339 -2024-12-12 00:00:00+00:00,6316 -2024-12-12 01:00:00+00:00,-6867 -2024-12-12 02:00:00+00:00,1293 -2024-12-12 03:00:00+00:00,8692 -2024-12-12 04:00:00+00:00,2009 -2024-12-12 05:00:00+00:00,14311 -2024-12-12 06:00:00+00:00,1000 -2024-12-12 07:00:00+00:00,15994 -2024-12-12 08:00:00+00:00,-2014 -2024-12-12 09:00:00+00:00,10886 -2024-12-12 10:00:00+00:00,464 -2024-12-12 11:00:00+00:00,-10219 -2024-12-12 12:00:00+00:00,1827 -2024-12-12 13:00:00+00:00,-29570 -2024-12-12 14:00:00+00:00,1663 -2024-12-12 15:00:00+00:00,25508 -2024-12-12 16:00:00+00:00,11544 -2024-12-12 17:00:00+00:00,22075 -2024-12-12 18:00:00+00:00,33330 -2024-12-12 19:00:00+00:00,41484 -2024-12-12 20:00:00+00:00,46990 -2024-12-12 21:00:00+00:00,43332 -2024-12-12 22:00:00+00:00,42328 -2024-12-12 23:00:00+00:00,47052 -2024-12-13 00:00:00+00:00,61620 -2024-12-13 01:00:00+00:00,49538 -2024-12-13 02:00:00+00:00,59656 -2024-12-13 03:00:00+00:00,51726 -2024-12-13 04:00:00+00:00,59034 -2024-12-13 05:00:00+00:00,52675 -2024-12-13 06:00:00+00:00,44860 -2024-12-13 07:00:00+00:00,57842 -2024-12-13 08:00:00+00:00,71280 -2024-12-13 09:00:00+00:00,82177 -2024-12-13 10:00:00+00:00,91680 -2024-12-13 11:00:00+00:00,99013 -2024-12-13 12:00:00+00:00,87885 -2024-12-13 13:00:00+00:00,76038 -2024-12-13 14:00:00+00:00,87833 -2024-12-13 15:00:00+00:00,100049 -2024-12-13 16:00:00+00:00,108416 -2024-12-13 17:00:00+00:00,102274 -2024-12-13 18:00:00+00:00,107885 -2024-12-13 19:00:00+00:00,102524 -2024-12-13 20:00:00+00:00,98702 -2024-12-13 21:00:00+00:00,96623 -2024-12-15 22:00:00+00:00,94690 -2024-12-15 23:00:00+00:00,89774 -2024-12-16 00:00:00+00:00,101934 -2024-12-16 01:00:00+00:00,112630 -2024-12-16 02:00:00+00:00,104358 -2024-12-16 03:00:00+00:00,97408 -2024-12-16 04:00:00+00:00,91701 -2024-12-16 05:00:00+00:00,85104 -2024-12-16 06:00:00+00:00,77553 -2024-12-16 07:00:00+00:00,67273 -2024-12-16 08:00:00+00:00,84077 -2024-12-16 09:00:00+00:00,94609 -2024-12-16 10:00:00+00:00,102751 -2024-12-16 11:00:00+00:00,96307 -2024-12-16 12:00:00+00:00,105544 -2024-12-16 13:00:00+00:00,95909 -2024-12-16 14:00:00+00:00,109308 -2024-12-16 15:00:00+00:00,94927 -2024-12-16 16:00:00+00:00,84144 -2024-12-16 17:00:00+00:00,75700 -2024-12-16 18:00:00+00:00,70153 -2024-12-16 19:00:00+00:00,75707 -2024-12-16 20:00:00+00:00,78646 -2024-12-16 21:00:00+00:00,80998 -2024-12-16 22:00:00+00:00,80295 -2024-12-16 23:00:00+00:00,77673 -2024-12-17 00:00:00+00:00,89777 -2024-12-17 01:00:00+00:00,78977 -2024-12-17 02:00:00+00:00,69094 -2024-12-17 03:00:00+00:00,75994 -2024-12-17 04:00:00+00:00,83865 -2024-12-17 05:00:00+00:00,93179 -2024-12-17 06:00:00+00:00,102927 -2024-12-17 07:00:00+00:00,92011 -2024-12-17 08:00:00+00:00,77403 -2024-12-17 09:00:00+00:00,64990 -2024-12-17 10:00:00+00:00,74963 -2024-12-17 11:00:00+00:00,84400 -2024-12-17 12:00:00+00:00,75919 -2024-12-17 13:00:00+00:00,56551 -2024-12-17 14:00:00+00:00,37245 -2024-12-17 15:00:00+00:00,19067 -2024-12-17 16:00:00+00:00,6293 -2024-12-17 17:00:00+00:00,-3731 -2024-12-17 18:00:00+00:00,6171 -2024-12-17 19:00:00+00:00,13057 -2024-12-17 20:00:00+00:00,19045 -2024-12-17 21:00:00+00:00,15563 -2024-12-17 22:00:00+00:00,14946 -2024-12-17 23:00:00+00:00,18158 -2024-12-18 00:00:00+00:00,29536 -2024-12-18 01:00:00+00:00,20279 -2024-12-18 02:00:00+00:00,28276 -2024-12-18 03:00:00+00:00,22167 -2024-12-18 04:00:00+00:00,14692 -2024-12-18 05:00:00+00:00,7828 -2024-12-18 06:00:00+00:00,15779 -2024-12-18 07:00:00+00:00,26575 -2024-12-18 08:00:00+00:00,17055 -2024-12-18 09:00:00+00:00,24617 -2024-12-18 10:00:00+00:00,18067 -2024-12-18 11:00:00+00:00,24165 -2024-12-18 12:00:00+00:00,31758 -2024-12-18 13:00:00+00:00,44498 -2024-12-18 14:00:00+00:00,31731 -2024-12-18 15:00:00+00:00,43607 -2024-12-18 16:00:00+00:00,33839 -2024-12-18 17:00:00+00:00,26066 -2024-12-18 18:00:00+00:00,17957 -2024-12-18 19:00:00+00:00,60100 -2024-12-18 20:00:00+00:00,90937 -2024-12-18 21:00:00+00:00,103935 -2024-12-18 22:00:00+00:00,102687 -2024-12-18 23:00:00+00:00,93939 -2024-12-19 00:00:00+00:00,111978 -2024-12-19 01:00:00+00:00,97217 -2024-12-19 02:00:00+00:00,112326 -2024-12-19 03:00:00+00:00,125238 -2024-12-19 04:00:00+00:00,133206 -2024-12-19 05:00:00+00:00,123409 -2024-12-19 06:00:00+00:00,146466 -2024-12-19 07:00:00+00:00,181662 -2024-12-19 08:00:00+00:00,207777 -2024-12-19 09:00:00+00:00,230217 -2024-12-19 10:00:00+00:00,214704 -2024-12-19 11:00:00+00:00,200743 -2024-12-19 12:00:00+00:00,219153 -2024-12-19 13:00:00+00:00,192807 -2024-12-19 14:00:00+00:00,219067 -2024-12-19 15:00:00+00:00,244485 -2024-12-19 16:00:00+00:00,265062 -2024-12-19 17:00:00+00:00,250101 -2024-12-19 18:00:00+00:00,237041 -2024-12-19 19:00:00+00:00,225956 -2024-12-19 20:00:00+00:00,218148 -2024-12-19 21:00:00+00:00,223262 -2024-12-19 22:00:00+00:00,225359 -2024-12-19 23:00:00+00:00,234142 -2024-12-20 00:00:00+00:00,253600 -2024-12-20 01:00:00+00:00,233255 -2024-12-20 02:00:00+00:00,216298 -2024-12-20 03:00:00+00:00,232446 -2024-12-20 04:00:00+00:00,243158 -2024-12-20 05:00:00+00:00,231855 -2024-12-20 06:00:00+00:00,216156 -2024-12-20 07:00:00+00:00,200847 -2024-12-20 08:00:00+00:00,220922 -2024-12-20 09:00:00+00:00,203016 -2024-12-20 10:00:00+00:00,214718 -2024-12-20 11:00:00+00:00,223321 -2024-12-20 12:00:00+00:00,210654 -2024-12-20 13:00:00+00:00,184311 -2024-12-20 14:00:00+00:00,210347 -2024-12-20 15:00:00+00:00,181453 -2024-12-20 16:00:00+00:00,161662 -2024-12-20 17:00:00+00:00,146544 -2024-12-20 18:00:00+00:00,157375 -2024-12-20 19:00:00+00:00,148099 -2024-12-20 20:00:00+00:00,156142 -2024-12-20 21:00:00+00:00,164738 -2024-12-22 22:00:00+00:00,165187 -2024-12-22 23:00:00+00:00,173541 -2024-12-23 00:00:00+00:00,185124 -2024-12-23 01:00:00+00:00,175873 -2024-12-23 02:00:00+00:00,185512 -2024-12-23 03:00:00+00:00,179184 -2024-12-23 04:00:00+00:00,185952 -2024-12-23 05:00:00+00:00,190472 -2024-12-23 06:00:00+00:00,184154 -2024-12-23 07:00:00+00:00,193535 -2024-12-23 08:00:00+00:00,180327 -2024-12-23 09:00:00+00:00,191922 -2024-12-23 10:00:00+00:00,201880 -2024-12-23 11:00:00+00:00,209521 -2024-12-23 12:00:00+00:00,218937 -2024-12-23 13:00:00+00:00,230916 -2024-12-23 14:00:00+00:00,218184 -2024-12-23 15:00:00+00:00,201909 -2024-12-23 16:00:00+00:00,193337 -2024-12-23 17:00:00+00:00,201412 -2024-12-23 18:00:00+00:00,194580 -2024-12-23 19:00:00+00:00,189632 -2024-12-23 20:00:00+00:00,195046 -2024-12-23 21:00:00+00:00,199469 -2024-12-23 22:00:00+00:00,198260 -2024-12-23 23:00:00+00:00,203603 -2024-12-24 00:00:00+00:00,212126 -2024-12-24 01:00:00+00:00,204329 -2024-12-24 02:00:00+00:00,199372 -2024-12-24 03:00:00+00:00,193534 -2024-12-24 04:00:00+00:00,186562 -2024-12-24 05:00:00+00:00,178874 -2024-12-24 06:00:00+00:00,186694 -2024-12-24 07:00:00+00:00,192139 -2024-12-24 08:00:00+00:00,185460 -2024-12-24 09:00:00+00:00,191433 -2024-12-24 10:00:00+00:00,187366 -2024-12-24 11:00:00+00:00,191800 -2024-12-24 12:00:00+00:00,185540 -2024-12-24 13:00:00+00:00,191306 -2024-12-24 14:00:00+00:00,198584 -2024-12-24 15:00:00+00:00,206045 -2024-12-24 16:00:00+00:00,199105 -2024-12-24 17:00:00+00:00,202522 -2024-12-24 18:00:00+00:00,209003 -2024-12-24 19:00:00+00:00,204837 -2024-12-24 20:00:00+00:00,203941 -2024-12-24 21:00:00+00:00,204135 -2024-12-25 22:00:00+00:00,204316 -2024-12-25 23:00:00+00:00,198586 -2024-12-26 00:00:00+00:00,207075 -2024-12-26 01:00:00+00:00,214403 -2024-12-26 02:00:00+00:00,218266 -2024-12-26 03:00:00+00:00,215175 -2024-12-26 04:00:00+00:00,219281 -2024-12-26 05:00:00+00:00,214385 -2024-12-26 06:00:00+00:00,220504 -2024-12-26 07:00:00+00:00,226408 -2024-12-26 08:00:00+00:00,218512 -2024-12-26 09:00:00+00:00,225303 -2024-12-26 10:00:00+00:00,230143 -2024-12-26 11:00:00+00:00,233584 -2024-12-26 12:00:00+00:00,238187 -2024-12-26 13:00:00+00:00,244937 -2024-12-26 14:00:00+00:00,251876 -2024-12-26 15:00:00+00:00,260333 -2024-12-26 16:00:00+00:00,251614 -2024-12-26 17:00:00+00:00,259077 -2024-12-26 18:00:00+00:00,250255 -2024-12-26 19:00:00+00:00,256818 -2024-12-26 20:00:00+00:00,250604 -2024-12-26 21:00:00+00:00,255077 -2024-12-26 22:00:00+00:00,254205 -2024-12-26 23:00:00+00:00,247912 -2024-12-27 00:00:00+00:00,258681 -2024-12-27 01:00:00+00:00,249472 -2024-12-27 02:00:00+00:00,239338 -2024-12-27 03:00:00+00:00,244605 -2024-12-27 04:00:00+00:00,239907 -2024-12-27 05:00:00+00:00,245737 -2024-12-27 06:00:00+00:00,238563 -2024-12-27 07:00:00+00:00,246856 -2024-12-27 08:00:00+00:00,257271 -2024-12-27 09:00:00+00:00,263648 -2024-12-27 10:00:00+00:00,257518 -2024-12-27 11:00:00+00:00,251430 -2024-12-27 12:00:00+00:00,259538 -2024-12-27 13:00:00+00:00,268333 -2024-12-27 14:00:00+00:00,278965 -2024-12-27 15:00:00+00:00,266079 -2024-12-27 16:00:00+00:00,280335 -2024-12-27 17:00:00+00:00,289762 -2024-12-27 18:00:00+00:00,296388 -2024-12-27 19:00:00+00:00,301431 -2024-12-27 20:00:00+00:00,296175 -2024-12-27 21:00:00+00:00,292632 -2024-12-29 22:00:00+00:00,291695 -2024-12-29 23:00:00+00:00,295130 -2024-12-30 00:00:00+00:00,303726 -2024-12-30 01:00:00+00:00,299312 -2024-12-30 02:00:00+00:00,303266 -2024-12-30 03:00:00+00:00,306098 -2024-12-30 04:00:00+00:00,303038 -2024-12-30 05:00:00+00:00,309835 -2024-12-30 06:00:00+00:00,318257 -2024-12-30 07:00:00+00:00,326267 -2024-12-30 08:00:00+00:00,335313 -2024-12-30 09:00:00+00:00,327848 -2024-12-30 10:00:00+00:00,321359 -2024-12-30 11:00:00+00:00,313833 -2024-12-30 12:00:00+00:00,303100 -2024-12-30 13:00:00+00:00,288806 -2024-12-30 14:00:00+00:00,268801 -2024-12-30 15:00:00+00:00,300199 -2024-12-30 16:00:00+00:00,315497 -2024-12-30 17:00:00+00:00,306567 -2024-12-30 18:00:00+00:00,299511 -2024-12-30 19:00:00+00:00,304987 -2024-12-30 20:00:00+00:00,299097 -2024-12-30 21:00:00+00:00,303739 -2024-12-30 22:00:00+00:00,304506 -2024-12-30 23:00:00+00:00,308614 -2024-12-31 00:00:00+00:00,301991 -2024-12-31 01:00:00+00:00,290034 -2024-12-31 02:00:00+00:00,280489 -2024-12-31 03:00:00+00:00,287155 -2024-12-31 04:00:00+00:00,280996 -2024-12-31 05:00:00+00:00,287084 -2024-12-31 06:00:00+00:00,293175 -2024-12-31 07:00:00+00:00,284613 -2024-12-31 08:00:00+00:00,273512 -2024-12-31 09:00:00+00:00,282203 -2024-12-31 10:00:00+00:00,295499 -2024-12-31 11:00:00+00:00,287928 -2024-12-31 12:00:00+00:00,298377 -2024-12-31 13:00:00+00:00,312861 -2024-12-31 14:00:00+00:00,294462 -2024-12-31 15:00:00+00:00,320174 -2024-12-31 16:00:00+00:00,335748 -2024-12-31 17:00:00+00:00,321762 -2024-12-31 18:00:00+00:00,313582 -2024-12-31 19:00:00+00:00,319148 -2024-12-31 20:00:00+00:00,324332 -2024-12-31 21:00:00+00:00,320971 -2025-01-01 22:00:00+00:00,321861 -2025-01-01 23:00:00+00:00,328868 -2025-01-02 00:00:00+00:00,316780 -2025-01-02 01:00:00+00:00,327131 -2025-01-02 02:00:00+00:00,321758 -2025-01-02 03:00:00+00:00,317881 -2025-01-02 04:00:00+00:00,313182 -2025-01-02 05:00:00+00:00,318591 -2025-01-02 06:00:00+00:00,308613 -2025-01-02 07:00:00+00:00,323299 -2025-01-02 08:00:00+00:00,342328 -2025-01-02 09:00:00+00:00,353961 -2025-01-02 10:00:00+00:00,367050 -2025-01-02 11:00:00+00:00,379091 -2025-01-02 12:00:00+00:00,367011 -2025-01-02 13:00:00+00:00,344534 -2025-01-02 14:00:00+00:00,368159 -2025-01-02 15:00:00+00:00,396111 -2025-01-02 16:00:00+00:00,418993 -2025-01-02 17:00:00+00:00,404438 -2025-01-02 18:00:00+00:00,393500 -2025-01-02 19:00:00+00:00,401672 -2025-01-02 20:00:00+00:00,406301 -2025-01-02 21:00:00+00:00,400867 -2025-01-02 22:00:00+00:00,394257 -2025-01-02 23:00:00+00:00,391029 -2025-01-03 00:00:00+00:00,381282 -2025-01-03 01:00:00+00:00,388306 -2025-01-03 02:00:00+00:00,395346 -2025-01-03 03:00:00+00:00,388034 -2025-01-03 04:00:00+00:00,382257 -2025-01-03 05:00:00+00:00,388273 -2025-01-03 06:00:00+00:00,383681 -2025-01-03 07:00:00+00:00,371059 -2025-01-03 08:00:00+00:00,383093 -2025-01-03 09:00:00+00:00,371992 -2025-01-03 10:00:00+00:00,380199 -2025-01-03 11:00:00+00:00,372846 -2025-01-03 12:00:00+00:00,364539 -2025-01-03 13:00:00+00:00,375587 -2025-01-03 14:00:00+00:00,364327 -2025-01-03 15:00:00+00:00,383441 -2025-01-03 16:00:00+00:00,374780 -2025-01-03 17:00:00+00:00,365472 -2025-01-03 18:00:00+00:00,359962 -2025-01-03 19:00:00+00:00,364085 -2025-01-03 20:00:00+00:00,368625 -2025-01-03 21:00:00+00:00,365626 -2025-01-05 22:00:00+00:00,366752 -2025-01-05 23:00:00+00:00,372619 -2025-01-06 00:00:00+00:00,386035 -2025-01-06 01:00:00+00:00,396013 -2025-01-06 02:00:00+00:00,404243 -2025-01-06 03:00:00+00:00,412119 -2025-01-06 04:00:00+00:00,417885 -2025-01-06 05:00:00+00:00,424226 -2025-01-06 06:00:00+00:00,417464 -2025-01-06 07:00:00+00:00,425072 -2025-01-06 08:00:00+00:00,437163 -2025-01-06 09:00:00+00:00,448604 -2025-01-06 10:00:00+00:00,456857 -2025-01-06 11:00:00+00:00,427766 -2025-01-06 12:00:00+00:00,403805 -2025-01-06 13:00:00+00:00,379832 -2025-01-06 14:00:00+00:00,414415 -2025-01-06 15:00:00+00:00,435184 -2025-01-06 16:00:00+00:00,450039 -2025-01-06 17:00:00+00:00,441159 -2025-01-06 18:00:00+00:00,449587 -2025-01-06 19:00:00+00:00,458399 -2025-01-06 20:00:00+00:00,464407 -2025-01-06 21:00:00+00:00,468038 -2025-01-06 22:00:00+00:00,467333 -2025-01-06 23:00:00+00:00,471221 -2025-01-07 00:00:00+00:00,489502 -2025-01-07 01:00:00+00:00,503223 -2025-01-07 02:00:00+00:00,494881 -2025-01-07 03:00:00+00:00,488336 -2025-01-07 04:00:00+00:00,482022 -2025-01-07 05:00:00+00:00,472525 -2025-01-07 06:00:00+00:00,461694 -2025-01-07 07:00:00+00:00,444604 -2025-01-07 08:00:00+00:00,425129 -2025-01-07 09:00:00+00:00,438066 -2025-01-07 10:00:00+00:00,449005 -2025-01-07 11:00:00+00:00,440712 -2025-01-07 12:00:00+00:00,450363 -2025-01-07 13:00:00+00:00,439731 -2025-01-07 14:00:00+00:00,452951 -2025-01-07 15:00:00+00:00,485219 -2025-01-07 16:00:00+00:00,459053 -2025-01-07 17:00:00+00:00,443145 -2025-01-07 18:00:00+00:00,454882 -2025-01-07 19:00:00+00:00,447792 -2025-01-07 20:00:00+00:00,454670 -2025-01-07 21:00:00+00:00,458712 -2025-01-07 22:00:00+00:00,457540 -2025-01-07 23:00:00+00:00,463246 -2025-01-08 00:00:00+00:00,449508 -2025-01-08 01:00:00+00:00,440715 -2025-01-08 02:00:00+00:00,446810 -2025-01-08 03:00:00+00:00,452417 -2025-01-08 04:00:00+00:00,456587 -2025-01-08 05:00:00+00:00,450560 -2025-01-08 06:00:00+00:00,443618 -2025-01-08 07:00:00+00:00,456365 -2025-01-08 08:00:00+00:00,469145 -2025-01-08 09:00:00+00:00,459065 -2025-01-08 10:00:00+00:00,467287 -2025-01-08 11:00:00+00:00,481120 -2025-01-08 12:00:00+00:00,493081 -2025-01-08 13:00:00+00:00,464430 -2025-01-08 14:00:00+00:00,483761 -2025-01-08 15:00:00+00:00,498860 -2025-01-08 16:00:00+00:00,486754 -2025-01-08 17:00:00+00:00,496531 -2025-01-08 18:00:00+00:00,507334 -2025-01-08 19:00:00+00:00,516951 -2025-01-08 20:00:00+00:00,511357 -2025-01-08 21:00:00+00:00,507240 -2025-01-08 22:00:00+00:00,506042 -2025-01-08 23:00:00+00:00,500784 -2025-01-09 00:00:00+00:00,511379 -2025-01-09 01:00:00+00:00,503296 -2025-01-09 02:00:00+00:00,497935 -2025-01-09 03:00:00+00:00,491501 -2025-01-09 04:00:00+00:00,483860 -2025-01-09 05:00:00+00:00,492853 -2025-01-09 06:00:00+00:00,501436 -2025-01-09 07:00:00+00:00,512415 -2025-01-09 08:00:00+00:00,499448 -2025-01-09 09:00:00+00:00,490130 -2025-01-09 10:00:00+00:00,482415 -2025-01-09 11:00:00+00:00,473531 -2025-01-09 12:00:00+00:00,463132 -2025-01-09 13:00:00+00:00,450741 -2025-01-09 14:00:00+00:00,460692 -2025-01-09 15:00:00+00:00,470188 -2025-01-09 16:00:00+00:00,477115 -2025-01-09 17:00:00+00:00,482847 -2025-01-09 18:00:00+00:00,479613 -2025-01-09 19:00:00+00:00,482194 -2025-01-09 20:00:00+00:00,484654 -2025-01-09 21:00:00+00:00,482961 -2025-01-09 22:00:00+00:00,483827 -2025-01-09 23:00:00+00:00,480418 -2025-01-10 00:00:00+00:00,467810 -2025-01-10 01:00:00+00:00,478346 -2025-01-10 02:00:00+00:00,484808 -2025-01-10 03:00:00+00:00,481086 -2025-01-10 04:00:00+00:00,486755 -2025-01-10 05:00:00+00:00,492810 -2025-01-10 06:00:00+00:00,485754 -2025-01-10 07:00:00+00:00,494476 -2025-01-10 08:00:00+00:00,475909 -2025-01-10 09:00:00+00:00,490991 -2025-01-10 10:00:00+00:00,500743 -2025-01-10 11:00:00+00:00,493030 -2025-01-10 12:00:00+00:00,484254 -2025-01-10 13:00:00+00:00,521235 -2025-01-10 14:00:00+00:00,478730 -2025-01-10 15:00:00+00:00,438308 -2025-01-10 16:00:00+00:00,460199 -2025-01-10 17:00:00+00:00,446394 -2025-01-10 18:00:00+00:00,455159 -2025-01-10 19:00:00+00:00,447599 -2025-01-10 20:00:00+00:00,441905 -2025-01-10 21:00:00+00:00,435550 -2025-01-12 22:00:00+00:00,433500 -2025-01-12 23:00:00+00:00,438878 -2025-01-13 00:00:00+00:00,430346 -2025-01-13 01:00:00+00:00,418151 -2025-01-13 02:00:00+00:00,426962 -2025-01-13 03:00:00+00:00,417591 -2025-01-13 04:00:00+00:00,424574 -2025-01-13 05:00:00+00:00,416849 -2025-01-13 06:00:00+00:00,426091 -2025-01-13 07:00:00+00:00,410316 -2025-01-13 08:00:00+00:00,429292 -2025-01-13 09:00:00+00:00,410039 -2025-01-13 10:00:00+00:00,422561 -2025-01-13 11:00:00+00:00,413898 -2025-01-13 12:00:00+00:00,400803 -2025-01-13 13:00:00+00:00,419663 -2025-01-13 14:00:00+00:00,440639 -2025-01-13 15:00:00+00:00,459728 -2025-01-13 16:00:00+00:00,445760 -2025-01-13 17:00:00+00:00,435811 -2025-01-13 18:00:00+00:00,441591 -2025-01-13 19:00:00+00:00,448728 -2025-01-13 20:00:00+00:00,442386 -2025-01-13 21:00:00+00:00,435573 -2025-01-13 22:00:00+00:00,433631 -2025-01-13 23:00:00+00:00,425753 -2025-01-14 00:00:00+00:00,440294 -2025-01-14 01:00:00+00:00,418681 -2025-01-14 02:00:00+00:00,428407 -2025-01-14 03:00:00+00:00,421486 -2025-01-14 04:00:00+00:00,416098 -2025-01-14 05:00:00+00:00,426819 -2025-01-14 06:00:00+00:00,418754 -2025-01-14 07:00:00+00:00,434186 -2025-01-14 08:00:00+00:00,449465 -2025-01-14 09:00:00+00:00,464745 -2025-01-14 10:00:00+00:00,456242 -2025-01-14 11:00:00+00:00,463185 -2025-01-14 12:00:00+00:00,451824 -2025-01-14 13:00:00+00:00,423730 -2025-01-14 14:00:00+00:00,446614 -2025-01-14 15:00:00+00:00,468339 -2025-01-14 16:00:00+00:00,449313 -2025-01-14 17:00:00+00:00,458698 -2025-01-14 18:00:00+00:00,452806 -2025-01-14 19:00:00+00:00,448111 -2025-01-14 20:00:00+00:00,452492 -2025-01-14 21:00:00+00:00,447036 -2025-01-14 22:00:00+00:00,446095 -2025-01-14 23:00:00+00:00,448769 -2025-01-15 00:00:00+00:00,438240 -2025-01-15 01:00:00+00:00,428819 -2025-01-15 02:00:00+00:00,434756 -2025-01-15 03:00:00+00:00,429553 -2025-01-15 04:00:00+00:00,420754 -2025-01-15 05:00:00+00:00,405790 -2025-01-15 06:00:00+00:00,415572 -2025-01-15 07:00:00+00:00,401128 -2025-01-15 08:00:00+00:00,416850 -2025-01-15 09:00:00+00:00,402518 -2025-01-15 10:00:00+00:00,393469 -2025-01-15 11:00:00+00:00,401847 -2025-01-15 12:00:00+00:00,393147 -2025-01-15 13:00:00+00:00,361083 -2025-01-15 14:00:00+00:00,331799 -2025-01-15 15:00:00+00:00,355848 -2025-01-15 16:00:00+00:00,375499 -2025-01-15 17:00:00+00:00,365466 -2025-01-15 18:00:00+00:00,358497 -2025-01-15 19:00:00+00:00,352223 -2025-01-15 20:00:00+00:00,347145 -2025-01-15 21:00:00+00:00,351797 -2025-01-15 22:00:00+00:00,349594 -2025-01-15 23:00:00+00:00,346059 -2025-01-16 00:00:00+00:00,332798 -2025-01-16 01:00:00+00:00,314240 -2025-01-16 02:00:00+00:00,334718 -2025-01-16 03:00:00+00:00,345457 -2025-01-16 04:00:00+00:00,353332 -2025-01-16 05:00:00+00:00,362167 -2025-01-16 06:00:00+00:00,352583 -2025-01-16 07:00:00+00:00,363853 -2025-01-16 08:00:00+00:00,350166 -2025-01-16 09:00:00+00:00,339718 -2025-01-16 10:00:00+00:00,331397 -2025-01-16 11:00:00+00:00,339121 -2025-01-16 12:00:00+00:00,349942 -2025-01-16 13:00:00+00:00,325477 -2025-01-16 14:00:00+00:00,345788 -2025-01-16 15:00:00+00:00,315377 -2025-01-16 16:00:00+00:00,339123 -2025-01-16 17:00:00+00:00,324505 -2025-01-16 18:00:00+00:00,332482 -2025-01-16 19:00:00+00:00,324411 -2025-01-16 20:00:00+00:00,318994 -2025-01-16 21:00:00+00:00,315705 -2025-01-16 22:00:00+00:00,317134 -2025-01-16 23:00:00+00:00,320315 -2025-01-17 00:00:00+00:00,305747 -2025-01-17 01:00:00+00:00,317008 -2025-01-17 02:00:00+00:00,326145 -2025-01-17 03:00:00+00:00,332870 -2025-01-17 04:00:00+00:00,327526 -2025-01-17 05:00:00+00:00,335591 -2025-01-17 06:00:00+00:00,343417 -2025-01-17 07:00:00+00:00,332043 -2025-01-17 08:00:00+00:00,343027 -2025-01-17 09:00:00+00:00,355711 -2025-01-17 10:00:00+00:00,364770 -2025-01-17 11:00:00+00:00,356315 -2025-01-17 12:00:00+00:00,365846 -2025-01-17 13:00:00+00:00,353534 -2025-01-17 14:00:00+00:00,376296 -2025-01-17 15:00:00+00:00,397589 -2025-01-17 16:00:00+00:00,412768 -2025-01-17 17:00:00+00:00,404471 -2025-01-17 18:00:00+00:00,399025 -2025-01-17 19:00:00+00:00,393684 -2025-01-17 20:00:00+00:00,398367 -2025-01-17 21:00:00+00:00,401884 -2025-01-19 22:00:00+00:00,402998 -2025-01-19 23:00:00+00:00,397545 -2025-01-20 00:00:00+00:00,387367 -2025-01-20 01:00:00+00:00,376407 -2025-01-20 02:00:00+00:00,384545 -2025-01-20 03:00:00+00:00,378204 -2025-01-20 04:00:00+00:00,384451 -2025-01-20 05:00:00+00:00,390428 -2025-01-20 06:00:00+00:00,398232 -2025-01-20 07:00:00+00:00,389557 -2025-01-20 08:00:00+00:00,399538 -2025-01-20 09:00:00+00:00,408470 -2025-01-20 10:00:00+00:00,415393 -2025-01-20 11:00:00+00:00,409372 -2025-01-20 12:00:00+00:00,416760 -2025-01-20 13:00:00+00:00,382742 -2025-01-20 14:00:00+00:00,351477 -2025-01-20 15:00:00+00:00,374161 -2025-01-20 16:00:00+00:00,362739 -2025-01-20 17:00:00+00:00,381881 -2025-01-20 18:00:00+00:00,375389 -2025-01-20 19:00:00+00:00,367777 -2025-01-20 20:00:00+00:00,360482 -2025-01-20 21:00:00+00:00,378854 -2025-01-20 22:00:00+00:00,380612 -2025-01-20 23:00:00+00:00,370923 -2025-01-21 00:00:00+00:00,400022 -2025-01-21 01:00:00+00:00,368328 -2025-01-21 02:00:00+00:00,347428 -2025-01-21 03:00:00+00:00,363796 -2025-01-21 04:00:00+00:00,353644 -2025-01-21 05:00:00+00:00,364040 -2025-01-21 06:00:00+00:00,374870 -2025-01-21 07:00:00+00:00,388073 -2025-01-21 08:00:00+00:00,401327 -2025-01-21 09:00:00+00:00,416085 -2025-01-21 10:00:00+00:00,427265 -2025-01-21 11:00:00+00:00,416683 -2025-01-21 12:00:00+00:00,405019 -2025-01-21 13:00:00+00:00,390872 -2025-01-21 14:00:00+00:00,412036 -2025-01-21 15:00:00+00:00,389025 -2025-01-21 16:00:00+00:00,403952 -2025-01-21 17:00:00+00:00,412646 -2025-01-21 18:00:00+00:00,404986 -2025-01-21 19:00:00+00:00,411332 -2025-01-21 20:00:00+00:00,406602 -2025-01-21 21:00:00+00:00,403571 -2025-01-21 22:00:00+00:00,400997 -2025-01-21 23:00:00+00:00,410240 -2025-01-22 00:00:00+00:00,394789 -2025-01-22 01:00:00+00:00,406508 -2025-01-22 02:00:00+00:00,415050 -2025-01-22 03:00:00+00:00,421475 -2025-01-22 04:00:00+00:00,415425 -2025-01-22 05:00:00+00:00,421424 -2025-01-22 06:00:00+00:00,431600 -2025-01-22 07:00:00+00:00,443198 -2025-01-22 08:00:00+00:00,426551 -2025-01-22 09:00:00+00:00,416412 -2025-01-22 10:00:00+00:00,424533 -2025-01-22 11:00:00+00:00,430951 -2025-01-22 12:00:00+00:00,422978 -2025-01-22 13:00:00+00:00,434891 -2025-01-22 14:00:00+00:00,452187 -2025-01-22 15:00:00+00:00,469375 -2025-01-22 16:00:00+00:00,481651 -2025-01-22 17:00:00+00:00,473961 -2025-01-22 18:00:00+00:00,467018 -2025-01-22 19:00:00+00:00,462210 -2025-01-22 20:00:00+00:00,466990 -2025-01-22 21:00:00+00:00,463432 -2025-01-22 22:00:00+00:00,462642 -2025-01-22 23:00:00+00:00,466106 -2025-01-23 00:00:00+00:00,455316 -2025-01-23 01:00:00+00:00,464398 -2025-01-23 02:00:00+00:00,457061 -2025-01-23 03:00:00+00:00,462744 -2025-01-23 04:00:00+00:00,467464 -2025-01-23 05:00:00+00:00,475414 -2025-01-23 06:00:00+00:00,466985 -2025-01-23 07:00:00+00:00,455806 -2025-01-23 08:00:00+00:00,444111 -2025-01-23 09:00:00+00:00,431942 -2025-01-23 10:00:00+00:00,440822 -2025-01-23 11:00:00+00:00,447584 -2025-01-23 12:00:00+00:00,439541 -2025-01-23 13:00:00+00:00,422845 -2025-01-23 14:00:00+00:00,437640 -2025-01-23 15:00:00+00:00,420578 -2025-01-23 16:00:00+00:00,389429 -2025-01-23 17:00:00+00:00,379686 -2025-01-23 18:00:00+00:00,385776 -2025-01-23 19:00:00+00:00,380351 -2025-01-23 20:00:00+00:00,385469 -2025-01-23 21:00:00+00:00,388561 -2025-01-23 22:00:00+00:00,387835 -2025-01-23 23:00:00+00:00,391445 -2025-01-24 00:00:00+00:00,402208 -2025-01-24 01:00:00+00:00,410102 -2025-01-24 02:00:00+00:00,396199 -2025-01-24 03:00:00+00:00,370382 -2025-01-24 04:00:00+00:00,351930 -2025-01-24 05:00:00+00:00,364894 -2025-01-24 06:00:00+00:00,392961 -2025-01-24 07:00:00+00:00,416837 -2025-01-24 08:00:00+00:00,391780 -2025-01-24 09:00:00+00:00,411732 -2025-01-24 10:00:00+00:00,425658 -2025-01-24 11:00:00+00:00,437998 -2025-01-24 12:00:00+00:00,450646 -2025-01-24 13:00:00+00:00,435945 diff --git a/indicators_directory/USD_JPY_RSI.csv b/indicators_directory/USD_JPY_RSI.csv deleted file mode 100644 index 6c7b13a..0000000 --- a/indicators_directory/USD_JPY_RSI.csv +++ /dev/null @@ -1,5001 +0,0 @@ -time,RSI -2024-04-05 03:00:00+00:00, -2024-04-05 04:00:00+00:00, -2024-04-05 05:00:00+00:00, -2024-04-05 06:00:00+00:00, -2024-04-05 07:00:00+00:00, -2024-04-05 08:00:00+00:00, -2024-04-05 09:00:00+00:00, -2024-04-05 10:00:00+00:00, -2024-04-05 11:00:00+00:00, -2024-04-05 12:00:00+00:00, -2024-04-05 13:00:00+00:00, -2024-04-05 14:00:00+00:00, -2024-04-05 15:00:00+00:00, -2024-04-05 16:00:00+00:00,67.39130434782649 -2024-04-05 17:00:00+00:00,67.5675675675678 -2024-04-05 18:00:00+00:00,68.38074398249663 -2024-04-05 19:00:00+00:00,73.69498464687916 -2024-04-05 20:00:00+00:00,69.93464052287612 -2024-04-07 21:00:00+00:00,66.1214953271046 -2024-04-07 22:00:00+00:00,66.35730858468858 -2024-04-07 23:00:00+00:00,65.05747126436876 -2024-04-08 00:00:00+00:00,72.86063569682247 -2024-04-08 01:00:00+00:00,73.82075471698215 -2024-04-08 02:00:00+00:00,59.93031358885084 -2024-04-08 03:00:00+00:00,64.78342749529006 -2024-04-08 04:00:00+00:00,78.9699570815426 -2024-04-08 05:00:00+00:00,74.38423645319904 -2024-04-08 06:00:00+00:00,70.892018779343 -2024-04-08 07:00:00+00:00,76.64783427495408 -2024-04-08 08:00:00+00:00,83.0223880597 -2024-04-08 09:00:00+00:00,73.68421052631548 -2024-04-08 10:00:00+00:00,73.52941176470922 -2024-04-08 11:00:00+00:00,78.74762808349192 -2024-04-08 12:00:00+00:00,68.93004115226239 -2024-04-08 13:00:00+00:00,54.73856209150504 -2024-04-08 14:00:00+00:00,57.774390243903 -2024-04-08 15:00:00+00:00,50.65146579804645 -2024-04-08 16:00:00+00:00,54.89296636085835 -2024-04-08 17:00:00+00:00,50.13966480446996 -2024-04-08 18:00:00+00:00,48.340548340548516 -2024-04-08 19:00:00+00:00,53.066666666668155 -2024-04-08 20:00:00+00:00,56.25000000000121 -2024-04-08 21:00:00+00:00,46.48318042813482 -2024-04-08 22:00:00+00:00,42.022116903633325 -2024-04-08 23:00:00+00:00,46.805111821086925 -2024-04-09 00:00:00+00:00,54.105571847506 -2024-04-09 01:00:00+00:00,47.72370486656016 -2024-04-09 02:00:00+00:00,49.67320261437984 -2024-04-09 03:00:00+00:00,61.91446028513105 -2024-04-09 04:00:00+00:00,58.62831858407061 -2024-04-09 05:00:00+00:00,62.383177570091256 -2024-04-09 06:00:00+00:00,59.95024875621584 -2024-04-09 07:00:00+00:00,68.66096866096723 -2024-04-09 08:00:00+00:00,65.84699453552042 -2024-04-09 09:00:00+00:00,50.71225071225007 -2024-04-09 10:00:00+00:00,42.857142857142854 -2024-04-09 11:00:00+00:00,50.78534031413609 -2024-04-09 12:00:00+00:00,45.75471698113226 -2024-04-09 13:00:00+00:00,42.0654911838774 -2024-04-09 14:00:00+00:00,20.77625570776364 -2024-04-09 15:00:00+00:00,34.0725806451629 -2024-04-09 16:00:00+00:00,31.066176470588033 -2024-04-09 17:00:00+00:00,35.03649635036773 -2024-04-09 18:00:00+00:00,36.54188948306909 -2024-04-09 19:00:00+00:00,36.120996441282315 -2024-04-09 20:00:00+00:00,38.42195540308992 -2024-04-09 21:00:00+00:00,37.7740303541328 -2024-04-09 22:00:00+00:00,38.42195540308805 -2024-04-09 23:00:00+00:00,44.56327985739805 -2024-04-10 00:00:00+00:00,43.55400696864147 -2024-04-10 01:00:00+00:00,40.221402214022106 -2024-04-10 02:00:00+00:00,48.74274661508955 -2024-04-10 03:00:00+00:00,48.36852207293746 -2024-04-10 04:00:00+00:00,64.97695852534028 -2024-04-10 05:00:00+00:00,60.41666666666405 -2024-04-10 06:00:00+00:00,65.90909090908761 -2024-04-10 07:00:00+00:00,69.15167095115083 -2024-04-10 08:00:00+00:00,66.00566572237398 -2024-04-10 09:00:00+00:00,67.13483146067094 -2024-04-10 10:00:00+00:00,57.98816568047113 -2024-04-10 11:00:00+00:00,62.883435582819466 -2024-04-10 12:00:00+00:00,86.65893271461405 -2024-04-10 13:00:00+00:00,89.75957257346128 -2024-04-10 14:00:00+00:00,94.93996569468068 -2024-04-10 15:00:00+00:00,95.4615384615367 -2024-04-10 16:00:00+00:00,95.4475308641957 -2024-04-10 17:00:00+00:00,85.07565337001323 -2024-04-10 18:00:00+00:00,86.53846153846092 -2024-04-10 19:00:00+00:00,86.24605678233488 -2024-04-10 20:00:00+00:00,89.18918918918972 -2024-04-10 21:00:00+00:00,81.78826110806378 -2024-04-10 22:00:00+00:00,78.04749340369389 -2024-04-10 23:00:00+00:00,78.40083073727936 -2024-04-11 00:00:00+00:00,74.86365889935519 -2024-04-11 01:00:00+00:00,73.68679430535101 -2024-04-11 02:00:00+00:00,64.57369464639791 -2024-04-11 03:00:00+00:00,60.207869339272605 -2024-04-11 04:00:00+00:00,54.76923076923044 -2024-04-11 05:00:00+00:00,52.580645161289965 -2024-04-11 06:00:00+00:00,58.17923186344183 -2024-04-11 07:00:00+00:00,64.05638214565406 -2024-04-11 08:00:00+00:00,61.68614357262101 -2024-04-11 09:00:00+00:00,58.143194335168815 -2024-04-11 10:00:00+00:00,47.073791348599876 -2024-04-11 11:00:00+00:00,54.15472779369565 -2024-04-11 12:00:00+00:00,46.97597348798649 -2024-04-11 13:00:00+00:00,56.16438356164307 -2024-04-11 14:00:00+00:00,64.66621712744441 -2024-04-11 15:00:00+00:00,62.51629726206051 -2024-04-11 16:00:00+00:00,63.11738293778062 -2024-04-11 17:00:00+00:00,57.68716577540097 -2024-04-11 18:00:00+00:00,61.57407407407526 -2024-04-11 19:00:00+00:00,57.944557133198956 -2024-04-11 20:00:00+00:00,54.09594095940951 -2024-04-11 21:00:00+00:00,52.924187725631576 -2024-04-11 22:00:00+00:00,49.49651432997764 -2024-04-11 23:00:00+00:00,51.03833865814626 -2024-04-12 00:00:00+00:00,46.23733719247508 -2024-04-12 01:00:00+00:00,50.4005340453939 -2024-04-12 02:00:00+00:00,62.537537537538256 -2024-04-12 03:00:00+00:00,53.45149253731418 -2024-04-12 04:00:00+00:00,48.2365145228219 -2024-04-12 05:00:00+00:00,50.87527352297548 -2024-04-12 06:00:00+00:00,52.23404255319166 -2024-04-12 07:00:00+00:00,53.83771929824533 -2024-04-12 08:00:00+00:00,53.480662983424864 -2024-04-12 09:00:00+00:00,55.69620253164515 -2024-04-12 10:00:00+00:00,49.69843184559738 -2024-04-12 11:00:00+00:00,47.13958810068592 -2024-04-12 12:00:00+00:00,33.960650128314555 -2024-04-12 13:00:00+00:00,39.391447368421396 -2024-04-12 14:00:00+00:00,47.80439121756427 -2024-04-12 15:00:00+00:00,51.029962546817394 -2024-04-12 16:00:00+00:00,46.42147117296219 -2024-04-12 17:00:00+00:00,46.153846153846374 -2024-04-12 18:00:00+00:00,48.90995260663529 -2024-04-12 19:00:00+00:00,51.477597712107 -2024-04-12 20:00:00+00:00,51.61596958174994 -2024-04-14 21:00:00+00:00,47.21739130434828 -2024-04-14 22:00:00+00:00,48.94869638351536 -2024-04-14 23:00:00+00:00,50.12427506213695 -2024-04-15 00:00:00+00:00,57.20720720720721 -2024-04-15 01:00:00+00:00,65.34133533383357 -2024-04-15 02:00:00+00:00,86.9191049913911 -2024-04-15 03:00:00+00:00,83.15412186379632 -2024-04-15 04:00:00+00:00,85.23379819524007 -2024-04-15 05:00:00+00:00,83.08270676691477 -2024-04-15 06:00:00+00:00,85.00914076782377 -2024-04-15 07:00:00+00:00,85.15837104072281 -2024-04-15 08:00:00+00:00,80.7547169811314 -2024-04-15 09:00:00+00:00,80.45977011494199 -2024-04-15 10:00:00+00:00,80.11695906432693 -2024-04-15 11:00:00+00:00,90.03285870755673 -2024-04-15 12:00:00+00:00,91.62833486660472 -2024-04-15 13:00:00+00:00,92.63157894736801 -2024-04-15 14:00:00+00:00,89.24050632911188 -2024-04-15 15:00:00+00:00,81.979458450046 -2024-04-15 16:00:00+00:00,80.18480492813111 -2024-04-15 17:00:00+00:00,73.47130761994367 -2024-04-15 18:00:00+00:00,71.37055837563383 -2024-04-15 19:00:00+00:00,70.77720207253871 -2024-04-15 20:00:00+00:00,70.77720207253786 -2024-04-15 21:00:00+00:00,66.7010309278352 -2024-04-15 22:00:00+00:00,65.75203252032472 -2024-04-15 23:00:00+00:00,66.66666666666572 -2024-04-16 00:00:00+00:00,67.47104247104171 -2024-04-16 01:00:00+00:00,70.53979871912192 -2024-04-16 02:00:00+00:00,57.589803012745996 -2024-04-16 03:00:00+00:00,49.586776859504134 -2024-04-16 04:00:00+00:00,46.15384615384615 -2024-04-16 05:00:00+00:00,55.75447570332453 -2024-04-16 06:00:00+00:00,61.64079822616238 -2024-04-16 07:00:00+00:00,62.12290502793157 -2024-04-16 08:00:00+00:00,65.3019447287609 -2024-04-16 09:00:00+00:00,66.60098522167362 -2024-04-16 10:00:00+00:00,66.23505976095507 -2024-04-16 11:00:00+00:00,69.7154471544705 -2024-04-16 12:00:00+00:00,74.47698744769701 -2024-04-16 13:00:00+00:00,67.90371113339941 -2024-04-16 14:00:00+00:00,65.88486140724879 -2024-04-16 15:00:00+00:00,61.904761904761905 -2024-04-16 16:00:00+00:00,65.52538370720205 -2024-04-16 17:00:00+00:00,68.63587540279195 -2024-04-16 18:00:00+00:00,70.84257206208548 -2024-04-16 19:00:00+00:00,66.86460807601046 -2024-04-16 20:00:00+00:00,64.18485237484089 -2024-04-16 21:00:00+00:00,69.25207756232759 -2024-04-16 22:00:00+00:00,64.36597110754519 -2024-04-16 23:00:00+00:00,61.59169550173187 -2024-04-17 00:00:00+00:00,58.68372943327233 -2024-04-17 01:00:00+00:00,56.07476635514033 -2024-04-17 02:00:00+00:00,53.620352250489866 -2024-04-17 03:00:00+00:00,58.54700854701008 -2024-04-17 04:00:00+00:00,56.696428571429145 -2024-04-17 05:00:00+00:00,54.97835497835426 -2024-04-17 06:00:00+00:00,40.83333333333447 -2024-04-17 07:00:00+00:00,42.741935483870414 -2024-04-17 08:00:00+00:00,43.15960912052064 -2024-04-17 09:00:00+00:00,47.14285714285701 -2024-04-17 10:00:00+00:00,40.85257548845375 -2024-04-17 11:00:00+00:00,46.03174603174674 -2024-04-17 12:00:00+00:00,44.08163265305883 -2024-04-17 13:00:00+00:00,45.63492063491945 -2024-04-17 14:00:00+00:00,46.00000000000057 -2024-04-17 15:00:00+00:00,43.47826086956592 -2024-04-17 16:00:00+00:00,26.528258362168387 -2024-04-17 17:00:00+00:00,30.73394495412677 -2024-04-17 18:00:00+00:00,33.62637362637295 -2024-04-17 19:00:00+00:00,34.11371237458148 -2024-04-17 20:00:00+00:00,45.25277435264912 -2024-04-17 21:00:00+00:00,31.071913161464778 -2024-04-17 22:00:00+00:00,30.86253369272194 -2024-04-17 23:00:00+00:00,33.37662337662235 -2024-04-18 00:00:00+00:00,28.409090909091162 -2024-04-18 01:00:00+00:00,26.14302461899149 -2024-04-18 02:00:00+00:00,23.7234042553183 -2024-04-18 03:00:00+00:00,29.636898920510248 -2024-04-18 04:00:00+00:00,33.240223463687585 -2024-04-18 05:00:00+00:00,34.19540229885014 -2024-04-18 06:00:00+00:00,49.93006993006959 -2024-04-18 07:00:00+00:00,46.774193548388446 -2024-04-18 08:00:00+00:00,50.27397260273909 -2024-04-18 09:00:00+00:00,55.46975546975425 -2024-04-18 10:00:00+00:00,53.49462365591525 -2024-04-18 11:00:00+00:00,52.785145888594094 -2024-04-18 12:00:00+00:00,56.534090909091496 -2024-04-18 13:00:00+00:00,61.65413533834587 -2024-04-18 14:00:00+00:00,70.52631578947319 -2024-04-18 15:00:00+00:00,74.16974169741653 -2024-04-18 16:00:00+00:00,83.42465753424896 -2024-04-18 17:00:00+00:00,81.18195956454254 -2024-04-18 18:00:00+00:00,73.89240506329358 -2024-04-18 19:00:00+00:00,75.7716049382754 -2024-04-18 20:00:00+00:00,78.3060921248178 -2024-04-18 21:00:00+00:00,73.29624478442341 -2024-04-18 22:00:00+00:00,71.51335311572802 -2024-04-18 23:00:00+00:00,65.10903426791552 -2024-04-19 00:00:00+00:00,64.33121019108336 -2024-04-19 01:00:00+00:00,42.7513227513218 -2024-04-19 02:00:00+00:00,31.562499999998053 -2024-04-19 03:00:00+00:00,42.96874999999922 -2024-04-19 04:00:00+00:00,39.03966597077175 -2024-04-19 05:00:00+00:00,40.20979020978963 -2024-04-19 06:00:00+00:00,43.377483443707625 -2024-04-19 07:00:00+00:00,44.62435233160606 -2024-04-19 08:00:00+00:00,44.1101152368756 -2024-04-19 09:00:00+00:00,45.84367245657499 -2024-04-19 10:00:00+00:00,46.11111111111077 -2024-04-19 11:00:00+00:00,49.96956786366475 -2024-04-19 12:00:00+00:00,46.762589928058134 -2024-04-19 13:00:00+00:00,49.077929803688065 -2024-04-19 14:00:00+00:00,48.92601431980985 -2024-04-19 15:00:00+00:00,61.7469879518079 -2024-04-19 16:00:00+00:00,83.28445747800609 -2024-04-19 17:00:00+00:00,74.0121580547119 -2024-04-19 18:00:00+00:00,68.44380403458246 -2024-04-19 19:00:00+00:00,69.02404526166833 -2024-04-19 20:00:00+00:00,66.81818181818255 -2024-04-21 21:00:00+00:00,50.9162303664928 -2024-04-21 22:00:00+00:00,63.176470588234324 -2024-04-21 23:00:00+00:00,59.76863753213404 -2024-04-22 00:00:00+00:00,59.40337224383931 -2024-04-22 01:00:00+00:00,51.063829787233395 -2024-04-22 02:00:00+00:00,58.28729281767771 -2024-04-22 03:00:00+00:00,57.4647887323936 -2024-04-22 04:00:00+00:00,58.63013698629954 -2024-04-22 05:00:00+00:00,62.62626262626118 -2024-04-22 06:00:00+00:00,56.77966101694915 -2024-04-22 07:00:00+00:00,52.34604105571711 -2024-04-22 08:00:00+00:00,60.3151862464182 -2024-04-22 09:00:00+00:00,61.42061281337083 -2024-04-22 10:00:00+00:00,58.09248554913215 -2024-04-22 11:00:00+00:00,75.32228360957532 -2024-04-22 12:00:00+00:00,63.658536585363436 -2024-04-22 13:00:00+00:00,62.11031175059854 -2024-04-22 14:00:00+00:00,57.51295336787423 -2024-04-22 15:00:00+00:00,70.7774798927605 -2024-04-22 16:00:00+00:00,69.46778711484583 -2024-04-22 17:00:00+00:00,68.40579710144921 -2024-04-22 18:00:00+00:00,62.34939759036395 -2024-04-22 19:00:00+00:00,65.46961325967072 -2024-04-22 20:00:00+00:00,75.23809523809636 -2024-04-22 21:00:00+00:00,75.9615384615361 -2024-04-22 22:00:00+00:00,67.31517509727567 -2024-04-22 23:00:00+00:00,60.18957345971654 -2024-04-23 00:00:00+00:00,57.20720720720934 -2024-04-23 01:00:00+00:00,43.47826086956522 -2024-04-23 02:00:00+00:00,53.000000000000284 -2024-04-23 03:00:00+00:00,52.82392026578016 -2024-04-23 04:00:00+00:00,51.45631067960942 -2024-04-23 05:00:00+00:00,49.15254237288217 -2024-04-23 06:00:00+00:00,43.77224199288393 -2024-04-23 07:00:00+00:00,50.93167701863348 -2024-04-23 08:00:00+00:00,56.70731707316746 -2024-04-23 09:00:00+00:00,50.33557046979545 -2024-04-23 10:00:00+00:00,44.51038575667593 -2024-04-23 11:00:00+00:00,47.38461538461592 -2024-04-23 12:00:00+00:00,50.0 -2024-04-23 13:00:00+00:00,32.7235772357714 -2024-04-23 14:00:00+00:00,50.64308681671874 -2024-04-23 15:00:00+00:00,57.80445969125249 -2024-04-23 16:00:00+00:00,55.434782608695656 -2024-04-23 17:00:00+00:00,49.67532467532544 -2024-04-23 18:00:00+00:00,51.235584843493804 -2024-04-23 19:00:00+00:00,54.17956656346774 -2024-04-23 20:00:00+00:00,55.69230769230884 -2024-04-23 21:00:00+00:00,46.967340590978566 -2024-04-23 22:00:00+00:00,45.176848874597994 -2024-04-23 23:00:00+00:00,43.297380585517026 -2024-04-24 00:00:00+00:00,49.77099236641112 -2024-04-24 01:00:00+00:00,49.617151607963606 -2024-04-24 02:00:00+00:00,50.075872534142995 -2024-04-24 03:00:00+00:00,69.63946869070197 -2024-04-24 04:00:00+00:00,56.052631578950624 -2024-04-24 05:00:00+00:00,57.39795918367369 -2024-04-24 06:00:00+00:00,61.6972477064238 -2024-04-24 07:00:00+00:00,69.68911917098441 -2024-04-24 08:00:00+00:00,68.75000000000277 -2024-04-24 09:00:00+00:00,65.90909090909255 -2024-04-24 10:00:00+00:00,64.32748538011657 -2024-04-24 11:00:00+00:00,74.32432432433055 -2024-04-24 12:00:00+00:00,76.10062893082312 -2024-04-24 13:00:00+00:00,86.56250000000541 -2024-04-24 14:00:00+00:00,85.37414965986918 -2024-04-24 15:00:00+00:00,89.408866995078 -2024-04-24 16:00:00+00:00,88.35443037975378 -2024-04-24 17:00:00+00:00,91.369606003758 -2024-04-24 18:00:00+00:00,88.86861313868891 -2024-04-24 19:00:00+00:00,88.827838827842 -2024-04-24 20:00:00+00:00,88.7037037037069 -2024-04-24 21:00:00+00:00,76.64000000000108 -2024-04-24 22:00:00+00:00,75.91125198098358 -2024-04-24 23:00:00+00:00,76.1755485893429 -2024-04-25 00:00:00+00:00,79.7570850202448 -2024-04-25 01:00:00+00:00,81.00929614874099 -2024-04-25 02:00:00+00:00,81.47668393782654 -2024-04-25 03:00:00+00:00,81.25819134993614 -2024-04-25 04:00:00+00:00,83.60091743119504 -2024-04-25 05:00:00+00:00,82.72946859903604 -2024-04-25 06:00:00+00:00,83.15282791817172 -2024-04-25 07:00:00+00:00,74.45887445887493 -2024-04-25 08:00:00+00:00,78.35195530726266 -2024-04-25 09:00:00+00:00,73.26869806094047 -2024-04-25 10:00:00+00:00,63.05483028720519 -2024-04-25 11:00:00+00:00,73.99103139013398 -2024-04-25 12:00:00+00:00,78.90025575447414 -2024-04-25 13:00:00+00:00,74.86979166666328 -2024-04-25 14:00:00+00:00,63.00268096514552 -2024-04-25 15:00:00+00:00,58.118556701030826 -2024-04-25 16:00:00+00:00,55.27027027027021 -2024-04-25 17:00:00+00:00,56.67539267015698 -2024-04-25 18:00:00+00:00,50.8172362555717 -2024-04-25 19:00:00+00:00,47.87401574803269 -2024-04-25 20:00:00+00:00,48.442367601245365 -2024-04-25 21:00:00+00:00,47.77265745007712 -2024-04-25 22:00:00+00:00,41.95583596214463 -2024-04-25 23:00:00+00:00,48.91640866873205 -2024-04-26 00:00:00+00:00,57.89473684210605 -2024-04-26 01:00:00+00:00,53.000000000000284 -2024-04-26 02:00:00+00:00,38.888888888887955 -2024-04-26 03:00:00+00:00,67.1361502347441 -2024-04-26 04:00:00+00:00,80.7804878048813 -2024-04-26 05:00:00+00:00,77.38317757009509 -2024-04-26 06:00:00+00:00,82.36173393124233 -2024-04-26 07:00:00+00:00,85.35071384233574 -2024-04-26 08:00:00+00:00,77.92661619103214 -2024-04-26 09:00:00+00:00,79.11845730027656 -2024-04-26 10:00:00+00:00,80.36269430051958 -2024-04-26 11:00:00+00:00,82.32484076433241 -2024-04-26 12:00:00+00:00,83.7159636946084 -2024-04-26 13:00:00+00:00,84.1311134235178 -2024-04-26 14:00:00+00:00,86.38392857142924 -2024-04-26 15:00:00+00:00,89.70242756460534 -2024-04-26 16:00:00+00:00,90.73494917904621 -2024-04-26 17:00:00+00:00,89.39122649955264 -2024-04-26 18:00:00+00:00,88.15000000000026 -2024-04-26 19:00:00+00:00,93.09178743961347 -2024-04-26 20:00:00+00:00,93.64726788094178 -2024-04-28 21:00:00+00:00,76.31466438648985 -2024-04-28 22:00:00+00:00,83.4873443149859 -2024-04-28 23:00:00+00:00,81.71140939597296 -2024-04-29 00:00:00+00:00,80.45977011494222 -2024-04-29 01:00:00+00:00,86.35381290521745 -2024-04-29 02:00:00+00:00,87.07980122771106 -2024-04-29 03:00:00+00:00,86.8099074903013 -2024-04-29 04:00:00+00:00,42.19056974459746 -2024-04-29 05:00:00+00:00,43.413461538461526 -2024-04-29 06:00:00+00:00,45.2218430034131 -2024-04-29 07:00:00+00:00,36.39715230104239 -2024-04-29 08:00:00+00:00,38.68121093271232 -2024-04-29 09:00:00+00:00,36.77482792527052 -2024-04-29 10:00:00+00:00,34.30395913154537 -2024-04-29 11:00:00+00:00,39.039155074703785 -2024-04-29 12:00:00+00:00,38.21148825065266 -2024-04-29 13:00:00+00:00,40.600555134998665 -2024-04-29 14:00:00+00:00,40.47798742138357 -2024-04-29 15:00:00+00:00,32.486802682265534 -2024-04-29 16:00:00+00:00,26.99753150578124 -2024-04-29 17:00:00+00:00,29.222824033253502 -2024-04-29 18:00:00+00:00,45.188936501753005 -2024-04-29 19:00:00+00:00,42.26508001641337 -2024-04-29 20:00:00+00:00,43.174474959612404 -2024-04-29 21:00:00+00:00,60.412545916925566 -2024-04-29 22:00:00+00:00,55.954573357888336 -2024-04-29 23:00:00+00:00,59.38480853735101 -2024-04-30 00:00:00+00:00,63.21773735076747 -2024-04-30 01:00:00+00:00,59.73864343497199 -2024-04-30 02:00:00+00:00,54.743833017077925 -2024-04-30 03:00:00+00:00,50.48442906574428 -2024-04-30 04:00:00+00:00,51.35416666666671 -2024-04-30 05:00:00+00:00,51.85567010309284 -2024-04-30 06:00:00+00:00,74.6423285643809 -2024-04-30 07:00:00+00:00,71.33296151701015 -2024-04-30 08:00:00+00:00,85.45224541429376 -2024-04-30 09:00:00+00:00,82.21083455343954 -2024-04-30 10:00:00+00:00,76.68246445497557 -2024-04-30 11:00:00+00:00,81.86226964112635 -2024-04-30 12:00:00+00:00,89.76588628762582 -2024-04-30 13:00:00+00:00,87.67217630854127 -2024-04-30 14:00:00+00:00,74.50611476952052 -2024-04-30 15:00:00+00:00,78.00324675324732 -2024-04-30 16:00:00+00:00,81.64825828377346 -2024-04-30 17:00:00+00:00,82.85714285714394 -2024-04-30 18:00:00+00:00,84.25655976676484 -2024-04-30 19:00:00+00:00,83.58662613981885 -2024-04-30 20:00:00+00:00,84.74576271186518 -2024-04-30 21:00:00+00:00,78.90094979647307 -2024-04-30 22:00:00+00:00,76.93935119887297 -2024-04-30 23:00:00+00:00,78.28492392807902 -2024-05-01 00:00:00+00:00,78.47750865051998 -2024-05-01 01:00:00+00:00,78.84353741496702 -2024-05-01 02:00:00+00:00,70.352716873214 -2024-05-01 03:00:00+00:00,73.03689687795651 -2024-05-01 04:00:00+00:00,75.53816046966921 -2024-05-01 05:00:00+00:00,71.23130034522578 -2024-05-01 06:00:00+00:00,80.04750593824386 -2024-05-01 07:00:00+00:00,68.915662650603 -2024-05-01 08:00:00+00:00,66.49350649350812 -2024-05-01 09:00:00+00:00,63.06532663316632 -2024-05-01 10:00:00+00:00,56.857142857143224 -2024-05-01 11:00:00+00:00,62.38244514106749 -2024-05-01 12:00:00+00:00,55.509065550907216 -2024-05-01 13:00:00+00:00,42.703349282297374 -2024-05-01 14:00:00+00:00,45.3819840364868 -2024-05-01 15:00:00+00:00,40.52757793764834 -2024-05-01 16:00:00+00:00,33.079847908744 -2024-05-01 17:00:00+00:00,32.56704980842781 -2024-05-01 18:00:00+00:00,20.367412140573208 -2024-05-01 19:00:00+00:00,35.96660244059014 -2024-05-01 20:00:00+00:00,11.128250330541476 -2024-05-01 21:00:00+00:00,10.959201388888303 -2024-05-01 22:00:00+00:00,27.891036906853728 -2024-05-01 23:00:00+00:00,31.57806191117082 -2024-05-02 00:00:00+00:00,34.82658959537572 -2024-05-02 01:00:00+00:00,35.66634707574285 -2024-05-02 02:00:00+00:00,34.77177130394122 -2024-05-02 03:00:00+00:00,36.861084979617225 -2024-05-02 04:00:00+00:00,35.78294573643406 -2024-05-02 05:00:00+00:00,35.16148689823271 -2024-05-02 06:00:00+00:00,33.97115101560183 -2024-05-02 07:00:00+00:00,34.319180087847855 -2024-05-02 08:00:00+00:00,35.205767497747175 -2024-05-02 09:00:00+00:00,32.76184538653389 -2024-05-02 10:00:00+00:00,59.17792792792802 -2024-05-02 11:00:00+00:00,56.11318739989308 -2024-05-02 12:00:00+00:00,33.71266002844996 -2024-05-02 13:00:00+00:00,24.924242424242607 -2024-05-02 14:00:00+00:00,13.646532438479042 -2024-05-02 15:00:00+00:00,10.448275862069636 -2024-05-02 16:00:00+00:00,11.37814494930609 -2024-05-02 17:00:00+00:00,6.2798634812294125 -2024-05-02 18:00:00+00:00,5.8580070041395516 -2024-05-02 19:00:00+00:00,10.171646535283443 -2024-05-02 20:00:00+00:00,23.735871505057048 -2024-05-02 21:00:00+00:00,23.78121284185505 -2024-05-02 22:00:00+00:00,23.04147465437815 -2024-05-02 23:00:00+00:00,19.484240687679232 -2024-05-03 00:00:00+00:00,20.733173076922995 -2024-05-03 01:00:00+00:00,21.06227106227111 -2024-05-03 02:00:00+00:00,27.17759310557065 -2024-05-03 03:00:00+00:00,27.934198038595028 -2024-05-03 04:00:00+00:00,30.281207133058672 -2024-05-03 05:00:00+00:00,35.326688815061004 -2024-05-03 06:00:00+00:00,41.84563758389228 -2024-05-03 07:00:00+00:00,48.39080459770163 -2024-05-03 08:00:00+00:00,52.889447236181006 -2024-05-03 09:00:00+00:00,47.07602339181316 -2024-05-03 10:00:00+00:00,35.42303771661554 -2024-05-03 11:00:00+00:00,36.65000000000021 -2024-05-03 12:00:00+00:00,28.881008668242742 -2024-05-03 13:00:00+00:00,38.71323529411756 -2024-05-03 14:00:00+00:00,45.87662337662355 -2024-05-03 15:00:00+00:00,50.17755681818166 -2024-05-03 16:00:00+00:00,46.91638289822212 -2024-05-03 17:00:00+00:00,48.01211662249171 -2024-05-03 18:00:00+00:00,50.309597523220184 -2024-05-03 19:00:00+00:00,47.96557120500761 -2024-05-03 20:00:00+00:00,43.64406779661079 -2024-05-05 21:00:00+00:00,40.57623049219711 -2024-05-05 22:00:00+00:00,50.731359257937854 -2024-05-05 23:00:00+00:00,59.82490272373513 -2024-05-06 00:00:00+00:00,54.84756097560986 -2024-05-06 01:00:00+00:00,55.47203848466625 -2024-05-06 02:00:00+00:00,80.92026973423187 -2024-05-06 03:00:00+00:00,79.618644067796 -2024-05-06 04:00:00+00:00,75.97402597402528 -2024-05-06 05:00:00+00:00,77.20812182741086 -2024-05-06 06:00:00+00:00,68.60146252285162 -2024-05-06 07:00:00+00:00,69.78891820580462 -2024-05-06 08:00:00+00:00,67.22870730652814 -2024-05-06 09:00:00+00:00,69.2573402417967 -2024-05-06 10:00:00+00:00,68.39769196626708 -2024-05-06 11:00:00+00:00,71.44181733889667 -2024-05-06 12:00:00+00:00,57.19333669863708 -2024-05-06 13:00:00+00:00,53.5596933187294 -2024-05-06 14:00:00+00:00,64.76744186046483 -2024-05-06 15:00:00+00:00,58.81635143380096 -2024-05-06 16:00:00+00:00,54.78901540522451 -2024-05-06 17:00:00+00:00,49.47604790419122 -2024-05-06 18:00:00+00:00,49.171686746988264 -2024-05-06 19:00:00+00:00,50.370919881305305 -2024-05-06 20:00:00+00:00,59.09486510008762 -2024-05-06 21:00:00+00:00,54.72061657032716 -2024-05-06 22:00:00+00:00,61.035156250000554 -2024-05-06 23:00:00+00:00,68.38351822504039 -2024-05-07 00:00:00+00:00,54.1314248536113 -2024-05-07 01:00:00+00:00,65.96417281348852 -2024-05-07 02:00:00+00:00,77.69396551724199 -2024-05-07 03:00:00+00:00,73.97862979258375 -2024-05-07 04:00:00+00:00,68.12827225130907 -2024-05-07 05:00:00+00:00,72.55416940249509 -2024-05-07 06:00:00+00:00,63.30935251798499 -2024-05-07 07:00:00+00:00,55.47368421052692 -2024-05-07 08:00:00+00:00,61.24599175446603 -2024-05-07 09:00:00+00:00,63.43993085566138 -2024-05-07 10:00:00+00:00,62.22975837219137 -2024-05-07 11:00:00+00:00,62.9675810473817 -2024-05-07 12:00:00+00:00,59.19610231425079 -2024-05-07 13:00:00+00:00,53.617216117215726 -2024-05-07 14:00:00+00:00,62.69129287598904 -2024-05-07 15:00:00+00:00,57.04738760631814 -2024-05-07 16:00:00+00:00,48.47896440129375 -2024-05-07 17:00:00+00:00,52.87152161042044 -2024-05-07 18:00:00+00:00,57.719298245613906 -2024-05-07 19:00:00+00:00,52.682648401826214 -2024-05-07 20:00:00+00:00,60.60794044665019 -2024-05-07 21:00:00+00:00,67.10164835164716 -2024-05-07 22:00:00+00:00,63.18216756341242 -2024-05-07 23:00:00+00:00,59.23404255319029 -2024-05-08 00:00:00+00:00,67.32837055417619 -2024-05-08 01:00:00+00:00,71.82596291012707 -2024-05-08 02:00:00+00:00,78.64741641337221 -2024-05-08 03:00:00+00:00,79.06799083269534 -2024-05-08 04:00:00+00:00,78.9716039907891 -2024-05-08 05:00:00+00:00,75.66137566137505 -2024-05-08 06:00:00+00:00,83.5242290748912 -2024-05-08 07:00:00+00:00,82.22433460076142 -2024-05-08 08:00:00+00:00,82.39171374764678 -2024-05-08 09:00:00+00:00,88.0281690140867 -2024-05-08 10:00:00+00:00,86.42105263157936 -2024-05-08 11:00:00+00:00,94.78527607362078 -2024-05-08 12:00:00+00:00,94.72595656670217 -2024-05-08 13:00:00+00:00,94.71502590673688 -2024-05-08 14:00:00+00:00,88.93854748603694 -2024-05-08 15:00:00+00:00,67.76960784313795 -2024-05-08 16:00:00+00:00,71.09890109890263 -2024-05-08 17:00:00+00:00,71.02085620197701 -2024-05-08 18:00:00+00:00,72.67080745341748 -2024-05-08 19:00:00+00:00,73.42799188640942 -2024-05-08 20:00:00+00:00,63.40000000000042 -2024-05-08 21:00:00+00:00,60.93916755602955 -2024-05-08 22:00:00+00:00,58.968609865472295 -2024-05-08 23:00:00+00:00,49.158878504672884 -2024-05-09 00:00:00+00:00,59.29878048780499 -2024-05-09 01:00:00+00:00,53.5031847133757 -2024-05-09 02:00:00+00:00,49.52463267070025 -2024-05-09 03:00:00+00:00,46.25850340136068 -2024-05-09 04:00:00+00:00,49.2173913043478 -2024-05-09 05:00:00+00:00,59.537572254335785 -2024-05-09 06:00:00+00:00,59.92366412213758 -2024-05-09 07:00:00+00:00,62.87744227353488 -2024-05-09 08:00:00+00:00,60.934579439253106 -2024-05-09 09:00:00+00:00,62.41007194244689 -2024-05-09 10:00:00+00:00,69.06403940886727 -2024-05-09 11:00:00+00:00,66.47673314339981 -2024-05-09 12:00:00+00:00,54.83319076133453 -2024-05-09 13:00:00+00:00,63.59126984127014 -2024-05-09 14:00:00+00:00,46.035502958581134 -2024-05-09 15:00:00+00:00,55.77342047930249 -2024-05-09 16:00:00+00:00,51.57894736842109 -2024-05-09 17:00:00+00:00,50.15353121801506 -2024-05-09 18:00:00+00:00,44.067796610169175 -2024-05-09 19:00:00+00:00,40.62499999999965 -2024-05-09 20:00:00+00:00,35.25026624068066 -2024-05-09 21:00:00+00:00,29.050925925926336 -2024-05-09 22:00:00+00:00,24.845360824741533 -2024-05-09 23:00:00+00:00,22.611464968150386 -2024-05-10 00:00:00+00:00,32.059645852747565 -2024-05-10 01:00:00+00:00,41.870261162595156 -2024-05-10 02:00:00+00:00,52.49077490774798 -2024-05-10 03:00:00+00:00,53.78071833648341 -2024-05-10 04:00:00+00:00,55.51219512195162 -2024-05-10 05:00:00+00:00,46.94736842105279 -2024-05-10 06:00:00+00:00,52.33050847457703 -2024-05-10 07:00:00+00:00,57.67494356659171 -2024-05-10 08:00:00+00:00,66.74937965260585 -2024-05-10 09:00:00+00:00,67.67295597484531 -2024-05-10 10:00:00+00:00,67.05128205128514 -2024-05-10 11:00:00+00:00,67.0512820512827 -2024-05-10 12:00:00+00:00,81.174899866489 -2024-05-10 13:00:00+00:00,63.55555555555546 -2024-05-10 14:00:00+00:00,67.10130391173539 -2024-05-10 15:00:00+00:00,59.72222222222089 -2024-05-10 16:00:00+00:00,54.34516523867966 -2024-05-10 17:00:00+00:00,57.00000000000135 -2024-05-10 18:00:00+00:00,61.7021276595735 -2024-05-10 19:00:00+00:00,59.79381443298871 -2024-05-10 20:00:00+00:00,56.675749318799966 -2024-05-12 21:00:00+00:00,50.89285714285778 -2024-05-12 22:00:00+00:00,53.94736842105286 -2024-05-12 23:00:00+00:00,56.738391845979535 -2024-05-13 00:00:00+00:00,59.66209081309356 -2024-05-13 01:00:00+00:00,54.7480620155046 -2024-05-13 02:00:00+00:00,46.10951008645575 -2024-05-13 03:00:00+00:00,57.110091743120975 -2024-05-13 04:00:00+00:00,45.08076358296517 -2024-05-13 05:00:00+00:00,49.06474820144043 -2024-05-13 06:00:00+00:00,51.18694362017747 -2024-05-13 07:00:00+00:00,52.99999999999837 -2024-05-13 08:00:00+00:00,51.85714285714379 -2024-05-13 09:00:00+00:00,58.85093167702007 -2024-05-13 10:00:00+00:00,58.12883435582868 -2024-05-13 11:00:00+00:00,64.78632478632375 -2024-05-13 12:00:00+00:00,47.92332268370733 -2024-05-13 13:00:00+00:00,50.45592705167181 -2024-05-13 14:00:00+00:00,49.1419656786274 -2024-05-13 15:00:00+00:00,70.82818294190517 -2024-05-13 16:00:00+00:00,81.26649076517393 -2024-05-13 17:00:00+00:00,81.04138851802682 -2024-05-13 18:00:00+00:00,76.80763983629016 -2024-05-13 19:00:00+00:00,76.2569832402236 -2024-05-13 20:00:00+00:00,76.25698324022454 -2024-05-13 21:00:00+00:00,73.4104046242781 -2024-05-13 22:00:00+00:00,75.07082152974337 -2024-05-13 23:00:00+00:00,74.49275362318704 -2024-05-14 00:00:00+00:00,78.13765182186194 -2024-05-14 01:00:00+00:00,81.42201834862345 -2024-05-14 02:00:00+00:00,94.55958549222443 -2024-05-14 03:00:00+00:00,89.75069252077091 -2024-05-14 04:00:00+00:00,88.21705426356321 -2024-05-14 05:00:00+00:00,80.85642317380035 -2024-05-14 06:00:00+00:00,80.20833333332986 -2024-05-14 07:00:00+00:00,80.36175710593898 -2024-05-14 08:00:00+00:00,84.74114441416656 -2024-05-14 09:00:00+00:00,65.04424778761334 -2024-05-14 10:00:00+00:00,69.78967495219948 -2024-05-14 11:00:00+00:00,72.93233082706963 -2024-05-14 12:00:00+00:00,77.5000000000021 -2024-05-14 13:00:00+00:00,57.01149425287479 -2024-05-14 14:00:00+00:00,55.73964497041509 -2024-05-14 15:00:00+00:00,54.8309178743972 -2024-05-14 16:00:00+00:00,52.41545893719774 -2024-05-14 17:00:00+00:00,55.63725490196195 -2024-05-14 18:00:00+00:00,51.47392290249336 -2024-05-14 19:00:00+00:00,52.285395763656474 -2024-05-14 20:00:00+00:00,48.83203559510638 -2024-05-14 21:00:00+00:00,47.86995515695005 -2024-05-14 22:00:00+00:00,48.99553571428566 -2024-05-14 23:00:00+00:00,59.567198177675124 -2024-05-15 00:00:00+00:00,48.017148981778924 -2024-05-15 01:00:00+00:00,46.60087719298194 -2024-05-15 02:00:00+00:00,42.84037558685581 -2024-05-15 03:00:00+00:00,53.206997084546416 -2024-05-15 04:00:00+00:00,47.653958944283076 -2024-05-15 05:00:00+00:00,30.579710144929834 -2024-05-15 06:00:00+00:00,33.38171262699862 -2024-05-15 07:00:00+00:00,25.362318840582276 -2024-05-15 08:00:00+00:00,17.38410596026712 -2024-05-15 09:00:00+00:00,26.779163609686165 -2024-05-15 10:00:00+00:00,25.70422535211401 -2024-05-15 11:00:00+00:00,24.67883705206357 -2024-05-15 12:00:00+00:00,17.457962413453444 -2024-05-15 13:00:00+00:00,34.75371383893676 -2024-05-15 14:00:00+00:00,31.14926419060987 -2024-05-15 15:00:00+00:00,28.29408020369226 -2024-05-15 16:00:00+00:00,26.283697047496545 -2024-05-15 17:00:00+00:00,24.939098660170444 -2024-05-15 18:00:00+00:00,28.70560610507735 -2024-05-15 19:00:00+00:00,31.09318996415776 -2024-05-15 20:00:00+00:00,30.103092783505062 -2024-05-15 21:00:00+00:00,30.71836489329702 -2024-05-15 22:00:00+00:00,32.61008296107198 -2024-05-15 23:00:00+00:00,26.197884256378103 -2024-05-16 00:00:00+00:00,22.41149853606575 -2024-05-16 01:00:00+00:00,30.834546336729744 -2024-05-16 02:00:00+00:00,34.764770240700074 -2024-05-16 03:00:00+00:00,21.205211726384547 -2024-05-16 04:00:00+00:00,24.291044776119463 -2024-05-16 05:00:00+00:00,33.92857142857174 -2024-05-16 06:00:00+00:00,38.87486476740031 -2024-05-16 07:00:00+00:00,43.55709876543214 -2024-05-16 08:00:00+00:00,46.42987916514116 -2024-05-16 09:00:00+00:00,44.51422238640571 -2024-05-16 10:00:00+00:00,45.60938682816054 -2024-05-16 11:00:00+00:00,51.14337568058055 -2024-05-16 12:00:00+00:00,62.8152692569871 -2024-05-16 13:00:00+00:00,70.59447983014823 -2024-05-16 14:00:00+00:00,84.67741935483808 -2024-05-16 15:00:00+00:00,79.45205479452054 -2024-05-16 16:00:00+00:00,83.28926493918541 -2024-05-16 17:00:00+00:00,84.1346153846167 -2024-05-16 18:00:00+00:00,86.35650810245826 -2024-05-16 19:00:00+00:00,85.18728717366743 -2024-05-16 20:00:00+00:00,82.3014383990009 -2024-05-16 21:00:00+00:00,80.16476552598377 -2024-05-16 22:00:00+00:00,75.84876543210014 -2024-05-16 23:00:00+00:00,78.50980392156944 -2024-05-17 00:00:00+00:00,79.34947049924472 -2024-05-17 01:00:00+00:00,81.67785234899486 -2024-05-17 02:00:00+00:00,75.42754275427686 -2024-05-17 03:00:00+00:00,65.77181208053804 -2024-05-17 04:00:00+00:00,78.26086956521974 -2024-05-17 05:00:00+00:00,81.43851508120885 -2024-05-17 06:00:00+00:00,68.95522388059764 -2024-05-17 07:00:00+00:00,74.55012853470404 -2024-05-17 08:00:00+00:00,73.78640776699012 -2024-05-17 09:00:00+00:00,69.36685288640743 -2024-05-17 10:00:00+00:00,70.98298676748676 -2024-05-17 11:00:00+00:00,73.4674329501924 -2024-05-17 12:00:00+00:00,68.64716636197521 -2024-05-17 13:00:00+00:00,65.27159394479165 -2024-05-17 14:00:00+00:00,48.37570621468954 -2024-05-17 15:00:00+00:00,40.08196721311514 -2024-05-17 16:00:00+00:00,39.63666391412023 -2024-05-17 17:00:00+00:00,44.36801375752355 -2024-05-17 18:00:00+00:00,44.32013769363135 -2024-05-17 19:00:00+00:00,44.58874458874446 -2024-05-17 20:00:00+00:00,49.71042471042469 -2024-05-19 21:00:00+00:00,39.907727797002025 -2024-05-19 22:00:00+00:00,40.52511415525107 -2024-05-19 23:00:00+00:00,46.20462046204525 -2024-05-20 00:00:00+00:00,51.58415841584071 -2024-05-20 01:00:00+00:00,50.39920159680688 -2024-05-20 02:00:00+00:00,51.217038539553805 -2024-05-20 03:00:00+00:00,49.12451361867701 -2024-05-20 04:00:00+00:00,75.06849315068624 -2024-05-20 05:00:00+00:00,60.194174757279725 -2024-05-20 06:00:00+00:00,59.80392156862745 -2024-05-20 07:00:00+00:00,55.93220338982961 -2024-05-20 08:00:00+00:00,50.561797752809355 -2024-05-20 09:00:00+00:00,52.85053929121529 -2024-05-20 10:00:00+00:00,55.14469453376114 -2024-05-20 11:00:00+00:00,57.53424657534122 -2024-05-20 12:00:00+00:00,72.40356083085952 -2024-05-20 13:00:00+00:00,65.32810969637626 -2024-05-20 14:00:00+00:00,64.67065868263472 -2024-05-20 17:00:00+00:00,65.4690618762456 -2024-05-20 18:00:00+00:00,71.70172084129953 -2024-05-20 19:00:00+00:00,78.85597548518763 -2024-05-20 20:00:00+00:00,76.57563025210011 -2024-05-20 21:00:00+00:00,78.21888412017174 -2024-05-20 22:00:00+00:00,78.12499999999962 -2024-05-20 23:00:00+00:00,81.96564885496204 -2024-05-21 00:00:00+00:00,86.2573099415211 -2024-05-21 01:00:00+00:00,86.5969581749057 -2024-05-21 02:00:00+00:00,83.42490842490973 -2024-05-21 03:00:00+00:00,83.44007319304761 -2024-05-21 04:00:00+00:00,70.5718270571831 -2024-05-21 05:00:00+00:00,71.06741573033705 -2024-05-21 06:00:00+00:00,55.511288180611096 -2024-05-21 07:00:00+00:00,53.94736842105283 -2024-05-21 08:00:00+00:00,49.12790697674414 -2024-05-21 09:00:00+00:00,39.20595533498734 -2024-05-21 10:00:00+00:00,46.86098654708464 -2024-05-21 11:00:00+00:00,49.88344988344933 -2024-05-21 12:00:00+00:00,48.62604540023921 -2024-05-21 13:00:00+00:00,30.468750000001265 -2024-05-21 14:00:00+00:00,25.463917525773937 -2024-05-21 15:00:00+00:00,30.879541108986714 -2024-05-21 16:00:00+00:00,34.7784200385361 -2024-05-21 17:00:00+00:00,38.17351598173639 -2024-05-21 18:00:00+00:00,38.99253731343392 -2024-05-21 19:00:00+00:00,39.96175908221834 -2024-05-21 20:00:00+00:00,47.08377518557788 -2024-05-21 21:00:00+00:00,45.86776859504246 -2024-05-21 22:00:00+00:00,46.42126789365956 -2024-05-21 23:00:00+00:00,58.3514099783076 -2024-05-22 00:00:00+00:00,53.170731707316534 -2024-05-22 01:00:00+00:00,51.63636363636453 -2024-05-22 02:00:00+00:00,53.33333333333267 -2024-05-22 03:00:00+00:00,69.34523809523962 -2024-05-22 04:00:00+00:00,82.67973856209224 -2024-05-22 05:00:00+00:00,70.14925373134399 -2024-05-22 06:00:00+00:00,72.2222222222225 -2024-05-22 07:00:00+00:00,68.06387225548819 -2024-05-22 08:00:00+00:00,73.1107205623911 -2024-05-22 09:00:00+00:00,74.02135231316888 -2024-05-22 10:00:00+00:00,70.90909090909062 -2024-05-22 11:00:00+00:00,82.03592814371206 -2024-05-22 12:00:00+00:00,76.78571428571428 -2024-05-22 13:00:00+00:00,61.8025751072974 -2024-05-22 14:00:00+00:00,66.03053435114562 -2024-05-22 15:00:00+00:00,65.53030303030124 -2024-05-22 16:00:00+00:00,62.53298153034223 -2024-05-22 17:00:00+00:00,62.234042553190704 -2024-05-22 18:00:00+00:00,66.58823529411616 -2024-05-22 19:00:00+00:00,73.56321839080351 -2024-05-22 20:00:00+00:00,74.83588621444123 -2024-05-22 21:00:00+00:00,64.8275862068963 -2024-05-22 22:00:00+00:00,63.682604272634215 -2024-05-22 23:00:00+00:00,65.54973821989401 -2024-05-23 00:00:00+00:00,68.65671641790948 -2024-05-23 01:00:00+00:00,58.98004434589819 -2024-05-23 02:00:00+00:00,60.592255125284964 -2024-05-23 03:00:00+00:00,70.29077117572615 -2024-05-23 04:00:00+00:00,63.46414073071742 -2024-05-23 05:00:00+00:00,65.32033426183996 -2024-05-23 06:00:00+00:00,59.97442455242955 -2024-05-23 07:00:00+00:00,64.79190101237198 -2024-05-23 08:00:00+00:00,58.24468085106529 -2024-05-23 09:00:00+00:00,47.2727272727272 -2024-05-23 10:00:00+00:00,41.41414141414158 -2024-05-23 11:00:00+00:00,41.7758369723437 -2024-05-23 12:00:00+00:00,50.37220843672458 -2024-05-23 13:00:00+00:00,65.58098591549361 -2024-05-23 14:00:00+00:00,58.254918733961084 -2024-05-23 15:00:00+00:00,63.2115548003387 -2024-05-23 16:00:00+00:00,63.481228668942116 -2024-05-23 17:00:00+00:00,57.41626794258276 -2024-05-23 18:00:00+00:00,56.87203791469097 -2024-05-23 19:00:00+00:00,56.07476635513921 -2024-05-23 20:00:00+00:00,61.64705882352924 -2024-05-23 21:00:00+00:00,58.76897133220997 -2024-05-23 22:00:00+00:00,60.22819885900447 -2024-05-23 23:00:00+00:00,64.09366869037379 -2024-05-24 00:00:00+00:00,64.15584415584442 -2024-05-24 01:00:00+00:00,73.24200913242069 -2024-05-24 02:00:00+00:00,66.25258799171937 -2024-05-24 03:00:00+00:00,47.178683385579475 -2024-05-24 04:00:00+00:00,57.59717314487856 -2024-05-24 05:00:00+00:00,52.38095238095292 -2024-05-24 06:00:00+00:00,49.070631970258304 -2024-05-24 07:00:00+00:00,62.331838565026366 -2024-05-24 08:00:00+00:00,64.95327102804214 -2024-05-24 09:00:00+00:00,66.82692307692844 -2024-05-24 10:00:00+00:00,54.35897435897805 -2024-05-24 11:00:00+00:00,57.61904761904907 -2024-05-24 12:00:00+00:00,57.8199052132726 -2024-05-24 13:00:00+00:00,60.396039603959565 -2024-05-24 14:00:00+00:00,44.36936936936686 -2024-05-24 15:00:00+00:00,29.373650107988283 -2024-05-24 16:00:00+00:00,33.18181818181745 -2024-05-24 17:00:00+00:00,39.400428265521704 -2024-05-24 18:00:00+00:00,39.00862068965405 -2024-05-24 19:00:00+00:00,35.363457760314674 -2024-05-24 20:00:00+00:00,45.76271186440823 -2024-05-26 21:00:00+00:00,38.81355932203408 -2024-05-26 22:00:00+00:00,36.99515347334459 -2024-05-26 23:00:00+00:00,37.9644588045239 -2024-05-27 00:00:00+00:00,38.087520259318595 -2024-05-27 01:00:00+00:00,31.069609507640735 -2024-05-27 02:00:00+00:00,22.24000000000413 -2024-05-27 03:00:00+00:00,21.4506172839548 -2024-05-27 04:00:00+00:00,33.01587301587453 -2024-05-27 05:00:00+00:00,37.27598566308393 -2024-05-27 06:00:00+00:00,42.24422442244338 -2024-05-27 07:00:00+00:00,46.31901840490808 -2024-05-27 08:00:00+00:00,47.839046199702366 -2024-05-27 09:00:00+00:00,47.275405007365535 -2024-05-27 10:00:00+00:00,39.570552147239844 -2024-05-27 11:00:00+00:00,46.49999999999984 -2024-05-27 12:00:00+00:00,46.57762938230404 -2024-05-27 13:00:00+00:00,45.72864321607911 -2024-05-27 14:00:00+00:00,41.9354838709683 -2024-05-27 15:00:00+00:00,53.90625000000029 -2024-05-27 16:00:00+00:00,61.94444444444426 -2024-05-27 17:00:00+00:00,61.68741355463206 -2024-05-27 18:00:00+00:00,57.6452599388372 -2024-05-27 19:00:00+00:00,59.056316590563 -2024-05-27 20:00:00+00:00,56.1174551386614 -2024-05-27 21:00:00+00:00,48.6891385767808 -2024-05-27 22:00:00+00:00,47.50957854406026 -2024-05-27 23:00:00+00:00,44.92753623188294 -2024-05-28 00:00:00+00:00,53.39130434782504 -2024-05-28 01:00:00+00:00,42.622950819672816 -2024-05-28 02:00:00+00:00,44.61778471138731 -2024-05-28 03:00:00+00:00,39.0177353342428 -2024-05-28 04:00:00+00:00,47.25111441307545 -2024-05-28 05:00:00+00:00,47.79411764705885 -2024-05-28 06:00:00+00:00,48.847262247837236 -2024-05-28 07:00:00+00:00,51.47492625368801 -2024-05-28 08:00:00+00:00,49.71509971510039 -2024-05-28 09:00:00+00:00,53.735255570118866 -2024-05-28 10:00:00+00:00,48.000000000000824 -2024-05-28 11:00:00+00:00,44.79638009049725 -2024-05-28 12:00:00+00:00,37.56397134083997 -2024-05-28 13:00:00+00:00,49.42307692307691 -2024-05-28 14:00:00+00:00,48.58260019550364 -2024-05-28 15:00:00+00:00,56.71957671957556 -2024-05-28 16:00:00+00:00,60.94069529652335 -2024-05-28 17:00:00+00:00,71.6831683168321 -2024-05-28 18:00:00+00:00,72.39382239382229 -2024-05-28 19:00:00+00:00,66.592920353983 -2024-05-28 20:00:00+00:00,66.81318681318751 -2024-05-28 21:00:00+00:00,64.025695931478 -2024-05-28 22:00:00+00:00,67.83505154639249 -2024-05-28 23:00:00+00:00,67.32984293193739 -2024-05-29 00:00:00+00:00,75.91836734693885 -2024-05-29 01:00:00+00:00,71.19617224880581 -2024-05-29 02:00:00+00:00,81.54639175257893 -2024-05-29 03:00:00+00:00,78.86658795749895 -2024-05-29 04:00:00+00:00,72.36994219653306 -2024-05-29 05:00:00+00:00,68.41491841491909 -2024-05-29 06:00:00+00:00,57.15835140997882 -2024-05-29 07:00:00+00:00,53.30969267139401 -2024-05-29 08:00:00+00:00,46.78571428571396 -2024-05-29 09:00:00+00:00,51.189127972819236 -2024-05-29 10:00:00+00:00,52.428256070640856 -2024-05-29 11:00:00+00:00,56.3736263736258 -2024-05-29 12:00:00+00:00,49.02597402597394 -2024-05-29 13:00:00+00:00,53.412462908012806 -2024-05-29 14:00:00+00:00,55.816135084427835 -2024-05-29 15:00:00+00:00,67.9475164011246 -2024-05-29 16:00:00+00:00,68.27458256029753 -2024-05-29 17:00:00+00:00,64.49275362318829 -2024-05-29 18:00:00+00:00,69.20222634508335 -2024-05-29 19:00:00+00:00,71.83098591549374 -2024-05-29 20:00:00+00:00,79.52182952183136 -2024-05-29 21:00:00+00:00,73.27852004111048 -2024-05-29 22:00:00+00:00,78.2881002087684 -2024-05-29 23:00:00+00:00,75.68455640744735 -2024-05-30 00:00:00+00:00,56.1020036429867 -2024-05-30 01:00:00+00:00,57.86713286713313 -2024-05-30 02:00:00+00:00,56.14927905004148 -2024-05-30 03:00:00+00:00,51.772388059700624 -2024-05-30 04:00:00+00:00,35.945945945947216 -2024-05-30 05:00:00+00:00,22.416666666668633 -2024-05-30 06:00:00+00:00,15.469208211144263 -2024-05-30 07:00:00+00:00,28.37662337662377 -2024-05-30 08:00:00+00:00,26.339869281046546 -2024-05-30 09:00:00+00:00,24.95126705653091 -2024-05-30 10:00:00+00:00,25.492772667542724 -2024-05-30 11:00:00+00:00,23.529411764706182 -2024-05-30 12:00:00+00:00,20.68355922215666 -2024-05-30 13:00:00+00:00,24.617996604414444 -2024-05-30 14:00:00+00:00,26.45985401459859 -2024-05-30 15:00:00+00:00,24.860161591050556 -2024-05-30 16:00:00+00:00,29.26045016077238 -2024-05-30 17:00:00+00:00,29.980903882877428 -2024-05-30 18:00:00+00:00,37.603305785123474 -2024-05-30 19:00:00+00:00,44.98797113071377 -2024-05-30 20:00:00+00:00,53.42857142857152 -2024-05-30 21:00:00+00:00,39.22716627634692 -2024-05-30 22:00:00+00:00,41.48936170212737 -2024-05-30 23:00:00+00:00,53.71655104063367 -2024-05-31 00:00:00+00:00,42.83439490445849 -2024-05-31 01:00:00+00:00,47.65279007971672 -2024-05-31 02:00:00+00:00,57.00934579439327 -2024-05-31 03:00:00+00:00,53.218495013599075 -2024-05-31 04:00:00+00:00,55.273069679848895 -2024-05-31 05:00:00+00:00,57.28417266187044 -2024-05-31 06:00:00+00:00,59.949409780775 -2024-05-31 07:00:00+00:00,64.65773809523775 -2024-05-31 08:00:00+00:00,66.59634317862134 -2024-05-31 09:00:00+00:00,67.08246708246642 -2024-05-31 10:00:00+00:00,64.1059602648998 -2024-05-31 11:00:00+00:00,62.29086229086221 -2024-05-31 12:00:00+00:00,51.626898047722364 -2024-05-31 13:00:00+00:00,41.88222344523991 -2024-05-31 14:00:00+00:00,60.30571992110459 -2024-05-31 15:00:00+00:00,62.88144072035969 -2024-05-31 16:00:00+00:00,59.78723404255309 -2024-05-31 17:00:00+00:00,60.9424083769637 -2024-05-31 18:00:00+00:00,65.05376344086062 -2024-05-31 19:00:00+00:00,63.11010215664029 -2024-05-31 20:00:00+00:00,61.03117505995222 -2024-06-02 21:00:00+00:00,52.710646636185594 -2024-06-02 22:00:00+00:00,49.826749826749975 -2024-06-02 23:00:00+00:00,45.05277044854841 -2024-06-03 00:00:00+00:00,44.99341238471688 -2024-06-03 01:00:00+00:00,46.399456521739125 -2024-06-03 02:00:00+00:00,63.955223880597984 -2024-06-03 03:00:00+00:00,76.59574468085253 -2024-06-03 04:00:00+00:00,63.81578947368593 -2024-06-03 05:00:00+00:00,62.457337883961266 -2024-06-03 06:00:00+00:00,53.71819960861038 -2024-06-03 07:00:00+00:00,46.35701275045475 -2024-06-03 08:00:00+00:00,40.82892416225746 -2024-06-03 09:00:00+00:00,41.397379912663496 -2024-06-03 10:00:00+00:00,30.48611111111127 -2024-06-03 11:00:00+00:00,37.533692722371654 -2024-06-03 12:00:00+00:00,32.95378432685813 -2024-06-03 13:00:00+00:00,32.712765957446365 -2024-06-03 14:00:00+00:00,26.282051282050958 -2024-06-03 15:00:00+00:00,24.526420737786154 -2024-06-03 16:00:00+00:00,18.5145317545757 -2024-06-03 17:00:00+00:00,15.466219988833686 -2024-06-03 18:00:00+00:00,17.235682819383882 -2024-06-03 19:00:00+00:00,17.823947512301373 -2024-06-03 20:00:00+00:00,17.863013698629885 -2024-06-03 21:00:00+00:00,20.47153536515235 -2024-06-03 22:00:00+00:00,23.560517038777277 -2024-06-03 23:00:00+00:00,22.17787913340878 -2024-06-04 00:00:00+00:00,39.825581395347996 -2024-06-04 01:00:00+00:00,38.24582338902123 -2024-06-04 02:00:00+00:00,37.9289940828404 -2024-06-04 03:00:00+00:00,41.35101010100978 -2024-06-04 04:00:00+00:00,54.04290429042981 -2024-06-04 05:00:00+00:00,56.85763888888998 -2024-06-04 06:00:00+00:00,45.845481049562316 -2024-06-04 07:00:00+00:00,28.05953693494905 -2024-06-04 08:00:00+00:00,25.375536480685454 -2024-06-04 09:00:00+00:00,22.927072927072217 -2024-06-04 10:00:00+00:00,22.206095791000763 -2024-06-04 11:00:00+00:00,20.428571428570777 -2024-06-04 12:00:00+00:00,27.568270481143756 -2024-06-04 13:00:00+00:00,25.624496373891304 -2024-06-04 14:00:00+00:00,15.553522415369756 -2024-06-04 15:00:00+00:00,12.535344015078763 -2024-06-04 16:00:00+00:00,12.535344015078763 -2024-06-04 17:00:00+00:00,11.00436681222655 -2024-06-04 18:00:00+00:00,15.488069414315774 -2024-06-04 19:00:00+00:00,18.606701940034355 -2024-06-04 20:00:00+00:00,25.37313432835701 -2024-06-04 21:00:00+00:00,33.17073170731628 -2024-06-04 22:00:00+00:00,35.873015873015476 -2024-06-04 23:00:00+00:00,48.98929845422135 -2024-06-05 00:00:00+00:00,59.3392630241431 -2024-06-05 01:00:00+00:00,64.96660595021295 -2024-06-05 02:00:00+00:00,61.8638466622611 -2024-06-05 03:00:00+00:00,73.63494539781766 -2024-06-05 04:00:00+00:00,75.4716981132093 -2024-06-05 05:00:00+00:00,77.03081232493079 -2024-06-05 06:00:00+00:00,84.92462311557868 -2024-06-05 07:00:00+00:00,96.49758454106319 -2024-06-05 08:00:00+00:00,96.495468277946 -2024-06-05 09:00:00+00:00,85.25319977740729 -2024-06-05 10:00:00+00:00,84.44835680751234 -2024-06-05 11:00:00+00:00,87.97909407665529 -2024-06-05 12:00:00+00:00,85.32267275842466 -2024-06-05 13:00:00+00:00,67.04668838219406 -2024-06-05 14:00:00+00:00,73.62016514558934 -2024-06-05 15:00:00+00:00,68.69488536155215 -2024-06-05 16:00:00+00:00,64.34316353887428 -2024-06-05 17:00:00+00:00,63.64444444444506 -2024-06-05 18:00:00+00:00,61.85185185185235 -2024-06-05 19:00:00+00:00,60.560037968676646 -2024-06-05 20:00:00+00:00,55.632674853177264 -2024-06-05 21:00:00+00:00,47.494033412887624 -2024-06-05 22:00:00+00:00,39.63344788087043 -2024-06-05 23:00:00+00:00,45.947670708359496 -2024-06-06 00:00:00+00:00,38.34628190898994 -2024-06-06 01:00:00+00:00,35.569693464430074 -2024-06-06 02:00:00+00:00,36.817102137766476 -2024-06-06 03:00:00+00:00,43.81625441696057 -2024-06-06 04:00:00+00:00,21.209117938553177 -2024-06-06 05:00:00+00:00,35.98519888991635 -2024-06-06 06:00:00+00:00,47.432550043516144 -2024-06-06 07:00:00+00:00,56.54761904761862 -2024-06-06 08:00:00+00:00,52.19780219780197 -2024-06-06 09:00:00+00:00,46.3697376449054 -2024-06-06 10:00:00+00:00,47.86476868327391 -2024-06-06 11:00:00+00:00,53.73467112597518 -2024-06-06 12:00:00+00:00,61.614979520187354 -2024-06-06 13:00:00+00:00,56.10290093048769 -2024-06-06 14:00:00+00:00,61.377245508982185 -2024-06-06 15:00:00+00:00,59.76676384839704 -2024-06-06 16:00:00+00:00,53.9682539682542 -2024-06-06 17:00:00+00:00,55.19480519480552 -2024-06-06 18:00:00+00:00,48.41807909604483 -2024-06-06 19:00:00+00:00,41.05960264900657 -2024-06-06 20:00:00+00:00,35.208471211118066 -2024-06-06 21:00:00+00:00,24.384615384614605 -2024-06-06 22:00:00+00:00,27.31092436974764 -2024-06-06 23:00:00+00:00,36.07954545454432 -2024-06-07 00:00:00+00:00,37.90248390064329 -2024-06-07 01:00:00+00:00,25.0 -2024-06-07 02:00:00+00:00,27.898209236569116 -2024-06-07 03:00:00+00:00,30.296827021494337 -2024-06-07 04:00:00+00:00,28.4341978866468 -2024-06-07 05:00:00+00:00,27.977315689980557 -2024-06-07 06:00:00+00:00,28.626692456479958 -2024-06-07 07:00:00+00:00,33.68121442125225 -2024-06-07 08:00:00+00:00,34.46601941747565 -2024-06-07 09:00:00+00:00,44.23076923076878 -2024-06-07 10:00:00+00:00,48.21428571428559 -2024-06-07 11:00:00+00:00,49.074074074074424 -2024-06-07 12:00:00+00:00,74.45101351351359 -2024-06-07 13:00:00+00:00,75.70281124498014 -2024-06-07 14:00:00+00:00,72.04993958920679 -2024-06-07 15:00:00+00:00,67.15465465465522 -2024-06-07 16:00:00+00:00,66.37202152190663 -2024-06-07 17:00:00+00:00,66.42307692307685 -2024-06-07 18:00:00+00:00,71.47501015847288 -2024-06-07 19:00:00+00:00,74.54036770583596 -2024-06-07 20:00:00+00:00,79.7388374052232 -2024-06-09 21:00:00+00:00,78.67867867867893 -2024-06-09 22:00:00+00:00,81.96856906534376 -2024-06-09 23:00:00+00:00,78.29391891891939 -2024-06-10 00:00:00+00:00,77.57417102966895 -2024-06-10 01:00:00+00:00,78.03418803418832 -2024-06-10 02:00:00+00:00,58.14332247556988 -2024-06-10 03:00:00+00:00,57.937806873976925 -2024-06-10 04:00:00+00:00,61.08714408973337 -2024-06-10 05:00:00+00:00,74.76240760295781 -2024-06-10 06:00:00+00:00,73.96514161220163 -2024-06-10 07:00:00+00:00,70.65556711758634 -2024-06-10 08:00:00+00:00,66.42710472279339 -2024-06-10 09:00:00+00:00,58.42332613391024 -2024-06-10 10:00:00+00:00,52.886597938145094 -2024-06-10 11:00:00+00:00,56.29335976214147 -2024-06-10 12:00:00+00:00,53.87029288703009 -2024-06-10 13:00:00+00:00,53.75782881002114 -2024-06-10 14:00:00+00:00,53.36842105263135 -2024-06-10 15:00:00+00:00,51.95227765726695 -2024-06-10 16:00:00+00:00,50.832408435072985 -2024-06-10 17:00:00+00:00,39.97289972899716 -2024-06-10 18:00:00+00:00,47.148288973382975 -2024-06-10 19:00:00+00:00,46.67503136762865 -2024-06-10 20:00:00+00:00,45.23195876288752 -2024-06-10 21:00:00+00:00,51.24087591241058 -2024-06-10 22:00:00+00:00,55.945121951219946 -2024-06-10 23:00:00+00:00,61.88118811881244 -2024-06-11 00:00:00+00:00,77.4787535410773 -2024-06-11 01:00:00+00:00,75.76219512195163 -2024-06-11 02:00:00+00:00,74.76190476190473 -2024-06-11 03:00:00+00:00,76.09046849757975 -2024-06-11 04:00:00+00:00,77.50759878419706 -2024-06-11 05:00:00+00:00,76.76609105180835 -2024-06-11 06:00:00+00:00,74.44253859348414 -2024-06-11 07:00:00+00:00,76.57232704402828 -2024-06-11 08:00:00+00:00,60.38291605302099 -2024-06-11 09:00:00+00:00,68.28885400314002 -2024-06-11 10:00:00+00:00,54.296875000000156 -2024-06-11 11:00:00+00:00,55.39473684210491 -2024-06-11 12:00:00+00:00,42.542016806722884 -2024-06-11 13:00:00+00:00,54.03361344537721 -2024-06-11 14:00:00+00:00,54.340567612687266 -2024-06-11 15:00:00+00:00,54.340567612687266 -2024-06-11 16:00:00+00:00,53.83966244725772 -2024-06-11 17:00:00+00:00,46.36627906976766 -2024-06-11 18:00:00+00:00,41.26652748782193 -2024-06-11 19:00:00+00:00,43.54515050167198 -2024-06-11 20:00:00+00:00,45.472186287192336 -2024-06-11 21:00:00+00:00,42.76184122748453 -2024-06-11 22:00:00+00:00,47.248034310221655 -2024-06-11 23:00:00+00:00,45.29914529914511 -2024-06-12 00:00:00+00:00,53.2123960695382 -2024-06-12 01:00:00+00:00,51.35730007336783 -2024-06-12 02:00:00+00:00,62.17788861180435 -2024-06-12 03:00:00+00:00,52.291666666667226 -2024-06-12 04:00:00+00:00,45.34606205250576 -2024-06-12 05:00:00+00:00,45.14970059880311 -2024-06-12 06:00:00+00:00,44.34993924665927 -2024-06-12 07:00:00+00:00,62.286689419792395 -2024-06-12 08:00:00+00:00,77.84200385356424 -2024-06-12 09:00:00+00:00,74.89082969432263 -2024-06-12 10:00:00+00:00,72.48803827751208 -2024-06-12 11:00:00+00:00,75.5501222493861 -2024-06-12 12:00:00+00:00,18.51377322229399 -2024-06-12 13:00:00+00:00,15.10716152639884 -2024-06-12 14:00:00+00:00,12.073632918247625 -2024-06-12 15:00:00+00:00,17.103882476390922 -2024-06-12 16:00:00+00:00,14.307771487391364 -2024-06-12 17:00:00+00:00,18.80801172447555 -2024-06-12 18:00:00+00:00,38.14663193152219 -2024-06-12 19:00:00+00:00,43.08219178082202 -2024-06-12 20:00:00+00:00,40.68364611260037 -2024-06-12 21:00:00+00:00,39.224555735056875 -2024-06-12 22:00:00+00:00,42.3713235294118 -2024-06-12 23:00:00+00:00,42.10687960687939 -2024-06-13 00:00:00+00:00,41.815384615384374 -2024-06-13 01:00:00+00:00,42.38269347958558 -2024-06-13 02:00:00+00:00,68.39560439560434 -2024-06-13 03:00:00+00:00,82.28180862250308 -2024-06-13 04:00:00+00:00,82.6109391124873 -2024-06-13 05:00:00+00:00,81.9882415820421 -2024-06-13 06:00:00+00:00,86.42241379310289 -2024-06-13 07:00:00+00:00,86.54564869193769 -2024-06-13 08:00:00+00:00,77.3679798826487 -2024-06-13 09:00:00+00:00,66.66666666666575 -2024-06-13 10:00:00+00:00,73.81974248926862 -2024-06-13 11:00:00+00:00,86.8105515587489 -2024-06-13 12:00:00+00:00,63.54679802955591 -2024-06-13 13:00:00+00:00,69.77225672877856 -2024-06-13 14:00:00+00:00,56.166666666666416 -2024-06-13 15:00:00+00:00,47.78362133734042 -2024-06-13 16:00:00+00:00,43.99677679290884 -2024-06-13 17:00:00+00:00,47.3883421650258 -2024-06-13 18:00:00+00:00,44.37735849056595 -2024-06-13 19:00:00+00:00,49.34707903780049 -2024-06-13 20:00:00+00:00,44.937586685159886 -2024-06-13 21:00:00+00:00,39.84848484848455 -2024-06-13 22:00:00+00:00,43.68650217706778 -2024-06-13 23:00:00+00:00,47.84546805349201 -2024-06-14 00:00:00+00:00,50.988700564972504 -2024-06-14 01:00:00+00:00,51.53631284916248 -2024-06-14 02:00:00+00:00,61.4567526555388 -2024-06-14 03:00:00+00:00,69.21212121212191 -2024-06-14 04:00:00+00:00,82.5747724317308 -2024-06-14 05:00:00+00:00,93.69828134945949 -2024-06-14 06:00:00+00:00,82.95724465558295 -2024-06-14 07:00:00+00:00,69.57446808510721 -2024-06-14 08:00:00+00:00,64.75247524752497 -2024-06-14 09:00:00+00:00,50.77812361049412 -2024-06-14 10:00:00+00:00,49.01287553648085 -2024-06-14 11:00:00+00:00,51.15131578947336 -2024-06-14 12:00:00+00:00,53.301886792452976 -2024-06-14 13:00:00+00:00,53.00632911392384 -2024-06-14 14:00:00+00:00,53.466509988249015 -2024-06-14 15:00:00+00:00,50.59730250481709 -2024-06-14 16:00:00+00:00,49.72549019607823 -2024-06-14 17:00:00+00:00,37.79718583211969 -2024-06-14 18:00:00+00:00,33.07926829268267 -2024-06-14 19:00:00+00:00,26.5066964285715 -2024-06-14 20:00:00+00:00,33.860574106619 -2024-06-16 21:00:00+00:00,38.94878706199416 -2024-06-16 22:00:00+00:00,50.915254237288686 -2024-06-16 23:00:00+00:00,70.59874888293155 -2024-06-17 00:00:00+00:00,72.87822878228808 -2024-06-17 01:00:00+00:00,70.97729516288356 -2024-06-17 02:00:00+00:00,61.24567474048453 -2024-06-17 03:00:00+00:00,54.95103373231827 -2024-06-17 04:00:00+00:00,50.180505415161605 -2024-06-17 05:00:00+00:00,60.29776674937966 -2024-06-17 06:00:00+00:00,52.099886492622375 -2024-06-17 07:00:00+00:00,60.99815157116455 -2024-06-17 08:00:00+00:00,66.20087336244568 -2024-06-17 09:00:00+00:00,65.56939501779341 -2024-06-17 10:00:00+00:00,60.66985645933061 -2024-06-17 11:00:00+00:00,70.89241034195112 -2024-06-17 12:00:00+00:00,67.44402985074554 -2024-06-17 13:00:00+00:00,65.95949855351827 -2024-06-17 14:00:00+00:00,70.6611570247927 -2024-06-17 15:00:00+00:00,66.42857142857126 -2024-06-17 16:00:00+00:00,67.46113989637192 -2024-06-17 17:00:00+00:00,70.53087757312991 -2024-06-17 18:00:00+00:00,66.8067226890763 -2024-06-17 19:00:00+00:00,65.38882803943059 -2024-06-17 20:00:00+00:00,73.16176470588317 -2024-06-17 21:00:00+00:00,64.6203554119557 -2024-06-17 22:00:00+00:00,55.21023765996236 -2024-06-17 23:00:00+00:00,53.80434782608715 -2024-06-18 00:00:00+00:00,54.79704797047899 -2024-06-18 01:00:00+00:00,19.471153846151324 -2024-06-18 02:00:00+00:00,21.91142191142042 -2024-06-18 03:00:00+00:00,21.4611872146111 -2024-06-18 04:00:00+00:00,35.68464730290401 -2024-06-18 05:00:00+00:00,52.423698384199824 -2024-06-18 06:00:00+00:00,63.71951219512235 -2024-06-18 07:00:00+00:00,74.23469387755098 -2024-06-18 08:00:00+00:00,79.29226736566075 -2024-06-18 09:00:00+00:00,73.24840764330929 -2024-06-18 10:00:00+00:00,73.95171537483805 -2024-06-18 11:00:00+00:00,71.94513715710612 -2024-06-18 12:00:00+00:00,56.12840466926065 -2024-06-18 13:00:00+00:00,55.00476644423181 -2024-06-18 14:00:00+00:00,61.896838602328955 -2024-06-18 15:00:00+00:00,58.90736342042689 -2024-06-18 16:00:00+00:00,52.25019069412641 -2024-06-18 17:00:00+00:00,57.54847645429386 -2024-06-18 18:00:00+00:00,52.731092436974734 -2024-06-18 19:00:00+00:00,51.086956521739104 -2024-06-18 20:00:00+00:00,45.734597156398195 -2024-06-18 21:00:00+00:00,36.85612788632467 -2024-06-18 22:00:00+00:00,37.19081272084785 -2024-06-18 23:00:00+00:00,39.31860036832457 -2024-06-19 00:00:00+00:00,39.76234003656402 -2024-06-19 01:00:00+00:00,36.52392947103263 -2024-06-19 02:00:00+00:00,49.9005964214707 -2024-06-19 03:00:00+00:00,52.747252747252844 -2024-06-19 04:00:00+00:00,43.07875894988219 -2024-06-19 05:00:00+00:00,47.94156706507473 -2024-06-19 06:00:00+00:00,47.12793733681603 -2024-06-19 07:00:00+00:00,41.97707736389796 -2024-06-19 08:00:00+00:00,50.21770682148143 -2024-06-19 09:00:00+00:00,48.80597014925447 -2024-06-19 10:00:00+00:00,48.301329394387416 -2024-06-19 11:00:00+00:00,55.096418732782816 -2024-06-19 12:00:00+00:00,51.59944367176589 -2024-06-19 13:00:00+00:00,51.59944367176589 -2024-06-19 14:00:00+00:00,50.985915492956366 -2024-06-19 15:00:00+00:00,63.3914421553087 -2024-06-19 16:00:00+00:00,59.042553191488906 -2024-06-19 17:00:00+00:00,57.69230769230729 -2024-06-19 18:00:00+00:00,63.50482315112271 -2024-06-19 19:00:00+00:00,69.29824561403426 -2024-06-19 20:00:00+00:00,89.54372623574037 -2024-06-19 21:00:00+00:00,74.29111531190591 -2024-06-19 22:00:00+00:00,71.48846960167403 -2024-06-19 23:00:00+00:00,61.27659574467962 -2024-06-20 00:00:00+00:00,69.011406844105 -2024-06-20 01:00:00+00:00,65.75630252100808 -2024-06-20 02:00:00+00:00,70.50209205021159 -2024-06-20 03:00:00+00:00,70.25316455696324 -2024-06-20 04:00:00+00:00,73.49624060150454 -2024-06-20 05:00:00+00:00,65.24953789279128 -2024-06-20 06:00:00+00:00,66.78445229682035 -2024-06-20 07:00:00+00:00,73.44632768361637 -2024-06-20 08:00:00+00:00,76.26262626262695 -2024-06-20 09:00:00+00:00,78.1407035175869 -2024-06-20 10:00:00+00:00,72.41379310344814 -2024-06-20 11:00:00+00:00,81.43274853801361 -2024-06-20 12:00:00+00:00,84.08521303258328 -2024-06-20 13:00:00+00:00,91.12814895947531 -2024-06-20 14:00:00+00:00,90.54842473745754 -2024-06-20 15:00:00+00:00,90.81632653061327 -2024-06-20 16:00:00+00:00,91.4012738853513 -2024-06-20 17:00:00+00:00,91.63223140495974 -2024-06-20 18:00:00+00:00,83.04742684157375 -2024-06-20 19:00:00+00:00,88.4871550903894 -2024-06-20 20:00:00+00:00,88.45419847328189 -2024-06-20 21:00:00+00:00,84.82532751091635 -2024-06-20 22:00:00+00:00,80.02610966057306 -2024-06-20 23:00:00+00:00,80.63291139240373 -2024-06-21 00:00:00+00:00,87.0932754880671 -2024-06-21 01:00:00+00:00,74.92904446546797 -2024-06-21 02:00:00+00:00,71.71610169491403 -2024-06-21 03:00:00+00:00,60.634547591067644 -2024-06-21 04:00:00+00:00,59.520958083831424 -2024-06-21 05:00:00+00:00,60.42154566744664 -2024-06-21 06:00:00+00:00,56.66666666666544 -2024-06-21 07:00:00+00:00,43.94904458598727 -2024-06-21 08:00:00+00:00,51.591657519210976 -2024-06-21 09:00:00+00:00,49.829351535836985 -2024-06-21 10:00:00+00:00,53.870292887028484 -2024-06-21 11:00:00+00:00,49.42418426103643 -2024-06-21 12:00:00+00:00,51.512287334594134 -2024-06-21 13:00:00+00:00,58.495145631068546 -2024-06-21 14:00:00+00:00,65.70855614973308 -2024-06-21 15:00:00+00:00,66.59891598915956 -2024-06-21 16:00:00+00:00,67.39707835325402 -2024-06-21 17:00:00+00:00,72.47885491216738 -2024-06-21 18:00:00+00:00,70.82008900190787 -2024-06-21 19:00:00+00:00,70.83862770012784 -2024-06-21 20:00:00+00:00,74.15540540540616 -2024-06-23 21:00:00+00:00,78.299643281808 -2024-06-23 22:00:00+00:00,77.17258261933904 -2024-06-23 23:00:00+00:00,78.57553130384873 -2024-06-24 00:00:00+00:00,72.84730195178028 -2024-06-24 01:00:00+00:00,72.76376146788905 -2024-06-24 02:00:00+00:00,72.51157407407335 -2024-06-24 03:00:00+00:00,68.32010582010554 -2024-06-24 04:00:00+00:00,57.87159190853111 -2024-06-24 05:00:00+00:00,62.78625954198439 -2024-06-24 06:00:00+00:00,59.28030303030283 -2024-06-24 07:00:00+00:00,55.67010309278405 -2024-06-24 08:00:00+00:00,61.927945472248986 -2024-06-24 09:00:00+00:00,51.49592021758775 -2024-06-24 10:00:00+00:00,34.69785575048826 -2024-06-24 11:00:00+00:00,36.58787255909638 -2024-06-24 12:00:00+00:00,34.36293436293559 -2024-06-24 13:00:00+00:00,25.027563395810503 -2024-06-24 14:00:00+00:00,46.395563770794766 -2024-06-24 15:00:00+00:00,51.01626016260214 -2024-06-24 16:00:00+00:00,51.11561866125718 -2024-06-24 17:00:00+00:00,50.3496503496506 -2024-06-24 18:00:00+00:00,44.23828125000025 -2024-06-24 19:00:00+00:00,46.43931795386164 -2024-06-24 20:00:00+00:00,47.24489795918354 -2024-06-24 21:00:00+00:00,45.50050556117286 -2024-06-24 22:00:00+00:00,42.414529914529965 -2024-06-24 23:00:00+00:00,53.364817001180114 -2024-06-25 00:00:00+00:00,44.44444444444414 -2024-06-25 01:00:00+00:00,46.73469387755115 -2024-06-25 02:00:00+00:00,46.639511201629 -2024-06-25 03:00:00+00:00,51.70506912442432 -2024-06-25 04:00:00+00:00,33.14020857473835 -2024-06-25 05:00:00+00:00,35.193621867880864 -2024-06-25 06:00:00+00:00,35.99550056242879 -2024-06-25 07:00:00+00:00,37.28620296465078 -2024-06-25 08:00:00+00:00,40.22140221402182 -2024-06-25 09:00:00+00:00,37.783075089392234 -2024-06-25 10:00:00+00:00,38.28502415458931 -2024-06-25 11:00:00+00:00,41.64677804295792 -2024-06-25 12:00:00+00:00,51.051051051050436 -2024-06-25 13:00:00+00:00,46.52351738241376 -2024-06-25 14:00:00+00:00,70.13698630136975 -2024-06-25 15:00:00+00:00,69.41015089163264 -2024-06-25 16:00:00+00:00,79.10863509749507 -2024-06-25 17:00:00+00:00,71.40381282495656 -2024-06-25 18:00:00+00:00,70.66895368782143 -2024-06-25 19:00:00+00:00,64.08566721581553 -2024-06-25 20:00:00+00:00,65.66929133858386 -2024-06-25 21:00:00+00:00,63.467492260062706 -2024-06-25 22:00:00+00:00,65.12345679012338 -2024-06-25 23:00:00+00:00,70.31249999999972 -2024-06-26 00:00:00+00:00,72.44582043343638 -2024-06-26 01:00:00+00:00,73.66863905325548 -2024-06-26 02:00:00+00:00,66.15969581749168 -2024-06-26 03:00:00+00:00,70.85020242914868 -2024-06-26 04:00:00+00:00,56.23800383877119 -2024-06-26 05:00:00+00:00,61.48531951640773 -2024-06-26 06:00:00+00:00,57.361376673039636 -2024-06-26 07:00:00+00:00,64.32246998284751 -2024-06-26 08:00:00+00:00,74.486301369863 -2024-06-26 09:00:00+00:00,81.88277087033732 -2024-06-26 10:00:00+00:00,87.65133171912777 -2024-06-26 11:00:00+00:00,89.64241676942017 -2024-06-26 12:00:00+00:00,90.07092198581526 -2024-06-26 13:00:00+00:00,91.37577002053371 -2024-06-26 14:00:00+00:00,92.0604914933836 -2024-06-26 15:00:00+00:00,92.15686274509773 -2024-06-26 16:00:00+00:00,87.5234521575976 -2024-06-26 17:00:00+00:00,87.52345215759794 -2024-06-26 18:00:00+00:00,95.31996179560598 -2024-06-26 19:00:00+00:00,95.45875810935993 -2024-06-26 20:00:00+00:00,95.54545454545392 -2024-06-26 21:00:00+00:00,89.7058823529416 -2024-06-26 22:00:00+00:00,84.03669724770586 -2024-06-26 23:00:00+00:00,78.55251544571942 -2024-06-27 00:00:00+00:00,72.26027397260347 -2024-06-27 01:00:00+00:00,58.93358278765222 -2024-06-27 02:00:00+00:00,54.99999999999973 -2024-06-27 03:00:00+00:00,45.815450643776614 -2024-06-27 04:00:00+00:00,35.287730727469196 -2024-06-27 05:00:00+00:00,34.577387486278525 -2024-06-27 06:00:00+00:00,37.699316628700934 -2024-06-27 07:00:00+00:00,45.626242544731916 -2024-06-27 08:00:00+00:00,42.116402116402014 -2024-06-27 09:00:00+00:00,33.11475409836065 -2024-06-27 10:00:00+00:00,29.392971246006837 -2024-06-27 11:00:00+00:00,39.27125506072991 -2024-06-27 12:00:00+00:00,36.05947955390479 -2024-06-27 13:00:00+00:00,45.17271922054897 -2024-06-27 14:00:00+00:00,45.701754385964506 -2024-06-27 15:00:00+00:00,59.714285714284365 -2024-06-27 16:00:00+00:00,62.328767123287555 -2024-06-27 17:00:00+00:00,64.72332015810201 -2024-06-27 18:00:00+00:00,72.29166666666568 -2024-06-27 19:00:00+00:00,71.9409282700412 -2024-06-27 20:00:00+00:00,68.09815950920245 -2024-06-27 21:00:00+00:00,60.909090909089414 -2024-06-27 22:00:00+00:00,59.3750000000002 -2024-06-27 23:00:00+00:00,62.88416075650006 -2024-06-28 00:00:00+00:00,78.28241123038791 -2024-06-28 01:00:00+00:00,72.31833910034607 -2024-06-28 02:00:00+00:00,73.72134038800658 -2024-06-28 03:00:00+00:00,71.93973634651616 -2024-06-28 04:00:00+00:00,71.4011516314778 -2024-06-28 05:00:00+00:00,61.82170542635645 -2024-06-28 06:00:00+00:00,60.97087378640801 -2024-06-28 07:00:00+00:00,59.862610402355145 -2024-06-28 08:00:00+00:00,57.4446680080481 -2024-06-28 09:00:00+00:00,44.31137724550969 -2024-06-28 10:00:00+00:00,38.42729970326377 -2024-06-28 11:00:00+00:00,46.94148936170268 -2024-06-28 12:00:00+00:00,43.55336212214688 -2024-06-28 13:00:00+00:00,42.86581663630897 -2024-06-28 14:00:00+00:00,40.78036500944075 -2024-06-28 15:00:00+00:00,44.29741650913643 -2024-06-28 16:00:00+00:00,47.086403215003706 -2024-06-28 17:00:00+00:00,43.7081659973229 -2024-06-28 18:00:00+00:00,41.91988950276299 -2024-06-28 19:00:00+00:00,47.125621007807275 -2024-06-28 20:00:00+00:00,47.76754075123963 -2024-06-30 21:00:00+00:00,46.70824670824665 -2024-06-30 22:00:00+00:00,46.83808200139042 -2024-06-30 23:00:00+00:00,59.0389016018308 -2024-07-01 00:00:00+00:00,73.10344827586388 -2024-07-01 01:00:00+00:00,63.339731285989515 -2024-07-01 02:00:00+00:00,70.73954983923102 -2024-07-01 03:00:00+00:00,77.8202676864274 -2024-07-01 04:00:00+00:00,67.23163841808189 -2024-07-01 05:00:00+00:00,61.28093158660973 -2024-07-01 06:00:00+00:00,53.49428208386355 -2024-07-01 07:00:00+00:00,62.67772511848427 -2024-07-01 08:00:00+00:00,62.11401425178088 -2024-07-01 09:00:00+00:00,62.158956109134934 -2024-07-01 10:00:00+00:00,64.15730337078728 -2024-07-01 11:00:00+00:00,65.48165137614762 -2024-07-01 12:00:00+00:00,73.83093525179873 -2024-07-01 13:00:00+00:00,72.39089184060683 -2024-07-01 14:00:00+00:00,76.53225806451655 -2024-07-01 15:00:00+00:00,74.90134175217001 -2024-07-01 16:00:00+00:00,74.2566510172142 -2024-07-01 17:00:00+00:00,69.61471103327486 -2024-07-01 18:00:00+00:00,69.61471103327412 -2024-07-01 19:00:00+00:00,68.83116883116938 -2024-07-01 20:00:00+00:00,77.78864970645736 -2024-07-01 21:00:00+00:00,73.3974358974358 -2024-07-01 22:00:00+00:00,72.62156448203018 -2024-07-01 23:00:00+00:00,73.13278008298816 -2024-07-02 00:00:00+00:00,71.75572519084038 -2024-07-02 01:00:00+00:00,76.48221343873458 -2024-07-02 02:00:00+00:00,66.83673469387716 -2024-07-02 03:00:00+00:00,66.92111959287652 -2024-07-02 04:00:00+00:00,52.02952029520225 -2024-07-02 05:00:00+00:00,65.53911205074047 -2024-07-02 06:00:00+00:00,66.81034482758486 -2024-07-02 07:00:00+00:00,66.95464362850907 -2024-07-02 08:00:00+00:00,56.86274509804185 -2024-07-02 09:00:00+00:00,67.90352504638467 -2024-07-02 10:00:00+00:00,61.51260504201742 -2024-07-02 11:00:00+00:00,64.67576791808888 -2024-07-02 12:00:00+00:00,55.735294117647456 -2024-07-02 13:00:00+00:00,40.94594594594438 -2024-07-02 14:00:00+00:00,44.68354430379703 -2024-07-02 15:00:00+00:00,43.3937823834212 -2024-07-02 16:00:00+00:00,47.3350253807105 -2024-07-02 17:00:00+00:00,41.38364779874166 -2024-07-02 18:00:00+00:00,38.59432799013519 -2024-07-02 19:00:00+00:00,34.926470588235986 -2024-07-02 20:00:00+00:00,36.98113207547143 -2024-07-02 21:00:00+00:00,37.02770780856418 -2024-07-02 22:00:00+00:00,38.888888888888054 -2024-07-02 23:00:00+00:00,38.152610441767344 -2024-07-03 00:00:00+00:00,46.92005242463957 -2024-07-03 01:00:00+00:00,50.66991473812403 -2024-07-03 02:00:00+00:00,59.090909090910166 -2024-07-03 03:00:00+00:00,70.55921052631757 -2024-07-03 04:00:00+00:00,71.85534591195113 -2024-07-03 05:00:00+00:00,74.05797101449436 -2024-07-03 06:00:00+00:00,66.80790960452046 -2024-07-03 07:00:00+00:00,67.66809728183057 -2024-07-03 08:00:00+00:00,73.88963660834594 -2024-07-03 09:00:00+00:00,77.91495198902543 -2024-07-03 10:00:00+00:00,79.74842767295621 -2024-07-03 11:00:00+00:00,79.1510611735305 -2024-07-03 12:00:00+00:00,73.12572087658364 -2024-07-03 13:00:00+00:00,61.16504854368873 -2024-07-03 14:00:00+00:00,40.49180327868899 -2024-07-03 15:00:00+00:00,44.02467232074037 -2024-07-03 16:00:00+00:00,45.82089552238845 -2024-07-03 17:00:00+00:00,45.213549337261064 -2024-07-03 18:00:00+00:00,48.04469273743085 -2024-07-03 19:00:00+00:00,43.63636363636363 -2024-07-03 20:00:00+00:00,45.741324921135586 -2024-07-03 21:00:00+00:00,42.741341193809916 -2024-07-03 22:00:00+00:00,40.732265446223415 -2024-07-03 23:00:00+00:00,39.343009931245575 -2024-07-04 00:00:00+00:00,31.88405797101443 -2024-07-04 01:00:00+00:00,30.769230769231072 -2024-07-04 02:00:00+00:00,36.56980864635018 -2024-07-04 03:00:00+00:00,44.10480349344954 -2024-07-04 04:00:00+00:00,58.045977011494685 -2024-07-04 05:00:00+00:00,50.10940919037252 -2024-07-04 06:00:00+00:00,40.688259109311595 -2024-07-04 07:00:00+00:00,39.373163565131456 -2024-07-04 08:00:00+00:00,26.785714285713368 -2024-07-04 09:00:00+00:00,24.161849710981073 -2024-07-04 10:00:00+00:00,19.44971537001848 -2024-07-04 11:00:00+00:00,20.854526958290435 -2024-07-04 12:00:00+00:00,28.558310376491747 -2024-07-04 13:00:00+00:00,30.438756855574866 -2024-07-04 14:00:00+00:00,31.866028708132347 -2024-07-04 15:00:00+00:00,39.39393939393808 -2024-07-04 16:00:00+00:00,34.239677744209075 -2024-07-04 17:00:00+00:00,29.557713052857764 -2024-07-04 18:00:00+00:00,37.296747967478694 -2024-07-04 19:00:00+00:00,36.92152917504964 -2024-07-04 20:00:00+00:00,45.26431718061553 -2024-07-04 21:00:00+00:00,47.95799299883306 -2024-07-04 22:00:00+00:00,51.59763313609405 -2024-07-04 23:00:00+00:00,55.63991323210521 -2024-07-05 00:00:00+00:00,50.59171597633141 -2024-07-05 01:00:00+00:00,50.59171597633141 -2024-07-05 02:00:00+00:00,40.668824163969326 -2024-07-05 03:00:00+00:00,28.332003192337893 -2024-07-05 04:00:00+00:00,32.17612193056739 -2024-07-05 05:00:00+00:00,29.61335676625623 -2024-07-05 06:00:00+00:00,35.25061626951499 -2024-07-05 07:00:00+00:00,33.89121338912082 -2024-07-05 08:00:00+00:00,27.488986784141545 -2024-07-05 09:00:00+00:00,27.177700348432495 -2024-07-05 10:00:00+00:00,30.79470198675544 -2024-07-05 11:00:00+00:00,32.340777502068605 -2024-07-05 12:00:00+00:00,37.41392501912763 -2024-07-05 13:00:00+00:00,46.91758598312793 -2024-07-05 14:00:00+00:00,46.40564826700836 -2024-07-05 15:00:00+00:00,41.86450492182975 -2024-07-05 16:00:00+00:00,47.842708902239025 -2024-07-05 17:00:00+00:00,57.669519420671605 -2024-07-05 18:00:00+00:00,52.46609124537649 -2024-07-05 19:00:00+00:00,52.69938650306817 -2024-07-05 20:00:00+00:00,50.92297899427108 -2024-07-07 21:00:00+00:00,49.14004914004938 -2024-07-07 22:00:00+00:00,50.95619987661957 -2024-07-07 23:00:00+00:00,48.30409356725085 -2024-07-08 00:00:00+00:00,44.24019607843175 -2024-07-08 01:00:00+00:00,38.77551020408144 -2024-07-08 02:00:00+00:00,33.526011560694016 -2024-07-08 03:00:00+00:00,24.6395806028835 -2024-07-08 04:00:00+00:00,33.43799058084748 -2024-07-08 05:00:00+00:00,48.545303408146445 -2024-07-08 06:00:00+00:00,47.89562289562364 -2024-07-08 07:00:00+00:00,52.016460905350066 -2024-07-08 08:00:00+00:00,64.48087431693908 -2024-07-08 09:00:00+00:00,60.40372670807471 -2024-07-08 10:00:00+00:00,54.941002949853065 -2024-07-08 11:00:00+00:00,59.76676384839663 -2024-07-08 12:00:00+00:00,47.716346153845485 -2024-07-08 13:00:00+00:00,50.63775510204116 -2024-07-08 14:00:00+00:00,50.063051702396265 -2024-07-08 15:00:00+00:00,61.78179470626299 -2024-07-08 16:00:00+00:00,61.50385604113178 -2024-07-08 17:00:00+00:00,58.08011049723733 -2024-07-08 18:00:00+00:00,58.53825136612056 -2024-07-08 19:00:00+00:00,53.66412213740487 -2024-07-08 20:00:00+00:00,50.04115226337351 -2024-07-08 21:00:00+00:00,46.069315300084675 -2024-07-08 22:00:00+00:00,34.82142857142827 -2024-07-08 23:00:00+00:00,41.43968871595198 -2024-07-09 00:00:00+00:00,47.758081334723215 -2024-07-09 01:00:00+00:00,48.35051546391688 -2024-07-09 02:00:00+00:00,73.00884955752502 -2024-07-09 03:00:00+00:00,78.43704775687638 -2024-07-09 04:00:00+00:00,73.64130434782629 -2024-07-09 05:00:00+00:00,59.873617693523194 -2024-07-09 06:00:00+00:00,57.250755287009575 -2024-07-09 07:00:00+00:00,63.33333333333497 -2024-07-09 08:00:00+00:00,66.21621621621753 -2024-07-09 09:00:00+00:00,65.56372549019653 -2024-07-09 10:00:00+00:00,61.42322097378467 -2024-07-09 11:00:00+00:00,68.08266360505192 -2024-07-09 12:00:00+00:00,69.98841251448496 -2024-07-09 13:00:00+00:00,58.71254162042252 -2024-07-09 14:00:00+00:00,69.35749588138428 -2024-07-09 15:00:00+00:00,68.04123711340294 -2024-07-09 16:00:00+00:00,62.88998357963858 -2024-07-09 17:00:00+00:00,61.40051238257889 -2024-07-09 18:00:00+00:00,65.96330275229455 -2024-07-09 19:00:00+00:00,68.34600760456266 -2024-07-09 20:00:00+00:00,74.35129740518937 -2024-07-09 21:00:00+00:00,69.70998925886067 -2024-07-09 22:00:00+00:00,66.50831353919165 -2024-07-09 23:00:00+00:00,66.90561529271093 -2024-07-10 00:00:00+00:00,73.62288135593096 -2024-07-10 01:00:00+00:00,72.69736842105107 -2024-07-10 02:00:00+00:00,70.25862068965486 -2024-07-10 03:00:00+00:00,73.17620650953762 -2024-07-10 04:00:00+00:00,57.321428571427234 -2024-07-10 05:00:00+00:00,58.86402753872393 -2024-07-10 06:00:00+00:00,53.85826771653583 -2024-07-10 07:00:00+00:00,61.64921465968553 -2024-07-10 08:00:00+00:00,62.987012987011596 -2024-07-10 09:00:00+00:00,68.04374240583198 -2024-07-10 10:00:00+00:00,63.87559808612462 -2024-07-10 11:00:00+00:00,61.02857142857248 -2024-07-10 12:00:00+00:00,56.797235023041225 -2024-07-10 13:00:00+00:00,63.22517207472991 -2024-07-10 14:00:00+00:00,60.465116279069 -2024-07-10 15:00:00+00:00,60.71428571428614 -2024-07-10 16:00:00+00:00,59.282051282050205 -2024-07-10 17:00:00+00:00,66.42259414226024 -2024-07-10 18:00:00+00:00,66.94129763130826 -2024-07-10 19:00:00+00:00,62.224554039873894 -2024-07-10 20:00:00+00:00,70.17751479289925 -2024-07-10 21:00:00+00:00,54.5240893066976 -2024-07-10 22:00:00+00:00,54.78971962616757 -2024-07-10 23:00:00+00:00,50.57471264367903 -2024-07-11 00:00:00+00:00,51.16279069767433 -2024-07-11 01:00:00+00:00,56.749311294764 -2024-07-11 02:00:00+00:00,63.35078534031348 -2024-07-11 03:00:00+00:00,53.18471337579519 -2024-07-11 04:00:00+00:00,51.960784313725306 -2024-07-11 05:00:00+00:00,45.856353591159234 -2024-07-11 06:00:00+00:00,54.048964218455865 -2024-07-11 07:00:00+00:00,40.42179261862916 -2024-07-11 08:00:00+00:00,31.16279069767593 -2024-07-11 09:00:00+00:00,35.09615384615613 -2024-07-11 10:00:00+00:00,36.62207357859654 -2024-07-11 11:00:00+00:00,46.10526315789727 -2024-07-11 12:00:00+00:00,5.986231667165953 -2024-07-11 13:00:00+00:00,5.851063829787435 -2024-07-11 14:00:00+00:00,5.8166862514690365 -2024-07-11 15:00:00+00:00,6.06504541459185 -2024-07-11 16:00:00+00:00,4.02504472271967 -2024-07-11 17:00:00+00:00,10.474860335196212 -2024-07-11 18:00:00+00:00,9.08333333333394 -2024-07-11 19:00:00+00:00,11.035607502039355 -2024-07-11 20:00:00+00:00,11.921420882669736 -2024-07-11 21:00:00+00:00,13.240513240513465 -2024-07-11 22:00:00+00:00,20.798969072165093 -2024-07-11 23:00:00+00:00,16.305021698698212 -2024-07-12 00:00:00+00:00,28.08948863636371 -2024-07-12 01:00:00+00:00,31.58251440189784 -2024-07-12 02:00:00+00:00,60.736396220267366 -2024-07-12 03:00:00+00:00,60.16785022595192 -2024-07-12 04:00:00+00:00,58.727158160050266 -2024-07-12 05:00:00+00:00,57.165060615480364 -2024-07-12 06:00:00+00:00,58.636363636363505 -2024-07-12 07:00:00+00:00,56.50095602294433 -2024-07-12 08:00:00+00:00,55.66718995290458 -2024-07-12 09:00:00+00:00,55.513547574039066 -2024-07-12 10:00:00+00:00,53.318584070796625 -2024-07-12 11:00:00+00:00,50.44464888071183 -2024-07-12 12:00:00+00:00,42.677419354838904 -2024-07-12 13:00:00+00:00,50.61208875286938 -2024-07-12 14:00:00+00:00,21.90082644628049 -2024-07-12 15:00:00+00:00,18.534482758619276 -2024-07-12 16:00:00+00:00,18.744551002613946 -2024-07-12 17:00:00+00:00,22.84482758620635 -2024-07-12 18:00:00+00:00,23.53463587921776 -2024-07-12 19:00:00+00:00,23.368606701939413 -2024-07-12 20:00:00+00:00,21.817363922626853 -2024-07-14 21:00:00+00:00,28.211482858323137 -2024-07-14 22:00:00+00:00,34.66183574879214 -2024-07-14 23:00:00+00:00,32.00488003253376 -2024-07-15 00:00:00+00:00,30.62256809338554 -2024-07-15 01:00:00+00:00,31.568391496189278 -2024-07-15 02:00:00+00:00,33.4466638334039 -2024-07-15 03:00:00+00:00,40.96824570536167 -2024-07-15 04:00:00+00:00,60.19345238095203 -2024-07-15 05:00:00+00:00,52.11970074813024 -2024-07-15 06:00:00+00:00,58.70870870870942 -2024-07-15 07:00:00+00:00,48.23196605374788 -2024-07-15 08:00:00+00:00,46.584699453552176 -2024-07-15 09:00:00+00:00,54.16940249507474 -2024-07-15 10:00:00+00:00,52.226720647773284 -2024-07-15 11:00:00+00:00,48.283418553688996 -2024-07-15 12:00:00+00:00,36.04477611940379 -2024-07-15 13:00:00+00:00,36.646433990895844 -2024-07-15 14:00:00+00:00,39.590163934426165 -2024-07-15 15:00:00+00:00,43.13395113732091 -2024-07-15 16:00:00+00:00,38.123603871929355 -2024-07-15 17:00:00+00:00,48.187919463087226 -2024-07-15 18:00:00+00:00,45.37157757496751 -2024-07-15 19:00:00+00:00,49.0083173384515 -2024-07-15 20:00:00+00:00,49.937185929647946 -2024-07-15 21:00:00+00:00,55.28511821975032 -2024-07-15 22:00:00+00:00,61.2318840579716 -2024-07-15 23:00:00+00:00,57.53968253968284 -2024-07-16 00:00:00+00:00,64.13934426229521 -2024-07-16 01:00:00+00:00,64.13934426229521 -2024-07-16 02:00:00+00:00,74.59459459459504 -2024-07-16 03:00:00+00:00,72.87128712871475 -2024-07-16 04:00:00+00:00,76.97095435684867 -2024-07-16 05:00:00+00:00,77.87375415282607 -2024-07-16 06:00:00+00:00,79.08232118758642 -2024-07-16 07:00:00+00:00,71.44970414201404 -2024-07-16 08:00:00+00:00,73.46007604562857 -2024-07-16 09:00:00+00:00,68.65900383141854 -2024-07-16 10:00:00+00:00,64.24825174825244 -2024-07-16 11:00:00+00:00,61.04651162790732 -2024-07-16 12:00:00+00:00,70.0319488817902 -2024-07-16 13:00:00+00:00,64.5996387718251 -2024-07-16 14:00:00+00:00,57.45819397993381 -2024-07-16 15:00:00+00:00,51.70876671619592 -2024-07-16 16:00:00+00:00,43.703703703703766 -2024-07-16 17:00:00+00:00,43.41782502044124 -2024-07-16 18:00:00+00:00,39.30722891566275 -2024-07-16 19:00:00+00:00,36.63522012578564 -2024-07-16 20:00:00+00:00,42.70650263620385 -2024-07-16 21:00:00+00:00,42.445414847161366 -2024-07-16 22:00:00+00:00,44.19840566873333 -2024-07-16 23:00:00+00:00,47.945205479452625 -2024-07-17 00:00:00+00:00,52.261306532663426 -2024-07-17 01:00:00+00:00,55.71428571428507 -2024-07-17 02:00:00+00:00,27.69830949284686 -2024-07-17 03:00:00+00:00,31.140350877192205 -2024-07-17 04:00:00+00:00,26.75879396984874 -2024-07-17 05:00:00+00:00,19.24119241192406 -2024-07-17 06:00:00+00:00,18.554006968640635 -2024-07-17 07:00:00+00:00,11.690450054884394 -2024-07-17 08:00:00+00:00,8.389129578574043 -2024-07-17 09:00:00+00:00,13.27367636092454 -2024-07-17 10:00:00+00:00,21.97249245219733 -2024-07-17 11:00:00+00:00,20.973422990714155 -2024-07-17 12:00:00+00:00,21.997471554993695 -2024-07-17 13:00:00+00:00,19.56204379562017 -2024-07-17 14:00:00+00:00,21.777399204997096 -2024-07-17 15:00:00+00:00,23.307218802462287 -2024-07-17 16:00:00+00:00,22.07207207207219 -2024-07-17 17:00:00+00:00,25.46153846153848 -2024-07-17 18:00:00+00:00,24.219512195121865 -2024-07-17 19:00:00+00:00,27.8714026445421 -2024-07-17 20:00:00+00:00,28.93147807823587 -2024-07-17 21:00:00+00:00,35.456885456885544 -2024-07-17 22:00:00+00:00,48.14329401485348 -2024-07-17 23:00:00+00:00,35.653846153846644 -2024-07-18 00:00:00+00:00,28.65671641791033 -2024-07-18 01:00:00+00:00,45.15151515151517 -2024-07-18 02:00:00+00:00,45.234493192132966 -2024-07-18 03:00:00+00:00,53.16659943525581 -2024-07-18 04:00:00+00:00,46.686491079014296 -2024-07-18 05:00:00+00:00,39.776665383134194 -2024-07-18 06:00:00+00:00,46.24896949711423 -2024-07-18 07:00:00+00:00,45.48494983277574 -2024-07-18 08:00:00+00:00,58.007117437722755 -2024-07-18 09:00:00+00:00,56.89497716895025 -2024-07-18 10:00:00+00:00,53.98582816651923 -2024-07-18 11:00:00+00:00,57.031924072476265 -2024-07-18 12:00:00+00:00,55.82770270270307 -2024-07-18 13:00:00+00:00,72.46804326450385 -2024-07-18 14:00:00+00:00,73.84399813171457 -2024-07-18 15:00:00+00:00,69.5321001088143 -2024-07-18 16:00:00+00:00,71.31147540983653 -2024-07-18 17:00:00+00:00,70.10144153764094 -2024-07-18 18:00:00+00:00,75.10683760683813 -2024-07-18 19:00:00+00:00,90.46751669702576 -2024-07-18 20:00:00+00:00,89.57800511509039 -2024-07-18 21:00:00+00:00,88.29639889196763 -2024-07-18 22:00:00+00:00,80.47112462006177 -2024-07-18 23:00:00+00:00,74.83731019522801 -2024-07-19 00:00:00+00:00,80.90566037735898 -2024-07-19 01:00:00+00:00,82.75391956373629 -2024-07-19 02:00:00+00:00,84.07202216066375 -2024-07-19 03:00:00+00:00,79.7297297297293 -2024-07-19 04:00:00+00:00,78.62232779097363 -2024-07-19 05:00:00+00:00,79.82062780269015 -2024-07-19 06:00:00+00:00,53.46062052506005 -2024-07-19 07:00:00+00:00,53.791469194312405 -2024-07-19 08:00:00+00:00,49.33414043583561 -2024-07-19 09:00:00+00:00,50.0298507462688 -2024-07-19 10:00:00+00:00,52.70347182697781 -2024-07-19 11:00:00+00:00,53.23129251700697 -2024-07-19 12:00:00+00:00,60.8395324123271 -2024-07-19 13:00:00+00:00,58.56777493606178 -2024-07-19 14:00:00+00:00,53.065134099617296 -2024-07-19 15:00:00+00:00,48.202959830866405 -2024-07-19 16:00:00+00:00,49.89350372736979 -2024-07-19 17:00:00+00:00,50.95160413268076 -2024-07-19 18:00:00+00:00,50.2756339581034 -2024-07-19 19:00:00+00:00,41.199478487613206 -2024-07-19 20:00:00+00:00,60.133206470029194 -2024-07-21 21:00:00+00:00,55.10983763132786 -2024-07-21 22:00:00+00:00,50.26132404181187 -2024-07-21 23:00:00+00:00,52.337228714524784 -2024-07-22 00:00:00+00:00,48.69721473495068 -2024-07-22 01:00:00+00:00,53.042763157895365 -2024-07-22 02:00:00+00:00,43.85447394296915 -2024-07-22 03:00:00+00:00,48.2683982683976 -2024-07-22 04:00:00+00:00,56.5272496831423 -2024-07-22 05:00:00+00:00,34.642233856893185 -2024-07-22 06:00:00+00:00,21.728971962616484 -2024-07-22 07:00:00+00:00,35.40762180414848 -2024-07-22 08:00:00+00:00,32.719123505975986 -2024-07-22 09:00:00+00:00,30.685061845861 -2024-07-22 10:00:00+00:00,35.78805568028682 -2024-07-22 11:00:00+00:00,37.003197807217795 -2024-07-22 12:00:00+00:00,38.645038167938665 -2024-07-22 13:00:00+00:00,35.9880537580877 -2024-07-22 14:00:00+00:00,36.399604352125884 -2024-07-22 15:00:00+00:00,39.224952741020026 -2024-07-22 16:00:00+00:00,38.76589731512034 -2024-07-22 17:00:00+00:00,41.9735599622281 -2024-07-22 18:00:00+00:00,41.29122155132335 -2024-07-22 19:00:00+00:00,51.166761525328035 -2024-07-22 20:00:00+00:00,75.29313232830843 -2024-07-22 21:00:00+00:00,57.9288025889966 -2024-07-22 22:00:00+00:00,62.2754491017971 -2024-07-22 23:00:00+00:00,60.40658276863533 -2024-07-23 00:00:00+00:00,41.806908768822005 -2024-07-23 01:00:00+00:00,43.60515021459235 -2024-07-23 02:00:00+00:00,43.27086882453106 -2024-07-23 03:00:00+00:00,30.041152263375068 -2024-07-23 04:00:00+00:00,30.61224489795977 -2024-07-23 05:00:00+00:00,19.685039370080375 -2024-07-23 06:00:00+00:00,34.162303664921666 -2024-07-23 07:00:00+00:00,22.70916334661507 -2024-07-23 08:00:00+00:00,23.14720812182874 -2024-07-23 09:00:00+00:00,21.992110453649374 -2024-07-23 10:00:00+00:00,26.175771971497625 -2024-07-23 11:00:00+00:00,31.081719414266445 -2024-07-23 12:00:00+00:00,26.50882079851496 -2024-07-23 13:00:00+00:00,30.380356283101193 -2024-07-23 14:00:00+00:00,32.52577319587685 -2024-07-23 15:00:00+00:00,32.386363636364536 -2024-07-23 16:00:00+00:00,29.828734538535684 -2024-07-23 17:00:00+00:00,34.00216919739756 -2024-07-23 18:00:00+00:00,31.895633652822923 -2024-07-23 19:00:00+00:00,32.07647371216204 -2024-07-23 20:00:00+00:00,20.14563106796288 -2024-07-23 21:00:00+00:00,29.642857142858517 -2024-07-23 22:00:00+00:00,33.509234828497696 -2024-07-23 23:00:00+00:00,42.378559463987756 -2024-07-24 00:00:00+00:00,40.43290043290099 -2024-07-24 01:00:00+00:00,22.14022140221539 -2024-07-24 02:00:00+00:00,24.37086092715407 -2024-07-24 03:00:00+00:00,18.644067796612035 -2024-07-24 04:00:00+00:00,15.500754906896688 -2024-07-24 05:00:00+00:00,14.598168870803704 -2024-07-24 06:00:00+00:00,16.17812852311195 -2024-07-24 07:00:00+00:00,17.399049881235555 -2024-07-24 08:00:00+00:00,29.79397781299531 -2024-07-24 09:00:00+00:00,27.9673968415684 -2024-07-24 10:00:00+00:00,25.678203928905106 -2024-07-24 11:00:00+00:00,21.995192307691852 -2024-07-24 12:00:00+00:00,17.705382436259896 -2024-07-24 13:00:00+00:00,12.211006186909103 -2024-07-24 14:00:00+00:00,9.735349716445299 -2024-07-24 15:00:00+00:00,15.515330624307083 -2024-07-24 16:00:00+00:00,18.028673835124337 -2024-07-24 17:00:00+00:00,29.12984364377924 -2024-07-24 18:00:00+00:00,38.70605833956572 -2024-07-24 19:00:00+00:00,38.475975975976375 -2024-07-24 20:00:00+00:00,37.449762513701025 -2024-07-24 21:00:00+00:00,35.94356261022901 -2024-07-24 22:00:00+00:00,27.13093942691367 -2024-07-24 23:00:00+00:00,35.60910307898298 -2024-07-25 00:00:00+00:00,30.8584686774945 -2024-07-25 01:00:00+00:00,30.804863925883325 -2024-07-25 02:00:00+00:00,32.25219763564746 -2024-07-25 03:00:00+00:00,32.74853801169604 -2024-07-25 04:00:00+00:00,40.4255319148938 -2024-07-25 05:00:00+00:00,40.58355437665776 -2024-07-25 06:00:00+00:00,40.89709762533025 -2024-07-25 07:00:00+00:00,28.04418103448309 -2024-07-25 08:00:00+00:00,33.984181908057636 -2024-07-25 09:00:00+00:00,30.6946323861074 -2024-07-25 10:00:00+00:00,30.868677704695017 -2024-07-25 11:00:00+00:00,38.89580738895823 -2024-07-25 12:00:00+00:00,49.28097345132741 -2024-07-25 13:00:00+00:00,47.50000000000003 -2024-07-25 14:00:00+00:00,54.356846473029 -2024-07-25 15:00:00+00:00,62.312444836716416 -2024-07-25 16:00:00+00:00,65.88613406795223 -2024-07-25 17:00:00+00:00,71.20949789760066 -2024-07-25 18:00:00+00:00,64.60110386352247 -2024-07-25 19:00:00+00:00,64.7073536768383 -2024-07-25 20:00:00+00:00,63.457106274007614 -2024-07-25 21:00:00+00:00,76.49923896499243 -2024-07-25 22:00:00+00:00,71.26068376068383 -2024-07-25 23:00:00+00:00,76.78434382195027 -2024-07-26 00:00:00+00:00,81.34164222874003 -2024-07-26 01:00:00+00:00,66.82334508421539 -2024-07-26 02:00:00+00:00,59.49306551889076 -2024-07-26 03:00:00+00:00,52.35404896421845 -2024-07-26 04:00:00+00:00,50.799451804476895 -2024-07-26 05:00:00+00:00,41.154661016948694 -2024-07-26 06:00:00+00:00,39.5135135135127 -2024-07-26 07:00:00+00:00,47.29156853509148 -2024-07-26 08:00:00+00:00,61.4159292035401 -2024-07-26 09:00:00+00:00,56.474820143885324 -2024-07-26 10:00:00+00:00,62.957198443580026 -2024-07-26 11:00:00+00:00,63.0721489526769 -2024-07-26 12:00:00+00:00,55.34377127297477 -2024-07-26 13:00:00+00:00,51.56993339676484 -2024-07-26 14:00:00+00:00,43.497065183812225 -2024-07-26 15:00:00+00:00,54.38972162740912 -2024-07-26 16:00:00+00:00,47.76267815710986 -2024-07-26 17:00:00+00:00,49.62121212121227 -2024-07-26 18:00:00+00:00,50.95473833097599 -2024-07-26 19:00:00+00:00,52.038284296349 -2024-07-26 20:00:00+00:00,52.07520397303992 -2024-07-28 21:00:00+00:00,45.405819295559326 -2024-07-28 22:00:00+00:00,44.513618677042516 -2024-07-28 23:00:00+00:00,48.90510948905132 -2024-07-29 00:00:00+00:00,33.296783625731166 -2024-07-29 01:00:00+00:00,29.858961128310995 -2024-07-29 02:00:00+00:00,34.254143646408764 -2024-07-29 03:00:00+00:00,43.52144469525946 -2024-07-29 04:00:00+00:00,47.88872329855917 -2024-07-29 05:00:00+00:00,35.52631578947339 -2024-07-29 06:00:00+00:00,36.66666666666685 -2024-07-29 07:00:00+00:00,46.834061135370746 -2024-07-29 08:00:00+00:00,48.79074658254412 -2024-07-29 09:00:00+00:00,48.4383271572261 -2024-07-29 10:00:00+00:00,48.08197582764036 -2024-07-29 11:00:00+00:00,53.93541876892038 -2024-07-29 12:00:00+00:00,46.04018912529601 -2024-07-29 13:00:00+00:00,50.64864864864867 -2024-07-29 14:00:00+00:00,63.225371120107575 -2024-07-29 15:00:00+00:00,69.4074074074071 -2024-07-29 16:00:00+00:00,69.35603256846872 -2024-07-29 17:00:00+00:00,68.4931506849323 -2024-07-29 18:00:00+00:00,73.52941176470527 -2024-07-29 19:00:00+00:00,75.49833887043131 -2024-07-29 20:00:00+00:00,78.13021702837888 -2024-07-29 21:00:00+00:00,71.3375796178344 -2024-07-29 22:00:00+00:00,69.0721649484531 -2024-07-29 23:00:00+00:00,56.52591170825313 -2024-07-30 00:00:00+00:00,62.216404886562145 -2024-07-30 01:00:00+00:00,57.87937743190581 -2024-07-30 02:00:00+00:00,56.743256743256445 -2024-07-30 03:00:00+00:00,43.398692810457455 -2024-07-30 04:00:00+00:00,69.52191235059814 -2024-07-30 05:00:00+00:00,80.48780487804913 -2024-07-30 06:00:00+00:00,86.69755129053621 -2024-07-30 07:00:00+00:00,77.79850746268627 -2024-07-30 08:00:00+00:00,68.47290640394179 -2024-07-30 09:00:00+00:00,70.61224489795981 -2024-07-30 10:00:00+00:00,67.61335326357873 -2024-07-30 11:00:00+00:00,70.2226345083492 -2024-07-30 12:00:00+00:00,70.88435374149749 -2024-07-30 13:00:00+00:00,59.74770642201888 -2024-07-30 14:00:00+00:00,61.63934426229549 -2024-07-30 15:00:00+00:00,46.218252860731354 -2024-07-30 16:00:00+00:00,40.30145787002708 -2024-07-30 17:00:00+00:00,39.22542204567978 -2024-07-30 18:00:00+00:00,34.158149542764804 -2024-07-30 19:00:00+00:00,30.216647662485414 -2024-07-30 20:00:00+00:00,18.536853685368243 -2024-07-30 21:00:00+00:00,18.98056885384375 -2024-07-30 22:00:00+00:00,24.665718349928284 -2024-07-30 23:00:00+00:00,20.144484579049177 -2024-07-31 00:00:00+00:00,19.048870204938908 -2024-07-31 01:00:00+00:00,16.662158506897214 -2024-07-31 02:00:00+00:00,24.981738495251747 -2024-07-31 03:00:00+00:00,40.98243948742258 -2024-07-31 04:00:00+00:00,29.509509509509428 -2024-07-31 05:00:00+00:00,40.4499437570301 -2024-07-31 06:00:00+00:00,39.036039947894004 -2024-07-31 07:00:00+00:00,30.588635590336764 -2024-07-31 08:00:00+00:00,29.945054945054494 -2024-07-31 09:00:00+00:00,27.307206068267732 -2024-07-31 10:00:00+00:00,30.979729729729343 -2024-07-31 11:00:00+00:00,29.72447325769815 -2024-07-31 12:00:00+00:00,29.1734727213328 -2024-07-31 13:00:00+00:00,27.8670619441409 -2024-07-31 14:00:00+00:00,35.57863501483672 -2024-07-31 15:00:00+00:00,34.84062268346915 -2024-07-31 16:00:00+00:00,32.00804455445525 -2024-07-31 17:00:00+00:00,27.150671307806647 -2024-07-31 18:00:00+00:00,30.412179725213065 -2024-07-31 19:00:00+00:00,23.00420168067204 -2024-07-31 20:00:00+00:00,28.663875142747827 -2024-07-31 21:00:00+00:00,37.18518518518472 -2024-07-31 22:00:00+00:00,41.328413284132914 -2024-07-31 23:00:00+00:00,42.656510354677174 -2024-08-01 00:00:00+00:00,37.972972972972755 -2024-08-01 01:00:00+00:00,38.4317301116934 -2024-08-01 02:00:00+00:00,44.136504653567634 -2024-08-01 03:00:00+00:00,47.18107450806989 -2024-08-01 04:00:00+00:00,40.704889550756995 -2024-08-01 05:00:00+00:00,42.34945705824273 -2024-08-01 06:00:00+00:00,43.547607539874015 -2024-08-01 07:00:00+00:00,37.98661046367463 -2024-08-01 08:00:00+00:00,40.20997375328095 -2024-08-01 09:00:00+00:00,52.2860492379833 -2024-08-01 10:00:00+00:00,50.71147441719645 -2024-08-01 11:00:00+00:00,58.66919123613735 -2024-08-01 12:00:00+00:00,59.19893190921224 -2024-08-01 13:00:00+00:00,60.39226368836846 -2024-08-01 14:00:00+00:00,57.93049385941996 -2024-08-01 15:00:00+00:00,62.408963585434535 -2024-08-01 16:00:00+00:00,52.02036271078558 -2024-08-01 17:00:00+00:00,52.87839586028457 -2024-08-01 18:00:00+00:00,47.91535060012627 -2024-08-01 19:00:00+00:00,50.181268882175225 -2024-08-01 20:00:00+00:00,40.16110471806686 -2024-08-01 21:00:00+00:00,41.94711538461544 -2024-08-01 22:00:00+00:00,43.91318024536022 -2024-08-01 23:00:00+00:00,37.78071334214054 -2024-08-02 00:00:00+00:00,39.596024366784306 -2024-08-02 01:00:00+00:00,31.21577217962789 -2024-08-02 02:00:00+00:00,24.001613553853048 -2024-08-02 03:00:00+00:00,26.456202756781394 -2024-08-02 04:00:00+00:00,30.08088978766513 -2024-08-02 05:00:00+00:00,25.468818142171884 -2024-08-02 06:00:00+00:00,26.40144665461149 -2024-08-02 07:00:00+00:00,38.92561983471079 -2024-08-02 08:00:00+00:00,39.84771573604085 -2024-08-02 09:00:00+00:00,30.987124463519507 -2024-08-02 10:00:00+00:00,36.26318432948284 -2024-08-02 11:00:00+00:00,42.77879341864717 -2024-08-02 12:00:00+00:00,25.046829007225085 -2024-08-02 13:00:00+00:00,23.376623376623442 -2024-08-02 14:00:00+00:00,17.997165800661833 -2024-08-02 15:00:00+00:00,21.589882565492573 -2024-08-02 16:00:00+00:00,19.616584930896067 -2024-08-02 17:00:00+00:00,19.93656547349339 -2024-08-02 18:00:00+00:00,19.430337822918887 -2024-08-02 19:00:00+00:00,22.630966239813844 -2024-08-02 20:00:00+00:00,22.870588235294164 -2024-08-04 21:00:00+00:00,15.532506956741813 -2024-08-04 22:00:00+00:00,15.419387242591668 -2024-08-04 23:00:00+00:00,13.578062804069035 -2024-08-05 00:00:00+00:00,13.626276076342748 -2024-08-05 01:00:00+00:00,8.514261387824703 -2024-08-05 02:00:00+00:00,13.481012658228238 -2024-08-05 03:00:00+00:00,11.959573273442217 -2024-08-05 04:00:00+00:00,9.777369749828168 -2024-08-05 05:00:00+00:00,2.5865848312148785 -2024-08-05 06:00:00+00:00,4.940449933833591 -2024-08-05 07:00:00+00:00,17.966812893381714 -2024-08-05 08:00:00+00:00,15.76305220883539 -2024-08-05 09:00:00+00:00,14.18321374937419 -2024-08-05 10:00:00+00:00,15.513245033112412 -2024-08-05 11:00:00+00:00,15.490163663415217 -2024-08-05 12:00:00+00:00,15.763795423956765 -2024-08-05 13:00:00+00:00,24.947405329593025 -2024-08-05 14:00:00+00:00,24.95615573482968 -2024-08-05 15:00:00+00:00,41.318181818181834 -2024-08-05 16:00:00+00:00,42.99381807477179 -2024-08-05 17:00:00+00:00,47.18139234372481 -2024-08-05 18:00:00+00:00,52.659095006309634 -2024-08-05 19:00:00+00:00,60.237109522017384 -2024-08-05 20:00:00+00:00,62.68103143765472 -2024-08-05 21:00:00+00:00,55.91546513924574 -2024-08-05 22:00:00+00:00,75.32078699743417 -2024-08-05 23:00:00+00:00,81.34927717294323 -2024-08-06 00:00:00+00:00,71.21694807263475 -2024-08-06 01:00:00+00:00,69.38237119801353 -2024-08-06 02:00:00+00:00,72.21899506244549 -2024-08-06 03:00:00+00:00,70.30425333747283 -2024-08-06 04:00:00+00:00,71.85921958683991 -2024-08-06 05:00:00+00:00,67.04891596488062 -2024-08-06 06:00:00+00:00,63.005366726296636 -2024-08-06 07:00:00+00:00,61.071614357551375 -2024-08-06 08:00:00+00:00,63.05048335123512 -2024-08-06 09:00:00+00:00,59.20379839298762 -2024-08-06 10:00:00+00:00,56.74733785091965 -2024-08-06 11:00:00+00:00,60.13195098963231 -2024-08-06 12:00:00+00:00,48.373983739837335 -2024-08-06 13:00:00+00:00,33.79533379533359 -2024-08-06 14:00:00+00:00,42.6233978729203 -2024-08-06 15:00:00+00:00,53.7623762376238 -2024-08-06 16:00:00+00:00,50.816219062664715 -2024-08-06 17:00:00+00:00,49.802163017673244 -2024-08-06 18:00:00+00:00,43.5145385587863 -2024-08-06 19:00:00+00:00,35.398915569326164 -2024-08-06 20:00:00+00:00,33.868577075099026 -2024-08-06 21:00:00+00:00,40.60590631364562 -2024-08-06 22:00:00+00:00,44.971910112359495 -2024-08-06 23:00:00+00:00,49.83174425126191 -2024-08-07 00:00:00+00:00,47.59685406350105 -2024-08-07 01:00:00+00:00,65.31045121480885 -2024-08-07 02:00:00+00:00,73.63636363636316 -2024-08-07 03:00:00+00:00,78.2707858179553 -2024-08-07 04:00:00+00:00,79.90412272291444 -2024-08-07 05:00:00+00:00,67.69406392694049 -2024-08-07 06:00:00+00:00,61.25557206537865 -2024-08-07 07:00:00+00:00,62.387676508343944 -2024-08-07 08:00:00+00:00,69.48731594819922 -2024-08-07 09:00:00+00:00,74.72144846796635 -2024-08-07 10:00:00+00:00,74.98252969951038 -2024-08-07 11:00:00+00:00,74.01088929219569 -2024-08-07 12:00:00+00:00,71.28851540616222 -2024-08-07 13:00:00+00:00,71.53766053453629 -2024-08-07 14:00:00+00:00,71.91592005513426 -2024-08-07 15:00:00+00:00,58.629441624365455 -2024-08-07 16:00:00+00:00,54.238118569328755 -2024-08-07 17:00:00+00:00,48.80650076180811 -2024-08-07 18:00:00+00:00,39.361409303605605 -2024-08-07 19:00:00+00:00,48.02543507362797 -2024-08-07 20:00:00+00:00,52.29591836734698 -2024-08-07 21:00:00+00:00,51.01047904191618 -2024-08-07 22:00:00+00:00,35.75042158516011 -2024-08-07 23:00:00+00:00,21.14438980777865 -2024-08-08 00:00:00+00:00,22.19615204129549 -2024-08-08 01:00:00+00:00,33.46709470304964 -2024-08-08 02:00:00+00:00,42.04636290967246 -2024-08-08 03:00:00+00:00,33.22606596942906 -2024-08-08 04:00:00+00:00,28.880597014925783 -2024-08-08 05:00:00+00:00,23.15088757396518 -2024-08-08 06:00:00+00:00,31.75074183976281 -2024-08-08 07:00:00+00:00,29.773913043478473 -2024-08-08 08:00:00+00:00,39.17662682602965 -2024-08-08 09:00:00+00:00,38.22381262199076 -2024-08-08 10:00:00+00:00,39.80352303523038 -2024-08-08 11:00:00+00:00,40.228725193407655 -2024-08-08 12:00:00+00:00,57.3340617317673 -2024-08-08 13:00:00+00:00,62.087754516776265 -2024-08-08 14:00:00+00:00,69.04832493329391 -2024-08-08 15:00:00+00:00,61.14928169893795 -2024-08-08 16:00:00+00:00,60.369544440904335 -2024-08-08 17:00:00+00:00,66.03153745072251 -2024-08-08 18:00:00+00:00,68.20495419070235 -2024-08-08 19:00:00+00:00,70.79957731595633 -2024-08-08 20:00:00+00:00,69.74452554744539 -2024-08-08 21:00:00+00:00,77.18093699515293 -2024-08-08 22:00:00+00:00,74.49209932279861 -2024-08-08 23:00:00+00:00,80.54687499999949 -2024-08-09 00:00:00+00:00,75.2005835156819 -2024-08-09 01:00:00+00:00,64.9951472015526 -2024-08-09 02:00:00+00:00,58.24006175221942 -2024-08-09 03:00:00+00:00,51.83189655172416 -2024-08-09 04:00:00+00:00,43.16571042861975 -2024-08-09 05:00:00+00:00,48.65051903114182 -2024-08-09 06:00:00+00:00,49.195480999657704 -2024-08-09 07:00:00+00:00,47.16981132075489 -2024-08-09 08:00:00+00:00,49.887387387387385 -2024-08-09 09:00:00+00:00,51.63622526636195 -2024-08-09 10:00:00+00:00,47.29938271604911 -2024-08-09 11:00:00+00:00,46.177024482109175 -2024-08-09 12:00:00+00:00,41.09540636042364 -2024-08-09 13:00:00+00:00,29.007338740826768 -2024-08-09 14:00:00+00:00,30.665577786851827 -2024-08-09 15:00:00+00:00,35.89866156787764 -2024-08-09 16:00:00+00:00,25.70637119113556 -2024-08-09 17:00:00+00:00,33.538083538083356 -2024-08-09 18:00:00+00:00,39.99999999999999 -2024-08-09 19:00:00+00:00,35.41009463722348 -2024-08-09 20:00:00+00:00,23.822463768114787 -2024-08-11 21:00:00+00:00,32.39549839228148 -2024-08-11 22:00:00+00:00,42.593856655289386 -2024-08-11 23:00:00+00:00,44.67105263157858 -2024-08-12 00:00:00+00:00,41.40243902439041 -2024-08-12 01:00:00+00:00,48.520345252774206 -2024-08-12 02:00:00+00:00,55.697098372258075 -2024-08-12 03:00:00+00:00,69.80756469807699 -2024-08-12 04:00:00+00:00,69.21052631579053 -2024-08-12 05:00:00+00:00,72.70967741935658 -2024-08-12 06:00:00+00:00,71.02739726027565 -2024-08-12 07:00:00+00:00,68.90331890332016 -2024-08-12 08:00:00+00:00,75.75966850828802 -2024-08-12 09:00:00+00:00,73.23266986959678 -2024-08-12 10:00:00+00:00,75.97911227154148 -2024-08-12 11:00:00+00:00,76.15035644847838 -2024-08-12 12:00:00+00:00,74.86338797814336 -2024-08-12 13:00:00+00:00,74.4266851980554 -2024-08-12 14:00:00+00:00,88.44410876132955 -2024-08-12 15:00:00+00:00,68.62491930277619 -2024-08-12 16:00:00+00:00,62.272993555946684 -2024-08-12 17:00:00+00:00,49.32014833127255 -2024-08-12 18:00:00+00:00,55.18697225572975 -2024-08-12 19:00:00+00:00,49.49911608721285 -2024-08-12 20:00:00+00:00,49.10926365795721 -2024-08-12 21:00:00+00:00,49.404052443384664 -2024-08-12 22:00:00+00:00,42.991239048811146 -2024-08-12 23:00:00+00:00,41.16237267824988 -2024-08-13 00:00:00+00:00,45.80573951434918 -2024-08-13 01:00:00+00:00,42.74052478134031 -2024-08-13 02:00:00+00:00,39.4947627849658 -2024-08-13 03:00:00+00:00,41.232794733693176 -2024-08-13 04:00:00+00:00,45.53521907931307 -2024-08-13 05:00:00+00:00,53.52020860495439 -2024-08-13 06:00:00+00:00,66.75094816687657 -2024-08-13 07:00:00+00:00,73.53760445682403 -2024-08-13 08:00:00+00:00,70.54845980465734 -2024-08-13 09:00:00+00:00,78.02371541501893 -2024-08-13 10:00:00+00:00,60.34696406443607 -2024-08-13 11:00:00+00:00,54.180602006688964 -2024-08-13 12:00:00+00:00,57.4944071588363 -2024-08-13 13:00:00+00:00,51.24626121635117 -2024-08-13 14:00:00+00:00,42.73318872017383 -2024-08-13 15:00:00+00:00,40.25330396475859 -2024-08-13 16:00:00+00:00,33.934837092732764 -2024-08-13 17:00:00+00:00,35.801266439356766 -2024-08-13 18:00:00+00:00,24.620655898189227 -2024-08-13 19:00:00+00:00,30.83411433926949 -2024-08-13 20:00:00+00:00,23.2049947970863 -2024-08-13 21:00:00+00:00,23.46133613887403 -2024-08-13 22:00:00+00:00,23.375262054507388 -2024-08-13 23:00:00+00:00,26.08695652173894 -2024-08-14 00:00:00+00:00,37.677053824362446 -2024-08-14 01:00:00+00:00,36.72004417448923 -2024-08-14 02:00:00+00:00,28.181397501156326 -2024-08-14 03:00:00+00:00,43.016759776535935 -2024-08-14 04:00:00+00:00,46.96899583526141 -2024-08-14 05:00:00+00:00,52.44785014899977 -2024-08-14 06:00:00+00:00,60.21602160216048 -2024-08-14 07:00:00+00:00,61.12576956904148 -2024-08-14 08:00:00+00:00,59.249786871270295 -2024-08-14 09:00:00+00:00,56.05991829323647 -2024-08-14 10:00:00+00:00,50.24875621890549 -2024-08-14 11:00:00+00:00,50.92707045735509 -2024-08-14 12:00:00+00:00,58.601200989049744 -2024-08-14 13:00:00+00:00,50.228161668839334 -2024-08-14 14:00:00+00:00,44.65832531280078 -2024-08-14 15:00:00+00:00,50.01669449081811 -2024-08-14 16:00:00+00:00,59.0772693173296 -2024-08-14 17:00:00+00:00,58.27915869980926 -2024-08-14 18:00:00+00:00,57.366158655725165 -2024-08-14 19:00:00+00:00,55.25020508613627 -2024-08-14 20:00:00+00:00,52.67402376910031 -2024-08-14 21:00:00+00:00,46.464188576609736 -2024-08-14 22:00:00+00:00,54.51282051282023 -2024-08-14 23:00:00+00:00,54.42908346134163 -2024-08-15 00:00:00+00:00,60.260770975056644 -2024-08-15 01:00:00+00:00,65.50196850393704 -2024-08-15 02:00:00+00:00,54.53453453453402 -2024-08-15 03:00:00+00:00,66.22902990518006 -2024-08-15 04:00:00+00:00,69.41896024464772 -2024-08-15 05:00:00+00:00,60.1199400299843 -2024-08-15 06:00:00+00:00,58.534684333592814 -2024-08-15 07:00:00+00:00,50.233863423760305 -2024-08-15 08:00:00+00:00,53.939393939393064 -2024-08-15 09:00:00+00:00,51.54826958105607 -2024-08-15 10:00:00+00:00,46.54605263157884 -2024-08-15 11:00:00+00:00,48.62542955326416 -2024-08-15 12:00:00+00:00,79.12011173184335 -2024-08-15 13:00:00+00:00,80.37697744866998 -2024-08-15 14:00:00+00:00,80.37697744866998 -2024-08-15 15:00:00+00:00,74.80371163454582 -2024-08-15 16:00:00+00:00,77.39916550764903 -2024-08-15 17:00:00+00:00,79.46304044630288 -2024-08-15 18:00:00+00:00,80.81560283687826 -2024-08-15 19:00:00+00:00,84.9908256880722 -2024-08-15 20:00:00+00:00,86.07896528250393 -2024-08-15 21:00:00+00:00,85.93535075653251 -2024-08-15 22:00:00+00:00,83.99858707170475 -2024-08-15 23:00:00+00:00,83.00212916962211 -2024-08-16 00:00:00+00:00,84.86937590711025 -2024-08-16 01:00:00+00:00,78.6482851378606 -2024-08-16 02:00:00+00:00,46.879875195007614 -2024-08-16 03:00:00+00:00,44.042728019720826 -2024-08-16 04:00:00+00:00,43.05220883534194 -2024-08-16 05:00:00+00:00,50.38103302286256 -2024-08-16 06:00:00+00:00,50.83892617449583 -2024-08-16 07:00:00+00:00,46.627318718380764 -2024-08-16 08:00:00+00:00,39.44365192582086 -2024-08-16 09:00:00+00:00,36.88348820586196 -2024-08-16 10:00:00+00:00,18.665768194070637 -2024-08-16 11:00:00+00:00,14.552661381653579 -2024-08-16 12:00:00+00:00,12.314326784858778 -2024-08-16 13:00:00+00:00,15.77964519141075 -2024-08-16 14:00:00+00:00,24.912891986062604 -2024-08-16 15:00:00+00:00,32.12010919017315 -2024-08-16 16:00:00+00:00,30.870135548754106 -2024-08-16 17:00:00+00:00,26.116700201207138 -2024-08-16 18:00:00+00:00,26.085209003215482 -2024-08-16 19:00:00+00:00,25.213501423342976 -2024-08-16 20:00:00+00:00,19.87551867219952 -2024-08-18 21:00:00+00:00,22.660098522168013 -2024-08-18 22:00:00+00:00,31.588057118130976 -2024-08-18 23:00:00+00:00,34.94533221194291 -2024-08-19 00:00:00+00:00,37.84153005464514 -2024-08-19 01:00:00+00:00,36.09904430929625 -2024-08-19 02:00:00+00:00,41.52923538230902 -2024-08-19 03:00:00+00:00,26.690391459074718 -2024-08-19 04:00:00+00:00,18.149841716497235 -2024-08-19 05:00:00+00:00,10.995970063327675 -2024-08-19 06:00:00+00:00,21.91708476366547 -2024-08-19 07:00:00+00:00,28.138297872340843 -2024-08-19 08:00:00+00:00,28.525208951199886 -2024-08-19 09:00:00+00:00,31.534090909091162 -2024-08-19 10:00:00+00:00,33.670295489891515 -2024-08-19 11:00:00+00:00,29.938949938950202 -2024-08-19 12:00:00+00:00,29.90471536770106 -2024-08-19 13:00:00+00:00,31.19904076738615 -2024-08-19 14:00:00+00:00,32.06012814194207 -2024-08-19 15:00:00+00:00,36.65048543689346 -2024-08-19 16:00:00+00:00,38.59177640419258 -2024-08-19 17:00:00+00:00,51.39372822299624 -2024-08-19 18:00:00+00:00,58.52941176470576 -2024-08-19 19:00:00+00:00,80.60759493670858 -2024-08-19 20:00:00+00:00,73.42747111681578 -2024-08-19 21:00:00+00:00,68.3072334079039 -2024-08-19 22:00:00+00:00,70.33210332103396 -2024-08-19 23:00:00+00:00,67.63285024154595 -2024-08-20 00:00:00+00:00,49.80392156862744 -2024-08-20 01:00:00+00:00,62.15334420880978 -2024-08-20 02:00:00+00:00,72.92882147024585 -2024-08-20 03:00:00+00:00,71.05427323768035 -2024-08-20 04:00:00+00:00,66.53037383177505 -2024-08-20 05:00:00+00:00,71.46414342629458 -2024-08-20 06:00:00+00:00,62.55181943804657 -2024-08-20 07:00:00+00:00,50.38197097020646 -2024-08-20 08:00:00+00:00,47.34147302087399 -2024-08-20 09:00:00+00:00,46.89816621147107 -2024-08-20 10:00:00+00:00,46.89816621147107 -2024-08-20 11:00:00+00:00,45.807926829268304 -2024-08-20 12:00:00+00:00,41.786226685796244 -2024-08-20 13:00:00+00:00,39.183820873961935 -2024-08-20 14:00:00+00:00,37.20850480109735 -2024-08-20 15:00:00+00:00,39.288090485695285 -2024-08-20 16:00:00+00:00,19.57591821279874 -2024-08-20 17:00:00+00:00,20.300187617261358 -2024-08-20 18:00:00+00:00,20.578166603271796 -2024-08-20 19:00:00+00:00,8.063820612333345 -2024-08-20 20:00:00+00:00,8.697674418605175 -2024-08-20 21:00:00+00:00,10.371602884082591 -2024-08-20 22:00:00+00:00,10.576923076923563 -2024-08-20 23:00:00+00:00,20.11434511434595 -2024-08-21 00:00:00+00:00,25.297619047619406 -2024-08-21 01:00:00+00:00,25.718608169440785 -2024-08-21 02:00:00+00:00,28.301886792453132 -2024-08-21 03:00:00+00:00,32.658643326040334 -2024-08-21 04:00:00+00:00,52.51322751322725 -2024-08-21 05:00:00+00:00,49.016853932584574 -2024-08-21 06:00:00+00:00,69.69481902058233 -2024-08-21 07:00:00+00:00,71.75925925925924 -2024-08-21 08:00:00+00:00,71.3346482577258 -2024-08-21 09:00:00+00:00,74.87179487179472 -2024-08-21 10:00:00+00:00,79.2367399741268 -2024-08-21 11:00:00+00:00,80.75148319050743 -2024-08-21 12:00:00+00:00,68.13125695216976 -2024-08-21 13:00:00+00:00,62.72949816401492 -2024-08-21 14:00:00+00:00,56.09452736318411 -2024-08-21 15:00:00+00:00,44.786494538232134 -2024-08-21 16:00:00+00:00,45.03245132301578 -2024-08-21 17:00:00+00:00,39.97057381069082 -2024-08-21 18:00:00+00:00,28.53185595567885 -2024-08-21 19:00:00+00:00,36.44242674370578 -2024-08-21 20:00:00+00:00,36.36363636363636 -2024-08-21 21:00:00+00:00,29.341317365269845 -2024-08-21 22:00:00+00:00,27.298050139275986 -2024-08-21 23:00:00+00:00,31.3673929376411 -2024-08-22 00:00:00+00:00,35.09769094138545 -2024-08-22 01:00:00+00:00,42.536813922356046 -2024-08-22 02:00:00+00:00,44.19332406119601 -2024-08-22 03:00:00+00:00,42.0860927152316 -2024-08-22 04:00:00+00:00,41.60392798690656 -2024-08-22 05:00:00+00:00,51.25591554422987 -2024-08-22 06:00:00+00:00,53.316953316953175 -2024-08-22 07:00:00+00:00,53.09332401258339 -2024-08-22 08:00:00+00:00,65.23224043715841 -2024-08-22 09:00:00+00:00,61.1296915644745 -2024-08-22 10:00:00+00:00,59.236165237723974 -2024-08-22 11:00:00+00:00,65.1622528907123 -2024-08-22 12:00:00+00:00,73.6241337138199 -2024-08-22 13:00:00+00:00,73.64562118126291 -2024-08-22 14:00:00+00:00,69.62962962962935 -2024-08-22 15:00:00+00:00,58.00617556241729 -2024-08-22 16:00:00+00:00,68.08510638297889 -2024-08-22 17:00:00+00:00,73.11072056239051 -2024-08-22 18:00:00+00:00,74.35210008936528 -2024-08-22 19:00:00+00:00,73.58490566037716 -2024-08-22 20:00:00+00:00,72.35067437379547 -2024-08-22 21:00:00+00:00,75.36377320622137 -2024-08-22 22:00:00+00:00,66.2492546213468 -2024-08-22 23:00:00+00:00,67.93802145411073 -2024-08-23 00:00:00+00:00,59.27710843373528 -2024-08-23 01:00:00+00:00,37.493808816246165 -2024-08-23 02:00:00+00:00,39.15139826422436 -2024-08-23 03:00:00+00:00,33.961276818420174 -2024-08-23 04:00:00+00:00,38.22629969419016 -2024-08-23 05:00:00+00:00,41.52823920265846 -2024-08-23 06:00:00+00:00,23.940298507462742 -2024-08-23 07:00:00+00:00,37.95476892822032 -2024-08-23 08:00:00+00:00,42.91300097751737 -2024-08-23 09:00:00+00:00,46.42201834862373 -2024-08-23 10:00:00+00:00,43.618881118881035 -2024-08-23 11:00:00+00:00,45.075421472936796 -2024-08-23 12:00:00+00:00,45.6629213483149 -2024-08-23 13:00:00+00:00,50.36945812807884 -2024-08-23 14:00:00+00:00,37.01357466063309 -2024-08-23 15:00:00+00:00,39.90243902438996 -2024-08-23 16:00:00+00:00,37.34899328859047 -2024-08-23 17:00:00+00:00,31.1137653030751 -2024-08-23 18:00:00+00:00,27.997619756024548 -2024-08-23 19:00:00+00:00,28.334838903944075 -2024-08-23 20:00:00+00:00,33.517835178351504 -2024-08-25 21:00:00+00:00,22.384806973847475 -2024-08-25 22:00:00+00:00,18.815224063842223 -2024-08-25 23:00:00+00:00,13.955757970071701 -2024-08-26 00:00:00+00:00,13.575949367088683 -2024-08-26 01:00:00+00:00,13.79419191919149 -2024-08-26 02:00:00+00:00,18.931159420289376 -2024-08-26 03:00:00+00:00,13.665594855305784 -2024-08-26 04:00:00+00:00,23.06273062730621 -2024-08-26 05:00:00+00:00,27.799016930639525 -2024-08-26 06:00:00+00:00,24.27277062470222 -2024-08-26 07:00:00+00:00,35.39673607203228 -2024-08-26 08:00:00+00:00,37.2409709887514 -2024-08-26 09:00:00+00:00,42.33870967741969 -2024-08-26 10:00:00+00:00,39.37007874015758 -2024-08-26 11:00:00+00:00,52.85010555946474 -2024-08-26 12:00:00+00:00,51.297814207650646 -2024-08-26 13:00:00+00:00,62.7481713688611 -2024-08-26 14:00:00+00:00,60.96446700507584 -2024-08-26 15:00:00+00:00,66.66666666666666 -2024-08-26 16:00:00+00:00,62.2632794457275 -2024-08-26 17:00:00+00:00,62.677021470991356 -2024-08-26 18:00:00+00:00,60.80637599624952 -2024-08-26 19:00:00+00:00,62.27436823104698 -2024-08-26 20:00:00+00:00,68.827930174563 -2024-08-26 21:00:00+00:00,66.24605678233388 -2024-08-26 22:00:00+00:00,62.56206554121129 -2024-08-26 23:00:00+00:00,63.147605083088905 -2024-08-27 00:00:00+00:00,67.4719585849868 -2024-08-27 01:00:00+00:00,61.93903471634242 -2024-08-27 02:00:00+00:00,69.91452991453 -2024-08-27 03:00:00+00:00,61.13445378151264 -2024-08-27 04:00:00+00:00,63.32970620239399 -2024-08-27 05:00:00+00:00,58.70098039215659 -2024-08-27 06:00:00+00:00,61.2623762376238 -2024-08-27 07:00:00+00:00,63.710144927535836 -2024-08-27 08:00:00+00:00,65.70621468926578 -2024-08-27 09:00:00+00:00,56.25 -2024-08-27 10:00:00+00:00,56.84713375796209 -2024-08-27 11:00:00+00:00,50.68622811168946 -2024-08-27 12:00:00+00:00,50.518867924528095 -2024-08-27 13:00:00+00:00,45.78017664376844 -2024-08-27 14:00:00+00:00,33.50168350168377 -2024-08-27 15:00:00+00:00,36.93147362037587 -2024-08-27 16:00:00+00:00,27.165109034268042 -2024-08-27 17:00:00+00:00,28.381795195953586 -2024-08-27 18:00:00+00:00,29.578392621870364 -2024-08-27 19:00:00+00:00,20.842255531763414 -2024-08-27 20:00:00+00:00,18.66475233309376 -2024-08-27 21:00:00+00:00,7.229894394800894 -2024-08-27 22:00:00+00:00,2.0145044319079943 -2024-08-27 23:00:00+00:00,11.131059245958042 -2024-08-28 00:00:00+00:00,22.12978369384156 -2024-08-28 01:00:00+00:00,42.88079470198654 -2024-08-28 02:00:00+00:00,52.2727272727271 -2024-08-28 03:00:00+00:00,53.488372093022306 -2024-08-28 04:00:00+00:00,54.56204379562052 -2024-08-28 05:00:00+00:00,55.69395017793577 -2024-08-28 06:00:00+00:00,67.43159752868527 -2024-08-28 07:00:00+00:00,67.88511749347352 -2024-08-28 08:00:00+00:00,63.36311941511066 -2024-08-28 09:00:00+00:00,62.0525059665875 -2024-08-28 10:00:00+00:00,66.83748169838958 -2024-08-28 11:00:00+00:00,63.22714681440549 -2024-08-28 12:00:00+00:00,73.91552511415611 -2024-08-28 13:00:00+00:00,74.4264129826533 -2024-08-28 14:00:00+00:00,59.45945945946026 -2024-08-28 15:00:00+00:00,53.12145289443787 -2024-08-28 16:00:00+00:00,57.641025641025955 -2024-08-28 17:00:00+00:00,55.42406311637095 -2024-08-28 18:00:00+00:00,57.50878955298878 -2024-08-28 19:00:00+00:00,57.700000000000635 -2024-08-28 20:00:00+00:00,51.44303797468398 -2024-08-28 21:00:00+00:00,47.56626506024098 -2024-08-28 22:00:00+00:00,48.788927335639976 -2024-08-28 23:00:00+00:00,53.743443013828895 -2024-08-29 00:00:00+00:00,50.456852791878184 -2024-08-29 01:00:00+00:00,57.362110311750286 -2024-08-29 02:00:00+00:00,46.54088050314437 -2024-08-29 03:00:00+00:00,40.57279236276852 -2024-08-29 04:00:00+00:00,56.228727025186735 -2024-08-29 05:00:00+00:00,54.77453580901863 -2024-08-29 06:00:00+00:00,43.79905808477302 -2024-08-29 07:00:00+00:00,53.693830921553975 -2024-08-29 08:00:00+00:00,51.35135135135141 -2024-08-29 09:00:00+00:00,43.73278236914543 -2024-08-29 10:00:00+00:00,46.316557257476276 -2024-08-29 11:00:00+00:00,54.836309523810534 -2024-08-29 12:00:00+00:00,77.67137096774222 -2024-08-29 13:00:00+00:00,75.12064343163635 -2024-08-29 14:00:00+00:00,74.36305732484148 -2024-08-29 15:00:00+00:00,58.6594911937383 -2024-08-29 16:00:00+00:00,60.36706349206384 -2024-08-29 17:00:00+00:00,57.814726840855435 -2024-08-29 18:00:00+00:00,52.577319587628686 -2024-08-29 19:00:00+00:00,57.10922787193976 -2024-08-29 20:00:00+00:00,59.45446139620898 -2024-08-29 21:00:00+00:00,56.66996047430864 -2024-08-29 22:00:00+00:00,55.17075517075531 -2024-08-29 23:00:00+00:00,59.67741935483924 -2024-08-30 00:00:00+00:00,55.787937743190696 -2024-08-30 01:00:00+00:00,54.34455047714658 -2024-08-30 02:00:00+00:00,23.80553227158387 -2024-08-30 03:00:00+00:00,25.938281901584972 -2024-08-30 04:00:00+00:00,29.493464052288658 -2024-08-30 05:00:00+00:00,42.67734553775844 -2024-08-30 06:00:00+00:00,47.26315789473728 -2024-08-30 07:00:00+00:00,54.55650060753441 -2024-08-30 08:00:00+00:00,68.30835117773093 -2024-08-30 09:00:00+00:00,63.1840796019911 -2024-08-30 10:00:00+00:00,66.85330347144546 -2024-08-30 11:00:00+00:00,70.95191364082444 -2024-08-30 12:00:00+00:00,82.24381625441717 -2024-08-30 13:00:00+00:00,80.39723661485462 -2024-08-30 14:00:00+00:00,93.00699300699353 -2024-08-30 15:00:00+00:00,94.74079639368942 -2024-08-30 16:00:00+00:00,95.61128526645811 -2024-08-30 17:00:00+00:00,91.34146341463432 -2024-08-30 18:00:00+00:00,87.70442156268896 -2024-08-30 19:00:00+00:00,88.29296424452104 -2024-08-30 20:00:00+00:00,87.73413897280949 -2024-09-01 21:00:00+00:00,84.5661036691897 -2024-09-01 22:00:00+00:00,85.73735199138804 -2024-09-01 23:00:00+00:00,83.82820784729445 -2024-09-02 00:00:00+00:00,73.21981424148495 -2024-09-02 01:00:00+00:00,71.60831509846734 -2024-09-02 02:00:00+00:00,58.971612212104965 -2024-09-02 03:00:00+00:00,59.57792207792131 -2024-09-02 04:00:00+00:00,59.32112068965501 -2024-09-02 05:00:00+00:00,54.627403846154394 -2024-09-02 06:00:00+00:00,47.786998616874456 -2024-09-02 07:00:00+00:00,59.51393005334885 -2024-09-02 08:00:00+00:00,66.46900269541787 -2024-09-02 09:00:00+00:00,63.78923766816158 -2024-09-02 10:00:00+00:00,65.91029023746692 -2024-09-02 11:00:00+00:00,71.87969924812042 -2024-09-02 12:00:00+00:00,66.0287081339711 -2024-09-02 13:00:00+00:00,66.86856450636017 -2024-09-02 14:00:00+00:00,76.6666666666662 -2024-09-02 15:00:00+00:00,75.73632538569427 -2024-09-02 16:00:00+00:00,82.31707317073014 -2024-09-02 17:00:00+00:00,84.42982456140247 -2024-09-02 18:00:00+00:00,85.59882439382662 -2024-09-02 19:00:00+00:00,82.49999999999764 -2024-09-02 20:00:00+00:00,82.08191126279635 -2024-09-02 21:00:00+00:00,74.94226327944546 -2024-09-02 22:00:00+00:00,68.22840409955984 -2024-09-02 23:00:00+00:00,54.06032482598557 -2024-09-03 00:00:00+00:00,64.4204851752017 -2024-09-03 01:00:00+00:00,37.02157272094612 -2024-09-03 02:00:00+00:00,38.239339752407 -2024-09-03 03:00:00+00:00,36.316133246244235 -2024-09-03 04:00:00+00:00,36.15084525357658 -2024-09-03 05:00:00+00:00,31.735159817352084 -2024-09-03 06:00:00+00:00,29.09471480900112 -2024-09-03 07:00:00+00:00,25.23609653725042 -2024-09-03 08:00:00+00:00,23.156342182891123 -2024-09-03 09:00:00+00:00,27.751865671642037 -2024-09-03 10:00:00+00:00,30.225225225225273 -2024-09-03 11:00:00+00:00,34.466638334041036 -2024-09-03 12:00:00+00:00,29.43439784532471 -2024-09-03 13:00:00+00:00,26.917663617170675 -2024-09-03 14:00:00+00:00,19.930609097918165 -2024-09-03 15:00:00+00:00,33.10580204778128 -2024-09-03 16:00:00+00:00,31.62321278385174 -2024-09-03 17:00:00+00:00,36.61971830985921 -2024-09-03 18:00:00+00:00,35.3883106485188 -2024-09-03 19:00:00+00:00,36.140637775960215 -2024-09-03 20:00:00+00:00,38.38471558836292 -2024-09-03 21:00:00+00:00,38.87423043095853 -2024-09-03 22:00:00+00:00,39.499553172475316 -2024-09-03 23:00:00+00:00,36.75852405417989 -2024-09-04 00:00:00+00:00,30.752014324081884 -2024-09-04 01:00:00+00:00,33.49097162510742 -2024-09-04 02:00:00+00:00,39.48891031822623 -2024-09-04 03:00:00+00:00,46.50766609880781 -2024-09-04 04:00:00+00:00,40.70796460176994 -2024-09-04 05:00:00+00:00,28.392621870882962 -2024-09-04 06:00:00+00:00,24.600456621004696 -2024-09-04 07:00:00+00:00,23.50897510133295 -2024-09-04 08:00:00+00:00,33.89008620689664 -2024-09-04 09:00:00+00:00,35.257847533632955 -2024-09-04 10:00:00+00:00,37.59713090257006 -2024-09-04 11:00:00+00:00,34.751381215470076 -2024-09-04 12:00:00+00:00,43.030623020063324 -2024-09-04 13:00:00+00:00,36.63412366341305 -2024-09-04 14:00:00+00:00,29.961977186312694 -2024-09-04 15:00:00+00:00,28.770301624130553 -2024-09-04 16:00:00+00:00,25.089094796864032 -2024-09-04 17:00:00+00:00,27.04705446461631 -2024-09-04 18:00:00+00:00,25.87734845799328 -2024-09-04 19:00:00+00:00,26.006412540078387 -2024-09-04 20:00:00+00:00,28.04456396465629 -2024-09-04 21:00:00+00:00,24.19417475728072 -2024-09-04 22:00:00+00:00,16.778523489932226 -2024-09-04 23:00:00+00:00,15.56420233462967 -2024-09-05 00:00:00+00:00,26.835964310226274 -2024-09-05 01:00:00+00:00,28.457059679766857 -2024-09-05 02:00:00+00:00,26.805658972449137 -2024-09-05 03:00:00+00:00,29.126213592232375 -2024-09-05 04:00:00+00:00,36.29032258064454 -2024-09-05 05:00:00+00:00,26.99137493657986 -2024-09-05 06:00:00+00:00,28.388473852721006 -2024-09-05 07:00:00+00:00,39.54954954954945 -2024-09-05 08:00:00+00:00,42.35407621804181 -2024-09-05 09:00:00+00:00,44.727807748896325 -2024-09-05 10:00:00+00:00,44.1646489104112 -2024-09-05 11:00:00+00:00,44.992599901331836 -2024-09-05 12:00:00+00:00,38.84156729131153 -2024-09-05 13:00:00+00:00,46.66048237476788 -2024-09-05 14:00:00+00:00,54.01839264294277 -2024-09-05 15:00:00+00:00,45.42703429724282 -2024-09-05 16:00:00+00:00,43.037530690985626 -2024-09-05 17:00:00+00:00,42.84217877094965 -2024-09-05 18:00:00+00:00,47.12518195050911 -2024-09-05 19:00:00+00:00,51.09070034443202 -2024-09-05 20:00:00+00:00,54.35667752443001 -2024-09-05 21:00:00+00:00,45.66145092460895 -2024-09-05 22:00:00+00:00,46.187050359711755 -2024-09-05 23:00:00+00:00,44.83590733590737 -2024-09-06 00:00:00+00:00,42.751955821445065 -2024-09-06 01:00:00+00:00,46.126287505597816 -2024-09-06 02:00:00+00:00,52.57784583971411 -2024-09-06 03:00:00+00:00,46.040334481062466 -2024-09-06 04:00:00+00:00,15.562174236783676 -2024-09-06 05:00:00+00:00,16.746794871794876 -2024-09-06 06:00:00+00:00,14.334705075446053 -2024-09-06 07:00:00+00:00,22.524916943521575 -2024-09-06 08:00:00+00:00,23.691099476440996 -2024-09-06 09:00:00+00:00,30.429594272076045 -2024-09-06 10:00:00+00:00,32.597327135385626 -2024-09-06 11:00:00+00:00,40.29458179905305 -2024-09-06 12:00:00+00:00,39.12155260469883 -2024-09-06 13:00:00+00:00,52.55267423014598 -2024-09-06 14:00:00+00:00,38.91389138913885 -2024-09-06 15:00:00+00:00,33.87142452563002 -2024-09-06 16:00:00+00:00,39.98403830806088 -2024-09-06 17:00:00+00:00,41.59977857735961 -2024-09-06 18:00:00+00:00,41.27986816808554 -2024-09-06 19:00:00+00:00,47.1903323262839 -2024-09-06 20:00:00+00:00,48.73634945397791 -2024-09-08 21:00:00+00:00,44.375581035017106 -2024-09-08 22:00:00+00:00,42.59847522236334 -2024-09-08 23:00:00+00:00,45.27559055118095 -2024-09-09 00:00:00+00:00,47.75946805435097 -2024-09-09 01:00:00+00:00,48.57712009106441 -2024-09-09 02:00:00+00:00,47.654941373534285 -2024-09-09 03:00:00+00:00,37.81350482315114 -2024-09-09 04:00:00+00:00,61.94295900178241 -2024-09-09 05:00:00+00:00,69.32668329177048 -2024-09-09 06:00:00+00:00,65.58477895914902 -2024-09-09 07:00:00+00:00,69.09848879624832 -2024-09-09 08:00:00+00:00,74.57871930669273 -2024-09-09 09:00:00+00:00,75.16462841016038 -2024-09-09 10:00:00+00:00,80.82689686506141 -2024-09-09 11:00:00+00:00,84.35277382645751 -2024-09-09 12:00:00+00:00,71.90784155214243 -2024-09-09 13:00:00+00:00,55.87091757387287 -2024-09-09 14:00:00+00:00,50.8481588746385 -2024-09-09 15:00:00+00:00,49.31740614334447 -2024-09-09 16:00:00+00:00,51.35495335406505 -2024-09-09 17:00:00+00:00,51.195748449955786 -2024-09-09 18:00:00+00:00,45.9960937500002 -2024-09-09 19:00:00+00:00,51.02996254681677 -2024-09-09 20:00:00+00:00,53.57301375943201 -2024-09-09 21:00:00+00:00,49.599623174752786 -2024-09-09 22:00:00+00:00,41.56234351527217 -2024-09-09 23:00:00+00:00,42.59714707329005 -2024-09-10 00:00:00+00:00,45.339578454332845 -2024-09-10 01:00:00+00:00,45.595854922280104 -2024-09-10 02:00:00+00:00,54.87528344671198 -2024-09-10 03:00:00+00:00,64.79250334671951 -2024-09-10 04:00:00+00:00,60.68965517241317 -2024-09-10 05:00:00+00:00,57.72083614295375 -2024-09-10 06:00:00+00:00,65.41666666666637 -2024-09-10 07:00:00+00:00,71.65657677490343 -2024-09-10 08:00:00+00:00,68.4182869153961 -2024-09-10 09:00:00+00:00,54.79582146248797 -2024-09-10 10:00:00+00:00,46.97720515361789 -2024-09-10 11:00:00+00:00,49.59036144578324 -2024-09-10 12:00:00+00:00,46.04026845637608 -2024-09-10 13:00:00+00:00,45.943523083819386 -2024-09-10 14:00:00+00:00,33.16942333482349 -2024-09-10 15:00:00+00:00,28.331424207712956 -2024-09-10 16:00:00+00:00,33.03314121037492 -2024-09-10 17:00:00+00:00,34.29319371727779 -2024-09-10 18:00:00+00:00,35.73655494933783 -2024-09-10 19:00:00+00:00,33.26748320821815 -2024-09-10 20:00:00+00:00,30.665024630542007 -2024-09-10 21:00:00+00:00,24.08145196989821 -2024-09-10 22:00:00+00:00,25.629290617849676 -2024-09-10 23:00:00+00:00,27.38386308068513 -2024-09-11 00:00:00+00:00,31.029263370333567 -2024-09-11 01:00:00+00:00,22.627118644068915 -2024-09-11 02:00:00+00:00,25.42775665399374 -2024-09-11 03:00:00+00:00,16.472060050042742 -2024-09-11 04:00:00+00:00,16.356107660456573 -2024-09-11 05:00:00+00:00,26.963711529629066 -2024-09-11 06:00:00+00:00,23.99617590822281 -2024-09-11 07:00:00+00:00,25.318940137390072 -2024-09-11 08:00:00+00:00,30.898876404494786 -2024-09-11 09:00:00+00:00,32.67698077824704 -2024-09-11 10:00:00+00:00,28.020050125313716 -2024-09-11 11:00:00+00:00,32.14629451395648 -2024-09-11 12:00:00+00:00,47.07207207207201 -2024-09-11 13:00:00+00:00,42.79863481228683 -2024-09-11 14:00:00+00:00,36.7565910484366 -2024-09-11 15:00:00+00:00,48.3080889461813 -2024-09-11 16:00:00+00:00,51.744885679903504 -2024-09-11 17:00:00+00:00,62.809917355371574 -2024-09-11 18:00:00+00:00,69.47960618846706 -2024-09-11 19:00:00+00:00,69.28520877565474 -2024-09-11 20:00:00+00:00,67.92727272727254 -2024-09-11 21:00:00+00:00,66.1198288159776 -2024-09-11 22:00:00+00:00,66.38358103326289 -2024-09-11 23:00:00+00:00,68.00269450993602 -2024-09-12 00:00:00+00:00,68.38602329450949 -2024-09-12 01:00:00+00:00,64.09749670619226 -2024-09-12 02:00:00+00:00,54.92439722108674 -2024-09-12 03:00:00+00:00,69.2080668962125 -2024-09-12 04:00:00+00:00,86.98257080610007 -2024-09-12 05:00:00+00:00,84.9211356466875 -2024-09-12 06:00:00+00:00,69.33991363355938 -2024-09-12 07:00:00+00:00,68.01801801801773 -2024-09-12 08:00:00+00:00,60.957324106112665 -2024-09-12 09:00:00+00:00,59.14302957151449 -2024-09-12 10:00:00+00:00,57.647058823529896 -2024-09-12 11:00:00+00:00,58.12574139976261 -2024-09-12 12:00:00+00:00,40.96628082536488 -2024-09-12 13:00:00+00:00,33.42119135477161 -2024-09-12 14:00:00+00:00,45.65404475043046 -2024-09-12 15:00:00+00:00,43.770627062706595 -2024-09-12 16:00:00+00:00,49.75809452921517 -2024-09-12 17:00:00+00:00,44.390243902439096 -2024-09-12 18:00:00+00:00,37.02185792349766 -2024-09-12 19:00:00+00:00,34.26017874875869 -2024-09-12 20:00:00+00:00,36.55951960438037 -2024-09-12 21:00:00+00:00,32.582582582582916 -2024-09-12 22:00:00+00:00,35.15687851971066 -2024-09-12 23:00:00+00:00,28.576682603898817 -2024-09-13 00:00:00+00:00,26.091336467427993 -2024-09-13 01:00:00+00:00,27.294277006434243 -2024-09-13 02:00:00+00:00,30.1759640584053 -2024-09-13 03:00:00+00:00,30.484114977307485 -2024-09-13 04:00:00+00:00,15.212425765189565 -2024-09-13 05:00:00+00:00,16.29158512720163 -2024-09-13 06:00:00+00:00,14.192577733199158 -2024-09-13 07:00:00+00:00,14.693665628244489 -2024-09-13 08:00:00+00:00,14.9577167019021 -2024-09-13 09:00:00+00:00,15.117521367521022 -2024-09-13 10:00:00+00:00,20.945945945945752 -2024-09-13 11:00:00+00:00,25.47770700636893 -2024-09-13 12:00:00+00:00,24.018691588784662 -2024-09-13 13:00:00+00:00,23.577981651375538 -2024-09-13 14:00:00+00:00,37.03358208955183 -2024-09-13 15:00:00+00:00,36.88639551192119 -2024-09-13 16:00:00+00:00,44.576593720266146 -2024-09-13 17:00:00+00:00,48.43238184370596 -2024-09-13 18:00:00+00:00,49.36945352638918 -2024-09-13 19:00:00+00:00,51.61132812499937 -2024-09-13 20:00:00+00:00,43.01242236024814 -2024-09-15 21:00:00+00:00,46.45053102291828 -2024-09-15 22:00:00+00:00,49.939903846154415 -2024-09-15 23:00:00+00:00,58.00354400472516 -2024-09-16 00:00:00+00:00,45.53618594822989 -2024-09-16 01:00:00+00:00,41.7184850197857 -2024-09-16 02:00:00+00:00,44.13875598086129 -2024-09-16 03:00:00+00:00,43.05717619603268 -2024-09-16 04:00:00+00:00,36.209150326797484 -2024-09-16 05:00:00+00:00,34.64052287581704 -2024-09-16 06:00:00+00:00,22.144927536232245 -2024-09-16 07:00:00+00:00,18.606060606060126 -2024-09-16 08:00:00+00:00,17.272727272727295 -2024-09-16 09:00:00+00:00,31.952071892161754 -2024-09-16 10:00:00+00:00,32.421479229989345 -2024-09-16 11:00:00+00:00,29.37127122533245 -2024-09-16 12:00:00+00:00,40.64674580433899 -2024-09-16 13:00:00+00:00,42.25408203902863 -2024-09-16 14:00:00+00:00,48.13974591651558 -2024-09-16 15:00:00+00:00,55.0354051927616 -2024-09-16 16:00:00+00:00,51.96879643387805 -2024-09-16 17:00:00+00:00,61.99309749784316 -2024-09-16 18:00:00+00:00,60.98317094774152 -2024-09-16 19:00:00+00:00,61.19999999999965 -2024-09-16 20:00:00+00:00,68.88444222111022 -2024-09-16 21:00:00+00:00,68.89999999999974 -2024-09-16 22:00:00+00:00,72.89972899728927 -2024-09-16 23:00:00+00:00,65.23316062176121 -2024-09-17 00:00:00+00:00,63.5537607269056 -2024-09-17 01:00:00+00:00,64.20193778684285 -2024-09-17 02:00:00+00:00,59.678345778287785 -2024-09-17 03:00:00+00:00,54.47470817120623 -2024-09-17 04:00:00+00:00,57.23153320918676 -2024-09-17 05:00:00+00:00,46.25585023400934 -2024-09-17 06:00:00+00:00,51.74520069807986 -2024-09-17 07:00:00+00:00,46.638655462184424 -2024-09-17 08:00:00+00:00,44.05772495755468 -2024-09-17 09:00:00+00:00,47.72357723577308 -2024-09-17 10:00:00+00:00,52.66323024054908 -2024-09-17 11:00:00+00:00,49.001663893510774 -2024-09-17 12:00:00+00:00,53.978978978978795 -2024-09-17 13:00:00+00:00,71.03153393907007 -2024-09-17 14:00:00+00:00,77.89757412398927 -2024-09-17 15:00:00+00:00,88.89538281706626 -2024-09-17 16:00:00+00:00,85.8379715522566 -2024-09-17 17:00:00+00:00,87.02549575070756 -2024-09-17 18:00:00+00:00,81.77727784026948 -2024-09-17 19:00:00+00:00,85.06912442396268 -2024-09-17 20:00:00+00:00,87.02749140893505 -2024-09-17 21:00:00+00:00,88.24041811846656 -2024-09-17 22:00:00+00:00,78.58805275407323 -2024-09-17 23:00:00+00:00,76.84458398744101 -2024-09-18 00:00:00+00:00,67.03678001387905 -2024-09-18 01:00:00+00:00,65.4693324296843 -2024-09-18 02:00:00+00:00,59.45330296127583 -2024-09-18 03:00:00+00:00,45.480494766888796 -2024-09-18 04:00:00+00:00,40.75691411935981 -2024-09-18 05:00:00+00:00,44.57557875624154 -2024-09-18 06:00:00+00:00,45.68014705882389 -2024-09-18 07:00:00+00:00,49.46558358272755 -2024-09-18 08:00:00+00:00,47.98838656159255 -2024-09-18 09:00:00+00:00,35.988343856241116 -2024-09-18 10:00:00+00:00,29.23397602918206 -2024-09-18 11:00:00+00:00,38.00947867298569 -2024-09-18 12:00:00+00:00,46.70212765957383 -2024-09-18 13:00:00+00:00,43.81237524950112 -2024-09-18 14:00:00+00:00,59.34182590233591 -2024-09-18 15:00:00+00:00,61.462341946124724 -2024-09-18 16:00:00+00:00,61.293859649122474 -2024-09-18 17:00:00+00:00,66.14555256064695 -2024-09-18 18:00:00+00:00,46.565464895635905 -2024-09-18 19:00:00+00:00,62.1607094866974 -2024-09-18 20:00:00+00:00,59.44200464996136 -2024-09-18 21:00:00+00:00,53.30086580086585 -2024-09-18 22:00:00+00:00,55.63400169443671 -2024-09-18 23:00:00+00:00,62.97297297297323 -2024-09-19 00:00:00+00:00,69.52004986494916 -2024-09-19 01:00:00+00:00,69.53903654485066 -2024-09-19 02:00:00+00:00,62.153437143942305 -2024-09-19 03:00:00+00:00,63.701829505644085 -2024-09-19 04:00:00+00:00,61.96982055464927 -2024-09-19 05:00:00+00:00,55.86397058823531 -2024-09-19 06:00:00+00:00,53.20378151260516 -2024-09-19 07:00:00+00:00,54.40900562851779 -2024-09-19 08:00:00+00:00,65.63976563976559 -2024-09-19 09:00:00+00:00,53.98208063713278 -2024-09-19 10:00:00+00:00,57.03005603667843 -2024-09-19 11:00:00+00:00,60.33678756476683 -2024-09-19 12:00:00+00:00,67.57045260461152 -2024-09-19 13:00:00+00:00,56.965669988925676 -2024-09-19 14:00:00+00:00,43.09804866297276 -2024-09-19 15:00:00+00:00,39.273004575495825 -2024-09-19 16:00:00+00:00,47.668539325842744 -2024-09-19 17:00:00+00:00,46.56970362239298 -2024-09-19 18:00:00+00:00,43.3923530921223 -2024-09-19 19:00:00+00:00,50.93373493975921 -2024-09-19 20:00:00+00:00,56.4419225634178 -2024-09-19 21:00:00+00:00,52.40700218818388 -2024-09-19 22:00:00+00:00,47.442609746274485 -2024-09-19 23:00:00+00:00,51.960784313725725 -2024-09-20 00:00:00+00:00,43.08300395256945 -2024-09-20 01:00:00+00:00,41.162554917201916 -2024-09-20 02:00:00+00:00,20.64721969006378 -2024-09-20 03:00:00+00:00,23.278520041110156 -2024-09-20 04:00:00+00:00,27.774371551195756 -2024-09-20 05:00:00+00:00,32.134433962264595 -2024-09-20 06:00:00+00:00,48.753339269813395 -2024-09-20 07:00:00+00:00,62.78818443804032 -2024-09-20 08:00:00+00:00,71.26948775055618 -2024-09-20 09:00:00+00:00,73.24999999999953 -2024-09-20 10:00:00+00:00,76.0269576379973 -2024-09-20 11:00:00+00:00,75.01587301587242 -2024-09-20 12:00:00+00:00,63.628944504896594 -2024-09-20 13:00:00+00:00,65.62098225764942 -2024-09-20 14:00:00+00:00,76.61546610169472 -2024-09-20 15:00:00+00:00,67.70418909431321 -2024-09-20 16:00:00+00:00,64.769336699564 -2024-09-20 17:00:00+00:00,69.13468089938672 -2024-09-20 18:00:00+00:00,69.11898274296081 -2024-09-20 19:00:00+00:00,68.81449208897024 -2024-09-20 20:00:00+00:00,62.77990169306349 -2024-09-22 21:00:00+00:00,54.39868204283351 -2024-09-22 22:00:00+00:00,52.06096293730514 -2024-09-22 23:00:00+00:00,52.43986254295523 -2024-09-23 00:00:00+00:00,47.4962063732928 -2024-09-23 01:00:00+00:00,52.79241306638602 -2024-09-23 02:00:00+00:00,64.98054474708107 -2024-09-23 03:00:00+00:00,56.127703398557976 -2024-09-23 04:00:00+00:00,45.12048192771082 -2024-09-23 05:00:00+00:00,57.88253477588877 -2024-09-23 06:00:00+00:00,59.39730372720003 -2024-09-23 07:00:00+00:00,38.57979502196186 -2024-09-23 08:00:00+00:00,39.38714499252665 -2024-09-23 09:00:00+00:00,38.97667419112096 -2024-09-23 10:00:00+00:00,32.70202020202076 -2024-09-23 11:00:00+00:00,42.008879023306974 -2024-09-23 12:00:00+00:00,46.02272727272732 -2024-09-23 13:00:00+00:00,49.468085106383185 -2024-09-23 14:00:00+00:00,42.36261358719143 -2024-09-23 15:00:00+00:00,32.51451540866405 -2024-09-23 16:00:00+00:00,29.473684210526216 -2024-09-23 17:00:00+00:00,31.699477701887687 -2024-09-23 18:00:00+00:00,31.35930047694707 -2024-09-23 19:00:00+00:00,37.6771653543303 -2024-09-23 20:00:00+00:00,42.29857819905217 -2024-09-23 21:00:00+00:00,48.3085250338297 -2024-09-23 22:00:00+00:00,50.9407985314364 -2024-09-23 23:00:00+00:00,50.04672897196284 -2024-09-24 00:00:00+00:00,54.61499235084108 -2024-09-24 01:00:00+00:00,50.52807115063941 -2024-09-24 02:00:00+00:00,46.83393070489857 -2024-09-24 03:00:00+00:00,40.468227424749124 -2024-09-24 04:00:00+00:00,52.77995301487863 -2024-09-24 05:00:00+00:00,68.5459940652825 -2024-09-24 06:00:00+00:00,87.66550522648113 -2024-09-24 07:00:00+00:00,87.36616702355524 -2024-09-24 08:00:00+00:00,82.70270270270132 -2024-09-24 09:00:00+00:00,79.27927927927884 -2024-09-24 10:00:00+00:00,60.81342801807527 -2024-09-24 11:00:00+00:00,62.22222222222158 -2024-09-24 12:00:00+00:00,60.9455958549216 -2024-09-24 13:00:00+00:00,63.93540669856415 -2024-09-24 14:00:00+00:00,52.99950421417959 -2024-09-24 15:00:00+00:00,53.62035225048902 -2024-09-24 16:00:00+00:00,45.60344827586199 -2024-09-24 17:00:00+00:00,43.22986954565878 -2024-09-24 18:00:00+00:00,39.75044563279866 -2024-09-24 19:00:00+00:00,30.042115114647444 -2024-09-24 20:00:00+00:00,16.923076923077616 -2024-09-24 21:00:00+00:00,15.388828039430592 -2024-09-24 22:00:00+00:00,15.56786703601135 -2024-09-24 23:00:00+00:00,14.94680851063842 -2024-09-25 00:00:00+00:00,28.482797518330315 -2024-09-25 01:00:00+00:00,36.884021901443035 -2024-09-25 02:00:00+00:00,35.26891956211308 -2024-09-25 03:00:00+00:00,30.2371541501968 -2024-09-25 04:00:00+00:00,37.22627737226189 -2024-09-25 05:00:00+00:00,33.33333333333333 -2024-09-25 06:00:00+00:00,56.59008464328879 -2024-09-25 07:00:00+00:00,61.06290672451238 -2024-09-25 08:00:00+00:00,65.34216335540884 -2024-09-25 09:00:00+00:00,74.66039707418967 -2024-09-25 10:00:00+00:00,76.55310621242516 -2024-09-25 11:00:00+00:00,78.10770005032695 -2024-09-25 12:00:00+00:00,79.58974358974366 -2024-09-25 13:00:00+00:00,77.67767767767768 -2024-09-25 14:00:00+00:00,78.49566055930592 -2024-09-25 15:00:00+00:00,75.86580086580115 -2024-09-25 16:00:00+00:00,81.53681963713984 -2024-09-25 17:00:00+00:00,84.04774823657036 -2024-09-25 18:00:00+00:00,87.01973001038432 -2024-09-25 19:00:00+00:00,87.48748748748743 -2024-09-25 20:00:00+00:00,84.10386320455963 -2024-09-25 21:00:00+00:00,77.04918032786945 -2024-09-25 22:00:00+00:00,74.92997198879519 -2024-09-25 23:00:00+00:00,71.38289368505174 -2024-09-26 00:00:00+00:00,57.70348837209364 -2024-09-26 01:00:00+00:00,65.19138755980893 -2024-09-26 02:00:00+00:00,70.06931316950235 -2024-09-26 03:00:00+00:00,78.3854166666671 -2024-09-26 04:00:00+00:00,61.329715061058536 -2024-09-26 05:00:00+00:00,60.79779917469042 -2024-09-26 06:00:00+00:00,60.52631578947384 -2024-09-26 07:00:00+00:00,64.66212027278405 -2024-09-26 08:00:00+00:00,54.39429928741082 -2024-09-26 09:00:00+00:00,48.379629629630124 -2024-09-26 10:00:00+00:00,40.44508950169375 -2024-09-26 11:00:00+00:00,38.38383838383851 -2024-09-26 12:00:00+00:00,48.31636648394706 -2024-09-26 13:00:00+00:00,47.15772618094483 -2024-09-26 14:00:00+00:00,56.69695772421964 -2024-09-26 15:00:00+00:00,47.04641350210943 -2024-09-26 16:00:00+00:00,50.395256916996246 -2024-09-26 17:00:00+00:00,45.852713178294664 -2024-09-26 18:00:00+00:00,48.603122432210135 -2024-09-26 19:00:00+00:00,48.855273916598314 -2024-09-26 20:00:00+00:00,49.43411479385571 -2024-09-26 21:00:00+00:00,45.1486013986013 -2024-09-26 22:00:00+00:00,51.155268022180756 -2024-09-26 23:00:00+00:00,58.496441281138715 -2024-09-27 00:00:00+00:00,74.04814004376318 -2024-09-27 01:00:00+00:00,75.3339269813001 -2024-09-27 02:00:00+00:00,62.75460717749775 -2024-09-27 03:00:00+00:00,65.31165311653112 -2024-09-27 04:00:00+00:00,69.19374247894095 -2024-09-27 05:00:00+00:00,78.25000000000057 -2024-09-27 06:00:00+00:00,35.25798525798514 -2024-09-27 07:00:00+00:00,36.31956912028723 -2024-09-27 08:00:00+00:00,36.62201303403323 -2024-09-27 09:00:00+00:00,36.08078602620089 -2024-09-27 10:00:00+00:00,35.4939405067942 -2024-09-27 11:00:00+00:00,34.7661870503599 -2024-09-27 12:00:00+00:00,30.59578670177784 -2024-09-27 13:00:00+00:00,28.440522653996055 -2024-09-27 14:00:00+00:00,27.667238421955687 -2024-09-27 15:00:00+00:00,27.186920613517728 -2024-09-27 16:00:00+00:00,27.781605235962942 -2024-09-27 17:00:00+00:00,24.871266735324767 -2024-09-27 18:00:00+00:00,16.758443465492377 -2024-09-27 19:00:00+00:00,8.95791583166384 -2024-09-27 20:00:00+00:00,25.47121752419845 -2024-09-29 21:00:00+00:00,27.57425742574287 -2024-09-29 22:00:00+00:00,40.10989010989039 -2024-09-29 23:00:00+00:00,43.04823672476718 -2024-09-30 00:00:00+00:00,39.07953169156233 -2024-09-30 01:00:00+00:00,37.577639751552475 -2024-09-30 02:00:00+00:00,50.09803921568604 -2024-09-30 03:00:00+00:00,47.77192141830406 -2024-09-30 04:00:00+00:00,32.570338578921806 -2024-09-30 05:00:00+00:00,30.261408949933525 -2024-09-30 06:00:00+00:00,40.89825119236884 -2024-09-30 07:00:00+00:00,50.69996216420745 -2024-09-30 08:00:00+00:00,56.95488721804528 -2024-09-30 09:00:00+00:00,56.99774266365665 -2024-09-30 10:00:00+00:00,57.27102803738334 -2024-09-30 11:00:00+00:00,55.17371601208456 -2024-09-30 12:00:00+00:00,55.105900151286065 -2024-09-30 13:00:00+00:00,56.263817243920414 -2024-09-30 14:00:00+00:00,56.45101663585923 -2024-09-30 15:00:00+00:00,64.60405156537749 -2024-09-30 16:00:00+00:00,60.49822064056934 -2024-09-30 17:00:00+00:00,61.683599419448456 -2024-09-30 18:00:00+00:00,75.80165289256205 -2024-09-30 19:00:00+00:00,88.20415879016986 -2024-09-30 20:00:00+00:00,82.72273105745158 -2024-09-30 21:00:00+00:00,79.92370052455826 -2024-09-30 22:00:00+00:00,75.73158425832446 -2024-09-30 23:00:00+00:00,77.72045028142547 -2024-10-01 00:00:00+00:00,79.45501730103744 -2024-10-01 01:00:00+00:00,73.0127186009532 -2024-10-01 02:00:00+00:00,71.97688815517895 -2024-10-01 03:00:00+00:00,72.91583566015103 -2024-10-01 04:00:00+00:00,75.75631993369167 -2024-10-01 05:00:00+00:00,72.73966378918632 -2024-10-01 06:00:00+00:00,78.76647834274902 -2024-10-01 07:00:00+00:00,73.70044052863352 -2024-10-01 08:00:00+00:00,52.96714075527232 -2024-10-01 09:00:00+00:00,50.096339113679925 -2024-10-01 10:00:00+00:00,52.87878787878792 -2024-10-01 11:00:00+00:00,53.39366515837076 -2024-10-01 12:00:00+00:00,60.80470162748641 -2024-10-01 13:00:00+00:00,46.48162627052378 -2024-10-01 14:00:00+00:00,42.43061396131188 -2024-10-01 15:00:00+00:00,48.92938496583151 -2024-10-01 16:00:00+00:00,40.279214064115685 -2024-10-01 17:00:00+00:00,37.702265372168675 -2024-10-01 18:00:00+00:00,34.810756972112 -2024-10-01 19:00:00+00:00,33.28571428571452 -2024-10-01 20:00:00+00:00,31.15479115479053 -2024-10-01 21:00:00+00:00,36.33556356150256 -2024-10-01 22:00:00+00:00,41.431924882628955 -2024-10-01 23:00:00+00:00,49.91843393148411 -2024-10-02 00:00:00+00:00,51.98123044838358 -2024-10-02 01:00:00+00:00,53.625377643504684 -2024-10-02 02:00:00+00:00,49.05973451327376 -2024-10-02 03:00:00+00:00,70.84203201113459 -2024-10-02 04:00:00+00:00,53.55932203389853 -2024-10-02 05:00:00+00:00,51.27758420441383 -2024-10-02 06:00:00+00:00,56.9288389513107 -2024-10-02 07:00:00+00:00,56.55693470048573 -2024-10-02 08:00:00+00:00,66.81980602348162 -2024-10-02 09:00:00+00:00,68.31941544885231 -2024-10-02 10:00:00+00:00,75.13314215485521 -2024-10-02 11:00:00+00:00,71.42278070531106 -2024-10-02 12:00:00+00:00,80.69651741293603 -2024-10-02 13:00:00+00:00,81.69811320754798 -2024-10-02 14:00:00+00:00,83.55467646227814 -2024-10-02 15:00:00+00:00,79.89991659716509 -2024-10-02 16:00:00+00:00,78.9338654503995 -2024-10-02 17:00:00+00:00,78.97581792318678 -2024-10-02 18:00:00+00:00,89.72477064220226 -2024-10-02 19:00:00+00:00,90.51724137931062 -2024-10-02 20:00:00+00:00,90.08084577114458 -2024-10-02 21:00:00+00:00,86.67726550079527 -2024-10-02 22:00:00+00:00,86.51866151866197 -2024-10-02 23:00:00+00:00,87.732463295269 -2024-10-03 00:00:00+00:00,87.24559023066473 -2024-10-03 01:00:00+00:00,84.60526315789426 -2024-10-03 02:00:00+00:00,79.63971512358557 -2024-10-03 03:00:00+00:00,76.61212704523527 -2024-10-03 04:00:00+00:00,65.0964812712827 -2024-10-03 05:00:00+00:00,64.29372197309353 -2024-10-03 06:00:00+00:00,67.95665634674901 -2024-10-03 07:00:00+00:00,56.76456427539736 -2024-10-03 08:00:00+00:00,59.56776226924781 -2024-10-03 09:00:00+00:00,60.596752961825466 -2024-10-03 10:00:00+00:00,57.70547945205505 -2024-10-03 11:00:00+00:00,56.1432736359853 -2024-10-03 12:00:00+00:00,53.81578947368377 -2024-10-03 13:00:00+00:00,51.64141414141424 -2024-10-03 14:00:00+00:00,44.83917426788263 -2024-10-03 15:00:00+00:00,50.84572014351655 -2024-10-03 16:00:00+00:00,48.437500000000156 -2024-10-03 17:00:00+00:00,45.16129032258038 -2024-10-03 18:00:00+00:00,53.44585091420517 -2024-10-03 19:00:00+00:00,57.692307692307864 -2024-10-03 20:00:00+00:00,55.930416447022246 -2024-10-03 21:00:00+00:00,62.046783625731116 -2024-10-03 22:00:00+00:00,53.71549893842949 -2024-10-03 23:00:00+00:00,46.974522292993896 -2024-10-04 00:00:00+00:00,43.19180087847712 -2024-10-04 01:00:00+00:00,45.55984555984526 -2024-10-04 02:00:00+00:00,36.50674662668752 -2024-10-04 03:00:00+00:00,38.83572567783131 -2024-10-04 04:00:00+00:00,28.62745098039369 -2024-10-04 05:00:00+00:00,22.52384446074909 -2024-10-04 06:00:00+00:00,32.10678210678171 -2024-10-04 07:00:00+00:00,37.58915834522179 -2024-10-04 08:00:00+00:00,28.219852337981607 -2024-10-04 09:00:00+00:00,35.62962962962938 -2024-10-04 10:00:00+00:00,32.10937500000007 -2024-10-04 11:00:00+00:00,39.282930631332476 -2024-10-04 12:00:00+00:00,76.77070828331325 -2024-10-04 13:00:00+00:00,71.97523916713537 -2024-10-04 14:00:00+00:00,76.88734030197459 -2024-10-04 15:00:00+00:00,80.21420518602035 -2024-10-04 16:00:00+00:00,84.64912280701746 -2024-10-04 17:00:00+00:00,82.23701731025292 -2024-10-04 18:00:00+00:00,85.79175704989157 -2024-10-04 19:00:00+00:00,86.82766190998865 -2024-10-04 20:00:00+00:00,84.66703973139285 -2024-10-06 21:00:00+00:00,84.69273743016693 -2024-10-06 22:00:00+00:00,85.18518518518465 -2024-10-06 23:00:00+00:00,81.28371089536058 -2024-10-07 00:00:00+00:00,73.81011097410546 -2024-10-07 01:00:00+00:00,72.46376811594168 -2024-10-07 02:00:00+00:00,48.64864864864886 -2024-10-07 03:00:00+00:00,49.952153110047625 -2024-10-07 04:00:00+00:00,50.93808630393974 -2024-10-07 05:00:00+00:00,43.55076017655724 -2024-10-07 06:00:00+00:00,35.013550135502115 -2024-10-07 07:00:00+00:00,35.63154991726515 -2024-10-07 08:00:00+00:00,34.58520179372208 -2024-10-07 09:00:00+00:00,37.60984182776833 -2024-10-07 10:00:00+00:00,48.36872087001588 -2024-10-07 11:00:00+00:00,38.31521739130484 -2024-10-07 12:00:00+00:00,32.144511347846276 -2024-10-07 13:00:00+00:00,30.694383016364853 -2024-10-07 14:00:00+00:00,45.32603739170131 -2024-10-07 15:00:00+00:00,44.217081850533575 -2024-10-07 16:00:00+00:00,36.61453541858313 -2024-10-07 17:00:00+00:00,40.417080436941696 -2024-10-07 18:00:00+00:00,38.900203665988634 -2024-10-07 19:00:00+00:00,40.487546369899505 -2024-10-07 20:00:00+00:00,44.75847893114082 -2024-10-07 21:00:00+00:00,46.954177897574255 -2024-10-07 22:00:00+00:00,36.23570800351844 -2024-10-07 23:00:00+00:00,45.996275605214215 -2024-10-08 00:00:00+00:00,34.88716241213501 -2024-10-08 01:00:00+00:00,40.8898305084747 -2024-10-08 02:00:00+00:00,40.09140008309118 -2024-10-08 03:00:00+00:00,49.895090222408825 -2024-10-08 04:00:00+00:00,46.86248331108111 -2024-10-08 05:00:00+00:00,46.59292035398246 -2024-10-08 06:00:00+00:00,49.72144846796657 -2024-10-08 07:00:00+00:00,41.52208201892797 -2024-10-08 08:00:00+00:00,45.11472982975555 -2024-10-08 09:00:00+00:00,45.34970238095236 -2024-10-08 10:00:00+00:00,44.20812761108984 -2024-10-08 11:00:00+00:00,44.19134396355328 -2024-10-08 12:00:00+00:00,57.31292517006797 -2024-10-08 13:00:00+00:00,52.863849765257925 -2024-10-08 14:00:00+00:00,63.045793397231435 -2024-10-08 15:00:00+00:00,59.89690721649523 -2024-10-08 16:00:00+00:00,62.27224008574478 -2024-10-08 17:00:00+00:00,59.51696377228258 -2024-10-08 18:00:00+00:00,58.07027992852919 -2024-10-08 19:00:00+00:00,59.48749237339841 -2024-10-08 20:00:00+00:00,56.030444964871606 -2024-10-08 21:00:00+00:00,73.8839285714275 -2024-10-08 22:00:00+00:00,66.16341030195312 -2024-10-08 23:00:00+00:00,63.67521367521253 -2024-10-09 00:00:00+00:00,64.55379482902376 -2024-10-09 01:00:00+00:00,63.02931596091047 -2024-10-09 02:00:00+00:00,60.24518388791508 -2024-10-09 03:00:00+00:00,53.57873210634001 -2024-10-09 04:00:00+00:00,51.391862955030994 -2024-10-09 05:00:00+00:00,66.57633242998884 -2024-10-09 06:00:00+00:00,62.246621621621635 -2024-10-09 07:00:00+00:00,62.46851385390354 -2024-10-09 08:00:00+00:00,64.60807600950046 -2024-10-09 09:00:00+00:00,62.91441788743231 -2024-10-09 10:00:00+00:00,66.50366748166181 -2024-10-09 11:00:00+00:00,68.67378048780357 -2024-10-09 12:00:00+00:00,74.08163265306025 -2024-10-09 13:00:00+00:00,80.03708281829401 -2024-10-09 14:00:00+00:00,79.38736439055481 -2024-10-09 15:00:00+00:00,82.66411727214829 -2024-10-09 16:00:00+00:00,82.01058201058225 -2024-10-09 17:00:00+00:00,78.5478547854787 -2024-10-09 18:00:00+00:00,80.57381948595375 -2024-10-09 19:00:00+00:00,75.0860289057137 -2024-10-09 20:00:00+00:00,83.28244274809173 -2024-10-09 21:00:00+00:00,73.65671641791144 -2024-10-09 22:00:00+00:00,70.97039473684256 -2024-10-09 23:00:00+00:00,73.13559322033964 -2024-10-10 00:00:00+00:00,75.2679307502068 -2024-10-10 01:00:00+00:00,65.29266281945635 -2024-10-10 02:00:00+00:00,63.23144104803502 -2024-10-10 03:00:00+00:00,55.684210526316065 -2024-10-10 04:00:00+00:00,61.51736745886705 -2024-10-10 05:00:00+00:00,52.542372881356016 -2024-10-10 06:00:00+00:00,45.163806552262315 -2024-10-10 07:00:00+00:00,43.63225320271353 -2024-10-10 08:00:00+00:00,38.02816901408497 -2024-10-10 09:00:00+00:00,33.79970544918942 -2024-10-10 10:00:00+00:00,33.093006488825026 -2024-10-10 11:00:00+00:00,41.788856304984705 -2024-10-10 12:00:00+00:00,31.280193236714894 -2024-10-10 13:00:00+00:00,31.62393162393157 -2024-10-10 14:00:00+00:00,35.70608495981568 -2024-10-10 15:00:00+00:00,35.180995475112866 -2024-10-10 16:00:00+00:00,42.613920881321434 -2024-10-10 17:00:00+00:00,40.15296367112776 -2024-10-10 18:00:00+00:00,33.65336028297034 -2024-10-10 19:00:00+00:00,32.905138339920285 -2024-10-10 20:00:00+00:00,35.85005279831003 -2024-10-10 21:00:00+00:00,37.06331877729184 -2024-10-10 22:00:00+00:00,39.251844046364006 -2024-10-10 23:00:00+00:00,44.98289623717242 -2024-10-11 00:00:00+00:00,40.27565084226633 -2024-10-11 01:00:00+00:00,45.479962721342275 -2024-10-11 02:00:00+00:00,51.4225500526871 -2024-10-11 03:00:00+00:00,53.87862796833822 -2024-10-11 04:00:00+00:00,49.88532110091769 -2024-10-11 05:00:00+00:00,53.83663366336616 -2024-10-11 06:00:00+00:00,41.05594956658887 -2024-10-11 07:00:00+00:00,48.47512038523346 -2024-10-11 08:00:00+00:00,49.30612244897977 -2024-10-11 09:00:00+00:00,64.92776886035324 -2024-10-11 10:00:00+00:00,67.72525849335315 -2024-10-11 11:00:00+00:00,66.83673469387767 -2024-10-11 12:00:00+00:00,65.21406727828781 -2024-10-11 13:00:00+00:00,64.83771251932004 -2024-10-11 14:00:00+00:00,82.71908271908214 -2024-10-11 15:00:00+00:00,67.10650329877416 -2024-10-11 16:00:00+00:00,65.68265682656796 -2024-10-11 17:00:00+00:00,65.13589503280116 -2024-10-11 18:00:00+00:00,67.36842105263158 -2024-10-11 19:00:00+00:00,69.38421509106657 -2024-10-11 20:00:00+00:00,68.6695278969938 -2024-10-13 21:00:00+00:00,66.39042357274272 -2024-10-13 22:00:00+00:00,74.10358565737025 -2024-10-13 23:00:00+00:00,66.94367497691466 -2024-10-14 00:00:00+00:00,57.633587786259156 -2024-10-14 01:00:00+00:00,60.279441117763525 -2024-10-14 02:00:00+00:00,62.23908918405948 -2024-10-14 03:00:00+00:00,61.471442400773704 -2024-10-14 04:00:00+00:00,51.498335183129015 -2024-10-14 05:00:00+00:00,55.97104945717622 -2024-10-14 06:00:00+00:00,64.44444444444322 -2024-10-14 07:00:00+00:00,69.37799043062114 -2024-10-14 08:00:00+00:00,69.11942098914145 -2024-10-14 09:00:00+00:00,65.49636803873999 -2024-10-14 10:00:00+00:00,71.01604278074801 -2024-10-14 11:00:00+00:00,74.19047619047504 -2024-10-14 12:00:00+00:00,71.29237288135485 -2024-10-14 13:00:00+00:00,75.10460251046075 -2024-10-14 14:00:00+00:00,83.54978354978252 -2024-10-14 15:00:00+00:00,83.01075268817102 -2024-10-14 16:00:00+00:00,83.01075268817102 -2024-10-14 17:00:00+00:00,77.77777777777649 -2024-10-14 18:00:00+00:00,81.56539649845506 -2024-10-14 19:00:00+00:00,76.00767754318622 -2024-10-14 20:00:00+00:00,75.71701720841371 -2024-10-14 21:00:00+00:00,72.39130434782672 -2024-10-14 22:00:00+00:00,67.3055242390088 -2024-10-14 23:00:00+00:00,68.46330275229343 -2024-10-15 00:00:00+00:00,53.31833520810041 -2024-10-15 01:00:00+00:00,42.874396135266274 -2024-10-15 02:00:00+00:00,42.66666666666823 -2024-10-15 03:00:00+00:00,45.756880733944314 -2024-10-15 04:00:00+00:00,40.39812646369946 -2024-10-15 05:00:00+00:00,39.204545454545524 -2024-10-15 06:00:00+00:00,21.72727272727323 -2024-10-15 07:00:00+00:00,21.358355674709955 -2024-10-15 08:00:00+00:00,17.933390264731358 -2024-10-15 09:00:00+00:00,16.406250000000597 -2024-10-15 10:00:00+00:00,29.88047808764864 -2024-10-15 11:00:00+00:00,37.80918727915153 -2024-10-15 12:00:00+00:00,33.19544984488091 -2024-10-15 13:00:00+00:00,36.85770750988099 -2024-10-15 14:00:00+00:00,40.9138110072683 -2024-10-15 15:00:00+00:00,42.00426439232433 -2024-10-15 16:00:00+00:00,45.68147778332481 -2024-10-15 17:00:00+00:00,42.73104880581497 -2024-10-15 18:00:00+00:00,40.22482893450604 -2024-10-15 19:00:00+00:00,40.30362389813859 -2024-10-15 20:00:00+00:00,47.29885057471196 -2024-10-15 21:00:00+00:00,49.25194494314763 -2024-10-15 22:00:00+00:00,52.47831474597321 -2024-10-15 23:00:00+00:00,56.12988734261125 -2024-10-16 00:00:00+00:00,54.344827586207174 -2024-10-16 01:00:00+00:00,38.97505057316218 -2024-10-16 02:00:00+00:00,50.31397174254356 -2024-10-16 03:00:00+00:00,49.44089456869082 -2024-10-16 04:00:00+00:00,51.45705521472437 -2024-10-16 05:00:00+00:00,54.971181556196136 -2024-10-16 06:00:00+00:00,42.743221690589564 -2024-10-16 07:00:00+00:00,50.63202247191013 -2024-10-16 08:00:00+00:00,57.33229329173225 -2024-10-16 09:00:00+00:00,51.14822546972913 -2024-10-16 10:00:00+00:00,55.39473684210574 -2024-10-16 11:00:00+00:00,48.896631823460794 -2024-10-16 12:00:00+00:00,55.5555555555554 -2024-10-16 13:00:00+00:00,55.583628094997444 -2024-10-16 14:00:00+00:00,58.459357277882724 -2024-10-16 15:00:00+00:00,67.53445635528307 -2024-10-16 16:00:00+00:00,66.97819314641697 -2024-10-16 17:00:00+00:00,65.67728008634586 -2024-10-16 18:00:00+00:00,64.26966292134813 -2024-10-16 19:00:00+00:00,60.39035591274354 -2024-10-16 20:00:00+00:00,61.05629715612278 -2024-10-16 21:00:00+00:00,54.28929242329359 -2024-10-16 22:00:00+00:00,53.51317440401484 -2024-10-16 23:00:00+00:00,60.28268551236722 -2024-10-17 00:00:00+00:00,56.25942684766191 -2024-10-17 01:00:00+00:00,58.281250000000675 -2024-10-17 02:00:00+00:00,48.20562560620723 -2024-10-17 03:00:00+00:00,61.895551257252556 -2024-10-17 04:00:00+00:00,44.10958904109688 -2024-10-17 05:00:00+00:00,35.01483679525187 -2024-10-17 06:00:00+00:00,42.67015706806086 -2024-10-17 07:00:00+00:00,51.061452513966806 -2024-10-17 08:00:00+00:00,53.10492505353291 -2024-10-17 09:00:00+00:00,46.26865671641725 -2024-10-17 10:00:00+00:00,48.722986247545016 -2024-10-17 11:00:00+00:00,47.10351377018002 -2024-10-17 12:00:00+00:00,59.495548961424454 -2024-10-17 13:00:00+00:00,57.90613718411536 -2024-10-17 14:00:00+00:00,64.77556109725667 -2024-10-17 15:00:00+00:00,74.15803108808255 -2024-10-17 16:00:00+00:00,74.96863237139301 -2024-10-17 17:00:00+00:00,73.27528466175471 -2024-10-17 18:00:00+00:00,74.36750998668379 -2024-10-17 19:00:00+00:00,73.10209424083659 -2024-10-17 20:00:00+00:00,70.8303761532997 -2024-10-17 21:00:00+00:00,64.90166414523404 -2024-10-17 22:00:00+00:00,64.52599388379133 -2024-10-17 23:00:00+00:00,69.06710310965606 -2024-10-18 00:00:00+00:00,67.09062003179474 -2024-10-18 01:00:00+00:00,70.33333333333255 -2024-10-18 02:00:00+00:00,54.61928934010188 -2024-10-18 03:00:00+00:00,55.63598759048642 -2024-10-18 04:00:00+00:00,41.869918699186684 -2024-10-18 05:00:00+00:00,31.472868217055606 -2024-10-18 06:00:00+00:00,29.952456418380592 -2024-10-18 07:00:00+00:00,39.11845730027594 -2024-10-18 08:00:00+00:00,29.828571428569617 -2024-10-18 09:00:00+00:00,31.829268292681405 -2024-10-18 10:00:00+00:00,33.45238095238041 -2024-10-18 11:00:00+00:00,40.610328638497265 -2024-10-18 12:00:00+00:00,31.645569620253013 -2024-10-18 13:00:00+00:00,30.92783505154557 -2024-10-18 14:00:00+00:00,28.653295128939064 -2024-10-18 15:00:00+00:00,29.013539651836894 -2024-10-18 16:00:00+00:00,27.149321266967036 -2024-10-18 17:00:00+00:00,38.03042433947127 -2024-10-18 18:00:00+00:00,35.75803981623345 -2024-10-18 19:00:00+00:00,35.97842835130987 -2024-10-18 20:00:00+00:00,32.82134195634586 -2024-10-20 21:00:00+00:00,25.2025202520268 -2024-10-20 22:00:00+00:00,31.921487603306943 -2024-10-20 23:00:00+00:00,34.06813627254667 -2024-10-21 00:00:00+00:00,26.694560669456365 -2024-10-21 01:00:00+00:00,19.38931297709982 -2024-10-21 02:00:00+00:00,23.063973063974117 -2024-10-21 03:00:00+00:00,25.849056603774912 -2024-10-21 04:00:00+00:00,36.16813294232784 -2024-10-21 05:00:00+00:00,39.539347408830274 -2024-10-21 06:00:00+00:00,59.30434782608662 -2024-10-21 07:00:00+00:00,60.27164685908255 -2024-10-21 08:00:00+00:00,67.12887438825359 -2024-10-21 09:00:00+00:00,70.14253563390787 -2024-10-21 10:00:00+00:00,64.24116424116332 -2024-10-21 11:00:00+00:00,63.04198210598676 -2024-10-21 12:00:00+00:00,62.24561403508677 -2024-10-21 13:00:00+00:00,66.45885286782945 -2024-10-21 14:00:00+00:00,78.58099062918276 -2024-10-21 15:00:00+00:00,90.94437257438484 -2024-10-21 16:00:00+00:00,91.09414758269644 -2024-10-21 17:00:00+00:00,92.23946784922326 -2024-10-21 18:00:00+00:00,91.92618223760024 -2024-10-21 19:00:00+00:00,91.73065564087338 -2024-10-21 20:00:00+00:00,90.46321525885489 -2024-10-21 21:00:00+00:00,83.14855875831468 -2024-10-21 22:00:00+00:00,78.51047323506549 -2024-10-21 23:00:00+00:00,72.52215954875066 -2024-10-22 00:00:00+00:00,80.35242290749017 -2024-10-22 01:00:00+00:00,82.34265734265759 -2024-10-22 02:00:00+00:00,84.72644376899748 -2024-10-22 03:00:00+00:00,83.19397993311048 -2024-10-22 04:00:00+00:00,77.73882559158642 -2024-10-22 05:00:00+00:00,70.20364415862784 -2024-10-22 06:00:00+00:00,67.14443219404757 -2024-10-22 07:00:00+00:00,65.02347417840471 -2024-10-22 08:00:00+00:00,62.485207100591644 -2024-10-22 09:00:00+00:00,55.82627118644165 -2024-10-22 10:00:00+00:00,51.33120340788113 -2024-10-22 11:00:00+00:00,57.58620689655247 -2024-10-22 12:00:00+00:00,63.26061997703873 -2024-10-22 13:00:00+00:00,68.55036855036954 -2024-10-22 14:00:00+00:00,70.16317016317161 -2024-10-22 15:00:00+00:00,73.24973876698132 -2024-10-22 16:00:00+00:00,63.61445783132644 -2024-10-22 17:00:00+00:00,53.34957369062173 -2024-10-22 18:00:00+00:00,61.222091656874795 -2024-10-22 19:00:00+00:00,65.26674233825278 -2024-10-22 20:00:00+00:00,64.97175141242877 -2024-10-22 21:00:00+00:00,52.925531914894435 -2024-10-22 22:00:00+00:00,55.511288180611096 -2024-10-22 23:00:00+00:00,68.20027063599555 -2024-10-23 00:00:00+00:00,80.78817733990189 -2024-10-23 01:00:00+00:00,83.37595907928409 -2024-10-23 02:00:00+00:00,84.00328137817931 -2024-10-23 03:00:00+00:00,84.02948402948427 -2024-10-23 04:00:00+00:00,86.8598382749329 -2024-10-23 05:00:00+00:00,86.57024793388449 -2024-10-23 06:00:00+00:00,90.24230517354275 -2024-10-23 07:00:00+00:00,95.55264879005983 -2024-10-23 08:00:00+00:00,95.42703429724376 -2024-10-23 09:00:00+00:00,96.10091743119354 -2024-10-23 10:00:00+00:00,97.58108851017133 -2024-10-23 11:00:00+00:00,100.0 -2024-10-23 12:00:00+00:00,100.0 -2024-10-23 13:00:00+00:00,100.0 -2024-10-23 14:00:00+00:00,97.20534629404662 -2024-10-23 15:00:00+00:00,84.95522388059655 -2024-10-23 16:00:00+00:00,84.41558441558401 -2024-10-23 17:00:00+00:00,80.23668639053267 -2024-10-23 18:00:00+00:00,69.8316498316496 -2024-10-23 19:00:00+00:00,64.42769019876667 -2024-10-23 20:00:00+00:00,65.65188616810079 -2024-10-23 21:00:00+00:00,60.68090787716899 -2024-10-23 22:00:00+00:00,61.14775725593612 -2024-10-23 23:00:00+00:00,51.80032733224258 -2024-10-24 00:00:00+00:00,42.685851318945666 -2024-10-24 01:00:00+00:00,32.102272727275036 -2024-10-24 02:00:00+00:00,25.36736272235339 -2024-10-24 03:00:00+00:00,24.546827794563555 -2024-10-24 04:00:00+00:00,22.245037645449955 -2024-10-24 05:00:00+00:00,34.6910112359555 -2024-10-24 06:00:00+00:00,26.60443407234598 -2024-10-24 07:00:00+00:00,31.066822977725423 -2024-10-24 08:00:00+00:00,30.957943925233394 -2024-10-24 09:00:00+00:00,31.908488862131293 -2024-10-24 10:00:00+00:00,21.982758620689665 -2024-10-24 11:00:00+00:00,31.678082191780447 -2024-10-24 12:00:00+00:00,29.297105729473955 -2024-10-24 13:00:00+00:00,34.590163934425036 -2024-10-24 14:00:00+00:00,32.002022244690934 -2024-10-24 15:00:00+00:00,29.77977977977872 -2024-10-24 16:00:00+00:00,30.844997407982646 -2024-10-24 17:00:00+00:00,30.341662417133165 -2024-10-24 18:00:00+00:00,40.040547389761116 -2024-10-24 19:00:00+00:00,35.213581599123 -2024-10-24 20:00:00+00:00,42.414248021107106 -2024-10-24 21:00:00+00:00,39.542936288088406 -2024-10-24 22:00:00+00:00,39.21703296703271 -2024-10-24 23:00:00+00:00,43.464052287580905 -2024-10-25 00:00:00+00:00,54.776674937965254 -2024-10-25 01:00:00+00:00,43.57506361323162 -2024-10-25 02:00:00+00:00,43.163201008192 -2024-10-25 03:00:00+00:00,37.92154163799018 -2024-10-25 04:00:00+00:00,41.52223059532783 -2024-10-25 05:00:00+00:00,44.68412942989184 -2024-10-25 06:00:00+00:00,56.84547638110476 -2024-10-25 07:00:00+00:00,62.93103448275847 -2024-10-25 08:00:00+00:00,56.525735294117666 -2024-10-25 09:00:00+00:00,57.15579710145007 -2024-10-25 10:00:00+00:00,52.98068849706121 -2024-10-25 11:00:00+00:00,48.7596899224802 -2024-10-25 12:00:00+00:00,58.67187500000032 -2024-10-25 13:00:00+00:00,58.86469673405942 -2024-10-25 14:00:00+00:00,51.018518518518135 -2024-10-25 15:00:00+00:00,61.9877049180336 -2024-10-25 16:00:00+00:00,66.85288640595904 -2024-10-25 17:00:00+00:00,64.2725598526703 -2024-10-25 18:00:00+00:00,76.62082514734632 -2024-10-25 19:00:00+00:00,76.10441767068083 -2024-10-25 20:00:00+00:00,74.01746724890677 -2024-10-27 21:00:00+00:00,83.75426621160285 -2024-10-27 22:00:00+00:00,83.79850238257184 -2024-10-27 23:00:00+00:00,83.40306834030551 -2024-10-28 00:00:00+00:00,92.75993467610188 -2024-10-28 01:00:00+00:00,98.49056603773536 -2024-10-28 02:00:00+00:00,86.45558487247067 -2024-10-28 03:00:00+00:00,86.20071684587737 -2024-10-28 04:00:00+00:00,86.20689655172339 -2024-10-28 05:00:00+00:00,81.8102317446428 -2024-10-28 06:00:00+00:00,76.4680295780767 -2024-10-28 07:00:00+00:00,74.96801705756975 -2024-10-28 08:00:00+00:00,69.28482844150474 -2024-10-28 09:00:00+00:00,62.720781661030074 -2024-10-28 10:00:00+00:00,53.87687188019975 -2024-10-28 11:00:00+00:00,45.81704456606725 -2024-10-28 12:00:00+00:00,43.72881355932207 -2024-10-28 13:00:00+00:00,46.37473079684139 -2024-10-28 14:00:00+00:00,39.56310679611672 -2024-10-28 15:00:00+00:00,36.39846743294992 -2024-10-28 16:00:00+00:00,42.60131950989644 -2024-10-28 17:00:00+00:00,41.498559077810135 -2024-10-28 18:00:00+00:00,40.776233828462075 -2024-10-28 19:00:00+00:00,42.338308457711584 -2024-10-28 20:00:00+00:00,47.028688524590535 -2024-10-28 21:00:00+00:00,47.962382445141 -2024-10-28 22:00:00+00:00,53.46260387811633 -2024-10-28 23:00:00+00:00,56.03948896631816 -2024-10-29 00:00:00+00:00,66.68970283344862 -2024-10-29 01:00:00+00:00,57.80780780780761 -2024-10-29 02:00:00+00:00,64.55893832943048 -2024-10-29 03:00:00+00:00,61.848739495797595 -2024-10-29 04:00:00+00:00,48.916967509025234 -2024-10-29 05:00:00+00:00,29.83014861995794 -2024-10-29 06:00:00+00:00,37.70028275212092 -2024-10-29 07:00:00+00:00,45.2814569536422 -2024-10-29 08:00:00+00:00,54.71830985915447 -2024-10-29 09:00:00+00:00,56.441281138790444 -2024-10-29 10:00:00+00:00,51.6358463726882 -2024-10-29 11:00:00+00:00,62.286387743075835 -2024-10-29 12:00:00+00:00,63.23951751866688 -2024-10-29 13:00:00+00:00,65.7313432835816 -2024-10-29 14:00:00+00:00,59.902067464634705 -2024-10-29 15:00:00+00:00,64.82869379014977 -2024-10-29 16:00:00+00:00,64.7909967845656 -2024-10-29 17:00:00+00:00,59.550561797752415 -2024-10-29 18:00:00+00:00,63.34231805929877 -2024-10-29 19:00:00+00:00,66.78023850085125 -2024-10-29 20:00:00+00:00,61.05390672319788 -2024-10-29 21:00:00+00:00,56.96117804551508 -2024-10-29 22:00:00+00:00,45.00000000000102 -2024-10-29 23:00:00+00:00,44.75982532751081 -2024-10-30 00:00:00+00:00,46.52042360060574 -2024-10-30 01:00:00+00:00,27.70731707316979 -2024-10-30 02:00:00+00:00,27.988338192420215 -2024-10-30 03:00:00+00:00,32.94979079498023 -2024-10-30 04:00:00+00:00,48.19624819624994 -2024-10-30 05:00:00+00:00,31.46067415730387 -2024-10-30 06:00:00+00:00,30.58321479374304 -2024-10-30 07:00:00+00:00,43.33868378812232 -2024-10-30 08:00:00+00:00,23.96694214875997 -2024-10-30 09:00:00+00:00,35.81395348837147 -2024-10-30 10:00:00+00:00,33.1896551724131 -2024-10-30 11:00:00+00:00,38.896189224704685 -2024-10-30 12:00:00+00:00,52.8935185185183 -2024-10-30 13:00:00+00:00,42.36176194939112 -2024-10-30 14:00:00+00:00,50.20508613617701 -2024-10-30 15:00:00+00:00,48.8427773343976 -2024-10-30 16:00:00+00:00,45.39605950944948 -2024-10-30 17:00:00+00:00,47.92944785276066 -2024-10-30 18:00:00+00:00,47.78931180315246 -2024-10-30 19:00:00+00:00,51.42292490118584 -2024-10-30 20:00:00+00:00,52.58487654320965 -2024-10-30 21:00:00+00:00,50.09574875526664 -2024-10-30 22:00:00+00:00,60.27649769585255 -2024-10-30 23:00:00+00:00,54.48275862069012 -2024-10-31 00:00:00+00:00,64.5968489341985 -2024-10-31 01:00:00+00:00,61.17876278616699 -2024-10-31 02:00:00+00:00,51.37513751375094 -2024-10-31 03:00:00+00:00,53.12855517633641 -2024-10-31 04:00:00+00:00,39.10828025477641 -2024-10-31 05:00:00+00:00,39.715394566623644 -2024-10-31 06:00:00+00:00,28.745318352059243 -2024-10-31 07:00:00+00:00,26.18816682832184 -2024-10-31 08:00:00+00:00,30.849613811903865 -2024-10-31 09:00:00+00:00,33.826086956521635 -2024-10-31 10:00:00+00:00,29.360210341805114 -2024-10-31 11:00:00+00:00,37.42880390561383 -2024-10-31 12:00:00+00:00,37.56635361372006 -2024-10-31 13:00:00+00:00,44.891059353868805 -2024-10-31 14:00:00+00:00,32.92196007259503 -2024-10-31 15:00:00+00:00,30.735343951202736 -2024-10-31 16:00:00+00:00,33.661016949152184 -2024-10-31 17:00:00+00:00,34.69601677148805 -2024-10-31 18:00:00+00:00,34.76890756302514 -2024-10-31 19:00:00+00:00,34.3360995850618 -2024-10-31 20:00:00+00:00,47.12692967409967 -2024-10-31 21:00:00+00:00,45.9684487291848 -2024-10-31 22:00:00+00:00,42.120075046903615 -2024-10-31 23:00:00+00:00,36.005830903789615 -2024-11-01 00:00:00+00:00,39.25742574257377 -2024-11-01 01:00:00+00:00,33.8187702265365 -2024-11-01 02:00:00+00:00,40.22874191944274 -2024-11-01 03:00:00+00:00,35.16720604099255 -2024-11-01 04:00:00+00:00,46.68831168831241 -2024-11-01 05:00:00+00:00,56.661786237188636 -2024-11-01 06:00:00+00:00,48.382559774965074 -2024-11-01 07:00:00+00:00,64.20890937020026 -2024-11-01 08:00:00+00:00,73.22834645669226 -2024-11-01 09:00:00+00:00,82.50773993808059 -2024-11-01 10:00:00+00:00,74.36096049573891 -2024-11-01 11:00:00+00:00,73.9779874213827 -2024-11-01 12:00:00+00:00,49.29282346778452 -2024-11-01 13:00:00+00:00,60.0631768953069 -2024-11-01 14:00:00+00:00,66.4136622390894 -2024-11-01 15:00:00+00:00,65.93533487297935 -2024-11-01 16:00:00+00:00,62.08434712084306 -2024-11-01 17:00:00+00:00,60.46511627906982 -2024-11-01 18:00:00+00:00,60.144927536231855 -2024-11-01 19:00:00+00:00,59.31244560487373 -2024-11-01 20:00:00+00:00,63.740283493369816 -2024-11-03 22:00:00+00:00,47.95996920708249 -2024-11-03 23:00:00+00:00,43.47169811320803 -2024-11-04 00:00:00+00:00,37.16166788588143 -2024-11-04 01:00:00+00:00,34.87813250944035 -2024-11-04 02:00:00+00:00,35.34423994546718 -2024-11-04 03:00:00+00:00,43.68155012636882 -2024-11-04 04:00:00+00:00,35.31688437348842 -2024-11-04 05:00:00+00:00,17.975460122699502 -2024-11-04 06:00:00+00:00,28.693333333333484 -2024-11-04 07:00:00+00:00,30.65732758620743 -2024-11-04 08:00:00+00:00,28.630705394190528 -2024-11-04 09:00:00+00:00,24.195871339413884 -2024-11-04 10:00:00+00:00,23.094795539033953 -2024-11-04 11:00:00+00:00,19.604543542280453 -2024-11-04 12:00:00+00:00,34.74903474903465 -2024-11-04 13:00:00+00:00,38.18554587391062 -2024-11-04 14:00:00+00:00,42.76693455797914 -2024-11-04 15:00:00+00:00,56.25766871165669 -2024-11-04 16:00:00+00:00,56.36474908200735 -2024-11-04 17:00:00+00:00,58.73724489795931 -2024-11-04 18:00:00+00:00,57.95971410006519 -2024-11-04 19:00:00+00:00,59.28256765261222 -2024-11-04 20:00:00+00:00,50.115651503470104 -2024-11-04 21:00:00+00:00,48.28393135725387 -2024-11-04 22:00:00+00:00,51.28417564208807 -2024-11-04 23:00:00+00:00,66.98113207547239 -2024-11-05 00:00:00+00:00,71.65137614678932 -2024-11-05 01:00:00+00:00,92.75534441805154 -2024-11-05 02:00:00+00:00,86.96369636963618 -2024-11-05 03:00:00+00:00,88.888888888888 -2024-11-05 04:00:00+00:00,91.28205128205006 -2024-11-05 05:00:00+00:00,83.7209302325563 -2024-11-05 06:00:00+00:00,73.80607814761164 -2024-11-05 07:00:00+00:00,67.37120211360592 -2024-11-05 08:00:00+00:00,57.79467680608261 -2024-11-05 09:00:00+00:00,52.6912181303102 -2024-11-05 10:00:00+00:00,56.90322580645101 -2024-11-05 11:00:00+00:00,51.39860139860135 -2024-11-05 12:00:00+00:00,58.835546475995116 -2024-11-05 13:00:00+00:00,39.13043478260893 -2024-11-05 14:00:00+00:00,32.47058823529527 -2024-11-05 15:00:00+00:00,42.20867208672166 -2024-11-05 16:00:00+00:00,40.4808317089023 -2024-11-05 17:00:00+00:00,29.206161137442066 -2024-11-05 18:00:00+00:00,23.79032258064639 -2024-11-05 19:00:00+00:00,22.944444444445764 -2024-11-05 20:00:00+00:00,27.207107162688374 -2024-11-05 21:00:00+00:00,31.91606847045891 -2024-11-05 22:00:00+00:00,33.314121037464986 -2024-11-05 23:00:00+00:00,30.40504997369908 -2024-11-06 00:00:00+00:00,59.957627118643856 -2024-11-06 01:00:00+00:00,62.01117318435764 -2024-11-06 02:00:00+00:00,70.8917954815697 -2024-11-06 03:00:00+00:00,73.20726915520662 -2024-11-06 04:00:00+00:00,70.32318943146949 -2024-11-06 05:00:00+00:00,70.17543859649112 -2024-11-06 06:00:00+00:00,73.48501914845698 -2024-11-06 07:00:00+00:00,76.42924086223056 -2024-11-06 08:00:00+00:00,78.07563427477214 -2024-11-06 09:00:00+00:00,80.46968607716224 -2024-11-06 10:00:00+00:00,80.0634455832112 -2024-11-06 11:00:00+00:00,80.70382616910709 -2024-11-06 12:00:00+00:00,81.70897552130518 -2024-11-06 13:00:00+00:00,82.87356321839067 -2024-11-06 14:00:00+00:00,73.72969236087138 -2024-11-06 15:00:00+00:00,74.16723317471146 -2024-11-06 16:00:00+00:00,63.01703163017037 -2024-11-06 17:00:00+00:00,67.85009861932946 -2024-11-06 18:00:00+00:00,73.11370882040458 -2024-11-06 19:00:00+00:00,70.44392523364533 -2024-11-06 20:00:00+00:00,66.8414154652695 -2024-11-06 21:00:00+00:00,73.14439946019007 -2024-11-06 22:00:00+00:00,70.2072538860121 -2024-11-06 23:00:00+00:00,59.44645006016956 -2024-11-07 00:00:00+00:00,65.18134715025928 -2024-11-07 01:00:00+00:00,58.28635851183836 -2024-11-07 02:00:00+00:00,50.9638554216871 -2024-11-07 03:00:00+00:00,50.53763440860219 -2024-11-07 04:00:00+00:00,46.92179700499111 -2024-11-07 05:00:00+00:00,40.9663865546211 -2024-11-07 06:00:00+00:00,31.425300515168374 -2024-11-07 07:00:00+00:00,30.91118800461291 -2024-11-07 08:00:00+00:00,37.377690802347985 -2024-11-07 09:00:00+00:00,34.55790784557847 -2024-11-07 10:00:00+00:00,32.62820512820478 -2024-11-07 11:00:00+00:00,31.930051813471536 -2024-11-07 12:00:00+00:00,28.235967926689142 -2024-11-07 13:00:00+00:00,27.465181058495304 -2024-11-07 14:00:00+00:00,12.375138734739764 -2024-11-07 15:00:00+00:00,11.172344689379202 -2024-11-07 16:00:00+00:00,18.863419293218996 -2024-11-07 17:00:00+00:00,18.85441527446325 -2024-11-07 18:00:00+00:00,19.819367787255672 -2024-11-07 19:00:00+00:00,26.23711340206225 -2024-11-07 20:00:00+00:00,24.238095238095667 -2024-11-07 21:00:00+00:00,23.802681992337583 -2024-11-07 22:00:00+00:00,23.5463719365692 -2024-11-07 23:00:00+00:00,32.58426966292204 -2024-11-08 00:00:00+00:00,29.854147675478387 -2024-11-08 01:00:00+00:00,27.767612076852572 -2024-11-08 02:00:00+00:00,33.42022940563079 -2024-11-08 03:00:00+00:00,32.521562658548916 -2024-11-08 04:00:00+00:00,36.2146892655366 -2024-11-08 05:00:00+00:00,45.057034220532046 -2024-11-08 06:00:00+00:00,37.223756906077 -2024-11-08 07:00:00+00:00,37.07015130673968 -2024-11-08 08:00:00+00:00,31.705882352941174 -2024-11-08 09:00:00+00:00,25.664251207729222 -2024-11-08 10:00:00+00:00,27.8688524590157 -2024-11-08 11:00:00+00:00,35.897435897435486 -2024-11-08 12:00:00+00:00,33.755760368663445 -2024-11-08 13:00:00+00:00,38.46976993044343 -2024-11-08 14:00:00+00:00,38.71836295099617 -2024-11-08 15:00:00+00:00,34.07582938388579 -2024-11-08 16:00:00+00:00,38.04008908685912 -2024-11-08 17:00:00+00:00,46.03413654618493 -2024-11-08 18:00:00+00:00,48.92638036809809 -2024-11-08 19:00:00+00:00,46.586134453781526 -2024-11-08 20:00:00+00:00,43.824110671936594 -2024-11-08 21:00:00+00:00,49.95049504950542 -2024-11-10 22:00:00+00:00,59.382022471910346 -2024-11-10 23:00:00+00:00,66.23578076525325 -2024-11-11 00:00:00+00:00,73.4171097148384 -2024-11-11 01:00:00+00:00,70.99156118143529 -2024-11-11 02:00:00+00:00,75.1984126984126 -2024-11-11 03:00:00+00:00,70.6572769953053 -2024-11-11 04:00:00+00:00,73.78048780487734 -2024-11-11 05:00:00+00:00,85.4300385109111 -2024-11-11 06:00:00+00:00,76.59854976928209 -2024-11-11 07:00:00+00:00,79.04368358913824 -2024-11-11 08:00:00+00:00,80.03374578177775 -2024-11-11 09:00:00+00:00,74.97365648050604 -2024-11-11 10:00:00+00:00,82.6111111111116 -2024-11-11 11:00:00+00:00,82.07331042382637 -2024-11-11 12:00:00+00:00,81.92840646651308 -2024-11-11 13:00:00+00:00,78.15565729234768 -2024-11-11 14:00:00+00:00,75.54904831625184 -2024-11-11 15:00:00+00:00,74.44529456771184 -2024-11-11 16:00:00+00:00,68.39863713799082 -2024-11-11 17:00:00+00:00,68.34470989761094 -2024-11-11 18:00:00+00:00,60.44843049327418 -2024-11-11 19:00:00+00:00,60.72072072072112 -2024-11-11 20:00:00+00:00,61.27272727272719 -2024-11-11 21:00:00+00:00,54.87288135593295 -2024-11-11 22:00:00+00:00,48.1751824817517 -2024-11-11 23:00:00+00:00,44.39461883408082 -2024-11-12 00:00:00+00:00,53.601496725912114 -2024-11-12 01:00:00+00:00,58.493723849372756 -2024-11-12 02:00:00+00:00,50.76335877862636 -2024-11-12 03:00:00+00:00,46.08454608454605 -2024-11-12 04:00:00+00:00,38.76478318002558 -2024-11-12 05:00:00+00:00,42.39802224969154 -2024-11-12 06:00:00+00:00,48.85714285714228 -2024-11-12 07:00:00+00:00,48.385236447520704 -2024-11-12 08:00:00+00:00,53.67770915216164 -2024-11-12 09:00:00+00:00,58.91920251836299 -2024-11-12 10:00:00+00:00,60.900216919739975 -2024-11-12 11:00:00+00:00,59.58520179372222 -2024-11-12 12:00:00+00:00,59.630459126539584 -2024-11-12 13:00:00+00:00,72.75624004248526 -2024-11-12 14:00:00+00:00,69.3731343283581 -2024-11-12 15:00:00+00:00,67.67485822306182 -2024-11-12 16:00:00+00:00,78.0722891566262 -2024-11-12 17:00:00+00:00,86.44286636539816 -2024-11-12 18:00:00+00:00,92.34482758620753 -2024-11-12 19:00:00+00:00,91.82019159911626 -2024-11-12 20:00:00+00:00,79.36624907885032 -2024-11-12 21:00:00+00:00,79.5321637426899 -2024-11-12 22:00:00+00:00,72.40865026099908 -2024-11-12 23:00:00+00:00,71.42857142857143 -2024-11-13 00:00:00+00:00,79.23280423280322 -2024-11-13 01:00:00+00:00,64.61199779856815 -2024-11-13 02:00:00+00:00,66.9917864476382 -2024-11-13 03:00:00+00:00,62.35362997658031 -2024-11-13 04:00:00+00:00,62.638001162114676 -2024-11-13 05:00:00+00:00,61.7261904761902 -2024-11-13 06:00:00+00:00,59.50881612090627 -2024-11-13 07:00:00+00:00,60.1363918164906 -2024-11-13 08:00:00+00:00,58.363417569193174 -2024-11-13 09:00:00+00:00,54.12166003411048 -2024-11-13 10:00:00+00:00,62.226169330965234 -2024-11-13 11:00:00+00:00,55.237045203969004 -2024-11-13 12:00:00+00:00,60.567995630802756 -2024-11-13 13:00:00+00:00,46.4941176470588 -2024-11-13 14:00:00+00:00,47.796143250688615 -2024-11-13 15:00:00+00:00,59.55955955955973 -2024-11-13 16:00:00+00:00,62.592592592592375 -2024-11-13 17:00:00+00:00,63.685393258426735 -2024-11-13 18:00:00+00:00,65.77721304531994 -2024-11-13 19:00:00+00:00,63.42710997442443 -2024-11-13 20:00:00+00:00,62.085726911179755 -2024-11-13 21:00:00+00:00,57.85374296841201 -2024-11-13 22:00:00+00:00,58.97662108513491 -2024-11-13 23:00:00+00:00,62.18097447795787 -2024-11-14 00:00:00+00:00,65.46610169491512 -2024-11-14 01:00:00+00:00,72.51286449399687 -2024-11-14 02:00:00+00:00,72.89640591966189 -2024-11-14 03:00:00+00:00,85.60079443892778 -2024-11-14 04:00:00+00:00,83.87993329627595 -2024-11-14 05:00:00+00:00,80.7121661721072 -2024-11-14 06:00:00+00:00,71.48621385339692 -2024-11-14 07:00:00+00:00,64.70180305131807 -2024-11-14 08:00:00+00:00,62.84671532846752 -2024-11-14 09:00:00+00:00,69.02834008097275 -2024-11-14 10:00:00+00:00,65.54734721289556 -2024-11-14 11:00:00+00:00,64.76443264764404 -2024-11-14 12:00:00+00:00,69.07419566644748 -2024-11-14 13:00:00+00:00,69.49481865284973 -2024-11-14 14:00:00+00:00,52.59917920656712 -2024-11-14 15:00:00+00:00,52.857142857143025 -2024-11-14 16:00:00+00:00,48.590504451039216 -2024-11-14 17:00:00+00:00,43.32010582010588 -2024-11-14 18:00:00+00:00,44.70967741935529 -2024-11-14 19:00:00+00:00,46.864899806076984 -2024-11-14 20:00:00+00:00,60.383561643835264 -2024-11-14 21:00:00+00:00,62.47165532879805 -2024-11-14 22:00:00+00:00,60.54827175208539 -2024-11-14 23:00:00+00:00,60.96698113207506 -2024-11-15 00:00:00+00:00,66.09035136642487 -2024-11-15 01:00:00+00:00,68.18181818181833 -2024-11-15 02:00:00+00:00,60.833790455293716 -2024-11-15 03:00:00+00:00,62.69592476489066 -2024-11-15 04:00:00+00:00,65.14657980455972 -2024-11-15 05:00:00+00:00,64.07386681589189 -2024-11-15 06:00:00+00:00,53.06026365348386 -2024-11-15 07:00:00+00:00,50.76576576576558 -2024-11-15 08:00:00+00:00,41.99227136109942 -2024-11-15 09:00:00+00:00,38.62801143323778 -2024-11-15 10:00:00+00:00,26.676043131739647 -2024-11-15 11:00:00+00:00,32.92682926829322 -2024-11-15 12:00:00+00:00,30.91216216216266 -2024-11-15 13:00:00+00:00,24.45724412937585 -2024-11-15 14:00:00+00:00,26.98072805139158 -2024-11-15 15:00:00+00:00,22.012578616352073 -2024-11-15 16:00:00+00:00,20.63544055027829 -2024-11-15 17:00:00+00:00,15.826674861708284 -2024-11-15 18:00:00+00:00,14.875794338532287 -2024-11-15 19:00:00+00:00,19.370725034199666 -2024-11-15 20:00:00+00:00,23.177237700059422 -2024-11-15 21:00:00+00:00,26.93298969072194 -2024-11-17 22:00:00+00:00,34.69785575048736 -2024-11-17 23:00:00+00:00,37.859531772575295 -2024-11-18 00:00:00+00:00,34.31342831160967 -2024-11-18 01:00:00+00:00,37.02412089508864 -2024-11-18 02:00:00+00:00,40.539764570772455 -2024-11-18 03:00:00+00:00,40.377466399771244 -2024-11-18 04:00:00+00:00,36.133170433720544 -2024-11-18 05:00:00+00:00,43.46069066862619 -2024-11-18 06:00:00+00:00,49.74768713204373 -2024-11-18 07:00:00+00:00,56.87499999999989 -2024-11-18 08:00:00+00:00,74.41860465116272 -2024-11-18 09:00:00+00:00,64.05622489959792 -2024-11-18 10:00:00+00:00,66.57329598506024 -2024-11-18 11:00:00+00:00,66.62004662004595 -2024-11-18 12:00:00+00:00,66.29001883239127 -2024-11-18 13:00:00+00:00,55.445544554455445 -2024-11-18 14:00:00+00:00,62.3087621696797 -2024-11-18 15:00:00+00:00,59.75247524752442 -2024-11-18 16:00:00+00:00,51.468464130958225 -2024-11-18 17:00:00+00:00,51.123864179818156 -2024-11-18 18:00:00+00:00,49.55957348168742 -2024-11-18 19:00:00+00:00,53.25497287522601 -2024-11-18 20:00:00+00:00,50.12765957446808 -2024-11-18 21:00:00+00:00,52.37309120924481 -2024-11-18 22:00:00+00:00,42.64351181862052 -2024-11-18 23:00:00+00:00,45.80310880829087 -2024-11-19 00:00:00+00:00,33.93316195372792 -2024-11-19 01:00:00+00:00,28.059562587250852 -2024-11-19 02:00:00+00:00,21.879737241031435 -2024-11-19 03:00:00+00:00,27.83882783882831 -2024-11-19 04:00:00+00:00,39.21126760563356 -2024-11-19 05:00:00+00:00,32.01008191556423 -2024-11-19 06:00:00+00:00,40.270270270270025 -2024-11-19 07:00:00+00:00,43.78571428571407 -2024-11-19 08:00:00+00:00,29.12114014251793 -2024-11-19 09:00:00+00:00,25.771144278606073 -2024-11-19 10:00:00+00:00,28.328008519701513 -2024-11-19 11:00:00+00:00,35.59808612440145 -2024-11-19 12:00:00+00:00,34.42850532160993 -2024-11-19 13:00:00+00:00,28.28897338402969 -2024-11-19 14:00:00+00:00,44.54545454545428 -2024-11-19 15:00:00+00:00,47.249999999999545 -2024-11-19 16:00:00+00:00,53.03656597774248 -2024-11-19 17:00:00+00:00,57.79999999999989 -2024-11-19 18:00:00+00:00,52.487488960847955 -2024-11-19 19:00:00+00:00,53.88571428571416 -2024-11-19 20:00:00+00:00,52.58847616262054 -2024-11-19 21:00:00+00:00,51.848617176128236 -2024-11-19 22:00:00+00:00,65.2859237536657 -2024-11-19 23:00:00+00:00,66.77192982456157 -2024-11-20 00:00:00+00:00,68.81791241356599 -2024-11-20 01:00:00+00:00,62.02707393266248 -2024-11-20 02:00:00+00:00,65.55090655509062 -2024-11-20 03:00:00+00:00,80.2202283849922 -2024-11-20 04:00:00+00:00,75.40567951318509 -2024-11-20 05:00:00+00:00,80.45634920634998 -2024-11-20 06:00:00+00:00,78.11111111111184 -2024-11-20 07:00:00+00:00,77.09302325581451 -2024-11-20 08:00:00+00:00,82.51400124455584 -2024-11-20 09:00:00+00:00,82.67570900123397 -2024-11-20 10:00:00+00:00,82.82890673255262 -2024-11-20 11:00:00+00:00,85.36439665472022 -2024-11-20 12:00:00+00:00,81.47092360319296 -2024-11-20 13:00:00+00:00,80.42168674698826 -2024-11-20 14:00:00+00:00,71.36563876652029 -2024-11-20 15:00:00+00:00,75.00000000000047 -2024-11-20 16:00:00+00:00,66.43267389916988 -2024-11-20 17:00:00+00:00,58.02919708029225 -2024-11-20 18:00:00+00:00,58.60827834433131 -2024-11-20 19:00:00+00:00,55.74085952533683 -2024-11-20 20:00:00+00:00,53.93858477970613 -2024-11-20 21:00:00+00:00,40.865384615385544 -2024-11-20 22:00:00+00:00,39.05053598774998 -2024-11-20 23:00:00+00:00,30.94098883572562 -2024-11-21 00:00:00+00:00,26.740179186767705 -2024-11-21 01:00:00+00:00,21.459227467811587 -2024-11-21 02:00:00+00:00,22.658610271903967 -2024-11-21 03:00:00+00:00,19.530658591976135 -2024-11-21 04:00:00+00:00,29.425113464447875 -2024-11-21 05:00:00+00:00,37.64450867052015 -2024-11-21 06:00:00+00:00,31.310096153846757 -2024-11-21 07:00:00+00:00,40.48632218845043 -2024-11-21 08:00:00+00:00,27.364185110664152 -2024-11-21 09:00:00+00:00,25.785536159601534 -2024-11-21 10:00:00+00:00,21.72540768016846 -2024-11-21 11:00:00+00:00,27.492447129909763 -2024-11-21 12:00:00+00:00,27.34101151727637 -2024-11-21 13:00:00+00:00,25.8034026465033 -2024-11-21 14:00:00+00:00,26.389560173997523 -2024-11-21 15:00:00+00:00,34.04255319148979 -2024-11-21 16:00:00+00:00,43.83452665075589 -2024-11-21 17:00:00+00:00,40.99702380952433 -2024-11-21 18:00:00+00:00,40.51012753188305 -2024-11-21 19:00:00+00:00,36.7726920093098 -2024-11-21 20:00:00+00:00,44.052044609665465 -2024-11-21 21:00:00+00:00,41.1246943765282 -2024-11-21 22:00:00+00:00,52.23602484472056 -2024-11-21 23:00:00+00:00,43.80208333333339 -2024-11-22 00:00:00+00:00,48.32375478927221 -2024-11-22 01:00:00+00:00,47.02994599901795 -2024-11-22 02:00:00+00:00,48.75318066157744 -2024-11-22 03:00:00+00:00,50.368033648791005 -2024-11-22 04:00:00+00:00,58.5519412381951 -2024-11-22 05:00:00+00:00,59.775967413441755 -2024-11-22 06:00:00+00:00,56.83060109289624 -2024-11-22 07:00:00+00:00,58.00334634690398 -2024-11-22 08:00:00+00:00,49.00000000000046 -2024-11-22 09:00:00+00:00,49.78609625668424 -2024-11-22 10:00:00+00:00,45.637254901960894 -2024-11-22 11:00:00+00:00,44.339622641509244 -2024-11-22 12:00:00+00:00,49.6306555863338 -2024-11-22 13:00:00+00:00,52.85152409046253 -2024-11-22 14:00:00+00:00,61.09533468559855 -2024-11-22 15:00:00+00:00,60.058309037901154 -2024-11-22 16:00:00+00:00,56.68238993710711 -2024-11-22 17:00:00+00:00,60.00000000000023 -2024-11-22 18:00:00+00:00,56.95595290013136 -2024-11-22 19:00:00+00:00,52.36486486486525 -2024-11-22 20:00:00+00:00,48.2704402515722 -2024-11-22 21:00:00+00:00,50.88397790055282 -2024-11-24 22:00:00+00:00,43.85714285714244 -2024-11-24 23:00:00+00:00,42.054794520547425 -2024-11-25 00:00:00+00:00,47.31027857829019 -2024-11-25 01:00:00+00:00,39.16500994035747 -2024-11-25 02:00:00+00:00,34.31623931623956 -2024-11-25 03:00:00+00:00,42.826086956521415 -2024-11-25 04:00:00+00:00,28.726287262872702 -2024-11-25 05:00:00+00:00,34.21710855427709 -2024-11-25 06:00:00+00:00,38.28418230562977 -2024-11-25 07:00:00+00:00,44.822627037391975 -2024-11-25 08:00:00+00:00,48.94760412001799 -2024-11-25 09:00:00+00:00,42.25582345729494 -2024-11-25 10:00:00+00:00,41.39361260887626 -2024-11-25 11:00:00+00:00,44.74337748344396 -2024-11-25 12:00:00+00:00,48.75958502480817 -2024-11-25 13:00:00+00:00,45.30595138306816 -2024-11-25 14:00:00+00:00,40.679999999999836 -2024-11-25 15:00:00+00:00,61.1962616822434 -2024-11-25 16:00:00+00:00,59.657434402332385 -2024-11-25 17:00:00+00:00,57.24217844727694 -2024-11-25 18:00:00+00:00,50.282912108638534 -2024-11-25 19:00:00+00:00,47.427203829278184 -2024-11-25 20:00:00+00:00,46.854838709677246 -2024-11-25 21:00:00+00:00,41.96389255834472 -2024-11-25 22:00:00+00:00,36.56853725850945 -2024-11-25 23:00:00+00:00,49.10262310170234 -2024-11-26 00:00:00+00:00,41.991341991341685 -2024-11-26 01:00:00+00:00,40.898155573375846 -2024-11-26 02:00:00+00:00,45.19273371732411 -2024-11-26 03:00:00+00:00,45.8221024258758 -2024-11-26 04:00:00+00:00,52.14152700186249 -2024-11-26 05:00:00+00:00,30.28467595396711 -2024-11-26 06:00:00+00:00,43.71727748691084 -2024-11-26 07:00:00+00:00,42.52631578947404 -2024-11-26 08:00:00+00:00,45.987478656800945 -2024-11-26 09:00:00+00:00,44.01805869074469 -2024-11-26 10:00:00+00:00,40.321743642968976 -2024-11-26 11:00:00+00:00,39.63254593175858 -2024-11-26 12:00:00+00:00,31.910397295013112 -2024-11-26 13:00:00+00:00,28.96825396825406 -2024-11-26 14:00:00+00:00,37.569060773480814 -2024-11-26 15:00:00+00:00,35.38767395626279 -2024-11-26 16:00:00+00:00,37.436419125127394 -2024-11-26 17:00:00+00:00,39.02439024390292 -2024-11-26 18:00:00+00:00,37.87142085359231 -2024-11-26 19:00:00+00:00,34.910358565737056 -2024-11-26 20:00:00+00:00,21.279069767441385 -2024-11-26 21:00:00+00:00,23.42497136311549 -2024-11-26 22:00:00+00:00,24.016441573693356 -2024-11-26 23:00:00+00:00,22.64673311184916 -2024-11-27 00:00:00+00:00,24.46172248803782 -2024-11-27 01:00:00+00:00,19.634025717111427 -2024-11-27 02:00:00+00:00,30.41009463722378 -2024-11-27 03:00:00+00:00,19.29824561403602 -2024-11-27 04:00:00+00:00,13.207547169811875 -2024-11-27 05:00:00+00:00,19.941520467836312 -2024-11-27 06:00:00+00:00,15.523996082272404 -2024-11-27 07:00:00+00:00,15.771144278607181 -2024-11-27 08:00:00+00:00,12.191582002903175 -2024-11-27 09:00:00+00:00,11.759216052263469 -2024-11-27 10:00:00+00:00,11.612903225806804 -2024-11-27 11:00:00+00:00,13.40857787810367 -2024-11-27 12:00:00+00:00,13.549270072992528 -2024-11-27 13:00:00+00:00,13.512283894449482 -2024-11-27 14:00:00+00:00,15.183009489380453 -2024-11-27 15:00:00+00:00,15.849056603773235 -2024-11-27 16:00:00+00:00,10.308008213551616 -2024-11-27 17:00:00+00:00,13.388214904678406 -2024-11-27 18:00:00+00:00,17.909131010145046 -2024-11-27 19:00:00+00:00,19.367417677642393 -2024-11-27 20:00:00+00:00,25.568743818001195 -2024-11-27 21:00:00+00:00,28.198433420364594 -2024-11-27 22:00:00+00:00,27.706516162133596 -2024-11-27 23:00:00+00:00,46.65653495440772 -2024-11-28 00:00:00+00:00,56.41139804096162 -2024-11-28 01:00:00+00:00,48.81987577639771 -2024-11-28 02:00:00+00:00,49.17627677100506 -2024-11-28 03:00:00+00:00,55.98047192839707 -2024-11-28 04:00:00+00:00,55.24793388429825 -2024-11-28 05:00:00+00:00,59.82102908277445 -2024-11-28 06:00:00+00:00,72.93478260869722 -2024-11-28 07:00:00+00:00,74.98744349573252 -2024-11-28 08:00:00+00:00,74.75924987329113 -2024-11-28 09:00:00+00:00,73.2832618025767 -2024-11-28 10:00:00+00:00,70.74235807860482 -2024-11-28 11:00:00+00:00,69.52484980884905 -2024-11-28 12:00:00+00:00,73.03499713138416 -2024-11-28 13:00:00+00:00,57.32647814910011 -2024-11-28 14:00:00+00:00,43.50597609561776 -2024-11-28 15:00:00+00:00,54.59999999999949 -2024-11-28 16:00:00+00:00,51.85546875000064 -2024-11-28 17:00:00+00:00,42.27166276346703 -2024-11-28 18:00:00+00:00,44.90481522956265 -2024-11-28 19:00:00+00:00,47.56820877817326 -2024-11-28 20:00:00+00:00,44.544431946006156 -2024-11-28 21:00:00+00:00,37.03703703703664 -2024-11-28 22:00:00+00:00,29.224376731300566 -2024-11-28 23:00:00+00:00,15.255905511811264 -2024-11-29 00:00:00+00:00,9.797724399494257 -2024-11-29 01:00:00+00:00,7.048658481127887 -2024-11-29 02:00:00+00:00,15.950659293917496 -2024-11-29 03:00:00+00:00,16.891891891891902 -2024-11-29 04:00:00+00:00,16.578249336870016 -2024-11-29 05:00:00+00:00,19.82135261590848 -2024-11-29 06:00:00+00:00,19.304059652030034 -2024-11-29 07:00:00+00:00,18.869492934330893 -2024-11-29 08:00:00+00:00,23.63067292644773 -2024-11-29 09:00:00+00:00,23.70486656200967 -2024-11-29 10:00:00+00:00,22.395253985910514 -2024-11-29 11:00:00+00:00,21.727748691099833 -2024-11-29 12:00:00+00:00,25.090252707581655 -2024-11-29 13:00:00+00:00,26.658995013425653 -2024-11-29 14:00:00+00:00,34.202755905512205 -2024-11-29 15:00:00+00:00,57.256582976117116 -2024-11-29 16:00:00+00:00,57.72259236826121 -2024-11-29 17:00:00+00:00,39.64226289517513 -2024-11-29 18:00:00+00:00,42.27676682183664 -2024-11-29 19:00:00+00:00,39.23941227311996 -2024-11-29 20:00:00+00:00,42.17294900221729 -2024-11-29 21:00:00+00:00,44.253859348199015 -2024-12-01 22:00:00+00:00,37.30615861763452 -2024-12-01 23:00:00+00:00,44.08212560386453 -2024-12-02 00:00:00+00:00,54.65293668954998 -2024-12-02 01:00:00+00:00,58.58585858585856 -2024-12-02 02:00:00+00:00,57.8069552874379 -2024-12-02 03:00:00+00:00,60.37805782060798 -2024-12-02 04:00:00+00:00,61.750643618977776 -2024-12-02 05:00:00+00:00,60.36585365853639 -2024-12-02 06:00:00+00:00,48.45212383009334 -2024-12-02 07:00:00+00:00,65.91576885406522 -2024-12-02 08:00:00+00:00,64.0394088669951 -2024-12-02 09:00:00+00:00,67.51652502360766 -2024-12-02 10:00:00+00:00,61.67185415740344 -2024-12-02 11:00:00+00:00,59.607485166591054 -2024-12-02 12:00:00+00:00,62.4581539933041 -2024-12-02 13:00:00+00:00,55.5966209081313 -2024-12-02 14:00:00+00:00,43.57099329677093 -2024-12-02 15:00:00+00:00,26.898954703833866 -2024-12-02 16:00:00+00:00,16.422435573522506 -2024-12-02 17:00:00+00:00,29.246544806064165 -2024-12-02 18:00:00+00:00,29.435304579813206 -2024-12-02 19:00:00+00:00,23.17346481398532 -2024-12-02 20:00:00+00:00,28.694714131608364 -2024-12-02 21:00:00+00:00,31.833150384193914 -2024-12-02 22:00:00+00:00,31.659388646289074 -2024-12-02 23:00:00+00:00,25.951557093426032 -2024-12-03 00:00:00+00:00,42.09702660406905 -2024-12-03 01:00:00+00:00,42.75934702474983 -2024-12-03 02:00:00+00:00,42.82700421940957 -2024-12-03 03:00:00+00:00,50.314161430642265 -2024-12-03 04:00:00+00:00,53.70643102601821 -2024-12-03 05:00:00+00:00,53.81210034431804 -2024-12-03 06:00:00+00:00,77.9246530072702 -2024-12-03 07:00:00+00:00,65.99221789883168 -2024-12-03 08:00:00+00:00,60.09104704097074 -2024-12-03 09:00:00+00:00,61.252900232019726 -2024-12-03 10:00:00+00:00,66.82119205298088 -2024-12-03 11:00:00+00:00,54.14084507042234 -2024-12-03 12:00:00+00:00,53.89792484576593 -2024-12-03 13:00:00+00:00,37.204800619434586 -2024-12-03 14:00:00+00:00,26.78492239467822 -2024-12-03 15:00:00+00:00,35.98293912369084 -2024-12-03 16:00:00+00:00,35.77486507324562 -2024-12-03 17:00:00+00:00,31.97223356472034 -2024-12-03 18:00:00+00:00,28.471138845553824 -2024-12-03 19:00:00+00:00,41.105769230769056 -2024-12-03 20:00:00+00:00,38.611111111110766 -2024-12-03 21:00:00+00:00,42.92080905039441 -2024-12-03 22:00:00+00:00,44.36992587363228 -2024-12-03 23:00:00+00:00,46.282798833819065 -2024-12-04 00:00:00+00:00,46.82539682539649 -2024-12-04 01:00:00+00:00,53.80023875845617 -2024-12-04 02:00:00+00:00,51.7809268479508 -2024-12-04 03:00:00+00:00,77.97833935018049 -2024-12-04 04:00:00+00:00,79.51621204323214 -2024-12-04 05:00:00+00:00,77.16580608146889 -2024-12-04 06:00:00+00:00,74.39159292035421 -2024-12-04 07:00:00+00:00,77.95238095238088 -2024-12-04 08:00:00+00:00,85.16096579476903 -2024-12-04 09:00:00+00:00,82.71821909783313 -2024-12-04 10:00:00+00:00,87.22955145118773 -2024-12-04 11:00:00+00:00,86.40449438202282 -2024-12-04 12:00:00+00:00,88.23529411764747 -2024-12-04 13:00:00+00:00,84.08772748483396 -2024-12-04 14:00:00+00:00,73.63896848137564 -2024-12-04 15:00:00+00:00,59.33014354066961 -2024-12-04 16:00:00+00:00,57.98908807482455 -2024-12-04 17:00:00+00:00,54.78547854785476 -2024-12-04 18:00:00+00:00,58.62589656474129 -2024-12-04 19:00:00+00:00,56.782334384857926 -2024-12-04 20:00:00+00:00,60.15873015873001 -2024-12-04 21:00:00+00:00,55.37777777777806 -2024-12-04 22:00:00+00:00,52.12439772229537 -2024-12-04 23:00:00+00:00,48.12529663027986 -2024-12-05 00:00:00+00:00,35.31292827775272 -2024-12-05 01:00:00+00:00,42.97221103503864 -2024-12-05 02:00:00+00:00,32.6267664172903 -2024-12-05 03:00:00+00:00,33.33333333333374 -2024-12-05 04:00:00+00:00,39.49243098842399 -2024-12-05 05:00:00+00:00,39.669051878354665 -2024-12-05 06:00:00+00:00,40.706746213859795 -2024-12-05 07:00:00+00:00,41.236162361623975 -2024-12-05 08:00:00+00:00,44.84848484848499 -2024-12-05 09:00:00+00:00,47.224523612262175 -2024-12-05 10:00:00+00:00,42.12193190815538 -2024-12-05 11:00:00+00:00,40.52074857607805 -2024-12-05 12:00:00+00:00,47.455032529659235 -2024-12-05 13:00:00+00:00,51.086569291058176 -2024-12-05 14:00:00+00:00,55.11145272867057 -2024-12-05 15:00:00+00:00,44.22848076160263 -2024-12-05 16:00:00+00:00,47.14587737843572 -2024-12-05 17:00:00+00:00,46.71135316296645 -2024-12-05 18:00:00+00:00,44.93506493506469 -2024-12-05 19:00:00+00:00,52.21327967806828 -2024-12-05 20:00:00+00:00,57.90305584826176 -2024-12-05 21:00:00+00:00,58.05774278215277 -2024-12-05 22:00:00+00:00,46.29508196721308 -2024-12-05 23:00:00+00:00,43.517241379310704 -2024-12-06 00:00:00+00:00,49.25839188134249 -2024-12-06 01:00:00+00:00,45.61538461538459 -2024-12-06 02:00:00+00:00,27.48031496063051 -2024-12-06 03:00:00+00:00,17.324955116697154 -2024-12-06 04:00:00+00:00,26.599634369288097 -2024-12-06 05:00:00+00:00,32.51396648044731 -2024-12-06 06:00:00+00:00,31.630434782609925 -2024-12-06 07:00:00+00:00,48.14471243042582 -2024-12-06 08:00:00+00:00,57.90662650602404 -2024-12-06 09:00:00+00:00,69.7641172265895 -2024-12-06 10:00:00+00:00,68.33457804331606 -2024-12-06 11:00:00+00:00,64.91354466858706 -2024-12-06 12:00:00+00:00,61.25084976206599 -2024-12-06 13:00:00+00:00,39.42883463841537 -2024-12-06 14:00:00+00:00,39.6847473342601 -2024-12-06 15:00:00+00:00,46.17048896581584 -2024-12-06 16:00:00+00:00,49.12523020257868 -2024-12-06 17:00:00+00:00,51.78883071553218 -2024-12-06 18:00:00+00:00,50.27002700270028 -2024-12-06 19:00:00+00:00,50.795816280127255 -2024-12-06 20:00:00+00:00,52.26953673373841 -2024-12-06 21:00:00+00:00,48.71794871794905 -2024-12-08 22:00:00+00:00,39.56670467502903 -2024-12-08 23:00:00+00:00,29.46158499697573 -2024-12-09 00:00:00+00:00,28.613396004700775 -2024-12-09 01:00:00+00:00,32.47362250879341 -2024-12-09 02:00:00+00:00,34.49564134495721 -2024-12-09 03:00:00+00:00,67.0953912111448 -2024-12-09 04:00:00+00:00,61.73570019723786 -2024-12-09 05:00:00+00:00,55.55555555555556 -2024-12-09 06:00:00+00:00,67.8644763860348 -2024-12-09 07:00:00+00:00,69.00990099009776 -2024-12-09 08:00:00+00:00,70.41587901701115 -2024-12-09 09:00:00+00:00,71.36015325670348 -2024-12-09 10:00:00+00:00,73.17757009345668 -2024-12-09 11:00:00+00:00,71.94525904203209 -2024-12-09 12:00:00+00:00,80.36565977742214 -2024-12-09 13:00:00+00:00,88.83610451306313 -2024-12-09 14:00:00+00:00,92.82334384857788 -2024-12-09 15:00:00+00:00,92.96754250386152 -2024-12-09 16:00:00+00:00,94.15670650730286 -2024-12-09 17:00:00+00:00,94.22193040052402 -2024-12-09 18:00:00+00:00,96.0508701472541 -2024-12-09 19:00:00+00:00,93.74999999999952 -2024-12-09 20:00:00+00:00,91.60246533127841 -2024-12-09 21:00:00+00:00,89.54545454545394 -2024-12-09 22:00:00+00:00,89.13043478260805 -2024-12-09 23:00:00+00:00,90.55973266499588 -2024-12-10 00:00:00+00:00,90.68425391591096 -2024-12-10 01:00:00+00:00,81.45038167938932 -2024-12-10 02:00:00+00:00,68.9895470383279 -2024-12-10 03:00:00+00:00,58.354755784061595 -2024-12-10 04:00:00+00:00,58.53242320819188 -2024-12-10 05:00:00+00:00,46.50980392156862 -2024-12-10 06:00:00+00:00,49.406528189910226 -2024-12-10 07:00:00+00:00,57.13387806411084 -2024-12-10 08:00:00+00:00,61.27633209417646 -2024-12-10 09:00:00+00:00,61.04938271604986 -2024-12-10 10:00:00+00:00,61.54324828873639 -2024-12-10 11:00:00+00:00,64.29404900816772 -2024-12-10 12:00:00+00:00,65.20750426378626 -2024-12-10 13:00:00+00:00,58.45438698431134 -2024-12-10 14:00:00+00:00,60.540838852097195 -2024-12-10 15:00:00+00:00,70.48435923309789 -2024-12-10 16:00:00+00:00,71.89912506433302 -2024-12-10 17:00:00+00:00,77.78964228510333 -2024-12-10 18:00:00+00:00,69.64107676968993 -2024-12-10 19:00:00+00:00,77.30769230769113 -2024-12-10 20:00:00+00:00,73.07692307692187 -2024-12-10 21:00:00+00:00,66.69354838709538 -2024-12-10 22:00:00+00:00,62.93176074136473 -2024-12-10 23:00:00+00:00,59.85576923076764 -2024-12-11 00:00:00+00:00,55.08849557522113 -2024-12-11 01:00:00+00:00,50.0 -2024-12-11 02:00:00+00:00,38.30227743271282 -2024-12-11 03:00:00+00:00,45.372928176796265 -2024-12-11 04:00:00+00:00,39.263803680982036 -2024-12-11 05:00:00+00:00,34.599504541700824 -2024-12-11 06:00:00+00:00,37.34729493891881 -2024-12-11 07:00:00+00:00,30.79497907949859 -2024-12-11 08:00:00+00:00,35.728155339807074 -2024-12-11 09:00:00+00:00,68.0656054027977 -2024-12-11 10:00:00+00:00,65.47397769516776 -2024-12-11 11:00:00+00:00,63.56050069541042 -2024-12-11 12:00:00+00:00,65.97938144329866 -2024-12-11 13:00:00+00:00,59.140216954600476 -2024-12-11 14:00:00+00:00,57.95275590551167 -2024-12-11 15:00:00+00:00,63.31340133661625 -2024-12-11 16:00:00+00:00,66.61732050333063 -2024-12-11 17:00:00+00:00,67.23574282600794 -2024-12-11 18:00:00+00:00,69.30153321976147 -2024-12-11 19:00:00+00:00,66.12377850162882 -2024-12-11 20:00:00+00:00,64.81283422459855 -2024-12-11 21:00:00+00:00,64.37677053824378 -2024-12-11 22:00:00+00:00,64.03663261711853 -2024-12-11 23:00:00+00:00,39.21066119938525 -2024-12-12 00:00:00+00:00,39.412673879443716 -2024-12-12 01:00:00+00:00,36.342042755344316 -2024-12-12 02:00:00+00:00,42.83276450511934 -2024-12-12 03:00:00+00:00,51.43280632411045 -2024-12-12 04:00:00+00:00,51.45823035096382 -2024-12-12 05:00:00+00:00,50.80160320641306 -2024-12-12 06:00:00+00:00,53.65079365079365 -2024-12-12 07:00:00+00:00,52.07877461706758 -2024-12-12 08:00:00+00:00,44.86581096849453 -2024-12-12 09:00:00+00:00,46.53349001175036 -2024-12-12 10:00:00+00:00,42.649434571890474 -2024-12-12 11:00:00+00:00,42.53490870032202 -2024-12-12 12:00:00+00:00,46.14577871001615 -2024-12-12 13:00:00+00:00,44.31017119838904 -2024-12-12 14:00:00+00:00,51.4312529328948 -2024-12-12 15:00:00+00:00,57.84114052953177 -2024-12-12 16:00:00+00:00,43.402399127590556 -2024-12-12 17:00:00+00:00,47.70780856423161 -2024-12-12 18:00:00+00:00,57.023575638506706 -2024-12-12 19:00:00+00:00,51.25348189415004 -2024-12-12 20:00:00+00:00,54.77439664218218 -2024-12-12 21:00:00+00:00,52.07650273224024 -2024-12-12 22:00:00+00:00,52.07650273224105 -2024-12-12 23:00:00+00:00,51.892484914975796 -2024-12-13 00:00:00+00:00,63.61171366594391 -2024-12-13 01:00:00+00:00,66.42129105322806 -2024-12-13 02:00:00+00:00,67.38173817381717 -2024-12-13 03:00:00+00:00,77.5807473084233 -2024-12-13 04:00:00+00:00,74.92917847025562 -2024-12-13 05:00:00+00:00,71.18881118881174 -2024-12-13 06:00:00+00:00,72.61055634807435 -2024-12-13 07:00:00+00:00,70.46153846153913 -2024-12-13 08:00:00+00:00,73.53549276361214 -2024-12-13 09:00:00+00:00,76.5710799267852 -2024-12-13 10:00:00+00:00,75.60355781448601 -2024-12-13 11:00:00+00:00,78.50902737332538 -2024-12-13 12:00:00+00:00,73.98463227222854 -2024-12-13 13:00:00+00:00,68.02860061287001 -2024-12-13 14:00:00+00:00,69.1321499013803 -2024-12-13 15:00:00+00:00,71.96858124693195 -2024-12-13 16:00:00+00:00,71.21975806451636 -2024-12-13 17:00:00+00:00,69.29867582148113 -2024-12-13 18:00:00+00:00,68.69999999999976 -2024-12-13 19:00:00+00:00,70.31729785056243 -2024-12-13 20:00:00+00:00,76.16407982261725 -2024-12-13 21:00:00+00:00,74.66666666666713 -2024-12-15 22:00:00+00:00,66.45068394528471 -2024-12-15 23:00:00+00:00,51.883166794773565 -2024-12-16 00:00:00+00:00,60.727728983689474 -2024-12-16 01:00:00+00:00,59.1383812010447 -2024-12-16 02:00:00+00:00,65.22678185745198 -2024-12-16 03:00:00+00:00,69.90740740740915 -2024-12-16 04:00:00+00:00,56.75675675675754 -2024-12-16 05:00:00+00:00,49.95417048579263 -2024-12-16 06:00:00+00:00,45.16765285995968 -2024-12-16 07:00:00+00:00,42.565055762081506 -2024-12-16 08:00:00+00:00,49.959514170041444 -2024-12-16 09:00:00+00:00,54.43609022556493 -2024-12-16 10:00:00+00:00,56.61375661375621 -2024-12-16 11:00:00+00:00,55.85384041759954 -2024-12-16 12:00:00+00:00,64.54659949622216 -2024-12-16 13:00:00+00:00,69.16329284750394 -2024-12-16 14:00:00+00:00,67.51954513148618 -2024-12-16 15:00:00+00:00,62.06395348837335 -2024-12-16 16:00:00+00:00,60.65340909090858 -2024-12-16 17:00:00+00:00,62.244897959183234 -2024-12-16 18:00:00+00:00,61.30653266331673 -2024-12-16 19:00:00+00:00,66.83599419448488 -2024-12-16 20:00:00+00:00,67.9569892473126 -2024-12-16 21:00:00+00:00,74.52978056426386 -2024-12-16 22:00:00+00:00,69.38775510204042 -2024-12-16 23:00:00+00:00,63.61922714420325 -2024-12-17 00:00:00+00:00,64.68435498627636 -2024-12-17 01:00:00+00:00,62.90035587188582 -2024-12-17 02:00:00+00:00,45.94882729211129 -2024-12-17 03:00:00+00:00,51.0270270270273 -2024-12-17 04:00:00+00:00,32.08395802098923 -2024-12-17 05:00:00+00:00,42.175856929953845 -2024-12-17 06:00:00+00:00,47.15447154471563 -2024-12-17 07:00:00+00:00,43.74057315233782 -2024-12-17 08:00:00+00:00,37.37113402061839 -2024-12-17 09:00:00+00:00,28.737113402060558 -2024-12-17 10:00:00+00:00,30.440251572328776 -2024-12-17 11:00:00+00:00,35.9953703703689 -2024-12-17 12:00:00+00:00,33.226495726495216 -2024-12-17 13:00:00+00:00,33.049946865036844 -2024-12-17 14:00:00+00:00,23.09090909090895 -2024-12-17 15:00:00+00:00,23.26007326007273 -2024-12-17 16:00:00+00:00,23.21755027422232 -2024-12-17 17:00:00+00:00,17.764804003335854 -2024-12-17 18:00:00+00:00,16.65257819103806 -2024-12-17 19:00:00+00:00,16.36980491942424 -2024-12-17 20:00:00+00:00,27.07100591715917 -2024-12-17 21:00:00+00:00,27.87509520182762 -2024-12-17 22:00:00+00:00,31.96506550218264 -2024-12-17 23:00:00+00:00,40.76539101497586 -2024-12-18 00:00:00+00:00,44.02515723270363 -2024-12-18 01:00:00+00:00,37.5963020030824 -2024-12-18 02:00:00+00:00,44.85407066052158 -2024-12-18 03:00:00+00:00,44.07547169811263 -2024-12-18 04:00:00+00:00,45.48286604361304 -2024-12-18 05:00:00+00:00,44.175491679273726 -2024-12-18 06:00:00+00:00,52.00594353640436 -2024-12-18 07:00:00+00:00,61.62701458173488 -2024-12-18 08:00:00+00:00,61.02212051868904 -2024-12-18 09:00:00+00:00,61.14068441064629 -2024-12-18 10:00:00+00:00,52.348993288591245 -2024-12-18 11:00:00+00:00,56.98234349919698 -2024-12-18 12:00:00+00:00,63.74269005848061 -2024-12-18 13:00:00+00:00,60.85240726124715 -2024-12-18 14:00:00+00:00,53.77668308702883 -2024-12-18 15:00:00+00:00,65.85903083700535 -2024-12-18 16:00:00+00:00,62.18944099379062 -2024-12-18 17:00:00+00:00,57.41935483870985 -2024-12-18 18:00:00+00:00,62.823529411765435 -2024-12-18 19:00:00+00:00,81.21974830590577 -2024-12-18 20:00:00+00:00,80.48289738430672 -2024-12-18 21:00:00+00:00,80.93366093366177 -2024-12-18 22:00:00+00:00,77.98295454545433 -2024-12-18 23:00:00+00:00,74.2588235294119 -2024-12-19 00:00:00+00:00,77.96762589928034 -2024-12-19 01:00:00+00:00,71.15716753022463 -2024-12-19 02:00:00+00:00,74.30769230769229 -2024-12-19 03:00:00+00:00,75.6825627957771 -2024-12-19 04:00:00+00:00,77.96920821114298 -2024-12-19 05:00:00+00:00,73.51794071762804 -2024-12-19 06:00:00+00:00,80.78947368420978 -2024-12-19 07:00:00+00:00,86.69064748201399 -2024-12-19 08:00:00+00:00,89.2315470171888 -2024-12-19 09:00:00+00:00,86.87615526802183 -2024-12-19 10:00:00+00:00,84.40533980582504 -2024-12-19 11:00:00+00:00,77.41176470588172 -2024-12-19 12:00:00+00:00,80.85585585585578 -2024-12-19 13:00:00+00:00,82.0571428571426 -2024-12-19 14:00:00+00:00,82.60387811634315 -2024-12-19 15:00:00+00:00,88.66498740554121 -2024-12-19 16:00:00+00:00,87.28813559321993 -2024-12-19 17:00:00+00:00,85.78143360752041 -2024-12-19 18:00:00+00:00,81.77676537585394 -2024-12-19 19:00:00+00:00,80.90140845070437 -2024-12-19 20:00:00+00:00,72.0896601590747 -2024-12-19 21:00:00+00:00,69.11999999999999 -2024-12-19 22:00:00+00:00,63.49881796690315 -2024-12-19 23:00:00+00:00,64.19294990723564 -2024-12-20 00:00:00+00:00,68.24512534818948 -2024-12-20 01:00:00+00:00,62.28813559322068 -2024-12-20 02:00:00+00:00,50.70074196207732 -2024-12-20 03:00:00+00:00,53.21027287319416 -2024-12-20 04:00:00+00:00,52.46636771300467 -2024-12-20 05:00:00+00:00,34.389348025711485 -2024-12-20 06:00:00+00:00,33.137432188065446 -2024-12-20 07:00:00+00:00,31.41877411058742 -2024-12-20 08:00:00+00:00,35.44926240500706 -2024-12-20 09:00:00+00:00,34.689413823271906 -2024-12-20 10:00:00+00:00,36.696832579185234 -2024-12-20 11:00:00+00:00,34.62616822429989 -2024-12-20 12:00:00+00:00,33.62546125461306 -2024-12-20 13:00:00+00:00,23.95402298850668 -2024-12-20 14:00:00+00:00,23.425925925927373 -2024-12-20 15:00:00+00:00,28.299776286354685 -2024-12-20 16:00:00+00:00,26.95791156100327 -2024-12-20 17:00:00+00:00,22.577092511015067 -2024-12-20 18:00:00+00:00,12.289457267624655 -2024-12-20 19:00:00+00:00,13.853727144868046 -2024-12-20 20:00:00+00:00,31.844547563805747 -2024-12-20 21:00:00+00:00,37.3848987108661 -2024-12-22 22:00:00+00:00,39.751919669226396 -2024-12-22 23:00:00+00:00,44.980694980695894 -2024-12-23 00:00:00+00:00,45.88607594936734 -2024-12-23 01:00:00+00:00,40.64705882352916 -2024-12-23 02:00:00+00:00,44.94318181818187 -2024-12-23 03:00:00+00:00,49.905362776025676 -2024-12-23 04:00:00+00:00,49.55527318932623 -2024-12-23 05:00:00+00:00,54.71456061578015 -2024-12-23 06:00:00+00:00,71.02414654454664 -2024-12-23 07:00:00+00:00,76.79762787249835 -2024-12-23 08:00:00+00:00,65.38707613563653 -2024-12-23 09:00:00+00:00,71.4729645742697 -2024-12-23 10:00:00+00:00,66.83526011560704 -2024-12-23 11:00:00+00:00,65.89895988112912 -2024-12-23 12:00:00+00:00,69.78275181040148 -2024-12-23 13:00:00+00:00,70.57692307692291 -2024-12-23 14:00:00+00:00,68.10567010309292 -2024-12-23 15:00:00+00:00,73.45378735232805 -2024-12-23 16:00:00+00:00,66.45833333333366 -2024-12-23 17:00:00+00:00,71.0457516339867 -2024-12-23 18:00:00+00:00,68.55807743658096 -2024-12-23 19:00:00+00:00,65.43209876543142 -2024-12-23 20:00:00+00:00,68.10109289617456 -2024-12-23 21:00:00+00:00,64.35114503816779 -2024-12-23 22:00:00+00:00,76.84594348222328 -2024-12-23 23:00:00+00:00,74.62537462537355 -2024-12-24 00:00:00+00:00,74.5999999999988 -2024-12-24 01:00:00+00:00,62.5215889464586 -2024-12-24 02:00:00+00:00,49.08045977011549 -2024-12-24 03:00:00+00:00,42.857142857142854 -2024-12-24 04:00:00+00:00,41.00227790432758 -2024-12-24 05:00:00+00:00,42.502951593860445 -2024-12-24 06:00:00+00:00,53.26876513317184 -2024-12-24 07:00:00+00:00,48.67021276595683 -2024-12-24 08:00:00+00:00,45.29702970297083 -2024-12-24 09:00:00+00:00,49.443757725588036 -2024-12-24 10:00:00+00:00,46.484375000000135 -2024-12-24 11:00:00+00:00,48.040455120100894 -2024-12-24 12:00:00+00:00,48.593350383632334 -2024-12-24 13:00:00+00:00,50.12406947890878 -2024-12-24 14:00:00+00:00,47.65625 -2024-12-24 15:00:00+00:00,65.42056074766356 -2024-12-24 16:00:00+00:00,62.96851574212849 -2024-12-24 17:00:00+00:00,67.08463949843161 -2024-12-24 18:00:00+00:00,77.21943048576318 -2024-12-24 19:00:00+00:00,74.47495961227654 -2024-12-24 20:00:00+00:00,57.990867579907764 -2024-12-24 21:00:00+00:00,55.48387096774262 -2024-12-25 22:00:00+00:00,66.66666666666666 -2024-12-25 23:00:00+00:00,52.870090634439734 -2024-12-26 00:00:00+00:00,63.86946386946377 -2024-12-26 01:00:00+00:00,65.47884187082366 -2024-12-26 02:00:00+00:00,66.07142857142891 -2024-12-26 03:00:00+00:00,60.089686098655136 -2024-12-26 04:00:00+00:00,58.70069605568484 -2024-12-26 05:00:00+00:00,50.9009009009004 -2024-12-26 06:00:00+00:00,54.26621160409483 -2024-12-26 07:00:00+00:00,53.899082568807835 -2024-12-26 08:00:00+00:00,50.17221584385681 -2024-12-26 09:00:00+00:00,56.63430420711907 -2024-12-26 10:00:00+00:00,65.36585365853622 -2024-12-26 11:00:00+00:00,70.04219409282601 -2024-12-26 12:00:00+00:00,70.84188911704243 -2024-12-26 13:00:00+00:00,84.18514946962293 -2024-12-26 14:00:00+00:00,82.45989304812724 -2024-12-26 15:00:00+00:00,83.29938900203602 -2024-12-26 16:00:00+00:00,78.42003853564457 -2024-12-26 17:00:00+00:00,83.05418719211644 -2024-12-26 18:00:00+00:00,73.50187265917363 -2024-12-26 19:00:00+00:00,80.4995196926018 -2024-12-26 20:00:00+00:00,79.00874635568324 -2024-12-26 21:00:00+00:00,79.98146431881152 -2024-12-26 22:00:00+00:00,73.25976230899731 -2024-12-26 23:00:00+00:00,63.94389438943933 -2024-12-27 00:00:00+00:00,67.55753526354795 -2024-12-27 01:00:00+00:00,55.612244897958995 -2024-12-27 02:00:00+00:00,48.20193637621049 -2024-12-27 03:00:00+00:00,42.78074866310185 -2024-12-27 04:00:00+00:00,36.05283605283577 -2024-12-27 05:00:00+00:00,38.305847076461355 -2024-12-27 06:00:00+00:00,39.92187499999963 -2024-12-27 07:00:00+00:00,41.2977099236638 -2024-12-27 08:00:00+00:00,46.67747163695321 -2024-12-27 09:00:00+00:00,45.66473988439215 -2024-12-27 10:00:00+00:00,41.95751138087918 -2024-12-27 11:00:00+00:00,36.61560904449297 -2024-12-27 12:00:00+00:00,46.48295866569931 -2024-12-27 13:00:00+00:00,51.1111111111108 -2024-12-27 14:00:00+00:00,45.583038869258104 -2024-12-27 15:00:00+00:00,42.92845257903528 -2024-12-27 16:00:00+00:00,55.319148936170116 -2024-12-27 17:00:00+00:00,56.973995271867445 -2024-12-27 18:00:00+00:00,60.73211314475942 -2024-12-27 19:00:00+00:00,58.081705150976745 -2024-12-27 20:00:00+00:00,56.62337662337658 -2024-12-27 21:00:00+00:00,51.20481927710812 -2024-12-29 22:00:00+00:00,44.2687747035577 -2024-12-29 23:00:00+00:00,50.8368200836821 -2024-12-30 00:00:00+00:00,56.794682422452404 -2024-12-30 01:00:00+00:00,55.08595988538703 -2024-12-30 02:00:00+00:00,50.43478260869662 -2024-12-30 03:00:00+00:00,50.78492935635838 -2024-12-30 04:00:00+00:00,49.17904612978827 -2024-12-30 05:00:00+00:00,62.87534121929013 -2024-12-30 06:00:00+00:00,57.32217573221716 -2024-12-30 07:00:00+00:00,53.793884484711704 -2024-12-30 08:00:00+00:00,53.74149659863969 -2024-12-30 09:00:00+00:00,45.72864321608139 -2024-12-30 10:00:00+00:00,42.672919109027035 -2024-12-30 11:00:00+00:00,39.013933547696375 -2024-12-30 12:00:00+00:00,41.64759725400395 -2024-12-30 13:00:00+00:00,21.34540750323613 -2024-12-30 14:00:00+00:00,11.312217194572241 -2024-12-30 15:00:00+00:00,20.343839541548363 -2024-12-30 16:00:00+00:00,25.800711743772865 -2024-12-30 17:00:00+00:00,22.712418300654363 -2024-12-30 18:00:00+00:00,20.188816267248527 -2024-12-30 19:00:00+00:00,23.200559049616558 -2024-12-30 20:00:00+00:00,18.772348033374016 -2024-12-30 21:00:00+00:00,19.44444444444585 -2024-12-30 22:00:00+00:00,20.431990659662134 -2024-12-30 23:00:00+00:00,26.062948647156233 -2024-12-31 00:00:00+00:00,23.216920806689856 -2024-12-31 01:00:00+00:00,22.07670720299349 -2024-12-31 02:00:00+00:00,22.369668246445755 -2024-12-31 03:00:00+00:00,25.278990781174485 -2024-12-31 04:00:00+00:00,27.421052631579244 -2024-12-31 05:00:00+00:00,24.18911489829661 -2024-12-31 06:00:00+00:00,25.740441572428722 -2024-12-31 07:00:00+00:00,25.18440463645956 -2024-12-31 08:00:00+00:00,26.884139482564862 -2024-12-31 09:00:00+00:00,39.61913608917793 -2024-12-31 10:00:00+00:00,50.240153698367415 -2024-12-31 11:00:00+00:00,48.70067372473528 -2024-12-31 12:00:00+00:00,50.21018215786983 -2024-12-31 13:00:00+00:00,50.07025761124155 -2024-12-31 14:00:00+00:00,51.96888672824542 -2024-12-31 15:00:00+00:00,66.34703196347053 -2024-12-31 16:00:00+00:00,70.82092726499366 -2024-12-31 17:00:00+00:00,70.19982623805383 -2024-12-31 18:00:00+00:00,74.64203233256345 -2024-12-31 19:00:00+00:00,74.70046082949297 -2024-12-31 20:00:00+00:00,73.66906474820158 -2024-12-31 21:00:00+00:00,73.95281656234903 -2025-01-01 22:00:00+00:00,76.70509125840529 -2025-01-01 23:00:00+00:00,76.07301430685692 -2025-01-02 00:00:00+00:00,64.36068702290015 -2025-01-02 01:00:00+00:00,66.49532710280337 -2025-01-02 02:00:00+00:00,58.67077464788726 -2025-01-02 03:00:00+00:00,53.1905594405591 -2025-01-02 04:00:00+00:00,55.64700502972064 -2025-01-02 05:00:00+00:00,51.256281407035424 -2025-01-02 06:00:00+00:00,34.7975882859604 -2025-01-02 07:00:00+00:00,34.96563573883164 -2025-01-02 08:00:00+00:00,39.11205073995757 -2025-01-02 09:00:00+00:00,39.08629441624412 -2025-01-02 10:00:00+00:00,46.02698650674635 -2025-01-02 11:00:00+00:00,50.057848052448634 -2025-01-02 12:00:00+00:00,46.53875094055684 -2025-01-02 13:00:00+00:00,32.40291262135976 -2025-01-02 14:00:00+00:00,41.55951887183779 -2025-01-02 15:00:00+00:00,42.676973148901176 -2025-01-02 16:00:00+00:00,56.741982507288775 -2025-01-02 17:00:00+00:00,57.58136094674616 -2025-01-02 18:00:00+00:00,59.08918406072144 -2025-01-02 19:00:00+00:00,58.02180685358282 -2025-01-02 20:00:00+00:00,73.73339891785628 -2025-01-02 21:00:00+00:00,70.49102927289944 -2025-01-02 22:00:00+00:00,66.50625601540003 -2025-01-02 23:00:00+00:00,62.976573265962834 -2025-01-03 00:00:00+00:00,51.96969696969711 -2025-01-03 01:00:00+00:00,51.9211324570279 -2025-01-03 02:00:00+00:00,56.21019108280217 -2025-01-03 03:00:00+00:00,64.7310513447438 -2025-01-03 04:00:00+00:00,58.726899383983685 -2025-01-03 05:00:00+00:00,55.53097345132778 -2025-01-03 06:00:00+00:00,25.102459016392487 -2025-01-03 07:00:00+00:00,26.68845315903944 -2025-01-03 08:00:00+00:00,41.96940726577402 -2025-01-03 09:00:00+00:00,31.772908366533002 -2025-01-03 10:00:00+00:00,38.45462713387218 -2025-01-03 11:00:00+00:00,37.249782419495865 -2025-01-03 12:00:00+00:00,36.99222126188452 -2025-01-03 13:00:00+00:00,41.82330827067633 -2025-01-03 14:00:00+00:00,45.97107438016509 -2025-01-03 15:00:00+00:00,55.068728522336606 -2025-01-03 16:00:00+00:00,45.927601809954666 -2025-01-03 17:00:00+00:00,44.77941176470515 -2025-01-03 18:00:00+00:00,45.583832335329575 -2025-01-03 19:00:00+00:00,46.46539027982315 -2025-01-03 20:00:00+00:00,56.149341142020546 -2025-01-03 21:00:00+00:00,55.499276410998974 -2025-01-05 22:00:00+00:00,50.56270096463061 -2025-01-05 23:00:00+00:00,59.59367945823905 -2025-01-06 00:00:00+00:00,58.50077279752693 -2025-01-06 01:00:00+00:00,65.6328583403176 -2025-01-06 02:00:00+00:00,72.68976897689666 -2025-01-06 03:00:00+00:00,72.32441471571823 -2025-01-06 04:00:00+00:00,75.43554006968601 -2025-01-06 05:00:00+00:00,70.1271186440672 -2025-01-06 06:00:00+00:00,75.39863325740265 -2025-01-06 07:00:00+00:00,78.94736842105229 -2025-01-06 08:00:00+00:00,79.20560747663376 -2025-01-06 09:00:00+00:00,79.99999999999872 -2025-01-06 10:00:00+00:00,80.61002178649031 -2025-01-06 11:00:00+00:00,47.16379859783309 -2025-01-06 12:00:00+00:00,35.47717842323644 -2025-01-06 13:00:00+00:00,26.85567010309319 -2025-01-06 14:00:00+00:00,44.067796610169815 -2025-01-06 15:00:00+00:00,48.45622956774414 -2025-01-06 16:00:00+00:00,46.77419354838718 -2025-01-06 17:00:00+00:00,46.16524638755108 -2025-01-06 18:00:00+00:00,46.6593245227609 -2025-01-06 19:00:00+00:00,45.66192969334333 -2025-01-06 20:00:00+00:00,49.543031226199524 -2025-01-06 21:00:00+00:00,49.71537001897559 -2025-01-06 22:00:00+00:00,49.24642049736208 -2025-01-06 23:00:00+00:00,50.037091988130214 -2025-01-07 00:00:00+00:00,53.47150259067344 -2025-01-07 01:00:00+00:00,73.0945439400248 -2025-01-07 02:00:00+00:00,86.96729435084112 -2025-01-07 03:00:00+00:00,87.83783783783696 -2025-01-07 04:00:00+00:00,79.16053019145738 -2025-01-07 05:00:00+00:00,62.39700374531866 -2025-01-07 06:00:00+00:00,57.40223463687189 -2025-01-07 07:00:00+00:00,49.51807228915691 -2025-01-07 08:00:00+00:00,46.82352941176467 -2025-01-07 09:00:00+00:00,51.605995717344776 -2025-01-07 10:00:00+00:00,53.11203319502078 -2025-01-07 11:00:00+00:00,51.64948453608226 -2025-01-07 12:00:00+00:00,52.97741273100651 -2025-01-07 13:00:00+00:00,48.21428571428614 -2025-01-07 14:00:00+00:00,39.62033067973048 -2025-01-07 15:00:00+00:00,38.45193508114825 -2025-01-07 16:00:00+00:00,36.71036948748492 -2025-01-07 17:00:00+00:00,37.153196622436724 -2025-01-07 18:00:00+00:00,43.16505955757172 -2025-01-07 19:00:00+00:00,47.38480697384787 -2025-01-07 20:00:00+00:00,53.70603015075379 -2025-01-07 21:00:00+00:00,68.75000000000071 -2025-01-07 22:00:00+00:00,70.41778975741326 -2025-01-07 23:00:00+00:00,70.61579651941167 -2025-01-08 00:00:00+00:00,64.98579545454609 -2025-01-08 01:00:00+00:00,58.206106870229746 -2025-01-08 02:00:00+00:00,60.75268817204392 -2025-01-08 03:00:00+00:00,65.42991755005963 -2025-01-08 04:00:00+00:00,64.09785932721809 -2025-01-08 05:00:00+00:00,57.74834437086062 -2025-01-08 06:00:00+00:00,57.217847769029234 -2025-01-08 07:00:00+00:00,64.32022084196042 -2025-01-08 08:00:00+00:00,64.04728789986146 -2025-01-08 09:00:00+00:00,63.12542837559956 -2025-01-08 10:00:00+00:00,64.79057591623067 -2025-01-08 11:00:00+00:00,61.12716763005788 -2025-01-08 12:00:00+00:00,65.88314304902624 -2025-01-08 13:00:00+00:00,49.874213836478276 -2025-01-08 14:00:00+00:00,55.4289142171571 -2025-01-08 15:00:00+00:00,63.422818791946675 -2025-01-08 16:00:00+00:00,57.82361308677107 -2025-01-08 17:00:00+00:00,57.091172214182386 -2025-01-08 18:00:00+00:00,58.35674157303382 -2025-01-08 19:00:00+00:00,60.667634252540644 -2025-01-08 20:00:00+00:00,61.290322580645096 -2025-01-08 21:00:00+00:00,59.14634146341529 -2025-01-08 22:00:00+00:00,52.709359605911466 -2025-01-08 23:00:00+00:00,51.07398568019155 -2025-01-09 00:00:00+00:00,47.2555746140654 -2025-01-09 01:00:00+00:00,39.701257861635135 -2025-01-09 02:00:00+00:00,31.951640759931664 -2025-01-09 03:00:00+00:00,37.60162601626028 -2025-01-09 04:00:00+00:00,26.5850945494999 -2025-01-09 05:00:00+00:00,34.52380952380865 -2025-01-09 06:00:00+00:00,41.60305343511352 -2025-01-09 07:00:00+00:00,40.234374999998906 -2025-01-09 08:00:00+00:00,33.728981206725095 -2025-01-09 09:00:00+00:00,31.78807947019841 -2025-01-09 10:00:00+00:00,32.30769230769194 -2025-01-09 11:00:00+00:00,30.107526881719423 -2025-01-09 12:00:00+00:00,27.14054927302037 -2025-01-09 13:00:00+00:00,27.906976744185215 -2025-01-09 14:00:00+00:00,32.869296210362734 -2025-01-09 15:00:00+00:00,44.667697063369005 -2025-01-09 16:00:00+00:00,47.067783701447105 -2025-01-09 17:00:00+00:00,55.10835913312724 -2025-01-09 18:00:00+00:00,55.712050078246776 -2025-01-09 19:00:00+00:00,52.23628691983111 -2025-01-09 20:00:00+00:00,48.824593128391435 -2025-01-09 21:00:00+00:00,46.38497652582187 -2025-01-09 22:00:00+00:00,50.0486854917237 -2025-01-09 23:00:00+00:00,48.21763602251371 -2025-01-10 00:00:00+00:00,50.69033530572037 -2025-01-10 01:00:00+00:00,60.53130929791253 -2025-01-10 02:00:00+00:00,75.19531249999953 -2025-01-10 03:00:00+00:00,79.54545454545242 -2025-01-10 04:00:00+00:00,79.39646201872824 -2025-01-10 05:00:00+00:00,76.28742514969895 -2025-01-10 06:00:00+00:00,67.7639046538001 -2025-01-10 07:00:00+00:00,66.58823529411505 -2025-01-10 08:00:00+00:00,40.98479362780648 -2025-01-10 09:00:00+00:00,43.793103448275815 -2025-01-10 10:00:00+00:00,48.6452425960931 -2025-01-10 11:00:00+00:00,46.31073785242987 -2025-01-10 12:00:00+00:00,45.65877352762602 -2025-01-10 13:00:00+00:00,61.92052980132426 -2025-01-10 14:00:00+00:00,49.26608957470803 -2025-01-10 15:00:00+00:00,40.23769100169758 -2025-01-10 16:00:00+00:00,40.2579769178546 -2025-01-10 17:00:00+00:00,40.43641322877595 -2025-01-10 18:00:00+00:00,41.863560732113136 -2025-01-10 19:00:00+00:00,41.033333333333154 -2025-01-10 20:00:00+00:00,41.433860652978964 -2025-01-10 21:00:00+00:00,39.142091152815105 -2025-01-12 22:00:00+00:00,47.94745484400669 -2025-01-12 23:00:00+00:00,49.60254372019114 -2025-01-13 00:00:00+00:00,44.27480916030542 -2025-01-13 01:00:00+00:00,40.072727272727406 -2025-01-13 02:00:00+00:00,41.53955303299032 -2025-01-13 03:00:00+00:00,25.99491955969542 -2025-01-13 04:00:00+00:00,38.85684320922967 -2025-01-13 05:00:00+00:00,45.40441176470659 -2025-01-13 06:00:00+00:00,45.13546798029594 -2025-01-13 07:00:00+00:00,43.83971291866061 -2025-01-13 08:00:00+00:00,40.8317580340265 -2025-01-13 09:00:00+00:00,31.48688046647223 -2025-01-13 10:00:00+00:00,41.6558861578267 -2025-01-13 11:00:00+00:00,40.94955489614262 -2025-01-13 12:00:00+00:00,36.79999999999991 -2025-01-13 13:00:00+00:00,36.31477927063307 -2025-01-13 14:00:00+00:00,41.71082513247516 -2025-01-13 15:00:00+00:00,51.48313693620437 -2025-01-13 16:00:00+00:00,49.93747394747841 -2025-01-13 17:00:00+00:00,48.325937878176724 -2025-01-13 18:00:00+00:00,48.75999999999976 -2025-01-13 19:00:00+00:00,57.56676557863479 -2025-01-13 20:00:00+00:00,52.251922372757065 -2025-01-13 21:00:00+00:00,50.21111893033076 -2025-01-13 22:00:00+00:00,45.44169611307451 -2025-01-13 23:00:00+00:00,54.12457912457908 -2025-01-14 00:00:00+00:00,52.38095238095197 -2025-01-14 01:00:00+00:00,52.74967003959529 -2025-01-14 02:00:00+00:00,64.69278717720415 -2025-01-14 03:00:00+00:00,58.103837471783685 -2025-01-14 04:00:00+00:00,53.09859154929598 -2025-01-14 05:00:00+00:00,51.504854368932364 -2025-01-14 06:00:00+00:00,49.30297397769513 -2025-01-14 07:00:00+00:00,54.789081885855836 -2025-01-14 08:00:00+00:00,55.255402750491264 -2025-01-14 09:00:00+00:00,53.234086242299995 -2025-01-14 10:00:00+00:00,54.66526093832356 -2025-01-14 11:00:00+00:00,62.67104542966616 -2025-01-14 12:00:00+00:00,64.50704225352094 -2025-01-14 13:00:00+00:00,62.94667399670187 -2025-01-14 14:00:00+00:00,58.395061728395795 -2025-01-14 15:00:00+00:00,65.71087216248559 -2025-01-14 16:00:00+00:00,59.03698534542972 -2025-01-14 17:00:00+00:00,69.43881000676114 -2025-01-14 18:00:00+00:00,66.99282452707081 -2025-01-14 19:00:00+00:00,61.88579017264312 -2025-01-14 20:00:00+00:00,67.26395589248818 -2025-01-14 21:00:00+00:00,65.88983050847489 -2025-01-14 22:00:00+00:00,60.34755134281186 -2025-01-14 23:00:00+00:00,54.85611510791376 -2025-01-15 00:00:00+00:00,56.58627087198478 -2025-01-15 01:00:00+00:00,48.176583493281676 -2025-01-15 02:00:00+00:00,54.294175715695275 -2025-01-15 03:00:00+00:00,55.55555555555459 -2025-01-15 04:00:00+00:00,41.77419354838684 -2025-01-15 05:00:00+00:00,26.56934306569366 -2025-01-15 06:00:00+00:00,27.99129804205934 -2025-01-15 07:00:00+00:00,12.364294330519343 -2025-01-15 08:00:00+00:00,24.459613196814814 -2025-01-15 09:00:00+00:00,22.23371251292663 -2025-01-15 10:00:00+00:00,19.633774160732145 -2025-01-15 11:00:00+00:00,27.922971114168064 -2025-01-15 12:00:00+00:00,27.744874715262085 -2025-01-15 13:00:00+00:00,19.292364990689023 -2025-01-15 14:00:00+00:00,19.01615271659334 -2025-01-15 15:00:00+00:00,19.77443609022599 -2025-01-15 16:00:00+00:00,26.892771497088077 -2025-01-15 17:00:00+00:00,26.975945017182312 -2025-01-15 18:00:00+00:00,29.312920089619027 -2025-01-15 19:00:00+00:00,32.30452674897096 -2025-01-15 20:00:00+00:00,31.425041186161337 -2025-01-15 21:00:00+00:00,39.44723618090504 -2025-01-15 22:00:00+00:00,30.22126281705401 -2025-01-15 23:00:00+00:00,31.728045325780002 -2025-01-16 00:00:00+00:00,32.46376811594284 -2025-01-16 01:00:00+00:00,15.799343647445454 -2025-01-16 02:00:00+00:00,22.573561703996774 -2025-01-16 03:00:00+00:00,32.14695752009163 -2025-01-16 04:00:00+00:00,40.83102493074841 -2025-01-16 05:00:00+00:00,45.39877300613483 -2025-01-16 06:00:00+00:00,34.93686109440792 -2025-01-16 07:00:00+00:00,39.35294117647019 -2025-01-16 08:00:00+00:00,34.484536082474335 -2025-01-16 09:00:00+00:00,31.586402266289127 -2025-01-16 10:00:00+00:00,31.646168401135753 -2025-01-16 11:00:00+00:00,34.52650657000382 -2025-01-16 12:00:00+00:00,44.521668029436306 -2025-01-16 13:00:00+00:00,43.73493975903593 -2025-01-16 14:00:00+00:00,48.85724990633183 -2025-01-16 15:00:00+00:00,47.67824497257753 -2025-01-16 16:00:00+00:00,44.3623639191293 -2025-01-16 17:00:00+00:00,40.58561897702049 -2025-01-16 18:00:00+00:00,38.464491362764015 -2025-01-16 19:00:00+00:00,33.63926576217111 -2025-01-16 20:00:00+00:00,32.69976726144327 -2025-01-16 21:00:00+00:00,29.309006211180815 -2025-01-16 22:00:00+00:00,34.6843003412973 -2025-01-16 23:00:00+00:00,43.18377911993095 -2025-01-17 00:00:00+00:00,40.33037872683295 -2025-01-17 01:00:00+00:00,38.188647746244634 -2025-01-17 02:00:00+00:00,35.29925731760619 -2025-01-17 03:00:00+00:00,39.000000000000384 -2025-01-17 04:00:00+00:00,31.085949562532207 -2025-01-17 05:00:00+00:00,54.82054890921871 -2025-01-17 06:00:00+00:00,56.82582380632132 -2025-01-17 07:00:00+00:00,62.87202380952346 -2025-01-17 08:00:00+00:00,62.98219584569672 -2025-01-17 09:00:00+00:00,66.71721000758103 -2025-01-17 10:00:00+00:00,72.29199372056512 -2025-01-17 11:00:00+00:00,72.63406940062926 -2025-01-17 12:00:00+00:00,71.9028340080958 -2025-01-17 13:00:00+00:00,64.75485661424582 -2025-01-17 14:00:00+00:00,84.04761904761793 -2025-01-17 15:00:00+00:00,84.45475638050917 -2025-01-17 16:00:00+00:00,84.21052631578806 -2025-01-17 17:00:00+00:00,80.93058733790835 -2025-01-17 18:00:00+00:00,80.13595166163121 -2025-01-17 19:00:00+00:00,74.51640033641723 -2025-01-17 20:00:00+00:00,72.75179856115119 -2025-01-17 21:00:00+00:00,77.7235772357721 -2025-01-19 22:00:00+00:00,76.33851468048326 -2025-01-19 23:00:00+00:00,75.35335689045917 -2025-01-20 00:00:00+00:00,57.42574257425678 -2025-01-20 01:00:00+00:00,58.3333333333335 -2025-01-20 02:00:00+00:00,57.87944807552621 -2025-01-20 03:00:00+00:00,51.85426154847072 -2025-01-20 04:00:00+00:00,47.44318181818165 -2025-01-20 05:00:00+00:00,48.467966573815715 -2025-01-20 06:00:00+00:00,45.98540145985448 -2025-01-20 07:00:00+00:00,41.257367387033455 -2025-01-20 08:00:00+00:00,49.012345679012896 -2025-01-20 09:00:00+00:00,53.95430579964826 -2025-01-20 10:00:00+00:00,56.26043405676113 -2025-01-20 11:00:00+00:00,51.30641330166305 -2025-01-20 12:00:00+00:00,51.82138660399565 -2025-01-20 13:00:00+00:00,37.547892720306436 -2025-01-20 14:00:00+00:00,40.09090909090953 -2025-01-20 15:00:00+00:00,44.857768052516725 -2025-01-20 16:00:00+00:00,44.43957968476382 -2025-01-20 17:00:00+00:00,51.8584863412449 -2025-01-20 18:00:00+00:00,43.52720450281479 -2025-01-20 19:00:00+00:00,39.9618502622798 -2025-01-20 20:00:00+00:00,35.270541082164556 -2025-01-20 21:00:00+00:00,40.46052631578981 -2025-01-20 22:00:00+00:00,34.813925570227795 -2025-01-20 23:00:00+00:00,23.72970141435333 -2025-01-21 00:00:00+00:00,43.12499999999986 -2025-01-21 01:00:00+00:00,36.76323676323643 -2025-01-21 02:00:00+00:00,31.713100177830313 -2025-01-21 03:00:00+00:00,40.382533381450926 -2025-01-21 04:00:00+00:00,41.10947832476107 -2025-01-21 05:00:00+00:00,43.25663716814163 -2025-01-21 06:00:00+00:00,47.288359788360005 -2025-01-21 07:00:00+00:00,47.548535702533705 -2025-01-21 08:00:00+00:00,50.80591000671594 -2025-01-21 09:00:00+00:00,54.17614559636017 -2025-01-21 10:00:00+00:00,55.964182922929155 -2025-01-21 11:00:00+00:00,54.235145385587856 -2025-01-21 12:00:00+00:00,52.63157894736828 -2025-01-21 13:00:00+00:00,53.30423940149606 -2025-01-21 14:00:00+00:00,41.392801251956364 -2025-01-21 15:00:00+00:00,45.40772532188853 -2025-01-21 16:00:00+00:00,58.47701149425299 -2025-01-21 17:00:00+00:00,59.084473808399856 -2025-01-21 18:00:00+00:00,60.77669902912577 -2025-01-21 19:00:00+00:00,56.55913978494608 -2025-01-21 20:00:00+00:00,50.0593119810196 -2025-01-21 21:00:00+00:00,44.80731548007886 -2025-01-21 22:00:00+00:00,41.25500667556768 -2025-01-21 23:00:00+00:00,45.06866416978738 -2025-01-22 00:00:00+00:00,34.89896231567471 -2025-01-22 01:00:00+00:00,44.44995044598568 -2025-01-22 02:00:00+00:00,48.00605754669339 -2025-01-22 03:00:00+00:00,61.73580786026224 -2025-01-22 04:00:00+00:00,55.62098501070695 -2025-01-22 05:00:00+00:00,65.0755287009067 -2025-01-22 06:00:00+00:00,62.661498708010654 -2025-01-22 07:00:00+00:00,64.49631449631514 -2025-01-22 08:00:00+00:00,55.614406779661635 -2025-01-22 09:00:00+00:00,53.06553911205046 -2025-01-22 10:00:00+00:00,56.25000000000027 -2025-01-22 11:00:00+00:00,58.60894941634235 -2025-01-22 12:00:00+00:00,57.9326923076922 -2025-01-22 13:00:00+00:00,53.89884088514227 -2025-01-22 14:00:00+00:00,69.60043196544301 -2025-01-22 15:00:00+00:00,69.40217391304371 -2025-01-22 16:00:00+00:00,71.93419740777726 -2025-01-22 17:00:00+00:00,68.97870016384454 -2025-01-22 18:00:00+00:00,72.54451464675446 -2025-01-22 19:00:00+00:00,69.60227272727212 -2025-01-22 20:00:00+00:00,69.11085450346377 -2025-01-22 21:00:00+00:00,65.05646173149204 -2025-01-22 22:00:00+00:00,76.13803230543125 -2025-01-22 23:00:00+00:00,79.10334346504395 -2025-01-23 00:00:00+00:00,74.56692913385677 -2025-01-23 01:00:00+00:00,75.65938206480666 -2025-01-23 02:00:00+00:00,75.60240963855277 -2025-01-23 03:00:00+00:00,74.2857142857132 -2025-01-23 04:00:00+00:00,70.0277520814044 -2025-01-23 05:00:00+00:00,65.82278481012563 -2025-01-23 06:00:00+00:00,49.26829268292684 -2025-01-23 07:00:00+00:00,49.57055214724071 -2025-01-23 08:00:00+00:00,45.03901895206278 -2025-01-23 09:00:00+00:00,42.571127502635136 -2025-01-23 10:00:00+00:00,42.38900634249464 -2025-01-23 11:00:00+00:00,50.938086303940445 -2025-01-23 12:00:00+00:00,48.52546916890139 -2025-01-23 13:00:00+00:00,41.207951070336925 -2025-01-23 14:00:00+00:00,44.62365591397911 -2025-01-23 15:00:00+00:00,34.23645320197008 -2025-01-23 16:00:00+00:00,31.49546827794545 -2025-01-23 17:00:00+00:00,29.172610556347777 -2025-01-23 18:00:00+00:00,28.91911238367922 -2025-01-23 19:00:00+00:00,19.66216216216209 -2025-01-23 20:00:00+00:00,29.589216944800157 -2025-01-23 21:00:00+00:00,33.796016898008375 -2025-01-23 22:00:00+00:00,35.48795944233214 -2025-01-23 23:00:00+00:00,42.32233502538099 -2025-01-24 00:00:00+00:00,45.141822570911195 -2025-01-24 01:00:00+00:00,42.541087231353 -2025-01-24 02:00:00+00:00,38.13031161473066 -2025-01-24 03:00:00+00:00,32.57502420135533 -2025-01-24 04:00:00+00:00,27.69973661106245 -2025-01-24 05:00:00+00:00,32.45689655172403 -2025-01-24 06:00:00+00:00,35.25878003696903 -2025-01-24 07:00:00+00:00,37.32125834127706 -2025-01-24 08:00:00+00:00,34.72015849430417 -2025-01-24 09:00:00+00:00,44.64726196349242 -2025-01-24 10:00:00+00:00,48.55570839064676 -2025-01-24 11:00:00+00:00,50.594451783355076 -2025-01-24 12:00:00+00:00,58.23029366306015 -2025-01-24 13:00:00+00:00,53.231939163497906 diff --git a/indicators_directory/USD_JPY_Signal_Line.csv b/indicators_directory/USD_JPY_Signal_Line.csv deleted file mode 100644 index 54940e3..0000000 --- a/indicators_directory/USD_JPY_Signal_Line.csv +++ /dev/null @@ -1,5001 +0,0 @@ -time,Signal_Line -2024-04-05 03:00:00+00:00,0.0 -2024-04-05 04:00:00+00:00,-0.0007019943019940911 -2024-04-05 05:00:00+00:00,-0.002316126654809523 -2024-04-05 06:00:00+00:00,-0.0031676306160745757 -2024-04-05 07:00:00+00:00,-0.0022767413479344674 -2024-04-05 08:00:00+00:00,0.0008453602877635782 -2024-04-05 09:00:00+00:00,0.005296076631539014 -2024-04-05 10:00:00+00:00,0.009025896091402199 -2024-04-05 11:00:00+00:00,0.012694044014529695 -2024-04-05 12:00:00+00:00,0.0206014600428426 -2024-04-05 13:00:00+00:00,0.030018452595898658 -2024-04-05 14:00:00+00:00,0.03839960301331902 -2024-04-05 15:00:00+00:00,0.04665762488392149 -2024-04-05 16:00:00+00:00,0.05413968669006501 -2024-04-05 17:00:00+00:00,0.060699546499723346 -2024-04-05 18:00:00+00:00,0.06567266700190263 -2024-04-05 19:00:00+00:00,0.07075653907535073 -2024-04-05 20:00:00+00:00,0.07517892074499448 -2024-04-07 21:00:00+00:00,0.07856015469910624 -2024-04-07 22:00:00+00:00,0.0822088663571164 -2024-04-07 23:00:00+00:00,0.08542322390476548 -2024-04-08 00:00:00+00:00,0.08848077044877134 -2024-04-08 01:00:00+00:00,0.0921629839626542 -2024-04-08 02:00:00+00:00,0.0957060055037421 -2024-04-08 03:00:00+00:00,0.09875791982324734 -2024-04-08 04:00:00+00:00,0.10149984796587826 -2024-04-08 05:00:00+00:00,0.10357668119366596 -2024-04-08 06:00:00+00:00,0.1044130700977694 -2024-04-08 07:00:00+00:00,0.10594513489041257 -2024-04-08 08:00:00+00:00,0.10819771989781711 -2024-04-08 09:00:00+00:00,0.10999477415647947 -2024-04-08 10:00:00+00:00,0.11084231735415792 -2024-04-08 11:00:00+00:00,0.11183470077366094 -2024-04-08 12:00:00+00:00,0.11198872873238029 -2024-04-08 13:00:00+00:00,0.10912035413041597 -2024-04-08 14:00:00+00:00,0.10543988051427212 -2024-04-08 15:00:00+00:00,0.10078820184686237 -2024-04-08 16:00:00+00:00,0.09630773461741593 -2024-04-08 17:00:00+00:00,0.09096077429873956 -2024-04-08 18:00:00+00:00,0.08512773697377995 -2024-04-08 19:00:00+00:00,0.08010691832636088 -2024-04-08 20:00:00+00:00,0.0759310730051847 -2024-04-08 21:00:00+00:00,0.07188395938565431 -2024-04-08 22:00:00+00:00,0.06769462553094965 -2024-04-08 23:00:00+00:00,0.06391224207727826 -2024-04-09 00:00:00+00:00,0.06165007272649549 -2024-04-09 01:00:00+00:00,0.05999972947402218 -2024-04-09 02:00:00+00:00,0.05845926734376705 -2024-04-09 03:00:00+00:00,0.05663205574401458 -2024-04-09 04:00:00+00:00,0.055150229231301966 -2024-04-09 05:00:00+00:00,0.05386877349806713 -2024-04-09 06:00:00+00:00,0.053008301634287276 -2024-04-09 07:00:00+00:00,0.05216048644362684 -2024-04-09 08:00:00+00:00,0.0509908931288645 -2024-04-09 09:00:00+00:00,0.04879889700836397 -2024-04-09 10:00:00+00:00,0.04528372423188486 -2024-04-09 11:00:00+00:00,0.041530811670172516 -2024-04-09 12:00:00+00:00,0.036789654632811024 -2024-04-09 13:00:00+00:00,0.031593773325191594 -2024-04-09 14:00:00+00:00,0.024446581071538416 -2024-04-09 15:00:00+00:00,0.017639738289348204 -2024-04-09 16:00:00+00:00,0.010373667587738148 -2024-04-09 17:00:00+00:00,0.003543969035890434 -2024-04-09 18:00:00+00:00,-0.0018964612792827162 -2024-04-09 19:00:00+00:00,-0.006224469660295323 -2024-04-09 20:00:00+00:00,-0.008928125461664566 -2024-04-09 21:00:00+00:00,-0.010786632161505876 -2024-04-09 22:00:00+00:00,-0.012089131364644684 -2024-04-09 23:00:00+00:00,-0.01253248828942169 -2024-04-10 00:00:00+00:00,-0.013278993193442657 -2024-04-10 01:00:00+00:00,-0.014146106845735267 -2024-04-10 02:00:00+00:00,-0.014468668212963921 -2024-04-10 03:00:00+00:00,-0.014463846200016601 -2024-04-10 04:00:00+00:00,-0.01374248089487703 -2024-04-10 05:00:00+00:00,-0.012131769756723962 -2024-04-10 06:00:00+00:00,-0.010499051740722843 -2024-04-10 07:00:00+00:00,-0.007956935596450691 -2024-04-10 08:00:00+00:00,-0.0047684997950715 -2024-04-10 09:00:00+00:00,-0.0012355115559402018 -2024-04-10 10:00:00+00:00,0.0019321859764999812 -2024-04-10 11:00:00+00:00,0.0048440563327289635 -2024-04-10 12:00:00+00:00,0.0160791869784475 -2024-04-10 13:00:00+00:00,0.0364844814709579 -2024-04-10 14:00:00+00:00,0.06306410941776402 -2024-04-10 15:00:00+00:00,0.09411449781525047 -2024-04-10 16:00:00+00:00,0.1266034860827765 -2024-04-10 17:00:00+00:00,0.1554178640893877 -2024-04-10 18:00:00+00:00,0.1830637717142517 -2024-04-10 19:00:00+00:00,0.2080948667987964 -2024-04-10 20:00:00+00:00,0.23263619891506063 -2024-04-10 21:00:00+00:00,0.25275639905669955 -2024-04-10 22:00:00+00:00,0.2671345312887405 -2024-04-10 23:00:00+00:00,0.2771413809047949 -2024-04-11 00:00:00+00:00,0.2814014461528251 -2024-04-11 01:00:00+00:00,0.28073216975284754 -2024-04-11 02:00:00+00:00,0.27665569616596225 -2024-04-11 03:00:00+00:00,0.2719572829094106 -2024-04-11 04:00:00+00:00,0.2656658732148675 -2024-04-11 05:00:00+00:00,0.25928093082360115 -2024-04-11 06:00:00+00:00,0.2557081850193991 -2024-04-11 07:00:00+00:00,0.2529760523888157 -2024-04-11 08:00:00+00:00,0.2520764704610417 -2024-04-11 09:00:00+00:00,0.2506174933358866 -2024-04-11 10:00:00+00:00,0.24684536590021844 -2024-04-11 11:00:00+00:00,0.24144998428729805 -2024-04-11 12:00:00+00:00,0.23087682237594856 -2024-04-11 13:00:00+00:00,0.22171315634954109 -2024-04-11 14:00:00+00:00,0.21562564423906883 -2024-04-11 15:00:00+00:00,0.21001751551590958 -2024-04-11 16:00:00+00:00,0.20521120987338148 -2024-04-11 17:00:00+00:00,0.19976635190511047 -2024-04-11 18:00:00+00:00,0.19483628252210589 -2024-04-11 19:00:00+00:00,0.18938911268151215 -2024-04-11 20:00:00+00:00,0.18462044578751158 -2024-04-11 21:00:00+00:00,0.17910111724812838 -2024-04-11 22:00:00+00:00,0.1732317294191188 -2024-04-11 23:00:00+00:00,0.16649737950691906 -2024-04-12 00:00:00+00:00,0.15565255231972885 -2024-04-12 01:00:00+00:00,0.14448726296129122 -2024-04-12 02:00:00+00:00,0.13462154578562002 -2024-04-12 03:00:00+00:00,0.12625935521852485 -2024-04-12 04:00:00+00:00,0.11948472213332686 -2024-04-12 05:00:00+00:00,0.11330931445291806 -2024-04-12 06:00:00+00:00,0.10867581457538764 -2024-04-12 07:00:00+00:00,0.10452532171415443 -2024-04-12 08:00:00+00:00,0.10163012900921856 -2024-04-12 09:00:00+00:00,0.09936209720726982 -2024-04-12 10:00:00+00:00,0.09686904405502393 -2024-04-12 11:00:00+00:00,0.09242178077654833 -2024-04-12 12:00:00+00:00,0.08182627246084251 -2024-04-12 13:00:00+00:00,0.06905436080282766 -2024-04-12 14:00:00+00:00,0.05530282222332276 -2024-04-12 15:00:00+00:00,0.04462726122033963 -2024-04-12 16:00:00+00:00,0.036082308708266335 -2024-04-12 17:00:00+00:00,0.02963734237071653 -2024-04-12 18:00:00+00:00,0.02613503832692224 -2024-04-12 19:00:00+00:00,0.024984073509252025 -2024-04-12 20:00:00+00:00,0.02645899223456363 -2024-04-14 21:00:00+00:00,0.027399975578462164 -2024-04-14 22:00:00+00:00,0.029489962176200438 -2024-04-14 23:00:00+00:00,0.03249029918050083 -2024-04-15 00:00:00+00:00,0.038334734900529716 -2024-04-15 01:00:00+00:00,0.047307080342187 -2024-04-15 02:00:00+00:00,0.05987943523786106 -2024-04-15 03:00:00+00:00,0.07333830637744022 -2024-04-15 04:00:00+00:00,0.08825107979505714 -2024-04-15 05:00:00+00:00,0.10371445892905046 -2024-04-15 06:00:00+00:00,0.11920984807556115 -2024-04-15 07:00:00+00:00,0.13421566219072195 -2024-04-15 08:00:00+00:00,0.14718390930769015 -2024-04-15 09:00:00+00:00,0.1579874053876193 -2024-04-15 10:00:00+00:00,0.16736919354637253 -2024-04-15 11:00:00+00:00,0.1747472893985346 -2024-04-15 12:00:00+00:00,0.18445596330582473 -2024-04-15 13:00:00+00:00,0.19742424633445418 -2024-04-15 14:00:00+00:00,0.21085907694684725 -2024-04-15 15:00:00+00:00,0.22222083725610633 -2024-04-15 16:00:00+00:00,0.23185123424289888 -2024-04-15 17:00:00+00:00,0.23736886706190835 -2024-04-15 18:00:00+00:00,0.24000493961188302 -2024-04-15 19:00:00+00:00,0.24045283282909843 -2024-04-15 20:00:00+00:00,0.23969160081934363 -2024-04-15 21:00:00+00:00,0.237011980884775 -2024-04-15 22:00:00+00:00,0.23186868596054777 -2024-04-15 23:00:00+00:00,0.22548075622182068 -2024-04-16 00:00:00+00:00,0.21939406193331504 -2024-04-16 01:00:00+00:00,0.21446392526420957 -2024-04-16 02:00:00+00:00,0.20932634144629464 -2024-04-16 03:00:00+00:00,0.20439340747555154 -2024-04-16 04:00:00+00:00,0.19807322058588425 -2024-04-16 05:00:00+00:00,0.1919759317592832 -2024-04-16 06:00:00+00:00,0.18848504447933787 -2024-04-16 07:00:00+00:00,0.18449858064849023 -2024-04-16 08:00:00+00:00,0.18182472430701432 -2024-04-16 09:00:00+00:00,0.18060873926155613 -2024-04-16 10:00:00+00:00,0.18051702435441103 -2024-04-16 11:00:00+00:00,0.1810583959579127 -2024-04-16 12:00:00+00:00,0.18197034043341268 -2024-04-16 13:00:00+00:00,0.1814394643423696 -2024-04-16 14:00:00+00:00,0.1799376367526417 -2024-04-16 15:00:00+00:00,0.17724057893083314 -2024-04-16 16:00:00+00:00,0.17367538079483735 -2024-04-16 17:00:00+00:00,0.17123972246494976 -2024-04-16 18:00:00+00:00,0.1684038450257757 -2024-04-16 19:00:00+00:00,0.16482668230117709 -2024-04-16 20:00:00+00:00,0.1621762309312786 -2024-04-16 21:00:00+00:00,0.15890271351720917 -2024-04-16 22:00:00+00:00,0.15530337279797804 -2024-04-16 23:00:00+00:00,0.15152598092165362 -2024-04-17 00:00:00+00:00,0.1474258311285887 -2024-04-17 01:00:00+00:00,0.14285871651958534 -2024-04-17 02:00:00+00:00,0.13788082036096652 -2024-04-17 03:00:00+00:00,0.13206564982091096 -2024-04-17 04:00:00+00:00,0.12572952843801932 -2024-04-17 05:00:00+00:00,0.11863383960575008 -2024-04-17 06:00:00+00:00,0.10881834668221645 -2024-04-17 07:00:00+00:00,0.09976636798196228 -2024-04-17 08:00:00+00:00,0.09069021960313413 -2024-04-17 09:00:00+00:00,0.08237854878897924 -2024-04-17 10:00:00+00:00,0.07530453315481955 -2024-04-17 11:00:00+00:00,0.06923736196721864 -2024-04-17 12:00:00+00:00,0.06392959772697432 -2024-04-17 13:00:00+00:00,0.05964516315127555 -2024-04-17 14:00:00+00:00,0.056090785532480154 -2024-04-17 15:00:00+00:00,0.0524462097663367 -2024-04-17 16:00:00+00:00,0.04339211728756085 -2024-04-17 17:00:00+00:00,0.03192944341561839 -2024-04-17 18:00:00+00:00,0.02009150384001656 -2024-04-17 19:00:00+00:00,0.008321901672720504 -2024-04-17 20:00:00+00:00,-0.0018336338610499391 -2024-04-17 21:00:00+00:00,-0.011462037143288915 -2024-04-17 22:00:00+00:00,-0.02105881266073175 -2024-04-17 23:00:00+00:00,-0.029127423426307184 -2024-04-18 00:00:00+00:00,-0.036610391393484265 -2024-04-18 01:00:00+00:00,-0.04425570597217354 -2024-04-18 02:00:00+00:00,-0.05292107155231403 -2024-04-18 03:00:00+00:00,-0.05997570105382849 -2024-04-18 04:00:00+00:00,-0.06463674741867646 -2024-04-18 05:00:00+00:00,-0.06753351759801521 -2024-04-18 06:00:00+00:00,-0.06919419619276257 -2024-04-18 07:00:00+00:00,-0.06991512552339262 -2024-04-18 08:00:00+00:00,-0.0684778154289277 -2024-04-18 09:00:00+00:00,-0.06458595143097348 -2024-04-18 10:00:00+00:00,-0.05876571044626309 -2024-04-18 11:00:00+00:00,-0.05308859461447087 -2024-04-18 12:00:00+00:00,-0.04770969983469413 -2024-04-18 13:00:00+00:00,-0.04023397467179541 -2024-04-18 14:00:00+00:00,-0.029973245175485594 -2024-04-18 15:00:00+00:00,-0.018771540959058343 -2024-04-18 16:00:00+00:00,-0.007428753228072287 -2024-04-18 17:00:00+00:00,0.0037119663591373133 -2024-04-18 18:00:00+00:00,0.013431563994427374 -2024-04-18 19:00:00+00:00,0.022103205284682674 -2024-04-18 20:00:00+00:00,0.03018740737302012 -2024-04-18 21:00:00+00:00,0.03659714829683459 -2024-04-18 22:00:00+00:00,0.042192078941923054 -2024-04-18 23:00:00+00:00,0.04637630118718321 -2024-04-19 00:00:00+00:00,0.04957463574519569 -2024-04-19 01:00:00+00:00,0.04563620575717156 -2024-04-19 02:00:00+00:00,0.031950396700905714 -2024-04-19 03:00:00+00:00,0.019341041132559147 -2024-04-19 04:00:00+00:00,0.00821475985735255 -2024-04-19 05:00:00+00:00,-0.0011940624091097878 -2024-04-19 06:00:00+00:00,-0.007658387349207622 -2024-04-19 07:00:00+00:00,-0.011091203170842046 -2024-04-19 08:00:00+00:00,-0.013407868622919976 -2024-04-19 09:00:00+00:00,-0.013692323190326578 -2024-04-19 10:00:00+00:00,-0.01195491389100297 -2024-04-19 11:00:00+00:00,-0.007833442908821436 -2024-04-19 12:00:00+00:00,-0.0034688800221282664 -2024-04-19 13:00:00+00:00,0.0015451055594308694 -2024-04-19 14:00:00+00:00,0.006843363430795959 -2024-04-19 15:00:00+00:00,0.01134041693800284 -2024-04-19 16:00:00+00:00,0.01558424230219509 -2024-04-19 17:00:00+00:00,0.02012930991137291 -2024-04-19 18:00:00+00:00,0.023813239634402145 -2024-04-19 19:00:00+00:00,0.02714080117063592 -2024-04-19 20:00:00+00:00,0.03063092460346096 -2024-04-21 21:00:00+00:00,0.0314812776841536 -2024-04-21 22:00:00+00:00,0.03292199829675391 -2024-04-21 23:00:00+00:00,0.03461409782419498 -2024-04-22 00:00:00+00:00,0.03688647499181357 -2024-04-22 01:00:00+00:00,0.03844187256102862 -2024-04-22 02:00:00+00:00,0.039984995700130914 -2024-04-22 03:00:00+00:00,0.041842985400643413 -2024-04-22 04:00:00+00:00,0.044168237906565155 -2024-04-22 05:00:00+00:00,0.04665952625509573 -2024-04-22 06:00:00+00:00,0.048268081152790826 -2024-04-22 07:00:00+00:00,0.048825886095431356 -2024-04-22 08:00:00+00:00,0.04960565881604761 -2024-04-22 09:00:00+00:00,0.05112047588436255 -2024-04-22 10:00:00+00:00,0.052692673983240755 -2024-04-22 11:00:00+00:00,0.054210003827185126 -2024-04-22 12:00:00+00:00,0.05525053057063334 -2024-04-22 13:00:00+00:00,0.055668143357827396 -2024-04-22 14:00:00+00:00,0.05545082833776839 -2024-04-22 15:00:00+00:00,0.05539064669691794 -2024-04-22 16:00:00+00:00,0.0556568586978277 -2024-04-22 17:00:00+00:00,0.056289973301049165 -2024-04-22 18:00:00+00:00,0.056736299542934215 -2024-04-22 19:00:00+00:00,0.057487198770628 -2024-04-22 20:00:00+00:00,0.058258610112487105 -2024-04-22 21:00:00+00:00,0.05861438558066964 -2024-04-22 22:00:00+00:00,0.05841381441269504 -2024-04-22 23:00:00+00:00,0.05775786774046855 -2024-04-23 00:00:00+00:00,0.05633633848601544 -2024-04-23 01:00:00+00:00,0.05340785452900955 -2024-04-23 02:00:00+00:00,0.05018885144557733 -2024-04-23 03:00:00+00:00,0.04668256735863126 -2024-04-23 04:00:00+00:00,0.042850265472652506 -2024-04-23 05:00:00+00:00,0.03936357676769345 -2024-04-23 06:00:00+00:00,0.03605893681082828 -2024-04-23 07:00:00+00:00,0.03391671551588873 -2024-04-23 08:00:00+00:00,0.03288906859427449 -2024-04-23 09:00:00+00:00,0.032443198910881904 -2024-04-23 10:00:00+00:00,0.031689182319944574 -2024-04-23 11:00:00+00:00,0.030773143620064423 -2024-04-23 12:00:00+00:00,0.029861069972074876 -2024-04-23 13:00:00+00:00,0.0262349382345151 -2024-04-23 14:00:00+00:00,0.023494960610002058 -2024-04-23 15:00:00+00:00,0.02175148875379054 -2024-04-23 16:00:00+00:00,0.020802062368162774 -2024-04-23 17:00:00+00:00,0.019172059911682682 -2024-04-23 18:00:00+00:00,0.017237008058282825 -2024-04-23 19:00:00+00:00,0.016241855009248376 -2024-04-23 20:00:00+00:00,0.01604241440767293 -2024-04-23 21:00:00+00:00,0.015470018005477275 -2024-04-23 22:00:00+00:00,0.014674561213709993 -2024-04-23 23:00:00+00:00,0.013221051630751266 -2024-04-24 00:00:00+00:00,0.01211909794796524 -2024-04-24 01:00:00+00:00,0.011299545881825211 -2024-04-24 02:00:00+00:00,0.010897567824155602 -2024-04-24 03:00:00+00:00,0.011343865048152657 -2024-04-24 04:00:00+00:00,0.012160913272167574 -2024-04-24 05:00:00+00:00,0.013682242983548108 -2024-04-24 06:00:00+00:00,0.01636369709989293 -2024-04-24 07:00:00+00:00,0.019211526303623123 -2024-04-24 08:00:00+00:00,0.021922698073832618 -2024-04-24 09:00:00+00:00,0.024914529802995217 -2024-04-24 10:00:00+00:00,0.027836742909116266 -2024-04-24 11:00:00+00:00,0.030387006691739826 -2024-04-24 12:00:00+00:00,0.032868144234686314 -2024-04-24 13:00:00+00:00,0.03565938086906844 -2024-04-24 14:00:00+00:00,0.038720519330654075 -2024-04-24 15:00:00+00:00,0.04352090861510863 -2024-04-24 16:00:00+00:00,0.04901272607992351 -2024-04-24 17:00:00+00:00,0.05733034006172555 -2024-04-24 18:00:00+00:00,0.06650142089373556 -2024-04-24 19:00:00+00:00,0.07608564612181042 -2024-04-24 20:00:00+00:00,0.08598688988561151 -2024-04-24 21:00:00+00:00,0.09363278231236974 -2024-04-24 22:00:00+00:00,0.09910725610479346 -2024-04-24 23:00:00+00:00,0.103377945788332 -2024-04-25 00:00:00+00:00,0.10810984472896112 -2024-04-25 01:00:00+00:00,0.11293949643388991 -2024-04-25 02:00:00+00:00,0.11798991286710356 -2024-04-25 03:00:00+00:00,0.1230598411167202 -2024-04-25 04:00:00+00:00,0.12963791195016328 -2024-04-25 05:00:00+00:00,0.13763776208715595 -2024-04-25 06:00:00+00:00,0.14589141277853354 -2024-04-25 07:00:00+00:00,0.15294864130188568 -2024-04-25 08:00:00+00:00,0.15925537183424793 -2024-04-25 09:00:00+00:00,0.16379185251680553 -2024-04-25 10:00:00+00:00,0.16517175287591226 -2024-04-25 11:00:00+00:00,0.16431582634024164 -2024-04-25 12:00:00+00:00,0.16367532564597614 -2024-04-25 13:00:00+00:00,0.16238365297839485 -2024-04-25 14:00:00+00:00,0.15905722823266882 -2024-04-25 15:00:00+00:00,0.15348554700701117 -2024-04-25 16:00:00+00:00,0.1463531081499149 -2024-04-25 17:00:00+00:00,0.13908046333707322 -2024-04-25 18:00:00+00:00,0.13237450508725582 -2024-04-25 19:00:00+00:00,0.1265841054459598 -2024-04-25 20:00:00+00:00,0.12158999914630829 -2024-04-25 21:00:00+00:00,0.11634576205395265 -2024-04-25 22:00:00+00:00,0.11050776022786366 -2024-04-25 23:00:00+00:00,0.10514948713111688 -2024-04-26 00:00:00+00:00,0.1003564931105204 -2024-04-26 01:00:00+00:00,0.09527024351226271 -2024-04-26 02:00:00+00:00,0.08963486163683762 -2024-04-26 03:00:00+00:00,0.08974527473640632 -2024-04-26 04:00:00+00:00,0.09733103562423195 -2024-04-26 05:00:00+00:00,0.10748298934562037 -2024-04-26 06:00:00+00:00,0.12283773532750553 -2024-04-26 07:00:00+00:00,0.145521873853492 -2024-04-26 08:00:00+00:00,0.16899763833885312 -2024-04-26 09:00:00+00:00,0.1934278345446232 -2024-04-26 10:00:00+00:00,0.21877688288904676 -2024-04-26 11:00:00+00:00,0.24287437418120805 -2024-04-26 12:00:00+00:00,0.26464184869098145 -2024-04-26 13:00:00+00:00,0.28478414171340477 -2024-04-26 14:00:00+00:00,0.30749969561274715 -2024-04-26 15:00:00+00:00,0.33561625077900265 -2024-04-26 16:00:00+00:00,0.3653578277772722 -2024-04-26 17:00:00+00:00,0.3945557396019057 -2024-04-26 18:00:00+00:00,0.4213340146531609 -2024-04-26 19:00:00+00:00,0.4468481655938537 -2024-04-26 20:00:00+00:00,0.47647329598153004 -2024-04-28 21:00:00+00:00,0.4994788663760934 -2024-04-28 22:00:00+00:00,0.5206656652981615 -2024-04-28 23:00:00+00:00,0.5380162837177983 -2024-04-29 00:00:00+00:00,0.5507309359937635 -2024-04-29 01:00:00+00:00,0.5742055686051071 -2024-04-29 02:00:00+00:00,0.6050599675379644 -2024-04-29 03:00:00+00:00,0.6380060464603867 -2024-04-29 04:00:00+00:00,0.6197987262613398 -2024-04-29 05:00:00+00:00,0.5768570126261946 -2024-04-29 06:00:00+00:00,0.5231138043039969 -2024-04-29 07:00:00+00:00,0.4407405536984248 -2024-04-29 08:00:00+00:00,0.34876179330892615 -2024-04-29 09:00:00+00:00,0.2525396927600315 -2024-04-29 10:00:00+00:00,0.16050368925053277 -2024-04-29 11:00:00+00:00,0.08105458278330979 -2024-04-29 12:00:00+00:00,0.016490197803472204 -2024-04-29 13:00:00+00:00,-0.030755009818499136 -2024-04-29 14:00:00+00:00,-0.06507675633839097 -2024-04-29 15:00:00+00:00,-0.08877644307624916 -2024-04-29 16:00:00+00:00,-0.11852527926571983 -2024-04-29 17:00:00+00:00,-0.1459123321789903 -2024-04-29 18:00:00+00:00,-0.17458188093240437 -2024-04-29 19:00:00+00:00,-0.19851685385396833 -2024-04-29 20:00:00+00:00,-0.21276742886144132 -2024-04-29 21:00:00+00:00,-0.22065734271698248 -2024-04-29 22:00:00+00:00,-0.2241864424912134 -2024-04-29 23:00:00+00:00,-0.22318544628901438 -2024-04-30 00:00:00+00:00,-0.2112147887143797 -2024-04-30 01:00:00+00:00,-0.1918605492778288 -2024-04-30 02:00:00+00:00,-0.17064147097115817 -2024-04-30 03:00:00+00:00,-0.14867382660362644 -2024-04-30 04:00:00+00:00,-0.1267306297052979 -2024-04-30 05:00:00+00:00,-0.10461121845481072 -2024-04-30 06:00:00+00:00,-0.08323864775922288 -2024-04-30 07:00:00+00:00,-0.06267453662109619 -2024-04-30 08:00:00+00:00,-0.042403591062134774 -2024-04-30 09:00:00+00:00,-0.023489793516991327 -2024-04-30 10:00:00+00:00,-0.006412447832409645 -2024-04-30 11:00:00+00:00,0.009191642548319688 -2024-04-30 12:00:00+00:00,0.030978682376641472 -2024-04-30 13:00:00+00:00,0.055013541007616504 -2024-04-30 14:00:00+00:00,0.07760414865559134 -2024-04-30 15:00:00+00:00,0.10127884258302192 -2024-04-30 16:00:00+00:00,0.12285285713482008 -2024-04-30 17:00:00+00:00,0.14332660497408095 -2024-04-30 18:00:00+00:00,0.16381677184188798 -2024-04-30 19:00:00+00:00,0.1830292740328851 -2024-04-30 20:00:00+00:00,0.2016759081656477 -2024-04-30 21:00:00+00:00,0.21701505008363736 -2024-04-30 22:00:00+00:00,0.22872712494005804 -2024-04-30 23:00:00+00:00,0.23768467378265012 -2024-05-01 00:00:00+00:00,0.2439363469535275 -2024-05-01 01:00:00+00:00,0.24856559131618117 -2024-05-01 02:00:00+00:00,0.25259721486080067 -2024-05-01 03:00:00+00:00,0.2560096468809787 -2024-05-01 04:00:00+00:00,0.25736219684402145 -2024-05-01 05:00:00+00:00,0.2576755709399271 -2024-05-01 06:00:00+00:00,0.2576113802754747 -2024-05-01 07:00:00+00:00,0.25529085843360005 -2024-05-01 08:00:00+00:00,0.2522446159538645 -2024-05-01 09:00:00+00:00,0.24775391942437291 -2024-05-01 10:00:00+00:00,0.24190096018734583 -2024-05-01 11:00:00+00:00,0.2344231459251219 -2024-05-01 12:00:00+00:00,0.22426893610774074 -2024-05-01 13:00:00+00:00,0.20990565304141434 -2024-05-01 14:00:00+00:00,0.19386477388169154 -2024-05-01 15:00:00+00:00,0.17690021727720398 -2024-05-01 16:00:00+00:00,0.15933229494579843 -2024-05-01 17:00:00+00:00,0.14239070730106387 -2024-05-01 18:00:00+00:00,0.11801324010615073 -2024-05-01 19:00:00+00:00,0.09575953730800345 -2024-05-01 20:00:00+00:00,0.027347682569477075 -2024-05-01 21:00:00+00:00,-0.06902398255580246 -2024-05-01 22:00:00+00:00,-0.15929963759771007 -2024-05-01 23:00:00+00:00,-0.23603217588408082 -2024-05-02 00:00:00+00:00,-0.29505704997845644 -2024-05-02 01:00:00+00:00,-0.3382112988718032 -2024-05-02 02:00:00+00:00,-0.3724694088393378 -2024-05-02 03:00:00+00:00,-0.39660821591754836 -2024-05-02 04:00:00+00:00,-0.41406985131876795 -2024-05-02 05:00:00+00:00,-0.4275772766306005 -2024-05-02 06:00:00+00:00,-0.44110371998600045 -2024-05-02 07:00:00+00:00,-0.4519065577455513 -2024-05-02 08:00:00+00:00,-0.46505386646789415 -2024-05-02 09:00:00+00:00,-0.4760069587747041 -2024-05-02 10:00:00+00:00,-0.4866698229422469 -2024-05-02 11:00:00+00:00,-0.5011304570537335 -2024-05-02 12:00:00+00:00,-0.5195812032859409 -2024-05-02 13:00:00+00:00,-0.5402640463080639 -2024-05-02 14:00:00+00:00,-0.5653590994302621 -2024-05-02 15:00:00+00:00,-0.5950987393473965 -2024-05-02 16:00:00+00:00,-0.6251372987201853 -2024-05-02 17:00:00+00:00,-0.6585221343004053 -2024-05-02 18:00:00+00:00,-0.6959544971840901 -2024-05-02 19:00:00+00:00,-0.7302054838055428 -2024-05-02 20:00:00+00:00,-0.7513764552743694 -2024-05-02 21:00:00+00:00,-0.7604737789573801 -2024-05-02 22:00:00+00:00,-0.7671643439742557 -2024-05-02 23:00:00+00:00,-0.772448855492443 -2024-05-03 00:00:00+00:00,-0.7746549457398608 -2024-05-03 01:00:00+00:00,-0.7778685325778436 -2024-05-03 02:00:00+00:00,-0.7766930152165137 -2024-05-03 03:00:00+00:00,-0.7715365069247735 -2024-05-03 04:00:00+00:00,-0.7638165585827197 -2024-05-03 05:00:00+00:00,-0.751973068906075 -2024-05-03 06:00:00+00:00,-0.7318251993471278 -2024-05-03 07:00:00+00:00,-0.7056052416579917 -2024-05-03 08:00:00+00:00,-0.6770049524574915 -2024-05-03 09:00:00+00:00,-0.6491344878348377 -2024-05-03 10:00:00+00:00,-0.6209690669897117 -2024-05-03 11:00:00+00:00,-0.5910206778283932 -2024-05-03 12:00:00+00:00,-0.5761320629939778 -2024-05-03 13:00:00+00:00,-0.5650445741267336 -2024-05-03 14:00:00+00:00,-0.5497297970789614 -2024-05-03 15:00:00+00:00,-0.5319215860149435 -2024-05-03 16:00:00+00:00,-0.5119526294557473 -2024-05-03 17:00:00+00:00,-0.4900625979341145 -2024-05-03 18:00:00+00:00,-0.46648849236665474 -2024-05-03 19:00:00+00:00,-0.4427653168802953 -2024-05-03 20:00:00+00:00,-0.41768344849731803 -2024-05-05 21:00:00+00:00,-0.3945857601205861 -2024-05-05 22:00:00+00:00,-0.3665337938504265 -2024-05-05 23:00:00+00:00,-0.3292629899954795 -2024-05-06 00:00:00+00:00,-0.2912783061698251 -2024-05-06 01:00:00+00:00,-0.251780351529069 -2024-05-06 02:00:00+00:00,-0.20971948664570586 -2024-05-06 03:00:00+00:00,-0.16524239404486363 -2024-05-06 04:00:00+00:00,-0.12101434557727951 -2024-05-06 05:00:00+00:00,-0.0790808108551631 -2024-05-06 06:00:00+00:00,-0.044400567911409394 -2024-05-06 07:00:00+00:00,-0.014164542081828869 -2024-05-06 08:00:00+00:00,0.01060043244656331 -2024-05-06 09:00:00+00:00,0.03139564297625637 -2024-05-06 10:00:00+00:00,0.04903559291380996 -2024-05-06 11:00:00+00:00,0.06272009873896385 -2024-05-06 12:00:00+00:00,0.06936366812280395 -2024-05-06 13:00:00+00:00,0.07536353771106381 -2024-05-06 14:00:00+00:00,0.08264345748273835 -2024-05-06 15:00:00+00:00,0.089054846629244 -2024-05-06 16:00:00+00:00,0.09516455436510539 -2024-05-06 17:00:00+00:00,0.10057990262468479 -2024-05-06 18:00:00+00:00,0.10511073403282353 -2024-05-06 19:00:00+00:00,0.10902489993539735 -2024-05-06 20:00:00+00:00,0.1114766527787696 -2024-05-06 21:00:00+00:00,0.11267705391967428 -2024-05-06 22:00:00+00:00,0.11368279295610265 -2024-05-06 23:00:00+00:00,0.11883361035258794 -2024-05-07 00:00:00+00:00,0.12115957108478558 -2024-05-07 01:00:00+00:00,0.1280177432116235 -2024-05-07 02:00:00+00:00,0.14009666162084633 -2024-05-07 03:00:00+00:00,0.1545432004121164 -2024-05-07 04:00:00+00:00,0.16819949877592735 -2024-05-07 05:00:00+00:00,0.18128232596322438 -2024-05-07 06:00:00+00:00,0.18981155332188604 -2024-05-07 07:00:00+00:00,0.19087360407554377 -2024-05-07 08:00:00+00:00,0.19134357656643788 -2024-05-07 09:00:00+00:00,0.19348654172715024 -2024-05-07 10:00:00+00:00,0.19478460260017696 -2024-05-07 11:00:00+00:00,0.19583881462581076 -2024-05-07 12:00:00+00:00,0.19441976369019634 -2024-05-07 13:00:00+00:00,0.1909541511442889 -2024-05-07 14:00:00+00:00,0.18622346850056548 -2024-05-07 15:00:00+00:00,0.18325161880362728 -2024-05-07 16:00:00+00:00,0.17970035026815767 -2024-05-07 17:00:00+00:00,0.17790780229212375 -2024-05-07 18:00:00+00:00,0.17840578184885067 -2024-05-07 19:00:00+00:00,0.17821552382119882 -2024-05-07 20:00:00+00:00,0.17805921468269986 -2024-05-07 21:00:00+00:00,0.17628210062116706 -2024-05-07 22:00:00+00:00,0.17528645703019524 -2024-05-07 23:00:00+00:00,0.17492789087504437 -2024-05-08 00:00:00+00:00,0.1764713541798224 -2024-05-08 01:00:00+00:00,0.18260077096902433 -2024-05-08 02:00:00+00:00,0.1913137999544573 -2024-05-08 03:00:00+00:00,0.20073743836973099 -2024-05-08 04:00:00+00:00,0.20983044765972858 -2024-05-08 05:00:00+00:00,0.21772939958042523 -2024-05-08 06:00:00+00:00,0.22540551145482174 -2024-05-08 07:00:00+00:00,0.2330468949023255 -2024-05-08 08:00:00+00:00,0.24139403554279049 -2024-05-08 09:00:00+00:00,0.24858950657138115 -2024-05-08 10:00:00+00:00,0.253959804988014 -2024-05-08 11:00:00+00:00,0.2590169429787579 -2024-05-08 12:00:00+00:00,0.2649528268751771 -2024-05-08 13:00:00+00:00,0.2709871198144895 -2024-05-08 14:00:00+00:00,0.2753833196013863 -2024-05-08 15:00:00+00:00,0.2752781597720666 -2024-05-08 16:00:00+00:00,0.27367617173042813 -2024-05-08 17:00:00+00:00,0.27056430743770576 -2024-05-08 18:00:00+00:00,0.26710553169711776 -2024-05-08 19:00:00+00:00,0.263352842935841 -2024-05-08 20:00:00+00:00,0.2573531636740111 -2024-05-08 21:00:00+00:00,0.24968902189752934 -2024-05-08 22:00:00+00:00,0.24175561299269235 -2024-05-08 23:00:00+00:00,0.2300721512821964 -2024-05-09 00:00:00+00:00,0.2201468273415195 -2024-05-09 01:00:00+00:00,0.21054429202760905 -2024-05-09 02:00:00+00:00,0.2015185792608259 -2024-05-09 03:00:00+00:00,0.1921024368982201 -2024-05-09 04:00:00+00:00,0.18284834740989814 -2024-05-09 05:00:00+00:00,0.1745938254457912 -2024-05-09 06:00:00+00:00,0.16910657698342224 -2024-05-09 07:00:00+00:00,0.16653237775325785 -2024-05-09 08:00:00+00:00,0.1656989483086148 -2024-05-09 09:00:00+00:00,0.16664371059031724 -2024-05-09 10:00:00+00:00,0.16838534918353742 -2024-05-09 11:00:00+00:00,0.16952914834391172 -2024-05-09 12:00:00+00:00,0.16705985947450558 -2024-05-09 13:00:00+00:00,0.16119714513804959 -2024-05-09 14:00:00+00:00,0.15172748671307873 -2024-05-09 15:00:00+00:00,0.14211005628291162 -2024-05-09 16:00:00+00:00,0.1317187307921886 -2024-05-09 17:00:00+00:00,0.11989027849540565 -2024-05-09 18:00:00+00:00,0.10580075327021737 -2024-05-09 19:00:00+00:00,0.09056812439055277 -2024-05-09 20:00:00+00:00,0.07596097433678504 -2024-05-09 21:00:00+00:00,0.06225869073092358 -2024-05-09 22:00:00+00:00,0.047849243832481105 -2024-05-09 23:00:00+00:00,0.034217228567934285 -2024-05-10 00:00:00+00:00,0.02391082657253064 -2024-05-10 01:00:00+00:00,0.018615661200122976 -2024-05-10 02:00:00+00:00,0.017845312269168054 -2024-05-10 03:00:00+00:00,0.01944806244827777 -2024-05-10 04:00:00+00:00,0.02151643300049491 -2024-05-10 05:00:00+00:00,0.022953365710892217 -2024-05-10 06:00:00+00:00,0.02463269563028961 -2024-05-10 07:00:00+00:00,0.026591004350139103 -2024-05-10 08:00:00+00:00,0.028991676751406764 -2024-05-10 09:00:00+00:00,0.03142982578038722 -2024-05-10 10:00:00+00:00,0.03420255901260836 -2024-05-10 11:00:00+00:00,0.03688192525345578 -2024-05-10 12:00:00+00:00,0.04063437805517828 -2024-05-10 13:00:00+00:00,0.041786621197057054 -2024-05-10 14:00:00+00:00,0.0449027483961022 -2024-05-10 15:00:00+00:00,0.048665016772916125 -2024-05-10 16:00:00+00:00,0.0521252717809496 -2024-05-10 17:00:00+00:00,0.05528748732828434 -2024-05-10 18:00:00+00:00,0.05809875291183608 -2024-05-10 19:00:00+00:00,0.05926154191106212 -2024-05-10 20:00:00+00:00,0.05909934686565571 -2024-05-12 21:00:00+00:00,0.056911534787552176 -2024-05-12 22:00:00+00:00,0.05469947988100313 -2024-05-12 23:00:00+00:00,0.05326123923119426 -2024-05-13 00:00:00+00:00,0.05379363611145631 -2024-05-13 01:00:00+00:00,0.053974777279841166 -2024-05-13 02:00:00+00:00,0.05230352791849139 -2024-05-13 03:00:00+00:00,0.04972681488013822 -2024-05-13 04:00:00+00:00,0.047306307138256926 -2024-05-13 05:00:00+00:00,0.04554522236493315 -2024-05-13 06:00:00+00:00,0.044249780996231065 -2024-05-13 07:00:00+00:00,0.04381951867425121 -2024-05-13 08:00:00+00:00,0.04372658000488348 -2024-05-13 09:00:00+00:00,0.04400555019900939 -2024-05-13 10:00:00+00:00,0.044179342211474966 -2024-05-13 11:00:00+00:00,0.04417740645538123 -2024-05-13 12:00:00+00:00,0.04205021025388651 -2024-05-13 13:00:00+00:00,0.039914874291471544 -2024-05-13 14:00:00+00:00,0.03905579911217022 -2024-05-13 15:00:00+00:00,0.04306891685678287 -2024-05-13 16:00:00+00:00,0.05051333358508185 -2024-05-13 17:00:00+00:00,0.05974663305339196 -2024-05-13 18:00:00+00:00,0.06903424644233841 -2024-05-13 19:00:00+00:00,0.0779829127629935 -2024-05-13 20:00:00+00:00,0.08613610858355035 -2024-05-13 21:00:00+00:00,0.09294363146966979 -2024-05-13 22:00:00+00:00,0.0986900108462325 -2024-05-13 23:00:00+00:00,0.1032451168287471 -2024-05-14 00:00:00+00:00,0.10761649007556158 -2024-05-14 01:00:00+00:00,0.11348829733475224 -2024-05-14 02:00:00+00:00,0.12005316325857335 -2024-05-14 03:00:00+00:00,0.12592411705308426 -2024-05-14 04:00:00+00:00,0.1307334597025568 -2024-05-14 05:00:00+00:00,0.1344868675246194 -2024-05-14 06:00:00+00:00,0.13755378571712334 -2024-05-14 07:00:00+00:00,0.1399075926793724 -2024-05-14 08:00:00+00:00,0.14124453185556915 -2024-05-14 09:00:00+00:00,0.13992475815638794 -2024-05-14 10:00:00+00:00,0.13788665738301084 -2024-05-14 11:00:00+00:00,0.1355578437093504 -2024-05-14 12:00:00+00:00,0.13493400741051617 -2024-05-14 13:00:00+00:00,0.13143446286220106 -2024-05-14 14:00:00+00:00,0.1266545429136375 -2024-05-14 15:00:00+00:00,0.12285281186726395 -2024-05-14 16:00:00+00:00,0.11926438896972719 -2024-05-14 17:00:00+00:00,0.11604503519721043 -2024-05-14 18:00:00+00:00,0.11187638025307384 -2024-05-14 19:00:00+00:00,0.10747512100413262 -2024-05-14 20:00:00+00:00,0.10240329231450904 -2024-05-14 21:00:00+00:00,0.09686386743425411 -2024-05-14 22:00:00+00:00,0.09129242877026157 -2024-05-14 23:00:00+00:00,0.08712508553641271 -2024-05-15 00:00:00+00:00,0.08178361136725039 -2024-05-15 01:00:00+00:00,0.07576791335150161 -2024-05-15 02:00:00+00:00,0.07058909643706363 -2024-05-15 03:00:00+00:00,0.06502433307352003 -2024-05-15 04:00:00+00:00,0.05878681746105767 -2024-05-15 05:00:00+00:00,0.050374188852972554 -2024-05-15 06:00:00+00:00,0.04122756638810369 -2024-05-15 07:00:00+00:00,0.029469653757281864 -2024-05-15 08:00:00+00:00,0.009476658599089686 -2024-05-15 09:00:00+00:00,-0.01177966525423356 -2024-05-15 10:00:00+00:00,-0.03410662221816868 -2024-05-15 11:00:00+00:00,-0.056877562026619935 -2024-05-15 12:00:00+00:00,-0.0874581567743682 -2024-05-15 13:00:00+00:00,-0.11123953390920802 -2024-05-15 14:00:00+00:00,-0.13605567787809764 -2024-05-15 15:00:00+00:00,-0.1645361725938871 -2024-05-15 16:00:00+00:00,-0.19414739985517954 -2024-05-15 17:00:00+00:00,-0.22617400221196557 -2024-05-15 18:00:00+00:00,-0.2549833790299342 -2024-05-15 19:00:00+00:00,-0.2786797391663785 -2024-05-15 20:00:00+00:00,-0.29834698110402114 -2024-05-15 21:00:00+00:00,-0.3152297192232279 -2024-05-15 22:00:00+00:00,-0.33283206703807966 -2024-05-15 23:00:00+00:00,-0.35335226465241754 -2024-05-16 00:00:00+00:00,-0.383903440922196 -2024-05-16 01:00:00+00:00,-0.4114208590953804 -2024-05-16 02:00:00+00:00,-0.4360764995964482 -2024-05-16 03:00:00+00:00,-0.4571944874685603 -2024-05-16 04:00:00+00:00,-0.47452042364496755 -2024-05-16 05:00:00+00:00,-0.4836188243865703 -2024-05-16 06:00:00+00:00,-0.48302958003183877 -2024-05-16 07:00:00+00:00,-0.474484599240946 -2024-05-16 08:00:00+00:00,-0.45556519665861467 -2024-05-16 09:00:00+00:00,-0.43071899081722614 -2024-05-16 10:00:00+00:00,-0.402494717391329 -2024-05-16 11:00:00+00:00,-0.36946063196694584 -2024-05-16 12:00:00+00:00,-0.32737725886896196 -2024-05-16 13:00:00+00:00,-0.2786568173086365 -2024-05-16 14:00:00+00:00,-0.23027989600229257 -2024-05-16 15:00:00+00:00,-0.18483142452817444 -2024-05-16 16:00:00+00:00,-0.14303607470246013 -2024-05-16 17:00:00+00:00,-0.10563472014648771 -2024-05-16 18:00:00+00:00,-0.07147882458498116 -2024-05-16 19:00:00+00:00,-0.03953286177973222 -2024-05-16 20:00:00+00:00,-0.010907595933371424 -2024-05-16 21:00:00+00:00,0.013681965793952694 -2024-05-16 22:00:00+00:00,0.03467708759362957 -2024-05-16 23:00:00+00:00,0.05252682849509899 -2024-05-17 00:00:00+00:00,0.06811548537095465 -2024-05-17 01:00:00+00:00,0.08724954919710083 -2024-05-17 02:00:00+00:00,0.10828139967654009 -2024-05-17 03:00:00+00:00,0.12781325555530249 -2024-05-17 04:00:00+00:00,0.14534501010995737 -2024-05-17 05:00:00+00:00,0.16022923593755056 -2024-05-17 06:00:00+00:00,0.1698835202724645 -2024-05-17 07:00:00+00:00,0.17819041778011013 -2024-05-17 08:00:00+00:00,0.1854972459135029 -2024-05-17 09:00:00+00:00,0.1908608868767489 -2024-05-17 10:00:00+00:00,0.19438612077259462 -2024-05-17 11:00:00+00:00,0.19638650351422154 -2024-05-17 12:00:00+00:00,0.19582567970546358 -2024-05-17 13:00:00+00:00,0.19249275667515278 -2024-05-17 14:00:00+00:00,0.18171786711970017 -2024-05-17 15:00:00+00:00,0.16923714006735988 -2024-05-17 16:00:00+00:00,0.15668966491357467 -2024-05-17 17:00:00+00:00,0.1449753442571788 -2024-05-17 18:00:00+00:00,0.13430620084892197 -2024-05-17 19:00:00+00:00,0.12451342858774127 -2024-05-17 20:00:00+00:00,0.1149730150704113 -2024-05-19 21:00:00+00:00,0.10595648793573084 -2024-05-19 22:00:00+00:00,0.09832911724866092 -2024-05-19 23:00:00+00:00,0.09278520737446512 -2024-05-20 00:00:00+00:00,0.09033343754191764 -2024-05-20 01:00:00+00:00,0.08961476350437114 -2024-05-20 02:00:00+00:00,0.08901806344513777 -2024-05-20 03:00:00+00:00,0.08690626112254976 -2024-05-20 04:00:00+00:00,0.08444348915865556 -2024-05-20 05:00:00+00:00,0.08067629238485412 -2024-05-20 06:00:00+00:00,0.07674328913967908 -2024-05-20 07:00:00+00:00,0.07251426083665907 -2024-05-20 08:00:00+00:00,0.06739029577974819 -2024-05-20 09:00:00+00:00,0.06226713594951673 -2024-05-20 10:00:00+00:00,0.05717539942979634 -2024-05-20 11:00:00+00:00,0.052926001259727344 -2024-05-20 12:00:00+00:00,0.05578418873708388 -2024-05-20 13:00:00+00:00,0.06162371764424258 -2024-05-20 14:00:00+00:00,0.07028931153301762 -2024-05-20 17:00:00+00:00,0.08023939522001962 -2024-05-20 18:00:00+00:00,0.09178980568648895 -2024-05-20 19:00:00+00:00,0.10387956798871334 -2024-05-20 20:00:00+00:00,0.1151815870519502 -2024-05-20 21:00:00+00:00,0.12443287696139033 -2024-05-20 22:00:00+00:00,0.13220459293995437 -2024-05-20 23:00:00+00:00,0.1404781051773438 -2024-05-21 00:00:00+00:00,0.1487270592028606 -2024-05-21 01:00:00+00:00,0.15705075622540093 -2024-05-21 02:00:00+00:00,0.16389310518284117 -2024-05-21 03:00:00+00:00,0.16977673539588328 -2024-05-21 04:00:00+00:00,0.173885441654498 -2024-05-21 05:00:00+00:00,0.17515314558132777 -2024-05-21 06:00:00+00:00,0.17211638004459467 -2024-05-21 07:00:00+00:00,0.1659092444219843 -2024-05-21 08:00:00+00:00,0.1580132269789333 -2024-05-21 09:00:00+00:00,0.14687881107112405 -2024-05-21 10:00:00+00:00,0.13559089813084452 -2024-05-21 11:00:00+00:00,0.12464901234853981 -2024-05-21 12:00:00+00:00,0.11445281734478817 -2024-05-21 13:00:00+00:00,0.10191844486376231 -2024-05-21 14:00:00+00:00,0.08674788620826283 -2024-05-21 15:00:00+00:00,0.07259664097700073 -2024-05-21 16:00:00+00:00,0.06026691868820858 -2024-05-21 17:00:00+00:00,0.05119927162022723 -2024-05-21 18:00:00+00:00,0.044423196738387134 -2024-05-21 19:00:00+00:00,0.038635404196675174 -2024-05-21 20:00:00+00:00,0.034097210441961824 -2024-05-21 21:00:00+00:00,0.02986424953589773 -2024-05-21 22:00:00+00:00,0.026486976116280044 -2024-05-21 23:00:00+00:00,0.02510287505292475 -2024-05-22 00:00:00+00:00,0.02498339814313369 -2024-05-22 01:00:00+00:00,0.02536656787269067 -2024-05-22 02:00:00+00:00,0.026704833566159554 -2024-05-22 03:00:00+00:00,0.02867025924951095 -2024-05-22 04:00:00+00:00,0.03149857712032987 -2024-05-22 05:00:00+00:00,0.03378614391058833 -2024-05-22 06:00:00+00:00,0.03678229935670664 -2024-05-22 07:00:00+00:00,0.04039650153955955 -2024-05-22 08:00:00+00:00,0.045313130391035385 -2024-05-22 09:00:00+00:00,0.050094766057093246 -2024-05-22 10:00:00+00:00,0.05420359143855104 -2024-05-22 11:00:00+00:00,0.060072577723775764 -2024-05-22 12:00:00+00:00,0.06602586027395563 -2024-05-22 13:00:00+00:00,0.06979847071914005 -2024-05-22 14:00:00+00:00,0.07323546101655823 -2024-05-22 15:00:00+00:00,0.07577995723194102 -2024-05-22 16:00:00+00:00,0.07728345232424973 -2024-05-22 17:00:00+00:00,0.07794332542615418 -2024-05-22 18:00:00+00:00,0.08006390176651004 -2024-05-22 19:00:00+00:00,0.08398699943558843 -2024-05-22 20:00:00+00:00,0.09058924267634476 -2024-05-22 21:00:00+00:00,0.09629193992279883 -2024-05-22 22:00:00+00:00,0.10159844543131183 -2024-05-22 23:00:00+00:00,0.10600329669465894 -2024-05-23 00:00:00+00:00,0.11039157862884362 -2024-05-23 01:00:00+00:00,0.11341033662312813 -2024-05-23 02:00:00+00:00,0.11496251717246836 -2024-05-23 03:00:00+00:00,0.11563499067413809 -2024-05-23 04:00:00+00:00,0.1148988685762161 -2024-05-23 05:00:00+00:00,0.11305657701912865 -2024-05-23 06:00:00+00:00,0.10916327583815849 -2024-05-23 07:00:00+00:00,0.10571066982472127 -2024-05-23 08:00:00+00:00,0.10245838390143623 -2024-05-23 09:00:00+00:00,0.09780081528214231 -2024-05-23 10:00:00+00:00,0.09300164101398474 -2024-05-23 11:00:00+00:00,0.08622283783121858 -2024-05-23 12:00:00+00:00,0.08094669375695082 -2024-05-23 13:00:00+00:00,0.082113024610977 -2024-05-23 14:00:00+00:00,0.0855215024075229 -2024-05-23 15:00:00+00:00,0.0909668438336093 -2024-05-23 16:00:00+00:00,0.09708438537705621 -2024-05-23 17:00:00+00:00,0.10139011425132836 -2024-05-23 18:00:00+00:00,0.10335357449338689 -2024-05-23 19:00:00+00:00,0.1032232751139734 -2024-05-23 20:00:00+00:00,0.10260520300454715 -2024-05-23 21:00:00+00:00,0.10183094389742292 -2024-05-23 22:00:00+00:00,0.10143736989844353 -2024-05-23 23:00:00+00:00,0.1007846579776884 -2024-05-24 00:00:00+00:00,0.10052388859301481 -2024-05-24 01:00:00+00:00,0.10126655625604548 -2024-05-24 02:00:00+00:00,0.10184192426234728 -2024-05-24 03:00:00+00:00,0.10187465342191501 -2024-05-24 04:00:00+00:00,0.10173221880497091 -2024-05-24 05:00:00+00:00,0.10127154769536602 -2024-05-24 06:00:00+00:00,0.0997506118617515 -2024-05-24 07:00:00+00:00,0.09764086261095087 -2024-05-24 08:00:00+00:00,0.094587431720111 -2024-05-24 09:00:00+00:00,0.09079127496661105 -2024-05-24 10:00:00+00:00,0.0858834845222464 -2024-05-24 11:00:00+00:00,0.08117010189716692 -2024-05-24 12:00:00+00:00,0.07734264485335597 -2024-05-24 13:00:00+00:00,0.07409483089103591 -2024-05-24 14:00:00+00:00,0.06982367046182483 -2024-05-24 15:00:00+00:00,0.06369950203492938 -2024-05-24 16:00:00+00:00,0.056749303231783114 -2024-05-24 17:00:00+00:00,0.05012263016258234 -2024-05-24 18:00:00+00:00,0.04428287544612797 -2024-05-24 19:00:00+00:00,0.038407642735449346 -2024-05-24 20:00:00+00:00,0.03373575193064028 -2024-05-26 21:00:00+00:00,0.028821437788387364 -2024-05-26 22:00:00+00:00,0.023021747850543634 -2024-05-26 23:00:00+00:00,0.017014406122229857 -2024-05-27 00:00:00+00:00,0.010546779975113316 -2024-05-27 01:00:00+00:00,0.003722755893498497 -2024-05-27 02:00:00+00:00,-0.004251763080435619 -2024-05-27 03:00:00+00:00,-0.012886613441051062 -2024-05-27 04:00:00+00:00,-0.0203524676981916 -2024-05-27 05:00:00+00:00,-0.026775493364871353 -2024-05-27 06:00:00+00:00,-0.03122180576414021 -2024-05-27 07:00:00+00:00,-0.032784737788506366 -2024-05-27 08:00:00+00:00,-0.0317296372716862 -2024-05-27 09:00:00+00:00,-0.02987813499028515 -2024-05-27 10:00:00+00:00,-0.028130782981760232 -2024-05-27 11:00:00+00:00,-0.02614115094645365 -2024-05-27 12:00:00+00:00,-0.024953783021694518 -2024-05-27 13:00:00+00:00,-0.024338445432318362 -2024-05-27 14:00:00+00:00,-0.025526236415832338 -2024-05-27 15:00:00+00:00,-0.025474175384548253 -2024-05-27 16:00:00+00:00,-0.024079126146463313 -2024-05-27 17:00:00+00:00,-0.022275382320250146 -2024-05-27 18:00:00+00:00,-0.02025926177368367 -2024-05-27 19:00:00+00:00,-0.01799404245264979 -2024-05-27 20:00:00+00:00,-0.015427065499591651 -2024-05-27 21:00:00+00:00,-0.012850128559328268 -2024-05-27 22:00:00+00:00,-0.009910070079666468 -2024-05-27 23:00:00+00:00,-0.008214120663521635 -2024-05-28 00:00:00+00:00,-0.006426826992962079 -2024-05-28 01:00:00+00:00,-0.006527992028877113 -2024-05-28 02:00:00+00:00,-0.00822339377458415 -2024-05-28 03:00:00+00:00,-0.012342037597260363 -2024-05-28 04:00:00+00:00,-0.017224945182092888 -2024-05-28 05:00:00+00:00,-0.019930395707006943 -2024-05-28 06:00:00+00:00,-0.020349905606837915 -2024-05-28 07:00:00+00:00,-0.01910871509594685 -2024-05-28 08:00:00+00:00,-0.01723104835419406 -2024-05-28 09:00:00+00:00,-0.013864890041426634 -2024-05-28 10:00:00+00:00,-0.010923168353441407 -2024-05-28 11:00:00+00:00,-0.00939787174188352 -2024-05-28 12:00:00+00:00,-0.010765340592082555 -2024-05-28 13:00:00+00:00,-0.011504418280647761 -2024-05-28 14:00:00+00:00,-0.011114582522910081 -2024-05-28 15:00:00+00:00,-0.009390046918266478 -2024-05-28 16:00:00+00:00,-0.005940683539475413 -2024-05-28 17:00:00+00:00,0.0004646524061933544 -2024-05-28 18:00:00+00:00,0.009311253484025386 -2024-05-28 19:00:00+00:00,0.018947745919277455 -2024-05-28 20:00:00+00:00,0.029360609981569183 -2024-05-28 21:00:00+00:00,0.03910486028664434 -2024-05-28 22:00:00+00:00,0.048787363809863885 -2024-05-28 23:00:00+00:00,0.058721798250797236 -2024-05-29 00:00:00+00:00,0.0697709157959565 -2024-05-29 01:00:00+00:00,0.07872234042790183 -2024-05-29 02:00:00+00:00,0.08646015672230761 -2024-05-29 03:00:00+00:00,0.09321752350260001 -2024-05-29 04:00:00+00:00,0.09783640463997292 -2024-05-29 05:00:00+00:00,0.10013926475716829 -2024-05-29 06:00:00+00:00,0.09866318281623922 -2024-05-29 07:00:00+00:00,0.0955006681364811 -2024-05-29 08:00:00+00:00,0.09039961936287598 -2024-05-29 09:00:00+00:00,0.0850862119035062 -2024-05-29 10:00:00+00:00,0.08092089224146364 -2024-05-29 11:00:00+00:00,0.07811535743240222 -2024-05-29 12:00:00+00:00,0.07495051271507687 -2024-05-29 13:00:00+00:00,0.07385297441600752 -2024-05-29 14:00:00+00:00,0.07642928152201986 -2024-05-29 15:00:00+00:00,0.08307310575952076 -2024-05-29 16:00:00+00:00,0.0926541064025769 -2024-05-29 17:00:00+00:00,0.1025649221803007 -2024-05-29 18:00:00+00:00,0.11247160229298853 -2024-05-29 19:00:00+00:00,0.12190315408027774 -2024-05-29 20:00:00+00:00,0.12992960242672125 -2024-05-29 21:00:00+00:00,0.13535333542130318 -2024-05-29 22:00:00+00:00,0.13914323157016759 -2024-05-29 23:00:00+00:00,0.14116990042429148 -2024-05-30 00:00:00+00:00,0.1375152683322684 -2024-05-30 01:00:00+00:00,0.1315180345527121 -2024-05-30 02:00:00+00:00,0.12232810078069148 -2024-05-30 03:00:00+00:00,0.1119302989244486 -2024-05-30 04:00:00+00:00,0.09797023022058493 -2024-05-30 05:00:00+00:00,0.07877594605660293 -2024-05-30 06:00:00+00:00,0.053585726481072134 -2024-05-30 07:00:00+00:00,0.029441448980933732 -2024-05-30 08:00:00+00:00,0.006768421632944777 -2024-05-30 09:00:00+00:00,-0.01425604731228125 -2024-05-30 10:00:00+00:00,-0.03304878430579486 -2024-05-30 11:00:00+00:00,-0.05241358278790671 -2024-05-30 12:00:00+00:00,-0.07235846779192935 -2024-05-30 13:00:00+00:00,-0.09011630543558928 -2024-05-30 14:00:00+00:00,-0.1075528106682181 -2024-05-30 15:00:00+00:00,-0.12284695956113378 -2024-05-30 16:00:00+00:00,-0.13483909049957968 -2024-05-30 17:00:00+00:00,-0.14298002362705584 -2024-05-30 18:00:00+00:00,-0.14675787781761354 -2024-05-30 19:00:00+00:00,-0.14702919016918392 -2024-05-30 20:00:00+00:00,-0.14515219852080366 -2024-05-30 21:00:00+00:00,-0.14217488780554882 -2024-05-30 22:00:00+00:00,-0.1380846779797565 -2024-05-30 23:00:00+00:00,-0.13014932374967542 -2024-05-31 00:00:00+00:00,-0.12392781365033875 -2024-05-31 01:00:00+00:00,-0.11982932133922651 -2024-05-31 02:00:00+00:00,-0.11488129260323063 -2024-05-31 03:00:00+00:00,-0.1095578811925418 -2024-05-31 04:00:00+00:00,-0.10556016857550367 -2024-05-31 05:00:00+00:00,-0.10078286482426739 -2024-05-31 06:00:00+00:00,-0.09347953841673262 -2024-05-31 07:00:00+00:00,-0.08139636184048041 -2024-05-31 08:00:00+00:00,-0.06432414344774132 -2024-05-31 09:00:00+00:00,-0.04429887748816522 -2024-05-31 10:00:00+00:00,-0.02483929622078878 -2024-05-31 11:00:00+00:00,-0.007878391564883054 -2024-05-31 12:00:00+00:00,0.0017631775156903406 -2024-05-31 13:00:00+00:00,0.0036911590188586016 -2024-05-31 14:00:00+00:00,0.008045872562191088 -2024-05-31 15:00:00+00:00,0.014217445426293246 -2024-05-31 16:00:00+00:00,0.02094850020927457 -2024-05-31 17:00:00+00:00,0.028267805174541343 -2024-05-31 18:00:00+00:00,0.03624159898481988 -2024-05-31 19:00:00+00:00,0.04414096675694484 -2024-05-31 20:00:00+00:00,0.0520373861848864 -2024-06-02 21:00:00+00:00,0.05821878378336667 -2024-06-02 22:00:00+00:00,0.06390554450059042 -2024-06-02 23:00:00+00:00,0.06709948200792007 -2024-06-03 00:00:00+00:00,0.06691088634738772 -2024-06-03 01:00:00+00:00,0.0640128438325755 -2024-06-03 02:00:00+00:00,0.062198662854123794 -2024-06-03 03:00:00+00:00,0.064000640102803 -2024-06-03 04:00:00+00:00,0.06765332366632479 -2024-06-03 05:00:00+00:00,0.07213627319213528 -2024-06-03 06:00:00+00:00,0.07423535725320618 -2024-06-03 07:00:00+00:00,0.07271033352291009 -2024-06-03 08:00:00+00:00,0.06751974983739373 -2024-06-03 09:00:00+00:00,0.06034132498320366 -2024-06-03 10:00:00+00:00,0.046890777337624104 -2024-06-03 11:00:00+00:00,0.03198983208720364 -2024-06-03 12:00:00+00:00,0.015707399810786005 -2024-06-03 13:00:00+00:00,-0.002537700020286726 -2024-06-03 14:00:00+00:00,-0.028421679808954076 -2024-06-03 15:00:00+00:00,-0.06025651720079018 -2024-06-03 16:00:00+00:00,-0.09360025046420804 -2024-06-03 17:00:00+00:00,-0.12401393301346539 -2024-06-03 18:00:00+00:00,-0.15013976923100936 -2024-06-03 19:00:00+00:00,-0.17164294620420611 -2024-06-03 20:00:00+00:00,-0.19117131449641334 -2024-06-03 21:00:00+00:00,-0.20752385105645157 -2024-06-03 22:00:00+00:00,-0.21983767327282736 -2024-06-03 23:00:00+00:00,-0.2294946247683921 -2024-06-04 00:00:00+00:00,-0.23173449601919147 -2024-06-04 01:00:00+00:00,-0.22749927074099086 -2024-06-04 02:00:00+00:00,-0.22031306965694067 -2024-06-04 03:00:00+00:00,-0.21092846676928192 -2024-06-04 04:00:00+00:00,-0.2016130534056231 -2024-06-04 05:00:00+00:00,-0.19399716955321086 -2024-06-04 06:00:00+00:00,-0.19132838262306454 -2024-06-04 07:00:00+00:00,-0.20043054810406763 -2024-06-04 08:00:00+00:00,-0.21734862597003388 -2024-06-04 09:00:00+00:00,-0.2402083824433543 -2024-06-04 10:00:00+00:00,-0.2685245009353466 -2024-06-04 11:00:00+00:00,-0.2991692902623959 -2024-06-04 12:00:00+00:00,-0.3249648147116243 -2024-06-04 13:00:00+00:00,-0.349441114731346 -2024-06-04 14:00:00+00:00,-0.37101101535894054 -2024-06-04 15:00:00+00:00,-0.3889424463281177 -2024-06-04 16:00:00+00:00,-0.4041708698564278 -2024-06-04 17:00:00+00:00,-0.41888931809756286 -2024-06-04 18:00:00+00:00,-0.42988661116691584 -2024-06-04 19:00:00+00:00,-0.43595822440949084 -2024-06-04 20:00:00+00:00,-0.4356841572387236 -2024-06-04 21:00:00+00:00,-0.43137945137626027 -2024-06-04 22:00:00+00:00,-0.4234558352989678 -2024-06-04 23:00:00+00:00,-0.4085819902197396 -2024-06-05 00:00:00+00:00,-0.387445361028991 -2024-06-05 01:00:00+00:00,-0.36043849019651175 -2024-06-05 02:00:00+00:00,-0.32846387711326536 -2024-06-05 03:00:00+00:00,-0.2941754705367775 -2024-06-05 04:00:00+00:00,-0.2580321686214339 -2024-06-05 05:00:00+00:00,-0.22107557338928294 -2024-06-05 06:00:00+00:00,-0.18102215868096136 -2024-06-05 07:00:00+00:00,-0.13679001126303172 -2024-06-05 08:00:00+00:00,-0.09028640603132836 -2024-06-05 09:00:00+00:00,-0.047893673997370406 -2024-06-05 10:00:00+00:00,-0.009728017273185934 -2024-06-05 11:00:00+00:00,0.025022191479323313 -2024-06-05 12:00:00+00:00,0.05495524881303625 -2024-06-05 13:00:00+00:00,0.07459056892131936 -2024-06-05 14:00:00+00:00,0.09565020659448734 -2024-06-05 15:00:00+00:00,0.11463728690530035 -2024-06-05 16:00:00+00:00,0.12966472411935742 -2024-06-05 17:00:00+00:00,0.14080795020714096 -2024-06-05 18:00:00+00:00,0.1485158253890524 -2024-06-05 19:00:00+00:00,0.1532162511038717 -2024-06-05 20:00:00+00:00,0.15572323033209245 -2024-06-05 21:00:00+00:00,0.15558728867964033 -2024-06-05 22:00:00+00:00,0.15067125842807594 -2024-06-05 23:00:00+00:00,0.1431201810485388 -2024-06-06 00:00:00+00:00,0.1297751814775277 -2024-06-06 01:00:00+00:00,0.11315458351563241 -2024-06-06 02:00:00+00:00,0.09517405304573179 -2024-06-06 03:00:00+00:00,0.07577448373380688 -2024-06-06 04:00:00+00:00,0.05893031027119171 -2024-06-06 05:00:00+00:00,0.04722851752180025 -2024-06-06 06:00:00+00:00,0.041744542235316935 -2024-06-06 07:00:00+00:00,0.04378030869619019 -2024-06-06 08:00:00+00:00,0.0484401800989004 -2024-06-06 09:00:00+00:00,0.05135876748256571 -2024-06-06 10:00:00+00:00,0.0539529346211088 -2024-06-06 11:00:00+00:00,0.05858964456030021 -2024-06-06 12:00:00+00:00,0.06554992212801981 -2024-06-06 13:00:00+00:00,0.07112295135764184 -2024-06-06 14:00:00+00:00,0.07366510670324646 -2024-06-06 15:00:00+00:00,0.0732405953872907 -2024-06-06 16:00:00+00:00,0.06794016346267492 -2024-06-06 17:00:00+00:00,0.059084384765226865 -2024-06-06 18:00:00+00:00,0.04697362752133833 -2024-06-06 19:00:00+00:00,0.03229752483885516 -2024-06-06 20:00:00+00:00,0.0168049727916883 -2024-06-06 21:00:00+00:00,0.0015107116824301312 -2024-06-06 22:00:00+00:00,-0.012733321958442796 -2024-06-06 23:00:00+00:00,-0.0246499284779417 -2024-06-07 00:00:00+00:00,-0.032895254457719084 -2024-06-07 01:00:00+00:00,-0.03976818180406549 -2024-06-07 02:00:00+00:00,-0.04325591226161256 -2024-06-07 03:00:00+00:00,-0.04532961911299246 -2024-06-07 04:00:00+00:00,-0.04903322597942991 -2024-06-07 05:00:00+00:00,-0.05448955380366661 -2024-06-07 06:00:00+00:00,-0.0631231196213693 -2024-06-07 07:00:00+00:00,-0.07221034997417314 -2024-06-07 08:00:00+00:00,-0.08191419821658515 -2024-06-07 09:00:00+00:00,-0.08926697457716662 -2024-06-07 10:00:00+00:00,-0.09312134501553458 -2024-06-07 11:00:00+00:00,-0.09411341689273786 -2024-06-07 12:00:00+00:00,-0.07409109976849679 -2024-06-07 13:00:00+00:00,-0.03893821904012647 -2024-06-07 14:00:00+00:00,0.002524238790061816 -2024-06-07 15:00:00+00:00,0.0414384867834735 -2024-06-07 16:00:00+00:00,0.07770607062703627 -2024-06-07 17:00:00+00:00,0.1092791971709108 -2024-06-07 18:00:00+00:00,0.13651628527582405 -2024-06-07 19:00:00+00:00,0.1609878351872278 -2024-06-07 20:00:00+00:00,0.18252296005848018 -2024-06-09 21:00:00+00:00,0.2004174063698733 -2024-06-09 22:00:00+00:00,0.21699635119866278 -2024-06-09 23:00:00+00:00,0.23014264647764246 -2024-06-10 00:00:00+00:00,0.2401470931774985 -2024-06-10 01:00:00+00:00,0.2481315792470756 -2024-06-10 02:00:00+00:00,0.25507842672481307 -2024-06-10 03:00:00+00:00,0.2631735214242654 -2024-06-10 04:00:00+00:00,0.2705493164917256 -2024-06-10 05:00:00+00:00,0.27552966995954864 -2024-06-10 06:00:00+00:00,0.2787417630521722 -2024-06-10 07:00:00+00:00,0.27839854786590584 -2024-06-10 08:00:00+00:00,0.2744924509126244 -2024-06-10 09:00:00+00:00,0.2670069928039761 -2024-06-10 10:00:00+00:00,0.25591317965479865 -2024-06-10 11:00:00+00:00,0.2434334904637648 -2024-06-10 12:00:00+00:00,0.23170020229704252 -2024-06-10 13:00:00+00:00,0.219245377280681 -2024-06-10 14:00:00+00:00,0.20658723138556262 -2024-06-10 15:00:00+00:00,0.19456871371276677 -2024-06-10 16:00:00+00:00,0.18401516459586936 -2024-06-10 17:00:00+00:00,0.17465724583330444 -2024-06-10 18:00:00+00:00,0.16736969341410113 -2024-06-10 19:00:00+00:00,0.16031141679353525 -2024-06-10 20:00:00+00:00,0.15368864966607876 -2024-06-10 21:00:00+00:00,0.1471442873360493 -2024-06-10 22:00:00+00:00,0.14091203296168986 -2024-06-10 23:00:00+00:00,0.13500857518096965 -2024-06-11 00:00:00+00:00,0.13205711743904738 -2024-06-11 01:00:00+00:00,0.1308894236203066 -2024-06-11 02:00:00+00:00,0.13170350213908077 -2024-06-11 03:00:00+00:00,0.13231600820143852 -2024-06-11 04:00:00+00:00,0.13318643774378777 -2024-06-11 05:00:00+00:00,0.1341086567785166 -2024-06-11 06:00:00+00:00,0.1346933770458927 -2024-06-11 07:00:00+00:00,0.13571808795893578 -2024-06-11 08:00:00+00:00,0.1347410005553974 -2024-06-11 09:00:00+00:00,0.13265220368785144 -2024-06-11 10:00:00+00:00,0.12729655786683106 -2024-06-11 11:00:00+00:00,0.11994774927386785 -2024-06-11 12:00:00+00:00,0.10814299785716218 -2024-06-11 13:00:00+00:00,0.09784247893777334 -2024-06-11 14:00:00+00:00,0.09167354609922598 -2024-06-11 15:00:00+00:00,0.08828842655165342 -2024-06-11 16:00:00+00:00,0.08751782091419816 -2024-06-11 17:00:00+00:00,0.08407871939988151 -2024-06-11 18:00:00+00:00,0.07726453925147733 -2024-06-11 19:00:00+00:00,0.06968070663535045 -2024-06-11 20:00:00+00:00,0.06268284100478161 -2024-06-11 21:00:00+00:00,0.05603690469507301 -2024-06-11 22:00:00+00:00,0.05015131070710745 -2024-06-11 23:00:00+00:00,0.044457879658159366 -2024-06-12 00:00:00+00:00,0.04016692346436217 -2024-06-12 01:00:00+00:00,0.0361864075079667 -2024-06-12 02:00:00+00:00,0.033292470525422106 -2024-06-12 03:00:00+00:00,0.031107541629215203 -2024-06-12 04:00:00+00:00,0.03033599859449257 -2024-06-12 05:00:00+00:00,0.030453550951475818 -2024-06-12 06:00:00+00:00,0.03175479328580034 -2024-06-12 07:00:00+00:00,0.0332904091284898 -2024-06-12 08:00:00+00:00,0.03543877287155475 -2024-06-12 09:00:00+00:00,0.037969255209808074 -2024-06-12 10:00:00+00:00,0.040711503393503344 -2024-06-12 11:00:00+00:00,0.04344566586979723 -2024-06-12 12:00:00+00:00,0.027233834107096632 -2024-06-12 13:00:00+00:00,-0.006159787101276792 -2024-06-12 14:00:00+00:00,-0.048526124030827546 -2024-06-12 15:00:00+00:00,-0.09254156625931839 -2024-06-12 16:00:00+00:00,-0.13642847793441681 -2024-06-12 17:00:00+00:00,-0.175916134114022 -2024-06-12 18:00:00+00:00,-0.19903928319959896 -2024-06-12 19:00:00+00:00,-0.20649038405035977 -2024-06-12 20:00:00+00:00,-0.20498039323572195 -2024-06-12 21:00:00+00:00,-0.19960361994248488 -2024-06-12 22:00:00+00:00,-0.18831162610039645 -2024-06-12 23:00:00+00:00,-0.1735386489678969 -2024-06-13 00:00:00+00:00,-0.15705847963076136 -2024-06-13 01:00:00+00:00,-0.1394079571514044 -2024-06-13 02:00:00+00:00,-0.11899893198432687 -2024-06-13 03:00:00+00:00,-0.0975159932166359 -2024-06-13 04:00:00+00:00,-0.07565759087806635 -2024-06-13 05:00:00+00:00,-0.05396291088916333 -2024-06-13 06:00:00+00:00,-0.03226831836468152 -2024-06-13 07:00:00+00:00,-0.009659153446838115 -2024-06-13 08:00:00+00:00,0.012072873621453336 -2024-06-13 09:00:00+00:00,0.030907755607544437 -2024-06-13 10:00:00+00:00,0.04674132719160359 -2024-06-13 11:00:00+00:00,0.06033153960943245 -2024-06-13 12:00:00+00:00,0.06869820742113865 -2024-06-13 13:00:00+00:00,0.07571648472852194 -2024-06-13 14:00:00+00:00,0.07752007428322671 -2024-06-13 15:00:00+00:00,0.07308767120880351 -2024-06-13 16:00:00+00:00,0.06600902226883265 -2024-06-13 17:00:00+00:00,0.05891232726693501 -2024-06-13 18:00:00+00:00,0.05137198324109442 -2024-06-13 19:00:00+00:00,0.04648019180275828 -2024-06-13 20:00:00+00:00,0.042489558137282904 -2024-06-13 21:00:00+00:00,0.03920801485062887 -2024-06-13 22:00:00+00:00,0.03766611221336068 -2024-06-13 23:00:00+00:00,0.03787964849808717 -2024-06-14 00:00:00+00:00,0.04034037502896957 -2024-06-14 01:00:00+00:00,0.044818287274848496 -2024-06-14 02:00:00+00:00,0.051372360894377696 -2024-06-14 03:00:00+00:00,0.06658473268738128 -2024-06-14 04:00:00+00:00,0.08831690553743074 -2024-06-14 05:00:00+00:00,0.11601782689939319 -2024-06-14 06:00:00+00:00,0.1427438578284171 -2024-06-14 07:00:00+00:00,0.16258547294375741 -2024-06-14 08:00:00+00:00,0.17379767046511777 -2024-06-14 09:00:00+00:00,0.17231523994818557 -2024-06-14 10:00:00+00:00,0.16035932328062652 -2024-06-14 11:00:00+00:00,0.14375934523107192 -2024-06-14 12:00:00+00:00,0.127790531329342 -2024-06-14 13:00:00+00:00,0.11317798484428437 -2024-06-14 14:00:00+00:00,0.1015668836558573 -2024-06-14 15:00:00+00:00,0.09071449677000017 -2024-06-14 16:00:00+00:00,0.0811305699064993 -2024-06-14 17:00:00+00:00,0.07267513592984795 -2024-06-14 18:00:00+00:00,0.06464622135926479 -2024-06-14 19:00:00+00:00,0.057573002858052204 -2024-06-14 20:00:00+00:00,0.052981670263951564 -2024-06-16 21:00:00+00:00,0.04907669118290818 -2024-06-16 22:00:00+00:00,0.04845486889678664 -2024-06-16 23:00:00+00:00,0.05043524641075382 -2024-06-17 00:00:00+00:00,0.05218456071284871 -2024-06-17 01:00:00+00:00,0.054104903680641046 -2024-06-17 02:00:00+00:00,0.05523837506126121 -2024-06-17 03:00:00+00:00,0.05444888825774962 -2024-06-17 04:00:00+00:00,0.05261073093022101 -2024-06-17 05:00:00+00:00,0.051192590681883275 -2024-06-17 06:00:00+00:00,0.04836802156017723 -2024-06-17 07:00:00+00:00,0.047922550166246636 -2024-06-17 08:00:00+00:00,0.05044591106184702 -2024-06-17 09:00:00+00:00,0.05466259541719073 -2024-06-17 10:00:00+00:00,0.05921208345535482 -2024-06-17 11:00:00+00:00,0.06704287224438138 -2024-06-17 12:00:00+00:00,0.07710091275328845 -2024-06-17 13:00:00+00:00,0.08778814614768234 -2024-06-17 14:00:00+00:00,0.09756696593362492 -2024-06-17 15:00:00+00:00,0.10532346420768716 -2024-06-17 16:00:00+00:00,0.11073497937000626 -2024-06-17 17:00:00+00:00,0.11356627758911908 -2024-06-17 18:00:00+00:00,0.11367108966348152 -2024-06-17 19:00:00+00:00,0.11228105169298418 -2024-06-17 20:00:00+00:00,0.10969125545306804 -2024-06-17 21:00:00+00:00,0.1063149988917273 -2024-06-17 22:00:00+00:00,0.10196566498252754 -2024-06-17 23:00:00+00:00,0.09684247977821057 -2024-06-18 00:00:00+00:00,0.09105873998418587 -2024-06-18 01:00:00+00:00,0.08352073184396545 -2024-06-18 02:00:00+00:00,0.07602928703178442 -2024-06-18 03:00:00+00:00,0.06857904759592458 -2024-06-18 04:00:00+00:00,0.06263332767668385 -2024-06-18 05:00:00+00:00,0.059714071797411276 -2024-06-18 06:00:00+00:00,0.06071893312478886 -2024-06-18 07:00:00+00:00,0.06660881208902603 -2024-06-18 08:00:00+00:00,0.07546690489228657 -2024-06-18 09:00:00+00:00,0.0847194267926672 -2024-06-18 10:00:00+00:00,0.0936527249237262 -2024-06-18 11:00:00+00:00,0.10138509970776485 -2024-06-18 12:00:00+00:00,0.10370782516947841 -2024-06-18 13:00:00+00:00,0.1017871681253772 -2024-06-18 14:00:00+00:00,0.09973991906940165 -2024-06-18 15:00:00+00:00,0.09508420051132743 -2024-06-18 16:00:00+00:00,0.08711376563016766 -2024-06-18 17:00:00+00:00,0.07961434897758576 -2024-06-18 18:00:00+00:00,0.07163265824383415 -2024-06-18 19:00:00+00:00,0.06475255350737143 -2024-06-18 20:00:00+00:00,0.05858453083287395 -2024-06-18 21:00:00+00:00,0.05266973336115912 -2024-06-18 22:00:00+00:00,0.04756634908432808 -2024-06-18 23:00:00+00:00,0.043226383879579604 -2024-06-19 00:00:00+00:00,0.03973321767346802 -2024-06-19 01:00:00+00:00,0.034996699512239604 -2024-06-19 02:00:00+00:00,0.030718349853655895 -2024-06-19 03:00:00+00:00,0.027296250976893296 -2024-06-19 04:00:00+00:00,0.024464194238451177 -2024-06-19 05:00:00+00:00,0.02104167527502628 -2024-06-19 06:00:00+00:00,0.015465991978866238 -2024-06-19 07:00:00+00:00,0.010042227844708597 -2024-06-19 08:00:00+00:00,0.005820702153381641 -2024-06-19 09:00:00+00:00,0.0034063330672346485 -2024-06-19 10:00:00+00:00,0.0019403223226067048 -2024-06-19 11:00:00+00:00,0.0023058248969985247 -2024-06-19 12:00:00+00:00,0.003443871696173092 -2024-06-19 13:00:00+00:00,0.005094353170530919 -2024-06-19 14:00:00+00:00,0.007063613239975687 -2024-06-19 15:00:00+00:00,0.009719614093038554 -2024-06-19 16:00:00+00:00,0.01264466584475085 -2024-06-19 17:00:00+00:00,0.015683833017531224 -2024-06-19 18:00:00+00:00,0.019875814008660824 -2024-06-19 19:00:00+00:00,0.024301942972991628 -2024-06-19 20:00:00+00:00,0.02979995292531188 -2024-06-19 21:00:00+00:00,0.034321354535452445 -2024-06-19 22:00:00+00:00,0.03793134671956479 -2024-06-19 23:00:00+00:00,0.039960487031053496 -2024-06-20 00:00:00+00:00,0.04199791229031079 -2024-06-20 01:00:00+00:00,0.044204955025086874 -2024-06-20 02:00:00+00:00,0.04668476782902054 -2024-06-20 03:00:00+00:00,0.049131056545655666 -2024-06-20 04:00:00+00:00,0.052337197522042384 -2024-06-20 05:00:00+00:00,0.05498238335643999 -2024-06-20 06:00:00+00:00,0.05741085278833767 -2024-06-20 07:00:00+00:00,0.061838495643809915 -2024-06-20 08:00:00+00:00,0.0697626590922465 -2024-06-20 09:00:00+00:00,0.07959115244303666 -2024-06-20 10:00:00+00:00,0.08937416254286182 -2024-06-20 11:00:00+00:00,0.09858761984757625 -2024-06-20 12:00:00+00:00,0.10857116454485416 -2024-06-20 13:00:00+00:00,0.12083523651364098 -2024-06-20 14:00:00+00:00,0.13391352183369265 -2024-06-20 15:00:00+00:00,0.14727715094270072 -2024-06-20 16:00:00+00:00,0.16112358101241983 -2024-06-20 17:00:00+00:00,0.17462625904015672 -2024-06-20 18:00:00+00:00,0.18541960449758535 -2024-06-20 19:00:00+00:00,0.19523350150634225 -2024-06-20 20:00:00+00:00,0.20382505901403508 -2024-06-20 21:00:00+00:00,0.21044835613544027 -2024-06-20 22:00:00+00:00,0.21478776540235714 -2024-06-20 23:00:00+00:00,0.21764873970967166 -2024-06-21 00:00:00+00:00,0.22158545017044692 -2024-06-21 01:00:00+00:00,0.22315565955186906 -2024-06-21 02:00:00+00:00,0.2226197532133012 -2024-06-21 03:00:00+00:00,0.21919957170567259 -2024-06-21 04:00:00+00:00,0.2136034105546854 -2024-06-21 05:00:00+00:00,0.20751884802249598 -2024-06-21 06:00:00+00:00,0.2011336945168302 -2024-06-21 07:00:00+00:00,0.1914050933038282 -2024-06-21 08:00:00+00:00,0.18054806956109243 -2024-06-21 09:00:00+00:00,0.1703379911878028 -2024-06-21 10:00:00+00:00,0.16225988726008814 -2024-06-21 11:00:00+00:00,0.15391244880385382 -2024-06-21 12:00:00+00:00,0.14596161807490032 -2024-06-21 13:00:00+00:00,0.14185346452815178 -2024-06-21 14:00:00+00:00,0.14684245124842446 -2024-06-21 15:00:00+00:00,0.1549268782595559 -2024-06-21 16:00:00+00:00,0.16468509987004476 -2024-06-21 17:00:00+00:00,0.176185017931621 -2024-06-21 18:00:00+00:00,0.18714996936231937 -2024-06-21 19:00:00+00:00,0.19786316084826247 -2024-06-21 20:00:00+00:00,0.21078831689299438 -2024-06-23 21:00:00+00:00,0.22241027828870863 -2024-06-23 22:00:00+00:00,0.23197162676392732 -2024-06-23 23:00:00+00:00,0.24211519473810605 -2024-06-24 00:00:00+00:00,0.24994467292098746 -2024-06-24 01:00:00+00:00,0.25365244771074197 -2024-06-24 02:00:00+00:00,0.2542276875694767 -2024-06-24 03:00:00+00:00,0.25216610620804086 -2024-06-24 04:00:00+00:00,0.2487988255407547 -2024-06-24 05:00:00+00:00,0.24363230002035863 -2024-06-24 06:00:00+00:00,0.23641541655658785 -2024-06-24 07:00:00+00:00,0.22796029826359246 -2024-06-24 08:00:00+00:00,0.22018436594083507 -2024-06-24 09:00:00+00:00,0.21044248084155331 -2024-06-24 10:00:00+00:00,0.1973455732075675 -2024-06-24 11:00:00+00:00,0.18169653361991073 -2024-06-24 12:00:00+00:00,0.16372132899439093 -2024-06-24 13:00:00+00:00,0.14570284913692103 -2024-06-24 14:00:00+00:00,0.1326571818123201 -2024-06-24 15:00:00+00:00,0.12298226460325754 -2024-06-24 16:00:00+00:00,0.11590221260896001 -2024-06-24 17:00:00+00:00,0.11025242139488263 -2024-06-24 18:00:00+00:00,0.10436334696961473 -2024-06-24 19:00:00+00:00,0.09855468845712044 -2024-06-24 20:00:00+00:00,0.09250935492090644 -2024-06-24 21:00:00+00:00,0.08607073975481384 -2024-06-24 22:00:00+00:00,0.0802130133883826 -2024-06-24 23:00:00+00:00,0.07572111975800491 -2024-06-25 00:00:00+00:00,0.06728209549778293 -2024-06-25 01:00:00+00:00,0.05675385081426777 -2024-06-25 02:00:00+00:00,0.044174005356961935 -2024-06-25 03:00:00+00:00,0.03335591996204031 -2024-06-25 04:00:00+00:00,0.02328756462130685 -2024-06-25 05:00:00+00:00,0.01453079987457 -2024-06-25 06:00:00+00:00,0.007452809378895024 -2024-06-25 07:00:00+00:00,0.0018927764696838826 -2024-06-25 08:00:00+00:00,-0.002588222099419828 -2024-06-25 09:00:00+00:00,-0.006726461391673983 -2024-06-25 10:00:00+00:00,-0.010609054493052557 -2024-06-25 11:00:00+00:00,-0.0135931600769085 -2024-06-25 12:00:00+00:00,-0.012571996929540431 -2024-06-25 13:00:00+00:00,-0.009607736014359124 -2024-06-25 14:00:00+00:00,-0.0046496708345269595 -2024-06-25 15:00:00+00:00,0.0012289877230253626 -2024-06-25 16:00:00+00:00,0.008362860056826793 -2024-06-25 17:00:00+00:00,0.015651129803125618 -2024-06-25 18:00:00+00:00,0.021677127080972233 -2024-06-25 19:00:00+00:00,0.025796799587779418 -2024-06-25 20:00:00+00:00,0.02932436137257262 -2024-06-25 21:00:00+00:00,0.03194186337167292 -2024-06-25 22:00:00+00:00,0.03397039477153098 -2024-06-25 23:00:00+00:00,0.035892730087608904 -2024-06-26 00:00:00+00:00,0.03785310445691033 -2024-06-26 01:00:00+00:00,0.04063745381124836 -2024-06-26 02:00:00+00:00,0.04456121201327361 -2024-06-26 03:00:00+00:00,0.048923784534289305 -2024-06-26 04:00:00+00:00,0.05188102596745306 -2024-06-26 05:00:00+00:00,0.05468929047049127 -2024-06-26 06:00:00+00:00,0.057228043794446626 -2024-06-26 07:00:00+00:00,0.06053093399704115 -2024-06-26 08:00:00+00:00,0.06495893014373284 -2024-06-26 09:00:00+00:00,0.07012675829751155 -2024-06-26 10:00:00+00:00,0.08040106393530627 -2024-06-26 11:00:00+00:00,0.093202027611853 -2024-06-26 12:00:00+00:00,0.10745303520516883 -2024-06-26 13:00:00+00:00,0.12410982255291914 -2024-06-26 14:00:00+00:00,0.1427458087631651 -2024-06-26 15:00:00+00:00,0.1625166239092256 -2024-06-26 16:00:00+00:00,0.1808101344058904 -2024-06-26 17:00:00+00:00,0.19683852888110945 -2024-06-26 18:00:00+00:00,0.2111953598059872 -2024-06-26 19:00:00+00:00,0.22478619085070156 -2024-06-26 20:00:00+00:00,0.23710289022151954 -2024-06-26 21:00:00+00:00,0.24642979315685082 -2024-06-26 22:00:00+00:00,0.25184298080914225 -2024-06-26 23:00:00+00:00,0.2528445035049842 -2024-06-27 00:00:00+00:00,0.25142531420416053 -2024-06-27 01:00:00+00:00,0.24486315109281082 -2024-06-27 02:00:00+00:00,0.234257110608413 -2024-06-27 03:00:00+00:00,0.22069178931020766 -2024-06-27 04:00:00+00:00,0.20402791160574824 -2024-06-27 05:00:00+00:00,0.18686748293575808 -2024-06-27 06:00:00+00:00,0.17012476562976933 -2024-06-27 07:00:00+00:00,0.15620786794202995 -2024-06-27 08:00:00+00:00,0.14449947435433647 -2024-06-27 09:00:00+00:00,0.133422721121465 -2024-06-27 10:00:00+00:00,0.12220475695026128 -2024-06-27 11:00:00+00:00,0.11299471394361311 -2024-06-27 12:00:00+00:00,0.10287530249357173 -2024-06-27 13:00:00+00:00,0.0944283579128688 -2024-06-27 14:00:00+00:00,0.08840598257777468 -2024-06-27 15:00:00+00:00,0.08570865611487134 -2024-06-27 16:00:00+00:00,0.08520100097364046 -2024-06-27 17:00:00+00:00,0.0861853906887803 -2024-06-27 18:00:00+00:00,0.08847915016201915 -2024-06-27 19:00:00+00:00,0.09211727673594788 -2024-06-27 20:00:00+00:00,0.09546345291616372 -2024-06-27 21:00:00+00:00,0.0977231063309432 -2024-06-27 22:00:00+00:00,0.09864147451412235 -2024-06-27 23:00:00+00:00,0.09820686860860336 -2024-06-28 00:00:00+00:00,0.10336023123374243 -2024-06-28 01:00:00+00:00,0.1106008959086116 -2024-06-28 02:00:00+00:00,0.11647602640740087 -2024-06-28 03:00:00+00:00,0.12171953086334189 -2024-06-28 04:00:00+00:00,0.126844477381653 -2024-06-28 05:00:00+00:00,0.12980572776286325 -2024-06-28 06:00:00+00:00,0.130832092846679 -2024-06-28 07:00:00+00:00,0.13018203184146657 -2024-06-28 08:00:00+00:00,0.12799522370644548 -2024-06-28 09:00:00+00:00,0.12103051449496703 -2024-06-28 10:00:00+00:00,0.10757061440335622 -2024-06-28 11:00:00+00:00,0.09349949971497054 -2024-06-28 12:00:00+00:00,0.07738405938329528 -2024-06-28 13:00:00+00:00,0.06000156837661467 -2024-06-28 14:00:00+00:00,0.04831105865574855 -2024-06-28 15:00:00+00:00,0.04156839057254149 -2024-06-28 16:00:00+00:00,0.037643202661858964 -2024-06-28 17:00:00+00:00,0.03479024988901999 -2024-06-28 18:00:00+00:00,0.03277534230544974 -2024-06-28 19:00:00+00:00,0.032226030070410853 -2024-06-28 20:00:00+00:00,0.03271021497993671 -2024-06-30 21:00:00+00:00,0.03312001868571951 -2024-06-30 22:00:00+00:00,0.0332266877249634 -2024-06-30 23:00:00+00:00,0.03465747731365898 -2024-07-01 00:00:00+00:00,0.03794483103510587 -2024-07-01 01:00:00+00:00,0.04102022161097864 -2024-07-01 02:00:00+00:00,0.04326132370847563 -2024-07-01 03:00:00+00:00,0.04722040642476295 -2024-07-01 04:00:00+00:00,0.05226020791316689 -2024-07-01 05:00:00+00:00,0.057051626541603735 -2024-07-01 06:00:00+00:00,0.05916826558830325 -2024-07-01 07:00:00+00:00,0.061085667373144956 -2024-07-01 08:00:00+00:00,0.06257463347607443 -2024-07-01 09:00:00+00:00,0.06449974620837193 -2024-07-01 10:00:00+00:00,0.06735970334870192 -2024-07-01 11:00:00+00:00,0.0701671100494439 -2024-07-01 12:00:00+00:00,0.07662308920590494 -2024-07-01 13:00:00+00:00,0.08552293574816364 -2024-07-01 14:00:00+00:00,0.09944123043827997 -2024-07-01 15:00:00+00:00,0.1140011461707895 -2024-07-01 16:00:00+00:00,0.12731790880618254 -2024-07-01 17:00:00+00:00,0.1385800377068155 -2024-07-01 18:00:00+00:00,0.14796721896190584 -2024-07-01 19:00:00+00:00,0.15460002303100562 -2024-07-01 20:00:00+00:00,0.15879041515077344 -2024-07-01 21:00:00+00:00,0.16051737087175114 -2024-07-01 22:00:00+00:00,0.16002054912919983 -2024-07-01 23:00:00+00:00,0.15900376738318275 -2024-07-02 00:00:00+00:00,0.15751152857009154 -2024-07-02 01:00:00+00:00,0.1572912197186791 -2024-07-02 02:00:00+00:00,0.15717018522242904 -2024-07-02 03:00:00+00:00,0.15746149045463287 -2024-07-02 04:00:00+00:00,0.15789235560598902 -2024-07-02 05:00:00+00:00,0.15847496257769755 -2024-07-02 06:00:00+00:00,0.15828230818797095 -2024-07-02 07:00:00+00:00,0.15698185178885637 -2024-07-02 08:00:00+00:00,0.15362847936195864 -2024-07-02 09:00:00+00:00,0.1500265534964706 -2024-07-02 10:00:00+00:00,0.14520631548464577 -2024-07-02 11:00:00+00:00,0.1397516007059745 -2024-07-02 12:00:00+00:00,0.13214355425395488 -2024-07-02 13:00:00+00:00,0.12111368513292649 -2024-07-02 14:00:00+00:00,0.10919851019007241 -2024-07-02 15:00:00+00:00,0.09866770313894041 -2024-07-02 16:00:00+00:00,0.08993801752201641 -2024-07-02 17:00:00+00:00,0.0817762023234995 -2024-07-02 18:00:00+00:00,0.07370124732397276 -2024-07-02 19:00:00+00:00,0.06540956132133582 -2024-07-02 20:00:00+00:00,0.05741120452869162 -2024-07-02 21:00:00+00:00,0.04962986547838052 -2024-07-02 22:00:00+00:00,0.04181666503051289 -2024-07-02 23:00:00+00:00,0.03536671258478611 -2024-07-03 00:00:00+00:00,0.031193399214291546 -2024-07-03 01:00:00+00:00,0.02972747855945644 -2024-07-03 02:00:00+00:00,0.030174997661446035 -2024-07-03 03:00:00+00:00,0.031442409632085236 -2024-07-03 04:00:00+00:00,0.03448959973132474 -2024-07-03 05:00:00+00:00,0.040839043992049476 -2024-07-03 06:00:00+00:00,0.04793890109020135 -2024-07-03 07:00:00+00:00,0.054357568253177724 -2024-07-03 08:00:00+00:00,0.06110144534168027 -2024-07-03 09:00:00+00:00,0.06785950388008608 -2024-07-03 10:00:00+00:00,0.07531409814147849 -2024-07-03 11:00:00+00:00,0.08229183213544707 -2024-07-03 12:00:00+00:00,0.08690166575895597 -2024-07-03 13:00:00+00:00,0.08756141290730667 -2024-07-03 14:00:00+00:00,0.07967185093203363 -2024-07-03 15:00:00+00:00,0.06901699679836788 -2024-07-03 16:00:00+00:00,0.057923599769469605 -2024-07-03 17:00:00+00:00,0.04643048817807431 -2024-07-03 18:00:00+00:00,0.03776812205389279 -2024-07-03 19:00:00+00:00,0.03188620334232919 -2024-07-03 20:00:00+00:00,0.028046497657525576 -2024-07-03 21:00:00+00:00,0.02353414311905192 -2024-07-03 22:00:00+00:00,0.019261723797684413 -2024-07-03 23:00:00+00:00,0.0150485320667494 -2024-07-04 00:00:00+00:00,0.00872968213664037 -2024-07-04 01:00:00+00:00,0.0002536763352630877 -2024-07-04 02:00:00+00:00,-0.00791810931227638 -2024-07-04 03:00:00+00:00,-0.014016892745540369 -2024-07-04 04:00:00+00:00,-0.019039061886754603 -2024-07-04 05:00:00+00:00,-0.023366945256012146 -2024-07-04 06:00:00+00:00,-0.029053605035441004 -2024-07-04 07:00:00+00:00,-0.03632845110052857 -2024-07-04 08:00:00+00:00,-0.044724895611106735 -2024-07-04 09:00:00+00:00,-0.053138653975028066 -2024-07-04 10:00:00+00:00,-0.0640802897482349 -2024-07-04 11:00:00+00:00,-0.07684398449585078 -2024-07-04 12:00:00+00:00,-0.08773567298539892 -2024-07-04 13:00:00+00:00,-0.09633209941406135 -2024-07-04 14:00:00+00:00,-0.10436727917830103 -2024-07-04 15:00:00+00:00,-0.11006737234088979 -2024-07-04 16:00:00+00:00,-0.11396161175867138 -2024-07-04 17:00:00+00:00,-0.11587718702103544 -2024-07-04 18:00:00+00:00,-0.114704288070761 -2024-07-04 19:00:00+00:00,-0.11184236799070911 -2024-07-04 20:00:00+00:00,-0.10711492308595175 -2024-07-04 21:00:00+00:00,-0.10150906674627998 -2024-07-04 22:00:00+00:00,-0.09501628729427576 -2024-07-04 23:00:00+00:00,-0.08671932273506193 -2024-07-05 00:00:00+00:00,-0.08207582816477674 -2024-07-05 01:00:00+00:00,-0.08073587500511034 -2024-07-05 02:00:00+00:00,-0.08213451315162919 -2024-07-05 03:00:00+00:00,-0.09054126393331187 -2024-07-05 04:00:00+00:00,-0.10229464592356499 -2024-07-05 05:00:00+00:00,-0.11465817298653252 -2024-07-05 06:00:00+00:00,-0.1250268752051983 -2024-07-05 07:00:00+00:00,-0.13334866264684506 -2024-07-05 08:00:00+00:00,-0.1401738088634597 -2024-07-05 09:00:00+00:00,-0.1460377505017626 -2024-07-05 10:00:00+00:00,-0.14899972138857215 -2024-07-05 11:00:00+00:00,-0.1493447874128281 -2024-07-05 12:00:00+00:00,-0.14572875909366778 -2024-07-05 13:00:00+00:00,-0.1343819933336162 -2024-07-05 14:00:00+00:00,-0.12329651719841522 -2024-07-05 15:00:00+00:00,-0.11632847486547725 -2024-07-05 16:00:00+00:00,-0.10960027479901084 -2024-07-05 17:00:00+00:00,-0.10369966436219635 -2024-07-05 18:00:00+00:00,-0.10043290355237124 -2024-07-05 19:00:00+00:00,-0.09799351879382032 -2024-07-05 20:00:00+00:00,-0.09545075111732276 -2024-07-07 21:00:00+00:00,-0.0937002400858519 -2024-07-07 22:00:00+00:00,-0.09190968823619995 -2024-07-07 23:00:00+00:00,-0.09205249656729403 -2024-07-08 00:00:00+00:00,-0.09360461991041356 -2024-07-08 01:00:00+00:00,-0.09893624905752593 -2024-07-08 02:00:00+00:00,-0.10676998732522741 -2024-07-08 03:00:00+00:00,-0.11366727896200196 -2024-07-08 04:00:00+00:00,-0.1185592650486545 -2024-07-08 05:00:00+00:00,-0.11914690020351065 -2024-07-08 06:00:00+00:00,-0.11453257748940479 -2024-07-08 07:00:00+00:00,-0.10563348766639712 -2024-07-08 08:00:00+00:00,-0.09117937704182992 -2024-07-08 09:00:00+00:00,-0.07467087199422963 -2024-07-08 10:00:00+00:00,-0.05918132142587115 -2024-07-08 11:00:00+00:00,-0.043810952221471466 -2024-07-08 12:00:00+00:00,-0.03429467399044581 -2024-07-08 13:00:00+00:00,-0.029410771242044904 -2024-07-08 14:00:00+00:00,-0.02832133515961181 -2024-07-08 15:00:00+00:00,-0.027002187459806967 -2024-07-08 16:00:00+00:00,-0.026296526973351133 -2024-07-08 17:00:00+00:00,-0.02608008049917074 -2024-07-08 18:00:00+00:00,-0.02506917714016515 -2024-07-08 19:00:00+00:00,-0.02349236143196349 -2024-07-08 20:00:00+00:00,-0.02090391838206141 -2024-07-08 21:00:00+00:00,-0.018264040010905633 -2024-07-08 22:00:00+00:00,-0.015991816224778157 -2024-07-08 23:00:00+00:00,-0.012836115154864621 -2024-07-09 00:00:00+00:00,-0.008752297290444681 -2024-07-09 01:00:00+00:00,-0.002908806252465451 -2024-07-09 02:00:00+00:00,0.004152732956701688 -2024-07-09 03:00:00+00:00,0.012347936239505036 -2024-07-09 04:00:00+00:00,0.019376005638558087 -2024-07-09 05:00:00+00:00,0.024302688325703564 -2024-07-09 06:00:00+00:00,0.026386071329886088 -2024-07-09 07:00:00+00:00,0.0280495995346581 -2024-07-09 08:00:00+00:00,0.031372909350634234 -2024-07-09 09:00:00+00:00,0.03539509303091476 -2024-07-09 10:00:00+00:00,0.039117071571610706 -2024-07-09 11:00:00+00:00,0.04397801537408608 -2024-07-09 12:00:00+00:00,0.04937328561339243 -2024-07-09 13:00:00+00:00,0.05290525162251982 -2024-07-09 14:00:00+00:00,0.060467874878071835 -2024-07-09 15:00:00+00:00,0.07059693125729646 -2024-07-09 16:00:00+00:00,0.08036633836252152 -2024-07-09 17:00:00+00:00,0.08921502466516087 -2024-07-09 18:00:00+00:00,0.09669178383312771 -2024-07-09 19:00:00+00:00,0.1023453242962927 -2024-07-09 20:00:00+00:00,0.10674128778220371 -2024-07-09 21:00:00+00:00,0.10947643732691636 -2024-07-09 22:00:00+00:00,0.11143185191849447 -2024-07-09 23:00:00+00:00,0.1125261075365458 -2024-07-10 00:00:00+00:00,0.11492061909881954 -2024-07-10 01:00:00+00:00,0.11884350900782692 -2024-07-10 02:00:00+00:00,0.12281707485629659 -2024-07-10 03:00:00+00:00,0.125121641944608 -2024-07-10 04:00:00+00:00,0.12619748802090833 -2024-07-10 05:00:00+00:00,0.12706857004916533 -2024-07-10 06:00:00+00:00,0.12533813966736368 -2024-07-10 07:00:00+00:00,0.12384029241114872 -2024-07-10 08:00:00+00:00,0.12250784812705694 -2024-07-10 09:00:00+00:00,0.1222662851825417 -2024-07-10 10:00:00+00:00,0.12182023683843214 -2024-07-10 11:00:00+00:00,0.1199706680161179 -2024-07-10 12:00:00+00:00,0.11652246964027493 -2024-07-10 13:00:00+00:00,0.11438062560239505 -2024-07-10 14:00:00+00:00,0.11393024419747466 -2024-07-10 15:00:00+00:00,0.11550055966361451 -2024-07-10 16:00:00+00:00,0.11719412031301782 -2024-07-10 17:00:00+00:00,0.11951844201119716 -2024-07-10 18:00:00+00:00,0.12230653908793446 -2024-07-10 19:00:00+00:00,0.12433818136638392 -2024-07-10 20:00:00+00:00,0.12509098370569016 -2024-07-10 21:00:00+00:00,0.12256381699479615 -2024-07-10 22:00:00+00:00,0.11813709365381828 -2024-07-10 23:00:00+00:00,0.11251447166877451 -2024-07-11 00:00:00+00:00,0.10570195499852865 -2024-07-11 01:00:00+00:00,0.09851511329122122 -2024-07-11 02:00:00+00:00,0.09239458009852265 -2024-07-11 03:00:00+00:00,0.08682928912770224 -2024-07-11 04:00:00+00:00,0.08247166542575658 -2024-07-11 05:00:00+00:00,0.07900717489454748 -2024-07-11 06:00:00+00:00,0.07671029172351347 -2024-07-11 07:00:00+00:00,0.07357514084935583 -2024-07-11 08:00:00+00:00,0.06823602350431107 -2024-07-11 09:00:00+00:00,0.061927043813829345 -2024-07-11 10:00:00+00:00,0.05519975607564729 -2024-07-11 11:00:00+00:00,0.04824567209537552 -2024-07-11 12:00:00+00:00,-0.004624470476625869 -2024-07-11 13:00:00+00:00,-0.08420977740895348 -2024-07-11 14:00:00+00:00,-0.17697342818683726 -2024-07-11 15:00:00+00:00,-0.2723319670819847 -2024-07-11 16:00:00+00:00,-0.36390478716363306 -2024-07-11 17:00:00+00:00,-0.4436459210395749 -2024-07-11 18:00:00+00:00,-0.5118647627063918 -2024-07-11 19:00:00+00:00,-0.5667627417440233 -2024-07-11 20:00:00+00:00,-0.6079452712485889 -2024-07-11 21:00:00+00:00,-0.6363166507327606 -2024-07-11 22:00:00+00:00,-0.6485833586853584 -2024-07-11 23:00:00+00:00,-0.664222141138749 -2024-07-12 00:00:00+00:00,-0.6669889152733943 -2024-07-12 01:00:00+00:00,-0.6555233771390316 -2024-07-12 02:00:00+00:00,-0.6350739031094619 -2024-07-12 03:00:00+00:00,-0.6097986322215128 -2024-07-12 04:00:00+00:00,-0.5834440187971444 -2024-07-12 05:00:00+00:00,-0.557549560113403 -2024-07-12 06:00:00+00:00,-0.5304985556593653 -2024-07-12 07:00:00+00:00,-0.5016871511140565 -2024-07-12 08:00:00+00:00,-0.47397401466750017 -2024-07-12 09:00:00+00:00,-0.4461411103594308 -2024-07-12 10:00:00+00:00,-0.41971237591303356 -2024-07-12 11:00:00+00:00,-0.3968102402776061 -2024-07-12 12:00:00+00:00,-0.3789833264139332 -2024-07-12 13:00:00+00:00,-0.37224181808799356 -2024-07-12 14:00:00+00:00,-0.38151010895587156 -2024-07-12 15:00:00+00:00,-0.3965539302610858 -2024-07-12 16:00:00+00:00,-0.413940108375386 -2024-07-12 17:00:00+00:00,-0.42934412333867217 -2024-07-12 18:00:00+00:00,-0.44264504694236784 -2024-07-12 19:00:00+00:00,-0.45426183057178443 -2024-07-12 20:00:00+00:00,-0.46236502708558475 -2024-07-14 21:00:00+00:00,-0.46238395008668587 -2024-07-14 22:00:00+00:00,-0.4534410625006531 -2024-07-14 23:00:00+00:00,-0.4390981690810419 -2024-07-15 00:00:00+00:00,-0.4239297184542237 -2024-07-15 01:00:00+00:00,-0.4090619320188113 -2024-07-15 02:00:00+00:00,-0.394564697853789 -2024-07-15 03:00:00+00:00,-0.3811017054261989 -2024-07-15 04:00:00+00:00,-0.3677731029660169 -2024-07-15 05:00:00+00:00,-0.35504334265889753 -2024-07-15 06:00:00+00:00,-0.34007409001331623 -2024-07-15 07:00:00+00:00,-0.3266144859780005 -2024-07-15 08:00:00+00:00,-0.31578533157153454 -2024-07-15 09:00:00+00:00,-0.30417135407153206 -2024-07-15 10:00:00+00:00,-0.29214056466886745 -2024-07-15 11:00:00+00:00,-0.27721278225962287 -2024-07-15 12:00:00+00:00,-0.26299714375086725 -2024-07-15 13:00:00+00:00,-0.24980441604458978 -2024-07-15 14:00:00+00:00,-0.2386195032485828 -2024-07-15 15:00:00+00:00,-0.22827284137310686 -2024-07-15 16:00:00+00:00,-0.22129761969115558 -2024-07-15 17:00:00+00:00,-0.21301021232763911 -2024-07-15 18:00:00+00:00,-0.2049022900800313 -2024-07-15 19:00:00+00:00,-0.19574807342442255 -2024-07-15 20:00:00+00:00,-0.18303617687696805 -2024-07-15 21:00:00+00:00,-0.1687903212946597 -2024-07-15 22:00:00+00:00,-0.15314737311408774 -2024-07-15 23:00:00+00:00,-0.1367327781426752 -2024-07-16 00:00:00+00:00,-0.11696912343045028 -2024-07-16 01:00:00+00:00,-0.09327522029936358 -2024-07-16 02:00:00+00:00,-0.06551491542817493 -2024-07-16 03:00:00+00:00,-0.03750096182326995 -2024-07-16 04:00:00+00:00,-0.010567501823647116 -2024-07-16 05:00:00+00:00,0.015704903316438715 -2024-07-16 06:00:00+00:00,0.037692954478386845 -2024-07-16 07:00:00+00:00,0.054544560112838536 -2024-07-16 08:00:00+00:00,0.06670635603841278 -2024-07-16 09:00:00+00:00,0.07418182642035437 -2024-07-16 10:00:00+00:00,0.07852599840980808 -2024-07-16 11:00:00+00:00,0.07909683931755393 -2024-07-16 12:00:00+00:00,0.08364969224201388 -2024-07-16 13:00:00+00:00,0.08837049501284014 -2024-07-16 14:00:00+00:00,0.09198186701217514 -2024-07-16 15:00:00+00:00,0.09427554810516954 -2024-07-16 16:00:00+00:00,0.09486576432639973 -2024-07-16 17:00:00+00:00,0.09302431427492465 -2024-07-16 18:00:00+00:00,0.08772445011954676 -2024-07-16 19:00:00+00:00,0.08084534618497664 -2024-07-16 20:00:00+00:00,0.07347184476900345 -2024-07-16 21:00:00+00:00,0.06468332199784806 -2024-07-16 22:00:00+00:00,0.055528581173274874 -2024-07-16 23:00:00+00:00,0.046912462555205016 -2024-07-17 00:00:00+00:00,0.040925128831599565 -2024-07-17 01:00:00+00:00,0.03658269400894223 -2024-07-17 02:00:00+00:00,0.032458243242519044 -2024-07-17 03:00:00+00:00,0.028070202139567912 -2024-07-17 04:00:00+00:00,0.021130291864381787 -2024-07-17 05:00:00+00:00,0.007721375599681517 -2024-07-17 06:00:00+00:00,-0.010253450519438212 -2024-07-17 07:00:00+00:00,-0.0419945461740745 -2024-07-17 08:00:00+00:00,-0.09386255778548555 -2024-07-17 09:00:00+00:00,-0.15262076897129234 -2024-07-17 10:00:00+00:00,-0.20718010894733233 -2024-07-17 11:00:00+00:00,-0.2593651252513824 -2024-07-17 12:00:00+00:00,-0.3058736526436611 -2024-07-17 13:00:00+00:00,-0.35026798235297124 -2024-07-17 14:00:00+00:00,-0.38671760111417103 -2024-07-17 15:00:00+00:00,-0.4143424806312625 -2024-07-17 16:00:00+00:00,-0.4381918205434433 -2024-07-17 17:00:00+00:00,-0.4548730692194444 -2024-07-17 18:00:00+00:00,-0.4708938805650397 -2024-07-17 19:00:00+00:00,-0.4832793806687533 -2024-07-17 20:00:00+00:00,-0.4912048090355529 -2024-07-17 21:00:00+00:00,-0.4954857715581923 -2024-07-17 22:00:00+00:00,-0.4963201790569644 -2024-07-17 23:00:00+00:00,-0.501573243688289 -2024-07-18 00:00:00+00:00,-0.507156193177148 -2024-07-18 01:00:00+00:00,-0.5032010328184887 -2024-07-18 02:00:00+00:00,-0.49140265296664487 -2024-07-18 03:00:00+00:00,-0.4722403408595282 -2024-07-18 04:00:00+00:00,-0.4498903625812544 -2024-07-18 05:00:00+00:00,-0.43061856308531554 -2024-07-18 06:00:00+00:00,-0.41188495616023985 -2024-07-18 07:00:00+00:00,-0.39152169900177425 -2024-07-18 08:00:00+00:00,-0.3668659732426502 -2024-07-18 09:00:00+00:00,-0.33959323746423453 -2024-07-18 10:00:00+00:00,-0.3128515602160454 -2024-07-18 11:00:00+00:00,-0.2854882262437621 -2024-07-18 12:00:00+00:00,-0.2595081694361324 -2024-07-18 13:00:00+00:00,-0.23274049862831803 -2024-07-18 14:00:00+00:00,-0.20362370435589777 -2024-07-18 15:00:00+00:00,-0.17063466760175125 -2024-07-18 16:00:00+00:00,-0.13381485362883572 -2024-07-18 17:00:00+00:00,-0.09553310719458744 -2024-07-18 18:00:00+00:00,-0.056640342262156494 -2024-07-18 19:00:00+00:00,-0.01793416004011898 -2024-07-18 20:00:00+00:00,0.01857118280544891 -2024-07-18 21:00:00+00:00,0.05164535779510705 -2024-07-18 22:00:00+00:00,0.07931344151881847 -2024-07-18 23:00:00+00:00,0.1005100620737534 -2024-07-19 00:00:00+00:00,0.11690056364008777 -2024-07-19 01:00:00+00:00,0.13306185763597758 -2024-07-19 02:00:00+00:00,0.14730678991923984 -2024-07-19 03:00:00+00:00,0.15862992230870399 -2024-07-19 04:00:00+00:00,0.1687939505658324 -2024-07-19 05:00:00+00:00,0.18197263355374188 -2024-07-19 06:00:00+00:00,0.1877984908064725 -2024-07-19 07:00:00+00:00,0.18915980040154695 -2024-07-19 08:00:00+00:00,0.186310920761428 -2024-07-19 09:00:00+00:00,0.18225500128377753 -2024-07-19 10:00:00+00:00,0.17864374321098314 -2024-07-19 11:00:00+00:00,0.1753007405884372 -2024-07-19 12:00:00+00:00,0.1751881848457717 -2024-07-19 13:00:00+00:00,0.17409049745456767 -2024-07-19 14:00:00+00:00,0.16932385304728245 -2024-07-19 15:00:00+00:00,0.16290329590814387 -2024-07-19 16:00:00+00:00,0.15581024536053262 -2024-07-19 17:00:00+00:00,0.14829644092096578 -2024-07-19 18:00:00+00:00,0.1418032945803191 -2024-07-19 19:00:00+00:00,0.1361585130224785 -2024-07-19 20:00:00+00:00,0.13060027682778835 -2024-07-21 21:00:00+00:00,0.12427631785364768 -2024-07-21 22:00:00+00:00,0.11499988246743431 -2024-07-21 23:00:00+00:00,0.10660191344724482 -2024-07-22 00:00:00+00:00,0.09899968146334745 -2024-07-22 01:00:00+00:00,0.09391979555158539 -2024-07-22 02:00:00+00:00,0.09058478200507258 -2024-07-22 03:00:00+00:00,0.0871790229998898 -2024-07-22 04:00:00+00:00,0.08315035444025434 -2024-07-22 05:00:00+00:00,0.07227543834776322 -2024-07-22 06:00:00+00:00,0.048085717834172516 -2024-07-22 07:00:00+00:00,0.022484502478826263 -2024-07-22 08:00:00+00:00,-0.0029020522059616145 -2024-07-22 09:00:00+00:00,-0.02850781032240705 -2024-07-22 10:00:00+00:00,-0.05041861845983056 -2024-07-22 11:00:00+00:00,-0.06854258112750886 -2024-07-22 12:00:00+00:00,-0.08422374897658019 -2024-07-22 13:00:00+00:00,-0.09624301555016088 -2024-07-22 14:00:00+00:00,-0.10486237557672905 -2024-07-22 15:00:00+00:00,-0.1073094690355159 -2024-07-22 16:00:00+00:00,-0.10573840654050373 -2024-07-22 17:00:00+00:00,-0.10043720876012732 -2024-07-22 18:00:00+00:00,-0.0939638243967583 -2024-07-22 19:00:00+00:00,-0.0867213749750184 -2024-07-22 20:00:00+00:00,-0.07962561973145446 -2024-07-22 21:00:00+00:00,-0.0743279673935737 -2024-07-22 22:00:00+00:00,-0.06887760015071238 -2024-07-22 23:00:00+00:00,-0.06564600042367387 -2024-07-23 00:00:00+00:00,-0.06778156163144705 -2024-07-23 01:00:00+00:00,-0.0722329514150927 -2024-07-23 02:00:00+00:00,-0.07891850175013577 -2024-07-23 03:00:00+00:00,-0.09212190505880168 -2024-07-23 04:00:00+00:00,-0.10806174001781832 -2024-07-23 05:00:00+00:00,-0.12447528611020965 -2024-07-23 06:00:00+00:00,-0.13570201446002417 -2024-07-23 07:00:00+00:00,-0.1514910410532207 -2024-07-23 08:00:00+00:00,-0.16947720351931916 -2024-07-23 09:00:00+00:00,-0.18859625128412594 -2024-07-23 10:00:00+00:00,-0.2053180548489774 -2024-07-23 11:00:00+00:00,-0.2174856437315984 -2024-07-23 12:00:00+00:00,-0.22764354776943974 -2024-07-23 13:00:00+00:00,-0.23453321551564887 -2024-07-23 14:00:00+00:00,-0.2402496398342195 -2024-07-23 15:00:00+00:00,-0.24366550724849512 -2024-07-23 16:00:00+00:00,-0.24873406159961278 -2024-07-23 17:00:00+00:00,-0.2555374948019104 -2024-07-23 18:00:00+00:00,-0.26347842139593103 -2024-07-23 19:00:00+00:00,-0.27087619345928177 -2024-07-23 20:00:00+00:00,-0.2775186551024504 -2024-07-23 21:00:00+00:00,-0.2829941523275204 -2024-07-23 22:00:00+00:00,-0.2860244169520588 -2024-07-23 23:00:00+00:00,-0.28471699617839397 -2024-07-24 00:00:00+00:00,-0.27905741630982384 -2024-07-24 01:00:00+00:00,-0.27955229608699456 -2024-07-24 02:00:00+00:00,-0.28311393796471185 -2024-07-24 03:00:00+00:00,-0.2909885778515484 -2024-07-24 04:00:00+00:00,-0.3076061673845558 -2024-07-24 05:00:00+00:00,-0.3277485442134094 -2024-07-24 06:00:00+00:00,-0.3490630994925846 -2024-07-24 07:00:00+00:00,-0.36910369739951154 -2024-07-24 08:00:00+00:00,-0.3821303335363454 -2024-07-24 09:00:00+00:00,-0.3905630495558968 -2024-07-24 10:00:00+00:00,-0.3981664925264194 -2024-07-24 11:00:00+00:00,-0.40994293659249337 -2024-07-24 12:00:00+00:00,-0.42879806818259 -2024-07-24 13:00:00+00:00,-0.45605929202191875 -2024-07-24 14:00:00+00:00,-0.4888170581477705 -2024-07-24 15:00:00+00:00,-0.5204176811391593 -2024-07-24 16:00:00+00:00,-0.5469984833398441 -2024-07-24 17:00:00+00:00,-0.5621449661071347 -2024-07-24 18:00:00+00:00,-0.5652095071902417 -2024-07-24 19:00:00+00:00,-0.5590290843639384 -2024-07-24 20:00:00+00:00,-0.5480344292084138 -2024-07-24 21:00:00+00:00,-0.5350088424262933 -2024-07-24 22:00:00+00:00,-0.5232529387353393 -2024-07-24 23:00:00+00:00,-0.506674916973111 -2024-07-25 00:00:00+00:00,-0.4975100852142077 -2024-07-25 01:00:00+00:00,-0.49843279373144356 -2024-07-25 02:00:00+00:00,-0.5080356583428377 -2024-07-25 03:00:00+00:00,-0.5265550845074729 -2024-07-25 04:00:00+00:00,-0.543642151790847 -2024-07-25 05:00:00+00:00,-0.5557821116288539 -2024-07-25 06:00:00+00:00,-0.5611791524118669 -2024-07-25 07:00:00+00:00,-0.5712380420141583 -2024-07-25 08:00:00+00:00,-0.5742209565108792 -2024-07-25 09:00:00+00:00,-0.5777173270897276 -2024-07-25 10:00:00+00:00,-0.5815671257533254 -2024-07-25 11:00:00+00:00,-0.5759265089828273 -2024-07-25 12:00:00+00:00,-0.5505729427704146 -2024-07-25 13:00:00+00:00,-0.5108319075747312 -2024-07-25 14:00:00+00:00,-0.46316758561329563 -2024-07-25 15:00:00+00:00,-0.40663536156392627 -2024-07-25 16:00:00+00:00,-0.34584771350860516 -2024-07-25 17:00:00+00:00,-0.2846475904450252 -2024-07-25 18:00:00+00:00,-0.22968911892046381 -2024-07-25 19:00:00+00:00,-0.17889431668222827 -2024-07-25 20:00:00+00:00,-0.13321950347769565 -2024-07-25 21:00:00+00:00,-0.09228611063668819 -2024-07-25 22:00:00+00:00,-0.05681841015961263 -2024-07-25 23:00:00+00:00,-0.029697157775744547 -2024-07-26 00:00:00+00:00,-0.00568328971708176 -2024-07-26 01:00:00+00:00,0.009744444176187986 -2024-07-26 02:00:00+00:00,0.024336236829108206 -2024-07-26 03:00:00+00:00,0.03495120598586891 -2024-07-26 04:00:00+00:00,0.04122492851462821 -2024-07-26 05:00:00+00:00,0.043812352765597314 -2024-07-26 06:00:00+00:00,0.04372614707485681 -2024-07-26 07:00:00+00:00,0.046368165543293684 -2024-07-26 08:00:00+00:00,0.056602496384284766 -2024-07-26 09:00:00+00:00,0.06939840852834761 -2024-07-26 10:00:00+00:00,0.08874641291287513 -2024-07-26 11:00:00+00:00,0.11167065627716338 -2024-07-26 12:00:00+00:00,0.12907817591673232 -2024-07-26 13:00:00+00:00,0.13520011116444888 -2024-07-26 14:00:00+00:00,0.12880115677199727 -2024-07-26 15:00:00+00:00,0.12049936509911699 -2024-07-26 16:00:00+00:00,0.10980933773679678 -2024-07-26 17:00:00+00:00,0.09710289208843914 -2024-07-26 18:00:00+00:00,0.08357737026723484 -2024-07-26 19:00:00+00:00,0.0704877770707293 -2024-07-26 20:00:00+00:00,0.058101211197855045 -2024-07-28 21:00:00+00:00,0.045475607872848385 -2024-07-28 22:00:00+00:00,0.03871479764018467 -2024-07-28 23:00:00+00:00,0.03795421974508241 -2024-07-29 00:00:00+00:00,0.033010400743819994 -2024-07-29 01:00:00+00:00,0.02221428802652143 -2024-07-29 02:00:00+00:00,0.007914393047255216 -2024-07-29 03:00:00+00:00,-0.006318395221043318 -2024-07-29 04:00:00+00:00,-0.021344056718049526 -2024-07-29 05:00:00+00:00,-0.03649303642985703 -2024-07-29 06:00:00+00:00,-0.05136849577532169 -2024-07-29 07:00:00+00:00,-0.06096367669010222 -2024-07-29 08:00:00+00:00,-0.06549052847401665 -2024-07-29 09:00:00+00:00,-0.06623071671264254 -2024-07-29 10:00:00+00:00,-0.06472683082898559 -2024-07-29 11:00:00+00:00,-0.05929073334615763 -2024-07-29 12:00:00+00:00,-0.05071020582113713 -2024-07-29 13:00:00+00:00,-0.035914119699314 -2024-07-29 14:00:00+00:00,-0.01994223243100953 -2024-07-29 15:00:00+00:00,-0.005333458232692285 -2024-07-29 16:00:00+00:00,0.0073003314811208005 -2024-07-29 17:00:00+00:00,0.018958626657873043 -2024-07-29 18:00:00+00:00,0.029191598955045597 -2024-07-29 19:00:00+00:00,0.03807183335210388 -2024-07-29 20:00:00+00:00,0.04598267710068574 -2024-07-29 21:00:00+00:00,0.0526387869195933 -2024-07-29 22:00:00+00:00,0.058055509517043066 -2024-07-29 23:00:00+00:00,0.05935947629646127 -2024-07-30 00:00:00+00:00,0.05986034663785965 -2024-07-30 01:00:00+00:00,0.06026952037539485 -2024-07-30 02:00:00+00:00,0.060861264865294154 -2024-07-30 03:00:00+00:00,0.062211381021898375 -2024-07-30 04:00:00+00:00,0.06966357844509785 -2024-07-30 05:00:00+00:00,0.08399670630507466 -2024-07-30 06:00:00+00:00,0.1078582608842075 -2024-07-30 07:00:00+00:00,0.13370646693129562 -2024-07-30 08:00:00+00:00,0.15548655661979904 -2024-07-30 09:00:00+00:00,0.17548622324718516 -2024-07-30 10:00:00+00:00,0.19174094423927507 -2024-07-30 11:00:00+00:00,0.20686413343247279 -2024-07-30 12:00:00+00:00,0.22081155344145972 -2024-07-30 13:00:00+00:00,0.22331068002752844 -2024-07-30 14:00:00+00:00,0.22203072676673324 -2024-07-30 15:00:00+00:00,0.20399900425317205 -2024-07-30 16:00:00+00:00,0.16814618560067807 -2024-07-30 17:00:00+00:00,0.12210913265805204 -2024-07-30 18:00:00+00:00,0.07271727323163078 -2024-07-30 19:00:00+00:00,0.023901422262263404 -2024-07-30 20:00:00+00:00,-0.030249436169838915 -2024-07-30 21:00:00+00:00,-0.085969315393157 -2024-07-30 22:00:00+00:00,-0.13647655457101537 -2024-07-30 23:00:00+00:00,-0.18436357934850528 -2024-07-31 00:00:00+00:00,-0.23216097652637502 -2024-07-31 01:00:00+00:00,-0.27610162452701437 -2024-07-31 02:00:00+00:00,-0.3073531726933927 -2024-07-31 03:00:00+00:00,-0.3171286154809847 -2024-07-31 04:00:00+00:00,-0.3287048724480336 -2024-07-31 05:00:00+00:00,-0.3348845826724284 -2024-07-31 06:00:00+00:00,-0.34696499199183545 -2024-07-31 07:00:00+00:00,-0.382124325174018 -2024-07-31 08:00:00+00:00,-0.4290031229120867 -2024-07-31 09:00:00+00:00,-0.4880885013498309 -2024-07-31 10:00:00+00:00,-0.5489237544018086 -2024-07-31 11:00:00+00:00,-0.6115369697200292 -2024-07-31 12:00:00+00:00,-0.6682750823628748 -2024-07-31 13:00:00+00:00,-0.7250179701421868 -2024-07-31 14:00:00+00:00,-0.7673727297698438 -2024-07-31 15:00:00+00:00,-0.7975855692996997 -2024-07-31 16:00:00+00:00,-0.8139305822645846 -2024-07-31 17:00:00+00:00,-0.8145638728686113 -2024-07-31 18:00:00+00:00,-0.8096339652823364 -2024-07-31 19:00:00+00:00,-0.8100006375407693 -2024-07-31 20:00:00+00:00,-0.8087584787058989 -2024-07-31 21:00:00+00:00,-0.8063251691561234 -2024-07-31 22:00:00+00:00,-0.7968401775639326 -2024-07-31 23:00:00+00:00,-0.7877588374073893 -2024-08-01 00:00:00+00:00,-0.7831153687744926 -2024-08-01 01:00:00+00:00,-0.7839877954778589 -2024-08-01 02:00:00+00:00,-0.77702390903664 -2024-08-01 03:00:00+00:00,-0.7669492747079037 -2024-08-01 04:00:00+00:00,-0.7518223592299583 -2024-08-01 05:00:00+00:00,-0.7313956588647925 -2024-08-01 06:00:00+00:00,-0.7028230385122708 -2024-08-01 07:00:00+00:00,-0.6716731400584931 -2024-08-01 08:00:00+00:00,-0.641626428035555 -2024-08-01 09:00:00+00:00,-0.6083633609515893 -2024-08-01 10:00:00+00:00,-0.5721172500845995 -2024-08-01 11:00:00+00:00,-0.5267160537692325 -2024-08-01 12:00:00+00:00,-0.47139545680014794 -2024-08-01 13:00:00+00:00,-0.41664498654038395 -2024-08-01 14:00:00+00:00,-0.3721655149689359 -2024-08-01 15:00:00+00:00,-0.33543165472617187 -2024-08-01 16:00:00+00:00,-0.30736215971702463 -2024-08-01 17:00:00+00:00,-0.28788739214886744 -2024-08-01 18:00:00+00:00,-0.27722762699254405 -2024-08-01 19:00:00+00:00,-0.26850990772763556 -2024-08-01 20:00:00+00:00,-0.2677307873356671 -2024-08-01 21:00:00+00:00,-0.2716292821499408 -2024-08-01 22:00:00+00:00,-0.27787546817524117 -2024-08-01 23:00:00+00:00,-0.2862437677874898 -2024-08-02 00:00:00+00:00,-0.29207501116621903 -2024-08-02 01:00:00+00:00,-0.2935258919851836 -2024-08-02 02:00:00+00:00,-0.2902736483488641 -2024-08-02 03:00:00+00:00,-0.28487478073552003 -2024-08-02 04:00:00+00:00,-0.28143369678187397 -2024-08-02 05:00:00+00:00,-0.2839597962825104 -2024-08-02 06:00:00+00:00,-0.2908025119999713 -2024-08-02 07:00:00+00:00,-0.2936176140105948 -2024-08-02 08:00:00+00:00,-0.2952613001132208 -2024-08-02 09:00:00+00:00,-0.2983791618165948 -2024-08-02 10:00:00+00:00,-0.30304530456660667 -2024-08-02 11:00:00+00:00,-0.30433232640495267 -2024-08-02 12:00:00+00:00,-0.3276929845295792 -2024-08-02 13:00:00+00:00,-0.3687887124145012 -2024-08-02 14:00:00+00:00,-0.4244511724482849 -2024-08-02 15:00:00+00:00,-0.4804444896620442 -2024-08-02 16:00:00+00:00,-0.5347527810955481 -2024-08-02 17:00:00+00:00,-0.5840827806233277 -2024-08-02 18:00:00+00:00,-0.6318795538403731 -2024-08-02 19:00:00+00:00,-0.6733017570898162 -2024-08-02 20:00:00+00:00,-0.7076606687770601 -2024-08-04 21:00:00+00:00,-0.7351516127897988 -2024-08-04 22:00:00+00:00,-0.7578536464080736 -2024-08-04 23:00:00+00:00,-0.7862196098768159 -2024-08-05 00:00:00+00:00,-0.8160692062554625 -2024-08-05 01:00:00+00:00,-0.8499014559156076 -2024-08-05 02:00:00+00:00,-0.8821045009132213 -2024-08-05 03:00:00+00:00,-0.9218726608554443 -2024-08-05 04:00:00+00:00,-0.9813259860859622 -2024-08-05 05:00:00+00:00,-1.0559489249640983 -2024-08-05 06:00:00+00:00,-1.1320701367400938 -2024-08-05 07:00:00+00:00,-1.1911045497453103 -2024-08-05 08:00:00+00:00,-1.2508186990221466 -2024-08-05 09:00:00+00:00,-1.3067167419566539 -2024-08-05 10:00:00+00:00,-1.352926349623719 -2024-08-05 11:00:00+00:00,-1.388674266066821 -2024-08-05 12:00:00+00:00,-1.413783227681784 -2024-08-05 13:00:00+00:00,-1.4199315011541507 -2024-08-05 14:00:00+00:00,-1.411817595640228 -2024-08-05 15:00:00+00:00,-1.3711674006902954 -2024-08-05 16:00:00+00:00,-1.305619900870288 -2024-08-05 17:00:00+00:00,-1.227591976561892 -2024-08-05 18:00:00+00:00,-1.151888687121245 -2024-08-05 19:00:00+00:00,-1.074518301517971 -2024-08-05 20:00:00+00:00,-0.9904665463936355 -2024-08-05 21:00:00+00:00,-0.9062742720742519 -2024-08-05 22:00:00+00:00,-0.813317337375687 -2024-08-05 23:00:00+00:00,-0.7013573498142541 -2024-08-06 00:00:00+00:00,-0.593914474108796 -2024-08-06 01:00:00+00:00,-0.4973467606312877 -2024-08-06 02:00:00+00:00,-0.40351495658292125 -2024-08-06 03:00:00+00:00,-0.31472700810046816 -2024-08-06 04:00:00+00:00,-0.2303731475670069 -2024-08-06 05:00:00+00:00,-0.14711134362767606 -2024-08-06 06:00:00+00:00,-0.07221700569487391 -2024-08-06 07:00:00+00:00,-0.011817040226014645 -2024-08-06 08:00:00+00:00,0.03039184924708037 -2024-08-06 09:00:00+00:00,0.05620474508834751 -2024-08-06 10:00:00+00:00,0.07254117460895194 -2024-08-06 11:00:00+00:00,0.08604841372097774 -2024-08-06 12:00:00+00:00,0.08807133995401017 -2024-08-06 13:00:00+00:00,0.07941441505305785 -2024-08-06 14:00:00+00:00,0.06593181675227648 -2024-08-06 15:00:00+00:00,0.05969732730440075 -2024-08-06 16:00:00+00:00,0.06234472016887653 -2024-08-06 17:00:00+00:00,0.06971982330080348 -2024-08-06 18:00:00+00:00,0.07423173128336405 -2024-08-06 19:00:00+00:00,0.07226754973667815 -2024-08-06 20:00:00+00:00,0.0597369499684409 -2024-08-06 21:00:00+00:00,0.04467803529141897 -2024-08-06 22:00:00+00:00,0.02881773121808357 -2024-08-06 23:00:00+00:00,0.01602885091336935 -2024-08-07 00:00:00+00:00,0.00563941660857158 -2024-08-07 01:00:00+00:00,0.029385971414607675 -2024-08-07 02:00:00+00:00,0.0747481165876556 -2024-08-07 03:00:00+00:00,0.1357688598128043 -2024-08-07 04:00:00+00:00,0.21094542870253977 -2024-08-07 05:00:00+00:00,0.28020255723807486 -2024-08-07 06:00:00+00:00,0.3352899704209943 -2024-08-07 07:00:00+00:00,0.37950337290170044 -2024-08-07 08:00:00+00:00,0.4219349757856649 -2024-08-07 09:00:00+00:00,0.466046677287941 -2024-08-07 10:00:00+00:00,0.5017103133957898 -2024-08-07 11:00:00+00:00,0.5292253639142526 -2024-08-07 12:00:00+00:00,0.5456659242608132 -2024-08-07 13:00:00+00:00,0.556665382363488 -2024-08-07 14:00:00+00:00,0.5632387298432752 -2024-08-07 15:00:00+00:00,0.5677708097602743 -2024-08-07 16:00:00+00:00,0.5656946680758594 -2024-08-07 17:00:00+00:00,0.5559348697538975 -2024-08-07 18:00:00+00:00,0.537620165258323 -2024-08-07 19:00:00+00:00,0.5137579253562464 -2024-08-07 20:00:00+00:00,0.4842011016492802 -2024-08-07 21:00:00+00:00,0.4520313897309482 -2024-08-07 22:00:00+00:00,0.4154498891545305 -2024-08-07 23:00:00+00:00,0.3732448734627442 -2024-08-08 00:00:00+00:00,0.3244415759036533 -2024-08-08 01:00:00+00:00,0.2792405729415957 -2024-08-08 02:00:00+00:00,0.24150854663907323 -2024-08-08 03:00:00+00:00,0.2065350311962434 -2024-08-08 04:00:00+00:00,0.17072834495091121 -2024-08-08 05:00:00+00:00,0.1331432050714073 -2024-08-08 06:00:00+00:00,0.09977969542041612 -2024-08-08 07:00:00+00:00,0.06536667999025661 -2024-08-08 08:00:00+00:00,0.03712008868689163 -2024-08-08 09:00:00+00:00,0.013065675494432036 -2024-08-08 10:00:00+00:00,-0.007480966054878748 -2024-08-08 11:00:00+00:00,-0.02388928071289969 -2024-08-08 12:00:00+00:00,-0.022382335170458883 -2024-08-08 13:00:00+00:00,-0.00862144286375329 -2024-08-08 14:00:00+00:00,0.01473479139163144 -2024-08-08 15:00:00+00:00,0.03965636093276383 -2024-08-08 16:00:00+00:00,0.06663517205384173 -2024-08-08 17:00:00+00:00,0.095172031281236 -2024-08-08 18:00:00+00:00,0.12059537127381569 -2024-08-08 19:00:00+00:00,0.14143854037026865 -2024-08-08 20:00:00+00:00,0.1600859751623959 -2024-08-08 21:00:00+00:00,0.17500964036120206 -2024-08-08 22:00:00+00:00,0.18742324156434517 -2024-08-08 23:00:00+00:00,0.2037588856893243 -2024-08-09 00:00:00+00:00,0.21797734030534394 -2024-08-09 01:00:00+00:00,0.22321293700355063 -2024-08-09 02:00:00+00:00,0.22846467595028214 -2024-08-09 03:00:00+00:00,0.2287983167696474 -2024-08-09 04:00:00+00:00,0.22003805664168624 -2024-08-09 05:00:00+00:00,0.2075618424756233 -2024-08-09 06:00:00+00:00,0.19590501001410676 -2024-08-09 07:00:00+00:00,0.18497417665310403 -2024-08-09 08:00:00+00:00,0.17471362190928297 -2024-08-09 09:00:00+00:00,0.16545957601315361 -2024-08-09 10:00:00+00:00,0.15542871738246455 -2024-08-09 11:00:00+00:00,0.1430722918665775 -2024-08-09 12:00:00+00:00,0.12578274863346645 -2024-08-09 13:00:00+00:00,0.10329267975589933 -2024-08-09 14:00:00+00:00,0.0774654811967395 -2024-08-09 15:00:00+00:00,0.050006030610745746 -2024-08-09 16:00:00+00:00,0.02469972424238452 -2024-08-09 17:00:00+00:00,0.003321531793292278 -2024-08-09 18:00:00+00:00,-0.015757838496635236 -2024-08-09 19:00:00+00:00,-0.03188163169496841 -2024-08-09 20:00:00+00:00,-0.04558602301194396 -2024-08-11 21:00:00+00:00,-0.05467019201398772 -2024-08-11 22:00:00+00:00,-0.056667940011659215 -2024-08-11 23:00:00+00:00,-0.05266595713717558 -2024-08-12 00:00:00+00:00,-0.04842341280202307 -2024-08-12 01:00:00+00:00,-0.04241904671239333 -2024-08-12 02:00:00+00:00,-0.035991160146111104 -2024-08-12 03:00:00+00:00,-0.025324828223245145 -2024-08-12 04:00:00+00:00,-0.013731837230162944 -2024-08-12 05:00:00+00:00,-0.000937879197308103 -2024-08-12 06:00:00+00:00,0.012355093719595213 -2024-08-12 07:00:00+00:00,0.025108204807000434 -2024-08-12 08:00:00+00:00,0.03906270218972403 -2024-08-12 09:00:00+00:00,0.05232743339403176 -2024-08-12 10:00:00+00:00,0.06589278693416388 -2024-08-12 11:00:00+00:00,0.08124224354892248 -2024-08-12 12:00:00+00:00,0.09904947475019527 -2024-08-12 13:00:00+00:00,0.11816330929941593 -2024-08-12 14:00:00+00:00,0.1384202422344093 -2024-08-12 15:00:00+00:00,0.15270343695025224 -2024-08-12 16:00:00+00:00,0.15916214180699448 -2024-08-12 17:00:00+00:00,0.15720729210016743 -2024-08-12 18:00:00+00:00,0.15158982529060813 -2024-08-12 19:00:00+00:00,0.14180687063621444 -2024-08-12 20:00:00+00:00,0.12981010841278212 -2024-08-12 21:00:00+00:00,0.1167907099300623 -2024-08-12 22:00:00+00:00,0.10255747779234886 -2024-08-12 23:00:00+00:00,0.08632083279138959 -2024-08-13 00:00:00+00:00,0.07331195637126148 -2024-08-13 01:00:00+00:00,0.06375043849476883 -2024-08-13 02:00:00+00:00,0.05756712705055283 -2024-08-13 03:00:00+00:00,0.055385310318688805 -2024-08-13 04:00:00+00:00,0.059401117564969436 -2024-08-13 05:00:00+00:00,0.06593449041754045 -2024-08-13 06:00:00+00:00,0.07730234412641769 -2024-08-13 07:00:00+00:00,0.09044961494311263 -2024-08-13 08:00:00+00:00,0.10362538230891241 -2024-08-13 09:00:00+00:00,0.11665794402065884 -2024-08-13 10:00:00+00:00,0.12287617315517979 -2024-08-13 11:00:00+00:00,0.1213135774418753 -2024-08-13 12:00:00+00:00,0.11557297441418149 -2024-08-13 13:00:00+00:00,0.10201814662014208 -2024-08-13 14:00:00+00:00,0.08279911616376348 -2024-08-13 15:00:00+00:00,0.060385972549978045 -2024-08-13 16:00:00+00:00,0.03329074394994047 -2024-08-13 17:00:00+00:00,0.00722189972057068 -2024-08-13 18:00:00+00:00,-0.02039539529059674 -2024-08-13 19:00:00+00:00,-0.045016065309048774 -2024-08-13 20:00:00+00:00,-0.06599830034463672 -2024-08-13 21:00:00+00:00,-0.08359327765612506 -2024-08-13 22:00:00+00:00,-0.09825543757741345 -2024-08-13 23:00:00+00:00,-0.10820418462560545 -2024-08-14 00:00:00+00:00,-0.11205329883770167 -2024-08-14 01:00:00+00:00,-0.11525971913380391 -2024-08-14 02:00:00+00:00,-0.12411001814708189 -2024-08-14 03:00:00+00:00,-0.13072533083960983 -2024-08-14 04:00:00+00:00,-0.13384321045868994 -2024-08-14 05:00:00+00:00,-0.1308383583697468 -2024-08-14 06:00:00+00:00,-0.12216404079925652 -2024-08-14 07:00:00+00:00,-0.1066663437550186 -2024-08-14 08:00:00+00:00,-0.09215178365204987 -2024-08-14 09:00:00+00:00,-0.07899573239823822 -2024-08-14 10:00:00+00:00,-0.07090220736655316 -2024-08-14 11:00:00+00:00,-0.0658615451940041 -2024-08-14 12:00:00+00:00,-0.05609976842553158 -2024-08-14 13:00:00+00:00,-0.04942657190405185 -2024-08-14 14:00:00+00:00,-0.04808537883787539 -2024-08-14 15:00:00+00:00,-0.04835572539994373 -2024-08-14 16:00:00+00:00,-0.04828327925873748 -2024-08-14 17:00:00+00:00,-0.043677761866454244 -2024-08-14 18:00:00+00:00,-0.03581447705333797 -2024-08-14 19:00:00+00:00,-0.024708240748300993 -2024-08-14 20:00:00+00:00,-0.012478183438114753 -2024-08-14 21:00:00+00:00,-0.0012094078561990605 -2024-08-14 22:00:00+00:00,0.009475151416196141 -2024-08-14 23:00:00+00:00,0.01897252094545862 -2024-08-15 00:00:00+00:00,0.0264986330400103 -2024-08-15 01:00:00+00:00,0.03699296164565203 -2024-08-15 02:00:00+00:00,0.04781981907402183 -2024-08-15 03:00:00+00:00,0.0572053269555513 -2024-08-15 04:00:00+00:00,0.0629111923673158 -2024-08-15 05:00:00+00:00,0.0637622480331567 -2024-08-15 06:00:00+00:00,0.061795277013009846 -2024-08-15 07:00:00+00:00,0.05882201019298772 -2024-08-15 08:00:00+00:00,0.05717029729137035 -2024-08-15 09:00:00+00:00,0.0569254138530134 -2024-08-15 10:00:00+00:00,0.055179869463379994 -2024-08-15 11:00:00+00:00,0.05223611627579295 -2024-08-15 12:00:00+00:00,0.07630538368672984 -2024-08-15 13:00:00+00:00,0.11781666165140323 -2024-08-15 14:00:00+00:00,0.1671295962484236 -2024-08-15 15:00:00+00:00,0.21640407724296545 -2024-08-15 16:00:00+00:00,0.2646522519564903 -2024-08-15 17:00:00+00:00,0.30997029676084303 -2024-08-15 18:00:00+00:00,0.3489816269161151 -2024-08-15 19:00:00+00:00,0.381789905791653 -2024-08-15 20:00:00+00:00,0.41193329709601323 -2024-08-15 21:00:00+00:00,0.4382064311259116 -2024-08-15 22:00:00+00:00,0.4589757263767969 -2024-08-15 23:00:00+00:00,0.47374564799492114 -2024-08-16 00:00:00+00:00,0.4816248993128257 -2024-08-16 01:00:00+00:00,0.47997302353742743 -2024-08-16 02:00:00+00:00,0.4706059572632016 -2024-08-16 03:00:00+00:00,0.4567309916838259 -2024-08-16 04:00:00+00:00,0.4385841649254807 -2024-08-16 05:00:00+00:00,0.4186527934977283 -2024-08-16 06:00:00+00:00,0.3999431177172828 -2024-08-16 07:00:00+00:00,0.3813185604057632 -2024-08-16 08:00:00+00:00,0.35802039360526994 -2024-08-16 09:00:00+00:00,0.33165577628247794 -2024-08-16 10:00:00+00:00,0.2988261026144102 -2024-08-16 11:00:00+00:00,0.258165923867822 -2024-08-16 12:00:00+00:00,0.20831743581231363 -2024-08-16 13:00:00+00:00,0.15614054372150168 -2024-08-16 14:00:00+00:00,0.10861690944188027 -2024-08-16 15:00:00+00:00,0.06839144627807821 -2024-08-16 16:00:00+00:00,0.03253929653499241 -2024-08-16 17:00:00+00:00,-0.0028348558559511128 -2024-08-16 18:00:00+00:00,-0.037229202816268715 -2024-08-16 19:00:00+00:00,-0.06864293285049008 -2024-08-16 20:00:00+00:00,-0.09785306544125326 -2024-08-18 21:00:00+00:00,-0.12276308313292095 -2024-08-18 22:00:00+00:00,-0.14055235988488804 -2024-08-18 23:00:00+00:00,-0.15101420761441375 -2024-08-19 00:00:00+00:00,-0.15825627258254055 -2024-08-19 01:00:00+00:00,-0.1692493027330324 -2024-08-19 02:00:00+00:00,-0.18265242161049022 -2024-08-19 03:00:00+00:00,-0.2106466521554684 -2024-08-19 04:00:00+00:00,-0.2500985277235319 -2024-08-19 05:00:00+00:00,-0.3062988037828987 -2024-08-19 06:00:00+00:00,-0.3622048461829172 -2024-08-19 07:00:00+00:00,-0.4105326365539763 -2024-08-19 08:00:00+00:00,-0.4510083673853179 -2024-08-19 09:00:00+00:00,-0.48033363314559485 -2024-08-19 10:00:00+00:00,-0.49879350257498656 -2024-08-19 11:00:00+00:00,-0.5132844728808574 -2024-08-19 12:00:00+00:00,-0.5205503171493908 -2024-08-19 13:00:00+00:00,-0.5188803793197092 -2024-08-19 14:00:00+00:00,-0.5109932064216579 -2024-08-19 15:00:00+00:00,-0.4975326366607692 -2024-08-19 16:00:00+00:00,-0.4789219274823531 -2024-08-19 17:00:00+00:00,-0.45634503264878346 -2024-08-19 18:00:00+00:00,-0.4295589583128841 -2024-08-19 19:00:00+00:00,-0.40087885865111367 -2024-08-19 20:00:00+00:00,-0.372095981710608 -2024-08-19 21:00:00+00:00,-0.3440849484994944 -2024-08-19 22:00:00+00:00,-0.3166515240426533 -2024-08-19 23:00:00+00:00,-0.28902017285280285 -2024-08-20 00:00:00+00:00,-0.2678938269118034 -2024-08-20 01:00:00+00:00,-0.25143731247659495 -2024-08-20 02:00:00+00:00,-0.2276036269499386 -2024-08-20 03:00:00+00:00,-0.19880777410707767 -2024-08-20 04:00:00+00:00,-0.17017579779828523 -2024-08-20 05:00:00+00:00,-0.13711174332236067 -2024-08-20 06:00:00+00:00,-0.10651957491747031 -2024-08-20 07:00:00+00:00,-0.08659149532837186 -2024-08-20 08:00:00+00:00,-0.07480103114568337 -2024-08-20 09:00:00+00:00,-0.0692606498845188 -2024-08-20 10:00:00+00:00,-0.06826486331860289 -2024-08-20 11:00:00+00:00,-0.071162869958135 -2024-08-20 12:00:00+00:00,-0.07939415547819377 -2024-08-20 13:00:00+00:00,-0.09132900332237112 -2024-08-20 14:00:00+00:00,-0.11293598594806961 -2024-08-20 15:00:00+00:00,-0.13768357365315145 -2024-08-20 16:00:00+00:00,-0.16755888399290114 -2024-08-20 17:00:00+00:00,-0.19724828596279553 -2024-08-20 18:00:00+00:00,-0.22645853275780806 -2024-08-20 19:00:00+00:00,-0.25402305446532797 -2024-08-20 20:00:00+00:00,-0.2796648834029437 -2024-08-20 21:00:00+00:00,-0.30433766969509835 -2024-08-20 22:00:00+00:00,-0.326463906740722 -2024-08-20 23:00:00+00:00,-0.34189916167446915 -2024-08-21 00:00:00+00:00,-0.3495898465662436 -2024-08-21 01:00:00+00:00,-0.351848662829824 -2024-08-21 02:00:00+00:00,-0.35010163223381646 -2024-08-21 03:00:00+00:00,-0.34374941003686715 -2024-08-21 04:00:00+00:00,-0.3309172425640978 -2024-08-21 05:00:00+00:00,-0.31406966234707157 -2024-08-21 06:00:00+00:00,-0.29034159478639926 -2024-08-21 07:00:00+00:00,-0.2597879316464811 -2024-08-21 08:00:00+00:00,-0.22775257628155934 -2024-08-21 09:00:00+00:00,-0.19462456048412896 -2024-08-21 10:00:00+00:00,-0.16119532117425553 -2024-08-21 11:00:00+00:00,-0.1307172857778434 -2024-08-21 12:00:00+00:00,-0.10791983979349491 -2024-08-21 13:00:00+00:00,-0.09145990607390703 -2024-08-21 14:00:00+00:00,-0.08117418190938044 -2024-08-21 15:00:00+00:00,-0.08221223005601079 -2024-08-21 16:00:00+00:00,-0.09024959455167259 -2024-08-21 17:00:00+00:00,-0.10400935908842879 -2024-08-21 18:00:00+00:00,-0.12556667591662107 -2024-08-21 19:00:00+00:00,-0.14636716520562745 -2024-08-21 20:00:00+00:00,-0.16078610237581964 -2024-08-21 21:00:00+00:00,-0.17186977233241973 -2024-08-21 22:00:00+00:00,-0.18446912852247577 -2024-08-21 23:00:00+00:00,-0.19323614144940643 -2024-08-22 00:00:00+00:00,-0.19535068295496305 -2024-08-22 01:00:00+00:00,-0.18822439305662036 -2024-08-22 02:00:00+00:00,-0.1779948590295748 -2024-08-22 03:00:00+00:00,-0.16882262936309778 -2024-08-22 04:00:00+00:00,-0.16251512300630583 -2024-08-22 05:00:00+00:00,-0.155777659802474 -2024-08-22 06:00:00+00:00,-0.14699790796263373 -2024-08-22 07:00:00+00:00,-0.13921714645772307 -2024-08-22 08:00:00+00:00,-0.12591493244059276 -2024-08-22 09:00:00+00:00,-0.11000904104247318 -2024-08-22 10:00:00+00:00,-0.09056540646792467 -2024-08-22 11:00:00+00:00,-0.06609558115885701 -2024-08-22 12:00:00+00:00,-0.03866622980752525 -2024-08-22 13:00:00+00:00,-0.0069983352987095584 -2024-08-22 14:00:00+00:00,0.024884342412174097 -2024-08-22 15:00:00+00:00,0.051105206905523046 -2024-08-22 16:00:00+00:00,0.07785442758104 -2024-08-22 17:00:00+00:00,0.10316367434653184 -2024-08-22 18:00:00+00:00,0.12450877484374062 -2024-08-22 19:00:00+00:00,0.14311521708440922 -2024-08-22 20:00:00+00:00,0.1589269142329572 -2024-08-22 21:00:00+00:00,0.17096618779407338 -2024-08-22 22:00:00+00:00,0.17842361299908147 -2024-08-22 23:00:00+00:00,0.1826743084248436 -2024-08-23 00:00:00+00:00,0.18207419816967002 -2024-08-23 01:00:00+00:00,0.1687008839838803 -2024-08-23 02:00:00+00:00,0.1494569242399615 -2024-08-23 03:00:00+00:00,0.12833427873281789 -2024-08-23 04:00:00+00:00,0.10846028959728286 -2024-08-23 05:00:00+00:00,0.08858407131693355 -2024-08-23 06:00:00+00:00,0.06606843636264148 -2024-08-23 07:00:00+00:00,0.048847277949090454 -2024-08-23 08:00:00+00:00,0.03742719170481103 -2024-08-23 09:00:00+00:00,0.033443070448484324 -2024-08-23 10:00:00+00:00,0.032305859938895634 -2024-08-23 11:00:00+00:00,0.033226200283179325 -2024-08-23 12:00:00+00:00,0.034578295514329206 -2024-08-23 13:00:00+00:00,0.03988037617694998 -2024-08-23 14:00:00+00:00,0.031063750884553647 -2024-08-23 15:00:00+00:00,0.008268947798908806 -2024-08-23 16:00:00+00:00,-0.022414145588665276 -2024-08-23 17:00:00+00:00,-0.06340186470735834 -2024-08-23 18:00:00+00:00,-0.11035802296365163 -2024-08-23 19:00:00+00:00,-0.15928334612018458 -2024-08-23 20:00:00+00:00,-0.20413791045927018 -2024-08-25 21:00:00+00:00,-0.24890529174410023 -2024-08-25 22:00:00+00:00,-0.2931290139948193 -2024-08-25 23:00:00+00:00,-0.33367460323096715 -2024-08-26 00:00:00+00:00,-0.37234734976701667 -2024-08-26 01:00:00+00:00,-0.406555475761472 -2024-08-26 02:00:00+00:00,-0.4322140564053427 -2024-08-26 03:00:00+00:00,-0.4495775113908053 -2024-08-26 04:00:00+00:00,-0.4586102620295538 -2024-08-26 05:00:00+00:00,-0.46075912156387777 -2024-08-26 06:00:00+00:00,-0.4619774900564517 -2024-08-26 07:00:00+00:00,-0.4595813058382165 -2024-08-26 08:00:00+00:00,-0.4543965835817143 -2024-08-26 09:00:00+00:00,-0.44500902159369016 -2024-08-26 10:00:00+00:00,-0.4314439643987321 -2024-08-26 11:00:00+00:00,-0.413376892774557 -2024-08-26 12:00:00+00:00,-0.39560409302854904 -2024-08-26 13:00:00+00:00,-0.3705152706446513 -2024-08-26 14:00:00+00:00,-0.3455235910955469 -2024-08-26 15:00:00+00:00,-0.3153239327842792 -2024-08-26 16:00:00+00:00,-0.2834902552109766 -2024-08-26 17:00:00+00:00,-0.2506658745765082 -2024-08-26 18:00:00+00:00,-0.21867306439947035 -2024-08-26 19:00:00+00:00,-0.18691237603545888 -2024-08-26 20:00:00+00:00,-0.15771674056014764 -2024-08-26 21:00:00+00:00,-0.1315710707139321 -2024-08-26 22:00:00+00:00,-0.11059353735489626 -2024-08-26 23:00:00+00:00,-0.09150119434087996 -2024-08-27 00:00:00+00:00,-0.06902207079093159 -2024-08-27 01:00:00+00:00,-0.047754646667717456 -2024-08-27 02:00:00+00:00,-0.025492609326304823 -2024-08-27 03:00:00+00:00,-0.00429043663338434 -2024-08-27 04:00:00+00:00,0.011986784917341987 -2024-08-27 05:00:00+00:00,0.026801386651119627 -2024-08-27 06:00:00+00:00,0.04037209624544057 -2024-08-27 07:00:00+00:00,0.055087948277900256 -2024-08-27 08:00:00+00:00,0.07064565016896665 -2024-08-27 09:00:00+00:00,0.08214873306847335 -2024-08-27 10:00:00+00:00,0.08945867668037531 -2024-08-27 11:00:00+00:00,0.08962856175359873 -2024-08-27 12:00:00+00:00,0.08281257328476897 -2024-08-27 13:00:00+00:00,0.07089308609783938 -2024-08-27 14:00:00+00:00,0.05496173104019667 -2024-08-27 15:00:00+00:00,0.03741714697022388 -2024-08-27 16:00:00+00:00,0.017637737391984723 -2024-08-27 17:00:00+00:00,-0.002338340748913292 -2024-08-27 18:00:00+00:00,-0.023523070096064053 -2024-08-27 19:00:00+00:00,-0.04493938288853985 -2024-08-27 20:00:00+00:00,-0.06565864923166773 -2024-08-27 21:00:00+00:00,-0.08484882258632298 -2024-08-27 22:00:00+00:00,-0.10306184863254614 -2024-08-27 23:00:00+00:00,-0.11789327477560244 -2024-08-28 00:00:00+00:00,-0.12729346205954262 -2024-08-28 01:00:00+00:00,-0.1284860403273073 -2024-08-28 02:00:00+00:00,-0.12290253239579337 -2024-08-28 03:00:00+00:00,-0.11356311436792504 -2024-08-28 04:00:00+00:00,-0.10302567519767442 -2024-08-28 05:00:00+00:00,-0.09141673656659753 -2024-08-28 06:00:00+00:00,-0.07733469594171316 -2024-08-28 07:00:00+00:00,-0.0618018272601585 -2024-08-28 08:00:00+00:00,-0.04947916128363972 -2024-08-28 09:00:00+00:00,-0.040754781119219624 -2024-08-28 10:00:00+00:00,-0.03252825750406665 -2024-08-28 11:00:00+00:00,-0.026358924399890443 -2024-08-28 12:00:00+00:00,-0.0156477408740986 -2024-08-28 13:00:00+00:00,-0.00047775532955621203 -2024-08-28 14:00:00+00:00,0.01106086529865642 -2024-08-28 15:00:00+00:00,0.019438062583876158 -2024-08-28 16:00:00+00:00,0.029626074639534226 -2024-08-28 17:00:00+00:00,0.0386243971452332 -2024-08-28 18:00:00+00:00,0.046652348275397465 -2024-08-28 19:00:00+00:00,0.05432668720603975 -2024-08-28 20:00:00+00:00,0.05945041682048535 -2024-08-28 21:00:00+00:00,0.060513260372462435 -2024-08-28 22:00:00+00:00,0.05622065702017587 -2024-08-28 23:00:00+00:00,0.050901868645461784 -2024-08-29 00:00:00+00:00,0.0450069649039228 -2024-08-29 01:00:00+00:00,0.042180195852469585 -2024-08-29 02:00:00+00:00,0.04059461775737755 -2024-08-29 03:00:00+00:00,0.038804370013121536 -2024-08-29 04:00:00+00:00,0.03922058876364379 -2024-08-29 05:00:00+00:00,0.04003107455926298 -2024-08-29 06:00:00+00:00,0.04041250323703901 -2024-08-29 07:00:00+00:00,0.04275820297981132 -2024-08-29 08:00:00+00:00,0.04547647308340257 -2024-08-29 09:00:00+00:00,0.04548582048331444 -2024-08-29 10:00:00+00:00,0.04318256491070546 -2024-08-29 11:00:00+00:00,0.041079483687534585 -2024-08-29 12:00:00+00:00,0.051945836835968096 -2024-08-29 13:00:00+00:00,0.06991811019623713 -2024-08-29 14:00:00+00:00,0.09084388249843564 -2024-08-29 15:00:00+00:00,0.106541336996829 -2024-08-29 16:00:00+00:00,0.11818324691059442 -2024-08-29 17:00:00+00:00,0.12401040597376117 -2024-08-29 18:00:00+00:00,0.12436043330281286 -2024-08-29 19:00:00+00:00,0.12324123604211748 -2024-08-29 20:00:00+00:00,0.12214360810056485 -2024-08-29 21:00:00+00:00,0.12096628419848227 -2024-08-29 22:00:00+00:00,0.11800934953036629 -2024-08-29 23:00:00+00:00,0.11363157654243855 -2024-08-30 00:00:00+00:00,0.10568531731913144 -2024-08-30 01:00:00+00:00,0.09626839126981626 -2024-08-30 02:00:00+00:00,0.08629964192867264 -2024-08-30 03:00:00+00:00,0.07674167364203607 -2024-08-30 04:00:00+00:00,0.06856503045384235 -2024-08-30 05:00:00+00:00,0.0617179876415966 -2024-08-30 06:00:00+00:00,0.057422293206386026 -2024-08-30 07:00:00+00:00,0.05445309331815329 -2024-08-30 08:00:00+00:00,0.05536223987899796 -2024-08-30 09:00:00+00:00,0.05871987114118924 -2024-08-30 10:00:00+00:00,0.06588693352063889 -2024-08-30 11:00:00+00:00,0.07705368635935307 -2024-08-30 12:00:00+00:00,0.09328488563600984 -2024-08-30 13:00:00+00:00,0.11102063260824502 -2024-08-30 14:00:00+00:00,0.12837303554244406 -2024-08-30 15:00:00+00:00,0.15013820676500034 -2024-08-30 16:00:00+00:00,0.1774937463850737 -2024-08-30 17:00:00+00:00,0.20536593592349195 -2024-08-30 18:00:00+00:00,0.23065955550689232 -2024-08-30 19:00:00+00:00,0.2540009937944398 -2024-08-30 20:00:00+00:00,0.2745556424961917 -2024-09-01 21:00:00+00:00,0.2903041836224951 -2024-09-01 22:00:00+00:00,0.3068180803891886 -2024-09-01 23:00:00+00:00,0.32160852438114784 -2024-09-02 00:00:00+00:00,0.3303961461525945 -2024-09-02 01:00:00+00:00,0.33459051992965677 -2024-09-02 02:00:00+00:00,0.33098271862920803 -2024-09-02 03:00:00+00:00,0.32161628157939487 -2024-09-02 04:00:00+00:00,0.30812719367941654 -2024-09-02 05:00:00+00:00,0.29485096696285373 -2024-09-02 06:00:00+00:00,0.2825617238883628 -2024-09-02 07:00:00+00:00,0.2758850423372841 -2024-09-02 08:00:00+00:00,0.2761009717315556 -2024-09-02 09:00:00+00:00,0.27961354081168993 -2024-09-02 10:00:00+00:00,0.28638120569571723 -2024-09-02 11:00:00+00:00,0.2971331756465122 -2024-09-02 12:00:00+00:00,0.30902988726988745 -2024-09-02 13:00:00+00:00,0.3200129799880762 -2024-09-02 14:00:00+00:00,0.32907044464602503 -2024-09-02 15:00:00+00:00,0.3355365934103052 -2024-09-02 16:00:00+00:00,0.33715289628114675 -2024-09-02 17:00:00+00:00,0.3360728219827422 -2024-09-02 18:00:00+00:00,0.33275289620932197 -2024-09-02 19:00:00+00:00,0.327221337936647 -2024-09-02 20:00:00+00:00,0.32023064704867865 -2024-09-02 21:00:00+00:00,0.3118503123411504 -2024-09-02 22:00:00+00:00,0.3030614199938615 -2024-09-02 23:00:00+00:00,0.2905476951749066 -2024-09-03 00:00:00+00:00,0.28170790550342306 -2024-09-03 01:00:00+00:00,0.2668713965669772 -2024-09-03 02:00:00+00:00,0.2488286665732237 -2024-09-03 03:00:00+00:00,0.2276234142604316 -2024-09-03 04:00:00+00:00,0.2048692246284389 -2024-09-03 05:00:00+00:00,0.17829627573519816 -2024-09-03 06:00:00+00:00,0.14565773767264886 -2024-09-03 07:00:00+00:00,0.10947957936213494 -2024-09-03 08:00:00+00:00,0.07052813898572864 -2024-09-03 09:00:00+00:00,0.03369795768978144 -2024-09-03 10:00:00+00:00,0.0016466765858407992 -2024-09-03 11:00:00+00:00,-0.0234992362181415 -2024-09-03 12:00:00+00:00,-0.04760393759603285 -2024-09-03 13:00:00+00:00,-0.07679959005891097 -2024-09-03 14:00:00+00:00,-0.10542250622929117 -2024-09-03 15:00:00+00:00,-0.1278135088758311 -2024-09-03 16:00:00+00:00,-0.14575873878435397 -2024-09-03 17:00:00+00:00,-0.15753852930909779 -2024-09-03 18:00:00+00:00,-0.16597707871265838 -2024-09-03 19:00:00+00:00,-0.17424490441634427 -2024-09-03 20:00:00+00:00,-0.18395237932101904 -2024-09-03 21:00:00+00:00,-0.19428818295080416 -2024-09-03 22:00:00+00:00,-0.2056605193053124 -2024-09-03 23:00:00+00:00,-0.21618686647198682 -2024-09-04 00:00:00+00:00,-0.2282176241732264 -2024-09-04 01:00:00+00:00,-0.23633906642307964 -2024-09-04 02:00:00+00:00,-0.24040764488421623 -2024-09-04 03:00:00+00:00,-0.2432966849034427 -2024-09-04 04:00:00+00:00,-0.24574557067338773 -2024-09-04 05:00:00+00:00,-0.2485383598919176 -2024-09-04 06:00:00+00:00,-0.2554925187661585 -2024-09-04 07:00:00+00:00,-0.26240095338386404 -2024-09-04 08:00:00+00:00,-0.264762677756241 -2024-09-04 09:00:00+00:00,-0.2651428006339497 -2024-09-04 10:00:00+00:00,-0.26426292114617556 -2024-09-04 11:00:00+00:00,-0.26487699871040515 -2024-09-04 12:00:00+00:00,-0.26282403902474627 -2024-09-04 13:00:00+00:00,-0.2631390765813166 -2024-09-04 14:00:00+00:00,-0.27504343448257373 -2024-09-04 15:00:00+00:00,-0.28996139791904424 -2024-09-04 16:00:00+00:00,-0.30947347409676873 -2024-09-04 17:00:00+00:00,-0.3297220284002202 -2024-09-04 18:00:00+00:00,-0.35157079400212365 -2024-09-04 19:00:00+00:00,-0.37356079197833364 -2024-09-04 20:00:00+00:00,-0.3950391276354585 -2024-09-04 21:00:00+00:00,-0.4154308581974378 -2024-09-04 22:00:00+00:00,-0.4336362478767104 -2024-09-04 23:00:00+00:00,-0.4530915430756503 -2024-09-05 00:00:00+00:00,-0.46518310194469414 -2024-09-05 01:00:00+00:00,-0.4711565606504266 -2024-09-05 02:00:00+00:00,-0.4699299654398136 -2024-09-05 03:00:00+00:00,-0.46430055973897005 -2024-09-05 04:00:00+00:00,-0.4580840381100676 -2024-09-05 05:00:00+00:00,-0.4535733605361899 -2024-09-05 06:00:00+00:00,-0.45193511450371504 -2024-09-05 07:00:00+00:00,-0.445218038199172 -2024-09-05 08:00:00+00:00,-0.4352612955515835 -2024-09-05 09:00:00+00:00,-0.4222614430259396 -2024-09-05 10:00:00+00:00,-0.40889208610963795 -2024-09-05 11:00:00+00:00,-0.39571415806065574 -2024-09-05 12:00:00+00:00,-0.38807701890188445 -2024-09-05 13:00:00+00:00,-0.38192886920534974 -2024-09-05 14:00:00+00:00,-0.3645669318756035 -2024-09-05 15:00:00+00:00,-0.3479935211044358 -2024-09-05 16:00:00+00:00,-0.33200595587227966 -2024-09-05 17:00:00+00:00,-0.31779118965481246 -2024-09-05 18:00:00+00:00,-0.3036235303601643 -2024-09-05 19:00:00+00:00,-0.2888978928027041 -2024-09-05 20:00:00+00:00,-0.274031737293668 -2024-09-05 21:00:00+00:00,-0.259631102930461 -2024-09-05 22:00:00+00:00,-0.2459087632738699 -2024-09-05 23:00:00+00:00,-0.2331054802398306 -2024-09-06 00:00:00+00:00,-0.22444831823312544 -2024-09-06 01:00:00+00:00,-0.2167207281704489 -2024-09-06 02:00:00+00:00,-0.21074731731660426 -2024-09-06 03:00:00+00:00,-0.20838653418869174 -2024-09-06 04:00:00+00:00,-0.20852919061037006 -2024-09-06 05:00:00+00:00,-0.21598041817239805 -2024-09-06 06:00:00+00:00,-0.23049602957829474 -2024-09-06 07:00:00+00:00,-0.24607910643182207 -2024-09-06 08:00:00+00:00,-0.2595016433971187 -2024-09-06 09:00:00+00:00,-0.26727547731315704 -2024-09-06 10:00:00+00:00,-0.26967844628120574 -2024-09-06 11:00:00+00:00,-0.2647037865467049 -2024-09-06 12:00:00+00:00,-0.25589520201253385 -2024-09-06 13:00:00+00:00,-0.2360903164467191 -2024-09-06 14:00:00+00:00,-0.22712403889882943 -2024-09-06 15:00:00+00:00,-0.22967392670623255 -2024-09-06 16:00:00+00:00,-0.23388677548554632 -2024-09-06 17:00:00+00:00,-0.2387390133699699 -2024-09-06 18:00:00+00:00,-0.2442305481642372 -2024-09-06 19:00:00+00:00,-0.24833694518477334 -2024-09-06 20:00:00+00:00,-0.25248505852568864 -2024-09-08 21:00:00+00:00,-0.2582914745964866 -2024-09-08 22:00:00+00:00,-0.26443565524048457 -2024-09-08 23:00:00+00:00,-0.2644103394687149 -2024-09-09 00:00:00+00:00,-0.25659826679425113 -2024-09-09 01:00:00+00:00,-0.23958214000350192 -2024-09-09 02:00:00+00:00,-0.21936071154711623 -2024-09-09 03:00:00+00:00,-0.19863164590532129 -2024-09-09 04:00:00+00:00,-0.1748040882700638 -2024-09-09 05:00:00+00:00,-0.15084238690634397 -2024-09-09 06:00:00+00:00,-0.126288975500759 -2024-09-09 07:00:00+00:00,-0.09990700392495667 -2024-09-09 08:00:00+00:00,-0.06997636977481135 -2024-09-09 09:00:00+00:00,-0.03750794874771168 -2024-09-09 10:00:00+00:00,-0.002177702862976 -2024-09-09 11:00:00+00:00,0.03214190799808734 -2024-09-09 12:00:00+00:00,0.05794090896898092 -2024-09-09 13:00:00+00:00,0.06989492839891268 -2024-09-09 14:00:00+00:00,0.07153964344354027 -2024-09-09 15:00:00+00:00,0.06945689000856173 -2024-09-09 16:00:00+00:00,0.06425480348436426 -2024-09-09 17:00:00+00:00,0.0561708402354532 -2024-09-09 18:00:00+00:00,0.04651250482744492 -2024-09-09 19:00:00+00:00,0.03862893150673964 -2024-09-09 20:00:00+00:00,0.03546958115783544 -2024-09-09 21:00:00+00:00,0.03497315227699702 -2024-09-09 22:00:00+00:00,0.03454452536926727 -2024-09-09 23:00:00+00:00,0.03639956669198674 -2024-09-10 00:00:00+00:00,0.04402086042783519 -2024-09-10 01:00:00+00:00,0.05399066424290581 -2024-09-10 02:00:00+00:00,0.06449959995494726 -2024-09-10 03:00:00+00:00,0.0719362989725977 -2024-09-10 04:00:00+00:00,0.07443659806469534 -2024-09-10 05:00:00+00:00,0.07473871264006841 -2024-09-10 06:00:00+00:00,0.07735378883373775 -2024-09-10 07:00:00+00:00,0.08434393945189907 -2024-09-10 08:00:00+00:00,0.09208173237904098 -2024-09-10 09:00:00+00:00,0.09407263223556418 -2024-09-10 10:00:00+00:00,0.0902600929505341 -2024-09-10 11:00:00+00:00,0.08409651673485778 -2024-09-10 12:00:00+00:00,0.072490503095359 -2024-09-10 13:00:00+00:00,0.060150079242901916 -2024-09-10 14:00:00+00:00,0.04324832629824281 -2024-09-10 15:00:00+00:00,0.01741466792012928 -2024-09-10 16:00:00+00:00,-0.009910761442420729 -2024-09-10 17:00:00+00:00,-0.0378010714521231 -2024-09-10 18:00:00+00:00,-0.06523112841633802 -2024-09-10 19:00:00+00:00,-0.09142428047775455 -2024-09-10 20:00:00+00:00,-0.11289944820603764 -2024-09-10 21:00:00+00:00,-0.13044920511365593 -2024-09-10 22:00:00+00:00,-0.14406601252914553 -2024-09-10 23:00:00+00:00,-0.15754193403370298 -2024-09-11 00:00:00+00:00,-0.16898655809291727 -2024-09-11 01:00:00+00:00,-0.18549598053635294 -2024-09-11 02:00:00+00:00,-0.20387573200297382 -2024-09-11 03:00:00+00:00,-0.22892381501521586 -2024-09-11 04:00:00+00:00,-0.2611987047528101 -2024-09-11 05:00:00+00:00,-0.2926527413411314 -2024-09-11 06:00:00+00:00,-0.3198404982737844 -2024-09-11 07:00:00+00:00,-0.3419766636097793 -2024-09-11 08:00:00+00:00,-0.35670930494482167 -2024-09-11 09:00:00+00:00,-0.3646259254116898 -2024-09-11 10:00:00+00:00,-0.36686479332038513 -2024-09-11 11:00:00+00:00,-0.36285240035450395 -2024-09-11 12:00:00+00:00,-0.3447006020264656 -2024-09-11 13:00:00+00:00,-0.3254626596184849 -2024-09-11 14:00:00+00:00,-0.31198499161228943 -2024-09-11 15:00:00+00:00,-0.29732687194345825 -2024-09-11 16:00:00+00:00,-0.2784777224699926 -2024-09-11 17:00:00+00:00,-0.2532707827267691 -2024-09-11 18:00:00+00:00,-0.22488685496573155 -2024-09-11 19:00:00+00:00,-0.19271095405059657 -2024-09-11 20:00:00+00:00,-0.15962916629698604 -2024-09-11 21:00:00+00:00,-0.12843486132731977 -2024-09-11 22:00:00+00:00,-0.09711768893557084 -2024-09-11 23:00:00+00:00,-0.0642720578201833 -2024-09-12 00:00:00+00:00,-0.03130984849130991 -2024-09-12 01:00:00+00:00,-0.00216476043278142 -2024-09-12 02:00:00+00:00,0.022857522806926624 -2024-09-12 03:00:00+00:00,0.0449370337104624 -2024-09-12 04:00:00+00:00,0.06694354592011782 -2024-09-12 05:00:00+00:00,0.08837987472792833 -2024-09-12 06:00:00+00:00,0.10401742091963889 -2024-09-12 07:00:00+00:00,0.11797896437001856 -2024-09-12 08:00:00+00:00,0.12695362413356945 -2024-09-12 09:00:00+00:00,0.13359036067758392 -2024-09-12 10:00:00+00:00,0.1371999423804342 -2024-09-12 11:00:00+00:00,0.13754869695424096 -2024-09-12 12:00:00+00:00,0.12807113241092355 -2024-09-12 13:00:00+00:00,0.11120365355394043 -2024-09-12 14:00:00+00:00,0.097881523811251 -2024-09-12 15:00:00+00:00,0.08342776664223776 -2024-09-12 16:00:00+00:00,0.07323568720771026 -2024-09-12 17:00:00+00:00,0.06215732519031898 -2024-09-12 18:00:00+00:00,0.047005840189279155 -2024-09-12 19:00:00+00:00,0.02772300360837269 -2024-09-12 20:00:00+00:00,0.005713467433816205 -2024-09-12 21:00:00+00:00,-0.016513359962782182 -2024-09-12 22:00:00+00:00,-0.03757785048411732 -2024-09-12 23:00:00+00:00,-0.0619888851121841 -2024-09-13 00:00:00+00:00,-0.09211811221384651 -2024-09-13 01:00:00+00:00,-0.12357933383331683 -2024-09-13 02:00:00+00:00,-0.1568960792392637 -2024-09-13 03:00:00+00:00,-0.19027684246334214 -2024-09-13 04:00:00+00:00,-0.22180135612245067 -2024-09-13 05:00:00+00:00,-0.251519980777234 -2024-09-13 06:00:00+00:00,-0.2743698468587314 -2024-09-13 07:00:00+00:00,-0.29393122205844313 -2024-09-13 08:00:00+00:00,-0.3131503115734942 -2024-09-13 09:00:00+00:00,-0.33238007246471846 -2024-09-13 10:00:00+00:00,-0.34793637479294487 -2024-09-13 11:00:00+00:00,-0.3573640561908867 -2024-09-13 12:00:00+00:00,-0.36331693078729865 -2024-09-13 13:00:00+00:00,-0.37185486540210466 -2024-09-13 14:00:00+00:00,-0.376250723990738 -2024-09-13 15:00:00+00:00,-0.37657951390991246 -2024-09-13 16:00:00+00:00,-0.3711223538207627 -2024-09-13 17:00:00+00:00,-0.3599153500300504 -2024-09-13 18:00:00+00:00,-0.3445206282204823 -2024-09-13 19:00:00+00:00,-0.32655481927294217 -2024-09-13 20:00:00+00:00,-0.30893000137629056 -2024-09-15 21:00:00+00:00,-0.2922971227371656 -2024-09-15 22:00:00+00:00,-0.27791163414199066 -2024-09-15 23:00:00+00:00,-0.26264634353116545 -2024-09-16 00:00:00+00:00,-0.2521366307806538 -2024-09-16 01:00:00+00:00,-0.24434457198812481 -2024-09-16 02:00:00+00:00,-0.23823508326667778 -2024-09-16 03:00:00+00:00,-0.2395306997916729 -2024-09-16 04:00:00+00:00,-0.24332221161673223 -2024-09-16 05:00:00+00:00,-0.24830767039091206 -2024-09-16 06:00:00+00:00,-0.2586865472592456 -2024-09-16 07:00:00+00:00,-0.27094528569034015 -2024-09-16 08:00:00+00:00,-0.2834731196431521 -2024-09-16 09:00:00+00:00,-0.2892029774544575 -2024-09-16 10:00:00+00:00,-0.2910047825112821 -2024-09-16 11:00:00+00:00,-0.2934159076677095 -2024-09-16 12:00:00+00:00,-0.2897818846557599 -2024-09-16 13:00:00+00:00,-0.27839489275108353 -2024-09-16 14:00:00+00:00,-0.26231830420950025 -2024-09-16 15:00:00+00:00,-0.23791534337640274 -2024-09-16 16:00:00+00:00,-0.21155135775838602 -2024-09-16 17:00:00+00:00,-0.18425184734402184 -2024-09-16 18:00:00+00:00,-0.15680274735288405 -2024-09-16 19:00:00+00:00,-0.13059670016820038 -2024-09-16 20:00:00+00:00,-0.1077136886686524 -2024-09-16 21:00:00+00:00,-0.08748464956622055 -2024-09-16 22:00:00+00:00,-0.06601487122502997 -2024-09-16 23:00:00+00:00,-0.04587520511167971 -2024-09-17 00:00:00+00:00,-0.029626406185004197 -2024-09-17 01:00:00+00:00,-0.020110563259386517 -2024-09-17 02:00:00+00:00,-0.013145869562993068 -2024-09-17 03:00:00+00:00,-0.007796237116715461 -2024-09-17 04:00:00+00:00,-0.0024132990360903827 -2024-09-17 05:00:00+00:00,0.00309673824140933 -2024-09-17 06:00:00+00:00,0.008039538330341683 -2024-09-17 07:00:00+00:00,0.01104110954809514 -2024-09-17 08:00:00+00:00,0.012260537889187281 -2024-09-17 09:00:00+00:00,0.013355985191387577 -2024-09-17 10:00:00+00:00,0.014700672245532145 -2024-09-17 11:00:00+00:00,0.015108407635381547 -2024-09-17 12:00:00+00:00,0.020712386833134016 -2024-09-17 13:00:00+00:00,0.03896448714493913 -2024-09-17 14:00:00+00:00,0.0659492837805044 -2024-09-17 15:00:00+00:00,0.0980552015160922 -2024-09-17 16:00:00+00:00,0.130842183623357 -2024-09-17 17:00:00+00:00,0.16471942198161227 -2024-09-17 18:00:00+00:00,0.1956130126243097 -2024-09-17 19:00:00+00:00,0.22920821302385214 -2024-09-17 20:00:00+00:00,0.26508499715197864 -2024-09-17 21:00:00+00:00,0.2991092103245805 -2024-09-17 22:00:00+00:00,0.32462488075971696 -2024-09-17 23:00:00+00:00,0.34212383426363663 -2024-09-18 00:00:00+00:00,0.3471573816799476 -2024-09-18 01:00:00+00:00,0.34123271679689415 -2024-09-18 02:00:00+00:00,0.3271907326960322 -2024-09-18 03:00:00+00:00,0.3068068958697556 -2024-09-18 04:00:00+00:00,0.28162080685349944 -2024-09-18 05:00:00+00:00,0.25758124749713407 -2024-09-18 06:00:00+00:00,0.23512487736964982 -2024-09-18 07:00:00+00:00,0.21958303413333635 -2024-09-18 08:00:00+00:00,0.20602494988363002 -2024-09-18 09:00:00+00:00,0.19293032935854293 -2024-09-18 10:00:00+00:00,0.17973473667844095 -2024-09-18 11:00:00+00:00,0.17060295380423457 -2024-09-18 12:00:00+00:00,0.16532068830649121 -2024-09-18 13:00:00+00:00,0.1597667161344908 -2024-09-18 14:00:00+00:00,0.15779851104716666 -2024-09-18 15:00:00+00:00,0.15676832568462212 -2024-09-18 16:00:00+00:00,0.155161231745369 -2024-09-18 17:00:00+00:00,0.15466217671269203 -2024-09-18 18:00:00+00:00,0.14089024826314572 -2024-09-18 19:00:00+00:00,0.14000452817014514 -2024-09-18 20:00:00+00:00,0.14433835071423 -2024-09-18 21:00:00+00:00,0.14889863013801913 -2024-09-18 22:00:00+00:00,0.1528309678752678 -2024-09-18 23:00:00+00:00,0.1652762202572433 -2024-09-19 00:00:00+00:00,0.19452041167570205 -2024-09-19 01:00:00+00:00,0.23621034992204232 -2024-09-19 02:00:00+00:00,0.27458519175374585 -2024-09-19 03:00:00+00:00,0.30770223741927405 -2024-09-19 04:00:00+00:00,0.33518215890606173 -2024-09-19 05:00:00+00:00,0.3473197909290182 -2024-09-19 06:00:00+00:00,0.34321214675821726 -2024-09-19 07:00:00+00:00,0.33250350592846717 -2024-09-19 08:00:00+00:00,0.321976109889473 -2024-09-19 09:00:00+00:00,0.310885742491999 -2024-09-19 10:00:00+00:00,0.3004321285624838 -2024-09-19 11:00:00+00:00,0.29167676693042477 -2024-09-19 12:00:00+00:00,0.29711790884799927 -2024-09-19 13:00:00+00:00,0.30373004632841516 -2024-09-19 14:00:00+00:00,0.30335235947015105 -2024-09-19 15:00:00+00:00,0.2974912144811393 -2024-09-19 16:00:00+00:00,0.29024742364439776 -2024-09-19 17:00:00+00:00,0.2799725949899447 -2024-09-19 18:00:00+00:00,0.26356628613991295 -2024-09-19 19:00:00+00:00,0.24317734883090933 -2024-09-19 20:00:00+00:00,0.22077483974540335 -2024-09-19 21:00:00+00:00,0.19787717540219268 -2024-09-19 22:00:00+00:00,0.1758013946113993 -2024-09-19 23:00:00+00:00,0.158188199667883 -2024-09-20 00:00:00+00:00,0.1366915321136161 -2024-09-20 01:00:00+00:00,0.11336871493810458 -2024-09-20 02:00:00+00:00,0.09099829647314546 -2024-09-20 03:00:00+00:00,0.067382136637525 -2024-09-20 04:00:00+00:00,0.04241033158857474 -2024-09-20 05:00:00+00:00,0.019269042211127706 -2024-09-20 06:00:00+00:00,0.009644271177000457 -2024-09-20 07:00:00+00:00,0.019312418677394177 -2024-09-20 08:00:00+00:00,0.04334608819672202 -2024-09-20 09:00:00+00:00,0.07711513792816724 -2024-09-20 10:00:00+00:00,0.12011364925864967 -2024-09-20 11:00:00+00:00,0.1657310153580918 -2024-09-20 12:00:00+00:00,0.20144582789813587 -2024-09-20 13:00:00+00:00,0.23521172022131115 -2024-09-20 14:00:00+00:00,0.27089036398997135 -2024-09-20 15:00:00+00:00,0.297143383774222 -2024-09-20 16:00:00+00:00,0.31296219402109005 -2024-09-20 17:00:00+00:00,0.3242403718976338 -2024-09-20 18:00:00+00:00,0.329667125580684 -2024-09-20 19:00:00+00:00,0.3311722288625843 -2024-09-20 20:00:00+00:00,0.3293377459002441 -2024-09-22 21:00:00+00:00,0.3244205715306497 -2024-09-22 22:00:00+00:00,0.3175522502709706 -2024-09-22 23:00:00+00:00,0.31155425093477296 -2024-09-23 00:00:00+00:00,0.30640807669887266 -2024-09-23 01:00:00+00:00,0.30537177330812165 -2024-09-23 02:00:00+00:00,0.30601450738082936 -2024-09-23 03:00:00+00:00,0.3063083819923401 -2024-09-23 04:00:00+00:00,0.30472874355567303 -2024-09-23 05:00:00+00:00,0.29906565634918403 -2024-09-23 06:00:00+00:00,0.28851194108046807 -2024-09-23 07:00:00+00:00,0.2695714469923499 -2024-09-23 08:00:00+00:00,0.2445242765320345 -2024-09-23 09:00:00+00:00,0.21704343004140703 -2024-09-23 10:00:00+00:00,0.18486686874942942 -2024-09-23 11:00:00+00:00,0.15482562932775054 -2024-09-23 12:00:00+00:00,0.12994527057092353 -2024-09-23 13:00:00+00:00,0.11387071275693357 -2024-09-23 14:00:00+00:00,0.09931966349279173 -2024-09-23 15:00:00+00:00,0.08340409986008053 -2024-09-23 16:00:00+00:00,0.06333676964580205 -2024-09-23 17:00:00+00:00,0.042548017244292614 -2024-09-23 18:00:00+00:00,0.02092781683480738 -2024-09-23 19:00:00+00:00,0.0025524907054099294 -2024-09-23 20:00:00+00:00,-0.011012760353226481 -2024-09-23 21:00:00+00:00,-0.021018389351099984 -2024-09-23 22:00:00+00:00,-0.027598277213901293 -2024-09-23 23:00:00+00:00,-0.03160719183407848 -2024-09-24 00:00:00+00:00,-0.03498287598172987 -2024-09-24 01:00:00+00:00,-0.036476481516687 -2024-09-24 02:00:00+00:00,-0.036022734282835665 -2024-09-24 03:00:00+00:00,-0.03258298463456787 -2024-09-24 04:00:00+00:00,-0.026276865968198577 -2024-09-24 05:00:00+00:00,-0.01445624561153444 -2024-09-24 06:00:00+00:00,0.005562824755929284 -2024-09-24 07:00:00+00:00,0.03008918243909493 -2024-09-24 08:00:00+00:00,0.053453850327767116 -2024-09-24 09:00:00+00:00,0.07442465860332602 -2024-09-24 10:00:00+00:00,0.08734517709530598 -2024-09-24 11:00:00+00:00,0.0949498054610313 -2024-09-24 12:00:00+00:00,0.09847984455588261 -2024-09-24 13:00:00+00:00,0.10110462372315421 -2024-09-24 14:00:00+00:00,0.09602929799092542 -2024-09-24 15:00:00+00:00,0.08783414170938039 -2024-09-24 16:00:00+00:00,0.07290326132915739 -2024-09-24 17:00:00+00:00,0.05452664387834558 -2024-09-24 18:00:00+00:00,0.03339346315249701 -2024-09-24 19:00:00+00:00,0.009282766285125619 -2024-09-24 20:00:00+00:00,-0.015722639818158666 -2024-09-24 21:00:00+00:00,-0.04046866827968712 -2024-09-24 22:00:00+00:00,-0.06596009577397183 -2024-09-24 23:00:00+00:00,-0.09194775530441848 -2024-09-25 00:00:00+00:00,-0.11310077069911782 -2024-09-25 01:00:00+00:00,-0.1254853592855893 -2024-09-25 02:00:00+00:00,-0.13303428230160974 -2024-09-25 03:00:00+00:00,-0.13768299439217468 -2024-09-25 04:00:00+00:00,-0.1406584041990321 -2024-09-25 05:00:00+00:00,-0.14198082036993073 -2024-09-25 06:00:00+00:00,-0.13517339120250565 -2024-09-25 07:00:00+00:00,-0.12012821847180155 -2024-09-25 08:00:00+00:00,-0.09950932784806509 -2024-09-25 09:00:00+00:00,-0.07234218135176648 -2024-09-25 10:00:00+00:00,-0.04075049200215097 -2024-09-25 11:00:00+00:00,-0.007565888871059825 -2024-09-25 12:00:00+00:00,0.023187651711336417 -2024-09-25 13:00:00+00:00,0.04847096714046649 -2024-09-25 14:00:00+00:00,0.07367610789345286 -2024-09-25 15:00:00+00:00,0.09810884435890849 -2024-09-25 16:00:00+00:00,0.12256329487077877 -2024-09-25 17:00:00+00:00,0.14580510881540285 -2024-09-25 18:00:00+00:00,0.16876238284998005 -2024-09-25 19:00:00+00:00,0.1912295642101212 -2024-09-25 20:00:00+00:00,0.2117599929298898 -2024-09-25 21:00:00+00:00,0.22816149440273367 -2024-09-25 22:00:00+00:00,0.24024424710934775 -2024-09-25 23:00:00+00:00,0.24952402894400263 -2024-09-26 00:00:00+00:00,0.25241799653152325 -2024-09-26 01:00:00+00:00,0.2556878543321402 -2024-09-26 02:00:00+00:00,0.2587901342976658 -2024-09-26 03:00:00+00:00,0.26250272428449367 -2024-09-26 04:00:00+00:00,0.26200777686249127 -2024-09-26 05:00:00+00:00,0.2587511273924306 -2024-09-26 06:00:00+00:00,0.25519518161969584 -2024-09-26 07:00:00+00:00,0.2540877488678561 -2024-09-26 08:00:00+00:00,0.2508349583614143 -2024-09-26 09:00:00+00:00,0.24385796464306242 -2024-09-26 10:00:00+00:00,0.22893215498762054 -2024-09-26 11:00:00+00:00,0.20615776888634735 -2024-09-26 12:00:00+00:00,0.18553790036646498 -2024-09-26 13:00:00+00:00,0.1671179438932505 -2024-09-26 14:00:00+00:00,0.15476184352904 -2024-09-26 15:00:00+00:00,0.1439646922128609 -2024-09-26 16:00:00+00:00,0.13728624352065077 -2024-09-26 17:00:00+00:00,0.13096098297201203 -2024-09-26 18:00:00+00:00,0.12342238168064257 -2024-09-26 19:00:00+00:00,0.1158753399192408 -2024-09-26 20:00:00+00:00,0.1107519687933622 -2024-09-26 21:00:00+00:00,0.10710003924438902 -2024-09-26 22:00:00+00:00,0.10549834507782165 -2024-09-26 23:00:00+00:00,0.10834372863413534 -2024-09-27 00:00:00+00:00,0.11959517218672569 -2024-09-27 01:00:00+00:00,0.13274812713550405 -2024-09-27 02:00:00+00:00,0.14268660810820735 -2024-09-27 03:00:00+00:00,0.15238064004636886 -2024-09-27 04:00:00+00:00,0.16961753954208386 -2024-09-27 05:00:00+00:00,0.1977267406911006 -2024-09-27 06:00:00+00:00,0.1815866987347916 -2024-09-27 07:00:00+00:00,0.1383676651256007 -2024-09-27 08:00:00+00:00,0.07939238628185963 -2024-09-27 09:00:00+00:00,0.013260575444104014 -2024-09-27 10:00:00+00:00,-0.05242058063475078 -2024-09-27 11:00:00+00:00,-0.11613930428250553 -2024-09-27 12:00:00+00:00,-0.18443617296334774 -2024-09-27 13:00:00+00:00,-0.25120307180139556 -2024-09-27 14:00:00+00:00,-0.3079287547947873 -2024-09-27 15:00:00+00:00,-0.3588334604185549 -2024-09-27 16:00:00+00:00,-0.40399136156047705 -2024-09-27 17:00:00+00:00,-0.4451948596930876 -2024-09-27 18:00:00+00:00,-0.48326596775320807 -2024-09-27 19:00:00+00:00,-0.51640417843881 -2024-09-27 20:00:00+00:00,-0.5426908112276565 -2024-09-29 21:00:00+00:00,-0.5609353533339392 -2024-09-29 22:00:00+00:00,-0.565650243566751 -2024-09-29 23:00:00+00:00,-0.5585457674539729 -2024-09-30 00:00:00+00:00,-0.5447917903454155 -2024-09-30 01:00:00+00:00,-0.5298114586142174 -2024-09-30 02:00:00+00:00,-0.5127786793615927 -2024-09-30 03:00:00+00:00,-0.4953323438128031 -2024-09-30 04:00:00+00:00,-0.48258163308990853 -2024-09-30 05:00:00+00:00,-0.4790434159069785 -2024-09-30 06:00:00+00:00,-0.474852825624998 -2024-09-30 07:00:00+00:00,-0.4644289091860273 -2024-09-30 08:00:00+00:00,-0.4467939533755226 -2024-09-30 09:00:00+00:00,-0.4246411040108147 -2024-09-30 10:00:00+00:00,-0.39873316337310977 -2024-09-30 11:00:00+00:00,-0.3716229421000101 -2024-09-30 12:00:00+00:00,-0.3381429999663903 -2024-09-30 13:00:00+00:00,-0.2987353596731483 -2024-09-30 14:00:00+00:00,-0.25851295783727685 -2024-09-30 15:00:00+00:00,-0.21567754827529 -2024-09-30 16:00:00+00:00,-0.1753354942619485 -2024-09-30 17:00:00+00:00,-0.1385585787646713 -2024-09-30 18:00:00+00:00,-0.09616735801289862 -2024-09-30 19:00:00+00:00,-0.05162205583500837 -2024-09-30 20:00:00+00:00,-0.009587403234494231 -2024-09-30 21:00:00+00:00,0.0285962220375753 -2024-09-30 22:00:00+00:00,0.06134200772304796 -2024-09-30 23:00:00+00:00,0.09131195075370274 -2024-10-01 00:00:00+00:00,0.12175146103100204 -2024-10-01 01:00:00+00:00,0.146655406169656 -2024-10-01 02:00:00+00:00,0.17115655573568836 -2024-10-01 03:00:00+00:00,0.197990578741664 -2024-10-01 04:00:00+00:00,0.22441290280314996 -2024-10-01 05:00:00+00:00,0.24844128141517485 -2024-10-01 06:00:00+00:00,0.2702920440999147 -2024-10-01 07:00:00+00:00,0.28639989176277 -2024-10-01 08:00:00+00:00,0.2916355296956569 -2024-10-01 09:00:00+00:00,0.2878890300151024 -2024-10-01 10:00:00+00:00,0.27816462177373835 -2024-10-01 11:00:00+00:00,0.26480846860599583 -2024-10-01 12:00:00+00:00,0.25378770734595024 -2024-10-01 13:00:00+00:00,0.23622090067564763 -2024-10-01 14:00:00+00:00,0.2160504544951951 -2024-10-01 15:00:00+00:00,0.19585007997824758 -2024-10-01 16:00:00+00:00,0.17570105188039337 -2024-10-01 17:00:00+00:00,0.1592234696164311 -2024-10-01 18:00:00+00:00,0.14307502359582938 -2024-10-01 19:00:00+00:00,0.12594618259357912 -2024-10-01 20:00:00+00:00,0.10892539524490334 -2024-10-01 21:00:00+00:00,0.09376504657088323 -2024-10-01 22:00:00+00:00,0.07838941267398507 -2024-10-01 23:00:00+00:00,0.06688852916036565 -2024-10-02 00:00:00+00:00,0.05963878672266093 -2024-10-02 01:00:00+00:00,0.0566219082968495 -2024-10-02 02:00:00+00:00,0.05796241767449321 -2024-10-02 03:00:00+00:00,0.06392170200960917 -2024-10-02 04:00:00+00:00,0.0658882293568929 -2024-10-02 05:00:00+00:00,0.06482768768993818 -2024-10-02 06:00:00+00:00,0.06466542702978312 -2024-10-02 07:00:00+00:00,0.06765551701355671 -2024-10-02 08:00:00+00:00,0.07647459580744642 -2024-10-02 09:00:00+00:00,0.08728947748388069 -2024-10-02 10:00:00+00:00,0.10707715468546056 -2024-10-02 11:00:00+00:00,0.1296439202952323 -2024-10-02 12:00:00+00:00,0.16317950592308153 -2024-10-02 13:00:00+00:00,0.20747504033636158 -2024-10-02 14:00:00+00:00,0.26281949459955684 -2024-10-02 15:00:00+00:00,0.3193393585860026 -2024-10-02 16:00:00+00:00,0.37264997230149366 -2024-10-02 17:00:00+00:00,0.4225068243935753 -2024-10-02 18:00:00+00:00,0.4691431662430399 -2024-10-02 19:00:00+00:00,0.5120178685586014 -2024-10-02 20:00:00+00:00,0.5496467887803933 -2024-10-02 21:00:00+00:00,0.5791669864274469 -2024-10-02 22:00:00+00:00,0.604311046774525 -2024-10-02 23:00:00+00:00,0.6236817459996631 -2024-10-03 00:00:00+00:00,0.6436179560243217 -2024-10-03 01:00:00+00:00,0.6583652536461955 -2024-10-03 02:00:00+00:00,0.6672994367160072 -2024-10-03 03:00:00+00:00,0.6716857174516008 -2024-10-03 04:00:00+00:00,0.6694024977512288 -2024-10-03 05:00:00+00:00,0.6589323810376757 -2024-10-03 06:00:00+00:00,0.6450901472295382 -2024-10-03 07:00:00+00:00,0.6239703043714767 -2024-10-03 08:00:00+00:00,0.6027922132914976 -2024-10-03 09:00:00+00:00,0.5840102147939066 -2024-10-03 10:00:00+00:00,0.5649476492554188 -2024-10-03 11:00:00+00:00,0.542788412313811 -2024-10-03 12:00:00+00:00,0.5202560458029436 -2024-10-03 13:00:00+00:00,0.49561855736022137 -2024-10-03 14:00:00+00:00,0.4717699809301827 -2024-10-03 15:00:00+00:00,0.44951615795985106 -2024-10-03 16:00:00+00:00,0.4265691816488375 -2024-10-03 17:00:00+00:00,0.4023654397647651 -2024-10-03 18:00:00+00:00,0.38117186333020675 -2024-10-03 19:00:00+00:00,0.3620115083048441 -2024-10-03 20:00:00+00:00,0.3457567089371578 -2024-10-03 21:00:00+00:00,0.3299512120934184 -2024-10-03 22:00:00+00:00,0.3144240819947403 -2024-10-03 23:00:00+00:00,0.2989772955203788 -2024-10-04 00:00:00+00:00,0.28051830002054756 -2024-10-04 01:00:00+00:00,0.25899988825740494 -2024-10-04 02:00:00+00:00,0.23383608415211815 -2024-10-04 03:00:00+00:00,0.2065832738159044 -2024-10-04 04:00:00+00:00,0.17669742564587174 -2024-10-04 05:00:00+00:00,0.14399583201250896 -2024-10-04 06:00:00+00:00,0.11311716902105927 -2024-10-04 07:00:00+00:00,0.08605023937731743 -2024-10-04 08:00:00+00:00,0.0631216933530618 -2024-10-04 09:00:00+00:00,0.0460308461562995 -2024-10-04 10:00:00+00:00,0.03372501506650051 -2024-10-04 11:00:00+00:00,0.02647032592408253 -2024-10-04 12:00:00+00:00,0.05547193663324664 -2024-10-04 13:00:00+00:00,0.10181821623413068 -2024-10-04 14:00:00+00:00,0.15781008283938852 -2024-10-04 15:00:00+00:00,0.2197117236017777 -2024-10-04 16:00:00+00:00,0.2854327112179035 -2024-10-04 17:00:00+00:00,0.3471543938958768 -2024-10-04 18:00:00+00:00,0.4035551376485439 -2024-10-04 19:00:00+00:00,0.45111706556435105 -2024-10-04 20:00:00+00:00,0.48853263276730896 -2024-10-06 21:00:00+00:00,0.5179177956979679 -2024-10-06 22:00:00+00:00,0.54197386981271 -2024-10-06 23:00:00+00:00,0.5578641023346752 -2024-10-07 00:00:00+00:00,0.5606604410940115 -2024-10-07 01:00:00+00:00,0.5531871570219409 -2024-10-07 02:00:00+00:00,0.5415669831447327 -2024-10-07 03:00:00+00:00,0.523882541050136 -2024-10-07 04:00:00+00:00,0.5042361294224245 -2024-10-07 05:00:00+00:00,0.4815654208520478 -2024-10-07 06:00:00+00:00,0.4563241805825994 -2024-10-07 07:00:00+00:00,0.4279680186684185 -2024-10-07 08:00:00+00:00,0.39892039294353676 -2024-10-07 09:00:00+00:00,0.370451735767454 -2024-10-07 10:00:00+00:00,0.34765269393086046 -2024-10-07 11:00:00+00:00,0.32298668796132624 -2024-10-07 12:00:00+00:00,0.2960640809952799 -2024-10-07 13:00:00+00:00,0.264506922702015 -2024-10-07 14:00:00+00:00,0.23588265581172707 -2024-10-07 15:00:00+00:00,0.2085439060006012 -2024-10-07 16:00:00+00:00,0.18099037450612188 -2024-10-07 17:00:00+00:00,0.15462128947760778 -2024-10-07 18:00:00+00:00,0.13133275247033466 -2024-10-07 19:00:00+00:00,0.11044980931956104 -2024-10-07 20:00:00+00:00,0.09362474923130959 -2024-10-07 21:00:00+00:00,0.07967665660743783 -2024-10-07 22:00:00+00:00,0.060646616465491826 -2024-10-07 23:00:00+00:00,0.046246795672443566 -2024-10-08 00:00:00+00:00,0.030452694317607214 -2024-10-08 01:00:00+00:00,0.014894227110577325 -2024-10-08 02:00:00+00:00,-0.0021280579669991848 -2024-10-08 03:00:00+00:00,-0.015596859966848403 -2024-10-08 04:00:00+00:00,-0.023480278143705444 -2024-10-08 05:00:00+00:00,-0.02911918475923362 -2024-10-08 06:00:00+00:00,-0.03270212620944498 -2024-10-08 07:00:00+00:00,-0.04111583643452394 -2024-10-08 08:00:00+00:00,-0.048065911882340426 -2024-10-08 09:00:00+00:00,-0.05384808485511092 -2024-10-08 10:00:00+00:00,-0.05764276781336484 -2024-10-08 11:00:00+00:00,-0.06021242460673369 -2024-10-08 12:00:00+00:00,-0.058806704246372014 -2024-10-08 13:00:00+00:00,-0.05143470729744308 -2024-10-08 14:00:00+00:00,-0.03966702980303921 -2024-10-08 15:00:00+00:00,-0.027010867756073823 -2024-10-08 16:00:00+00:00,-0.015612250113370828 -2024-10-08 17:00:00+00:00,-0.004016209489105877 -2024-10-08 18:00:00+00:00,0.008764101437295743 -2024-10-08 19:00:00+00:00,0.02051184958384808 -2024-10-08 20:00:00+00:00,0.02956178617162697 -2024-10-08 21:00:00+00:00,0.036953355793355326 -2024-10-08 22:00:00+00:00,0.04235515818372527 -2024-10-08 23:00:00+00:00,0.045204749515898535 -2024-10-09 00:00:00+00:00,0.0474945610391631 -2024-10-09 01:00:00+00:00,0.04839155279370648 -2024-10-09 02:00:00+00:00,0.049821768936746516 -2024-10-09 03:00:00+00:00,0.052195392411091494 -2024-10-09 04:00:00+00:00,0.05514029402512372 -2024-10-09 05:00:00+00:00,0.06226349411725898 -2024-10-09 06:00:00+00:00,0.06904922409028569 -2024-10-09 07:00:00+00:00,0.07676959726280197 -2024-10-09 08:00:00+00:00,0.08730407573361738 -2024-10-09 09:00:00+00:00,0.09722381204253822 -2024-10-09 10:00:00+00:00,0.1057454130997901 -2024-10-09 11:00:00+00:00,0.1146334428029096 -2024-10-09 12:00:00+00:00,0.12602337507387149 -2024-10-09 13:00:00+00:00,0.14138374925674455 -2024-10-09 14:00:00+00:00,0.1585838936283591 -2024-10-09 15:00:00+00:00,0.17651964959593877 -2024-10-09 16:00:00+00:00,0.19422805776189883 -2024-10-09 17:00:00+00:00,0.20957739563492744 -2024-10-09 18:00:00+00:00,0.2249099665626123 -2024-10-09 19:00:00+00:00,0.238325340891162 -2024-10-09 20:00:00+00:00,0.2491330616237945 -2024-10-09 21:00:00+00:00,0.25503408064166705 -2024-10-09 22:00:00+00:00,0.2577986882872062 -2024-10-09 23:00:00+00:00,0.25681196193496314 -2024-10-10 00:00:00+00:00,0.2537380923229524 -2024-10-10 01:00:00+00:00,0.24700837430596412 -2024-10-10 02:00:00+00:00,0.239691572137901 -2024-10-10 03:00:00+00:00,0.23201954885572096 -2024-10-10 04:00:00+00:00,0.22677430889035854 -2024-10-10 05:00:00+00:00,0.22059056550035844 -2024-10-10 06:00:00+00:00,0.21135849639113596 -2024-10-10 07:00:00+00:00,0.1986544945647275 -2024-10-10 08:00:00+00:00,0.1848171731946531 -2024-10-10 09:00:00+00:00,0.16757421842015746 -2024-10-10 10:00:00+00:00,0.1480964250249832 -2024-10-10 11:00:00+00:00,0.1296723346551703 -2024-10-10 12:00:00+00:00,0.10709063762057114 -2024-10-10 13:00:00+00:00,0.08207690995659381 -2024-10-10 14:00:00+00:00,0.05912000372448703 -2024-10-10 15:00:00+00:00,0.03617566668526673 -2024-10-10 16:00:00+00:00,0.019927627340086664 -2024-10-10 17:00:00+00:00,0.006991859546956008 -2024-10-10 18:00:00+00:00,-0.004178881519090907 -2024-10-10 19:00:00+00:00,-0.016583837340723176 -2024-10-10 20:00:00+00:00,-0.028866881450782568 -2024-10-10 21:00:00+00:00,-0.04093818170519595 -2024-10-10 22:00:00+00:00,-0.05026804002717038 -2024-10-10 23:00:00+00:00,-0.0565739637329503 -2024-10-11 00:00:00+00:00,-0.0644179108497374 -2024-10-11 01:00:00+00:00,-0.06791343117106678 -2024-10-11 02:00:00+00:00,-0.0698770363532184 -2024-10-11 03:00:00+00:00,-0.0699003187574414 -2024-10-11 04:00:00+00:00,-0.0684990437189704 -2024-10-11 05:00:00+00:00,-0.06642535155325903 -2024-10-11 06:00:00+00:00,-0.06391941974826729 -2024-10-11 07:00:00+00:00,-0.05980403178593344 -2024-10-11 08:00:00+00:00,-0.055397474474486175 -2024-10-11 09:00:00+00:00,-0.04764249955091815 -2024-10-11 10:00:00+00:00,-0.03615625871363513 -2024-10-11 11:00:00+00:00,-0.023712591447352056 -2024-10-11 12:00:00+00:00,-0.01040556119007397 -2024-10-11 13:00:00+00:00,0.0032473806063382637 -2024-10-11 14:00:00+00:00,0.01912222697559883 -2024-10-11 15:00:00+00:00,0.0333122415820485 -2024-10-11 16:00:00+00:00,0.04372787143111295 -2024-10-11 17:00:00+00:00,0.05157884449102164 -2024-10-11 18:00:00+00:00,0.05850575637284937 -2024-10-11 19:00:00+00:00,0.06486755930053247 -2024-10-11 20:00:00+00:00,0.07017045854952492 -2024-10-13 21:00:00+00:00,0.07443555574058558 -2024-10-13 22:00:00+00:00,0.08099141451098735 -2024-10-13 23:00:00+00:00,0.08792831776706081 -2024-10-14 00:00:00+00:00,0.09316792219897992 -2024-10-14 01:00:00+00:00,0.09672904001943744 -2024-10-14 02:00:00+00:00,0.10052213831159881 -2024-10-14 03:00:00+00:00,0.10417627644578323 -2024-10-14 04:00:00+00:00,0.1066921000569485 -2024-10-14 05:00:00+00:00,0.10706640221638555 -2024-10-14 06:00:00+00:00,0.10567524853284128 -2024-10-14 07:00:00+00:00,0.10530704853446846 -2024-10-14 08:00:00+00:00,0.10646015637620801 -2024-10-14 09:00:00+00:00,0.10780102038727918 -2024-10-14 10:00:00+00:00,0.1109059688517458 -2024-10-14 11:00:00+00:00,0.1165996431079972 -2024-10-14 12:00:00+00:00,0.12499495939670827 -2024-10-14 13:00:00+00:00,0.13507657614100552 -2024-10-14 14:00:00+00:00,0.14624030995430726 -2024-10-14 15:00:00+00:00,0.15694039933756515 -2024-10-14 16:00:00+00:00,0.168122438183122 -2024-10-14 17:00:00+00:00,0.1776799226594533 -2024-10-14 18:00:00+00:00,0.18577585837874372 -2024-10-14 19:00:00+00:00,0.18992214557812592 -2024-10-14 20:00:00+00:00,0.19071928156580162 -2024-10-14 21:00:00+00:00,0.18922793893807768 -2024-10-14 22:00:00+00:00,0.18537475317021648 -2024-10-14 23:00:00+00:00,0.17959733186036797 -2024-10-15 00:00:00+00:00,0.17027374208150559 -2024-10-15 01:00:00+00:00,0.15790279616327904 -2024-10-15 02:00:00+00:00,0.14550588106358314 -2024-10-15 03:00:00+00:00,0.13487872469055887 -2024-10-15 04:00:00+00:00,0.1250361370280133 -2024-10-15 05:00:00+00:00,0.11527810725627444 -2024-10-15 06:00:00+00:00,0.10062072705141063 -2024-10-15 07:00:00+00:00,0.08217115915094007 -2024-10-15 08:00:00+00:00,0.06083228592002134 -2024-10-15 09:00:00+00:00,0.03473763566920517 -2024-10-15 10:00:00+00:00,0.010779966933207503 -2024-10-15 11:00:00+00:00,-0.0072565249809763855 -2024-10-15 12:00:00+00:00,-0.024959297316799568 -2024-10-15 13:00:00+00:00,-0.039808745561249734 -2024-10-15 14:00:00+00:00,-0.051330535275074 -2024-10-15 15:00:00+00:00,-0.06017326448834684 -2024-10-15 16:00:00+00:00,-0.06311446054140667 -2024-10-15 17:00:00+00:00,-0.06229797320114602 -2024-10-15 18:00:00+00:00,-0.06151594353031456 -2024-10-15 19:00:00+00:00,-0.06123065824237222 -2024-10-15 20:00:00+00:00,-0.06151502676337332 -2024-10-15 21:00:00+00:00,-0.06216087515836048 -2024-10-15 22:00:00+00:00,-0.062474852504014716 -2024-10-15 23:00:00+00:00,-0.0646715401174254 -2024-10-16 00:00:00+00:00,-0.06489797124857707 -2024-10-16 01:00:00+00:00,-0.06760662136574086 -2024-10-16 02:00:00+00:00,-0.07056986896915318 -2024-10-16 03:00:00+00:00,-0.07206824989420521 -2024-10-16 04:00:00+00:00,-0.07090595994127157 -2024-10-16 05:00:00+00:00,-0.06650752689438981 -2024-10-16 06:00:00+00:00,-0.06164349175599483 -2024-10-16 07:00:00+00:00,-0.05365054206776609 -2024-10-16 08:00:00+00:00,-0.043769810726111386 -2024-10-16 09:00:00+00:00,-0.03617135187548122 -2024-10-16 10:00:00+00:00,-0.028612136641311337 -2024-10-16 11:00:00+00:00,-0.024790908434537233 -2024-10-16 12:00:00+00:00,-0.018957244382424316 -2024-10-16 13:00:00+00:00,-0.014358445678110168 -2024-10-16 14:00:00+00:00,-0.005668483202092827 -2024-10-16 15:00:00+00:00,0.006515198666460768 -2024-10-16 16:00:00+00:00,0.0207137704525091 -2024-10-16 17:00:00+00:00,0.035527302479652786 -2024-10-16 18:00:00+00:00,0.05020379867134665 -2024-10-16 19:00:00+00:00,0.06304907420018185 -2024-10-16 20:00:00+00:00,0.07274887715089622 -2024-10-16 21:00:00+00:00,0.0788615591808107 -2024-10-16 22:00:00+00:00,0.08205022639798674 -2024-10-16 23:00:00+00:00,0.082860560519104 -2024-10-17 00:00:00+00:00,0.08166168701236728 -2024-10-17 01:00:00+00:00,0.07643177146798893 -2024-10-17 02:00:00+00:00,0.0693017299423001 -2024-10-17 03:00:00+00:00,0.06347802364233272 -2024-10-17 04:00:00+00:00,0.05841035018186766 -2024-10-17 05:00:00+00:00,0.053470437793255485 -2024-10-17 06:00:00+00:00,0.05066222191040074 -2024-10-17 07:00:00+00:00,0.05145547219843859 -2024-10-17 08:00:00+00:00,0.05530445574727113 -2024-10-17 09:00:00+00:00,0.05767764572195985 -2024-10-17 10:00:00+00:00,0.058550882994592594 -2024-10-17 11:00:00+00:00,0.05680503802601975 -2024-10-17 12:00:00+00:00,0.058261704236752615 -2024-10-17 13:00:00+00:00,0.060734724971072955 -2024-10-17 14:00:00+00:00,0.067357907054966 -2024-10-17 15:00:00+00:00,0.07777277751754096 -2024-10-17 16:00:00+00:00,0.091165196711702 -2024-10-17 17:00:00+00:00,0.1061841345679872 -2024-10-17 18:00:00+00:00,0.12156016171617626 -2024-10-17 19:00:00+00:00,0.1351834612726813 -2024-10-17 20:00:00+00:00,0.1467018732194215 -2024-10-17 21:00:00+00:00,0.1551172209138948 -2024-10-17 22:00:00+00:00,0.16152684123000033 -2024-10-17 23:00:00+00:00,0.16428398715851864 -2024-10-18 00:00:00+00:00,0.16333941502413651 -2024-10-18 01:00:00+00:00,0.1591775512128692 -2024-10-18 02:00:00+00:00,0.15140267339659663 -2024-10-18 03:00:00+00:00,0.1409311361273299 -2024-10-18 04:00:00+00:00,0.12912474500391932 -2024-10-18 05:00:00+00:00,0.11659889505645421 -2024-10-18 06:00:00+00:00,0.10511383024202607 -2024-10-18 07:00:00+00:00,0.09682935476565757 -2024-10-18 08:00:00+00:00,0.08802037934434939 -2024-10-18 09:00:00+00:00,0.07912786790135969 -2024-10-18 10:00:00+00:00,0.0708038521605405 -2024-10-18 11:00:00+00:00,0.06414817790797789 -2024-10-18 12:00:00+00:00,0.05647535548259013 -2024-10-18 13:00:00+00:00,0.04639634231708122 -2024-10-18 14:00:00+00:00,0.03310984996515475 -2024-10-18 15:00:00+00:00,0.018067056069893533 -2024-10-18 16:00:00+00:00,8.622064552639072e-05 -2024-10-18 17:00:00+00:00,-0.0160017109073649 -2024-10-18 18:00:00+00:00,-0.031060416930276877 -2024-10-18 19:00:00+00:00,-0.044693601184067545 -2024-10-18 20:00:00+00:00,-0.056489120878247714 -2024-10-20 21:00:00+00:00,-0.06621023868584702 -2024-10-20 22:00:00+00:00,-0.07350797993032009 -2024-10-20 23:00:00+00:00,-0.07824210958866677 -2024-10-21 00:00:00+00:00,-0.08442097935432734 -2024-10-21 01:00:00+00:00,-0.09386086005001192 -2024-10-21 02:00:00+00:00,-0.10431680887037728 -2024-10-21 03:00:00+00:00,-0.11462373228344916 -2024-10-21 04:00:00+00:00,-0.12250406889813895 -2024-10-21 05:00:00+00:00,-0.1275010706282906 -2024-10-21 06:00:00+00:00,-0.12583060978597532 -2024-10-21 07:00:00+00:00,-0.11654314103974756 -2024-10-21 08:00:00+00:00,-0.10089986936827598 -2024-10-21 09:00:00+00:00,-0.08007608390679398 -2024-10-21 10:00:00+00:00,-0.058796981498197086 -2024-10-21 11:00:00+00:00,-0.038549013479211844 -2024-10-21 12:00:00+00:00,-0.019936865877559506 -2024-10-21 13:00:00+00:00,7.016914580181347e-05 -2024-10-21 14:00:00+00:00,0.02162560773904935 -2024-10-21 15:00:00+00:00,0.04667371934958368 -2024-10-21 16:00:00+00:00,0.07322543162875308 -2024-10-21 17:00:00+00:00,0.10286221597589534 -2024-10-21 18:00:00+00:00,0.13305942553724212 -2024-10-21 19:00:00+00:00,0.16173759621188566 -2024-10-21 20:00:00+00:00,0.18830962166585435 -2024-10-21 21:00:00+00:00,0.210335422292942 -2024-10-21 22:00:00+00:00,0.22709594505311614 -2024-10-21 23:00:00+00:00,0.23813899913651052 -2024-10-22 00:00:00+00:00,0.2446682455180969 -2024-10-22 01:00:00+00:00,0.24794703485058392 -2024-10-22 02:00:00+00:00,0.2512116136349173 -2024-10-22 03:00:00+00:00,0.2551594862621774 -2024-10-22 04:00:00+00:00,0.25790153609768063 -2024-10-22 05:00:00+00:00,0.25877334103279015 -2024-10-22 06:00:00+00:00,0.2575183261339397 -2024-10-22 07:00:00+00:00,0.2572330469893922 -2024-10-22 08:00:00+00:00,0.25668111418278344 -2024-10-22 09:00:00+00:00,0.2538105114805666 -2024-10-22 10:00:00+00:00,0.2484204310105502 -2024-10-22 11:00:00+00:00,0.2414706811015712 -2024-10-22 12:00:00+00:00,0.23415503824920447 -2024-10-22 13:00:00+00:00,0.226571553090115 -2024-10-22 14:00:00+00:00,0.21959477327853644 -2024-10-22 15:00:00+00:00,0.214921617701611 -2024-10-22 16:00:00+00:00,0.21071355072889297 -2024-10-22 17:00:00+00:00,0.20524501960985272 -2024-10-22 18:00:00+00:00,0.20012954502844718 -2024-10-22 19:00:00+00:00,0.19590892382183928 -2024-10-22 20:00:00+00:00,0.19164100926366784 -2024-10-22 21:00:00+00:00,0.18642840035540054 -2024-10-22 22:00:00+00:00,0.18079110918675162 -2024-10-22 23:00:00+00:00,0.17614317178696007 -2024-10-23 00:00:00+00:00,0.17699912424436565 -2024-10-23 01:00:00+00:00,0.18368045261052351 -2024-10-23 02:00:00+00:00,0.19477574649206378 -2024-10-23 03:00:00+00:00,0.20775565122480172 -2024-10-23 04:00:00+00:00,0.2258523070093936 -2024-10-23 05:00:00+00:00,0.24724020188048995 -2024-10-23 06:00:00+00:00,0.2709367667569916 -2024-10-23 07:00:00+00:00,0.2955448450068748 -2024-10-23 08:00:00+00:00,0.3194147706252537 -2024-10-23 09:00:00+00:00,0.345804548019097 -2024-10-23 10:00:00+00:00,0.37318165261562586 -2024-10-23 11:00:00+00:00,0.4026092641578015 -2024-10-23 12:00:00+00:00,0.43103732032772524 -2024-10-23 13:00:00+00:00,0.4564140708803224 -2024-10-23 14:00:00+00:00,0.4767738678640127 -2024-10-23 15:00:00+00:00,0.4885485675714914 -2024-10-23 16:00:00+00:00,0.4938178122093345 -2024-10-23 17:00:00+00:00,0.4922995683388465 -2024-10-23 18:00:00+00:00,0.48366579330230147 -2024-10-23 19:00:00+00:00,0.46878960222443955 -2024-10-23 20:00:00+00:00,0.45247226785587547 -2024-10-23 21:00:00+00:00,0.4339589494820196 -2024-10-23 22:00:00+00:00,0.4149919599324625 -2024-10-23 23:00:00+00:00,0.39606027346299977 -2024-10-24 00:00:00+00:00,0.3751982778479143 -2024-10-24 01:00:00+00:00,0.3539711371758583 -2024-10-24 02:00:00+00:00,0.3288644254670292 -2024-10-24 03:00:00+00:00,0.30135021041626064 -2024-10-24 04:00:00+00:00,0.27016286332381656 -2024-10-24 05:00:00+00:00,0.2403887009797342 -2024-10-24 06:00:00+00:00,0.2072801633393156 -2024-10-24 07:00:00+00:00,0.17452550147302995 -2024-10-24 08:00:00+00:00,0.14139738675052818 -2024-10-24 09:00:00+00:00,0.10913046796286079 -2024-10-24 10:00:00+00:00,0.0766762843233017 -2024-10-24 11:00:00+00:00,0.04879024223386917 -2024-10-24 12:00:00+00:00,0.025118052342974095 -2024-10-24 13:00:00+00:00,0.007727689619587388 -2024-10-24 14:00:00+00:00,-0.009234745755467946 -2024-10-24 15:00:00+00:00,-0.025944073939243622 -2024-10-24 16:00:00+00:00,-0.04441553750816109 -2024-10-24 17:00:00+00:00,-0.06397492821399428 -2024-10-24 18:00:00+00:00,-0.07993395207812436 -2024-10-24 19:00:00+00:00,-0.09226655455781482 -2024-10-24 20:00:00+00:00,-0.10175657631428806 -2024-10-24 21:00:00+00:00,-0.10870360826883235 -2024-10-24 22:00:00+00:00,-0.11555079398119648 -2024-10-24 23:00:00+00:00,-0.12021337848110844 -2024-10-25 00:00:00+00:00,-0.1195102235954871 -2024-10-25 01:00:00+00:00,-0.11772919750246452 -2024-10-25 02:00:00+00:00,-0.11533693453332156 -2024-10-25 03:00:00+00:00,-0.11210500198656388 -2024-10-25 04:00:00+00:00,-0.11065385647740446 -2024-10-25 05:00:00+00:00,-0.10968006464475961 -2024-10-25 06:00:00+00:00,-0.10673245949826923 -2024-10-25 07:00:00+00:00,-0.10097519918952676 -2024-10-25 08:00:00+00:00,-0.09341688274013762 -2024-10-25 09:00:00+00:00,-0.08430673485352805 -2024-10-25 10:00:00+00:00,-0.07618455966504671 -2024-10-25 11:00:00+00:00,-0.07054516045754612 -2024-10-25 12:00:00+00:00,-0.06465031832374077 -2024-10-25 13:00:00+00:00,-0.057161594129580155 -2024-10-25 14:00:00+00:00,-0.04874469100832796 -2024-10-25 15:00:00+00:00,-0.039214613814895175 -2024-10-25 16:00:00+00:00,-0.027594176032928852 -2024-10-25 17:00:00+00:00,-0.015720351883119266 -2024-10-25 18:00:00+00:00,-0.0029660635792433613 -2024-10-25 19:00:00+00:00,0.009789922901166363 -2024-10-25 20:00:00+00:00,0.022653691459291053 -2024-10-27 21:00:00+00:00,0.04510177842898411 -2024-10-27 22:00:00+00:00,0.07245306718659625 -2024-10-27 23:00:00+00:00,0.1013265161335277 -2024-10-28 00:00:00+00:00,0.13751433137140515 -2024-10-28 01:00:00+00:00,0.18220269737432687 -2024-10-28 02:00:00+00:00,0.22505771031730254 -2024-10-28 03:00:00+00:00,0.26492948656628046 -2024-10-28 04:00:00+00:00,0.3004448629722044 -2024-10-28 05:00:00+00:00,0.3289601060968706 -2024-10-28 06:00:00+00:00,0.34884891651427546 -2024-10-28 07:00:00+00:00,0.3602487000357009 -2024-10-28 08:00:00+00:00,0.36242016192198045 -2024-10-28 09:00:00+00:00,0.35389498053767066 -2024-10-28 10:00:00+00:00,0.33201961634285027 -2024-10-28 11:00:00+00:00,0.3052777301816398 -2024-10-28 12:00:00+00:00,0.2744685895720437 -2024-10-28 13:00:00+00:00,0.2442375610334227 -2024-10-28 14:00:00+00:00,0.21849213230078157 -2024-10-28 15:00:00+00:00,0.20057392334066454 -2024-10-28 16:00:00+00:00,0.18882558405618527 -2024-10-28 17:00:00+00:00,0.18141707469828466 -2024-10-28 18:00:00+00:00,0.17641638726709918 -2024-10-28 19:00:00+00:00,0.17229034474416613 -2024-10-28 20:00:00+00:00,0.16960506799457295 -2024-10-28 21:00:00+00:00,0.16693886106814276 -2024-10-28 22:00:00+00:00,0.16479374382742812 -2024-10-28 23:00:00+00:00,0.16006365477198056 -2024-10-29 00:00:00+00:00,0.15169792160131612 -2024-10-29 01:00:00+00:00,0.13986987916486945 -2024-10-29 02:00:00+00:00,0.12708238384815873 -2024-10-29 03:00:00+00:00,0.11476025711575383 -2024-10-29 04:00:00+00:00,0.10132730421449225 -2024-10-29 05:00:00+00:00,0.0861556696404755 -2024-10-29 06:00:00+00:00,0.07317356091387471 -2024-10-29 07:00:00+00:00,0.06471004944729843 -2024-10-29 08:00:00+00:00,0.06304440683722909 -2024-10-29 09:00:00+00:00,0.06583843216730026 -2024-10-29 10:00:00+00:00,0.07004626414984882 -2024-10-29 11:00:00+00:00,0.08004092332256266 -2024-10-29 12:00:00+00:00,0.09440813951635997 -2024-10-29 13:00:00+00:00,0.10895221968468657 -2024-10-29 14:00:00+00:00,0.11809726060387059 -2024-10-29 15:00:00+00:00,0.12486470837147506 -2024-10-29 16:00:00+00:00,0.13038006696822266 -2024-10-29 17:00:00+00:00,0.13237050741869394 -2024-10-29 18:00:00+00:00,0.13188914586800876 -2024-10-29 19:00:00+00:00,0.12959909285175422 -2024-10-29 20:00:00+00:00,0.12507469675513128 -2024-10-29 21:00:00+00:00,0.11922959881547097 -2024-10-29 22:00:00+00:00,0.11074065961532129 -2024-10-29 23:00:00+00:00,0.1009467599487415 -2024-10-30 00:00:00+00:00,0.0903630000066363 -2024-10-30 01:00:00+00:00,0.0790905834329492 -2024-10-30 02:00:00+00:00,0.06931285500530626 -2024-10-30 03:00:00+00:00,0.06125732404545845 -2024-10-30 04:00:00+00:00,0.05486703340851172 -2024-10-30 05:00:00+00:00,0.04767230001381683 -2024-10-30 06:00:00+00:00,0.04097576561555485 -2024-10-30 07:00:00+00:00,0.03572663691429511 -2024-10-30 08:00:00+00:00,0.02400010625267805 -2024-10-30 09:00:00+00:00,0.011996480570808852 -2024-10-30 10:00:00+00:00,-0.002131621966798721 -2024-10-30 11:00:00+00:00,-0.014644119159671029 -2024-10-30 12:00:00+00:00,-0.020317361596080656 -2024-10-30 13:00:00+00:00,-0.02799722056659783 -2024-10-30 14:00:00+00:00,-0.03136297257412998 -2024-10-30 15:00:00+00:00,-0.03340415550230824 -2024-10-30 16:00:00+00:00,-0.03564452279590382 -2024-10-30 17:00:00+00:00,-0.035449796596490946 -2024-10-30 18:00:00+00:00,-0.03346675859175088 -2024-10-30 19:00:00+00:00,-0.029465161883997056 -2024-10-30 20:00:00+00:00,-0.022617908011709972 -2024-10-30 21:00:00+00:00,-0.015475071713916077 -2024-10-30 22:00:00+00:00,-0.009028588683634835 -2024-10-30 23:00:00+00:00,-0.004325097492847497 -2024-10-31 00:00:00+00:00,0.0036440849668719984 -2024-10-31 01:00:00+00:00,0.012707580400757331 -2024-10-31 02:00:00+00:00,0.020564849264877574 -2024-10-31 03:00:00+00:00,0.0215275441350956 -2024-10-31 04:00:00+00:00,0.015963339006514313 -2024-10-31 05:00:00+00:00,0.005319056109911238 -2024-10-31 06:00:00+00:00,-0.018589094446389433 -2024-10-31 07:00:00+00:00,-0.04833448044240541 -2024-10-31 08:00:00+00:00,-0.07765994937305926 -2024-10-31 09:00:00+00:00,-0.10250308684444627 -2024-10-31 10:00:00+00:00,-0.124436739643502 -2024-10-31 11:00:00+00:00,-0.1391247650034435 -2024-10-31 12:00:00+00:00,-0.14858316781286973 -2024-10-31 13:00:00+00:00,-0.14954180393552577 -2024-10-31 14:00:00+00:00,-0.15086049413539968 -2024-10-31 15:00:00+00:00,-0.15564545100764826 -2024-10-31 16:00:00+00:00,-0.16062533409262114 -2024-10-31 17:00:00+00:00,-0.1693760252994249 -2024-10-31 18:00:00+00:00,-0.18165567447875647 -2024-10-31 19:00:00+00:00,-0.1969082600383572 -2024-10-31 20:00:00+00:00,-0.2110846969407828 -2024-10-31 21:00:00+00:00,-0.22297946176019742 -2024-10-31 22:00:00+00:00,-0.23232831461281245 -2024-10-31 23:00:00+00:00,-0.24038605015239609 -2024-11-01 00:00:00+00:00,-0.24583462049848287 -2024-11-01 01:00:00+00:00,-0.24746171582082022 -2024-11-01 02:00:00+00:00,-0.24314057059667774 -2024-11-01 03:00:00+00:00,-0.23288091738228184 -2024-11-01 04:00:00+00:00,-0.2178372217957587 -2024-11-01 05:00:00+00:00,-0.19920960854395614 -2024-11-01 06:00:00+00:00,-0.1811236434706045 -2024-11-01 07:00:00+00:00,-0.16155119817455435 -2024-11-01 08:00:00+00:00,-0.14020515283838011 -2024-11-01 09:00:00+00:00,-0.1163770878528766 -2024-11-01 10:00:00+00:00,-0.09365241432776773 -2024-11-01 11:00:00+00:00,-0.07251736525476284 -2024-11-01 12:00:00+00:00,-0.06350023182335605 -2024-11-01 13:00:00+00:00,-0.0561841140923275 -2024-11-01 14:00:00+00:00,-0.0426750981534915 -2024-11-01 15:00:00+00:00,-0.025145535801644255 -2024-11-01 16:00:00+00:00,-0.006755310508972297 -2024-11-01 17:00:00+00:00,0.01149693743328093 -2024-11-01 18:00:00+00:00,0.029445498967625723 -2024-11-01 19:00:00+00:00,0.04630739115397687 -2024-11-01 20:00:00+00:00,0.06199329477705327 -2024-11-03 22:00:00+00:00,0.06706001678643901 -2024-11-03 23:00:00+00:00,0.06272304747555814 -2024-11-04 00:00:00+00:00,0.049066447699948695 -2024-11-04 01:00:00+00:00,0.025641499136502488 -2024-11-04 02:00:00+00:00,-0.0023217140396657662 -2024-11-04 03:00:00+00:00,-0.03290269850109475 -2024-11-04 04:00:00+00:00,-0.0621221371216887 -2024-11-04 05:00:00+00:00,-0.08827241487248189 -2024-11-04 06:00:00+00:00,-0.10626828113076159 -2024-11-04 07:00:00+00:00,-0.11747295339357766 -2024-11-04 08:00:00+00:00,-0.12498586778929523 -2024-11-04 09:00:00+00:00,-0.1327448988520331 -2024-11-04 10:00:00+00:00,-0.14116143298060824 -2024-11-04 11:00:00+00:00,-0.1533114636907599 -2024-11-04 12:00:00+00:00,-0.1627628035517069 -2024-11-04 13:00:00+00:00,-0.16925737166590632 -2024-11-04 14:00:00+00:00,-0.17334796332734706 -2024-11-04 15:00:00+00:00,-0.1725780989294113 -2024-11-04 16:00:00+00:00,-0.16793017952496525 -2024-11-04 17:00:00+00:00,-0.16090392813189247 -2024-11-04 18:00:00+00:00,-0.151527040971375 -2024-11-04 19:00:00+00:00,-0.13948284105341713 -2024-11-04 20:00:00+00:00,-0.12608028842609179 -2024-11-04 21:00:00+00:00,-0.11249683876612544 -2024-11-04 22:00:00+00:00,-0.09947903199945808 -2024-11-04 23:00:00+00:00,-0.08468682596052324 -2024-11-05 00:00:00+00:00,-0.06936487431033145 -2024-11-05 01:00:00+00:00,-0.05448362914572193 -2024-11-05 02:00:00+00:00,-0.040821710005434685 -2024-11-05 03:00:00+00:00,-0.026473106162958636 -2024-11-05 04:00:00+00:00,-0.01110958833555033 -2024-11-05 05:00:00+00:00,0.003519684532687948 -2024-11-05 06:00:00+00:00,0.015701298542180657 -2024-11-05 07:00:00+00:00,0.024429956182636256 -2024-11-05 08:00:00+00:00,0.02910903642503481 -2024-11-05 09:00:00+00:00,0.030922335091436 -2024-11-05 10:00:00+00:00,0.031874737717228784 -2024-11-05 11:00:00+00:00,0.03058548470934068 -2024-11-05 12:00:00+00:00,0.030042925798795164 -2024-11-05 13:00:00+00:00,0.026083333967261056 -2024-11-05 14:00:00+00:00,0.016668022990163164 -2024-11-05 15:00:00+00:00,0.0076232222454304275 -2024-11-05 16:00:00+00:00,-0.002024889020581542 -2024-11-05 17:00:00+00:00,-0.01599204061756681 -2024-11-05 18:00:00+00:00,-0.03393981800069663 -2024-11-05 19:00:00+00:00,-0.0549757626621783 -2024-11-05 20:00:00+00:00,-0.07549078085453173 -2024-11-05 21:00:00+00:00,-0.09302781391118217 -2024-11-05 22:00:00+00:00,-0.10772649828058219 -2024-11-05 23:00:00+00:00,-0.12229448834167271 -2024-11-06 00:00:00+00:00,-0.11225324946935848 -2024-11-06 01:00:00+00:00,-0.08678672806235892 -2024-11-06 02:00:00+00:00,-0.034952093988143 -2024-11-06 03:00:00+00:00,0.029048891069012345 -2024-11-06 04:00:00+00:00,0.09112776780235275 -2024-11-06 05:00:00+00:00,0.1515393585602604 -2024-11-06 06:00:00+00:00,0.21221189612333277 -2024-11-06 07:00:00+00:00,0.2676606846524329 -2024-11-06 08:00:00+00:00,0.31571229071962476 -2024-11-06 09:00:00+00:00,0.357420593294416 -2024-11-06 10:00:00+00:00,0.3921200753269335 -2024-11-06 11:00:00+00:00,0.4232876284450279 -2024-11-06 12:00:00+00:00,0.4526422543799215 -2024-11-06 13:00:00+00:00,0.4766148777478385 -2024-11-06 14:00:00+00:00,0.4946318636886787 -2024-11-06 15:00:00+00:00,0.5078971166773363 -2024-11-06 16:00:00+00:00,0.5200165588460055 -2024-11-06 17:00:00+00:00,0.5308895925720005 -2024-11-06 18:00:00+00:00,0.5354042634717744 -2024-11-06 19:00:00+00:00,0.5347638540949096 -2024-11-06 20:00:00+00:00,0.5315577888445299 -2024-11-06 21:00:00+00:00,0.5267212423330587 -2024-11-06 22:00:00+00:00,0.5183203356634849 -2024-11-06 23:00:00+00:00,0.503530144604755 -2024-11-07 00:00:00+00:00,0.48867064538130384 -2024-11-07 01:00:00+00:00,0.47234798511274717 -2024-11-07 02:00:00+00:00,0.4537067012855795 -2024-11-07 03:00:00+00:00,0.43165669118633065 -2024-11-07 04:00:00+00:00,0.40534478665123075 -2024-11-07 05:00:00+00:00,0.37415267253846596 -2024-11-07 06:00:00+00:00,0.3395034833674584 -2024-11-07 07:00:00+00:00,0.304814937447844 -2024-11-07 08:00:00+00:00,0.27181573286803185 -2024-11-07 09:00:00+00:00,0.23953387265496862 -2024-11-07 10:00:00+00:00,0.20996476141763917 -2024-11-07 11:00:00+00:00,0.18393327015835564 -2024-11-07 12:00:00+00:00,0.15624624960622657 -2024-11-07 13:00:00+00:00,0.12442084653001749 -2024-11-07 14:00:00+00:00,0.08696697218338947 -2024-11-07 15:00:00+00:00,0.04357040276764172 -2024-11-07 16:00:00+00:00,0.001368840872782634 -2024-11-07 17:00:00+00:00,-0.039789087629597236 -2024-11-07 18:00:00+00:00,-0.07871471840863686 -2024-11-07 19:00:00+00:00,-0.11220243215008427 -2024-11-07 20:00:00+00:00,-0.14400388484641535 -2024-11-07 21:00:00+00:00,-0.17185967581222245 -2024-11-07 22:00:00+00:00,-0.19491182041011884 -2024-11-07 23:00:00+00:00,-0.2095511698004025 -2024-11-08 00:00:00+00:00,-0.21829473597047985 -2024-11-08 01:00:00+00:00,-0.22302522603015296 -2024-11-08 02:00:00+00:00,-0.223941647878394 -2024-11-08 03:00:00+00:00,-0.2269506324422334 -2024-11-08 04:00:00+00:00,-0.23180872804738983 -2024-11-08 05:00:00+00:00,-0.2359259931326501 -2024-11-08 06:00:00+00:00,-0.23949544856990054 -2024-11-08 07:00:00+00:00,-0.24399882861836453 -2024-11-08 08:00:00+00:00,-0.25289024900495605 -2024-11-08 09:00:00+00:00,-0.26460632620086244 -2024-11-08 10:00:00+00:00,-0.2785188809371846 -2024-11-08 11:00:00+00:00,-0.2885032845253363 -2024-11-08 12:00:00+00:00,-0.2956423635942849 -2024-11-08 13:00:00+00:00,-0.29407875223597174 -2024-11-08 14:00:00+00:00,-0.2869029344765378 -2024-11-08 15:00:00+00:00,-0.28060639674828947 -2024-11-08 16:00:00+00:00,-0.27185519458602664 -2024-11-08 17:00:00+00:00,-0.2603994676050624 -2024-11-08 18:00:00+00:00,-0.24661744530287183 -2024-11-08 19:00:00+00:00,-0.23182491098770963 -2024-11-08 20:00:00+00:00,-0.21923069593111527 -2024-11-08 21:00:00+00:00,-0.2062284445132081 -2024-11-10 22:00:00+00:00,-0.19241619500695625 -2024-11-10 23:00:00+00:00,-0.17480797072997817 -2024-11-11 00:00:00+00:00,-0.1515479814973095 -2024-11-11 01:00:00+00:00,-0.12443886726871403 -2024-11-11 02:00:00+00:00,-0.09334242856402199 -2024-11-11 03:00:00+00:00,-0.06027074525696935 -2024-11-11 04:00:00+00:00,-0.02553110914115373 -2024-11-11 05:00:00+00:00,0.0077411913641428146 -2024-11-11 06:00:00+00:00,0.03628979638025621 -2024-11-11 07:00:00+00:00,0.06412746357009685 -2024-11-11 08:00:00+00:00,0.09189242030715393 -2024-11-11 09:00:00+00:00,0.11574516781395223 -2024-11-11 10:00:00+00:00,0.13665269389900112 -2024-11-11 11:00:00+00:00,0.15539164634339997 -2024-11-11 12:00:00+00:00,0.17197733313824132 -2024-11-11 13:00:00+00:00,0.18561693176658653 -2024-11-11 14:00:00+00:00,0.19746849177156311 -2024-11-11 15:00:00+00:00,0.2073673110510444 -2024-11-11 16:00:00+00:00,0.21446033237270423 -2024-11-11 17:00:00+00:00,0.21979564597659895 -2024-11-11 18:00:00+00:00,0.22213180862607598 -2024-11-11 19:00:00+00:00,0.22128932725952563 -2024-11-11 20:00:00+00:00,0.21611171344799152 -2024-11-11 21:00:00+00:00,0.2093359503073355 -2024-11-11 22:00:00+00:00,0.20146848468558662 -2024-11-11 23:00:00+00:00,0.18955148069873828 -2024-11-12 00:00:00+00:00,0.1791340016363271 -2024-11-12 01:00:00+00:00,0.17288937128279197 -2024-11-12 02:00:00+00:00,0.16681629767407977 -2024-11-12 03:00:00+00:00,0.1583319249204165 -2024-11-12 04:00:00+00:00,0.14596311087570818 -2024-11-12 05:00:00+00:00,0.13324625867056983 -2024-11-12 06:00:00+00:00,0.12337050241513535 -2024-11-12 07:00:00+00:00,0.11611827499759828 -2024-11-12 08:00:00+00:00,0.11249260800405672 -2024-11-12 09:00:00+00:00,0.11373805633688455 -2024-11-12 10:00:00+00:00,0.11681865759679756 -2024-11-12 11:00:00+00:00,0.12100465958235046 -2024-11-12 12:00:00+00:00,0.12545209175434296 -2024-11-12 13:00:00+00:00,0.13441040773160118 -2024-11-12 14:00:00+00:00,0.14594659578006663 -2024-11-12 15:00:00+00:00,0.15985232433836183 -2024-11-12 16:00:00+00:00,0.1776918182733443 -2024-11-12 17:00:00+00:00,0.19734278867513724 -2024-11-12 18:00:00+00:00,0.21577174408081468 -2024-11-12 19:00:00+00:00,0.2322640799028106 -2024-11-12 20:00:00+00:00,0.24345235147563232 -2024-11-12 21:00:00+00:00,0.25095651987768985 -2024-11-12 22:00:00+00:00,0.2537503047695851 -2024-11-12 23:00:00+00:00,0.2547973937695668 -2024-11-13 00:00:00+00:00,0.2584696182429487 -2024-11-13 01:00:00+00:00,0.2577566153067725 -2024-11-13 02:00:00+00:00,0.2558987802671121 -2024-11-13 03:00:00+00:00,0.2538745693805784 -2024-11-13 04:00:00+00:00,0.25200746145272923 -2024-11-13 05:00:00+00:00,0.2507993605551363 -2024-11-13 06:00:00+00:00,0.25157009474223857 -2024-11-13 07:00:00+00:00,0.2540522424159381 -2024-11-13 08:00:00+00:00,0.25523865691563435 -2024-11-13 09:00:00+00:00,0.2531342387925159 -2024-11-13 10:00:00+00:00,0.2500800506563253 -2024-11-13 11:00:00+00:00,0.24324461926744576 -2024-11-13 12:00:00+00:00,0.23555022128753272 -2024-11-13 13:00:00+00:00,0.2205628435234932 -2024-11-13 14:00:00+00:00,0.20648846269259968 -2024-11-13 15:00:00+00:00,0.1956307119540914 -2024-11-13 16:00:00+00:00,0.19165084345019334 -2024-11-13 17:00:00+00:00,0.19382779260249877 -2024-11-13 18:00:00+00:00,0.20221152746955856 -2024-11-13 19:00:00+00:00,0.2127874643700016 -2024-11-13 20:00:00+00:00,0.22444789482280425 -2024-11-13 21:00:00+00:00,0.23381453138765834 -2024-11-13 22:00:00+00:00,0.23976227224524133 -2024-11-13 23:00:00+00:00,0.24275672163509304 -2024-11-14 00:00:00+00:00,0.24803998193952173 -2024-11-14 01:00:00+00:00,0.2562448787854078 -2024-11-14 02:00:00+00:00,0.26750047088522577 -2024-11-14 03:00:00+00:00,0.2784473726275577 -2024-11-14 04:00:00+00:00,0.28976324084051486 -2024-11-14 05:00:00+00:00,0.29949833998152864 -2024-11-14 06:00:00+00:00,0.3054702092307733 -2024-11-14 07:00:00+00:00,0.3067179498824178 -2024-11-14 08:00:00+00:00,0.30599520312845163 -2024-11-14 09:00:00+00:00,0.30596247104268565 -2024-11-14 10:00:00+00:00,0.30480505383027523 -2024-11-14 11:00:00+00:00,0.3001707753807721 -2024-11-14 12:00:00+00:00,0.2941285898970943 -2024-11-14 13:00:00+00:00,0.2872332243378216 -2024-11-14 14:00:00+00:00,0.27596802553121896 -2024-11-14 15:00:00+00:00,0.26438243334343836 -2024-11-14 16:00:00+00:00,0.2528879591206785 -2024-11-14 17:00:00+00:00,0.2378391655551932 -2024-11-14 18:00:00+00:00,0.22318660051894842 -2024-11-14 19:00:00+00:00,0.2095523494219705 -2024-11-14 20:00:00+00:00,0.2028082903685413 -2024-11-14 21:00:00+00:00,0.19989125782186967 -2024-11-14 22:00:00+00:00,0.19945316038654398 -2024-11-14 23:00:00+00:00,0.20300897801959425 -2024-11-15 00:00:00+00:00,0.2108281206901875 -2024-11-15 01:00:00+00:00,0.21916862172707258 -2024-11-15 02:00:00+00:00,0.22433048665035454 -2024-11-15 03:00:00+00:00,0.22855291382747586 -2024-11-15 04:00:00+00:00,0.22905109230011175 -2024-11-15 05:00:00+00:00,0.22824630190458572 -2024-11-15 06:00:00+00:00,0.22048298715224812 -2024-11-15 07:00:00+00:00,0.20309341383358775 -2024-11-15 08:00:00+00:00,0.1760027480175118 -2024-11-15 09:00:00+00:00,0.14142554574323354 -2024-11-15 10:00:00+00:00,0.10267296473518421 -2024-11-15 11:00:00+00:00,0.06608427488761771 -2024-11-15 12:00:00+00:00,0.031087666318094266 -2024-11-15 13:00:00+00:00,-0.002248186280507332 -2024-11-15 14:00:00+00:00,-0.029136903407769008 -2024-11-15 15:00:00+00:00,-0.060177097111774214 -2024-11-15 16:00:00+00:00,-0.09767097630021776 -2024-11-15 17:00:00+00:00,-0.14206339294869064 -2024-11-15 18:00:00+00:00,-0.19384044509720716 -2024-11-15 19:00:00+00:00,-0.24243131403888918 -2024-11-15 20:00:00+00:00,-0.28474475464648796 -2024-11-15 21:00:00+00:00,-0.319394954956663 -2024-11-17 22:00:00+00:00,-0.34299617374231767 -2024-11-17 23:00:00+00:00,-0.3566320497928046 -2024-11-18 00:00:00+00:00,-0.3683973242452884 -2024-11-18 01:00:00+00:00,-0.3722847318576571 -2024-11-18 02:00:00+00:00,-0.36798043921253015 -2024-11-18 03:00:00+00:00,-0.35925290034703006 -2024-11-18 04:00:00+00:00,-0.3474873849184744 -2024-11-18 05:00:00+00:00,-0.3345040368177773 -2024-11-18 06:00:00+00:00,-0.32080321631744446 -2024-11-18 07:00:00+00:00,-0.3069269217323046 -2024-11-18 08:00:00+00:00,-0.2868260629999321 -2024-11-18 09:00:00+00:00,-0.26604768528717115 -2024-11-18 10:00:00+00:00,-0.24175372303310053 -2024-11-18 11:00:00+00:00,-0.215069382796015 -2024-11-18 12:00:00+00:00,-0.18442906876366433 -2024-11-18 13:00:00+00:00,-0.15830249914221323 -2024-11-18 14:00:00+00:00,-0.13765715644987356 -2024-11-18 15:00:00+00:00,-0.11815260721845473 -2024-11-18 16:00:00+00:00,-0.10322736334739441 -2024-11-18 17:00:00+00:00,-0.0932670476125971 -2024-11-18 18:00:00+00:00,-0.08787693233765428 -2024-11-18 19:00:00+00:00,-0.08369456827739763 -2024-11-18 20:00:00+00:00,-0.08262703359411291 -2024-11-18 21:00:00+00:00,-0.08192759997702276 -2024-11-18 22:00:00+00:00,-0.08186722542868785 -2024-11-18 23:00:00+00:00,-0.08256642383326476 -2024-11-19 00:00:00+00:00,-0.0873299745453447 -2024-11-19 01:00:00+00:00,-0.09835632923152696 -2024-11-19 02:00:00+00:00,-0.1118517633612773 -2024-11-19 03:00:00+00:00,-0.12556543133407372 -2024-11-19 04:00:00+00:00,-0.13458174206955925 -2024-11-19 05:00:00+00:00,-0.1398106337070394 -2024-11-19 06:00:00+00:00,-0.14066889196943455 -2024-11-19 07:00:00+00:00,-0.1381508926588321 -2024-11-19 08:00:00+00:00,-0.14573042556226912 -2024-11-19 09:00:00+00:00,-0.15868605345493078 -2024-11-19 10:00:00+00:00,-0.17374711867419865 -2024-11-19 11:00:00+00:00,-0.18410811243158393 -2024-11-19 12:00:00+00:00,-0.1922516005003812 -2024-11-19 13:00:00+00:00,-0.20616519480178438 -2024-11-19 14:00:00+00:00,-0.21325850728035253 -2024-11-19 15:00:00+00:00,-0.2166709486579137 -2024-11-19 16:00:00+00:00,-0.21094516404546085 -2024-11-19 17:00:00+00:00,-0.19328031558066983 -2024-11-19 18:00:00+00:00,-0.17080354378759718 -2024-11-19 19:00:00+00:00,-0.14439260285989075 -2024-11-19 20:00:00+00:00,-0.11668288706369126 -2024-11-19 21:00:00+00:00,-0.08987226525590189 -2024-11-19 22:00:00+00:00,-0.06594260728431574 -2024-11-19 23:00:00+00:00,-0.04275301673385658 -2024-11-20 00:00:00+00:00,-0.01793864238108701 -2024-11-20 01:00:00+00:00,0.004288891123601236 -2024-11-20 02:00:00+00:00,0.0252038242978989 -2024-11-20 03:00:00+00:00,0.04553023923136993 -2024-11-20 04:00:00+00:00,0.06589795262882048 -2024-11-20 05:00:00+00:00,0.08722749330108615 -2024-11-20 06:00:00+00:00,0.11055520051879775 -2024-11-20 07:00:00+00:00,0.13841488114612305 -2024-11-20 08:00:00+00:00,0.16695628291776984 -2024-11-20 09:00:00+00:00,0.19599469845812498 -2024-11-20 10:00:00+00:00,0.223311861646365 -2024-11-20 11:00:00+00:00,0.24901318207265555 -2024-11-20 12:00:00+00:00,0.2693937040683723 -2024-11-20 13:00:00+00:00,0.28542695477433555 -2024-11-20 14:00:00+00:00,0.2951703107208845 -2024-11-20 15:00:00+00:00,0.298670957707134 -2024-11-20 16:00:00+00:00,0.29503330087008767 -2024-11-20 17:00:00+00:00,0.2838232206825577 -2024-11-20 18:00:00+00:00,0.2697540913833402 -2024-11-20 19:00:00+00:00,0.25444643758676155 -2024-11-20 20:00:00+00:00,0.24032404957471015 -2024-11-20 21:00:00+00:00,0.22637132302237456 -2024-11-20 22:00:00+00:00,0.2114321538241122 -2024-11-20 23:00:00+00:00,0.19505913165743272 -2024-11-21 00:00:00+00:00,0.17499428228132008 -2024-11-21 01:00:00+00:00,0.15271004776736996 -2024-11-21 02:00:00+00:00,0.12864232934037326 -2024-11-21 03:00:00+00:00,0.1038030032060081 -2024-11-21 04:00:00+00:00,0.08163560727872801 -2024-11-21 05:00:00+00:00,0.06422489580955991 -2024-11-21 06:00:00+00:00,0.04373340871409308 -2024-11-21 07:00:00+00:00,0.024598861783303366 -2024-11-21 08:00:00+00:00,-0.0001569859727682081 -2024-11-21 09:00:00+00:00,-0.027840050236161547 -2024-11-21 10:00:00+00:00,-0.05576341993823651 -2024-11-21 11:00:00+00:00,-0.08012458581706497 -2024-11-21 12:00:00+00:00,-0.10227711932570094 -2024-11-21 13:00:00+00:00,-0.1246663268130722 -2024-11-21 14:00:00+00:00,-0.14820303799305218 -2024-11-21 15:00:00+00:00,-0.16734548392023166 -2024-11-21 16:00:00+00:00,-0.1770200217339853 -2024-11-21 17:00:00+00:00,-0.18324792906878806 -2024-11-21 18:00:00+00:00,-0.1848323875614627 -2024-11-21 19:00:00+00:00,-0.18370408624905296 -2024-11-21 20:00:00+00:00,-0.1805478371247731 -2024-11-21 21:00:00+00:00,-0.17526819254628329 -2024-11-21 22:00:00+00:00,-0.169013573341817 -2024-11-21 23:00:00+00:00,-0.16773838353044165 -2024-11-22 00:00:00+00:00,-0.16650862748597361 -2024-11-22 01:00:00+00:00,-0.1636840453387996 -2024-11-22 02:00:00+00:00,-0.1599699000367553 -2024-11-22 03:00:00+00:00,-0.15753854806649675 -2024-11-22 04:00:00+00:00,-0.1531588216540562 -2024-11-22 05:00:00+00:00,-0.142971167980599 -2024-11-22 06:00:00+00:00,-0.12616052825524204 -2024-11-22 07:00:00+00:00,-0.10860040253821897 -2024-11-22 08:00:00+00:00,-0.09468967588956347 -2024-11-22 09:00:00+00:00,-0.08380309005191988 -2024-11-22 10:00:00+00:00,-0.07793582525642125 -2024-11-22 11:00:00+00:00,-0.07553596684640787 -2024-11-22 12:00:00+00:00,-0.07235935067591737 -2024-11-22 13:00:00+00:00,-0.072239360003124 -2024-11-22 14:00:00+00:00,-0.06424037773451807 -2024-11-22 15:00:00+00:00,-0.05128871974077134 -2024-11-22 16:00:00+00:00,-0.03841139471500405 -2024-11-22 17:00:00+00:00,-0.025817166320745117 -2024-11-22 18:00:00+00:00,-0.014177243705196546 -2024-11-22 19:00:00+00:00,-0.0027720220938576064 -2024-11-22 20:00:00+00:00,0.008468889885284643 -2024-11-22 21:00:00+00:00,0.01775380183192853 -2024-11-24 22:00:00+00:00,0.017212601446850856 -2024-11-24 23:00:00+00:00,0.008842464574451436 -2024-11-25 00:00:00+00:00,-0.002994992754979312 -2024-11-25 01:00:00+00:00,-0.023478049205449412 -2024-11-25 02:00:00+00:00,-0.04836441371453336 -2024-11-25 03:00:00+00:00,-0.07169216607249726 -2024-11-25 04:00:00+00:00,-0.0902795222780658 -2024-11-25 05:00:00+00:00,-0.10197138524849754 -2024-11-25 06:00:00+00:00,-0.1080173339779497 -2024-11-25 07:00:00+00:00,-0.10608447798711765 -2024-11-25 08:00:00+00:00,-0.09648939957285746 -2024-11-25 09:00:00+00:00,-0.08673041514723887 -2024-11-25 10:00:00+00:00,-0.07718260353875218 -2024-11-25 11:00:00+00:00,-0.06676753173235303 -2024-11-25 12:00:00+00:00,-0.06110068229720598 -2024-11-25 13:00:00+00:00,-0.06292328700862768 -2024-11-25 14:00:00+00:00,-0.07204106367432075 -2024-11-25 15:00:00+00:00,-0.07519740982250006 -2024-11-25 16:00:00+00:00,-0.07549293143837264 -2024-11-25 17:00:00+00:00,-0.07337701903718166 -2024-11-25 18:00:00+00:00,-0.07305972683313391 -2024-11-25 19:00:00+00:00,-0.07327316636259201 -2024-11-25 20:00:00+00:00,-0.07359320179216584 -2024-11-25 21:00:00+00:00,-0.07325308874506643 -2024-11-25 22:00:00+00:00,-0.07332329747631885 -2024-11-25 23:00:00+00:00,-0.06914028772494973 -2024-11-26 00:00:00+00:00,-0.06822436368033288 -2024-11-26 01:00:00+00:00,-0.06867434381509561 -2024-11-26 02:00:00+00:00,-0.07091714392117189 -2024-11-26 03:00:00+00:00,-0.07786541170987135 -2024-11-26 04:00:00+00:00,-0.08562582318374348 -2024-11-26 05:00:00+00:00,-0.09525569158375034 -2024-11-26 06:00:00+00:00,-0.09999064941943504 -2024-11-26 07:00:00+00:00,-0.101452683984851 -2024-11-26 08:00:00+00:00,-0.10164034048004134 -2024-11-26 09:00:00+00:00,-0.10147378521641254 -2024-11-26 10:00:00+00:00,-0.10338346642496911 -2024-11-26 11:00:00+00:00,-0.10606729896259443 -2024-11-26 12:00:00+00:00,-0.11718211991769312 -2024-11-26 13:00:00+00:00,-0.12995551366577152 -2024-11-26 14:00:00+00:00,-0.14135081954650097 -2024-11-26 15:00:00+00:00,-0.15187224048517436 -2024-11-26 16:00:00+00:00,-0.16056532346113273 -2024-11-26 17:00:00+00:00,-0.16987538838204524 -2024-11-26 18:00:00+00:00,-0.17765989923639675 -2024-11-26 19:00:00+00:00,-0.18814245905442212 -2024-11-26 20:00:00+00:00,-0.20008763341407707 -2024-11-26 21:00:00+00:00,-0.21118128037831985 -2024-11-26 22:00:00+00:00,-0.22107719470599846 -2024-11-26 23:00:00+00:00,-0.23152909832302296 -2024-11-27 00:00:00+00:00,-0.24163678353106113 -2024-11-27 01:00:00+00:00,-0.25622361721592957 -2024-11-27 02:00:00+00:00,-0.2709131176567263 -2024-11-27 03:00:00+00:00,-0.2872310209011353 -2024-11-27 04:00:00+00:00,-0.30526121582752525 -2024-11-27 05:00:00+00:00,-0.32074536975883694 -2024-11-27 06:00:00+00:00,-0.33877073808599045 -2024-11-27 07:00:00+00:00,-0.35874591780743664 -2024-11-27 08:00:00+00:00,-0.3800248538411982 -2024-11-27 09:00:00+00:00,-0.405819100651643 -2024-11-27 10:00:00+00:00,-0.43334696270150797 -2024-11-27 11:00:00+00:00,-0.45812669119238325 -2024-11-27 12:00:00+00:00,-0.4788726939278092 -2024-11-27 13:00:00+00:00,-0.4973365192510562 -2024-11-27 14:00:00+00:00,-0.5116462630015797 -2024-11-27 15:00:00+00:00,-0.5257277610500746 -2024-11-27 16:00:00+00:00,-0.5441115501886631 -2024-11-27 17:00:00+00:00,-0.5620627270181924 -2024-11-27 18:00:00+00:00,-0.5759730874851172 -2024-11-27 19:00:00+00:00,-0.5826763006518946 -2024-11-27 20:00:00+00:00,-0.5820659737365566 -2024-11-27 21:00:00+00:00,-0.5752100582690463 -2024-11-27 22:00:00+00:00,-0.5659767961249283 -2024-11-27 23:00:00+00:00,-0.548368873917269 -2024-11-28 00:00:00+00:00,-0.519664841896241 -2024-11-28 01:00:00+00:00,-0.48842655960948256 -2024-11-28 02:00:00+00:00,-0.4558848815618346 -2024-11-28 03:00:00+00:00,-0.4202893912732622 -2024-11-28 04:00:00+00:00,-0.3837038349313709 -2024-11-28 05:00:00+00:00,-0.34888123197129356 -2024-11-28 06:00:00+00:00,-0.3161141294467905 -2024-11-28 07:00:00+00:00,-0.2822981194542554 -2024-11-28 08:00:00+00:00,-0.24769355232591161 -2024-11-28 09:00:00+00:00,-0.2129507704494859 -2024-11-28 10:00:00+00:00,-0.1800635422072142 -2024-11-28 11:00:00+00:00,-0.15000393779800972 -2024-11-28 12:00:00+00:00,-0.12403541832945132 -2024-11-28 13:00:00+00:00,-0.10480487923268467 -2024-11-28 14:00:00+00:00,-0.09128474953132874 -2024-11-28 15:00:00+00:00,-0.08187639377262264 -2024-11-28 16:00:00+00:00,-0.07597402917723303 -2024-11-28 17:00:00+00:00,-0.0722139504540461 -2024-11-28 18:00:00+00:00,-0.06919095771384348 -2024-11-28 19:00:00+00:00,-0.06717317641667955 -2024-11-28 20:00:00+00:00,-0.06655179156453432 -2024-11-28 21:00:00+00:00,-0.06504322513384787 -2024-11-28 22:00:00+00:00,-0.0631966048425846 -2024-11-28 23:00:00+00:00,-0.0666749095660209 -2024-11-29 00:00:00+00:00,-0.08279293727711896 -2024-11-29 01:00:00+00:00,-0.11599453478189009 -2024-11-29 02:00:00+00:00,-0.15438895374733164 -2024-11-29 03:00:00+00:00,-0.19467867826658314 -2024-11-29 04:00:00+00:00,-0.2349886117546981 -2024-11-29 05:00:00+00:00,-0.27121066007917716 -2024-11-29 06:00:00+00:00,-0.30398088802407425 -2024-11-29 07:00:00+00:00,-0.3322406960598153 -2024-11-29 08:00:00+00:00,-0.3524034516604577 -2024-11-29 09:00:00+00:00,-0.3660457827593863 -2024-11-29 10:00:00+00:00,-0.3772426753716903 -2024-11-29 11:00:00+00:00,-0.3841836892619941 -2024-11-29 12:00:00+00:00,-0.3853989056428125 -2024-11-29 13:00:00+00:00,-0.3850666731404174 -2024-11-29 14:00:00+00:00,-0.3833669790574583 -2024-11-29 15:00:00+00:00,-0.37619645659887807 -2024-11-29 16:00:00+00:00,-0.3613182367195649 -2024-11-29 17:00:00+00:00,-0.3545842083611684 -2024-11-29 18:00:00+00:00,-0.35176573809311057 -2024-11-29 19:00:00+00:00,-0.35141755284593906 -2024-11-29 20:00:00+00:00,-0.35114895526505285 -2024-11-29 21:00:00+00:00,-0.3488516748290634 -2024-12-01 22:00:00+00:00,-0.3464429368205287 -2024-12-01 23:00:00+00:00,-0.3392645286237939 -2024-12-02 00:00:00+00:00,-0.32330704249690734 -2024-12-02 01:00:00+00:00,-0.2966976331965272 -2024-12-02 02:00:00+00:00,-0.2631572607235036 -2024-12-02 03:00:00+00:00,-0.22750009379732378 -2024-12-02 04:00:00+00:00,-0.19106912919794972 -2024-12-02 05:00:00+00:00,-0.15331405906343953 -2024-12-02 06:00:00+00:00,-0.12261294569672083 -2024-12-02 07:00:00+00:00,-0.09893941243912942 -2024-12-02 08:00:00+00:00,-0.08122858318723145 -2024-12-02 09:00:00+00:00,-0.06592428177845465 -2024-12-02 10:00:00+00:00,-0.05555643577134574 -2024-12-02 11:00:00+00:00,-0.0490664912066353 -2024-12-02 12:00:00+00:00,-0.04547483753752112 -2024-12-02 13:00:00+00:00,-0.044677857812890305 -2024-12-02 14:00:00+00:00,-0.04692860004970299 -2024-12-02 15:00:00+00:00,-0.0528270411307285 -2024-12-02 16:00:00+00:00,-0.07023460129134002 -2024-12-02 17:00:00+00:00,-0.088502330709844 -2024-12-02 18:00:00+00:00,-0.10525641098551577 -2024-12-02 19:00:00+00:00,-0.12196979890425522 -2024-12-02 20:00:00+00:00,-0.13726422814677514 -2024-12-02 21:00:00+00:00,-0.14978885741964434 -2024-12-02 22:00:00+00:00,-0.16028146316578548 -2024-12-02 23:00:00+00:00,-0.1690956236351705 -2024-12-03 00:00:00+00:00,-0.170314584638946 -2024-12-03 01:00:00+00:00,-0.1662411683418224 -2024-12-03 02:00:00+00:00,-0.15887668343784955 -2024-12-03 03:00:00+00:00,-0.1458198056050292 -2024-12-03 04:00:00+00:00,-0.12870157239697727 -2024-12-03 05:00:00+00:00,-0.11154036497399597 -2024-12-03 06:00:00+00:00,-0.09364149258611744 -2024-12-03 07:00:00+00:00,-0.07764843149621035 -2024-12-03 08:00:00+00:00,-0.064931245233688 -2024-12-03 09:00:00+00:00,-0.05641332875198436 -2024-12-03 10:00:00+00:00,-0.04714395458379778 -2024-12-03 11:00:00+00:00,-0.042775778791675254 -2024-12-03 12:00:00+00:00,-0.0424407011598844 -2024-12-03 13:00:00+00:00,-0.057828399775298675 -2024-12-03 14:00:00+00:00,-0.0825950567953916 -2024-12-03 15:00:00+00:00,-0.10650470046626356 -2024-12-03 16:00:00+00:00,-0.12881182521763018 -2024-12-03 17:00:00+00:00,-0.1473113866701668 -2024-12-03 18:00:00+00:00,-0.1647992530634259 -2024-12-03 19:00:00+00:00,-0.17290994265575627 -2024-12-03 20:00:00+00:00,-0.17516951105484357 -2024-12-03 21:00:00+00:00,-0.17101039475335567 -2024-12-03 22:00:00+00:00,-0.16257665962001192 -2024-12-03 23:00:00+00:00,-0.15132783404721153 -2024-12-04 00:00:00+00:00,-0.1344111914562316 -2024-12-04 01:00:00+00:00,-0.11366098056470922 -2024-12-04 02:00:00+00:00,-0.09372982970120305 -2024-12-04 03:00:00+00:00,-0.07259053786416951 -2024-12-04 04:00:00+00:00,-0.05111021903378828 -2024-12-04 05:00:00+00:00,-0.02836757471256443 -2024-12-04 06:00:00+00:00,-0.007429087051613315 -2024-12-04 07:00:00+00:00,0.017296752835607394 -2024-12-04 08:00:00+00:00,0.04395428683561296 -2024-12-04 09:00:00+00:00,0.07329247795739108 -2024-12-04 10:00:00+00:00,0.10645086243468121 -2024-12-04 11:00:00+00:00,0.14042169014240682 -2024-12-04 12:00:00+00:00,0.17730003046767967 -2024-12-04 13:00:00+00:00,0.21208393002229609 -2024-12-04 14:00:00+00:00,0.23988188124253668 -2024-12-04 15:00:00+00:00,0.2538305548530655 -2024-12-04 16:00:00+00:00,0.25447050734548926 -2024-12-04 17:00:00+00:00,0.24586809465922788 -2024-12-04 18:00:00+00:00,0.23547955541567242 -2024-12-04 19:00:00+00:00,0.2242346561582793 -2024-12-04 20:00:00+00:00,0.21374394270819616 -2024-12-04 21:00:00+00:00,0.20547988125503966 -2024-12-04 22:00:00+00:00,0.19715638465960028 -2024-12-04 23:00:00+00:00,0.18894215159215869 -2024-12-05 00:00:00+00:00,0.17564309272222572 -2024-12-05 01:00:00+00:00,0.16454325474255735 -2024-12-05 02:00:00+00:00,0.15175803502753202 -2024-12-05 03:00:00+00:00,0.13747497381095142 -2024-12-05 04:00:00+00:00,0.12431585338352874 -2024-12-05 05:00:00+00:00,0.1049605566221319 -2024-12-05 06:00:00+00:00,0.08008791006483326 -2024-12-05 07:00:00+00:00,0.05299010514144145 -2024-12-05 08:00:00+00:00,0.03217911698710181 -2024-12-05 09:00:00+00:00,0.018240717373055184 -2024-12-05 10:00:00+00:00,0.006299592567729537 -2024-12-05 11:00:00+00:00,-0.0031717958265281452 -2024-12-05 12:00:00+00:00,-0.006698588797561814 -2024-12-05 13:00:00+00:00,-0.003044575914424208 -2024-12-05 14:00:00+00:00,0.0030429956912190106 -2024-12-05 15:00:00+00:00,0.006532667595588742 -2024-12-05 16:00:00+00:00,0.007414436276607143 -2024-12-05 17:00:00+00:00,0.005481689852526411 -2024-12-05 18:00:00+00:00,0.002272544166910708 -2024-12-05 19:00:00+00:00,-0.00374337528582166 -2024-12-05 20:00:00+00:00,-0.01022141043828781 -2024-12-05 21:00:00+00:00,-0.016402842966212798 -2024-12-05 22:00:00+00:00,-0.02235603272978692 -2024-12-05 23:00:00+00:00,-0.027085185667179525 -2024-12-06 00:00:00+00:00,-0.031040627310151052 -2024-12-06 01:00:00+00:00,-0.035142424756960854 -2024-12-06 02:00:00+00:00,-0.042455080505816166 -2024-12-06 03:00:00+00:00,-0.05053432285372318 -2024-12-06 04:00:00+00:00,-0.056991808889110034 -2024-12-06 05:00:00+00:00,-0.062586623759496 -2024-12-06 06:00:00+00:00,-0.06838542282098595 -2024-12-06 07:00:00+00:00,-0.07021462154359989 -2024-12-06 08:00:00+00:00,-0.0649123643451796 -2024-12-06 09:00:00+00:00,-0.05196768930728991 -2024-12-06 10:00:00+00:00,-0.03480898562144726 -2024-12-06 11:00:00+00:00,-0.016834289504755667 -2024-12-06 12:00:00+00:00,-0.0008953445053167062 -2024-12-06 13:00:00+00:00,0.0010480860833523772 -2024-12-06 14:00:00+00:00,-0.005964639345267037 -2024-12-06 15:00:00+00:00,-0.014843314815028923 -2024-12-06 16:00:00+00:00,-0.02558884706129789 -2024-12-06 17:00:00+00:00,-0.034202526372670725 -2024-12-06 18:00:00+00:00,-0.04050378013958803 -2024-12-06 19:00:00+00:00,-0.045188282586844 -2024-12-06 20:00:00+00:00,-0.04870232702433685 -2024-12-06 21:00:00+00:00,-0.049911183309649144 -2024-12-08 22:00:00+00:00,-0.05013624103149475 -2024-12-08 23:00:00+00:00,-0.051309772431778304 -2024-12-09 00:00:00+00:00,-0.053697045750993364 -2024-12-09 01:00:00+00:00,-0.05552859188072116 -2024-12-09 02:00:00+00:00,-0.05683710865438204 -2024-12-09 03:00:00+00:00,-0.05647094493261651 -2024-12-09 04:00:00+00:00,-0.0563176898933107 -2024-12-09 05:00:00+00:00,-0.05506074724986996 -2024-12-09 06:00:00+00:00,-0.05024445381990422 -2024-12-09 07:00:00+00:00,-0.04008048820481114 -2024-12-09 08:00:00+00:00,-0.02579362998580148 -2024-12-09 09:00:00+00:00,-0.009644683203767813 -2024-12-09 10:00:00+00:00,0.007453080129936894 -2024-12-09 11:00:00+00:00,0.024758758939210115 -2024-12-09 12:00:00+00:00,0.0456185970287746 -2024-12-09 13:00:00+00:00,0.06927957227843856 -2024-12-09 14:00:00+00:00,0.09417548933096698 -2024-12-09 15:00:00+00:00,0.11980947456411448 -2024-12-09 16:00:00+00:00,0.14771942017274586 -2024-12-09 17:00:00+00:00,0.1766760687650539 -2024-12-09 18:00:00+00:00,0.20345873293371086 -2024-12-09 19:00:00+00:00,0.22650052935235251 -2024-12-09 20:00:00+00:00,0.24518631328499135 -2024-12-09 21:00:00+00:00,0.25950773761105256 -2024-12-09 22:00:00+00:00,0.2702938926746187 -2024-12-09 23:00:00+00:00,0.2799322995756224 -2024-12-10 00:00:00+00:00,0.28856957507377584 -2024-12-10 01:00:00+00:00,0.29339479804242774 -2024-12-10 02:00:00+00:00,0.2931061990807506 -2024-12-10 03:00:00+00:00,0.28688536204772724 -2024-12-10 04:00:00+00:00,0.2775758148610696 -2024-12-10 05:00:00+00:00,0.2630586288782437 -2024-12-10 06:00:00+00:00,0.2500337186328089 -2024-12-10 07:00:00+00:00,0.2433539139025771 -2024-12-10 08:00:00+00:00,0.2417229652671008 -2024-12-10 09:00:00+00:00,0.24218483550206404 -2024-12-10 10:00:00+00:00,0.24330247175062578 -2024-12-10 11:00:00+00:00,0.2460208545479544 -2024-12-10 12:00:00+00:00,0.2502997197202636 -2024-12-10 13:00:00+00:00,0.2531185712958487 -2024-12-10 14:00:00+00:00,0.2566110276654329 -2024-12-10 15:00:00+00:00,0.2645440624833021 -2024-12-10 16:00:00+00:00,0.2730609268395875 -2024-12-10 17:00:00+00:00,0.28183216000734046 -2024-12-10 18:00:00+00:00,0.286581469301109 -2024-12-10 19:00:00+00:00,0.2880673150087695 -2024-12-10 20:00:00+00:00,0.28680513962819587 -2024-12-10 21:00:00+00:00,0.283839304064966 -2024-12-10 22:00:00+00:00,0.27888342488614376 -2024-12-10 23:00:00+00:00,0.2707249013812523 -2024-12-11 00:00:00+00:00,0.25856681992664976 -2024-12-11 01:00:00+00:00,0.24355105326944262 -2024-12-11 02:00:00+00:00,0.22282804592649116 -2024-12-11 03:00:00+00:00,0.20073366521461392 -2024-12-11 04:00:00+00:00,0.17846449114592836 -2024-12-11 05:00:00+00:00,0.16014895431784243 -2024-12-11 06:00:00+00:00,0.1450501893048983 -2024-12-11 07:00:00+00:00,0.1306895066968664 -2024-12-11 08:00:00+00:00,0.11679965908516464 -2024-12-11 09:00:00+00:00,0.12046684044206948 -2024-12-11 10:00:00+00:00,0.13337931172425166 -2024-12-11 11:00:00+00:00,0.1504196202217857 -2024-12-11 12:00:00+00:00,0.17042245525733749 -2024-12-11 13:00:00+00:00,0.1851494091233857 -2024-12-11 14:00:00+00:00,0.1927590144546079 -2024-12-11 15:00:00+00:00,0.20030240717238645 -2024-12-11 16:00:00+00:00,0.2050537567941371 -2024-12-11 17:00:00+00:00,0.20977970094693962 -2024-12-11 18:00:00+00:00,0.21668350738938277 -2024-12-11 19:00:00+00:00,0.22353817667873777 -2024-12-11 20:00:00+00:00,0.2286795507260883 -2024-12-11 21:00:00+00:00,0.22991417298912037 -2024-12-11 22:00:00+00:00,0.22742533718782282 -2024-12-11 23:00:00+00:00,0.21958235191313952 -2024-12-12 00:00:00+00:00,0.2071613955939484 -2024-12-12 01:00:00+00:00,0.18874745594143755 -2024-12-12 02:00:00+00:00,0.17253682737589232 -2024-12-12 03:00:00+00:00,0.15875404651073882 -2024-12-12 04:00:00+00:00,0.14425310731167146 -2024-12-12 05:00:00+00:00,0.13453570076774352 -2024-12-12 06:00:00+00:00,0.12781188084468453 -2024-12-12 07:00:00+00:00,0.12447739949284574 -2024-12-12 08:00:00+00:00,0.12205752504399293 -2024-12-12 09:00:00+00:00,0.12042652007799638 -2024-12-12 10:00:00+00:00,0.11581437711068185 -2024-12-12 11:00:00+00:00,0.10718958903971812 -2024-12-12 12:00:00+00:00,0.097661560246449 -2024-12-12 13:00:00+00:00,0.08395140473720505 -2024-12-12 14:00:00+00:00,0.0715934938435386 -2024-12-12 15:00:00+00:00,0.061205966370938884 -2024-12-12 16:00:00+00:00,0.04910804028020044 -2024-12-12 17:00:00+00:00,0.03945976579018798 -2024-12-12 18:00:00+00:00,0.035176972183777196 -2024-12-12 19:00:00+00:00,0.03535875868849439 -2024-12-12 20:00:00+00:00,0.040227085779559 -2024-12-12 21:00:00+00:00,0.04744663806121972 -2024-12-12 22:00:00+00:00,0.05455243669472551 -2024-12-12 23:00:00+00:00,0.061345373656420746 -2024-12-13 00:00:00+00:00,0.07106795190922957 -2024-12-13 01:00:00+00:00,0.0810776278334527 -2024-12-13 02:00:00+00:00,0.0927913531834245 -2024-12-13 03:00:00+00:00,0.10466782851823572 -2024-12-13 04:00:00+00:00,0.11656693515700264 -2024-12-13 05:00:00+00:00,0.12666542007665915 -2024-12-13 06:00:00+00:00,0.1319135311023305 -2024-12-13 07:00:00+00:00,0.13491782923788628 -2024-12-13 08:00:00+00:00,0.14187411545062306 -2024-12-13 09:00:00+00:00,0.15457610655881537 -2024-12-13 10:00:00+00:00,0.17080253514667004 -2024-12-13 11:00:00+00:00,0.19051890086100215 -2024-12-13 12:00:00+00:00,0.20817882759526005 -2024-12-13 13:00:00+00:00,0.22072450279218145 -2024-12-13 14:00:00+00:00,0.23364238492907363 -2024-12-13 15:00:00+00:00,0.2466049468025208 -2024-12-13 16:00:00+00:00,0.2597419657874471 -2024-12-13 17:00:00+00:00,0.2707503974292697 -2024-12-13 18:00:00+00:00,0.27939004082142715 -2024-12-13 19:00:00+00:00,0.28526382983751103 -2024-12-13 20:00:00+00:00,0.28793540590630173 -2024-12-13 21:00:00+00:00,0.2876919045597207 -2024-12-15 22:00:00+00:00,0.2845156677993079 -2024-12-15 23:00:00+00:00,0.276466577566279 -2024-12-16 00:00:00+00:00,0.27077105495222087 -2024-12-16 01:00:00+00:00,0.26776375355841575 -2024-12-16 02:00:00+00:00,0.26549415020237155 -2024-12-16 03:00:00+00:00,0.26225947262951177 -2024-12-16 04:00:00+00:00,0.25681110320918704 -2024-12-16 05:00:00+00:00,0.24836726059319802 -2024-12-16 06:00:00+00:00,0.23776293020688355 -2024-12-16 07:00:00+00:00,0.22387199590453372 -2024-12-16 08:00:00+00:00,0.21083531440250086 -2024-12-16 09:00:00+00:00,0.20024405257050765 -2024-12-16 10:00:00+00:00,0.191683207556352 -2024-12-16 11:00:00+00:00,0.18400801690726787 -2024-12-16 12:00:00+00:00,0.18127431074459882 -2024-12-16 13:00:00+00:00,0.18050643743608297 -2024-12-16 14:00:00+00:00,0.18501892579947976 -2024-12-16 15:00:00+00:00,0.1911457578702799 -2024-12-16 16:00:00+00:00,0.1965224625884495 -2024-12-16 17:00:00+00:00,0.20033228025686353 -2024-12-16 18:00:00+00:00,0.2009880192351127 -2024-12-16 19:00:00+00:00,0.200243321391634 -2024-12-16 20:00:00+00:00,0.19863426936703543 -2024-12-16 21:00:00+00:00,0.19616294162139658 -2024-12-16 22:00:00+00:00,0.19251452390023582 -2024-12-16 23:00:00+00:00,0.18722667447632918 -2024-12-17 00:00:00+00:00,0.18167113307297408 -2024-12-17 01:00:00+00:00,0.17493152562940356 -2024-12-17 02:00:00+00:00,0.1659684681220423 -2024-12-17 03:00:00+00:00,0.1563575088186812 -2024-12-17 04:00:00+00:00,0.14679104310223604 -2024-12-17 05:00:00+00:00,0.13852024326563078 -2024-12-17 06:00:00+00:00,0.1312910759530832 -2024-12-17 07:00:00+00:00,0.12366174617068584 -2024-12-17 08:00:00+00:00,0.11258117572643542 -2024-12-17 09:00:00+00:00,0.09859275516818308 -2024-12-17 10:00:00+00:00,0.08402423691494433 -2024-12-17 11:00:00+00:00,0.07081304018144749 -2024-12-17 12:00:00+00:00,0.05751593553369412 -2024-12-17 13:00:00+00:00,0.04399704808238921 -2024-12-17 14:00:00+00:00,0.027501401867147352 -2024-12-17 15:00:00+00:00,0.009176216736806547 -2024-12-17 16:00:00+00:00,-0.010823772177904645 -2024-12-17 17:00:00+00:00,-0.0331297383541231 -2024-12-17 18:00:00+00:00,-0.0555883581748018 -2024-12-17 19:00:00+00:00,-0.07580160623063517 -2024-12-17 20:00:00+00:00,-0.0905033248349649 -2024-12-17 21:00:00+00:00,-0.10128410109878326 -2024-12-17 22:00:00+00:00,-0.10944949024282023 -2024-12-17 23:00:00+00:00,-0.11331975711107986 -2024-12-18 00:00:00+00:00,-0.11218604786328797 -2024-12-18 01:00:00+00:00,-0.10928321230876327 -2024-12-18 02:00:00+00:00,-0.10364299161713239 -2024-12-18 03:00:00+00:00,-0.09744733200033426 -2024-12-18 04:00:00+00:00,-0.09379824135166828 -2024-12-18 05:00:00+00:00,-0.0930948767652334 -2024-12-18 06:00:00+00:00,-0.09221181343426527 -2024-12-18 07:00:00+00:00,-0.08940893583191262 -2024-12-18 08:00:00+00:00,-0.08552140483786316 -2024-12-18 09:00:00+00:00,-0.07986204962798557 -2024-12-18 10:00:00+00:00,-0.07411620202118598 -2024-12-18 11:00:00+00:00,-0.06707634389308509 -2024-12-18 12:00:00+00:00,-0.05685697009477076 -2024-12-18 13:00:00+00:00,-0.044683913830266604 -2024-12-18 14:00:00+00:00,-0.03289156116018504 -2024-12-18 15:00:00+00:00,-0.018020065558403648 -2024-12-18 16:00:00+00:00,-0.002308136969873434 -2024-12-18 17:00:00+00:00,0.010304196976579395 -2024-12-18 18:00:00+00:00,0.019411627437411587 -2024-12-18 19:00:00+00:00,0.039792605507174575 -2024-12-18 20:00:00+00:00,0.06668679267401753 -2024-12-18 21:00:00+00:00,0.09849466509256624 -2024-12-18 22:00:00+00:00,0.13008644113162957 -2024-12-18 23:00:00+00:00,0.15828192362222226 -2024-12-19 00:00:00+00:00,0.18499875369860447 -2024-12-19 01:00:00+00:00,0.20612671708697997 -2024-12-19 02:00:00+00:00,0.22928998938880815 -2024-12-19 03:00:00+00:00,0.25470434932338815 -2024-12-19 04:00:00+00:00,0.28038267386466337 -2024-12-19 05:00:00+00:00,0.3029968528299309 -2024-12-19 06:00:00+00:00,0.3358223981714243 -2024-12-19 07:00:00+00:00,0.3784651875298616 -2024-12-19 08:00:00+00:00,0.43049713418034186 -2024-12-19 09:00:00+00:00,0.4873696195161184 -2024-12-19 10:00:00+00:00,0.5417799085127873 -2024-12-19 11:00:00+00:00,0.5865074156320991 -2024-12-19 12:00:00+00:00,0.6253135436160224 -2024-12-19 13:00:00+00:00,0.6564701359886093 -2024-12-19 14:00:00+00:00,0.6839465139938368 -2024-12-19 15:00:00+00:00,0.7147004711235398 -2024-12-19 16:00:00+00:00,0.7445229018124941 -2024-12-19 17:00:00+00:00,0.7699587602419281 -2024-12-19 18:00:00+00:00,0.7870680297813587 -2024-12-19 19:00:00+00:00,0.794416859038318 -2024-12-19 20:00:00+00:00,0.7919524438288905 -2024-12-19 21:00:00+00:00,0.7833207052638558 -2024-12-19 22:00:00+00:00,0.7696820045539609 -2024-12-19 23:00:00+00:00,0.7551842577402204 -2024-12-20 00:00:00+00:00,0.740558935406064 -2024-12-20 01:00:00+00:00,0.717593419818718 -2024-12-20 02:00:00+00:00,0.6840867311124318 -2024-12-20 03:00:00+00:00,0.6457019671957157 -2024-12-20 04:00:00+00:00,0.6084218800197814 -2024-12-20 05:00:00+00:00,0.5682057386643393 -2024-12-20 06:00:00+00:00,0.5261647554015441 -2024-12-20 07:00:00+00:00,0.48151168401366146 -2024-12-20 08:00:00+00:00,0.437421996610988 -2024-12-20 09:00:00+00:00,0.39236722979995453 -2024-12-20 10:00:00+00:00,0.3484623104408991 -2024-12-20 11:00:00+00:00,0.3073278956610166 -2024-12-20 12:00:00+00:00,0.2687476743934939 -2024-12-20 13:00:00+00:00,0.22974808134400082 -2024-12-20 14:00:00+00:00,0.19313917847969872 -2024-12-20 15:00:00+00:00,0.1581036212298171 -2024-12-20 16:00:00+00:00,0.11922848389898819 -2024-12-20 17:00:00+00:00,0.07915452070479467 -2024-12-20 18:00:00+00:00,0.040472852713643356 -2024-12-20 19:00:00+00:00,0.003291097410626019 -2024-12-20 20:00:00+00:00,-0.025392959285453404 -2024-12-20 21:00:00+00:00,-0.04623201682436966 -2024-12-22 22:00:00+00:00,-0.05897784334689535 -2024-12-22 23:00:00+00:00,-0.06543359492270635 -2024-12-23 00:00:00+00:00,-0.06675729751500305 -2024-12-23 01:00:00+00:00,-0.06709976722387925 -2024-12-23 02:00:00+00:00,-0.06506089080519317 -2024-12-23 03:00:00+00:00,-0.06212620374661322 -2024-12-23 04:00:00+00:00,-0.05768501793619244 -2024-12-23 05:00:00+00:00,-0.05123625400370185 -2024-12-23 06:00:00+00:00,-0.04434076946238643 -2024-12-23 07:00:00+00:00,-0.03450604208930425 -2024-12-23 08:00:00+00:00,-0.026903567499703712 -2024-12-23 09:00:00+00:00,-0.018995276074823167 -2024-12-23 10:00:00+00:00,-0.009240365383832716 -2024-12-23 11:00:00+00:00,0.00153265976339223 -2024-12-23 12:00:00+00:00,0.017114047844660796 -2024-12-23 13:00:00+00:00,0.035922362041364266 -2024-12-23 14:00:00+00:00,0.05511105479801802 -2024-12-23 15:00:00+00:00,0.07275251818894563 -2024-12-23 16:00:00+00:00,0.08672219980948924 -2024-12-23 17:00:00+00:00,0.09953458259485286 -2024-12-23 18:00:00+00:00,0.11027636351962847 -2024-12-23 19:00:00+00:00,0.11837939154081387 -2024-12-23 20:00:00+00:00,0.12481995555170958 -2024-12-23 21:00:00+00:00,0.13005908245574624 -2024-12-23 22:00:00+00:00,0.13373478097086736 -2024-12-23 23:00:00+00:00,0.13644359936343894 -2024-12-24 00:00:00+00:00,0.14010366913813088 -2024-12-24 01:00:00+00:00,0.14097697847095347 -2024-12-24 02:00:00+00:00,0.13959291523478978 -2024-12-24 03:00:00+00:00,0.13595805560597976 -2024-12-24 04:00:00+00:00,0.1296124830606551 -2024-12-24 05:00:00+00:00,0.12144557634653151 -2024-12-24 06:00:00+00:00,0.11356476964758756 -2024-12-24 07:00:00+00:00,0.1069110200166839 -2024-12-24 08:00:00+00:00,0.09979132375376759 -2024-12-24 09:00:00+00:00,0.09306781294153912 -2024-12-24 10:00:00+00:00,0.08670105183797834 -2024-12-24 11:00:00+00:00,0.08152367107271724 -2024-12-24 12:00:00+00:00,0.07708164228366818 -2024-12-24 13:00:00+00:00,0.07405113899506721 -2024-12-24 14:00:00+00:00,0.07329942761361989 -2024-12-24 15:00:00+00:00,0.07470989904385895 -2024-12-24 16:00:00+00:00,0.07668891641432556 -2024-12-24 17:00:00+00:00,0.07887338977938535 -2024-12-24 18:00:00+00:00,0.08141885259478551 -2024-12-24 19:00:00+00:00,0.08336102789223102 -2024-12-24 20:00:00+00:00,0.08275064449526345 -2024-12-24 21:00:00+00:00,0.08068689251178982 -2024-12-25 22:00:00+00:00,0.07827465743275538 -2024-12-25 23:00:00+00:00,0.07367751955737106 -2024-12-26 00:00:00+00:00,0.07094296489015028 -2024-12-26 01:00:00+00:00,0.07082530406839833 -2024-12-26 02:00:00+00:00,0.07225642205539075 -2024-12-26 03:00:00+00:00,0.07358894639371683 -2024-12-26 04:00:00+00:00,0.07554745304644017 -2024-12-26 05:00:00+00:00,0.07634710392799811 -2024-12-26 06:00:00+00:00,0.07660333734795388 -2024-12-26 07:00:00+00:00,0.07634689496632588 -2024-12-26 08:00:00+00:00,0.07509800913028208 -2024-12-26 09:00:00+00:00,0.07452537267346537 -2024-12-26 10:00:00+00:00,0.07441225495196768 -2024-12-26 11:00:00+00:00,0.07676878305350243 -2024-12-26 12:00:00+00:00,0.08142772408254473 -2024-12-26 13:00:00+00:00,0.09001961140746176 -2024-12-26 14:00:00+00:00,0.10195264337393611 -2024-12-26 15:00:00+00:00,0.1173395839394416 -2024-12-26 16:00:00+00:00,0.1328600530469214 -2024-12-26 17:00:00+00:00,0.14781046974760761 -2024-12-26 18:00:00+00:00,0.1595120329651507 -2024-12-26 19:00:00+00:00,0.16904588633691783 -2024-12-26 20:00:00+00:00,0.17612858364834708 -2024-12-26 21:00:00+00:00,0.1817158996756613 -2024-12-26 22:00:00+00:00,0.18356884756294867 -2024-12-26 23:00:00+00:00,0.18061920197450532 -2024-12-27 00:00:00+00:00,0.176731686165508 -2024-12-27 01:00:00+00:00,0.16931315466828017 -2024-12-27 02:00:00+00:00,0.15745082546280248 -2024-12-27 03:00:00+00:00,0.14380009369663152 -2024-12-27 04:00:00+00:00,0.12823564348654348 -2024-12-27 05:00:00+00:00,0.11496287222635947 -2024-12-27 06:00:00+00:00,0.10346451140032017 -2024-12-27 07:00:00+00:00,0.0943865737241098 -2024-12-27 08:00:00+00:00,0.08764486934483791 -2024-12-27 09:00:00+00:00,0.08299975411209384 -2024-12-27 10:00:00+00:00,0.0778085418116228 -2024-12-27 11:00:00+00:00,0.07071057771052162 -2024-12-27 12:00:00+00:00,0.06484608563549757 -2024-12-27 13:00:00+00:00,0.05996220219696762 -2024-12-27 14:00:00+00:00,0.056099479993602895 -2024-12-27 15:00:00+00:00,0.04909046142636637 -2024-12-27 16:00:00+00:00,0.0429176490484276 -2024-12-27 17:00:00+00:00,0.038978486215109645 -2024-12-27 18:00:00+00:00,0.03666867012531899 -2024-12-27 19:00:00+00:00,0.037172591823351954 -2024-12-27 20:00:00+00:00,0.03877056503312336 -2024-12-27 21:00:00+00:00,0.03982914272578845 -2024-12-29 22:00:00+00:00,0.03820165729170724 -2024-12-29 23:00:00+00:00,0.03806377447377189 -2024-12-30 00:00:00+00:00,0.039418195359037914 -2024-12-30 01:00:00+00:00,0.03921777554381631 -2024-12-30 02:00:00+00:00,0.03809156812192052 -2024-12-30 03:00:00+00:00,0.03654876722024467 -2024-12-30 04:00:00+00:00,0.03437547616832023 -2024-12-30 05:00:00+00:00,0.0328317587385176 -2024-12-30 06:00:00+00:00,0.03195996492861501 -2024-12-30 07:00:00+00:00,0.03180126579261836 -2024-12-30 08:00:00+00:00,0.032121084832472876 -2024-12-30 09:00:00+00:00,0.03226794791930078 -2024-12-30 10:00:00+00:00,0.030757355311544214 -2024-12-30 11:00:00+00:00,0.025887642381639694 -2024-12-30 12:00:00+00:00,0.017848374275473092 -2024-12-30 13:00:00+00:00,0.006639709288839016 -2024-12-30 14:00:00+00:00,-0.01191807149659926 -2024-12-30 15:00:00+00:00,-0.03267815385494035 -2024-12-30 16:00:00+00:00,-0.05229971287299284 -2024-12-30 17:00:00+00:00,-0.07184676593351372 -2024-12-30 18:00:00+00:00,-0.09296665517717806 -2024-12-30 19:00:00+00:00,-0.11190262611333932 -2024-12-30 20:00:00+00:00,-0.13243402156868295 -2024-12-30 21:00:00+00:00,-0.1520448144615942 -2024-12-30 22:00:00+00:00,-0.16927325121623438 -2024-12-30 23:00:00+00:00,-0.18177308344757703 -2024-12-31 00:00:00+00:00,-0.19524924509504693 -2024-12-31 01:00:00+00:00,-0.21219045432415984 -2024-12-31 02:00:00+00:00,-0.23074545231306276 -2024-12-31 03:00:00+00:00,-0.2480315762344649 -2024-12-31 04:00:00+00:00,-0.26641729492512045 -2024-12-31 05:00:00+00:00,-0.283809508742241 -2024-12-31 06:00:00+00:00,-0.2970580319228787 -2024-12-31 07:00:00+00:00,-0.3087788309095276 -2024-12-31 08:00:00+00:00,-0.31911733619600363 -2024-12-31 09:00:00+00:00,-0.3194865338463976 -2024-12-31 10:00:00+00:00,-0.3097804319418599 -2024-12-31 11:00:00+00:00,-0.2940407175797872 -2024-12-31 12:00:00+00:00,-0.2732382779457487 -2024-12-31 13:00:00+00:00,-0.2478796408959777 -2024-12-31 14:00:00+00:00,-0.22419488355428455 -2024-12-31 15:00:00+00:00,-0.19616339448616169 -2024-12-31 16:00:00+00:00,-0.1630474829207446 -2024-12-31 17:00:00+00:00,-0.1281091264466786 -2024-12-31 18:00:00+00:00,-0.0947486633573969 -2024-12-31 19:00:00+00:00,-0.06371859951258638 -2024-12-31 20:00:00+00:00,-0.03502433660486551 -2024-12-31 21:00:00+00:00,-0.011531871914748693 -2025-01-01 22:00:00+00:00,0.008468195451609529 -2025-01-01 23:00:00+00:00,0.032167683880280365 -2025-01-02 00:00:00+00:00,0.052690157777663164 -2025-01-02 01:00:00+00:00,0.07120605377527492 -2025-01-02 02:00:00+00:00,0.08378945841298341 -2025-01-02 03:00:00+00:00,0.08969789350299204 -2025-01-02 04:00:00+00:00,0.08875457126834926 -2025-01-02 05:00:00+00:00,0.08634733695586438 -2025-01-02 06:00:00+00:00,0.07427273678771683 -2025-01-02 07:00:00+00:00,0.056698233387138766 -2025-01-02 08:00:00+00:00,0.03823949512823283 -2025-01-02 09:00:00+00:00,0.020282516182796202 -2025-01-02 10:00:00+00:00,0.008991547062476185 -2025-01-02 11:00:00+00:00,0.0035669105794490052 -2025-01-02 12:00:00+00:00,8.516003097554757e-05 -2025-01-02 13:00:00+00:00,-0.005985106222148259 -2025-01-02 14:00:00+00:00,-0.010139111708849622 -2025-01-02 15:00:00+00:00,-0.010920688822526437 -2025-01-02 16:00:00+00:00,-0.0014177878392926868 -2025-01-02 17:00:00+00:00,0.012568492156766638 -2025-01-02 18:00:00+00:00,0.02755004576299016 -2025-01-02 19:00:00+00:00,0.0442217975779646 -2025-01-02 20:00:00+00:00,0.06112177142845476 -2025-01-02 21:00:00+00:00,0.07568770514168462 -2025-01-02 22:00:00+00:00,0.086721866277613 -2025-01-02 23:00:00+00:00,0.09301130939380113 -2025-01-03 00:00:00+00:00,0.09347177027296366 -2025-01-03 01:00:00+00:00,0.09112645910500486 -2025-01-03 02:00:00+00:00,0.08744833513886133 -2025-01-03 03:00:00+00:00,0.08289642199113881 -2025-01-03 04:00:00+00:00,0.07743170099263497 -2025-01-03 05:00:00+00:00,0.07176010756794655 -2025-01-03 06:00:00+00:00,0.06405044377059974 -2025-01-03 07:00:00+00:00,0.054779076203660515 -2025-01-03 08:00:00+00:00,0.047985187477054846 -2025-01-03 09:00:00+00:00,0.04174646897113938 -2025-01-03 10:00:00+00:00,0.03797023677258716 -2025-01-03 11:00:00+00:00,0.03382264694057558 -2025-01-03 12:00:00+00:00,0.02832223333647122 -2025-01-03 13:00:00+00:00,0.02246890974314795 -2025-01-03 14:00:00+00:00,0.015868252328449448 -2025-01-03 15:00:00+00:00,0.013320996776602445 -2025-01-03 16:00:00+00:00,0.010322348388754383 -2025-01-03 17:00:00+00:00,0.006600084125420602 -2025-01-03 18:00:00+00:00,0.0025724469348379396 -2025-01-03 19:00:00+00:00,-0.0008350520142502448 -2025-01-03 20:00:00+00:00,-0.001503529779851289 -2025-01-03 21:00:00+00:00,-0.0012144933714336597 -2025-01-05 22:00:00+00:00,0.0005557579744915544 -2025-01-05 23:00:00+00:00,0.0057609097623150425 -2025-01-06 00:00:00+00:00,0.01415721418977062 -2025-01-06 01:00:00+00:00,0.02449607077648879 -2025-01-06 02:00:00+00:00,0.0370182027399061 -2025-01-06 03:00:00+00:00,0.05018392100690054 -2025-01-06 04:00:00+00:00,0.06296443310258362 -2025-01-06 05:00:00+00:00,0.07564728614774874 -2025-01-06 06:00:00+00:00,0.08538949156880422 -2025-01-06 07:00:00+00:00,0.09279064100608117 -2025-01-06 08:00:00+00:00,0.09817285603058833 -2025-01-06 09:00:00+00:00,0.10293245962465232 -2025-01-06 10:00:00+00:00,0.10943423647076869 -2025-01-06 11:00:00+00:00,0.10525367152858975 -2025-01-06 12:00:00+00:00,0.0877357967980539 -2025-01-06 13:00:00+00:00,0.059784680199047306 -2025-01-06 14:00:00+00:00,0.037472194911148504 -2025-01-06 15:00:00+00:00,0.023639113787955603 -2025-01-06 16:00:00+00:00,0.015967532145877362 -2025-01-06 17:00:00+00:00,0.011981172618742111 -2025-01-06 18:00:00+00:00,0.010901117771063541 -2025-01-06 19:00:00+00:00,0.011833994958880763 -2025-01-06 20:00:00+00:00,0.015229017193959702 -2025-01-06 21:00:00+00:00,0.02030557870971275 -2025-01-06 22:00:00+00:00,0.025772697054210283 -2025-01-06 23:00:00+00:00,0.03295807570395548 -2025-01-07 00:00:00+00:00,0.04656009207289147 -2025-01-07 01:00:00+00:00,0.06666733671355907 -2025-01-07 02:00:00+00:00,0.08913538776169645 -2025-01-07 03:00:00+00:00,0.109229242115091 -2025-01-07 04:00:00+00:00,0.12589451075156674 -2025-01-07 05:00:00+00:00,0.13575623121359592 -2025-01-07 06:00:00+00:00,0.138804158969496 -2025-01-07 07:00:00+00:00,0.13292513631732583 -2025-01-07 08:00:00+00:00,0.12040310744854442 -2025-01-07 09:00:00+00:00,0.10693925942754746 -2025-01-07 10:00:00+00:00,0.09558077659901791 -2025-01-07 11:00:00+00:00,0.08537702825798016 -2025-01-07 12:00:00+00:00,0.07671598343293905 -2025-01-07 13:00:00+00:00,0.06818424120491952 -2025-01-07 14:00:00+00:00,0.06149319195518636 -2025-01-07 15:00:00+00:00,0.05897443104691428 -2025-01-07 16:00:00+00:00,0.05734532566854223 -2025-01-07 17:00:00+00:00,0.05407469178591075 -2025-01-07 18:00:00+00:00,0.052136774823722844 -2025-01-07 19:00:00+00:00,0.0500277637724824 -2025-01-07 20:00:00+00:00,0.04930776381164516 -2025-01-07 21:00:00+00:00,0.05241506934402579 -2025-01-07 22:00:00+00:00,0.0571602686975981 -2025-01-07 23:00:00+00:00,0.06555246736057048 -2025-01-08 00:00:00+00:00,0.07477965582063636 -2025-01-08 01:00:00+00:00,0.08071708292184351 -2025-01-08 02:00:00+00:00,0.08620331394341746 -2025-01-08 03:00:00+00:00,0.09242238701778206 -2025-01-08 04:00:00+00:00,0.09902680595377389 -2025-01-08 05:00:00+00:00,0.10448716032103436 -2025-01-08 06:00:00+00:00,0.10675961026168956 -2025-01-08 07:00:00+00:00,0.1076287560970223 -2025-01-08 08:00:00+00:00,0.10946536007646225 -2025-01-08 09:00:00+00:00,0.1102383600400054 -2025-01-08 10:00:00+00:00,0.11265350595551647 -2025-01-08 11:00:00+00:00,0.11644845420670649 -2025-01-08 12:00:00+00:00,0.1227977349441136 -2025-01-08 13:00:00+00:00,0.125524474922104 -2025-01-08 14:00:00+00:00,0.1276416691376896 -2025-01-08 15:00:00+00:00,0.1293099466108073 -2025-01-08 16:00:00+00:00,0.1295488624140181 -2025-01-08 17:00:00+00:00,0.129700898707005 -2025-01-08 18:00:00+00:00,0.13062765956122288 -2025-01-08 19:00:00+00:00,0.1317734656465027 -2025-01-08 20:00:00+00:00,0.13097308468433588 -2025-01-08 21:00:00+00:00,0.12856867919658788 -2025-01-08 22:00:00+00:00,0.1243537344552447 -2025-01-08 23:00:00+00:00,0.1169950670924979 -2025-01-09 00:00:00+00:00,0.10893379132260317 -2025-01-09 01:00:00+00:00,0.09818136624084897 -2025-01-09 02:00:00+00:00,0.08574702286821137 -2025-01-09 03:00:00+00:00,0.07088012187667768 -2025-01-09 04:00:00+00:00,0.05437243514322264 -2025-01-09 05:00:00+00:00,0.03965184420623088 -2025-01-09 06:00:00+00:00,0.028136662024506324 -2025-01-09 07:00:00+00:00,0.019903986819080947 -2025-01-09 08:00:00+00:00,0.01318957249430927 -2025-01-09 09:00:00+00:00,0.006935018452512655 -2025-01-09 10:00:00+00:00,-0.00017108817657183074 -2025-01-09 11:00:00+00:00,-0.00877819861387941 -2025-01-09 12:00:00+00:00,-0.020439518301535658 -2025-01-09 13:00:00+00:00,-0.034761254337291166 -2025-01-09 14:00:00+00:00,-0.047351829831888556 -2025-01-09 15:00:00+00:00,-0.05564837862556765 -2025-01-09 16:00:00+00:00,-0.06005358532549798 -2025-01-09 17:00:00+00:00,-0.06015225660616448 -2025-01-09 18:00:00+00:00,-0.057919944556089016 -2025-01-09 19:00:00+00:00,-0.05362131413938768 -2025-01-09 20:00:00+00:00,-0.047987093146329346 -2025-01-09 21:00:00+00:00,-0.041781504816961884 -2025-01-09 22:00:00+00:00,-0.03512878488479745 -2025-01-09 23:00:00+00:00,-0.02990038992764996 -2025-01-10 00:00:00+00:00,-0.026392888559589683 -2025-01-10 01:00:00+00:00,-0.02210937666140878 -2025-01-10 02:00:00+00:00,-0.015407650520976281 -2025-01-10 03:00:00+00:00,-0.00801697425881038 -2025-01-10 04:00:00+00:00,0.0018933434932859533 -2025-01-10 05:00:00+00:00,0.013289862403081361 -2025-01-10 06:00:00+00:00,0.0236181089961552 -2025-01-10 07:00:00+00:00,0.03368665720121987 -2025-01-10 08:00:00+00:00,0.034005506665281515 -2025-01-10 09:00:00+00:00,0.029810381888615248 -2025-01-10 10:00:00+00:00,0.02526730171998605 -2025-01-10 11:00:00+00:00,0.01933057097441574 -2025-01-10 12:00:00+00:00,0.012787482000957634 -2025-01-10 13:00:00+00:00,0.0150648034017919 -2025-01-10 14:00:00+00:00,0.013431400374844277 -2025-01-10 15:00:00+00:00,0.0028286244740592936 -2025-01-10 16:00:00+00:00,-0.010724675230855407 -2025-01-10 17:00:00+00:00,-0.025695509927659187 -2025-01-10 18:00:00+00:00,-0.03710576893173055 -2025-01-10 19:00:00+00:00,-0.045952609037743286 -2025-01-10 20:00:00+00:00,-0.05353364828120753 -2025-01-10 21:00:00+00:00,-0.061014419061806796 -2025-01-12 22:00:00+00:00,-0.06814044118302227 -2025-01-12 23:00:00+00:00,-0.07154772864600721 -2025-01-13 00:00:00+00:00,-0.07418107338236045 -2025-01-13 01:00:00+00:00,-0.08154243577765036 -2025-01-13 02:00:00+00:00,-0.09019462685747129 -2025-01-13 03:00:00+00:00,-0.10059219199211794 -2025-01-13 04:00:00+00:00,-0.10928318544581894 -2025-01-13 05:00:00+00:00,-0.11838561309406881 -2025-01-13 06:00:00+00:00,-0.1250046286727972 -2025-01-13 07:00:00+00:00,-0.13050414497836244 -2025-01-13 08:00:00+00:00,-0.132466669101304 -2025-01-13 09:00:00+00:00,-0.13967300502105137 -2025-01-13 10:00:00+00:00,-0.14439644524381315 -2025-01-13 11:00:00+00:00,-0.1488376475473951 -2025-01-13 12:00:00+00:00,-0.15701309320526735 -2025-01-13 13:00:00+00:00,-0.16409422223429343 -2025-01-13 14:00:00+00:00,-0.16725535750188372 -2025-01-13 15:00:00+00:00,-0.16478011726393665 -2025-01-13 16:00:00+00:00,-0.1586379759301216 -2025-01-13 17:00:00+00:00,-0.15302970006270183 -2025-01-13 18:00:00+00:00,-0.1453399966127099 -2025-01-13 19:00:00+00:00,-0.1311047218750427 -2025-01-13 20:00:00+00:00,-0.11576693885926569 -2025-01-13 21:00:00+00:00,-0.10311818671306056 -2025-01-13 22:00:00+00:00,-0.09464102796122176 -2025-01-13 23:00:00+00:00,-0.08962944597698039 -2025-01-14 00:00:00+00:00,-0.0831629820571253 -2025-01-14 01:00:00+00:00,-0.0775295053869685 -2025-01-14 02:00:00+00:00,-0.06848431806540599 -2025-01-14 03:00:00+00:00,-0.05977265680923924 -2025-01-14 04:00:00+00:00,-0.052723252464911205 -2025-01-14 05:00:00+00:00,-0.04544942350111943 -2025-01-14 06:00:00+00:00,-0.03989213441724455 -2025-01-14 07:00:00+00:00,-0.034925099422230994 -2025-01-14 08:00:00+00:00,-0.027812506774568573 -2025-01-14 09:00:00+00:00,-0.01575575177851832 -2025-01-14 10:00:00+00:00,-0.002935247420240676 -2025-01-14 11:00:00+00:00,0.011421655164343018 -2025-01-14 12:00:00+00:00,0.024734407544083854 -2025-01-14 13:00:00+00:00,0.03531423908368332 -2025-01-14 14:00:00+00:00,0.04405656955084482 -2025-01-14 15:00:00+00:00,0.05354546875825418 -2025-01-14 16:00:00+00:00,0.06267543065065626 -2025-01-14 17:00:00+00:00,0.07384670920220004 -2025-01-14 18:00:00+00:00,0.08354921502525442 -2025-01-14 19:00:00+00:00,0.09054717532285701 -2025-01-14 20:00:00+00:00,0.09597875321210514 -2025-01-14 21:00:00+00:00,0.0997974303447424 -2025-01-14 22:00:00+00:00,0.10187439873102358 -2025-01-14 23:00:00+00:00,0.10397047919282996 -2025-01-15 00:00:00+00:00,0.10453510778216799 -2025-01-15 01:00:00+00:00,0.1027232786387107 -2025-01-15 02:00:00+00:00,0.10004859574059799 -2025-01-15 03:00:00+00:00,0.09578800817783036 -2025-01-15 04:00:00+00:00,0.08603928778996114 -2025-01-15 05:00:00+00:00,0.06863460102996084 -2025-01-15 06:00:00+00:00,0.04753825032036444 -2025-01-15 07:00:00+00:00,0.017786561103326666 -2025-01-15 08:00:00+00:00,-0.012281289478171593 -2025-01-15 09:00:00+00:00,-0.04483598341550753 -2025-01-15 10:00:00+00:00,-0.07835315707679155 -2025-01-15 11:00:00+00:00,-0.1069801513028559 -2025-01-15 12:00:00+00:00,-0.13132406777806926 -2025-01-15 13:00:00+00:00,-0.16067748732293313 -2025-01-15 14:00:00+00:00,-0.19308459850835596 -2025-01-15 15:00:00+00:00,-0.2251391559510576 -2025-01-15 16:00:00+00:00,-0.2498812432937504 -2025-01-15 17:00:00+00:00,-0.2689871402554109 -2025-01-15 18:00:00+00:00,-0.2837434642822351 -2025-01-15 19:00:00+00:00,-0.2949276595934378 -2025-01-15 20:00:00+00:00,-0.30293350835524735 -2025-01-15 21:00:00+00:00,-0.3074861073598827 -2025-01-15 22:00:00+00:00,-0.3103387871219219 -2025-01-15 23:00:00+00:00,-0.31375801226660716 -2025-01-16 00:00:00+00:00,-0.31721233664692644 -2025-01-16 01:00:00+00:00,-0.32985182454269873 -2025-01-16 02:00:00+00:00,-0.3440100814882769 -2025-01-16 03:00:00+00:00,-0.3568601025306396 -2025-01-16 04:00:00+00:00,-0.3645792393339323 -2025-01-16 05:00:00+00:00,-0.3653100854214338 -2025-01-16 06:00:00+00:00,-0.36101324035844257 -2025-01-16 07:00:00+00:00,-0.35156357279906014 -2025-01-16 08:00:00+00:00,-0.3432050792443717 -2025-01-16 09:00:00+00:00,-0.3386006896755543 -2025-01-16 10:00:00+00:00,-0.33607420065722154 -2025-01-16 11:00:00+00:00,-0.3323818032585955 -2025-01-16 12:00:00+00:00,-0.32217753926698556 -2025-01-16 13:00:00+00:00,-0.3108832632399732 -2025-01-16 14:00:00+00:00,-0.2953590881261169 -2025-01-16 15:00:00+00:00,-0.2884445419367334 -2025-01-16 16:00:00+00:00,-0.28640803101720813 -2025-01-16 17:00:00+00:00,-0.2896271130762429 -2025-01-16 18:00:00+00:00,-0.29397125967925036 -2025-01-16 19:00:00+00:00,-0.2990800925911947 -2025-01-16 20:00:00+00:00,-0.3050908183473364 -2025-01-16 21:00:00+00:00,-0.31202845697279574 -2025-01-16 22:00:00+00:00,-0.31754685205114475 -2025-01-16 23:00:00+00:00,-0.3181632256723791 -2025-01-17 00:00:00+00:00,-0.3178214324111823 -2025-01-17 01:00:00+00:00,-0.31570993868258734 -2025-01-17 02:00:00+00:00,-0.30837038065436645 -2025-01-17 03:00:00+00:00,-0.2972603879175322 -2025-01-17 04:00:00+00:00,-0.28461740350015796 -2025-01-17 05:00:00+00:00,-0.26823561230432447 -2025-01-17 06:00:00+00:00,-0.24848145352130552 -2025-01-17 07:00:00+00:00,-0.22754544428133677 -2025-01-17 08:00:00+00:00,-0.20504356357145964 -2025-01-17 09:00:00+00:00,-0.18177788807760897 -2025-01-17 10:00:00+00:00,-0.15818466633346934 -2025-01-17 11:00:00+00:00,-0.13653875903936571 -2025-01-17 12:00:00+00:00,-0.11653804509565856 -2025-01-17 13:00:00+00:00,-0.09889381331028026 -2025-01-17 14:00:00+00:00,-0.07769848434266777 -2025-01-17 15:00:00+00:00,-0.05422222627373594 -2025-01-17 16:00:00+00:00,-0.027232523661097463 -2025-01-17 17:00:00+00:00,-0.00017520483628969893 -2025-01-17 18:00:00+00:00,0.02437374095196038 -2025-01-17 19:00:00+00:00,0.04536986148862812 -2025-01-17 20:00:00+00:00,0.06298294481044107 -2025-01-17 21:00:00+00:00,0.07975404728826854 -2025-01-19 22:00:00+00:00,0.095191738629063 -2025-01-19 23:00:00+00:00,0.1086876711045544 -2025-01-20 00:00:00+00:00,0.11485807011907778 -2025-01-20 01:00:00+00:00,0.11492636326643241 -2025-01-20 02:00:00+00:00,0.11106399836449854 -2025-01-20 03:00:00+00:00,0.10159215068381276 -2025-01-20 04:00:00+00:00,0.09253888438619144 -2025-01-20 05:00:00+00:00,0.08544754656902946 -2025-01-20 06:00:00+00:00,0.08190078665580319 -2025-01-20 07:00:00+00:00,0.07728834837204378 -2025-01-20 08:00:00+00:00,0.07469012360454624 -2025-01-20 09:00:00+00:00,0.07534654900917324 -2025-01-20 10:00:00+00:00,0.07932054584175985 -2025-01-20 11:00:00+00:00,0.08444237098134941 -2025-01-20 12:00:00+00:00,0.09036512702745625 -2025-01-20 13:00:00+00:00,0.08587117078456777 -2025-01-20 14:00:00+00:00,0.07211201555211624 -2025-01-20 15:00:00+00:00,0.05538401435422424 -2025-01-20 16:00:00+00:00,0.03740228637047354 -2025-01-20 17:00:00+00:00,0.021773612725514584 -2025-01-20 18:00:00+00:00,0.006331322725631767 -2025-01-20 19:00:00+00:00,-0.009076558500092778 -2025-01-20 20:00:00+00:00,-0.024160974792285177 -2025-01-20 21:00:00+00:00,-0.037654381611580495 -2025-01-20 22:00:00+00:00,-0.04926167938585245 -2025-01-20 23:00:00+00:00,-0.06486918339243353 -2025-01-21 00:00:00+00:00,-0.07014783255762183 -2025-01-21 01:00:00+00:00,-0.07612621541002114 -2025-01-21 02:00:00+00:00,-0.088517812491398 -2025-01-21 03:00:00+00:00,-0.10329598363000078 -2025-01-21 04:00:00+00:00,-0.12055418655417263 -2025-01-21 05:00:00+00:00,-0.13426256813868298 -2025-01-21 06:00:00+00:00,-0.14140284439444217 -2025-01-21 07:00:00+00:00,-0.14120897098937954 -2025-01-21 08:00:00+00:00,-0.13502161373383872 -2025-01-21 09:00:00+00:00,-0.1226372867786138 -2025-01-21 10:00:00+00:00,-0.10541429444623521 -2025-01-21 11:00:00+00:00,-0.08695388114629819 -2025-01-21 12:00:00+00:00,-0.0699392680940475 -2025-01-21 13:00:00+00:00,-0.05981238586851517 -2025-01-21 14:00:00+00:00,-0.05292933699379057 -2025-01-21 15:00:00+00:00,-0.05232420255461439 -2025-01-21 16:00:00+00:00,-0.052965838165174924 -2025-01-21 17:00:00+00:00,-0.0529582163545825 -2025-01-21 18:00:00+00:00,-0.053476341084098045 -2025-01-21 19:00:00+00:00,-0.0534410460726849 -2025-01-21 20:00:00+00:00,-0.053481375700431724 -2025-01-21 21:00:00+00:00,-0.053492959615661174 -2025-01-21 22:00:00+00:00,-0.05392240231013344 -2025-01-21 23:00:00+00:00,-0.05035209931801726 -2025-01-22 00:00:00+00:00,-0.049325009558229875 -2025-01-22 01:00:00+00:00,-0.045717137334189716 -2025-01-22 02:00:00+00:00,-0.0397150742181876 -2025-01-22 03:00:00+00:00,-0.029564703141296406 -2025-01-22 04:00:00+00:00,-0.01932113352852373 -2025-01-22 05:00:00+00:00,-0.008905829146967482 -2025-01-22 06:00:00+00:00,0.0019848732739894976 -2025-01-22 07:00:00+00:00,0.015150819984119714 -2025-01-22 08:00:00+00:00,0.02381699366908219 -2025-01-22 09:00:00+00:00,0.028356497108247683 -2025-01-22 10:00:00+00:00,0.03150660021965394 -2025-01-22 11:00:00+00:00,0.03525603310447151 -2025-01-22 12:00:00+00:00,0.03816289664052657 -2025-01-22 13:00:00+00:00,0.041514826093667204 -2025-01-22 14:00:00+00:00,0.049119254518171576 -2025-01-22 15:00:00+00:00,0.06280326381752596 -2025-01-22 16:00:00+00:00,0.08294732841689922 -2025-01-22 17:00:00+00:00,0.10581561955370901 -2025-01-22 18:00:00+00:00,0.12834516649016872 -2025-01-22 19:00:00+00:00,0.14827943274030278 -2025-01-22 20:00:00+00:00,0.16565080498421028 -2025-01-22 21:00:00+00:00,0.17977662003539766 -2025-01-22 22:00:00+00:00,0.18921822176644132 -2025-01-22 23:00:00+00:00,0.19486145603396726 -2025-01-23 00:00:00+00:00,0.19661817885612282 -2025-01-23 01:00:00+00:00,0.19801521290051702 -2025-01-23 02:00:00+00:00,0.1977049844724224 -2025-01-23 03:00:00+00:00,0.1960179653649837 -2025-01-23 04:00:00+00:00,0.194497706456488 -2025-01-23 05:00:00+00:00,0.1945212134810958 -2025-01-23 06:00:00+00:00,0.1935999313468585 -2025-01-23 07:00:00+00:00,0.19169351539850824 -2025-01-23 08:00:00+00:00,0.18691813592317 -2025-01-23 09:00:00+00:00,0.17842982339275723 -2025-01-23 10:00:00+00:00,0.16805147046271374 -2025-01-23 11:00:00+00:00,0.1589150310073758 -2025-01-23 12:00:00+00:00,0.14832844746545187 -2025-01-23 13:00:00+00:00,0.13397063509204893 -2025-01-23 14:00:00+00:00,0.11836648909093204 -2025-01-23 15:00:00+00:00,0.10125302598739898 -2025-01-23 16:00:00+00:00,0.08121145900289713 -2025-01-23 17:00:00+00:00,0.05882804817652204 -2025-01-23 18:00:00+00:00,0.03732437146824137 -2025-01-23 19:00:00+00:00,0.014287218008505288 -2025-01-23 20:00:00+00:00,-0.005823756066808723 -2025-01-23 21:00:00+00:00,-0.021453646403061633 -2025-01-23 22:00:00+00:00,-0.03406076944044237 -2025-01-23 23:00:00+00:00,-0.04232764038325609 -2025-01-24 00:00:00+00:00,-0.04565312101706818 -2025-01-24 01:00:00+00:00,-0.04453410817949937 -2025-01-24 02:00:00+00:00,-0.045851488464331916 -2025-01-24 03:00:00+00:00,-0.05640387017058611 -2025-01-24 04:00:00+00:00,-0.07611526439302052 -2025-01-24 05:00:00+00:00,-0.09841412553383543 -2025-01-24 06:00:00+00:00,-0.12078196780464028 -2025-01-24 07:00:00+00:00,-0.14142611200300145 -2025-01-24 08:00:00+00:00,-0.1596332000224705 -2025-01-24 09:00:00+00:00,-0.17173980559484328 -2025-01-24 10:00:00+00:00,-0.17382743816046714 -2025-01-24 11:00:00+00:00,-0.16611436288785197 -2025-01-24 12:00:00+00:00,-0.14657243681835325 -2025-01-24 13:00:00+00:00,-0.1226839760334999 diff --git a/instance/tradingpal.db b/instance/tradingpal.db index ba8538a07998561a88fece967a3171cda46476a4..cbbcd5947d6c2c7db060e0cd5fdfb1376b78699d 100644 GIT binary patch literal 196608 zcmeHw*>7Z5dLOB+#nRG}?QxGR&&&~9BQ7GVYhiJdD7l*58gZsu-9xgikvr|`TXk=- z?sV0?rF(BRn==*+N#iYW^5kHU00x{FzXUM+5Fp7@{(>Mt0tCoY03${KBS0`Oh5^6i z_kHJ_yA+GPYepk~6sfMd%UOQs`@XY$+urvt`H82xVKi_ORiAokYI=I=x0ITinsV`1 z!Qa>M_cH#T$KO-`J!(IM$r^@gC&!_Rg^yz=3$9`S^bC);dmLMPq2m*qDARq_` z0)l`bAP5Kof`A|(2s~y4zIN&blsNt3|C++D{0IVqfFK|U2m*qDARq_`0)l`bAP5Ko zzpMy+_RZeqwwXo4hD|jFL%O0+=-5c$!5K_wz|H# zzFB?!eb+zyxV;_jp7)bs`{VHS&RX5=tgO_%y4P*E?P_DS?yNP|8L=2ka4wRW|#+NrL1PNVMDD^+K`Qm<8N-IcmiUu~>8xZ-p++=jc-X>8QJT6?vF zs#m<4S6yG*aB3T!M$KKTuXn3mTyA$(T)f>_u2h$6YpPP)Y^-e78|BsY_4T#&{GG~X zy}nsnEw67>R@NH%JLx+cm9_Qt5=M6V^#7Z}ulxuCf`A|(2nYg#fFK|U2m*qDARq_` z0)oI-1A&*GoSP|}eCYlE-%g$W+pk6kr5A#LARq_`0)l`bAP5Kof`A|(2nYg#z&}|8 ze&flvio5>I-hu4@pLnr7b$Sv1lOI7q5D)|e0YN|z5CjAPK|l}?1Ox#=;Gq%t^x_jQ zP0hSAHT8|gjhV*Gw_u3x^oLHz8AeVg@jKqt@BQF|%U6EqceWdQmo9$q2hA&2E?v0P z-e|Nt7ny-(2R?8c;Mt!~d>E86qQ!{5i zJ>B@m)YQzkxFewxxK4Wm#`m3?3x9xGXVqElG@Ld}_1$*6y-{1MuPtxXSJtYq@2^+9 zjg^&7ySuW!>aDG$3>W=iQmqt94abhoiz~ zW3{|mU#+i`UqR{_fL^U`)~jXM{;%Uddnfl!V{LV9W0my(Pn`a{sndUV`tKilh~-5= zKoAfF1OY)n5D)|e0YN|z5CjAPK|m1rk|6NhQ!}qj>ywu!W}cckGsA}$r2j|IfB6vv z1OY)n5D)|e0YN|z5CjAPK|l}?1O$PvFaomw{|XPTbWIQt1Ox#=KoAfF1OY)n5D)|e z0YN|zFbF)2f1f`6f9Tt9p8m(ve}DRCr~j}1Y95e(1OY)n5D)|e0YN|z5CjAPK|l}? z1Ox#=;Fk!2SI?lazw#^i-%HQpf2U93e=j~o`~N4j>;F00|KqFt2m*qDARq_`0)l`b zAP5Kof`A|(2nYg#z*hwU^#poyW}4&wKl3+Jr4OI^8|?pocKT;ul@3Zj1OY)n5co*!PqlxPHe;!YEeryL&rJ>T+}Y!jd{4_WO9wi`03<5ssHsbANY1 zp)hLKwY>}HzI*i}wX)m`N0CbWf!B?kfmc>LiE{iwtPmJj#YpBmq`FXh*H2>AK2pBx z1&QB1;>%$|U!1m^<^@B<7qk!aR7 z*N+n?=zuuYb_i+ljeqye>1U^Are63TPdCSS4(w*Q?Ox1=klxwDOS1}HJH~b?{ihsC zT#@IWq2ot{nlpiuh?O#q){LtO6~ZCMs03M&NB}^XGFlEuqTnMYHSZ21><0-L+YdTn zGz=kAXiS}l9$w&E;JL{Ac;rVk9EYLhG^zni=laBPT1wo7*T5H`1-yd(M4meWdvqZr zFu2S&ak+H=;vgF>b%HR+q-0hr#IK(?eg8)u4HFB3Wg;`ftlj>olZ<#&41oel50c}+ z@1Vtf$P0QeFZ4(VXhuDkN{k#LqnP^3!)t^S_rK?%*SW_IeF!L)B&lQp0Uo0S7NZ@! zY{up|=PoJtC~yXt0s4K=hWo=2grEzEs9JCv4*?U@Bvu_jE`z%vVs4ol%%Bs8vm_lG zdoyr)jvy)xIuP{e8?!8r>T(h;2ceH^M3Eu)$_)Nt&mYFlA@$~c2uC2fWO!Xqh?qCL zZWr>zzwJQ|#Hxp0=pmr;ola*&4=QxFGwN$*BGAAGUNnrnL|-zKZ>JZ=9tJO)9|?6| zPe}35>-b%a^1z91c?pe8;@wGT;x?0G3dkV5jVTT{@J#G=M$|eLW45$ptcAxgjKLMS z<+z$Xa#T;0vW&r_=^sSDxL7Nzt6l_gf)M~$T=pejWkWPRYwA-LQ7j?U!O9$Bq z00T(250Txum3T2TJ-8H7l&OSS6|9DN9N2~t%_#~KL0XrcikH-(rvi`5rcng0u9G-K z?>CbWOw+=(Q54)1laoP4U-$gQ1N_&XLe8h$H``S>5%=kuRKZQoKK@yCq z92JjXV%LTxvZ*B39o>Mw-;Q9$3PY~Gf6G%hkGg(9W=}WOJhi3kB^@&KB9qS!Y=&Wk zw4lw1VAuIhyA2ff)T8#vgPO|w^FOX`NZ$sB0D*laQUHIwI6Es zLwyOjIZ@IAZXVhfxcq5hv!w7dJ3Gt&ZX1g^^p7Z#swacjjL=Uef)W?dj1FKrO-0g= zZq%l+7o}0tS73uZXor0@@0AbAFtKemuU?wPVClD%?ZhS-zo9qU!jO!8$siiGY-7le zzgRo=;=p%Z41bZ7$6u=-dyP!P?^a!g=q60nfi6)cj8{ReY$FHDIM6eh1~)GPCQ4j++t!w{0tHA&>c%t#KiJ{rVipzB+e9 zZE>5g&uzmH+nc*ljW$oe>TB*kn!cb2y=u9l)LC_Y zbYu)Z@1vf#?@>?gep=5mRdiPEc@Vd{tC|+hUL|2cQk=TNl|yWlyZ*r_^5*eR4D;r# z`6@)h>Vh6Wx=%cAI&VgP36l!k6Sg!ZsH^0!Fh@Qm{V>{^YxhUq+{D*49oe_Lb3ZmD z^U1R794Xw*3V}pCu?*mQtc==(G7cio3r;Kra2+e9KA{xY!-L0j#lV_BftfHvQU>XJ zcdi@KNQsEY8pZ4D2DKBPV#{Fw_q$p5b<=J8=7?nWbmo1GxuXHyFXFODjQkz3FBiv)jv^}^`gkShiqG)m>kG=n8N1gE~EaV+Hgrv)>O$Ezqf0#a& zu0yh=$4#?t;?>)skFxCi0$Y2mzaSDYsbvc>NC&%e;983lEjgc9G2I>=or^Qkm2)Xd z*D`qAEdbrI#6*1ZX za#wm)N$zM^wnMa);n)S|x6DeO-cC*8Q8|38Iz8pU;iD6cI`m@OL;bXx&egLMY zW@Wv+UR_^Xsa|;U)YQz&SEiah|9zkszDCP>+Eida(DV93Ud|^W1n#?~u~JqxEA{fq z`pRl$^}-X6R!Vifvaw$O&NP*Bjoac=w<7NWnp5Ab)ygX?>+948S7w%J(StX9h#Yn9d2jrX2;)N)o=KsPIY{u@v87WO~>zHDLh zOGU68x!B4UmR&i2nYXZSd^`%1xAOnzCGan1N2{Ab+gkl8x92k}i(`9D+1u*}a-8!3FIc(oJNZ!(Wr1YM}2s>&V$h~ED)yHnD39nix?z!21ur~G|zKzFUEw=Fs z+o0rZ_5kJz%i`cAg@GrM|yxmX3(+4oU{ zrH08hWPAQeHSiYtKI*VTGP#cIL|{@K`fOmll9M*(`Z>LQ)}J9>3P%O{YJS}Gp}}3> zG@Ew)%kiNv$WxV;Xl2SZulLe zghs%o$cJ8&&d?Cd=58u%sI;&<=0i90QX1HY^n#Q1sOdposv$NfWpo~y)9UI2NgSSq zTDQwFhbA@4#u`LmUV~ovZbVCQODs!J~t_ za75*rm>Bu^8FVs8RE}sM6cEK|;;%Z;NMc(DJaw23G>48IO+*oj^#NsZcZ4VzU=kC8 zLB5Kb>p#mrU?&HxA=R08Z%cL9DL3_rUq`PUA&5cTKGoI_YE`=`K zM5hiUO*R8%ZCa5_uSXHNSsWrRO>0txwBmC2orem#mmjKXE_~oOSkb}TIj1BdMFHX zy|Lw&UBBC%Uw~??YULJ`DWHWVwVb~~svDzjR=;fovySRy1RHk>%4Ur6L0EoIE1&ho z16Rukdej089d90Y_l&Cb&K9Aqm90zah`*(F2ry{^=@ymIMt%K&1!7NY!83(IshKB$ zOg;SY73h)3%Foe7p?E_ZO&8i9yL!}HJxv$)=$oO3{D@+!d1DMiO~m65<)GzO5V=qM zA(OJLInyeriOp6NaU_#@ZNalO2Ll%<(EHx4kOgcAofTVQ%S!@w?;P@#B`ROzYUeR{3jr1v^n1xPX=CL#6Fa^ys})m=3Haiwnz>7EIhGh`MvRvnxH?1Tt!5Ihux1HOr`? z35VTv=>3gdLc>HDp>$*HC{Rkl2mv;#cQHAjP=n}27pBYDgBbf-Ov6Ep-4DgY?SwIf z2#x#xaEOhKHo#!m;&4b79~3$m)HAmEQ3&eV3;d61knC=f_c*|l-k}Ym3BXt`m?N-~ zyU{4GH|i_Zb=va&y!J5q$SVJTmZ3lYEsbu%L=|CP2K=&ZZgjWC4-p@3o0FDh_B#6e zmtw=Co09*(T^0Z0_dog=I$iDRuMeQ=%#&Zbm!XvbFDJ9oX=-}l!gKRkS~hdwS#|Gy zlBxSaHI!rR=Kk4+PtY{-Zpz%h$CgSzWf$1COk+u{zZMiiU%qXYZe(7aW0tbH8+ldY z{Vm_e_8|rdyZ_Q(VYkX_W~*1slU=%1(vLo3r8zA^5mX&?zCx?X9qj^LJaWPb3l8VB z%TYpF>o9^R2sCRS_I$Xd;%sb=az*G|6XXvv;>1Z=T{v{JxtOSuC3t&qN(LmuL5?2e zhN5FGD1iC=&$=?{JTT_yD$SFl&vp{$mbZ*EJmhOqePr0+luY|!>Vr;)U))G!u;|ih z6REz_q#J#xh0p|c4B~d6cjO-(W0eUXSe>lL9tq)`DN7>+jA9%#wV`3x4(R5j4KHUW zqq^V&Qk>JVA!A92H{g*9%(mIDhi<^5n{tZif=CMmWYc55FnE_VmpEw+U^zf1W`r7f z%II-`=31xp(B0(IvqJk7P8{vQR*D|ukOvPg-rN*Eb4BZ}>NfR}D+CJHTLHXtcu=xK z*>WkQ!>-gjXB{*JhmXybjq*mVUaM_<`s~Y~xYs^?>rC?q2Wz^Qrrb^+9`fBIT_z=A zfqQZpI#+JQp@VEJ7>d|q;9%X+!I3MjSuz2|+Rl?M(tG!Wrc~?YwQ6;3qyG6fUqVw3 z{@}GU&BBY8_=)xbxMu179NDmER;k9bd3~aK<>QPafpZr&K?}x zgSjNf5{4K#Ll1H(fj-ff^ei1iJ2x;^CWS#Hdn7vO*3CFhil}#I4(@H1ih&p z=%KxC$Op06_<|fMqgVlUJ`#tkzfxByS&MnZbBXSlRcwHVjJb%bEcsHunF{H)8L`Q< zQrWDpmDg4p^|iG>djB*AXyaeL_Db`BNDjkM9CJMqg}hyK9KsDZHM`IOd_+Ew_SJYa zz=$G=8yl5$;RhZbT17$A6o1}9W#u<*8=j9!=So2V<2I4?h>ULo4usv2mNJ_OSEE&-R73g!17$f^?LMc#q28r+R&<@rljuDcjnYXcPl_Cv zYDM9o*sl03ic3L(G9a8;_~>+C$YO-B9+dcpOVdIew@5Y;SFvT%5lE#C?`il#_WPh% z-8wx|$mE9JqIKkEu7Qt72NVW@v1g#Q<6{>|?}+s=yjr3Y;gXy-36i)Q!HB(5T@RqT zoFxl%9wA{>h;S81A}%rtzWM(bD;lrwooN z0%m5R%##X|;IXL}u(2aaQmZhl9Gl5`+Nba@+3+MGf?1$s6YoJAL}V&MVz_b%Dd(Kd znAopuY}TsfmB!k7z4iysy-2M5CktmzVC4djS_FvhG4W4k(wz%DkmQq$zj|e(QiB^Q zebG$X_Z=pFY~zXH`QkRSR)_N)T5irW`^Lu7#s;RURerk2wVG*{UkBH&=o%)8fwTle zUZ8ZM9B06D7082UX~W{6ZkiNmu|)(8IX;<}DqP=jzSh^Tg7|0(xI*hL?s5f`Rsa;O z$g0FyBPty-N+P2&2Ll$CV%2`qx5ZSc}!{kIL{~5jAmtzXPqO{ z$B7e5Wqos{QYMGdwbe^6uygMjax}gV=ic!p4G6nIzvYdMmHI~g)8_L;+n;^yB-%Di zZ)PM~I`LEpV#vt~Ixbc)MbpbT%vQ&yYCCPx>QqnZAgr6`cdvZ!;%@7M=H-j5C5Mt5 zOwQs3INDXzv9%EOVP&%pr|C+yvbw(W93gUr5xJM^^#nLpYMb@d^4jW3V|D$r-z))+ zw?5ySO7|2ojOl3jyQGiqdugC32w4)+ntE(gmAZ_`QDzQA?n0-H6?Q_AlSmwJVol7b zAPvJZ=Go2>mP~#GTD0b=W~yLEexnvfa@9WN&_sNxAtHVp(29$>4@iRQ!vHHYpNtFe z%)YJxgF+#hP%bfVwks%zNaG=oHDQ9{204B3x*{>y*sQIUA)zX3)xWqp!?w%+`9N%! z_09|OC>P9t7?{W8D`2~f?fuKN|DSs47roJ!`UL?&KoAfF1OY)n5D)|e0YN|z5CjAP zLEwu-phShs{{M@FSjrXz1OY)n5D)|e0YN|z5CjAPK|l}?1b*QNym0y-rcRyOoqDl% z`oEt3%jf?3#pP%J*{R)UUVrMRPu_WAb^00P1bCcT0je)PbLQf=rl&Z$OZ+h`XS|j( zN**f=r~l!Z-+!zHN@0S4ARq_`0)oK35%}!XsZ(dZ{q5<`zt1T*VeaX7DTEJPCGwx2 z-QK;}+`p*yo98cGB%{#uDK%f3LAa%z5B4v9=i;vV;L5)G;M%22OR6*j>%*vZ!aYij zseZe;yZwH1cOH>8>G=WWpF)Dt?6STN&kt9fzjEc$#pVa}oX&*mwqT5Z0gc+ zU)|lg+}!<0eedE&YTkFb$oH=7UflW42Xt-TG-pBWUVQK3?!^zbFYb}Wc*GBv7XI-2 z&zw3_uTTH!4kKX8J|Ln%jO>}$qN4IcQMl1U zVLg@d9#1YIy^o-E#U~gd%cuZ*Ehoyq0kq)7~%>o?>s#35A@%JUX1j z(?o-XiF;nqWPkSU`eX8?0SK(Xx##j=8Jd*hr39$}!?f-_Iu}whx%$)P6iCmY=&Fdl;4^t)OOFV4fH{V0hv|_7cev zL_8W&eqeCdIKd&PBL!@O7gz3akPKXnNVF53C!;v4Q1e0`@u_Ka>{FedhfKVA8T;te zvwh`*z5U%LL>hTV!!5PNa#;_Ty7s}&_pe=4R#wAXjNQLlG>i`_&^Mlb=FH`}W4kvv zU?Wv$t3YF|YT@fMpS?AG>de=^HvN;2m~N?s^!G%8O6kfyh?D(LELE(JQ6IB;It0~m z;v710jM#>5tLMbM^s!oFwMfGgN16wcTrz^kJbL-@q0aG`*o)kuh0?;@lh2%a>uVyveh*@oNpE7RTin`#N8k!^dvkWjeRvj!xRp7N&Z{ zIVjH3vpPh`tlGc$18k6Uo8;pglj_*JC#<>dwcX7%xUl85*Uh%~v#+0K@IF6a@Uo=M zEpkR5`#M(uZ|vqHfOl^YI26S(@V;1RPB{KI3&@Ogs_DmH`|PC`PM!JIx28W2i=>!7 z@v8*{)5~|k?(T$z5I&rvhhj6^g=PcP$LAy_(>5*mIY0L?{Ia+x=~ndwNFQK-XqSV$ zJ}fPKw*365Gq1in{gWy~V&aCIe_klSVJ_YU3`@KxaUrxb$nJ8|U2JU-6+7E!r9k0? ziFQ#Bc%YPP%*h-^1Cc+4N?TZXMeikWXa&69eeTqmS6;DukI1|2dx!e}&lk|r*B${Z zUBJm_baWUJ+mk&es4oG2xkjIe;BS_+NYhMcBc!)<9RIPe&lNBoyZH#<<~FV=W14dT zlTU!>0)iDOqWVWM0t^s;GR|KhJ(dRpiF4c!UH zybmwDu&*6P{%!DO{s_bAAB34KW2{UR5% z>YLB<`TI{^G13uH6QY<;^&qX%&ohNV$=`X%fthsHURalaNQVfQls`}%TbE=>S!LV=waj!+oJ<#I(e@}gV3cvCr2nYg#03+~IZ~BF)nX}%^U(LMw@>FvQ z`ND?%q3em?r&5$E>%#7Bc4`vsLHc7>vKANQ>=5m z;X9?U@#b!nhaD&ZINi{^PRB+Mr;QkYEBn4^8-*lMem9w~>bJSRLOMR(4ZfaWiPp!$ z4B2J^WN?~XQyC%MkZ}%y=8z$ZT91fZEzXm-g}m^S8~2Vv-bIQ7Sa@*&C8--ZhZKq( z)t&HixicDYmGl9xpory@nr0tGW&B{)NN%a=*^l`PHGMAM<2l3%%mI)k>6)`W#1r;o z?ry#tcq0Eb_mnQ0wS_UB>U#n8*AR|+ZA(>dEaV=~Vj;4s$;-WSGR8Ob7=NN^))EO* zC@8swoIZ&^?E7A{Ra;WviWX8!MRC}7x9Z6KW-lPP-a#+fTEit`6{xR?xLauPLDJjW z$Pqc>aYbHFXEsvcaxgiR}7kc^c{kB$`zXlkpIx}H@AFvrTl6)vXdAM|XU zh`wn*PHb|!-Gast(G*Ry@qOUCZXaB)`+*B6gB}2PWH^k;t77x9-a~{uqV2P42l0-5 z4%2C6fewS45A4g2GDYQ5S*903u9>9)HzOF911GRGAZY|*>JfP$CgAu$YrGH>nUt6= z$NQ{WHrJ#3c1m+ZgbV5oEd%seDkRDrA50{=+}+zzmTb8@mz&!c5SSP;9E!O#hcS1d zPjLknW74l?dhv~!BkX&X=B{)QY1Gi7kPqK%R8H1|u- z>1L!@w&-5It=9v#ECWPJd}G(kFiH!Y`30POVzDw_2SzkU4mrW8-g%6*6e{6C9cu_p zxlVrI!zQ zUf*1)ZZ<0AIznr%*rW^;0bm(_zk$DR;qP_)&Ejtne`oQxguid&?+yGd;ID$eH}O}- z-#7918vf}0bNKs)`J>PBBM1lrf`A|(2nYg#fFK|U2m*qDARq_`0$&mY;HSo3Qgq_s z#W&09L*#PO*?Dlb1~r|BvnU)7lf~c?G<=kjPEiIFyvL^~skseOXwYGmJ-$GWp&?QU z1$2T<$8_+fi+%WGQThrzW{yMXl>trdd^9%u@XD+9UE$ivU1-ZLIQUC!o#o8?kzaj{-jyLd!3;~4&u zl>7y$dvHT7E?&V&5a6N8DV-0sno6TwA#_M&ZgJmW-hnrl6s$bF4mu2!NO?jyM*cw< zh42o-m*ud#j8i8h`cMhXIZ&`cBWF1{-`w9-nWkq+(Sdo=Lk&Hgu|vDb=jB?N6E7fz z4Rk#?@kSyXC|)_E7vTo5bXLO-juCNyrw0+r3O|JI6q%OT`3Z+!!;n+vM3ftZoekmS z(j7s8i2Q#1bX;aI-h+D7Gr9s!N4TuP@Bg-)l3G2&OP zri?PBpzBDjVkttIY&=9get<+`WK_t>RJbHg&Z6&eh8-xGfZAo9L@)?_G>g)?9rpZT z>>N_!Ic}59+en_0OPqTO9YbH~P&M+94TW8uWt1eSMb!q9Z{=D?0xW zNEBzZ)RNqAQFm}w3iS?>fkBA@%{X|YP5M+M`yn#g>-)nYIhRr^_ao#|BVRJm>vo9T zUY4>ll5TrBYWL7~Fb|z3qi7HryX&dI7m>I z7lkh8a0DHLs?epx?~IV<5cfl*`MoMua|-urXC5wGOBi$<|N~U8sOEdrpM~_HF8-*TN zCmi@4@Ja{Fnx$u>fu=TG+hg+iE^-b9Fg1taEd&CD3(3he9~uM?;7ZG4BX5v8rB%aq z@^OwJi(w>j3vECN$SA}~{1#GTvDF_Z7Z_!rX?MW`(iGx!rHu4`R_a5y6G2jPMy*t; z?uKn(4sBfLmXU!p{OYPk78Q`RJm{t8*)*hD#5)Sqc>oF^ZdlfH&=F5eu?N|kC7hfn zX$eV8CO%NnLd#M&CaQ?r6o8z7#5FL@q0_&$jFCQcA{W3LgHn`W<|7u4DJ9Sdf)dkl zz?hQ5GQ}_dWqNRv4^P1 zH+2v}*%3o~NFtgT9Mvl_2#qjt4L~nogxJSKM3M{`1e7q+OjsadlNkvUj|;9O)1M;h zOnd+=Q>vKxQnL!rxtD?L0h5Qi7{ElPladO!mS#z!9G!+X4u>?4Q7i?thNoeOBKvmM zH<wzu~RBFY-(+)aMvf4d@y)8f?{ns)lkjrI=%gQr@ z4Gz{iax>oJk{;UpP8h-XDI52TcVNuX@kts}hA({+@+L3X$%x;_$_W5#Ne<4{BEc$r zsB_>mPRd3S7g=9Jh)7QGNr=J9$}Vka>4HZw5;}7kmOwN^HC^3u2#3s&SIHajkKB8L9K02Izn7cPF-Oo)-v_hcd(+4z<5ebl`R&FvKTM=o3rI|5->@yh=F>06>Nu&WH$Y(Q|nl&JG zn^sDAYJg<}Pdhnu*-$85D{1XD=D1EmOLveC=4|AcgcM09A!=dT0-DCNW?+ykjbfc_ zC-rom*7Lef^hm2&ULMknkXy#-`OGdNuwc4AR)rEqbb_k$+3gq5eIK?pSgJuzqT0L>8D?dyDaN;khGU2xX#JsQev;!} z43jpjh>!y`8WB^D!F}5|ShMJ`WWk(>RzPl{gqU#BY-$%CG(S+6C?BwutM)0AR2Q`y zDaFeZojs9QD7Qk^bCTXMq$>n27L03KhIZI3Go}ET#bSA3yJ$NIkw&bB3e6^%x`|jS zJ{fpXiu62*88+n281XX9Te8hugw@>uEync9jMeszAS0;zSheV7dcV-ILcYf;^#8TZ zO0B$6UEOHZza&Qx(hNaB5D)|e0YN|z5CjAPK|l}?1Ox#=KoIx>5g`Bnr=Pqu^?do+ z#Z%vY`Um(ZKZ1ZD@DK?6WaiAXQ!~H%M?0@H;a81c7$i8!yEtTr!x|17StkR{FKLfi z`;QaAVc&r!#3BDKm+fLg<5o|nu^ioa$-a(QN~Fit3fL}u8bdfTA8eLN)iM+~&^57I z<|=F*SfjX4+Hzw7f`e!}9ZlfgNe9_DZaoS|a98JQ=~Q&yD<71XRI_>Y(m9;4!h;`JEn=kUn%kco#*a=f!lC8oXO7)u<^Kd>m0y2dN!R^JG5^Z}Isn zj;7&pic?K;7{n`AD7^KK>N#Z6KyA(;M13bcbkFM#xjqdSYKHnGf)WC)B2{Wg-m8W8 ztO}624GX3=^j4&{!C@;jd#N_hSOwvDby*)Q17V!S;*mqLPU(&!ydU8R7ss^RVVv>v zK$UbL;k;i}WwXAr*;p-C)+#HF`sd&Mbi!=E<7=wTdqEYsqKBPesB?AOBu<%tH+1nuUdbsX2j0WLxy zAkrytVDnTl%E(&V4Xe4JL-b731Nhjq;mDq*XYj_lJFv1}%6qFuN2#zaj(YPjb z6hN6RZ3qr+-~o#k=*(e~k*Qk)_Z-S02Twah3<|hvpAWo=5{+q0dN2-ZB-V;xg#dd6 z?h~{wP)YRp}lt8wS)N;gn)@50rTdRm#bF^X+85jImt`4XAS zEFe&H5l@m5nac-`JRJcI(iY~#59t~)8*0lq67|qq>PmP@VFZjVVo^x3{YMfaq(5oN zpyK=>JS3||QnG@ z^P?lac#S3&n(jbheBmO4dzHYY%a`?d@przzM;Md$JKaTXdbrZ7YJP063UFeqVO8lN zwjr5r>=U>LJ-KZX=Z?1zLsk3sEC}`F`_+mX!nAjmjAM9-xervVfCrwKR`NaK_SqicwtaHvg1T9) zRF|w~s(`yk@iG&9**z&8ipJFf^d0 zudNWxz1QlNn`-41nwm)_O)SQ658b_~!)@u5CpR%mgnBh&35B3$foEFBTa0pvb7~aV zsnyzMV+9-yS+&mb|4RRA3cvCr2nYg#fFK|U2m*qDARq|*Vi5S}y|3fEZS-ez54X!S z8^t;7Pp}&Iuumc96;~e%;P{*OjoATFc5XyQyx7Fq6C-R)Uf(|&+HcdG z)1-$*+C|Kshw0NFvS&V|!#!G(=_UOe=%=N0c`$Hj;3ybbi} zm|O1)Orx<0u8*Bb&LS?W9IDUtUef;U7GzkIhx(1 z^Tk>6lEEFEN8mE0*~1szc6_I^H4fG{yNOch3m-_#ZmQWlB=7;%zpBTdixwV z^k%6v-;5DQ*PbU#+7d$XLGA+D57nIQ=*_7f5@H1HCCvu^`r;1sJJ_o-5flpG?Wp^j zIa0L`gSa;p;@%q1Fq4JTcU#q3eWh^&gZ&Zh`*E5#2yrlmojp#+=){mRB*KrGo%@(0 zntiwwg5x+RAv?(G-E~|+A0b7EF2;z7p@y1KI66pm?3{6j+@9j6|j(hK*zP@{cb}ff^-%aaV&E+ z=NWrhhdNYE<2VWNQ7X}?jXADxaV!Mizz3Cl zNEVIf$fBCRX`L-hLX!9<^c`q8d(Dx*A_;bK#D^Hc*-jSGz&fAIb7W`37jz(qNCN03 zMG!7J2g0>B>68%>)1i*wWX*a^v8#qXjwj)tIeK7pspH(=#jL}NrZt7WLPC+k16*P} zcv$;mPO?GrkUpd#qk|&tVU$NC?=_;8av1;8K0lkChii8o9F${XF@sZ3C;_J-pn?oP z4lA7DL(EvCAk`Jzv@Wzap)C!xQ#+qRInV%rCv?yOdlYN@q)a!M@3gBnv(s%lcr$)N z#vd0mK$npIz!>SgV65_%h|IhYC@9BEcgaxSkw1V$V=APxlU;BtrVJ1%Mt^NCWny^l-Qc zbx}@{Rd9|1IkIb%nd2{*DC;y46FrTSCJ`OR7OuO@z+AbeE#TZ_ea!K9j3*ShFLQfh zZ7m2LuHiNcK%PCQ9xW4Z8>jvc!7jUC7it-5BK=avL0k+|1Uu+K%O8=P#{-&%XxQkq zd3109U69rrX?<}nBt#ZPga(aWz)3;HvX=`WjtIM5;thoVPRABEOR#ik zoJpOW2j~5{R%b7eX@m|i0P@W)WBCUWWF5KTXANBy$Q=5+9AgkCm=k8S8#V^ikF3pi z57U97Mv&bYCMpI}ZlcFJh6~w;u_SPy?L+Ye2l&kE-7-w4hnxjaZKkg3z|<_Za`7e7 zxD`x_7E-Nx%Up}01$S=y=(Ot*om21zW=imCF;WF|(di1H>oGkT2k0y=fp&e)+&Ia* z@wn$S*`c75#QJ&O1-JwOM(TYE9FWF;ITlX_yvW9sXzKz+B4J@Ga_o{@CL87y2Exj4 zVr1i{UXZ`qtrChUJ2`2PnYQ0E(HL@z3Z*Xix zeKxZLGE-@~?gitZR=o@@_RH3e*5~&)W}TiEU~I3zx7N-7&MW7H)qwOn>R6%0*$=Z zx0IJY0>yfWBgH~S&=~|0W1K)F4<`Aa@Jh7 zu|kviAR{LtQWBu(F^o0w0tM?psT72awswVR3~dklHa~>(JVI8%rZSD-#ad`u2|!6t z!GR#GsbPoC5yf4ik)}E9f{q_xr5BdEV?Yxp<}kzp0QPva5+m!!y9l_n9f5~kp2h&A z1dc!y0j%w4zrc}H?ox&!4UD5tAqC|I;j*m!A6Nw%zH!#PZy6y%0y zku+Wsm5u!mRyYZydu|5J>;LPU4g6NiwMKoTy77xS;FVeh0YN|z5CjAPK|l}?1Ox#= zKoAfF1OY)n5D)|e0YN|z5CjAPK|l}?1Ox#=KoAfF1OY+daU#I}|4)5=3cvCr2nYg# z03+~I?}-L;!%TvuMJ zeQzTiBCI97sD;#alp!;_RE5ZuZW}7~jxi{E4Pniw{#MD7lqoh25$lvu*6R$Xx`!CGJ+el3i$%i)FI4hD*dM zE#1bJP8qwkkt6bgyA!w^Ob)B#J|TcaWDaP33*KJZ<)53bk!zy*{+4}cjn9LD5TvH7*i0^G}pw$CCNAN;wH zb@4~AMAZU{El4puSs1MpZ~X*URY@<}M_XiQ&-a31IdB47147uDoW5|;9v^6p7hIWJ zsR3^l9pU!s(S5r>gbV5oeN&Gmga*+;VK5ieSxRSY$(Fmr`Hb60o$JRvOe+YBN4L2P zg}Q6DZZjC_Z7x3p8HHaZR~ZxLkfB%S?c@MQ!NAr1cDrSS0li)*y^6*cE`W^Ya+p>v zWP9Y;zsJLIB4!lb_C(O$NkP+$Iu4ue)=9AGcXGfXgXeMJiVZl1oF18sepBR}Hn2x3 zTu}8mazv5_xMJyqT=B{nbjvAr`<8Oa+k_(^W_do@6x)D&Z3xS34sV(fI#w4j%!Ye3 z?Ag=cn`HM*uF-*^cpg`luRK6R@ms2jkvz@_^b~VAW~2F{bj93AcUekUp)s-K<&%rn zf<(P}_p-U!XSaJE1*OF*g%b$djDS6IoF@Zz+jy)+OmNPW!RZQz6lme;0`qf&nOAi$ z-`2|#Tb7XsDe;Y6FC(XQ;LI<;+ZpSD@j5V~IdaGePW8@Xtff#159(M$Xwofm>4c{Y zNg<*Dkv1e*Om5W_zYv+&Gr?N$uCmVU8O$j;F=be}P$oaV`Gqo4pZ0+kiEhFrKQr1% z+`6^%1J)_dx~vzb2m3~0fyx~-jnE{?1(^jAEn&yYG>h_;-ZA_C`dWEywZ5^@knN5j zAP5Kof`A|(2nYg#fFK|U2m*qDARq_`0)l`bAP5Kof`A|(2nYg#fFK|U2m*qDARq_` z0)l`bAP5Kof`A|(2nYg#fFK|U2m*qDARq_`0)l`bAP5Kof`A|(2nYg#fFK|U2m*qD zARq_`0)l`bAP5Kof`A|(2nYg#fFK|U2m*qDARq_`0)l`bAP5Kof`A|(2nYg#fFK|U z2m*qDARq`lIs%mcZ|bE-FGorc1Ox#=KoAfF1OY)n5D)|e0YN|z5CjB)FE0YJ|Nrui zjkHV<5CjAPK|l}?1Ox#=KoAfF1OY)n5D)|e0YN|z5CjAPK|l}?1Ox#=KoAfF1OY)n z5D)|e0YN|z5CjAPK|l}?1Ox#=KoAfF1OY)n5D)|e0YN|z5CjAPK|l}?1Ox#=KoAfF z1OY)n5D)|e0YN|z5CjAPK|l}?1Ox#=KoAfF1OY)n5D)|e0YN|z5CjAPK|l}?1Ox#= zKoAfF1OY)n5D)|e0YN|z5CjAPK|l}?1Ox#=KoAfF1OY+d%Yy*r|C@elaSFfkBM1lr zg1`v~{B-Zh7p7*;HfR27=GB*{np1lnXV@S5-ttCcFNvJQJ2+C^FjAw~J@>=mkqQH~ z(kuCcVHhQ9=mf44EBp>!do36Z@E9%y!%{a22g(mzzvCof6f5&u$LV)QeU#mbVt+|x zUk6Ud&3|u){k|U@cu}j3n&SK|Cy7cW*X!oqj!k=8122jEPCV~+msIQ@1WrF**eogh z%+Ahk+sc)FUJbnnT^u+;$5ZBAJjgG&-RpCamyDtyp1Yy86n*dX!`PdccMcb%y-1EE1d{w{AMVwVx`%F{#dJ-m1-;`;ZalEE-JQ~a|s6|z+ zRQRn!KWNby;thateeU=x>K#>CC=Wa*D7-ju?zG&Y8)<|xtMo0aaztBj{<$FB0sq$Z!vZrhh@r3=DyPNL@p2&aAJ*A5V@wi@$ zr}|z%U>U+uuWhNyjfLFf!zk?fiPP?Tt?_qG#`uOF<4-irT6~y7LCLMbsGs=5zVAg_ zwIv0vXoa`EC=UDXR=tv4XosVNUb3}@OT;QI-NqJLe310EHgZHB4u+A}^McsF?J4jy zSUNaRdzPaQ{iLV%4@0#b23;SdpZH-ATcXbs;ZDlE3_A4?&0}83_!d`~z6@t9sp?9` z5!BMT8%sOwT{)**g2-q5U|q$?bM) zG=x;J58?a3cild?UiSkRPzF5!?#OT$lUK#&*D4F85`%bF?F4?}JAMC0o|Od(0#0Fg zd=hvNP2n)bTaPkVrP-PW!9LoeNBLebEC)_tYdAkTQhO}>)cmo5)_Ao?N3BkX@uk79 zS~l0C`*wi{7t|YCfatM=(4Zz126I83-QC+!mTb8@mz&!cRC@#&9`{ry3geh=bH568 z*KFNpFx1;zeg-lMzY2-&skR5$6+^Gi+sQ$l2X?yOZnxYIJJ$=PSJC*w1(4BP4%4cI zY|rcW?}b^6XHEp|ofI_9sN=BdZk+_1ekTW<=S0VWD>mR5a(ZMk`c08@+Q42hRgWV_ z;?@9HES-=mUKxXKImK?@QtlqeQC-4NtDV8H?+v^lVc}vxzBY7eKC;xygpM^u|48{= z6?lhg7{*MG%8ymz-0}j$20X4TUzw4BWa7u7=fN*4##XXUzDzx8|f}f2`e-v zmb`p&(OQtGH}77yX7ufz*SSSq>x`lZP^cl3anDcCyWThsSXaau*8@lhnK*9Y=>qd} zgITudUcRlDC1XIO#5Z=m9E3^W%r7hu7aXetBbpbr z`#_6CH{p_>8SNx)myG;C+v(g&yg0#9EykQ47p4dMMqz=<9W#y4B*_Jt1raS_$ICQJ z@s(b!Qfn+%s>`)?RjqF}@LMgftgf%ER!&&#%Vj}85D)|e0YN|z5CjAPK|l}?1Ox#= LKoIx}A@KhJeGBEc literal 106496 zcmeHwOLHXIbsjLU?gly2q;0xAq$wtQBm!sx)%C!8)S@umXtK%1Gzj!?I2w=8Syfp; zva2dd*vTsML2A)yz<7{Xyfokp$KjKedpYp zd9zT}?~%yi#q*8h5y7hn84Uh_}&&$P?^agTsUz$4%h@CbMWJOUm8 zkAO$OBj6G62zUfuJOW=j_c|J#edB-6;Gh5T2zUfM0v-X6fJeY1;1Tc$cmzBG9s!TQ zuPXwd{MPK;%>3J*eE-7s_I4}mc6-tNxPMgNTrGY1{i9wOcPp)=m$lNU3_ zhI^*E)o5(h*D4#E)s^*C_e_4zW_5jIgF*e-i~n~9|NM_fz$4%h@CbMWJOUm8kAO$O zBj6G62zUfM0-p^8zVPz=g_7q(?f<`;x%gL~jRE>mcmzBG9s!SlN5CWC5%36j1Uv#B z0gr%3;5Qb5FTebD+3GLy9hm?B(i_d0i&yZ=|9AvE0v-X6fJeY1;1Tc$cmzBG9s!Sl zN8p(e_}R`&UzoY@=FH4jS3kP2df{tG#1FfJuoVu{ur-WZ(cbrd`0nnVKlp>|s|UAt zzW2lJJ9lp1xZT`bZMJS~zw_<)KMt=SzqhyA{$W(T@&1qYvzxmI-@W;8^JMpjKdA40 zcsUy;t^3*KrQot;?kAT&Y9;-C)EY*mOnKzPuW!}XE49W(eZA`D!#ig-suRwvRW|FZ zjg8vR4raeNbK%m@F0OucX6C}zWFSe{Z->oIB;U8{ZM+XqZ>@!Et<|uJRQ-0d+1#wJ zH`bRo8!PKIv)l1rG{+&D*kU&H>>rH+6KQ^a6Y_@ zt@)yd(?_+o)u>h0SMgFnZERHLOnn3YIqwW$ymDr(x>BvKGXDS4#lN1p_}3Tz=9#D1 z-{=wW2zUfM0v-X6fJeY1;1Tc$cmzBG9s!TQuLuI4d*#BLv+8+y>B1`)E?p4k1>^tN z^xyw@1Uv#B0gr%3z$4%h@CbMWJOUm8kAO$OBk&nUz}x?y;mP$w^9XnZJOUm8kAO$O zBj6G62zUfM0v-X6fI;9@{C)Z2|KqoRbn)*l{*8V#C;cCffJeY1;1Tc$cmzBG9s!Sl zN5CWC5%36j1b%H1_`-Q~{o*o{JpWs-EaSsd{QRPi+b`6j3;+7{ zuY7T4duEtM{dUkvy4~bKkPXvtc)(xL(P_|1BYfb=G#F*=t3Mi?21!4t9S6g>7j@FG z7sb6nk`99bw^Yai{2R3A=Gsvw$VLO6IZUH0&W2&X6&*_BXm_FASqdJ+{dV%;TD`is zH5cIL^5x6&_f|XV593Z8Wwwa`Z3jg&K{q;yx_B0j9!33#ea!-Nxs4K$K^7nN!){iY zlg75wqfDFUBify3Dkt3}UEr}m@aDD6A_n%t+b-3IjY21oX)XbImq z{COSiSVxJZ^tj#mFu(ny;2OsNp$zb&N~--|Fq5Ev7Aw8Dzp$9!>O9WgEig^LJ$&fg zZu-VstJ%=%1q}WR&XoAr0V@jLJN#snm=}M)Wv_1sUd}!w7qu}>s zEN%xEgKq@xC6(+r?hF@di^1>ez}<`UlZ!yr>1WOM^C0SWAJx%jB+Q~SJhhjSpGk|EBwkX=_W$f(&V24q&!4{fJNV##er*x><-4z(pP8L`{V!YFuiQP3v*7Ys zkIZGbU*O~jVUzX--DsL;M9k=9G*mYZJvi{z43DGWy@MN9zq|JV+%$1o32sNjdHPSn z?kW5h@o;Ny?#h)~CCL3gcTS@8B#s`4lVN)>NRzO2ymjTu+}vF>X5Bb}@pe4kRWr)y z5D5e0cCc;}xEtc$s3%Y9g%9O((vc3+yrzeP4hQuSWJ`1m46sFL4EN7zB?z{IX6{Z1 zfSYv&wSx!8k&c^w96ox2mw~VpJ^^(qEd_8&#jS9t-5n%D`l7;aFd94v(>9z;bd_0@ zE5Y@o52P}52mY77 zaK(*MbS)T0t>ZpM)g^*m^-U#Ro&j|zGThP?U+4>q6*;)@;y(K>ZaR3bu3V{Cg1sn( zFR({%Ua%Wsgsm*tCLO`YC-m__G765vlc+xrpJ1AtfJEAu$kSlp+}SgCF5rqzJPez0 zHy#4QgX1tAU{-*CvJ_Z~Xs6)=j#*rWJQ*zo(Xdrn1PQ#44wK%29(+k3k3vk>5VxN| z8hrVew_aAp`e6Iz>5LVDp_0>Q;H?+OM~1h@xMKlR5RSUTpk5_EKN@AcwwcE8lMjzM6262S2pt1tln2?e7yNYSWE5+?&w6hlG|!IUBrdPxrwYt&oT*$<8AE*Rg?Lzrcw z-avR>I_}6vuoE7VVqGwz5FT0dE*oXwsW*T5>Px~?|MmOZFHPsE7qeK^mciR;(1KJL zzBp!k=0$4~4^3aK0(i1hOjf8G=9y(q4F5$l#EoG}i6G;$H<7}TS^6PS`u(hYRNT$OhB|MU-NKB>z1aYANt0V?_hLKdS>P2CH zIYoRa&A1-so$7_zeKIiFPn3XV#LK`B|Los)XV1@En0fube|`JYW(Tjk!StyVGuP|dI_%CoEv45BXu*|AO#AJ`i8M!LAOW6+H$ z%V5JmZdtL_g4ns_-~R^+{>LNW5%36j1Uv#B0gr%3z$4%h@CbMWJOZC_1ibzK8J}Q3 zJdc1!z$4%h@CbMWJOUm8kAO$OBj6G62mk@e|9|PvXD zD;H)i{OrPCd^oeMn@9xMY9S070aAt}>$Z(Vq3{S9FDbHHG+EMSC?WNVmkdsk+ugqv zw8B1)+QgDhKciA<989VNyxlIPf zxNOJh4p9<*>ihsb&#;(l`}zcFiy z*;>(O_Ope@7Tx|4tBShhR?wuzp0DVvvxQ@h9)xd6V0FlM##oI9iWd$mM!0( z1q(a7+e^Xw{3R*X2qtY&qMh0@uX1qK^hl7M_L@mIScob|m8IbF_V(WG%a|8XdvUuB$}3OU_-&0dw{?>~-&vV@UxDZrUN-`| zq)Od8h2)9sIlNR7ogj~H;RF0E@9r+&xZ#Y`&car(1GJy~-eOM_KIIyyr^0;XZW6Y0 zLXf^)D|#q%e$777?2CfiKb!~I*XCtU6!|JUnarQr7RAg7wpBq^vE3NO-d}&x`|FeM zZ#?P!jr@KgmbZdiW{(;by(*V<(;VH%M0+Sl;uiqq`b=Q!u{=PdI_Z)Sc8iwa)jx;C$S+U#*p8*I^o?Sqo^+I+J+ zismQYu5@JY?#%zhkjzh)+u><|vqdA2h*R4D;Ah&XPiW&PjqqaDw4MO2Gp#fxw1UKY z@VL`Vh8O0rUJ4`?B>zVbKQwcc6Oqg{n%Cn7wW(M2!W5GE+Wa3D!`H6c{>^hAp#yEb z7|s**gS7Aj9Wj^Lo}3gt;Y8&95Ry965xj%e1^vwbL}m9+gXN%@S@Q|=V?H&08tkf4 zv~AXk>(q(Jm=4Gfg~Ar*Z$Ml+hfmF6CAk8NZiKAqwh=lc+M_gXFWg0%dT|XCk8#D^ z+*`p;zS?7r+?q3M&NZ{nkV*HWK{v!(f1>z614`{WZ5F6GL%Lw=Rr9${7O$Ew4ScCr z=L+eH@0YP>QGK~u!@tXOR?eE^jpbT(xxS8_tX}v6E{et6+&)s*drfL5c&Dz9jv>#T zvY;QeqAUy3Qz%tNz1j+bdxLn8UzY13h3aw7=uJikMO$`#!8@$bzaSE@s1=GBq=VHQ zxKX-2ijT)!2Q;ED=S;oMg{xntX0=;y!3pn)HbS{8;x(zvX%FwFENLeMo-b5 z##X&vSy|cG*jT0g|MJZLoSALSeg%I%3qLo{0h=$$JOy)4HB)u$e6&@oRW{eFYipY~ zUwhtm)>c3_D}VOoSH*<=Pk-c1SXWgv{OV0uu_u3>P1tXIJW7UdyT3&R{)e$>wHq{R z^^;@s8O`F1t?6xBwa48V)X!?(P}zny^<1XzH{Pl?Hs7Y5qMvf3SHFrTZ_bQwDmvBt z&D*R$W1AC9;=IkqGq(9mX0myz7$U`UO9u0VORVW^PC3|q<7oJ{+DQ31ixDhcION_o zR`;3H!Gv2a6puBwpRSMHXYb?LTg!d?)C_eUp-ZjSgmcaWVnpcyYrN|>TJZX*u$~Gp zfSz%9#J1hhGllJEta?3MegyRFCwPLThRIJTZ2n145EJ?do?)kC@-qsLz@%rWZ(#f( z(+qRHPR(ci4DnKO73fiS-qdOE$UBYEuGjpb{wag)Kw(Fzmlb{m{a#G>Q;xxPGiXy! zJczREL2o|MKjl&6BvT%PIfW3y6gtZX*wwEt&k@6O<#|9L?O z{Mq7p8vL*S=QneMAKOD{WI1c4G2)sU;I*#0i6Lx+w6O1p*wUt z+MR=R%c;%?brNKw7jb4jaXeU|fX6!=93LjlA0cf3&|`nV#72zIR;zfdlUa<-L){Gz z>n*~Z`Io|{JvB;vi?MV|15+p8BATZOyvPW#I{*`3W^8yFk(=IFxE4-+*5JRtp6 zaKi+m-9Q0tce#!qp3#Vx``-$3f6jRC^Y$g6eJBL-_^7f=M|o(OX$b78wnUP6d_xW; zT7lq!#_MwcIIHR%c zSK4u>v#^NJSk1~U1XDl@OTn^xgrOS~ZVrARTLiIK3`xpFX=G3cHe;5LlFCgDKC4QM zqZO2aIfP(nMGH84U_z}AuMuqxwk`#y^6f*7J~N8jM`4?CFxrH#pRz&Nv=%(mD1w?U z0TkikXMcdsMA5!O7p3M6ZEUv@{ju7kntDnXj~Sbx2X{tcYJN0^p%U@)oQEsqAcLQ)KBRcqPJn;5;FLl~szv1MH+UaDfERNdmSU4`ue_qv>-l z1A*yRt8)&?;{cY*r;3xyqBb{Y#0eUB;mXY1AVp&2f_Vbw3YmFxbMI(O7m15~M0K%6 z8n%$Wa^;o@rB4c@Gj2RNkghtLS%2@%VXNUQSGL=-QR*OMoi3;;++jGle$4EX;GU)^ z+*=Cnxp4Bk1E!qLbNKL$>gYX74)>@>ODY2rK0AoTB6E_3!^~EzJ?=#Zl^1KhYzB#K zC%MlY>UPa>FSzU26E8*fKr88qV#m%Qj{++`cC|*%WrQuW5$}%%b_+N($Han)+`W^g zh{t0rZEo7ndl$C5)T0qV$KI`R3*_e{RkkswRE3i!w~mcUH;W?QkA@GD^gi~r%tnmq zb3aUE(Zz_%OPZs}AIzZpu=7SADH#effbF2i?P%p`abNUvZZ#{w>D5dY7z_}n=OATo z*76Q^?vC3}sxV2PAnL9sM8+n~t{+TlizMa8`r&h}b4 zPhD2-Z;_#Y|0a!gVPc5Tl>xtQ#*GeZ+==*XW=`Igv32zOuY|#)U2%U~t@t0_{!x!~ zuI=jArwDbrsj8maNt|P*HS>}SI^ASPP*Y7qslrb+)(0^sqbTUh(W^IU;5Qrb~di) zl3i{p>7~#4P=`>hVW#c=#G%Hsk2GZYd?uPc=nRESGu9q)xuK`>R7oGnn-hP;fYT<8 z6{lY&nsR!|vFGfyV@91Gc7l%9_|X$keDuSUO`014oq*C5lTV*8`TDbkmT{tTm;)u#NJDI*xu}=r5zgnb8BJHG(2Z+2>XkS0$YPlK@ zLr-s3Y766vhnt9GIb;Iovw46^d1@FvmfA`~Np_>iw8K0v-X6 zfJeY1;1Tc$cmzBG9s!SlN8mRIf!8no?aaAz`!jDGU;J+ufBCt;cw_nezc{!5+Hb$| zZ(e@*(%S56s0r{Qs{+*Cc;rZO}L75%36j z1Uv#BfyX28$+>gqF8$8$%>MEBrQ{}dBaJ)U!UvoGxu4Hp-{0B3yA#~qe&_ZM_bkn? z3Kr%rV7sMT@7~?{_RfCr?wz~AyYJn;y%fw{K=xsJIOQBmV+KFi-oO5x?fnJpw8`sx ztUrZKu8PBY9MzH9!8>>E+}_!Km)B_})b=4Zb-jU3-MzKD!^3;~w|2MpKM20J^Fgo> zx24IOclLK~efwP=TQJ>O4EA?!?(FZpdwu7CwK`L|cy94ue*d*|ml}=Pe|1ZcFq@Jd zI(uYIICQRr%Y+M_5uSF`39I`MGgc|gRC7-MdHb;zdNsVJQ|#Lk~X)?qCk zt>|H6gTp}>r&;jbgF7;X#c?SOHt9qwJsk{_;!N~V_91H@>V|^F35$9*JVoWsf_Q`g zERe&v7j?LyT7E%YiOb%NJ;>4w`mZHk%xY6qP8B{hXI#LWu_Rzq@+2QKMK%p?hVZ^uSy(2*L2= zLD`$lA&6`=7_iQ5`*57#u&E`q96A)OCLS@A&Sg)a7|=Iq$3TE`J8 z@wzhh`Kjmnop%rJ?r%e+1rTo75bjXqvQAg<-n+NH|K3huW%W|vOykoE^vzdayR>>YusYInb@)+XeR-ZY@8)MWbY@VO3 zjT7e}%rfk4*giZCv*Y}-`s!Mlh9}OnOk_7XLOJahJA3Z@aBwmw_Mi-Cac*(`<<~B~ z{iSKZ%XHWI`<3~Z9(!Sp7rqQV<~(&7=Kr5N-=BHof4si)`EShqp9}xt{J+Cj|Kkzx z2zUfM0v-X6fJfj3Auz@LZxl#Vv?WOoYx&22^2rxoKX>VCUz`2oL=?yTME>C)msH67 z@FVodk`7rzIgyeHgN?bRMh}$wTt{5RMdBwhmA0wyOMULUJ3oYX#_`Y;dyMC%>ho*( zRvi@maBlIF<>|pVv!pn1hc1!)`h@&8>v!463_KI}6hWyJ8o1 zRt^+AOthk&(xK#ZrsPzz$0vHB@*b9MQCk8|E8z95&z-yU=9|{`NTZWDdZ52QUqVZd zJqK9Yz;quSogpRX)2{-4PN%0L_|NCgUHaxXEfdhOrq&;i@ z&XoYMM<0QN7<5zIyw5JYVAl@P_ym0Ex-i1-QBue<5ptuH6%0s1>6On^Y0VGK36Ruz+=i zEUC_;4g?ETb-RJOwZkTy*F)VOf&TO5P%3P&NJS4sguC$cX92es&f<0yw6R*KOIRD;MJ<=!s2AKw!w0;G1G|d`(e@Fh z2Tg?cmxsynFqIMoB_h9TX={x0Rv)E(z?#`O@ICXqLBfTW^TfD= z_T_zeqkwK?``|<|l8%(TlJ>9&tAND(;0~Qa)5JFC6;Tf~b@etHE&$`8QjVOn5}M0U z&rNEQh{s$?4iQj$)>P~$PHHz%Hw@m?qGgm3?B+ua`+d{^1m>1@>)&qgR$GLk79rzg-cAaZL3qNE}Q9V147=C537RDylh z7~B>%U^Ny%%Q7wzP>V5$Q&VXZp2P%9!@3+&`=h*nE6TZ;+AcT4E_(V7w4wW`K_rz( z*q9}7R9O-F2I*y^tQ8H0>K#pRD5u#5 zj22M2r5SZme9!o_7x5KC=S38PpuP$S7aeGY{Q%WbP~auOj2`tR5DA@*bO!o~JER!k zhF&LwWgbOU7=&H$P^=U4D7I*85=L!9m&frS3m?dELD?XqJ{+eSbvx*1>pn-KjO`Q`9jn+=&_18a2=B7WQBdSb)Wt+meymi2 zyc(CUh&n#ah?%ESD`rm7@x!oFm?qv&lvzB`jPb6S#u2tOCeL zs}1TLschg$sq;{rT@(o2!5GGdBT_HE9y?D zd@BNqH6mG9jJ2ku0VX8KSOGlNz7A^n0#RWHV8JD@s9%~5q80@gN_g3rJ?BwFoE*7g zXr+xI9$^1ti+E0*p)DO|NsLMWnK74xC^`md05K?{ZI~clE*T7bVhfSsA-Y%8@Fiyb zRt)0L@$JM9(Ew}=39M2y*beEVj9dn0N_4wO>tF-HT{}8mc(!Q-O5acjORvbspFa!^ zlBSkf3sE^HhPc#9WJ6$W)^_GGaDi4bT9ow?GL^h-4pRRp^kJ9w@&#O}fZTsqT1M}4 z;!~PNwP&Sha1oxp+)27vy$Nkjf|DsQXr)+_(VKLUyoTvy%R&xqNKZl0uKgetVIxQr z5#lPgRx817nBGUc9NjXs5FCs!RjTKsgQk{UKFiP>Sjh~y;E`r2!9zqD2cydn*mtEd ztg@oMv{;4BDkLI&9F0WO<7nM}q5e&B0mrta5;^ zj42;7zaTBZK%KLB3Q98y2awAWRJxOuSw-iV8YXLa6uftE)_(63|S z4~jRMGH2ZA*ipbCNA4I5L@uG6jJkaYfytV!p#rneyHjX*Op9G}BB_}>l0%jvVM-(V zNpD8S#nMH!7LapNxi$e97;@}`tdg7|ascj;9#4?FY~NKcgfih8W9$v`uvl1A#Q7`H>xt7AN>ONpLlw_+Yzlx@kV>_WFAwePzP|CVi z+?MPAt#7T=w`v=e>RMxcW0m&55i_<~;2|8>GJXMc1nG&iJzz+NC@Q*)0mcb5K1e7& z%dAME`PP;xE{za{kg)7P0h(6{UlNnyl=p^W|5zSuol+g0N) z5FrnvN7.uLZyF-oI^@>$q{x}7^C#%v50j0->%@ulFvI1J3!aqAPBt;mugcsClh zDvJ&ifk$EFS-2dt6pIViC2A>Lis+Bzznqasc$j3dHQg?1#m*}|ROq~tE4+XoH`_Vl z`pVjn3G_Zpv=vAOeU?B2;bTQmh+VESbGLxGgfND~BBMEoHcla$Gt~&uWQ(;U#ojC| zZS?mYsLOCtz_o%EA2Z!;gGf=KJk*>nA#Y6Dm@T%DK^TRQYvcxoBwz?YbfJbQZ6YyS zu|i{X+9J3X;!D!7fclWdPa#sJ5T+V}YN0~GV|$on*lwqKWf(jNyZ5nnrVqjteY3cO zhS_Zqrxrs9H7$cGqL*lieq{P&mvqo0Ww1aBzZn!0EIF>&#H3(TZ880X|H_JoK7D42=^C@kZW zj%-w`n;6iT*Wy4E;{@@uYqpWKpeJfjRCXr zbD5_fJ-~7Y0Rv(MiV?b)^q^P6iG`HLmfCvbBWfp6Mu`-mq;K3p6>7LO+HHV{bsm-g z%f|{MNey32ln7U}-%-(M`UZ<%bx7-Y6f=^8vTHf@5TOCg_5|?-3B_(ggsZ?gOBC)% z&EyD>?vrm4>Afm_9Fn->4p#925MLoK(Ww# zm3=v(aGvCDCftD~E(NT>j4PWugh~#pQ4`XkaExl*xg8%oXw6 ze3)blE(N>W*Kd?`acc%xBSPrkq2h7+&0R$lu+Fpq25Wh6`Yd>5zh-Vg8;3$Zck4#?JLyaW(k@CqOhb_9dH_kT}EAjF{uW$(ec!|It5Y&BIsGc8ewi%o!&Sa*aah(RfVB!M(Y&5x!@h2 zJRvuR3i?S5877K{4$P5U2Uv?SbdJbYF?XzCAZ)E|qe?o`0@J2Jhv^b!2@9=wN?a2g zKv?$=DM7mgPEl*SvC9>RqL1~9gz7V4(+j1R-R9>x<0?>3kLj&^aVlQM*#3P*_1D1<~( zArW4b`)KHYQ2Ue`kE{bcuOogcd%Ywe)b!NlFgG)!@PrFCl*zMz!U!;iD}V$Tz2E^I z@z8>&822X5AR{`fBG9ZC^B>Q{D9vxBWgANgmqmPk#4dp35l(dtHx=2~9Qg;_cukb`b!i8e{Vk~eZ z=-TG$2pr&KB>}Pw8aP+7RtUAy74me6LATAgn4_1yPz*Yukw+?FAX>4v#L87dxrOFk zPr=yIZH1i-Edcb;-Jrs?Cb|j?6^Jj-+E5&ywR^@^4eI#_cZ;gDkgpr?lRm9Cfy=Tg z{1R!(UFu?v_oIj|4`cOXtRkc+OlXe}#D_=&DI8Guf{vH;u@Y?q{V{{zED{lU7Y$Au zZ0`OXAFT=&=~LK*7il!4&VtuIFewZhnjTVjRbQ`ctT)!{o3#HiW^!Zh zETnveImGBp!IBVf5-Q1(0S!+BCRx=QkbL6@TpltOa^=d4x7Rfc;s)*ut9_qSOJ337 zyp0*VR=W*SgRLaMrwi^hYrYgw?qN_&TwoA}WSvIGjKjf&$ zX)qQG2Z0G?!JjVCcXd4F^ggCmOb&soq75IH^GF5(dLa}C2F58oQkt@w(!q2QrGxj! zvMH>yqL@|ks+}bRb{-VT-9?4VCuA(O4~Yo?CnZ^6k%q8i%#74+sum!tUxxz3lt;^1Dwgl5b7Ga4H$Da zH-WbA?$cVC5VAK)^3^l>I(V|tq;%GATP;Asg+M8HROI3*pK{4vqu7Jl0@1DdW6q4C z+R(LP8WD&wDq(-sd(MWsspL`%;KgR;R0TYtHiG=OBx}W8c+FtR!E5;B$q(0^k-*Pl zgX?rs;?gVGVaSBH&6@D+%j z9i;PUhzEmT&Y#wjkR|bqH^-P6MwS}~%KPG)kL=I}lu{f${ z=fL#<-g5E*AQ1}RkEVyAC2-3SW}T4;>Is>aQlhe0M7b)SEt73>FCEwc=m0hSirwE)=q>w43Lj^J#TR0<<)VUxCi6dDjp%9Sh0$4<6y_mXX zo#HY1rpTyAMzsFj@hHCZ=?+s{^98}srPUUo@*$QdZU&?v8dE?u0|F*CcF_+Zb@kd{ z#JCmWK_(8dYjrl|+J(_Mp2}kZA(#s_d~PyiL$d~aL3hl!;{jORqM7H!1s^~t*<1k$ z&&HZ3No)q;BH|Ev980;8FCKIisM?jI~dU3zclLX9(>iri@8`07JFiZUomR*pRu= z&K%(3?>GU!P!dg$TLg-MH$^9yQqiW2;8vKs=rz-n(U^^oPf8QOl5xxRPN)mVF0v&u zun7#HP9}9Ty)71G4jjb<>eEEm0GDtC>4m_@jCLsJ;tH~YUEBle)(hL=z~*moB-6+I zsDy*irW}w(*m3m|$efP(A9$7&;?lBXT#EOsh{u}{4y_s{HKU z5oyQ7D>gYbg%>J;-wF*208G4-xPn zk|i_eT`VzsqT@=kJf-U$7`sL8u$>EyCWCS95IB78qzY{)0$j#K3)m|*AA%x)1-?kJ zHzvR~AL3-`^TGBQ$ezyUGk4OT2Z?UAH}P8Ys*;keo!Nc1cN)lA7$TE&;hl#o>IB(I zk9_fi3^@5+k?Z5{2srO+7?%&NrB2dA{FZFsciXtbS-1QU&lr5{I_EUx~%%ShNHH+h;|qRrTANsDbd7&NM19lDa2cp!5o-uyi5DQK(mUY z2T-eZ=@@HY5?jFOr6hNHe(snocSQs@BNLczKUs4TMsVoK&aNvtDB9grG^KTGBHo>t zQOX&}l_^Xa(%g*!BkPMZr1mP%(D!VMUwoRGPpcqKbUJT%HG5Tzi9&(5L*d@i#O^A9tt9Z##lvKOM z?2CI|-v!Z#kZ=tHDy2y-i0W7Bg7plzuOUAPlkuO{A$buJ4Op1^g3OSIJuRKzfC6fdrj zZge%0_;qeq=jOIdoup3e=|X>}NZK&gugR*;Nrk-U8n7m@I`1Uhni=9Q67^LR7n@M@fZVY_ zUa);>M#v?G`+za5k^%xlC-)gi?x?5-npA;>@liPycCBS1oV;+MF&$a|)xnTw&6!c! zMHF4O@jIO(SkKw0hi39O0l{gS@|-XG7_>E>^Xz{NMP3MgT*m#g8n#6M+v##{S_#0= zz6}S_#ZkOz$5l*|C?pLQ78-;A!_bzIN*u$cT%`z>yS)4+oJ55Yi>UD@({lqYa(q?P zRS0jJDw8=r=a##i8C4JMqkn~i1Ad%==x@_sh7jS6_vqpyDi4m31p*wGP4?dkpbf%a zQ(qb_TqByGp{k!~vd|y|2uXtzm>R|O0N4N`IWby#2RP!h_W$};eWS9nzPZ*|`Tv&5 BI|Kj# diff --git a/main.log b/main.log new file mode 100644 index 0000000..e69de29 diff --git a/main.py b/main.py index c3f117d..8b859a6 100644 --- a/main.py +++ b/main.py @@ -1,3 +1,4 @@ +import datetime from flask import Flask, request, jsonify, render_template, redirect, session, url_for from flask_cors import CORS import google.generativeai as genai @@ -5,21 +6,32 @@ import traceback import os import json -from models import BacktestResult, BrokerConfig, Strategy, db, User, Conversation, Review, Comment, Indicator -from datetime import datetime +import logging +from models import BrokerConfig, db, User, Conversation import requests from oandapyV20 import API from oandapyV20.exceptions import V20Error from oandapyV20.endpoints.instruments import InstrumentsCandles -from indicators import calculate_rsi, calculate_macd, calculate_bollinger_bands, calculate_atr, calculate_adx, calculate_obv from tools import ToolRegistry from words import endpoint_phrases, trading_keywords from oanda_broker import OandaBroker -from trading import load_historical_data, trading_bp +from trading import load_historical_data from broker_factory import BrokerFactory from flask_login import login_required, current_user, LoginManager from auth import auth_bp from user_config import user_config_bp +from utils import get_gemini_response + +# Setup logging +logging.basicConfig( + level=logging.INFO, + format='%(asctime)s - %(name)s - %(levelname)s - %(message)s', + handlers=[ + logging.FileHandler('main.log'), + logging.StreamHandler() + ] +) +logger = logging.getLogger(__name__) config = configparser.ConfigParser() config.read('config.ini') @@ -39,7 +51,7 @@ @login_manager.user_loader def load_user(user_id): - return User.query.get(int(user_id)) + return db.session.get(User, int(user_id)) # API and model configurations genai.configure(api_key=config.get('API_KEYS', 'GEMINI_API_KEY')) @@ -51,10 +63,7 @@ def load_user(user_id): # Replace broker initialization with broker factory broker_factory = BrokerFactory() -INDICATORS_DIRECTORY = "indicators_directory" -# Initialize strategy database -strategy_database = [] # Function definitions def get_account_details(broker_name=None): @@ -65,25 +74,25 @@ def get_account_details(broker_name=None): broker, broker_name = broker_factory.get_broker() return broker.get_account_details() -def create_order(account_id, order_data): +def create_order(account_id=None, order_data=None): + """Enhanced order creation with broker context""" try: - broker, broker_name = get_broker_for_request() + broker = g.broker_factory.get_broker() order_response = broker.create_order(order_data) - message = f"Successfully created order. Response from broker: {order_response}" - messages = [ - {"role": "user", "content": "create order"}, - {"role": "assistant", "content": message} - ] - assistant_response = get_gemini_response(messages) - return assistant_response, order_response + + # Include broker context in response + response_data = { + "order": order_response, + "broker_used": broker.name, + "broker_status": g.broker_factory.get_broker_status(broker.name), + "account_id": account_id + } + + return response_data + except Exception as err: - error_message = f"Failed to create order. Error: {err}" - messages = [ - {"role": "user", "content": "create order"}, - {"role": "assistant", "content": error_message} - ] - assistant_response = get_gemini_response(messages) - raise Exception(assistant_response) from err + print(f"[create_order] ERROR: {str(err)}") + raise def detect_intent(user_message): """Detect which endpoint the user is trying to access based on their message""" @@ -181,115 +190,55 @@ def execute_endpoint_action(intent, user_message=None): error_message = f"Failed to execute {intent}: {str(e)}" return jsonify({"error": error_message}), 500 -def extract_order_details(message: str) -> dict: - """Extract order details from user message and add smart defaults""" - message = message.lower() - - # Default order structure matching OANDA's expected format - order_data = { - "order": { - "type": "MARKET", - "instrument": "USD_JPY", # Will be overwritten if found in message - "timeInForce": "FOK", - "positionFill": "DEFAULT", - "units": "100", # Default position size - "trailingStopLossOnFill": { - "distance": "0.05", # Default 5 pips trailing stop - "timeInForce": "GTC" - } - } - } - - # Extract currency pair with proper formatting - pairs_map = { - "usd/jpy": "USD_JPY", - "eur/usd": "EUR_USD", - "gbp/usd": "GBP_USD", - "usd/chf": "USD_CHF", - "aud/usd": "AUD_USD", - "usd/cad": "USD_CAD" - } - - # Find currency pair in message - for pair_text, pair_code in pairs_map.items(): - if pair_text in message.replace(" ", ""): # Remove spaces for matching - order_data["order"]["instrument"] = pair_code - break - - # Determine direction (buy/sell) - if "buy" in message: - order_data["order"]["units"] = "100" # Positive for buy - elif "sell" in message: - order_data["order"]["units"] = "-100" # Negative for sell - - # Extract specific units if provided - import re - units_match = re.search(r'(\d+)\s*(?:units?|lots?)', message) - if units_match: - units = int(units_match.group(1)) - order_data["order"]["units"] = str(units if "sell" not in message else -units) - - # Add trailing stop loss by default for protection - pair = order_data["order"]["instrument"] - volatility_map = { - "USD_JPY": "0.200", # 20 pips for JPY pairs - "EUR_USD": "0.0020", # 20 pips for EUR pairs - "GBP_USD": "0.0025", # 25 pips for GBP pairs - "USD_CHF": "0.0020", # 20 pips for CHF pairs - "AUD_USD": "0.0015", # 15 pips for AUD pairs - "USD_CAD": "0.0020" # 20 pips for CAD pairs - } - - # Add trailing stop loss - order_data["order"]["trailingStopLossOnFill"] = { - "distance": volatility_map.get(pair, "0.0020"), - "timeInForce": "GTC" - } - - print(f"[extract_order_details] Generated order data: {json.dumps(order_data, indent=2)}") - return order_data -def get_ai_response(user_message: str, available_data: dict = None) -> str: - """Get AI response with tool awareness""" + +def get_gemini_response(messages, model="gemini-pro"): + # Add model parameter with default value + try: + response = model.generate_content(messages) + return response.text + except Exception as e: + logger.error(f"Gemini API error: {str(e)}") + return "Sorry, I encountered an error processing your request." + +def get_ai_response(user_message: str, available_data: dict = None, conversation_history: list = None) -> str: system_prompt = f"""You are Trading Pal 1.0, a sophisticated AI trading assistant. - You have access to the following tools: + You have access to the following tools and context: {tool_registry.get_tool_descriptions()} + Current Broker: {g.get('broker_factory').current_broker if hasattr(g, 'broker_factory') else 'Not set'} - When a user asks to place an order: - 1. If only a currency pair is mentioned, create a market order with smart defaults including trailing stop loss - 2. Call the create_order tool with: create_order|account_id={ACCOUNT_ID}|data=ORDER_DETAILS - 3. Wait for the order response - 4. Explain to the user: - - The order details - - That a trailing stop loss was added for protection - - How the trailing stop loss works - - That the position size was set to a conservative default + You can: + 1. Get account details and status + 2. Provide market analysis + 3. Explain trading concepts + 4. Show historical data - For other requests requiring tools: - 1. Identify which tool is needed - 2. Call the tool using: tool_name - 3. Wait for the tool's response - 4. Provide a natural language response explaining the data - """ + You CANNOT: + 1. Place trades or create orders + 2. Modify existing positions + 3. Give specific trading advice - messages = [ - {"role": "system", "content": system_prompt}, - {"role": "user", "content": user_message} - ] + Focus on providing information and analysis while directing users to their broker's platform for actual trading. + """ + # Include conversation history for context + messages = [{"role": "system", "content": system_prompt}] + if conversation_history: + messages.extend(conversation_history) + messages.append({"role": "user", "content": user_message}) if available_data: messages.append({ "role": "assistant", - "content": f"I have retrieved the following data: {json.dumps(available_data, indent=2)}" + "content": f"Retrieved data: {json.dumps(available_data, indent=2)}" }) - return get_gemini_response(messages) + return get_gemini_response(messages, model="gemini-pro") # Pass model parameter def extract_instrument(message): """Extract instrument name from user message""" # Add common currency pairs - pairs = ["EUR_USD", "USD_JPY", "GBP_USD", "USD_CHF", "AUD_USD", "USD_CAD"] + pairs = ["EUR_USD"] for pair in pairs: if pair.lower() in message.lower(): return pair @@ -302,14 +251,7 @@ def extract_instrument(message): tool_registry.register( "get_account_details", "Fetch current account details including balance, margin, positions, etc.", - get_account_details -) - -tool_registry.register( - "create_order", - "Create a new trading order", - create_order, - ["account_id", "order_data"] + get_account_details # No parameters needed as broker is handled internally ) # Gemini model configuration @@ -336,112 +278,60 @@ def landing(): def main(): return render_template('main.html') -def get_gemini_response(messages): - chat = model.start_chat() - - # Convert message format to Gemini format - for msg in messages: - if msg["role"] == "system": - chat.send_message(msg["content"]) - else: - chat.send_message(msg["content"]) - - return chat.last.text - @app.route('/api/v1/query', methods=['POST']) +@login_required def query(): - """Enhanced query route with tool calling""" print("[query] Received new query request") - user_message = request.json.get('message') - if not user_message: - return jsonify({"error": "Message not provided"}), 400 - - print(f"[query] Processing message: {user_message}") - - try: - # Get initial AI response to identify needed tool - response = get_ai_response(user_message) - - # Check for tool calls in response - if "" in response and "" in response: - tool_call = response.split("")[1].split("")[0] - - # Parse tool call with parameters - if "|" in tool_call: - parts = tool_call.split("|") - tool_name = parts[0] - params = dict(p.split("=") for p in parts[1:]) - else: - tool_name = tool_call - params = {} - - tool = tool_registry.get_tool(tool_name) - - if tool: - if tool_name == "create_order": - # Extract order details from user message - order_data = extract_order_details(user_message) - # Execute create order with parameters - tool_response = tool.function( - account_id=params.get('account_id', ACCOUNT_ID), - order_data=order_data - ) - else: - # Execute other tools - tool_response = tool.function() - - # Get final AI response with tool data - final_response = get_ai_response(user_message, tool_response) - - # Save conversation - save_conversation_to_db(user_message, final_response) - - return jsonify({"response": final_response, "data": tool_response}) - - # No tool needed, return direct AI response - save_conversation_to_db(user_message, response) - return jsonify({"response": response}) - - except Exception as e: - error_trace = traceback.format_exc() - print(f"[query] ERROR: {str(e)}") - print(f"[query] Traceback:\n{error_trace}") - return jsonify({ - "error": str(e), - "traceback": error_trace - }), 500 - -@app.route('/api/v1/create_order', methods=['POST']) -@login_required -def create_order_route(): - """Enhanced order creation with broker selection""" try: data = request.json + user_message = data.get('message') + conversation_history = data.get('conversation_history', []) - # Get appropriate broker using user preferences - broker, broker_name = get_broker_for_request(data.get('message')) - - # Process order based on broker type - processed_order = broker.process_order_request(data) + if not user_message: + return jsonify({"error": "Message not provided"}), 400 + + print(f"[query] Processing message: {user_message}") + current_broker = request.headers.get('X-Selected-Broker') or 'oanda' + print(f"[query] Using broker: {current_broker}") + + # Get broker configuration + broker_config = BrokerConfig.query.filter_by( + user_id=current_user.id, + broker_type=current_broker, + is_active=True + ).first() + + # Format messages for Gemini + messages = [{ + "role": "system", + "content": "You are Trading Pal 1.0, a sophisticated AI trading assistant. " + f"Currently using {current_broker.upper()} broker." + }] - # Create the order - assistant_response, order_response = create_order( - account_id=broker.account_id, - order_data=processed_order - ) + # Add conversation history + messages.extend(conversation_history) - return jsonify({ - "response": assistant_response, - "order_response": order_response, - "broker_used": broker_name, - "broker_status": broker_factory.get_broker_status(broker_name) + # Add current message + messages.append({ + "role": "user", + "content": user_message }) + + # Get AI response + response = get_gemini_response(messages) + # Save conversation if successful + if response: + save_conversation_to_db(user_message, response, current_broker) + return jsonify({"response": response}) + else: + return jsonify({"error": "Failed to get AI response"}), 500 + except Exception as e: - error_msg = str(e) - print(f"[create_order_route] ERROR: {error_msg}") - return jsonify({"error": error_msg}), 500 + logger.error(f"[query] ERROR: {str(e)}") + logger.error(f"[query] Traceback:\n{traceback.format_exc()}") + return jsonify({"error": str(e)}), 500 @app.route('/api/v1/broker/status', methods=['GET']) @login_required @@ -493,133 +383,23 @@ def teardown_broker_factory(exception): broker_factory = g.pop('broker_factory', None) -@app.route('/save_strategy', methods=['POST']) -def save_strategy(): - data = request.get_json() - print(f"[save_strategy] Received data to save strategy: {data}") - strategy_database.append(data) - print("[save_strategy] Strategy saved successfully.") - return jsonify(success=True) - -@app.route('/search_strategies', methods=['POST']) -def search_strategies(): - search = request.get_json().get('search') - print(f"[search_strategies] Searching strategies with term: {search}") - result = [s for s in strategy_database if search in s['strategyName'] or search in s['authorName']] - print(f"[search_strategies] Found {len(result)} strategies matching search term.") - return jsonify(result) - -@app.route('/api/v1/backtest_strategy', methods=['POST']) -def backtest_strategy(): - """Enhanced backtest route with database integration and detailed logging""" - print("[backtest_strategy] Received new backtest request") - data = request.get_json() - print(f"[backtest_strategy] Request data: {json.dumps(data, indent=2)}") - +@app.route('/charts') +@login_required +def charts_view(): + """Render charts view template with RSS feed integration""" + + # Check if data server is running try: - # Save strategy first - strategy = save_strategy_to_db(data) - print(f"[backtest_strategy] Strategy saved with ID: {strategy.id}") - - # Load historical data and calculate indicators - print(f"[backtest_strategy] Loading historical data for {data['currencyPair']}") - df = load_historical_data(data['currencyPair'], data['timeFrame'], 5000) - print(f"[backtest_strategy] Loaded {len(df)} candles of historical data") - - # Load indicator if selected - if data.get('indicator'): - indicator = Indicator.query.filter_by(name=data['indicator']).first() - if indicator: - print(f"[backtest_strategy] Applying indicator: {indicator.name}") - globals_dict = {"df": df} - exec(indicator.calculation_code, globals_dict) - df = globals_dict.get("df", df) - else: - print(f"[backtest_strategy] Indicator not found: {data['indicator']}") - - # Execute strategy code - print("[backtest_strategy] Executing strategy code") - globals_dict = {"df": df} - exec(data['strategyCode'], globals_dict) - - backtest_results = globals_dict.get("backtestResults", {}) - backtest_results_str = "\n".join(f"{k}: {v}" for k, v in backtest_results.items()) - print(f"[backtest_strategy] Strategy execution completed. Results:\n{backtest_results_str}") - - # Get AI analysis - analysis_prompt = f"""Analyze this trading strategy: - Strategy Details: - Name: {data['strategyName']} - Author: {data['authorName']} - Pair: {data['currencyPair']} - Timeframe: {data['timeFrame']} - - Code: {data['strategyCode']} + response = requests.get('http://localhost:4000/api/feed/forex/EUR-USD') + if (response.status_code != 200): + logger.warning("Data server not responding properly") + except requests.exceptions.ConnectionError: + logger.error("Cannot connect to data server") - Results: {backtest_results_str} - - Provide a comprehensive analysis including: - 1. Strategy overview and approach - 2. Performance metrics analysis - 3. Risk assessment - 4. Potential improvements - 5. Market conditions suitability - """ - - print("[backtest_strategy] Requesting AI analysis") - messages = [ - {"role": "system", "content": "You are an expert trading strategy analyst."}, - {"role": "user", "content": analysis_prompt} - ] - analysis = get_gemini_response(messages) - print(f"[backtest_strategy] Received AI analysis of length: {len(analysis)}") - - # Save backtest results - backtest_result = save_backtest_result_to_db(strategy.id, backtest_results_str, analysis) - print(f"[backtest_strategy] Saved backtest results with ID: {backtest_result.id}") - - return jsonify({ - "strategy_id": strategy.id, - "backtestResults": backtest_results_str, - "analysis": analysis, - "error": None - }) - - except Exception as e: - error_trace = traceback.format_exc() - print(f"[backtest_strategy] ERROR: {str(e)}") - print(f"[backtest_strategy] Traceback:\n{error_trace}") - return jsonify({ - "error": str(e), - "error": str(e), - "traceback": error_trace, - "backtestResults": None, - "analysis": None - }), 500 - -@app.route('/api/v1/indicators', methods=['GET']) -def get_indicators(): - """Endpoint to retrieve all indicators from the database""" - try: - indicators = Indicator.query.all() - indicator_list = [ - { - "id": indicator.id, - "name": indicator.name, - "description": indicator.description, - "parameters": indicator.parameters, - } - for indicator in indicators - ] - return jsonify(indicator_list) - except Exception as e: - print(f"[get_indicators] ERROR: {str(e)}") - print(f"[get_indicators] Traceback: {traceback.format_exc()}") - return jsonify({"error": "Failed to retrieve indicators"}), 500 - -@app.route('/backtest') -def backtest_page(): - return render_template('backtest.html') + return render_template( + 'charts_components/charts_container.html', + data_server_url='http://localhost:4000' + ) @app.route('/api/v1/account_details', methods=['GET']) @login_required @@ -704,49 +484,6 @@ def save_conversation_to_db(user_message, assistant_response, broker_name=None): print(f"[save_conversation_to_db] Traceback: {traceback.format_exc()}") raise -def save_strategy_to_db(data): - """Save strategy to database with error logging""" - print(f"[save_strategy_to_db] Attempting to save strategy: {data['strategyName']}") - try: - strategy = Strategy( - user_id=1, # TODO: Replace with actual user ID from session - name=data['strategyName'], - description=f"Strategy created for {data['currencyPair']} on {data['timeFrame']} timeframe", - algo_code=data['strategyCode'], - currency_pair=data['currencyPair'], - time_frame=data['timeFrame'], - is_private=True - ) - db.session.add(strategy) - db.session.commit() - print(f"[save_strategy_to_db] Successfully saved strategy ID: {strategy.id}") - return strategy - except Exception as e: - db.session.rollback() - print(f"[save_strategy_to_db] ERROR: Failed to save strategy: {str(e)}") - print(f"[save_strategy_to_db] Traceback: {traceback.format_exc()}") - raise - -def save_backtest_result_to_db(strategy_id, results_str, analysis): - """Save backtest results to database with error logging""" - print(f"[save_backtest_result_to_db] Saving results for strategy ID: {strategy_id}") - try: - result = BacktestResult( - strategy_id=strategy_id, - results=results_str, - analysis=analysis, - created_at=datetime.utcnow() - ) - db.session.add(result) - db.session.commit() - print(f"[save_backtest_result_to_db] Successfully saved backtest result ID: {result.id}") - return result - except Exception as e: - db.session.rollback() - print(f"[save_backtest_result_to_db] ERROR: Failed to save backtest result: {str(e)}") - print(f"[save_backtest_result_to_db] Traceback: {traceback.format_exc()}") - raise - @app.route('/api/v1/store_conversation', methods=['POST']) def store_conversation(): """Store conversation endpoint with detailed logging""" @@ -760,96 +497,14 @@ def store_conversation(): print(f"[store_conversation] Traceback:\n{error_trace}") return jsonify({ 'success': False, - 'error': str(e), + 'error': str(e), 'traceback': error_trace }), 500 -@app.route('/api/v1/querystrategyagent', methods=['POST']) -@login_required -def query_strategy_agent(): - """ - Endpoint to handle code generation requests using the Gemini AI agent. - """ - # Check if the user is authenticated - if not current_user.is_authenticated: - return jsonify({"error": "User not authenticated"}), 401 - - data = request.get_json() - user_prompt = data.get('prompt') - - if not user_prompt: - return jsonify({"error": "Prompt not provided"}), 400 - - try: - system_prompt = f""" -You are an expert trading strategy and indicator coding assistant. -You are integrated into the TradingPal backtesting platform. -Users will provide requests in natural language through a web interface. -Your task is to generate or modify Python code for trading strategies or indicators based on user requests. - -**Important Instructions:** - -1. **Generate Valid Python Code:** Ensure the generated code is syntactically correct, executable Python code. -2. **Follow Coding Standards:** Adhere to PEP 8 style guidelines for code formatting. -3. **Use Existing Functions:** Utilize the available indicator calculation functions from `indicators.py` (e.g., `calculate_rsi`, `calculate_macd`, etc.) whenever possible. -4. **Provide Complete Code:** Generate complete code snippets that can be directly copied and pasted into the strategy code editor. -5. **Handle Errors Gracefully:** If the user's request is unclear or cannot be fulfilled, provide a helpful error message instead of generating invalid code. -6. **Focus on Code Generation:** Your primary role is to generate code. Avoid providing explanations or commentary unless specifically requested by the user. -7. **Available functions:** You have access to the following functions in `indicators.py` for calculating technical indicators: - - `calculate_rsi(series, window)` - - `calculate_macd(series, window_fast, window_slow, window_signal)` - - `calculate_bollinger_bands(series, window)` - - `calculate_atr(high, low, close, window)` - - `calculate_adx(high, low, close, window)` - - `calculate_obv(close, volume)` - - `load_all_indicators()` - - `save_indicator_to_db(name, description, calculation_code, parameters)` - - **Example Interaction:** - - User: "Create a strategy that buys when the RSI is below 30 and sells when it's above 70. Use a 14-day window for RSI." - - Assistant: - ```python - import pandas as pd - from indicators import calculate_rsi - - def strategy(df): - # Calculate RSI with a 14-day window - df['rsi'] = calculate_rsi(df['close'], 14) - - # Generate trading signals - df['signal'] = 0 # Initialize signal column - df.loc[df['rsi'] < 30, 'signal'] = 1 # Buy signal - df.loc[df['rsi'] > 70, 'signal'] = -1 # Sell signal - - return df - ``` - """ - messages = [ - {"role": "system", "content": system_prompt}, - {"role": "user", "content": user_prompt} - ] - ai_response = get_gemini_response(messages) - - print(f"[query_strategy_agent] Received prompt: {user_prompt}") - print(f"[query_strategy_agent] AI response: {ai_response}") - - return jsonify({"response": ai_response}) - - except Exception as e: - error_trace = traceback.format_exc() - print(f"[query_strategy_agent] ERROR: {str(e)}") - print(f"[query_strategy_agent] Traceback:\n{error_trace}") - return jsonify({ - "error": "An error occurred while processing your request.", - "traceback": error_trace - }), 500 if __name__ == '__main__': with app.app_context(): db.create_all() app.register_blueprint(auth_bp) - app.register_blueprint(trading_bp) - app.register_blueprint(user_config_bp) - app.run(port=5000, debug=True) + app.register_blueprint(user_config_bp) + app.run(port=5000, debug=True) \ No newline at end of file diff --git a/models.py b/models.py index c29436f..dc4c979 100644 --- a/models.py +++ b/models.py @@ -1,5 +1,6 @@ from flask_sqlalchemy import SQLAlchemy from flask_login import UserMixin +import pandas as pd from werkzeug.security import generate_password_hash, check_password_hash from datetime import datetime import json @@ -20,7 +21,6 @@ class User(UserMixin, db.Model): broker_configs = db.relationship('BrokerConfig', backref='user', lazy=True, cascade='all, delete-orphan') trading_preferences = db.relationship('TradingPreferences', backref='user', lazy=True, uselist=False) conversations = db.relationship('Conversation', backref='user', lazy=True, cascade='all, delete-orphan') - strategies = db.relationship('Strategy', backref='user', lazy=True, cascade='all, delete-orphan') notifications = db.relationship('Notification', backref='user', lazy=True, cascade='all, delete-orphan') def set_password(self, password): @@ -148,46 +148,6 @@ class Conversation(db.Model): broker_context = db.Column(db.String(20)) # Track which broker was active timestamp = db.Column(db.DateTime, default=datetime.utcnow) -class Strategy(db.Model): - id = db.Column(db.Integer, primary_key=True) - user_id = db.Column(db.Integer, db.ForeignKey('user.id'), nullable=False) - name = db.Column(db.String(100), nullable=False) - description = db.Column(db.String(500)) - is_private = db.Column(db.Boolean, default=True) - algo_code = db.Column(db.Text) - currency_pair = db.Column(db.String(50)) - time_frame = db.Column(db.String(50)) - broker_type = db.Column(db.String(20)) # Strategy specific to broker - created_at = db.Column(db.DateTime, default=datetime.utcnow) - updated_at = db.Column(db.DateTime, onupdate=datetime.utcnow) - - backtest_results = db.relationship('BacktestResult', backref='strategy', lazy=True, cascade='all, delete-orphan') - reviews = db.relationship('Review', backref='strategy', lazy=True, cascade='all, delete-orphan') - comments = db.relationship('Comment', backref='strategy', lazy=True, cascade='all, delete-orphan') - -class BacktestResult(db.Model): - id = db.Column(db.Integer, primary_key=True) - strategy_id = db.Column(db.Integer, db.ForeignKey('strategy.id'), nullable=False) - broker_type = db.Column(db.String(20)) - results = db.Column(db.Text) - analysis = db.Column(db.Text) - created_at = db.Column(db.DateTime, default=datetime.utcnow) - -class Review(db.Model): - id = db.Column(db.Integer, primary_key=True) - strategy_id = db.Column(db.Integer, db.ForeignKey('strategy.id'), nullable=False) - reviewer_id = db.Column(db.Integer, db.ForeignKey('user.id'), nullable=False) - stars = db.Column(db.Integer) - content = db.Column(db.String(500)) - created_at = db.Column(db.DateTime, default=datetime.utcnow) - -class Comment(db.Model): - id = db.Column(db.Integer, primary_key=True) - strategy_id = db.Column(db.Integer, db.ForeignKey('strategy.id'), nullable=False) - author_id = db.Column(db.Integer, db.ForeignKey('user.id'), nullable=False) - content = db.Column(db.String(500)) - created_at = db.Column(db.DateTime, default=datetime.utcnow) - class Indicator(db.Model): id = db.Column(db.Integer, primary_key=True) name = db.Column(db.String(100), unique=True, nullable=False) diff --git a/polygon_feed.log b/polygon_feed.log new file mode 100644 index 0000000..159b2fa --- /dev/null +++ b/polygon_feed.log @@ -0,0 +1,90 @@ +2025-01-29 07:04:11,288 - werkzeug - INFO - WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://127.0.0.1:4000 +2025-01-29 07:04:11,289 - werkzeug - INFO - Press CTRL+C to quit +2025-01-29 07:04:11,290 - werkzeug - INFO - * Restarting with stat +2025-01-29 07:04:11,394 - websocket - INFO - Websocket connected +2025-01-29 07:04:11,396 - polygon_feed - INFO - WebSocket connection established +2025-01-29 07:04:11,396 - polygon_feed - INFO - Subscribed to forex EUR-USD +2025-01-29 07:04:11,397 - polygon_feed - INFO - Subscribed to forex GBP-USD +2025-01-29 07:04:11,397 - polygon_feed - INFO - Subscribed to crypto BTC-USD +2025-01-29 07:04:11,398 - polygon_feed - INFO - Subscribed to crypto ETH-USD +2025-01-29 07:04:11,552 - werkzeug - WARNING - * Debugger is active! +2025-01-29 07:04:11,572 - werkzeug - INFO - * Debugger PIN: 170-980-003 +2025-01-29 07:04:11,813 - websocket - INFO - Websocket connected +2025-01-29 07:04:11,813 - polygon_feed - INFO - WebSocket connection established +2025-01-29 07:04:11,813 - polygon_feed - INFO - Subscribed to forex EUR-USD +2025-01-29 07:04:11,813 - polygon_feed - INFO - Subscribed to forex GBP-USD +2025-01-29 07:04:11,814 - polygon_feed - INFO - Subscribed to crypto BTC-USD +2025-01-29 07:04:11,814 - polygon_feed - INFO - Subscribed to crypto ETH-USD +2025-01-29 07:04:13,485 - polygon_feed - ERROR - Error saving feed data: Expecting value: line 1 column 1 (char 0) +2025-01-29 07:04:14,014 - polygon_feed - INFO - WebSocket closed: 1008 - +2025-01-29 07:04:42,699 - werkzeug - INFO - * Detected change in '/workspaces/Trading_Pal-main/main.py', reloading +2025-01-29 07:04:42,731 - werkzeug - INFO - * Restarting with stat +2025-01-29 07:04:42,950 - werkzeug - WARNING - * Debugger is active! +2025-01-29 07:04:42,950 - werkzeug - INFO - * Debugger PIN: 170-980-003 +2025-01-29 07:04:43,016 - websocket - INFO - Websocket connected +2025-01-29 07:04:43,016 - polygon_feed - INFO - WebSocket connection established +2025-01-29 07:04:43,017 - polygon_feed - INFO - Subscribed to forex EUR-USD +2025-01-29 07:04:43,017 - polygon_feed - INFO - Subscribed to forex GBP-USD +2025-01-29 07:04:43,017 - polygon_feed - INFO - Subscribed to crypto BTC-USD +2025-01-29 07:04:43,017 - polygon_feed - INFO - Subscribed to crypto ETH-USD +2025-01-29 07:06:30,440 - werkzeug - INFO - WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead. + * Running on http://127.0.0.1:4000 +2025-01-29 07:06:30,441 - werkzeug - INFO - Press CTRL+C to quit +2025-01-29 07:06:30,441 - werkzeug - INFO - * Restarting with stat +2025-01-29 07:06:30,527 - websocket - INFO - Websocket connected +2025-01-29 07:06:30,528 - polygon_feed - INFO - WebSocket connection established +2025-01-29 07:06:30,528 - polygon_feed - INFO - Subscribed to forex EUR-USD +2025-01-29 07:06:30,529 - polygon_feed - INFO - Subscribed to forex GBP-USD +2025-01-29 07:06:30,529 - polygon_feed - INFO - Subscribed to crypto BTC-USD +2025-01-29 07:06:30,530 - polygon_feed - INFO - Subscribed to crypto ETH-USD +2025-01-29 07:06:30,669 - werkzeug - WARNING - * Debugger is active! +2025-01-29 07:06:30,669 - werkzeug - INFO - * Debugger PIN: 170-980-003 +2025-01-29 07:06:30,749 - websocket - INFO - Websocket connected +2025-01-29 07:06:30,750 - polygon_feed - INFO - WebSocket connection established +2025-01-29 07:06:30,750 - polygon_feed - INFO - Subscribed to forex EUR-USD +2025-01-29 07:06:30,750 - polygon_feed - INFO - Subscribed to forex GBP-USD +2025-01-29 07:06:30,750 - polygon_feed - INFO - Subscribed to crypto BTC-USD +2025-01-29 07:06:30,751 - polygon_feed - INFO - Subscribed to crypto ETH-USD +2025-01-29 07:06:31,686 - polygon_feed - ERROR - Error saving feed data: Expecting value: line 1 column 1 (char 0) +2025-01-29 07:06:35,014 - polygon_feed - INFO - WebSocket closed: 1008 - +2025-01-29 07:08:10,037 - werkzeug - INFO - * Detected change in '/workspaces/Trading_Pal-main/data_server.py', reloading +2025-01-29 07:08:10,066 - werkzeug - INFO - * Restarting with stat +2025-01-29 07:08:10,280 - werkzeug - WARNING - * Debugger is active! +2025-01-29 07:08:10,280 - werkzeug - INFO - * Debugger PIN: 170-980-003 +2025-01-29 07:08:10,523 - websocket - INFO - Websocket connected +2025-01-29 07:08:10,523 - polygon_feed - INFO - WebSocket connection established +2025-01-29 07:08:11,524 - polygon_feed - INFO - Subscribed to forex EUR-USD +2025-01-29 07:08:11,524 - polygon_feed - INFO - Subscribed to forex GBP-USD +2025-01-29 07:08:11,524 - polygon_feed - INFO - Subscribed to crypto BTC-USD +2025-01-29 07:08:11,525 - polygon_feed - INFO - Subscribed to crypto ETH-USD +2025-01-29 07:15:38,964 - werkzeug - INFO - * Detected change in '/workspaces/Trading_Pal-main/main.py', reloading +2025-01-29 07:15:39,010 - werkzeug - INFO - * Restarting with stat +2025-01-29 07:15:39,364 - werkzeug - WARNING - * Debugger is active! +2025-01-29 07:15:39,365 - werkzeug - INFO - * Debugger PIN: 170-980-003 +2025-01-29 07:15:39,444 - websocket - INFO - Websocket connected +2025-01-29 07:15:39,445 - polygon_feed - INFO - WebSocket connection established +2025-01-29 07:15:40,445 - polygon_feed - INFO - Subscribed to forex EUR-USD +2025-01-29 07:15:40,446 - polygon_feed - INFO - Subscribed to forex GBP-USD +2025-01-29 07:15:40,446 - polygon_feed - INFO - Subscribed to crypto BTC-USD +2025-01-29 07:15:40,446 - polygon_feed - INFO - Subscribed to crypto ETH-USD +2025-01-29 07:19:40,260 - werkzeug - INFO - * Detected change in '/workspaces/Trading_Pal-main/main.py', reloading +2025-01-29 07:19:40,357 - werkzeug - INFO - * Restarting with stat +2025-01-29 07:19:40,727 - werkzeug - WARNING - * Debugger is active! +2025-01-29 07:19:40,727 - werkzeug - INFO - * Debugger PIN: 170-980-003 +2025-01-29 07:19:40,808 - websocket - INFO - Websocket connected +2025-01-29 07:19:40,809 - polygon_feed - INFO - WebSocket connection established +2025-01-29 07:19:41,810 - polygon_feed - INFO - Subscribed to forex EUR-USD +2025-01-29 07:19:41,810 - polygon_feed - INFO - Subscribed to forex GBP-USD +2025-01-29 07:19:41,811 - polygon_feed - INFO - Subscribed to crypto BTC-USD +2025-01-29 07:19:41,811 - polygon_feed - INFO - Subscribed to crypto ETH-USD +2025-01-29 07:23:39,646 - werkzeug - INFO - * Detected change in '/workspaces/Trading_Pal-main/main.py', reloading +2025-01-29 07:23:39,674 - werkzeug - INFO - * Restarting with stat +2025-01-29 07:23:39,890 - werkzeug - WARNING - * Debugger is active! +2025-01-29 07:23:39,891 - werkzeug - INFO - * Debugger PIN: 170-980-003 +2025-01-29 07:23:39,984 - websocket - INFO - Websocket connected +2025-01-29 07:23:39,984 - polygon_feed - INFO - WebSocket connection established +2025-01-29 07:23:40,985 - polygon_feed - INFO - Subscribed to forex EUR-USD +2025-01-29 07:23:40,986 - polygon_feed - INFO - Subscribed to forex GBP-USD +2025-01-29 07:23:40,986 - polygon_feed - INFO - Subscribed to crypto BTC-USD +2025-01-29 07:23:40,986 - polygon_feed - INFO - Subscribed to crypto ETH-USD diff --git a/prompts/big_script_edits.md b/prompts/big_script_edits.md new file mode 100644 index 0000000..2a088ed --- /dev/null +++ b/prompts/big_script_edits.md @@ -0,0 +1,27 @@ +now lets do this for scripts that has over 400 lines dont edit the file directly, just provide the full function, route, and or sections that need to be updated like this function name of existing function"def get_broker" then the full function implemented like so " def get_broker(self, broker_type=None): + """Get a specific broker or the current broker""" + try: + if not self.brokers: + raise ValueError("No brokers initialized. Please configure broker credentials.") + + if broker_type and broker_type in self.brokers: + return self.brokers[broker_type] + + if self.current_broker and self.current_broker in self.brokers: + return self.brokers[self.current_broker] + + # Prioritize Oanda if available + if 'oanda' in self.brokers: + return self.brokers['oanda'] + + # Default to first available broker + if self.brokers: + first_broker = next(iter(self.brokers.values())) + return first_broker + + raise ValueError("No available brokers found") + + except Exception as e: + print(f"Error getting broker: {e}") + raise +" with any new imports and pip installs bellow if needed for new functions and routes then just tell me what file to add it with the full funtion follow these instructions moving forward, but for smaller files, provide the full script editing the file directly. using the tool. \ No newline at end of file diff --git a/static/js/account.js b/static/js/account.js index 5a3a568..82b23bd 100644 --- a/static/js/account.js +++ b/static/js/account.js @@ -1,240 +1,229 @@ class AccountManager { constructor() { - this.accountElements = { - balance: document.getElementById('user-balance'), - leverage: document.getElementById('user-leverage'), - positions: document.getElementById('user-open-positions'), - trades: document.getElementById('user-open-trades'), - margin: document.getElementById('user-available-margin'), - pl: document.getElementById('user-pl') - }; + console.group('AccountManager Initialization'); + console.log('Starting AccountManager initialization...'); - // Initialize broker toggles with animation support - this.brokerToggles = document.querySelectorAll('.broker-toggle'); this.currentBroker = localStorage.getItem('selectedBroker') || 'oanda'; + console.log('Initial broker:', this.currentBroker); - // Settings modal elements - this.settingsModal = document.getElementById('settings-modal'); - this.settingsBtn = document.getElementById('settings-btn'); - this.closeSettingsBtn = document.getElementById('close-settings'); + // Update element IDs to match HTML + this.accountStatusElement = document.getElementById('broker-badge'); + this.accountBalanceElement = document.getElementById('user-balance'); + this.plElement = document.getElementById('user-pl'); + this.positionsElement = document.getElementById('user-open-positions'); + this.marginElement = document.getElementById('user-available-margin'); + this.loadingIndicator = document.getElementById('loading-indicator'); - this.initializeEventListeners(); - this.loadAccountDetails(); + // Log DOM element availability + console.log('DOM Elements loaded:', { + accountStatus: !!this.accountStatusElement, + accountBalance: !!this.accountBalanceElement, + pl: !!this.plElement, + positions: !!this.positionsElement, + margin: !!this.marginElement, + loadingIndicator: !!this.loadingIndicator + }); - // Auto-refresh with fade transition - setInterval(() => this.loadAccountDetails(), 30000); + // Initialize broker toggles + this.brokerToggles = { + oanda: document.getElementById('oanda-toggle'), + alpaca: document.getElementById('alpaca-toggle') + }; - this.checkSession(); - setInterval(() => this.checkSession(), 60000); - } - - initializeEventListeners() { - this.brokerToggles.forEach(toggle => { - toggle.addEventListener('click', () => { - const broker = toggle.id.split('-')[0]; - this.switchBroker(broker); - }); - }); - - this.settingsBtn.addEventListener('click', () => { - gsap.to(this.settingsModal, { - display: 'flex', - opacity: 1, - duration: 0.3, - ease: 'power2.out' - }); + console.log('Broker toggles initialized:', { + oanda: !!this.brokerToggles.oanda, + alpaca: !!this.brokerToggles.alpaca }); - - this.closeSettingsBtn.addEventListener('click', () => this.hideSettingsModal()); - this.settingsModal.addEventListener('click', (e) => { - if (e.target === this.settingsModal) this.hideSettingsModal(); - }); + this.initialize(); + console.groupEnd(); } - hideSettingsModal() { - gsap.to(this.settingsModal, { - opacity: 0, - duration: 0.3, - ease: 'power2.in', - onComplete: () => { - this.settingsModal.style.display = 'none'; + initialize() { + // Load initial account details + this.loadAccountDetails(); + + // Set up broker toggle listeners + Object.keys(this.brokerToggles).forEach(broker => { + if (this.brokerToggles[broker]) { + this.brokerToggles[broker].addEventListener('click', () => { + this.switchBroker(broker); + }); } }); } - showLoading() { - const loadingIndicator = document.getElementById('account-loading-indicator'); - if (loadingIndicator) { - loadingIndicator.classList.remove('hidden'); - } - } - - hideLoading() { - const loadingIndicator = document.getElementById('account-loading-indicator'); - if (loadingIndicator) { - loadingIndicator.classList.add('hidden'); - } - } - async switchBroker(broker) { - if (broker !== this.currentBroker) { - this.showLoading(); - try { - // Update UI first - this.updateBrokerBadge(broker); - this.clearAccountDetails(); - - // Switch broker and load new details - this.currentBroker = broker; - localStorage.setItem('selectedBroker', broker); - await this.loadAccountDetails(); - - // Update broker toggle states - this.updateBrokerToggles(); - - } catch (error) { - console.error('Error switching broker:', error); - this.showError('Failed to switch broker'); - } finally { - this.hideLoading(); - } + console.group(`Switching Broker to ${broker}`); + console.time('brokerSwitch'); + + try { + console.log(`Current broker: ${this.currentBroker}, New broker: ${broker}`); + + this.currentBroker = broker; + localStorage.setItem('selectedBroker', broker); + console.log('Local storage updated'); + + this.updateBrokerToggles(); + console.log('Broker toggles updated'); + + await this.loadAccountDetails(); + console.log('Account details reloaded for new broker'); + + } catch (error) { + console.error('Broker switch failed:', { + error: error, + targetBroker: broker, + currentState: { + currentBroker: this.currentBroker, + accountDetails: this.accountDetails + } + }); + this.showError(`Failed to switch to ${broker}: ${error.message}`); + } finally { + console.timeEnd('brokerSwitch'); + console.groupEnd(); } } - updateBrokerBadge(broker) { - const badge = document.getElementById('broker-badge'); - if (badge) { - badge.textContent = broker.toUpperCase(); - badge.className = `px-2 py-0.5 text-xs rounded-full ${ - broker === 'oanda' ? - 'bg-primary-500/20 text-primary-300' : - 'bg-secondary-500/20 text-secondary-300' - }`; - } + updateBrokerToggles() { + Object.keys(this.brokerToggles).forEach(broker => { + const toggle = this.brokerToggles[broker]; + if (toggle) { + toggle.classList.toggle('active', broker === this.currentBroker); + toggle.classList.toggle('bg-trading-accent', broker === this.currentBroker); + } + }); } - clearAccountDetails() { - Object.values(this.accountElements).forEach(el => { - if (el) el.textContent = '--'; - }); + showError(message) { + const notification = document.createElement('div'); + notification.className = 'fixed bottom-4 right-4 bg-red-500 text-white px-4 py-2 rounded-lg shadow-lg z-50'; + notification.textContent = message; + document.body.appendChild(notification); + setTimeout(() => notification.remove(), 5000); } async loadAccountDetails() { + console.group(`Loading Account Details for ${this.currentBroker}`); + console.time('accountDetailsLoad'); + try { + console.log('Fetching account details...'); + this.showLoading(); + const response = await axios.get(`/api/v1/account_details?broker=${this.currentBroker}`); - const data = response.data; + console.log('Server response:', response.data); - if (data.error || !data.account) { - throw new Error(data.error || 'Invalid account data'); + if (response.data.error) { + if (response.data.need_configuration) { + console.log('Broker needs configuration'); + if (window.userConfigManager) { + window.userConfigManager.showModal(); + } + } + throw new Error(response.data.error); } - - this.updateAccountDisplay(data.account); + + this.accountDetails = response.data.account; + console.log('Account details received:', this.accountDetails); + + this.updateAccountDisplay(); + console.log('Account display updated successfully'); } catch (error) { - if (error.response?.data?.need_configuration) { - this.displayError('Please configure your broker settings'); - gsap.to(this.settingsModal, { - display: 'flex', - opacity: 1, - duration: 0.3 - }); - } else { - this.displayError(error.response?.data?.error || 'Failed to load account details'); - } + console.error('Failed to load account details:', { + error: error, + message: error.message, + broker: this.currentBroker, + timestamp: new Date().toISOString() + }); + this.showError(error.response?.data?.error || error.message); + + // Clear account details if load failed + this.accountDetails = null; + this.updateAccountDisplay(); + } finally { + this.hideLoading(); + console.timeEnd('accountDetailsLoad'); + console.groupEnd(); } } - updateAccountDisplay(data) { - if (!data) return; + updateAccountDisplay() { + console.group('Updating Account Display'); + console.log('Current account details:', this.accountDetails); + + if (!this.accountDetails) { + console.warn('No account details available'); + console.groupEnd(); + return; + } - const updateElement = (element, value, prefix = '', suffix = '') => { - const currentValue = parseFloat(element.textContent.split(' ')[1]) || 0; - const parsedValue = parseFloat(value); - if (isNaN(parsedValue)) { - element.textContent = `${prefix}--${suffix}`; - return; + try { + // Update broker badge + if (this.accountStatusElement) { + const status = this.currentBroker.toUpperCase(); + console.log('Updating broker badge:', status); + this.accountStatusElement.textContent = status; } - gsap.to({value: currentValue}, { - value: parsedValue, - duration: 1, - ease: 'power2.out', - onUpdate: function() { - element.textContent = `${prefix}${this.targets()[0].value.toFixed(2)}${suffix}`; + + // Update balance + if (this.accountBalanceElement) { + let balance = ''; + if (this.currentBroker === 'oanda') { + balance = `${this.accountDetails.account?.balance || 0} ${this.accountDetails.account?.currency || 'USD'}`; + } else if (this.currentBroker === 'alpaca') { + balance = `$${parseFloat(this.accountDetails.balance || 0).toFixed(2)}`; } - }); - }; + console.log('Updating balance:', balance); + this.accountBalanceElement.textContent = balance; + } - updateElement(this.accountElements.balance, data.balance, 'Balance: ', ' USD'); - updateElement(this.accountElements.leverage, data.marginRate || 0, 'Leverage: ', 'x'); - - gsap.to(this.accountElements.positions, { - textContent: `Open Positions: ${data.openPositionCount || 0}`, - duration: 0.3, - ease: 'power2.out' - }); - - gsap.to(this.accountElements.trades, { - textContent: `Open Trades: ${data.openTradeCount || 0}`, - duration: 0.3, - ease: 'power2.out' - }); - - updateElement(this.accountElements.margin, data.marginAvailable, 'Available Margin: ', ' USD'); - updateElement(this.accountElements.pl, data.pl, 'Profit/Loss: ', ' USD'); - } + // Update P/L + if (this.plElement) { + const pl = this.currentBroker === 'oanda' + ? this.accountDetails.account?.pl || '0.00' + : this.accountDetails.pl || '0.00'; + this.plElement.textContent = `$${parseFloat(pl).toFixed(2)}`; + } - async checkSession() { - try { - const response = await axios.get('/auth/session/check'); - if (response.data.authenticated) { - if (response.data.selected_broker) { - this.currentBroker = response.data.selected_broker; - localStorage.setItem('selectedBroker', this.currentBroker); - this.updateBrokerToggle(); - } - await this.loadAccountDetails(); - } else { - window.location.href = '/auth/login'; + // Update positions count + if (this.positionsElement) { + const positions = this.currentBroker === 'oanda' + ? this.accountDetails.account?.openPositionCount || 0 + : this.accountDetails.openPositionCount || 0; + this.positionsElement.textContent = positions; } - } catch (error) { - if (error.response?.status === 401) { - window.location.href = '/auth/login'; + + // Update margin + if (this.marginElement) { + const margin = this.currentBroker === 'oanda' + ? this.accountDetails.account?.marginAvailable || 0 + : this.accountDetails.marginAvailable || 0; + this.marginElement.textContent = `$${parseFloat(margin).toFixed(2)}`; } + } catch (error) { + console.error('Error updating account display:', error); } + + console.groupEnd(); } - displayError(message) { - // Safely clear account values first - if (this.accountElements) { - Object.values(this.accountElements).forEach(element => { - if (element && element.textContent) { - const label = element.textContent.split(':')[0] || ''; - element.textContent = label ? `${label}: --` : '--'; - } - }); + showLoading() { + if (this.loadingIndicator) { + this.loadingIndicator.classList.remove('hidden'); + } + } + + hideLoading() { + if (this.loadingIndicator) { + this.loadingIndicator.classList.add('hidden'); } - - // Show error notification - const notification = document.createElement('div'); - notification.className = 'fixed bottom-4 right-4 bg-red-500 text-white px-4 py-2 rounded-lg shadow-lg z-50'; - notification.textContent = message; - document.body.appendChild(notification); - setTimeout(() => notification.remove(), 5000); } } // Initialize account manager when DOM is loaded document.addEventListener('DOMContentLoaded', () => { window.accountManager = new AccountManager(); - window.accountManagerInitialized = true; - if (window.userConfigManager) { - window.userConfigManager.loadBrokerSettingsOnStartup(); - } }); - - if (window.userConfigManager) { - } - -// Make loadAccountDetails available globally for broker toggle -window.loadAccountDetails = () => window.accountManager.loadAccountDetails(); diff --git a/static/js/backtest.js b/static/js/backtest.js deleted file mode 100644 index 8b6629e..0000000 --- a/static/js/backtest.js +++ /dev/null @@ -1,469 +0,0 @@ -class BacktestManager { - constructor() { - this.elements = { - strategyForm: document.getElementById('strategyForm'), - strategyList: document.getElementById('strategyList'), - backtestResults: document.getElementById('backtestResults'), - assistantResponse: document.getElementById('assistantResponse'), - searchInput: document.getElementById('searchStrategies'), - loadingIndicator: document.getElementById('loading-indicator'), - plotContainer: document.getElementById('plot-container'), - strategyCode: document.getElementById('strategyCode'), - indicatorSelect: document.getElementById('indicatorSelect') - }; - - this.setupEventListeners(); - this.loadSavedStrategies(); - this.loadStrategyFromLocalStorage(); - this.initializeCodeEditor(); - this.loadIndicators(); - this.setupAiAgentButton(); - } - - setupAiAgentButton() { - const aiAgentBtn = document.getElementById('aiAgentBtn'); - - aiAgentBtn.addEventListener('click', async () => { - const strategyCode = this.elements.strategyCode.value; - if (!strategyCode) { - this.showNotification('Please enter your strategy code.', 'error'); - return; - } - - this.showNotification('Sending code to AI agent for processing...', 'info'); - - try { - const response = await axios.post('/api/v1/querystrategyagent', { prompt: strategyCode }); - const data = response.data; - - if (data.error) { - throw new Error(data.error); - } - - // Update the strategy code editor with the AI's response - this.elements.strategyCode.value = data.response; - this.showNotification('AI response received and code updated.', 'success'); - } catch (error) { - this.showNotification(error.message, 'error'); - } - }); - } - - setupEventListeners() { - this.elements.strategyForm.addEventListener('submit', (e) => this.handleSubmit(e)); - this.elements.searchInput.addEventListener('input', () => this.filterStrategies()); - - const inputs = this.elements.strategyForm.querySelectorAll('input, textarea'); - inputs.forEach(input => { - input.addEventListener('input', () => this.validateInput(input)); - input.addEventListener('focus', () => this.handleInputFocus(input)); - input.addEventListener('blur', () => this.handleInputBlur(input)); - }); - } - - initializeCodeEditor() { - const copyBtn = this.elements.strategyCode.parentElement.querySelector('.fa-copy').parentElement; - const expandBtn = this.elements.strategyCode.parentElement.querySelector('.fa-expand').parentElement; - - copyBtn.addEventListener('click', () => { - navigator.clipboard.writeText(this.elements.strategyCode.value); - this.showNotification('Code copied to clipboard', 'success'); - }); - - expandBtn.addEventListener('click', () => { - this.toggleFullscreenEditor(); - }); - } - - toggleFullscreenEditor() { - const editorContainer = this.elements.strategyCode.parentElement; - const isFullscreen = editorContainer.classList.contains('fixed'); - - if (isFullscreen) { - gsap.to(editorContainer, { - scale: 1, - opacity: 0, - duration: 0.3, - onComplete: () => { - editorContainer.classList.remove('fixed', 'inset-4', 'z-50', 'bg-dark-900/95', 'p-6'); - gsap.set(editorContainer, { clearProps: 'all' }); - } - }); - } else { - editorContainer.classList.add('fixed', 'inset-4', 'z-50', 'bg-dark-900/95', 'p-6'); - gsap.from(editorContainer, { - scale: 0.95, - opacity: 0, - duration: 0.3 - }); - } - } - - async handleSubmit(e) { - e.preventDefault(); - - if (!this.validateForm()) { - this.showNotification('Please fill in all required fields correctly', 'error'); - return; - } - - const formData = { - strategyName: this.elements.strategyForm.querySelector('#strategyName').value, - authorName: this.elements.strategyForm.querySelector('#authorName').value, - strategyCode: this.elements.strategyCode.value, - currencyPair: this.elements.strategyForm.querySelector('#currencyPair').value, - timeFrame: this.elements.strategyForm.querySelector('#timeFrame').value, - indicator: this.elements.indicatorSelect.value - }; - - this.showLoadingIndicator(); - - try { - const response = await axios.post('/api/v1/backtest_strategy', formData); - const data = response.data; - - if (data.error) { - throw new Error(data.error); - } - - await this.displayResults(data); - await this.saveStrategy(formData); - await this.loadSavedStrategies(); - - } catch (error) { - this.showNotification(error.message, 'error'); - } finally { - this.hideLoadingIndicator(); - } - } - - validateForm() { - let isValid = true; - const requiredFields = ['strategyName', 'authorName', 'strategyCode', 'currencyPair', 'timeFrame']; - - requiredFields.forEach(fieldId => { - const field = this.elements.strategyForm.querySelector(`#${fieldId}`); - if (!field.value.trim()) { - isValid = false; - this.highlightInvalidField(field); - } else { - this.resetFieldValidation(field); - } - }); - - return isValid; - } - - highlightInvalidField(field) { - gsap.to(field, { - borderColor: 'rgba(239, 68, 68, 0.5)', - duration: 0.3 - }); - } - - resetFieldValidation(field) { - gsap.to(field, { - borderColor: 'rgba(0, 144, 255, 0.5)', - duration: 0.3 - }); - } - - async displayResults(data) { - const results = this.elements.backtestResults; - results.classList.remove('hidden'); - - gsap.set(results, { opacity: 0, y: 20 }); - - // Clear previous results - const metricsContainer = results.querySelector('.grid'); - metricsContainer.innerHTML = ''; - - // Add new metric cards with animations - Object.entries(data.backtestResults).forEach(([key, value], index) => { - const card = this.createMetricCard(key, value); - metricsContainer.appendChild(card); - - gsap.from(card, { - opacity: 0, - y: 20, - duration: 0.3, - delay: index * 0.1 - }); - }); - - // Update AI analysis with animation - if (data.analysis) { - this.elements.assistantResponse.innerHTML = marked(data.analysis); - gsap.from(this.elements.assistantResponse, { - opacity: 0, - y: 20, - duration: 0.3, - delay: 0.3 - }); - } - - // Display plot if available - if (data.plotUrl) { - this.elements.plotContainer.innerHTML = ` - Backtest Plot - `; - gsap.from(this.elements.plotContainer, { - opacity: 0, - y: 20, - duration: 0.3, - delay: 0.4 - }); - } - - gsap.to(results, { - opacity: 1, - y: 0, - duration: 0.3 - }); - } - - createMetricCard(key, value) { - const card = document.createElement('div'); - card.className = 'metric-card p-4 rounded-xl bg-dark-800/30 border border-dark-700'; - - const trend = this.getMetricTrend(key, value); - const formattedValue = this.formatMetricValue(key, value); - - card.innerHTML = ` -

${this.formatMetricName(key)}

-
- ${formattedValue} - ${trend ? `` : ""} -
- `; - - return card; - } - - getMetricTrend(key, value) { - if (typeof value !== 'number') return null; - - if (key.includes('return') || key.includes('profit') || key.includes('gain')) { - return value > 0 - ? { icon: 'fa-trending-up', color: 'success' } - : { icon: 'fa-trending-down', color: 'danger' }; - } - - if (key.includes('drawdown') || key.includes('loss')) { - return value < -10 - ? { icon: 'fa-triangle-exclamation', color: 'danger' } - : { icon: 'fa-triangle-exclamation', color: 'warning' }; - } - - return null; - } - - validateInput(input) { - const value = input.value.trim(); - const isValid = this.validateField(input.id, value); - - gsap.to(input, { - borderColor: isValid ? 'rgba(0, 144, 255, 0.5)' : 'rgba(239, 68, 68, 0.5)', - duration: 0.3 - }); - - return isValid; - } - - validateField(fieldId, value) { - if (!value) return false; - - const validators = { - currencyPair: pair => /^[A-Z]{3}\/[A-Z]{3}$/.test(pair.toUpperCase()), - timeFrame: tf => ['1h', '4h', '1d', '1m', '30m', 'H1', 'H4', 'D', 'M1', 'M30'].includes(tf), - strategyCode: code => code.length > 10, - strategyName: name => name.length >= 3, - authorName: name => name.length >= 2 - }; - - return validators[fieldId] ? validators[fieldId](value) : true; - } - - handleInputFocus(input) { - gsap.to(input, { - scale: 1.02, - duration: 0.2 - }); - } - - handleInputBlur(input) { - gsap.to(input, { - scale: 1, - duration: 0.2 - }); - } - - showNotification(message, type = 'info') { - const colors = { - success: 'from-success-500 to-success-600', - error: 'from-danger-500 to-danger-600', - info: 'from-primary-500 to-primary-600' - }; - - const notification = document.createElement('div'); - notification.className = `fixed bottom-4 right-4 bg-gradient-to-r ${colors[type]} - text-white px-6 py-3 rounded-xl shadow-lg z-50`; - notification.textContent = message; - - gsap.set(notification, { opacity: 0, y: 20 }); - document.body.appendChild(notification); - - gsap.to(notification, { - opacity: 1, - y: 0, - duration: 0.3, - ease: 'power2.out' - }); - - setTimeout(() => { - gsap.to(notification, { - opacity: 0, - y: 20, - duration: 0.3, - ease: 'power2.in', - onComplete: () => notification.remove() - }); - }, 5000); - } - - async loadSavedStrategies() { - try { - const response = await axios.get('/api/v1/strategies'); - this.elements.strategyList.innerHTML = ''; - - response.data.forEach((strategy, index) => { - const item = this.createStrategyListItem(strategy); - gsap.set(item, { opacity: 0, y: 20 }); - this.elements.strategyList.appendChild(item); - - gsap.to(item, { - opacity: 1, - y: 0, - duration: 0.3, - delay: index * 0.1 - }); - }); - } catch (error) { - this.showNotification('Failed to load saved strategies', 'error'); - } - } - - createStrategyListItem(strategy) { - const li = document.createElement('div'); - li.className = 'strategy-card p-4 rounded-xl bg-dark-800/30 border border-dark-700 hover:bg-dark-800/50 transition-all duration-300'; - - li.innerHTML = ` -
-
-

${strategy.name}

-

${strategy.currency_pair} - ${strategy.time_frame}

-
-
- - -
-
- `; - - li.querySelector('.fa-play').parentElement.addEventListener('click', (e) => { - e.stopPropagation(); - this.loadStrategy(strategy); - }); - - li.querySelector('.fa-trash').parentElement.addEventListener('click', (e) => { - e.stopPropagation(); - this.deleteStrategy(strategy.id); - }); - - return li; - } - - async deleteStrategy(id) { - if (!confirm('Are you sure you want to delete this strategy?')) return; - - try { - await axios.delete(`/api/v1/strategy/${id}`); - await this.loadSavedStrategies(); - this.showNotification('Strategy deleted successfully', 'success'); - } catch (error) { - this.showNotification('Failed to delete strategy', 'error'); - } - } - - loadStrategy(strategy) { - const fields = { - strategyName: strategy.name, - authorName: strategy.authorName || 'Anonymous', - strategyCode: strategy.algo_code, - currencyPair: strategy.currency_pair, - timeFrame: strategy.time_frame - }; - - Object.entries(fields).forEach(([id, value]) => { - const element = document.getElementById(id); - if (element) { - element.value = value; - gsap.from(element, { - scale: 1.02, - duration: 0.3 - }); - } - }); - } - - showLoadingIndicator() { - gsap.set(this.elements.loadingIndicator, { display: 'flex', opacity: 0 }); - gsap.to(this.elements.loadingIndicator, { - opacity: 1, - duration: 0.3 - }); - } - - hideLoadingIndicator() { - gsap.to(this.elements.loadingIndicator, { - opacity: 0, - duration: 0.3, - onComplete: () => { - this.elements.loadingIndicator.style.display = 'none'; - } - }); - } - - async loadIndicators() { - try { - const response = await axios.get('/api/v1/indicators'); - const indicators = response.data; - - indicators.forEach(indicator => { - const option = document.createElement('option'); - option.value = indicator.name; - option.textContent = indicator.name; - this.elements.indicatorSelect.appendChild(option); - }); - } catch (error) { - this.showNotification('Failed to load indicators', 'error'); - } - } - - loadStrategyFromLocalStorage() { - const strategyCode = localStorage.getItem('strategyCode'); - if (strategyCode) { - this.elements.strategyCode.value = strategyCode; - } - } -} - -document.addEventListener('DOMContentLoaded', () => { - window.backtestManager = new BacktestManager(); -}); diff --git a/static/js/charts_view.js b/static/js/charts_view.js new file mode 100644 index 0000000..abf0f0e --- /dev/null +++ b/static/js/charts_view.js @@ -0,0 +1,556 @@ +class ChartManager { + constructor() { + this.activePair = null; + this.activeTimeframe = '1m'; + this.chartType = 'candlestick'; + this.marketType = 'forex'; + this.chart = null; + this.candleSeries = null; + this.updateInterval = null; + this.ws = null; + this.interval = null; + this.currentData = { + forex: {}, + crypto: {} + }; + + this.pairs = { + forex: ['EUR/USD', 'GBP/USD'], + crypto: ['BTC/USD', 'ETH/USD'] + }; + + this.timeframes = { + '1h': '1 Hour', + '4h': '4 Hours', + '1d': '1 Day' + }; + + this.colors = { + background: '#1a1a1a', + grid: '#333333', + text: '#ffffff', + up: '#26a69a', + down: '#ef5350', + line: '#2962ff' + }; + + this.initializeUI(); + this.initializeWebSocket(); + this.setupEventListeners(); + + this.dataServer = 'http://localhost:4000'; + this.updateInterval = null; + this.feedReaders = {}; + this.rssReader = null; + this.dataUpdateInterval = 1000; // 1 second update interval + this.lastUpdate = {}; + this.errorCount = 0; + this.maxErrors = 3; + } + + initializeWebSocket() { + this.ws = new WebSocket('wss://socket.polygon.io/forex'); + + this.ws.onopen = () => { + // Authenticate immediately on connection + const auth_msg = { + "action": "auth", + "params": POLYGON_API_KEY + }; + this.ws.send(JSON.stringify(auth_msg)); + }; + + this.ws.onmessage = (event) => { + const data = JSON.parse(event.data); + if (Array.isArray(data)) { + data.forEach(msg => this.handleMessage(msg)); + } else { + this.handleMessage(data); + } + }; + + this.ws.onclose = () => { + console.log('WebSocket closed, attempting to reconnect...'); + setTimeout(() => this.initializeWebSocket(), 5000); + }; + } + + handleMessage(msg) { + if (msg.ev === 'status' && msg.status === 'auth_success') { + // Subscribe to forex and crypto feeds after authentication + if (this.activePair) { + const subscribeMsg = { + "action": "subscribe", + "params": this.marketType === 'forex' ? + `C.${this.activePair.replace('/', '-')}` : + `XT.${this.activePair.replace('/', '-')}` + }; + this.ws.send(JSON.stringify(subscribeMsg)); + } + } + else if ((msg.ev === 'C' || msg.ev === 'XT') && this.chart) { + this.updateChartWithData(msg); + } + } + + initializeUI() { + const select = document.getElementById('timeframeSelect'); + select.innerHTML = ''; + + Object.entries(this.timeframes).forEach(([value, label]) => { + const option = document.createElement('option'); + option.value = value; + option.textContent = label; + select.appendChild(option); + }); + + this.updatePairSelect(this.marketType); + this.initializeChart(); + } + + initializeChart() { + try { + const canvas = document.getElementById('chartCanvas'); + if (!canvas) { + console.error('Chart canvas element not found'); + return; + } + + const ctx = canvas.getContext('2d'); + if (!ctx) { + console.error('Failed to get canvas context'); + return; + } + + // Create chart configuration + const chartConfig = { + type: 'line', // Changed from candlestick to line initially + data: { + datasets: [{ + label: this.activePair || 'No pair selected', + data: [], + borderColor: this.colors.line, + backgroundColor: this.colors.background, + tension: 0.1 + }] + }, + options: { + responsive: true, + maintainAspectRatio: false, + scales: { + x: { + type: 'time', + time: { + unit: this.activeTimeframe === '1h' ? 'minute' : 'hour' + }, + grid: { + color: this.colors.grid + } + }, + y: { + grid: { + color: this.colors.grid + } + } + }, + plugins: { + legend: { + display: true, + position: 'top', + labels: { + color: this.colors.text + } + }, + tooltip: { + mode: 'index', + intersect: false, + backgroundColor: this.colors.background, + titleColor: this.colors.text, + bodyColor: this.colors.text, + borderColor: this.colors.grid, + borderWidth: 1 + } + }, + interaction: { + mode: 'nearest', + axis: 'x', + intersect: false + } + } + }; + + if (this.chart) { + this.chart.destroy(); + } + + this.chart = new Chart(ctx, chartConfig); + console.log('Chart initialized successfully'); + } catch (error) { + console.error('Chart initialization failed:', error); + } + } + + async fetchHistoricalData() { + try { + const response = await fetch(`/charts/api/historical/${this.marketType}/${this.activePair}/${this.activeTimeframe}`); + if (!response.ok) { + throw new Error(`HTTP error! status: ${response.status}`); + } + const data = await response.json(); + return data; + } catch (error) { + console.error('Failed to fetch historical data:', error); + return null; + } + } + + handleConnectionFailure() { + console.log('WebSocket connection failed, switching to historical data'); + this.fetchHistoricalData().then(data => { + if (data) { + this.updateChartWithHistoricalData(data); + } + }); + } + + async startFeedReader(market, pair) { + if (this.feedReaders[`${market}-${pair}`]) { + clearInterval(this.feedReaders[`${market}-${pair}`]); + } + + const updateChart = async () => { + try { + const response = await fetch(`${this.dataServer}/api/feed/${market}/${pair}`); + if (!response.ok) throw new Error('Feed fetch failed'); + + const data = await response.json(); + this.updateChartWithFeedData(data); + } catch (error) { + console.error('Feed update error:', error); + } + }; + + // Initial update + await updateChart(); + + // Set up interval for updates + this.feedReaders[`${market}-${pair}`] = setInterval(updateChart, 1000); + } + + updateChartWithFeedData(data) { + if (!this.chart || !data.length) return; + + const chartData = data.map(item => ({ + x: new Date(item.timestamp), + y: item.price + })); + + const dataset = this.chart.data.datasets[0]; + dataset.data = chartData; + this.chart.update('quiet'); + } + + createSeries(type = 'line') { + if (this.chart) { + this.chart.destroy(); + } + + const chartConfig = { + type: type, + data: { + datasets: [{ + label: this.activePair || 'No pair selected', + data: [], + borderColor: this.colors.line, + backgroundColor: type === 'line' ? 'transparent' : this.colors.background, + }] + }, + options: { + responsive: true, + maintainAspectRatio: false, + scales: { + x: { + type: 'time', + time: { + unit: this.getTimeUnit() + }, + grid: { + color: this.colors.grid + } + }, + y: { + grid: { + color: this.colors.grid + } + } + } + } + }; + + const canvas = document.getElementById('chartCanvas'); + this.chart = new Chart(canvas, chartConfig); + + // Start feed reader for current pair + if (this.activePair) { + this.startFeedReader(this.marketType, this.activePair); + } + } + + getTimeUnit() { + switch(this.activeTimeframe) { + case '1h': return 'minute'; + case '4h': return 'hour'; + case '1d': return 'day'; + default: return 'hour'; + } + } + + refreshCharts() { + if (this.activePair && this.chart) { + this.updateChart(); + } + } + + updateChart() { + if (!this.activePair) return; + + const endpoint = `/charts/api/data/${this.marketType}`; + + fetch(endpoint) + .then(response => response.json()) + .then(data => { + if (!data[this.activePair]) return; + + const chartData = data[this.activePair].map(bar => ({ + time: new Date(bar.timestamp).getTime() / 1000, + open: bar.open, + high: bar.high, + low: bar.low, + close: bar.close, + volume: bar.volume + })); + + this.candleSeries.setData(chartData); + }) + .catch(console.error); + } + + updateChartWithData(data) { + if (!this.chart || !this.activePair) return; + + const price = data.ev === 'C' ? + (parseFloat(data.a) + parseFloat(data.b)) / 2 : // Forex midpoint + parseFloat(data.p); // Crypto price + + const newData = { + x: new Date(data.t), + y: price + }; + + const dataset = this.chart.data.datasets[0]; + dataset.data.push(newData); + + // Keep only last 1000 points + if (dataset.data.length > 1000) { + dataset.data.shift(); + } + + this.chart.update('quiet'); + } + + setupEventListeners() { + // Market type selection + document.getElementById('forexTab').addEventListener('click', () => this.switchMarket('forex')); + document.getElementById('cryptoTab').addEventListener('click', () => this.switchMarket('crypto')); + + // Pair selection + document.getElementById('pairSelect').addEventListener('change', (e) => { + this.activePair = e.target.value; + if (this.activePair) { + this.createSeries(this.chartType); + this.startDataUpdates(); + } + }); + + // Timeframe selection + document.getElementById('timeframeSelect').addEventListener('change', (e) => { + this.activeTimeframe = e.target.value; + if (this.activePair) { + this.updateChart(); + } + }); + + // Chart type selection + document.querySelectorAll('.chart-type-btn').forEach(btn => { + btn.addEventListener('click', (e) => { + const type = e.currentTarget.dataset.type; + this.switchChartType(type); + }); + }); + } + + switchChartType(type) { + this.chartType = type; + document.querySelectorAll('.chart-type-btn').forEach(btn => { + btn.classList.toggle('bg-blue-600', btn.dataset.type === type); + btn.classList.toggle('bg-dark-700', btn.dataset.type !== type); + }); + if (this.activePair) { + this.createSeries(type); + this.updateChart(); + } + } + + startDataUpdates() { + if (this.updateInterval) { + clearInterval(this.updateInterval); + } + this.updateChart(); + this.updateInterval = setInterval(() => this.updateChart(), 1000); + } + + switchMarket(marketType) { + this.marketType = marketType; + this.updatePairSelect(marketType); + this.activePair = null; + + // Update UI + const isForex = marketType === 'forex'; + document.getElementById('forexTab').className = + `px-4 py-2 rounded-lg text-white flex-1 ${isForex ? 'bg-blue-600' : 'bg-gray-700'}`; + document.getElementById('cryptoTab').className = + `px-4 py-2 rounded-lg text-white flex-1 ${!isForex ? 'bg-blue-600' : 'bg-gray-700'}`; + } + + toggleFullscreen(enable) { + this.isFullscreen = enable; + const fullscreenEl = document.getElementById('fullscreen-chart'); + + if (enable) { + fullscreenEl.classList.remove('hidden'); + document.getElementById('fullscreen-title').textContent = this.activePair; + this.createChart('fullscreen-chart-container', this.activePair, true); + } else { + fullscreenEl.classList.add('hidden'); + } + } + + updatePairSelect(marketType) { + const select = document.getElementById('pairSelect'); + select.innerHTML = ''; + + this.pairs[marketType].forEach(pair => { + const option = document.createElement('option'); + option.value = pair; + option.textContent = pair; + select.appendChild(option); + }); + } + + cleanup() { + // Clean up feed readers + Object.values(this.feedReaders).forEach(interval => clearInterval(interval)); + this.feedReaders = {}; + if (this.rssReader) { + clearInterval(this.rssReader); + this.rssReader = null; + } + if (this.chart) { + this.chart.destroy(); + this.chart = null; + } + } + + async initializeFeed() { + try { + if (this.activePair && this.marketType) { + const feedUrl = `${this.dataServer}/rss/${this.marketType}/${this.activePair.replace('/', '-')}`; + this.startFeedPolling(feedUrl); + } + } catch (error) { + console.error('Feed initialization error:', error); + this.handleFeedError(); + } + } + + startFeedPolling(feedUrl) { + if (this.rssReader) { + clearInterval(this.rssReader); + } + + this.rssReader = setInterval(async () => { + try { + const response = await fetch(feedUrl); + if (!response.ok) throw new Error('Feed fetch failed'); + + const data = await response.json(); + this.updateChartWithFeedData(data); + this.errorCount = 0; // Reset error count on successful update + } catch (error) { + console.error('Feed polling error:', error); + this.handleFeedError(); + } + }, this.dataUpdateInterval); + } + + handleFeedError() { + this.errorCount++; + if (this.errorCount >= this.maxErrors) { + console.error('Max feed errors reached, falling back to REST API'); + this.fallbackToRestApi(); + } + } + + async fallbackToRestApi() { + clearInterval(this.rssReader); + const apiUrl = `${this.dataServer}/api/feed/${this.marketType}/${this.activePair.replace('/', '-')}`; + + try { + const response = await fetch(apiUrl); + if (!response.ok) throw new Error('API fetch failed'); + + const data = await response.json(); + this.updateChartWithFeedData(data); + } catch (error) { + console.error('REST API fallback error:', error); + } + } + + updateChartWithFeedData(data) { + if (!this.chart || !data.length) return; + + const chartData = data.map(item => ({ + x: new Date(item.timestamp), + y: parseFloat(item.price), + volume: parseFloat(item.volume) + })); + + const dataset = this.chart.data.datasets[0]; + dataset.data = chartData; + this.chart.update('quiet'); + } +} + +// Initialize after loading required libraries +document.addEventListener('DOMContentLoaded', () => { + // Load required libraries + const scripts = [ + 'https://cdn.jsdelivr.net/npm/chart.js', + 'https://cdn.jsdelivr.net/npm/chartjs-adapter-date-fns', + 'https://cdn.jsdelivr.net/npm/chartjs-plugin-crosshair' + ]; + + Promise.all(scripts.map(src => { + return new Promise((resolve, reject) => { + const script = document.createElement('script'); + script.src = src; + script.onload = resolve; + script.onerror = reject; + document.head.appendChild(script); + }); + })) + .then(() => { + window.chartManager = new ChartManager(); + }) + .catch(console.error); +}); diff --git a/static/js/chat.js b/static/js/chat.js index a19bbd4..2a3a1cb 100644 --- a/static/js/chat.js +++ b/static/js/chat.js @@ -10,6 +10,7 @@ class ChatManager { orderForm: document.getElementById('order-parameters-form') }; + this.conversationHistory = []; this.initializeEventListeners(); this.loadConversationHistory(); } @@ -45,61 +46,82 @@ class ChatManager { async handleSubmit(e) { e.preventDefault(); - const userText = this.sanitize(this.elements.userInput.value); - this.elements.userInput.value = ''; - gsap.to(this.elements.userInput, { - height: 'auto', - duration: 0.2 - }); - - if (!userText.trim()) return; - - this.addMessage(userText, 'user'); - this.showLoadingIndicator(); + const message = this.elements.userInput.value.trim(); + if (!message) return; try { - const response = await axios.post('/api/v1/query', { - message: userText - }); - - if (response.data.error) { - this.addMessage(`Error: ${response.data.error}`, 'assistant'); - return; - } + this.showLoadingIndicator(); + console.log('[ChatManager] Sending message:', message); + + const selectedBroker = localStorage.getItem('selectedBroker') || 'oanda'; + console.log('[ChatManager] Using broker:', selectedBroker); + + // Format conversation history + const recentHistory = this.conversationHistory + .slice(-5) + .map(msg => ({ + role: msg.role, + content: msg.content + })); - const assistantText = this.sanitize(response.data.response); - this.addMessage(assistantText, 'assistant'); - - if (response.data.redirect === '/backtest' && response.data.data?.strategy) { - const strategyData = response.data.data.strategy; - localStorage.setItem('strategyData', JSON.stringify(strategyData)); - this.addMessage('Redirecting to backtest page...', 'system'); - - gsap.to(this.elements.chatHistory, { - opacity: 0, - y: -20, - duration: 0.3, - onComplete: () => { - window.location.href = '/backtest'; + const response = await axios.post('/api/v1/query', + { + message: message, + conversation_history: recentHistory + }, + { + headers: { + 'X-Selected-Broker': selectedBroker, + 'Content-Type': 'application/json' } - }); - } + } + ); - if (response.data.action === 'create_order') { - gsap.to(this.elements.chatForm, { - display: 'none', - duration: 0.3 - }); - window.orderManager.show(); + if (response.data.error) { + throw new Error(response.data.error); } - await this.saveConversation(userText, assistantText); + // Add message to history + this.conversationHistory.push({ + role: "user", + content: message + }); + // Add response to history + this.conversationHistory.push({ + role: "assistant", + content: response.data.response + }); + + // Display messages + this.addMessage(message, 'user'); + this.addMessage(response.data.response, 'assistant'); + + // Save conversation + await this.saveConversation(message, response.data.response); + } catch (error) { - console.error('Error:', error); - this.addMessage('Sorry, I encountered an error. Please try again.', 'assistant'); + console.error('[ChatManager] Error:', error); + const errorMessage = error.response?.data?.error || error.message; + + if (error.response?.data?.need_configuration) { + if (window.userConfigManager) { + this.addMessage( + `I noticed your ${localStorage.getItem('selectedBroker')} broker isn't configured yet. ` + + `Let's set that up now.`, 'assistant' + ); + window.userConfigManager.showModal(); + } + } else { + this.addMessage(`Sorry, I encountered an error: ${errorMessage}`, 'assistant'); + } } finally { this.hideLoadingIndicator(); + this.elements.userInput.value = ''; + gsap.to(this.elements.userInput, { + height: 'auto', + duration: 0.2 + }); } } diff --git a/static/js/navigation.js b/static/js/navigation.js index 90a07fb..5a3e963 100644 --- a/static/js/navigation.js +++ b/static/js/navigation.js @@ -2,12 +2,13 @@ class NavigationManager { constructor() { this.menuToggle = document.getElementById('menu-toggle'); this.sidebar = document.getElementById('sidebar'); - this.socialBtn = document.getElementById('social-btn'); - this.backtestBtn = document.getElementById('backtest-btn'); - this.mainBtn = document.getElementById('main-btn'); + this.chartsTab = document.getElementById('charts-tab'); + this.chartsContainer = document.getElementById('charts-container'); + this.closeChartsBtn = document.getElementById('close-charts'); this.setupEventListeners(); this.setupResizeHandler(); + this.setupChartHandlers(); } setupEventListeners() { @@ -15,16 +16,8 @@ class NavigationManager { this.menuToggle.addEventListener('click', () => this.toggleSidebar()); } - if (this.socialBtn) { - this.socialBtn.addEventListener('click', () => this.navigate('/social')); - } - - if (this.backtestBtn) { - this.backtestBtn.addEventListener('click', () => this.navigate('/backtest')); - } - - if (this.mainBtn) { - this.mainBtn.addEventListener('click', () => this.navigate('/')); + if (this.chartsTab) { + this.chartsTab.addEventListener('click', () => this.toggleChartsView()); } document.addEventListener('click', (e) => this.handleOutsideClick(e)); @@ -84,8 +77,61 @@ class NavigationManager { }, 250); }); } + + setupChartHandlers() { + const chartsTab = document.getElementById('charts-tab'); + const chartsContainer = document.getElementById('charts-container'); + const closeChartsBtn = document.getElementById('close-charts'); + + if (chartsTab) { + chartsTab.addEventListener('click', () => { + console.log('Charts tab clicked'); // Debug log + const container = document.getElementById('charts-container'); + const currentWidth = container.style.width; + + if (currentWidth === '0px' || !currentWidth) { + container.style.width = '50%'; + if (window.chartManager) { + window.chartManager.refreshCharts?.(); + } + } else { + container.style.width = '0px'; + } + }); + } + + if (closeChartsBtn) { + closeChartsBtn.addEventListener('click', () => { + console.log('Close charts clicked'); // Debug log + chartsContainer.style.width = '0px'; + }); + } + } + + toggleChartsView() { + if (this.chartsContainer.classList.contains('w-0')) { + this.openChartsView(); + } else { + this.closeChartsView(); + } + } + + openChartsView() { + // Use a more modest default width + this.chartsContainer.style.width = '400px'; + // Trigger chart refresh + if (window.chartManager) { + window.chartManager.updateChart(); + } + } + + closeChartsView() { + this.chartsContainer.classList.remove('w-[600px]'); + this.chartsContainer.classList.add('w-0'); + } } +// Initialize navigation document.addEventListener('DOMContentLoaded', () => { window.navigationManager = new NavigationManager(); }); \ No newline at end of file diff --git a/static/js/user_config.js b/static/js/user_config.js index fca778e..c613b58 100644 --- a/static/js/user_config.js +++ b/static/js/user_config.js @@ -38,14 +38,25 @@ class UserConfigManager { } initialize() { - // Initialize event listeners + console.group('UserConfigManager Initialization'); + console.log('Starting initialization...'); + console.log('DOM Elements loaded:', { + settingsModal: !!this.settingsModal, + settingsBtn: !!this.settingsBtn, + brokerSelect: !!this.brokerSelect, + brokerToggles: this.brokerToggles.length + }); + this.initializeEventListeners(); - - // Set initial state this.updateBrokerToggle(); this.isInitialized = true; - console.log('UserConfigManager initialized'); + console.log('Initial state:', { + currentBroker: this.currentBroker, + isInitialized: this.isInitialized, + activeBrokers: Array.from(this.activeBrokers) + }); + console.groupEnd(); } loadBrokerSettingsOnStartup() { @@ -144,34 +155,70 @@ class UserConfigManager { } async loadBrokerSettings() { - console.log('Loading broker settings'); + console.group('Loading Broker Settings'); + console.time('brokerSettingsLoad'); + console.log('Current broker:', this.currentBroker); + this.showLoading(); try { + console.log('Fetching settings from server...'); const response = await axios.get('/api/v1/broker/settings'); + console.log('Server response:', response.data); + const settings = response.data.settings; - // Update fields for both brokers + // Log available brokers + console.log('Available broker settings:', Object.keys(settings)); + + // Update OANDA fields if (settings.oanda) { + console.log('Updating OANDA fields...'); document.getElementById('oanda-api-key').value = settings.oanda.api_key; document.getElementById('oanda-account-id').value = settings.oanda.account_id; + console.log('OANDA fields updated successfully'); + } else { + console.warn('No OANDA settings found'); } + // Update Alpaca fields if (settings.alpaca) { + console.log('Updating Alpaca fields...'); document.getElementById('alpaca-api-key').value = settings.alpaca.api_key; document.getElementById('alpaca-api-secret').value = settings.alpaca.api_secret; + console.log('Alpaca fields updated successfully'); + } else { + console.warn('No Alpaca settings found'); } // Update market badges + console.log('Updating market badges...'); this.updateMarketBadges(settings); - if (window.accountManager && window.accountManagerInitialized) { - window.accountManager.updateBrokerToggles(); + + // Update account manager + if (window.accountManager && typeof window.accountManager.updateBrokerToggles === 'function') { + console.log('Updating account manager toggles...'); + try { + await window.accountManager.updateBrokerToggles(); + console.log('Account manager toggles updated successfully'); + } catch (err) { + console.error('Failed to update account manager:', err); + } + } else { + console.warn('Account manager not available or missing updateBrokerToggles method'); } + } catch (error) { - console.error('Failed to load broker settings:', error); + console.error('Failed to load broker settings:', { + error: error, + message: error.message, + response: error.response?.data + }); this.showError('Failed to load broker settings'); } finally { this.hideLoading(); + console.timeEnd('brokerSettingsLoad'); + console.groupEnd(); } } @@ -255,16 +302,25 @@ class UserConfigManager { this.currentBroker = broker; localStorage.setItem('selectedBroker', broker); this.updateBrokerToggle(); - await this.reloadAccountDetails(); + + // Use AccountManager if available + if (window.accountManager) { + try { + await window.accountManager.switchBroker(broker); + } catch (error) { + console.error('Error in AccountManager.switchBroker:', error); + } + } + + await this.loadBrokerSettings(); } } updateBrokerToggle() { this.brokerToggles.forEach(toggle => { - toggle.classList.remove('active', 'bg-trading-accent'); - if (toggle.id.includes(this.currentBroker)) { - toggle.classList.add('active', 'bg-trading-accent'); - } + const broker = toggle.id.split('-')[0]; + toggle.classList.toggle('active', broker === this.currentBroker); + toggle.classList.toggle('bg-trading-accent', broker === this.currentBroker); }); } diff --git a/templates/backtest.html b/templates/backtest.html deleted file mode 100644 index 73c255d..0000000 --- a/templates/backtest.html +++ /dev/null @@ -1,454 +0,0 @@ - - - - - - TradingPal - Backtest - - - - - - - - - - - - -
-
-
- -
-
-
-

- Saved Strategies -

-
- -
-
- -
- - -
- -
- -
-
-
- - -
- -
-
-

- Create Your Strategy -

-
- - Test your trading strategy with historical data -
-
- -
-
-
- - -
-
- - -
-
- -
- -
- - -
-

Write your trading strategy logic using Python.

-
-
- - - -
-
-
- - -
-
- - -
-
- - -
-
- - -
-
- - - -
-
-
-
- - - - - - - - - diff --git a/templates/charts_components/charts_container.html b/templates/charts_components/charts_container.html new file mode 100644 index 0000000..e98f2b5 --- /dev/null +++ b/templates/charts_components/charts_container.html @@ -0,0 +1,134 @@ +
+
+ +
+
+

Live Charts

+
+ + +
+
+ + +
+ +
+ + +
+ + +
+ + + +
+
+
+ + +
+
+ + + +
+
+
+ + +
+
+ Feed Status +
+ + + +
+ + + + + + + + + + diff --git a/templates/charts_components/charts_footer.html b/templates/charts_components/charts_footer.html new file mode 100644 index 0000000..e69de29 diff --git a/templates/charts_components/charts_header.html b/templates/charts_components/charts_header.html new file mode 100644 index 0000000..e69de29 diff --git a/templates/charts_components/charts_main.html b/templates/charts_components/charts_main.html new file mode 100644 index 0000000..e69de29 diff --git a/templates/charts_components/charts_view.html b/templates/charts_components/charts_view.html new file mode 100644 index 0000000..4c7d48a --- /dev/null +++ b/templates/charts_components/charts_view.html @@ -0,0 +1,36 @@ + + + + + + Trading Charts + + + + + +
+ +
+

Live Trading Charts

+
+ + +
+
+ + +
+ +
+ +
+ + + + diff --git a/templates/main.html b/templates/main.html index 6170636..5b16817 100644 --- a/templates/main.html +++ b/templates/main.html @@ -8,6 +8,7 @@ + + +
+ +
+