{ "cells": [ { "cell_type": "markdown", "id": "92475c69", "metadata": {}, "source": [ "# Python API Example - Gas Transit Costs\n", "\n", "This guide is designed to provide an example of how to access the Spark API:\n", "- The path to your client credentials is the only input needed to run this script (just before Section 2)\n", "- This script has been designed to display the raw outputs of requests from the API, and then shows you how to format those outputs to enable easy reading and analysis\n", "- This script can be copied and pasted by customers for quick use of the API\n", "\n", "__N.B. This guide is just for Gas Transit data. If you're looking for other API data products (such as contract prices, Freight routes or Netbacks), please refer to their according code example files.__ " ] }, { "cell_type": "markdown", "id": "fc7443de", "metadata": {}, "source": [ "### Have any questions?\n", "\n", "If you have any questions regarding our API, or need help accessing specific datasets, please contact us at:\n", "\n", "__data@sparkcommodities.com__\n", "\n", "or refer to our API website for more information about this endpoint: https://www.sparkcommodities.com/api/request/access.html" ] }, { "cell_type": "markdown", "id": "c5716130", "metadata": {}, "source": [ "## 1. Importing Data\n", "\n", "Here we define the functions that allow us to retrieve the valid credentials to access the Spark API.\n", "\n", "This section can remain unchanged for most Spark API users." ] }, { "cell_type": "code", "execution_count": 60, "id": "fe759439", "metadata": {}, "outputs": [], "source": [ "import json\n", "import os\n", "import sys\n", "import numpy as np\n", "from base64 import b64encode\n", "from pprint import pprint\n", "from urllib.parse import urljoin\n", "import pandas as pd\n", "\n", "\n", "try:\n", " from urllib import request, parse\n", " from urllib.error import HTTPError\n", "except ImportError:\n", " raise RuntimeError(\"Python 3 required\")\n", "\n", "# Defining functions for API request\n", "\n", "API_BASE_URL = \"https://api.sparkcommodities.com\"\n", "\n", "\n", "def retrieve_credentials(file_path=None):\n", " \"\"\"\n", " Find credentials either by reading the client_credentials file or reading\n", " environment variables\n", " \"\"\"\n", " if file_path is None:\n", " client_id = os.getenv(\"SPARK_CLIENT_ID\")\n", " client_secret = os.getenv(\"SPARK_CLIENT_SECRET\")\n", " if not client_id or not client_secret:\n", " raise RuntimeError(\n", " \"SPARK_CLIENT_ID and SPARK_CLIENT_SECRET environment vars required\"\n", " )\n", " else:\n", " # Parse the file\n", " if not os.path.isfile(file_path):\n", " raise RuntimeError(\"The file {} doesn't exist\".format(file_path))\n", "\n", " with open(file_path) as fp:\n", " lines = [l.replace(\"\\n\", \"\") for l in fp.readlines()]\n", "\n", " if lines[0] in (\"clientId,clientSecret\", \"client_id,client_secret\"):\n", " client_id, client_secret = lines[1].split(\",\")\n", " else:\n", " print(\"First line read: '{}'\".format(lines[0]))\n", " raise RuntimeError(\n", " \"The specified file {} doesn't look like to be a Spark API client \"\n", " \"credentials file\".format(file_path)\n", " )\n", "\n", " print(\">>>> Found credentials!\")\n", " print(\n", " \">>>> Client_id={}, client_secret={}****\".format(client_id, client_secret[:5])\n", " )\n", "\n", " return client_id, client_secret\n", "\n", "\n", "def do_api_post_query(uri, body, headers):\n", " \"\"\"\n", " OAuth2 authentication requires a POST request with client credentials before accessing the API. \n", " This POST request will return an Access Token which will be used for the API GET request.\n", " \"\"\"\n", " url = urljoin(API_BASE_URL, uri)\n", "\n", " data = json.dumps(body).encode(\"utf-8\")\n", "\n", " # HTTP POST request\n", " req = request.Request(url, data=data, headers=headers)\n", " try:\n", " response = request.urlopen(req)\n", " except HTTPError as e:\n", " print(\"HTTP Error: \", e.code)\n", " print(e.read())\n", " sys.exit(1)\n", "\n", " resp_content = response.read()\n", "\n", " # The server must return HTTP 201. Raise an error if this is not the case\n", " assert response.status == 201, resp_content\n", "\n", " # The server returned a JSON response\n", " content = json.loads(resp_content)\n", "\n", " return content\n", "\n", "\n", "def do_api_get_query(uri, access_token, format='json'):\n", " \"\"\"\n", " After receiving an Access Token, we can request information from the API.\n", " \"\"\"\n", " url = urljoin(API_BASE_URL, uri)\n", " print(url)\n", "\n", " if format == 'json':\n", " headers = {\n", " \"Authorization\": \"Bearer {}\".format(access_token),\n", " \"Accept\": \"application/json\",\n", " }\n", " elif format == 'csv':\n", " headers = {\n", " \"Authorization\": \"Bearer {}\".format(access_token),\n", " \"Accept\": \"text/csv\"\n", " }\n", "\n", " # HTTP POST request\n", " req = request.Request(url, headers=headers)\n", " try:\n", " response = request.urlopen(req)\n", " except HTTPError as e:\n", " print(\"HTTP Error: \", e.code)\n", " print(e.read())\n", " sys.exit(1)\n", "\n", " resp_content = response.read()\n", " status = response.status\n", " print(status)\n", "\n", " # The server must return HTTP 201. Raise an error if this is not the case\n", " assert response.status == 200, resp_content\n", "\n", " # Storing response based on requested format\n", " if format == 'json':\n", " content = json.loads(resp_content)\n", " elif format == 'csv':\n", " content = resp_content\n", "\n", " return content\n", "\n", "\n", "def get_access_token(client_id, client_secret):\n", " \"\"\"\n", " Get a new access_token. Access tokens are the thing that applications use to make\n", " API requests. Access tokens must be kept confidential in storage.\n", "\n", " # Procedure:\n", "\n", " Do a POST query with `grantType` and `scopes` in the body. A basic authorization\n", " HTTP header is required. The \"Basic\" HTTP authentication scheme is defined in\n", " RFC 7617, which transmits credentials as `clientId:clientSecret` pairs, encoded\n", " using base64.\n", " \"\"\"\n", "\n", " # Note: for the sake of this example, we choose to use the Python urllib from the\n", " # standard lib. One should consider using https://requests.readthedocs.io/\n", "\n", " payload = \"{}:{}\".format(client_id, client_secret).encode()\n", " headers = {\n", " \"Authorization\": b64encode(payload).decode(),\n", " \"Accept\": \"application/json\",\n", " \"Content-Type\": \"application/json\",\n", " }\n", " body = {\n", " \"grantType\": \"clientCredentials\",\n", " \"scopes\": \"read:netbacks,read:access,read:prices,read:routes\",\n", " }\n", "\n", " content = do_api_post_query(uri=\"/oauth/token/\", body=body, headers=headers)\n", "\n", " print(\n", " \">>>> Successfully fetched an access token {}****, valid {} seconds.\".format(\n", " content[\"accessToken\"][:5], content[\"expiresIn\"]\n", " )\n", " )\n", "\n", " return content[\"accessToken\"]" ] }, { "cell_type": "markdown", "id": "a51e1ef0", "metadata": {}, "source": [ "## N.B. Credentials\n", "\n", "Here we call the above functions, and input the file path to our credentials.\n", "\n", "N.B. You must have downloaded your client credentials CSV file before proceeding. Please refer to the API documentation if you have not dowloaded them already. Instructions for downloading your credentials can be found here:\n", "\n", "https://www.sparkcommodities.com/api/introduction.html\n" ] }, { "cell_type": "code", "execution_count": null, "id": "0817250f", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ ">>>> Found credentials!\n", ">>>> Client_id=01c23590-ef6c-4a36-8237-c89c3f1a3b2a, client_secret=80763****\n", ">>>> Successfully fetched an access token eyJhb****, valid 604799 seconds.\n" ] } ], "source": [ "# Insert file path to your client credentials here\n", "client_id, client_secret = retrieve_credentials(file_path=\"/tmp/client_credentials.csv\")\n", "\n", "# Authenticate:\n", "access_token = get_access_token(client_id, client_secret)\n" ] }, { "cell_type": "markdown", "id": "bf7d9183", "metadata": {}, "source": [ "# 2. Reference Data\n", "\n", "Here we fetch the relevant reference data for the endpoint - this is a list of all available transit route options available on the endpoint. Countries for each hub are also included for easy reference." ] }, { "cell_type": "code", "execution_count": 62, "id": "71c883c6", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "v1.0/gas/transit/reference-data/\n", "https://api.sparkcommodities.com/v1.0/gas/transit/reference-data/\n", "200\n" ] }, { "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", "
OriginDestinationOriginCountryDestinationCountry
0ttfnbpNetherlandsUnited Kingdom
1nbpttfUnited KingdomNetherlands
2nbpztpUnited KingdomBelgium
3ztpnbpBelgiumUnited Kingdom
4ttftheNetherlandsGermany
...............
66uavtpmgpUkraineHungary
67rovtpuavtpRomaniaUkraine
68uavtprovtpUkraineRomania
69pvbptvtpSpainPortugal
70ptvtppvbPortugalSpain
\n", "

71 rows × 4 columns

\n", "
" ], "text/plain": [ " Origin Destination OriginCountry DestinationCountry\n", "0 ttf nbp Netherlands United Kingdom\n", "1 nbp ttf United Kingdom Netherlands\n", "2 nbp ztp United Kingdom Belgium\n", "3 ztp nbp Belgium United Kingdom\n", "4 ttf the Netherlands Germany\n", ".. ... ... ... ...\n", "66 uavtp mgp Ukraine Hungary\n", "67 rovtp uavtp Romania Ukraine\n", "68 uavtp rovtp Ukraine Romania\n", "69 pvb ptvtp Spain Portugal\n", "70 ptvtp pvb Portugal Spain\n", "\n", "[71 rows x 4 columns]" ] }, "execution_count": 62, "metadata": {}, "output_type": "execute_result" } ], "source": [ "from io import StringIO\n", "\n", "## Defining the function\n", "\n", "def fetch_ref_data(access_token, format='json'):\n", "\n", " uri=\"v1.0/gas/transit/reference-data/\"\n", " print(uri)\n", " \n", " content = do_api_get_query(\n", " uri=uri, access_token=access_token, format=format\n", " )\n", " \n", " if format == 'json':\n", " my_dict = content\n", " elif format == 'csv':\n", " # if there's no data to show, returns raw response (empty string) and \"No Data to Show\" message\n", " if len(content) == 0:\n", " my_dict = content\n", " print('No Data to Show')\n", " else:\n", " my_dict = content.decode('utf-8')\n", " my_dict = pd.read_csv(StringIO(my_dict)) # automatically converting into a Pandas DataFrame when choosing CSV format\n", " \n", " return my_dict\n", "\n", "ref_df = fetch_ref_data(access_token, format='csv')\n", "ref_df" ] }, { "cell_type": "markdown", "id": "e1feef7f", "metadata": {}, "source": [ "# 3. Calling Transit Costs data\n", "\n", "Here we define a function to fetch the Gas Transit costs dataset. The available parameters can be found on our API docs:\n", "\n", "https://www.sparkcommodities.com/api/gas/transit.html\n", "\n", "__N.B.:__ This endpoint provides the option to return a JSON or CSV formatted response. Metadata is only available in the JSON format." ] }, { "cell_type": "code", "execution_count": 63, "id": "438529d1", "metadata": {}, "outputs": [], "source": [ "\n", "def fetch_transit_prices(access_token, unit, origin=None, destination=None, start=None, end=None, limit=None, offset=None, \n", " booking_type=None, product_type=None, format='json'):\n", " \n", " query_params = \"?unit={}\".format(unit)\n", "\n", " if origin is not None:\n", " query_params += \"&origin={}\".format(origin)\n", "\n", " if destination is not None:\n", " query_params += \"&destination={}\".format(destination)\n", "\n", " if start is not None:\n", " query_params += \"&start={}\".format(start)\n", " if end is not None:\n", " query_params += \"&end={}\".format(end)\n", " \n", " if limit is not None:\n", " query_params += \"&limit={}\".format(limit)\n", " if offset is not None:\n", " query_params += \"&offset={}\".format(offset)\n", "\n", " if booking_type is not None: \n", " query_params += \"&type={}\".format(booking_type)\n", " \n", " if product_type is not None:\n", " query_params += \"&product={}\".format(product_type)\n", "\n", " content = do_api_get_query(\n", " uri=\"/v1.0/gas/transit/costs/{}\".format(query_params),\n", " access_token=access_token, format=format\n", " )\n", "\n", " if format == 'json':\n", " data = content\n", " elif format == 'csv':\n", " # if there's no data to show, returns raw response (empty string) and \"No Data to Show\" message\n", " if len(content) == 0:\n", " data = content\n", " print('No Data to Show')\n", " else:\n", " data = content.decode('utf-8')\n", " data = pd.read_csv(StringIO(data)) # automatically converting into a Pandas DataFrame when choosing CSV format\n", "\n", " return data" ] }, { "cell_type": "markdown", "id": "5b169c31", "metadata": {}, "source": [ "#### JSON Response\n", "\n", "__N.B.__ The JSON response has a limited historical API call range of approximately 10 days (with no filter params applied) due to API dataset size limitations. Please use the CSV format to call up to 1 year's worth of historical data" ] }, { "cell_type": "code", "execution_count": null, "id": "17b9e8b5", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "https://api.sparkcommodities.com/v1.0/gas/transit/costs/?unit=eur-per-mwh&start=2026-05-13&end=2026-05-27\n", "200\n" ] }, { "data": { "text/plain": [ "{'errors': [],\n", " 'data': [{'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.453',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.406',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.859',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '0.979',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.453',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.406',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.859',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '0.979',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.453',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.406',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.859',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '0.979',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.453',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.406',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.859',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '0.979',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.453',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.406',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.859',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '0.979',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.453',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.406',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.859',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '0.979',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.453',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.406',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.859',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '0.979',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.453',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.406',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.859',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '0.979',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.453',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.406',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.859',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '0.979',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.453',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.406',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.859',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '0.979',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.453',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.406',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.859',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '0.979',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.453',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.406',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.859',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '0.979',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.906',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.533',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.439',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.559',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.906',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.637',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.543',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.663',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.906',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.637',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.543',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.663',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.906',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.652',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.558',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.678',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.906',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.755',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.661',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.781',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.906',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.874',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.780',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.900',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.906',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.155',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.061',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.181',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.906',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.140',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.046',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.166',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.906',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.888',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.794',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.914',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.906',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.874',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.780',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.900',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.906',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.696',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.602',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.722',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.906',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.533',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.439',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.559',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.680',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.325',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.005',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.125',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.680',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.399',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.079',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.199',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.680',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.402',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.082',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.202',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.680',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.398',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.078',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.198',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.680',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.477',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.157',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.277',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.680',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.528',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.208',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.328',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.680',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.728',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.408',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.528',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.680',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.715',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.395',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.515',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.680',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.505',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.185',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.305',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.680',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.553',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.233',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.353',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.680',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.423',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.103',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.223',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.680',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.338',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.018',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.138',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.566',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.332',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.898',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.018',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.566',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.362',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.928',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.048',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.566',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.362',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.928',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.048',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.566',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.362',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.928',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.048',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.566',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.523',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.089',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.209',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.566',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.523',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.089',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.209',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.566',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.523',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.089',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.209',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.566',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.546',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.112',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.232',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.566',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.546',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.112',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.232',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.566',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.546',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.112',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.232',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.566',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.332',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.898',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.018',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.566',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.332',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.898',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.018',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.453',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.406',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.859',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '0.979',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.453',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.406',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.859',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '0.979',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.453',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.406',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.859',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '0.979',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.453',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.406',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.859',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '0.979',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.453',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.406',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.859',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '0.979',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.453',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.406',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.859',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '0.979',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.453',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.406',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.859',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '0.979',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.453',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.406',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.859',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '0.979',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.453',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.406',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.859',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '0.979',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.453',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.406',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.859',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '0.979',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.453',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.406',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.859',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '0.979',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.453',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.406',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.859',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '0.979',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.906',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.533',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.439',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.559',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.906',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.637',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.543',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.663',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.906',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.637',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.543',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.663',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.906',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.652',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.558',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.678',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.906',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.755',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.661',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.781',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.906',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.874',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.780',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.900',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.906',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.155',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.061',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.181',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.906',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.140',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.046',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.166',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.906',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.888',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.794',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.914',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.906',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.874',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.780',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.900',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.906',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.696',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.602',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.722',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.906',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.533',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.439',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.559',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.680',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.325',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.005',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.125',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.680',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.399',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.079',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.199',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.680',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.402',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.082',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.202',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.680',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.398',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.078',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.198',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.680',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.477',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.157',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.277',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.680',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.528',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.208',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.328',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.680',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.728',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.408',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.528',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.680',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.715',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.395',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.515',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.680',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.505',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.185',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.305',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.680',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.553',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.233',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.353',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.680',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.423',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.103',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.223',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.680',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.338',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.018',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.138',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.566',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.332',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.898',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.018',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.566',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.362',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.928',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.048',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.566',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.362',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.928',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.048',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.566',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.362',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.928',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.048',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.566',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.523',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.089',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.209',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.566',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.523',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.089',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.209',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.566',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.523',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.089',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.209',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.566',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.546',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.112',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.232',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.566',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.546',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.112',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.232',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.566',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.546',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.112',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.232',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.566',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.332',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.898',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.018',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'mgp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.566',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.332',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.898',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.018',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '1.201',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.431',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.632',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.752',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '1.201',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.431',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.632',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.752',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '1.201',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.431',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.632',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.752',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '1.201',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.431',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.632',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.752',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '1.201',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.431',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.632',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.752',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '1.201',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.431',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.632',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.752',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '1.201',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.431',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.632',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.752',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '1.201',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.431',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.632',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.752',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '1.201',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.431',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.632',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.752',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '1.201',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.431',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.632',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.752',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '1.201',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.431',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.632',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.752',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '1.201',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.431',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.632',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.752',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '2.402',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.647',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.049',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '3.169',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '2.402',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.647',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.049',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '3.169',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '2.402',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.647',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.049',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '3.169',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '2.402',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.647',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.049',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '3.169',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '2.402',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.647',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.049',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '3.169',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '2.402',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.647',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.049',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '3.169',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '2.402',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.647',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.049',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '3.169',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '2.402',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.647',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.049',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '3.169',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '2.402',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.647',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.049',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '3.169',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '2.402',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.647',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.049',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '3.169',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '2.402',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.647',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.049',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '3.169',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '2.402',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.647',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.049',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '3.169',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '1.801',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.560',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.361',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.481',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '1.801',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.560',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.361',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.481',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '1.801',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.560',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.361',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.481',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '1.801',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.560',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.361',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.481',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '1.801',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.560',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.361',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.481',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '1.801',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.560',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.361',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.481',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '1.801',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.560',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.361',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.481',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '1.801',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.560',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.361',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.481',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '1.801',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.560',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.361',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.481',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '1.801',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.560',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.361',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.481',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '1.801',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.560',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.361',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.481',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '1.801',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.560',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.361',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.481',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '1.501',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.517',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.018',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.138',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '1.501',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.517',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.018',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.138',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '1.501',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.517',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.018',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.138',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '1.501',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.517',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.018',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.138',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '1.501',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.517',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.018',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.138',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '1.501',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.517',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.018',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.138',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '1.501',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.517',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.018',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.138',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '1.501',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.517',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.018',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.138',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '1.501',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.517',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.018',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.138',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '1.501',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.517',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.018',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.138',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '1.501',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.517',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.018',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.138',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '1.501',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.517',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.018',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.138',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '1.201',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.366',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.567',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.687',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '1.201',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.366',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.567',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.687',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '1.201',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.366',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.567',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.687',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '1.201',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.366',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.567',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.687',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '1.201',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.366',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.567',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.687',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '1.201',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.366',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.567',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.687',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '1.201',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.366',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.567',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.687',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '1.201',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.366',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.567',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.687',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '1.201',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.366',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.567',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.687',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '1.201',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.366',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.567',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.687',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '1.201',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.366',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.567',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.687',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '1.201',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.366',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.567',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.687',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '2.402',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.550',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.952',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '3.072',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '2.402',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.550',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.952',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '3.072',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '2.402',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.550',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.952',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '3.072',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '2.402',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.550',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.952',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '3.072',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '2.402',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.550',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.952',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '3.072',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '2.402',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.550',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.952',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '3.072',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '2.402',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.550',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.952',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '3.072',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '2.402',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.550',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.952',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '3.072',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '2.402',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.550',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.952',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '3.072',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '2.402',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.550',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.952',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '3.072',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '2.402',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.550',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.952',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '3.072',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '2.402',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.550',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.952',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '3.072',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '1.801',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.476',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.277',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.397',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '1.801',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.476',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.277',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.397',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '1.801',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.476',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.277',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.397',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '1.801',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.476',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.277',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.397',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '1.801',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.476',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.277',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.397',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '1.801',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.476',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.277',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.397',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '1.801',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.476',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.277',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.397',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '1.801',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.476',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.277',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.397',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '1.801',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.476',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.277',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.397',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '1.801',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.476',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.277',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.397',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '1.801',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.476',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.277',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.397',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '1.801',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.476',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.277',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.397',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '1.501',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.440',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.941',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.061',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '1.501',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.440',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.941',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.061',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '1.501',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.440',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.941',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.061',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '1.501',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.440',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.941',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.061',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '1.501',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.440',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.941',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.061',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '1.501',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.440',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.941',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.061',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '1.501',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.440',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.941',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.061',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '1.501',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.440',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.941',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.061',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '1.501',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.440',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.941',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.061',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '1.501',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.440',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.941',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.061',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '1.501',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.440',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.941',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.061',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'psv',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '1.501',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.440',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.941',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.061',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.394',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.257',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.377',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.394',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.257',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.377',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.394',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.257',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.377',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.394',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.257',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.377',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.394',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.257',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.377',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.394',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.257',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.377',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.394',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.257',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.377',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.266',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.386',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.266',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.386',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.266',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.386',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.266',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.386',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.266',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.386',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.677',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.403',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.523',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.653',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.379',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.499',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.612',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.338',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.458',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.771',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.497',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.617',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.829',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.555',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.675',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.560',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.286',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '3.406',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.894',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.620',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '3.740',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.129',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.249',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.129',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.249',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.129',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.249',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.129',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.249',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.129',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.249',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.357',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.652',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.772',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.344',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.639',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.759',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.322',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.617',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.737',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.406',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.701',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.821',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.437',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.732',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.852',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.823',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.118',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.238',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.999',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.294',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.414',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.698',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.818',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.698',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.818',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.698',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.818',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.698',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.818',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.698',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.818',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.433',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.512',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.632',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.370',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.449',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.569',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.370',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.449',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.569',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.370',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.449',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.569',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.679',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.758',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.878',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.679',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.758',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.878',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.679',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.758',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.878',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.482',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.602',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.482',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.602',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.482',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.602',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.482',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.602',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.482',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.602',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.394',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.257',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.377',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.394',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.257',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.377',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.394',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.257',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.377',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.394',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.257',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.377',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.394',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.257',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.377',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.394',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.257',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.377',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.394',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.257',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.377',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.266',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.386',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.266',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.386',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.266',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.386',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.266',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.386',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.266',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.386',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.677',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.403',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.523',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.653',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.379',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.499',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.612',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.338',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.458',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.771',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.497',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.617',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.829',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.555',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.675',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.560',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.286',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '3.406',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.894',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.620',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '3.740',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.129',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.249',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.129',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.249',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.129',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.249',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.129',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.249',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.129',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.249',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.357',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.652',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.772',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.344',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.639',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.759',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.322',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.617',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.737',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.406',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.701',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.821',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.437',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.732',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.852',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.823',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.118',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.238',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.999',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.294',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '2.414',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.698',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.818',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.698',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.818',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.698',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.818',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.698',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.818',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.698',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.818',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.433',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.512',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.632',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.370',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.449',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.569',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.370',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.449',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.569',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.370',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.449',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.569',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.679',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.758',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.878',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.679',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.758',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.878',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.679',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.758',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.878',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.482',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.602',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.482',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.602',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.482',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.602',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.482',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.602',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'sivtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.403',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.482',\n", " 'totalVariable': '0.120',\n", " 'totalTransitCost': '1.602',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.427',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.100',\n", " 'entryVariable': '0.425',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.527',\n", " 'totalVariable': '0.545',\n", " 'totalTransitCost': '2.072',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.427',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.100',\n", " 'entryVariable': '0.438',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.527',\n", " 'totalVariable': '0.558',\n", " 'totalTransitCost': '2.085',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.427',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.100',\n", " 'entryVariable': '0.435',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.527',\n", " 'totalVariable': '0.555',\n", " 'totalTransitCost': '2.082',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.427',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.100',\n", " 'entryVariable': '0.433',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.527',\n", " 'totalVariable': '0.553',\n", " 'totalTransitCost': '2.080',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.427',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.100',\n", " 'entryVariable': '0.430',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.527',\n", " 'totalVariable': '0.550',\n", " 'totalTransitCost': '2.077',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.427',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.100',\n", " 'entryVariable': '0.422',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.527',\n", " 'totalVariable': '0.542',\n", " 'totalTransitCost': '2.069',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.427',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.100',\n", " 'entryVariable': '0.423',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.527',\n", " 'totalVariable': '0.543',\n", " 'totalTransitCost': '2.070',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.427',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.100',\n", " 'entryVariable': '0.421',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.527',\n", " 'totalVariable': '0.541',\n", " 'totalTransitCost': '2.068',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.427',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.100',\n", " 'entryVariable': '0.414',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.527',\n", " 'totalVariable': '0.534',\n", " 'totalTransitCost': '2.061',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.427',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.100',\n", " 'entryVariable': '0.401',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.527',\n", " 'totalVariable': '0.521',\n", " 'totalTransitCost': '2.048',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.427',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.100',\n", " 'entryVariable': '0.362',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.527',\n", " 'totalVariable': '0.482',\n", " 'totalTransitCost': '2.009',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.427',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.100',\n", " 'entryVariable': '0.340',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.527',\n", " 'totalVariable': '0.460',\n", " 'totalTransitCost': '1.987',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.854',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '3.292',\n", " 'entryVariable': '0.425',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.146',\n", " 'totalVariable': '0.545',\n", " 'totalTransitCost': '4.691',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.854',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '3.292',\n", " 'entryVariable': '0.438',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.146',\n", " 'totalVariable': '0.558',\n", " 'totalTransitCost': '4.704',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.854',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '3.292',\n", " 'entryVariable': '0.435',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.146',\n", " 'totalVariable': '0.555',\n", " 'totalTransitCost': '4.701',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.854',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '3.292',\n", " 'entryVariable': '0.433',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.146',\n", " 'totalVariable': '0.553',\n", " 'totalTransitCost': '4.699',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.854',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '3.292',\n", " 'entryVariable': '0.430',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.146',\n", " 'totalVariable': '0.550',\n", " 'totalTransitCost': '4.696',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.854',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '3.292',\n", " 'entryVariable': '0.422',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.146',\n", " 'totalVariable': '0.542',\n", " 'totalTransitCost': '4.688',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.854',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '3.292',\n", " 'entryVariable': '0.423',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.146',\n", " 'totalVariable': '0.543',\n", " 'totalTransitCost': '4.689',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.854',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '3.292',\n", " 'entryVariable': '0.421',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.146',\n", " 'totalVariable': '0.541',\n", " 'totalTransitCost': '4.687',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.854',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '3.292',\n", " 'entryVariable': '0.414',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.146',\n", " 'totalVariable': '0.534',\n", " 'totalTransitCost': '4.680',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.854',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '3.292',\n", " 'entryVariable': '0.401',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.146',\n", " 'totalVariable': '0.521',\n", " 'totalTransitCost': '4.667',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.854',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '3.292',\n", " 'entryVariable': '0.362',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.146',\n", " 'totalVariable': '0.482',\n", " 'totalTransitCost': '4.628',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.854',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '3.292',\n", " 'entryVariable': '0.340',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.146',\n", " 'totalVariable': '0.460',\n", " 'totalTransitCost': '4.606',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.640',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.425',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.290',\n", " 'totalVariable': '0.545',\n", " 'totalTransitCost': '2.835',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.640',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.438',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.290',\n", " 'totalVariable': '0.558',\n", " 'totalTransitCost': '2.848',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.640',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.435',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.290',\n", " 'totalVariable': '0.555',\n", " 'totalTransitCost': '2.845',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.640',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.433',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.290',\n", " 'totalVariable': '0.553',\n", " 'totalTransitCost': '2.843',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.640',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.430',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.290',\n", " 'totalVariable': '0.550',\n", " 'totalTransitCost': '2.840',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.640',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.422',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.290',\n", " 'totalVariable': '0.542',\n", " 'totalTransitCost': '2.832',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.640',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.423',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.290',\n", " 'totalVariable': '0.543',\n", " 'totalTransitCost': '2.833',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.640',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.421',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.290',\n", " 'totalVariable': '0.541',\n", " 'totalTransitCost': '2.831',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.640',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.414',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.290',\n", " 'totalVariable': '0.534',\n", " 'totalTransitCost': '2.824',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.640',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.401',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.290',\n", " 'totalVariable': '0.521',\n", " 'totalTransitCost': '2.811',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.640',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.362',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.290',\n", " 'totalVariable': '0.482',\n", " 'totalTransitCost': '2.772',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.640',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.340',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.290',\n", " 'totalVariable': '0.460',\n", " 'totalTransitCost': '2.750',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.534',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.425',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.184',\n", " 'totalVariable': '0.545',\n", " 'totalTransitCost': '2.729',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.534',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.438',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.184',\n", " 'totalVariable': '0.558',\n", " 'totalTransitCost': '2.742',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.534',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.435',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.184',\n", " 'totalVariable': '0.555',\n", " 'totalTransitCost': '2.739',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.534',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.433',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.184',\n", " 'totalVariable': '0.553',\n", " 'totalTransitCost': '2.737',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.534',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.430',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.184',\n", " 'totalVariable': '0.550',\n", " 'totalTransitCost': '2.734',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.534',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.422',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.184',\n", " 'totalVariable': '0.542',\n", " 'totalTransitCost': '2.726',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.534',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.423',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.184',\n", " 'totalVariable': '0.543',\n", " 'totalTransitCost': '2.727',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.534',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.421',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.184',\n", " 'totalVariable': '0.541',\n", " 'totalTransitCost': '2.725',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.534',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.414',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.184',\n", " 'totalVariable': '0.534',\n", " 'totalTransitCost': '2.718',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.534',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.401',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.184',\n", " 'totalVariable': '0.521',\n", " 'totalTransitCost': '2.705',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.534',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.362',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.184',\n", " 'totalVariable': '0.482',\n", " 'totalTransitCost': '2.666',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.534',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.340',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.184',\n", " 'totalVariable': '0.460',\n", " 'totalTransitCost': '2.644',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.427',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.097',\n", " 'entryVariable': '0.425',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.524',\n", " 'totalVariable': '0.545',\n", " 'totalTransitCost': '2.069',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.427',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.097',\n", " 'entryVariable': '0.438',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.524',\n", " 'totalVariable': '0.558',\n", " 'totalTransitCost': '2.082',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.427',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.097',\n", " 'entryVariable': '0.435',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.524',\n", " 'totalVariable': '0.555',\n", " 'totalTransitCost': '2.079',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.427',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.097',\n", " 'entryVariable': '0.433',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.524',\n", " 'totalVariable': '0.553',\n", " 'totalTransitCost': '2.077',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.427',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.097',\n", " 'entryVariable': '0.430',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.524',\n", " 'totalVariable': '0.550',\n", " 'totalTransitCost': '2.074',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.427',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.097',\n", " 'entryVariable': '0.422',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.524',\n", " 'totalVariable': '0.542',\n", " 'totalTransitCost': '2.066',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.427',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.097',\n", " 'entryVariable': '0.423',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.524',\n", " 'totalVariable': '0.543',\n", " 'totalTransitCost': '2.067',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.427',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.097',\n", " 'entryVariable': '0.421',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.524',\n", " 'totalVariable': '0.541',\n", " 'totalTransitCost': '2.065',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.427',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.097',\n", " 'entryVariable': '0.414',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.524',\n", " 'totalVariable': '0.534',\n", " 'totalTransitCost': '2.058',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.427',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.097',\n", " 'entryVariable': '0.401',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.524',\n", " 'totalVariable': '0.521',\n", " 'totalTransitCost': '2.045',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.427',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.097',\n", " 'entryVariable': '0.362',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.524',\n", " 'totalVariable': '0.482',\n", " 'totalTransitCost': '2.006',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.427',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.097',\n", " 'entryVariable': '0.340',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.524',\n", " 'totalVariable': '0.460',\n", " 'totalTransitCost': '1.984',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.854',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '3.283',\n", " 'entryVariable': '0.425',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.137',\n", " 'totalVariable': '0.545',\n", " 'totalTransitCost': '4.682',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.854',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '3.283',\n", " 'entryVariable': '0.438',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.137',\n", " 'totalVariable': '0.558',\n", " 'totalTransitCost': '4.695',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.854',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '3.283',\n", " 'entryVariable': '0.435',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.137',\n", " 'totalVariable': '0.555',\n", " 'totalTransitCost': '4.692',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.854',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '3.283',\n", " 'entryVariable': '0.433',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.137',\n", " 'totalVariable': '0.553',\n", " 'totalTransitCost': '4.690',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.854',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '3.283',\n", " 'entryVariable': '0.430',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.137',\n", " 'totalVariable': '0.550',\n", " 'totalTransitCost': '4.687',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.854',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '3.283',\n", " 'entryVariable': '0.422',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.137',\n", " 'totalVariable': '0.542',\n", " 'totalTransitCost': '4.679',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.854',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '3.283',\n", " 'entryVariable': '0.423',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.137',\n", " 'totalVariable': '0.543',\n", " 'totalTransitCost': '4.680',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.854',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '3.283',\n", " 'entryVariable': '0.421',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.137',\n", " 'totalVariable': '0.541',\n", " 'totalTransitCost': '4.678',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.854',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '3.283',\n", " 'entryVariable': '0.414',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.137',\n", " 'totalVariable': '0.534',\n", " 'totalTransitCost': '4.671',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.854',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '3.283',\n", " 'entryVariable': '0.401',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.137',\n", " 'totalVariable': '0.521',\n", " 'totalTransitCost': '4.658',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.854',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '3.283',\n", " 'entryVariable': '0.362',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.137',\n", " 'totalVariable': '0.482',\n", " 'totalTransitCost': '4.619',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.854',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '3.283',\n", " 'entryVariable': '0.340',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.137',\n", " 'totalVariable': '0.460',\n", " 'totalTransitCost': '4.597',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.640',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.425',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.285',\n", " 'totalVariable': '0.545',\n", " 'totalTransitCost': '2.830',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.640',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.438',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.285',\n", " 'totalVariable': '0.558',\n", " 'totalTransitCost': '2.843',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.640',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.435',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.285',\n", " 'totalVariable': '0.555',\n", " 'totalTransitCost': '2.840',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.640',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.433',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.285',\n", " 'totalVariable': '0.553',\n", " 'totalTransitCost': '2.838',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.640',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.430',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.285',\n", " 'totalVariable': '0.550',\n", " 'totalTransitCost': '2.835',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.640',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.422',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.285',\n", " 'totalVariable': '0.542',\n", " 'totalTransitCost': '2.827',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.640',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.423',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.285',\n", " 'totalVariable': '0.543',\n", " 'totalTransitCost': '2.828',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.640',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.421',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.285',\n", " 'totalVariable': '0.541',\n", " 'totalTransitCost': '2.826',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.640',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.414',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.285',\n", " 'totalVariable': '0.534',\n", " 'totalTransitCost': '2.819',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.640',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.401',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.285',\n", " 'totalVariable': '0.521',\n", " 'totalTransitCost': '2.806',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.640',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.362',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.285',\n", " 'totalVariable': '0.482',\n", " 'totalTransitCost': '2.767',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.640',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.340',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.285',\n", " 'totalVariable': '0.460',\n", " 'totalTransitCost': '2.745',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.534',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.425',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.179',\n", " 'totalVariable': '0.545',\n", " 'totalTransitCost': '2.724',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.534',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.438',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.179',\n", " 'totalVariable': '0.558',\n", " 'totalTransitCost': '2.737',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.534',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.435',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.179',\n", " 'totalVariable': '0.555',\n", " 'totalTransitCost': '2.734',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.534',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.433',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.179',\n", " 'totalVariable': '0.553',\n", " 'totalTransitCost': '2.732',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.534',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.430',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.179',\n", " 'totalVariable': '0.550',\n", " 'totalTransitCost': '2.729',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.534',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.422',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.179',\n", " 'totalVariable': '0.542',\n", " 'totalTransitCost': '2.721',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.534',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.423',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.179',\n", " 'totalVariable': '0.543',\n", " 'totalTransitCost': '2.722',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.534',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.421',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.179',\n", " 'totalVariable': '0.541',\n", " 'totalTransitCost': '2.720',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.534',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.414',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.179',\n", " 'totalVariable': '0.534',\n", " 'totalTransitCost': '2.713',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.534',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.401',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.179',\n", " 'totalVariable': '0.521',\n", " 'totalTransitCost': '2.700',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.534',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.362',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.179',\n", " 'totalVariable': '0.482',\n", " 'totalTransitCost': '2.661',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.534',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.340',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.179',\n", " 'totalVariable': '0.460',\n", " 'totalTransitCost': '2.639',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.806',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.669',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '1.969',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.806',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.669',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '1.969',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.806',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.669',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '1.969',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.806',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.669',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '1.969',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.806',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.669',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '1.969',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.806',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.669',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '1.969',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.806',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.669',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '1.969',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.806',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.669',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '1.969',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.806',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.669',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '1.969',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.806',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.669',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '1.969',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.806',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.669',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '1.969',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.806',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.669',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '1.969',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.128',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.854',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '3.154',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.128',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.854',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '3.154',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.128',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.854',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '3.154',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.128',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.854',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '3.154',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.128',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.854',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '3.154',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.128',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.854',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '3.154',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.128',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.854',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '3.154',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.128',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.854',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '3.154',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.128',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.854',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '3.154',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.128',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.854',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '3.154',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.128',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.854',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '3.154',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.128',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.854',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '3.154',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.007',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.302',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.602',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.007',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.302',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.602',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.007',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.302',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.602',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.007',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.302',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.602',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.007',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.302',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.602',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.007',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.302',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.602',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.007',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.302',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.602',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.007',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.302',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.602',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.007',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.302',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.602',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.007',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.302',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.602',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.007',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.302',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.602',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.007',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.302',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.602',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.887',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.966',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.266',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.887',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.966',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.266',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.887',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.966',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.266',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.887',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.966',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.266',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.887',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.966',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.266',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.887',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.966',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.266',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.887',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.966',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.266',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.887',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.966',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.266',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.887',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.966',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.266',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.887',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.966',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.266',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.887',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.966',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.266',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.887',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.966',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.266',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.725',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.588',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '1.888',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.725',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.588',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '1.888',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.725',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.588',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '1.888',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.725',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.588',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '1.888',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.725',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.588',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '1.888',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.725',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.588',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '1.888',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.725',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.588',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '1.888',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.725',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.588',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '1.888',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.725',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.588',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '1.888',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.725',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.588',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '1.888',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.725',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.588',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '1.888',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.863',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.725',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.588',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '1.888',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.015',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.741',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '3.041',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.015',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.741',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '3.041',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.015',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.741',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '3.041',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.015',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.741',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '3.041',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.015',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.741',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '3.041',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.015',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.741',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '3.041',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.015',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.741',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '3.041',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.015',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.741',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '3.041',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.015',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.741',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '3.041',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.015',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.741',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '3.041',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.015',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.741',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '3.041',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '1.726',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '1.015',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.741',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '3.041',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.907',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.202',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.502',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.907',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.202',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.502',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.907',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.202',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.502',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.907',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.202',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.502',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.907',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.202',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.502',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.907',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.202',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.502',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.907',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.202',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.502',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.907',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.202',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.502',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.907',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.202',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.502',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.907',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.202',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.502',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.907',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.202',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.502',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '1.295',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.907',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.202',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.502',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.798',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.877',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.177',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.798',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.877',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.177',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.798',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.877',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.177',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.798',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.877',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.177',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.798',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.877',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.177',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.798',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.877',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.177',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.798',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.877',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.177',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.798',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.877',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.177',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.798',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.877',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.177',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.798',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.877',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.177',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.798',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.877',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.177',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'atvtp',\n", " 'destination': 'the',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '1.079',\n", " 'exitVariable': '0.120',\n", " 'entryCapacity': '0.798',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.877',\n", " 'totalVariable': '0.300',\n", " 'totalTransitCost': '2.177',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.449',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.408',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.857',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '0.937',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.449',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.408',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.857',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '0.937',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.449',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.408',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.857',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '0.937',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.449',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.408',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.857',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '0.937',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.449',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.408',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.857',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '0.937',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.449',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.408',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.857',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '0.937',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.449',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.408',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.857',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '0.937',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.449',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.408',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.857',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '0.937',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.449',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.408',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.857',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '0.937',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.449',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.408',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.857',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '0.937',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.449',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.408',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.857',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '0.937',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.449',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.408',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.857',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '0.937',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.898',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.212',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.110',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.190',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.898',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.212',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.110',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.190',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.898',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.212',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.110',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.190',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.898',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.212',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.110',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.190',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.898',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.212',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.110',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.190',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.898',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.212',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.110',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.190',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.898',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.212',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.110',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.190',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.898',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.212',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.110',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.190',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.898',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.212',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.110',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.190',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.898',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.212',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.110',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.190',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.898',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.212',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.110',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.190',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.898',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.212',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.110',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.190',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.396',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.604',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.000',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.080',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.390',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.604',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.994',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.074',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.371',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.604',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.975',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.055',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.515',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.604',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.119',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.199',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.597',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.604',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.201',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.281',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.704',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.604',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.308',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.388',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.792',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.604',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.396',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.476',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.905',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.604',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.509',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.589',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.873',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.604',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.477',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.557',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.742',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.604',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.346',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.426',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.723',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.604',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.327',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.407',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.534',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.604',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.138',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.218',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.513',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.563',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.076',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.156',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.397',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.563',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.960',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.040',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.397',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.563',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.960',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.040',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.397',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.563',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.960',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.040',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.648',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.563',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.211',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.291',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.648',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.563',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.211',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.291',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.648',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.563',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.211',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.291',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.782',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.563',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.345',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.425',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.782',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.563',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.345',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.425',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.782',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.563',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.345',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.425',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.513',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.563',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.076',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.156',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.513',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.563',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.076',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.156',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.449',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.408',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.857',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '0.937',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.449',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.408',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.857',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '0.937',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.449',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.408',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.857',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '0.937',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.449',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.408',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.857',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '0.937',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.449',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.408',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.857',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '0.937',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.449',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.408',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.857',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '0.937',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.449',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.408',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.857',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '0.937',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.449',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.408',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.857',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '0.937',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.449',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.408',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.857',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '0.937',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.449',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.408',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.857',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '0.937',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.449',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.408',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.857',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '0.937',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.449',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.408',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.857',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '0.937',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.898',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.212',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.110',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.190',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.898',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.212',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.110',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.190',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.898',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.212',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.110',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.190',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.898',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.212',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.110',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.190',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.898',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.212',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.110',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.190',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.898',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.212',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.110',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.190',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.898',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.212',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.110',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.190',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.898',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.212',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.110',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.190',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.898',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.212',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.110',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.190',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.898',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.212',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.110',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.190',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.898',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.212',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.110',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.190',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.898',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.212',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.110',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.190',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.396',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.604',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.000',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.080',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.390',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.604',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.994',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.074',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.371',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.604',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.975',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.055',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.515',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.604',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.119',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.199',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.597',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.604',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.201',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.281',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.704',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.604',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.308',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.388',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.792',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.604',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.396',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.476',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.905',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.604',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.509',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.589',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.873',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.604',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.477',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.557',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.742',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.604',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.346',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.426',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.723',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.604',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.327',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.407',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.534',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.604',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.138',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.218',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.513',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.563',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.076',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.156',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.397',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.563',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.960',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.040',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.397',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.563',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.960',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.040',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.397',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.563',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '0.960',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.040',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.648',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.563',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.211',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.291',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.648',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.563',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.211',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.291',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.648',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.563',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.211',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.291',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.782',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.563',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.345',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.425',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.782',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.563',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.345',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.425',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.782',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.563',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.345',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.425',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.513',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.563',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.076',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.156',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'grvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.513',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.563',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.076',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.156',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.382',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.944',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.326',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.406',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.382',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.944',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.326',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.406',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.382',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.944',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.326',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.406',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.382',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.944',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.326',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.406',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.382',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.944',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.326',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.406',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.382',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.944',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.326',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.406',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.382',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.944',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.326',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.406',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.382',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.944',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.326',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.406',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.382',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.944',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.326',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.406',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.382',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.944',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.326',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.406',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.382',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.944',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.326',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.406',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.382',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.944',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.326',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.406',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.765',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '2.833',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.598',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.678',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.765',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '2.833',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.598',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.678',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.765',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '2.833',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.598',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.678',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.765',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '2.833',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.598',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.678',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.765',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '2.833',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.598',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.678',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.765',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '2.833',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.598',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.678',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.765',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '2.833',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.598',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.678',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.765',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '2.833',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.598',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.678',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.765',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '2.833',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.598',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.678',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.765',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '2.833',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.598',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.678',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.765',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '2.833',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.598',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.678',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.765',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '2.833',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.598',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.678',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.337',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.238',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.575',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.655',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.332',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.285',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.617',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.697',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.316',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.367',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.683',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.763',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.439',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.247',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.686',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.766',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.509',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.214',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.723',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.803',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.600',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.476',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.076',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.156',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.675',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.634',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.309',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.389',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.771',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.778',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.549',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.629',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.744',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.534',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.278',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.358',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.632',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.430',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.062',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.142',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.616',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.416',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.032',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.112',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.455',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.379',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.834',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.914',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.438',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.165',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.603',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.683',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.338',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.126',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.464',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.544',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.338',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.126',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.464',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.544',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.338',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.126',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.464',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.544',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.552',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.249',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.801',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.881',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.552',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.249',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.801',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.881',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.552',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.249',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.801',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.881',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.666',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.370',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.036',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.116',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.666',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.370',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.036',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.116',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.666',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.370',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.036',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.116',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.438',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.165',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.603',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.683',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.438',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.165',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.603',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.683',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.382',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.944',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.326',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.406',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.382',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.944',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.326',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.406',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.382',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.944',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.326',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.406',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.382',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.944',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.326',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.406',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.382',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.944',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.326',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.406',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.382',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.944',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.326',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.406',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.382',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.944',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.326',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.406',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.382',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.944',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.326',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.406',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.382',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.944',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.326',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.406',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.382',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.944',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.326',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.406',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.382',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.944',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.326',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.406',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.382',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.944',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.326',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.406',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.765',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '2.833',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.598',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.678',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.765',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '2.833',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.598',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.678',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.765',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '2.833',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.598',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.678',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.765',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '2.833',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.598',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.678',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.765',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '2.833',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.598',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.678',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.765',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '2.833',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.598',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.678',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.765',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '2.833',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.598',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.678',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.765',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '2.833',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.598',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.678',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.765',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '2.833',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.598',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.678',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.765',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '2.833',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.598',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.678',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.765',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '2.833',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.598',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.678',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.765',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '2.833',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.598',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.678',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.337',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.238',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.575',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.655',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.332',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.285',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.617',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.697',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.316',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.367',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.683',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.763',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.439',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.247',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.686',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.766',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.509',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.214',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.723',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.803',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.600',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.476',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.076',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.156',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.675',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.634',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.309',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.389',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.771',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.778',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.549',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.629',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.744',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.534',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.278',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.358',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.632',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.430',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.062',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.142',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.616',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.416',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.032',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.112',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.455',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.379',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.834',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.914',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.438',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.165',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.603',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.683',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.338',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.126',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.464',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.544',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.338',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.126',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.464',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.544',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.338',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.126',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.464',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.544',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.552',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.249',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.801',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.881',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.552',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.249',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.801',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.881',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.552',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.249',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.801',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.881',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.666',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.370',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.036',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.116',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.666',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.370',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.036',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.116',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.666',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.370',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.036',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.116',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.438',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.165',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.603',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.683',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rovtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.438',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '1.165',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.603',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '1.683',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.891',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.430',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.163',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.484',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.564',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.891',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.430',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.163',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.484',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.564',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.891',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.430',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.163',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.484',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.564',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.891',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.430',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.163',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.484',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.564',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.891',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.456',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.163',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.510',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.590',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.891',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.456',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.163',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.510',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.590',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.891',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.456',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.163',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.510',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.590',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.891',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.456',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.163',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.510',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.590',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.891',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.456',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.163',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.510',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.590',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.891',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.456',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.163',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.510',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.590',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.891',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.456',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.163',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.510',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.590',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.891',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.456',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.163',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.510',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.590',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '1.782',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.430',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '2.329',\n", " 'icVariable': None,\n", " 'totalCapacity': '4.541',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '4.621',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '1.782',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.430',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '2.329',\n", " 'icVariable': None,\n", " 'totalCapacity': '4.541',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '4.621',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '1.782',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.430',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '2.329',\n", " 'icVariable': None,\n", " 'totalCapacity': '4.541',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '4.621',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '1.782',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.430',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '2.329',\n", " 'icVariable': None,\n", " 'totalCapacity': '4.541',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '4.621',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '1.782',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.456',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '2.329',\n", " 'icVariable': None,\n", " 'totalCapacity': '4.567',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '4.647',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '1.782',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.456',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '2.329',\n", " 'icVariable': None,\n", " 'totalCapacity': '4.567',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '4.647',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '1.782',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.456',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '2.329',\n", " 'icVariable': None,\n", " 'totalCapacity': '4.567',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '4.647',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '1.782',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.456',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '2.329',\n", " 'icVariable': None,\n", " 'totalCapacity': '4.567',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '4.647',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '1.782',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.456',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '2.329',\n", " 'icVariable': None,\n", " 'totalCapacity': '4.567',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '4.647',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '1.782',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.456',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '2.329',\n", " 'icVariable': None,\n", " 'totalCapacity': '4.567',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '4.647',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '1.782',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.456',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '2.329',\n", " 'icVariable': None,\n", " 'totalCapacity': '4.567',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '4.647',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '1.782',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.456',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '2.329',\n", " 'icVariable': None,\n", " 'totalCapacity': '4.567',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '4.647',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.786',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.020',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.493',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.299',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.379',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.773',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.024',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.534',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.331',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.411',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.736',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.023',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.534',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.293',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.373',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '1.023',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.027',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.493',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.543',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.623',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '1.185',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.044',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.534',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.763',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.843',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '1.397',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.065',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.493',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.955',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.035',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '1.572',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.089',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.534',\n", " 'icVariable': None,\n", " 'totalCapacity': '3.195',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.275',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '1.796',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.097',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.534',\n", " 'icVariable': None,\n", " 'totalCapacity': '3.427',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.507',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '1.734',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.065',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.397',\n", " 'icVariable': None,\n", " 'totalCapacity': '3.196',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.276',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '1.472',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.062',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.534',\n", " 'icVariable': None,\n", " 'totalCapacity': '3.068',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.148',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '1.434',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.031',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.493',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.958',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.038',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '1.060',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.024',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.534',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.618',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.698',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '1.019',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.068',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.393',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.480',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.560',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.788',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.068',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.406',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.262',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.342',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.788',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.068',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.406',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.262',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.342',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.788',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.068',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.406',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.262',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.342',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '1.286',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.181',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.406',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.873',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.953',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '1.286',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.181',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.406',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.873',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.953',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '1.286',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.181',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.406',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.873',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.953',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '1.552',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.204',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.379',\n", " 'icVariable': None,\n", " 'totalCapacity': '3.135',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.215',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '1.552',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.204',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.379',\n", " 'icVariable': None,\n", " 'totalCapacity': '3.135',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.215',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '1.552',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.204',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.379',\n", " 'icVariable': None,\n", " 'totalCapacity': '3.135',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.215',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '1.019',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.070',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.393',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.482',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.562',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '1.019',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.070',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.393',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.482',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.562',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.891',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.043',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.163',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.097',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.177',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.891',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.043',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.163',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.097',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.177',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.891',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.043',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.163',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.097',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.177',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.891',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.043',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.163',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.097',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.177',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.891',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.046',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.163',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.100',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.180',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.891',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.046',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.163',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.100',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.180',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.891',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.046',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.163',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.100',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.180',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.891',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.046',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.163',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.100',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.180',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.891',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.046',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.163',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.100',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.180',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.891',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.046',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.163',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.100',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.180',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.891',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.046',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.163',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.100',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.180',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.891',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.046',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.163',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.100',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.180',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '1.782',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.043',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '2.329',\n", " 'icVariable': None,\n", " 'totalCapacity': '4.154',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '4.234',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '1.782',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.043',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '2.329',\n", " 'icVariable': None,\n", " 'totalCapacity': '4.154',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '4.234',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '1.782',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.043',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '2.329',\n", " 'icVariable': None,\n", " 'totalCapacity': '4.154',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '4.234',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '1.782',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.043',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '2.329',\n", " 'icVariable': None,\n", " 'totalCapacity': '4.154',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '4.234',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '1.782',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.046',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '2.329',\n", " 'icVariable': None,\n", " 'totalCapacity': '4.157',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '4.237',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '1.782',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.046',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '2.329',\n", " 'icVariable': None,\n", " 'totalCapacity': '4.157',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '4.237',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '1.782',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.046',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '2.329',\n", " 'icVariable': None,\n", " 'totalCapacity': '4.157',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '4.237',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '1.782',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.046',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '2.329',\n", " 'icVariable': None,\n", " 'totalCapacity': '4.157',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '4.237',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '1.782',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.046',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '2.329',\n", " 'icVariable': None,\n", " 'totalCapacity': '4.157',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '4.237',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '1.782',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.046',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '2.329',\n", " 'icVariable': None,\n", " 'totalCapacity': '4.157',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '4.237',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '1.782',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.046',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '2.329',\n", " 'icVariable': None,\n", " 'totalCapacity': '4.157',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '4.237',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '1.782',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.046',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '2.329',\n", " 'icVariable': None,\n", " 'totalCapacity': '4.157',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '4.237',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.786',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.002',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.493',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.281',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.361',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.773',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.002',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.534',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.309',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.389',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.736',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.002',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.534',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.272',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.352',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '1.023',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.003',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.493',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.519',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.599',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '1.185',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.004',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.534',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.723',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.803',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '1.397',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.007',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.493',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.897',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.977',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '1.572',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.009',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.534',\n", " 'icVariable': None,\n", " 'totalCapacity': '3.115',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.195',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '1.796',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.010',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.534',\n", " 'icVariable': None,\n", " 'totalCapacity': '3.340',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.420',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '1.734',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.006',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.397',\n", " 'icVariable': None,\n", " 'totalCapacity': '3.137',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.217',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '1.472',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.006',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.534',\n", " 'icVariable': None,\n", " 'totalCapacity': '3.012',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.092',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '1.434',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.003',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.493',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.930',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.010',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '1.060',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.002',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.534',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.596',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.676',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '1.019',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.007',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.393',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.419',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.499',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.788',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.007',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.406',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.201',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.281',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.788',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.007',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.406',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.201',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.281',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.788',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.007',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.406',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.201',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.281',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '1.286',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.018',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.406',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.710',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.790',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '1.286',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.018',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.406',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.710',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.790',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '1.286',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.018',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.406',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.710',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.790',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '1.552',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.020',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.379',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.951',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.031',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '1.552',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.020',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.379',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.951',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.031',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '1.552',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.020',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.379',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.951',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '3.031',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '1.019',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.007',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.393',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.419',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.499',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'bgvtp',\n", " 'destination': 'rsvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '1.019',\n", " 'exitVariable': '0.080',\n", " 'entryCapacity': '0.007',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': '1.393',\n", " 'icVariable': None,\n", " 'totalCapacity': '2.419',\n", " 'totalVariable': '0.080',\n", " 'totalTransitCost': '2.499',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.619',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.815',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.434',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '2.476',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.619',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.815',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.434',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '2.476',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.619',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.815',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.434',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '2.476',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.619',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.815',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.434',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '2.476',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.619',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.815',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.434',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '2.476',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.619',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '1.815',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.434',\n", " 'totalVariable': '0.041',\n", " 'totalTransitCost': '2.475',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.619',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '1.815',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.434',\n", " 'totalVariable': '0.041',\n", " 'totalTransitCost': '2.475',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.619',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '1.815',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.434',\n", " 'totalVariable': '0.041',\n", " 'totalTransitCost': '2.475',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.619',\n", " 'exitVariable': '0.040',\n", " 'entryCapacity': '1.815',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.434',\n", " 'totalVariable': '0.040',\n", " 'totalTransitCost': '2.474',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.619',\n", " 'exitVariable': '0.039',\n", " 'entryCapacity': '1.815',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.434',\n", " 'totalVariable': '0.039',\n", " 'totalTransitCost': '2.473',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.619',\n", " 'exitVariable': '0.033',\n", " 'entryCapacity': '1.815',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.434',\n", " 'totalVariable': '0.033',\n", " 'totalTransitCost': '2.467',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.619',\n", " 'exitVariable': '0.032',\n", " 'entryCapacity': '1.815',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.434',\n", " 'totalVariable': '0.032',\n", " 'totalTransitCost': '2.466',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.929',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '3.538',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.467',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '4.509',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.929',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '3.538',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.467',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '4.509',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.929',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '3.538',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.467',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '4.509',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.929',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '3.538',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.467',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '4.509',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.929',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '3.538',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.467',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '4.509',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.929',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '3.538',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.467',\n", " 'totalVariable': '0.041',\n", " 'totalTransitCost': '4.508',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.929',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '3.538',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.467',\n", " 'totalVariable': '0.041',\n", " 'totalTransitCost': '4.508',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.929',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '3.538',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.467',\n", " 'totalVariable': '0.041',\n", " 'totalTransitCost': '4.508',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.929',\n", " 'exitVariable': '0.040',\n", " 'entryCapacity': '3.538',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.467',\n", " 'totalVariable': '0.040',\n", " 'totalTransitCost': '4.507',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.929',\n", " 'exitVariable': '0.039',\n", " 'entryCapacity': '3.538',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.467',\n", " 'totalVariable': '0.039',\n", " 'totalTransitCost': '4.506',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.929',\n", " 'exitVariable': '0.033',\n", " 'entryCapacity': '3.538',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.467',\n", " 'totalVariable': '0.033',\n", " 'totalTransitCost': '4.500',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.929',\n", " 'exitVariable': '0.032',\n", " 'entryCapacity': '3.538',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.467',\n", " 'totalVariable': '0.032',\n", " 'totalTransitCost': '4.499',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.774',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '2.268',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.042',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '3.084',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.774',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '2.268',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.042',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '3.084',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.774',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '2.268',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.042',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '3.084',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.774',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '2.268',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.042',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '3.084',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.774',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '2.268',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.042',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '3.084',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.774',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '2.268',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.042',\n", " 'totalVariable': '0.041',\n", " 'totalTransitCost': '3.083',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.774',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '2.268',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.042',\n", " 'totalVariable': '0.041',\n", " 'totalTransitCost': '3.083',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.774',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '2.268',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.042',\n", " 'totalVariable': '0.041',\n", " 'totalTransitCost': '3.083',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.774',\n", " 'exitVariable': '0.040',\n", " 'entryCapacity': '2.268',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.042',\n", " 'totalVariable': '0.040',\n", " 'totalTransitCost': '3.082',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.774',\n", " 'exitVariable': '0.039',\n", " 'entryCapacity': '2.268',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.042',\n", " 'totalVariable': '0.039',\n", " 'totalTransitCost': '3.081',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.774',\n", " 'exitVariable': '0.033',\n", " 'entryCapacity': '2.268',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.042',\n", " 'totalVariable': '0.033',\n", " 'totalTransitCost': '3.075',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.774',\n", " 'exitVariable': '0.032',\n", " 'entryCapacity': '2.268',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.042',\n", " 'totalVariable': '0.032',\n", " 'totalTransitCost': '3.074',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.681',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.996',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.677',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '2.719',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.681',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.996',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.677',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '2.719',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.681',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.996',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.677',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '2.719',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.681',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.996',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.677',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '2.719',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.681',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.996',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.677',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '2.719',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.681',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '1.996',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.677',\n", " 'totalVariable': '0.041',\n", " 'totalTransitCost': '2.718',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.681',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '1.996',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.677',\n", " 'totalVariable': '0.041',\n", " 'totalTransitCost': '2.718',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.681',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '1.996',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.677',\n", " 'totalVariable': '0.041',\n", " 'totalTransitCost': '2.718',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.681',\n", " 'exitVariable': '0.040',\n", " 'entryCapacity': '1.996',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.677',\n", " 'totalVariable': '0.040',\n", " 'totalTransitCost': '2.717',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.681',\n", " 'exitVariable': '0.039',\n", " 'entryCapacity': '1.996',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.677',\n", " 'totalVariable': '0.039',\n", " 'totalTransitCost': '2.716',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.681',\n", " 'exitVariable': '0.033',\n", " 'entryCapacity': '1.996',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.677',\n", " 'totalVariable': '0.033',\n", " 'totalTransitCost': '2.710',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.681',\n", " 'exitVariable': '0.032',\n", " 'entryCapacity': '1.996',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.677',\n", " 'totalVariable': '0.032',\n", " 'totalTransitCost': '2.709',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.619',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.706',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.325',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '2.367',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.619',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.706',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.325',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '2.367',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.619',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.706',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.325',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '2.367',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.619',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.706',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.325',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '2.367',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.619',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.706',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.325',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '2.367',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.619',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '1.706',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.325',\n", " 'totalVariable': '0.041',\n", " 'totalTransitCost': '2.366',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.619',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '1.706',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.325',\n", " 'totalVariable': '0.041',\n", " 'totalTransitCost': '2.366',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.619',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '1.706',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.325',\n", " 'totalVariable': '0.041',\n", " 'totalTransitCost': '2.366',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.619',\n", " 'exitVariable': '0.040',\n", " 'entryCapacity': '1.706',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.325',\n", " 'totalVariable': '0.040',\n", " 'totalTransitCost': '2.365',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.619',\n", " 'exitVariable': '0.039',\n", " 'entryCapacity': '1.706',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.325',\n", " 'totalVariable': '0.039',\n", " 'totalTransitCost': '2.364',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.619',\n", " 'exitVariable': '0.033',\n", " 'entryCapacity': '1.706',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.325',\n", " 'totalVariable': '0.033',\n", " 'totalTransitCost': '2.358',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.619',\n", " 'exitVariable': '0.032',\n", " 'entryCapacity': '1.706',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.325',\n", " 'totalVariable': '0.032',\n", " 'totalTransitCost': '2.357',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.929',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '3.326',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.255',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '4.297',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.929',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '3.326',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.255',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '4.297',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.929',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '3.326',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.255',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '4.297',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.929',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '3.326',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.255',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '4.297',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.929',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '3.326',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.255',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '4.297',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.929',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '3.326',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.255',\n", " 'totalVariable': '0.041',\n", " 'totalTransitCost': '4.296',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.929',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '3.326',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.255',\n", " 'totalVariable': '0.041',\n", " 'totalTransitCost': '4.296',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.929',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '3.326',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.255',\n", " 'totalVariable': '0.041',\n", " 'totalTransitCost': '4.296',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.929',\n", " 'exitVariable': '0.040',\n", " 'entryCapacity': '3.326',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.255',\n", " 'totalVariable': '0.040',\n", " 'totalTransitCost': '4.295',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.929',\n", " 'exitVariable': '0.039',\n", " 'entryCapacity': '3.326',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.255',\n", " 'totalVariable': '0.039',\n", " 'totalTransitCost': '4.294',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.929',\n", " 'exitVariable': '0.033',\n", " 'entryCapacity': '3.326',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.255',\n", " 'totalVariable': '0.033',\n", " 'totalTransitCost': '4.288',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.929',\n", " 'exitVariable': '0.032',\n", " 'entryCapacity': '3.326',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '4.255',\n", " 'totalVariable': '0.032',\n", " 'totalTransitCost': '4.287',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.774',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '2.132',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.906',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '2.948',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.774',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '2.132',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.906',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '2.948',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.774',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '2.132',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.906',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '2.948',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.774',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '2.132',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.906',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '2.948',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.774',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '2.132',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.906',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '2.948',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.774',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '2.132',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.906',\n", " 'totalVariable': '0.041',\n", " 'totalTransitCost': '2.947',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.774',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '2.132',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.906',\n", " 'totalVariable': '0.041',\n", " 'totalTransitCost': '2.947',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.774',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '2.132',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.906',\n", " 'totalVariable': '0.041',\n", " 'totalTransitCost': '2.947',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.774',\n", " 'exitVariable': '0.040',\n", " 'entryCapacity': '2.132',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.906',\n", " 'totalVariable': '0.040',\n", " 'totalTransitCost': '2.946',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.774',\n", " 'exitVariable': '0.039',\n", " 'entryCapacity': '2.132',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.906',\n", " 'totalVariable': '0.039',\n", " 'totalTransitCost': '2.945',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.774',\n", " 'exitVariable': '0.033',\n", " 'entryCapacity': '2.132',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.906',\n", " 'totalVariable': '0.033',\n", " 'totalTransitCost': '2.939',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.774',\n", " 'exitVariable': '0.032',\n", " 'entryCapacity': '2.132',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.906',\n", " 'totalVariable': '0.032',\n", " 'totalTransitCost': '2.938',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.681',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.876',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.557',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '2.599',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.681',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.876',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.557',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '2.599',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.681',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.876',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.557',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '2.599',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.681',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.876',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.557',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '2.599',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.681',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.876',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.557',\n", " 'totalVariable': '0.042',\n", " 'totalTransitCost': '2.599',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.681',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '1.876',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.557',\n", " 'totalVariable': '0.041',\n", " 'totalTransitCost': '2.598',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.681',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '1.876',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.557',\n", " 'totalVariable': '0.041',\n", " 'totalTransitCost': '2.598',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.681',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '1.876',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.557',\n", " 'totalVariable': '0.041',\n", " 'totalTransitCost': '2.598',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.681',\n", " 'exitVariable': '0.040',\n", " 'entryCapacity': '1.876',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.557',\n", " 'totalVariable': '0.040',\n", " 'totalTransitCost': '2.597',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.681',\n", " 'exitVariable': '0.039',\n", " 'entryCapacity': '1.876',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.557',\n", " 'totalVariable': '0.039',\n", " 'totalTransitCost': '2.596',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.681',\n", " 'exitVariable': '0.033',\n", " 'entryCapacity': '1.876',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.557',\n", " 'totalVariable': '0.033',\n", " 'totalTransitCost': '2.590',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'plvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.681',\n", " 'exitVariable': '0.032',\n", " 'entryCapacity': '1.876',\n", " 'entryVariable': '0.000',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.557',\n", " 'totalVariable': '0.032',\n", " 'totalTransitCost': '2.589',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.405',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.100',\n", " 'entryVariable': '0.425',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.505',\n", " 'totalVariable': '0.467',\n", " 'totalTransitCost': '1.972',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.405',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.100',\n", " 'entryVariable': '0.438',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.505',\n", " 'totalVariable': '0.480',\n", " 'totalTransitCost': '1.985',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.405',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.100',\n", " 'entryVariable': '0.435',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.505',\n", " 'totalVariable': '0.477',\n", " 'totalTransitCost': '1.982',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.405',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.100',\n", " 'entryVariable': '0.433',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.505',\n", " 'totalVariable': '0.475',\n", " 'totalTransitCost': '1.980',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.405',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.100',\n", " 'entryVariable': '0.430',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.505',\n", " 'totalVariable': '0.472',\n", " 'totalTransitCost': '1.977',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.405',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '1.100',\n", " 'entryVariable': '0.422',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.505',\n", " 'totalVariable': '0.463',\n", " 'totalTransitCost': '1.968',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.405',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '1.100',\n", " 'entryVariable': '0.423',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.505',\n", " 'totalVariable': '0.464',\n", " 'totalTransitCost': '1.969',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.405',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '1.100',\n", " 'entryVariable': '0.421',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.505',\n", " 'totalVariable': '0.462',\n", " 'totalTransitCost': '1.967',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.405',\n", " 'exitVariable': '0.040',\n", " 'entryCapacity': '1.100',\n", " 'entryVariable': '0.414',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.505',\n", " 'totalVariable': '0.454',\n", " 'totalTransitCost': '1.959',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.405',\n", " 'exitVariable': '0.039',\n", " 'entryCapacity': '1.100',\n", " 'entryVariable': '0.401',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.505',\n", " 'totalVariable': '0.440',\n", " 'totalTransitCost': '1.945',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.405',\n", " 'exitVariable': '0.033',\n", " 'entryCapacity': '1.100',\n", " 'entryVariable': '0.362',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.505',\n", " 'totalVariable': '0.395',\n", " 'totalTransitCost': '1.900',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.405',\n", " 'exitVariable': '0.032',\n", " 'entryCapacity': '1.100',\n", " 'entryVariable': '0.340',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.505',\n", " 'totalVariable': '0.372',\n", " 'totalTransitCost': '1.877',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.608',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '3.292',\n", " 'entryVariable': '0.425',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.900',\n", " 'totalVariable': '0.467',\n", " 'totalTransitCost': '4.367',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.608',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '3.292',\n", " 'entryVariable': '0.438',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.900',\n", " 'totalVariable': '0.480',\n", " 'totalTransitCost': '4.380',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.608',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '3.292',\n", " 'entryVariable': '0.435',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.900',\n", " 'totalVariable': '0.477',\n", " 'totalTransitCost': '4.377',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.608',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '3.292',\n", " 'entryVariable': '0.433',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.900',\n", " 'totalVariable': '0.475',\n", " 'totalTransitCost': '4.375',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.608',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '3.292',\n", " 'entryVariable': '0.430',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.900',\n", " 'totalVariable': '0.472',\n", " 'totalTransitCost': '4.372',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.608',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '3.292',\n", " 'entryVariable': '0.422',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.900',\n", " 'totalVariable': '0.463',\n", " 'totalTransitCost': '4.363',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.608',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '3.292',\n", " 'entryVariable': '0.423',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.900',\n", " 'totalVariable': '0.464',\n", " 'totalTransitCost': '4.364',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.608',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '3.292',\n", " 'entryVariable': '0.421',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.900',\n", " 'totalVariable': '0.462',\n", " 'totalTransitCost': '4.362',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.608',\n", " 'exitVariable': '0.040',\n", " 'entryCapacity': '3.292',\n", " 'entryVariable': '0.414',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.900',\n", " 'totalVariable': '0.454',\n", " 'totalTransitCost': '4.354',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.608',\n", " 'exitVariable': '0.039',\n", " 'entryCapacity': '3.292',\n", " 'entryVariable': '0.401',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.900',\n", " 'totalVariable': '0.440',\n", " 'totalTransitCost': '4.340',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.608',\n", " 'exitVariable': '0.033',\n", " 'entryCapacity': '3.292',\n", " 'entryVariable': '0.362',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.900',\n", " 'totalVariable': '0.395',\n", " 'totalTransitCost': '4.295',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.608',\n", " 'exitVariable': '0.032',\n", " 'entryCapacity': '3.292',\n", " 'entryVariable': '0.340',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.900',\n", " 'totalVariable': '0.372',\n", " 'totalTransitCost': '4.272',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.507',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.425',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.157',\n", " 'totalVariable': '0.467',\n", " 'totalTransitCost': '2.624',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.507',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.438',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.157',\n", " 'totalVariable': '0.480',\n", " 'totalTransitCost': '2.637',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.507',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.435',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.157',\n", " 'totalVariable': '0.477',\n", " 'totalTransitCost': '2.634',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.507',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.433',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.157',\n", " 'totalVariable': '0.475',\n", " 'totalTransitCost': '2.632',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.507',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.430',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.157',\n", " 'totalVariable': '0.472',\n", " 'totalTransitCost': '2.629',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.507',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.422',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.157',\n", " 'totalVariable': '0.463',\n", " 'totalTransitCost': '2.620',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.507',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.423',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.157',\n", " 'totalVariable': '0.464',\n", " 'totalTransitCost': '2.621',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.507',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.421',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.157',\n", " 'totalVariable': '0.462',\n", " 'totalTransitCost': '2.619',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.507',\n", " 'exitVariable': '0.040',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.414',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.157',\n", " 'totalVariable': '0.454',\n", " 'totalTransitCost': '2.611',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.507',\n", " 'exitVariable': '0.039',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.401',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.157',\n", " 'totalVariable': '0.440',\n", " 'totalTransitCost': '2.597',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.507',\n", " 'exitVariable': '0.033',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.362',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.157',\n", " 'totalVariable': '0.395',\n", " 'totalTransitCost': '2.552',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.507',\n", " 'exitVariable': '0.032',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.340',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.157',\n", " 'totalVariable': '0.372',\n", " 'totalTransitCost': '2.529',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.446',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.425',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.096',\n", " 'totalVariable': '0.467',\n", " 'totalTransitCost': '2.563',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.446',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.438',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.096',\n", " 'totalVariable': '0.480',\n", " 'totalTransitCost': '2.576',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.446',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.435',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.096',\n", " 'totalVariable': '0.477',\n", " 'totalTransitCost': '2.573',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.446',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.433',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.096',\n", " 'totalVariable': '0.475',\n", " 'totalTransitCost': '2.571',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.446',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.430',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.096',\n", " 'totalVariable': '0.472',\n", " 'totalTransitCost': '2.568',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.446',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.422',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.096',\n", " 'totalVariable': '0.463',\n", " 'totalTransitCost': '2.559',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.446',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.423',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.096',\n", " 'totalVariable': '0.464',\n", " 'totalTransitCost': '2.560',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.446',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.421',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.096',\n", " 'totalVariable': '0.462',\n", " 'totalTransitCost': '2.558',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.446',\n", " 'exitVariable': '0.040',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.414',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.096',\n", " 'totalVariable': '0.454',\n", " 'totalTransitCost': '2.550',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.446',\n", " 'exitVariable': '0.039',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.401',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.096',\n", " 'totalVariable': '0.440',\n", " 'totalTransitCost': '2.536',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.446',\n", " 'exitVariable': '0.033',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.362',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.096',\n", " 'totalVariable': '0.395',\n", " 'totalTransitCost': '2.491',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.446',\n", " 'exitVariable': '0.032',\n", " 'entryCapacity': '1.650',\n", " 'entryVariable': '0.340',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.096',\n", " 'totalVariable': '0.372',\n", " 'totalTransitCost': '2.468',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.405',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.097',\n", " 'entryVariable': '0.425',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.502',\n", " 'totalVariable': '0.467',\n", " 'totalTransitCost': '1.969',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.405',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.097',\n", " 'entryVariable': '0.438',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.502',\n", " 'totalVariable': '0.480',\n", " 'totalTransitCost': '1.982',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.405',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.097',\n", " 'entryVariable': '0.435',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.502',\n", " 'totalVariable': '0.477',\n", " 'totalTransitCost': '1.979',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.405',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.097',\n", " 'entryVariable': '0.433',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.502',\n", " 'totalVariable': '0.475',\n", " 'totalTransitCost': '1.977',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.405',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.097',\n", " 'entryVariable': '0.430',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.502',\n", " 'totalVariable': '0.472',\n", " 'totalTransitCost': '1.974',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.405',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '1.097',\n", " 'entryVariable': '0.422',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.502',\n", " 'totalVariable': '0.463',\n", " 'totalTransitCost': '1.965',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.405',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '1.097',\n", " 'entryVariable': '0.423',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.502',\n", " 'totalVariable': '0.464',\n", " 'totalTransitCost': '1.966',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.405',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '1.097',\n", " 'entryVariable': '0.421',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.502',\n", " 'totalVariable': '0.462',\n", " 'totalTransitCost': '1.964',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.405',\n", " 'exitVariable': '0.040',\n", " 'entryCapacity': '1.097',\n", " 'entryVariable': '0.414',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.502',\n", " 'totalVariable': '0.454',\n", " 'totalTransitCost': '1.956',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.405',\n", " 'exitVariable': '0.039',\n", " 'entryCapacity': '1.097',\n", " 'entryVariable': '0.401',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.502',\n", " 'totalVariable': '0.440',\n", " 'totalTransitCost': '1.942',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.405',\n", " 'exitVariable': '0.033',\n", " 'entryCapacity': '1.097',\n", " 'entryVariable': '0.362',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.502',\n", " 'totalVariable': '0.395',\n", " 'totalTransitCost': '1.897',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.405',\n", " 'exitVariable': '0.032',\n", " 'entryCapacity': '1.097',\n", " 'entryVariable': '0.340',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.502',\n", " 'totalVariable': '0.372',\n", " 'totalTransitCost': '1.874',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.608',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '3.283',\n", " 'entryVariable': '0.425',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.891',\n", " 'totalVariable': '0.467',\n", " 'totalTransitCost': '4.358',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.608',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '3.283',\n", " 'entryVariable': '0.438',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.891',\n", " 'totalVariable': '0.480',\n", " 'totalTransitCost': '4.371',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.608',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '3.283',\n", " 'entryVariable': '0.435',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.891',\n", " 'totalVariable': '0.477',\n", " 'totalTransitCost': '4.368',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.608',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '3.283',\n", " 'entryVariable': '0.433',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.891',\n", " 'totalVariable': '0.475',\n", " 'totalTransitCost': '4.366',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.608',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '3.283',\n", " 'entryVariable': '0.430',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.891',\n", " 'totalVariable': '0.472',\n", " 'totalTransitCost': '4.363',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.608',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '3.283',\n", " 'entryVariable': '0.422',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.891',\n", " 'totalVariable': '0.463',\n", " 'totalTransitCost': '4.354',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.608',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '3.283',\n", " 'entryVariable': '0.423',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.891',\n", " 'totalVariable': '0.464',\n", " 'totalTransitCost': '4.355',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.608',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '3.283',\n", " 'entryVariable': '0.421',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.891',\n", " 'totalVariable': '0.462',\n", " 'totalTransitCost': '4.353',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.608',\n", " 'exitVariable': '0.040',\n", " 'entryCapacity': '3.283',\n", " 'entryVariable': '0.414',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.891',\n", " 'totalVariable': '0.454',\n", " 'totalTransitCost': '4.345',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.608',\n", " 'exitVariable': '0.039',\n", " 'entryCapacity': '3.283',\n", " 'entryVariable': '0.401',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.891',\n", " 'totalVariable': '0.440',\n", " 'totalTransitCost': '4.331',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.608',\n", " 'exitVariable': '0.033',\n", " 'entryCapacity': '3.283',\n", " 'entryVariable': '0.362',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.891',\n", " 'totalVariable': '0.395',\n", " 'totalTransitCost': '4.286',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.608',\n", " 'exitVariable': '0.032',\n", " 'entryCapacity': '3.283',\n", " 'entryVariable': '0.340',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '3.891',\n", " 'totalVariable': '0.372',\n", " 'totalTransitCost': '4.263',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.507',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.425',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.152',\n", " 'totalVariable': '0.467',\n", " 'totalTransitCost': '2.619',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.507',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.438',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.152',\n", " 'totalVariable': '0.480',\n", " 'totalTransitCost': '2.632',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.507',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.435',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.152',\n", " 'totalVariable': '0.477',\n", " 'totalTransitCost': '2.629',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.507',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.433',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.152',\n", " 'totalVariable': '0.475',\n", " 'totalTransitCost': '2.627',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.507',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.430',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.152',\n", " 'totalVariable': '0.472',\n", " 'totalTransitCost': '2.624',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.507',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.422',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.152',\n", " 'totalVariable': '0.463',\n", " 'totalTransitCost': '2.615',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.507',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.423',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.152',\n", " 'totalVariable': '0.464',\n", " 'totalTransitCost': '2.616',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.507',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.421',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.152',\n", " 'totalVariable': '0.462',\n", " 'totalTransitCost': '2.614',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.507',\n", " 'exitVariable': '0.040',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.414',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.152',\n", " 'totalVariable': '0.454',\n", " 'totalTransitCost': '2.606',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.507',\n", " 'exitVariable': '0.039',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.401',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.152',\n", " 'totalVariable': '0.440',\n", " 'totalTransitCost': '2.592',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.507',\n", " 'exitVariable': '0.033',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.362',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.152',\n", " 'totalVariable': '0.395',\n", " 'totalTransitCost': '2.547',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.507',\n", " 'exitVariable': '0.032',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.340',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.152',\n", " 'totalVariable': '0.372',\n", " 'totalTransitCost': '2.524',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.446',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.425',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.091',\n", " 'totalVariable': '0.467',\n", " 'totalTransitCost': '2.558',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.446',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.438',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.091',\n", " 'totalVariable': '0.480',\n", " 'totalTransitCost': '2.571',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.446',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.435',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.091',\n", " 'totalVariable': '0.477',\n", " 'totalTransitCost': '2.568',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.446',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.433',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.091',\n", " 'totalVariable': '0.475',\n", " 'totalTransitCost': '2.566',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.446',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.430',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.091',\n", " 'totalVariable': '0.472',\n", " 'totalTransitCost': '2.563',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.446',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.422',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.091',\n", " 'totalVariable': '0.463',\n", " 'totalTransitCost': '2.554',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.446',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.423',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.091',\n", " 'totalVariable': '0.464',\n", " 'totalTransitCost': '2.555',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.446',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.421',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.091',\n", " 'totalVariable': '0.462',\n", " 'totalTransitCost': '2.553',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.446',\n", " 'exitVariable': '0.040',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.414',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.091',\n", " 'totalVariable': '0.454',\n", " 'totalTransitCost': '2.545',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.446',\n", " 'exitVariable': '0.039',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.401',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.091',\n", " 'totalVariable': '0.440',\n", " 'totalTransitCost': '2.531',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.446',\n", " 'exitVariable': '0.033',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.362',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.091',\n", " 'totalVariable': '0.395',\n", " 'totalTransitCost': '2.486',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'skvtp',\n", " 'type': 'interruptible',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.446',\n", " 'exitVariable': '0.032',\n", " 'entryCapacity': '1.645',\n", " 'entryVariable': '0.340',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.091',\n", " 'totalVariable': '0.372',\n", " 'totalTransitCost': '2.463',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.788',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '0.806',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.594',\n", " 'totalVariable': '0.222',\n", " 'totalTransitCost': '1.816',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.788',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '0.806',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.594',\n", " 'totalVariable': '0.222',\n", " 'totalTransitCost': '1.816',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.788',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '0.806',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.594',\n", " 'totalVariable': '0.222',\n", " 'totalTransitCost': '1.816',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.788',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '0.806',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.594',\n", " 'totalVariable': '0.222',\n", " 'totalTransitCost': '1.816',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.788',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '0.806',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.594',\n", " 'totalVariable': '0.222',\n", " 'totalTransitCost': '1.816',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.788',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '0.806',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.594',\n", " 'totalVariable': '0.221',\n", " 'totalTransitCost': '1.815',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.788',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '0.806',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.594',\n", " 'totalVariable': '0.221',\n", " 'totalTransitCost': '1.815',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.788',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '0.806',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.594',\n", " 'totalVariable': '0.221',\n", " 'totalTransitCost': '1.815',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.788',\n", " 'exitVariable': '0.040',\n", " 'entryCapacity': '0.806',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.594',\n", " 'totalVariable': '0.220',\n", " 'totalTransitCost': '1.814',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.788',\n", " 'exitVariable': '0.039',\n", " 'entryCapacity': '0.806',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.594',\n", " 'totalVariable': '0.219',\n", " 'totalTransitCost': '1.813',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.788',\n", " 'exitVariable': '0.033',\n", " 'entryCapacity': '0.806',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.594',\n", " 'totalVariable': '0.213',\n", " 'totalTransitCost': '1.807',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'annual',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.788',\n", " 'exitVariable': '0.032',\n", " 'entryCapacity': '0.806',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.594',\n", " 'totalVariable': '0.212',\n", " 'totalTransitCost': '1.806',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '1.182',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.128',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.310',\n", " 'totalVariable': '0.222',\n", " 'totalTransitCost': '2.532',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '1.182',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.128',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.310',\n", " 'totalVariable': '0.222',\n", " 'totalTransitCost': '2.532',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '1.182',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.128',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.310',\n", " 'totalVariable': '0.222',\n", " 'totalTransitCost': '2.532',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '1.182',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.128',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.310',\n", " 'totalVariable': '0.222',\n", " 'totalTransitCost': '2.532',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '1.182',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.128',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.310',\n", " 'totalVariable': '0.222',\n", " 'totalTransitCost': '2.532',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '1.182',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '1.128',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.310',\n", " 'totalVariable': '0.221',\n", " 'totalTransitCost': '2.531',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '1.182',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '1.128',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.310',\n", " 'totalVariable': '0.221',\n", " 'totalTransitCost': '2.531',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '1.182',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '1.128',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.310',\n", " 'totalVariable': '0.221',\n", " 'totalTransitCost': '2.531',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '1.182',\n", " 'exitVariable': '0.040',\n", " 'entryCapacity': '1.128',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.310',\n", " 'totalVariable': '0.220',\n", " 'totalTransitCost': '2.530',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '1.182',\n", " 'exitVariable': '0.039',\n", " 'entryCapacity': '1.128',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.310',\n", " 'totalVariable': '0.219',\n", " 'totalTransitCost': '2.529',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '1.182',\n", " 'exitVariable': '0.033',\n", " 'entryCapacity': '1.128',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.310',\n", " 'totalVariable': '0.213',\n", " 'totalTransitCost': '2.523',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'daily',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '1.182',\n", " 'exitVariable': '0.032',\n", " 'entryCapacity': '1.128',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '2.310',\n", " 'totalVariable': '0.212',\n", " 'totalTransitCost': '2.522',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.985',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.007',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.992',\n", " 'totalVariable': '0.222',\n", " 'totalTransitCost': '2.214',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.985',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.007',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.992',\n", " 'totalVariable': '0.222',\n", " 'totalTransitCost': '2.214',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.985',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.007',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.992',\n", " 'totalVariable': '0.222',\n", " 'totalTransitCost': '2.214',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.985',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.007',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.992',\n", " 'totalVariable': '0.222',\n", " 'totalTransitCost': '2.214',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-10-01',\n", " 'deliveryMonthName': 'Oct26',\n", " 'deliveryMonthIndex': 'M+5',\n", " 'exitCapacity': '0.985',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '1.007',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.992',\n", " 'totalVariable': '0.222',\n", " 'totalTransitCost': '2.214',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-11-01',\n", " 'deliveryMonthName': 'Nov26',\n", " 'deliveryMonthIndex': 'M+6',\n", " 'exitCapacity': '0.985',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '1.007',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.992',\n", " 'totalVariable': '0.221',\n", " 'totalTransitCost': '2.213',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2026-12-01',\n", " 'deliveryMonthName': 'Dec26',\n", " 'deliveryMonthIndex': 'M+7',\n", " 'exitCapacity': '0.985',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '1.007',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.992',\n", " 'totalVariable': '0.221',\n", " 'totalTransitCost': '2.213',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-01-01',\n", " 'deliveryMonthName': 'Jan27',\n", " 'deliveryMonthIndex': 'M+8',\n", " 'exitCapacity': '0.985',\n", " 'exitVariable': '0.041',\n", " 'entryCapacity': '1.007',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.992',\n", " 'totalVariable': '0.221',\n", " 'totalTransitCost': '2.213',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-02-01',\n", " 'deliveryMonthName': 'Feb27',\n", " 'deliveryMonthIndex': 'M+9',\n", " 'exitCapacity': '0.985',\n", " 'exitVariable': '0.040',\n", " 'entryCapacity': '1.007',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.992',\n", " 'totalVariable': '0.220',\n", " 'totalTransitCost': '2.212',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-03-01',\n", " 'deliveryMonthName': 'Mar27',\n", " 'deliveryMonthIndex': 'M+10',\n", " 'exitCapacity': '0.985',\n", " 'exitVariable': '0.039',\n", " 'entryCapacity': '1.007',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.992',\n", " 'totalVariable': '0.219',\n", " 'totalTransitCost': '2.211',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-04-01',\n", " 'deliveryMonthName': 'Apr27',\n", " 'deliveryMonthIndex': 'M+11',\n", " 'exitCapacity': '0.985',\n", " 'exitVariable': '0.033',\n", " 'entryCapacity': '1.007',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.992',\n", " 'totalVariable': '0.213',\n", " 'totalTransitCost': '2.205',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'monthly',\n", " 'deliveryMonth': '2027-05-01',\n", " 'deliveryMonthName': 'May27',\n", " 'deliveryMonthIndex': 'M+12',\n", " 'exitCapacity': '0.985',\n", " 'exitVariable': '0.032',\n", " 'entryCapacity': '1.007',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.992',\n", " 'totalVariable': '0.212',\n", " 'totalTransitCost': '2.204',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-06-01',\n", " 'deliveryMonthName': 'Jun26',\n", " 'deliveryMonthIndex': 'M+1',\n", " 'exitCapacity': '0.867',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '0.887',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.754',\n", " 'totalVariable': '0.222',\n", " 'totalTransitCost': '1.976',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-07-01',\n", " 'deliveryMonthName': 'Jul26',\n", " 'deliveryMonthIndex': 'M+2',\n", " 'exitCapacity': '0.867',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '0.887',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.754',\n", " 'totalVariable': '0.222',\n", " 'totalTransitCost': '1.976',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-08-01',\n", " 'deliveryMonthName': 'Aug26',\n", " 'deliveryMonthIndex': 'M+3',\n", " 'exitCapacity': '0.867',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '0.887',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.754',\n", " 'totalVariable': '0.222',\n", " 'totalTransitCost': '1.976',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " {'origin': 'czvtp',\n", " 'destination': 'the',\n", " 'type': 'firm',\n", " 'product': 'quarterly',\n", " 'deliveryMonth': '2026-09-01',\n", " 'deliveryMonthName': 'Sep26',\n", " 'deliveryMonthIndex': 'M+4',\n", " 'exitCapacity': '0.867',\n", " 'exitVariable': '0.042',\n", " 'entryCapacity': '0.887',\n", " 'entryVariable': '0.180',\n", " 'icCapacity': None,\n", " 'icVariable': None,\n", " 'totalCapacity': '1.754',\n", " 'totalVariable': '0.222',\n", " 'totalTransitCost': '1.976',\n", " 'releaseDate': '2026-05-13',\n", " 'unit': 'eur-per-mwh'},\n", " ...],\n", " 'metaData': {'unit': 'eur-per-mwh',\n", " 'start': '2026-05-13',\n", " 'end': '2026-05-27',\n", " 'offset': 0}}" ] }, "execution_count": 73, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Calling historical data - JSON response\n", "json_raw = fetch_transit_prices(access_token, unit='eur-per-mwh', start='2026-05-17', end='2026-05-27', format='json')\n", "json_raw" ] }, { "cell_type": "code", "execution_count": 65, "id": "c99df66f", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'unit': 'eur-per-mwh',\n", " 'start': '2026-05-20',\n", " 'end': '2026-05-27',\n", " 'offset': 0}" ] }, "execution_count": 65, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# checking metaData\n", "json_raw['metaData']" ] }, { "cell_type": "markdown", "id": "cc5e573c", "metadata": {}, "source": [ "#### CSV Response" ] }, { "cell_type": "code", "execution_count": null, "id": "acf84906", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "https://api.sparkcommodities.com/v1.0/gas/transit/costs/?unit=eur-per-mwh&start=2025-05-27&end=2026-05-27\n", "200\n" ] }, { "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", "
ReleaseDateOriginDestinationTypeProductDeliveryMonthDeliveryMonthNameDeliveryMonthIndexExitCapacityExitVariableEntryCapacityEntryVariableICCapacityICVariableTotalCapacityTotalVariableTotalTransitCostUnit
02026-04-01atvtpmgpfirmannual2026-05-01May26M+10.4530.1200.3800.0NaNNaN0.8330.1200.953eur-per-mwh
12026-04-01atvtpmgpfirmannual2026-06-01Jun26M+20.4530.1200.3800.0NaNNaN0.8330.1200.953eur-per-mwh
22026-04-01atvtpmgpfirmannual2026-07-01Jul26M+30.4530.1200.3800.0NaNNaN0.8330.1200.953eur-per-mwh
32026-04-01atvtpmgpfirmannual2026-08-01Aug26M+40.4530.1200.3800.0NaNNaN0.8330.1200.953eur-per-mwh
42026-04-01atvtpmgpfirmannual2026-09-01Sep26M+50.4530.1200.3800.0NaNNaN0.8330.1200.953eur-per-mwh
.........................................................
1677072026-05-27ztpttfinterruptiblequarterly2027-01-01Jan27M+80.2690.0361.1410.0NaNNaN1.4100.0361.446eur-per-mwh
1677082026-05-27ztpttfinterruptiblequarterly2027-02-01Feb27M+90.2690.0361.1410.0NaNNaN1.4100.0361.446eur-per-mwh
1677092026-05-27ztpttfinterruptiblequarterly2027-03-01Mar27M+100.2690.0341.1410.0NaNNaN1.4100.0341.444eur-per-mwh
1677102026-05-27ztpttfinterruptiblequarterly2027-04-01Apr27M+110.1230.0300.6110.0NaNNaN0.7340.0300.764eur-per-mwh
1677112026-05-27ztpttfinterruptiblequarterly2027-05-01May27M+120.1230.0280.6110.0NaNNaN0.7340.0280.762eur-per-mwh
\n", "

167712 rows × 18 columns

\n", "
" ], "text/plain": [ " ReleaseDate Origin Destination Type Product DeliveryMonth \\\n", "0 2026-04-01 atvtp mgp firm annual 2026-05-01 \n", "1 2026-04-01 atvtp mgp firm annual 2026-06-01 \n", "2 2026-04-01 atvtp mgp firm annual 2026-07-01 \n", "3 2026-04-01 atvtp mgp firm annual 2026-08-01 \n", "4 2026-04-01 atvtp mgp firm annual 2026-09-01 \n", "... ... ... ... ... ... ... \n", "167707 2026-05-27 ztp ttf interruptible quarterly 2027-01-01 \n", "167708 2026-05-27 ztp ttf interruptible quarterly 2027-02-01 \n", "167709 2026-05-27 ztp ttf interruptible quarterly 2027-03-01 \n", "167710 2026-05-27 ztp ttf interruptible quarterly 2027-04-01 \n", "167711 2026-05-27 ztp ttf interruptible quarterly 2027-05-01 \n", "\n", " DeliveryMonthName DeliveryMonthIndex ExitCapacity ExitVariable \\\n", "0 May26 M+1 0.453 0.120 \n", "1 Jun26 M+2 0.453 0.120 \n", "2 Jul26 M+3 0.453 0.120 \n", "3 Aug26 M+4 0.453 0.120 \n", "4 Sep26 M+5 0.453 0.120 \n", "... ... ... ... ... \n", "167707 Jan27 M+8 0.269 0.036 \n", "167708 Feb27 M+9 0.269 0.036 \n", "167709 Mar27 M+10 0.269 0.034 \n", "167710 Apr27 M+11 0.123 0.030 \n", "167711 May27 M+12 0.123 0.028 \n", "\n", " EntryCapacity EntryVariable ICCapacity ICVariable TotalCapacity \\\n", "0 0.380 0.0 NaN NaN 0.833 \n", "1 0.380 0.0 NaN NaN 0.833 \n", "2 0.380 0.0 NaN NaN 0.833 \n", "3 0.380 0.0 NaN NaN 0.833 \n", "4 0.380 0.0 NaN NaN 0.833 \n", "... ... ... ... ... ... \n", "167707 1.141 0.0 NaN NaN 1.410 \n", "167708 1.141 0.0 NaN NaN 1.410 \n", "167709 1.141 0.0 NaN NaN 1.410 \n", "167710 0.611 0.0 NaN NaN 0.734 \n", "167711 0.611 0.0 NaN NaN 0.734 \n", "\n", " TotalVariable TotalTransitCost Unit \n", "0 0.120 0.953 eur-per-mwh \n", "1 0.120 0.953 eur-per-mwh \n", "2 0.120 0.953 eur-per-mwh \n", "3 0.120 0.953 eur-per-mwh \n", "4 0.120 0.953 eur-per-mwh \n", "... ... ... ... \n", "167707 0.036 1.446 eur-per-mwh \n", "167708 0.036 1.446 eur-per-mwh \n", "167709 0.034 1.444 eur-per-mwh \n", "167710 0.030 0.764 eur-per-mwh \n", "167711 0.028 0.762 eur-per-mwh \n", "\n", "[167712 rows x 18 columns]" ] }, "execution_count": 66, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Calling historical data - CSV response\n", "csv_df = fetch_transit_prices(access_token, unit='eur-per-mwh', start='2026-01-01', end='2026-05-27', format='csv')\n", "csv_df" ] }, { "cell_type": "code", "execution_count": 67, "id": "aeb8f589", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Index(['ReleaseDate', 'Origin', 'Destination', 'Type', 'Product',\n", " 'DeliveryMonth', 'DeliveryMonthName', 'DeliveryMonthIndex',\n", " 'ExitCapacity', 'ExitVariable', 'EntryCapacity', 'EntryVariable',\n", " 'ICCapacity', 'ICVariable', 'TotalCapacity', 'TotalVariable',\n", " 'TotalTransitCost', 'Unit'],\n", " dtype='object')" ] }, "execution_count": 67, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# listing the column names of the DataFrame\n", "csv_df.columns" ] }, { "cell_type": "markdown", "id": "1ef02f48", "metadata": {}, "source": [ "## N.B. Historical Data Limits\n", "\n", "Currently, a maximum of 1 year's worth of historical data can be called at one time due to the size of the data file. \n", "\n", "If more data points are required, the below code can be used: the function calls the historical data 1 year at a time and combines the data into one Pandas DataFrame" ] }, { "cell_type": "code", "execution_count": 68, "id": "9f0930ab", "metadata": {}, "outputs": [], "source": [ "import datetime\n", "\n", "def loop_historical_data(access_token, unit, start, end, origin=None, destination=None, booking_type=None, product_type=None):\n", " \n", " hist_diff = (datetime.datetime.strptime(end, '%Y-%m-%d') - datetime.datetime.strptime(start, '%Y-%m-%d')).days\n", " t = 0\n", "\n", " w = 365\n", " print(hist_diff)\n", " while t < hist_diff:\n", " print(t)\n", " # initialising dataframe\n", " if t == 0 and hist_diff>w:\n", " diff_end = datetime.datetime.strftime(datetime.datetime.strptime(start, '%Y-%m-%d') + pd.Timedelta(w, unit='days'), '%Y-%m-%d')\n", " hist_df = fetch_transit_prices(access_token, unit=unit, start=start, end=diff_end, origin=origin, destination=destination,\n", " booking_type=booking_type, product_type=product_type, format='csv')\n", " \n", " elif t==0 and hist_diff<=w:\n", " hist_df = fetch_transit_prices(access_token, unit=unit, start=start, end=end, origin=origin, destination=destination,\n", " booking_type=booking_type, product_type=product_type, format='csv')\n", "\n", " # appending additional historical data\n", " else:\n", " if t < hist_diff-w:\n", " diff_start = datetime.datetime.strftime(datetime.datetime.strptime(start, '%Y-%m-%d') + pd.Timedelta(t+1, unit='days'), '%Y-%m-%d')\n", " diff_end = datetime.datetime.strftime(datetime.datetime.strptime(diff_start, '%Y-%m-%d') + pd.Timedelta(w, unit='days'), '%Y-%m-%d')\n", " historical_addition = fetch_transit_prices(access_token, unit=unit, start=diff_start, end=diff_end, origin=origin, destination=destination,\n", " booking_type=booking_type, product_type=product_type, format='csv')\n", " try:\n", " hist_df = pd.concat([hist_df,historical_addition])\n", " #exception if hist_df is empty\n", " except:\n", " hist_df = historical_addition.copy()\n", "\n", " else:\n", " diff_start = datetime.datetime.strftime(datetime.datetime.strptime(start, '%Y-%m-%d') + pd.Timedelta(t+1, unit='days'), '%Y-%m-%d')\n", " diff_end = datetime.datetime.strftime(datetime.datetime.strptime(diff_start, '%Y-%m-%d') + pd.Timedelta(hist_diff-t, unit='days'), '%Y-%m-%d')\n", " historical_addition = fetch_transit_prices(access_token, unit=unit, start=diff_start, end=diff_end, origin=origin, destination=destination,\n", " booking_type=booking_type, product_type=product_type, format='csv')\n", " hist_df = pd.concat([hist_df, historical_addition])\n", " \n", " #looping by year\n", " t += w\n", "\n", " for c in list(hist_df.columns)[13:]:\n", " hist_df[c] = pd.to_numeric(hist_df[c])\n", " hist_df['ReleaseDate'] = pd.to_datetime(hist_df['ReleaseDate'])\n", "\n", " return hist_df" ] }, { "cell_type": "code", "execution_count": null, "id": "fca50929", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "\"\\nhist_df = loop_historical_data(access_token, unit='usd-per-mmbtu', fob_port_uuid=sabine_uuid, via_point=None, \\n hist_start='2024-01-01', hist_end='2026-01-03')\\n\\nhist_df\\n\"" ] }, "execution_count": 69, "metadata": {}, "output_type": "execute_result" } ], "source": [ "\"\"\"\n", "hist_df = loop_historical_data(access_token, unit='eur-per-mwh', start='2026-01-01', end='2026-05-30', \n", " origin=None, destination=None, booking_type=None, product_type=None)\n", "\n", "hist_df\n", "\"\"\"" ] } ], "metadata": { "kernelspec": { "display_name": "base", "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.9" } }, "nbformat": 4, "nbformat_minor": 5 }