{ "cells": [ { "cell_type": "markdown", "id": "3234ffec", "metadata": { "Collapsed": "false" }, "source": [ "(multiple-price-bid-matrix)=\n", "# Bidding under uncertainty\n", "\n", "The model setup is available in the following formats:\n", "\n", "- pyshop\n", " - [multi_price_bid_matrix_model.py](multi-price-bid-matrix-model-py)" ] }, { "cell_type": "markdown", "id": "4a2521ef", "metadata": { "Collapsed": "false" }, "source": [ "In this example we show how to import a spreadsheet containing multiple prices (up to 52 time series) into a dataframe. This price input will be used to create the same amount of scenarios which we in turn feed to SHOP. The output of this multiple price input run from SHOP will result into a joint bid matrix which consider all the stochastic price inputs to SHOP with all its price data intact, ready to make use of in a marked bidding situation with uncertainty regarding the price forecasts." ] }, { "cell_type": "markdown", "id": "6442a7f6", "metadata": { "Collapsed": "false" }, "source": [ "## Imports and settings" ] }, { "cell_type": "markdown", "id": "7794b4a0", "metadata": { "Collapsed": "false" }, "source": [ "The first thing we do is to import the needed packages. You can import whichever packages you like, however we use the following ones for this example:\n", "\n", "* Pandas for structuring our data into dataframes\n", "* Pyshop in order to create a SHOP session\n", "* Plotly as backend for dynamic graph plotting" ] }, { "cell_type": "code", "execution_count": 1, "id": "c6b50bf9", "metadata": { "Collapsed": "false" }, "outputs": [], "source": [ "import pandas as pd\n", "from pyshop import ShopSession\n", "import plotly.express as px\n", "pd.options.plotting.backend = \"plotly\"" ] }, { "cell_type": "markdown", "id": "acfea5c7", "metadata": { "Collapsed": "false" }, "source": [ "Additionally, we import basic SHOP functions and data from a predefined demo dataset, see this section of the documentation:" ] }, { "cell_type": "code", "execution_count": 2, "id": "f0108dec", "metadata": { "Collapsed": "false" }, "outputs": [], "source": [ "from multi_price_bid_matrix_model import build_model, run_model" ] }, { "cell_type": "markdown", "id": "abffb8c6", "metadata": { "Collapsed": "false" }, "source": [ "## Instancing SHOP and building the model" ] }, { "cell_type": "markdown", "id": "7c25085c", "metadata": { "Collapsed": "false" }, "source": [ "In order to have SHOP receive our inputs, run the model we create and give us results, we need to instance a running SHOP session. You may create multiple SHOP sessions simultaneously if needed." ] }, { "cell_type": "code", "execution_count": 3, "id": "d07fc929", "metadata": { "Collapsed": "false" }, "outputs": [], "source": [ "#Create a standard ShopSession\n", "shop = ShopSession()" ] }, { "cell_type": "markdown", "id": "8c358f95", "metadata": { "Collapsed": "false" }, "source": [ "We then build our model using the existing function imported from bp.py" ] }, { "cell_type": "code", "execution_count": 4, "id": "7f6963e7", "metadata": { "Collapsed": "false" }, "outputs": [], "source": [ "#Build a simple model with one plant with two equal generators and a second plant with one large and three small generators \n", "#by calling function \"build_model\" in bp.py\n", "build_model(shop)" ] }, { "cell_type": "markdown", "id": "b4d6c947", "metadata": { "Collapsed": "false" }, "source": [ "The imported model can now be visualized:" ] }, { "cell_type": "code", "execution_count": 5, "id": "eb3445f0", "metadata": { "Collapsed": "false" }, "outputs": [ { "data": { "image/svg+xml": [ "\n", "\n", "\n", "\n", "\n", "\n", "%3\n", "\n", "\n", "\n", "reservoir_Reservoir1\n", "\n", "Reservoir1\n", "\n", "\n", "\n", "plant_Plant1\n", "\n", "Plant1\n", "\n", "\n", "\n", "reservoir_Reservoir1->plant_Plant1\n", "\n", "\n", "\n", "\n", "reservoir_Reservoir2\n", "\n", "Reservoir2\n", "\n", "\n", "\n", "plant_Plant2\n", "\n", "Plant2\n", "\n", "\n", "\n", "reservoir_Reservoir2->plant_Plant2\n", "\n", "\n", "\n", "\n", "plant_Plant1->reservoir_Reservoir2\n", "\n", "\n", "\n", "\n" ], "text/plain": [ "" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "#Display topology to the screen\n", "display(shop.model.build_connection_tree())" ] }, { "cell_type": "markdown", "id": "f2019895", "metadata": { "Collapsed": "false" }, "source": [ "## Data preperation" ] }, { "cell_type": "markdown", "id": "b16cb863", "metadata": { "Collapsed": "false" }, "source": [ "Since we we need to work a bit with time horizons given that we will consider part of a period with stochastic information, we retrive the start time from the imported data" ] }, { "cell_type": "code", "execution_count": 6, "id": "a4e3ea9b", "metadata": { "Collapsed": "false" }, "outputs": [ { "data": { "text/plain": [ "{'starttime': Timestamp('2018-01-23 00:00:00'),\n", " 'endtime': Timestamp('2018-01-26 00:00:00'),\n", " 'timeunit': 'hour',\n", " 'timeresolution': 2018-01-23 00:00:00 1.0\n", " 2018-01-23 01:00:00 1.0\n", " 2018-01-23 02:00:00 1.0\n", " 2018-01-23 03:00:00 1.0\n", " 2018-01-23 04:00:00 1.0\n", " ... \n", " 2018-01-25 20:00:00 1.0\n", " 2018-01-25 21:00:00 1.0\n", " 2018-01-25 22:00:00 1.0\n", " 2018-01-25 23:00:00 1.0\n", " 2018-01-26 00:00:00 1.0\n", " Name: data, Length: 73, dtype: float64}" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Retrieve the start time for adding stochastic time series later\n", "timeres=shop.get_time_resolution()\n", "shop.get_time_resolution()" ] }, { "cell_type": "markdown", "id": "a1ceaf53", "metadata": { "Collapsed": "false" }, "source": [ "### Importing prices from spreadsheet" ] }, { "cell_type": "markdown", "id": "89b1324d", "metadata": { "Collapsed": "false" }, "source": [ "After the model data has been imported and read, we move on to the prices we want to consider. \n", "We first define the number of prices we want to import" ] }, { "cell_type": "code", "execution_count": 7, "id": "7cffb776", "metadata": { "Collapsed": "false" }, "outputs": [], "source": [ "# Import number of prices\n", "n_prices = 10" ] }, { "cell_type": "markdown", "id": "47f34304", "metadata": { "Collapsed": "false" }, "source": [ "which will be equal to the scenarios we will create later on. \n", "We then define for how long of a period we want to consider the stochastic price input. This can not be a larger period than what you have data for in your price forecasts." ] }, { "cell_type": "code", "execution_count": 8, "id": "40b4288b", "metadata": { "Collapsed": "false" }, "outputs": [], "source": [ "# Set the hours to import stochastic price\n", "stochastic_prices_start = timeres['starttime']\n", "# In this example, we choose 24 hours\n", "stochastic_prices_end = stochastic_prices_start + pd.Timedelta(hours=23)" ] }, { "cell_type": "markdown", "id": "3ae2a04c", "metadata": { "Collapsed": "false" }, "source": [ "Next we import the stochastic prices accordingly into a dataframe" ] }, { "cell_type": "code", "execution_count": 9, "id": "ecf12fdf", "metadata": { "Collapsed": "false" }, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
0123456789
038.68892530.84143739.30318343.12222131.39970838.21173842.47948529.83885729.93227946.548664
138.91648428.47852433.84338536.85633340.44714034.47371133.75162933.69934636.98775738.796374
237.13397329.92342531.28058540.11727133.28553834.72807434.09604732.08503336.42659045.003989
328.56714525.73859033.42898439.93746239.57022431.55864838.29084237.52719228.99041040.885543
432.90962930.64244834.66852147.70865636.96327333.74917438.70346831.80226729.55370346.706921
534.43855634.62347033.96960641.13648235.48029141.83473233.78857628.95316439.69066846.564680
635.47086230.47929435.03191041.90296137.54483633.30079441.63094742.22412740.85321838.904588
743.88436351.59123243.36287248.16582343.54943448.46864753.58639643.27692246.69187551.359444
846.48571249.47362744.29502254.17468247.94751053.74083050.93594954.03181853.41606958.500872
951.83157148.73569756.20106050.87969954.29157454.69347458.22480053.48550864.63548454.939225
1042.77078741.49397037.82846242.26399449.96689654.10620844.12832049.39106660.57510445.339350
1137.87060037.42526244.11692641.93284042.41688846.17547545.12199549.68323140.77799045.914877
1238.72012642.77109941.50705142.14680438.80397248.31662040.81178047.99123653.71575441.338486
1336.11937043.06022638.30018035.63193039.99991146.29631245.36328432.37836542.46518134.729646
1438.19404946.10862637.37508736.57564544.01463748.48044750.67242540.07908141.31169249.711962
1538.26022751.17502739.21637538.05367646.20276647.60882844.79515039.29150351.56377837.664475
1638.05804847.07770340.79919645.25095843.69050844.29423050.90564946.36238146.65976144.224564
1756.71036747.71087555.55446449.06669554.54647952.04463756.70139453.91189560.11102253.380406
1859.00434456.79788660.17298158.23750557.51310055.19502254.10929073.96141556.12152855.876500
1955.77624558.24584758.27061754.60177357.31774556.95479253.89801570.85271559.41414553.165951
2043.24421050.68762749.48684149.71405937.70655846.24326647.60151958.95601043.54022949.330592
2148.31710341.46123145.00785743.13839040.50753644.10861041.70081651.10217740.24570739.758460
2238.23718747.59398242.57414136.78084949.54837138.09788933.73190951.82626946.92059542.529905
2342.37140435.49695346.26549938.24747843.22821436.81609242.98743346.24975639.40723141.273543
\n", "
" ], "text/plain": [ " 0 1 2 3 4 5 \\\n", "0 38.688925 30.841437 39.303183 43.122221 31.399708 38.211738 \n", "1 38.916484 28.478524 33.843385 36.856333 40.447140 34.473711 \n", "2 37.133973 29.923425 31.280585 40.117271 33.285538 34.728074 \n", "3 28.567145 25.738590 33.428984 39.937462 39.570224 31.558648 \n", "4 32.909629 30.642448 34.668521 47.708656 36.963273 33.749174 \n", "5 34.438556 34.623470 33.969606 41.136482 35.480291 41.834732 \n", "6 35.470862 30.479294 35.031910 41.902961 37.544836 33.300794 \n", "7 43.884363 51.591232 43.362872 48.165823 43.549434 48.468647 \n", "8 46.485712 49.473627 44.295022 54.174682 47.947510 53.740830 \n", "9 51.831571 48.735697 56.201060 50.879699 54.291574 54.693474 \n", "10 42.770787 41.493970 37.828462 42.263994 49.966896 54.106208 \n", "11 37.870600 37.425262 44.116926 41.932840 42.416888 46.175475 \n", "12 38.720126 42.771099 41.507051 42.146804 38.803972 48.316620 \n", "13 36.119370 43.060226 38.300180 35.631930 39.999911 46.296312 \n", "14 38.194049 46.108626 37.375087 36.575645 44.014637 48.480447 \n", "15 38.260227 51.175027 39.216375 38.053676 46.202766 47.608828 \n", "16 38.058048 47.077703 40.799196 45.250958 43.690508 44.294230 \n", "17 56.710367 47.710875 55.554464 49.066695 54.546479 52.044637 \n", "18 59.004344 56.797886 60.172981 58.237505 57.513100 55.195022 \n", "19 55.776245 58.245847 58.270617 54.601773 57.317745 56.954792 \n", "20 43.244210 50.687627 49.486841 49.714059 37.706558 46.243266 \n", "21 48.317103 41.461231 45.007857 43.138390 40.507536 44.108610 \n", "22 38.237187 47.593982 42.574141 36.780849 49.548371 38.097889 \n", "23 42.371404 35.496953 46.265499 38.247478 43.228214 36.816092 \n", "\n", " 6 7 8 9 \n", "0 42.479485 29.838857 29.932279 46.548664 \n", "1 33.751629 33.699346 36.987757 38.796374 \n", "2 34.096047 32.085033 36.426590 45.003989 \n", "3 38.290842 37.527192 28.990410 40.885543 \n", "4 38.703468 31.802267 29.553703 46.706921 \n", "5 33.788576 28.953164 39.690668 46.564680 \n", "6 41.630947 42.224127 40.853218 38.904588 \n", "7 53.586396 43.276922 46.691875 51.359444 \n", "8 50.935949 54.031818 53.416069 58.500872 \n", "9 58.224800 53.485508 64.635484 54.939225 \n", "10 44.128320 49.391066 60.575104 45.339350 \n", "11 45.121995 49.683231 40.777990 45.914877 \n", "12 40.811780 47.991236 53.715754 41.338486 \n", "13 45.363284 32.378365 42.465181 34.729646 \n", "14 50.672425 40.079081 41.311692 49.711962 \n", "15 44.795150 39.291503 51.563778 37.664475 \n", "16 50.905649 46.362381 46.659761 44.224564 \n", "17 56.701394 53.911895 60.111022 53.380406 \n", "18 54.109290 73.961415 56.121528 55.876500 \n", "19 53.898015 70.852715 59.414145 53.165951 \n", "20 47.601519 58.956010 43.540229 49.330592 \n", "21 41.700816 51.102177 40.245707 39.758460 \n", "22 33.731909 51.826269 46.920595 42.529905 \n", "23 42.987433 46.249756 39.407231 41.273543 " ] }, "execution_count": 9, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Use pandas read_excel function to import n_prices to a dataframe, starting from the first column to the left in the spreadsheet\n", "stochastic_prices_from_file = pd.read_excel ('52_hourly_prices_random.xls', header=None,usecols=list(range(0,n_prices)))\n", "\n", "# Optionally, select which scenarios you want relative to the columns in your spreadsheet. They must then be equal to n_prices;\n", "#stoch_price_from_file = pd.read_excel (r'20200123_scens_edit.xlsx', usecols=[1,2,5,7,9])\n", "\n", "stochastic_prices_from_file" ] }, { "cell_type": "markdown", "id": "b0a8d647", "metadata": { "Collapsed": "false" }, "source": [ "In order to later combine the stochastic prices with a deterministic price into the future, we make sure the dataframe has the correct timestamp indexing" ] }, { "cell_type": "code", "execution_count": 10, "id": "5f3b86f6", "metadata": { "Collapsed": "false" }, "outputs": [], "source": [ "# Add correct indexing to the dataframe\n", "stochastic_prices_from_file.index=pd.date_range(stochastic_prices_start,stochastic_prices_end,freq='h')" ] }, { "cell_type": "markdown", "id": "e49f75da", "metadata": { "Collapsed": "false" }, "source": [ "Then we can plot and review the newly imported prices" ] }, { "cell_type": "code", "execution_count": 11, "id": "9bf2288b", "metadata": { "Collapsed": "false" }, "outputs": [ { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "hovertemplate": "=0
Time=%{x}
EUR/MWh=%{y}", "legendgroup": "0", "line": { "color": "#636efa", "dash": "solid" }, "marker": { "symbol": "circle" }, "mode": "lines", "name": "0", "orientation": "v", "showlegend": true, "type": "scatter", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00" ], "xaxis": "x", "y": [ 38.688924790028935, 38.91648373357578, 37.13397283607992, 28.567144764921423, 32.90962859918502, 34.43855641685243, 35.47086224821935, 43.884362898890004, 46.48571170034651, 51.83157067457943, 42.77078719357291, 37.87059975592636, 38.72012568912313, 36.11937041948169, 38.194048733917754, 38.26022728649826, 38.05804786206631, 56.71036696579608, 59.00434355483017, 55.77624532195394, 43.24421031420755, 48.317102814015996, 38.237187361867846, 42.371404453779654 ], "yaxis": "y" }, { "hovertemplate": "=1
Time=%{x}
EUR/MWh=%{y}", "legendgroup": "1", "line": { "color": "#EF553B", "dash": "solid" }, "marker": { "symbol": "circle" }, "mode": "lines", "name": "1", "orientation": "v", "showlegend": true, "type": "scatter", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00" ], "xaxis": "x", "y": [ 30.84143666529853, 28.47852434471662, 29.923425146009553, 25.7385904884098, 30.64244779413558, 34.62346957920782, 30.47929369560378, 51.591232223645896, 49.47362653799953, 48.73569665784232, 41.49396971475139, 37.42526162689267, 42.77109897478207, 43.060226041834014, 46.10862607282206, 51.175027264422994, 47.07770347974001, 47.71087538922627, 56.79788602641253, 58.24584690285616, 50.687626812451406, 41.46123136424681, 47.593982027701074, 35.49695286383878 ], "yaxis": "y" }, { "hovertemplate": "=2
Time=%{x}
EUR/MWh=%{y}", "legendgroup": "2", "line": { "color": "#00cc96", "dash": "solid" }, "marker": { "symbol": "circle" }, "mode": "lines", "name": "2", "orientation": "v", "showlegend": true, "type": "scatter", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00" ], "xaxis": "x", "y": [ 39.30318270980665, 33.84338460894348, 31.28058529475953, 33.42898384611474, 34.66852142919224, 33.9696063734057, 35.03191004478626, 43.362871627306525, 44.29502173658242, 56.201060307257364, 37.82846182019187, 44.11692579762013, 41.50705054972993, 38.30018021897476, 37.37508689986337, 39.21637545527792, 40.79919610418443, 55.5544635153597, 60.1729813513571, 58.270617107738786, 49.48684060432931, 45.007856590396585, 42.574140822722775, 46.26549880390542 ], "yaxis": "y" }, { "hovertemplate": "=3
Time=%{x}
EUR/MWh=%{y}", "legendgroup": "3", "line": { "color": "#ab63fa", "dash": "solid" }, "marker": { "symbol": "circle" }, "mode": "lines", "name": "3", "orientation": "v", "showlegend": true, "type": "scatter", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00" ], "xaxis": "x", "y": [ 43.1222213657023, 36.85633331407592, 40.11727135214596, 39.93746190323393, 47.708656045739914, 41.136482401465926, 41.90296077026431, 48.16582265504936, 54.17468219492054, 50.87969915242537, 42.2639939367465, 41.93283958287484, 42.14680390729975, 35.63193002550175, 36.57564545317568, 38.05367612977148, 45.250958178628906, 49.06669510663274, 58.237504769322314, 54.60177345780331, 49.71405910604083, 43.138390473686016, 36.780848917322885, 38.24747762487639 ], "yaxis": "y" }, { "hovertemplate": "=4
Time=%{x}
EUR/MWh=%{y}", "legendgroup": "4", "line": { "color": "#FFA15A", "dash": "solid" }, "marker": { "symbol": "circle" }, "mode": "lines", "name": "4", "orientation": "v", "showlegend": true, "type": "scatter", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00" ], "xaxis": "x", "y": [ 31.399707877439493, 40.44714002248111, 33.28553820479103, 39.5702239851003, 36.96327342983141, 35.48029110424704, 37.54483625037337, 43.549433968320535, 47.94751030975122, 54.291573962141264, 49.96689611434518, 42.41688837159459, 38.80397234301293, 39.99991112626061, 44.01463732532422, 46.202766220740195, 43.69050794432827, 54.54647867289708, 57.513099511561066, 57.317744778949475, 37.70655838878481, 40.50753566627801, 49.548370526927386, 43.22821414518731 ], "yaxis": "y" }, { "hovertemplate": "=5
Time=%{x}
EUR/MWh=%{y}", "legendgroup": "5", "line": { "color": "#19d3f3", "dash": "solid" }, "marker": { "symbol": "circle" }, "mode": "lines", "name": "5", "orientation": "v", "showlegend": true, "type": "scatter", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00" ], "xaxis": "x", "y": [ 38.211738224562396, 34.47371124763938, 34.7280738365677, 31.55864788701061, 33.749174228915635, 41.83473160042925, 33.30079368907467, 48.468647031564394, 53.74082984083143, 54.693474100441335, 54.10620785334244, 46.175475331181204, 48.31661977281291, 46.296312210030116, 48.48044709718775, 47.6088277963454, 44.29423031503364, 52.04463673650779, 55.195022080319625, 56.95479156611447, 46.24326639374972, 44.108610402454936, 38.09788889449211, 36.816091953881276 ], "yaxis": "y" }, { "hovertemplate": "=6
Time=%{x}
EUR/MWh=%{y}", "legendgroup": "6", "line": { "color": "#FF6692", "dash": "solid" }, "marker": { "symbol": "circle" }, "mode": "lines", "name": "6", "orientation": "v", "showlegend": true, "type": "scatter", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00" ], "xaxis": "x", "y": [ 42.479485028495645, 33.75162850526158, 34.09604723329545, 38.290841505691326, 38.70346824980726, 33.78857578711016, 41.63094728212825, 53.58639585781828, 50.93594863387132, 58.22479969565341, 44.12831968551308, 45.121995478221244, 40.81178048525122, 45.36328446516111, 50.67242464460132, 44.795150046331486, 50.9056494242492, 56.7013936281821, 54.10928992277162, 53.898014509384915, 47.60151878277625, 41.700816040923726, 33.73190908915484, 42.98743348732935 ], "yaxis": "y" }, { "hovertemplate": "=7
Time=%{x}
EUR/MWh=%{y}", "legendgroup": "7", "line": { "color": "#B6E880", "dash": "solid" }, "marker": { "symbol": "circle" }, "mode": "lines", "name": "7", "orientation": "v", "showlegend": true, "type": "scatter", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00" ], "xaxis": "x", "y": [ 29.83885677823433, 33.6993463496901, 32.08503270612679, 37.527191611735795, 31.802267240063458, 28.953163992553172, 42.22412721160745, 43.27692227013378, 54.03181777559293, 53.48550785435142, 49.39106615383736, 49.68323133044724, 47.99123597938316, 32.378365450187964, 40.079081432670144, 39.29150257508463, 46.36238144501525, 53.91189541744889, 73.96141458604406, 70.85271509694213, 58.95601014294316, 51.10217655427115, 51.82626868327121, 46.24975583110782 ], "yaxis": "y" }, { "hovertemplate": "=8
Time=%{x}
EUR/MWh=%{y}", "legendgroup": "8", "line": { "color": "#FF97FF", "dash": "solid" }, "marker": { "symbol": "circle" }, "mode": "lines", "name": "8", "orientation": "v", "showlegend": true, "type": "scatter", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00" ], "xaxis": "x", "y": [ 29.93227883576153, 36.98775697574074, 36.42658995902406, 28.99040988121767, 29.553703261597807, 39.69066832659008, 40.85321844893519, 46.69187486266235, 53.41606943876772, 64.63548367033422, 60.57510426310269, 40.777990024016965, 53.715753720173545, 42.46518071355044, 41.311691911561276, 51.563778217252654, 46.659760523543746, 60.11102240027948, 56.121528169768595, 59.41414482942551, 43.54022872965482, 40.2457071697066, 46.92059468036083, 39.40723132420954 ], "yaxis": "y" }, { "hovertemplate": "=9
Time=%{x}
EUR/MWh=%{y}", "legendgroup": "9", "line": { "color": "#FECB52", "dash": "solid" }, "marker": { "symbol": "circle" }, "mode": "lines", "name": "9", "orientation": "v", "showlegend": true, "type": "scatter", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00" ], "xaxis": "x", "y": [ 46.54866447289529, 38.79637418511707, 45.003988815437644, 40.88554303114959, 46.706920769563055, 46.564680245777616, 38.9045882715515, 51.35944374090656, 58.50087160008804, 54.93922457297462, 45.3393497791437, 45.9148773821524, 41.33848577095818, 34.72964629465234, 49.71196176709573, 37.664474969438864, 44.22456435168797, 53.38040630699615, 55.876500217206456, 53.16595109294248, 49.330592191903854, 39.75846030900367, 42.52990511682548, 41.27354268730056 ], "yaxis": "y" } ], "layout": { "legend": { "title": { "text": "" }, "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.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.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.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.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.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.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.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.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.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.0, "#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.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.0, "#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.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.0, "#f0f921" ] ], "sequentialminus": [ [ 0.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.0, "#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": "Stochastic prices imported from spreadsheet" }, "xaxis": { "anchor": "y", "domain": [ 0.0, 1.0 ], "title": { "text": "Time" } }, "yaxis": { "anchor": "x", "domain": [ 0.0, 1.0 ], "title": { "text": "EUR/MWh" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# Plot all stochastic prices imported from Excel\n", "stochastic_prices_from_file.plot(title=\"Stochastic prices imported from spreadsheet\", labels=dict(index=\"Time\", value=\"EUR/MWh\", variable=\"\"))" ] }, { "cell_type": "markdown", "id": "0da1dd37", "metadata": { "Collapsed": "false" }, "source": [ "### Creating scenarios" ] }, { "cell_type": "markdown", "id": "d2fe0ce3", "metadata": { "Collapsed": "false" }, "source": [ "Now it is time to create scenarios that we can populate with the imported prices. We make sure to create just as many scenarios as we have prices imported." ] }, { "cell_type": "code", "execution_count": 12, "id": "76d8bf62", "metadata": { "Collapsed": "false" }, "outputs": [], "source": [ "# Generate as many scenarios as prices\n", "n_scenarios = n_prices\n", "for i in range (1, n_scenarios+1):\n", " scenario_name='S'+str(i)\n", " # The first scenario always exists in SHOP and should not be added again\n", " if i>1:\n", " scenario = shop.model.scenario.add_object(scenario_name)\n", " else:\n", " scenario=shop.model.scenario[scenario_name]\n", " scenario.scenario_id.set(i)\n", " \n", " # Set each scenario equally probable\n", " scenario.probability.set(1.0/n_scenarios)\n", " \n", " # Branch immediately, i.e. at 'starttime'\n", " scenario.common_scenario.set(pd.Series([i], index=[timeres['starttime']]))\n", " \n", " # Optionally set branching to start after given number of hours (all scenarios are set equal to scenario 2 before this) \n", " #scen.common_scenario.set(pd.Series([2, i], index=[timeres['starttime'], branching_start_time]))" ] }, { "cell_type": "markdown", "id": "e1a8447b", "metadata": { "Collapsed": "false" }, "source": [ "### Creating the new price array from stochastic and deterministic prices" ] }, { "cell_type": "markdown", "id": "e13b8e0f", "metadata": { "Collapsed": "false" }, "source": [ "Since we have chosen to only consider the first 24 hours as stochastic when it comes to the price, but have longer total time horizon, we need to combine the stochastic and deterministic prices into a joint price dataframe. We have already defined the start and end time for the stochastic price, but need to make sure that we also define when the deterministic price should be valid and thus overlap each other." ] }, { "cell_type": "code", "execution_count": 13, "id": "d9e3ee30", "metadata": { "Collapsed": "false" }, "outputs": [], "source": [ "# Use first (and only) market as index for setting stochastic data and getting results\n", "name_list = shop.model.market.get_object_names()\n", "\n", "# The deterministic model only has one market, so we give stochastic price to that (da is just a name we use to indicate that we regard it to be a day ahead energy market)\n", "day_ahead_market = shop.model.market[name_list[0]]\n", "\n", "# Get the deterministic price from ASCII import for correct indexing \n", "deterministic_price = day_ahead_market.sale_price.get()\n", "\n", "# Create a new array for deterministic price with n_prices columns in order to combine it with the stochastic price\n", "deterministic_price_multi_dimension_array = pd.DataFrame(index=deterministic_price.index, columns=list(range(0,n_prices)))\n", "\n", "# Define when to use deterministic price\n", "deterministic_price_start = timeres['starttime']+pd.Timedelta(hours=24)\n", "deterministic_price_end = timeres['endtime']-pd.Timedelta(hours=1)" ] }, { "cell_type": "markdown", "id": "2ab7595e", "metadata": { "Collapsed": "false" }, "source": [ "We print out the start and end times to make sure they are correct." ] }, { "cell_type": "code", "execution_count": 14, "id": "3b4198c5", "metadata": { "Collapsed": "false" }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Stochastic price(s) start time 2018-01-23 00:00:00\n", "Stochastic price(s) end time 2018-01-23 23:00:00\n", "Deterministic prices start time 2018-01-24 00:00:00\n", "Deterministic prices end time 2018-01-25 23:00:00\n" ] } ], "source": [ "# Print out start and end set point for prices\n", "print(\"Stochastic price(s) start time\",stochastic_prices_start)\n", "print(\"Stochastic price(s) end time\",stochastic_prices_end)\n", "print(\"Deterministic prices start time\",deterministic_price_start)\n", "print(\"Deterministic prices end time\",deterministic_price_end)" ] }, { "cell_type": "markdown", "id": "9eeb0179", "metadata": { "Collapsed": "false" }, "source": [ "Lastly, we need to combine the stochastic and deterministic price inputs. We do this by creating a new dataframe with the right dimensions and indexes, and then populate it according to the start and end times defined above." ] }, { "cell_type": "code", "execution_count": 15, "id": "0480de82", "metadata": { "Collapsed": "false" }, "outputs": [], "source": [ "# Creating a new price dataframe which will combine both stochastic and deterministic price\n", "combined_price = pd.DataFrame(index=deterministic_price.index, columns=list(range(0,n_prices)))\n", "\n", "# Loop over the new price array and assign stochastic and deterministic prices\n", "\n", "for j in range(0,n_prices):\n", " deterministic_price_multi_dimension_array[j]=deterministic_price\n", "for i in pd.date_range(stochastic_prices_start,stochastic_prices_end,freq='h'):\n", " combined_price.loc[i] = stochastic_prices_from_file.loc[i]\n", "for i in pd.date_range(deterministic_price_start,(deterministic_price_end),freq='h'):\n", " combined_price.loc[i] = deterministic_price_multi_dimension_array.loc[i]" ] }, { "cell_type": "markdown", "id": "00734045", "metadata": { "Collapsed": "false" }, "source": [ "Then we can plot out the resulting combined price." ] }, { "cell_type": "code", "execution_count": 16, "id": "159e9c19", "metadata": { "Collapsed": "false" }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "hovertemplate": "=0
Time=%{x}
EUR/MWh=%{y}", "legendgroup": "0", "line": { "color": "#636efa", "dash": "solid" }, "marker": { "symbol": "circle" }, "mode": "lines", "name": "0", "orientation": "v", "showlegend": true, "type": "scatter", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00", "2018-01-24T00:00:00", "2018-01-24T01:00:00", "2018-01-24T02:00:00", "2018-01-24T03:00:00", "2018-01-24T04:00:00", "2018-01-24T05:00:00", "2018-01-24T06:00:00", "2018-01-24T07:00:00", "2018-01-24T08:00:00", "2018-01-24T09:00:00", "2018-01-24T10:00:00", "2018-01-24T11:00:00", "2018-01-24T12:00:00", "2018-01-24T13:00:00", "2018-01-24T14:00:00", "2018-01-24T15:00:00", "2018-01-24T16:00:00", "2018-01-24T17:00:00", "2018-01-24T18:00:00", "2018-01-24T19:00:00", "2018-01-24T20:00:00", "2018-01-24T21:00:00", "2018-01-24T22:00:00", "2018-01-24T23:00:00", "2018-01-25T00:00:00", "2018-01-25T01:00:00", "2018-01-25T02:00:00", "2018-01-25T03:00:00", "2018-01-25T04:00:00", "2018-01-25T05:00:00", "2018-01-25T06:00:00", "2018-01-25T07:00:00", "2018-01-25T08:00:00", "2018-01-25T09:00:00", "2018-01-25T10:00:00", "2018-01-25T11:00:00", "2018-01-25T12:00:00", "2018-01-25T13:00:00", "2018-01-25T14:00:00", "2018-01-25T15:00:00", "2018-01-25T16:00:00", "2018-01-25T17:00:00", "2018-01-25T18:00:00", "2018-01-25T19:00:00", "2018-01-25T20:00:00", "2018-01-25T21:00:00", "2018-01-25T22:00:00", "2018-01-25T23:00:00" ], "xaxis": "x", "y": [ 38.688924790028935, 38.91648373357578, 37.13397283607992, 28.567144764921423, 32.90962859918502, 34.43855641685243, 35.47086224821935, 43.884362898890004, 46.48571170034651, 51.83157067457943, 42.77078719357291, 37.87059975592636, 38.72012568912313, 36.11937041948169, 38.194048733917754, 38.26022728649826, 38.05804786206631, 56.71036696579608, 59.00434355483017, 55.77624532195394, 43.24421031420755, 48.317102814015996, 38.237187361867846, 42.371404453779654, 27.242, 26.622, 25.732, 25.392, 25.992, 27.402, 28.942, 32.182, 33.082, 32.342, 30.912, 30.162, 30.062, 29.562, 29.462, 29.512, 29.672, 30.072, 29.552, 28.862, 28.412, 28.072, 27.162, 25.502, 26.192, 25.222, 24.052, 23.892, 23.682, 26.092, 28.202, 30.902, 31.572, 31.462, 31.172, 30.912, 30.572, 30.602, 30.632, 31.062, 32.082, 36.262, 34.472, 32.182, 31.492, 30.732, 29.712, 28.982 ], "yaxis": "y" }, { "hovertemplate": "=1
Time=%{x}
EUR/MWh=%{y}", "legendgroup": "1", "line": { "color": "#EF553B", "dash": "solid" }, "marker": { "symbol": "circle" }, "mode": "lines", "name": "1", "orientation": "v", "showlegend": true, "type": "scatter", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00", "2018-01-24T00:00:00", "2018-01-24T01:00:00", "2018-01-24T02:00:00", "2018-01-24T03:00:00", "2018-01-24T04:00:00", "2018-01-24T05:00:00", "2018-01-24T06:00:00", "2018-01-24T07:00:00", "2018-01-24T08:00:00", "2018-01-24T09:00:00", "2018-01-24T10:00:00", "2018-01-24T11:00:00", "2018-01-24T12:00:00", "2018-01-24T13:00:00", "2018-01-24T14:00:00", "2018-01-24T15:00:00", "2018-01-24T16:00:00", "2018-01-24T17:00:00", "2018-01-24T18:00:00", "2018-01-24T19:00:00", "2018-01-24T20:00:00", "2018-01-24T21:00:00", "2018-01-24T22:00:00", "2018-01-24T23:00:00", "2018-01-25T00:00:00", "2018-01-25T01:00:00", "2018-01-25T02:00:00", "2018-01-25T03:00:00", "2018-01-25T04:00:00", "2018-01-25T05:00:00", "2018-01-25T06:00:00", "2018-01-25T07:00:00", "2018-01-25T08:00:00", "2018-01-25T09:00:00", "2018-01-25T10:00:00", "2018-01-25T11:00:00", "2018-01-25T12:00:00", "2018-01-25T13:00:00", "2018-01-25T14:00:00", "2018-01-25T15:00:00", "2018-01-25T16:00:00", "2018-01-25T17:00:00", "2018-01-25T18:00:00", "2018-01-25T19:00:00", "2018-01-25T20:00:00", "2018-01-25T21:00:00", "2018-01-25T22:00:00", "2018-01-25T23:00:00" ], "xaxis": "x", "y": [ 30.84143666529853, 28.47852434471662, 29.923425146009553, 25.7385904884098, 30.64244779413558, 34.62346957920782, 30.47929369560378, 51.591232223645896, 49.47362653799953, 48.73569665784232, 41.49396971475139, 37.42526162689267, 42.77109897478207, 43.060226041834014, 46.10862607282206, 51.175027264422994, 47.07770347974001, 47.71087538922627, 56.79788602641253, 58.24584690285616, 50.687626812451406, 41.46123136424681, 47.593982027701074, 35.49695286383878, 27.242, 26.622, 25.732, 25.392, 25.992, 27.402, 28.942, 32.182, 33.082, 32.342, 30.912, 30.162, 30.062, 29.562, 29.462, 29.512, 29.672, 30.072, 29.552, 28.862, 28.412, 28.072, 27.162, 25.502, 26.192, 25.222, 24.052, 23.892, 23.682, 26.092, 28.202, 30.902, 31.572, 31.462, 31.172, 30.912, 30.572, 30.602, 30.632, 31.062, 32.082, 36.262, 34.472, 32.182, 31.492, 30.732, 29.712, 28.982 ], "yaxis": "y" }, { "hovertemplate": "=2
Time=%{x}
EUR/MWh=%{y}", "legendgroup": "2", "line": { "color": "#00cc96", "dash": "solid" }, "marker": { "symbol": "circle" }, "mode": "lines", "name": "2", "orientation": "v", "showlegend": true, "type": "scatter", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00", "2018-01-24T00:00:00", "2018-01-24T01:00:00", "2018-01-24T02:00:00", "2018-01-24T03:00:00", "2018-01-24T04:00:00", "2018-01-24T05:00:00", "2018-01-24T06:00:00", "2018-01-24T07:00:00", "2018-01-24T08:00:00", "2018-01-24T09:00:00", "2018-01-24T10:00:00", "2018-01-24T11:00:00", "2018-01-24T12:00:00", "2018-01-24T13:00:00", "2018-01-24T14:00:00", "2018-01-24T15:00:00", "2018-01-24T16:00:00", "2018-01-24T17:00:00", "2018-01-24T18:00:00", "2018-01-24T19:00:00", "2018-01-24T20:00:00", "2018-01-24T21:00:00", "2018-01-24T22:00:00", "2018-01-24T23:00:00", "2018-01-25T00:00:00", "2018-01-25T01:00:00", "2018-01-25T02:00:00", "2018-01-25T03:00:00", "2018-01-25T04:00:00", "2018-01-25T05:00:00", "2018-01-25T06:00:00", "2018-01-25T07:00:00", "2018-01-25T08:00:00", "2018-01-25T09:00:00", "2018-01-25T10:00:00", "2018-01-25T11:00:00", "2018-01-25T12:00:00", "2018-01-25T13:00:00", "2018-01-25T14:00:00", "2018-01-25T15:00:00", "2018-01-25T16:00:00", "2018-01-25T17:00:00", "2018-01-25T18:00:00", "2018-01-25T19:00:00", "2018-01-25T20:00:00", "2018-01-25T21:00:00", "2018-01-25T22:00:00", "2018-01-25T23:00:00" ], "xaxis": "x", "y": [ 39.30318270980665, 33.84338460894348, 31.28058529475953, 33.42898384611474, 34.66852142919224, 33.9696063734057, 35.03191004478626, 43.362871627306525, 44.29502173658242, 56.201060307257364, 37.82846182019187, 44.11692579762013, 41.50705054972993, 38.30018021897476, 37.37508689986337, 39.21637545527792, 40.79919610418443, 55.5544635153597, 60.1729813513571, 58.270617107738786, 49.48684060432931, 45.007856590396585, 42.574140822722775, 46.26549880390542, 27.242, 26.622, 25.732, 25.392, 25.992, 27.402, 28.942, 32.182, 33.082, 32.342, 30.912, 30.162, 30.062, 29.562, 29.462, 29.512, 29.672, 30.072, 29.552, 28.862, 28.412, 28.072, 27.162, 25.502, 26.192, 25.222, 24.052, 23.892, 23.682, 26.092, 28.202, 30.902, 31.572, 31.462, 31.172, 30.912, 30.572, 30.602, 30.632, 31.062, 32.082, 36.262, 34.472, 32.182, 31.492, 30.732, 29.712, 28.982 ], "yaxis": "y" }, { "hovertemplate": "=3
Time=%{x}
EUR/MWh=%{y}", "legendgroup": "3", "line": { "color": "#ab63fa", "dash": "solid" }, "marker": { "symbol": "circle" }, "mode": "lines", "name": "3", "orientation": "v", "showlegend": true, "type": "scatter", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00", "2018-01-24T00:00:00", "2018-01-24T01:00:00", "2018-01-24T02:00:00", "2018-01-24T03:00:00", "2018-01-24T04:00:00", "2018-01-24T05:00:00", "2018-01-24T06:00:00", "2018-01-24T07:00:00", "2018-01-24T08:00:00", "2018-01-24T09:00:00", "2018-01-24T10:00:00", "2018-01-24T11:00:00", "2018-01-24T12:00:00", "2018-01-24T13:00:00", "2018-01-24T14:00:00", "2018-01-24T15:00:00", "2018-01-24T16:00:00", "2018-01-24T17:00:00", "2018-01-24T18:00:00", "2018-01-24T19:00:00", "2018-01-24T20:00:00", "2018-01-24T21:00:00", "2018-01-24T22:00:00", "2018-01-24T23:00:00", "2018-01-25T00:00:00", "2018-01-25T01:00:00", "2018-01-25T02:00:00", "2018-01-25T03:00:00", "2018-01-25T04:00:00", "2018-01-25T05:00:00", "2018-01-25T06:00:00", "2018-01-25T07:00:00", "2018-01-25T08:00:00", "2018-01-25T09:00:00", "2018-01-25T10:00:00", "2018-01-25T11:00:00", "2018-01-25T12:00:00", "2018-01-25T13:00:00", "2018-01-25T14:00:00", "2018-01-25T15:00:00", "2018-01-25T16:00:00", "2018-01-25T17:00:00", "2018-01-25T18:00:00", "2018-01-25T19:00:00", "2018-01-25T20:00:00", "2018-01-25T21:00:00", "2018-01-25T22:00:00", "2018-01-25T23:00:00" ], "xaxis": "x", "y": [ 43.1222213657023, 36.85633331407592, 40.11727135214596, 39.93746190323393, 47.708656045739914, 41.136482401465926, 41.90296077026431, 48.16582265504936, 54.17468219492054, 50.87969915242537, 42.2639939367465, 41.93283958287484, 42.14680390729975, 35.63193002550175, 36.57564545317568, 38.05367612977148, 45.250958178628906, 49.06669510663274, 58.237504769322314, 54.60177345780331, 49.71405910604083, 43.138390473686016, 36.780848917322885, 38.24747762487639, 27.242, 26.622, 25.732, 25.392, 25.992, 27.402, 28.942, 32.182, 33.082, 32.342, 30.912, 30.162, 30.062, 29.562, 29.462, 29.512, 29.672, 30.072, 29.552, 28.862, 28.412, 28.072, 27.162, 25.502, 26.192, 25.222, 24.052, 23.892, 23.682, 26.092, 28.202, 30.902, 31.572, 31.462, 31.172, 30.912, 30.572, 30.602, 30.632, 31.062, 32.082, 36.262, 34.472, 32.182, 31.492, 30.732, 29.712, 28.982 ], "yaxis": "y" }, { "hovertemplate": "=4
Time=%{x}
EUR/MWh=%{y}", "legendgroup": "4", "line": { "color": "#FFA15A", "dash": "solid" }, "marker": { "symbol": "circle" }, "mode": "lines", "name": "4", "orientation": "v", "showlegend": true, "type": "scatter", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00", "2018-01-24T00:00:00", "2018-01-24T01:00:00", "2018-01-24T02:00:00", "2018-01-24T03:00:00", "2018-01-24T04:00:00", "2018-01-24T05:00:00", "2018-01-24T06:00:00", "2018-01-24T07:00:00", "2018-01-24T08:00:00", "2018-01-24T09:00:00", "2018-01-24T10:00:00", "2018-01-24T11:00:00", "2018-01-24T12:00:00", "2018-01-24T13:00:00", "2018-01-24T14:00:00", "2018-01-24T15:00:00", "2018-01-24T16:00:00", "2018-01-24T17:00:00", "2018-01-24T18:00:00", "2018-01-24T19:00:00", "2018-01-24T20:00:00", "2018-01-24T21:00:00", "2018-01-24T22:00:00", "2018-01-24T23:00:00", "2018-01-25T00:00:00", "2018-01-25T01:00:00", "2018-01-25T02:00:00", "2018-01-25T03:00:00", "2018-01-25T04:00:00", "2018-01-25T05:00:00", "2018-01-25T06:00:00", "2018-01-25T07:00:00", "2018-01-25T08:00:00", "2018-01-25T09:00:00", "2018-01-25T10:00:00", "2018-01-25T11:00:00", "2018-01-25T12:00:00", "2018-01-25T13:00:00", "2018-01-25T14:00:00", "2018-01-25T15:00:00", "2018-01-25T16:00:00", "2018-01-25T17:00:00", "2018-01-25T18:00:00", "2018-01-25T19:00:00", "2018-01-25T20:00:00", "2018-01-25T21:00:00", "2018-01-25T22:00:00", "2018-01-25T23:00:00" ], "xaxis": "x", "y": [ 31.399707877439493, 40.44714002248111, 33.28553820479103, 39.5702239851003, 36.96327342983141, 35.48029110424704, 37.54483625037337, 43.549433968320535, 47.94751030975122, 54.291573962141264, 49.96689611434518, 42.41688837159459, 38.80397234301293, 39.99991112626061, 44.01463732532422, 46.202766220740195, 43.69050794432827, 54.54647867289708, 57.513099511561066, 57.317744778949475, 37.70655838878481, 40.50753566627801, 49.548370526927386, 43.22821414518731, 27.242, 26.622, 25.732, 25.392, 25.992, 27.402, 28.942, 32.182, 33.082, 32.342, 30.912, 30.162, 30.062, 29.562, 29.462, 29.512, 29.672, 30.072, 29.552, 28.862, 28.412, 28.072, 27.162, 25.502, 26.192, 25.222, 24.052, 23.892, 23.682, 26.092, 28.202, 30.902, 31.572, 31.462, 31.172, 30.912, 30.572, 30.602, 30.632, 31.062, 32.082, 36.262, 34.472, 32.182, 31.492, 30.732, 29.712, 28.982 ], "yaxis": "y" }, { "hovertemplate": "=5
Time=%{x}
EUR/MWh=%{y}", "legendgroup": "5", "line": { "color": "#19d3f3", "dash": "solid" }, "marker": { "symbol": "circle" }, "mode": "lines", "name": "5", "orientation": "v", "showlegend": true, "type": "scatter", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00", "2018-01-24T00:00:00", "2018-01-24T01:00:00", "2018-01-24T02:00:00", "2018-01-24T03:00:00", "2018-01-24T04:00:00", "2018-01-24T05:00:00", "2018-01-24T06:00:00", "2018-01-24T07:00:00", "2018-01-24T08:00:00", "2018-01-24T09:00:00", "2018-01-24T10:00:00", "2018-01-24T11:00:00", "2018-01-24T12:00:00", "2018-01-24T13:00:00", "2018-01-24T14:00:00", "2018-01-24T15:00:00", "2018-01-24T16:00:00", "2018-01-24T17:00:00", "2018-01-24T18:00:00", "2018-01-24T19:00:00", "2018-01-24T20:00:00", "2018-01-24T21:00:00", "2018-01-24T22:00:00", "2018-01-24T23:00:00", "2018-01-25T00:00:00", "2018-01-25T01:00:00", "2018-01-25T02:00:00", "2018-01-25T03:00:00", "2018-01-25T04:00:00", "2018-01-25T05:00:00", "2018-01-25T06:00:00", "2018-01-25T07:00:00", "2018-01-25T08:00:00", "2018-01-25T09:00:00", "2018-01-25T10:00:00", "2018-01-25T11:00:00", "2018-01-25T12:00:00", "2018-01-25T13:00:00", "2018-01-25T14:00:00", "2018-01-25T15:00:00", "2018-01-25T16:00:00", "2018-01-25T17:00:00", "2018-01-25T18:00:00", "2018-01-25T19:00:00", "2018-01-25T20:00:00", "2018-01-25T21:00:00", "2018-01-25T22:00:00", "2018-01-25T23:00:00" ], "xaxis": "x", "y": [ 38.211738224562396, 34.47371124763938, 34.7280738365677, 31.55864788701061, 33.749174228915635, 41.83473160042925, 33.30079368907467, 48.468647031564394, 53.74082984083143, 54.693474100441335, 54.10620785334244, 46.175475331181204, 48.31661977281291, 46.296312210030116, 48.48044709718775, 47.6088277963454, 44.29423031503364, 52.04463673650779, 55.195022080319625, 56.95479156611447, 46.24326639374972, 44.108610402454936, 38.09788889449211, 36.816091953881276, 27.242, 26.622, 25.732, 25.392, 25.992, 27.402, 28.942, 32.182, 33.082, 32.342, 30.912, 30.162, 30.062, 29.562, 29.462, 29.512, 29.672, 30.072, 29.552, 28.862, 28.412, 28.072, 27.162, 25.502, 26.192, 25.222, 24.052, 23.892, 23.682, 26.092, 28.202, 30.902, 31.572, 31.462, 31.172, 30.912, 30.572, 30.602, 30.632, 31.062, 32.082, 36.262, 34.472, 32.182, 31.492, 30.732, 29.712, 28.982 ], "yaxis": "y" }, { "hovertemplate": "=6
Time=%{x}
EUR/MWh=%{y}", "legendgroup": "6", "line": { "color": "#FF6692", "dash": "solid" }, "marker": { "symbol": "circle" }, "mode": "lines", "name": "6", "orientation": "v", "showlegend": true, "type": "scatter", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00", "2018-01-24T00:00:00", "2018-01-24T01:00:00", "2018-01-24T02:00:00", "2018-01-24T03:00:00", "2018-01-24T04:00:00", "2018-01-24T05:00:00", "2018-01-24T06:00:00", "2018-01-24T07:00:00", "2018-01-24T08:00:00", "2018-01-24T09:00:00", "2018-01-24T10:00:00", "2018-01-24T11:00:00", "2018-01-24T12:00:00", "2018-01-24T13:00:00", "2018-01-24T14:00:00", "2018-01-24T15:00:00", "2018-01-24T16:00:00", "2018-01-24T17:00:00", "2018-01-24T18:00:00", "2018-01-24T19:00:00", "2018-01-24T20:00:00", "2018-01-24T21:00:00", "2018-01-24T22:00:00", "2018-01-24T23:00:00", "2018-01-25T00:00:00", "2018-01-25T01:00:00", "2018-01-25T02:00:00", "2018-01-25T03:00:00", "2018-01-25T04:00:00", "2018-01-25T05:00:00", "2018-01-25T06:00:00", "2018-01-25T07:00:00", "2018-01-25T08:00:00", "2018-01-25T09:00:00", "2018-01-25T10:00:00", "2018-01-25T11:00:00", "2018-01-25T12:00:00", "2018-01-25T13:00:00", "2018-01-25T14:00:00", "2018-01-25T15:00:00", "2018-01-25T16:00:00", "2018-01-25T17:00:00", "2018-01-25T18:00:00", "2018-01-25T19:00:00", "2018-01-25T20:00:00", "2018-01-25T21:00:00", "2018-01-25T22:00:00", "2018-01-25T23:00:00" ], "xaxis": "x", "y": [ 42.479485028495645, 33.75162850526158, 34.09604723329545, 38.290841505691326, 38.70346824980726, 33.78857578711016, 41.63094728212825, 53.58639585781828, 50.93594863387132, 58.22479969565341, 44.12831968551308, 45.121995478221244, 40.81178048525122, 45.36328446516111, 50.67242464460132, 44.795150046331486, 50.9056494242492, 56.7013936281821, 54.10928992277162, 53.898014509384915, 47.60151878277625, 41.700816040923726, 33.73190908915484, 42.98743348732935, 27.242, 26.622, 25.732, 25.392, 25.992, 27.402, 28.942, 32.182, 33.082, 32.342, 30.912, 30.162, 30.062, 29.562, 29.462, 29.512, 29.672, 30.072, 29.552, 28.862, 28.412, 28.072, 27.162, 25.502, 26.192, 25.222, 24.052, 23.892, 23.682, 26.092, 28.202, 30.902, 31.572, 31.462, 31.172, 30.912, 30.572, 30.602, 30.632, 31.062, 32.082, 36.262, 34.472, 32.182, 31.492, 30.732, 29.712, 28.982 ], "yaxis": "y" }, { "hovertemplate": "=7
Time=%{x}
EUR/MWh=%{y}", "legendgroup": "7", "line": { "color": "#B6E880", "dash": "solid" }, "marker": { "symbol": "circle" }, "mode": "lines", "name": "7", "orientation": "v", "showlegend": true, "type": "scatter", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00", "2018-01-24T00:00:00", "2018-01-24T01:00:00", "2018-01-24T02:00:00", "2018-01-24T03:00:00", "2018-01-24T04:00:00", "2018-01-24T05:00:00", "2018-01-24T06:00:00", "2018-01-24T07:00:00", "2018-01-24T08:00:00", "2018-01-24T09:00:00", "2018-01-24T10:00:00", "2018-01-24T11:00:00", "2018-01-24T12:00:00", "2018-01-24T13:00:00", "2018-01-24T14:00:00", "2018-01-24T15:00:00", "2018-01-24T16:00:00", "2018-01-24T17:00:00", "2018-01-24T18:00:00", "2018-01-24T19:00:00", "2018-01-24T20:00:00", "2018-01-24T21:00:00", "2018-01-24T22:00:00", "2018-01-24T23:00:00", "2018-01-25T00:00:00", "2018-01-25T01:00:00", "2018-01-25T02:00:00", "2018-01-25T03:00:00", "2018-01-25T04:00:00", "2018-01-25T05:00:00", "2018-01-25T06:00:00", "2018-01-25T07:00:00", "2018-01-25T08:00:00", "2018-01-25T09:00:00", "2018-01-25T10:00:00", "2018-01-25T11:00:00", "2018-01-25T12:00:00", "2018-01-25T13:00:00", "2018-01-25T14:00:00", "2018-01-25T15:00:00", "2018-01-25T16:00:00", "2018-01-25T17:00:00", "2018-01-25T18:00:00", "2018-01-25T19:00:00", "2018-01-25T20:00:00", "2018-01-25T21:00:00", "2018-01-25T22:00:00", "2018-01-25T23:00:00" ], "xaxis": "x", "y": [ 29.83885677823433, 33.6993463496901, 32.08503270612679, 37.527191611735795, 31.802267240063458, 28.953163992553172, 42.22412721160745, 43.27692227013378, 54.03181777559293, 53.48550785435142, 49.39106615383736, 49.68323133044724, 47.99123597938316, 32.378365450187964, 40.079081432670144, 39.29150257508463, 46.36238144501525, 53.91189541744889, 73.96141458604406, 70.85271509694213, 58.95601014294316, 51.10217655427115, 51.82626868327121, 46.24975583110782, 27.242, 26.622, 25.732, 25.392, 25.992, 27.402, 28.942, 32.182, 33.082, 32.342, 30.912, 30.162, 30.062, 29.562, 29.462, 29.512, 29.672, 30.072, 29.552, 28.862, 28.412, 28.072, 27.162, 25.502, 26.192, 25.222, 24.052, 23.892, 23.682, 26.092, 28.202, 30.902, 31.572, 31.462, 31.172, 30.912, 30.572, 30.602, 30.632, 31.062, 32.082, 36.262, 34.472, 32.182, 31.492, 30.732, 29.712, 28.982 ], "yaxis": "y" }, { "hovertemplate": "=8
Time=%{x}
EUR/MWh=%{y}", "legendgroup": "8", "line": { "color": "#FF97FF", "dash": "solid" }, "marker": { "symbol": "circle" }, "mode": "lines", "name": "8", "orientation": "v", "showlegend": true, "type": "scatter", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00", "2018-01-24T00:00:00", "2018-01-24T01:00:00", "2018-01-24T02:00:00", "2018-01-24T03:00:00", "2018-01-24T04:00:00", "2018-01-24T05:00:00", "2018-01-24T06:00:00", "2018-01-24T07:00:00", "2018-01-24T08:00:00", "2018-01-24T09:00:00", "2018-01-24T10:00:00", "2018-01-24T11:00:00", "2018-01-24T12:00:00", "2018-01-24T13:00:00", "2018-01-24T14:00:00", "2018-01-24T15:00:00", "2018-01-24T16:00:00", "2018-01-24T17:00:00", "2018-01-24T18:00:00", "2018-01-24T19:00:00", "2018-01-24T20:00:00", "2018-01-24T21:00:00", "2018-01-24T22:00:00", "2018-01-24T23:00:00", "2018-01-25T00:00:00", "2018-01-25T01:00:00", "2018-01-25T02:00:00", "2018-01-25T03:00:00", "2018-01-25T04:00:00", "2018-01-25T05:00:00", "2018-01-25T06:00:00", "2018-01-25T07:00:00", "2018-01-25T08:00:00", "2018-01-25T09:00:00", "2018-01-25T10:00:00", "2018-01-25T11:00:00", "2018-01-25T12:00:00", "2018-01-25T13:00:00", "2018-01-25T14:00:00", "2018-01-25T15:00:00", "2018-01-25T16:00:00", "2018-01-25T17:00:00", "2018-01-25T18:00:00", "2018-01-25T19:00:00", "2018-01-25T20:00:00", "2018-01-25T21:00:00", "2018-01-25T22:00:00", "2018-01-25T23:00:00" ], "xaxis": "x", "y": [ 29.93227883576153, 36.98775697574074, 36.42658995902406, 28.99040988121767, 29.553703261597807, 39.69066832659008, 40.85321844893519, 46.69187486266235, 53.41606943876772, 64.63548367033422, 60.57510426310269, 40.777990024016965, 53.715753720173545, 42.46518071355044, 41.311691911561276, 51.563778217252654, 46.659760523543746, 60.11102240027948, 56.121528169768595, 59.41414482942551, 43.54022872965482, 40.2457071697066, 46.92059468036083, 39.40723132420954, 27.242, 26.622, 25.732, 25.392, 25.992, 27.402, 28.942, 32.182, 33.082, 32.342, 30.912, 30.162, 30.062, 29.562, 29.462, 29.512, 29.672, 30.072, 29.552, 28.862, 28.412, 28.072, 27.162, 25.502, 26.192, 25.222, 24.052, 23.892, 23.682, 26.092, 28.202, 30.902, 31.572, 31.462, 31.172, 30.912, 30.572, 30.602, 30.632, 31.062, 32.082, 36.262, 34.472, 32.182, 31.492, 30.732, 29.712, 28.982 ], "yaxis": "y" }, { "hovertemplate": "=9
Time=%{x}
EUR/MWh=%{y}", "legendgroup": "9", "line": { "color": "#FECB52", "dash": "solid" }, "marker": { "symbol": "circle" }, "mode": "lines", "name": "9", "orientation": "v", "showlegend": true, "type": "scatter", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00", "2018-01-24T00:00:00", "2018-01-24T01:00:00", "2018-01-24T02:00:00", "2018-01-24T03:00:00", "2018-01-24T04:00:00", "2018-01-24T05:00:00", "2018-01-24T06:00:00", "2018-01-24T07:00:00", "2018-01-24T08:00:00", "2018-01-24T09:00:00", "2018-01-24T10:00:00", "2018-01-24T11:00:00", "2018-01-24T12:00:00", "2018-01-24T13:00:00", "2018-01-24T14:00:00", "2018-01-24T15:00:00", "2018-01-24T16:00:00", "2018-01-24T17:00:00", "2018-01-24T18:00:00", "2018-01-24T19:00:00", "2018-01-24T20:00:00", "2018-01-24T21:00:00", "2018-01-24T22:00:00", "2018-01-24T23:00:00", "2018-01-25T00:00:00", "2018-01-25T01:00:00", "2018-01-25T02:00:00", "2018-01-25T03:00:00", "2018-01-25T04:00:00", "2018-01-25T05:00:00", "2018-01-25T06:00:00", "2018-01-25T07:00:00", "2018-01-25T08:00:00", "2018-01-25T09:00:00", "2018-01-25T10:00:00", "2018-01-25T11:00:00", "2018-01-25T12:00:00", "2018-01-25T13:00:00", "2018-01-25T14:00:00", "2018-01-25T15:00:00", "2018-01-25T16:00:00", "2018-01-25T17:00:00", "2018-01-25T18:00:00", "2018-01-25T19:00:00", "2018-01-25T20:00:00", "2018-01-25T21:00:00", "2018-01-25T22:00:00", "2018-01-25T23:00:00" ], "xaxis": "x", "y": [ 46.54866447289529, 38.79637418511707, 45.003988815437644, 40.88554303114959, 46.706920769563055, 46.564680245777616, 38.9045882715515, 51.35944374090656, 58.50087160008804, 54.93922457297462, 45.3393497791437, 45.9148773821524, 41.33848577095818, 34.72964629465234, 49.71196176709573, 37.664474969438864, 44.22456435168797, 53.38040630699615, 55.876500217206456, 53.16595109294248, 49.330592191903854, 39.75846030900367, 42.52990511682548, 41.27354268730056, 27.242, 26.622, 25.732, 25.392, 25.992, 27.402, 28.942, 32.182, 33.082, 32.342, 30.912, 30.162, 30.062, 29.562, 29.462, 29.512, 29.672, 30.072, 29.552, 28.862, 28.412, 28.072, 27.162, 25.502, 26.192, 25.222, 24.052, 23.892, 23.682, 26.092, 28.202, 30.902, 31.572, 31.462, 31.172, 30.912, 30.572, 30.602, 30.632, 31.062, 32.082, 36.262, 34.472, 32.182, 31.492, 30.732, 29.712, 28.982 ], "yaxis": "y" } ], "layout": { "legend": { "title": { "text": "" }, "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.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.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.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.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.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.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.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.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.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.0, "#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.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.0, "#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.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.0, "#f0f921" ] ], "sequentialminus": [ [ 0.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.0, "#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": "Combined price input" }, "xaxis": { "anchor": "y", "domain": [ 0.0, 1.0 ], "title": { "text": "Time" } }, "yaxis": { "anchor": "x", "domain": [ 0.0, 1.0 ], "title": { "text": "EUR/MWh" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# Plot the combined price\n", "combined_price.plot(title=\"Combined price input\", labels=dict(index=\"Time\", value=\"EUR/MWh\", variable=\"\"))" ] }, { "cell_type": "markdown", "id": "18af6232", "metadata": { "Collapsed": "false" }, "source": [ "This price is then set as the day ahead market price to consider for all scenarios. We also define a slightly higher buy-back price" ] }, { "cell_type": "code", "execution_count": 17, "id": "5c6c926f", "metadata": { "Collapsed": "false" }, "outputs": [], "source": [ "day_ahead_market.sale_price.set(combined_price)\n", "\n", "# Make sure that the buy price is slightly higher, so no arbitrage occurs\n", "\n", "day_ahead_market.buy_price.set(day_ahead_market.sale_price.get()+0.1)" ] }, { "cell_type": "markdown", "id": "9e14f985", "metadata": { "Collapsed": "false" }, "source": [ "### Create bid groups and configure limits" ] }, { "cell_type": "markdown", "id": "5b1f6391", "metadata": { "Collapsed": "false" }, "source": [ "Now we need to create a bid group, which is the connection between a set of hydropower plants and their bid matrix." ] }, { "cell_type": "code", "execution_count": 18, "id": "4140d225", "metadata": { "Collapsed": "false" }, "outputs": [], "source": [ "# Create a bid group\n", "bg=shop.model.bid_group.add_object('bg')\n", "\n", "# Add all plants in the system to the bid group\n", "for plant in shop.model.plant:\n", " bg.connect_to(plant)\n", "\n", "# Defining which periods the bid curve should consider\n", "day_ahead_market.bid_flag.set(pd.Series([1,0],index=[stochastic_prices_start,stochastic_prices_end]))" ] }, { "cell_type": "markdown", "id": "acc4a9a5", "metadata": { "Collapsed": "false" }, "source": [ "## Running multi price scenarios in SHOP" ] }, { "cell_type": "markdown", "id": "4d89b307", "metadata": { "Collapsed": "false" }, "source": [ "It is time to optimize. We call the predefined function run_model, which calls for five full and three incremental iterations. Since we have defined scenarios in the SHOP instance earlier, all scenarios will be computed and optimized with a single call." ] }, { "cell_type": "code", "execution_count": 19, "id": "cf586dd0", "metadata": { "Collapsed": "false" }, "outputs": [], "source": [ "#Optimize model by calling \"run_model\" bp.py\n", "run_model(shop)" ] }, { "cell_type": "markdown", "id": "64a85ecf", "metadata": { "Collapsed": "false" }, "source": [ "## Creating and plotting the bid matrix" ] }, { "cell_type": "markdown", "id": "839fa2ff", "metadata": { "Collapsed": "false" }, "source": [ "Once SHOP has finished optimizing all scenarios, we can retrive and start processing the bid matrix the way we want it." ] }, { "cell_type": "code", "execution_count": 20, "id": "6f097897", "metadata": { "Collapsed": "false" }, "outputs": [], "source": [ "# Get bid matrix as an array\n", "bid_result=bg.bid_curves.get()\n", "\n", "# Convert bid matrix to a dataframe structure of choice\n", "bid_matrix=pd.DataFrame(index=bid_result[0].index)\n", "for t in range (0, 23):\n", " bid_matrix[t]=bid_result[t].values\n", "\n", "# Transpose the bid matrix if necessary depending on the viewing needs \n", "bid_matrix_transposed=bid_matrix.transpose()" ] }, { "cell_type": "markdown", "id": "63804080", "metadata": { "Collapsed": "false" }, "source": [ "When we are satisfied with a data structure that fulfill our needs, we can either print it or plot it to review it" ] }, { "cell_type": "code", "execution_count": 21, "id": "87f4a7f9", "metadata": { "Collapsed": "false" }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "coloraxis": "coloraxis", "hovertemplate": "x: %{x}
y: %{y}
color: %{z}", "name": "0", "type": "heatmap", "x": [ 25.7385904884098, 28.47852434471662, 28.567144764921423, 28.953163992553172, 28.99040988121767, 29.553703261597807, 29.83885677823433, 29.923425146009553, 29.93227883576153, 30.47929369560378, 30.64244779413558, 30.84143666529853, 31.28058529475953, 31.399707877439493, 31.55864788701061, 31.802267240063458, 32.08503270612679, 32.378365450187964, 32.90962859918502, 33.28553820479103, 33.30079368907467, 33.42898384611474, 33.6993463496901, 33.73190908915484, 33.749174228915635, 33.75162850526158, 33.78857578711016, 33.84338460894348, 33.9696063734057, 34.09604723329545, 34.43855641685243, 34.47371124763938, 34.62346957920782, 34.66852142919224, 34.7280738365677, 34.72964629465234, 35.03191004478626, 35.47086224821935, 35.48029110424704, 35.63193002550175, 36.11937041948169, 36.42658995902406, 36.57564545317568, 36.780848917322885, 36.85633331407592, 36.96327342983141, 36.98775697574074, 37.13397283607992, 37.37508689986337, 37.42526162689267, 37.527191611735795, 37.54483625037337, 37.664474969438864, 37.70655838878481, 37.82846182019187, 37.87059975592636, 38.05367612977148, 38.05804786206631, 38.09788889449211, 38.194048733917754, 38.211738224562396, 38.237187361867846, 38.26022728649826, 38.290841505691326, 38.30018021897476, 38.688924790028935, 38.70346824980726, 38.72012568912313, 38.79637418511707, 38.80397234301293, 38.9045882715515, 38.91648373357578, 39.21637545527792, 39.29150257508463, 39.30318270980665, 39.5702239851003, 39.69066832659008, 39.75846030900367, 39.93746190323393, 39.99991112626061, 40.079081432670144, 40.11727135214596, 40.2457071697066, 40.44714002248111, 40.50753566627801, 40.777990024016965, 40.79919610418443, 40.81178048525122, 40.85321844893519, 40.88554303114959, 41.136482401465926, 41.311691911561276, 41.33848577095818, 41.46123136424681, 41.49396971475139, 41.50705054972993, 41.63094728212825, 41.700816040923726, 41.83473160042925, 41.90296077026431, 41.93283958287484, 42.14680390729975, 42.22412721160745, 42.2639939367465, 42.41688837159459, 42.46518071355044, 42.479485028495645, 42.52990511682548, 42.574140822722775, 42.77078719357291, 42.77109897478207, 43.060226041834014, 43.1222213657023, 43.138390473686016, 43.24421031420755, 43.27692227013378, 43.362871627306525, 43.54022872965482, 43.549433968320535, 43.69050794432827, 43.884362898890004, 44.01463732532422, 44.108610402454936, 44.11692579762013, 44.12831968551308, 44.22456435168797, 44.29423031503364, 44.29502173658242, 44.795150046331486, 45.003988815437644, 45.007856590396585, 45.121995478221244, 45.250958178628906, 45.3393497791437, 45.36328446516111, 45.9148773821524, 46.10862607282206, 46.175475331181204, 46.202766220740195, 46.24326639374972, 46.296312210030116, 46.36238144501525, 46.48571170034651, 46.54866447289529, 46.564680245777616, 46.659760523543746, 46.69187486266235, 46.706920769563055, 46.92059468036083, 47.07770347974001, 47.593982027701074, 47.60151878277625, 47.6088277963454, 47.708656045739914, 47.71087538922627, 47.94751030975122, 47.99123597938316, 48.16582265504936, 48.31661977281291, 48.317102814015996, 48.468647031564394, 48.48044709718775, 48.73569665784232, 49.06669510663274, 49.330592191903854, 49.39106615383736, 49.47362653799953, 49.48684060432931, 49.548370526927386, 49.68323133044724, 49.71196176709573, 49.71405910604083, 49.96689611434518, 50.67242464460132, 50.687626812451406, 50.87969915242537, 50.9056494242492, 50.93594863387132, 51.10217655427115, 51.175027264422994, 51.35944374090656, 51.563778217252654, 51.591232223645896, 51.82626868327121, 51.83157067457943, 52.04463673650779, 53.16595109294248, 53.38040630699615, 53.41606943876772, 53.48550785435142, 53.58639585781828, 53.715753720173545, 53.74082984083143, 53.898014509384915, 53.91189541744889, 54.03181777559293, 54.10620785334244, 54.10928992277162, 54.17468219492054, 54.291573962141264, 54.54647867289708, 54.60177345780331, 54.693474100441335, 54.93922457297462, 55.195022080319625, 55.5544635153597, 55.77624532195394, 55.876500217206456, 56.121528169768595, 56.201060307257364, 56.7013936281821, 56.71036696579608, 56.79788602641253, 56.95479156611447, 57.317744778949475, 57.513099511561066, 58.22479969565341, 58.237504769322314, 58.24584690285616, 58.270617107738786, 58.50087160008804, 58.95601014294316, 59.00434355483017, 59.41414482942551, 60.11102240027948, 60.1729813513571, 60.57510426310269, 64.63548367033422, 70.85271509694213, 73.96141458604406 ], "xaxis": "x", "y": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "yaxis": "y", "z": [ [ 358.84426050666974, 358.84426050666974, 358.84426050666974, 358.84426050666974, 358.84426050666974, 358.84426050666974, 358.84426050666974, 389.0206071378119, 392.1798499841486, 405.6797000807977, 409.70620106738596, 414.61707301769445, 427.1465481163408, 430.5452685796312, 432.5350000843949, 435.58481179163834, 439.1246842114499, 442.79684582646564, 449.4476005843883, 454.1535219394696, 454.34450165427836, 455.9492831989095, 459.33388593375435, 459.74153098655904, 459.95766909180327, 459.9883935832645, 460.45092766079404, 461.137066033599, 462.7172057480424, 464.30008826510596, 468.58787782188995, 469.0279726384826, 470.90276093896546, 471.4667541430918, 472.21227631500574, 472.2319615371179, 476.01592825520447, 481.5110646315832, 481.629102197724, 483.5274331452497, 489.6295814414112, 493.4755884874401, 495.3415781364397, 497.9104706299162, 498.85544152014626, 500.19419894199325, 500.50070252643104, 502.3311434871308, 505.34959208447316, 505.97771734621506, 507.2537541519867, 507.474643111803, 508.97237127450114, 509.49920341404084, 511.02528296231776, 511.5527975793286, 513.8446863856807, 513.899415044002, 514.3981752845093, 515.6019770365949, 515.8234274878303, 516.1099587690503, 516.369364777369, 516.7140496027781, 516.819193971718, 521.1960606086716, 521.1960606086716, 521.1960606086716, 521.1960606086716, 521.1960606086716, 521.1960606086716, 521.1960606086716, 521.1960606086716, 521.1960606086716, 521.1960606086716, 521.1960606086716, 521.1960606086716, 521.1960606086716, 521.1960606086716, 521.1960606086716, 521.1960606086716, 521.1960606086716, 521.1960606086716, 521.1960606086716, 521.1960606086716, 521.1960606086716, 521.1960606086716, 521.1960606086716, 521.1960606086716, 521.1960606086716, 521.1960606086716, 521.1960606086716, 521.1960606086716, 521.1960606086716, 521.1960606086716, 521.1960606086716, 521.1960606086716, 521.1960606086716, 521.1960606086716, 521.1960606086716, 521.1960606086716, 521.1960606086716, 521.1960606086716, 521.1960606086716, 521.1960606086716, 521.1960606086716, 521.1960606086716, 524.8877191488117, 528.1265695131065, 542.5246254940369, 542.5474534937804, 563.7167620298057, 568.2559362833281, 568.2820245237453, 568.4527608094593, 568.5055403054947, 568.6442163224954, 568.9303752578205, 568.9452275601028, 569.1728450518297, 569.4856226438765, 569.6958154733426, 569.8474374571532, 569.8608540308104, 569.879237635332, 570.0345247416202, 570.1469281223444, 570.1482050508959, 570.9551430463233, 571.2920964529294, 571.2983369606377, 571.4824957125943, 571.6905721220343, 571.8331886057279, 571.8718063107839, 572.7617804915142, 573.074386630815, 573.182245365233, 573.2262781769832, 573.2916236649025, 573.3772110708156, 573.4838112672034, 573.6827999408549, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984, 573.7843718436984 ], [ 354.32581710025465, 354.32581710025465, 355.4705385632371, 360.45679899816577, 360.9379089733111, 368.21404263400575, 371.897407596442, 372.98978817258876, 373.1041524315513, 380.1700143309267, 382.27749698482614, 384.8478620450285, 390.52040185494553, 392.0591237071385, 394.11217242731186, 397.2590352112278, 400.9115534146495, 404.7005705186799, 411.5629655258704, 416.41863866174594, 416.61569573106834, 418.2715446174506, 421.7638521455931, 455.451530358487, 473.3131256088546, 475.85218937150887, 480.6025503384222, 487.6493931602166, 488.384242367111, 489.1203671234468, 491.11441785600664, 491.31908540785366, 492.4439298745766, 492.7823172193064, 493.22961918384317, 493.24143001771887, 495.5117524983995, 498.8087507489569, 498.87957149341366, 500.0185411903032, 503.6797373607146, 505.98728309459227, 507.10684850424354, 508.6481449301647, 509.21511309228504, 509.5311933507845, 509.6035587626352, 510.4941732261755, 511.96282151146, 512.2684404606822, 512.8893055197746, 512.9967806619248, 513.7255112753617, 513.981845313665, 514.724370501524, 514.9810366042424, 516.0961718987361, 516.122800528513, 516.3654759786215, 516.9511945429792, 517.0589428828941, 517.2139559554588, 517.354294288572, 517.5407683573911, 517.597651332342, 519.9655308277707, 520.0541163998041, 520.1555784186703, 520.6200151302409, 520.6200151302409, 520.6200151302407, 520.6200151302407, 520.6292524616377, 520.6315665438626, 520.6319263179656, 520.6401517826187, 520.6438617359676, 520.6459498796618, 520.6514635265111, 520.6533871013444, 520.6558257227007, 520.6570020570797, 520.6609581656488, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043, 520.6671627451043 ], [ 383.90113583521446, 383.90113583521446, 383.90113583521446, 383.90113583521446, 383.90113583521446, 383.90113583521446, 383.90113583521446, 383.90113583521446, 384.13721063293775, 398.7228157316562, 403.07315687615187, 408.3789964554634, 420.0884562145798, 420.0884562145798, 420.0884562145798, 420.0884562145799, 420.0884562145799, 432.5958272328353, 455.24827721450913, 471.27663068622354, 471.41182317143097, 472.5478307597291, 474.94375461803975, 475.2323221647364, 475.3853240038336, 475.4070735407493, 475.7344964374532, 476.2202064088425, 477.3387703106922, 478.45927581300464, 490.5560741750756, 491.7976785462814, 497.0868691052325, 498.67801810579385, 500.78130029085986, 500.7886645936728, 502.2042583109939, 504.26000591919643, 504.304164139785, 505.0143356510377, 507.29716830622976, 508.7359715031787, 509.92315129036007, 511.55753186976585, 512.15874117495, 513.0104853161932, 513.2054890024882, 514.3700520060057, 514.8285338797631, 514.9239418476878, 515.1177631856456, 515.1513147207878, 515.3788094725678, 515.4588317021013, 515.6906328370992, 515.7707587303327, 516.1188810986596, 516.1271940107422, 516.202952309169, 516.3858016322996, 516.4194384541809, 516.4678303562301, 516.5116411055909, 516.5698544854287, 516.58761218358, 517.326815598566, 517.3544701973292, 517.386144558707, 517.5311321748001, 517.5455801817496, 517.7369028226705, 517.7595222154696, 518.3297706544565, 518.4726259575378, 518.4948359023625, 519.0026187431724, 519.2316453976247, 519.3605528310402, 519.7009269470932, 519.8196750463898, 519.9702185271765, 520.0428372104883, 521.2527886974231, 523.1504211831351, 523.7193886285437, 526.2672499534406, 526.4670254422256, 526.585578746694, 526.9759521388461, 527.280471369211, 529.6444884324527, 531.2950794536442, 531.5474955680409, 532.7038413283982, 533.0122585333894, 533.1354887664602, 534.3026790287944, 534.9608895669487, 536.2224638958614, 536.8652284070562, 537.1467068484488, 539.1623941964638, 539.890831549834, 540.2664028217531, 541.7067708771918, 542.1617171068872, 542.2964733412948, 542.7714643679783, 543.1881943669973, 545.0407349847897, 545.0436721727548, 547.7674429349679, 548.351480438852, 548.5038042735804, 549.5006980982005, 549.8088666485723, 550.6185672016378, 552.2893899812993, 552.3761094994425, 553.705120909813, 555.5313645151914, 556.7586369300631, 557.6439263031187, 557.7222628990595, 557.8296009598893, 558.7362902242985, 559.3925902933898, 559.4000460148383, 564.1115899091526, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052, 566.0789910906052 ], [ 209.93337391289856, 361.59777508068726, 366.5032084475042, 366.5032084475042, 366.5032084475042, 379.9655965235727, 386.7806016983643, 388.80173708820575, 389.01333518521477, 402.08667597541347, 405.9859651684694, 410.7416848337823, 421.23708470673637, 424.0840459750882, 427.88262086374823, 432.18405444308996, 437.1766663007333, 442.3558579347883, 451.7360369719893, 458.37323627528133, 458.6425927592571, 460.9059656773915, 460.9059656773915, 460.9059656773915, 460.9059656773915, 460.9059656773915, 460.9059656773915, 460.9059656773915, 460.9059656773915, 460.9059656773915, 460.9059656773915, 460.9059656773915, 460.9059656773915, 460.9059656773915, 460.9059656773915, 460.9059656773915, 460.9059656773915, 460.9059656773915, 460.90596567739146, 460.90596567739146, 460.90596567739146, 460.90596567739146, 460.90596567739146, 460.90596567739146, 460.90596567739146, 460.90596567739146, 460.90596567739146, 460.90596567739146, 460.90596567739146, 460.90596567739146, 460.90596567739146, 462.1266950107236, 470.40379814473147, 473.31530375829, 481.74908909155914, 484.66436637514175, 497.3303497587215, 497.6328043433344, 500.38917232294443, 507.04190911662414, 508.26574149795897, 510.0264184409596, 511.62041605189427, 513.7384347970585, 513.7790553953275, 515.4699775353275, 515.5332372178092, 515.6056920764289, 515.9373501357768, 515.9703998408171, 516.4080489139377, 516.4597906014109, 517.7642295301752, 518.0910099398697, 518.141815018243, 519.3033643704653, 519.3033643704653, 519.3033643704653, 519.3033643704653, 522.0069808834678, 525.4345038753362, 527.0878614660454, 532.6482380470246, 541.3688779625872, 543.983588794345, 555.6923792669519, 556.6104548768329, 557.1552709499416, 558.9492462382059, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889, 560.3486755667889 ], [ 352.7944413033969, 352.7944413033969, 352.7944413033969, 352.7944413033969, 352.7944413033969, 352.7944413033969, 366.29214457459284, 370.29517686338744, 370.71426507431676, 396.6071397271551, 404.3300169879283, 405.65244431235357, 408.5709097706935, 409.362566898911, 410.41884009837617, 412.03786978256426, 426.7970279851383, 442.10775328645354, 469.83743673191736, 469.86184089688766, 469.86283128752837, 469.8711534311856, 469.888705446459, 469.89081942932603, 469.89194028740644, 469.9697921976845, 471.1417940695389, 472.8803804707263, 476.8842513055213, 480.89507204943885, 491.7597793884308, 492.87492305869813, 497.62539551952244, 499.0544817708096, 499.25942648181865, 499.26483796696147, 500.3050537978538, 501.8156716963411, 501.8481203287122, 502.36997320190227, 504.0474592193612, 505.1047299918235, 505.61769221315933, 506.3238830543214, 506.5836563961564, 506.9516820072892, 507.0370195218928, 507.5466555918959, 508.3870597970486, 508.5619440444714, 508.91722148681185, 508.9787219579032, 509.39572327679775, 509.5424052331738, 509.96730021760345, 510.1141721911086, 510.75228575457845, 510.7675234480863, 510.9063895542888, 511.24155512759484, 511.30321193056807, 511.3919150185315, 511.4722207843668, 511.57892678958115, 511.61147691872316, 512.966447952423, 513.0171392499914, 513.1298803770761, 513.6459465751192, 513.697372539741, 514.3783627550445, 514.4588737970108, 516.4886053822177, 516.9970818653691, 517.0761355259042, 518.8835282339824, 519.6987214070173, 520.1575521048027, 521.369073341699, 521.7917430964006, 522.3275847349022, 522.586062312598, 523.4553435121425, 524.8186843248003, 525.2274550141934, 527.0579481973458, 527.2014755027014, 527.286649296718, 527.5671103352508, 527.7858900505655, 529.4843016072836, 530.6701572042659, 530.8515037996265, 531.682272339114, 531.9038525270884, 531.9923864278114, 532.8309461240426, 533.3038328904444, 534.210202160447, 534.671991836603, 534.87421805792, 536.3223745623001, 536.8457152938652, 537.1155418524451, 538.1503642271746, 538.4772171700803, 538.5740318460048, 538.9152858333811, 539.2146825921313, 540.5456274670528, 540.5477376692428, 542.5046117596735, 542.9242094273797, 543.0336454231214, 543.7498568324561, 543.971258376255, 544.5529820863713, 545.7533730489957, 545.8156760814472, 546.7704950518689, 548.0825470217917, 548.9642723211011, 549.6003022912806, 549.6565826717942, 549.7336989523083, 550.3851035250457, 550.8566177282854, 550.8619742393143, 554.2469500605612, 555.6604157056433, 555.6865936373117, 556.459110145614, 557.3319574014346, 557.9302107390511, 558.092205834867, 561.8255051718378, 563.136837924915, 563.5892880638153, 563.7739986660683, 564.0481125358917, 564.4071380140085, 564.8543087871751, 565.6890344449448, 566.1151123309676, 566.2235105218087, 566.8670342637007, 567.0843910085855, 567.1862249381488, 567.2868456759046, 567.360829454469, 567.6039491137168, 567.6074982314033, 567.6109401038099, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493, 567.657950017493 ], [ 352.4882257030639, 352.4882257030639, 352.4882257030639, 352.4882257030639, 353.37542456658866, 366.7931000422889, 373.5854705551494, 375.5998931523968, 375.81078846910435, 388.84070880084306, 392.7270472931449, 397.4669717970305, 407.9275133211112, 410.7650189831667, 414.55097767327374, 420.354002407307, 427.0894894403918, 434.07668954480874, 446.7314033648621, 455.6855882921128, 456.04897466318005, 459.10247038361956, 465.5425182523234, 466.3181642761463, 466.72942073756013, 466.78788171843536, 467.66796775320995, 473.57315778939426, 487.17249236583655, 489.29833600284024, 495.0569251892381, 495.8640158076945, 499.3021932000727, 499.3021932000727, 499.3021932000727, 499.3021932000727, 499.30219320007274, 499.3021932000728, 499.3021932000728, 499.9879107920137, 502.19213679421, 503.5813964981769, 504.2554317238926, 505.18337043599007, 505.5247140590013, 506.008301768878, 506.1190173952106, 506.780211677165, 507.87053963408147, 508.0974318640587, 508.55836355082397, 508.63815335028386, 509.1791646794444, 509.36946767511176, 509.92072012891526, 510.1112696499889, 510.9391487273102, 510.9589178849712, 511.139080712492, 511.5739195585269, 511.65391218065275, 511.7689942519684, 511.87318176204394, 512.0116205513107, 512.0538506063095, 513.8117699382177, 513.8775360761931, 513.9528617187199, 514.2976606306975, 514.332019820887, 514.7870092896691, 514.8408010702148, 516.1969240731157, 516.5366520747201, 516.5894701361311, 517.797042036063, 518.3416964237749, 518.3437318914247, 518.3491064496151, 518.3509814998599, 518.3533586039331, 518.3545052638017, 518.358361574569, 518.3644096357236, 518.3662230268469, 518.3743434723086, 518.3749801890503, 518.3753580375752, 518.3766022206121, 518.3775727725719, 518.3851072766852, 518.3851072766852, 518.3851072766852, 518.3851072766852, 518.3851072766853, 518.3851072766853, 518.3851072766853, 518.3851072766853, 518.3851072766853, 519.0690698214812, 519.3685896420797, 521.5134726031795, 522.2885991966024, 522.6882427338857, 524.2209312745294, 524.7050373127258, 524.8484307568368, 525.3538663646023, 525.7973067003047, 527.7685860307829, 527.7717114780037, 530.670062506285, 531.2915339323762, 531.4536209733053, 532.5144107731516, 532.842331407019, 533.7039297702638, 535.4818440458299, 535.5741218571894, 536.9883163412786, 538.9316131506033, 540.2375476715887, 541.1795797252104, 541.262937310418, 541.3771552113132, 542.3419587837317, 543.0403244488973, 543.0482580453022, 548.0617886552656, 550.1552905447829, 550.1940630113103, 551.3382470071797, 552.6310321453809, 553.5171127495101, 553.7570457400028, 559.2864827258081, 561.2287142939433, 561.8988439316857, 562.1724211467923, 562.578414675121, 563.1101718631628, 563.7724821653751, 565.0088049213257, 565.639874280934, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659, 565.8004242158659 ], [ 446.4817492743608, 446.4817492743608, 446.4817492743608, 446.4817492743608, 446.4817492743608, 446.4817492743608, 446.4817492743608, 446.4817492743608, 446.4817492743608, 446.4817492743608, 447.6568860280384, 449.0901269835564, 452.25314709430256, 453.11114163051053, 454.2559259084273, 456.01062320537415, 458.04727502614975, 460.16003892056204, 463.98652478808833, 466.69405832591093, 466.80393776159895, 469.0310943932686, 473.72833212739874, 474.2940722966814, 474.594034254782, 474.6366744852492, 475.2785910386826, 476.2308313185812, 478.42378939176, 480.6205539961551, 486.5712573666818, 487.1820321432343, 489.78391101601073, 490.5666351250889, 491.60128975131505, 491.6286094030893, 496.8800946276037, 505.0377776313116, 505.03863369696217, 505.05240131324456, 505.09665705081727, 505.12455015833797, 505.13808321984544, 505.15671407352613, 505.1635674605142, 505.17327677832475, 505.17549969090237, 505.18877493608943, 505.210666188566, 505.21522165745944, 505.2244760949573, 505.2260780887739, 506.32996045127226, 506.71825568489294, 507.8430340919955, 508.2318323373522, 509.92104116252494, 509.96137825582986, 510.3289834370128, 511.2162309063253, 511.3794482733844, 511.6142623371902, 511.82684708092086, 512.1093183149231, 512.195484741332, 515.7823525952815, 515.9165421692287, 516.0702370065591, 516.7737665206845, 516.843873193125, 517.7722360991113, 517.7722360991113, 517.7722360991113, 517.7722360991113, 517.7722360991113, 517.7722360991113, 517.7722360991113, 517.7722360991113, 517.7722360991112, 517.7722360991112, 517.7722360991112, 517.7722360991112, 517.7722360991112, 517.7722360991112, 517.7722360991112, 517.7722360991112, 517.7722360991112, 517.7722360991112, 517.7722360991112, 517.7722360991112, 517.7722360991112, 517.7722360991112, 517.7722360991112, 517.7722360991112, 517.7722360991112, 517.7722360991112, 517.7722360991112, 528.9832044474438, 550.4709641393024, 561.4188480954623, 561.6717004153618, 563.4823940500715, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388, 564.1367499353388 ], [ 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595886, 562.7224761595885, 562.7224761595885, 562.9427724392201, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836518, 563.2454896836517, 563.2454896836517, 563.2454896836517, 563.2454896836517, 563.2454896836517, 563.2454896836517, 563.2454896836517, 563.2454896836517, 563.2454896836517, 564.7520093460822, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108, 564.9544225716108 ], [ 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536396, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394, 561.8498391536394 ], [ 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.4503289998208, 560.450328999821, 560.450328999821, 560.450328999821, 560.450328999821, 560.450328999821, 560.450328999821, 560.450328999821, 560.450328999821, 560.450328999821, 560.450328999821, 560.450328999821, 560.450328999821, 560.450328999821, 560.450328999821, 560.450328999821, 560.450328999821, 560.450328999821, 560.450328999821, 560.450328999821, 560.450328999821, 560.450328999821, 560.4503289998211, 560.4503289998211, 560.4503289998211, 560.4503289998211, 560.4503289998211, 560.4503289998211, 560.4503289998211, 560.450328999821, 560.450328999821, 560.450328999821, 560.4503289998208, 560.802927160963, 561.2983908984673, 561.6041009031956, 561.7422949461261, 562.0800480634202, 562.1896772999257, 562.1896772999257, 562.1896772999257, 562.1896772999257, 562.1896772999257, 562.1896772999257, 562.1896772999257, 562.1896772999257, 562.1917624901331, 562.1931316230957, 562.1971969744665, 562.2349869491773, 562.3096854875157, 562.3176180945813, 562.3848757608504, 562.4992491461875, 562.50941801269, 562.5754154857922, 563.2418156656527, 563.2418156656527, 563.2418156656527 ], [ 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 544.9697289111149, 545.1315568017353, 545.8346492263017, 545.8514385683351, 546.004445357235, 546.3737407131988, 546.4416760049323, 546.5394116945541, 546.6278949659343, 546.745466803013, 546.7813314994064, 548.2742787173295, 548.3301318904198, 548.3941036588664, 548.6869308478257, 548.7161110590405, 549.1025197236889, 549.1482034406008, 550.2999173034575, 550.5884379230557, 550.6332946900349, 551.6588486365226, 552.1214069792774, 552.3817575001024, 553.0692010093073, 553.3090330242634, 553.6130812283983, 553.7597470297483, 554.2529960955522, 555.0265853352232, 555.2585307181175, 556.2971923767656, 556.378632892586, 556.42696235646, 556.586102051789, 556.7102424223069, 557.673958092381, 558.3468383590846, 558.4497383628983, 558.9211345074557, 559.0468639270915, 559.0468639270915, 559.0468639270915, 559.0468639270915, 559.0468639270915, 559.0468639270915, 559.0468639270915, 559.0468639270915, 559.0468639270915, 559.0468639270915, 559.0468639270915, 559.0468639270915, 559.0468639270915, 559.0468639270915, 559.0468639270915, 559.0468639270915, 559.0468639270915, 559.0468639270915, 559.0468639270915, 559.0468639270915, 559.0468639270915, 559.0468639270915, 559.0468639270915, 559.0468639270915, 559.0468639270915, 559.0468639270915, 559.0468639270915, 559.0468639270915, 559.0468639270915, 559.0468639270915, 559.0468639270915, 559.0468639270915, 559.0468639270915, 559.0468639270915, 559.0468639270915, 559.0468639270915, 559.0468639270915, 559.0468639270915, 559.0468639270915, 559.0468639270915, 559.0579925838277, 559.314460883719, 559.4045461545257, 559.4356283441482, 559.4483174991974, 559.4671484344706, 559.4918125842426, 559.5225320946818, 559.5798756535557, 559.6091461355575, 559.6165928193636, 559.6608012862251, 559.675733149384, 559.682728884906, 559.7820785736808, 559.8551277834033, 560.0951763362168, 560.0986806211728, 560.1020790155796, 560.1484950963788, 560.1495270009469, 560.2595526265351, 560.2798832867134, 560.3610589989325, 560.4311735330934, 560.431398127631, 560.5018600328436, 560.5073465840227, 560.6260272611172, 560.7799280941645, 560.9026295189306, 560.930747454689, 560.930747454689, 560.930747454689, 560.930747454689, 560.9307474546891, 560.9307474546891, 560.9307474546891, 560.9307474546891, 560.9693622939179, 560.9701943357735, 560.9807067987148, 560.982127103538, 560.9837854335107, 560.992883385112, 560.9968706348681, 561.006964078698, 561.01814767031, 561.0196502772176, 561.0325142433254, 561.0328044307994, 561.0444659177182, 561.1058374593948, 561.1175749770958, 561.1195268841283, 561.1233273728952, 561.1288491538962, 561.13592914123, 561.1373016021953, 561.1459046004372, 561.1466643273799, 561.1532278926803, 561.1572993947802, 561.157630893935, 561.1646643120464, 561.1772368782782, 561.2046537480458, 561.2106011074026, 561.2204641835668, 561.2468964479247, 561.2744093445084, 561.3130699050934, 561.3369241637697, 561.3477073124944, 561.3740618645342, 561.38261612879, 561.4364306442593, 561.4373957924828, 561.446809108855, 561.4636854495669, 561.5027237275906, 561.5237355607835, 561.6002841314354, 561.6016506552204, 561.6025479128192, 561.6052121298883, 561.6299776880115, 561.6789311738795, 561.6841297865501, 561.7282069169524, 561.8031612069198, 561.8098253461881, 561.8530766123934, 561.8530766123934, 561.8530766123934, 561.8530766123934 ], [ 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 514.9909746678418, 517.4873277027465, 517.5469388199691, 518.0901945122301, 519.4013899545718, 519.6425964670736, 519.9896102832961, 520.3037730808603, 520.7212157982833, 520.8485545955162, 526.1493133410154, 526.3476218894813, 526.5747557807451, 527.6144484531726, 527.7180537634847, 529.090010577418, 529.2522121335347, 533.3414105040861, 534.3658125587814, 534.525078001662, 538.1663413936716, 539.8086701720941, 540.7330533542929, 543.1738443947988, 544.0253759395627, 545.1049091995286, 545.6256510046229, 547.3769482158577, 550.1236025371768, 550.947132332534, 554.6349350924685, 554.6349350924685, 554.6349350924685, 554.6349350924685, 554.6349350924685, 554.6349350924685, 554.6349350924685, 554.6349350924685, 554.6349350924685, 554.6349350924685, 554.6349350924685, 554.6349350924685, 554.6349350924685, 554.6349350924685, 554.6349350924685, 554.6349350924685, 555.2132956521273, 555.4223059610854, 555.5300685122731, 555.9433528817358, 555.9897681155205, 556.0035164262345, 556.0519767015596, 556.0944929794558, 556.2834957676054, 556.2837954299769, 556.5616842186998, 556.621269803792, 556.6368104236244, 556.7385170801655, 556.7699575326343, 556.8525660652764, 557.0230293527351, 557.0318767866637, 557.1674672615122, 557.3537871348482, 557.4789978352247, 557.5693182083489, 557.5773103867145, 557.5773103867145, 557.5773103867145, 557.5773103867145, 557.5773103867145, 557.5773103867145, 557.5773103867145, 557.5773103867145, 557.5773103867145, 557.5773103867145, 557.5773103867145, 557.5773103867145, 557.5773103867145, 559.1999793875194, 559.7598501091808, 559.7704382594691, 559.7861512657307, 559.8067316529596, 559.832364785509, 559.8802136940511, 559.9046377208082, 559.9108514211676, 559.9477400783976, 559.960199600769, 559.9660370185323, 560.0489368989238, 560.1098909977577, 560.3101935509092, 560.3131176144598, 560.3159533202714, 560.3546840661244, 560.3555451132634, 560.4473532639857, 560.4643176784479, 560.5320527354637, 560.5905580671596, 560.5907454744935, 560.6495406613363, 560.6541187777059, 560.7531489212047, 560.8815676491254, 560.9839528056611, 561.0074151188297, 561.0394463852888, 561.044573096894, 561.0684450951404, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474, 561.1207675543474 ], [ 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 512.5897702424598, 540.4833330944393, 543.2629249023141, 543.6895821087015, 543.7400242670127, 545.0117012873275, 545.3302743753686, 545.3798034481815, 546.5121796649676, 547.022918342348, 547.3103871184371, 548.0694351264659, 548.3342481776858, 548.6699662121179, 548.8319088050292, 549.3765349682662, 550.2307016940294, 550.4868066371994, 551.6336558727453, 551.7235792780558, 551.7769427658063, 551.7769427658063, 551.7769427658063, 551.7769427658064, 551.7769427658064, 551.7769427658064, 553.974183622098, 554.5602253639561, 554.7943824060071, 554.7943824060071, 554.7943824060071, 554.794382406007, 554.794382406007, 554.794382406007, 554.794382406007, 555.2358206823782, 555.4634195749438, 556.3362929782518, 556.6119936662369, 556.6936569136966, 556.9815048928548, 557.2340462701304, 558.3566992113095, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3584791683459, 558.3585458592189, 558.379468745511, 558.381097916424, 558.4163388356757, 558.462037992126, 558.4984728280918, 558.5068221392673, 558.5182208026938, 558.5200451969977, 558.5285402989217, 558.5471597969332, 558.5511264521368, 558.5514160203235, 558.5863238515873, 558.6837323403647, 558.6858312210378, 558.7123496048741, 558.715932417834, 558.7201156649938, 558.7430658503151, 558.7531239518347, 558.7785853322177, 558.8067966825635, 558.8105871079807, 558.8430373142558, 558.843769331373, 558.8731862042735, 559.0279999817761, 559.0576086473588, 559.0625324620906, 559.072119446649, 559.0860485048403, 559.1039082416803, 559.1039082416803, 559.1039082416803, 559.1039082416803, 559.1039082416803, 559.1039082416803, 559.1039082416803, 559.1039082416803, 559.1039082416803, 559.1039082416803, 559.1039082416803, 559.1039082416803, 559.1039082416803, 559.1039082416803, 559.1039082416803, 559.1039082416803, 559.1039082416803, 559.1039082416803, 559.1039082416803, 559.1039082416803, 559.1039082416803, 559.1039082416803, 559.1039082416803, 559.1039082416803, 559.1039082416803, 559.1039082416803, 559.1039082416803, 559.1039082416803, 559.1039082416803, 559.1039082416803, 559.1039082416803, 559.1039082416803, 559.1039082416803, 559.1039082416803, 559.1039082416803, 559.1039082416803, 559.1039082416803, 559.1039082416803, 559.1039082416803 ], [ 494.6903601213247, 494.6903601213247, 494.6903601213247, 494.6903601213247, 494.6903601213247, 494.6903601213247, 494.6903601213247, 494.6903601213247, 494.6903601213247, 494.6903601213247, 494.6903601213247, 494.6903601213247, 494.6903601213247, 494.6903601213247, 494.6903601213247, 494.6903601213247, 494.6903601213247, 494.6903601213247, 496.2752125495214, 497.3966177370483, 497.4421275589809, 497.8245415887126, 498.63108100537204, 498.72822144661444, 498.7797264281377, 498.78704797083014, 498.8972682815435, 499.06077274168365, 499.43731470638966, 499.8145102717095, 500.83627606191106, 500.9411491724227, 501.3879049014376, 501.52230257983365, 501.69995799902114, 501.7046489210593, 501.7046489210593, 501.7046489210593, 501.7046489210593, 501.7046489210593, 505.7769912618818, 510.89894567978723, 513.3839941500773, 516.8051397950578, 518.0636132632756, 519.846515480892, 520.254704381647, 522.6924105670925, 526.7122565900843, 527.5487680475187, 529.248141521491, 529.5423123771492, 531.5369253063361, 532.238538738739, 534.2709088802452, 534.9734312081486, 538.0256747055087, 538.0985600876518, 538.7627885164529, 540.3659623090604, 540.6608809359576, 541.0851681458391, 541.4692890384254, 541.9796883296953, 542.1353830613223, 544.3692413915808, 544.4528130507, 544.5485323541893, 544.9866821075964, 545.0303437033436, 545.6085169997915, 545.676872364506, 547.4001520462859, 547.8318579912807, 547.8989760121873, 549.4334858722734, 550.1255999636415, 550.5151557180246, 551.5437596707859, 551.9026141152301, 552.0551861266939, 552.1287833261531, 552.3762967174473, 552.7644853820675, 552.8808760501809, 553.4020785974583, 553.4429456150707, 553.4671974390114, 553.5470540640133, 553.6093479561534, 554.0929424528904, 554.4305951486441, 554.4822305812761, 554.7187781319385, 554.78186941218, 554.8070779707269, 555.0458439239369, 555.1804905806363, 555.4385641843226, 555.5700511287887, 555.6276316883051, 556.0399702131824, 556.1889827989141, 556.2658114322843, 556.5604599251892, 556.6535258748445, 556.6535258748445, 556.6535258748445, 556.6535258748445, 556.6535258748445, 556.6535258748445, 556.6535258748445, 556.6535258748445, 556.6535258748445, 556.6535258748445, 556.6535258748445, 556.6535258748445, 556.6535258748445, 556.6535258748445, 556.6535258748445, 556.6535258748445, 556.6535258748445, 556.6535258748445, 556.6535258748445, 556.6535258748445, 556.6535258748445, 556.6535258748445, 556.6535258748445, 556.6535258748445, 556.6535258748445, 556.6535258748445, 556.6535258748445, 556.6535258748445, 556.6535258748445, 556.6535258748445, 556.8306329668062, 556.8928423718202, 556.9143065302295, 556.9230691701002, 556.9360730859315, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634, 556.9531051941634 ], [ 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 495.7922666629723, 500.2773090753096, 501.9271385375656, 504.26448189936957, 504.7996080594668, 507.9953842014679, 513.2653088919401, 513.2653088919401, 513.2653088919401, 513.2653088919401, 513.2653088919401, 513.2653088919401, 513.2653088919401, 513.2653088919401, 513.2653088919401, 513.2653088919401, 513.2653088919401, 513.2653088919401, 513.6208440013945, 514.1323376333581, 514.595409311896, 515.2107141836033, 515.3984098338675, 523.2116559242187, 523.5039600197975, 523.8387522774927, 525.3712450956028, 525.5239579098621, 527.5462035405837, 527.7852864219269, 533.8127090448692, 535.3226637010007, 535.5574187914812, 540.9245913657311, 543.3453615843299, 544.7078897866243, 548.3055824887851, 549.5607283711714, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719012, 551.1519456719011, 551.1519456719011, 551.1519456719011, 551.1519456719011, 551.1519456719011, 551.1519456719011, 551.1519456719011, 551.1519456719011, 551.1519456719011, 551.1519456719011, 551.1519456719011, 551.1519456719011, 551.1519456719011, 551.1519456719011, 551.1519456719011, 551.1519456719011, 551.1519456719011, 551.1519456719011, 551.1519456719011, 551.1519456719011, 551.1519456719011, 551.1519456719011, 551.1519456719011, 551.1519456719011, 551.1519456719011, 551.1519456719011, 551.1519456719011, 551.1519456719011, 551.1519456719011, 551.1519456719011, 551.1519456719011, 551.1519456719011, 551.1519456719011, 551.1519456719011, 551.1519456719011, 551.1519456719011, 551.1519456719011, 551.1519456719011, 551.1519456719011, 551.1519456719011, 551.1590808970537, 552.0192418097125, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967, 554.4194761288967 ], [ 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1107060982839, 510.1199214089064, 510.20390356164694, 510.40660188120455, 510.4438901093143, 510.49753513822463, 510.54610171272407, 511.45698549130617, 511.73484599753243, 523.3014034051201, 523.7341239495505, 524.2297430332793, 526.4984116445593, 526.7244843309406, 529.718172218088, 530.0721052492823, 538.9949689325534, 550.1388498379804, 550.1430257489403, 550.238499013145, 550.2815605751614, 550.3057977341579, 550.3697948315362, 550.3921218338427, 550.420426999674, 550.4340807551396, 550.4799994496552, 550.5520162266546, 550.573609028182, 550.6703025461533, 550.6778841969387, 550.6823833963119, 550.6971984006613, 550.7087551660888, 550.7984716369797, 550.8611129789599, 550.8706923865419, 550.9145766978534, 550.9262813947544, 550.930958087571, 550.9752539570142, 551.0002336102937, 551.048111435846, 551.0725048991821, 551.0831872469478, 551.1596843070135, 551.1873291280369, 551.2015823792543, 551.2562455797563, 551.2735111785576, 551.27862529299, 551.2966516089932, 551.3124668691314, 551.3827723711494, 551.3828838399465, 551.4862532716234, 551.5084179947683, 551.5141988146688, 551.5520317885455, 551.5637270487908, 551.5944558777951, 551.6578650323254, 551.6611561122613, 551.7115932327738, 551.7809007406634, 551.8274767792191, 551.8610742686377, 551.8640472095012, 551.8681207807795, 551.9025304143909, 551.9274375637342, 551.9277205147445, 552.1065276381016, 552.1809553515083, 552.182333781612, 552.2230115564711, 552.2689723660811, 552.3004741065809, 552.3090041508777, 552.5055854643888, 552.5746352489848, 552.598459548773, 552.6081857050581, 552.6115070700497, 552.6158572864576, 552.6212755360057, 552.6313896852063, 552.6365523578403, 552.6378657899422, 552.6456631962866, 552.6482968502627, 552.6495307449533, 552.667053856442, 552.6799381388379, 552.7222774516782, 552.7228955308764, 552.7234949332983, 552.7657377649901, 552.7666768914792, 552.8668101621793, 552.8853129017753, 552.9591901419406, 553.02300070963, 553.0232051109729, 553.0873318177377, 553.092325075549, 553.2003352259377, 553.3403989037774, 553.4520682982092, 553.4776581629137, 553.5125940095676, 553.5181856089728, 553.5442223088056, 553.6012893440333, 553.6134467744914, 553.6143342741381, 553.7213235407238, 554.0198715282739, 554.0263044029535, 554.1075807909438, 554.1185617805099, 554.1313830452343, 554.2017232355764, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667, 554.2325503842667 ], [ 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 507.6296447224239, 508.2001477785422, 509.57710713245325, 509.83041152391803, 510.19483005738283, 510.5247499066956, 510.9631297514662, 511.09685531388317, 516.6634772694979, 516.8717321199595, 517.110258068164, 518.2020972435162, 518.3108989496099, 519.7516672036039, 519.9220040906168, 524.2162990252247, 525.2920806713685, 525.4593341823611, 529.2832276506966, 531.0079285614989, 531.9786748196262, 534.5418854178608, 535.4361261144414, 536.5698041094729, 537.1166640788887, 538.955798809392, 541.8402134722027, 542.705047972326, 546.5778150226769, 546.8814751641745, 546.8814751641745, 546.8814751641745, 546.8814751641745, 546.8814751641745, 546.8814751641745, 546.8814751641745, 546.8814751641745, 546.8814751641745, 546.8814751641745, 546.8814751641745, 546.8814751641745, 546.8814751641745, 546.8814751641745, 546.8814751641745, 546.8814751641745, 546.8814751641745, 546.8814751641745, 546.8814751641745, 546.8814751641745, 546.8814751641745, 546.8814751641745, 546.8814751641745, 546.8814751641745, 546.8814751641745, 546.8814751641745, 546.8814751641745, 546.8814751641745, 546.8814751641745, 546.8814751641745, 546.8814751641745, 546.8814751641745, 546.8814751641745, 546.8814751641745, 546.8814751641745, 546.8814751641746, 546.8814751641746, 546.8814751641746, 546.8814751641746, 546.8814751641746, 548.8140830921272, 548.8140830921272, 548.8140830921272, 548.8140830921272, 548.8140830921272, 548.8140830921272, 548.8140830921272, 548.8919965878614, 548.913094011667, 549.3993000780205, 549.570081438422, 549.62900626132, 549.6530620380549, 549.688761245204, 549.735518911729, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.793756176675, 549.793756176675, 549.793756176675, 549.793756176675, 549.793756176675, 549.793756176675, 549.793756176675, 549.793756176675, 549.793756176675, 549.793756176675, 549.793756176675, 549.793756176675, 549.793756176675, 549.793756176675, 549.793756176675, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748, 549.7937561766748 ], [ 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378385, 544.5688758378384, 544.5688758378384, 544.7642913863552, 545.1447780513051, 545.6975922198009, 546.4064065154449, 546.5438107093453, 547.4051015354166, 547.4811617446155, 547.4811617446155, 547.4811617446155, 547.4811617446155, 547.4811617446155, 547.4811617446156, 547.4811617446156, 547.4811617446156, 547.4811617446156, 547.4811617446156, 547.4811617446156, 547.4811617446156, 547.4811617446156, 547.4811617446156, 547.4811617446156, 547.4811617446156, 547.4811617446156, 549.6405040359836, 549.6405040359836, 549.6405040359836, 549.6405040359836, 549.6405040359836, 549.6405040359836, 549.6405040359836, 549.6405040359836, 549.6405040359836, 549.6405040359836, 549.6405040359836, 549.6405040359836, 549.6405040359836, 549.6405040359836, 549.6405040359836, 549.6405040359836, 549.6405040359836, 549.6405040359836, 549.6405040359836 ], [ 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 542.2564535408701, 544.219684939584, 544.219684939584, 544.2196849395841, 544.2196849395841, 544.2196849395841, 544.2196849395841, 544.2196849395841, 544.2196849395841, 544.2196849395841, 544.2196849395841, 544.2481939824238, 544.3328455681701, 545.1197348165609, 546.6751599561395, 546.8403382411054, 546.8403382411054, 546.8403382411054, 546.8403382411054, 546.9108180444696, 547.6224779222005, 548.7121677548807, 549.2570273545467 ], [ 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 539.9442082732701, 540.5193340996664, 540.6149754587376, 540.8011953476895, 541.071756716987, 541.4186685317276, 541.4859176526212, 541.9074553746, 541.9074553746, 541.9074553746, 541.9074553746, 541.9074553746, 541.9074553746, 541.9074553746, 541.9074553746, 541.9074553746, 542.0249509776265, 542.3398299046843, 542.6675820502918, 543.1281326740151, 543.412300661899, 543.412300661899, 543.412300661899, 543.412300661899, 543.412300661899, 543.412300661899, 543.412300661899, 543.412300661899, 543.412300661899, 543.6471536580636, 544.5027506449935, 544.51802452435, 544.5280533320919, 544.5280533320919, 544.6360767600536, 544.8496040840812, 544.8722796062126, 545.0645370428133, 545.1790836145371, 545.1892678789336, 545.255365286683, 545.9227745425536, 546.9447080575886, 546.9447080575886 ], [ 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.0614464263394, 532.1840772228147, 532.2264665843061, 532.4106353257541, 532.4150331430027, 532.4551118961795, 532.5518454955671, 532.5696405346563, 532.595241520136, 532.618418917815, 532.6492158038401, 532.6586102387201, 533.0496743443288, 533.0643045810295, 533.0810614108166, 533.1577648611285, 533.1654083551939, 533.2666246319826, 533.2785910710372, 533.5802721661812, 533.655847549355, 533.6675973763071, 533.9362320152427, 534.0573950158027, 534.1255914947866, 534.3056611435031, 534.3684829842883, 534.4481256786747, 534.4865434671535, 534.615745626778, 534.8183803753401, 534.8791363837393, 535.1512044700675, 535.1725370812256, 535.1851965499178, 535.2268817628132, 535.2593992171369, 535.5118358753483, 535.6880908135813, 535.7150445447484, 535.8385225280593, 535.8714562195175, 535.8846151043289, 536.0092510952876, 536.0795367422209, 536.2142513399401, 536.2828876149256, 536.3129447063944, 536.528185698536, 536.6059703702546, 536.6460749694462, 536.7998816843651, 536.8484621737684, 536.8628518387231, 536.9135727701922, 536.9580724186781, 537.1558921256624, 537.1562057671864, 537.447057977874, 537.5094232112064, 537.5256887959192, 537.6321400350374, 537.6321400350374, 537.6321400350374, 537.6321400350374, 537.6321400350374, 537.6321400350374, 537.6321400350374, 537.6321400350374, 537.6321400350374, 537.6321400350374, 537.6321400350374, 537.6321400350374, 537.6321400350374, 537.6321400350374, 537.6321400350374, 537.6321400350375, 537.6321400350375, 537.6321400350375, 537.6321400350375, 537.6321400350375, 537.6321400350375, 537.6321400350375, 537.6321400350375, 537.6321400350375, 537.6321400350375, 537.6321400350375, 537.6321400350375, 537.6321400350375, 537.6321400350375, 537.6321400350375, 537.6321400350375, 537.6321400350375, 537.6321400350375, 537.6321400350375, 537.6321400350375, 537.6321400350375, 537.6321400350375, 537.6321400350375, 537.6321400350375, 537.6321400350375, 537.6321400350375, 537.6321400350375, 537.6321400350375, 537.6321400350375, 537.6321400350375, 537.6321400350375, 537.6321400350375, 537.6321400350375, 537.6321400350375, 537.6321400350375, 537.6321400350375, 538.3919959479925, 539.4293679685399, 539.5954028389838, 539.5954028389838, 539.5954028389838, 539.5954028389838, 539.5954028389838, 540.9035616886354, 544.5539109659265, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981, 544.6325657899981 ], [ 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 532.1075051848909, 534.0090386599321, 534.6724365954991, 535.5134625568285, 535.9191539731796, 537.2835273327357, 537.2835273327357, 537.2835273327357, 537.2835273327357, 537.2835273327357, 537.2835273327357, 537.2835273327357, 537.2835273327357, 537.2835273327357, 537.2835273327357, 537.2835273327357, 537.2835273327357, 537.2835273327357, 537.2835273327357, 537.2835273327358, 537.2835273327358, 537.2835273327358, 537.2835273327358, 537.2835273327358, 537.2835273327358, 537.2835273327358, 537.2835273327358, 537.2835273327358, 537.2835273327357, 537.2835273327357, 537.2835273327357, 537.2835273327357, 537.2835273327357, 537.2835273327357, 537.2835273327357, 537.2835273327357, 537.2835273327357, 537.4751254751424, 537.5343539710376, 537.6899744774963, 538.011098485859, 538.0277655552862, 538.2831950816566, 538.6341902164754, 538.8700660029524, 539.0402143128133, 539.0485949171192, 539.0600781556233, 539.1570775702926, 539.2272898525465, 539.2280874804052, 539.732137785043, 539.9426142630512, 539.9465123690138, 540.0089567357746, 540.0795110780869, 540.1278693337728, 540.1409637868593, 540.4427353483993, 540.5487335277244, 540.585306160297, 540.6002367623848, 540.6223940455465, 540.651414938163, 540.68756082691, 540.7550337087945, 540.7894746087592, 540.7982366951513, 540.8502542664603, 540.8678237347495, 540.8760552161199, 540.9929543055307, 541.0789071273671, 541.3613585128155, 541.3654818042464, 541.3694805003322, 541.4240956445401, 541.4253098275524, 541.5547706804422, 541.5786926040162, 541.6742074159671, 541.7567071731276, 541.7569714406583, 541.7876401915058, 541.7900282289937, 541.8416843416867, 541.9086701305283, 541.9620762854347, 541.9743146994192, 541.9910228516186, 541.9936970474046, 542.0061491613575, 542.0334416074115, 542.0392559275986, 542.0396803764266, 542.0908482489998, 542.2336295379218, 542.2367060756194, 542.2755767025207, 542.2808283870379, 542.2869601875501, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759, 542.3206005517759 ], [ 495.74065647656073, 495.74065647656073, 495.74065647656073, 495.74065647656073, 495.74065647656073, 495.74065647656073, 495.74065647656073, 495.74065647656073, 495.74065647656073, 495.74065647656073, 495.74065647656073, 495.74065647656073, 495.74065647656073, 495.74065647656073, 495.74065647656073, 495.74065647656073, 495.74065647656073, 495.74065647656073, 495.74065647656073, 495.74065647656073, 495.74065647656073, 495.74065647656073, 495.74065647656073, 495.74065647656073, 495.74065647656073, 495.74065647656073, 495.74065647656073, 495.74065647656073, 495.74065647656073, 495.74065647656073, 495.74065647656073, 495.74065647656073, 495.7406564765607, 495.7406564765607, 495.7406564765607, 495.7406564765607, 495.7406564765607, 495.7406564765607, 495.7406564765607, 495.7406564765607, 495.7406564765606, 495.7406564765606, 495.7406564765606, 495.7406564765606, 495.9391133436872, 496.22027079152946, 496.2846407544135, 496.6690584992101, 497.30297416624774, 497.4348890991808, 497.70287435611294, 497.74926407181874, 498.06380755887153, 498.1744495447736, 498.4949472122343, 498.6057325277799, 499.08706065863953, 499.0985544286432, 499.2033009301511, 522.5771059662437, 526.8769332952543, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 533.0629167293708, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412381, 536.6874946412382, 536.6874946412382, 536.6874946412382, 536.6874946412382, 536.6874946412382, 536.6874946412382, 536.6874946412382, 536.8841301109787, 536.9260208810081, 536.9290789321091, 537.2977310726726, 538.3264357099087, 538.3486014195756, 538.6286548806941, 538.6664919968671, 538.710670135817, 538.9530408199499, 539.0592617027992, 539.3281524370584, 539.6260848584278, 539.6661145134684, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216, 540.0088123429216 ] ] } ], "layout": { "coloraxis": { "colorscale": [ [ 0.0, "rgb(158,1,66)" ], [ 0.1, "rgb(213,62,79)" ], [ 0.2, "rgb(244,109,67)" ], [ 0.3, "rgb(253,174,97)" ], [ 0.4, "rgb(254,224,139)" ], [ 0.5, "rgb(255,255,191)" ], [ 0.6, "rgb(230,245,152)" ], [ 0.7, "rgb(171,221,164)" ], [ 0.8, "rgb(102,194,165)" ], [ 0.9, "rgb(50,136,189)" ], [ 1.0, "rgb(94,79,162)" ] ] }, "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.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.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.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.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.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.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.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.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.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.0, "#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.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.0, "#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.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.0, "#f0f921" ] ], "sequentialminus": [ [ 0.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.0, "#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": "Bid matrix heatmapped (and inverted compared to normal bid matrix)" }, "xaxis": { "anchor": "y", "constrain": "domain", "domain": [ 0.0, 1.0 ], "scaleanchor": "y", "title": { "text": "Market price" } }, "yaxis": { "anchor": "x", "autorange": true, "constrain": "domain", "domain": [ 0.0, 1.0 ], "title": { "text": "Hours" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# Plotting bid matrices with different properties\n", "fig = px.imshow(bid_matrix.transpose(), color_continuous_scale='spectral')\n", "fig.update_layout(title=\"Bid matrix heatmapped (and inverted compared to normal bid matrix)\", xaxis_title =\"Market price\", yaxis_title=\"Hours\")\n", "fig.update_yaxes(autorange=True) \n", "fig.show()" ] }, { "cell_type": "code", "execution_count": 22, "id": "9df79a6f", "metadata": { "Collapsed": "false" }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "alignmentgroup": "True", "hovertemplate": "=25.7385904884098
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "25.7385904884098", "marker": { "color": "#636efa", "pattern": { "shape": "" } }, "name": "25.7385904884098", "offsetgroup": "25.7385904884098", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 358.84426050666974, 354.32581710025465, 383.90113583521446, 209.93337391289856, 352.7944413033969, 352.4882257030639, 446.4817492743608, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 494.6903601213247, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.74065647656073 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=28.47852434471662
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "28.47852434471662", "marker": { "color": "#EF553B", "pattern": { "shape": "" } }, "name": "28.47852434471662", "offsetgroup": "28.47852434471662", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 358.84426050666974, 354.32581710025465, 383.90113583521446, 361.59777508068726, 352.7944413033969, 352.4882257030639, 446.4817492743608, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 494.6903601213247, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.74065647656073 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=28.567144764921423
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "28.567144764921423", "marker": { "color": "#00cc96", "pattern": { "shape": "" } }, "name": "28.567144764921423", "offsetgroup": "28.567144764921423", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 358.84426050666974, 355.4705385632371, 383.90113583521446, 366.5032084475042, 352.7944413033969, 352.4882257030639, 446.4817492743608, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 494.6903601213247, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.74065647656073 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=28.953163992553172
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "28.953163992553172", "marker": { "color": "#ab63fa", "pattern": { "shape": "" } }, "name": "28.953163992553172", "offsetgroup": "28.953163992553172", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 358.84426050666974, 360.45679899816577, 383.90113583521446, 366.5032084475042, 352.7944413033969, 352.4882257030639, 446.4817492743608, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 494.6903601213247, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.74065647656073 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=28.99040988121767
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "28.99040988121767", "marker": { "color": "#FFA15A", "pattern": { "shape": "" } }, "name": "28.99040988121767", "offsetgroup": "28.99040988121767", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 358.84426050666974, 360.9379089733111, 383.90113583521446, 366.5032084475042, 352.7944413033969, 353.37542456658866, 446.4817492743608, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 494.6903601213247, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.74065647656073 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=29.553703261597807
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "29.553703261597807", "marker": { "color": "#19d3f3", "pattern": { "shape": "" } }, "name": "29.553703261597807", "offsetgroup": "29.553703261597807", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 358.84426050666974, 368.21404263400575, 383.90113583521446, 379.9655965235727, 352.7944413033969, 366.7931000422889, 446.4817492743608, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 494.6903601213247, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.74065647656073 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=29.83885677823433
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "29.83885677823433", "marker": { "color": "#FF6692", "pattern": { "shape": "" } }, "name": "29.83885677823433", "offsetgroup": "29.83885677823433", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 358.84426050666974, 371.897407596442, 383.90113583521446, 386.7806016983643, 366.29214457459284, 373.5854705551494, 446.4817492743608, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 494.6903601213247, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.74065647656073 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=29.923425146009553
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "29.923425146009553", "marker": { "color": "#B6E880", "pattern": { "shape": "" } }, "name": "29.923425146009553", "offsetgroup": "29.923425146009553", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 389.0206071378119, 372.98978817258876, 383.90113583521446, 388.80173708820575, 370.29517686338744, 375.5998931523968, 446.4817492743608, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 494.6903601213247, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.74065647656073 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=29.93227883576153
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "29.93227883576153", "marker": { "color": "#FF97FF", "pattern": { "shape": "" } }, "name": "29.93227883576153", "offsetgroup": "29.93227883576153", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 392.1798499841486, 373.1041524315513, 384.13721063293775, 389.01333518521477, 370.71426507431676, 375.81078846910435, 446.4817492743608, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 494.6903601213247, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.74065647656073 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=30.47929369560378
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "30.47929369560378", "marker": { "color": "#FECB52", "pattern": { "shape": "" } }, "name": "30.47929369560378", "offsetgroup": "30.47929369560378", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 405.6797000807977, 380.1700143309267, 398.7228157316562, 402.08667597541347, 396.6071397271551, 388.84070880084306, 446.4817492743608, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 494.6903601213247, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.74065647656073 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=30.64244779413558
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "30.64244779413558", "marker": { "color": "#636efa", "pattern": { "shape": "" } }, "name": "30.64244779413558", "offsetgroup": "30.64244779413558", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 409.70620106738596, 382.27749698482614, 403.07315687615187, 405.9859651684694, 404.3300169879283, 392.7270472931449, 447.6568860280384, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 494.6903601213247, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.74065647656073 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=30.84143666529853
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "30.84143666529853", "marker": { "color": "#EF553B", "pattern": { "shape": "" } }, "name": "30.84143666529853", "offsetgroup": "30.84143666529853", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 414.61707301769445, 384.8478620450285, 408.3789964554634, 410.7416848337823, 405.65244431235357, 397.4669717970305, 449.0901269835564, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 494.6903601213247, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.74065647656073 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=31.28058529475953
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "31.28058529475953", "marker": { "color": "#00cc96", "pattern": { "shape": "" } }, "name": "31.28058529475953", "offsetgroup": "31.28058529475953", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 427.1465481163408, 390.52040185494553, 420.0884562145798, 421.23708470673637, 408.5709097706935, 407.9275133211112, 452.25314709430256, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 494.6903601213247, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.74065647656073 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=31.399707877439493
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "31.399707877439493", "marker": { "color": "#ab63fa", "pattern": { "shape": "" } }, "name": "31.399707877439493", "offsetgroup": "31.399707877439493", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 430.5452685796312, 392.0591237071385, 420.0884562145798, 424.0840459750882, 409.362566898911, 410.7650189831667, 453.11114163051053, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 494.6903601213247, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.74065647656073 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=31.55864788701061
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "31.55864788701061", "marker": { "color": "#FFA15A", "pattern": { "shape": "" } }, "name": "31.55864788701061", "offsetgroup": "31.55864788701061", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 432.5350000843949, 394.11217242731186, 420.0884562145798, 427.88262086374823, 410.41884009837617, 414.55097767327374, 454.2559259084273, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 494.6903601213247, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.74065647656073 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=31.802267240063458
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "31.802267240063458", "marker": { "color": "#19d3f3", "pattern": { "shape": "" } }, "name": "31.802267240063458", "offsetgroup": "31.802267240063458", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 435.58481179163834, 397.2590352112278, 420.0884562145799, 432.18405444308996, 412.03786978256426, 420.354002407307, 456.01062320537415, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 494.6903601213247, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.74065647656073 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=32.08503270612679
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "32.08503270612679", "marker": { "color": "#FF6692", "pattern": { "shape": "" } }, "name": "32.08503270612679", "offsetgroup": "32.08503270612679", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 439.1246842114499, 400.9115534146495, 420.0884562145799, 437.1766663007333, 426.7970279851383, 427.0894894403918, 458.04727502614975, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 494.6903601213247, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.74065647656073 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=32.378365450187964
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "32.378365450187964", "marker": { "color": "#B6E880", "pattern": { "shape": "" } }, "name": "32.378365450187964", "offsetgroup": "32.378365450187964", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 442.79684582646564, 404.7005705186799, 432.5958272328353, 442.3558579347883, 442.10775328645354, 434.07668954480874, 460.16003892056204, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 494.6903601213247, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.74065647656073 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=32.90962859918502
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "32.90962859918502", "marker": { "color": "#FF97FF", "pattern": { "shape": "" } }, "name": "32.90962859918502", "offsetgroup": "32.90962859918502", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 449.4476005843883, 411.5629655258704, 455.24827721450913, 451.7360369719893, 469.83743673191736, 446.7314033648621, 463.98652478808833, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 496.2752125495214, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.74065647656073 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=33.28553820479103
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "33.28553820479103", "marker": { "color": "#FECB52", "pattern": { "shape": "" } }, "name": "33.28553820479103", "offsetgroup": "33.28553820479103", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 454.1535219394696, 416.41863866174594, 471.27663068622354, 458.37323627528133, 469.86184089688766, 455.6855882921128, 466.69405832591093, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 497.3966177370483, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.74065647656073 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=33.30079368907467
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "33.30079368907467", "marker": { "color": "#636efa", "pattern": { "shape": "" } }, "name": "33.30079368907467", "offsetgroup": "33.30079368907467", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 454.34450165427836, 416.61569573106834, 471.41182317143097, 458.6425927592571, 469.86283128752837, 456.04897466318005, 466.80393776159895, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 497.4421275589809, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.74065647656073 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=33.42898384611474
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "33.42898384611474", "marker": { "color": "#EF553B", "pattern": { "shape": "" } }, "name": "33.42898384611474", "offsetgroup": "33.42898384611474", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 455.9492831989095, 418.2715446174506, 472.5478307597291, 460.9059656773915, 469.8711534311856, 459.10247038361956, 469.0310943932686, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 497.8245415887126, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.74065647656073 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=33.6993463496901
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "33.6993463496901", "marker": { "color": "#00cc96", "pattern": { "shape": "" } }, "name": "33.6993463496901", "offsetgroup": "33.6993463496901", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 459.33388593375435, 421.7638521455931, 474.94375461803975, 460.9059656773915, 469.888705446459, 465.5425182523234, 473.72833212739874, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 498.63108100537204, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.74065647656073 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=33.73190908915484
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "33.73190908915484", "marker": { "color": "#ab63fa", "pattern": { "shape": "" } }, "name": "33.73190908915484", "offsetgroup": "33.73190908915484", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 459.74153098655904, 455.451530358487, 475.2323221647364, 460.9059656773915, 469.89081942932603, 466.3181642761463, 474.2940722966814, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 498.72822144661444, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.74065647656073 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=33.749174228915635
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "33.749174228915635", "marker": { "color": "#FFA15A", "pattern": { "shape": "" } }, "name": "33.749174228915635", "offsetgroup": "33.749174228915635", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 459.95766909180327, 473.3131256088546, 475.3853240038336, 460.9059656773915, 469.89194028740644, 466.72942073756013, 474.594034254782, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 498.7797264281377, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.74065647656073 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=33.75162850526158
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "33.75162850526158", "marker": { "color": "#19d3f3", "pattern": { "shape": "" } }, "name": "33.75162850526158", "offsetgroup": "33.75162850526158", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 459.9883935832645, 475.85218937150887, 475.4070735407493, 460.9059656773915, 469.9697921976845, 466.78788171843536, 474.6366744852492, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 498.78704797083014, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.74065647656073 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=33.78857578711016
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "33.78857578711016", "marker": { "color": "#FF6692", "pattern": { "shape": "" } }, "name": "33.78857578711016", "offsetgroup": "33.78857578711016", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 460.45092766079404, 480.6025503384222, 475.7344964374532, 460.9059656773915, 471.1417940695389, 467.66796775320995, 475.2785910386826, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 498.8972682815435, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.74065647656073 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=33.84338460894348
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "33.84338460894348", "marker": { "color": "#B6E880", "pattern": { "shape": "" } }, "name": "33.84338460894348", "offsetgroup": "33.84338460894348", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 461.137066033599, 487.6493931602166, 476.2202064088425, 460.9059656773915, 472.8803804707263, 473.57315778939426, 476.2308313185812, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 499.06077274168365, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.74065647656073 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=33.9696063734057
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "33.9696063734057", "marker": { "color": "#FF97FF", "pattern": { "shape": "" } }, "name": "33.9696063734057", "offsetgroup": "33.9696063734057", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 462.7172057480424, 488.384242367111, 477.3387703106922, 460.9059656773915, 476.8842513055213, 487.17249236583655, 478.42378939176, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 499.43731470638966, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.74065647656073 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=34.09604723329545
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "34.09604723329545", "marker": { "color": "#FECB52", "pattern": { "shape": "" } }, "name": "34.09604723329545", "offsetgroup": "34.09604723329545", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 464.30008826510596, 489.1203671234468, 478.45927581300464, 460.9059656773915, 480.89507204943885, 489.29833600284024, 480.6205539961551, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 499.8145102717095, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.74065647656073 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=34.43855641685243
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "34.43855641685243", "marker": { "color": "#636efa", "pattern": { "shape": "" } }, "name": "34.43855641685243", "offsetgroup": "34.43855641685243", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 468.58787782188995, 491.11441785600664, 490.5560741750756, 460.9059656773915, 491.7597793884308, 495.0569251892381, 486.5712573666818, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 500.83627606191106, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.74065647656073 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=34.47371124763938
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "34.47371124763938", "marker": { "color": "#EF553B", "pattern": { "shape": "" } }, "name": "34.47371124763938", "offsetgroup": "34.47371124763938", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 469.0279726384826, 491.31908540785366, 491.7976785462814, 460.9059656773915, 492.87492305869813, 495.8640158076945, 487.1820321432343, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 500.9411491724227, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.74065647656073 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=34.62346957920782
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "34.62346957920782", "marker": { "color": "#00cc96", "pattern": { "shape": "" } }, "name": "34.62346957920782", "offsetgroup": "34.62346957920782", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 470.90276093896546, 492.4439298745766, 497.0868691052325, 460.9059656773915, 497.62539551952244, 499.3021932000727, 489.78391101601073, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 501.3879049014376, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.7406564765607 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=34.66852142919224
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "34.66852142919224", "marker": { "color": "#ab63fa", "pattern": { "shape": "" } }, "name": "34.66852142919224", "offsetgroup": "34.66852142919224", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 471.4667541430918, 492.7823172193064, 498.67801810579385, 460.9059656773915, 499.0544817708096, 499.3021932000727, 490.5666351250889, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 501.52230257983365, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.7406564765607 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=34.7280738365677
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "34.7280738365677", "marker": { "color": "#FFA15A", "pattern": { "shape": "" } }, "name": "34.7280738365677", "offsetgroup": "34.7280738365677", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 472.21227631500574, 493.22961918384317, 500.78130029085986, 460.9059656773915, 499.25942648181865, 499.3021932000727, 491.60128975131505, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 501.69995799902114, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.7406564765607 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=34.72964629465234
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "34.72964629465234", "marker": { "color": "#19d3f3", "pattern": { "shape": "" } }, "name": "34.72964629465234", "offsetgroup": "34.72964629465234", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 472.2319615371179, 493.24143001771887, 500.7886645936728, 460.9059656773915, 499.26483796696147, 499.3021932000727, 491.6286094030893, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 501.7046489210593, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.7406564765607 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=35.03191004478626
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "35.03191004478626", "marker": { "color": "#FF6692", "pattern": { "shape": "" } }, "name": "35.03191004478626", "offsetgroup": "35.03191004478626", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 476.01592825520447, 495.5117524983995, 502.2042583109939, 460.9059656773915, 500.3050537978538, 499.30219320007274, 496.8800946276037, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 501.7046489210593, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.7406564765607 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=35.47086224821935
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "35.47086224821935", "marker": { "color": "#B6E880", "pattern": { "shape": "" } }, "name": "35.47086224821935", "offsetgroup": "35.47086224821935", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 481.5110646315832, 498.8087507489569, 504.26000591919643, 460.9059656773915, 501.8156716963411, 499.3021932000728, 505.0377776313116, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 501.7046489210593, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.7406564765607 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=35.48029110424704
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "35.48029110424704", "marker": { "color": "#FF97FF", "pattern": { "shape": "" } }, "name": "35.48029110424704", "offsetgroup": "35.48029110424704", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 481.629102197724, 498.87957149341366, 504.304164139785, 460.90596567739146, 501.8481203287122, 499.3021932000728, 505.03863369696217, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 501.7046489210593, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.7406564765607 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=35.63193002550175
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "35.63193002550175", "marker": { "color": "#FECB52", "pattern": { "shape": "" } }, "name": "35.63193002550175", "offsetgroup": "35.63193002550175", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 483.5274331452497, 500.0185411903032, 505.0143356510377, 460.90596567739146, 502.36997320190227, 499.9879107920137, 505.05240131324456, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 501.7046489210593, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.7406564765607 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=36.11937041948169
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "36.11937041948169", "marker": { "color": "#636efa", "pattern": { "shape": "" } }, "name": "36.11937041948169", "offsetgroup": "36.11937041948169", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 489.6295814414112, 503.6797373607146, 507.29716830622976, 460.90596567739146, 504.0474592193612, 502.19213679421, 505.09665705081727, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 505.7769912618818, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.7406564765606 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=36.42658995902406
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "36.42658995902406", "marker": { "color": "#EF553B", "pattern": { "shape": "" } }, "name": "36.42658995902406", "offsetgroup": "36.42658995902406", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 493.4755884874401, 505.98728309459227, 508.7359715031787, 460.90596567739146, 505.1047299918235, 503.5813964981769, 505.12455015833797, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 510.89894567978723, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.7406564765606 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=36.57564545317568
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "36.57564545317568", "marker": { "color": "#00cc96", "pattern": { "shape": "" } }, "name": "36.57564545317568", "offsetgroup": "36.57564545317568", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 495.3415781364397, 507.10684850424354, 509.92315129036007, 460.90596567739146, 505.61769221315933, 504.2554317238926, 505.13808321984544, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 513.3839941500773, 495.7922666629723, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.7406564765606 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=36.780848917322885
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "36.780848917322885", "marker": { "color": "#ab63fa", "pattern": { "shape": "" } }, "name": "36.780848917322885", "offsetgroup": "36.780848917322885", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 497.9104706299162, 508.6481449301647, 511.55753186976585, 460.90596567739146, 506.3238830543214, 505.18337043599007, 505.15671407352613, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 516.8051397950578, 500.2773090753096, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.7406564765606 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=36.85633331407592
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "36.85633331407592", "marker": { "color": "#FFA15A", "pattern": { "shape": "" } }, "name": "36.85633331407592", "offsetgroup": "36.85633331407592", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 498.85544152014626, 509.21511309228504, 512.15874117495, 460.90596567739146, 506.5836563961564, 505.5247140590013, 505.1635674605142, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 518.0636132632756, 501.9271385375656, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 495.9391133436872 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=36.96327342983141
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "36.96327342983141", "marker": { "color": "#19d3f3", "pattern": { "shape": "" } }, "name": "36.96327342983141", "offsetgroup": "36.96327342983141", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 500.19419894199325, 509.5311933507845, 513.0104853161932, 460.90596567739146, 506.9516820072892, 506.008301768878, 505.17327677832475, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 519.846515480892, 504.26448189936957, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 496.22027079152946 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=36.98775697574074
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "36.98775697574074", "marker": { "color": "#FF6692", "pattern": { "shape": "" } }, "name": "36.98775697574074", "offsetgroup": "36.98775697574074", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 500.50070252643104, 509.6035587626352, 513.2054890024882, 460.90596567739146, 507.0370195218928, 506.1190173952106, 505.17549969090237, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 520.254704381647, 504.7996080594668, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 496.2846407544135 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=37.13397283607992
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "37.13397283607992", "marker": { "color": "#B6E880", "pattern": { "shape": "" } }, "name": "37.13397283607992", "offsetgroup": "37.13397283607992", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 502.3311434871308, 510.4941732261755, 514.3700520060057, 460.90596567739146, 507.5466555918959, 506.780211677165, 505.18877493608943, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 522.6924105670925, 507.9953842014679, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 496.6690584992101 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=37.37508689986337
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "37.37508689986337", "marker": { "color": "#FF97FF", "pattern": { "shape": "" } }, "name": "37.37508689986337", "offsetgroup": "37.37508689986337", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 505.34959208447316, 511.96282151146, 514.8285338797631, 460.90596567739146, 508.3870597970486, 507.87053963408147, 505.210666188566, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 526.7122565900843, 513.2653088919401, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 497.30297416624774 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=37.42526162689267
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "37.42526162689267", "marker": { "color": "#FECB52", "pattern": { "shape": "" } }, "name": "37.42526162689267", "offsetgroup": "37.42526162689267", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 505.97771734621506, 512.2684404606822, 514.9239418476878, 460.90596567739146, 508.5619440444714, 508.0974318640587, 505.21522165745944, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 527.5487680475187, 513.2653088919401, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 497.4348890991808 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=37.527191611735795
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "37.527191611735795", "marker": { "color": "#636efa", "pattern": { "shape": "" } }, "name": "37.527191611735795", "offsetgroup": "37.527191611735795", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 507.2537541519867, 512.8893055197746, 515.1177631856456, 460.90596567739146, 508.91722148681185, 508.55836355082397, 505.2244760949573, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 529.248141521491, 513.2653088919401, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 497.70287435611294 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=37.54483625037337
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "37.54483625037337", "marker": { "color": "#EF553B", "pattern": { "shape": "" } }, "name": "37.54483625037337", "offsetgroup": "37.54483625037337", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 507.474643111803, 512.9967806619248, 515.1513147207878, 462.1266950107236, 508.9787219579032, 508.63815335028386, 505.2260780887739, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 529.5423123771492, 513.2653088919401, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 497.74926407181874 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=37.664474969438864
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "37.664474969438864", "marker": { "color": "#00cc96", "pattern": { "shape": "" } }, "name": "37.664474969438864", "offsetgroup": "37.664474969438864", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 508.97237127450114, 513.7255112753617, 515.3788094725678, 470.40379814473147, 509.39572327679775, 509.1791646794444, 506.32996045127226, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 531.5369253063361, 513.2653088919401, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 498.06380755887153 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=37.70655838878481
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "37.70655838878481", "marker": { "color": "#ab63fa", "pattern": { "shape": "" } }, "name": "37.70655838878481", "offsetgroup": "37.70655838878481", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 509.49920341404084, 513.981845313665, 515.4588317021013, 473.31530375829, 509.5424052331738, 509.36946767511176, 506.71825568489294, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 532.238538738739, 513.2653088919401, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.0614464263394, 532.1075051848909, 498.1744495447736 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=37.82846182019187
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "37.82846182019187", "marker": { "color": "#FFA15A", "pattern": { "shape": "" } }, "name": "37.82846182019187", "offsetgroup": "37.82846182019187", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 511.02528296231776, 514.724370501524, 515.6906328370992, 481.74908909155914, 509.96730021760345, 509.92072012891526, 507.8430340919955, 562.7224761595886, 561.8498391536394, 560.4503289998208, 544.9697289111149, 514.9909746678418, 512.5897702424598, 534.2709088802452, 513.2653088919401, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.1840772228147, 532.1075051848909, 498.4949472122343 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=37.87059975592636
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "37.87059975592636", "marker": { "color": "#19d3f3", "pattern": { "shape": "" } }, "name": "37.87059975592636", "offsetgroup": "37.87059975592636", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 511.5527975793286, 514.9810366042424, 515.7707587303327, 484.66436637514175, 510.1141721911086, 510.1112696499889, 508.2318323373522, 562.7224761595886, 561.8498391536394, 560.4503289998208, 545.1315568017353, 514.9909746678418, 512.5897702424598, 534.9734312081486, 513.2653088919401, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.2264665843061, 532.1075051848909, 498.6057325277799 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=38.05367612977148
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "38.05367612977148", "marker": { "color": "#FF6692", "pattern": { "shape": "" } }, "name": "38.05367612977148", "offsetgroup": "38.05367612977148", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 513.8446863856807, 516.0961718987361, 516.1188810986596, 497.3303497587215, 510.75228575457845, 510.9391487273102, 509.92104116252494, 562.7224761595886, 561.8498391536394, 560.4503289998208, 545.8346492263017, 517.4873277027465, 512.5897702424598, 538.0256747055087, 513.2653088919401, 510.1107060982839, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.4106353257541, 532.1075051848909, 499.08706065863953 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=38.05804786206631
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "38.05804786206631", "marker": { "color": "#B6E880", "pattern": { "shape": "" } }, "name": "38.05804786206631", "offsetgroup": "38.05804786206631", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 513.899415044002, 516.122800528513, 516.1271940107422, 497.6328043433344, 510.7675234480863, 510.9589178849712, 509.96137825582986, 562.7224761595886, 561.8498391536394, 560.4503289998208, 545.8514385683351, 517.5469388199691, 512.5897702424598, 538.0985600876518, 513.2653088919401, 510.1199214089064, 507.6296447224239, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.4150331430027, 532.1075051848909, 499.0985544286432 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=38.09788889449211
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "38.09788889449211", "marker": { "color": "#FF97FF", "pattern": { "shape": "" } }, "name": "38.09788889449211", "offsetgroup": "38.09788889449211", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 514.3981752845093, 516.3654759786215, 516.202952309169, 500.38917232294443, 510.9063895542888, 511.139080712492, 510.3289834370128, 562.7224761595886, 561.8498391536394, 560.4503289998208, 546.004445357235, 518.0901945122301, 512.5897702424598, 538.7627885164529, 513.2653088919401, 510.20390356164694, 508.2001477785422, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.4551118961795, 532.1075051848909, 499.2033009301511 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=38.194048733917754
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "38.194048733917754", "marker": { "color": "#FECB52", "pattern": { "shape": "" } }, "name": "38.194048733917754", "offsetgroup": "38.194048733917754", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 515.6019770365949, 516.9511945429792, 516.3858016322996, 507.04190911662414, 511.24155512759484, 511.5739195585269, 511.2162309063253, 562.7224761595886, 561.8498391536394, 560.4503289998208, 546.3737407131988, 519.4013899545718, 512.5897702424598, 540.3659623090604, 513.2653088919401, 510.40660188120455, 509.57710713245325, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.5518454955671, 532.1075051848909, 522.5771059662437 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=38.211738224562396
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "38.211738224562396", "marker": { "color": "#636efa", "pattern": { "shape": "" } }, "name": "38.211738224562396", "offsetgroup": "38.211738224562396", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 515.8234274878303, 517.0589428828941, 516.4194384541809, 508.26574149795897, 511.30321193056807, 511.65391218065275, 511.3794482733844, 562.7224761595886, 561.8498391536394, 560.4503289998208, 546.4416760049323, 519.6425964670736, 512.5897702424598, 540.6608809359576, 513.6208440013945, 510.4438901093143, 509.83041152391803, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.5696405346563, 532.1075051848909, 526.8769332952543 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=38.237187361867846
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "38.237187361867846", "marker": { "color": "#EF553B", "pattern": { "shape": "" } }, "name": "38.237187361867846", "offsetgroup": "38.237187361867846", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 516.1099587690503, 517.2139559554588, 516.4678303562301, 510.0264184409596, 511.3919150185315, 511.7689942519684, 511.6142623371902, 562.7224761595886, 561.8498391536394, 560.4503289998208, 546.5394116945541, 519.9896102832961, 512.5897702424598, 541.0851681458391, 514.1323376333581, 510.49753513822463, 510.19483005738283, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.595241520136, 532.1075051848909, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=38.26022728649826
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "38.26022728649826", "marker": { "color": "#00cc96", "pattern": { "shape": "" } }, "name": "38.26022728649826", "offsetgroup": "38.26022728649826", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 516.369364777369, 517.354294288572, 516.5116411055909, 511.62041605189427, 511.4722207843668, 511.87318176204394, 511.82684708092086, 562.7224761595886, 561.8498391536394, 560.4503289998208, 546.6278949659343, 520.3037730808603, 512.5897702424598, 541.4692890384254, 514.595409311896, 510.54610171272407, 510.5247499066956, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.618418917815, 532.1075051848909, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=38.290841505691326
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "38.290841505691326", "marker": { "color": "#ab63fa", "pattern": { "shape": "" } }, "name": "38.290841505691326", "offsetgroup": "38.290841505691326", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 516.7140496027781, 517.5407683573911, 516.5698544854287, 513.7384347970585, 511.57892678958115, 512.0116205513107, 512.1093183149231, 562.7224761595886, 561.8498391536394, 560.4503289998208, 546.745466803013, 520.7212157982833, 512.5897702424598, 541.9796883296953, 515.2107141836033, 511.45698549130617, 510.9631297514662, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.6492158038401, 532.1075051848909, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=38.30018021897476
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "38.30018021897476", "marker": { "color": "#FFA15A", "pattern": { "shape": "" } }, "name": "38.30018021897476", "offsetgroup": "38.30018021897476", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 516.819193971718, 517.597651332342, 516.58761218358, 513.7790553953275, 511.61147691872316, 512.0538506063095, 512.195484741332, 562.7224761595886, 561.8498391536394, 560.4503289998208, 546.7813314994064, 520.8485545955162, 512.5897702424598, 542.1353830613223, 515.3984098338675, 511.73484599753243, 511.09685531388317, 544.5688758378385, 542.2564535408701, 539.9442082732701, 532.6586102387201, 532.1075051848909, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=38.688924790028935
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "38.688924790028935", "marker": { "color": "#19d3f3", "pattern": { "shape": "" } }, "name": "38.688924790028935", "offsetgroup": "38.688924790028935", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 519.9655308277707, 517.326815598566, 515.4699775353275, 512.966447952423, 513.8117699382177, 515.7823525952815, 562.7224761595886, 561.8498391536394, 560.4503289998208, 548.2742787173295, 526.1493133410154, 512.5897702424598, 544.3692413915808, 523.2116559242187, 523.3014034051201, 516.6634772694979, 544.5688758378385, 542.2564535408701, 539.9442082732701, 533.0496743443288, 532.1075051848909, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=38.70346824980726
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "38.70346824980726", "marker": { "color": "#FF6692", "pattern": { "shape": "" } }, "name": "38.70346824980726", "offsetgroup": "38.70346824980726", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.0541163998041, 517.3544701973292, 515.5332372178092, 513.0171392499914, 513.8775360761931, 515.9165421692287, 562.7224761595886, 561.8498391536394, 560.4503289998208, 548.3301318904198, 526.3476218894813, 512.5897702424598, 544.4528130507, 523.5039600197975, 523.7341239495505, 516.8717321199595, 544.5688758378385, 542.2564535408701, 539.9442082732701, 533.0643045810295, 532.1075051848909, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=38.72012568912313
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "38.72012568912313", "marker": { "color": "#B6E880", "pattern": { "shape": "" } }, "name": "38.72012568912313", "offsetgroup": "38.72012568912313", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.1555784186703, 517.386144558707, 515.6056920764289, 513.1298803770761, 513.9528617187199, 516.0702370065591, 562.7224761595886, 561.8498391536394, 560.4503289998208, 548.3941036588664, 526.5747557807451, 512.5897702424598, 544.5485323541893, 523.8387522774927, 524.2297430332793, 517.110258068164, 544.5688758378385, 542.2564535408701, 539.9442082732701, 533.0810614108166, 532.1075051848909, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=38.79637418511707
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "38.79637418511707", "marker": { "color": "#FF97FF", "pattern": { "shape": "" } }, "name": "38.79637418511707", "offsetgroup": "38.79637418511707", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.6200151302409, 517.5311321748001, 515.9373501357768, 513.6459465751192, 514.2976606306975, 516.7737665206845, 562.7224761595886, 561.8498391536394, 560.4503289998208, 548.6869308478257, 527.6144484531726, 540.4833330944393, 544.9866821075964, 525.3712450956028, 526.4984116445593, 518.2020972435162, 544.5688758378385, 542.2564535408701, 539.9442082732701, 533.1577648611285, 532.1075051848909, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=38.80397234301293
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "38.80397234301293", "marker": { "color": "#FECB52", "pattern": { "shape": "" } }, "name": "38.80397234301293", "offsetgroup": "38.80397234301293", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.6200151302409, 517.5455801817496, 515.9703998408171, 513.697372539741, 514.332019820887, 516.843873193125, 562.7224761595886, 561.8498391536394, 560.4503289998208, 548.7161110590405, 527.7180537634847, 543.2629249023141, 545.0303437033436, 525.5239579098621, 526.7244843309406, 518.3108989496099, 544.5688758378385, 542.2564535408701, 539.9442082732701, 533.1654083551939, 532.1075051848909, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=38.9045882715515
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "38.9045882715515", "marker": { "color": "#636efa", "pattern": { "shape": "" } }, "name": "38.9045882715515", "offsetgroup": "38.9045882715515", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.6200151302407, 517.7369028226705, 516.4080489139377, 514.3783627550445, 514.7870092896691, 517.7722360991113, 562.7224761595886, 561.8498391536394, 560.4503289998208, 549.1025197236889, 529.090010577418, 543.6895821087015, 545.6085169997915, 527.5462035405837, 529.718172218088, 519.7516672036039, 544.5688758378385, 542.2564535408701, 539.9442082732701, 533.2666246319826, 532.1075051848909, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=38.91648373357578
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "38.91648373357578", "marker": { "color": "#EF553B", "pattern": { "shape": "" } }, "name": "38.91648373357578", "offsetgroup": "38.91648373357578", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.6200151302407, 517.7595222154696, 516.4597906014109, 514.4588737970108, 514.8408010702148, 517.7722360991113, 562.7224761595886, 561.8498391536394, 560.4503289998208, 549.1482034406008, 529.2522121335347, 543.7400242670127, 545.676872364506, 527.7852864219269, 530.0721052492823, 519.9220040906168, 544.5688758378385, 542.2564535408701, 539.9442082732701, 533.2785910710372, 532.1075051848909, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=39.21637545527792
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "39.21637545527792", "marker": { "color": "#00cc96", "pattern": { "shape": "" } }, "name": "39.21637545527792", "offsetgroup": "39.21637545527792", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.6292524616377, 518.3297706544565, 517.7642295301752, 516.4886053822177, 516.1969240731157, 517.7722360991113, 562.7224761595886, 561.8498391536394, 560.4503289998208, 550.2999173034575, 533.3414105040861, 545.0117012873275, 547.4001520462859, 533.8127090448692, 538.9949689325534, 524.2162990252247, 544.5688758378385, 542.2564535408701, 539.9442082732701, 533.5802721661812, 532.1075051848909, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=39.29150257508463
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "39.29150257508463", "marker": { "color": "#ab63fa", "pattern": { "shape": "" } }, "name": "39.29150257508463", "offsetgroup": "39.29150257508463", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.6315665438626, 518.4726259575378, 518.0910099398697, 516.9970818653691, 516.5366520747201, 517.7722360991113, 562.7224761595886, 561.8498391536394, 560.4503289998208, 550.5884379230557, 534.3658125587814, 545.3302743753686, 547.8318579912807, 535.3226637010007, 550.1388498379804, 525.2920806713685, 544.5688758378385, 542.2564535408701, 539.9442082732701, 533.655847549355, 532.1075051848909, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=39.30318270980665
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "39.30318270980665", "marker": { "color": "#FFA15A", "pattern": { "shape": "" } }, "name": "39.30318270980665", "offsetgroup": "39.30318270980665", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.6319263179656, 518.4948359023625, 518.141815018243, 517.0761355259042, 516.5894701361311, 517.7722360991113, 562.7224761595886, 561.8498391536394, 560.4503289998208, 550.6332946900349, 534.525078001662, 545.3798034481815, 547.8989760121873, 535.5574187914812, 550.1430257489403, 525.4593341823611, 544.5688758378385, 542.2564535408701, 539.9442082732701, 533.6675973763071, 532.1075051848909, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=39.5702239851003
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "39.5702239851003", "marker": { "color": "#19d3f3", "pattern": { "shape": "" } }, "name": "39.5702239851003", "offsetgroup": "39.5702239851003", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.6401517826187, 519.0026187431724, 519.3033643704653, 518.8835282339824, 517.797042036063, 517.7722360991113, 562.7224761595886, 561.8498391536394, 560.4503289998208, 551.6588486365226, 538.1663413936716, 546.5121796649676, 549.4334858722734, 540.9245913657311, 550.238499013145, 529.2832276506966, 544.5688758378385, 542.2564535408701, 539.9442082732701, 533.9362320152427, 532.1075051848909, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=39.69066832659008
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "39.69066832659008", "marker": { "color": "#FF6692", "pattern": { "shape": "" } }, "name": "39.69066832659008", "offsetgroup": "39.69066832659008", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.6438617359676, 519.2316453976247, 519.3033643704653, 519.6987214070173, 518.3416964237749, 517.7722360991113, 562.7224761595886, 561.8498391536394, 560.4503289998208, 552.1214069792774, 539.8086701720941, 547.022918342348, 550.1255999636415, 543.3453615843299, 550.2815605751614, 531.0079285614989, 544.5688758378385, 542.2564535408701, 539.9442082732701, 534.0573950158027, 532.1075051848909, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=39.75846030900367
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "39.75846030900367", "marker": { "color": "#B6E880", "pattern": { "shape": "" } }, "name": "39.75846030900367", "offsetgroup": "39.75846030900367", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.6459498796618, 519.3605528310402, 519.3033643704653, 520.1575521048027, 518.3437318914247, 517.7722360991113, 562.7224761595886, 561.8498391536394, 560.4503289998208, 552.3817575001024, 540.7330533542929, 547.3103871184371, 550.5151557180246, 544.7078897866243, 550.3057977341579, 531.9786748196262, 544.5688758378385, 542.2564535408701, 539.9442082732701, 534.1255914947866, 532.1075051848909, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=39.93746190323393
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "39.93746190323393", "marker": { "color": "#FF97FF", "pattern": { "shape": "" } }, "name": "39.93746190323393", "offsetgroup": "39.93746190323393", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.6514635265111, 519.7009269470932, 519.3033643704653, 521.369073341699, 518.3491064496151, 517.7722360991112, 562.7224761595886, 561.8498391536394, 560.4503289998208, 553.0692010093073, 543.1738443947988, 548.0694351264659, 551.5437596707859, 548.3055824887851, 550.3697948315362, 534.5418854178608, 544.5688758378385, 542.2564535408701, 539.9442082732701, 534.3056611435031, 534.0090386599321, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=39.99991112626061
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "39.99991112626061", "marker": { "color": "#FECB52", "pattern": { "shape": "" } }, "name": "39.99991112626061", "offsetgroup": "39.99991112626061", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.6533871013444, 519.8196750463898, 522.0069808834678, 521.7917430964006, 518.3509814998599, 517.7722360991112, 562.7224761595886, 561.8498391536394, 560.4503289998208, 553.3090330242634, 544.0253759395627, 548.3342481776858, 551.9026141152301, 549.5607283711714, 550.3921218338427, 535.4361261144414, 544.5688758378385, 542.2564535408701, 539.9442082732701, 534.3684829842883, 534.6724365954991, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=40.079081432670144
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "40.079081432670144", "marker": { "color": "#636efa", "pattern": { "shape": "" } }, "name": "40.079081432670144", "offsetgroup": "40.079081432670144", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.6558257227007, 519.9702185271765, 525.4345038753362, 522.3275847349022, 518.3533586039331, 517.7722360991112, 562.7224761595886, 561.8498391536394, 560.4503289998208, 553.6130812283983, 545.1049091995286, 548.6699662121179, 552.0551861266939, 551.1519456719012, 550.420426999674, 536.5698041094729, 544.5688758378385, 542.2564535408701, 539.9442082732701, 534.4481256786747, 535.5134625568285, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=40.11727135214596
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "40.11727135214596", "marker": { "color": "#EF553B", "pattern": { "shape": "" } }, "name": "40.11727135214596", "offsetgroup": "40.11727135214596", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.6570020570797, 520.0428372104883, 527.0878614660454, 522.586062312598, 518.3545052638017, 517.7722360991112, 562.7224761595886, 561.8498391536394, 560.4503289998208, 553.7597470297483, 545.6256510046229, 548.8319088050292, 552.1287833261531, 551.1519456719012, 550.4340807551396, 537.1166640788887, 544.5688758378385, 542.2564535408701, 539.9442082732701, 534.4865434671535, 535.9191539731796, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=40.2457071697066
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "40.2457071697066", "marker": { "color": "#00cc96", "pattern": { "shape": "" } }, "name": "40.2457071697066", "offsetgroup": "40.2457071697066", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.6609581656488, 521.2527886974231, 532.6482380470246, 523.4553435121425, 518.358361574569, 517.7722360991112, 562.7224761595886, 561.8498391536394, 560.4503289998208, 554.2529960955522, 547.3769482158577, 549.3765349682662, 552.3762967174473, 551.1519456719012, 550.4799994496552, 538.955798809392, 544.5688758378385, 542.2564535408701, 539.9442082732701, 534.615745626778, 537.2835273327357, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=40.44714002248111
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "40.44714002248111", "marker": { "color": "#ab63fa", "pattern": { "shape": "" } }, "name": "40.44714002248111", "offsetgroup": "40.44714002248111", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.6671627451043, 523.1504211831351, 541.3688779625872, 524.8186843248003, 518.3644096357236, 517.7722360991112, 562.7224761595886, 561.8498391536394, 560.4503289998208, 555.0265853352232, 550.1236025371768, 550.2307016940294, 552.7644853820675, 551.1519456719012, 550.5520162266546, 541.8402134722027, 544.5688758378385, 542.2564535408701, 539.9442082732701, 534.8183803753401, 537.2835273327357, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=40.50753566627801
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "40.50753566627801", "marker": { "color": "#FFA15A", "pattern": { "shape": "" } }, "name": "40.50753566627801", "offsetgroup": "40.50753566627801", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.6671627451043, 523.7193886285437, 543.983588794345, 525.2274550141934, 518.3662230268469, 517.7722360991112, 562.7224761595886, 561.8498391536394, 560.4503289998208, 555.2585307181175, 550.947132332534, 550.4868066371994, 552.8808760501809, 551.1519456719012, 550.573609028182, 542.705047972326, 544.5688758378385, 542.2564535408701, 539.9442082732701, 534.8791363837393, 537.2835273327357, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=40.777990024016965
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "40.777990024016965", "marker": { "color": "#19d3f3", "pattern": { "shape": "" } }, "name": "40.777990024016965", "offsetgroup": "40.777990024016965", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.6671627451043, 526.2672499534406, 555.6923792669519, 527.0579481973458, 518.3743434723086, 517.7722360991112, 562.7224761595886, 561.8498391536394, 560.4503289998208, 556.2971923767656, 554.6349350924685, 551.6336558727453, 553.4020785974583, 551.1519456719012, 550.6703025461533, 546.5778150226769, 544.5688758378385, 542.2564535408701, 539.9442082732701, 535.1512044700675, 537.2835273327357, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=40.79919610418443
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "40.79919610418443", "marker": { "color": "#FF6692", "pattern": { "shape": "" } }, "name": "40.79919610418443", "offsetgroup": "40.79919610418443", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.6671627451043, 526.4670254422256, 556.6104548768329, 527.2014755027014, 518.3749801890503, 517.7722360991112, 562.7224761595886, 561.8498391536394, 560.4503289998208, 556.378632892586, 554.6349350924685, 551.7235792780558, 553.4429456150707, 551.1519456719012, 550.6778841969387, 546.8814751641745, 544.5688758378385, 542.2564535408701, 539.9442082732701, 535.1725370812256, 537.2835273327357, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=40.81178048525122
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "40.81178048525122", "marker": { "color": "#B6E880", "pattern": { "shape": "" } }, "name": "40.81178048525122", "offsetgroup": "40.81178048525122", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.6671627451043, 526.585578746694, 557.1552709499416, 527.286649296718, 518.3753580375752, 517.7722360991112, 562.7224761595886, 561.8498391536394, 560.4503289998208, 556.42696235646, 554.6349350924685, 551.7769427658063, 553.4671974390114, 551.1519456719012, 550.6823833963119, 546.8814751641745, 544.5688758378385, 542.2564535408701, 539.9442082732701, 535.1851965499178, 537.2835273327357, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=40.85321844893519
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "40.85321844893519", "marker": { "color": "#FF97FF", "pattern": { "shape": "" } }, "name": "40.85321844893519", "offsetgroup": "40.85321844893519", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.6671627451043, 526.9759521388461, 558.9492462382059, 527.5671103352508, 518.3766022206121, 517.7722360991112, 562.7224761595886, 561.8498391536394, 560.4503289998208, 556.586102051789, 554.6349350924685, 551.7769427658063, 553.5470540640133, 551.1519456719012, 550.6971984006613, 546.8814751641745, 544.5688758378385, 542.2564535408701, 539.9442082732701, 535.2268817628132, 537.2835273327357, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=40.88554303114959
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "40.88554303114959", "marker": { "color": "#FECB52", "pattern": { "shape": "" } }, "name": "40.88554303114959", "offsetgroup": "40.88554303114959", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.6671627451043, 527.280471369211, 560.3486755667889, 527.7858900505655, 518.3775727725719, 517.7722360991112, 562.7224761595886, 561.8498391536394, 560.4503289998208, 556.7102424223069, 554.6349350924685, 551.7769427658063, 553.6093479561534, 551.1519456719012, 550.7087551660888, 546.8814751641745, 544.5688758378385, 542.2564535408701, 539.9442082732701, 535.2593992171369, 537.2835273327357, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=41.136482401465926
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "41.136482401465926", "marker": { "color": "#636efa", "pattern": { "shape": "" } }, "name": "41.136482401465926", "offsetgroup": "41.136482401465926", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.6671627451043, 529.6444884324527, 560.3486755667889, 529.4843016072836, 518.3851072766852, 517.7722360991112, 562.7224761595886, 561.8498391536394, 560.4503289998208, 557.673958092381, 554.6349350924685, 551.7769427658064, 554.0929424528904, 551.1519456719012, 550.7984716369797, 546.8814751641745, 544.5688758378385, 542.2564535408701, 539.9442082732701, 535.5118358753483, 537.2835273327357, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=41.311691911561276
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "41.311691911561276", "marker": { "color": "#EF553B", "pattern": { "shape": "" } }, "name": "41.311691911561276", "offsetgroup": "41.311691911561276", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.6671627451043, 531.2950794536442, 560.3486755667889, 530.6701572042659, 518.3851072766852, 517.7722360991112, 562.7224761595886, 561.8498391536394, 560.4503289998208, 558.3468383590846, 554.6349350924685, 551.7769427658064, 554.4305951486441, 551.1519456719012, 550.8611129789599, 546.8814751641745, 544.5688758378385, 542.2564535408701, 539.9442082732701, 535.6880908135813, 537.2835273327357, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=41.33848577095818
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "41.33848577095818", "marker": { "color": "#00cc96", "pattern": { "shape": "" } }, "name": "41.33848577095818", "offsetgroup": "41.33848577095818", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.6671627451043, 531.5474955680409, 560.3486755667889, 530.8515037996265, 518.3851072766852, 517.7722360991112, 562.7224761595886, 561.8498391536394, 560.4503289998208, 558.4497383628983, 554.6349350924685, 551.7769427658064, 554.4822305812761, 551.1519456719012, 550.8706923865419, 546.8814751641745, 544.5688758378385, 542.2564535408701, 539.9442082732701, 535.7150445447484, 537.2835273327357, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=41.46123136424681
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "41.46123136424681", "marker": { "color": "#ab63fa", "pattern": { "shape": "" } }, "name": "41.46123136424681", "offsetgroup": "41.46123136424681", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.6671627451043, 532.7038413283982, 560.3486755667889, 531.682272339114, 518.3851072766852, 517.7722360991112, 562.7224761595886, 561.8498391536394, 560.4503289998208, 558.9211345074557, 554.6349350924685, 553.974183622098, 554.7187781319385, 551.1519456719012, 550.9145766978534, 546.8814751641745, 544.5688758378385, 542.2564535408701, 539.9442082732701, 535.8385225280593, 537.2835273327357, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=41.49396971475139
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "41.49396971475139", "marker": { "color": "#FFA15A", "pattern": { "shape": "" } }, "name": "41.49396971475139", "offsetgroup": "41.49396971475139", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.6671627451043, 533.0122585333894, 560.3486755667889, 531.9038525270884, 518.3851072766853, 517.7722360991112, 562.7224761595886, 561.8498391536394, 560.4503289998208, 559.0468639270915, 554.6349350924685, 554.5602253639561, 554.78186941218, 551.1519456719012, 550.9262813947544, 546.8814751641745, 544.5688758378385, 542.2564535408701, 539.9442082732701, 535.8714562195175, 537.2835273327357, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=41.50705054972993
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "41.50705054972993", "marker": { "color": "#19d3f3", "pattern": { "shape": "" } }, "name": "41.50705054972993", "offsetgroup": "41.50705054972993", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.6671627451043, 533.1354887664602, 560.3486755667889, 531.9923864278114, 518.3851072766853, 517.7722360991112, 562.7224761595886, 561.8498391536394, 560.4503289998208, 559.0468639270915, 554.6349350924685, 554.7943824060071, 554.8070779707269, 551.1519456719012, 550.930958087571, 546.8814751641745, 544.5688758378385, 542.2564535408701, 539.9442082732701, 535.8846151043289, 537.2835273327357, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=41.63094728212825
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "41.63094728212825", "marker": { "color": "#FF6692", "pattern": { "shape": "" } }, "name": "41.63094728212825", "offsetgroup": "41.63094728212825", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.6671627451043, 534.3026790287944, 560.3486755667889, 532.8309461240426, 518.3851072766853, 517.7722360991112, 562.7224761595886, 561.8498391536394, 560.4503289998208, 559.0468639270915, 554.6349350924685, 554.7943824060071, 555.0458439239369, 551.1519456719012, 550.9752539570142, 546.8814751641745, 544.5688758378385, 542.2564535408701, 539.9442082732701, 536.0092510952876, 537.2835273327358, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=41.700816040923726
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "41.700816040923726", "marker": { "color": "#B6E880", "pattern": { "shape": "" } }, "name": "41.700816040923726", "offsetgroup": "41.700816040923726", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.6671627451043, 534.9608895669487, 560.3486755667889, 533.3038328904444, 518.3851072766853, 528.9832044474438, 562.7224761595886, 561.8498391536394, 560.4503289998208, 559.0468639270915, 554.6349350924685, 554.7943824060071, 555.1804905806363, 551.1519456719012, 551.0002336102937, 546.8814751641745, 544.5688758378385, 542.2564535408701, 539.9442082732701, 536.0795367422209, 537.2835273327358, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=41.83473160042925
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "41.83473160042925", "marker": { "color": "#FF97FF", "pattern": { "shape": "" } }, "name": "41.83473160042925", "offsetgroup": "41.83473160042925", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.6671627451043, 536.2224638958614, 560.3486755667889, 534.210202160447, 518.3851072766853, 550.4709641393024, 562.7224761595886, 561.8498391536394, 560.4503289998208, 559.0468639270915, 554.6349350924685, 554.794382406007, 555.4385641843226, 551.1519456719012, 551.048111435846, 546.8814751641745, 544.5688758378385, 542.2564535408701, 539.9442082732701, 536.2142513399401, 537.2835273327358, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=41.90296077026431
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "41.90296077026431", "marker": { "color": "#FECB52", "pattern": { "shape": "" } }, "name": "41.90296077026431", "offsetgroup": "41.90296077026431", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.6671627451043, 536.8652284070562, 560.3486755667889, 534.671991836603, 519.0690698214812, 561.4188480954623, 562.7224761595886, 561.8498391536394, 560.4503289998208, 559.0468639270915, 554.6349350924685, 554.794382406007, 555.5700511287887, 551.1519456719012, 551.0725048991821, 546.8814751641745, 544.5688758378385, 542.2564535408701, 539.9442082732701, 536.2828876149256, 537.2835273327358, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=41.93283958287484
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "41.93283958287484", "marker": { "color": "#636efa", "pattern": { "shape": "" } }, "name": "41.93283958287484", "offsetgroup": "41.93283958287484", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.6671627451043, 537.1467068484488, 560.3486755667889, 534.87421805792, 519.3685896420797, 561.6717004153618, 562.7224761595886, 561.8498391536394, 560.4503289998208, 559.0468639270915, 554.6349350924685, 554.794382406007, 555.6276316883051, 551.1519456719012, 551.0831872469478, 546.8814751641745, 544.5688758378385, 542.2564535408701, 539.9442082732701, 536.3129447063944, 537.2835273327358, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=42.14680390729975
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "42.14680390729975", "marker": { "color": "#EF553B", "pattern": { "shape": "" } }, "name": "42.14680390729975", "offsetgroup": "42.14680390729975", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.6671627451043, 539.1623941964638, 560.3486755667889, 536.3223745623001, 521.5134726031795, 563.4823940500715, 562.7224761595886, 561.8498391536394, 560.4503289998208, 559.0468639270915, 555.2132956521273, 554.794382406007, 556.0399702131824, 551.1519456719012, 551.1596843070135, 546.8814751641745, 544.5688758378385, 542.2564535408701, 539.9442082732701, 536.528185698536, 537.2835273327358, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=42.22412721160745
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "42.22412721160745", "marker": { "color": "#00cc96", "pattern": { "shape": "" } }, "name": "42.22412721160745", "offsetgroup": "42.22412721160745", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.6671627451043, 539.890831549834, 560.3486755667889, 536.8457152938652, 522.2885991966024, 564.1367499353388, 562.7224761595886, 561.8498391536394, 560.4503289998208, 559.0468639270915, 555.4223059610854, 555.2358206823782, 556.1889827989141, 551.1519456719012, 551.1873291280369, 546.8814751641745, 544.5688758378385, 542.2564535408701, 539.9442082732701, 536.6059703702546, 537.2835273327358, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=42.2639939367465
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "42.2639939367465", "marker": { "color": "#ab63fa", "pattern": { "shape": "" } }, "name": "42.2639939367465", "offsetgroup": "42.2639939367465", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.6671627451043, 540.2664028217531, 560.3486755667889, 537.1155418524451, 522.6882427338857, 564.1367499353388, 562.7224761595886, 561.8498391536394, 560.4503289998208, 559.0468639270915, 555.5300685122731, 555.4634195749438, 556.2658114322843, 551.1519456719012, 551.2015823792543, 546.8814751641745, 544.5688758378385, 542.2564535408701, 539.9442082732701, 536.6460749694462, 537.2835273327358, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=42.41688837159459
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "42.41688837159459", "marker": { "color": "#FFA15A", "pattern": { "shape": "" } }, "name": "42.41688837159459", "offsetgroup": "42.41688837159459", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.6671627451043, 541.7067708771918, 560.3486755667889, 538.1503642271746, 524.2209312745294, 564.1367499353388, 562.7224761595886, 561.8498391536394, 560.4503289998208, 559.0468639270915, 555.9433528817358, 556.3362929782518, 556.5604599251892, 551.1519456719012, 551.2562455797563, 546.8814751641745, 544.5688758378385, 542.2564535408701, 539.9442082732701, 536.7998816843651, 537.2835273327358, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=42.46518071355044
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "42.46518071355044", "marker": { "color": "#19d3f3", "pattern": { "shape": "" } }, "name": "42.46518071355044", "offsetgroup": "42.46518071355044", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.6671627451043, 542.1617171068872, 560.3486755667889, 538.4772171700803, 524.7050373127258, 564.1367499353388, 562.7224761595886, 561.8498391536394, 560.4503289998208, 559.0468639270915, 555.9897681155205, 556.6119936662369, 556.6535258748445, 551.1519456719012, 551.2735111785576, 546.8814751641745, 544.5688758378385, 542.2564535408701, 539.9442082732701, 536.8484621737684, 537.2835273327357, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=42.479485028495645
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "42.479485028495645", "marker": { "color": "#FF6692", "pattern": { "shape": "" } }, "name": "42.479485028495645", "offsetgroup": "42.479485028495645", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 521.1960606086716, 520.6671627451043, 542.2964733412948, 560.3486755667889, 538.5740318460048, 524.8484307568368, 564.1367499353388, 562.7224761595886, 561.8498391536394, 560.4503289998208, 559.0468639270915, 556.0035164262345, 556.6936569136966, 556.6535258748445, 551.1519456719012, 551.27862529299, 546.8814751641745, 544.5688758378385, 542.2564535408701, 539.9442082732701, 536.8628518387231, 537.2835273327357, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=42.52990511682548
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "42.52990511682548", "marker": { "color": "#B6E880", "pattern": { "shape": "" } }, "name": "42.52990511682548", "offsetgroup": "42.52990511682548", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 524.8877191488117, 520.6671627451043, 542.7714643679783, 560.3486755667889, 538.9152858333811, 525.3538663646023, 564.1367499353388, 562.7224761595886, 561.8498391536394, 560.4503289998208, 559.0468639270915, 556.0519767015596, 556.9815048928548, 556.6535258748445, 551.1519456719012, 551.2966516089932, 546.8814751641745, 544.5688758378385, 542.2564535408701, 539.9442082732701, 536.9135727701922, 537.2835273327357, 533.0629167293708 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=42.574140822722775
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "42.574140822722775", "marker": { "color": "#FF97FF", "pattern": { "shape": "" } }, "name": "42.574140822722775", "offsetgroup": "42.574140822722775", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 528.1265695131065, 520.6671627451043, 543.1881943669973, 560.3486755667889, 539.2146825921313, 525.7973067003047, 564.1367499353388, 562.7224761595886, 561.8498391536394, 560.4503289998208, 559.0468639270915, 556.0944929794558, 557.2340462701304, 556.6535258748445, 551.1519456719012, 551.3124668691314, 546.8814751641745, 544.5688758378385, 542.2564535408701, 539.9442082732701, 536.9580724186781, 537.2835273327357, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=42.77078719357291
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "42.77078719357291", "marker": { "color": "#FECB52", "pattern": { "shape": "" } }, "name": "42.77078719357291", "offsetgroup": "42.77078719357291", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 542.5246254940369, 520.6671627451043, 545.0407349847897, 560.3486755667889, 540.5456274670528, 527.7685860307829, 564.1367499353388, 562.7224761595886, 561.8498391536394, 560.4503289998208, 559.0468639270915, 556.2834957676054, 558.3566992113095, 556.6535258748445, 551.1519456719012, 551.3827723711494, 546.8814751641745, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.1558921256624, 537.2835273327357, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=42.77109897478207
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "42.77109897478207", "marker": { "color": "#636efa", "pattern": { "shape": "" } }, "name": "42.77109897478207", "offsetgroup": "42.77109897478207", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 542.5474534937804, 520.6671627451043, 545.0436721727548, 560.3486755667889, 540.5477376692428, 527.7717114780037, 564.1367499353388, 562.7224761595886, 561.8498391536394, 560.4503289998208, 559.0468639270915, 556.2837954299769, 558.3584791683459, 556.6535258748445, 551.1519456719012, 551.3828838399465, 546.8814751641745, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.1562057671864, 537.2835273327357, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=43.060226041834014
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "43.060226041834014", "marker": { "color": "#EF553B", "pattern": { "shape": "" } }, "name": "43.060226041834014", "offsetgroup": "43.060226041834014", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 563.7167620298057, 520.6671627451043, 547.7674429349679, 560.3486755667889, 542.5046117596735, 530.670062506285, 564.1367499353388, 562.7224761595886, 561.8498391536394, 560.4503289998208, 559.0468639270915, 556.5616842186998, 558.3584791683459, 556.6535258748445, 551.1519456719012, 551.4862532716234, 546.8814751641745, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.447057977874, 537.2835273327357, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=43.1222213657023
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "43.1222213657023", "marker": { "color": "#00cc96", "pattern": { "shape": "" } }, "name": "43.1222213657023", "offsetgroup": "43.1222213657023", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 568.2559362833281, 520.6671627451043, 548.351480438852, 560.3486755667889, 542.9242094273797, 531.2915339323762, 564.1367499353388, 562.7224761595886, 561.8498391536394, 560.4503289998208, 559.0468639270915, 556.621269803792, 558.3584791683459, 556.6535258748445, 551.1519456719012, 551.5084179947683, 546.8814751641745, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.5094232112064, 537.2835273327357, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=43.138390473686016
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "43.138390473686016", "marker": { "color": "#ab63fa", "pattern": { "shape": "" } }, "name": "43.138390473686016", "offsetgroup": "43.138390473686016", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 568.2820245237453, 520.6671627451043, 548.5038042735804, 560.3486755667889, 543.0336454231214, 531.4536209733053, 564.1367499353388, 562.7224761595886, 561.8498391536394, 560.4503289998208, 559.0468639270915, 556.6368104236244, 558.3584791683459, 556.6535258748445, 551.1519456719012, 551.5141988146688, 546.8814751641745, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.5256887959192, 537.2835273327357, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=43.24421031420755
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "43.24421031420755", "marker": { "color": "#FFA15A", "pattern": { "shape": "" } }, "name": "43.24421031420755", "offsetgroup": "43.24421031420755", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 568.4527608094593, 520.6671627451043, 549.5006980982005, 560.3486755667889, 543.7498568324561, 532.5144107731516, 564.1367499353388, 562.7224761595886, 561.8498391536394, 560.4503289998208, 559.0468639270915, 556.7385170801655, 558.3584791683459, 556.6535258748445, 551.1519456719012, 551.5520317885455, 546.8814751641745, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350374, 537.4751254751424, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=43.27692227013378
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "43.27692227013378", "marker": { "color": "#19d3f3", "pattern": { "shape": "" } }, "name": "43.27692227013378", "offsetgroup": "43.27692227013378", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 568.5055403054947, 520.6671627451043, 549.8088666485723, 560.3486755667889, 543.971258376255, 532.842331407019, 564.1367499353388, 562.7224761595886, 561.8498391536394, 560.4503289998208, 559.0468639270915, 556.7699575326343, 558.3584791683459, 556.6535258748445, 551.1519456719012, 551.5637270487908, 546.8814751641745, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350374, 537.5343539710376, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=43.362871627306525
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "43.362871627306525", "marker": { "color": "#FF6692", "pattern": { "shape": "" } }, "name": "43.362871627306525", "offsetgroup": "43.362871627306525", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 568.6442163224954, 520.6671627451043, 550.6185672016378, 560.3486755667889, 544.5529820863713, 533.7039297702638, 564.1367499353388, 562.7224761595886, 561.8498391536394, 560.4503289998208, 559.0468639270915, 556.8525660652764, 558.3584791683459, 556.6535258748445, 551.1519456719012, 551.5944558777951, 546.8814751641745, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350374, 537.6899744774963, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=43.54022872965482
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "43.54022872965482", "marker": { "color": "#B6E880", "pattern": { "shape": "" } }, "name": "43.54022872965482", "offsetgroup": "43.54022872965482", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 568.9303752578205, 520.6671627451043, 552.2893899812993, 560.3486755667889, 545.7533730489957, 535.4818440458299, 564.1367499353388, 562.7224761595885, 561.8498391536394, 560.4503289998208, 559.0468639270915, 557.0230293527351, 558.3584791683459, 556.6535258748445, 551.1519456719012, 551.6578650323254, 546.8814751641745, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350374, 538.011098485859, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=43.549433968320535
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "43.549433968320535", "marker": { "color": "#FF97FF", "pattern": { "shape": "" } }, "name": "43.549433968320535", "offsetgroup": "43.549433968320535", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 568.9452275601028, 520.6671627451043, 552.3761094994425, 560.3486755667889, 545.8156760814472, 535.5741218571894, 564.1367499353388, 562.7224761595885, 561.8498391536394, 560.4503289998208, 559.0468639270915, 557.0318767866637, 558.3584791683459, 556.6535258748445, 551.1519456719012, 551.6611561122613, 546.8814751641745, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350374, 538.0277655552862, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=43.69050794432827
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "43.69050794432827", "marker": { "color": "#FECB52", "pattern": { "shape": "" } }, "name": "43.69050794432827", "offsetgroup": "43.69050794432827", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 569.1728450518297, 520.6671627451043, 553.705120909813, 560.3486755667889, 546.7704950518689, 536.9883163412786, 564.1367499353388, 562.9427724392201, 561.8498391536394, 560.4503289998208, 559.0468639270915, 557.1674672615122, 558.3584791683459, 556.6535258748445, 551.1519456719012, 551.7115932327738, 546.8814751641745, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350374, 538.2831950816566, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=43.884362898890004
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "43.884362898890004", "marker": { "color": "#636efa", "pattern": { "shape": "" } }, "name": "43.884362898890004", "offsetgroup": "43.884362898890004", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 569.4856226438765, 520.6671627451043, 555.5313645151914, 560.3486755667889, 548.0825470217917, 538.9316131506033, 564.1367499353388, 563.2454896836518, 561.8498391536394, 560.4503289998208, 559.0468639270915, 557.3537871348482, 558.3584791683459, 556.6535258748445, 551.1519456719012, 551.7809007406634, 546.8814751641745, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350374, 538.6341902164754, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=44.01463732532422
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "44.01463732532422", "marker": { "color": "#EF553B", "pattern": { "shape": "" } }, "name": "44.01463732532422", "offsetgroup": "44.01463732532422", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 569.6958154733426, 520.6671627451043, 556.7586369300631, 560.3486755667889, 548.9642723211011, 540.2375476715887, 564.1367499353388, 563.2454896836518, 561.8498391536394, 560.4503289998208, 559.0468639270915, 557.4789978352247, 558.3584791683459, 556.6535258748445, 551.1519456719012, 551.8274767792191, 546.8814751641746, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350374, 538.8700660029524, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=44.108610402454936
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "44.108610402454936", "marker": { "color": "#00cc96", "pattern": { "shape": "" } }, "name": "44.108610402454936", "offsetgroup": "44.108610402454936", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 569.8474374571532, 520.6671627451043, 557.6439263031187, 560.3486755667889, 549.6003022912806, 541.1795797252104, 564.1367499353388, 563.2454896836518, 561.8498391536394, 560.4503289998208, 559.0468639270915, 557.5693182083489, 558.3584791683459, 556.6535258748445, 551.1519456719012, 551.8610742686377, 546.8814751641746, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350374, 539.0402143128133, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=44.11692579762013
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "44.11692579762013", "marker": { "color": "#ab63fa", "pattern": { "shape": "" } }, "name": "44.11692579762013", "offsetgroup": "44.11692579762013", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 569.8608540308104, 520.6671627451043, 557.7222628990595, 560.3486755667889, 549.6565826717942, 541.262937310418, 564.1367499353388, 563.2454896836518, 561.8498391536394, 560.4503289998208, 559.0468639270915, 557.5773103867145, 558.3584791683459, 556.6535258748445, 551.1519456719012, 551.8640472095012, 546.8814751641746, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350374, 539.0485949171192, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=44.12831968551308
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "44.12831968551308", "marker": { "color": "#FFA15A", "pattern": { "shape": "" } }, "name": "44.12831968551308", "offsetgroup": "44.12831968551308", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 569.879237635332, 520.6671627451043, 557.8296009598893, 560.3486755667889, 549.7336989523083, 541.3771552113132, 564.1367499353388, 563.2454896836518, 561.8498391536394, 560.4503289998208, 559.0468639270915, 557.5773103867145, 558.3584791683459, 556.6535258748445, 551.1519456719012, 551.8681207807795, 546.8814751641746, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350374, 539.0600781556233, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=44.22456435168797
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "44.22456435168797", "marker": { "color": "#19d3f3", "pattern": { "shape": "" } }, "name": "44.22456435168797", "offsetgroup": "44.22456435168797", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 570.0345247416202, 520.6671627451043, 558.7362902242985, 560.3486755667889, 550.3851035250457, 542.3419587837317, 564.1367499353388, 563.2454896836518, 561.8498391536394, 560.4503289998208, 559.0468639270915, 557.5773103867145, 558.3584791683459, 556.6535258748445, 551.1519456719012, 551.9025304143909, 546.8814751641746, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350374, 539.1570775702926, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=44.29423031503364
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "44.29423031503364", "marker": { "color": "#FF6692", "pattern": { "shape": "" } }, "name": "44.29423031503364", "offsetgroup": "44.29423031503364", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 570.1469281223444, 520.6671627451043, 559.3925902933898, 560.3486755667889, 550.8566177282854, 543.0403244488973, 564.1367499353388, 563.2454896836518, 561.8498391536394, 560.4503289998208, 559.0468639270915, 557.5773103867145, 558.3584791683459, 556.6535258748445, 551.1519456719012, 551.9274375637342, 548.8140830921272, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350374, 539.2272898525465, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=44.29502173658242
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "44.29502173658242", "marker": { "color": "#B6E880", "pattern": { "shape": "" } }, "name": "44.29502173658242", "offsetgroup": "44.29502173658242", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 570.1482050508959, 520.6671627451043, 559.4000460148383, 560.3486755667889, 550.8619742393143, 543.0482580453022, 564.1367499353388, 563.2454896836518, 561.8498391536394, 560.4503289998208, 559.0468639270915, 557.5773103867145, 558.3584791683459, 556.6535258748445, 551.1519456719012, 551.9277205147445, 548.8140830921272, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350374, 539.2280874804052, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=44.795150046331486
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "44.795150046331486", "marker": { "color": "#FF97FF", "pattern": { "shape": "" } }, "name": "44.795150046331486", "offsetgroup": "44.795150046331486", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 570.9551430463233, 520.6671627451043, 564.1115899091526, 560.3486755667889, 554.2469500605612, 548.0617886552656, 564.1367499353388, 563.2454896836518, 561.8498391536394, 560.4503289998208, 559.0468639270915, 557.5773103867145, 558.3584791683459, 556.6535258748445, 551.1519456719012, 552.1065276381016, 548.8140830921272, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350374, 539.732137785043, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=45.003988815437644
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "45.003988815437644", "marker": { "color": "#FECB52", "pattern": { "shape": "" } }, "name": "45.003988815437644", "offsetgroup": "45.003988815437644", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 571.2920964529294, 520.6671627451043, 566.0789910906052, 560.3486755667889, 555.6604157056433, 550.1552905447829, 564.1367499353388, 563.2454896836518, 561.8498391536394, 560.4503289998208, 559.0468639270915, 557.5773103867145, 558.3584791683459, 556.6535258748445, 551.1519456719012, 552.1809553515083, 548.8140830921272, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350375, 539.9426142630512, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=45.007856590396585
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "45.007856590396585", "marker": { "color": "#636efa", "pattern": { "shape": "" } }, "name": "45.007856590396585", "offsetgroup": "45.007856590396585", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 571.2983369606377, 520.6671627451043, 566.0789910906052, 560.3486755667889, 555.6865936373117, 550.1940630113103, 564.1367499353388, 563.2454896836518, 561.8498391536394, 560.4503289998208, 559.0468639270915, 557.5773103867145, 558.3584791683459, 556.6535258748445, 551.1519456719012, 552.182333781612, 548.8140830921272, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350375, 539.9465123690138, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=45.121995478221244
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "45.121995478221244", "marker": { "color": "#EF553B", "pattern": { "shape": "" } }, "name": "45.121995478221244", "offsetgroup": "45.121995478221244", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 571.4824957125943, 520.6671627451043, 566.0789910906052, 560.3486755667889, 556.459110145614, 551.3382470071797, 564.1367499353388, 563.2454896836518, 561.8498391536394, 560.4503289998208, 559.0468639270915, 557.5773103867145, 558.3584791683459, 556.6535258748445, 551.1519456719011, 552.2230115564711, 548.8140830921272, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350375, 540.0089567357746, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=45.250958178628906
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "45.250958178628906", "marker": { "color": "#00cc96", "pattern": { "shape": "" } }, "name": "45.250958178628906", "offsetgroup": "45.250958178628906", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 571.6905721220343, 520.6671627451043, 566.0789910906052, 560.3486755667889, 557.3319574014346, 552.6310321453809, 564.1367499353388, 563.2454896836518, 561.8498391536394, 560.4503289998208, 559.0468639270915, 557.5773103867145, 558.3584791683459, 556.6535258748445, 551.1519456719011, 552.2689723660811, 548.8140830921272, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350375, 540.0795110780869, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=45.3393497791437
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "45.3393497791437", "marker": { "color": "#ab63fa", "pattern": { "shape": "" } }, "name": "45.3393497791437", "offsetgroup": "45.3393497791437", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 571.8331886057279, 520.6671627451043, 566.0789910906052, 560.3486755667889, 557.9302107390511, 553.5171127495101, 564.1367499353388, 563.2454896836518, 561.8498391536394, 560.4503289998208, 559.0468639270915, 557.5773103867145, 558.3584791683459, 556.6535258748445, 551.1519456719011, 552.3004741065809, 548.8919965878614, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350375, 540.1278693337728, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=45.36328446516111
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "45.36328446516111", "marker": { "color": "#FFA15A", "pattern": { "shape": "" } }, "name": "45.36328446516111", "offsetgroup": "45.36328446516111", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 571.8718063107839, 520.6671627451043, 566.0789910906052, 560.3486755667889, 558.092205834867, 553.7570457400028, 564.1367499353388, 563.2454896836518, 561.8498391536394, 560.4503289998208, 559.0579925838277, 557.5773103867145, 558.3584791683459, 556.6535258748445, 551.1519456719011, 552.3090041508777, 548.913094011667, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350375, 540.1409637868593, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=45.9148773821524
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "45.9148773821524", "marker": { "color": "#19d3f3", "pattern": { "shape": "" } }, "name": "45.9148773821524", "offsetgroup": "45.9148773821524", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 572.7617804915142, 520.6671627451043, 566.0789910906052, 560.3486755667889, 561.8255051718378, 559.2864827258081, 564.1367499353388, 563.2454896836518, 561.8498391536394, 560.4503289998208, 559.314460883719, 557.5773103867145, 558.3584791683459, 556.8306329668062, 551.1519456719011, 552.5055854643888, 549.3993000780205, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350375, 540.4427353483993, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=46.10862607282206
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "46.10862607282206", "marker": { "color": "#FF6692", "pattern": { "shape": "" } }, "name": "46.10862607282206", "offsetgroup": "46.10862607282206", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.074386630815, 520.6671627451043, 566.0789910906052, 560.3486755667889, 563.136837924915, 561.2287142939433, 564.1367499353388, 563.2454896836518, 561.8498391536394, 560.4503289998208, 559.4045461545257, 559.1999793875194, 558.3584791683459, 556.8928423718202, 551.1519456719011, 552.5746352489848, 549.570081438422, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350375, 540.5487335277244, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=46.175475331181204
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "46.175475331181204", "marker": { "color": "#B6E880", "pattern": { "shape": "" } }, "name": "46.175475331181204", "offsetgroup": "46.175475331181204", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.182245365233, 520.6671627451043, 566.0789910906052, 560.3486755667889, 563.5892880638153, 561.8988439316857, 564.1367499353388, 563.2454896836518, 561.8498391536394, 560.4503289998208, 559.4356283441482, 559.7598501091808, 558.3584791683459, 556.9143065302295, 551.1519456719011, 552.598459548773, 549.62900626132, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350375, 540.585306160297, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=46.202766220740195
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "46.202766220740195", "marker": { "color": "#FF97FF", "pattern": { "shape": "" } }, "name": "46.202766220740195", "offsetgroup": "46.202766220740195", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.2262781769832, 520.6671627451043, 566.0789910906052, 560.3486755667889, 563.7739986660683, 562.1724211467923, 564.1367499353388, 563.2454896836518, 561.8498391536394, 560.4503289998208, 559.4483174991974, 559.7704382594691, 558.3584791683459, 556.9230691701002, 551.1519456719011, 552.6081857050581, 549.6530620380549, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350375, 540.6002367623848, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=46.24326639374972
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "46.24326639374972", "marker": { "color": "#FECB52", "pattern": { "shape": "" } }, "name": "46.24326639374972", "offsetgroup": "46.24326639374972", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.2916236649025, 520.6671627451043, 566.0789910906052, 560.3486755667889, 564.0481125358917, 562.578414675121, 564.1367499353388, 563.2454896836518, 561.8498391536394, 560.4503289998208, 559.4671484344706, 559.7861512657307, 558.3584791683459, 556.9360730859315, 551.1519456719011, 552.6115070700497, 549.688761245204, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350375, 540.6223940455465, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=46.296312210030116
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "46.296312210030116", "marker": { "color": "#636efa", "pattern": { "shape": "" } }, "name": "46.296312210030116", "offsetgroup": "46.296312210030116", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.3772110708156, 520.6671627451043, 566.0789910906052, 560.3486755667889, 564.4071380140085, 563.1101718631628, 564.1367499353388, 563.2454896836518, 561.8498391536394, 560.4503289998208, 559.4918125842426, 559.8067316529596, 558.3584791683459, 556.9531051941634, 551.1519456719011, 552.6158572864576, 549.735518911729, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350375, 540.651414938163, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=46.36238144501525
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "46.36238144501525", "marker": { "color": "#EF553B", "pattern": { "shape": "" } }, "name": "46.36238144501525", "offsetgroup": "46.36238144501525", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.4838112672034, 520.6671627451043, 566.0789910906052, 560.3486755667889, 564.8543087871751, 563.7724821653751, 564.1367499353388, 563.2454896836518, 561.8498391536394, 560.4503289998208, 559.5225320946818, 559.832364785509, 558.3584791683459, 556.9531051941634, 551.1519456719011, 552.6212755360057, 549.7937561766748, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350375, 540.68756082691, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=46.48571170034651
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "46.48571170034651", "marker": { "color": "#00cc96", "pattern": { "shape": "" } }, "name": "46.48571170034651", "offsetgroup": "46.48571170034651", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.6827999408549, 520.6671627451043, 566.0789910906052, 560.3486755667889, 565.6890344449448, 565.0088049213257, 564.1367499353388, 563.2454896836518, 561.8498391536394, 560.4503289998208, 559.5798756535557, 559.8802136940511, 558.3584791683459, 556.9531051941634, 551.1519456719011, 552.6313896852063, 549.7937561766748, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350375, 540.7550337087945, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=46.54866447289529
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "46.54866447289529", "marker": { "color": "#ab63fa", "pattern": { "shape": "" } }, "name": "46.54866447289529", "offsetgroup": "46.54866447289529", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 566.1151123309676, 565.639874280934, 564.1367499353388, 563.2454896836518, 561.8498391536394, 560.4503289998208, 559.6091461355575, 559.9046377208082, 558.3584791683459, 556.9531051941634, 551.1519456719011, 552.6365523578403, 549.7937561766748, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350375, 540.7894746087592, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=46.564680245777616
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "46.564680245777616", "marker": { "color": "#FFA15A", "pattern": { "shape": "" } }, "name": "46.564680245777616", "offsetgroup": "46.564680245777616", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 566.2235105218087, 565.8004242158659, 564.1367499353388, 563.2454896836518, 561.8498391536394, 560.4503289998208, 559.6165928193636, 559.9108514211676, 558.3584791683459, 556.9531051941634, 551.1519456719011, 552.6378657899422, 549.7937561766748, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350375, 540.7982366951513, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=46.659760523543746
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "46.659760523543746", "marker": { "color": "#19d3f3", "pattern": { "shape": "" } }, "name": "46.659760523543746", "offsetgroup": "46.659760523543746", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 566.8670342637007, 565.8004242158659, 564.1367499353388, 563.2454896836518, 561.8498391536394, 560.4503289998208, 559.6608012862251, 559.9477400783976, 558.3584791683459, 556.9531051941634, 551.1519456719011, 552.6456631962866, 549.7937561766748, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350375, 540.8502542664603, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=46.69187486266235
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "46.69187486266235", "marker": { "color": "#FF6692", "pattern": { "shape": "" } }, "name": "46.69187486266235", "offsetgroup": "46.69187486266235", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.0843910085855, 565.8004242158659, 564.1367499353388, 563.2454896836518, 561.8498391536394, 560.4503289998208, 559.675733149384, 559.960199600769, 558.3584791683459, 556.9531051941634, 551.1519456719011, 552.6482968502627, 549.7937561766748, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350375, 540.8678237347495, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=46.706920769563055
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "46.706920769563055", "marker": { "color": "#B6E880", "pattern": { "shape": "" } }, "name": "46.706920769563055", "offsetgroup": "46.706920769563055", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.1862249381488, 565.8004242158659, 564.1367499353388, 563.2454896836518, 561.8498391536394, 560.4503289998208, 559.682728884906, 559.9660370185323, 558.3584791683459, 556.9531051941634, 551.1519456719011, 552.6495307449533, 549.7937561766748, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350375, 540.8760552161199, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=46.92059468036083
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "46.92059468036083", "marker": { "color": "#FF97FF", "pattern": { "shape": "" } }, "name": "46.92059468036083", "offsetgroup": "46.92059468036083", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.2868456759046, 565.8004242158659, 564.1367499353388, 563.2454896836518, 561.8498391536394, 560.4503289998208, 559.7820785736808, 560.0489368989238, 558.3584791683459, 556.9531051941634, 551.1519456719011, 552.667053856442, 549.793756176675, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350375, 540.9929543055307, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=47.07770347974001
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "47.07770347974001", "marker": { "color": "#FECB52", "pattern": { "shape": "" } }, "name": "47.07770347974001", "offsetgroup": "47.07770347974001", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.360829454469, 565.8004242158659, 564.1367499353388, 563.2454896836518, 561.8498391536394, 560.4503289998208, 559.8551277834033, 560.1098909977577, 558.3584791683459, 556.9531051941634, 551.1519456719011, 552.6799381388379, 549.793756176675, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350375, 541.0789071273671, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=47.593982027701074
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "47.593982027701074", "marker": { "color": "#636efa", "pattern": { "shape": "" } }, "name": "47.593982027701074", "offsetgroup": "47.593982027701074", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.6039491137168, 565.8004242158659, 564.1367499353388, 563.2454896836518, 561.8498391536396, 560.4503289998208, 560.0951763362168, 560.3101935509092, 558.3584791683459, 556.9531051941634, 551.1519456719011, 552.7222774516782, 549.793756176675, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350375, 541.3613585128155, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=47.60151878277625
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "47.60151878277625", "marker": { "color": "#EF553B", "pattern": { "shape": "" } }, "name": "47.60151878277625", "offsetgroup": "47.60151878277625", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.6074982314033, 565.8004242158659, 564.1367499353388, 563.2454896836518, 561.8498391536396, 560.4503289998208, 560.0986806211728, 560.3131176144598, 558.3584791683459, 556.9531051941634, 551.1519456719011, 552.7228955308764, 549.793756176675, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350375, 541.3654818042464, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=47.6088277963454
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "47.6088277963454", "marker": { "color": "#00cc96", "pattern": { "shape": "" } }, "name": "47.6088277963454", "offsetgroup": "47.6088277963454", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.6109401038099, 565.8004242158659, 564.1367499353388, 563.2454896836518, 561.8498391536396, 560.4503289998208, 560.1020790155796, 560.3159533202714, 558.3584791683459, 556.9531051941634, 551.1519456719011, 552.7234949332983, 549.793756176675, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350375, 541.3694805003322, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=47.708656045739914
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "47.708656045739914", "marker": { "color": "#ab63fa", "pattern": { "shape": "" } }, "name": "47.708656045739914", "offsetgroup": "47.708656045739914", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 563.2454896836518, 561.8498391536396, 560.4503289998208, 560.1484950963788, 560.3546840661244, 558.3584791683459, 556.9531051941634, 551.1519456719011, 552.7657377649901, 549.793756176675, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350375, 541.4240956445401, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=47.71087538922627
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "47.71087538922627", "marker": { "color": "#FFA15A", "pattern": { "shape": "" } }, "name": "47.71087538922627", "offsetgroup": "47.71087538922627", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 563.2454896836518, 561.8498391536396, 560.4503289998208, 560.1495270009469, 560.3555451132634, 558.3584791683459, 556.9531051941634, 551.1519456719011, 552.7666768914792, 549.793756176675, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350375, 541.4253098275524, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=47.94751030975122
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "47.94751030975122", "marker": { "color": "#19d3f3", "pattern": { "shape": "" } }, "name": "47.94751030975122", "offsetgroup": "47.94751030975122", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 563.2454896836518, 561.8498391536396, 560.4503289998208, 560.2595526265351, 560.4473532639857, 558.3584791683459, 556.9531051941634, 551.1519456719011, 552.8668101621793, 549.793756176675, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350375, 541.5547706804422, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=47.99123597938316
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "47.99123597938316", "marker": { "color": "#FF6692", "pattern": { "shape": "" } }, "name": "47.99123597938316", "offsetgroup": "47.99123597938316", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 563.2454896836518, 561.8498391536396, 560.4503289998208, 560.2798832867134, 560.4643176784479, 558.3584791683459, 556.9531051941634, 551.1519456719011, 552.8853129017753, 549.793756176675, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350375, 541.5786926040162, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=48.16582265504936
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "48.16582265504936", "marker": { "color": "#B6E880", "pattern": { "shape": "" } }, "name": "48.16582265504936", "offsetgroup": "48.16582265504936", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 563.2454896836518, 561.8498391536396, 560.4503289998208, 560.3610589989325, 560.5320527354637, 558.3584791683459, 556.9531051941634, 551.1519456719011, 552.9591901419406, 549.793756176675, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350375, 541.6742074159671, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=48.31661977281291
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "48.31661977281291", "marker": { "color": "#FF97FF", "pattern": { "shape": "" } }, "name": "48.31661977281291", "offsetgroup": "48.31661977281291", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 563.2454896836518, 561.8498391536396, 560.4503289998208, 560.4311735330934, 560.5905580671596, 558.3584791683459, 556.9531051941634, 551.1519456719011, 553.02300070963, 549.793756176675, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350375, 541.7567071731276, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=48.317102814015996
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "48.317102814015996", "marker": { "color": "#FECB52", "pattern": { "shape": "" } }, "name": "48.317102814015996", "offsetgroup": "48.317102814015996", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 563.2454896836518, 561.8498391536396, 560.4503289998208, 560.431398127631, 560.5907454744935, 558.3585458592189, 556.9531051941634, 551.1519456719011, 553.0232051109729, 549.793756176675, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350375, 541.7569714406583, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=48.468647031564394
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "48.468647031564394", "marker": { "color": "#636efa", "pattern": { "shape": "" } }, "name": "48.468647031564394", "offsetgroup": "48.468647031564394", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 563.2454896836518, 561.8498391536396, 560.4503289998208, 560.5018600328436, 560.6495406613363, 558.379468745511, 556.9531051941634, 551.1519456719011, 553.0873318177377, 549.793756176675, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350375, 541.7876401915058, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=48.48044709718775
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "48.48044709718775", "marker": { "color": "#EF553B", "pattern": { "shape": "" } }, "name": "48.48044709718775", "offsetgroup": "48.48044709718775", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 563.2454896836518, 561.8498391536396, 560.4503289998208, 560.5073465840227, 560.6541187777059, 558.381097916424, 556.9531051941634, 551.1519456719011, 553.092325075549, 549.793756176675, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350375, 541.7900282289937, 536.6874946412381 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=48.73569665784232
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "48.73569665784232", "marker": { "color": "#00cc96", "pattern": { "shape": "" } }, "name": "48.73569665784232", "offsetgroup": "48.73569665784232", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 563.2454896836518, 561.8498391536396, 560.4503289998208, 560.6260272611172, 560.7531489212047, 558.4163388356757, 556.9531051941634, 551.1519456719011, 553.2003352259377, 549.793756176675, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350375, 541.8416843416867, 536.6874946412382 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=49.06669510663274
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "49.06669510663274", "marker": { "color": "#ab63fa", "pattern": { "shape": "" } }, "name": "49.06669510663274", "offsetgroup": "49.06669510663274", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 563.2454896836518, 561.8498391536396, 560.4503289998208, 560.7799280941645, 560.8815676491254, 558.462037992126, 556.9531051941634, 551.1519456719011, 553.3403989037774, 549.7937561766748, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350375, 541.9086701305283, 536.6874946412382 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=49.330592191903854
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "49.330592191903854", "marker": { "color": "#FFA15A", "pattern": { "shape": "" } }, "name": "49.330592191903854", "offsetgroup": "49.330592191903854", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 563.2454896836518, 561.8498391536396, 560.4503289998208, 560.9026295189306, 560.9839528056611, 558.4984728280918, 556.9531051941634, 551.1519456719011, 553.4520682982092, 549.7937561766748, 544.5688758378385, 542.2564535408701, 539.9442082732701, 537.6321400350375, 541.9620762854347, 536.6874946412382 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=49.39106615383736
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "49.39106615383736", "marker": { "color": "#19d3f3", "pattern": { "shape": "" } }, "name": "49.39106615383736", "offsetgroup": "49.39106615383736", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 563.2454896836518, 561.8498391536396, 560.4503289998208, 560.930747454689, 561.0074151188297, 558.5068221392673, 556.9531051941634, 551.1519456719011, 553.4776581629137, 549.7937561766748, 544.5688758378385, 542.2564535408701, 539.9442082732701, 538.3919959479925, 541.9743146994192, 536.6874946412382 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=49.47362653799953
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "49.47362653799953", "marker": { "color": "#FF6692", "pattern": { "shape": "" } }, "name": "49.47362653799953", "offsetgroup": "49.47362653799953", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 563.2454896836518, 561.8498391536396, 560.4503289998208, 560.930747454689, 561.0394463852888, 558.5182208026938, 556.9531051941634, 551.1519456719011, 553.5125940095676, 549.7937561766748, 544.5688758378385, 542.2564535408701, 539.9442082732701, 539.4293679685399, 541.9910228516186, 536.6874946412382 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=49.48684060432931
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "49.48684060432931", "marker": { "color": "#B6E880", "pattern": { "shape": "" } }, "name": "49.48684060432931", "offsetgroup": "49.48684060432931", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 563.2454896836518, 561.8498391536396, 560.4503289998208, 560.930747454689, 561.044573096894, 558.5200451969977, 556.9531051941634, 551.1519456719011, 553.5181856089728, 549.7937561766748, 544.5688758378385, 542.2564535408701, 539.9442082732701, 539.5954028389838, 541.9936970474046, 536.6874946412382 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=49.548370526927386
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "49.548370526927386", "marker": { "color": "#FF97FF", "pattern": { "shape": "" } }, "name": "49.548370526927386", "offsetgroup": "49.548370526927386", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 563.2454896836518, 561.8498391536396, 560.4503289998208, 560.930747454689, 561.0684450951404, 558.5285402989217, 556.9531051941634, 551.1519456719011, 553.5442223088056, 549.7937561766748, 544.5688758378385, 542.2564535408701, 539.9442082732701, 539.5954028389838, 542.0061491613575, 536.6874946412382 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=49.68323133044724
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "49.68323133044724", "marker": { "color": "#FECB52", "pattern": { "shape": "" } }, "name": "49.68323133044724", "offsetgroup": "49.68323133044724", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 563.2454896836518, 561.8498391536396, 560.4503289998208, 560.9307474546891, 561.1207675543474, 558.5471597969332, 556.9531051941634, 551.1519456719011, 553.6012893440333, 549.7937561766748, 544.5688758378385, 542.2564535408701, 539.9442082732701, 539.5954028389838, 542.0334416074115, 536.8841301109787 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=49.71196176709573
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "49.71196176709573", "marker": { "color": "#636efa", "pattern": { "shape": "" } }, "name": "49.71196176709573", "offsetgroup": "49.71196176709573", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 563.2454896836518, 561.8498391536396, 560.4503289998208, 560.9307474546891, 561.1207675543474, 558.5511264521368, 556.9531051941634, 551.1519456719011, 553.6134467744914, 549.7937561766748, 544.5688758378385, 542.2564535408701, 539.9442082732701, 539.5954028389838, 542.0392559275986, 536.9260208810081 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=49.71405910604083
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "49.71405910604083", "marker": { "color": "#EF553B", "pattern": { "shape": "" } }, "name": "49.71405910604083", "offsetgroup": "49.71405910604083", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 563.2454896836518, 561.8498391536396, 560.4503289998208, 560.9307474546891, 561.1207675543474, 558.5514160203235, 556.9531051941634, 551.1590808970537, 553.6143342741381, 549.7937561766748, 544.5688758378385, 542.2564535408701, 539.9442082732701, 539.5954028389838, 542.0396803764266, 536.9290789321091 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=49.96689611434518
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "49.96689611434518", "marker": { "color": "#00cc96", "pattern": { "shape": "" } }, "name": "49.96689611434518", "offsetgroup": "49.96689611434518", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 563.2454896836517, 561.8498391536396, 560.450328999821, 560.9307474546891, 561.1207675543474, 558.5863238515873, 556.9531051941634, 552.0192418097125, 553.7213235407238, 549.7937561766748, 544.5688758378385, 542.2564535408701, 539.9442082732701, 540.9035616886354, 542.0908482489998, 537.2977310726726 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=50.67242464460132
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "50.67242464460132", "marker": { "color": "#ab63fa", "pattern": { "shape": "" } }, "name": "50.67242464460132", "offsetgroup": "50.67242464460132", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 563.2454896836517, 561.8498391536396, 560.450328999821, 560.9693622939179, 561.1207675543474, 558.6837323403647, 556.9531051941634, 554.4194761288967, 554.0198715282739, 549.7937561766748, 544.5688758378385, 542.2564535408701, 539.9442082732701, 544.5539109659265, 542.2336295379218, 538.3264357099087 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=50.687626812451406
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "50.687626812451406", "marker": { "color": "#FFA15A", "pattern": { "shape": "" } }, "name": "50.687626812451406", "offsetgroup": "50.687626812451406", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 563.2454896836517, 561.8498391536396, 560.450328999821, 560.9701943357735, 561.1207675543474, 558.6858312210378, 556.9531051941634, 554.4194761288967, 554.0263044029535, 549.7937561766748, 544.5688758378385, 542.2564535408701, 539.9442082732701, 544.6325657899981, 542.2367060756194, 538.3486014195756 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=50.87969915242537
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "50.87969915242537", "marker": { "color": "#19d3f3", "pattern": { "shape": "" } }, "name": "50.87969915242537", "offsetgroup": "50.87969915242537", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 563.2454896836517, 561.8498391536396, 560.450328999821, 560.9807067987148, 561.1207675543474, 558.7123496048741, 556.9531051941634, 554.4194761288967, 554.1075807909438, 549.7937561766748, 544.5688758378385, 542.2564535408701, 539.9442082732701, 544.6325657899981, 542.2755767025207, 538.6286548806941 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=50.9056494242492
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "50.9056494242492", "marker": { "color": "#FF6692", "pattern": { "shape": "" } }, "name": "50.9056494242492", "offsetgroup": "50.9056494242492", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 563.2454896836517, 561.8498391536396, 560.450328999821, 560.982127103538, 561.1207675543474, 558.715932417834, 556.9531051941634, 554.4194761288967, 554.1185617805099, 549.7937561766748, 544.5688758378385, 542.2564535408701, 539.9442082732701, 544.6325657899981, 542.2808283870379, 538.6664919968671 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=50.93594863387132
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "50.93594863387132", "marker": { "color": "#B6E880", "pattern": { "shape": "" } }, "name": "50.93594863387132", "offsetgroup": "50.93594863387132", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 563.2454896836517, 561.8498391536396, 560.450328999821, 560.9837854335107, 561.1207675543474, 558.7201156649938, 556.9531051941634, 554.4194761288967, 554.1313830452343, 549.7937561766748, 544.5688758378385, 542.2564535408701, 539.9442082732701, 544.6325657899981, 542.2869601875501, 538.710670135817 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=51.10217655427115
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "51.10217655427115", "marker": { "color": "#FF97FF", "pattern": { "shape": "" } }, "name": "51.10217655427115", "offsetgroup": "51.10217655427115", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 563.2454896836517, 561.8498391536396, 560.450328999821, 560.992883385112, 561.1207675543474, 558.7430658503151, 556.9531051941634, 554.4194761288967, 554.2017232355764, 549.7937561766748, 544.5688758378385, 542.2564535408701, 539.9442082732701, 544.6325657899981, 542.3206005517759, 538.9530408199499 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=51.175027264422994
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "51.175027264422994", "marker": { "color": "#FECB52", "pattern": { "shape": "" } }, "name": "51.175027264422994", "offsetgroup": "51.175027264422994", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 563.2454896836517, 561.8498391536396, 560.450328999821, 560.9968706348681, 561.1207675543474, 558.7531239518347, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 544.5688758378385, 542.2564535408701, 539.9442082732701, 544.6325657899981, 542.3206005517759, 539.0592617027992 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=51.35944374090656
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "51.35944374090656", "marker": { "color": "#636efa", "pattern": { "shape": "" } }, "name": "51.35944374090656", "offsetgroup": "51.35944374090656", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 563.2454896836517, 561.8498391536396, 560.450328999821, 561.006964078698, 561.1207675543474, 558.7785853322177, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 544.5688758378385, 542.2564535408701, 539.9442082732701, 544.6325657899981, 542.3206005517759, 539.3281524370584 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=51.563778217252654
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "51.563778217252654", "marker": { "color": "#EF553B", "pattern": { "shape": "" } }, "name": "51.563778217252654", "offsetgroup": "51.563778217252654", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.7520093460822, 561.8498391536396, 560.450328999821, 561.01814767031, 561.1207675543474, 558.8067966825635, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 544.5688758378385, 542.2564535408701, 539.9442082732701, 544.6325657899981, 542.3206005517759, 539.6260848584278 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=51.591232223645896
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "51.591232223645896", "marker": { "color": "#00cc96", "pattern": { "shape": "" } }, "name": "51.591232223645896", "offsetgroup": "51.591232223645896", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536396, 560.450328999821, 561.0196502772176, 561.1207675543474, 558.8105871079807, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 544.5688758378385, 542.2564535408701, 539.9442082732701, 544.6325657899981, 542.3206005517759, 539.6661145134684 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=51.82626868327121
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "51.82626868327121", "marker": { "color": "#ab63fa", "pattern": { "shape": "" } }, "name": "51.82626868327121", "offsetgroup": "51.82626868327121", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536396, 560.450328999821, 561.0325142433254, 561.1207675543474, 558.8430373142558, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 544.5688758378385, 542.2564535408701, 539.9442082732701, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=51.83157067457943
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "51.83157067457943", "marker": { "color": "#FFA15A", "pattern": { "shape": "" } }, "name": "51.83157067457943", "offsetgroup": "51.83157067457943", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536396, 560.450328999821, 561.0328044307994, 561.1207675543474, 558.843769331373, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 544.5688758378385, 542.2564535408701, 539.9442082732701, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=52.04463673650779
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "52.04463673650779", "marker": { "color": "#19d3f3", "pattern": { "shape": "" } }, "name": "52.04463673650779", "offsetgroup": "52.04463673650779", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536396, 560.450328999821, 561.0444659177182, 561.1207675543474, 558.8731862042735, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 544.5688758378385, 542.2564535408701, 539.9442082732701, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=53.16595109294248
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "53.16595109294248", "marker": { "color": "#FF6692", "pattern": { "shape": "" } }, "name": "53.16595109294248", "offsetgroup": "53.16595109294248", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536396, 560.450328999821, 561.1058374593948, 561.1207675543474, 559.0279999817761, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 544.5688758378384, 542.2564535408701, 539.9442082732701, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=53.38040630699615
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "53.38040630699615", "marker": { "color": "#B6E880", "pattern": { "shape": "" } }, "name": "53.38040630699615", "offsetgroup": "53.38040630699615", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536396, 560.450328999821, 561.1175749770958, 561.1207675543474, 559.0576086473588, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 544.5688758378384, 542.2564535408701, 540.5193340996664, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=53.41606943876772
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "53.41606943876772", "marker": { "color": "#FF97FF", "pattern": { "shape": "" } }, "name": "53.41606943876772", "offsetgroup": "53.41606943876772", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536396, 560.450328999821, 561.1195268841283, 561.1207675543474, 559.0625324620906, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 544.7642913863552, 542.2564535408701, 540.6149754587376, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=53.48550785435142
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "53.48550785435142", "marker": { "color": "#FECB52", "pattern": { "shape": "" } }, "name": "53.48550785435142", "offsetgroup": "53.48550785435142", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536396, 560.450328999821, 561.1233273728952, 561.1207675543474, 559.072119446649, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 545.1447780513051, 542.2564535408701, 540.8011953476895, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=53.58639585781828
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "53.58639585781828", "marker": { "color": "#636efa", "pattern": { "shape": "" } }, "name": "53.58639585781828", "offsetgroup": "53.58639585781828", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536396, 560.450328999821, 561.1288491538962, 561.1207675543474, 559.0860485048403, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 545.6975922198009, 542.2564535408701, 541.071756716987, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=53.715753720173545
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "53.715753720173545", "marker": { "color": "#EF553B", "pattern": { "shape": "" } }, "name": "53.715753720173545", "offsetgroup": "53.715753720173545", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536396, 560.450328999821, 561.13592914123, 561.1207675543474, 559.1039082416803, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 546.4064065154449, 542.2564535408701, 541.4186685317276, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=53.74082984083143
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "53.74082984083143", "marker": { "color": "#00cc96", "pattern": { "shape": "" } }, "name": "53.74082984083143", "offsetgroup": "53.74082984083143", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536396, 560.450328999821, 561.1373016021953, 561.1207675543474, 559.1039082416803, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 546.5438107093453, 542.2564535408701, 541.4859176526212, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=53.898014509384915
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "53.898014509384915", "marker": { "color": "#ab63fa", "pattern": { "shape": "" } }, "name": "53.898014509384915", "offsetgroup": "53.898014509384915", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536394, 560.4503289998211, 561.1459046004372, 561.1207675543474, 559.1039082416803, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 547.4051015354166, 542.2564535408701, 541.9074553746, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=53.91189541744889
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "53.91189541744889", "marker": { "color": "#FFA15A", "pattern": { "shape": "" } }, "name": "53.91189541744889", "offsetgroup": "53.91189541744889", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536394, 560.4503289998211, 561.1466643273799, 561.1207675543474, 559.1039082416803, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 547.4811617446155, 542.2564535408701, 541.9074553746, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=54.03181777559293
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "54.03181777559293", "marker": { "color": "#19d3f3", "pattern": { "shape": "" } }, "name": "54.03181777559293", "offsetgroup": "54.03181777559293", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536394, 560.4503289998211, 561.1532278926803, 561.1207675543474, 559.1039082416803, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 547.4811617446155, 542.2564535408701, 541.9074553746, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=54.10620785334244
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "54.10620785334244", "marker": { "color": "#FF6692", "pattern": { "shape": "" } }, "name": "54.10620785334244", "offsetgroup": "54.10620785334244", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536396, 560.4503289998211, 561.1572993947802, 561.1207675543474, 559.1039082416803, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 547.4811617446155, 542.2564535408701, 541.9074553746, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=54.10928992277162
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "54.10928992277162", "marker": { "color": "#B6E880", "pattern": { "shape": "" } }, "name": "54.10928992277162", "offsetgroup": "54.10928992277162", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536396, 560.4503289998211, 561.157630893935, 561.1207675543474, 559.1039082416803, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 547.4811617446155, 542.2564535408701, 541.9074553746, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=54.17468219492054
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "54.17468219492054", "marker": { "color": "#FF97FF", "pattern": { "shape": "" } }, "name": "54.17468219492054", "offsetgroup": "54.17468219492054", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536396, 560.4503289998211, 561.1646643120464, 561.1207675543474, 559.1039082416803, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 547.4811617446155, 542.2564535408701, 541.9074553746, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=54.291573962141264
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "54.291573962141264", "marker": { "color": "#FECB52", "pattern": { "shape": "" } }, "name": "54.291573962141264", "offsetgroup": "54.291573962141264", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536396, 560.4503289998211, 561.1772368782782, 561.1207675543474, 559.1039082416803, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 547.4811617446156, 542.2564535408701, 541.9074553746, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=54.54647867289708
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "54.54647867289708", "marker": { "color": "#636efa", "pattern": { "shape": "" } }, "name": "54.54647867289708", "offsetgroup": "54.54647867289708", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536396, 560.450328999821, 561.2046537480458, 561.1207675543474, 559.1039082416803, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 547.4811617446156, 542.2564535408701, 541.9074553746, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=54.60177345780331
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "54.60177345780331", "marker": { "color": "#EF553B", "pattern": { "shape": "" } }, "name": "54.60177345780331", "offsetgroup": "54.60177345780331", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536396, 560.450328999821, 561.2106011074026, 561.1207675543474, 559.1039082416803, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 547.4811617446156, 542.2564535408701, 541.9074553746, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=54.693474100441335
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "54.693474100441335", "marker": { "color": "#00cc96", "pattern": { "shape": "" } }, "name": "54.693474100441335", "offsetgroup": "54.693474100441335", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536396, 560.450328999821, 561.2204641835668, 561.1207675543474, 559.1039082416803, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 547.4811617446156, 542.2564535408701, 542.0249509776265, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=54.93922457297462
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "54.93922457297462", "marker": { "color": "#ab63fa", "pattern": { "shape": "" } }, "name": "54.93922457297462", "offsetgroup": "54.93922457297462", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536396, 560.4503289998208, 561.2468964479247, 561.1207675543474, 559.1039082416803, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 547.4811617446156, 542.2564535408701, 542.3398299046843, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=55.195022080319625
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "55.195022080319625", "marker": { "color": "#FFA15A", "pattern": { "shape": "" } }, "name": "55.195022080319625", "offsetgroup": "55.195022080319625", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536396, 560.802927160963, 561.2744093445084, 561.1207675543474, 559.1039082416803, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 547.4811617446156, 542.2564535408701, 542.6675820502918, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=55.5544635153597
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "55.5544635153597", "marker": { "color": "#19d3f3", "pattern": { "shape": "" } }, "name": "55.5544635153597", "offsetgroup": "55.5544635153597", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536396, 561.2983908984673, 561.3130699050934, 561.1207675543474, 559.1039082416803, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 547.4811617446156, 542.2564535408701, 543.1281326740151, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=55.77624532195394
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "55.77624532195394", "marker": { "color": "#FF6692", "pattern": { "shape": "" } }, "name": "55.77624532195394", "offsetgroup": "55.77624532195394", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536396, 561.6041009031956, 561.3369241637697, 561.1207675543474, 559.1039082416803, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 547.4811617446156, 542.2564535408701, 543.412300661899, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=55.876500217206456
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "55.876500217206456", "marker": { "color": "#B6E880", "pattern": { "shape": "" } }, "name": "55.876500217206456", "offsetgroup": "55.876500217206456", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536396, 561.7422949461261, 561.3477073124944, 561.1207675543474, 559.1039082416803, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 547.4811617446156, 542.2564535408701, 543.412300661899, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=56.121528169768595
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "56.121528169768595", "marker": { "color": "#FF97FF", "pattern": { "shape": "" } }, "name": "56.121528169768595", "offsetgroup": "56.121528169768595", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536396, 562.0800480634202, 561.3740618645342, 561.1207675543474, 559.1039082416803, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 547.4811617446156, 544.219684939584, 543.412300661899, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=56.201060307257364
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "56.201060307257364", "marker": { "color": "#FECB52", "pattern": { "shape": "" } }, "name": "56.201060307257364", "offsetgroup": "56.201060307257364", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536396, 562.1896772999257, 561.38261612879, 561.1207675543474, 559.1039082416803, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 547.4811617446156, 544.219684939584, 543.412300661899, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=56.7013936281821
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "56.7013936281821", "marker": { "color": "#636efa", "pattern": { "shape": "" } }, "name": "56.7013936281821", "offsetgroup": "56.7013936281821", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536394, 562.1896772999257, 561.4364306442593, 561.1207675543474, 559.1039082416803, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 547.4811617446156, 544.2196849395841, 543.412300661899, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=56.71036696579608
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "56.71036696579608", "marker": { "color": "#EF553B", "pattern": { "shape": "" } }, "name": "56.71036696579608", "offsetgroup": "56.71036696579608", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536394, 562.1896772999257, 561.4373957924828, 561.1207675543474, 559.1039082416803, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 549.6405040359836, 544.2196849395841, 543.412300661899, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=56.79788602641253
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "56.79788602641253", "marker": { "color": "#00cc96", "pattern": { "shape": "" } }, "name": "56.79788602641253", "offsetgroup": "56.79788602641253", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536394, 562.1896772999257, 561.446809108855, 561.1207675543474, 559.1039082416803, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 549.6405040359836, 544.2196849395841, 543.412300661899, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=56.95479156611447
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "56.95479156611447", "marker": { "color": "#ab63fa", "pattern": { "shape": "" } }, "name": "56.95479156611447", "offsetgroup": "56.95479156611447", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536394, 562.1896772999257, 561.4636854495669, 561.1207675543474, 559.1039082416803, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 549.6405040359836, 544.2196849395841, 543.412300661899, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=57.317744778949475
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "57.317744778949475", "marker": { "color": "#FFA15A", "pattern": { "shape": "" } }, "name": "57.317744778949475", "offsetgroup": "57.317744778949475", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536394, 562.1896772999257, 561.5027237275906, 561.1207675543474, 559.1039082416803, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 549.6405040359836, 544.2196849395841, 543.412300661899, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=57.513099511561066
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "57.513099511561066", "marker": { "color": "#19d3f3", "pattern": { "shape": "" } }, "name": "57.513099511561066", "offsetgroup": "57.513099511561066", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536394, 562.1896772999257, 561.5237355607835, 561.1207675543474, 559.1039082416803, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 549.6405040359836, 544.2196849395841, 543.6471536580636, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=58.22479969565341
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "58.22479969565341", "marker": { "color": "#FF6692", "pattern": { "shape": "" } }, "name": "58.22479969565341", "offsetgroup": "58.22479969565341", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536394, 562.1896772999257, 561.6002841314354, 561.1207675543474, 559.1039082416803, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 549.6405040359836, 544.2196849395841, 544.5027506449935, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=58.237504769322314
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "58.237504769322314", "marker": { "color": "#B6E880", "pattern": { "shape": "" } }, "name": "58.237504769322314", "offsetgroup": "58.237504769322314", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536394, 562.1917624901331, 561.6016506552204, 561.1207675543474, 559.1039082416803, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 549.6405040359836, 544.2196849395841, 544.51802452435, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=58.24584690285616
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "58.24584690285616", "marker": { "color": "#FF97FF", "pattern": { "shape": "" } }, "name": "58.24584690285616", "offsetgroup": "58.24584690285616", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536394, 562.1931316230957, 561.6025479128192, 561.1207675543474, 559.1039082416803, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 549.6405040359836, 544.2481939824238, 544.5280533320919, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=58.270617107738786
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "58.270617107738786", "marker": { "color": "#FECB52", "pattern": { "shape": "" } }, "name": "58.270617107738786", "offsetgroup": "58.270617107738786", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536394, 562.1971969744665, 561.6052121298883, 561.1207675543474, 559.1039082416803, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 549.6405040359836, 544.3328455681701, 544.5280533320919, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=58.50087160008804
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "58.50087160008804", "marker": { "color": "#636efa", "pattern": { "shape": "" } }, "name": "58.50087160008804", "offsetgroup": "58.50087160008804", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536394, 562.2349869491773, 561.6299776880115, 561.1207675543474, 559.1039082416803, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 549.6405040359836, 545.1197348165609, 544.6360767600536, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=58.95601014294316
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "58.95601014294316", "marker": { "color": "#EF553B", "pattern": { "shape": "" } }, "name": "58.95601014294316", "offsetgroup": "58.95601014294316", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536394, 562.3096854875157, 561.6789311738795, 561.1207675543474, 559.1039082416803, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 549.6405040359836, 546.6751599561395, 544.8496040840812, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=59.00434355483017
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "59.00434355483017", "marker": { "color": "#00cc96", "pattern": { "shape": "" } }, "name": "59.00434355483017", "offsetgroup": "59.00434355483017", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536394, 562.3176180945813, 561.6841297865501, 561.1207675543474, 559.1039082416803, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 549.6405040359836, 546.8403382411054, 544.8722796062126, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=59.41414482942551
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "59.41414482942551", "marker": { "color": "#ab63fa", "pattern": { "shape": "" } }, "name": "59.41414482942551", "offsetgroup": "59.41414482942551", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536394, 562.3848757608504, 561.7282069169524, 561.1207675543474, 559.1039082416803, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 549.6405040359836, 546.8403382411054, 545.0645370428133, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=60.11102240027948
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "60.11102240027948", "marker": { "color": "#FFA15A", "pattern": { "shape": "" } }, "name": "60.11102240027948", "offsetgroup": "60.11102240027948", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536394, 562.4992491461875, 561.8031612069198, 561.1207675543474, 559.1039082416803, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 549.6405040359836, 546.8403382411054, 545.1790836145371, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=60.1729813513571
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "60.1729813513571", "marker": { "color": "#19d3f3", "pattern": { "shape": "" } }, "name": "60.1729813513571", "offsetgroup": "60.1729813513571", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536394, 562.50941801269, 561.8098253461881, 561.1207675543474, 559.1039082416803, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 549.6405040359836, 546.8403382411054, 545.1892678789336, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=60.57510426310269
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "60.57510426310269", "marker": { "color": "#FF6692", "pattern": { "shape": "" } }, "name": "60.57510426310269", "offsetgroup": "60.57510426310269", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536394, 562.5754154857922, 561.8530766123934, 561.1207675543474, 559.1039082416803, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 549.6405040359836, 546.9108180444696, 545.255365286683, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=64.63548367033422
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "64.63548367033422", "marker": { "color": "#B6E880", "pattern": { "shape": "" } }, "name": "64.63548367033422", "offsetgroup": "64.63548367033422", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536394, 563.2418156656527, 561.8530766123934, 561.1207675543474, 559.1039082416803, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 549.6405040359836, 547.6224779222005, 545.9227745425536, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=70.85271509694213
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "70.85271509694213", "marker": { "color": "#FF97FF", "pattern": { "shape": "" } }, "name": "70.85271509694213", "offsetgroup": "70.85271509694213", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536394, 563.2418156656527, 561.8530766123934, 561.1207675543474, 559.1039082416803, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 549.6405040359836, 548.7121677548807, 546.9447080575886, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=73.96141458604406
Hour [h]=%{x}
Market price=%{y}", "legendgroup": "73.96141458604406", "marker": { "color": "#FECB52", "pattern": { "shape": "" } }, "name": "73.96141458604406", "offsetgroup": "73.96141458604406", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "xaxis": "x", "y": [ 573.7843718436984, 520.6671627451043, 566.0789910906052, 560.3486755667889, 567.657950017493, 565.8004242158659, 564.1367499353388, 564.9544225716108, 561.8498391536394, 563.2418156656527, 561.8530766123934, 561.1207675543474, 559.1039082416803, 556.9531051941634, 554.4194761288967, 554.2325503842667, 549.7937561766748, 549.6405040359836, 549.2570273545467, 546.9447080575886, 544.6325657899981, 542.3206005517759, 540.0088123429216 ], "yaxis": "y" } ], "layout": { "barmode": "group", "legend": { "title": { "text": "" }, "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.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.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.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.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.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.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.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.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.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.0, "#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.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.0, "#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.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.0, "#f0f921" ] ], "sequentialminus": [ [ 0.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.0, "#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": "Bid matrix per hour" }, "xaxis": { "anchor": "y", "domain": [ 0.0, 1.0 ], "title": { "text": "Hour [h]" } }, "yaxis": { "anchor": "x", "domain": [ 0.0, 1.0 ], "title": { "text": "Market price" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# Plotting bid matrices with different properties\n", "bid_matrix_transposed.plot.bar(title=\"Bid matrix per hour\", labels=dict(index=\"Hour [h]\", value=\"Market price\", variable=\"\")).update_layout(barmode='group')" ] }, { "cell_type": "markdown", "id": "67e1c50d", "metadata": { "Collapsed": "false" }, "source": [ "## Plotting other results" ] }, { "cell_type": "markdown", "id": "e78ff4d3", "metadata": { "Collapsed": "false" }, "source": [ "If we want to see how each scenario suggest to produce, we can of course have a look at that as well" ] }, { "cell_type": "code", "execution_count": 23, "id": "bac50269", "metadata": { "Collapsed": "false" }, "outputs": [], "source": [ "# Get the optimal production value(s)\n", "optimal_production=day_ahead_market.sale.get()" ] }, { "cell_type": "code", "execution_count": 24, "id": "bb477839", "metadata": { "Collapsed": "false" }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "alignmentgroup": "True", "hovertemplate": "=0
Time=%{x}
Sale/Production [MW]=%{y}", "legendgroup": "0", "marker": { "color": "#636efa", "pattern": { "shape": "" } }, "name": "0", "offsetgroup": "0", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00", "2018-01-24T00:00:00", "2018-01-24T01:00:00", "2018-01-24T02:00:00", "2018-01-24T03:00:00", "2018-01-24T04:00:00", "2018-01-24T05:00:00", "2018-01-24T06:00:00", "2018-01-24T07:00:00", "2018-01-24T08:00:00", "2018-01-24T09:00:00", "2018-01-24T10:00:00", "2018-01-24T11:00:00", "2018-01-24T12:00:00", "2018-01-24T13:00:00", "2018-01-24T14:00:00", "2018-01-24T15:00:00", "2018-01-24T16:00:00", "2018-01-24T17:00:00", "2018-01-24T18:00:00", "2018-01-24T19:00:00", "2018-01-24T20:00:00", "2018-01-24T21:00:00", "2018-01-24T22:00:00", "2018-01-24T23:00:00", "2018-01-25T00:00:00", "2018-01-25T01:00:00", "2018-01-25T02:00:00", "2018-01-25T03:00:00", "2018-01-25T04:00:00", "2018-01-25T05:00:00", "2018-01-25T06:00:00", "2018-01-25T07:00:00", "2018-01-25T08:00:00", "2018-01-25T09:00:00", "2018-01-25T10:00:00", "2018-01-25T11:00:00", "2018-01-25T12:00:00", "2018-01-25T13:00:00", "2018-01-25T14:00:00", "2018-01-25T15:00:00", "2018-01-25T16:00:00", "2018-01-25T17:00:00", "2018-01-25T18:00:00", "2018-01-25T19:00:00", "2018-01-25T20:00:00", "2018-01-25T21:00:00", "2018-01-25T22:00:00", "2018-01-25T23:00:00" ], "xaxis": "x", "y": [ -521.1960606086716, -520.6200309265641, -514.3700855780862, -366.50324016153144, -469.83748965263607, -495.05698163937336, -505.0378359517775, -563.2455802505438, -561.848293321242, -560.4473102774191, -559.0443795270336, -514.9897311369199, -512.5885600336203, -505.7758345617127, -513.2640581155575, -510.54488595266207, -507.62845785963196, -549.6390839252336, -546.8399001039877, -543.413306499151, -537.634377324231, -541.7607797251376, -533.0665929543591, -537.2330234039116, -182.78191913805335, -167.85597085986512, -152.34820976531057, -149.1106930572866, -166.39343275937836, -183.87201248459004, -289.1463147014771, -452.0687157599206, -463.13058100279903, -449.29229755050847, -359.41562091354973, -342.24736845334985, -341.1504722885496, -340.05359107512953, -338.95672481308986, -337.85987350242965, -336.76303714314963, -339.14035051528776, -334.54288165074183, -333.44609014560183, -232.40274034310644, -229.41153495055852, -176.60207148575554, -159.70880414464278, -167.85370595028482, -158.40635671779475, -146.26590270704628, -141.01697709559969, -141.11109194246112, -161.31284274776021, -224.41499655032092, -333.62258037158534, -335.37541782720456, -334.0916042470569, -332.8078056182892, -331.52402194090155, -327.9545734496864, -327.5406259473661, -327.7095905041617, -326.4258666322941, -331.47045507171197, -434.1999928402353, -425.03091924955214, -327.406097259542, -326.02111814620895, -323.9461147212547, -317.17861563996064, -215.24492976216197 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=1
Time=%{x}
Sale/Production [MW]=%{y}", "legendgroup": "1", "marker": { "color": "#EF553B", "pattern": { "shape": "" } }, "name": "1", "offsetgroup": "1", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00", "2018-01-24T00:00:00", "2018-01-24T01:00:00", "2018-01-24T02:00:00", "2018-01-24T03:00:00", "2018-01-24T04:00:00", "2018-01-24T05:00:00", "2018-01-24T06:00:00", "2018-01-24T07:00:00", "2018-01-24T08:00:00", "2018-01-24T09:00:00", "2018-01-24T10:00:00", "2018-01-24T11:00:00", "2018-01-24T12:00:00", "2018-01-24T13:00:00", "2018-01-24T14:00:00", "2018-01-24T15:00:00", "2018-01-24T16:00:00", "2018-01-24T17:00:00", "2018-01-24T18:00:00", "2018-01-24T19:00:00", "2018-01-24T20:00:00", "2018-01-24T21:00:00", "2018-01-24T22:00:00", "2018-01-24T23:00:00", "2018-01-25T00:00:00", "2018-01-25T01:00:00", "2018-01-25T02:00:00", "2018-01-25T03:00:00", "2018-01-25T04:00:00", "2018-01-25T05:00:00", "2018-01-25T06:00:00", "2018-01-25T07:00:00", "2018-01-25T08:00:00", "2018-01-25T09:00:00", "2018-01-25T10:00:00", "2018-01-25T11:00:00", "2018-01-25T12:00:00", "2018-01-25T13:00:00", "2018-01-25T14:00:00", "2018-01-25T15:00:00", "2018-01-25T16:00:00", "2018-01-25T17:00:00", "2018-01-25T18:00:00", "2018-01-25T19:00:00", "2018-01-25T20:00:00", "2018-01-25T21:00:00", "2018-01-25T22:00:00", "2018-01-25T23:00:00" ], "xaxis": "x", "y": [ -414.61707301769445, -354.32581710025465, -383.9011510925746, -209.9333779523622, -404.3300442468452, -499.3022477893514, -446.4817775214907, -564.9544686168051, -561.8496069790938, -560.4503012925522, -559.047097720206, -514.9904586860391, -558.357965010298, -556.6526168537575, -551.1513391567074, -554.2318547162662, -549.792919356861, -544.5679226591765, -544.2161868107406, -544.5228992343257, -544.6271841618059, -537.276532115522, -536.6819248078463, -487.39126293162155, -187.73487184691052, -168.2727094014372, -167.51345352998044, -150.56184472443158, -167.48011464247313, -186.21227423356447, -349.11064186202213, -453.801608818804, -471.1748339648459, -454.34309827335204, -360.89251712376193, -353.67209195391877, -346.0613663906777, -341.3570177660822, -340.26012582090846, -339.16324882709847, -341.57745064683763, -348.1251741392918, -339.2400585402592, -334.6422271822083, -233.40867973853074, -232.23260921447687, -215.57751670688413, -162.06301615098621, -173.85925946688963, -161.4285493928246, -146.39473678487659, -146.27086014137544, -146.14666630288312, -171.69825341538953, -224.97715826248572, -337.42421679797894, -342.81785295289825, -341.4326523541791, -340.04746670682454, -332.11478032910287, -330.83098591978757, -329.54720646183654, -328.26344195524973, -332.642077354342, -331.9839844846263, -434.92924092130704, -425.7430464361523, -327.91949579172405, -326.5344909949241, -325.1495011494878, -225.52787919730872, -219.59442329679507 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=2
Time=%{x}
Sale/Production [MW]=%{y}", "legendgroup": "2", "marker": { "color": "#00cc96", "pattern": { "shape": "" } }, "name": "2", "offsetgroup": "2", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00", "2018-01-24T00:00:00", "2018-01-24T01:00:00", "2018-01-24T02:00:00", "2018-01-24T03:00:00", "2018-01-24T04:00:00", "2018-01-24T05:00:00", "2018-01-24T06:00:00", "2018-01-24T07:00:00", "2018-01-24T08:00:00", "2018-01-24T09:00:00", "2018-01-24T10:00:00", "2018-01-24T11:00:00", "2018-01-24T12:00:00", "2018-01-24T13:00:00", "2018-01-24T14:00:00", "2018-01-24T15:00:00", "2018-01-24T16:00:00", "2018-01-24T17:00:00", "2018-01-24T18:00:00", "2018-01-24T19:00:00", "2018-01-24T20:00:00", "2018-01-24T21:00:00", "2018-01-24T22:00:00", "2018-01-24T23:00:00", "2018-01-25T00:00:00", "2018-01-25T01:00:00", "2018-01-25T02:00:00", "2018-01-25T03:00:00", "2018-01-25T04:00:00", "2018-01-25T05:00:00", "2018-01-25T06:00:00", "2018-01-25T07:00:00", "2018-01-25T08:00:00", "2018-01-25T09:00:00", "2018-01-25T10:00:00", "2018-01-25T11:00:00", "2018-01-25T12:00:00", "2018-01-25T13:00:00", "2018-01-25T14:00:00", "2018-01-25T15:00:00", "2018-01-25T16:00:00", "2018-01-25T17:00:00", "2018-01-25T18:00:00", "2018-01-25T19:00:00", "2018-01-25T20:00:00", "2018-01-25T21:00:00", "2018-01-25T22:00:00", "2018-01-25T23:00:00" ], "xaxis": "x", "y": [ -521.1960606086716, -487.649407116228, -420.0884675690477, -460.9060001539398, -499.0546106397397, -487.17262131274447, -496.88022568312823, -562.7226427665585, -561.8499882978512, -562.185635588742, -544.9657870749676, -557.5730357457255, -554.7909449873108, -542.132100854412, -513.262290447305, -538.9830229843202, -546.8637063860434, -547.4648069666988, -546.8242409677773, -544.5119560587639, -539.5795649114249, -539.9309668229696, -536.6720754735618, -535.3254104955488, -167.3057476394809, -166.69509373956714, -145.713028338053, -143.79194937601386, -149.87613430315454, -166.0464334909745, -287.272749487855, -450.9507699545793, -457.392225717819, -448.21170571518365, -346.86128391006235, -341.2860980467299, -340.1891990135594, -339.09231493176947, -337.9954458013591, -336.8985916223287, -335.8017523946784, -334.7049281184085, -333.60811879351814, -326.40946689999146, -215.92051605125556, -215.57301206120974, -173.73259896916844, -146.54695003728773, -159.06620374977342, -146.2848387202148, -141.17086750608718, -141.09581745649643, -140.86356901527034, -157.7642173838894, -209.91631874471915, -333.2689666038623, -336.4576196258975, -330.7985025133632, -329.561133965581, -328.3237803691789, -327.0864417241563, -325.84911803051415, -324.6118092882522, -323.37451549737, -330.5868409598421, -434.04774183234156, -419.15318292025256, -327.30258198718025, -325.22303166650056, -318.42078408344884, -314.40550300093315, -212.0299404302176 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=3
Time=%{x}
Sale/Production [MW]=%{y}", "legendgroup": "3", "marker": { "color": "#ab63fa", "pattern": { "shape": "" } }, "name": "3", "offsetgroup": "3", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00", "2018-01-24T00:00:00", "2018-01-24T01:00:00", "2018-01-24T02:00:00", "2018-01-24T03:00:00", "2018-01-24T04:00:00", "2018-01-24T05:00:00", "2018-01-24T06:00:00", "2018-01-24T07:00:00", "2018-01-24T08:00:00", "2018-01-24T09:00:00", "2018-01-24T10:00:00", "2018-01-24T11:00:00", "2018-01-24T12:00:00", "2018-01-24T13:00:00", "2018-01-24T14:00:00", "2018-01-24T15:00:00", "2018-01-24T16:00:00", "2018-01-24T17:00:00", "2018-01-24T18:00:00", "2018-01-24T19:00:00", "2018-01-24T20:00:00", "2018-01-24T21:00:00", "2018-01-24T22:00:00", "2018-01-24T23:00:00", "2018-01-25T00:00:00", "2018-01-25T01:00:00", "2018-01-25T02:00:00", "2018-01-25T03:00:00", "2018-01-25T04:00:00", "2018-01-25T05:00:00", "2018-01-25T06:00:00", "2018-01-25T07:00:00", "2018-01-25T08:00:00", "2018-01-25T09:00:00", "2018-01-25T10:00:00", "2018-01-25T11:00:00", "2018-01-25T12:00:00", "2018-01-25T13:00:00", "2018-01-25T14:00:00", "2018-01-25T15:00:00", "2018-01-25T16:00:00", "2018-01-25T17:00:00", "2018-01-25T18:00:00", "2018-01-25T19:00:00", "2018-01-25T20:00:00", "2018-01-25T21:00:00", "2018-01-25T22:00:00", "2018-01-25T23:00:00" ], "xaxis": "x", "y": [ -568.2559362833281, -509.21511309228504, -520.0428223179105, -519.3033593237029, -567.6579574300741, -518.3851126379889, -561.418831780785, -563.2457715589442, -561.8496533850073, -560.4504750275194, -559.0473625124262, -554.6333478351515, -554.7929559402271, -501.7055940589005, -495.7915508330775, -510.109851865752, -548.81293807595, -544.5677584159066, -544.2193676115252, -541.9071378662284, -539.5950851503551, -537.2832094639057, -495.74060754321096, -496.06075728761107, -268.6330741677071, -150.0439893202146, -143.60467539375446, -143.65402737317217, -143.45515160620184, -267.52899481223375, -286.69132576124434, -449.6425225189943, -456.0570661942973, -446.9037905492406, -345.87636868408623, -340.3149737768607, -339.2181153045633, -338.12127178365074, -337.0244432141228, -335.92762959598014, -334.8308309292218, -333.73404721384827, -332.63727844985993, -317.7046305301231, -177.56260266245516, -177.05128347657362, -173.7540583009149, -146.7212583883072, -159.0198830378331, -146.2668219389677, -141.1567784830511, -141.0817219646765, -140.85359479283753, -157.09018838686285, -173.22758599409002, -333.09863944299764, -331.9604563237851, -330.624043613245, -329.3867149174267, -328.14940117299244, -324.37316810568655, -325.69611740202106, -324.45884851173787, -323.2215945728383, -327.9574238642639, -433.61260035209085, -418.7389667219147, -326.48107023099226, -325.0963334249838, -318.30054721169813, -216.51523821040496, -208.6884677448552 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=4
Time=%{x}
Sale/Production [MW]=%{y}", "legendgroup": "4", "marker": { "color": "#FFA15A", "pattern": { "shape": "" } }, "name": "4", "offsetgroup": "4", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00", "2018-01-24T00:00:00", "2018-01-24T01:00:00", "2018-01-24T02:00:00", "2018-01-24T03:00:00", "2018-01-24T04:00:00", "2018-01-24T05:00:00", "2018-01-24T06:00:00", "2018-01-24T07:00:00", "2018-01-24T08:00:00", "2018-01-24T09:00:00", "2018-01-24T10:00:00", "2018-01-24T11:00:00", "2018-01-24T12:00:00", "2018-01-24T13:00:00", "2018-01-24T14:00:00", "2018-01-24T15:00:00", "2018-01-24T16:00:00", "2018-01-24T17:00:00", "2018-01-24T18:00:00", "2018-01-24T19:00:00", "2018-01-24T20:00:00", "2018-01-24T21:00:00", "2018-01-24T22:00:00", "2018-01-24T23:00:00", "2018-01-25T00:00:00", "2018-01-25T01:00:00", "2018-01-25T02:00:00", "2018-01-25T03:00:00", "2018-01-25T04:00:00", "2018-01-25T05:00:00", "2018-01-25T06:00:00", "2018-01-25T07:00:00", "2018-01-25T08:00:00", "2018-01-25T09:00:00", "2018-01-25T10:00:00", "2018-01-25T11:00:00", "2018-01-25T12:00:00", "2018-01-25T13:00:00", "2018-01-25T14:00:00", "2018-01-25T15:00:00", "2018-01-25T16:00:00", "2018-01-25T17:00:00", "2018-01-25T18:00:00", "2018-01-25T19:00:00", "2018-01-25T20:00:00", "2018-01-25T21:00:00", "2018-01-25T22:00:00", "2018-01-25T23:00:00" ], "xaxis": "x", "y": [ -430.5452685796312, -520.6671627451043, -471.2766425268818, -519.3033784888022, -506.9517146043077, -499.30221540296554, -505.2261601330182, -562.7225314148692, -561.8497956399117, -560.4486583212544, -560.929455150962, -555.9420358970312, -543.2616201672603, -551.9012491170718, -551.15057054209, -552.6071405675593, -546.8794228112911, -547.4809190890941, -544.2199496276685, -543.4130990755136, -532.0621895474023, -537.2261756092, -536.629814222633, -534.3182708328598, -268.86217184322635, -151.70883967448995, -143.6538131635152, -143.57934666902463, -143.5036698926133, -267.6288648514516, -286.984237470158, -450.25046263666144, -456.667770107441, -447.51169622489687, -346.42584156143755, -340.86303003804585, -339.7661673614686, -338.6693196362717, -337.5724868624545, -336.4756690400173, -335.37886616896003, -334.2820782492833, -333.18530528098614, -326.9754602435501, -215.7949284535894, -177.20656648255476, -173.8968236003328, -146.74456088165388, -159.1047830807153, -146.30586703213697, -141.19002896708616, -141.11503737485972, -140.87961535034606, -157.25436777813465, -210.0639336298021, -333.0965280053834, -334.2834667261863, -330.6244181229458, -329.38708541338013, -328.1497676551681, -326.9124648483094, -325.675176992804, -324.4379040886514, -323.2006461358526, -324.80558650788754, -433.6476237950224, -421.0731505734402, -327.1633351811573, -319.6120845319527, -318.32851539189966, -216.51523821040496, -208.6884677448552 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=5
Time=%{x}
Sale/Production [MW]=%{y}", "legendgroup": "5", "marker": { "color": "#19d3f3", "pattern": { "shape": "" } }, "name": "5", "offsetgroup": "5", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00", "2018-01-24T00:00:00", "2018-01-24T01:00:00", "2018-01-24T02:00:00", "2018-01-24T03:00:00", "2018-01-24T04:00:00", "2018-01-24T05:00:00", "2018-01-24T06:00:00", "2018-01-24T07:00:00", "2018-01-24T08:00:00", "2018-01-24T09:00:00", "2018-01-24T10:00:00", "2018-01-24T11:00:00", "2018-01-24T12:00:00", "2018-01-24T13:00:00", "2018-01-24T14:00:00", "2018-01-24T15:00:00", "2018-01-24T16:00:00", "2018-01-24T17:00:00", "2018-01-24T18:00:00", "2018-01-24T19:00:00", "2018-01-24T20:00:00", "2018-01-24T21:00:00", "2018-01-24T22:00:00", "2018-01-24T23:00:00", "2018-01-25T00:00:00", "2018-01-25T01:00:00", "2018-01-25T02:00:00", "2018-01-25T03:00:00", "2018-01-25T04:00:00", "2018-01-25T05:00:00", "2018-01-25T06:00:00", "2018-01-25T07:00:00", "2018-01-25T08:00:00", "2018-01-25T09:00:00", "2018-01-25T10:00:00", "2018-01-25T11:00:00", "2018-01-25T12:00:00", "2018-01-25T13:00:00", "2018-01-25T14:00:00", "2018-01-25T15:00:00", "2018-01-25T16:00:00", "2018-01-25T17:00:00", "2018-01-25T18:00:00", "2018-01-25T19:00:00", "2018-01-25T20:00:00", "2018-01-25T21:00:00", "2018-01-25T22:00:00", "2018-01-25T23:00:00" ], "xaxis": "x", "y": [ -515.8234274878303, -491.3190993624849, -500.78131489119625, -427.8826334749584, -469.89194422830565, -518.3851119965227, -466.8041534693119, -563.2458301416259, -561.8514318536402, -560.4530224945955, -561.1612187022672, -559.764102107037, -558.3630776162619, -556.9580640362797, -551.1571463382929, -552.7304259655021, -548.8209523107558, -544.577349785258, -542.2668725483968, -543.4250747933216, -537.6455588150505, -539.0563250632819, -499.21677057398534, -497.5469587949432, -269.3070540037784, -167.12728528465598, -143.75833365178642, -143.68403897514358, -150.16658414512455, -168.11382555688962, -286.70325372773675, -450.90090423680067, -457.32909410732105, -448.1620035970012, -346.9390472163483, -341.37065919868206, -340.2737801365397, -339.1769160257777, -338.0800668663952, -336.9832326583929, -335.88641340177094, -334.78960909652864, -333.69281974266636, -332.596045340184, -216.18989529444323, -177.46897388617117, -174.12010387392024, -159.50994205873883, -161.3538283289006, -146.74888355452703, -141.12255675274332, -141.16695908192446, -140.96083319999696, -160.01813086285196, -212.08856293963305, -333.4632108286591, -332.22583163205223, -332.35620831878936, -329.73881381759634, -328.5014794751296, -327.2641600840429, -326.0268556443358, -324.7895661560091, -326.41605698070623, -330.7505524409241, -434.0683651797571, -424.9107527171435, -327.4075204333062, -325.3270166106237, -318.5173298448426, -217.17100711742353, -215.24492976216197 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=6
Time=%{x}
Sale/Production [MW]=%{y}", "legendgroup": "6", "marker": { "color": "#FF6692", "pattern": { "shape": "" } }, "name": "6", "offsetgroup": "6", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00", "2018-01-24T00:00:00", "2018-01-24T01:00:00", "2018-01-24T02:00:00", "2018-01-24T03:00:00", "2018-01-24T04:00:00", "2018-01-24T05:00:00", "2018-01-24T06:00:00", "2018-01-24T07:00:00", "2018-01-24T08:00:00", "2018-01-24T09:00:00", "2018-01-24T10:00:00", "2018-01-24T11:00:00", "2018-01-24T12:00:00", "2018-01-24T13:00:00", "2018-01-24T14:00:00", "2018-01-24T15:00:00", "2018-01-24T16:00:00", "2018-01-24T17:00:00", "2018-01-24T18:00:00", "2018-01-24T19:00:00", "2018-01-24T20:00:00", "2018-01-24T21:00:00", "2018-01-24T22:00:00", "2018-01-24T23:00:00", "2018-01-25T00:00:00", "2018-01-25T01:00:00", "2018-01-25T02:00:00", "2018-01-25T03:00:00", "2018-01-25T04:00:00", "2018-01-25T05:00:00", "2018-01-25T06:00:00", "2018-01-25T07:00:00", "2018-01-25T08:00:00", "2018-01-25T09:00:00", "2018-01-25T10:00:00", "2018-01-25T11:00:00", "2018-01-25T12:00:00", "2018-01-25T13:00:00", "2018-01-25T14:00:00", "2018-01-25T15:00:00", "2018-01-25T16:00:00", "2018-01-25T17:00:00", "2018-01-25T18:00:00", "2018-01-25T19:00:00", "2018-01-25T20:00:00", "2018-01-25T21:00:00", "2018-01-25T22:00:00", "2018-01-25T23:00:00" ], "xaxis": "x", "y": [ -521.1960606086716, -475.8522026566619, -478.45928921609595, -513.7384505623509, -513.0171723174788, -467.6680113244048, -517.7722890289774, -564.9544160547022, -561.8497746745279, -562.1899722485557, -559.0471036708433, -557.578335679551, -551.7788308804944, -556.6553397277435, -554.4212666283076, -552.1083181375125, -549.7955466760857, -547.4829522440265, -542.2582126943673, -541.9101236156718, -537.6349463849479, -537.2874448161272, -495.7445714308254, -534.0508759832788, -166.96119736188757, -150.06861407692546, -143.6221705200032, -143.5475339109444, -143.47271453438225, -165.75493945034782, -286.2416560559519, -442.1426036428868, -456.58540324198765, -447.4087411533228, -346.1369628844214, -340.5637298486686, -339.4668365522391, -336.4958487329359, -335.42115418385697, -334.7352667956059, -335.1164602623516, -334.0196417228223, -332.92283813467253, -316.1983160973714, -177.1285159088162, -176.6181080854959, -168.52213645284104, -146.54485529476747, -159.05281020930616, -146.28270805169697, -141.17295039568114, -140.94618043810513, -140.8646421843615, -157.11524979276007, -209.95135418610525, -326.022626512051, -336.42792242745503, -330.77075524009535, -329.5333924290537, -328.2960445693921, -323.8944062011591, -325.8478283397365, -324.61052533421457, -323.373237280073, -329.36066478558257, -434.05825754700675, -419.16450121050127, -326.6613994022255, -319.817606086505, -317.1684833272768, -216.51523821040496, -208.6884677448552 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=7
Time=%{x}
Sale/Production [MW]=%{y}", "legendgroup": "7", "marker": { "color": "#B6E880", "pattern": { "shape": "" } }, "name": "7", "offsetgroup": "7", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00", "2018-01-24T00:00:00", "2018-01-24T01:00:00", "2018-01-24T02:00:00", "2018-01-24T03:00:00", "2018-01-24T04:00:00", "2018-01-24T05:00:00", "2018-01-24T06:00:00", "2018-01-24T07:00:00", "2018-01-24T08:00:00", "2018-01-24T09:00:00", "2018-01-24T10:00:00", "2018-01-24T11:00:00", "2018-01-24T12:00:00", "2018-01-24T13:00:00", "2018-01-24T14:00:00", "2018-01-24T15:00:00", "2018-01-24T16:00:00", "2018-01-24T17:00:00", "2018-01-24T18:00:00", "2018-01-24T19:00:00", "2018-01-24T20:00:00", "2018-01-24T21:00:00", "2018-01-24T22:00:00", "2018-01-24T23:00:00", "2018-01-25T00:00:00", "2018-01-25T01:00:00", "2018-01-25T02:00:00", "2018-01-25T03:00:00", "2018-01-25T04:00:00", "2018-01-25T05:00:00", "2018-01-25T06:00:00", "2018-01-25T07:00:00", "2018-01-25T08:00:00", "2018-01-25T09:00:00", "2018-01-25T10:00:00", "2018-01-25T11:00:00", "2018-01-25T12:00:00", "2018-01-25T13:00:00", "2018-01-25T14:00:00", "2018-01-25T15:00:00", "2018-01-25T16:00:00", "2018-01-25T17:00:00", "2018-01-25T18:00:00", "2018-01-25T19:00:00", "2018-01-25T20:00:00", "2018-01-25T21:00:00", "2018-01-25T22:00:00", "2018-01-25T23:00:00" ], "xaxis": "x", "y": [ -358.84426050666974, -421.7638521455931, -420.0884562145799, -460.9059656606174, -412.03786975064537, -352.48822565062824, -564.1367496911986, -562.7224754293967, -561.8502856956339, -560.4514359878731, -560.9326216703134, -561.1231999615958, -558.3609346403772, -494.6924997319036, -551.1545103374564, -550.1396908179458, -549.7946046710595, -547.4831244053036, -549.2605965107203, -546.9482772137623, -544.6361349461718, -542.3241697079495, -540.0123814990952, -537.7007703196088, -281.69222473087956, -167.75250832819376, -150.44610524392195, -150.79713201673198, -166.99268886513363, -285.9473212711939, -335.0608599552857, -452.1374286160454, -467.11453969125273, -449.33147091536057, -359.59837760150145, -342.41886223824474, -341.3219864634541, -340.22512564004313, -339.12827976801213, -338.0314488473616, -336.9346328780907, -339.31765424144214, -334.7145181657012, -333.6177470505703, -232.72611522326466, -231.55004469921113, -176.79473752882106, -159.91261343070286, -173.79561469392095, -158.58323665345839, -146.31737684285773, -146.19331694836976, -141.1519181907725, -166.30586711529602, -224.62940307925157, -333.69735754212786, -335.4538224215366, -334.17002923139796, -332.8862509926398, -331.6024877052614, -328.86943282437824, -329.04924008736975, -327.7655216541314, -326.48181817227294, -331.5337338085002, -434.1067940612641, -424.9513843704612, -327.4694799022522, -326.0845211789279, -324.0086949941645, -219.33918746394434, -215.55032620747042 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=8
Time=%{x}
Sale/Production [MW]=%{y}", "legendgroup": "8", "marker": { "color": "#FF97FF", "pattern": { "shape": "" } }, "name": "8", "offsetgroup": "8", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00", "2018-01-24T00:00:00", "2018-01-24T01:00:00", "2018-01-24T02:00:00", "2018-01-24T03:00:00", "2018-01-24T04:00:00", "2018-01-24T05:00:00", "2018-01-24T06:00:00", "2018-01-24T07:00:00", "2018-01-24T08:00:00", "2018-01-24T09:00:00", "2018-01-24T10:00:00", "2018-01-24T11:00:00", "2018-01-24T12:00:00", "2018-01-24T13:00:00", "2018-01-24T14:00:00", "2018-01-24T15:00:00", "2018-01-24T16:00:00", "2018-01-24T17:00:00", "2018-01-24T18:00:00", "2018-01-24T19:00:00", "2018-01-24T20:00:00", "2018-01-24T21:00:00", "2018-01-24T22:00:00", "2018-01-24T23:00:00", "2018-01-25T00:00:00", "2018-01-25T01:00:00", "2018-01-25T02:00:00", "2018-01-25T03:00:00", "2018-01-25T04:00:00", "2018-01-25T05:00:00", "2018-01-25T06:00:00", "2018-01-25T07:00:00", "2018-01-25T08:00:00", "2018-01-25T09:00:00", "2018-01-25T10:00:00", "2018-01-25T11:00:00", "2018-01-25T12:00:00", "2018-01-25T13:00:00", "2018-01-25T14:00:00", "2018-01-25T15:00:00", "2018-01-25T16:00:00", "2018-01-25T17:00:00", "2018-01-25T18:00:00", "2018-01-25T19:00:00", "2018-01-25T20:00:00", "2018-01-25T21:00:00", "2018-01-25T22:00:00", "2018-01-25T23:00:00" ], "xaxis": "x", "y": [ -392.1798499841486, -509.6035587626352, -508.7359817743577, -366.50318386788126, -352.79441869461823, -518.3415789800009, -517.7720386632998, -563.2448370197777, -561.8489732968958, -563.2411515063184, -561.8522035752372, -554.6338842958932, -559.0970180686713, -556.6466307969963, -551.1174492231949, -554.1952078563942, -549.7568869224463, -549.6035413941981, -544.1834061503163, -545.0284092028088, -537.5970795348413, -537.2496676654715, -536.6540230557088, -537.5861690724776, -269.3562356462552, -166.94695981152915, -150.19321472225968, -143.69645621256012, -147.36711895043658, -269.8196577503555, -286.85845553637, -451.37800422501556, -459.48923383688975, -448.62515671044156, -347.10839737487646, -341.86236480302665, -340.76549352133856, -339.66863719103054, -338.57179581210283, -337.47496938455487, -336.37815790838687, -335.28136138359935, -334.18457981019134, -333.08781318816347, -230.9527396789069, -215.57873352278628, -176.5535256592333, -159.57664581346341, -161.51626592691855, -154.48984585173955, -141.0850745558276, -141.00406146280773, -141.10050775403656, -160.2456805337863, -224.44556468235663, -333.46970258168557, -335.22300821892105, -333.93921952188583, -331.1893100888451, -328.45025357004414, -327.2129419594113, -325.97564530015893, -324.7383635922867, -326.3649082431809, -330.6996010322967, -433.95520139343336, -424.80280231145326, -327.3566320033079, -325.276112631049, -320.0814527477343, -216.22448539278537, -215.24492976216197 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=9
Time=%{x}
Sale/Production [MW]=%{y}", "legendgroup": "9", "marker": { "color": "#FECB52", "pattern": { "shape": "" } }, "name": "9", "offsetgroup": "9", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00", "2018-01-24T00:00:00", "2018-01-24T01:00:00", "2018-01-24T02:00:00", "2018-01-24T03:00:00", "2018-01-24T04:00:00", "2018-01-24T05:00:00", "2018-01-24T06:00:00", "2018-01-24T07:00:00", "2018-01-24T08:00:00", "2018-01-24T09:00:00", "2018-01-24T10:00:00", "2018-01-24T11:00:00", "2018-01-24T12:00:00", "2018-01-24T13:00:00", "2018-01-24T14:00:00", "2018-01-24T15:00:00", "2018-01-24T16:00:00", "2018-01-24T17:00:00", "2018-01-24T18:00:00", "2018-01-24T19:00:00", "2018-01-24T20:00:00", "2018-01-24T21:00:00", "2018-01-24T22:00:00", "2018-01-24T23:00:00", "2018-01-25T00:00:00", "2018-01-25T01:00:00", "2018-01-25T02:00:00", "2018-01-25T03:00:00", "2018-01-25T04:00:00", "2018-01-25T05:00:00", "2018-01-25T06:00:00", "2018-01-25T07:00:00", "2018-01-25T08:00:00", "2018-01-25T09:00:00", "2018-01-25T10:00:00", "2018-01-25T11:00:00", "2018-01-25T12:00:00", "2018-01-25T13:00:00", "2018-01-25T14:00:00", "2018-01-25T15:00:00", "2018-01-25T16:00:00", "2018-01-25T17:00:00", "2018-01-25T18:00:00", "2018-01-25T19:00:00", "2018-01-25T20:00:00", "2018-01-25T21:00:00", "2018-01-25T22:00:00", "2018-01-25T23:00:00" ], "xaxis": "x", "y": [ -573.7843718436984, -520.5800718344079, -566.0391136393675, -560.3096471213031, -567.1456046157084, -565.7598583292306, -517.7390069992521, -563.204883711282, -561.8092758643118, -560.4098060733727, -559.0063779643207, -557.5368697919774, -551.7373401611676, -501.67130425721047, -551.1114747163682, -510.07577137196483, -546.8411135492713, -544.5285144037983, -542.2160922876371, -539.9038472007886, -537.591779143252, -532.0679507623627, -533.0225561988095, -530.7110192292096, -165.75337483238076, -149.58948365587068, -143.2882406392533, -143.21280408128683, -143.1371750891223, -164.6688728194514, -283.1056613618214, -437.8585898273917, -453.99314681489216, -442.482087847914, -343.7133006651811, -338.1407483037449, -337.0438569654842, -319.6113055354698, -318.8019030078586, -317.9919042118899, -332.9826960240949, -331.8858794427101, -330.78907781270107, -314.69983119741136, -175.80414974251744, -175.15716524776846, -160.8807657876202, -146.1305925466347, -157.6133025354001, -145.65041082828148, -40.75094038989102, -40.66133931586871, -40.65819174993354, -157.00276575036443, -172.5731541626673, -325.9413133958664, -336.3434082693686, -333.3668922542783, -329.45243192088117, -328.2150862388104, -320.0224597655931, -325.0023006783637, -324.567050284947, -323.32976440825934, -329.31590597813437, -433.9927681990525, -419.101594461757, -330.9733616867332, -319.7786241774271, -315.59097518238127, -216.51523821040496, -208.6884677448552 ], "yaxis": "y" } ], "layout": { "barmode": "relative", "legend": { "title": { "text": "" }, "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.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.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.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.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.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.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.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.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.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.0, "#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.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.0, "#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.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.0, "#f0f921" ] ], "sequentialminus": [ [ 0.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.0, "#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": "Bid volumes per stochastic price #" }, "xaxis": { "anchor": "y", "domain": [ 0.0, 1.0 ], "title": { "text": "Time" } }, "yaxis": { "anchor": "x", "domain": [ 0.0, 1.0 ], "title": { "text": "Sale/Production [MW]" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "\n", "# Plot optimal production in different plot types\n", "optimal_production.plot.bar(title=\"Bid volumes per stochastic price #\", labels=dict(index=\"Time\", value=\"Sale/Production [MW]\", variable=\"\"))" ] }, { "cell_type": "code", "execution_count": 25, "id": "5557e19b", "metadata": { "Collapsed": "false" }, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "alignmentgroup": "True", "hovertemplate": "=0
Time=%{x}
Sale/Production [MW]=%{y}", "legendgroup": "0", "marker": { "color": "#636efa", "pattern": { "shape": "" } }, "name": "0", "offsetgroup": "0", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00", "2018-01-24T00:00:00", "2018-01-24T01:00:00", "2018-01-24T02:00:00", "2018-01-24T03:00:00", "2018-01-24T04:00:00", "2018-01-24T05:00:00", "2018-01-24T06:00:00", "2018-01-24T07:00:00", "2018-01-24T08:00:00", "2018-01-24T09:00:00", "2018-01-24T10:00:00", "2018-01-24T11:00:00", "2018-01-24T12:00:00", "2018-01-24T13:00:00", "2018-01-24T14:00:00", "2018-01-24T15:00:00", "2018-01-24T16:00:00", "2018-01-24T17:00:00", "2018-01-24T18:00:00", "2018-01-24T19:00:00", "2018-01-24T20:00:00", "2018-01-24T21:00:00", "2018-01-24T22:00:00", "2018-01-24T23:00:00", "2018-01-25T00:00:00", "2018-01-25T01:00:00", "2018-01-25T02:00:00", "2018-01-25T03:00:00", "2018-01-25T04:00:00", "2018-01-25T05:00:00", "2018-01-25T06:00:00", "2018-01-25T07:00:00", "2018-01-25T08:00:00", "2018-01-25T09:00:00", "2018-01-25T10:00:00", "2018-01-25T11:00:00", "2018-01-25T12:00:00", "2018-01-25T13:00:00", "2018-01-25T14:00:00", "2018-01-25T15:00:00", "2018-01-25T16:00:00", "2018-01-25T17:00:00", "2018-01-25T18:00:00", "2018-01-25T19:00:00", "2018-01-25T20:00:00", "2018-01-25T21:00:00", "2018-01-25T22:00:00", "2018-01-25T23:00:00" ], "xaxis": "x", "y": [ -521.1960606086716, -520.6200309265641, -514.3700855780862, -366.50324016153144, -469.83748965263607, -495.05698163937336, -505.0378359517775, -563.2455802505438, -561.848293321242, -560.4473102774191, -559.0443795270336, -514.9897311369199, -512.5885600336203, -505.7758345617127, -513.2640581155575, -510.54488595266207, -507.62845785963196, -549.6390839252336, -546.8399001039877, -543.413306499151, -537.634377324231, -541.7607797251376, -533.0665929543591, -537.2330234039116, -182.78191913805335, -167.85597085986512, -152.34820976531057, -149.1106930572866, -166.39343275937836, -183.87201248459004, -289.1463147014771, -452.0687157599206, -463.13058100279903, -449.29229755050847, -359.41562091354973, -342.24736845334985, -341.1504722885496, -340.05359107512953, -338.95672481308986, -337.85987350242965, -336.76303714314963, -339.14035051528776, -334.54288165074183, -333.44609014560183, -232.40274034310644, -229.41153495055852, -176.60207148575554, -159.70880414464278, -167.85370595028482, -158.40635671779475, -146.26590270704628, -141.01697709559969, -141.11109194246112, -161.31284274776021, -224.41499655032092, -333.62258037158534, -335.37541782720456, -334.0916042470569, -332.8078056182892, -331.52402194090155, -327.9545734496864, -327.5406259473661, -327.7095905041617, -326.4258666322941, -331.47045507171197, -434.1999928402353, -425.03091924955214, -327.406097259542, -326.02111814620895, -323.9461147212547, -317.17861563996064, -215.24492976216197 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=1
Time=%{x}
Sale/Production [MW]=%{y}", "legendgroup": "1", "marker": { "color": "#EF553B", "pattern": { "shape": "" } }, "name": "1", "offsetgroup": "1", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00", "2018-01-24T00:00:00", "2018-01-24T01:00:00", "2018-01-24T02:00:00", "2018-01-24T03:00:00", "2018-01-24T04:00:00", "2018-01-24T05:00:00", "2018-01-24T06:00:00", "2018-01-24T07:00:00", "2018-01-24T08:00:00", "2018-01-24T09:00:00", "2018-01-24T10:00:00", "2018-01-24T11:00:00", "2018-01-24T12:00:00", "2018-01-24T13:00:00", "2018-01-24T14:00:00", "2018-01-24T15:00:00", "2018-01-24T16:00:00", "2018-01-24T17:00:00", "2018-01-24T18:00:00", "2018-01-24T19:00:00", "2018-01-24T20:00:00", "2018-01-24T21:00:00", "2018-01-24T22:00:00", "2018-01-24T23:00:00", "2018-01-25T00:00:00", "2018-01-25T01:00:00", "2018-01-25T02:00:00", "2018-01-25T03:00:00", "2018-01-25T04:00:00", "2018-01-25T05:00:00", "2018-01-25T06:00:00", "2018-01-25T07:00:00", "2018-01-25T08:00:00", "2018-01-25T09:00:00", "2018-01-25T10:00:00", "2018-01-25T11:00:00", "2018-01-25T12:00:00", "2018-01-25T13:00:00", "2018-01-25T14:00:00", "2018-01-25T15:00:00", "2018-01-25T16:00:00", "2018-01-25T17:00:00", "2018-01-25T18:00:00", "2018-01-25T19:00:00", "2018-01-25T20:00:00", "2018-01-25T21:00:00", "2018-01-25T22:00:00", "2018-01-25T23:00:00" ], "xaxis": "x", "y": [ -414.61707301769445, -354.32581710025465, -383.9011510925746, -209.9333779523622, -404.3300442468452, -499.3022477893514, -446.4817775214907, -564.9544686168051, -561.8496069790938, -560.4503012925522, -559.047097720206, -514.9904586860391, -558.357965010298, -556.6526168537575, -551.1513391567074, -554.2318547162662, -549.792919356861, -544.5679226591765, -544.2161868107406, -544.5228992343257, -544.6271841618059, -537.276532115522, -536.6819248078463, -487.39126293162155, -187.73487184691052, -168.2727094014372, -167.51345352998044, -150.56184472443158, -167.48011464247313, -186.21227423356447, -349.11064186202213, -453.801608818804, -471.1748339648459, -454.34309827335204, -360.89251712376193, -353.67209195391877, -346.0613663906777, -341.3570177660822, -340.26012582090846, -339.16324882709847, -341.57745064683763, -348.1251741392918, -339.2400585402592, -334.6422271822083, -233.40867973853074, -232.23260921447687, -215.57751670688413, -162.06301615098621, -173.85925946688963, -161.4285493928246, -146.39473678487659, -146.27086014137544, -146.14666630288312, -171.69825341538953, -224.97715826248572, -337.42421679797894, -342.81785295289825, -341.4326523541791, -340.04746670682454, -332.11478032910287, -330.83098591978757, -329.54720646183654, -328.26344195524973, -332.642077354342, -331.9839844846263, -434.92924092130704, -425.7430464361523, -327.91949579172405, -326.5344909949241, -325.1495011494878, -225.52787919730872, -219.59442329679507 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=2
Time=%{x}
Sale/Production [MW]=%{y}", "legendgroup": "2", "marker": { "color": "#00cc96", "pattern": { "shape": "" } }, "name": "2", "offsetgroup": "2", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00", "2018-01-24T00:00:00", "2018-01-24T01:00:00", "2018-01-24T02:00:00", "2018-01-24T03:00:00", "2018-01-24T04:00:00", "2018-01-24T05:00:00", "2018-01-24T06:00:00", "2018-01-24T07:00:00", "2018-01-24T08:00:00", "2018-01-24T09:00:00", "2018-01-24T10:00:00", "2018-01-24T11:00:00", "2018-01-24T12:00:00", "2018-01-24T13:00:00", "2018-01-24T14:00:00", "2018-01-24T15:00:00", "2018-01-24T16:00:00", "2018-01-24T17:00:00", "2018-01-24T18:00:00", "2018-01-24T19:00:00", "2018-01-24T20:00:00", "2018-01-24T21:00:00", "2018-01-24T22:00:00", "2018-01-24T23:00:00", "2018-01-25T00:00:00", "2018-01-25T01:00:00", "2018-01-25T02:00:00", "2018-01-25T03:00:00", "2018-01-25T04:00:00", "2018-01-25T05:00:00", "2018-01-25T06:00:00", "2018-01-25T07:00:00", "2018-01-25T08:00:00", "2018-01-25T09:00:00", "2018-01-25T10:00:00", "2018-01-25T11:00:00", "2018-01-25T12:00:00", "2018-01-25T13:00:00", "2018-01-25T14:00:00", "2018-01-25T15:00:00", "2018-01-25T16:00:00", "2018-01-25T17:00:00", "2018-01-25T18:00:00", "2018-01-25T19:00:00", "2018-01-25T20:00:00", "2018-01-25T21:00:00", "2018-01-25T22:00:00", "2018-01-25T23:00:00" ], "xaxis": "x", "y": [ -521.1960606086716, -487.649407116228, -420.0884675690477, -460.9060001539398, -499.0546106397397, -487.17262131274447, -496.88022568312823, -562.7226427665585, -561.8499882978512, -562.185635588742, -544.9657870749676, -557.5730357457255, -554.7909449873108, -542.132100854412, -513.262290447305, -538.9830229843202, -546.8637063860434, -547.4648069666988, -546.8242409677773, -544.5119560587639, -539.5795649114249, -539.9309668229696, -536.6720754735618, -535.3254104955488, -167.3057476394809, -166.69509373956714, -145.713028338053, -143.79194937601386, -149.87613430315454, -166.0464334909745, -287.272749487855, -450.9507699545793, -457.392225717819, -448.21170571518365, -346.86128391006235, -341.2860980467299, -340.1891990135594, -339.09231493176947, -337.9954458013591, -336.8985916223287, -335.8017523946784, -334.7049281184085, -333.60811879351814, -326.40946689999146, -215.92051605125556, -215.57301206120974, -173.73259896916844, -146.54695003728773, -159.06620374977342, -146.2848387202148, -141.17086750608718, -141.09581745649643, -140.86356901527034, -157.7642173838894, -209.91631874471915, -333.2689666038623, -336.4576196258975, -330.7985025133632, -329.561133965581, -328.3237803691789, -327.0864417241563, -325.84911803051415, -324.6118092882522, -323.37451549737, -330.5868409598421, -434.04774183234156, -419.15318292025256, -327.30258198718025, -325.22303166650056, -318.42078408344884, -314.40550300093315, -212.0299404302176 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=3
Time=%{x}
Sale/Production [MW]=%{y}", "legendgroup": "3", "marker": { "color": "#ab63fa", "pattern": { "shape": "" } }, "name": "3", "offsetgroup": "3", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00", "2018-01-24T00:00:00", "2018-01-24T01:00:00", "2018-01-24T02:00:00", "2018-01-24T03:00:00", "2018-01-24T04:00:00", "2018-01-24T05:00:00", "2018-01-24T06:00:00", "2018-01-24T07:00:00", "2018-01-24T08:00:00", "2018-01-24T09:00:00", "2018-01-24T10:00:00", "2018-01-24T11:00:00", "2018-01-24T12:00:00", "2018-01-24T13:00:00", "2018-01-24T14:00:00", "2018-01-24T15:00:00", "2018-01-24T16:00:00", "2018-01-24T17:00:00", "2018-01-24T18:00:00", "2018-01-24T19:00:00", "2018-01-24T20:00:00", "2018-01-24T21:00:00", "2018-01-24T22:00:00", "2018-01-24T23:00:00", "2018-01-25T00:00:00", "2018-01-25T01:00:00", "2018-01-25T02:00:00", "2018-01-25T03:00:00", "2018-01-25T04:00:00", "2018-01-25T05:00:00", "2018-01-25T06:00:00", "2018-01-25T07:00:00", "2018-01-25T08:00:00", "2018-01-25T09:00:00", "2018-01-25T10:00:00", "2018-01-25T11:00:00", "2018-01-25T12:00:00", "2018-01-25T13:00:00", "2018-01-25T14:00:00", "2018-01-25T15:00:00", "2018-01-25T16:00:00", "2018-01-25T17:00:00", "2018-01-25T18:00:00", "2018-01-25T19:00:00", "2018-01-25T20:00:00", "2018-01-25T21:00:00", "2018-01-25T22:00:00", "2018-01-25T23:00:00" ], "xaxis": "x", "y": [ -568.2559362833281, -509.21511309228504, -520.0428223179105, -519.3033593237029, -567.6579574300741, -518.3851126379889, -561.418831780785, -563.2457715589442, -561.8496533850073, -560.4504750275194, -559.0473625124262, -554.6333478351515, -554.7929559402271, -501.7055940589005, -495.7915508330775, -510.109851865752, -548.81293807595, -544.5677584159066, -544.2193676115252, -541.9071378662284, -539.5950851503551, -537.2832094639057, -495.74060754321096, -496.06075728761107, -268.6330741677071, -150.0439893202146, -143.60467539375446, -143.65402737317217, -143.45515160620184, -267.52899481223375, -286.69132576124434, -449.6425225189943, -456.0570661942973, -446.9037905492406, -345.87636868408623, -340.3149737768607, -339.2181153045633, -338.12127178365074, -337.0244432141228, -335.92762959598014, -334.8308309292218, -333.73404721384827, -332.63727844985993, -317.7046305301231, -177.56260266245516, -177.05128347657362, -173.7540583009149, -146.7212583883072, -159.0198830378331, -146.2668219389677, -141.1567784830511, -141.0817219646765, -140.85359479283753, -157.09018838686285, -173.22758599409002, -333.09863944299764, -331.9604563237851, -330.624043613245, -329.3867149174267, -328.14940117299244, -324.37316810568655, -325.69611740202106, -324.45884851173787, -323.2215945728383, -327.9574238642639, -433.61260035209085, -418.7389667219147, -326.48107023099226, -325.0963334249838, -318.30054721169813, -216.51523821040496, -208.6884677448552 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=4
Time=%{x}
Sale/Production [MW]=%{y}", "legendgroup": "4", "marker": { "color": "#FFA15A", "pattern": { "shape": "" } }, "name": "4", "offsetgroup": "4", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00", "2018-01-24T00:00:00", "2018-01-24T01:00:00", "2018-01-24T02:00:00", "2018-01-24T03:00:00", "2018-01-24T04:00:00", "2018-01-24T05:00:00", "2018-01-24T06:00:00", "2018-01-24T07:00:00", "2018-01-24T08:00:00", "2018-01-24T09:00:00", "2018-01-24T10:00:00", "2018-01-24T11:00:00", "2018-01-24T12:00:00", "2018-01-24T13:00:00", "2018-01-24T14:00:00", "2018-01-24T15:00:00", "2018-01-24T16:00:00", "2018-01-24T17:00:00", "2018-01-24T18:00:00", "2018-01-24T19:00:00", "2018-01-24T20:00:00", "2018-01-24T21:00:00", "2018-01-24T22:00:00", "2018-01-24T23:00:00", "2018-01-25T00:00:00", "2018-01-25T01:00:00", "2018-01-25T02:00:00", "2018-01-25T03:00:00", "2018-01-25T04:00:00", "2018-01-25T05:00:00", "2018-01-25T06:00:00", "2018-01-25T07:00:00", "2018-01-25T08:00:00", "2018-01-25T09:00:00", "2018-01-25T10:00:00", "2018-01-25T11:00:00", "2018-01-25T12:00:00", "2018-01-25T13:00:00", "2018-01-25T14:00:00", "2018-01-25T15:00:00", "2018-01-25T16:00:00", "2018-01-25T17:00:00", "2018-01-25T18:00:00", "2018-01-25T19:00:00", "2018-01-25T20:00:00", "2018-01-25T21:00:00", "2018-01-25T22:00:00", "2018-01-25T23:00:00" ], "xaxis": "x", "y": [ -430.5452685796312, -520.6671627451043, -471.2766425268818, -519.3033784888022, -506.9517146043077, -499.30221540296554, -505.2261601330182, -562.7225314148692, -561.8497956399117, -560.4486583212544, -560.929455150962, -555.9420358970312, -543.2616201672603, -551.9012491170718, -551.15057054209, -552.6071405675593, -546.8794228112911, -547.4809190890941, -544.2199496276685, -543.4130990755136, -532.0621895474023, -537.2261756092, -536.629814222633, -534.3182708328598, -268.86217184322635, -151.70883967448995, -143.6538131635152, -143.57934666902463, -143.5036698926133, -267.6288648514516, -286.984237470158, -450.25046263666144, -456.667770107441, -447.51169622489687, -346.42584156143755, -340.86303003804585, -339.7661673614686, -338.6693196362717, -337.5724868624545, -336.4756690400173, -335.37886616896003, -334.2820782492833, -333.18530528098614, -326.9754602435501, -215.7949284535894, -177.20656648255476, -173.8968236003328, -146.74456088165388, -159.1047830807153, -146.30586703213697, -141.19002896708616, -141.11503737485972, -140.87961535034606, -157.25436777813465, -210.0639336298021, -333.0965280053834, -334.2834667261863, -330.6244181229458, -329.38708541338013, -328.1497676551681, -326.9124648483094, -325.675176992804, -324.4379040886514, -323.2006461358526, -324.80558650788754, -433.6476237950224, -421.0731505734402, -327.1633351811573, -319.6120845319527, -318.32851539189966, -216.51523821040496, -208.6884677448552 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=5
Time=%{x}
Sale/Production [MW]=%{y}", "legendgroup": "5", "marker": { "color": "#19d3f3", "pattern": { "shape": "" } }, "name": "5", "offsetgroup": "5", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00", "2018-01-24T00:00:00", "2018-01-24T01:00:00", "2018-01-24T02:00:00", "2018-01-24T03:00:00", "2018-01-24T04:00:00", "2018-01-24T05:00:00", "2018-01-24T06:00:00", "2018-01-24T07:00:00", "2018-01-24T08:00:00", "2018-01-24T09:00:00", "2018-01-24T10:00:00", "2018-01-24T11:00:00", "2018-01-24T12:00:00", "2018-01-24T13:00:00", "2018-01-24T14:00:00", "2018-01-24T15:00:00", "2018-01-24T16:00:00", "2018-01-24T17:00:00", "2018-01-24T18:00:00", "2018-01-24T19:00:00", "2018-01-24T20:00:00", "2018-01-24T21:00:00", "2018-01-24T22:00:00", "2018-01-24T23:00:00", "2018-01-25T00:00:00", "2018-01-25T01:00:00", "2018-01-25T02:00:00", "2018-01-25T03:00:00", "2018-01-25T04:00:00", "2018-01-25T05:00:00", "2018-01-25T06:00:00", "2018-01-25T07:00:00", "2018-01-25T08:00:00", "2018-01-25T09:00:00", "2018-01-25T10:00:00", "2018-01-25T11:00:00", "2018-01-25T12:00:00", "2018-01-25T13:00:00", "2018-01-25T14:00:00", "2018-01-25T15:00:00", "2018-01-25T16:00:00", "2018-01-25T17:00:00", "2018-01-25T18:00:00", "2018-01-25T19:00:00", "2018-01-25T20:00:00", "2018-01-25T21:00:00", "2018-01-25T22:00:00", "2018-01-25T23:00:00" ], "xaxis": "x", "y": [ -515.8234274878303, -491.3190993624849, -500.78131489119625, -427.8826334749584, -469.89194422830565, -518.3851119965227, -466.8041534693119, -563.2458301416259, -561.8514318536402, -560.4530224945955, -561.1612187022672, -559.764102107037, -558.3630776162619, -556.9580640362797, -551.1571463382929, -552.7304259655021, -548.8209523107558, -544.577349785258, -542.2668725483968, -543.4250747933216, -537.6455588150505, -539.0563250632819, -499.21677057398534, -497.5469587949432, -269.3070540037784, -167.12728528465598, -143.75833365178642, -143.68403897514358, -150.16658414512455, -168.11382555688962, -286.70325372773675, -450.90090423680067, -457.32909410732105, -448.1620035970012, -346.9390472163483, -341.37065919868206, -340.2737801365397, -339.1769160257777, -338.0800668663952, -336.9832326583929, -335.88641340177094, -334.78960909652864, -333.69281974266636, -332.596045340184, -216.18989529444323, -177.46897388617117, -174.12010387392024, -159.50994205873883, -161.3538283289006, -146.74888355452703, -141.12255675274332, -141.16695908192446, -140.96083319999696, -160.01813086285196, -212.08856293963305, -333.4632108286591, -332.22583163205223, -332.35620831878936, -329.73881381759634, -328.5014794751296, -327.2641600840429, -326.0268556443358, -324.7895661560091, -326.41605698070623, -330.7505524409241, -434.0683651797571, -424.9107527171435, -327.4075204333062, -325.3270166106237, -318.5173298448426, -217.17100711742353, -215.24492976216197 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=6
Time=%{x}
Sale/Production [MW]=%{y}", "legendgroup": "6", "marker": { "color": "#FF6692", "pattern": { "shape": "" } }, "name": "6", "offsetgroup": "6", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00", "2018-01-24T00:00:00", "2018-01-24T01:00:00", "2018-01-24T02:00:00", "2018-01-24T03:00:00", "2018-01-24T04:00:00", "2018-01-24T05:00:00", "2018-01-24T06:00:00", "2018-01-24T07:00:00", "2018-01-24T08:00:00", "2018-01-24T09:00:00", "2018-01-24T10:00:00", "2018-01-24T11:00:00", "2018-01-24T12:00:00", "2018-01-24T13:00:00", "2018-01-24T14:00:00", "2018-01-24T15:00:00", "2018-01-24T16:00:00", "2018-01-24T17:00:00", "2018-01-24T18:00:00", "2018-01-24T19:00:00", "2018-01-24T20:00:00", "2018-01-24T21:00:00", "2018-01-24T22:00:00", "2018-01-24T23:00:00", "2018-01-25T00:00:00", "2018-01-25T01:00:00", "2018-01-25T02:00:00", "2018-01-25T03:00:00", "2018-01-25T04:00:00", "2018-01-25T05:00:00", "2018-01-25T06:00:00", "2018-01-25T07:00:00", "2018-01-25T08:00:00", "2018-01-25T09:00:00", "2018-01-25T10:00:00", "2018-01-25T11:00:00", "2018-01-25T12:00:00", "2018-01-25T13:00:00", "2018-01-25T14:00:00", "2018-01-25T15:00:00", "2018-01-25T16:00:00", "2018-01-25T17:00:00", "2018-01-25T18:00:00", "2018-01-25T19:00:00", "2018-01-25T20:00:00", "2018-01-25T21:00:00", "2018-01-25T22:00:00", "2018-01-25T23:00:00" ], "xaxis": "x", "y": [ -521.1960606086716, -475.8522026566619, -478.45928921609595, -513.7384505623509, -513.0171723174788, -467.6680113244048, -517.7722890289774, -564.9544160547022, -561.8497746745279, -562.1899722485557, -559.0471036708433, -557.578335679551, -551.7788308804944, -556.6553397277435, -554.4212666283076, -552.1083181375125, -549.7955466760857, -547.4829522440265, -542.2582126943673, -541.9101236156718, -537.6349463849479, -537.2874448161272, -495.7445714308254, -534.0508759832788, -166.96119736188757, -150.06861407692546, -143.6221705200032, -143.5475339109444, -143.47271453438225, -165.75493945034782, -286.2416560559519, -442.1426036428868, -456.58540324198765, -447.4087411533228, -346.1369628844214, -340.5637298486686, -339.4668365522391, -336.4958487329359, -335.42115418385697, -334.7352667956059, -335.1164602623516, -334.0196417228223, -332.92283813467253, -316.1983160973714, -177.1285159088162, -176.6181080854959, -168.52213645284104, -146.54485529476747, -159.05281020930616, -146.28270805169697, -141.17295039568114, -140.94618043810513, -140.8646421843615, -157.11524979276007, -209.95135418610525, -326.022626512051, -336.42792242745503, -330.77075524009535, -329.5333924290537, -328.2960445693921, -323.8944062011591, -325.8478283397365, -324.61052533421457, -323.373237280073, -329.36066478558257, -434.05825754700675, -419.16450121050127, -326.6613994022255, -319.817606086505, -317.1684833272768, -216.51523821040496, -208.6884677448552 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=7
Time=%{x}
Sale/Production [MW]=%{y}", "legendgroup": "7", "marker": { "color": "#B6E880", "pattern": { "shape": "" } }, "name": "7", "offsetgroup": "7", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00", "2018-01-24T00:00:00", "2018-01-24T01:00:00", "2018-01-24T02:00:00", "2018-01-24T03:00:00", "2018-01-24T04:00:00", "2018-01-24T05:00:00", "2018-01-24T06:00:00", "2018-01-24T07:00:00", "2018-01-24T08:00:00", "2018-01-24T09:00:00", "2018-01-24T10:00:00", "2018-01-24T11:00:00", "2018-01-24T12:00:00", "2018-01-24T13:00:00", "2018-01-24T14:00:00", "2018-01-24T15:00:00", "2018-01-24T16:00:00", "2018-01-24T17:00:00", "2018-01-24T18:00:00", "2018-01-24T19:00:00", "2018-01-24T20:00:00", "2018-01-24T21:00:00", "2018-01-24T22:00:00", "2018-01-24T23:00:00", "2018-01-25T00:00:00", "2018-01-25T01:00:00", "2018-01-25T02:00:00", "2018-01-25T03:00:00", "2018-01-25T04:00:00", "2018-01-25T05:00:00", "2018-01-25T06:00:00", "2018-01-25T07:00:00", "2018-01-25T08:00:00", "2018-01-25T09:00:00", "2018-01-25T10:00:00", "2018-01-25T11:00:00", "2018-01-25T12:00:00", "2018-01-25T13:00:00", "2018-01-25T14:00:00", "2018-01-25T15:00:00", "2018-01-25T16:00:00", "2018-01-25T17:00:00", "2018-01-25T18:00:00", "2018-01-25T19:00:00", "2018-01-25T20:00:00", "2018-01-25T21:00:00", "2018-01-25T22:00:00", "2018-01-25T23:00:00" ], "xaxis": "x", "y": [ -358.84426050666974, -421.7638521455931, -420.0884562145799, -460.9059656606174, -412.03786975064537, -352.48822565062824, -564.1367496911986, -562.7224754293967, -561.8502856956339, -560.4514359878731, -560.9326216703134, -561.1231999615958, -558.3609346403772, -494.6924997319036, -551.1545103374564, -550.1396908179458, -549.7946046710595, -547.4831244053036, -549.2605965107203, -546.9482772137623, -544.6361349461718, -542.3241697079495, -540.0123814990952, -537.7007703196088, -281.69222473087956, -167.75250832819376, -150.44610524392195, -150.79713201673198, -166.99268886513363, -285.9473212711939, -335.0608599552857, -452.1374286160454, -467.11453969125273, -449.33147091536057, -359.59837760150145, -342.41886223824474, -341.3219864634541, -340.22512564004313, -339.12827976801213, -338.0314488473616, -336.9346328780907, -339.31765424144214, -334.7145181657012, -333.6177470505703, -232.72611522326466, -231.55004469921113, -176.79473752882106, -159.91261343070286, -173.79561469392095, -158.58323665345839, -146.31737684285773, -146.19331694836976, -141.1519181907725, -166.30586711529602, -224.62940307925157, -333.69735754212786, -335.4538224215366, -334.17002923139796, -332.8862509926398, -331.6024877052614, -328.86943282437824, -329.04924008736975, -327.7655216541314, -326.48181817227294, -331.5337338085002, -434.1067940612641, -424.9513843704612, -327.4694799022522, -326.0845211789279, -324.0086949941645, -219.33918746394434, -215.55032620747042 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=8
Time=%{x}
Sale/Production [MW]=%{y}", "legendgroup": "8", "marker": { "color": "#FF97FF", "pattern": { "shape": "" } }, "name": "8", "offsetgroup": "8", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00", "2018-01-24T00:00:00", "2018-01-24T01:00:00", "2018-01-24T02:00:00", "2018-01-24T03:00:00", "2018-01-24T04:00:00", "2018-01-24T05:00:00", "2018-01-24T06:00:00", "2018-01-24T07:00:00", "2018-01-24T08:00:00", "2018-01-24T09:00:00", "2018-01-24T10:00:00", "2018-01-24T11:00:00", "2018-01-24T12:00:00", "2018-01-24T13:00:00", "2018-01-24T14:00:00", "2018-01-24T15:00:00", "2018-01-24T16:00:00", "2018-01-24T17:00:00", "2018-01-24T18:00:00", "2018-01-24T19:00:00", "2018-01-24T20:00:00", "2018-01-24T21:00:00", "2018-01-24T22:00:00", "2018-01-24T23:00:00", "2018-01-25T00:00:00", "2018-01-25T01:00:00", "2018-01-25T02:00:00", "2018-01-25T03:00:00", "2018-01-25T04:00:00", "2018-01-25T05:00:00", "2018-01-25T06:00:00", "2018-01-25T07:00:00", "2018-01-25T08:00:00", "2018-01-25T09:00:00", "2018-01-25T10:00:00", "2018-01-25T11:00:00", "2018-01-25T12:00:00", "2018-01-25T13:00:00", "2018-01-25T14:00:00", "2018-01-25T15:00:00", "2018-01-25T16:00:00", "2018-01-25T17:00:00", "2018-01-25T18:00:00", "2018-01-25T19:00:00", "2018-01-25T20:00:00", "2018-01-25T21:00:00", "2018-01-25T22:00:00", "2018-01-25T23:00:00" ], "xaxis": "x", "y": [ -392.1798499841486, -509.6035587626352, -508.7359817743577, -366.50318386788126, -352.79441869461823, -518.3415789800009, -517.7720386632998, -563.2448370197777, -561.8489732968958, -563.2411515063184, -561.8522035752372, -554.6338842958932, -559.0970180686713, -556.6466307969963, -551.1174492231949, -554.1952078563942, -549.7568869224463, -549.6035413941981, -544.1834061503163, -545.0284092028088, -537.5970795348413, -537.2496676654715, -536.6540230557088, -537.5861690724776, -269.3562356462552, -166.94695981152915, -150.19321472225968, -143.69645621256012, -147.36711895043658, -269.8196577503555, -286.85845553637, -451.37800422501556, -459.48923383688975, -448.62515671044156, -347.10839737487646, -341.86236480302665, -340.76549352133856, -339.66863719103054, -338.57179581210283, -337.47496938455487, -336.37815790838687, -335.28136138359935, -334.18457981019134, -333.08781318816347, -230.9527396789069, -215.57873352278628, -176.5535256592333, -159.57664581346341, -161.51626592691855, -154.48984585173955, -141.0850745558276, -141.00406146280773, -141.10050775403656, -160.2456805337863, -224.44556468235663, -333.46970258168557, -335.22300821892105, -333.93921952188583, -331.1893100888451, -328.45025357004414, -327.2129419594113, -325.97564530015893, -324.7383635922867, -326.3649082431809, -330.6996010322967, -433.95520139343336, -424.80280231145326, -327.3566320033079, -325.276112631049, -320.0814527477343, -216.22448539278537, -215.24492976216197 ], "yaxis": "y" }, { "alignmentgroup": "True", "hovertemplate": "=9
Time=%{x}
Sale/Production [MW]=%{y}", "legendgroup": "9", "marker": { "color": "#FECB52", "pattern": { "shape": "" } }, "name": "9", "offsetgroup": "9", "orientation": "v", "showlegend": true, "textposition": "auto", "type": "bar", "x": [ "2018-01-23T00:00:00", "2018-01-23T01:00:00", "2018-01-23T02:00:00", "2018-01-23T03:00:00", "2018-01-23T04:00:00", "2018-01-23T05:00:00", "2018-01-23T06:00:00", "2018-01-23T07:00:00", "2018-01-23T08:00:00", "2018-01-23T09:00:00", "2018-01-23T10:00:00", "2018-01-23T11:00:00", "2018-01-23T12:00:00", "2018-01-23T13:00:00", "2018-01-23T14:00:00", "2018-01-23T15:00:00", "2018-01-23T16:00:00", "2018-01-23T17:00:00", "2018-01-23T18:00:00", "2018-01-23T19:00:00", "2018-01-23T20:00:00", "2018-01-23T21:00:00", "2018-01-23T22:00:00", "2018-01-23T23:00:00", "2018-01-24T00:00:00", "2018-01-24T01:00:00", "2018-01-24T02:00:00", "2018-01-24T03:00:00", "2018-01-24T04:00:00", "2018-01-24T05:00:00", "2018-01-24T06:00:00", "2018-01-24T07:00:00", "2018-01-24T08:00:00", "2018-01-24T09:00:00", "2018-01-24T10:00:00", "2018-01-24T11:00:00", "2018-01-24T12:00:00", "2018-01-24T13:00:00", "2018-01-24T14:00:00", "2018-01-24T15:00:00", "2018-01-24T16:00:00", "2018-01-24T17:00:00", "2018-01-24T18:00:00", "2018-01-24T19:00:00", "2018-01-24T20:00:00", "2018-01-24T21:00:00", "2018-01-24T22:00:00", "2018-01-24T23:00:00", "2018-01-25T00:00:00", "2018-01-25T01:00:00", "2018-01-25T02:00:00", "2018-01-25T03:00:00", "2018-01-25T04:00:00", "2018-01-25T05:00:00", "2018-01-25T06:00:00", "2018-01-25T07:00:00", "2018-01-25T08:00:00", "2018-01-25T09:00:00", "2018-01-25T10:00:00", "2018-01-25T11:00:00", "2018-01-25T12:00:00", "2018-01-25T13:00:00", "2018-01-25T14:00:00", "2018-01-25T15:00:00", "2018-01-25T16:00:00", "2018-01-25T17:00:00", "2018-01-25T18:00:00", "2018-01-25T19:00:00", "2018-01-25T20:00:00", "2018-01-25T21:00:00", "2018-01-25T22:00:00", "2018-01-25T23:00:00" ], "xaxis": "x", "y": [ -573.7843718436984, -520.5800718344079, -566.0391136393675, -560.3096471213031, -567.1456046157084, -565.7598583292306, -517.7390069992521, -563.204883711282, -561.8092758643118, -560.4098060733727, -559.0063779643207, -557.5368697919774, -551.7373401611676, -501.67130425721047, -551.1114747163682, -510.07577137196483, -546.8411135492713, -544.5285144037983, -542.2160922876371, -539.9038472007886, -537.591779143252, -532.0679507623627, -533.0225561988095, -530.7110192292096, -165.75337483238076, -149.58948365587068, -143.2882406392533, -143.21280408128683, -143.1371750891223, -164.6688728194514, -283.1056613618214, -437.8585898273917, -453.99314681489216, -442.482087847914, -343.7133006651811, -338.1407483037449, -337.0438569654842, -319.6113055354698, -318.8019030078586, -317.9919042118899, -332.9826960240949, -331.8858794427101, -330.78907781270107, -314.69983119741136, -175.80414974251744, -175.15716524776846, -160.8807657876202, -146.1305925466347, -157.6133025354001, -145.65041082828148, -40.75094038989102, -40.66133931586871, -40.65819174993354, -157.00276575036443, -172.5731541626673, -325.9413133958664, -336.3434082693686, -333.3668922542783, -329.45243192088117, -328.2150862388104, -320.0224597655931, -325.0023006783637, -324.567050284947, -323.32976440825934, -329.31590597813437, -433.9927681990525, -419.101594461757, -330.9733616867332, -319.7786241774271, -315.59097518238127, -216.51523821040496, -208.6884677448552 ], "yaxis": "y" } ], "layout": { "barmode": "relative", "legend": { "title": { "text": "" }, "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.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.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.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.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.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.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.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.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.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.0, "#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.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.0, "#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.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.0, "#f0f921" ] ], "sequentialminus": [ [ 0.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.0, "#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": "Bid volumes per stochastic price #, stacked" }, "xaxis": { "anchor": "y", "domain": [ 0.0, 1.0 ], "title": { "text": "Time" } }, "yaxis": { "anchor": "x", "domain": [ 0.0, 1.0 ], "title": { "text": "Sale/Production [MW]" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# Plot optimal production in different plot types\n", "optimal_production.plot.bar(title=\"Bid volumes per stochastic price #, stacked\", labels=dict(index=\"Time\", value=\"Sale/Production [MW]\", variable=\"\")) # bargap=.1, " ] }, { "cell_type": "markdown", "id": "2aa7a41e", "metadata": { "Collapsed": "false" }, "source": [ "# Files" ] }, { "cell_type": "markdown", "id": "ae5b2704", "metadata": { "Collapsed": "false" }, "source": [ "(multi-price-bid-matrix-model-py)=\n", "## multi_price_bid_matrix_model.py" ] }, { "cell_type": "code", "execution_count": 26, "id": "3c081ae0", "metadata": { "Collapsed": "false", "tags": [ "remove-input" ] }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "import pandas as pd\n", "\n", "def build_model(shop):\n", " starttime = pd.Timestamp('2018-01-23 00:00:00')\n", " endtime = pd.Timestamp('2018-01-26')\n", " shop.set_time_resolution(starttime=starttime, endtime=endtime, timeunit=\"hour\", timeresolution=pd.Series(index=[starttime],data=[1]))\n", " \n", " rsv1 = shop.model.reservoir.add_object('Reservoir1')\n", " rsv1.max_vol.set(39)\n", " rsv1.lrl.set(860)\n", " rsv1.hrl.set(905)\n", " rsv1.vol_head.set(pd.Series([860, 906, 907], index=[0, 39, 41.66], name=0)) \n", "\n", " rsv2 = shop.model.reservoir.add_object('Reservoir2')\n", " rsv2.max_vol.set(97.5) \n", " rsv2.lrl.set(650) \n", " rsv2.hrl.set(679) \n", " rsv2.vol_head.set(pd.Series([650, 679, 680], index=[0, 97.5, 104.15], name=0))\n", " \n", " plant1 = shop.model.plant.add_object('Plant1')\n", " plant1.outlet_line.set(672)\n", " plant1.main_loss.set([0])\n", " plant1.penstock_loss.set([0.001])\n", " plant1.mip_flag.set(1)\n", " for gen_no in range(2):\n", " gen=shop.model.generator.add_object(f\"{plant1.get_name()}_G{str(gen_no+1)}\")\n", " gen.connect_to(plant1)\n", " gen.penstock.set(1)\n", " gen.p_min.set(60)\n", " gen.p_max.set(120)\n", " gen.p_nom.set(120)\n", " gen.startcost.set(300)\n", " gen.gen_eff_curve.set(pd.Series([100, 100], index=[60, 120]))\n", " gen.turb_eff_curves.set([pd.Series([85.8733, 87.0319, 88.0879, 89.0544, 89.9446, 90.7717, 91.5488, 92.2643, 92.8213, 93.1090, 93.2170, 93.0390, 92.6570, 92.1746],\n", " index=[28.12, 30.45, 32.78, 35.11, 37.45, 39.78, 42.11, 44.44, 46.77, 49.10, 51.43, 53.76, 56.10, 58.83],\n", " name=170),\n", " pd.Series([86.7321, 87.9022, 88.9688, 89.9450, 90.8441, 91.6794, 92.4643, 93.1870, 93.7495, 94.0401, 94.1492, 93.9694, 93.5836, 93.0964],\n", " index=[28.12, 30.45, 32.78, 35.11, 37.45, 39.78, 42.11, 44.44, 46.77, 49.10, 51.43, 53.76, 56.10, 58.83],\n", " name=200),\n", " pd.Series([87.5908, 88.7725, 89.8497, 90.8355, 91.7435, 92.5871, 93.3798, 94.1096, 94.6777, 94.9712, 95.0813, 94.8998, 94.5101, 94.0181],\n", " index=[28.12, 30.45, 32.78, 35.11, 37.45, 39.78, 42.11, 44.44, 46.77, 49.10, 51.43, 53.76, 56.10, 58.83],\n", " name=230)])\n", "\n", " plant2 = shop.model.plant.add_object('Plant2')\n", " plant2.outlet_line.set(586)\n", " plant2.main_loss.set([0])\n", " plant2.penstock_loss.set([0.0001,0.0002])\n", " plant2.mip_flag.set(1)\n", " for gen_no in range(4):\n", " gen=shop.model.generator.add_object(f\"{plant2.get_name()}_G{str(gen_no+1)}\")\n", " gen.connect_to(plant2)\n", " if gen_no == 0:\n", " gen.penstock.set(1)\n", " gen.p_min.set(100)\n", " gen.p_max.set(180)\n", " gen.p_nom.set(180)\n", " gen.startcost.set(300)\n", " gen.gen_eff_curve.set(pd.Series([100, 100], index=[100, 180]))\n", " gen.turb_eff_curves.set([pd.Series([92.7201, 93.2583, 93.7305, 94.1368, 94.4785, 94.7525, 94.9606, 95.1028, 95.1790, 95.1892, 95.1335, 95.0118, 94.8232, 94.5191],\n", " index=[126.54, 137.03, 147.51, 158.00, 168.53, 179.01, 189.50, 199.98, 210.47, 220.95, 231.44, 241.92, 252.45, 264.74],\n", " name=60)])\n", " else:\n", " gen.penstock.set(2)\n", " gen.p_min.set(30)\n", " gen.p_max.set(55)\n", " gen.p_nom.set(55)\n", " gen.startcost.set(300)\n", " gen.gen_eff_curve.set(pd.Series([100, 100], index=[30, 55]))\n", " gen.turb_eff_curves.set([pd.Series([83.8700, 85.1937, 86.3825, 87.4362, 88.3587, 89.1419, 89.7901, 90.3033, 90.6815, 90.9248, 91.0331, 91.0063, 90.8436, 90.4817],\n", " index=[40.82, 44.20, 47.58, 50.97, 54.36, 57.75, 61.13, 64.51, 67.89, 71.27, 74.66, 78.04, 81.44, 85.40],\n", " name=60)])\n", " \n", " rsv1.connect_to(plant1)\n", " plant1.connect_to(rsv2)\n", " rsv2.connect_to(plant2)\n", " \n", " rsv1.start_head.set(900)\n", " rsv2.start_head.set(670) \n", " rsv1.energy_value_input.set(30)\n", " rsv2.energy_value_input.set(10)\n", " rsv2.inflow.set(pd.Series([60], [starttime]))\n", " \n", " da = shop.model.market.add_object('Day_ahead')\n", " da.sale_price.set(pd.DataFrame([32.992,31.122,29.312,28.072,30.012,33.362,42.682,74.822,77.732,62.332,55.892,46.962,42.582,40.942,39.212,39.142,41.672,46.922,37.102,32.992,31.272,29.752,28.782,28.082,27.242,26.622,25.732,25.392,25.992,27.402,28.942,32.182,33.082,32.342,30.912,30.162,30.062,29.562,29.462,29.512,29.672,30.072,29.552,28.862,28.412,28.072,27.162,25.502,26.192,25.222,24.052,23.892,23.682,26.092,28.202,30.902,31.572,31.462,31.172,30.912,30.572,30.602,30.632,31.062,32.082,36.262,34.472,32.182,31.492,30.732,29.712,28.982], \n", " index=[starttime + pd.Timedelta(hours=i) for i in range(0,72)]))\n", " da.max_sale.set(pd.Series([9999], [starttime]))\n", " da.buy_price.set(da.sale_price.get()+0.002)\n", " da.max_buy.set(pd.Series([9999], [starttime]))\n", "\n", "def run_model(shop):\n", " shop.start_sim([], ['5'])\n", " shop.set_code(['incremental'], [])\n", " shop.start_sim([], ['3'])\n", "\n" ] } ], "source": [ "with open('multi_price_bid_matrix_model.py', 'r') as f:\n", " print(f.read())" ] } ], "metadata": { "jupytext": { "text_representation": { "extension": ".md", "format_name": "myst", "format_version": 0.13, "jupytext_version": "1.13.8" } }, "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.13.13" }, "source_map": [ 14, 24, 28, 32, 40, 49, 53, 59, 63, 67, 74, 78, 86, 90, 97, 101, 105, 113, 117, 122, 129, 134, 143, 147, 159, 163, 170, 174, 181, 185, 189, 213, 217, 221, 241, 245, 255, 259, 275, 279, 286, 290, 300, 304, 308, 322, 326, 330, 337, 341, 345, 360, 364, 374, 381, 385, 389, 396, 404, 411, 415, 420 ] }, "nbformat": 4, "nbformat_minor": 5 }