{ "cells": [ { "cell_type": "markdown", "id": "c69a3906", "metadata": {}, "source": [ "# Vortexa voyages SDK use case\n", "This notebook contains code and instructions for generating use cases of Vortexa's Voyages dataset." ] }, { "cell_type": "markdown", "id": "8aee8ec8", "metadata": {}, "source": [ "## Import required libraries\n" ] }, { "cell_type": "code", "execution_count": 1, "id": "c2cc71c4", "metadata": { "ExecuteTime": { "end_time": "2024-05-31T16:52:54.036744Z", "start_time": "2024-05-31T16:52:53.145498Z" } }, "outputs": [], "source": [ "import vortexasdk as v\n", "from datetime import datetime\n", "import pandas as pd\n", "import numpy as np\n", "import time\n", "import plotly.express as px\n", "import dateutil.relativedelta" ] }, { "cell_type": "markdown", "id": "7aeadb42", "metadata": {}, "source": [ "## Store Vortexa IDs\n", "Vortexa's SDK interprets vessels, products and geographies using unique IDs rather than names. The code below demonstrates how to search and save various Vortexa reference IDs." ] }, { "cell_type": "markdown", "id": "d2aeaacf", "metadata": {}, "source": [ "### Geographies\n", "Search for geography ids (remove hashtags to search)." ] }, { "cell_type": "code", "execution_count": 2, "id": "17e1a76a", "metadata": { "ExecuteTime": { "end_time": "2024-05-31T16:52:54.620058Z", "start_time": "2024-05-31T16:52:54.614789Z" } }, "outputs": [], "source": [ "# full_length_df = v.Geographies().search(term=[\"Mexico East\"]).to_df()\n", "# print(full_length_df.to_string(index=False))\n", "\n", "# Store geography ids\n", "gom='37c8c4eeb730d1cd41f90ca6bf95c923222b0734b1b0336a475acce821f87ebd'\n", "nwe='c5460c5a4ece7b64ffc0cc280aeade60d364423e8e062ef4a11494352fe6fdbb'\n", "usac='2d8f42426b74af03caa9055df1952d22a011f2a210b53b9132955a89fc552433'\n" ] }, { "cell_type": "markdown", "id": "59977f33", "metadata": {}, "source": [ "### Products\n", "Search for product ids (remove hashtags to search)." ] }, { "cell_type": "code", "execution_count": 3, "id": "5d1001f5", "metadata": { "ExecuteTime": { "end_time": "2024-05-31T16:52:55.703310Z", "start_time": "2024-05-31T16:52:55.699882Z" } }, "outputs": [], "source": [ "# product_search = v.Products().search(term=['diesel']).to_df()\n", "# print (product_search.to_string(index=False))\n", "\n", "cpp='b68cbb746f8b9098c50e2ba36bcad83001a53bd362e9031fb49085d02c36659c'\n", "lpg='364ccbb996c944055b479810a8e74863267885dc1b01407cb0f00ab26dafe1e1'" ] }, { "cell_type": "markdown", "id": "858554fe", "metadata": {}, "source": [ "## Define main functions\n", "The below code defines the functions which process Vortexa data into a format which can be visualised." ] }, { "cell_type": "code", "execution_count": 4, "id": "535cc41e", "metadata": { "ExecuteTime": { "end_time": "2024-05-31T16:52:57.433884Z", "start_time": "2024-05-31T16:52:57.351081Z" } }, "outputs": [], "source": [ "# Function for post ballast distirbution\n", "def post_ballast_distribution(origin, origin_excl, destination, destination_excl, vessel_class, product, product_excl, start_y, start_m, start_d, end_y, end_m, end_d, show_top_x, plot, option):\n", "\n", " # set date objects\n", " start=datetime(start_y, start_m, start_d)\n", " end=datetime(end_y, end_m, end_d, 23, 59, 59)\n", " \n", " # Pull the laden voyages which occurred in the required timeframe\n", " route = v.VoyagesSearchEnriched().search(\n", " origins = origin,\n", " origins_excluded = origin_excl,\n", " destinations = destination,\n", " destinations_excluded = destination_excl,\n", " time_min = start,\n", " time_max = end,\n", " vessels = vessel_class,\n", " products = product,\n", " products_excluded = product_excl\n", " )\n", " \n", " # Convert to dataframe\n", " route = pd.DataFrame(route)\n", " \n", " # Sort by end_timestamp\n", " route[\"end_timestamp\"] = pd.to_datetime(route[\"end_timestamp\"])\n", " route.sort_values(by='end_timestamp', ascending = True, inplace=True)\n", " \n", " # Remove null end_timestamps\n", " route.drop(route[pd.isnull(route['end_timestamp']) == True].index, inplace = True)\n", " \n", " # Remove voyages that end past the specified end date\n", " route = route[(pd.to_datetime(route['end_timestamp']).dt.tz_convert(None) <= pd.to_datetime(end))]\n", " \n", " # Remove voyages still in progress (i.e. voyages with no next voyage ID)\n", " route = route.dropna(subset=['next_voyage_id'])\n", "\n", " # Get the next voyage IDs\n", " next_voyage_id_list = list(route[\"next_voyage_id\"].unique())\n", " next_voyage_id_list=[x for x in next_voyage_id_list if x != '']\n", " \n", " # Get voyages corresponding to the next voyage IDs\n", " df = v.VoyagesSearchEnriched().search(\n", " voyage_id = next_voyage_id_list,\n", " columns = \"all\").to_df()\n", "\n", " # Sort them by their start dates (end date of laden voyage/discharge date)\n", " df[\"START DATE\"] = pd.to_datetime(df[\"START DATE\"])\n", " df.sort_values(by='START DATE', ascending = True, inplace=True)\n", " \n", " # Relabel blank destinations as Undetermined\n", " df['FINAL DESTINATION SHIPPING REGION']=df['FINAL DESTINATION SHIPPING REGION'].replace([''],'Undetermined')\n", "\n", " # Remove laden results\n", " df=df.loc[df[\"VOYAGE STATUS\"] == 'Ballast']\n", " \n", " df.reset_index(drop=True, inplace=True)\n", " \n", " # Store the unique destinations\n", " dests = list(df[\"FINAL DESTINATION SHIPPING REGION\"].unique())\n", " \n", " dest_counts = []\n", " # Count the number of times each ballast destination is declared\n", " for i in range(len(dests)):\n", " g = len(df.loc[df['FINAL DESTINATION SHIPPING REGION'] == dests[i]])\n", " dest_counts.append(g)\n", "\n", " # convert counts and destinations list to data frames\n", " dests = pd.DataFrame(dests)\n", " dest_counts = pd.DataFrame(dest_counts)\n", " \n", " # compile unique destinations and their counts\n", " ranked = pd.concat([dests, dest_counts], axis = 1)\n", " ranked.columns = ['Destination', 'Count']\n", " \n", " # Sort destinations by highest count\n", " ranked.sort_values(by='Count', ascending = False, inplace=True)\n", " \n", " # Get a list of ranked destinations\n", " dests = list(ranked[\"Destination\"])\n", " \n", " # Convert dates of ballast voyages to months and years for counting purposes\n", " df[\"months\"] = df['START DATE'].dt.strftime('%m-%Y')\n", " \n", " # Get a complete list of dates in month/year format\n", " dates = list(pd.date_range(start=start, end=end, freq='MS').strftime('%m-%Y'))\n", " dates_df=pd.DataFrame(dates, columns=['Date'])\n", " \n", " # Initialise a data frame for dates\n", " raw_counts_df=dates_df\n", " \n", " # Loop through all destinations\n", " for j in range(len(dests)):\n", " \n", " # initialise a list to store counts\n", " counts2=[]\n", " \n", " # loop through dates\n", " for i in range(len(dates)):\n", " \n", " # count destination occurrences for this date\n", " g = len(df[(df['FINAL DESTINATION SHIPPING REGION'] == dests[j]) & (df['months'] == dates[i])])\n", " \n", " # add to list\n", " counts2.append(g)\n", " \n", " # convert counts to data frame and label it with corresponding destination\n", " counts2_df=pd.DataFrame(counts2, columns=[dests[j]])\n", " \n", " # add counts for this destination to data frame\n", " raw_counts_df=pd.concat([raw_counts_df, counts2_df], axis=1)\n", " \n", " # select count values\n", " raw_count_vals=raw_counts_df[list(raw_counts_df.columns)[1:]]\n", " \n", " # convert counts to percentages\n", " df_props = raw_count_vals.div(raw_count_vals.sum(axis=1), axis=0)\n", " \n", " # add dates to proportions\n", " df_props=pd.concat([dates_df, df_props], axis=1)\n", " \n", " # If you wish to only see the top x destinations, put the rest into 'other'\n", " if (len(list(raw_counts_df.columns))>(show_top_x + 1)): # if more than x breakdown labels, create another column - can change if required\n", "\n", " # Store first x columns\n", " first_x=list(raw_counts_df.columns)[:(show_top_x + 1)]\n", "\n", " # Store the others\n", " rest=list(raw_counts_df.columns)[(show_top_x + 1):]\n", "\n", " # Sum the others\n", " raw_counts_df['other']=raw_counts_df[rest].sum(axis=1) # other column is sum of everything not in top x\n", "\n", " raw_counts_df2=raw_counts_df[first_x + ['other']] # compile\n", "\n", " # If you want all split properties to show, set show_top_x to a large number and no 'other' category will be made\n", " else:\n", " raw_counts_df2=raw_counts_df\n", " \n", " # If you wish to only see the top x destinations, put the rest into 'other'\n", " if (len(list(df_props.columns))>(show_top_x + 1)): # if more than x breakdown labels, create another column - can change if required\n", "\n", " # Store first x columns\n", " first_x=list(df_props.columns)[:(show_top_x + 1)]\n", "\n", " # Store the others\n", " rest=list(df_props.columns)[(show_top_x + 1):]\n", "\n", " # Sum the others\n", " df_props['other']=df_props[rest].sum(axis=1) # other column is sum of everything not in top x\n", "\n", " df_props2=df_props[first_x + ['other']] # compile\n", "\n", " # If you want all split properties to show, set show_top_x to a large number and no 'other' category will be made\n", " else:\n", " df_props2=df_props\n", " \n", " df_props2=df_props2.copy()\n", " raw_counts_df2=raw_counts_df2.copy()\n", " \n", " df_props2['Date']=pd.to_datetime(df_props2['Date'], format='%m-%Y')\n", " raw_counts_df2['Date']=pd.to_datetime(raw_counts_df2['Date'], format='%m-%Y')\n", "\n", " if plot:\n", " \n", " if option=='counts':\n", " \n", " # Plot ballast distribution data (counts)\n", " fig = px.bar(\n", " raw_counts_df2, \n", " x=\"Date\", \n", " y=list(raw_counts_df2.columns)[1:],\n", " labels={\n", " \"Date\":\"Date\",\n", " \"value\":\"Number of voyages\"\n", " }\n", " )\n", " fig.update_layout(xaxis_rangeslider_visible = True)\n", " fig.show()\n", " \n", " if option=='proportions':\n", " \n", " # Plot ballast distribution data (proportions)\n", " fig = px.area(\n", " df_props2, \n", " x=\"Date\", \n", " y=list(df_props2.columns)[1:],\n", " labels={\n", " \"Date\":\"Date\",\n", " \"value\":\"Proportion of voyages\"\n", " }\n", " )\n", " fig.update_layout(xaxis_rangeslider_visible = True)\n", " fig.show()\n", " \n", " \n", " raw_counts_df2['Date']=raw_counts_df2['Date'].dt.strftime('%b-%Y')\n", " df_props2['Date']=df_props2['Date'].dt.strftime('%b-%Y')\n", "\n", " \n", " return raw_counts_df2, df_props2, df\n", "\n", "\n", "# Helper function to make time blocks of 4 years from a specified start date\n", "def get_search_blocks(start_y, start_m, start_d, today):\n", " \n", " \"\"\"\n", " Vortexa's API maximum search is 4 years and starts in 2016. \n", " This function creates a list of tuples splitting up start_date - present into 4-year blocks.\n", " \"\"\"\n", " \n", " blocks=[]\n", " \n", " start=datetime(start_y, start_m, start_d)\n", " end=start + dateutil.relativedelta.relativedelta(years=4) - dateutil.relativedelta.relativedelta(seconds=1)\n", " \n", " if end > today:\n", " blocks.append((start, today))\n", " \n", " else:\n", " blocks.append((start, end))\n", " \n", " while end < today:\n", " start+=dateutil.relativedelta.relativedelta(years=4) \n", " end+=dateutil.relativedelta.relativedelta(years=4)\n", " \n", " if end > today:\n", " blocks.append((start, today))\n", " \n", " else: \n", " blocks.append((start, end))\n", " \n", " \n", " return blocks\n", "\n", "\n", "# Function for aggregating voyages data and splitting\n", "def voyages_time_series_with_split(start_y, start_m, start_d, end_y, end_m, end_d, origin, destination, locs, prod, prod_excl, vessel_class, vessel_class_excl, status, freq, option, operator, title, split, plot, plot_type, show_top_x):\n", " \n", " today=datetime(end_y, end_m, end_d)\n", " search_blocks=get_search_blocks(start_y, start_m, start_d, today)\n", " \n", " result_dfs=pd.DataFrame()\n", "\n", " for block in search_blocks:\n", "\n", " time_min=block[0]\n", " time_max=block[1]\n", " print(f\"Downloading {option} for period: {time_min} to {time_max}\")\n", "\n", " \n", " # Original query\n", " result = v.VoyagesTimeseries().search(\n", " time_min=time_min,\n", " time_max=time_max,\n", " origins=origin,\n", " destinations=destination,\n", " locations=locs,\n", " latest_products=prod,\n", " latest_products_excluded=prod_excl,\n", " vessels=vessel_class,\n", " vessels_excluded=vessel_class_excl,\n", " voyage_status=status,\n", " breakdown_property=option,\n", " breakdown_frequency=freq,\n", " breakdown_split_property=split,\n", " breakdown_unit_operator=operator,\n", " ).to_df(columns='all')\n", "\n", " # If you wish to split, process the data as follows\n", " if split != None:\n", "\n", " # Break the output down into k data frames, all with date, id, label, value and count columns\n", " # Stack these on top of each other\n", "\n", " breakdown_cols=list(result.columns)[3:]\n", " cols=['key']+breakdown_cols\n", " k=int(len(breakdown_cols) / 4)\n", " result2=result[cols]\n", "\n", " # Empty data frame for stacking\n", " stack=pd.DataFrame()\n", "\n", " # Loop through each split property\n", " for i in range(k):\n", "\n", " cols=['key', f'breakdown.{i}.id', f'breakdown.{i}.label', f'breakdown.{i}.value', f'breakdown.{i}.count']\n", "\n", " temp=result2[cols]\n", "\n", " new_cols=['date', 'id', 'label', 'value', 'count']\n", "\n", " temp.columns=new_cols\n", "\n", " stack=pd.concat([stack, temp])\n", "\n", " # Choose relevant columns from the stacked data frame \n", " stack2=stack[['date', 'label', 'value']]\n", "\n", " # Remove rows with blank labels\n", " # These are for regions where a 0 value will show, we deal with this later\n", " result3=stack2[stack2['label']!='']\n", "\n", " # Sum each split property and rank them to obtain an order for the data to appear in\n", " result3=result3.copy()\n", " result3['value'] = pd.to_numeric(result3['value'])\n", " sum_per_label=result3.groupby('label')['value'].sum().reset_index()\n", " sum_per_label.sort_values(by='value', ascending=False, inplace=True)\n", " labels=list(sum_per_label['label'].unique()) # we use this order\n", "\n", " # Sort the result first by split property and then by date\n", " # This helps us to re-transpose the data later\n", " result3=result3.sort_values(by=['label', 'date']).copy()\n", "\n", " # Create and sort a dates data frame\n", " dates_df=pd.DataFrame(result3['date'].unique(), columns=['date'])\n", " dates_df['date']=pd.to_datetime(dates_df['date'])\n", " dates_df.sort_values(by='date', ascending=True, inplace=True)\n", "\n", " # Empty data frame to store split properties' corresponding columns\n", " store_df=pd.DataFrame()\n", "\n", " # First loop through each split property\n", " for i in range(len(labels)):\n", "\n", " # Empty list to store values\n", " values=[]\n", "\n", " # Temporary data frame to work with (only for current split property)\n", " temp_df=result3[result3['label']==labels[i]]\n", "\n", " # Now loop through each date in the temporary data\n", " for j in range(len(dates_df['date'])):\n", "\n", " # Obtain record for date in question\n", " check=temp_df[temp_df['date']==dates_df['date'][j]]\n", " \n", " # If no record, add 0.0 as the value for that split property on that date\n", " if len(check)==0:\n", " values.append(0.0)\n", "\n", " # If record exists, add its value\n", " else:\n", " values.append(check['value'].iloc[0])\n", "\n", " # Compile\n", " values_df=pd.DataFrame(values, columns=[labels[i]])\n", " store_df=pd.concat([store_df, values_df], axis=1)\n", "\n", " # After looping, add date column\n", " result5=pd.concat([dates_df, store_df], axis=1)\n", "\n", "\n", "\n", " # If no split, just select and rename relevant columns\n", " else:\n", " result5=result[['key', 'value']]\n", " result5.columns=['date', 'value']\n", " \n", " result_dfs=pd.concat([result_dfs, result5])\n", " \n", " # If you wish to only show the top x split properties in the plot, put the rest into 'other'\n", " if (len(list(result_dfs.columns))>(show_top_x + 1)): # if more than x breakdown labels, create another column - can change if required\n", "\n", " # Store first x columns\n", " first_x=list(result_dfs.columns)[:(show_top_x + 1)]\n", "\n", " # Store the others\n", " rest=list(result_dfs.columns)[(show_top_x + 1):]\n", "\n", " # Sum the others\n", " result_dfs['other']=result_dfs[rest].sum(axis=1) # other column is sum of everything not in top x\n", "\n", " result_dfs2=result_dfs[first_x + ['other']] # compile\n", "\n", " # If you want all split properties to show, set show_top_x to a large number and no 'other' category will be made\n", " else:\n", " result_dfs2=result_dfs\n", " \n", " # Set units for y axis label if you wish to plot\n", " if option=='vessel_count':\n", " y_axis_label='No. of vessels'\n", " \n", " elif option=='utilisation':\n", " y_axis_label=\"No. of vessels\"\n", "\n", " elif option=='cargo_quantity':\n", " y_axis_label=\"tonne-days\"\n", " \n", " elif option=='dwt':\n", " y_axis_label=\"dwt\"\n", "\n", " elif option=='cubic_capacity':\n", " y_axis_label=\"cubic meters\"\n", "\n", " elif option=='tonne_miles':\n", " y_axis_label=\"tonne-miles\"\n", " \n", " elif option=='avg_speed':\n", " y_axis_label=\"knots\"\n", " \n", " if plot_type=='area':\n", " \n", " if plot: # plot data if desired\n", "\n", " fig = px.area(\n", " result_dfs2, # data to plot\n", " title=title, # title set as input\n", " x=\"date\",\n", " y=list(result_dfs2.columns)[1:],\n", " labels={\n", " \"date\":\"Date\",\n", " \"value\":y_axis_label # unit label\n", " },\n", " )\n", " fig.update_layout(xaxis_rangeslider_visible = True)\n", " fig.show()\n", " \n", " if plot_type=='line':\n", " \n", " if plot: # plot data if desired\n", "\n", " fig = px.line(\n", " result_dfs2, # data to plot\n", " title=title, # title set as input\n", " x=\"date\",\n", " y=list(result_dfs2.columns)[1:],\n", " labels={\n", " \"date\":\"Date\",\n", " \"value\":y_axis_label # unit label\n", " },\n", " )\n", " fig.update_layout(xaxis_rangeslider_visible = True)\n", " fig.show()\n", " \n", " if plot_type=='bar':\n", " \n", " if plot: # plot data if desired\n", "\n", " fig = px.bar(\n", " result_dfs2, # data to plot\n", " title=title, # title set as input\n", " x=\"date\",\n", " y=list(result_dfs2.columns)[1:],\n", " labels={\n", " \"date\":\"Date\",\n", " \"value\":y_axis_label # unit label\n", " },\n", " )\n", " fig.update_layout(xaxis_rangeslider_visible = True)\n", " fig.show()\n", " \n", " # Reformat dates and rename date column\n", " result_dfs2=result_dfs2.copy()\n", " result_dfs2['date']=result_dfs2['date'].dt.strftime('%d-%m-%Y')\n", " result_dfs2.rename(columns={'date': 'Date'}, inplace=True)\n", " \n", " if split==None:\n", " result_dfs2.rename(columns={'value': title}, inplace=True)\n", " \n", " result_dfs2 = result_dfs2.fillna(0)\n", " \n", "\n", " return result_dfs2\n", "\n", "\n", "# function to create a moving average\n", "def moving_average(data, period, option):\n", " \n", " if option=='multiple':\n", "\n", " # calculate moving avg\n", " moving_avg = pd.DataFrame(data.iloc[:, 1:].rolling(window=period, min_periods=1).mean())\n", "\n", " # add moving average\n", " moving_avg_df=pd.concat([data.iloc[0:, 0:1], moving_avg], axis=1)\n", "\n", " moving_avg_df.columns=list(data.columns)\n", " \n", " elif option=='single':\n", " \n", " # calculate moving avg\n", " moving_avg = pd.DataFrame(data['value'].rolling(window=period, min_periods=1).mean())\n", " moving_avg.columns=[f'{period}-day moving_avg']\n", "\n", " # get all columns\n", " data_cols=list(data.columns)\n", "\n", " # get all columns except vlaue\n", " date_cols=[x for x in data_cols if x !='value']\n", "\n", " # add moving average\n", " moving_avg_df=pd.concat([data[date_cols], moving_avg], axis=1)\n", "\n", " moving_avg_df.rename(columns={f'{period}-day moving_avg':'value'}, inplace=True)\n", " \n", "\n", " return moving_avg_df\n", "\n", "# Function for getting freight data\n", "def voyages_time_series(start_y, start_m, start_d, origin, origin_excl, destination, destination_excl, prod, prod_excl, vessel_class, vessel_class_excl, status, freq, unit, operator):\n", " \n", " today=datetime.today()\n", " search_blocks=get_search_blocks(start_y, start_m, start_d, today)\n", " \n", " result_dfs=pd.DataFrame()\n", "\n", " for block in search_blocks:\n", "\n", " time_min=block[0]\n", " time_max=block[1]\n", " print(f\"Downloading freight data for period: {time_min} to {time_max}\")\n", "\n", " \n", " # Original query\n", " result = v.VoyagesTimeseries().search(\n", " time_min=time_min,\n", " time_max=time_max,\n", " origins=origin,\n", " origins_excluded=origin_excl,\n", " destinations=destination,\n", " destinations_excluded=destination_excl,\n", " latest_products=prod,\n", " latest_products_excluded=prod_excl,\n", " vessels=vessel_class,\n", " vessels_excluded=vessel_class_excl,\n", " voyage_status=status,\n", " breakdown_frequency=freq,\n", " breakdown_property=unit,\n", " breakdown_unit_operator=operator\n", " ).to_df(columns='all')\n", "\n", " result2=result[['key', 'value']]\n", " result2.columns=['date', 'value']\n", " \n", " result_dfs=pd.concat([result_dfs, result2])\n", " \n", " # Reformat dates and rename date column\n", " result_dfs=result_dfs.copy()\n", " result_dfs['date'] = pd.to_datetime(result_dfs['date'])\n", " result_dfs['string_date']=result_dfs['date'].dt.strftime('%d-%m-%Y')\n", " result_dfs['dd_mmm']=result_dfs['date'].dt.strftime('%d-%b')\n", " result_dfs['month']=result_dfs['date'].dt.strftime('%b')\n", " result_dfs['week_end_timestamp'] = result_dfs['date'] + pd.offsets.Week(weekday=6) \n", " result_dfs['week_number'] = result_dfs['date'].dt.isocalendar().week\n", " result_dfs['year']=round(pd.to_numeric(result_dfs['date'].dt.strftime('%Y')), 0)\n", " result_dfs = result_dfs.fillna(0)\n", " \n", " result_dfs=result_dfs[['date', 'week_end_timestamp', 'string_date', 'dd_mmm', 'week_number', 'month', 'year', 'value']]\n", " \n", " result_dfs.reset_index(drop=True, inplace=True)\n", "\n", " return result_dfs\n", "\n", "\n", "\n", "# function for obtaining seasonal chart data\n", "def seasonal_charts(data, freq, start_y):\n", " \n", " # Remove leap days for daily time series\n", " df=data[data['dd_mmm']!='29-Feb']\n", " df.reset_index(drop=True, inplace=True)\n", " \n", " # Set constants\n", " current_date=datetime.today()\n", " this_year=current_date.year\n", " last_year=this_year-1\n", " stats_end_y=last_year\n", " stats_start_y=start_y\n", " \n", " # Define stats calculating data set and current year dataset\n", " stats_df=df[(df['year'] >= stats_start_y) & (df['year'] <= stats_end_y)]\n", " this_year_df=df[df['year']==this_year]\n", " \n", " # if frequency is daily, calculate stats on a daily basis\n", " if freq=='day':\n", "\n", " # date range creation - use a non-leap year\n", " start_date = datetime(2023, 1, 1)\n", " end_date = datetime(2023, 12, 31)\n", "\n", " date_range = pd.DataFrame(pd.date_range(start=start_date, end=end_date, freq='1D'), columns=['Date'])\n", " date_range['Date']=date_range['Date'].dt.strftime('%d-%b')\n", " \n", " # empty lists to store stats\n", " mins=[]\n", " maxs=[]\n", " avgs=[]\n", " this_year_vals=[]\n", " \n", " # loop through dates and calculate stats\n", " for i in range(len(date_range)):\n", "\n", " temp=stats_df[stats_df['dd_mmm']==date_range['Date'][i]]\n", " \n", " mn=min(temp['value'])\n", " mx=max(temp['value'])\n", " av=temp['value'].mean()\n", "\n", " mins.append(mn)\n", " maxs.append(mx)\n", " avgs.append(av)\n", "\n", " # obtain last year's values\n", " last_year_df=pd.DataFrame(stats_df[stats_df['year']==last_year]['value'])\n", " last_year_df.columns=['Last year']\n", " last_year_df.reset_index(drop=True, inplace=True)\n", " \n", " # loop through dates and obtain current year values, if no data yet, add a blank\n", " for i in range(len(date_range)):\n", "\n", " temp=this_year_df[this_year_df['dd_mmm']==date_range['Date'][i]]\n", "\n", " if (len(temp)!=0):\n", "\n", " add=temp['value'].iloc[0]\n", "\n", " this_year_vals.append(add)\n", "\n", " elif (len(temp)==0):\n", "\n", " this_year_vals.append('')\n", "\n", " \n", " # convert stats to data frames\n", " mins_df=pd.DataFrame(mins, columns=['Min.'])\n", " maxs_df=pd.DataFrame(maxs, columns=['Max.'])\n", " avgs_df=pd.DataFrame(avgs, columns=[f'Average {stats_start_y}-{stats_end_y}'])\n", " this_year_vals_df=pd.DataFrame(this_year_vals, columns=['Current year'])\n", " \n", " # compile data\n", " seasonal_df=pd.concat([date_range, mins_df, maxs_df, avgs_df, last_year_df, this_year_vals_df], axis=1)\n", " \n", " # calculate range\n", " seasonal_df[f'Range {stats_start_y}-{stats_end_y}']=seasonal_df['Max.']-seasonal_df['Min.']\n", " \n", " # compile in desired order\n", " seasonal_df=seasonal_df[['Date', 'Min.', f'Range {stats_start_y}-{stats_end_y}', f'Average {stats_start_y}-{stats_end_y}', 'Last year', 'Current year']]\n", "\n", " \n", " # if frequency is monthly, calculate stas on a monthly basis\n", " elif freq=='month':\n", "\n", " # date range creation\n", " start_date = datetime(2023, 1, 1)\n", " end_date = datetime(2023, 12, 31)\n", "\n", " date_range = pd.DataFrame(pd.date_range(start=start_date, end=end_date, freq='1M'), columns=['Date'])\n", " date_range['Date']=date_range['Date'].dt.strftime('%b')\n", " \n", " # empty lists to store various stats\n", " mins=[]\n", " maxs=[]\n", " avgs=[]\n", " this_year_vals=[]\n", " \n", " # loop through dates and calculate stats\n", " for i in range(len(date_range)):\n", "\n", " temp=stats_df[stats_df['month']==date_range['Date'][i]]\n", "\n", " mn=min(temp['value'])\n", " mx=max(temp['value'])\n", " av=temp['value'].mean()\n", "\n", " mins.append(mn)\n", " maxs.append(mx)\n", " avgs.append(av)\n", "\n", " # obtain previous year's values\n", " last_year_df=pd.DataFrame(stats_df[stats_df['year']==last_year]['value'])\n", " last_year_df.columns=['Last year']\n", " last_year_df.reset_index(drop=True, inplace=True)\n", " \n", " # loop through dates and obtain current year values, if not data yet, add a blank\n", " for i in range(len(date_range)):\n", "\n", " temp=this_year_df[this_year_df['month']==date_range['Date'][i]]\n", "\n", " if (len(temp)!=0):\n", "\n", " add=temp['value'].iloc[0]\n", "\n", " this_year_vals.append(add)\n", "\n", " elif (len(temp)==0):\n", "\n", " this_year_vals.append('')\n", "\n", " # convert stats lists to data frames\n", " mins_df=pd.DataFrame(mins, columns=['Min.'])\n", " maxs_df=pd.DataFrame(maxs, columns=['Max.'])\n", " avgs_df=pd.DataFrame(avgs, columns=[f'Average {stats_start_y}-{stats_end_y}'])\n", " this_year_vals_df=pd.DataFrame(this_year_vals, columns=['Current year'])\n", " \n", " # compile data\n", " seasonal_df=pd.concat([date_range, mins_df, maxs_df, avgs_df, last_year_df, this_year_vals_df], axis=1)\n", " \n", " # calculate the range \n", " seasonal_df[f'Range {stats_start_y}-{stats_end_y}']=seasonal_df['Max.']-seasonal_df['Min.']\n", " \n", " # compile in desired order\n", " seasonal_df=seasonal_df[['Date', 'Min.', f'Range {stats_start_y}-{stats_end_y}', f'Average {stats_start_y}-{stats_end_y}', 'Last year', 'Current year']]\n", " \n", " \n", " return seasonal_df\n", "\n", "# Function to plot seasonal chart\n", "def plot_seasonal(y_min, y_max, data, title):\n", " df=data\n", "\n", " colors = {\n", " 'Min.': 'white', \n", " list(df.columns)[2]: 'lightblue', \n", " list(df.columns)[3]: 'blue', \n", " 'Last year': 'yellow', \n", " 'Current year': 'red' \n", " }\n", "\n", " fig = px.area(df, x='Date', y=list(df.columns)[1:3], title=title, color_discrete_map=colors)\n", "\n", " # Add line charts for Average, Last year, and Current year\n", " for column in list(df.columns)[3:6]:\n", " fig.add_scatter(x=df['Date'], y=df[column], mode='lines', name=column, line=dict(color=colors[column]))\n", "\n", " # Set the y-axis range\n", " fig.update_yaxes(range=[y_min, y_max])\n", "\n", " # Show the plot\n", " fig.show()\n", " \n", "# Function to plot and extract seasonal data\n", "def complete_seasonal_voyages(start_y, start_m, start_d, origin, origin_excl, destination, destination_excl, prod, prod_excl, vessel_class, vessel_class_excl, status, freq, unit, operator, ma_period, plot, title, y_min, y_max):\n", "\n", " # Query voyages data\n", " daily_voyages_ts=voyages_time_series(start_y=start_y, start_m=start_m, start_d=start_d, \n", " prod=prod, prod_excl=prod_excl, \n", " vessel_class=vessel_class, vessel_class_excl=vessel_class_excl, \n", " status=status,\n", " freq=freq, unit=unit, operator=operator, \n", " origin=origin, origin_excl=origin_excl,\n", " destination=destination, destination_excl=destination_excl)\n", "\n", "\n", " if ma_period==None:\n", " data=seasonal_charts(data=daily_voyages_ts, freq=freq, start_y=start_y)\n", "\n", " else:\n", " # Calculate moving averages\n", " voyages_ts_x_day_ma=moving_average(data=daily_voyages_ts, period=ma_period, option='single')\n", " data=seasonal_charts(data=voyages_ts_x_day_ma, freq=freq, start_y=start_y)\n", " title=title+f' ({ma_period}-{freq} MA)'\n", "\n", " if plot:\n", " plot_seasonal(y_min=y_min, y_max=y_max, \n", " data=data, \n", " title=title)\n", " \n", " return data" ] }, { "cell_type": "markdown", "id": "8b81d4ee", "metadata": {}, "source": [ "## Post laden route ballast distribution\n", "Due to Vortexa's unique Voyages dataset, which has unique identifiers which are all linked to the next voyage as well as the previous voyage identifiers, we can gain insight into what tankers are doing after they discharge on a specified route. This is valuable for analysts who support freight traiders and who want to plan the best regional positioning of their fleets based on the latest changes in tanker behaviour. Additionally, commodity traders can use this to anticipate increased demand in a region.\n", "\n" ] }, { "cell_type": "markdown", "id": "d4b1eb59", "metadata": {}, "source": [ "### Worked example - TC2\n", "In this example, we visualise the behaviour of MR2 tankers after discharging CPP on TC2 (Europe-to-USAC)." ] }, { "cell_type": "code", "execution_count": 6, "id": "92272dc2", "metadata": { "ExecuteTime": { "end_time": "2024-05-31T16:54:52.602624Z", "start_time": "2024-05-31T16:54:40.335536Z" } }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "fillpattern": { "shape": "" }, "hovertemplate": "variable=Gulf of Mexico (GoM)
Date=%{x}
Proportion of voyages=%{y}", "legendgroup": "Gulf of Mexico (GoM)", "line": { "color": "#636efa" }, "marker": { "symbol": "circle" }, "mode": "lines", "name": "Gulf of Mexico (GoM)", "orientation": "v", "showlegend": true, "stackgroup": "1", "type": "scatter", "x": [ "2021-01-01T00:00:00", "2021-02-01T00:00:00", "2021-03-01T00:00:00", "2021-04-01T00:00:00", "2021-05-01T00:00:00", "2021-06-01T00:00:00", "2021-07-01T00:00:00", "2021-08-01T00:00:00", "2021-09-01T00:00:00", "2021-10-01T00:00:00", "2021-11-01T00:00:00", "2021-12-01T00:00:00", "2022-01-01T00:00:00", "2022-02-01T00:00:00", "2022-03-01T00:00:00", "2022-04-01T00:00:00", "2022-05-01T00:00:00", "2022-06-01T00:00:00", "2022-07-01T00:00:00", "2022-08-01T00:00:00", "2022-09-01T00:00:00", "2022-10-01T00:00:00", "2022-11-01T00:00:00", "2022-12-01T00:00:00", "2023-01-01T00:00:00", "2023-02-01T00:00:00", "2023-03-01T00:00:00", "2023-04-01T00:00:00", "2023-05-01T00:00:00", "2023-06-01T00:00:00", "2023-07-01T00:00:00", "2023-08-01T00:00:00", "2023-09-01T00:00:00", "2023-10-01T00:00:00", "2023-11-01T00:00:00", "2023-12-01T00:00:00", "2024-01-01T00:00:00", "2024-02-01T00:00:00", "2024-03-01T00:00:00", "2024-04-01T00:00:00", "2024-05-01T00:00:00" ], "xaxis": "x", "y": [ 0.56, 0.36363636363636365, 0.2857142857142857, 0.3448275862068966, 0.3157894736842105, 0.48484848484848486, 0.35294117647058826, 0.4583333333333333, 0.3409090909090909, 0.6296296296296297, 0.6923076923076923, 0.5652173913043478, 0.5, 0.42857142857142855, 0.6875, 0.5, 0.6571428571428571, 0.47058823529411764, 0.5789473684210527, 0.5217391304347826, 0.5185185185185185, 0.4375, 0.47368421052631576, 0.5, 0.3333333333333333, 0.6086956521739131, 0.5333333333333333, 0.4444444444444444, 0.4838709677419355, 0.6764705882352942, 0.6285714285714286, 0.4375, 0.5, 0.7083333333333334, 0.8421052631578947, 0.8695652173913043, 0.6428571428571429, 0.42857142857142855, 0.6, 0.6206896551724138, 0.8 ], "yaxis": "y" }, { "fillpattern": { "shape": "" }, "hovertemplate": "variable=Northwest Europe (NWE)
Date=%{x}
Proportion of voyages=%{y}", "legendgroup": "Northwest Europe (NWE)", "line": { "color": "#EF553B" }, "marker": { "symbol": "circle" }, "mode": "lines", "name": "Northwest Europe (NWE)", "orientation": "v", "showlegend": true, "stackgroup": "1", "type": "scatter", "x": [ "2021-01-01T00:00:00", "2021-02-01T00:00:00", "2021-03-01T00:00:00", "2021-04-01T00:00:00", "2021-05-01T00:00:00", "2021-06-01T00:00:00", "2021-07-01T00:00:00", "2021-08-01T00:00:00", "2021-09-01T00:00:00", "2021-10-01T00:00:00", "2021-11-01T00:00:00", "2021-12-01T00:00:00", "2022-01-01T00:00:00", "2022-02-01T00:00:00", "2022-03-01T00:00:00", "2022-04-01T00:00:00", "2022-05-01T00:00:00", "2022-06-01T00:00:00", "2022-07-01T00:00:00", "2022-08-01T00:00:00", "2022-09-01T00:00:00", "2022-10-01T00:00:00", "2022-11-01T00:00:00", "2022-12-01T00:00:00", "2023-01-01T00:00:00", "2023-02-01T00:00:00", "2023-03-01T00:00:00", "2023-04-01T00:00:00", "2023-05-01T00:00:00", "2023-06-01T00:00:00", "2023-07-01T00:00:00", "2023-08-01T00:00:00", "2023-09-01T00:00:00", "2023-10-01T00:00:00", "2023-11-01T00:00:00", "2023-12-01T00:00:00", "2024-01-01T00:00:00", "2024-02-01T00:00:00", "2024-03-01T00:00:00", "2024-04-01T00:00:00", "2024-05-01T00:00:00" ], "xaxis": "x", "y": [ 0.24, 0.36363636363636365, 0.3142857142857143, 0.4827586206896552, 0.3684210526315789, 0.24242424242424243, 0.14705882352941177, 0.375, 0.4090909090909091, 0.2222222222222222, 0.15384615384615385, 0.21739130434782608, 0.14285714285714285, 0.14285714285714285, 0, 0.2857142857142857, 0.2, 0.2647058823529412, 0.15789473684210525, 0.2608695652173913, 0.07407407407407407, 0.3125, 0.3157894736842105, 0.13333333333333333, 0.3333333333333333, 0.08695652173913043, 0.13333333333333333, 0.2222222222222222, 0.2903225806451613, 0.11764705882352941, 0.14285714285714285, 0.1875, 0.2916666666666667, 0.125, 0.05263157894736842, 0.043478260869565216, 0.14285714285714285, 0, 0, 0.06896551724137931, 0.03333333333333333 ], "yaxis": "y" }, { "fillpattern": { "shape": "" }, "hovertemplate": "variable=Mediterranean (Med)
Date=%{x}
Proportion of voyages=%{y}", "legendgroup": "Mediterranean (Med)", "line": { "color": "#00cc96" }, "marker": { "symbol": "circle" }, "mode": "lines", "name": "Mediterranean (Med)", "orientation": "v", "showlegend": true, "stackgroup": "1", "type": "scatter", "x": [ "2021-01-01T00:00:00", "2021-02-01T00:00:00", "2021-03-01T00:00:00", "2021-04-01T00:00:00", "2021-05-01T00:00:00", "2021-06-01T00:00:00", "2021-07-01T00:00:00", "2021-08-01T00:00:00", "2021-09-01T00:00:00", "2021-10-01T00:00:00", "2021-11-01T00:00:00", "2021-12-01T00:00:00", "2022-01-01T00:00:00", "2022-02-01T00:00:00", "2022-03-01T00:00:00", "2022-04-01T00:00:00", "2022-05-01T00:00:00", "2022-06-01T00:00:00", "2022-07-01T00:00:00", "2022-08-01T00:00:00", "2022-09-01T00:00:00", "2022-10-01T00:00:00", "2022-11-01T00:00:00", "2022-12-01T00:00:00", "2023-01-01T00:00:00", "2023-02-01T00:00:00", "2023-03-01T00:00:00", "2023-04-01T00:00:00", "2023-05-01T00:00:00", "2023-06-01T00:00:00", "2023-07-01T00:00:00", "2023-08-01T00:00:00", "2023-09-01T00:00:00", "2023-10-01T00:00:00", "2023-11-01T00:00:00", "2023-12-01T00:00:00", "2024-01-01T00:00:00", "2024-02-01T00:00:00", "2024-03-01T00:00:00", "2024-04-01T00:00:00", "2024-05-01T00:00:00" ], "xaxis": "x", "y": [ 0, 0.13636363636363635, 0.14285714285714285, 0.034482758620689655, 0.02631578947368421, 0.18181818181818182, 0.08823529411764706, 0, 0.09090909090909091, 0.1111111111111111, 0, 0.043478260869565216, 0, 0.09523809523809523, 0, 0, 0.05714285714285714, 0.11764705882352941, 0, 0.043478260869565216, 0.14814814814814814, 0, 0.05263157894736842, 0.06666666666666667, 0.2222222222222222, 0.08695652173913043, 0.06666666666666667, 0.07407407407407407, 0.06451612903225806, 0, 0, 0.09375, 0.125, 0.041666666666666664, 0, 0, 0, 0.14285714285714285, 0.06666666666666667, 0.1724137931034483, 0.03333333333333333 ], "yaxis": "y" }, { "fillpattern": { "shape": "" }, "hovertemplate": "variable=other
Date=%{x}
Proportion of voyages=%{y}", "legendgroup": "other", "line": { "color": "#ab63fa" }, "marker": { "symbol": "circle" }, "mode": "lines", "name": "other", "orientation": "v", "showlegend": true, "stackgroup": "1", "type": "scatter", "x": [ "2021-01-01T00:00:00", "2021-02-01T00:00:00", "2021-03-01T00:00:00", "2021-04-01T00:00:00", "2021-05-01T00:00:00", "2021-06-01T00:00:00", "2021-07-01T00:00:00", "2021-08-01T00:00:00", "2021-09-01T00:00:00", "2021-10-01T00:00:00", "2021-11-01T00:00:00", "2021-12-01T00:00:00", "2022-01-01T00:00:00", "2022-02-01T00:00:00", "2022-03-01T00:00:00", "2022-04-01T00:00:00", "2022-05-01T00:00:00", "2022-06-01T00:00:00", "2022-07-01T00:00:00", "2022-08-01T00:00:00", "2022-09-01T00:00:00", "2022-10-01T00:00:00", "2022-11-01T00:00:00", "2022-12-01T00:00:00", "2023-01-01T00:00:00", "2023-02-01T00:00:00", "2023-03-01T00:00:00", "2023-04-01T00:00:00", "2023-05-01T00:00:00", "2023-06-01T00:00:00", "2023-07-01T00:00:00", "2023-08-01T00:00:00", "2023-09-01T00:00:00", "2023-10-01T00:00:00", "2023-11-01T00:00:00", "2023-12-01T00:00:00", "2024-01-01T00:00:00", "2024-02-01T00:00:00", "2024-03-01T00:00:00", "2024-04-01T00:00:00", "2024-05-01T00:00:00" ], "xaxis": "x", "y": [ 0.2, 0.13636363636363635, 0.2571428571428572, 0.13793103448275862, 0.2894736842105263, 0.09090909090909091, 0.411764705882353, 0.16666666666666666, 0.1590909090909091, 0.037037037037037035, 0.15384615384615385, 0.17391304347826086, 0.3571428571428571, 0.3333333333333333, 0.3125, 0.21428571428571427, 0.08571428571428572, 0.14705882352941177, 0.2631578947368421, 0.17391304347826086, 0.25925925925925924, 0.25, 0.15789473684210525, 0.3, 0.1111111111111111, 0.21739130434782608, 0.26666666666666666, 0.25925925925925924, 0.16129032258064516, 0.2058823529411765, 0.2285714285714286, 0.28125, 0.08333333333333333, 0.125, 0.10526315789473684, 0.08695652173913043, 0.21428571428571427, 0.4285714285714285, 0.3333333333333333, 0.13793103448275862, 0.13333333333333333 ], "yaxis": "y" } ], "layout": { "legend": { "title": { "text": "variable" }, "tracegroupgap": 0 }, "margin": { "t": 60 }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "fillpattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "sequentialminus": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "xaxis": { "anchor": "y", "domain": [ 0, 1 ], "rangeslider": { "visible": true }, "title": { "text": "Date" } }, "yaxis": { "anchor": "x", "domain": [ 0, 1 ], "title": { "text": "Proportion of voyages" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# Query and plot post ballast counts for MR2s trading TC2\n", "tc2_post_ballast=post_ballast_distribution(origin=nwe, origin_excl=None, \n", " destination=usac, destination_excl=None, \n", " vessel_class='oil_mr2', \n", " product=cpp, product_excl=lpg, \n", " start_y=2021, start_m=1, start_d=1, \n", " end_y=2024, end_m=5, end_d=31, \n", " show_top_x=3, plot=True, option='proportions')\n", "\n", "\n", "\n" ] }, { "cell_type": "markdown", "id": "a6b1e6b7", "metadata": {}, "source": [ "### Overlay with speed data\n", "Use voyages time series to aggregate ballast speeds towards region of interest." ] }, { "cell_type": "code", "execution_count": 7, "id": "cdf5867a", "metadata": { "ExecuteTime": { "end_time": "2024-05-31T16:55:58.149437Z", "start_time": "2024-05-31T16:55:52.332338Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Downloading avg_speed for period: 2018-01-01 00:00:00 to 2021-12-31 23:59:59\n", "Downloading avg_speed for period: 2022-01-01 00:00:00 to 2024-05-30 00:00:00\n" ] }, { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "hovertemplate": "variable=value
Date=%{x}
_value=%{y}", "legendgroup": "value", "line": { "color": "#636efa", "dash": "solid" }, "marker": { "symbol": "circle" }, "mode": "lines", "name": "value", "showlegend": true, "type": "scattergl", "x": [ "2018-01-01T00:00:00+00:00", "2018-01-02T00:00:00+00:00", "2018-01-03T00:00:00+00:00", "2018-01-04T00:00:00+00:00", "2018-01-05T00:00:00+00:00", "2018-01-06T00:00:00+00:00", "2018-01-07T00:00:00+00:00", "2018-01-08T00:00:00+00:00", "2018-01-09T00:00:00+00:00", "2018-01-10T00:00:00+00:00", "2018-01-11T00:00:00+00:00", "2018-01-12T00:00:00+00:00", "2018-01-13T00:00:00+00:00", "2018-01-14T00:00:00+00:00", "2018-01-15T00:00:00+00:00", "2018-01-16T00:00:00+00:00", "2018-01-17T00:00:00+00:00", "2018-01-18T00:00:00+00:00", "2018-01-19T00:00:00+00:00", "2018-01-20T00:00:00+00:00", "2018-01-21T00:00:00+00:00", "2018-01-22T00:00:00+00:00", "2018-01-23T00:00:00+00:00", "2018-01-24T00:00:00+00:00", "2018-01-25T00:00:00+00:00", "2018-01-26T00:00:00+00:00", "2018-01-27T00:00:00+00:00", "2018-01-28T00:00:00+00:00", "2018-01-29T00:00:00+00:00", "2018-01-30T00:00:00+00:00", "2018-01-31T00:00:00+00:00", "2018-02-01T00:00:00+00:00", "2018-02-02T00:00:00+00:00", "2018-02-03T00:00:00+00:00", "2018-02-04T00:00:00+00:00", "2018-02-05T00:00:00+00:00", "2018-02-06T00:00:00+00:00", "2018-02-07T00:00:00+00:00", "2018-02-08T00:00:00+00:00", "2018-02-09T00:00:00+00:00", "2018-02-10T00:00:00+00:00", "2018-02-11T00:00:00+00:00", "2018-02-12T00:00:00+00:00", "2018-02-13T00:00:00+00:00", "2018-02-14T00:00:00+00:00", "2018-02-15T00:00:00+00:00", "2018-02-16T00:00:00+00:00", "2018-02-17T00:00:00+00:00", "2018-02-18T00:00:00+00:00", "2018-02-19T00:00:00+00:00", "2018-02-20T00:00:00+00:00", "2018-02-21T00:00:00+00:00", "2018-02-22T00:00:00+00:00", "2018-02-23T00:00:00+00:00", "2018-02-24T00:00:00+00:00", "2018-02-25T00:00:00+00:00", "2018-02-26T00:00:00+00:00", "2018-02-27T00:00:00+00:00", "2018-02-28T00:00:00+00:00", "2018-03-01T00:00:00+00:00", "2018-03-02T00:00:00+00:00", "2018-03-03T00:00:00+00:00", "2018-03-04T00:00:00+00:00", "2018-03-05T00:00:00+00:00", "2018-03-06T00:00:00+00:00", "2018-03-07T00:00:00+00:00", "2018-03-08T00:00:00+00:00", "2018-03-09T00:00:00+00:00", "2018-03-10T00:00:00+00:00", "2018-03-11T00:00:00+00:00", "2018-03-12T00:00:00+00:00", "2018-03-13T00:00:00+00:00", "2018-03-14T00:00:00+00:00", "2018-03-15T00:00:00+00:00", "2018-03-16T00:00:00+00:00", "2018-03-17T00:00:00+00:00", "2018-03-18T00:00:00+00:00", "2018-03-19T00:00:00+00:00", "2018-03-20T00:00:00+00:00", "2018-03-21T00:00:00+00:00", "2018-03-22T00:00:00+00:00", "2018-03-23T00:00:00+00:00", "2018-03-24T00:00:00+00:00", "2018-03-25T00:00:00+00:00", "2018-03-26T00:00:00+00:00", "2018-03-27T00:00:00+00:00", "2018-03-28T00:00:00+00:00", "2018-03-29T00:00:00+00:00", "2018-03-30T00:00:00+00:00", "2018-03-31T00:00:00+00:00", "2018-04-01T00:00:00+00:00", "2018-04-02T00:00:00+00:00", "2018-04-03T00:00:00+00:00", "2018-04-04T00:00:00+00:00", "2018-04-05T00:00:00+00:00", "2018-04-06T00:00:00+00:00", "2018-04-07T00:00:00+00:00", "2018-04-08T00:00:00+00:00", "2018-04-09T00:00:00+00:00", "2018-04-10T00:00:00+00:00", "2018-04-11T00:00:00+00:00", "2018-04-12T00:00:00+00:00", "2018-04-13T00:00:00+00:00", "2018-04-14T00:00:00+00:00", "2018-04-15T00:00:00+00:00", "2018-04-16T00:00:00+00:00", "2018-04-17T00:00:00+00:00", "2018-04-18T00:00:00+00:00", "2018-04-19T00:00:00+00:00", "2018-04-20T00:00:00+00:00", "2018-04-21T00:00:00+00:00", "2018-04-22T00:00:00+00:00", "2018-04-23T00:00:00+00:00", "2018-04-24T00:00:00+00:00", "2018-04-25T00:00:00+00:00", "2018-04-26T00:00:00+00:00", "2018-04-27T00:00:00+00:00", "2018-04-28T00:00:00+00:00", "2018-04-29T00:00:00+00:00", "2018-04-30T00:00:00+00:00", "2018-05-01T00:00:00+00:00", "2018-05-02T00:00:00+00:00", "2018-05-03T00:00:00+00:00", "2018-05-04T00:00:00+00:00", "2018-05-05T00:00:00+00:00", "2018-05-06T00:00:00+00:00", "2018-05-07T00:00:00+00:00", "2018-05-08T00:00:00+00:00", "2018-05-09T00:00:00+00:00", "2018-05-10T00:00:00+00:00", "2018-05-11T00:00:00+00:00", "2018-05-12T00:00:00+00:00", "2018-05-13T00:00:00+00:00", "2018-05-14T00:00:00+00:00", "2018-05-15T00:00:00+00:00", "2018-05-16T00:00:00+00:00", "2018-05-17T00:00:00+00:00", "2018-05-18T00:00:00+00:00", "2018-05-19T00:00:00+00:00", "2018-05-20T00:00:00+00:00", "2018-05-21T00:00:00+00:00", "2018-05-22T00:00:00+00:00", "2018-05-23T00:00:00+00:00", "2018-05-24T00:00:00+00:00", "2018-05-25T00:00:00+00:00", "2018-05-26T00:00:00+00:00", "2018-05-27T00:00:00+00:00", "2018-05-28T00:00:00+00:00", "2018-05-29T00:00:00+00:00", "2018-05-30T00:00:00+00:00", "2018-05-31T00:00:00+00:00", "2018-06-01T00:00:00+00:00", "2018-06-02T00:00:00+00:00", "2018-06-03T00:00:00+00:00", "2018-06-04T00:00:00+00:00", "2018-06-05T00:00:00+00:00", "2018-06-06T00:00:00+00:00", "2018-06-07T00:00:00+00:00", "2018-06-08T00:00:00+00:00", "2018-06-09T00:00:00+00:00", "2018-06-10T00:00:00+00:00", "2018-06-11T00:00:00+00:00", "2018-06-12T00:00:00+00:00", "2018-06-13T00:00:00+00:00", "2018-06-14T00:00:00+00:00", "2018-06-15T00:00:00+00:00", "2018-06-16T00:00:00+00:00", "2018-06-17T00:00:00+00:00", "2018-06-18T00:00:00+00:00", "2018-06-19T00:00:00+00:00", "2018-06-20T00:00:00+00:00", "2018-06-21T00:00:00+00:00", "2018-06-22T00:00:00+00:00", "2018-06-23T00:00:00+00:00", "2018-06-24T00:00:00+00:00", "2018-06-25T00:00:00+00:00", "2018-06-26T00:00:00+00:00", "2018-06-27T00:00:00+00:00", "2018-06-28T00:00:00+00:00", "2018-06-29T00:00:00+00:00", "2018-06-30T00:00:00+00:00", "2018-07-01T00:00:00+00:00", "2018-07-02T00:00:00+00:00", "2018-07-03T00:00:00+00:00", "2018-07-04T00:00:00+00:00", "2018-07-05T00:00:00+00:00", "2018-07-06T00:00:00+00:00", "2018-07-07T00:00:00+00:00", "2018-07-08T00:00:00+00:00", "2018-07-09T00:00:00+00:00", "2018-07-10T00:00:00+00:00", "2018-07-11T00:00:00+00:00", "2018-07-12T00:00:00+00:00", "2018-07-13T00:00:00+00:00", "2018-07-14T00:00:00+00:00", "2018-07-15T00:00:00+00:00", "2018-07-16T00:00:00+00:00", "2018-07-17T00:00:00+00:00", "2018-07-18T00:00:00+00:00", "2018-07-19T00:00:00+00:00", "2018-07-20T00:00:00+00:00", "2018-07-21T00:00:00+00:00", "2018-07-22T00:00:00+00:00", "2018-07-23T00:00:00+00:00", "2018-07-24T00:00:00+00:00", "2018-07-25T00:00:00+00:00", "2018-07-26T00:00:00+00:00", "2018-07-27T00:00:00+00:00", "2018-07-28T00:00:00+00:00", "2018-07-29T00:00:00+00:00", "2018-07-30T00:00:00+00:00", "2018-07-31T00:00:00+00:00", "2018-08-01T00:00:00+00:00", "2018-08-02T00:00:00+00:00", "2018-08-03T00:00:00+00:00", "2018-08-04T00:00:00+00:00", "2018-08-05T00:00:00+00:00", "2018-08-06T00:00:00+00:00", "2018-08-07T00:00:00+00:00", "2018-08-08T00:00:00+00:00", "2018-08-09T00:00:00+00:00", "2018-08-10T00:00:00+00:00", "2018-08-11T00:00:00+00:00", "2018-08-12T00:00:00+00:00", "2018-08-13T00:00:00+00:00", "2018-08-14T00:00:00+00:00", "2018-08-15T00:00:00+00:00", "2018-08-16T00:00:00+00:00", "2018-08-17T00:00:00+00:00", "2018-08-18T00:00:00+00:00", "2018-08-19T00:00:00+00:00", "2018-08-20T00:00:00+00:00", "2018-08-21T00:00:00+00:00", "2018-08-22T00:00:00+00:00", "2018-08-23T00:00:00+00:00", "2018-08-24T00:00:00+00:00", "2018-08-25T00:00:00+00:00", "2018-08-26T00:00:00+00:00", "2018-08-27T00:00:00+00:00", "2018-08-28T00:00:00+00:00", "2018-08-29T00:00:00+00:00", "2018-08-30T00:00:00+00:00", "2018-08-31T00:00:00+00:00", "2018-09-01T00:00:00+00:00", "2018-09-02T00:00:00+00:00", "2018-09-03T00:00:00+00:00", "2018-09-04T00:00:00+00:00", "2018-09-05T00:00:00+00:00", "2018-09-06T00:00:00+00:00", "2018-09-07T00:00:00+00:00", "2018-09-08T00:00:00+00:00", "2018-09-09T00:00:00+00:00", "2018-09-10T00:00:00+00:00", "2018-09-11T00:00:00+00:00", "2018-09-12T00:00:00+00:00", "2018-09-13T00:00:00+00:00", "2018-09-14T00:00:00+00:00", "2018-09-15T00:00:00+00:00", "2018-09-16T00:00:00+00:00", "2018-09-17T00:00:00+00:00", "2018-09-18T00:00:00+00:00", "2018-09-19T00:00:00+00:00", "2018-09-20T00:00:00+00:00", "2018-09-21T00:00:00+00:00", "2018-09-22T00:00:00+00:00", "2018-09-23T00:00:00+00:00", "2018-09-24T00:00:00+00:00", "2018-09-25T00:00:00+00:00", "2018-09-26T00:00:00+00:00", "2018-09-27T00:00:00+00:00", "2018-09-28T00:00:00+00:00", "2018-09-29T00:00:00+00:00", "2018-09-30T00:00:00+00:00", "2018-10-01T00:00:00+00:00", "2018-10-02T00:00:00+00:00", "2018-10-03T00:00:00+00:00", "2018-10-04T00:00:00+00:00", "2018-10-05T00:00:00+00:00", "2018-10-06T00:00:00+00:00", "2018-10-07T00:00:00+00:00", "2018-10-08T00:00:00+00:00", "2018-10-09T00:00:00+00:00", "2018-10-10T00:00:00+00:00", "2018-10-11T00:00:00+00:00", "2018-10-12T00:00:00+00:00", "2018-10-13T00:00:00+00:00", "2018-10-14T00:00:00+00:00", "2018-10-15T00:00:00+00:00", "2018-10-16T00:00:00+00:00", "2018-10-17T00:00:00+00:00", "2018-10-18T00:00:00+00:00", "2018-10-19T00:00:00+00:00", "2018-10-20T00:00:00+00:00", "2018-10-21T00:00:00+00:00", "2018-10-22T00:00:00+00:00", "2018-10-23T00:00:00+00:00", "2018-10-24T00:00:00+00:00", "2018-10-25T00:00:00+00:00", "2018-10-26T00:00:00+00:00", "2018-10-27T00:00:00+00:00", "2018-10-28T00:00:00+00:00", "2018-10-29T00:00:00+00:00", "2018-10-30T00:00:00+00:00", "2018-10-31T00:00:00+00:00", "2018-11-01T00:00:00+00:00", "2018-11-02T00:00:00+00:00", "2018-11-03T00:00:00+00:00", "2018-11-04T00:00:00+00:00", "2018-11-05T00:00:00+00:00", "2018-11-06T00:00:00+00:00", "2018-11-07T00:00:00+00:00", "2018-11-08T00:00:00+00:00", "2018-11-09T00:00:00+00:00", "2018-11-10T00:00:00+00:00", "2018-11-11T00:00:00+00:00", "2018-11-12T00:00:00+00:00", "2018-11-13T00:00:00+00:00", "2018-11-14T00:00:00+00:00", "2018-11-15T00:00:00+00:00", "2018-11-16T00:00:00+00:00", "2018-11-17T00:00:00+00:00", "2018-11-18T00:00:00+00:00", "2018-11-19T00:00:00+00:00", "2018-11-20T00:00:00+00:00", "2018-11-21T00:00:00+00:00", "2018-11-22T00:00:00+00:00", "2018-11-23T00:00:00+00:00", "2018-11-24T00:00:00+00:00", "2018-11-25T00:00:00+00:00", "2018-11-26T00:00:00+00:00", "2018-11-27T00:00:00+00:00", "2018-11-28T00:00:00+00:00", "2018-11-29T00:00:00+00:00", "2018-11-30T00:00:00+00:00", "2018-12-01T00:00:00+00:00", "2018-12-02T00:00:00+00:00", "2018-12-03T00:00:00+00:00", "2018-12-04T00:00:00+00:00", "2018-12-05T00:00:00+00:00", "2018-12-06T00:00:00+00:00", "2018-12-07T00:00:00+00:00", "2018-12-08T00:00:00+00:00", "2018-12-09T00:00:00+00:00", "2018-12-10T00:00:00+00:00", "2018-12-11T00:00:00+00:00", "2018-12-12T00:00:00+00:00", "2018-12-13T00:00:00+00:00", "2018-12-14T00:00:00+00:00", "2018-12-15T00:00:00+00:00", "2018-12-16T00:00:00+00:00", "2018-12-17T00:00:00+00:00", "2018-12-18T00:00:00+00:00", "2018-12-19T00:00:00+00:00", "2018-12-20T00:00:00+00:00", "2018-12-21T00:00:00+00:00", "2018-12-22T00:00:00+00:00", "2018-12-23T00:00:00+00:00", "2018-12-24T00:00:00+00:00", "2018-12-25T00:00:00+00:00", "2018-12-26T00:00:00+00:00", "2018-12-27T00:00:00+00:00", "2018-12-28T00:00:00+00:00", "2018-12-29T00:00:00+00:00", "2018-12-30T00:00:00+00:00", "2018-12-31T00:00:00+00:00", "2019-01-01T00:00:00+00:00", "2019-01-02T00:00:00+00:00", "2019-01-03T00:00:00+00:00", "2019-01-04T00:00:00+00:00", "2019-01-05T00:00:00+00:00", "2019-01-06T00:00:00+00:00", "2019-01-07T00:00:00+00:00", "2019-01-08T00:00:00+00:00", "2019-01-09T00:00:00+00:00", "2019-01-10T00:00:00+00:00", "2019-01-11T00:00:00+00:00", "2019-01-12T00:00:00+00:00", "2019-01-13T00:00:00+00:00", "2019-01-14T00:00:00+00:00", "2019-01-15T00:00:00+00:00", "2019-01-16T00:00:00+00:00", "2019-01-17T00:00:00+00:00", "2019-01-18T00:00:00+00:00", "2019-01-19T00:00:00+00:00", "2019-01-20T00:00:00+00:00", "2019-01-21T00:00:00+00:00", "2019-01-22T00:00:00+00:00", "2019-01-23T00:00:00+00:00", "2019-01-24T00:00:00+00:00", "2019-01-25T00:00:00+00:00", "2019-01-26T00:00:00+00:00", "2019-01-27T00:00:00+00:00", "2019-01-28T00:00:00+00:00", "2019-01-29T00:00:00+00:00", "2019-01-30T00:00:00+00:00", "2019-01-31T00:00:00+00:00", "2019-02-01T00:00:00+00:00", "2019-02-02T00:00:00+00:00", "2019-02-03T00:00:00+00:00", "2019-02-04T00:00:00+00:00", "2019-02-05T00:00:00+00:00", "2019-02-06T00:00:00+00:00", "2019-02-07T00:00:00+00:00", "2019-02-08T00:00:00+00:00", "2019-02-09T00:00:00+00:00", "2019-02-10T00:00:00+00:00", "2019-02-11T00:00:00+00:00", "2019-02-12T00:00:00+00:00", "2019-02-13T00:00:00+00:00", "2019-02-14T00:00:00+00:00", "2019-02-15T00:00:00+00:00", "2019-02-16T00:00:00+00:00", "2019-02-17T00:00:00+00:00", "2019-02-18T00:00:00+00:00", "2019-02-19T00:00:00+00:00", "2019-02-20T00:00:00+00:00", "2019-02-21T00:00:00+00:00", "2019-02-22T00:00:00+00:00", "2019-02-23T00:00:00+00:00", "2019-02-24T00:00:00+00:00", "2019-02-25T00:00:00+00:00", "2019-02-26T00:00:00+00:00", "2019-02-27T00:00:00+00:00", "2019-02-28T00:00:00+00:00", "2019-03-01T00:00:00+00:00", "2019-03-02T00:00:00+00:00", "2019-03-03T00:00:00+00:00", "2019-03-04T00:00:00+00:00", "2019-03-05T00:00:00+00:00", "2019-03-06T00:00:00+00:00", "2019-03-07T00:00:00+00:00", "2019-03-08T00:00:00+00:00", "2019-03-09T00:00:00+00:00", "2019-03-10T00:00:00+00:00", "2019-03-11T00:00:00+00:00", "2019-03-12T00:00:00+00:00", "2019-03-13T00:00:00+00:00", "2019-03-14T00:00:00+00:00", "2019-03-15T00:00:00+00:00", "2019-03-16T00:00:00+00:00", "2019-03-17T00:00:00+00:00", "2019-03-18T00:00:00+00:00", "2019-03-19T00:00:00+00:00", "2019-03-20T00:00:00+00:00", "2019-03-21T00:00:00+00:00", "2019-03-22T00:00:00+00:00", "2019-03-23T00:00:00+00:00", "2019-03-24T00:00:00+00:00", "2019-03-25T00:00:00+00:00", "2019-03-26T00:00:00+00:00", "2019-03-27T00:00:00+00:00", "2019-03-28T00:00:00+00:00", "2019-03-29T00:00:00+00:00", "2019-03-30T00:00:00+00:00", "2019-03-31T00:00:00+00:00", "2019-04-01T00:00:00+00:00", "2019-04-02T00:00:00+00:00", "2019-04-03T00:00:00+00:00", "2019-04-04T00:00:00+00:00", "2019-04-05T00:00:00+00:00", "2019-04-06T00:00:00+00:00", "2019-04-07T00:00:00+00:00", "2019-04-08T00:00:00+00:00", "2019-04-09T00:00:00+00:00", "2019-04-10T00:00:00+00:00", "2019-04-11T00:00:00+00:00", "2019-04-12T00:00:00+00:00", "2019-04-13T00:00:00+00:00", "2019-04-14T00:00:00+00:00", "2019-04-15T00:00:00+00:00", "2019-04-16T00:00:00+00:00", "2019-04-17T00:00:00+00:00", "2019-04-18T00:00:00+00:00", "2019-04-19T00:00:00+00:00", "2019-04-20T00:00:00+00:00", "2019-04-21T00:00:00+00:00", "2019-04-22T00:00:00+00:00", "2019-04-23T00:00:00+00:00", "2019-04-24T00:00:00+00:00", "2019-04-25T00:00:00+00:00", "2019-04-26T00:00:00+00:00", "2019-04-27T00:00:00+00:00", "2019-04-28T00:00:00+00:00", "2019-04-29T00:00:00+00:00", "2019-04-30T00:00:00+00:00", "2019-05-01T00:00:00+00:00", "2019-05-02T00:00:00+00:00", "2019-05-03T00:00:00+00:00", "2019-05-04T00:00:00+00:00", "2019-05-05T00:00:00+00:00", "2019-05-06T00:00:00+00:00", "2019-05-07T00:00:00+00:00", "2019-05-08T00:00:00+00:00", "2019-05-09T00:00:00+00:00", "2019-05-10T00:00:00+00:00", "2019-05-11T00:00:00+00:00", "2019-05-12T00:00:00+00:00", "2019-05-13T00:00:00+00:00", "2019-05-14T00:00:00+00:00", "2019-05-15T00:00:00+00:00", "2019-05-16T00:00:00+00:00", "2019-05-17T00:00:00+00:00", "2019-05-18T00:00:00+00:00", "2019-05-19T00:00:00+00:00", "2019-05-20T00:00:00+00:00", "2019-05-21T00:00:00+00:00", "2019-05-22T00:00:00+00:00", "2019-05-23T00:00:00+00:00", "2019-05-24T00:00:00+00:00", "2019-05-25T00:00:00+00:00", "2019-05-26T00:00:00+00:00", "2019-05-27T00:00:00+00:00", "2019-05-28T00:00:00+00:00", "2019-05-29T00:00:00+00:00", "2019-05-30T00:00:00+00:00", "2019-05-31T00:00:00+00:00", "2019-06-01T00:00:00+00:00", "2019-06-02T00:00:00+00:00", "2019-06-03T00:00:00+00:00", "2019-06-04T00:00:00+00:00", "2019-06-05T00:00:00+00:00", "2019-06-06T00:00:00+00:00", "2019-06-07T00:00:00+00:00", "2019-06-08T00:00:00+00:00", "2019-06-09T00:00:00+00:00", "2019-06-10T00:00:00+00:00", "2019-06-11T00:00:00+00:00", "2019-06-12T00:00:00+00:00", "2019-06-13T00:00:00+00:00", "2019-06-14T00:00:00+00:00", "2019-06-15T00:00:00+00:00", "2019-06-16T00:00:00+00:00", "2019-06-17T00:00:00+00:00", "2019-06-18T00:00:00+00:00", "2019-06-19T00:00:00+00:00", "2019-06-20T00:00:00+00:00", "2019-06-21T00:00:00+00:00", "2019-06-22T00:00:00+00:00", "2019-06-23T00:00:00+00:00", "2019-06-24T00:00:00+00:00", "2019-06-25T00:00:00+00:00", "2019-06-26T00:00:00+00:00", "2019-06-27T00:00:00+00:00", "2019-06-28T00:00:00+00:00", "2019-06-29T00:00:00+00:00", "2019-06-30T00:00:00+00:00", "2019-07-01T00:00:00+00:00", "2019-07-02T00:00:00+00:00", "2019-07-03T00:00:00+00:00", "2019-07-04T00:00:00+00:00", "2019-07-05T00:00:00+00:00", "2019-07-06T00:00:00+00:00", "2019-07-07T00:00:00+00:00", "2019-07-08T00:00:00+00:00", "2019-07-09T00:00:00+00:00", "2019-07-10T00:00:00+00:00", "2019-07-11T00:00:00+00:00", "2019-07-12T00:00:00+00:00", "2019-07-13T00:00:00+00:00", "2019-07-14T00:00:00+00:00", "2019-07-15T00:00:00+00:00", "2019-07-16T00:00:00+00:00", "2019-07-17T00:00:00+00:00", "2019-07-18T00:00:00+00:00", "2019-07-19T00:00:00+00:00", "2019-07-20T00:00:00+00:00", "2019-07-21T00:00:00+00:00", "2019-07-22T00:00:00+00:00", "2019-07-23T00:00:00+00:00", "2019-07-24T00:00:00+00:00", "2019-07-25T00:00:00+00:00", "2019-07-26T00:00:00+00:00", "2019-07-27T00:00:00+00:00", "2019-07-28T00:00:00+00:00", "2019-07-29T00:00:00+00:00", "2019-07-30T00:00:00+00:00", "2019-07-31T00:00:00+00:00", "2019-08-01T00:00:00+00:00", "2019-08-02T00:00:00+00:00", "2019-08-03T00:00:00+00:00", "2019-08-04T00:00:00+00:00", "2019-08-05T00:00:00+00:00", "2019-08-06T00:00:00+00:00", "2019-08-07T00:00:00+00:00", "2019-08-08T00:00:00+00:00", "2019-08-09T00:00:00+00:00", "2019-08-10T00:00:00+00:00", "2019-08-11T00:00:00+00:00", "2019-08-12T00:00:00+00:00", "2019-08-13T00:00:00+00:00", "2019-08-14T00:00:00+00:00", "2019-08-15T00:00:00+00:00", "2019-08-16T00:00:00+00:00", "2019-08-17T00:00:00+00:00", "2019-08-18T00:00:00+00:00", "2019-08-19T00:00:00+00:00", "2019-08-20T00:00:00+00:00", "2019-08-21T00:00:00+00:00", "2019-08-22T00:00:00+00:00", "2019-08-23T00:00:00+00:00", "2019-08-24T00:00:00+00:00", "2019-08-25T00:00:00+00:00", "2019-08-26T00:00:00+00:00", "2019-08-27T00:00:00+00:00", "2019-08-28T00:00:00+00:00", "2019-08-29T00:00:00+00:00", "2019-08-30T00:00:00+00:00", "2019-08-31T00:00:00+00:00", "2019-09-01T00:00:00+00:00", "2019-09-02T00:00:00+00:00", "2019-09-03T00:00:00+00:00", "2019-09-04T00:00:00+00:00", "2019-09-05T00:00:00+00:00", "2019-09-06T00:00:00+00:00", "2019-09-07T00:00:00+00:00", "2019-09-08T00:00:00+00:00", "2019-09-09T00:00:00+00:00", "2019-09-10T00:00:00+00:00", "2019-09-11T00:00:00+00:00", "2019-09-12T00:00:00+00:00", "2019-09-13T00:00:00+00:00", "2019-09-14T00:00:00+00:00", "2019-09-15T00:00:00+00:00", "2019-09-16T00:00:00+00:00", "2019-09-17T00:00:00+00:00", "2019-09-18T00:00:00+00:00", "2019-09-19T00:00:00+00:00", "2019-09-20T00:00:00+00:00", "2019-09-21T00:00:00+00:00", "2019-09-22T00:00:00+00:00", "2019-09-23T00:00:00+00:00", "2019-09-24T00:00:00+00:00", "2019-09-25T00:00:00+00:00", "2019-09-26T00:00:00+00:00", "2019-09-27T00:00:00+00:00", "2019-09-28T00:00:00+00:00", "2019-09-29T00:00:00+00:00", "2019-09-30T00:00:00+00:00", "2019-10-01T00:00:00+00:00", "2019-10-02T00:00:00+00:00", "2019-10-03T00:00:00+00:00", "2019-10-04T00:00:00+00:00", "2019-10-05T00:00:00+00:00", "2019-10-06T00:00:00+00:00", "2019-10-07T00:00:00+00:00", "2019-10-08T00:00:00+00:00", "2019-10-09T00:00:00+00:00", "2019-10-10T00:00:00+00:00", "2019-10-11T00:00:00+00:00", "2019-10-12T00:00:00+00:00", "2019-10-13T00:00:00+00:00", "2019-10-14T00:00:00+00:00", "2019-10-15T00:00:00+00:00", "2019-10-16T00:00:00+00:00", "2019-10-17T00:00:00+00:00", "2019-10-18T00:00:00+00:00", "2019-10-19T00:00:00+00:00", "2019-10-20T00:00:00+00:00", "2019-10-21T00:00:00+00:00", "2019-10-22T00:00:00+00:00", "2019-10-23T00:00:00+00:00", "2019-10-24T00:00:00+00:00", "2019-10-25T00:00:00+00:00", "2019-10-26T00:00:00+00:00", "2019-10-27T00:00:00+00:00", "2019-10-28T00:00:00+00:00", "2019-10-29T00:00:00+00:00", "2019-10-30T00:00:00+00:00", "2019-10-31T00:00:00+00:00", "2019-11-01T00:00:00+00:00", "2019-11-02T00:00:00+00:00", "2019-11-03T00:00:00+00:00", "2019-11-04T00:00:00+00:00", "2019-11-05T00:00:00+00:00", "2019-11-06T00:00:00+00:00", "2019-11-07T00:00:00+00:00", "2019-11-08T00:00:00+00:00", "2019-11-09T00:00:00+00:00", "2019-11-10T00:00:00+00:00", "2019-11-11T00:00:00+00:00", "2019-11-12T00:00:00+00:00", "2019-11-13T00:00:00+00:00", "2019-11-14T00:00:00+00:00", "2019-11-15T00:00:00+00:00", "2019-11-16T00:00:00+00:00", "2019-11-17T00:00:00+00:00", "2019-11-18T00:00:00+00:00", "2019-11-19T00:00:00+00:00", "2019-11-20T00:00:00+00:00", "2019-11-21T00:00:00+00:00", "2019-11-22T00:00:00+00:00", "2019-11-23T00:00:00+00:00", "2019-11-24T00:00:00+00:00", "2019-11-25T00:00:00+00:00", "2019-11-26T00:00:00+00:00", "2019-11-27T00:00:00+00:00", "2019-11-28T00:00:00+00:00", "2019-11-29T00:00:00+00:00", "2019-11-30T00:00:00+00:00", "2019-12-01T00:00:00+00:00", "2019-12-02T00:00:00+00:00", "2019-12-03T00:00:00+00:00", "2019-12-04T00:00:00+00:00", "2019-12-05T00:00:00+00:00", "2019-12-06T00:00:00+00:00", "2019-12-07T00:00:00+00:00", "2019-12-08T00:00:00+00:00", "2019-12-09T00:00:00+00:00", "2019-12-10T00:00:00+00:00", "2019-12-11T00:00:00+00:00", "2019-12-12T00:00:00+00:00", "2019-12-13T00:00:00+00:00", "2019-12-14T00:00:00+00:00", "2019-12-15T00:00:00+00:00", "2019-12-16T00:00:00+00:00", "2019-12-17T00:00:00+00:00", "2019-12-18T00:00:00+00:00", "2019-12-19T00:00:00+00:00", "2019-12-20T00:00:00+00:00", "2019-12-21T00:00:00+00:00", "2019-12-22T00:00:00+00:00", "2019-12-23T00:00:00+00:00", "2019-12-24T00:00:00+00:00", "2019-12-25T00:00:00+00:00", "2019-12-26T00:00:00+00:00", "2019-12-27T00:00:00+00:00", "2019-12-28T00:00:00+00:00", "2019-12-29T00:00:00+00:00", "2019-12-30T00:00:00+00:00", "2019-12-31T00:00:00+00:00", "2020-01-01T00:00:00+00:00", "2020-01-02T00:00:00+00:00", "2020-01-03T00:00:00+00:00", "2020-01-04T00:00:00+00:00", "2020-01-05T00:00:00+00:00", "2020-01-06T00:00:00+00:00", "2020-01-07T00:00:00+00:00", "2020-01-08T00:00:00+00:00", "2020-01-09T00:00:00+00:00", "2020-01-10T00:00:00+00:00", "2020-01-11T00:00:00+00:00", "2020-01-12T00:00:00+00:00", "2020-01-13T00:00:00+00:00", "2020-01-14T00:00:00+00:00", "2020-01-15T00:00:00+00:00", "2020-01-16T00:00:00+00:00", "2020-01-17T00:00:00+00:00", "2020-01-18T00:00:00+00:00", "2020-01-19T00:00:00+00:00", "2020-01-20T00:00:00+00:00", "2020-01-21T00:00:00+00:00", "2020-01-22T00:00:00+00:00", "2020-01-23T00:00:00+00:00", "2020-01-24T00:00:00+00:00", "2020-01-25T00:00:00+00:00", "2020-01-26T00:00:00+00:00", "2020-01-27T00:00:00+00:00", "2020-01-28T00:00:00+00:00", "2020-01-29T00:00:00+00:00", "2020-01-30T00:00:00+00:00", "2020-01-31T00:00:00+00:00", "2020-02-01T00:00:00+00:00", "2020-02-02T00:00:00+00:00", "2020-02-03T00:00:00+00:00", "2020-02-04T00:00:00+00:00", "2020-02-05T00:00:00+00:00", "2020-02-06T00:00:00+00:00", "2020-02-07T00:00:00+00:00", "2020-02-08T00:00:00+00:00", "2020-02-09T00:00:00+00:00", "2020-02-10T00:00:00+00:00", "2020-02-11T00:00:00+00:00", "2020-02-12T00:00:00+00:00", "2020-02-13T00:00:00+00:00", "2020-02-14T00:00:00+00:00", "2020-02-15T00:00:00+00:00", "2020-02-16T00:00:00+00:00", "2020-02-17T00:00:00+00:00", "2020-02-18T00:00:00+00:00", "2020-02-19T00:00:00+00:00", "2020-02-20T00:00:00+00:00", "2020-02-21T00:00:00+00:00", "2020-02-22T00:00:00+00:00", "2020-02-23T00:00:00+00:00", "2020-02-24T00:00:00+00:00", "2020-02-25T00:00:00+00:00", "2020-02-26T00:00:00+00:00", "2020-02-27T00:00:00+00:00", "2020-02-28T00:00:00+00:00", "2020-02-29T00:00:00+00:00", "2020-03-01T00:00:00+00:00", "2020-03-02T00:00:00+00:00", "2020-03-03T00:00:00+00:00", "2020-03-04T00:00:00+00:00", "2020-03-05T00:00:00+00:00", "2020-03-06T00:00:00+00:00", "2020-03-07T00:00:00+00:00", "2020-03-08T00:00:00+00:00", "2020-03-09T00:00:00+00:00", "2020-03-10T00:00:00+00:00", "2020-03-11T00:00:00+00:00", "2020-03-12T00:00:00+00:00", "2020-03-13T00:00:00+00:00", "2020-03-14T00:00:00+00:00", "2020-03-15T00:00:00+00:00", "2020-03-16T00:00:00+00:00", "2020-03-17T00:00:00+00:00", "2020-03-18T00:00:00+00:00", "2020-03-19T00:00:00+00:00", "2020-03-20T00:00:00+00:00", "2020-03-21T00:00:00+00:00", "2020-03-22T00:00:00+00:00", "2020-03-23T00:00:00+00:00", "2020-03-24T00:00:00+00:00", "2020-03-25T00:00:00+00:00", "2020-03-26T00:00:00+00:00", "2020-03-27T00:00:00+00:00", "2020-03-28T00:00:00+00:00", "2020-03-29T00:00:00+00:00", "2020-03-30T00:00:00+00:00", "2020-03-31T00:00:00+00:00", "2020-04-01T00:00:00+00:00", "2020-04-02T00:00:00+00:00", "2020-04-03T00:00:00+00:00", "2020-04-04T00:00:00+00:00", "2020-04-05T00:00:00+00:00", "2020-04-06T00:00:00+00:00", "2020-04-07T00:00:00+00:00", "2020-04-08T00:00:00+00:00", "2020-04-09T00:00:00+00:00", "2020-04-10T00:00:00+00:00", "2020-04-11T00:00:00+00:00", "2020-04-12T00:00:00+00:00", "2020-04-13T00:00:00+00:00", "2020-04-14T00:00:00+00:00", "2020-04-15T00:00:00+00:00", "2020-04-16T00:00:00+00:00", "2020-04-17T00:00:00+00:00", "2020-04-18T00:00:00+00:00", "2020-04-19T00:00:00+00:00", "2020-04-20T00:00:00+00:00", "2020-04-21T00:00:00+00:00", "2020-04-22T00:00:00+00:00", "2020-04-23T00:00:00+00:00", "2020-04-24T00:00:00+00:00", "2020-04-25T00:00:00+00:00", "2020-04-26T00:00:00+00:00", "2020-04-27T00:00:00+00:00", "2020-04-28T00:00:00+00:00", "2020-04-29T00:00:00+00:00", "2020-04-30T00:00:00+00:00", "2020-05-01T00:00:00+00:00", "2020-05-02T00:00:00+00:00", "2020-05-03T00:00:00+00:00", "2020-05-04T00:00:00+00:00", "2020-05-05T00:00:00+00:00", "2020-05-06T00:00:00+00:00", "2020-05-07T00:00:00+00:00", "2020-05-08T00:00:00+00:00", "2020-05-09T00:00:00+00:00", "2020-05-10T00:00:00+00:00", "2020-05-11T00:00:00+00:00", "2020-05-12T00:00:00+00:00", "2020-05-13T00:00:00+00:00", "2020-05-14T00:00:00+00:00", "2020-05-15T00:00:00+00:00", "2020-05-16T00:00:00+00:00", "2020-05-17T00:00:00+00:00", "2020-05-18T00:00:00+00:00", "2020-05-19T00:00:00+00:00", "2020-05-20T00:00:00+00:00", "2020-05-21T00:00:00+00:00", "2020-05-22T00:00:00+00:00", "2020-05-23T00:00:00+00:00", "2020-05-24T00:00:00+00:00", "2020-05-25T00:00:00+00:00", "2020-05-26T00:00:00+00:00", "2020-05-27T00:00:00+00:00", "2020-05-28T00:00:00+00:00", "2020-05-29T00:00:00+00:00", "2020-05-30T00:00:00+00:00", "2020-05-31T00:00:00+00:00", "2020-06-01T00:00:00+00:00", "2020-06-02T00:00:00+00:00", "2020-06-03T00:00:00+00:00", "2020-06-04T00:00:00+00:00", "2020-06-05T00:00:00+00:00", "2020-06-06T00:00:00+00:00", "2020-06-07T00:00:00+00:00", "2020-06-08T00:00:00+00:00", "2020-06-09T00:00:00+00:00", "2020-06-10T00:00:00+00:00", "2020-06-11T00:00:00+00:00", "2020-06-12T00:00:00+00:00", "2020-06-13T00:00:00+00:00", "2020-06-14T00:00:00+00:00", "2020-06-15T00:00:00+00:00", "2020-06-16T00:00:00+00:00", "2020-06-17T00:00:00+00:00", "2020-06-18T00:00:00+00:00", "2020-06-19T00:00:00+00:00", "2020-06-20T00:00:00+00:00", "2020-06-21T00:00:00+00:00", "2020-06-22T00:00:00+00:00", "2020-06-23T00:00:00+00:00", "2020-06-24T00:00:00+00:00", "2020-06-25T00:00:00+00:00", "2020-06-26T00:00:00+00:00", "2020-06-27T00:00:00+00:00", "2020-06-28T00:00:00+00:00", "2020-06-29T00:00:00+00:00", "2020-06-30T00:00:00+00:00", "2020-07-01T00:00:00+00:00", "2020-07-02T00:00:00+00:00", "2020-07-03T00:00:00+00:00", "2020-07-04T00:00:00+00:00", "2020-07-05T00:00:00+00:00", "2020-07-06T00:00:00+00:00", "2020-07-07T00:00:00+00:00", "2020-07-08T00:00:00+00:00", "2020-07-09T00:00:00+00:00", "2020-07-10T00:00:00+00:00", "2020-07-11T00:00:00+00:00", "2020-07-12T00:00:00+00:00", "2020-07-13T00:00:00+00:00", "2020-07-14T00:00:00+00:00", "2020-07-15T00:00:00+00:00", "2020-07-16T00:00:00+00:00", "2020-07-17T00:00:00+00:00", "2020-07-18T00:00:00+00:00", "2020-07-19T00:00:00+00:00", "2020-07-20T00:00:00+00:00", "2020-07-21T00:00:00+00:00", "2020-07-22T00:00:00+00:00", "2020-07-23T00:00:00+00:00", "2020-07-24T00:00:00+00:00", "2020-07-25T00:00:00+00:00", "2020-07-26T00:00:00+00:00", "2020-07-27T00:00:00+00:00", "2020-07-28T00:00:00+00:00", "2020-07-29T00:00:00+00:00", "2020-07-30T00:00:00+00:00", "2020-07-31T00:00:00+00:00", "2020-08-01T00:00:00+00:00", "2020-08-02T00:00:00+00:00", "2020-08-03T00:00:00+00:00", "2020-08-04T00:00:00+00:00", "2020-08-05T00:00:00+00:00", "2020-08-06T00:00:00+00:00", "2020-08-07T00:00:00+00:00", "2020-08-08T00:00:00+00:00", "2020-08-09T00:00:00+00:00", "2020-08-10T00:00:00+00:00", "2020-08-11T00:00:00+00:00", "2020-08-12T00:00:00+00:00", "2020-08-13T00:00:00+00:00", "2020-08-14T00:00:00+00:00", "2020-08-15T00:00:00+00:00", "2020-08-16T00:00:00+00:00", "2020-08-17T00:00:00+00:00", "2020-08-18T00:00:00+00:00", "2020-08-19T00:00:00+00:00", "2020-08-20T00:00:00+00:00", "2020-08-21T00:00:00+00:00", "2020-08-22T00:00:00+00:00", "2020-08-23T00:00:00+00:00", "2020-08-24T00:00:00+00:00", "2020-08-25T00:00:00+00:00", "2020-08-26T00:00:00+00:00", "2020-08-27T00:00:00+00:00", "2020-08-28T00:00:00+00:00", "2020-08-29T00:00:00+00:00", "2020-08-30T00:00:00+00:00", "2020-08-31T00:00:00+00:00", "2020-09-01T00:00:00+00:00", "2020-09-02T00:00:00+00:00", "2020-09-03T00:00:00+00:00", "2020-09-04T00:00:00+00:00", "2020-09-05T00:00:00+00:00", "2020-09-06T00:00:00+00:00", "2020-09-07T00:00:00+00:00", "2020-09-08T00:00:00+00:00", "2020-09-09T00:00:00+00:00", "2020-09-10T00:00:00+00:00", "2020-09-11T00:00:00+00:00", "2020-09-12T00:00:00+00:00", "2020-09-13T00:00:00+00:00", "2020-09-14T00:00:00+00:00", "2020-09-15T00:00:00+00:00", "2020-09-16T00:00:00+00:00", "2020-09-17T00:00:00+00:00", "2020-09-18T00:00:00+00:00", "2020-09-19T00:00:00+00:00", "2020-09-20T00:00:00+00:00", "2020-09-21T00:00:00+00:00", "2020-09-22T00:00:00+00:00", "2020-09-23T00:00:00+00:00", "2020-09-24T00:00:00+00:00", "2020-09-25T00:00:00+00:00", "2020-09-26T00:00:00+00:00", "2020-09-27T00:00:00+00:00", "2020-09-28T00:00:00+00:00", "2020-09-29T00:00:00+00:00", "2020-09-30T00:00:00+00:00", "2020-10-01T00:00:00+00:00", "2020-10-02T00:00:00+00:00", "2020-10-03T00:00:00+00:00", "2020-10-04T00:00:00+00:00", "2020-10-05T00:00:00+00:00", "2020-10-06T00:00:00+00:00", "2020-10-07T00:00:00+00:00", "2020-10-08T00:00:00+00:00", "2020-10-09T00:00:00+00:00", "2020-10-10T00:00:00+00:00", "2020-10-11T00:00:00+00:00", "2020-10-12T00:00:00+00:00", "2020-10-13T00:00:00+00:00", "2020-10-14T00:00:00+00:00", "2020-10-15T00:00:00+00:00", "2020-10-16T00:00:00+00:00", "2020-10-17T00:00:00+00:00", "2020-10-18T00:00:00+00:00", "2020-10-19T00:00:00+00:00", "2020-10-20T00:00:00+00:00", "2020-10-21T00:00:00+00:00", "2020-10-22T00:00:00+00:00", "2020-10-23T00:00:00+00:00", "2020-10-24T00:00:00+00:00", "2020-10-25T00:00:00+00:00", "2020-10-26T00:00:00+00:00", "2020-10-27T00:00:00+00:00", "2020-10-28T00:00:00+00:00", "2020-10-29T00:00:00+00:00", "2020-10-30T00:00:00+00:00", "2020-10-31T00:00:00+00:00", "2020-11-01T00:00:00+00:00", "2020-11-02T00:00:00+00:00", "2020-11-03T00:00:00+00:00", "2020-11-04T00:00:00+00:00", "2020-11-05T00:00:00+00:00", "2020-11-06T00:00:00+00:00", "2020-11-07T00:00:00+00:00", "2020-11-08T00:00:00+00:00", "2020-11-09T00:00:00+00:00", "2020-11-10T00:00:00+00:00", "2020-11-11T00:00:00+00:00", "2020-11-12T00:00:00+00:00", "2020-11-13T00:00:00+00:00", "2020-11-14T00:00:00+00:00", "2020-11-15T00:00:00+00:00", "2020-11-16T00:00:00+00:00", "2020-11-17T00:00:00+00:00", "2020-11-18T00:00:00+00:00", "2020-11-19T00:00:00+00:00", "2020-11-20T00:00:00+00:00", "2020-11-21T00:00:00+00:00", "2020-11-22T00:00:00+00:00", "2020-11-23T00:00:00+00:00", "2020-11-24T00:00:00+00:00", "2020-11-25T00:00:00+00:00", "2020-11-26T00:00:00+00:00", "2020-11-27T00:00:00+00:00", "2020-11-28T00:00:00+00:00", "2020-11-29T00:00:00+00:00", "2020-11-30T00:00:00+00:00", "2020-12-01T00:00:00+00:00", "2020-12-02T00:00:00+00:00", "2020-12-03T00:00:00+00:00", "2020-12-04T00:00:00+00:00", "2020-12-05T00:00:00+00:00", "2020-12-06T00:00:00+00:00", "2020-12-07T00:00:00+00:00", "2020-12-08T00:00:00+00:00", "2020-12-09T00:00:00+00:00", "2020-12-10T00:00:00+00:00", "2020-12-11T00:00:00+00:00", "2020-12-12T00:00:00+00:00", "2020-12-13T00:00:00+00:00", "2020-12-14T00:00:00+00:00", "2020-12-15T00:00:00+00:00", "2020-12-16T00:00:00+00:00", "2020-12-17T00:00:00+00:00", "2020-12-18T00:00:00+00:00", "2020-12-19T00:00:00+00:00", "2020-12-20T00:00:00+00:00", "2020-12-21T00:00:00+00:00", "2020-12-22T00:00:00+00:00", "2020-12-23T00:00:00+00:00", "2020-12-24T00:00:00+00:00", "2020-12-25T00:00:00+00:00", "2020-12-26T00:00:00+00:00", "2020-12-27T00:00:00+00:00", "2020-12-28T00:00:00+00:00", "2020-12-29T00:00:00+00:00", "2020-12-30T00:00:00+00:00", "2020-12-31T00:00:00+00:00", "2021-01-01T00:00:00+00:00", "2021-01-02T00:00:00+00:00", "2021-01-03T00:00:00+00:00", "2021-01-04T00:00:00+00:00", "2021-01-05T00:00:00+00:00", "2021-01-06T00:00:00+00:00", "2021-01-07T00:00:00+00:00", "2021-01-08T00:00:00+00:00", "2021-01-09T00:00:00+00:00", "2021-01-10T00:00:00+00:00", "2021-01-11T00:00:00+00:00", "2021-01-12T00:00:00+00:00", "2021-01-13T00:00:00+00:00", "2021-01-14T00:00:00+00:00", "2021-01-15T00:00:00+00:00", "2021-01-16T00:00:00+00:00", "2021-01-17T00:00:00+00:00", "2021-01-18T00:00:00+00:00", "2021-01-19T00:00:00+00:00", "2021-01-20T00:00:00+00:00", "2021-01-21T00:00:00+00:00", "2021-01-22T00:00:00+00:00", "2021-01-23T00:00:00+00:00", "2021-01-24T00:00:00+00:00", "2021-01-25T00:00:00+00:00", "2021-01-26T00:00:00+00:00", "2021-01-27T00:00:00+00:00", "2021-01-28T00:00:00+00:00", "2021-01-29T00:00:00+00:00", "2021-01-30T00:00:00+00:00", "2021-01-31T00:00:00+00:00", "2021-02-01T00:00:00+00:00", "2021-02-02T00:00:00+00:00", "2021-02-03T00:00:00+00:00", "2021-02-04T00:00:00+00:00", "2021-02-05T00:00:00+00:00", "2021-02-06T00:00:00+00:00", "2021-02-07T00:00:00+00:00", "2021-02-08T00:00:00+00:00", "2021-02-09T00:00:00+00:00", "2021-02-10T00:00:00+00:00", "2021-02-11T00:00:00+00:00", "2021-02-12T00:00:00+00:00", "2021-02-13T00:00:00+00:00", "2021-02-14T00:00:00+00:00", "2021-02-15T00:00:00+00:00", "2021-02-16T00:00:00+00:00", "2021-02-17T00:00:00+00:00", "2021-02-18T00:00:00+00:00", "2021-02-19T00:00:00+00:00", "2021-02-20T00:00:00+00:00", "2021-02-21T00:00:00+00:00", "2021-02-22T00:00:00+00:00", "2021-02-23T00:00:00+00:00", "2021-02-24T00:00:00+00:00", "2021-02-25T00:00:00+00:00", "2021-02-26T00:00:00+00:00", "2021-02-27T00:00:00+00:00", "2021-02-28T00:00:00+00:00", "2021-03-01T00:00:00+00:00", "2021-03-02T00:00:00+00:00", "2021-03-03T00:00:00+00:00", "2021-03-04T00:00:00+00:00", "2021-03-05T00:00:00+00:00", "2021-03-06T00:00:00+00:00", "2021-03-07T00:00:00+00:00", "2021-03-08T00:00:00+00:00", "2021-03-09T00:00:00+00:00", "2021-03-10T00:00:00+00:00", "2021-03-11T00:00:00+00:00", "2021-03-12T00:00:00+00:00", "2021-03-13T00:00:00+00:00", "2021-03-14T00:00:00+00:00", "2021-03-15T00:00:00+00:00", "2021-03-16T00:00:00+00:00", "2021-03-17T00:00:00+00:00", "2021-03-18T00:00:00+00:00", "2021-03-19T00:00:00+00:00", "2021-03-20T00:00:00+00:00", "2021-03-21T00:00:00+00:00", "2021-03-22T00:00:00+00:00", "2021-03-23T00:00:00+00:00", "2021-03-24T00:00:00+00:00", "2021-03-25T00:00:00+00:00", "2021-03-26T00:00:00+00:00", "2021-03-27T00:00:00+00:00", "2021-03-28T00:00:00+00:00", "2021-03-29T00:00:00+00:00", "2021-03-30T00:00:00+00:00", "2021-03-31T00:00:00+00:00", "2021-04-01T00:00:00+00:00", "2021-04-02T00:00:00+00:00", "2021-04-03T00:00:00+00:00", "2021-04-04T00:00:00+00:00", "2021-04-05T00:00:00+00:00", "2021-04-06T00:00:00+00:00", "2021-04-07T00:00:00+00:00", "2021-04-08T00:00:00+00:00", "2021-04-09T00:00:00+00:00", "2021-04-10T00:00:00+00:00", "2021-04-11T00:00:00+00:00", "2021-04-12T00:00:00+00:00", "2021-04-13T00:00:00+00:00", "2021-04-14T00:00:00+00:00", "2021-04-15T00:00:00+00:00", "2021-04-16T00:00:00+00:00", "2021-04-17T00:00:00+00:00", "2021-04-18T00:00:00+00:00", "2021-04-19T00:00:00+00:00", "2021-04-20T00:00:00+00:00", "2021-04-21T00:00:00+00:00", "2021-04-22T00:00:00+00:00", "2021-04-23T00:00:00+00:00", "2021-04-24T00:00:00+00:00", "2021-04-25T00:00:00+00:00", "2021-04-26T00:00:00+00:00", "2021-04-27T00:00:00+00:00", "2021-04-28T00:00:00+00:00", "2021-04-29T00:00:00+00:00", "2021-04-30T00:00:00+00:00", "2021-05-01T00:00:00+00:00", "2021-05-02T00:00:00+00:00", "2021-05-03T00:00:00+00:00", "2021-05-04T00:00:00+00:00", "2021-05-05T00:00:00+00:00", "2021-05-06T00:00:00+00:00", "2021-05-07T00:00:00+00:00", "2021-05-08T00:00:00+00:00", "2021-05-09T00:00:00+00:00", "2021-05-10T00:00:00+00:00", "2021-05-11T00:00:00+00:00", "2021-05-12T00:00:00+00:00", "2021-05-13T00:00:00+00:00", "2021-05-14T00:00:00+00:00", "2021-05-15T00:00:00+00:00", "2021-05-16T00:00:00+00:00", "2021-05-17T00:00:00+00:00", "2021-05-18T00:00:00+00:00", "2021-05-19T00:00:00+00:00", "2021-05-20T00:00:00+00:00", "2021-05-21T00:00:00+00:00", "2021-05-22T00:00:00+00:00", "2021-05-23T00:00:00+00:00", "2021-05-24T00:00:00+00:00", "2021-05-25T00:00:00+00:00", "2021-05-26T00:00:00+00:00", "2021-05-27T00:00:00+00:00", "2021-05-28T00:00:00+00:00", "2021-05-29T00:00:00+00:00", "2021-05-30T00:00:00+00:00", "2021-05-31T00:00:00+00:00", "2021-06-01T00:00:00+00:00", "2021-06-02T00:00:00+00:00", "2021-06-03T00:00:00+00:00", "2021-06-04T00:00:00+00:00", "2021-06-05T00:00:00+00:00", "2021-06-06T00:00:00+00:00", "2021-06-07T00:00:00+00:00", "2021-06-08T00:00:00+00:00", "2021-06-09T00:00:00+00:00", "2021-06-10T00:00:00+00:00", "2021-06-11T00:00:00+00:00", "2021-06-12T00:00:00+00:00", "2021-06-13T00:00:00+00:00", "2021-06-14T00:00:00+00:00", "2021-06-15T00:00:00+00:00", "2021-06-16T00:00:00+00:00", "2021-06-17T00:00:00+00:00", "2021-06-18T00:00:00+00:00", "2021-06-19T00:00:00+00:00", "2021-06-20T00:00:00+00:00", "2021-06-21T00:00:00+00:00", "2021-06-22T00:00:00+00:00", "2021-06-23T00:00:00+00:00", "2021-06-24T00:00:00+00:00", "2021-06-25T00:00:00+00:00", "2021-06-26T00:00:00+00:00", "2021-06-27T00:00:00+00:00", "2021-06-28T00:00:00+00:00", "2021-06-29T00:00:00+00:00", "2021-06-30T00:00:00+00:00", "2021-07-01T00:00:00+00:00", "2021-07-02T00:00:00+00:00", "2021-07-03T00:00:00+00:00", "2021-07-04T00:00:00+00:00", "2021-07-05T00:00:00+00:00", "2021-07-06T00:00:00+00:00", "2021-07-07T00:00:00+00:00", "2021-07-08T00:00:00+00:00", "2021-07-09T00:00:00+00:00", "2021-07-10T00:00:00+00:00", "2021-07-11T00:00:00+00:00", "2021-07-12T00:00:00+00:00", "2021-07-13T00:00:00+00:00", "2021-07-14T00:00:00+00:00", "2021-07-15T00:00:00+00:00", "2021-07-16T00:00:00+00:00", "2021-07-17T00:00:00+00:00", "2021-07-18T00:00:00+00:00", "2021-07-19T00:00:00+00:00", "2021-07-20T00:00:00+00:00", "2021-07-21T00:00:00+00:00", "2021-07-22T00:00:00+00:00", "2021-07-23T00:00:00+00:00", "2021-07-24T00:00:00+00:00", "2021-07-25T00:00:00+00:00", "2021-07-26T00:00:00+00:00", "2021-07-27T00:00:00+00:00", "2021-07-28T00:00:00+00:00", "2021-07-29T00:00:00+00:00", "2021-07-30T00:00:00+00:00", "2021-07-31T00:00:00+00:00", "2021-08-01T00:00:00+00:00", "2021-08-02T00:00:00+00:00", "2021-08-03T00:00:00+00:00", "2021-08-04T00:00:00+00:00", "2021-08-05T00:00:00+00:00", "2021-08-06T00:00:00+00:00", "2021-08-07T00:00:00+00:00", "2021-08-08T00:00:00+00:00", "2021-08-09T00:00:00+00:00", "2021-08-10T00:00:00+00:00", "2021-08-11T00:00:00+00:00", "2021-08-12T00:00:00+00:00", "2021-08-13T00:00:00+00:00", "2021-08-14T00:00:00+00:00", "2021-08-15T00:00:00+00:00", "2021-08-16T00:00:00+00:00", "2021-08-17T00:00:00+00:00", "2021-08-18T00:00:00+00:00", "2021-08-19T00:00:00+00:00", "2021-08-20T00:00:00+00:00", "2021-08-21T00:00:00+00:00", "2021-08-22T00:00:00+00:00", "2021-08-23T00:00:00+00:00", "2021-08-24T00:00:00+00:00", "2021-08-25T00:00:00+00:00", "2021-08-26T00:00:00+00:00", "2021-08-27T00:00:00+00:00", "2021-08-28T00:00:00+00:00", "2021-08-29T00:00:00+00:00", "2021-08-30T00:00:00+00:00", "2021-08-31T00:00:00+00:00", "2021-09-01T00:00:00+00:00", "2021-09-02T00:00:00+00:00", "2021-09-03T00:00:00+00:00", "2021-09-04T00:00:00+00:00", "2021-09-05T00:00:00+00:00", "2021-09-06T00:00:00+00:00", "2021-09-07T00:00:00+00:00", "2021-09-08T00:00:00+00:00", "2021-09-09T00:00:00+00:00", "2021-09-10T00:00:00+00:00", "2021-09-11T00:00:00+00:00", "2021-09-12T00:00:00+00:00", "2021-09-13T00:00:00+00:00", "2021-09-14T00:00:00+00:00", "2021-09-15T00:00:00+00:00", "2021-09-16T00:00:00+00:00", "2021-09-17T00:00:00+00:00", "2021-09-18T00:00:00+00:00", "2021-09-19T00:00:00+00:00", "2021-09-20T00:00:00+00:00", "2021-09-21T00:00:00+00:00", "2021-09-22T00:00:00+00:00", "2021-09-23T00:00:00+00:00", "2021-09-24T00:00:00+00:00", "2021-09-25T00:00:00+00:00", "2021-09-26T00:00:00+00:00", "2021-09-27T00:00:00+00:00", "2021-09-28T00:00:00+00:00", "2021-09-29T00:00:00+00:00", "2021-09-30T00:00:00+00:00", "2021-10-01T00:00:00+00:00", "2021-10-02T00:00:00+00:00", "2021-10-03T00:00:00+00:00", "2021-10-04T00:00:00+00:00", "2021-10-05T00:00:00+00:00", "2021-10-06T00:00:00+00:00", "2021-10-07T00:00:00+00:00", "2021-10-08T00:00:00+00:00", "2021-10-09T00:00:00+00:00", "2021-10-10T00:00:00+00:00", "2021-10-11T00:00:00+00:00", "2021-10-12T00:00:00+00:00", "2021-10-13T00:00:00+00:00", "2021-10-14T00:00:00+00:00", "2021-10-15T00:00:00+00:00", "2021-10-16T00:00:00+00:00", "2021-10-17T00:00:00+00:00", "2021-10-18T00:00:00+00:00", "2021-10-19T00:00:00+00:00", "2021-10-20T00:00:00+00:00", "2021-10-21T00:00:00+00:00", "2021-10-22T00:00:00+00:00", "2021-10-23T00:00:00+00:00", "2021-10-24T00:00:00+00:00", "2021-10-25T00:00:00+00:00", "2021-10-26T00:00:00+00:00", "2021-10-27T00:00:00+00:00", "2021-10-28T00:00:00+00:00", "2021-10-29T00:00:00+00:00", "2021-10-30T00:00:00+00:00", "2021-10-31T00:00:00+00:00", "2021-11-01T00:00:00+00:00", "2021-11-02T00:00:00+00:00", "2021-11-03T00:00:00+00:00", "2021-11-04T00:00:00+00:00", "2021-11-05T00:00:00+00:00", "2021-11-06T00:00:00+00:00", "2021-11-07T00:00:00+00:00", "2021-11-08T00:00:00+00:00", "2021-11-09T00:00:00+00:00", "2021-11-10T00:00:00+00:00", "2021-11-11T00:00:00+00:00", "2021-11-12T00:00:00+00:00", "2021-11-13T00:00:00+00:00", "2021-11-14T00:00:00+00:00", "2021-11-15T00:00:00+00:00", "2021-11-16T00:00:00+00:00", "2021-11-17T00:00:00+00:00", "2021-11-18T00:00:00+00:00", "2021-11-19T00:00:00+00:00", "2021-11-20T00:00:00+00:00", "2021-11-21T00:00:00+00:00", "2021-11-22T00:00:00+00:00", "2021-11-23T00:00:00+00:00", "2021-11-24T00:00:00+00:00", "2021-11-25T00:00:00+00:00", "2021-11-26T00:00:00+00:00", "2021-11-27T00:00:00+00:00", "2021-11-28T00:00:00+00:00", "2021-11-29T00:00:00+00:00", "2021-11-30T00:00:00+00:00", "2021-12-01T00:00:00+00:00", "2021-12-02T00:00:00+00:00", "2021-12-03T00:00:00+00:00", "2021-12-04T00:00:00+00:00", "2021-12-05T00:00:00+00:00", "2021-12-06T00:00:00+00:00", "2021-12-07T00:00:00+00:00", "2021-12-08T00:00:00+00:00", "2021-12-09T00:00:00+00:00", "2021-12-10T00:00:00+00:00", "2021-12-11T00:00:00+00:00", "2021-12-12T00:00:00+00:00", "2021-12-13T00:00:00+00:00", "2021-12-14T00:00:00+00:00", "2021-12-15T00:00:00+00:00", "2021-12-16T00:00:00+00:00", "2021-12-17T00:00:00+00:00", "2021-12-18T00:00:00+00:00", "2021-12-19T00:00:00+00:00", "2021-12-20T00:00:00+00:00", "2021-12-21T00:00:00+00:00", "2021-12-22T00:00:00+00:00", "2021-12-23T00:00:00+00:00", "2021-12-24T00:00:00+00:00", "2021-12-25T00:00:00+00:00", "2021-12-26T00:00:00+00:00", "2021-12-27T00:00:00+00:00", "2021-12-28T00:00:00+00:00", "2021-12-29T00:00:00+00:00", "2021-12-30T00:00:00+00:00", "2021-12-31T00:00:00+00:00", "2022-01-01T00:00:00+00:00", "2022-01-02T00:00:00+00:00", "2022-01-03T00:00:00+00:00", "2022-01-04T00:00:00+00:00", "2022-01-05T00:00:00+00:00", "2022-01-06T00:00:00+00:00", "2022-01-07T00:00:00+00:00", "2022-01-08T00:00:00+00:00", "2022-01-09T00:00:00+00:00", "2022-01-10T00:00:00+00:00", "2022-01-11T00:00:00+00:00", "2022-01-12T00:00:00+00:00", "2022-01-13T00:00:00+00:00", "2022-01-14T00:00:00+00:00", "2022-01-15T00:00:00+00:00", "2022-01-16T00:00:00+00:00", "2022-01-17T00:00:00+00:00", "2022-01-18T00:00:00+00:00", "2022-01-19T00:00:00+00:00", "2022-01-20T00:00:00+00:00", "2022-01-21T00:00:00+00:00", "2022-01-22T00:00:00+00:00", "2022-01-23T00:00:00+00:00", "2022-01-24T00:00:00+00:00", "2022-01-25T00:00:00+00:00", "2022-01-26T00:00:00+00:00", "2022-01-27T00:00:00+00:00", "2022-01-28T00:00:00+00:00", "2022-01-29T00:00:00+00:00", "2022-01-30T00:00:00+00:00", "2022-01-31T00:00:00+00:00", "2022-02-01T00:00:00+00:00", "2022-02-02T00:00:00+00:00", "2022-02-03T00:00:00+00:00", "2022-02-04T00:00:00+00:00", "2022-02-05T00:00:00+00:00", "2022-02-06T00:00:00+00:00", "2022-02-07T00:00:00+00:00", "2022-02-08T00:00:00+00:00", "2022-02-09T00:00:00+00:00", "2022-02-10T00:00:00+00:00", "2022-02-11T00:00:00+00:00", "2022-02-12T00:00:00+00:00", "2022-02-13T00:00:00+00:00", "2022-02-14T00:00:00+00:00", "2022-02-15T00:00:00+00:00", "2022-02-16T00:00:00+00:00", "2022-02-17T00:00:00+00:00", "2022-02-18T00:00:00+00:00", "2022-02-19T00:00:00+00:00", "2022-02-20T00:00:00+00:00", "2022-02-21T00:00:00+00:00", "2022-02-22T00:00:00+00:00", "2022-02-23T00:00:00+00:00", "2022-02-24T00:00:00+00:00", "2022-02-25T00:00:00+00:00", "2022-02-26T00:00:00+00:00", "2022-02-27T00:00:00+00:00", "2022-02-28T00:00:00+00:00", "2022-03-01T00:00:00+00:00", "2022-03-02T00:00:00+00:00", "2022-03-03T00:00:00+00:00", "2022-03-04T00:00:00+00:00", "2022-03-05T00:00:00+00:00", "2022-03-06T00:00:00+00:00", "2022-03-07T00:00:00+00:00", "2022-03-08T00:00:00+00:00", "2022-03-09T00:00:00+00:00", "2022-03-10T00:00:00+00:00", "2022-03-11T00:00:00+00:00", "2022-03-12T00:00:00+00:00", "2022-03-13T00:00:00+00:00", "2022-03-14T00:00:00+00:00", "2022-03-15T00:00:00+00:00", "2022-03-16T00:00:00+00:00", "2022-03-17T00:00:00+00:00", "2022-03-18T00:00:00+00:00", "2022-03-19T00:00:00+00:00", "2022-03-20T00:00:00+00:00", "2022-03-21T00:00:00+00:00", "2022-03-22T00:00:00+00:00", "2022-03-23T00:00:00+00:00", "2022-03-24T00:00:00+00:00", "2022-03-25T00:00:00+00:00", "2022-03-26T00:00:00+00:00", "2022-03-27T00:00:00+00:00", "2022-03-28T00:00:00+00:00", "2022-03-29T00:00:00+00:00", "2022-03-30T00:00:00+00:00", "2022-03-31T00:00:00+00:00", "2022-04-01T00:00:00+00:00", "2022-04-02T00:00:00+00:00", "2022-04-03T00:00:00+00:00", "2022-04-04T00:00:00+00:00", "2022-04-05T00:00:00+00:00", "2022-04-06T00:00:00+00:00", "2022-04-07T00:00:00+00:00", "2022-04-08T00:00:00+00:00", "2022-04-09T00:00:00+00:00", "2022-04-10T00:00:00+00:00", "2022-04-11T00:00:00+00:00", "2022-04-12T00:00:00+00:00", "2022-04-13T00:00:00+00:00", "2022-04-14T00:00:00+00:00", "2022-04-15T00:00:00+00:00", "2022-04-16T00:00:00+00:00", "2022-04-17T00:00:00+00:00", "2022-04-18T00:00:00+00:00", "2022-04-19T00:00:00+00:00", "2022-04-20T00:00:00+00:00", "2022-04-21T00:00:00+00:00", "2022-04-22T00:00:00+00:00", "2022-04-23T00:00:00+00:00", "2022-04-24T00:00:00+00:00", "2022-04-25T00:00:00+00:00", "2022-04-26T00:00:00+00:00", "2022-04-27T00:00:00+00:00", "2022-04-28T00:00:00+00:00", "2022-04-29T00:00:00+00:00", "2022-04-30T00:00:00+00:00", "2022-05-01T00:00:00+00:00", "2022-05-02T00:00:00+00:00", "2022-05-03T00:00:00+00:00", "2022-05-04T00:00:00+00:00", "2022-05-05T00:00:00+00:00", "2022-05-06T00:00:00+00:00", "2022-05-07T00:00:00+00:00", "2022-05-08T00:00:00+00:00", "2022-05-09T00:00:00+00:00", "2022-05-10T00:00:00+00:00", "2022-05-11T00:00:00+00:00", "2022-05-12T00:00:00+00:00", "2022-05-13T00:00:00+00:00", "2022-05-14T00:00:00+00:00", "2022-05-15T00:00:00+00:00", "2022-05-16T00:00:00+00:00", "2022-05-17T00:00:00+00:00", "2022-05-18T00:00:00+00:00", "2022-05-19T00:00:00+00:00", "2022-05-20T00:00:00+00:00", "2022-05-21T00:00:00+00:00", "2022-05-22T00:00:00+00:00", "2022-05-23T00:00:00+00:00", "2022-05-24T00:00:00+00:00", "2022-05-25T00:00:00+00:00", "2022-05-26T00:00:00+00:00", "2022-05-27T00:00:00+00:00", "2022-05-28T00:00:00+00:00", "2022-05-29T00:00:00+00:00", "2022-05-30T00:00:00+00:00", "2022-05-31T00:00:00+00:00", "2022-06-01T00:00:00+00:00", "2022-06-02T00:00:00+00:00", "2022-06-03T00:00:00+00:00", "2022-06-04T00:00:00+00:00", "2022-06-05T00:00:00+00:00", "2022-06-06T00:00:00+00:00", "2022-06-07T00:00:00+00:00", "2022-06-08T00:00:00+00:00", "2022-06-09T00:00:00+00:00", "2022-06-10T00:00:00+00:00", "2022-06-11T00:00:00+00:00", "2022-06-12T00:00:00+00:00", "2022-06-13T00:00:00+00:00", "2022-06-14T00:00:00+00:00", "2022-06-15T00:00:00+00:00", "2022-06-16T00:00:00+00:00", "2022-06-17T00:00:00+00:00", "2022-06-18T00:00:00+00:00", "2022-06-19T00:00:00+00:00", "2022-06-20T00:00:00+00:00", "2022-06-21T00:00:00+00:00", "2022-06-22T00:00:00+00:00", "2022-06-23T00:00:00+00:00", "2022-06-24T00:00:00+00:00", "2022-06-25T00:00:00+00:00", "2022-06-26T00:00:00+00:00", "2022-06-27T00:00:00+00:00", "2022-06-28T00:00:00+00:00", "2022-06-29T00:00:00+00:00", "2022-06-30T00:00:00+00:00", "2022-07-01T00:00:00+00:00", "2022-07-02T00:00:00+00:00", "2022-07-03T00:00:00+00:00", "2022-07-04T00:00:00+00:00", "2022-07-05T00:00:00+00:00", "2022-07-06T00:00:00+00:00", "2022-07-07T00:00:00+00:00", "2022-07-08T00:00:00+00:00", "2022-07-09T00:00:00+00:00", "2022-07-10T00:00:00+00:00", "2022-07-11T00:00:00+00:00", "2022-07-12T00:00:00+00:00", "2022-07-13T00:00:00+00:00", "2022-07-14T00:00:00+00:00", "2022-07-15T00:00:00+00:00", "2022-07-16T00:00:00+00:00", "2022-07-17T00:00:00+00:00", "2022-07-18T00:00:00+00:00", "2022-07-19T00:00:00+00:00", "2022-07-20T00:00:00+00:00", "2022-07-21T00:00:00+00:00", "2022-07-22T00:00:00+00:00", "2022-07-23T00:00:00+00:00", "2022-07-24T00:00:00+00:00", "2022-07-25T00:00:00+00:00", "2022-07-26T00:00:00+00:00", "2022-07-27T00:00:00+00:00", "2022-07-28T00:00:00+00:00", "2022-07-29T00:00:00+00:00", "2022-07-30T00:00:00+00:00", "2022-07-31T00:00:00+00:00", "2022-08-01T00:00:00+00:00", "2022-08-02T00:00:00+00:00", "2022-08-03T00:00:00+00:00", "2022-08-04T00:00:00+00:00", "2022-08-05T00:00:00+00:00", "2022-08-06T00:00:00+00:00", "2022-08-07T00:00:00+00:00", "2022-08-08T00:00:00+00:00", "2022-08-09T00:00:00+00:00", "2022-08-10T00:00:00+00:00", "2022-08-11T00:00:00+00:00", "2022-08-12T00:00:00+00:00", "2022-08-13T00:00:00+00:00", "2022-08-14T00:00:00+00:00", "2022-08-15T00:00:00+00:00", "2022-08-16T00:00:00+00:00", "2022-08-17T00:00:00+00:00", "2022-08-18T00:00:00+00:00", "2022-08-19T00:00:00+00:00", "2022-08-20T00:00:00+00:00", "2022-08-21T00:00:00+00:00", "2022-08-22T00:00:00+00:00", "2022-08-23T00:00:00+00:00", "2022-08-24T00:00:00+00:00", "2022-08-25T00:00:00+00:00", "2022-08-26T00:00:00+00:00", "2022-08-27T00:00:00+00:00", "2022-08-28T00:00:00+00:00", "2022-08-29T00:00:00+00:00", "2022-08-30T00:00:00+00:00", "2022-08-31T00:00:00+00:00", "2022-09-01T00:00:00+00:00", "2022-09-02T00:00:00+00:00", "2022-09-03T00:00:00+00:00", "2022-09-04T00:00:00+00:00", "2022-09-05T00:00:00+00:00", "2022-09-06T00:00:00+00:00", "2022-09-07T00:00:00+00:00", "2022-09-08T00:00:00+00:00", "2022-09-09T00:00:00+00:00", "2022-09-10T00:00:00+00:00", "2022-09-11T00:00:00+00:00", "2022-09-12T00:00:00+00:00", "2022-09-13T00:00:00+00:00", "2022-09-14T00:00:00+00:00", "2022-09-15T00:00:00+00:00", "2022-09-16T00:00:00+00:00", "2022-09-17T00:00:00+00:00", "2022-09-18T00:00:00+00:00", "2022-09-19T00:00:00+00:00", "2022-09-20T00:00:00+00:00", "2022-09-21T00:00:00+00:00", "2022-09-22T00:00:00+00:00", "2022-09-23T00:00:00+00:00", "2022-09-24T00:00:00+00:00", "2022-09-25T00:00:00+00:00", "2022-09-26T00:00:00+00:00", "2022-09-27T00:00:00+00:00", "2022-09-28T00:00:00+00:00", "2022-09-29T00:00:00+00:00", "2022-09-30T00:00:00+00:00", "2022-10-01T00:00:00+00:00", "2022-10-02T00:00:00+00:00", "2022-10-03T00:00:00+00:00", "2022-10-04T00:00:00+00:00", "2022-10-05T00:00:00+00:00", "2022-10-06T00:00:00+00:00", "2022-10-07T00:00:00+00:00", "2022-10-08T00:00:00+00:00", "2022-10-09T00:00:00+00:00", "2022-10-10T00:00:00+00:00", "2022-10-11T00:00:00+00:00", "2022-10-12T00:00:00+00:00", "2022-10-13T00:00:00+00:00", "2022-10-14T00:00:00+00:00", "2022-10-15T00:00:00+00:00", "2022-10-16T00:00:00+00:00", "2022-10-17T00:00:00+00:00", "2022-10-18T00:00:00+00:00", "2022-10-19T00:00:00+00:00", "2022-10-20T00:00:00+00:00", "2022-10-21T00:00:00+00:00", "2022-10-22T00:00:00+00:00", "2022-10-23T00:00:00+00:00", "2022-10-24T00:00:00+00:00", "2022-10-25T00:00:00+00:00", "2022-10-26T00:00:00+00:00", "2022-10-27T00:00:00+00:00", "2022-10-28T00:00:00+00:00", "2022-10-29T00:00:00+00:00", "2022-10-30T00:00:00+00:00", "2022-10-31T00:00:00+00:00", "2022-11-01T00:00:00+00:00", "2022-11-02T00:00:00+00:00", "2022-11-03T00:00:00+00:00", "2022-11-04T00:00:00+00:00", "2022-11-05T00:00:00+00:00", "2022-11-06T00:00:00+00:00", "2022-11-07T00:00:00+00:00", "2022-11-08T00:00:00+00:00", "2022-11-09T00:00:00+00:00", "2022-11-10T00:00:00+00:00", "2022-11-11T00:00:00+00:00", "2022-11-12T00:00:00+00:00", "2022-11-13T00:00:00+00:00", "2022-11-14T00:00:00+00:00", "2022-11-15T00:00:00+00:00", "2022-11-16T00:00:00+00:00", "2022-11-17T00:00:00+00:00", "2022-11-18T00:00:00+00:00", "2022-11-19T00:00:00+00:00", "2022-11-20T00:00:00+00:00", "2022-11-21T00:00:00+00:00", "2022-11-22T00:00:00+00:00", "2022-11-23T00:00:00+00:00", "2022-11-24T00:00:00+00:00", "2022-11-25T00:00:00+00:00", "2022-11-26T00:00:00+00:00", "2022-11-27T00:00:00+00:00", "2022-11-28T00:00:00+00:00", "2022-11-29T00:00:00+00:00", "2022-11-30T00:00:00+00:00", "2022-12-01T00:00:00+00:00", "2022-12-02T00:00:00+00:00", "2022-12-03T00:00:00+00:00", "2022-12-04T00:00:00+00:00", "2022-12-05T00:00:00+00:00", "2022-12-06T00:00:00+00:00", "2022-12-07T00:00:00+00:00", "2022-12-08T00:00:00+00:00", "2022-12-09T00:00:00+00:00", "2022-12-10T00:00:00+00:00", "2022-12-11T00:00:00+00:00", "2022-12-12T00:00:00+00:00", "2022-12-13T00:00:00+00:00", "2022-12-14T00:00:00+00:00", "2022-12-15T00:00:00+00:00", "2022-12-16T00:00:00+00:00", "2022-12-17T00:00:00+00:00", "2022-12-18T00:00:00+00:00", "2022-12-19T00:00:00+00:00", "2022-12-20T00:00:00+00:00", "2022-12-21T00:00:00+00:00", "2022-12-22T00:00:00+00:00", "2022-12-23T00:00:00+00:00", "2022-12-24T00:00:00+00:00", "2022-12-25T00:00:00+00:00", "2022-12-26T00:00:00+00:00", "2022-12-27T00:00:00+00:00", "2022-12-28T00:00:00+00:00", "2022-12-29T00:00:00+00:00", "2022-12-30T00:00:00+00:00", "2022-12-31T00:00:00+00:00", "2023-01-01T00:00:00+00:00", "2023-01-02T00:00:00+00:00", "2023-01-03T00:00:00+00:00", "2023-01-04T00:00:00+00:00", "2023-01-05T00:00:00+00:00", "2023-01-06T00:00:00+00:00", "2023-01-07T00:00:00+00:00", "2023-01-08T00:00:00+00:00", "2023-01-09T00:00:00+00:00", "2023-01-10T00:00:00+00:00", "2023-01-11T00:00:00+00:00", "2023-01-12T00:00:00+00:00", "2023-01-13T00:00:00+00:00", "2023-01-14T00:00:00+00:00", "2023-01-15T00:00:00+00:00", "2023-01-16T00:00:00+00:00", "2023-01-17T00:00:00+00:00", "2023-01-18T00:00:00+00:00", "2023-01-19T00:00:00+00:00", "2023-01-20T00:00:00+00:00", "2023-01-21T00:00:00+00:00", "2023-01-22T00:00:00+00:00", "2023-01-23T00:00:00+00:00", "2023-01-24T00:00:00+00:00", "2023-01-25T00:00:00+00:00", "2023-01-26T00:00:00+00:00", "2023-01-27T00:00:00+00:00", "2023-01-28T00:00:00+00:00", "2023-01-29T00:00:00+00:00", "2023-01-30T00:00:00+00:00", "2023-01-31T00:00:00+00:00", "2023-02-01T00:00:00+00:00", "2023-02-02T00:00:00+00:00", "2023-02-03T00:00:00+00:00", "2023-02-04T00:00:00+00:00", "2023-02-05T00:00:00+00:00", "2023-02-06T00:00:00+00:00", "2023-02-07T00:00:00+00:00", "2023-02-08T00:00:00+00:00", "2023-02-09T00:00:00+00:00", "2023-02-10T00:00:00+00:00", "2023-02-11T00:00:00+00:00", "2023-02-12T00:00:00+00:00", "2023-02-13T00:00:00+00:00", "2023-02-14T00:00:00+00:00", "2023-02-15T00:00:00+00:00", "2023-02-16T00:00:00+00:00", "2023-02-17T00:00:00+00:00", "2023-02-18T00:00:00+00:00", "2023-02-19T00:00:00+00:00", "2023-02-20T00:00:00+00:00", "2023-02-21T00:00:00+00:00", "2023-02-22T00:00:00+00:00", "2023-02-23T00:00:00+00:00", "2023-02-24T00:00:00+00:00", "2023-02-25T00:00:00+00:00", "2023-02-26T00:00:00+00:00", "2023-02-27T00:00:00+00:00", "2023-02-28T00:00:00+00:00", "2023-03-01T00:00:00+00:00", "2023-03-02T00:00:00+00:00", "2023-03-03T00:00:00+00:00", "2023-03-04T00:00:00+00:00", "2023-03-05T00:00:00+00:00", "2023-03-06T00:00:00+00:00", "2023-03-07T00:00:00+00:00", "2023-03-08T00:00:00+00:00", "2023-03-09T00:00:00+00:00", "2023-03-10T00:00:00+00:00", "2023-03-11T00:00:00+00:00", "2023-03-12T00:00:00+00:00", "2023-03-13T00:00:00+00:00", "2023-03-14T00:00:00+00:00", "2023-03-15T00:00:00+00:00", "2023-03-16T00:00:00+00:00", "2023-03-17T00:00:00+00:00", "2023-03-18T00:00:00+00:00", "2023-03-19T00:00:00+00:00", "2023-03-20T00:00:00+00:00", "2023-03-21T00:00:00+00:00", "2023-03-22T00:00:00+00:00", "2023-03-23T00:00:00+00:00", "2023-03-24T00:00:00+00:00", "2023-03-25T00:00:00+00:00", "2023-03-26T00:00:00+00:00", "2023-03-27T00:00:00+00:00", "2023-03-28T00:00:00+00:00", "2023-03-29T00:00:00+00:00", "2023-03-30T00:00:00+00:00", "2023-03-31T00:00:00+00:00", "2023-04-01T00:00:00+00:00", "2023-04-02T00:00:00+00:00", "2023-04-03T00:00:00+00:00", "2023-04-04T00:00:00+00:00", "2023-04-05T00:00:00+00:00", "2023-04-06T00:00:00+00:00", "2023-04-07T00:00:00+00:00", "2023-04-08T00:00:00+00:00", "2023-04-09T00:00:00+00:00", "2023-04-10T00:00:00+00:00", "2023-04-11T00:00:00+00:00", "2023-04-12T00:00:00+00:00", "2023-04-13T00:00:00+00:00", "2023-04-14T00:00:00+00:00", "2023-04-15T00:00:00+00:00", "2023-04-16T00:00:00+00:00", "2023-04-17T00:00:00+00:00", "2023-04-18T00:00:00+00:00", "2023-04-19T00:00:00+00:00", "2023-04-20T00:00:00+00:00", "2023-04-21T00:00:00+00:00", "2023-04-22T00:00:00+00:00", "2023-04-23T00:00:00+00:00", "2023-04-24T00:00:00+00:00", "2023-04-25T00:00:00+00:00", "2023-04-26T00:00:00+00:00", "2023-04-27T00:00:00+00:00", "2023-04-28T00:00:00+00:00", "2023-04-29T00:00:00+00:00", "2023-04-30T00:00:00+00:00", "2023-05-01T00:00:00+00:00", "2023-05-02T00:00:00+00:00", "2023-05-03T00:00:00+00:00", "2023-05-04T00:00:00+00:00", "2023-05-05T00:00:00+00:00", "2023-05-06T00:00:00+00:00", "2023-05-07T00:00:00+00:00", "2023-05-08T00:00:00+00:00", "2023-05-09T00:00:00+00:00", "2023-05-10T00:00:00+00:00", "2023-05-11T00:00:00+00:00", "2023-05-12T00:00:00+00:00", "2023-05-13T00:00:00+00:00", "2023-05-14T00:00:00+00:00", "2023-05-15T00:00:00+00:00", "2023-05-16T00:00:00+00:00", "2023-05-17T00:00:00+00:00", "2023-05-18T00:00:00+00:00", "2023-05-19T00:00:00+00:00", "2023-05-20T00:00:00+00:00", "2023-05-21T00:00:00+00:00", "2023-05-22T00:00:00+00:00", "2023-05-23T00:00:00+00:00", "2023-05-24T00:00:00+00:00", "2023-05-25T00:00:00+00:00", "2023-05-26T00:00:00+00:00", "2023-05-27T00:00:00+00:00", "2023-05-28T00:00:00+00:00", "2023-05-29T00:00:00+00:00", "2023-05-30T00:00:00+00:00", "2023-05-31T00:00:00+00:00", "2023-06-01T00:00:00+00:00", "2023-06-02T00:00:00+00:00", "2023-06-03T00:00:00+00:00", "2023-06-04T00:00:00+00:00", "2023-06-05T00:00:00+00:00", "2023-06-06T00:00:00+00:00", "2023-06-07T00:00:00+00:00", "2023-06-08T00:00:00+00:00", "2023-06-09T00:00:00+00:00", "2023-06-10T00:00:00+00:00", "2023-06-11T00:00:00+00:00", "2023-06-12T00:00:00+00:00", "2023-06-13T00:00:00+00:00", "2023-06-14T00:00:00+00:00", "2023-06-15T00:00:00+00:00", "2023-06-16T00:00:00+00:00", "2023-06-17T00:00:00+00:00", "2023-06-18T00:00:00+00:00", "2023-06-19T00:00:00+00:00", "2023-06-20T00:00:00+00:00", "2023-06-21T00:00:00+00:00", "2023-06-22T00:00:00+00:00", "2023-06-23T00:00:00+00:00", "2023-06-24T00:00:00+00:00", "2023-06-25T00:00:00+00:00", "2023-06-26T00:00:00+00:00", "2023-06-27T00:00:00+00:00", "2023-06-28T00:00:00+00:00", "2023-06-29T00:00:00+00:00", "2023-06-30T00:00:00+00:00", "2023-07-01T00:00:00+00:00", "2023-07-02T00:00:00+00:00", "2023-07-03T00:00:00+00:00", "2023-07-04T00:00:00+00:00", "2023-07-05T00:00:00+00:00", "2023-07-06T00:00:00+00:00", "2023-07-07T00:00:00+00:00", "2023-07-08T00:00:00+00:00", "2023-07-09T00:00:00+00:00", "2023-07-10T00:00:00+00:00", "2023-07-11T00:00:00+00:00", "2023-07-12T00:00:00+00:00", "2023-07-13T00:00:00+00:00", "2023-07-14T00:00:00+00:00", "2023-07-15T00:00:00+00:00", "2023-07-16T00:00:00+00:00", "2023-07-17T00:00:00+00:00", "2023-07-18T00:00:00+00:00", "2023-07-19T00:00:00+00:00", "2023-07-20T00:00:00+00:00", "2023-07-21T00:00:00+00:00", "2023-07-22T00:00:00+00:00", "2023-07-23T00:00:00+00:00", "2023-07-24T00:00:00+00:00", "2023-07-25T00:00:00+00:00", "2023-07-26T00:00:00+00:00", "2023-07-27T00:00:00+00:00", "2023-07-28T00:00:00+00:00", "2023-07-29T00:00:00+00:00", "2023-07-30T00:00:00+00:00", "2023-07-31T00:00:00+00:00", "2023-08-01T00:00:00+00:00", "2023-08-02T00:00:00+00:00", "2023-08-03T00:00:00+00:00", "2023-08-04T00:00:00+00:00", "2023-08-05T00:00:00+00:00", "2023-08-06T00:00:00+00:00", "2023-08-07T00:00:00+00:00", "2023-08-08T00:00:00+00:00", "2023-08-09T00:00:00+00:00", "2023-08-10T00:00:00+00:00", "2023-08-11T00:00:00+00:00", "2023-08-12T00:00:00+00:00", "2023-08-13T00:00:00+00:00", "2023-08-14T00:00:00+00:00", "2023-08-15T00:00:00+00:00", "2023-08-16T00:00:00+00:00", "2023-08-17T00:00:00+00:00", "2023-08-18T00:00:00+00:00", "2023-08-19T00:00:00+00:00", "2023-08-20T00:00:00+00:00", "2023-08-21T00:00:00+00:00", "2023-08-22T00:00:00+00:00", "2023-08-23T00:00:00+00:00", "2023-08-24T00:00:00+00:00", "2023-08-25T00:00:00+00:00", "2023-08-26T00:00:00+00:00", "2023-08-27T00:00:00+00:00", "2023-08-28T00:00:00+00:00", "2023-08-29T00:00:00+00:00", "2023-08-30T00:00:00+00:00", "2023-08-31T00:00:00+00:00", "2023-09-01T00:00:00+00:00", "2023-09-02T00:00:00+00:00", "2023-09-03T00:00:00+00:00", "2023-09-04T00:00:00+00:00", "2023-09-05T00:00:00+00:00", "2023-09-06T00:00:00+00:00", "2023-09-07T00:00:00+00:00", "2023-09-08T00:00:00+00:00", "2023-09-09T00:00:00+00:00", "2023-09-10T00:00:00+00:00", "2023-09-11T00:00:00+00:00", "2023-09-12T00:00:00+00:00", "2023-09-13T00:00:00+00:00", "2023-09-14T00:00:00+00:00", "2023-09-15T00:00:00+00:00", "2023-09-16T00:00:00+00:00", "2023-09-17T00:00:00+00:00", "2023-09-18T00:00:00+00:00", "2023-09-19T00:00:00+00:00", "2023-09-20T00:00:00+00:00", "2023-09-21T00:00:00+00:00", "2023-09-22T00:00:00+00:00", "2023-09-23T00:00:00+00:00", "2023-09-24T00:00:00+00:00", "2023-09-25T00:00:00+00:00", "2023-09-26T00:00:00+00:00", "2023-09-27T00:00:00+00:00", "2023-09-28T00:00:00+00:00", "2023-09-29T00:00:00+00:00", "2023-09-30T00:00:00+00:00", "2023-10-01T00:00:00+00:00", "2023-10-02T00:00:00+00:00", "2023-10-03T00:00:00+00:00", "2023-10-04T00:00:00+00:00", "2023-10-05T00:00:00+00:00", "2023-10-06T00:00:00+00:00", "2023-10-07T00:00:00+00:00", "2023-10-08T00:00:00+00:00", "2023-10-09T00:00:00+00:00", "2023-10-10T00:00:00+00:00", "2023-10-11T00:00:00+00:00", "2023-10-12T00:00:00+00:00", "2023-10-13T00:00:00+00:00", "2023-10-14T00:00:00+00:00", "2023-10-15T00:00:00+00:00", "2023-10-16T00:00:00+00:00", "2023-10-17T00:00:00+00:00", "2023-10-18T00:00:00+00:00", "2023-10-19T00:00:00+00:00", "2023-10-20T00:00:00+00:00", "2023-10-21T00:00:00+00:00", "2023-10-22T00:00:00+00:00", "2023-10-23T00:00:00+00:00", "2023-10-24T00:00:00+00:00", "2023-10-25T00:00:00+00:00", "2023-10-26T00:00:00+00:00", "2023-10-27T00:00:00+00:00", "2023-10-28T00:00:00+00:00", "2023-10-29T00:00:00+00:00", "2023-10-30T00:00:00+00:00", "2023-10-31T00:00:00+00:00", "2023-11-01T00:00:00+00:00", "2023-11-02T00:00:00+00:00", "2023-11-03T00:00:00+00:00", "2023-11-04T00:00:00+00:00", "2023-11-05T00:00:00+00:00", "2023-11-06T00:00:00+00:00", "2023-11-07T00:00:00+00:00", "2023-11-08T00:00:00+00:00", "2023-11-09T00:00:00+00:00", "2023-11-10T00:00:00+00:00", "2023-11-11T00:00:00+00:00", "2023-11-12T00:00:00+00:00", "2023-11-13T00:00:00+00:00", "2023-11-14T00:00:00+00:00", "2023-11-15T00:00:00+00:00", "2023-11-16T00:00:00+00:00", "2023-11-17T00:00:00+00:00", "2023-11-18T00:00:00+00:00", "2023-11-19T00:00:00+00:00", "2023-11-20T00:00:00+00:00", "2023-11-21T00:00:00+00:00", "2023-11-22T00:00:00+00:00", "2023-11-23T00:00:00+00:00", "2023-11-24T00:00:00+00:00", "2023-11-25T00:00:00+00:00", "2023-11-26T00:00:00+00:00", "2023-11-27T00:00:00+00:00", "2023-11-28T00:00:00+00:00", "2023-11-29T00:00:00+00:00", "2023-11-30T00:00:00+00:00", "2023-12-01T00:00:00+00:00", "2023-12-02T00:00:00+00:00", "2023-12-03T00:00:00+00:00", "2023-12-04T00:00:00+00:00", "2023-12-05T00:00:00+00:00", "2023-12-06T00:00:00+00:00", "2023-12-07T00:00:00+00:00", "2023-12-08T00:00:00+00:00", "2023-12-09T00:00:00+00:00", "2023-12-10T00:00:00+00:00", "2023-12-11T00:00:00+00:00", "2023-12-12T00:00:00+00:00", "2023-12-13T00:00:00+00:00", "2023-12-14T00:00:00+00:00", "2023-12-15T00:00:00+00:00", "2023-12-16T00:00:00+00:00", "2023-12-17T00:00:00+00:00", "2023-12-18T00:00:00+00:00", "2023-12-19T00:00:00+00:00", "2023-12-20T00:00:00+00:00", "2023-12-21T00:00:00+00:00", "2023-12-22T00:00:00+00:00", "2023-12-23T00:00:00+00:00", "2023-12-24T00:00:00+00:00", "2023-12-25T00:00:00+00:00", "2023-12-26T00:00:00+00:00", "2023-12-27T00:00:00+00:00", "2023-12-28T00:00:00+00:00", "2023-12-29T00:00:00+00:00", "2023-12-30T00:00:00+00:00", "2023-12-31T00:00:00+00:00", "2024-01-01T00:00:00+00:00", "2024-01-02T00:00:00+00:00", "2024-01-03T00:00:00+00:00", "2024-01-04T00:00:00+00:00", "2024-01-05T00:00:00+00:00", "2024-01-06T00:00:00+00:00", "2024-01-07T00:00:00+00:00", "2024-01-08T00:00:00+00:00", "2024-01-09T00:00:00+00:00", "2024-01-10T00:00:00+00:00", "2024-01-11T00:00:00+00:00", "2024-01-12T00:00:00+00:00", "2024-01-13T00:00:00+00:00", "2024-01-14T00:00:00+00:00", "2024-01-15T00:00:00+00:00", "2024-01-16T00:00:00+00:00", "2024-01-17T00:00:00+00:00", "2024-01-18T00:00:00+00:00", "2024-01-19T00:00:00+00:00", "2024-01-20T00:00:00+00:00", "2024-01-21T00:00:00+00:00", "2024-01-22T00:00:00+00:00", "2024-01-23T00:00:00+00:00", "2024-01-24T00:00:00+00:00", "2024-01-25T00:00:00+00:00", "2024-01-26T00:00:00+00:00", "2024-01-27T00:00:00+00:00", "2024-01-28T00:00:00+00:00", "2024-01-29T00:00:00+00:00", "2024-01-30T00:00:00+00:00", "2024-01-31T00:00:00+00:00", "2024-02-01T00:00:00+00:00", "2024-02-02T00:00:00+00:00", "2024-02-03T00:00:00+00:00", "2024-02-04T00:00:00+00:00", "2024-02-05T00:00:00+00:00", "2024-02-06T00:00:00+00:00", "2024-02-07T00:00:00+00:00", "2024-02-08T00:00:00+00:00", "2024-02-09T00:00:00+00:00", "2024-02-10T00:00:00+00:00", "2024-02-11T00:00:00+00:00", "2024-02-12T00:00:00+00:00", "2024-02-13T00:00:00+00:00", "2024-02-14T00:00:00+00:00", "2024-02-15T00:00:00+00:00", "2024-02-16T00:00:00+00:00", "2024-02-17T00:00:00+00:00", "2024-02-18T00:00:00+00:00", "2024-02-19T00:00:00+00:00", "2024-02-20T00:00:00+00:00", "2024-02-21T00:00:00+00:00", "2024-02-22T00:00:00+00:00", "2024-02-23T00:00:00+00:00", "2024-02-24T00:00:00+00:00", "2024-02-25T00:00:00+00:00", "2024-02-26T00:00:00+00:00", "2024-02-27T00:00:00+00:00", "2024-02-28T00:00:00+00:00", "2024-02-29T00:00:00+00:00", "2024-03-01T00:00:00+00:00", "2024-03-02T00:00:00+00:00", "2024-03-03T00:00:00+00:00", "2024-03-04T00:00:00+00:00", "2024-03-05T00:00:00+00:00", "2024-03-06T00:00:00+00:00", "2024-03-07T00:00:00+00:00", "2024-03-08T00:00:00+00:00", "2024-03-09T00:00:00+00:00", "2024-03-10T00:00:00+00:00", "2024-03-11T00:00:00+00:00", "2024-03-12T00:00:00+00:00", "2024-03-13T00:00:00+00:00", "2024-03-14T00:00:00+00:00", "2024-03-15T00:00:00+00:00", "2024-03-16T00:00:00+00:00", "2024-03-17T00:00:00+00:00", "2024-03-18T00:00:00+00:00", "2024-03-19T00:00:00+00:00", "2024-03-20T00:00:00+00:00", "2024-03-21T00:00:00+00:00", "2024-03-22T00:00:00+00:00", "2024-03-23T00:00:00+00:00", "2024-03-24T00:00:00+00:00", "2024-03-25T00:00:00+00:00", "2024-03-26T00:00:00+00:00", "2024-03-27T00:00:00+00:00", "2024-03-28T00:00:00+00:00", "2024-03-29T00:00:00+00:00", "2024-03-30T00:00:00+00:00", "2024-03-31T00:00:00+00:00", "2024-04-01T00:00:00+00:00", "2024-04-02T00:00:00+00:00", "2024-04-03T00:00:00+00:00", "2024-04-04T00:00:00+00:00", "2024-04-05T00:00:00+00:00", "2024-04-06T00:00:00+00:00", "2024-04-07T00:00:00+00:00", "2024-04-08T00:00:00+00:00", "2024-04-09T00:00:00+00:00", "2024-04-10T00:00:00+00:00", "2024-04-11T00:00:00+00:00", "2024-04-12T00:00:00+00:00", "2024-04-13T00:00:00+00:00", "2024-04-14T00:00:00+00:00", "2024-04-15T00:00:00+00:00", "2024-04-16T00:00:00+00:00", "2024-04-17T00:00:00+00:00", "2024-04-18T00:00:00+00:00", "2024-04-19T00:00:00+00:00", "2024-04-20T00:00:00+00:00", "2024-04-21T00:00:00+00:00", "2024-04-22T00:00:00+00:00", "2024-04-23T00:00:00+00:00", "2024-04-24T00:00:00+00:00", "2024-04-25T00:00:00+00:00", "2024-04-26T00:00:00+00:00", "2024-04-27T00:00:00+00:00", "2024-04-28T00:00:00+00:00", "2024-04-29T00:00:00+00:00", "2024-04-30T00:00:00+00:00", "2024-05-01T00:00:00+00:00", "2024-05-02T00:00:00+00:00", "2024-05-03T00:00:00+00:00", "2024-05-04T00:00:00+00:00", "2024-05-05T00:00:00+00:00", "2024-05-06T00:00:00+00:00", "2024-05-07T00:00:00+00:00", "2024-05-08T00:00:00+00:00", "2024-05-09T00:00:00+00:00", "2024-05-10T00:00:00+00:00", "2024-05-11T00:00:00+00:00", "2024-05-12T00:00:00+00:00", "2024-05-13T00:00:00+00:00", "2024-05-14T00:00:00+00:00", "2024-05-15T00:00:00+00:00", "2024-05-16T00:00:00+00:00", "2024-05-17T00:00:00+00:00", "2024-05-18T00:00:00+00:00", "2024-05-19T00:00:00+00:00", "2024-05-20T00:00:00+00:00", "2024-05-21T00:00:00+00:00", "2024-05-22T00:00:00+00:00", "2024-05-23T00:00:00+00:00", "2024-05-24T00:00:00+00:00", "2024-05-25T00:00:00+00:00", "2024-05-26T00:00:00+00:00", "2024-05-27T00:00:00+00:00", "2024-05-28T00:00:00+00:00", "2024-05-29T00:00:00+00:00", "2024-05-30T00:00:00+00:00" ], "xaxis": "x", "y": [ 12.368555049786622, 12.2386886029947, 11.886432601277198, 12.367474528007715, 12.82236839595594, 12.742820630521855, 12.619909545846655, 12.680765672124929, 12.918621233561899, 13.046365165556383, 12.670008175864803, 11.98167092355011, 11.823233281344491, 12.448879594896354, 12.507572003941478, 12.501626097283712, 11.551159433869348, 12.304835289111066, 13.026179617035515, 12.999602484778872, 12.986026990092563, 12.521601269302813, 11.91971424307142, 11.829931925348683, 11.773066132733007, 11.879261810456931, 12.121366827958182, 11.923199297994426, 11.702333317399026, 12.010798074605878, 12.265503053058099, 12.400221175852074, 12.002106152611338, 12.127022435045488, 12.45376441244323, 12.691142623249254, 12.613575805471127, 11.999811848490618, 11.894019606767916, 12.527198523688295, 12.5454242715423, 12.460077169891033, 12.216666676625303, 11.94916482409754, 12.040869508618893, 12.292527784720559, 12.44123032245652, 12.940502050631215, 12.732108529992825, 12.641352123916935, 12.452237339799042, 12.208376283852736, 12.072694661089047, 12.416512816991562, 12.80696570281764, 12.527673435600436, 12.25587325707838, 12.508839835119511, 12.592682901877257, 12.542444506044742, 12.369940931723072, 12.5467391523145, 12.498198841765566, 12.434307544365804, 12.687549463530932, 12.175611305114078, 12.580188667999124, 12.670409702567301, 12.488832137532478, 12.16909664330883, 11.851010863184001, 11.91041489842582, 12.30717796397889, 12.34397863469732, 12.484192971976942, 12.54216123062726, 12.600769256261678, 12.635976203567232, 12.11750797537223, 11.794230808111337, 12.232834570227517, 12.442218555519913, 12.561932143251529, 12.243617088236707, 12.178640799614989, 11.949125334229484, 11.797650708756413, 12.092245008669742, 11.934748800781207, 12.406438537992495, 12.735630375945018, 12.37935534844651, 12.339218505557126, 12.53959244642773, 12.309790291628994, 12.410199053449615, 12.331478858762045, 12.455069094392744, 12.658237254599959, 12.305628491624466, 12.37588384923131, 12.592595853578892, 12.32029361819562, 11.870134230428095, 11.491573559653625, 12.148625380804448, 12.731906309651635, 12.554000008773803, 12.62821127476731, 12.681832432653536, 12.62704167454195, 12.36382078217533, 12.489506654782145, 12.495433408749626, 12.214454326423338, 12.269844491658043, 12.739669423950605, 12.742995113796658, 12.34601289239423, 11.90028277396257, 12.40975841026767, 12.466947931087821, 12.690682209867012, 12.345397302243393, 12.567757717746215, 12.230732052695027, 12.393519086206416, 12.468151829206134, 12.249636081802446, 12.333556995384734, 12.220000067159134, 12.181787782842752, 12.097553081069062, 12.213216585718143, 12.200168177698519, 12.41523813520159, 12.145950681306946, 12.018738382380173, 12.184463527581212, 12.192061026223744, 11.970704484026866, 12.0635397189821, 12.227657808293161, 12.053178295054177, 12.415820242860335, 12.361868092210862, 12.240455546532667, 12.487171150351825, 12.437842046962855, 12.410907724265558, 12.528442291788995, 12.333729065163842, 12.263366360203147, 12.472264354834454, 12.298156700742226, 12.307053591523852, 12.028284456482995, 12.02834517768896, 11.903254491514003, 11.76948003363239, 11.858250412628966, 11.914432866302962, 11.834306058635471, 11.945302554186743, 12.047839554739587, 11.933542368554022, 11.592506043859109, 11.296694147882382, 11.269507867171182, 11.491428629841124, 11.808448622120506, 11.905891312290533, 12.11039710148147, 12.320629760661285, 12.400214783532668, 11.89695075697224, 11.989540750072116, 12.348849721481464, 12.427944550062712, 12.09959776576066, 12.273556417999906, 12.43844464624619, 12.419565264795935, 12.246692531767522, 12.458055859315943, 12.227231711068596, 12.409090975166315, 12.185714205511573, 12.276406721207373, 12.193260464077657, 12.284047854624147, 12.244968742105648, 11.946026141154194, 11.846024074707644, 12.218940604747203, 12.251423546525299, 12.210691787054811, 12.145804523127218, 11.862380922862462, 11.845462888233385, 11.929100593772095, 11.974660652471345, 12.009962363574738, 12.113128381956445, 12.196414758530699, 12.005838045292656, 12.184381836148509, 12.042152840126928, 12.1656656074333, 12.494172664884474, 12.511226624808044, 12.180444993794104, 12.257195541926123, 12.060295774125674, 12.143348383579859, 11.958051280486279, 12.10018942934094, 12.499809391959948, 12.186563493669496, 12.17263056896132, 11.819787176076353, 11.899511214691639, 11.993457938577528, 12.107433623761203, 12.26274908051786, 11.938248321909597, 11.791245846635967, 11.65580056355337, 11.732710253889952, 11.761123967006666, 12.015277817569396, 12.256097569836696, 12.084378448733615, 12.180142561432787, 12.12001883837274, 12.360495948707033, 12.273447681486218, 12.25412782924569, 12.542794339267147, 12.68379256597794, 12.351040825855723, 12.093414859735843, 11.887545828635876, 12.257483943872653, 12.219841311091468, 12.392798571121508, 12.156794728580321, 12.313653427777766, 12.585976202044325, 12.630531034216416, 12.517893839146726, 12.613940814945185, 12.381170482328121, 12.175111108991835, 12.134743723081709, 12.316165756733799, 12.449716645985962, 12.22592069727841, 12.567151240831198, 12.66018799629331, 12.616163961479854, 12.612715471954596, 12.616110298906944, 12.593713157693779, 12.239479138150127, 12.431735315007346, 12.379896928047396, 12.200197055006372, 12.055455931455388, 12.083084955833709, 12.261981542209327, 12.116692926752286, 12.045489863511378, 11.820783816491748, 11.805592802546968, 12.29382627299597, 12.082866747567369, 11.833938699607412, 11.646545066943323, 12.128087205786779, 11.869573658981988, 11.792522445455328, 11.778665339364146, 12.235008036310782, 12.538583196548025, 12.531870463940738, 12.262435912036405, 12.210506226936001, 11.934668684593518, 12.03549463481189, 12.070407384459337, 12.11210452493644, 12.361264308347106, 12.454008738397441, 12.560785516871427, 12.303797477710097, 12.63093568715679, 12.511545994354865, 12.52159161483705, 12.250060105839601, 12.51716646259494, 12.671350116910334, 12.580811352247741, 12.493895092872181, 12.446422397032695, 12.37120134622529, 12.083833388441265, 12.3950314467325, 12.53733175898798, 12.498800859063724, 12.654863826959513, 12.651638735895572, 12.391803193639536, 11.500620249137642, 11.95646656355612, 12.00580132558517, 10.75426482960618, 10.504743095443184, 11.315876455827691, 11.98068508792549, 12.595867639730784, 12.357901951952421, 12.599267146334817, 12.405090195923737, 12.262841959854752, 12.121442709120593, 12.273841139812344, 12.43330861973286, 12.27864920149355, 11.487657974909672, 11.727044469314805, 12.294038368845088, 12.257824561972367, 12.313256280589153, 12.482187777206974, 12.43679518515703, 12.463302711645762, 12.445151942511199, 12.328605987485814, 12.520413192638681, 12.719213020654372, 12.441889910825662, 11.877209952084494, 11.703416635394097, 12.232078426585478, 12.709297261684915, 12.494117707056843, 11.408487469661594, 11.270307416148713, 12.009670153014484, 12.416589105960934, 12.525381364041989, 12.459412600261619, 11.254148802361604, 8.69876717590306, 11.15655456034386, 12.071343711684523, 12.300957233810987, 12.394981201400471, 11.546183241232661, 11.758536567282809, 11.601428559310454, 11.941455979182802, 11.98659629455532, 11.910387454107587, 11.947144050630666, 12.035375447392566, 11.9455727004695, 12.151475074683658, 12.222169975627143, 12.23961963668678, 12.460210680188776, 12.337936250806502, 12.264405507140044, 12.160244507162579, 12.288308679174838, 12.407430645161204, 12.082709226570282, 11.879554183734188, 12.193519973945618, 12.298816108477803, 12.190322460845639, 12.228311466684856, 11.734563222132534, 10.5250193437311, 11.989369819991591, 11.791950446533345, 11.457668177429335, 11.612310814207907, 11.706892991262208, 11.889289094271192, 12.02108015062917, 11.921634085663182, 12.046113441972171, 12.274950882306502, 11.904560651874649, 11.711021395139797, 12.146570885580692, 12.01819560959811, 12.155535027989602, 12.212638795935732, 12.430637749691217, 12.107182402825298, 11.720409929166074, 11.607606268746919, 11.9877351207604, 12.25142108165985, 12.04707847453517, 11.93919198382923, 12.244583658725793, 12.171785787514278, 12.410724839162544, 12.51484712867237, 12.117535240885237, 12.221384967498365, 12.237953517537331, 12.169977922488698, 12.57460425809133, 12.67403019219147, 12.11438306611496, 12.054085589753978, 12.193886057415998, 12.103161196021182, 12.269176481658338, 12.33691789778888, 12.50666664874915, 12.376261108706895, 11.5981760079855, 11.250358193002663, 11.592649322191388, 12.133503413119284, 12.070150689216657, 11.685798278167828, 11.933298667189234, 12.12102958902733, 11.960343141573968, 11.856804732975405, 12.076146770836017, 12.07651441272796, 11.197071116539226, 11.712751631235383, 11.700537024968165, 12.049627573130516, 12.20436615647637, 12.181743885580785, 12.28939013393501, 12.395318040578188, 12.654466873630666, 12.6024032595763, 12.300195865369567, 12.532290591000308, 12.293973463426694, 12.174892440707337, 12.148226350545883, 12.293230049178417, 11.894161830254651, 12.345291198728836, 12.476055139458024, 12.26088780294511, 12.04942974346219, 12.188561290369384, 11.83311627277108, 11.260298205888505, 11.846891488114448, 12.397061621408326, 12.372323747922069, 11.590883666859117, 11.732674920313643, 11.446321712546322, 11.90838532656245, 11.93979045920347, 11.779983186040033, 11.463414532683094, 11.229651659144723, 11.846368172281498, 12.053846128492767, 12.13081038745536, 12.144502070249418, 12.131218491244052, 12.183266115765418, 11.923758528829202, 12.270085510025677, 12.271363655003634, 12.162414604004532, 11.617741869341943, 11.224784083522868, 11.884482698810512, 11.845923472164872, 12.137793227344051, 12.326953099481761, 12.31380415479406, 12.352706461550504, 12.382092389276918, 11.922987683695974, 11.874375824546062, 12.210079218862381, 11.959498844131309, 12.121844314033122, 12.184663500957459, 11.965802648992442, 11.971363624225964, 12.127532508569363, 11.980898879083355, 12.176976401829025, 12.086311228337136, 11.67153039825875, 11.370544869172907, 11.831612361623144, 12.110465976927015, 11.846046462803583, 11.911358068901816, 12.072954041878585, 12.468239240551311, 12.017074762315326, 11.901173424067988, 12.375780691380255, 12.430100039760363, 12.456892378301735, 12.239203197357664, 11.864542744506425, 12.09424572840078, 12.334386205125522, 12.267621957083065, 11.806352500381365, 12.022110955557213, 12.380461658413314, 12.249917892008188, 12.16238738932051, 11.824137844782005, 12.028395075488973, 12.154962431040026, 11.974222820034706, 11.786073815702592, 11.803344377506537, 11.814824613353663, 12.03153379696909, 12.108780444346792, 11.845964325618825, 11.918330723707465, 12.20698064971712, 12.239495781489781, 12.172222152833015, 12.415106570090929, 12.531838992704303, 12.719839357468018, 12.353263201462594, 12.630514093497103, 12.580461770566357, 12.187194652485065, 12.069322381700788, 11.905304387134054, 12.223033323195148, 12.64093853798499, 12.384695494404205, 12.334407678830058, 12.008346927926896, 11.893165119301507, 11.29213941792808, 10.952768212218686, 10.93474316398903, 11.635092956695855, 11.41784351836634, 11.658262515765974, 11.675447996799237, 12.30010401533448, 12.110431369831234, 11.949085036443048, 12.14697460871194, 12.263835595187532, 11.944337970288373, 12.24999998997092, 12.244279431255624, 12.259095005790217, 12.19049525946474, 11.952053586500032, 12.290017144405082, 12.342605395335347, 12.34543221615267, 12.390415291816662, 12.07831748381761, 12.08042702534869, 12.42903800865032, 12.523387729762858, 11.93424548952536, 12.28719162808208, 12.263088805150801, 12.064306101232809, 12.204758527604016, 12.218230973217311, 12.10749650355613, 12.068409328588894, 12.140573814853292, 12.248244071485207, 11.821797777383068, 11.665372681913908, 11.851607603763414, 11.980339591688509, 12.391564075263815, 12.252395902387944, 12.103445679596748, 12.150920321239283, 12.315978948817786, 12.200447766104741, 12.456093876944808, 12.163605237840544, 12.03939587858465, 12.221039911855954, 12.298965954432523, 11.721860159843533, 12.0625908527639, 12.305396162747034, 12.003109534637668, 12.122214679105268, 12.068935906422194, 11.971816266337948, 12.323077017221696, 12.11677988294674, 11.888508196986631, 12.05053449203861, 12.285355144703882, 11.80561186462664, 11.607050237045103, 11.717736255463857, 11.276023432060525, 11.442628099368168, 11.806194048141366, 12.083272782239048, 12.184496679863372, 11.619136221422975, 11.688043477742568, 11.994538172756332, 11.835096485023417, 11.919427693787828, 12.058772679860905, 11.92584026028987, 12.289090915348218, 12.173980933732812, 12.620296526883243, 12.491044649437292, 12.220391860309713, 12.044701955176347, 11.9312730263576, 12.109190688375255, 12.286340664480335, 12.372968989601867, 12.222774372256474, 12.232495952850416, 12.036040617931514, 12.247691064779728, 11.955296625525264, 12.21525428922368, 12.507014523621192, 12.294112762606163, 12.243474735910313, 11.942225503675536, 11.677607768434145, 11.834132483715063, 12.229273937159828, 11.858185659647832, 11.897925289834683, 10.963465647921234, 11.420654698265594, 11.665639143061817, 11.156469816234464, 11.67532190335155, 12.267710823993607, 12.440637481165123, 12.437774489599649, 11.577489383406284, 11.236885681174929, 11.822507484065953, 11.81016600066036, 12.068231247395886, 12.257374822690135, 12.185757278679656, 12.031046782493027, 11.81294722485713, 12.0603614936392, 12.298141648268173, 12.303856679690442, 11.688399840117365, 11.369404952986859, 11.910773876593227, 11.870703314859933, 11.90213941813681, 12.011145785024128, 12.195412814490965, 12.337526195454148, 12.58156387834737, 12.537893985118904, 12.02415728937374, 12.041849645391276, 12.192546573649446, 12.218792464778108, 12.257249886361492, 12.033731517704624, 12.115760396652282, 11.964318824257274, 12.072200430867817, 12.08988052117397, 11.72247649410371, 12.01137175421047, 12.390869511037634, 12.393328683429889, 12.293657918243634, 12.27217651215969, 12.073210318765957, 12.04038616752144, 11.894977180925133, 11.762147989472924, 11.846296318115726, 12.380825440543038, 12.45629013059075, 12.251041660351413, 12.349826726827535, 12.057188383992107, 11.581801188745075, 11.695624577976437, 12.392861849412332, 12.456836659876746, 12.104202913546908, 11.515301021445156, 11.835990118999998, 12.265168571931401, 12.456311458546665, 12.562277599585862, 12.522834619199196, 12.210297029797394, 12.137316585086927, 12.495626757976728, 12.63815150265614, 11.987591201495826, 12.03995957696955, 12.089939720550694, 12.430664484504947, 12.638095116877293, 12.913798462359448, 12.527738239822822, 12.359469948201466, 12.013564578366204, 11.608471734777241, 11.772231939597372, 11.860660441641537, 12.272243297825295, 12.551572843892686, 12.685146073435808, 12.041567182540893, 12.154496103294136, 12.482696455850306, 12.323718815062895, 12.354826485546605, 12.54587688620802, 12.924501633720766, 12.702226821227596, 12.632550552788702, 12.412028212312393, 12.458033314707347, 12.634280283342708, 12.1079365018534, 12.474041562646834, 12.216181871385285, 11.605504114243006, 11.78496130704042, 12.141879183654018, 11.851267967590164, 11.89673530488593, 11.418288737009897, 11.24485087943917, 11.991672502913438, 11.763697228173003, 11.710329938995274, 12.319067518331147, 12.343269187506738, 11.713441178898078, 11.452356025966674, 11.579148117024204, 11.813368551125103, 11.982775495100995, 12.030725420055685, 11.984197333504923, 12.01839242268092, 10.778133501149004, 11.131890682533282, 12.396000097592673, 12.23390897880901, 12.265683086887378, 11.327764089726504, 10.915047000941811, 12.114563883279343, 12.004316488272853, 12.306319725646405, 12.048988294368513, 11.933456215861973, 12.191448334989877, 12.184320083747224, 12.097112118117035, 11.878562497794627, 12.087465903089871, 11.989812735225378, 12.034431741312998, 12.461707891027796, 12.416720886546912, 12.269077255541546, 12.38102468065941, 12.383836354768013, 12.541672439774569, 12.563853616764334, 12.447649356948427, 12.027440568651262, 11.601895774333586, 12.059589040197737, 11.919778377910202, 11.989658211533381, 11.905197109372812, 11.7627006972928, 11.95579261944546, 11.951598192894295, 11.920000072092737, 11.574793435817908, 11.692840333555786, 11.6715557024214, 11.51808270467912, 11.840864849606076, 11.946169139615339, 12.186500825001122, 11.870615178888494, 11.86022270691057, 11.864316287458452, 11.987445971666476, 11.91644972739135, 11.928784066335144, 11.379111773089358, 10.852818069826577, 11.492424348825923, 11.819828857198761, 12.121493907963357, 11.684365722633745, 11.701242183306203, 12.274060159100028, 11.836039440804889, 12.300835962205845, 12.21909997844696, 11.728717361216377, 11.963740454981952, 11.890700502096166, 12.128290351759757, 12.293650827332149, 12.667217948024435, 12.670821999197138, 12.375483006991745, 12.09728960575969, 12.183537459211285, 12.363739511784345, 12.685304194688797, 12.78236323815805, 12.602542406421597, 12.37096220930827, 12.31416062625138, 11.69647263891903, 11.945272744785656, 12.172967817021679, 12.010743951994526, 11.831783035004786, 12.105823653311578, 11.685672087366507, 12.162546812967117, 12.13346003821292, 12.33735258707369, 12.267430016709344, 12.299538201602997, 12.236876669205392, 12.100264524025892, 11.695481107464337, 11.457638822992642, 12.180127361018187, 12.202380951245626, 12.250901860321212, 12.17030711060091, 12.140860231461064, 11.934309584825108, 12.105984782757515, 12.00990393620271, 11.68547271519751, 11.671726224441377, 11.70519476575213, 11.649950784685103, 11.573252303742832, 11.837323853877228, 11.855073686902534, 11.980482280568783, 12.435862647458768, 12.221714793913629, 11.922375231314444, 12.317690148690117, 12.100000076835153, 12.112938291043392, 12.312758310357408, 12.353171719543969, 12.246280938140616, 12.667656483275167, 12.561181391945368, 12.206454469712828, 12.272247048926973, 12.115327202987356, 12.15542849871577, 12.210213476746548, 12.13963519834958, 12.441867247123461, 12.402678558277705, 12.514547320372698, 12.198262557559952, 12.080642477091816, 12.287168198560192, 12.386942133627647, 12.271863867305086, 12.318871080323037, 12.299300061957625, 12.447168002221577, 12.206217081956291, 12.055999989176906, 12.023097081238621, 12.259288857354058, 11.959983564735733, 12.27132865360805, 11.932794444830808, 12.251976321808435, 12.29191835992176, 12.541680275324312, 12.72257808688357, 13.06411959958631, 12.883307554990836, 12.543828537617449, 12.826810412487742, 12.916654914554442, 12.962341489230049, 12.688182489499283, 12.616352572575874, 12.455306580044189, 12.664344018312347, 12.742866641949744, 12.615757562656595, 12.434562864850779, 12.375265545837795, 12.666422352413278, 12.767627360993352, 12.746864048001463, 12.503432639213424, 12.568079681065731, 12.652070532667338, 12.654513149966395, 12.614584931668798, 12.556508903672709, 12.591860458397507, 12.589745356953495, 12.5526748727215, 12.329733550297762, 12.466534400534574, 12.526368474997092, 12.37441082394083, 12.815878110211088, 12.549787834307766, 12.584454031673275, 12.7109331397293, 12.75654983907049, 12.65493042917592, 12.563225424402317, 12.47724546536714, 12.4473966038793, 12.001208628710293, 12.08374634517373, 12.448464980250911, 12.692493927873269, 12.365372437115894, 12.230438048745931, 12.128197580821137, 12.494360804199276, 12.600836533013405, 12.350966170214225, 12.197092673937236, 12.1799650717908, 12.54556960445919, 12.515578311325898, 12.396608689764271, 12.45079238858195, 12.031368785937929, 12.345486451198301, 12.454314269118694, 12.019879604986325, 11.34320676517889, 11.20374999344349, 12.56683257424024, 12.014651337242295, 11.28362453764703, 11.082529246807098, 11.252136118769387, 11.388666170233474, 11.680166454228553, 12.28427906834802, 12.48935544071719, 12.447111666440014, 12.308221989030828, 12.289568678187273, 11.333763951170969, 11.586243361662666, 12.176115087811038, 12.36123100230448, 12.17623017170312, 11.736456516654162, 11.54032614038466, 11.6463299589125, 11.24966351501393, 11.035704241336232, 10.79994000833955, 11.553497196971506, 12.17295848386497, 12.422855020927134, 12.601439939498901, 12.254599157566762, 12.267257969553878, 12.206422004131003, 12.099794415270653, 11.927181631710397, 12.15219914171211, 12.066294771551611, 11.862627017150961, 12.047012821200223, 12.32664806812709, 12.105474266559739, 12.096824414554895, 11.743868576697189, 11.273650567301296, 10.894813781247494, 11.139843755616592, 11.267713884459459, 10.976458026538703, 11.184469949640793, 10.124397397302554, 10.475764370071275, 11.141503738819209, 11.391000686087656, 11.002910522560574, 11.490951660828731, 11.473841295407123, 11.439218831807375, 11.272887790990499, 11.664629118946882, 12.27359675230245, 12.041355250712376, 12.010892877408436, 12.54120592567789, 12.212241176382522, 11.75664552348324, 11.7031115636603, 11.73449856070279, 11.638437972682176, 11.864833387533823, 11.992193312228391, 12.117975445659857, 11.882375844887324, 11.892772901902157, 12.073338705601932, 12.242038894724022, 12.301932775673746, 12.289030775640532, 11.234109554062151, 11.599375083049138, 12.265529809046553, 12.023154799223981, 11.73427509605663, 11.813968929641792, 11.793212340022977, 11.831583384275437, 12.081717685169103, 12.475800434156575, 12.510496633939255, 12.345985964881379, 12.173729498975755, 12.19814301821072, 11.446329151024798, 12.02942091497084, 12.138461551680786, 11.909971711153357, 12.282106054022316, 12.160556684767236, 11.882630460342396, 12.064393935781537, 12.145524525308943, 12.597850943348247, 11.619089623508247, 10.785577589570865, 11.744923522641496, 12.248217914089468, 12.261894689526475, 12.755593956504738, 12.152764135177858, 11.958563183575889, 11.777107555135789, 12.041212930258679, 11.932642879145487, 12.189869480323352, 12.54370913279602, 12.259630173858032, 11.590595359247335, 11.657496580317956, 11.975000022774312, 12.083508223429256, 11.311568253714105, 11.789083032732968, 12.002333932975892, 11.905156553999056, 11.87659919001313, 11.462859501473059, 11.635416677747017, 12.22138826571904, 12.123109244098183, 12.013949551902899, 12.504537363069337, 12.340812747133073, 12.6552995299414, 12.282358321061979, 11.952106864564422, 12.07425151256744, 12.073700504214196, 11.471206992248009, 11.74439991760254, 11.881463411377698, 11.90377367427514, 10.968370603423276, 11.241219325972427, 12.245188644247236, 12.452615581527802, 12.189920002365112, 11.942537347673381, 12.149397550269372, 12.311258918309285, 12.252135160781421, 12.153502644379127, 12.493503740674264, 11.549030242038183, 10.983436236656251, 11.301167676150166, 10.628070117716204, 10.451943504796292, 11.609582270978416, 11.015480626090785, 10.089107671452563, 11.296086413335864, 12.064144758801712, 11.715836215273766, 11.861066272455194, 11.83941479681281, 11.970437865187652, 12.044574310863158, 12.100281384759144, 11.763206125215719, 11.662684299249564, 11.571382018221103, 11.689147322676902, 12.269841192891358, 12.23412921589412, 11.396039545536041, 11.630218501808574, 11.920521480966858, 11.788621459539401, 11.64885990782747, 11.408440842578168, 11.734437945326404, 11.768463302369511, 12.02966180400572, 12.116537619836095, 12.41203316761745, 12.171608869711056, 11.93557589693293, 11.565262015774953, 12.015981343602181, 11.764748282283902, 11.607900997658945, 11.487920323166426, 11.642326115418395, 11.48464813695025, 11.809650884761458, 11.887972129742147, 11.71651186834794, 11.14091415218482, 12.186686465961223, 12.141855531525843, 11.125423765372659, 11.06343817440419, 11.675023800740329, 12.159623503684998, 12.220993086662034, 12.000624191448484, 11.984531601010325, 12.296868266091234, 12.147668911092742, 12.255313444960453, 11.634357616666087, 12.040384587569115, 12.063603715638857, 12.156948314808803, 12.074477720000763, 12.354510181512103, 12.197509569226554, 11.486982280686057, 11.837632070384116, 12.183511730435063, 11.787499941946045, 11.884726591277541, 11.511349062848142, 11.287385319351056, 11.556747745096157, 12.12805432108193, 12.249098634922113, 11.932216725091042, 11.548309181968946, 11.789892711238485, 11.96888666645907, 11.971130135897043, 12.159068571001876, 12.073240760769197, 11.826336577387139, 12.105535044001478, 12.143019937042498, 12.33178975172374, 12.380110066641802, 12.292217287548137, 12.766357377989754, 12.55546622145981, 12.31210032968348, 12.43452266740937, 12.298916957008279, 12.454947820968098, 12.301768308609171, 11.98521314548655, 11.603697123032221, 11.509351268172164, 11.396358273630067, 11.285714238554567, 11.335643564251521, 11.305397727272727, 12.132509226764078, 12.256663785496382, 12.298646171170452, 12.032927902960756, 12.033553797745508, 11.915139800672247, 11.790650460778213, 11.72056529303508, 11.939319991660042, 12.021718311992636, 11.998843845466657, 12.161637050630544, 11.721989028862794, 11.634697968732079, 11.8419075393493, 12.09619042419252, 12.20804194720475, 11.990403092067668, 11.881269914132577, 11.882692202106936, 12.271562770123568, 12.034365474277392, 12.397099068239752, 12.350871572025982, 11.997702913298907, 11.919655437663653, 12.003374762475808, 11.837346004350536, 12.036363636033009, 12.271307660616362, 12.072384300608169, 12.096037530550992, 12.071599092574564, 11.908077319191856, 11.967148745848128, 11.8941053139536, 12.063769583427469, 12.100933614787824, 11.881949421300785, 11.724324285178572, 11.85303815578421, 11.589341984290122, 11.882866298226569, 12.121549679638399, 11.815834656845066, 12.176885841893505, 12.32806207427595, 12.302260331607425, 12.490010119602465, 12.484790454795974, 12.434451847801807, 12.396781344524896, 12.352060384366979, 12.355648169694124, 12.282474117180735, 12.119847248983747, 11.99924528778724, 12.012511452867676, 11.919572993953881, 11.901689147627032, 11.99459242801497, 12.131444958826199, 12.351065597672394, 12.427000853086419, 12.27067194851962, 12.046647239009424, 12.02858200453585, 12.099625195341668, 11.96877473069745, 11.737500069946643, 11.484737926208124, 11.775800336103206, 11.926291014442981, 12.141442096720148, 12.246375605537628, 11.982893611866306, 12.426826933714059, 12.296268708225506, 12.177142895383788, 12.205727156725796, 11.922419293657425, 12.142073696662752, 12.2279999584198, 12.252141664998339, 11.822336996302885, 11.932248511610652, 11.748615416746873, 11.531350550574803, 11.297169772910795, 11.558850492874202, 12.048852821153163, 12.101191799147287, 12.180033852606256, 12.062432913959347, 11.911663814228968, 11.348810734009312, 11.421391601415024, 11.633390552700845, 11.712251924049042, 12.075044395656823, 11.907781771982291, 12.102561675620034, 12.115725433311589, 12.093326450373358, 11.951434736930855, 11.743859568534539, 11.72186862271914, 11.71567237244578, 11.53244025536131, 11.590900424984394, 10.765005035866293, 9.287475377380025, 9.409446589136852, 10.785281781861578, 11.922295130015723, 12.254835633828606, 12.476760645987282, 12.155750537243968, 12.072296549191067, 11.844546447802083, 11.665123172816385, 10.945522372910718, 10.947481239212543, 11.926956485924514, 11.79438979325332, 11.689717531743023, 12.073672842746953, 11.852770617957411, 12.100213839339938, 12.353937690537894, 12.154664527846007, 12.11508170421198, 12.051171939820051, 12.189702560299684, 12.099476770609325, 11.989357368055597, 11.93922134329281, 11.97167409090005, 11.578007980361878, 11.509059486767667, 11.578400033738879, 11.573249034844483, 11.348439055026958, 11.605675678425007, 11.371724730898096, 10.49743775048714, 11.665533993236455, 11.625827208161354, 11.767343205719417, 12.123282644601936, 12.15883885347244, 12.029842028296796, 12.037686150707142, 11.904743372297702, 11.908463055521597, 11.857480347000083, 11.114861696228209, 10.537810195449495, 11.300201543877202, 11.942251617436467, 12.309706860955453, 12.277807822569459, 12.127353364741493, 12.210000033094394, 11.606954880226823, 11.899458324094034, 12.065158978452109, 12.185561169291205, 12.380883243973877, 12.582144879603732, 12.483288682969292, 12.265959595129148, 11.84113915333768, 12.111441645114864, 12.318902779705978, 12.124242422363976, 11.995163378061033, 11.981038752724142, 11.709639941912219, 11.495903157803081, 11.862189459432445, 11.728346985383112, 11.791172523061542, 11.992895175183998, 11.992136836767482, 12.088732408805631, 11.73623825285502, 11.601034228233036, 11.521590949539195, 11.807393851426824, 12.063033481060637, 12.2498801768183, 12.181084741980342, 12.25018113907656, 12.021245112009012, 11.92580191394109, 11.934756673855729, 11.889195001057987, 12.149645964586025, 12.105013751721645, 12.128016349971904, 11.973687477707863, 11.928047191581125, 12.277115624647442, 12.247222204654538, 12.338023909373197, 12.62936803115788, 12.5891388104441, 11.94906637613412, 11.915727217660319, 11.603796606872042, 11.740926326682725, 12.236735931190967, 12.118565944337051, 12.205632939411363, 12.256450431903382, 12.000400958103281, 11.76575547488422, 11.786893163298325, 11.774792747908762, 11.91541355570456, 10.838410626341965, 11.1353701533901, 10.945836273751283, 11.881985585340221, 12.212762405850325, 12.448720098821513, 12.048838812729407, 12.16837032812613, 12.142715280103367, 12.061083828874409, 11.723061652425777, 11.630662340856631, 11.93583764910492, 11.609290081928863, 11.718902848401363, 10.669614872816796, 11.01048163685515, 11.819292865286966, 11.66950189254293, 11.71120752437715, 11.208193930295797, 10.931687660020387, 11.941376220764488, 12.121672318250246, 12.097301399332473, 11.691591362724543, 11.717831558235702, 11.485961119677198, 10.518628824780853, 11.46931813809682, 11.329057834682631, 11.471544589453597, 11.68790909246965, 11.61355651073376, 10.797395820064205, 10.986043096031183, 11.634357132571084, 12.063820703495184, 11.407732734571232, 11.560616054681793, 12.01572209651117, 12.138319958877563, 12.021416040226422, 11.273890872955322, 11.461505062328234, 11.75203441006477, 11.808916026062064, 11.56169098775072, 11.16827588718513, 11.20369817445863, 11.423214257574406, 11.724185316476772, 11.646795796033345, 11.6264415944035, 11.5156358108494, 11.68181199501256, 11.946132181565973, 11.844789389055567, 11.776083667182068, 12.089950570164637, 12.04006591004374, 12.118943752806825, 12.19651415387876, 12.11062972934648, 12.282668449691762, 12.080492867907786, 12.099128728258066, 11.951837669609466, 12.178322667336753, 11.985003228367917, 10.366112981523786, 10.694458246676444, 12.16804563999176, 12.179488923571526, 12.087067279529135, 12.112216280999585, 11.655236113650762, 11.647178019697519, 11.56771180930338, 11.538863895898086, 10.877635324442828, 10.981337811715626, 11.574036357879638, 11.790039275295612, 11.921640749193486, 11.804100062799089, 11.697112159812267, 11.739245481951832, 11.210193142582781, 11.770261175905548, 12.257469586376226, 12.175283020247454, 12.303240722449369, 12.37438271958151, 12.199042114413713, 12.3315498078148, 12.09004630451953, 12.13637347511308, 12.17379956904006, 12.089027196345663, 12.35578150488835, 12.676449438557984, 12.412078029244258, 12.575641728957972, 12.51407235616661, 12.585059811394528, 12.590904246999862, 12.576989768967476, 12.416621258083417, 12.325057972611518, 12.031157543810027, 12.000548814854971, 12.058560792772704, 12.21159605638212, 12.316240519264607, 12.299606292266546, 12.18375960121984, 12.069230821793251, 12.279124847193033, 12.053549467733719, 11.814132345170583, 11.557439758890585, 11.576941552211801, 11.821354068283524, 12.31648594265991, 12.370796410058777, 12.435412602117884, 12.303081083521297, 12.346977387044175, 12.086947054340841, 12.471719215459991, 12.661878399521513, 12.381068782224, 12.270759786355523, 12.179656004852204, 12.131925713371587, 12.10607822253047, 12.298333288322796, 12.302279271970788, 11.952077269212564, 12.10847450971779, 12.254238565792647, 11.996394111199757, 12.233811996779927, 12.61730891786191, 12.396187555491924, 12.269003443209986, 12.44229310972725, 12.37061895637882, 12.468698014512947, 12.535112393036318, 12.465211174704812, 12.398210156845211, 12.199368484898617, 11.839724258928806, 12.095067812256339, 12.438881124149669, 12.43697923279944, 11.981263576769361, 11.995726457935206, 11.99811852817336, 11.869031416930737, 12.11866770010567, 11.8883361532482, 11.806480025863648, 12.191185424030733, 12.540145393334607, 12.095429603534818, 12.160528618091872, 12.218612786025934, 12.349062782822338, 12.182002916391426, 11.942838528814415, 12.079366145480709, 12.310108800157094, 12.236991367857495, 12.600994283841414, 12.44389689375362, 12.373563995593075, 12.471136945677221, 12.738771991232445, 12.574068149624129, 12.57282839325089, 12.347983568071585, 12.25202559272533, 12.13838528995811, 12.053138683834215, 12.11165503744201, 12.068826938868547, 11.541666611414106, 11.802810619215993, 12.03708257742213, 12.036079415467565, 12.285632659756407, 12.010158420831159, 12.10119448322485, 12.099918089959584, 12.114757859642738, 12.310639832535722, 12.07195387972974, 12.01956229953531, 12.21258462749734, 12.311639827132051, 12.228607768551681, 12.247081924188333, 12.394539889821246, 12.176817336266698, 12.404755617857294, 12.14326085836991, 12.395221086439495, 12.578043806243041, 12.297101521837538, 12.360645145293205, 12.546841155820845, 12.535579321066137, 12.672095862120212, 12.673621792728264, 12.583578838134033, 12.570911019548305, 12.468630751169124, 12.601403470764383, 12.213013735090662, 12.207081390484369, 12.151701530860981, 12.082665037476376, 12.242573740535375, 12.310817942770301, 12.16377003387334, 11.97753525048914, 12.320468230550505, 12.097930937142207, 12.062914779299486, 11.966936456014032, 11.804011073349917, 12.214160914430005, 12.3674838782895, 12.300782725295699, 12.18670597076416, 12.076685101982651, 12.046761619323513, 12.05259623679284, 12.060232934856574, 11.954922718431039, 12.054172776628553, 12.025733794775432, 11.88044658855753, 12.08768163172844, 12.189944575133833, 11.8773854608199, 12.13681869276727, 12.296318008311124, 12.11505127141004, 12.772787631085489, 12.696971647524274, 12.434225939209362, 12.44410987136514, 12.007175941526153, 12.026875051856042, 12.245881395280836, 12.36573128148812, 12.272758958026365, 12.190717935144589, 12.348802985846447, 12.388833038352498, 12.367775883767512, 12.158160922536448, 12.120128942765616, 11.996423776011396, 11.798335646789381, 11.568049840742457, 10.949786703413615, 11.324163835935625, 12.185804342396251, 12.66232523530381, 12.523455265040356, 12.49342105197114, 12.465446081364679, 12.25555553333259, 12.741065296520482, 12.552926685430743, 12.360437077333268, 11.819881276843809, 11.984930612809128, 12.367956514999483, 12.576183449939863, 12.323783065082301, 12.405973439195515, 12.3727999584198, 12.327786619875841, 12.15216048963276, 11.680221535925623, 11.686931835995479, 11.790725081204162, 12.18094794241738, 12.285215035561592, 12.243945377773539, 12.079931708651598, 12.076673312957743, 12.12385613809224, 12.147005027578782, 12.458259071977366, 12.000296601726003, 12.182841197833573, 12.044190483093262, 11.83381770562756, 12.160333682918461, 12.207506401565592, 12.254590978606515, 11.960766279286352, 12.169543122449934, 12.420055096269394, 12.208594908094192, 11.716850324315349, 11.779501170918799, 11.564995784321981, 11.516767802658139, 11.311039901696718, 11.891833438598413, 11.693768541784598, 11.562383949203019, 11.634764985095353, 11.26780332826982, 11.723015330965476, 11.112032369931143, 11.437564124205174, 11.842615671241388, 12.365943462420733, 12.599929678364592, 12.54414590443851, 12.1958894347739, 12.211255376301114, 12.233583558378774, 12.522080527696033, 12.546857207502638, 12.205194680574284, 12.244746851770184, 12.430706919205207, 12.390891184188122, 12.471304954535887, 12.54001215866219, 12.280648598542085, 12.095945173505372, 12.238661401685452, 12.124659223036547, 12.36688073425146, 12.306936415633714, 12.419999968272583, 12.504741143079675, 11.825634728865726, 11.942342974724026, 12.063001574329542, 11.332686515708469, 11.59562633866465, 11.790739163566466, 11.404373479551182, 11.862898985819122, 10.301424251682219, 10.520784610399113, 11.453650477286535, 11.687274200187737, 12.35004064012213, 12.235213592300292, 11.871957674768957, 11.562859569696883, 12.05828095781978, 12.222234328500804, 11.315126134567901, 11.133675205401886, 12.136517314515876, 11.835951070718949, 11.836407746311917, 12.12672738985483, 12.092388478894037, 11.969591086727188, 11.925262274858834, 11.737243972899083, 11.482029174384841, 10.75419040731146, 11.07818481308733, 11.836570522603713, 11.782715078550085, 11.929665848642061, 11.87922490759481, 11.8973683732598, 12.131025004585034, 11.976130656860581, 11.70671849961174, 11.716093005468679, 11.974929820721789, 11.403052625907096, 11.100754315996992, 11.693243249335511, 11.428231210124736, 11.703154207111519, 11.893497029989044, 12.205882401389871, 11.741794626152641, 11.763814132779036, 11.356209106175209, 11.708476429333503, 11.800920461483463, 11.9346290033473, 12.138777396960823, 11.998274203114862, 11.879650583492644, 11.74480880414202, 11.353998291521945, 11.298545790901542, 12.057476296338319, 12.043236437279159, 12.572818214243108, 11.836371890826994, 11.37994556721239, 11.876806350609323, 12.182604829331378, 12.298902130610234, 12.256429689193817, 12.004746600494016, 12.007867241809718, 12.141776270772281, 12.484766523140948, 12.416882140736163, 12.367835271285802, 12.225153891490056, 12.292821640144787, 12.259848461367866, 11.730504554346068, 11.893291205802864, 12.358805303521818, 12.350490946589145, 12.661723225635324, 12.499124005155743, 12.047601715463106, 12.196500687708284, 12.442564841019342, 12.526160381586168, 12.360210085416107, 12.142951011372865, 12.017484807294732, 12.456964643482358, 12.102861068336928, 11.101098167298996, 11.20519965882578, 11.409333379003737, 11.822040122565456, 11.87840822855163, 11.898384831474736, 11.632927717442332, 11.911319483548143, 12.000866831335333, 11.795668896628298, 11.972128262184395, 12.32081446011142, 12.489248689199458, 11.778746052325468, 11.986064794838018, 12.045953210309255, 11.887637027358249, 11.533143388353295, 11.41221842980674, 12.21053600685874, 12.06349993944168, 12.328869327624727, 12.437901578572374, 11.929658618554836, 11.805272836799869, 11.845350763342703, 11.80575828366616, 12.241951213231902, 11.953928867581464, 11.357221392110528, 11.41590293205652, 12.013455372708734, 11.897996435182776, 12.039999930063884, 11.833333435118762, 12.032616914901059, 11.461975264254912, 11.294297841433613, 12.014869527816773, 12.334816273683737, 12.291866538459308, 11.474616878790874, 10.924459199143726, 10.375345432628285, 11.521953362272852, 12.202561858686035, 12.086106493151723, 12.209187559404423, 11.878755104096598, 11.938266525674042, 11.714978594072536, 11.838776987748181, 12.204879870809943, 11.958301303745698, 11.766223640531372, 11.47028669474127, 11.877961676295211, 11.908170756744697, 11.7821605496175, 11.817705247333802, 11.608863086829066, 11.767281883914999, 11.840271866311436, 11.869742246439134, 12.13685187763638, 12.16309629229143, 11.926996532827616, 11.903537023105805, 12.184223135534035, 12.36532708018478, 12.317660925526821, 12.094642872160131, 12.51295509225327, 12.594675473087838, 12.437191875591664, 12.262711809045177, 12.114160135532536, 11.796044250832328, 12.030607868724552, 11.984232286199989, 11.942943726163922, 11.889402621972998, 12.139999993369303, 12.094519460267543, 12.006168848895408, 11.857651747576138, 11.772098910279649, 11.739383228234782, 11.719383261802438, 11.604327392039833, 11.885800319776683, 11.676644788368753, 11.830603755338808, 12.148327217137503, 12.087684352137698, 12.08362698730043, 12.316892781768757, 12.261001894424139, 12.223585590731126, 12.056462653234702, 12.22168310236262, 12.022932342658365, 12.145956137463259, 12.085250626095629, 11.997056803339081, 12.221780931850338, 12.298675455952322, 12.394375518383427, 12.190403131056655, 12.223753249551368, 11.742886282457958, 12.048628389983998, 12.30912503361702, 12.4136505658431, 12.25839365356738, 12.514264861222092, 12.638879681340553, 12.415773197580144, 12.349416928110596, 12.377399158411464, 12.217009601933148, 12.033450839043336, 12.005835163080283, 12.263861349313567, 12.167722303591006, 12.173297363443304, 12.351386233193885, 12.39843138838126, 12.304631576538085, 12.268167652698777, 12.529966286336533, 12.3448470832837, 12.423272918713721, 12.242455801649998, 12.447690110386223, 12.554065928616367, 12.407913736988315, 12.498752782909817, 12.55147466934129, 12.356090683437271, 12.41138271413036, 12.279857646358394, 12.215428597586495, 12.0898203939021, 12.306295933727348, 12.087438432649634, 12.20776018053556, 12.098721308069969, 12.445454589887099, 12.251526793996796, 12.426898014002404, 12.154852926906418, 12.391766086904452, 12.505099323727437, 12.507793141397936, 12.395364276796162, 12.343659894794067, 12.368424825703269, 12.372952138069424, 12.470100485899142, 12.540665589369736, 12.573783141949765, 11.919984023031416, 11.806683375821477, 11.492927554684659, 11.884734086270603, 12.28242330420953, 12.37434157296167, 12.316337729215434, 12.405396282974424, 12.66401109022972, 12.360114758372013, 12.507318959126135, 12.401998600561562, 12.282579347944035, 12.492780236370432, 12.46824462628537, 12.293933331648509, 12.25196680629488, 11.935800248665682, 11.757431023186685, 11.959958873000723, 12.020812194359484, 11.947992382724244, 12.318031455585048, 12.222379765987773, 12.431191898258882, 12.463101271570816, 12.468892710146417, 11.977372915057813, 12.407297498432273, 12.465517203681504, 12.506629022455686, 12.558664981758794, 12.695384635414966, 12.498429196667297, 12.492096572666679, 12.420814770239371, 12.419230649592247, 12.479776276163308, 12.492145292662286, 12.62367909761791, 12.60946796260727, 12.254027460846133, 12.07172415466601, 12.13952811295304, 12.299337649187505, 12.084635282347787, 11.980147502791713, 12.418762517308522, 12.129445275066587, 11.658701779498864, 11.57736299225411, 11.988766870385891, 12.210008107728248, 12.375219199951902, 12.093333310256769, 12.130557805870495, 12.204449856937124, 12.1306737242861, 12.331216914733671, 12.23866426295262, 12.14736416697883, 12.17708169342758, 12.058653132095875, 12.213436481230422, 12.461595348817738, 11.376168201088534, 10.467561277692303, 10.99315393631275, 11.824106323948483, 12.034767065851492, 12.209582663761593, 12.141057209550773, 12.358087664281268, 12.311475422864403, 11.999641870700868, 12.16202874000633, 12.090759279734767, 12.065356164728499, 11.714402725753525, 11.795870533337366, 12.109225406445248, 12.178142054159133, 12.448930536085959, 12.53761465469267, 12.441797963792096, 12.312765938645981, 12.02341498358775, 12.001564462836182, 12.433454364700456, 12.277642574469146, 12.249708315650905, 12.24505075479522, 12.208758318717422, 12.18416083196212, 12.009482275662041, 12.01432400949828, 12.138648696042395, 12.034243760990496, 11.789524443198598, 11.992156997502114, 12.093854348979637, 12.141246265615129, 12.119112985061113, 12.376782859631469, 12.259742258750286, 11.490568808693299, 11.452222815081363, 11.764804479396544, 12.003048079791553, 11.697848866643836, 11.48194366595369, 11.84363268499505, 11.270571358953204, 11.63513678837692, 12.546014757980377, 12.502163996461961, 12.392487054661766, 12.467748461420912, 12.484925562927208, 12.321103920410206, 12.422888561444884, 12.38379797564428, 12.061826282312541, 11.836165905485018, 11.700714245709506, 11.47706147648584, 11.797450124505032, 12.086311750085635, 12.199435556703998, 11.962850959803923, 12.360781510383452, 11.954093175210641, 11.721027071156657, 11.710007548964864, 11.269775687895851, 10.618887387297965, 11.329691059533689, 12.193654339649136, 11.891447279014086, 11.374699711441636, 12.014006314702996, 12.28028408626566, 11.725635343781144, 11.495638568639013, 11.683248235660345, 11.96792747018091, 11.379520870250012, 11.39859668701403, 11.750000031675611, 11.636033908268551, 11.608955234218936, 11.392191623308644, 11.960923992061524, 11.506539563933467, 10.953392834535666, 11.223890821274637, 11.849718175884476, 12.045837122303306, 12.19507436880835, 12.22401827633653, 12.042857176170424, 11.543856022216506, 9.908457753907388, 10.126106551669155, 12.148000067797573, 12.078690048536597, 12.031293926889463, 12.18311559447092, 11.846298229209573, 11.36870997953284, 11.586988201783504, 12.186719501029009, 12.512342812505159, 12.316957543120221, 12.047044675951948, 11.464012079718954, 11.96553155156069, 12.17916291458524, 12.071846258869346, 11.316885297220262, 11.559288183395548, 11.632904132889406, 12.086147477978566, 12.215325368185566, 12.070537980451837, 12.028828025170123, 12.119016795521102, 11.90341017806585, 12.152609174116986, 12.387276623401982, 12.24395360254715, 12.203628593473322, 12.218047284985905, 12.414238625985604, 12.444299955448304, 12.279875076454104, 12.203731817229505, 12.395120201541486, 12.551870870135414, 12.790680405656262, 12.808800616105284, 12.40071145251374, 12.132501864212374, 12.132477992806514, 12.004594862212114, 11.785332191391584, 12.501649526714049, 12.421286014918477, 12.270397065133395, 11.783179232902315, 11.833333372388568, 11.67961167510589, 11.406265231823902, 11.861538536931755, 11.801177338219746, 12.016510480414558, 12.366331735448023, 12.377348070551113, 12.332992621929977, 12.426434904505577, 11.63330366074349, 11.973226055516989, 11.981349596043223, 11.988634270264518, 12.004173780218705, 11.891026713526239, 11.727340448959465, 11.746808571581095, 11.312918382795301, 11.869962462593108, 11.780563807275247, 11.916507100039928, 12.094281298668344, 11.811294266569847, 12.087426776758084, 12.235254259432777, 12.088230770184444, 12.170954392328962, 12.218040389184077, 12.134720089576248, 12.566692159228692, 12.540880028621114, 12.385316671226782, 12.28964774408073, 11.60752852642944, 11.324279302530476, 11.469875235608555, 11.595966379181677, 12.009531638616407, 11.705387194349308, 11.638918891253772, 11.497717973169701, 11.96333045694786, 12.143733359442816, 11.757581387675085, 11.685502366532603, 11.878785276077164, 11.587523875236512, 11.526130718442063, 12.040785522499354, 12.029116490279815, 11.660359357426584, 11.575459322800507, 11.861274539723116, 12.17585608894308, 12.38123252968383, 11.797393759935519, 11.922953904404016, 12.16010277810162, 12.484558787221223, 12.42766633118507, 12.28899653675647, 12.36888884370045, 11.94879034594182, 11.717898960707252, 11.963166461996215, 11.896897829362075, 12.380651833326414 ], "yaxis": "y" } ], "layout": { "legend": { "title": { "text": "variable" }, "tracegroupgap": 0 }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "fillpattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "sequentialminus": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "text": "MR2 ballast speeds towards Gulf of Mexico" }, "xaxis": { "anchor": "y", "domain": [ 0, 1 ], "rangeslider": { "visible": true }, "title": { "text": "Date" } }, "yaxis": { "anchor": "x", "domain": [ 0, 1 ], "title": { "text": "_value" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "voyages_ts=voyages_time_series_with_split(start_y=2018, start_m=1, start_d=1, \n", " end_y=2024, end_m=5, end_d=30, \n", " origin=None, destination=gom, locs=None, \n", " prod=cpp, prod_excl=lpg, \n", " vessel_class='oil_mr2', vessel_class_excl=None, \n", " status='ballast', freq='day', option='avg_speed', operator='avg', \n", " title='MR2 ballast speeds towards Gulf of Mexico', \n", " split=None, plot=True, plot_type='line', show_top_x=1000)\n", "\n", "\n", "\n", "\n" ] }, { "cell_type": "markdown", "id": "84f2615d", "metadata": {}, "source": [ "### Contextualise speed data\n", "Use seasonality to put speed data into context." ] }, { "cell_type": "code", "execution_count": 8, "id": "e9e09eb4", "metadata": { "ExecuteTime": { "end_time": "2024-05-31T16:56:18.930926Z", "start_time": "2024-05-31T16:56:12.439639Z" } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Downloading freight data for period: 2017-01-01 00:00:00 to 2020-12-31 23:59:59\n", "Downloading freight data for period: 2021-01-01 00:00:00 to 2024-05-31 17:56:12.442444\n" ] }, { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "fillpattern": { "shape": "" }, "hovertemplate": "variable=Min.
Date=%{x}
value=%{y}", "legendgroup": "Min.", "line": { "color": "white" }, "marker": { "symbol": "circle" }, "mode": "lines", "name": "Min.", "orientation": "v", "showlegend": true, "stackgroup": "1", "type": "scatter", "x": [ "01-Jan", "02-Jan", "03-Jan", "04-Jan", "05-Jan", "06-Jan", "07-Jan", "08-Jan", "09-Jan", "10-Jan", "11-Jan", "12-Jan", "13-Jan", "14-Jan", "15-Jan", "16-Jan", "17-Jan", "18-Jan", "19-Jan", "20-Jan", "21-Jan", "22-Jan", "23-Jan", "24-Jan", "25-Jan", "26-Jan", "27-Jan", "28-Jan", "29-Jan", "30-Jan", "31-Jan", "01-Feb", "02-Feb", "03-Feb", "04-Feb", "05-Feb", "06-Feb", "07-Feb", "08-Feb", "09-Feb", "10-Feb", "11-Feb", "12-Feb", "13-Feb", "14-Feb", "15-Feb", "16-Feb", "17-Feb", "18-Feb", "19-Feb", "20-Feb", "21-Feb", "22-Feb", "23-Feb", "24-Feb", "25-Feb", "26-Feb", "27-Feb", "28-Feb", "01-Mar", "02-Mar", "03-Mar", "04-Mar", "05-Mar", "06-Mar", "07-Mar", "08-Mar", "09-Mar", "10-Mar", "11-Mar", "12-Mar", "13-Mar", "14-Mar", "15-Mar", "16-Mar", "17-Mar", "18-Mar", "19-Mar", "20-Mar", "21-Mar", "22-Mar", "23-Mar", "24-Mar", "25-Mar", "26-Mar", "27-Mar", "28-Mar", "29-Mar", "30-Mar", "31-Mar", "01-Apr", "02-Apr", "03-Apr", "04-Apr", "05-Apr", "06-Apr", "07-Apr", "08-Apr", "09-Apr", "10-Apr", "11-Apr", "12-Apr", "13-Apr", "14-Apr", "15-Apr", "16-Apr", "17-Apr", "18-Apr", "19-Apr", "20-Apr", "21-Apr", "22-Apr", "23-Apr", "24-Apr", "25-Apr", "26-Apr", "27-Apr", "28-Apr", "29-Apr", "30-Apr", "01-May", "02-May", "03-May", "04-May", "05-May", "06-May", "07-May", "08-May", "09-May", "10-May", "11-May", "12-May", "13-May", "14-May", "15-May", "16-May", "17-May", "18-May", "19-May", "20-May", "21-May", "22-May", "23-May", "24-May", "25-May", "26-May", "27-May", "28-May", "29-May", "30-May", "31-May", "01-Jun", "02-Jun", "03-Jun", "04-Jun", "05-Jun", "06-Jun", "07-Jun", "08-Jun", "09-Jun", "10-Jun", "11-Jun", "12-Jun", "13-Jun", "14-Jun", "15-Jun", "16-Jun", "17-Jun", "18-Jun", "19-Jun", "20-Jun", "21-Jun", "22-Jun", "23-Jun", "24-Jun", "25-Jun", "26-Jun", "27-Jun", "28-Jun", "29-Jun", "30-Jun", "01-Jul", "02-Jul", "03-Jul", "04-Jul", "05-Jul", "06-Jul", "07-Jul", "08-Jul", "09-Jul", "10-Jul", "11-Jul", "12-Jul", "13-Jul", "14-Jul", "15-Jul", "16-Jul", "17-Jul", "18-Jul", "19-Jul", "20-Jul", "21-Jul", "22-Jul", "23-Jul", "24-Jul", "25-Jul", "26-Jul", "27-Jul", "28-Jul", "29-Jul", "30-Jul", "31-Jul", "01-Aug", "02-Aug", "03-Aug", "04-Aug", "05-Aug", "06-Aug", "07-Aug", "08-Aug", "09-Aug", "10-Aug", "11-Aug", "12-Aug", "13-Aug", "14-Aug", "15-Aug", "16-Aug", "17-Aug", "18-Aug", "19-Aug", "20-Aug", "21-Aug", "22-Aug", "23-Aug", "24-Aug", "25-Aug", "26-Aug", "27-Aug", "28-Aug", "29-Aug", "30-Aug", "31-Aug", "01-Sep", "02-Sep", "03-Sep", "04-Sep", "05-Sep", "06-Sep", "07-Sep", "08-Sep", "09-Sep", "10-Sep", "11-Sep", "12-Sep", "13-Sep", "14-Sep", "15-Sep", "16-Sep", "17-Sep", "18-Sep", "19-Sep", "20-Sep", "21-Sep", "22-Sep", "23-Sep", "24-Sep", "25-Sep", "26-Sep", "27-Sep", "28-Sep", "29-Sep", "30-Sep", "01-Oct", "02-Oct", "03-Oct", "04-Oct", "05-Oct", "06-Oct", "07-Oct", "08-Oct", "09-Oct", "10-Oct", "11-Oct", "12-Oct", "13-Oct", "14-Oct", "15-Oct", "16-Oct", "17-Oct", "18-Oct", "19-Oct", "20-Oct", "21-Oct", "22-Oct", "23-Oct", "24-Oct", "25-Oct", "26-Oct", "27-Oct", "28-Oct", "29-Oct", "30-Oct", "31-Oct", "01-Nov", "02-Nov", "03-Nov", "04-Nov", "05-Nov", "06-Nov", "07-Nov", "08-Nov", "09-Nov", "10-Nov", "11-Nov", "12-Nov", "13-Nov", "14-Nov", "15-Nov", "16-Nov", "17-Nov", "18-Nov", "19-Nov", "20-Nov", "21-Nov", "22-Nov", "23-Nov", "24-Nov", "25-Nov", "26-Nov", "27-Nov", "28-Nov", "29-Nov", "30-Nov", "01-Dec", "02-Dec", "03-Dec", "04-Dec", "05-Dec", "06-Dec", "07-Dec", "08-Dec", "09-Dec", "10-Dec", "11-Dec", "12-Dec", "13-Dec", "14-Dec", "15-Dec", "16-Dec", "17-Dec", "18-Dec", "19-Dec", "20-Dec", "21-Dec", "22-Dec", "23-Dec", "24-Dec", "25-Dec", "26-Dec", "27-Dec", "28-Dec", "29-Dec", "30-Dec", "31-Dec" ], "xaxis": "x", "y": [ 11.612154591866133, 11.486077527567309, 11.3178661496579, 11.339304717144193, 11.398774487173347, 11.651535494303307, 11.81385574536069, 12.005598400059123, 11.972213154501384, 11.913246071925379, 11.72363368789659, 11.76333122259372, 11.573663383236282, 11.395382128508311, 11.377643778057285, 11.386737999187487, 11.388825417821419, 11.365516461057828, 11.37755882318064, 11.376019758375799, 11.4837355698716, 11.467976774504645, 11.49239344560015, 11.475263720378654, 11.660046305732678, 11.58030965354126, 11.577614603486014, 11.520042244417224, 11.46568712169517, 11.376666200703024, 11.304159495094641, 11.25490210133822, 11.295291695896712, 11.514277233087292, 11.379892769480769, 11.311289821750478, 11.343852330373977, 11.419034652579082, 11.377869897346576, 11.530513944270094, 11.625767857306155, 11.805923613570407, 11.655055534634602, 11.666895953279294, 11.696128107979598, 11.391041602647013, 10.982729555471419, 10.994839961259466, 11.001248839146372, 10.758836838206852, 10.892440097330782, 11.214880348131867, 11.236131136990938, 11.40524826626382, 11.587254555067485, 11.638974102555116, 11.683363475572957, 11.7229621941774, 11.752890608733114, 11.733602237573383, 11.828425627661739, 11.757340230024486, 11.79125219165093, 11.88543680978661, 11.832107859043905, 11.790189609001146, 11.728967525103098, 11.746491979139563, 11.676852179135668, 11.679332438544094, 11.70017632724766, 11.435146958702873, 11.478388552779332, 11.478621804026286, 11.49903461425853, 11.783857732862797, 11.75260419126135, 11.74730035172025, 11.655091383389559, 11.528106479206178, 11.457325032598515, 11.322545372211488, 11.307917039847911, 11.352382533046358, 11.428937903705439, 11.629335146558152, 11.708221827044039, 11.607939434397323, 11.689562614449352, 11.659286699791764, 11.67545444971339, 11.552320398492672, 11.659142328203774, 11.65372973574853, 11.669557246775767, 11.817897612537257, 11.821406958363742, 11.909653418417037, 11.83565940012112, 11.905185775710347, 11.815221565188157, 11.612921921661783, 11.51391759709367, 11.494593423055154, 11.533135391380796, 11.594186181289674, 11.754952537729315, 11.707579043407074, 11.664245032726754, 11.651841601870563, 11.674652735728422, 11.744818176011488, 11.840943879378182, 11.730894529171568, 11.605541732103788, 11.673652607930965, 11.74652701665988, 11.83070054910846, 11.808125683578883, 11.480220864541186, 11.31764828225901, 11.299787346304354, 11.422085269176524, 11.679030941228664, 11.81727073344328, 11.92860354642092, 11.965458855279865, 11.915992954199156, 11.91513141648026, 11.93104065641008, 11.896632079381545, 11.847693699515293, 11.8555306372247, 11.79618881441165, 11.76096066358601, 11.771256984946495, 11.798972263364055, 11.776836304888011, 11.76325652680136, 11.780772866165687, 11.759277623786035, 11.556066809775114, 11.426152893528108, 11.366493014376209, 11.49112460609459, 11.663185708467855, 11.865772094991033, 12.005228962732879, 12.063134515290123, 12.074159907543006, 12.014183626665435, 11.89856745103836, 11.879845868778219, 11.835656484870249, 11.744449685255766, 11.65711935876379, 11.687489586499733, 11.724159078991965, 11.779216581955296, 11.891284402353447, 11.90056538166829, 11.894752596353456, 11.855944772542758, 11.864354385077307, 11.818937199357682, 11.738568907986567, 11.744198622426676, 11.725107798044498, 11.628017996441255, 11.516735811461563, 11.49171706217486, 11.554394115861147, 11.717134706580962, 11.927359085278985, 12.044155272816777, 12.05765301599036, 12.070341357687605, 12.083881180708389, 12.023049397754743, 11.987393600423829, 11.985942493902337, 11.991809398344989, 11.986583818766775, 11.938018926632864, 11.929805494998984, 11.829917492268303, 11.786304028956053, 11.834224080623574, 11.852526154956873, 11.917295692178731, 11.915619578154974, 11.912408356872557, 11.897293232477669, 11.696165471241045, 11.41623256827284, 11.341581774026633, 11.246517453839598, 11.319742073407177, 11.464278030323287, 11.737350200592378, 11.832417883219453, 11.938666186834794, 11.924313484182806, 11.9744629760016, 11.965522262050161, 11.991962196257951, 12.059673025218896, 12.108383172411047, 12.118890617506418, 12.178442198777173, 12.18718808548314, 12.174505448098596, 12.082860223620802, 11.976225847906207, 11.863843985345948, 11.813287651659419, 11.77862081547968, 11.81315428868422, 11.914929395802417, 12.014560532934052, 12.144765852456224, 12.115660369071751, 12.014390078395268, 11.998564104413608, 12.016587806724917, 12.040280035891566, 12.018626962280432, 11.9510954872756, 11.876150813301349, 11.77582579059911, 11.79123168973107, 11.85733862804671, 11.666344249629201, 11.613646948943465, 11.636967810851967, 11.70748308733205, 11.837219747738342, 11.990272375948049, 12.060835040219004, 11.779553101464701, 11.380646217394613, 11.144801105145103, 11.30484450649788, 11.413758156693188, 11.592122014913802, 11.886206064001808, 11.982673040123956, 12.043034277819482, 12.012238410203029, 12.001381572954076, 11.925242962373897, 11.845232350200735, 11.701743618291438, 11.506966347811067, 11.464548077105087, 10.977669428037263, 10.516424271375477, 10.366992576675532, 10.433271517681797, 10.731866902444557, 11.369723956166009, 11.667567161359937, 11.61543165768558, 11.62510888275076, 11.404321482139856, 11.33742450553711, 11.49499395638656, 11.46592594373325, 11.455894612823496, 11.460813484608824, 11.690029627889661, 11.536002141278386, 11.573878254555359, 11.746676172258244, 11.937757257117823, 11.926716714930453, 12.007255228027095, 11.967401667841894, 11.892114757991786, 11.669801260533674, 11.441696074460296, 11.254392772797376, 11.257026984114743, 11.36235268910524, 11.596990990287878, 11.642078125322591, 11.517431118147973, 11.5229646577606, 11.495497706586685, 11.279305249936337, 11.29776224161473, 11.35323987224161, 11.385573377700492, 11.53588496044126, 11.868165181038322, 11.756596603655728, 11.673901046565835, 11.561174087746233, 11.420830919063558, 11.376310241766932, 11.622926321272123, 11.429800219083493, 11.263978113064407, 11.11049600303271, 11.092659879500609, 10.93857660271162, 10.805760725602557, 10.780518696474505, 10.863427228384298, 10.827115342968254, 11.100426195673489, 11.30004158074066, 11.359584599338293, 11.33596202031886, 11.468305739596122, 11.624834757890866, 11.577830996782197, 11.34437921266566, 11.307430454003669, 11.312274158877543, 11.430287421706666, 11.610110848590242, 11.576347227063653, 11.459999992692962, 11.435036027693393, 11.4766061649226, 11.696234191752783, 11.774101460172837, 11.873348195965715, 11.918656785840353, 11.920235039334736, 11.882207380369033, 11.787946535240073, 11.750997938171942, 11.745858152622942, 11.848586537415597, 11.882240004204471, 11.77128886828769, 11.887260743403619, 11.926028194798388, 11.839238909844164, 11.85095148703319, 11.937509389524523, 11.883189242515428, 11.881762089984054, 11.868824244310591, 11.79407728834261, 11.681698609921318, 11.679973581373398, 11.758255555356135, 11.676383161444708, 11.602800903161782, 11.751858426458481, 11.74487931339863, 11.47085980970584, 11.220447052067927, 11.129639521596435, 11.097948448306308, 11.111578654584019, 11.16815879871133, 11.25763879929495, 11.644396667418565, 11.844953317934394, 11.763276336565363, 11.774643606899588 ], "yaxis": "y" }, { "fillpattern": { "shape": "" }, "hovertemplate": "variable=Range 2017-2023
Date=%{x}
value=%{y}", "legendgroup": "Range 2017-2023", "line": { "color": "lightblue" }, "marker": { "symbol": "circle" }, "mode": "lines", "name": "Range 2017-2023", "orientation": "v", "showlegend": true, "stackgroup": "1", "type": "scatter", "x": [ "01-Jan", "02-Jan", "03-Jan", "04-Jan", "05-Jan", "06-Jan", "07-Jan", "08-Jan", "09-Jan", "10-Jan", "11-Jan", "12-Jan", "13-Jan", "14-Jan", "15-Jan", "16-Jan", "17-Jan", "18-Jan", "19-Jan", "20-Jan", "21-Jan", "22-Jan", "23-Jan", "24-Jan", "25-Jan", "26-Jan", "27-Jan", "28-Jan", "29-Jan", "30-Jan", "31-Jan", "01-Feb", "02-Feb", "03-Feb", "04-Feb", "05-Feb", "06-Feb", "07-Feb", "08-Feb", "09-Feb", "10-Feb", "11-Feb", "12-Feb", "13-Feb", "14-Feb", "15-Feb", "16-Feb", "17-Feb", "18-Feb", "19-Feb", "20-Feb", "21-Feb", "22-Feb", "23-Feb", "24-Feb", "25-Feb", "26-Feb", "27-Feb", "28-Feb", "01-Mar", "02-Mar", "03-Mar", "04-Mar", "05-Mar", "06-Mar", "07-Mar", "08-Mar", "09-Mar", "10-Mar", "11-Mar", "12-Mar", "13-Mar", "14-Mar", "15-Mar", "16-Mar", "17-Mar", "18-Mar", "19-Mar", "20-Mar", "21-Mar", "22-Mar", "23-Mar", "24-Mar", "25-Mar", "26-Mar", "27-Mar", "28-Mar", "29-Mar", "30-Mar", "31-Mar", "01-Apr", "02-Apr", "03-Apr", "04-Apr", "05-Apr", "06-Apr", "07-Apr", "08-Apr", "09-Apr", "10-Apr", "11-Apr", "12-Apr", "13-Apr", "14-Apr", "15-Apr", "16-Apr", "17-Apr", "18-Apr", "19-Apr", "20-Apr", "21-Apr", "22-Apr", "23-Apr", "24-Apr", "25-Apr", "26-Apr", "27-Apr", "28-Apr", "29-Apr", "30-Apr", "01-May", "02-May", "03-May", "04-May", "05-May", "06-May", "07-May", "08-May", "09-May", "10-May", "11-May", "12-May", "13-May", "14-May", "15-May", "16-May", "17-May", "18-May", "19-May", "20-May", "21-May", "22-May", "23-May", "24-May", "25-May", "26-May", "27-May", "28-May", "29-May", "30-May", "31-May", "01-Jun", "02-Jun", "03-Jun", "04-Jun", "05-Jun", "06-Jun", "07-Jun", "08-Jun", "09-Jun", "10-Jun", "11-Jun", "12-Jun", "13-Jun", "14-Jun", "15-Jun", "16-Jun", "17-Jun", "18-Jun", "19-Jun", "20-Jun", "21-Jun", "22-Jun", "23-Jun", "24-Jun", "25-Jun", "26-Jun", "27-Jun", "28-Jun", "29-Jun", "30-Jun", "01-Jul", "02-Jul", "03-Jul", "04-Jul", "05-Jul", "06-Jul", "07-Jul", "08-Jul", "09-Jul", "10-Jul", "11-Jul", "12-Jul", "13-Jul", "14-Jul", "15-Jul", "16-Jul", "17-Jul", "18-Jul", "19-Jul", "20-Jul", "21-Jul", "22-Jul", "23-Jul", "24-Jul", "25-Jul", "26-Jul", "27-Jul", "28-Jul", "29-Jul", "30-Jul", "31-Jul", "01-Aug", "02-Aug", "03-Aug", "04-Aug", "05-Aug", "06-Aug", "07-Aug", "08-Aug", "09-Aug", "10-Aug", "11-Aug", "12-Aug", "13-Aug", "14-Aug", "15-Aug", "16-Aug", "17-Aug", "18-Aug", "19-Aug", "20-Aug", "21-Aug", "22-Aug", "23-Aug", "24-Aug", "25-Aug", "26-Aug", "27-Aug", "28-Aug", "29-Aug", "30-Aug", "31-Aug", "01-Sep", "02-Sep", "03-Sep", "04-Sep", "05-Sep", "06-Sep", "07-Sep", "08-Sep", "09-Sep", "10-Sep", "11-Sep", "12-Sep", "13-Sep", "14-Sep", "15-Sep", "16-Sep", "17-Sep", "18-Sep", "19-Sep", "20-Sep", "21-Sep", "22-Sep", "23-Sep", "24-Sep", "25-Sep", "26-Sep", "27-Sep", "28-Sep", "29-Sep", "30-Sep", "01-Oct", "02-Oct", "03-Oct", "04-Oct", "05-Oct", "06-Oct", "07-Oct", "08-Oct", "09-Oct", "10-Oct", "11-Oct", "12-Oct", "13-Oct", "14-Oct", "15-Oct", "16-Oct", "17-Oct", "18-Oct", "19-Oct", "20-Oct", "21-Oct", "22-Oct", "23-Oct", "24-Oct", "25-Oct", "26-Oct", "27-Oct", "28-Oct", "29-Oct", "30-Oct", "31-Oct", "01-Nov", "02-Nov", "03-Nov", "04-Nov", "05-Nov", "06-Nov", "07-Nov", "08-Nov", "09-Nov", "10-Nov", "11-Nov", "12-Nov", "13-Nov", "14-Nov", "15-Nov", "16-Nov", "17-Nov", "18-Nov", "19-Nov", "20-Nov", "21-Nov", "22-Nov", "23-Nov", "24-Nov", "25-Nov", "26-Nov", "27-Nov", "28-Nov", "29-Nov", "30-Nov", "01-Dec", "02-Dec", "03-Dec", "04-Dec", "05-Dec", "06-Dec", "07-Dec", "08-Dec", "09-Dec", "10-Dec", "11-Dec", "12-Dec", "13-Dec", "14-Dec", "15-Dec", "16-Dec", "17-Dec", "18-Dec", "19-Dec", "20-Dec", "21-Dec", "22-Dec", "23-Dec", "24-Dec", "25-Dec", "26-Dec", "27-Dec", "28-Dec", "29-Dec", "30-Dec", "31-Dec" ], "xaxis": "x", "y": [ 1.5863583638030008, 1.5272770092918346, 1.6244380037232364, 1.5926417286903707, 1.5949754461321675, 1.336469746359688, 0.9888917379716027, 0.6410693544322967, 0.7846839411008713, 0.8884503775969659, 1.0635002706943428, 0.8961550115379051, 1.0412455679787431, 1.2912486718476544, 1.278974532499797, 1.126274088346845, 1.0915117264917793, 1.161763252522194, 1.201794486367758, 1.2240977107389774, 1.1990950290818478, 1.2996723555595207, 1.1982314752560868, 1.094966407974523, 0.9719501701656608, 1.0631271677102347, 1.0482535034653466, 1.0477815924585254, 0.9832786513057403, 1.0405977742695125, 1.0739352116924739, 1.1083920724005125, 1.2438869356893907, 1.162501082699178, 1.428929011802719, 1.5074817686882174, 1.4758503197115722, 1.3792530985205858, 1.3695576596932941, 1.0877624508327859, 0.9693797110391991, 0.7171189909252824, 0.7302171393624537, 0.7577280274547284, 0.8063932719270159, 1.0027753078739519, 1.4483794646303476, 1.6254688482071007, 1.6084951542915178, 1.8691222979286906, 1.8651476754704532, 1.529039633531747, 1.3163473409340014, 1.1135938943801715, 0.9066186917788297, 0.86988888095512, 0.904158505128482, 0.9634748243173625, 1.0019606347133436, 1.0530183395529633, 0.9393418949812098, 0.8613893708594595, 0.718749075094097, 0.592889385456127, 0.6752393276960689, 0.6782916524170286, 0.7462036394520037, 0.7631213575758835, 0.9044270823254017, 0.9696245848078515, 1.0143380837206024, 1.2786063895331026, 1.199896046922424, 1.1384099608335632, 1.1609929317088419, 0.8290357549906169, 0.9251258743701776, 0.9100950694458838, 1.0137582898975808, 1.0734179794345131, 1.1381440652078627, 1.196285890886994, 1.2310836627142034, 1.2417601112035808, 1.2904332017797095, 1.1916799120468156, 1.2510268533988338, 1.409918194414697, 1.2389183818447034, 1.2284481240841814, 1.192188780063253, 1.3133566113262152, 1.181676057058004, 1.237791632052577, 1.218111606005797, 0.9499116935285503, 0.855787348782254, 0.7756067988140245, 0.8583229428460655, 0.8056753080543828, 1.0015956175961307, 1.2428836552941434, 1.3488170317048649, 1.330407337865239, 1.2922658105160458, 1.2705116291915246, 1.1777119935604734, 1.268850032080488, 1.3192640112526046, 1.3306282902809556, 1.3032763075196652, 1.1582410120627404, 0.9563747733464396, 1.0113494352214474, 1.1163590193111492, 1.004931144134627, 0.9422843346914949, 0.9188974935777612, 0.8540137010942193, 1.034755384350385, 1.1100954406153374, 1.0746496118732676, 0.9499203403008494, 0.7593254419205433, 0.7062266286095351, 0.6323787656512909, 0.5856076796857543, 0.6280912105642731, 0.6947737096803142, 0.7725561568155914, 0.8609816081757931, 0.9469840784804742, 0.9010059967931312, 1.0053642236679678, 1.1419407158563253, 1.1484272677549772, 1.1133630999791375, 1.0859620333492188, 1.0227919978067348, 0.9249076936483789, 0.9139152816536402, 1.0632968796348266, 1.263014397817054, 1.2990908990798715, 1.1348881627135228, 0.8369854651454318, 0.5373595447768835, 0.4211745231201931, 0.412586110760115, 0.46026630362279874, 0.6184188584455583, 0.8723664883692717, 0.8803237978946221, 0.989371981943238, 1.0836061678690037, 1.1644408147222247, 1.1045749160512095, 1.074457531050994, 0.9854825020833111, 0.833588412301216, 0.8782661172791411, 0.8737165148415009, 0.8684498558129281, 0.8607602135098968, 0.9742960866086552, 1.0700525786347868, 1.0657900891554508, 1.1007462479097434, 1.153414881952278, 1.234458814341755, 1.2365083925529348, 1.1499101120785031, 0.918967474906049, 0.678693857679713, 0.5303123447622315, 0.4477325342019025, 0.4560136268585424, 0.5403359917901831, 0.66997492941384, 0.797479204814028, 0.8926986972641711, 0.9342083633632718, 0.9410130003792396, 1.0290856710608498, 1.041771431868293, 1.1588593080032155, 1.2325349519878195, 1.2319460722515192, 1.1888759612549489, 1.1328632510754097, 1.107966145927282, 1.0622898347566725, 1.0221667382727517, 1.227078207215424, 1.463834308053121, 1.5620222721572858, 1.6654170475405135, 1.6108425995916882, 1.5131444063462176, 1.2891427511289226, 1.1537669841660971, 1.0269833128014945, 1.0138992425898525, 0.8649848352289471, 0.8220413066276322, 0.8101061794115267, 0.6680945839618726, 0.5689222575213027, 0.5155880506219379, 0.4404832763305766, 0.3953794480795896, 0.3920538786228551, 0.48411476992083635, 0.595701289444154, 0.7343044490733845, 0.7986347376324421, 0.8718644008577687, 0.8344605637040416, 0.7100626143804529, 0.5839756539822858, 0.4643855873519698, 0.49824722620279793, 0.5870524817365137, 0.6350394469111702, 0.6541512990545915, 0.6930307646550382, 0.7722504046221115, 0.8749915337950451, 1.0068858799335363, 1.1966779677327182, 1.252189598652258, 1.2931242201357467, 1.571810317490339, 1.5846867401418976, 1.5368586144949887, 1.3376267300180356, 0.8993922920096526, 0.4749128602502175, 0.3146620354448917, 0.6433785714721036, 1.0403944309719293, 1.240232978871365, 1.0592586413340666, 0.9592352382682403, 0.7900505448372996, 0.47763501677732023, 0.42582895579419855, 0.38100600893117154, 0.43839735378051614, 0.46638636529869437, 0.5179615888727955, 0.6871667134253485, 0.8441588562447162, 0.9567631081145898, 0.9985228224029701, 1.5149598440815986, 1.954629934766606, 1.9548791136206631, 2.111173828121453, 1.9407163481855179, 1.3543894485548265, 0.9504003564400509, 0.9990341362075998, 0.9946692945149369, 1.1313149234972038, 1.166862360248059, 0.9627292006171668, 1.0174287319601873, 1.018306637622766, 1.0820049628431434, 0.8366690404589825, 1.0089228667172634, 0.9763626272373251, 0.7864018590911783, 0.5674339077982875, 0.5858519237612114, 0.45883516718815187, 0.5197275494131315, 0.6327450977368176, 0.8318816691902509, 1.0333900603360568, 1.091580401094804, 1.034821205672742, 1.0443864777339584, 0.8586220292206086, 0.8184255313545954, 0.9104482860410599, 0.9328899729258868, 0.9102910905321071, 1.044819379439227, 0.9878898568678647, 0.9326836005314281, 0.8899390600848314, 0.8157830821443834, 0.5387907759107406, 0.6763405364670643, 0.7882572991307377, 0.9310405951518916, 1.0849003391224876, 1.0672759342127485, 0.8633336516845258, 1.0645426398238662, 1.244217817421525, 1.392160623060251, 1.4492692048309692, 1.6590785379693873, 1.9413027848895013, 1.9619154474819709, 1.8536505047100444, 1.9533161248508275, 1.6574045004105926, 1.442833102392349, 1.380142978735849, 1.3586880678364874, 1.168311391487613, 0.9910255200656017, 0.9888358919364144, 1.1583611750705387, 1.177955885182186, 1.1331786463451046, 1.0052979865376024, 0.8594807766206429, 0.8922703304407431, 1.0511945677535106, 1.122509250232902, 1.0727112146835882, 0.8333390036335739, 0.8192755646633962, 0.7311871943962096, 0.7372290209656427, 0.7924181476266163, 0.8855489525356681, 0.9317635998613323, 0.8847925421988343, 0.7280752220953239, 0.5101892048943082, 0.508433299109786, 0.6568499111343336, 0.5439479773977354, 0.5128256090893082, 0.656098461143003, 0.6401033237899565, 0.4399570232132817, 0.3727960685709011, 0.3850457042885864, 0.46641277290211214, 0.5644447954784173, 0.9031453762362514, 0.9463622534139144, 0.8892405210612484, 1.0179780622131513, 1.0927721666170456, 1.020092974730444, 1.0287491897529932, 1.3332487722625626, 1.532971299776472, 1.5507310007788355, 1.4627205263917933, 1.4690235803081215, 1.408394426645069, 1.3436406312447726, 1.0268927608774465, 0.8818853807561826, 1.0237603563042565, 1.0351019370569396 ], "yaxis": "y" }, { "line": { "color": "blue" }, "mode": "lines", "name": "Average 2017-2023", "type": "scatter", "x": [ "01-Jan", "02-Jan", "03-Jan", "04-Jan", "05-Jan", "06-Jan", "07-Jan", "08-Jan", "09-Jan", "10-Jan", "11-Jan", "12-Jan", "13-Jan", "14-Jan", "15-Jan", "16-Jan", "17-Jan", "18-Jan", "19-Jan", "20-Jan", "21-Jan", "22-Jan", "23-Jan", "24-Jan", "25-Jan", "26-Jan", "27-Jan", "28-Jan", "29-Jan", "30-Jan", "31-Jan", "01-Feb", "02-Feb", "03-Feb", "04-Feb", "05-Feb", "06-Feb", "07-Feb", "08-Feb", "09-Feb", "10-Feb", "11-Feb", "12-Feb", "13-Feb", "14-Feb", "15-Feb", "16-Feb", "17-Feb", "18-Feb", "19-Feb", "20-Feb", "21-Feb", "22-Feb", "23-Feb", "24-Feb", "25-Feb", "26-Feb", "27-Feb", "28-Feb", "01-Mar", "02-Mar", "03-Mar", "04-Mar", "05-Mar", "06-Mar", "07-Mar", "08-Mar", "09-Mar", "10-Mar", "11-Mar", "12-Mar", "13-Mar", "14-Mar", "15-Mar", "16-Mar", "17-Mar", "18-Mar", "19-Mar", "20-Mar", "21-Mar", "22-Mar", "23-Mar", "24-Mar", "25-Mar", "26-Mar", "27-Mar", "28-Mar", "29-Mar", "30-Mar", "31-Mar", "01-Apr", "02-Apr", "03-Apr", "04-Apr", "05-Apr", "06-Apr", "07-Apr", "08-Apr", "09-Apr", "10-Apr", "11-Apr", "12-Apr", "13-Apr", "14-Apr", "15-Apr", "16-Apr", "17-Apr", "18-Apr", "19-Apr", "20-Apr", "21-Apr", "22-Apr", "23-Apr", "24-Apr", "25-Apr", "26-Apr", "27-Apr", "28-Apr", "29-Apr", "30-Apr", "01-May", "02-May", "03-May", "04-May", "05-May", "06-May", "07-May", "08-May", "09-May", "10-May", "11-May", "12-May", "13-May", "14-May", "15-May", "16-May", "17-May", "18-May", "19-May", "20-May", "21-May", "22-May", "23-May", "24-May", "25-May", "26-May", "27-May", "28-May", "29-May", "30-May", "31-May", "01-Jun", "02-Jun", "03-Jun", "04-Jun", "05-Jun", "06-Jun", "07-Jun", "08-Jun", "09-Jun", "10-Jun", "11-Jun", "12-Jun", "13-Jun", "14-Jun", "15-Jun", "16-Jun", "17-Jun", "18-Jun", "19-Jun", "20-Jun", "21-Jun", "22-Jun", "23-Jun", "24-Jun", "25-Jun", "26-Jun", "27-Jun", "28-Jun", "29-Jun", "30-Jun", "01-Jul", "02-Jul", "03-Jul", "04-Jul", "05-Jul", "06-Jul", "07-Jul", "08-Jul", "09-Jul", "10-Jul", "11-Jul", "12-Jul", "13-Jul", "14-Jul", "15-Jul", "16-Jul", "17-Jul", "18-Jul", "19-Jul", "20-Jul", "21-Jul", "22-Jul", "23-Jul", "24-Jul", "25-Jul", "26-Jul", "27-Jul", "28-Jul", "29-Jul", "30-Jul", "31-Jul", "01-Aug", "02-Aug", "03-Aug", "04-Aug", "05-Aug", "06-Aug", "07-Aug", "08-Aug", "09-Aug", "10-Aug", "11-Aug", "12-Aug", "13-Aug", "14-Aug", "15-Aug", "16-Aug", "17-Aug", "18-Aug", "19-Aug", "20-Aug", "21-Aug", "22-Aug", "23-Aug", "24-Aug", "25-Aug", "26-Aug", "27-Aug", "28-Aug", "29-Aug", "30-Aug", "31-Aug", "01-Sep", "02-Sep", "03-Sep", "04-Sep", "05-Sep", "06-Sep", "07-Sep", "08-Sep", "09-Sep", "10-Sep", "11-Sep", "12-Sep", "13-Sep", "14-Sep", "15-Sep", "16-Sep", "17-Sep", "18-Sep", "19-Sep", "20-Sep", "21-Sep", "22-Sep", "23-Sep", "24-Sep", "25-Sep", "26-Sep", "27-Sep", "28-Sep", "29-Sep", "30-Sep", "01-Oct", "02-Oct", "03-Oct", "04-Oct", "05-Oct", "06-Oct", "07-Oct", "08-Oct", "09-Oct", "10-Oct", "11-Oct", "12-Oct", "13-Oct", "14-Oct", "15-Oct", "16-Oct", "17-Oct", "18-Oct", "19-Oct", "20-Oct", "21-Oct", "22-Oct", "23-Oct", "24-Oct", "25-Oct", "26-Oct", "27-Oct", "28-Oct", "29-Oct", "30-Oct", "31-Oct", "01-Nov", "02-Nov", "03-Nov", "04-Nov", "05-Nov", "06-Nov", "07-Nov", "08-Nov", "09-Nov", "10-Nov", "11-Nov", "12-Nov", "13-Nov", "14-Nov", "15-Nov", "16-Nov", "17-Nov", "18-Nov", "19-Nov", "20-Nov", "21-Nov", "22-Nov", "23-Nov", "24-Nov", "25-Nov", "26-Nov", "27-Nov", "28-Nov", "29-Nov", "30-Nov", "01-Dec", "02-Dec", "03-Dec", "04-Dec", "05-Dec", "06-Dec", "07-Dec", "08-Dec", "09-Dec", "10-Dec", "11-Dec", "12-Dec", "13-Dec", "14-Dec", "15-Dec", "16-Dec", "17-Dec", "18-Dec", "19-Dec", "20-Dec", "21-Dec", "22-Dec", "23-Dec", "24-Dec", "25-Dec", "26-Dec", "27-Dec", "28-Dec", "29-Dec", "30-Dec", "31-Dec" ], "y": [ 12.283232483966023, 12.187429238698787, 12.07916078423793, 12.087104632539152, 12.120846775734478, 12.189362585210912, 12.248803356453001, 12.316670765738115, 12.31708644321811, 12.27660400353784, 12.186665289382875, 12.143265289986124, 12.081574625054817, 12.022206473416748, 12.000624940718344, 11.98188448780599, 11.957088215466316, 12.025182409897068, 12.082338931591071, 12.057299107004553, 12.115352625947768, 12.138115995091853, 12.088720406731342, 12.054778757144376, 12.04624205375312, 11.988393722753417, 12.00207153303038, 11.985785828787417, 11.912713224753583, 11.918345688666905, 11.944882586676261, 11.892315290240465, 11.91064358157304, 11.978285972994072, 11.980434643491526, 11.980497210436125, 12.03993219814281, 12.067651780717023, 12.055280793148166, 12.041740586603327, 12.049297113991669, 12.068778175875767, 12.042587203814616, 12.008015490432241, 11.989224106014177, 11.940519511957737, 11.881451738282815, 11.923147053578152, 11.9509043844896, 11.947181597191948, 11.986568592437182, 11.997150117632756, 11.945722037474908, 11.999230739595491, 12.062227738367634, 12.100302626863767, 12.139650042617465, 12.173591786978463, 12.176478068693239, 12.190093328197461, 12.208838685158444, 12.20533775799606, 12.175022579078464, 12.159335112314258, 12.121592347007574, 12.108130358271747, 12.140188349774073, 12.146365984853805, 12.164112137385922, 12.178961337360994, 12.139603089545085, 12.071004339061002, 12.093678126706747, 12.103144720129, 12.125672437801356, 12.186100900868885, 12.211975763255934, 12.152661561726665, 12.091410903035264, 12.024039275403128, 11.962259160751556, 11.944281526019779, 11.971168653867384, 12.004129831331598, 12.051357737087727, 12.089402648354431, 12.114937130349336, 12.096796084757717, 12.080234161304483, 12.071421830948434, 12.055472192220275, 12.068128711286933, 12.109847175085502, 12.156867226973047, 12.15631691898491, 12.183842550141636, 12.179949077787972, 12.17646077938865, 12.181330164288584, 12.20783811567014, 12.192147223294231, 12.181473940055074, 12.164232621035667, 12.12826714072053, 12.10428029796572, 12.114089574022392, 12.147198135496376, 12.16893790486848, 12.162387216972888, 12.199772322778141, 12.212906651640441, 12.194319313032745, 12.158091584467659, 12.134923185588557, 12.104481651902393, 12.118229281495205, 12.184274847242355, 12.236718971541142, 12.233515509323254, 12.138784583484139, 12.056912455220163, 12.002076851399494, 11.998380410139843, 12.057388589936, 12.162046975671526, 12.239977565117822, 12.263564698311644, 12.26608132034232, 12.26635653421555, 12.256870644790391, 12.26787382899393, 12.253365946783996, 12.24437398782204, 12.240723232681486, 12.251512563406127, 12.239039176937911, 12.237042033235795, 12.213437994200108, 12.194194335332401, 12.161489441974803, 12.112835305292224, 12.053861685783385, 12.019777846211005, 11.998674277593425, 12.037360377771702, 12.08104364632419, 12.139649782822321, 12.2255512267209, 12.276020414186869, 12.284358077268935, 12.302233979437423, 12.308531697422298, 12.283495108167946, 12.267830340336237, 12.219269880771842, 12.176582130079911, 12.155397557025054, 12.135432012329485, 12.108285709079839, 12.123512349910417, 12.144285516708672, 12.128519571359407, 12.121488915981937, 12.113780102513344, 12.112892396292228, 12.102473145273517, 12.129500837941878, 12.11364087840907, 12.117280481765789, 12.115313218256004, 12.125274105835455, 12.111769626260516, 12.12819186851153, 12.160376853548149, 12.19297677097891, 12.184471751874224, 12.219124868644792, 12.266641119173713, 12.303754571510526, 12.318153067378205, 12.349583879100676, 12.377923475056889, 12.395259941377708, 12.378373472060153, 12.369684480067546, 12.343848096670696, 12.305436234782064, 12.288605844858617, 12.277594822790375, 12.265738713579024, 12.277874919497455, 12.276420747183959, 12.250237015532232, 12.222403094055112, 12.202426952150502, 12.209013972482774, 12.20698913638539, 12.219825977046812, 12.263177502947048, 12.306897566505807, 12.293027284252991, 12.298943542808962, 12.312900830884558, 12.317852589775375, 12.301389871096626, 12.3199339414643, 12.340062336021674, 12.347670714453482, 12.349549237643402, 12.349980496326694, 12.34795391346262, 12.33147487732377, 12.323698542246985, 12.325667940426722, 12.327966989152118, 12.312566925178777, 12.32372938098133, 12.340365775105989, 12.33433718568352, 12.33649120459428, 12.363679841301689, 12.341036218639493, 12.312362289666995, 12.30355757915893, 12.295570263216547, 12.279807792729628, 12.295788885105935, 12.285655229850486, 12.27172046901177, 12.272603835274888, 12.274058130026962, 12.27543823446244, 12.287709577225716, 12.289356046356362, 12.305528016305374, 12.319190185173143, 12.307156373902277, 12.261084028295496, 12.232857075970383, 12.161465744914693, 12.050833565092018, 11.96570938851582, 11.962511060931076, 11.967216808934852, 12.007798152989341, 12.09705290108709, 12.182750782277475, 12.21404430354903, 12.221060761869454, 12.217987009543862, 12.2043493267213, 12.187242699987845, 12.163212005447091, 12.125895351206793, 12.094331210805482, 12.018988614762021, 11.925789653384767, 11.875087998898357, 11.879520888803137, 11.923313287443676, 12.02697932644918, 12.106037370841914, 12.16276140131331, 12.185097818546323, 12.13949699611796, 12.06598796837198, 12.05966413583045, 12.07476874416459, 12.087724782976228, 12.106544354163962, 12.13959196026276, 12.119372443966284, 12.122198943703351, 12.156696664764265, 12.191557229909865, 12.225868970051934, 12.255571124165215, 12.229585245521845, 12.183299472357815, 12.147709522895465, 12.084356936151298, 12.038035811777231, 12.010310753441855, 12.019542630281034, 12.040937026511955, 12.103490673594107, 12.160311936814978, 12.197981968566443, 12.163519160873701, 12.085121817904465, 12.010100059536772, 11.978096171062804, 11.973728315744538, 12.011698260442389, 12.089263611340408, 12.114901263297245, 12.136017855401283, 12.122255413534068, 12.082829576722158, 12.041787451249606, 12.012714503626322, 11.960427267286784, 11.97808397958366, 11.9624268258549, 11.905917683320544, 11.881751614236915, 11.88953438756222, 11.885249812161844, 11.925986275941684, 12.004141479310217, 12.09436315020206, 12.152664545694227, 12.148918800616567, 12.13197382742487, 12.128439656209519, 12.091066319226673, 11.980825779555087, 11.921316179655292, 11.926104399730276, 11.91742355199129, 11.933917820050368, 12.024812315379801, 12.090964296355049, 12.088364185033404, 12.095811538718001, 12.073716198463787, 12.098934272582552, 12.131847771850413, 12.180025027259719, 12.197623122909302, 12.218554074343883, 12.218033768870043, 12.187902296283287, 12.141969080147945, 12.12542952430786, 12.1316814467715, 12.119765201535175, 12.13221947364403, 12.170253858861427, 12.199978752396357, 12.197168108315944, 12.173408545460134, 12.148053630146189, 12.103345729648547, 12.07707043895878, 12.090091310368958, 12.14568756285316, 12.144141193850146, 12.129395411003966, 12.13866803403718, 12.13790862775407, 12.095855157653721, 12.12435174643049, 12.142668500964021, 12.035596224709142, 11.995260031447042, 11.96371979012115, 11.8983392866153, 11.895176262392749, 11.993291715816497, 12.04361796895522, 12.0826397234469, 12.13487306486887, 12.131001105976335, 12.13598183337542 ] }, { "line": { "color": "yellow" }, "mode": "lines", "name": "Last year", "type": "scatter", "x": [ "01-Jan", "02-Jan", "03-Jan", "04-Jan", "05-Jan", "06-Jan", "07-Jan", "08-Jan", "09-Jan", "10-Jan", "11-Jan", "12-Jan", "13-Jan", "14-Jan", "15-Jan", "16-Jan", "17-Jan", "18-Jan", "19-Jan", "20-Jan", "21-Jan", "22-Jan", "23-Jan", "24-Jan", "25-Jan", "26-Jan", "27-Jan", "28-Jan", "29-Jan", "30-Jan", "31-Jan", "01-Feb", "02-Feb", "03-Feb", "04-Feb", "05-Feb", "06-Feb", "07-Feb", "08-Feb", "09-Feb", "10-Feb", "11-Feb", "12-Feb", "13-Feb", "14-Feb", "15-Feb", "16-Feb", "17-Feb", "18-Feb", "19-Feb", "20-Feb", "21-Feb", "22-Feb", "23-Feb", "24-Feb", "25-Feb", "26-Feb", "27-Feb", "28-Feb", "01-Mar", "02-Mar", "03-Mar", "04-Mar", "05-Mar", "06-Mar", "07-Mar", "08-Mar", "09-Mar", "10-Mar", "11-Mar", "12-Mar", "13-Mar", "14-Mar", "15-Mar", "16-Mar", "17-Mar", "18-Mar", "19-Mar", "20-Mar", "21-Mar", "22-Mar", "23-Mar", "24-Mar", "25-Mar", "26-Mar", "27-Mar", "28-Mar", "29-Mar", "30-Mar", "31-Mar", "01-Apr", "02-Apr", "03-Apr", "04-Apr", "05-Apr", "06-Apr", "07-Apr", "08-Apr", "09-Apr", "10-Apr", "11-Apr", "12-Apr", "13-Apr", "14-Apr", "15-Apr", "16-Apr", "17-Apr", "18-Apr", "19-Apr", "20-Apr", "21-Apr", "22-Apr", "23-Apr", "24-Apr", "25-Apr", "26-Apr", "27-Apr", "28-Apr", "29-Apr", "30-Apr", "01-May", "02-May", "03-May", "04-May", "05-May", "06-May", "07-May", "08-May", "09-May", "10-May", "11-May", "12-May", "13-May", "14-May", "15-May", "16-May", "17-May", "18-May", "19-May", "20-May", "21-May", "22-May", "23-May", "24-May", "25-May", "26-May", "27-May", "28-May", "29-May", "30-May", "31-May", "01-Jun", "02-Jun", "03-Jun", "04-Jun", "05-Jun", "06-Jun", "07-Jun", "08-Jun", "09-Jun", "10-Jun", "11-Jun", "12-Jun", "13-Jun", "14-Jun", "15-Jun", "16-Jun", "17-Jun", "18-Jun", "19-Jun", "20-Jun", "21-Jun", "22-Jun", "23-Jun", "24-Jun", "25-Jun", "26-Jun", "27-Jun", "28-Jun", "29-Jun", "30-Jun", "01-Jul", "02-Jul", "03-Jul", "04-Jul", "05-Jul", "06-Jul", "07-Jul", "08-Jul", "09-Jul", "10-Jul", "11-Jul", "12-Jul", "13-Jul", "14-Jul", "15-Jul", "16-Jul", "17-Jul", "18-Jul", "19-Jul", "20-Jul", "21-Jul", "22-Jul", "23-Jul", "24-Jul", "25-Jul", "26-Jul", "27-Jul", "28-Jul", "29-Jul", "30-Jul", "31-Jul", "01-Aug", "02-Aug", "03-Aug", "04-Aug", "05-Aug", "06-Aug", "07-Aug", "08-Aug", "09-Aug", "10-Aug", "11-Aug", "12-Aug", "13-Aug", "14-Aug", "15-Aug", "16-Aug", "17-Aug", "18-Aug", "19-Aug", "20-Aug", "21-Aug", "22-Aug", "23-Aug", "24-Aug", "25-Aug", "26-Aug", "27-Aug", "28-Aug", "29-Aug", "30-Aug", "31-Aug", "01-Sep", "02-Sep", "03-Sep", "04-Sep", "05-Sep", "06-Sep", "07-Sep", "08-Sep", "09-Sep", "10-Sep", "11-Sep", "12-Sep", "13-Sep", "14-Sep", "15-Sep", "16-Sep", "17-Sep", "18-Sep", "19-Sep", "20-Sep", "21-Sep", "22-Sep", "23-Sep", "24-Sep", "25-Sep", "26-Sep", "27-Sep", "28-Sep", "29-Sep", "30-Sep", "01-Oct", "02-Oct", "03-Oct", "04-Oct", "05-Oct", "06-Oct", "07-Oct", "08-Oct", "09-Oct", "10-Oct", "11-Oct", "12-Oct", "13-Oct", "14-Oct", "15-Oct", "16-Oct", "17-Oct", "18-Oct", "19-Oct", "20-Oct", "21-Oct", "22-Oct", "23-Oct", "24-Oct", "25-Oct", "26-Oct", "27-Oct", "28-Oct", "29-Oct", "30-Oct", "31-Oct", "01-Nov", "02-Nov", "03-Nov", "04-Nov", "05-Nov", "06-Nov", "07-Nov", "08-Nov", "09-Nov", "10-Nov", "11-Nov", "12-Nov", "13-Nov", "14-Nov", "15-Nov", "16-Nov", "17-Nov", "18-Nov", "19-Nov", "20-Nov", "21-Nov", "22-Nov", "23-Nov", "24-Nov", "25-Nov", "26-Nov", "27-Nov", "28-Nov", "29-Nov", "30-Nov", "01-Dec", "02-Dec", "03-Dec", "04-Dec", "05-Dec", "06-Dec", "07-Dec", "08-Dec", "09-Dec", "10-Dec", "11-Dec", "12-Dec", "13-Dec", "14-Dec", "15-Dec", "16-Dec", "17-Dec", "18-Dec", "19-Dec", "20-Dec", "21-Dec", "22-Dec", "23-Dec", "24-Dec", "25-Dec", "26-Dec", "27-Dec", "28-Dec", "29-Dec", "30-Dec", "31-Dec" ], "y": [ 11.990109224617344, 11.806091733070867, 11.65843523919745, 11.77316678816125, 11.728700810741083, 11.651535494303307, 11.81385574536069, 12.005598400059123, 11.972213154501384, 11.990075395329361, 11.970242640646793, 11.841302997552797, 11.573663383236282, 11.395382128508311, 11.377643778057285, 11.386737999187487, 11.476265334038931, 11.701272234095601, 11.865108946130094, 11.923999842526358, 11.962682958188458, 11.918093488382393, 11.885467107957167, 11.900979397449564, 11.755384921713977, 11.58030965354126, 11.577614603486014, 11.520042244417224, 11.46568712169517, 11.56377600251156, 11.784801619590136, 11.794511894953562, 11.861628479484422, 11.79223945929716, 11.755235339166052, 11.67424295118477, 11.712809826623701, 11.787802479460058, 11.91621549884799, 11.95045032967982, 11.93922799821153, 11.823101855846458, 11.655055534634602, 11.666895953279294, 11.699613124036597, 11.865215006056815, 11.961689725917825, 11.977969681179994, 11.941835692034195, 11.969709370444638, 11.914926153718065, 11.99893771339143, 12.123897920047755, 12.150110098287835, 12.141944386576013, 12.179117265082155, 12.211207755390625, 12.283825489548983, 12.327282819485049, 12.357491893359551, 12.312508281004934, 12.175232763726916, 12.080323950630326, 12.107054233036681, 12.118588094325553, 12.198963047179044, 12.35268693734098, 12.383549039273026, 12.351088116110322, 12.36950289499636, 12.342390326186528, 12.314607542238601, 12.333677401420553, 12.297874225337845, 12.300754185830446, 12.216094323180599, 11.964271939557175, 11.77672166904776, 11.655091383389559, 11.528106479206178, 11.509018576503248, 11.668475909338396, 11.754021521061706, 11.854418741970587, 11.890184083724563, 11.83209279565508, 11.846841481797012, 11.98441883033083, 12.100004671461093, 12.05558051565912, 12.109400451731753, 12.124165441356723, 12.03752995480609, 11.846308894636858, 11.773003370133111, 11.817897612537257, 11.821406958363742, 11.909653418417037, 12.090605056460852, 12.194093094210473, 12.113040460198697, 12.069410624978902, 11.964788416187186, 11.925598343119095, 11.930452392924419, 11.840842103986551, 11.754952537729315, 11.796491955537828, 11.727700999928004, 11.74491521242449, 11.840137621026134, 11.963480417595042, 11.853184395904279, 11.732444677154446, 11.727418596705023, 11.827715164418018, 11.879565089129668, 11.88209341203686, 11.808125683578883, 11.480220864541186, 11.31764828225901, 11.299787346304354, 11.422085269176524, 11.679030941228664, 11.979712875522326, 12.062975508202566, 11.965458855279865, 11.915992954199156, 11.91513141648026, 11.93104065641008, 11.896632079381545, 11.847693699515293, 11.8555306372247, 11.79618881441165, 11.76096066358601, 11.771256984946495, 11.798972263364055, 11.776836304888011, 11.76325652680136, 11.780772866165687, 11.844602192226203, 11.955448833318675, 11.987391763101199, 12.000044794460072, 12.062940972279055, 12.108636012788732, 12.139548939435812, 12.173078207302314, 12.294961821131809, 12.377052288642568, 12.391425247723944, 12.380435424427615, 12.384338877102097, 12.240956708817908, 12.128143187945252, 12.037551270066917, 11.973597653490666, 11.928646150778757, 11.997437299286153, 12.01021961759475, 12.014606930133834, 11.997548534416278, 11.974087792077608, 11.893964439050704, 11.818937199357682, 11.738568907986567, 11.744198622426676, 11.725107798044498, 11.743351903465303, 11.829140694532317, 11.935834148555646, 11.975399482060396, 12.103449080740397, 12.189528708557464, 12.204580383276186, 12.18634939794409, 12.213960620956527, 12.155168533134448, 12.132159381742273, 12.104492388815174, 12.09457580238379, 12.094595368281334, 12.149743990940127, 12.199427867124161, 12.220458368116365, 12.265797657358823, 12.170018727480347, 12.12000931428668, 12.102959217333401, 12.14760870429069, 12.15453678509389, 12.308812500846717, 12.426862759118029, 12.448192391910654, 12.435345664364153, 12.459146765332969, 12.39969571347518, 12.278609945015736, 12.196622338115764, 12.179511222356359, 12.137575851392267, 12.128833403694298, 12.192420482524408, 12.270939727584604, 12.279093773029507, 12.299182842851062, 12.370516627429708, 12.369208797447671, 12.374177103514164, 12.361741948536546, 12.397646440074036, 12.402466368530003, 12.415079699270924, 12.430175672110144, 12.491979445648402, 12.473659560258614, 12.445122917361411, 12.419511699235425, 12.36284686217076, 12.270516007082923, 12.26055705714094, 12.195768200844794, 12.181348707680227, 12.158007249776922, 12.229134088973922, 12.218180261027811, 12.286072177298365, 12.275490726572539, 12.334099682339433, 12.346028629107503, 12.39728189858773, 12.390975151146481, 12.42873654472401, 12.424068292483776, 12.397638855352172, 12.390100324252412, 12.419160586767127, 12.465185236198266, 12.375497075663896, 12.262243323214307, 12.06680873697141, 11.935622436351583, 11.877350468803536, 11.96822197878959, 12.07015284946838, 12.252646595126333, 12.408501995918154, 12.424040286750653, 12.450635763983545, 12.46776793825277, 12.443204551246692, 12.408958380474836, 12.430584354057507, 12.387907228561982, 12.357900869708645, 12.288545049852974, 12.141475207216226, 12.039818056559296, 11.98519382910149, 11.924398944387363, 12.0095982615556, 12.10258801011582, 12.196834615167452, 12.285292430609719, 12.389472496094154, 12.315803804360105, 12.352787350849004, 12.359652411933528, 12.368357962110503, 12.386312416432979, 12.526698668348644, 12.54492500799565, 12.550240881792684, 12.533078031349422, 12.505191164916111, 12.46206949306578, 12.460812712264778, 12.487129217255026, 12.524859855728604, 12.491819217979382, 12.41020879367992, 12.339685357738073, 12.274817068051991, 12.169850532000094, 12.11507454038921, 12.184482212917713, 12.182465645340423, 12.054338471402696, 11.95288401338396, 11.954607886902796, 11.91285700498674, 11.962011789963803, 12.048938096115384, 12.15957705883866, 12.202713656148907, 12.186846779460478, 12.178046322416833, 12.207112512956003, 12.210473785177669, 12.20500015247576, 12.190596034037714, 12.167039947337067, 12.21162616451009, 12.057386971332031, 11.715482888184976, 11.50238304902835, 11.424517017571961, 11.339151360978713, 11.505834253513324, 11.840533439885018, 12.113520185478723, 12.210994005261906, 12.20396896623178, 12.19445818148073, 12.184398595517527, 12.125852295606972, 12.006437756184798, 11.965683488712099, 11.955122821999883, 11.972599376884755, 12.049314251156247, 12.213956636944074, 12.34314212303502, 12.383850229475168, 12.35290481536089, 12.263431600710936, 12.242599542712494, 12.209768464847903, 12.197156940248888, 12.241484094490382, 12.282922865666631, 12.233064159118962, 12.179432099357541, 12.132355238127015, 12.111074826376452, 12.076171914831066, 11.997244637078362, 11.993779581446377, 12.009685649342646, 12.010205163257194, 12.027179008071318, 12.144630691357893, 12.198147743607526, 12.077490635550259, 11.939685945443506, 11.868824244310591, 11.79407728834261, 11.681698609921318, 11.679973581373398, 11.758255555356135, 11.676383161444708, 11.602800903161782, 11.77243408142909, 11.976478147530743, 12.086249021464088, 12.29693512820215, 12.466892883112207, 12.421910715598173, 12.406055628594759, 12.40431781279126, 12.334908460547824, 12.205156529059385, 12.081078594119246, 11.891913177127437, 11.774643606899588 ] }, { "line": { "color": "red" }, "mode": "lines", "name": "Current year", "type": "scatter", "x": [ "01-Jan", "02-Jan", "03-Jan", "04-Jan", "05-Jan", "06-Jan", "07-Jan", "08-Jan", "09-Jan", "10-Jan", "11-Jan", "12-Jan", "13-Jan", "14-Jan", "15-Jan", "16-Jan", "17-Jan", "18-Jan", "19-Jan", "20-Jan", "21-Jan", "22-Jan", "23-Jan", "24-Jan", "25-Jan", "26-Jan", "27-Jan", "28-Jan", "29-Jan", "30-Jan", "31-Jan", "01-Feb", "02-Feb", "03-Feb", "04-Feb", "05-Feb", "06-Feb", "07-Feb", "08-Feb", "09-Feb", "10-Feb", "11-Feb", "12-Feb", "13-Feb", "14-Feb", "15-Feb", "16-Feb", "17-Feb", "18-Feb", "19-Feb", "20-Feb", "21-Feb", "22-Feb", "23-Feb", "24-Feb", "25-Feb", "26-Feb", "27-Feb", "28-Feb", "01-Mar", "02-Mar", "03-Mar", "04-Mar", "05-Mar", "06-Mar", "07-Mar", "08-Mar", "09-Mar", "10-Mar", "11-Mar", "12-Mar", "13-Mar", "14-Mar", "15-Mar", "16-Mar", "17-Mar", "18-Mar", "19-Mar", "20-Mar", "21-Mar", "22-Mar", "23-Mar", "24-Mar", "25-Mar", "26-Mar", "27-Mar", "28-Mar", "29-Mar", "30-Mar", "31-Mar", "01-Apr", "02-Apr", "03-Apr", "04-Apr", "05-Apr", "06-Apr", "07-Apr", "08-Apr", "09-Apr", "10-Apr", "11-Apr", "12-Apr", "13-Apr", "14-Apr", "15-Apr", "16-Apr", "17-Apr", "18-Apr", "19-Apr", "20-Apr", "21-Apr", "22-Apr", "23-Apr", "24-Apr", "25-Apr", "26-Apr", "27-Apr", "28-Apr", "29-Apr", "30-Apr", "01-May", "02-May", "03-May", "04-May", "05-May", "06-May", "07-May", "08-May", "09-May", "10-May", "11-May", "12-May", "13-May", "14-May", "15-May", "16-May", "17-May", "18-May", "19-May", "20-May", "21-May", "22-May", "23-May", "24-May", "25-May", "26-May", "27-May", "28-May", "29-May", "30-May", "31-May", "01-Jun", "02-Jun", "03-Jun", "04-Jun", "05-Jun", "06-Jun", "07-Jun", "08-Jun", "09-Jun", "10-Jun", "11-Jun", "12-Jun", "13-Jun", "14-Jun", "15-Jun", "16-Jun", "17-Jun", "18-Jun", "19-Jun", "20-Jun", "21-Jun", "22-Jun", "23-Jun", "24-Jun", "25-Jun", "26-Jun", "27-Jun", "28-Jun", "29-Jun", "30-Jun", "01-Jul", "02-Jul", "03-Jul", "04-Jul", "05-Jul", "06-Jul", "07-Jul", "08-Jul", "09-Jul", "10-Jul", "11-Jul", "12-Jul", "13-Jul", "14-Jul", "15-Jul", "16-Jul", "17-Jul", "18-Jul", "19-Jul", "20-Jul", "21-Jul", "22-Jul", "23-Jul", "24-Jul", "25-Jul", "26-Jul", "27-Jul", "28-Jul", "29-Jul", "30-Jul", "31-Jul", "01-Aug", "02-Aug", "03-Aug", "04-Aug", "05-Aug", "06-Aug", "07-Aug", "08-Aug", "09-Aug", "10-Aug", "11-Aug", "12-Aug", "13-Aug", "14-Aug", "15-Aug", "16-Aug", "17-Aug", "18-Aug", "19-Aug", "20-Aug", "21-Aug", "22-Aug", "23-Aug", "24-Aug", "25-Aug", "26-Aug", "27-Aug", "28-Aug", "29-Aug", "30-Aug", "31-Aug", "01-Sep", "02-Sep", "03-Sep", "04-Sep", "05-Sep", "06-Sep", "07-Sep", "08-Sep", "09-Sep", "10-Sep", "11-Sep", "12-Sep", "13-Sep", "14-Sep", "15-Sep", "16-Sep", "17-Sep", "18-Sep", "19-Sep", "20-Sep", "21-Sep", "22-Sep", "23-Sep", "24-Sep", "25-Sep", "26-Sep", "27-Sep", "28-Sep", "29-Sep", "30-Sep", "01-Oct", "02-Oct", "03-Oct", "04-Oct", "05-Oct", "06-Oct", "07-Oct", "08-Oct", "09-Oct", "10-Oct", "11-Oct", "12-Oct", "13-Oct", "14-Oct", "15-Oct", "16-Oct", "17-Oct", "18-Oct", "19-Oct", "20-Oct", "21-Oct", "22-Oct", "23-Oct", "24-Oct", "25-Oct", "26-Oct", "27-Oct", "28-Oct", "29-Oct", "30-Oct", "31-Oct", "01-Nov", "02-Nov", "03-Nov", "04-Nov", "05-Nov", "06-Nov", "07-Nov", "08-Nov", "09-Nov", "10-Nov", "11-Nov", "12-Nov", "13-Nov", "14-Nov", "15-Nov", "16-Nov", "17-Nov", "18-Nov", "19-Nov", "20-Nov", "21-Nov", "22-Nov", "23-Nov", "24-Nov", "25-Nov", "26-Nov", "27-Nov", "28-Nov", "29-Nov", "30-Nov", "01-Dec", "02-Dec", "03-Dec", "04-Dec", "05-Dec", "06-Dec", "07-Dec", "08-Dec", "09-Dec", "10-Dec", "11-Dec", "12-Dec", "13-Dec", "14-Dec", "15-Dec", "16-Dec", "17-Dec", "18-Dec", "19-Dec", "20-Dec", "21-Dec", "22-Dec", "23-Dec", "24-Dec", "25-Dec", "26-Dec", "27-Dec", "28-Dec", "29-Dec", "30-Dec", "31-Dec" ], "y": [ 11.779540700454206, 11.852194630698001, 11.904621973516885, 12.081365980296408, 12.112694590437531, 12.039637654651735, 11.941752053103908, 11.803136998722293, 11.454758174105196, 11.329877750969805, 11.4244032046683, 11.460691150678146, 11.481675955387303, 11.760699740868308, 11.950818346214703, 11.857214547041105, 11.77805280496609, 11.839762509809832, 11.830546740905415, 11.650394097702286, 11.584986366348861, 11.635858658956181, 11.626415793477822, 11.554621346285428, 11.557155496897154, 11.669620957906654, 11.620928864358225, 11.484400649611647, 11.407387767022787, 11.498893077537954, 11.51587570358631, 11.653582664561288, 11.907707752921459, 12.071501023900618, 12.010328593167023, 11.58285271948784, 11.169059156060001, 11.15385551435221, 11.161022088825444, 11.258509669760034, 11.71344123787274, 12.057479573380824, 11.901621555727877, 11.803281186377259, 11.834366301205169, 11.900211744812017, 11.994343607594146, 12.130010546877969, 12.105415322465058, 12.061177732571394, 11.994541752987411, 11.945519496137235, 11.799487620390897, 11.818542841126217, 11.75201735739196, 11.733414270070625, 11.76211009193387, 11.912840628580184, 12.0067485969351, 12.067423669478895, 12.054880430665179, 12.118228159255208, 12.161253274730614, 12.17817563432106, 12.241103055705068, 12.293428946078793, 12.304833612488057, 12.312017907269448, 12.312038552020685, 12.3474531353318, 12.374979584161762, 12.444255674203353, 12.550040782133589, 12.589436709190437, 12.550515853505548, 12.46663727803977, 12.30942016935094, 12.1047264844082, 12.124914099248262, 12.146978292823288, 12.174562107288663, 12.130278981426702, 12.139879217626099, 11.97547164730447, 11.794557315470815, 11.712785609830487, 11.716385230893973, 11.75302065249917, 11.890364664567596, 12.084581232313038, 12.178872049312684, 12.30392356256985, 12.227282198635637, 12.14866106264943, 12.069461367747852, 12.000589697414759, 11.916137472557384, 11.967682083113933, 11.91850496180243, 11.871596756910005, 11.73645357941616, 11.709611315891042, 11.687518734640843, 11.725352064856937, 11.794846610274385, 11.894521787029294, 11.93801464986229, 12.028952740293796, 12.063297474322699, 12.078632093054823, 12.15998131757767, 12.169439980141302, 12.235727560100484, 12.326257411787818, 12.369129867567384, 12.383451338546713, 12.278013025917351, 12.029530454577708, 11.815329495975197, 11.657459437566175, 11.601436216473312, 11.621007950057285, 11.683935867801944, 11.689504415314172, 11.76297723086741, 11.789817575032691, 11.800256413697847, 11.809573108753614, 11.885786569335107, 11.810625252992835, 11.687104724792686, 11.74374555175754, 11.812468376506981, 11.768783192776866, 11.766370282289664, 11.833399046545875, 11.86041315983462, 11.930836367715424, 11.95824324821721, 12.027742164537912, 12.087507812213612, 12.149248351869241, 12.15853511216949, 12.25685566753368, 12.346042655392967, 12.303780168961007, 12.150448203658213, 12.057548229820442, 11.979128488341562, 11.97756598375506, 12.062673508271823, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" ] } ], "layout": { "legend": { "title": { "text": "variable" }, "tracegroupgap": 0 }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "fillpattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "sequentialminus": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "text": "Seasonal MR2 speed towards Gulf of Mexico (5-day MA)" }, "xaxis": { "anchor": "y", "domain": [ 0, 1 ], "title": { "text": "Date" } }, "yaxis": { "anchor": "x", "domain": [ 0, 1 ], "range": [ 10.3, 13.5 ], "title": { "text": "value" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "seasonal_speed=complete_seasonal_voyages(start_y=2017, start_m=1, start_d=1, \n", " origin=None, origin_excl=None, \n", " destination=gom, destination_excl=None, \n", " prod=cpp, prod_excl=lpg, \n", " vessel_class='oil_mr2', vessel_class_excl=None, \n", " status='ballast', freq='day', unit='avg_speed', operator='avg', \n", " ma_period=5, plot=True, \n", " title='Seasonal MR2 speed towards Gulf of Mexico', \n", " y_min=10.3, y_max=13.5)\n", "\n", "\n", "\n" ] }, { "cell_type": "code", "execution_count": null, "id": "cbac742e", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": null, "id": "c0eec275", "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.8.8" } }, "nbformat": 4, "nbformat_minor": 5 }